WP Photo Album Plus - Version 6.5.06

Version Description

Download this release

Release Info

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

Code changes from version 6.5.05 to 6.5.06

js/wppa-admin-scripts.js CHANGED
@@ -1706,7 +1706,7 @@ function wppaAjaxPopupWindow( slug ) {
1706
  var height = 512;
1707
 
1708
  if ( screen.availWidth < width ) width = screen.availWidth;
1709
-
1710
  var wnd = window.open("", "_blank", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width="+width+", height="+height, true);
1711
 
1712
  wnd.document.write('<!DOCTYPE html>');
@@ -1721,7 +1721,7 @@ function wppaAjaxPopupWindow( slug ) {
1721
  '<script type="text/javascript">wppaAjaxUrl="'+wppaAjaxUrl+'";</script>');
1722
  wnd.document.write('</head>');
1723
  wnd.document.write('<body>'); // onunload="window.opener.location.reload()">'); // This does not work in Opera
1724
-
1725
  var xmlhttp = wppaGetXmlHttp();
1726
 
1727
  // Make the Ajax send data
@@ -1737,10 +1737,44 @@ function wppaAjaxPopupWindow( slug ) {
1737
  // Process result
1738
  if (xmlhttp.readyState==4 && xmlhttp.status==200) {
1739
  var result = xmlhttp.responseText;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1740
  wnd.document.write(result);
 
1741
  }
1742
- wnd.document.write('</body>');
1743
- wnd.document.write('</html>');
1744
 
1745
  }
1746
 
1706
  var height = 512;
1707
 
1708
  if ( screen.availWidth < width ) width = screen.availWidth;
1709
+ /*
1710
  var wnd = window.open("", "_blank", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width="+width+", height="+height, true);
1711
 
1712
  wnd.document.write('<!DOCTYPE html>');
1721
  '<script type="text/javascript">wppaAjaxUrl="'+wppaAjaxUrl+'";</script>');
1722
  wnd.document.write('</head>');
1723
  wnd.document.write('<body>'); // onunload="window.opener.location.reload()">'); // This does not work in Opera
1724
+ */
1725
  var xmlhttp = wppaGetXmlHttp();
1726
 
1727
  // Make the Ajax send data
1737
  // Process result
1738
  if (xmlhttp.readyState==4 && xmlhttp.status==200) {
1739
  var result = xmlhttp.responseText;
1740
+
1741
+ var opt = {
1742
+ modal: true,
1743
+ resizable: true,
1744
+ width: width,
1745
+ show: {
1746
+ effect: "fadeIn",
1747
+ duration: 800
1748
+ },
1749
+ closeText: wppaCloseText,
1750
+ };
1751
+ jQuery( '#wppa-modal-container' ).html( result ).dialog( opt ).dialog( "open" );
1752
+ jQuery( '.ui-dialog' ).css( {
1753
+ boxShadow: '0px 0px 5px 5px #aaaaaa',
1754
+ // borderRadius: wppaBoxRadius+'px',
1755
+ padding: '8px',
1756
+ backgroundColor: '#cccccc',
1757
+ boxSizing: 'content-box',
1758
+ });
1759
+ jQuery( '.ui-dialog-titlebar' ).css(
1760
+ {
1761
+ lineHeight: '0px',
1762
+ height: '32px',
1763
+ }
1764
+ )
1765
+ jQuery( '.ui-button' ).css(
1766
+ {
1767
+ float: 'right',
1768
+ });
1769
+
1770
+ jQuery( '.ui-button' ).attr( 'title', wppaCloseText );
1771
+
1772
+ /*
1773
  wnd.document.write(result);
1774
+ */
1775
  }
1776
+ // wnd.document.write('</body>');
1777
+ // wnd.document.write('</html>');
1778
 
1779
  }
1780
 
js/wppa-ajax-front.js CHANGED
@@ -3,7 +3,7 @@
3
  // Contains frontend ajax modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
- var wppaJsAjaxVersion = '6.5.05';
7
 
8
  var wppaRenderAdd = false;
9
  var wppaWaitForCounter = 0;
@@ -38,13 +38,64 @@ function wppaDoAjaxRender( mocc, ajaxurl, newurl, add, waitfor ) {
38
  jQuery( '#wppa-ajax-spin-'+mocc ).css( 'display', '' );
39
  },
40
  success: function( result, status, xhr ) {
 
41
  if ( wppaRenderAdd ) {
42
- // var oldHtml = jQuery( '#wppa-container-'+mocc ).html();
43
- // jQuery( '#wppa-container-'+mocc ).html( oldHtml + wppaRenderAdd + result );
44
  jQuery( wppaRenderAdd + result ).insertBefore( '#wppa-container-'+mocc+'-end' );
45
  }
 
46
  else {
47
- jQuery( '#wppa-container-'+mocc ).html( result );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  }
49
 
50
  // Push the stack
@@ -109,7 +160,9 @@ function wppaDoAjaxRender( mocc, ajaxurl, newurl, add, waitfor ) {
109
  },
110
  complete: function( xhr, status, newurl ) {
111
  wppaWaitForCounter++;
112
- jQuery('html, body').animate({ scrollTop: jQuery("#wppa-container-"+mocc).offset().top - 32 - wppaStickyHeaderHeight }, 1000);
 
 
113
  }
114
  } );
115
  }
@@ -312,8 +365,8 @@ function wppaEditPhoto( mocc, xid ) {
312
 
313
  if ( screen.availWidth < width ) width = screen.availWidth;
314
 
315
- var wnd = window.open( "", "_blank", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, copyhistory=no, width="+width+", height="+height, true );
316
-
317
  jQuery.ajax( { url: wppaAjaxUrl,
318
  data: 'action=wppa' +
319
  '&wppa-action=front-edit' +
@@ -323,36 +376,83 @@ function wppaEditPhoto( mocc, xid ) {
323
  type: 'POST',
324
  timeout: 60000,
325
  beforeSend: function( xhr ) {
326
- wnd.document.write( '<! DOCTYPE html>' );
327
- wnd.document.write( '<html>' );
328
- wnd.document.write( '<head>' );
329
- // The following is one statement that fixes a bug in opera
330
- var myHead = '<meta name="viewport" content="width=320" >' +
331
- '<link rel="stylesheet" id="wppa_style-css" href="'+wppaWppaUrl+'/wppa-admin-styles.css?ver='+wppaVersion+'" type="text/css" media="all" />'+
332
- '<link rel="stylesheet" id="theme_style" href="'+wppaThemeStyles+'" type="text/css" media="all" />'+
333
- '<style>body {font-family: sans-serif; font-size: 12px; line-height: 1.4em;}a {color: #21759B;}</style>'+
334
- '<script type="text/javascript" src="'+wppaIncludeUrl+'/js/jquery/jquery.js?ver='+wppaVersion+'"></script>'+
335
- '<script type="text/javascript" src="'+wppaWppaUrl+'/js/wppa-utils.js?ver='+wppaVersion+'"></script>'+
336
- '<script type="text/javascript" src="'+wppaWppaUrl+'/js/wppa-admin-scripts.js?ver='+wppaVersion+'"></script>'+
337
- '<title>'+name+'</title>'+
338
- '<script type="text/javascript">wppaAjaxUrl="'+wppaAjaxUrl+'";</script>';
339
- // alert(myHead);
340
- wnd.document.write( myHead );
341
- wnd.document.write( '</head>' );
342
- wnd.document.write( '<body>' ); // onunload="window.opener.location.reload()">' ); // This does not work in Opera
343
-
 
 
 
344
  },
345
  success: function( result, status, xhr ) {
346
- wnd.document.write( result );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
347
  },
348
  error: function( xhr, status, error ) {
349
- wnd.document.write( status + ' ' + error );
 
 
350
  wppaConsoleLog( 'wppaEditPhoto failed. Error = ' + error + ', status = ' + status, 'force' );
351
  },
352
  complete: function( xhr, status, newurl ) {
353
- // wnd.document.write( '<script>wppaPhotoStatusChange( "'+id+'" )</script>' );
354
- wnd.document.write( '</body>' );
355
- wnd.document.write( '</html>' );
 
 
356
  }
357
  } );
358
  }
@@ -636,7 +736,7 @@ function _wppaOvlRateIt( id, value, mocc, reloadAfter ) {
636
  // document.location.reload(true);
637
  return;
638
  }
639
-
640
  // Shift to next slide?
641
  if ( wppaNextOnCallback ) wppaOvlShowNext();
642
  }
@@ -769,18 +869,18 @@ function wppaAjaxComment( mocc, id ) {
769
  jQuery( "#wppa-comment-spin-"+mocc ).css( 'display', 'inline' );
770
  },
771
  success: function( result, status, xhr ) {
772
-
773
  // sanitize
774
  result = result.replace( /\\/g, '' );
775
-
776
  // Show result
777
  jQuery( "#wppa-comments-"+mocc ).html( result );
778
-
779
  // if from slideshow, update memory data array
780
  if ( _wppaCurIdx[mocc] ) {
781
  _wppaCommentHtml[mocc][_wppaCurIdx[mocc]] = result;
782
  }
783
-
784
  // Make sure comments are visible
785
  wppaOpenComments( mocc );
786
  },
3
  // Contains frontend ajax modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
+ var wppaJsAjaxVersion = '6.5.06';
7
 
8
  var wppaRenderAdd = false;
9
  var wppaWaitForCounter = 0;
38
  jQuery( '#wppa-ajax-spin-'+mocc ).css( 'display', '' );
39
  },
40
  success: function( result, status, xhr ) {
41
+
42
  if ( wppaRenderAdd ) {
 
 
43
  jQuery( wppaRenderAdd + result ).insertBefore( '#wppa-container-'+mocc+'-end' );
44
  }
45
+
46
  else {
47
+
48
+ if ( wppaRenderModal ) {
49
+
50
+ // Init dialog options
51
+ var opt = {
52
+ modal: true,
53
+ resizable: true,
54
+ width: wppaGetContainerWidth( mocc ),
55
+ show: {
56
+ effect: "fadeIn",
57
+ duration: 400
58
+ },
59
+ closeText: "",
60
+ };
61
+
62
+ // Open modal dialog
63
+ jQuery( '#wppa-modal-container-'+mocc ).html( result ).dialog( opt ).dialog( "open" );
64
+
65
+ // Adjust styles
66
+ jQuery( '.ui-dialog' ).css( {
67
+ boxShadow: '0px 0px 5px 5px #aaaaaa',
68
+ borderRadius: wppaBoxRadius+'px',
69
+ padding: '8px',
70
+ backgroundColor: wppaModalBgColor,
71
+ boxSizing: 'content-box',
72
+ zIndex: 100000,
73
+ });
74
+ jQuery( '.ui-dialog-titlebar' ).css(
75
+ {
76
+ lineHeight: '0px',
77
+ height: '32px',
78
+ }
79
+ );
80
+ jQuery( '.ui-button' ).css(
81
+ {
82
+ backgroundImage: wppaModalQuitImg,
83
+ padding: 0,
84
+ position: 'absolute',
85
+ right: '8px',
86
+ top: '8px',
87
+ width: '16px',
88
+ height: '16px',
89
+ });
90
+ jQuery( '.ui-button' ).attr( 'title', 'Close' );
91
+
92
+ // Stop a possible slideshow
93
+ jQuery( '.ui-button' ).on( 'click', function() { _wppaStop( mocc ); } );
94
+ }
95
+
96
+ else {
97
+ jQuery( '#wppa-container-'+mocc ).html( result );
98
+ }
99
  }
100
 
101
  // Push the stack
160
  },
161
  complete: function( xhr, status, newurl ) {
162
  wppaWaitForCounter++;
163
+ if ( ! wppaRenderModal ) {
164
+ jQuery('html, body').animate({ scrollTop: jQuery("#wppa-container-"+mocc).offset().top - 32 - wppaStickyHeaderHeight }, 1000);
165
+ }
166
  }
167
  } );
168
  }
365
 
366
  if ( screen.availWidth < width ) width = screen.availWidth;
367
 
368
+ var wnd;
369
+
370
  jQuery.ajax( { url: wppaAjaxUrl,
371
  data: 'action=wppa' +
372
  '&wppa-action=front-edit' +
376
  type: 'POST',
377
  timeout: 60000,
378
  beforeSend: function( xhr ) {
379
+ if ( wppaUploadEdit == 'classic' ) {
380
+
381
+ // Setup window
382
+ wnd = window.open( "", "_blank", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, copyhistory=no, width="+width+", height="+height, true );
383
+ wnd.document.write( '<! DOCTYPE html>' );
384
+ wnd.document.write( '<html>' );
385
+ wnd.document.write( '<head>' );
386
+ // The following is one statement that fixes a bug in opera
387
+ var myHead = '<meta name="viewport" content="width=320" >' +
388
+ '<link rel="stylesheet" id="wppa_style-css" href="'+wppaWppaUrl+'/wppa-admin-styles.css?ver='+wppaVersion+'" type="text/css" media="all" />'+
389
+ '<link rel="stylesheet" id="theme_style" href="'+wppaThemeStyles+'" type="text/css" media="all" />'+
390
+ '<style>body {font-family: sans-serif; font-size: 12px; line-height: 1.4em;}a {color: #21759B;}</style>'+
391
+ '<script type="text/javascript" src="'+wppaIncludeUrl+'/js/jquery/jquery.js?ver='+wppaVersion+'"></script>'+
392
+ '<script type="text/javascript" src="'+wppaWppaUrl+'/js/wppa-utils.js?ver='+wppaVersion+'"></script>'+
393
+ '<script type="text/javascript" src="'+wppaWppaUrl+'/js/wppa-admin-scripts.js?ver='+wppaVersion+'"></script>'+
394
+ '<title>'+name+'</title>'+
395
+ '<script type="text/javascript">wppaAjaxUrl="'+wppaAjaxUrl+'";</script>';
396
+ wnd.document.write( myHead );
397
+ wnd.document.write( '</head>' );
398
+ wnd.document.write( '<body>' ); // onunload="window.opener.location.reload()">' ); // This does not work in Opera
399
+ }
400
  },
401
  success: function( result, status, xhr ) {
402
+ if ( wppaUploadEdit == 'classic' ) {
403
+ wnd.document.write( result );
404
+ }
405
+ if ( wppaUploadEdit == 'new' ) {
406
+ var opt = {
407
+ modal: true,
408
+ resizable: true,
409
+ width: wppaGetContainerWidth( mocc ),
410
+ show: {
411
+ effect: "fadeIn",
412
+ duration: 400
413
+ },
414
+ closeText: "",
415
+ };
416
+ jQuery( '#wppa-modal-container-'+mocc ).html( result ).dialog( opt ).dialog( "open" );
417
+ jQuery( '.ui-dialog' ).css( {
418
+ boxShadow: '0px 0px 5px 5px #aaaaaa',
419
+ borderRadius: wppaBoxRadius+'px',
420
+ padding: '8px',
421
+ backgroundColor: wppaModalBgColor,
422
+ boxSizing: 'content-box',
423
+ zIndex: 100000,
424
+ });
425
+ jQuery( '.ui-dialog-titlebar' ).css(
426
+ {
427
+ lineHeight: '0px',
428
+ height: '24px',
429
+ }
430
+ )
431
+ jQuery( '.ui-button' ).css(
432
+ {
433
+ backgroundImage: wppaModalQuitImg,
434
+ padding: 0,
435
+ position: 'absolute',
436
+ right: '8px',
437
+ top: '8px',
438
+ width: '16px',
439
+ height: '16px',
440
+ });
441
+ jQuery( '.ui-button' ).attr( 'title', 'Close' );
442
+ }
443
  },
444
  error: function( xhr, status, error ) {
445
+ if ( wppaUploadEdit == 'classic' ) {
446
+ wnd.document.write( status + ' ' + error );
447
+ }
448
  wppaConsoleLog( 'wppaEditPhoto failed. Error = ' + error + ', status = ' + status, 'force' );
449
  },
450
  complete: function( xhr, status, newurl ) {
451
+ if ( wppaUploadEdit == 'classic' ) {
452
+ wnd.document.write( '<script>wppaPhotoStatusChange( "'+id+'" )</script>' );
453
+ wnd.document.write( '</body>' );
454
+ wnd.document.write( '</html>' );
455
+ }
456
  }
457
  } );
458
  }
736
  // document.location.reload(true);
737
  return;
738
  }
739
+
740
  // Shift to next slide?
741
  if ( wppaNextOnCallback ) wppaOvlShowNext();
742
  }
869
  jQuery( "#wppa-comment-spin-"+mocc ).css( 'display', 'inline' );
870
  },
871
  success: function( result, status, xhr ) {
872
+
873
  // sanitize
874
  result = result.replace( /\\/g, '' );
875
+
876
  // Show result
877
  jQuery( "#wppa-comments-"+mocc ).html( result );
878
+
879
  // if from slideshow, update memory data array
880
  if ( _wppaCurIdx[mocc] ) {
881
  _wppaCommentHtml[mocc][_wppaCurIdx[mocc]] = result;
882
  }
883
+
884
  // Make sure comments are visible
885
  wppaOpenComments( mocc );
886
  },
js/wppa-ajax-front.min.js CHANGED
@@ -4,15 +4,16 @@
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
- var wppaJsAjaxVersion='6.5.05';var wppaRenderAdd=false;var wppaWaitForCounter=0;function wppaDoAjaxRender(mocc,ajaxurl,newurl,add,waitfor){if(parseInt(waitfor)>0&&waitfor!=wppaWaitForCounter){setTimeout('wppaDoAjaxRender( '+mocc+', \''+ajaxurl+'\', \''+newurl+'\', \''+add+'\', '+waitfor+' )',100);return;}
8
  wppaRenderAdd=add;if(wppaLang!='')ajaxurl+='&lang='+wppaLang;if(wppaAutoColumnWidth[mocc])ajaxurl+='&resp=1';if(wppaCanAjaxRender){jQuery.ajax({url:ajaxurl,async:true,type:'GET',timeout:60000,beforeSend:function(xhr){if(_wppaSSRuns[mocc])_wppaStop(mocc);jQuery('#wppa-ajax-spin-'+mocc).css('display','');},success:function(result,status,xhr){if(wppaRenderAdd){jQuery(wppaRenderAdd+result).insertBefore('#wppa-container-'+mocc+'-end');}
9
- else{jQuery('#wppa-container-'+mocc).html(result);}
 
10
  if(wppaCanPushState&&wppaUpdateAddressLine){wppaHis++;try{history.pushState({page:wppaHis,occur:mocc,type:'html',html:result},"",newurl);wppaConsoleLog('Ajax rendering: History stack pushed','force');}
11
  catch(err){try{history.replaceState({page:wppaHis,occur:mocc,type:'html'},"",newurl);wppaConsoleLog('Ajax rendering: History stack updated','force');}
12
  catch(err){wppaConsoleLog('Ajax rendering: History stack update failed','force');}}
13
  if(wppaFirstOccur==0)wppaFirstOccur=mocc;}
14
  wppaUpdateLightboxes();if(typeof(wppaQRUpdate)!='undefined')wppaQRUpdate(newurl);wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);jQuery('#speed0-'+mocc).html(wppaSlower);jQuery('#speed1-'+mocc).html(wppaFaster);jQuery('#wppa-ajax-spin-'+mocc).css('display','none');var scriptPos=result.indexOf('<script');var scriptPosLast=result.lastIndexOf('<script');if(scriptPos==-1){wppaConsoleLog('Ajax render did NOT contain a script tag','force');}
15
- else{wppaConsoleLog('Ajax render did contain a script tag at position '+scriptPos+' last at '+scriptPosLast,'force');}},error:function(xhr,status,error){wppaConsoleLog('wppaDoAjaxRender failed. Error = '+error+', status = '+status,'force');document.location.href=newurl;wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);},complete:function(xhr,status,newurl){wppaWaitForCounter++;jQuery('html, body').animate({scrollTop:jQuery("#wppa-container-"+mocc).offset().top-32-wppaStickyHeaderHeight},1000);}});}
16
  else{document.location.href=newurl;wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);}}
17
  function wppaAjaxApprovePhoto(photo){jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=approve'+'&photo-id='+photo,async:true,type:'GET',timeout:60000,success:function(result,status,xhr){if(result=='OK'){jQuery('.wppa-approve-'+photo).css('display','none');}
18
  else{alert(result);}},error:function(xhr,status,error){wppaConsoleLog('wppaAjaxApprovePhoto failed. Error = '+error+', status = '+status,'force');},});}
@@ -27,7 +28,10 @@ function wppaAjaxAddPhotoToZip(mocc,id,reload){jQuery.ajax({url:wppaAjaxUrl,data
27
  else{alert(result);}
28
  if(reload){document.location.reload(true);}},error:function(xhr,status,error){wppaConsoleLog('wppaAjaxAddPhotoToZip failed. Error = '+error+', status = '+status,'force');},});}
29
  function wppaAjaxDeleteMyZip(){jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=delmyzip',async:true,type:'GET',timeout:60000,success:function(result,status,xhr){document.location.reload(true);},error:function(xhr,status,error){wppaConsoleLog('wppaAjaxDeleteMyZip failed. Error = '+error+', status = '+status,'force');},});}
30
- function wppaEditPhoto(mocc,xid){var id=String(xid);var name='Edit Photo '+id;var desc='';var width=wppaEditPhotoWidth;var height=512;if(screen.availWidth<width)width=screen.availWidth;var wnd=window.open("","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, copyhistory=no, width="+width+", height="+height,true);jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=front-edit'+'&photo-id='+id+'&moccur='+mocc,async:true,type:'POST',timeout:60000,beforeSend:function(xhr){wnd.document.write('<! DOCTYPE html>');wnd.document.write('<html>');wnd.document.write('<head>');var myHead='<meta name="viewport" content="width=320" >'+'<link rel="stylesheet" id="wppa_style-css" href="'+wppaWppaUrl+'/wppa-admin-styles.css?ver='+wppaVersion+'" type="text/css" media="all" />'+'<link rel="stylesheet" id="theme_style" href="'+wppaThemeStyles+'" type="text/css" media="all" />'+'<style>body {font-family: sans-serif; font-size: 12px; line-height: 1.4em;}a {color: #21759B;}</style>'+'<script type="text/javascript" src="'+wppaIncludeUrl+'/js/jquery/jquery.js?ver='+wppaVersion+'"></script>'+'<script type="text/javascript" src="'+wppaWppaUrl+'/js/wppa-utils.js?ver='+wppaVersion+'"></script>'+'<script type="text/javascript" src="'+wppaWppaUrl+'/js/wppa-admin-scripts.js?ver='+wppaVersion+'"></script>'+'<title>'+name+'</title>'+'<script type="text/javascript">wppaAjaxUrl="'+wppaAjaxUrl+'";</script>';wnd.document.write(myHead);wnd.document.write('</head>');wnd.document.write('<body>');},success:function(result,status,xhr){wnd.document.write(result);},error:function(xhr,status,error){wnd.document.write(status+' '+error);wppaConsoleLog('wppaEditPhoto failed. Error = '+error+', status = '+status,'force');},complete:function(xhr,status,newurl){wnd.document.write('</body>');wnd.document.write('</html>');}});}
 
 
 
31
  function wppaPrevTags(tagsSel,tagsEdit,tagsAlbum,tagsPrev){var sel=jQuery('.'+tagsSel);var selArr=[];var editTag='';var album=jQuery('#'+tagsAlbum).val();var i=0;var j=0;var tags='';while(i<sel.length){if(sel[i].selected){selArr[j]=sel[i].value;j++;}
32
  i++;}
33
  editTag=jQuery('#'+tagsEdit).val();if(editTag!=''){selArr[j]=editTag;}
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
+ var wppaJsAjaxVersion='6.5.06';var wppaRenderAdd=false;var wppaWaitForCounter=0;function wppaDoAjaxRender(mocc,ajaxurl,newurl,add,waitfor){if(parseInt(waitfor)>0&&waitfor!=wppaWaitForCounter){setTimeout('wppaDoAjaxRender( '+mocc+', \''+ajaxurl+'\', \''+newurl+'\', \''+add+'\', '+waitfor+' )',100);return;}
8
  wppaRenderAdd=add;if(wppaLang!='')ajaxurl+='&lang='+wppaLang;if(wppaAutoColumnWidth[mocc])ajaxurl+='&resp=1';if(wppaCanAjaxRender){jQuery.ajax({url:ajaxurl,async:true,type:'GET',timeout:60000,beforeSend:function(xhr){if(_wppaSSRuns[mocc])_wppaStop(mocc);jQuery('#wppa-ajax-spin-'+mocc).css('display','');},success:function(result,status,xhr){if(wppaRenderAdd){jQuery(wppaRenderAdd+result).insertBefore('#wppa-container-'+mocc+'-end');}
9
+ else{if(wppaRenderModal){var opt={modal:true,resizable:true,width:wppaGetContainerWidth(mocc),show:{effect:"fadeIn",duration:400},closeText:"",};jQuery('#wppa-modal-container-'+mocc).html(result).dialog(opt).dialog("open");jQuery('.ui-dialog').css({boxShadow:'0px 0px 5px 5px #aaaaaa',borderRadius:wppaBoxRadius+'px',padding:'8px',backgroundColor:wppaModalBgColor,boxSizing:'content-box',zIndex:100000,});jQuery('.ui-dialog-titlebar').css({lineHeight:'0px',height:'32px',});jQuery('.ui-button').css({backgroundImage:wppaModalQuitImg,padding:0,position:'absolute',right:'8px',top:'8px',width:'16px',height:'16px',});jQuery('.ui-button').attr('title','Close');jQuery('.ui-button').on('click',function(){_wppaStop(mocc);});}
10
+ else{jQuery('#wppa-container-'+mocc).html(result);}}
11
  if(wppaCanPushState&&wppaUpdateAddressLine){wppaHis++;try{history.pushState({page:wppaHis,occur:mocc,type:'html',html:result},"",newurl);wppaConsoleLog('Ajax rendering: History stack pushed','force');}
12
  catch(err){try{history.replaceState({page:wppaHis,occur:mocc,type:'html'},"",newurl);wppaConsoleLog('Ajax rendering: History stack updated','force');}
13
  catch(err){wppaConsoleLog('Ajax rendering: History stack update failed','force');}}
14
  if(wppaFirstOccur==0)wppaFirstOccur=mocc;}
15
  wppaUpdateLightboxes();if(typeof(wppaQRUpdate)!='undefined')wppaQRUpdate(newurl);wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);jQuery('#speed0-'+mocc).html(wppaSlower);jQuery('#speed1-'+mocc).html(wppaFaster);jQuery('#wppa-ajax-spin-'+mocc).css('display','none');var scriptPos=result.indexOf('<script');var scriptPosLast=result.lastIndexOf('<script');if(scriptPos==-1){wppaConsoleLog('Ajax render did NOT contain a script tag','force');}
16
+ else{wppaConsoleLog('Ajax render did contain a script tag at position '+scriptPos+' last at '+scriptPosLast,'force');}},error:function(xhr,status,error){wppaConsoleLog('wppaDoAjaxRender failed. Error = '+error+', status = '+status,'force');document.location.href=newurl;wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);},complete:function(xhr,status,newurl){wppaWaitForCounter++;if(!wppaRenderModal){jQuery('html, body').animate({scrollTop:jQuery("#wppa-container-"+mocc).offset().top-32-wppaStickyHeaderHeight},1000);}}});}
17
  else{document.location.href=newurl;wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);}}
18
  function wppaAjaxApprovePhoto(photo){jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=approve'+'&photo-id='+photo,async:true,type:'GET',timeout:60000,success:function(result,status,xhr){if(result=='OK'){jQuery('.wppa-approve-'+photo).css('display','none');}
19
  else{alert(result);}},error:function(xhr,status,error){wppaConsoleLog('wppaAjaxApprovePhoto failed. Error = '+error+', status = '+status,'force');},});}
28
  else{alert(result);}
29
  if(reload){document.location.reload(true);}},error:function(xhr,status,error){wppaConsoleLog('wppaAjaxAddPhotoToZip failed. Error = '+error+', status = '+status,'force');},});}
30
  function wppaAjaxDeleteMyZip(){jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=delmyzip',async:true,type:'GET',timeout:60000,success:function(result,status,xhr){document.location.reload(true);},error:function(xhr,status,error){wppaConsoleLog('wppaAjaxDeleteMyZip failed. Error = '+error+', status = '+status,'force');},});}
31
+ function wppaEditPhoto(mocc,xid){var id=String(xid);var name='Edit Photo '+id;var desc='';var width=wppaEditPhotoWidth;var height=512;if(screen.availWidth<width)width=screen.availWidth;var wnd;jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=front-edit'+'&photo-id='+id+'&moccur='+mocc,async:true,type:'POST',timeout:60000,beforeSend:function(xhr){if(wppaUploadEdit=='classic'){wnd=window.open("","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, copyhistory=no, width="+width+", height="+height,true);wnd.document.write('<! DOCTYPE html>');wnd.document.write('<html>');wnd.document.write('<head>');var myHead='<meta name="viewport" content="width=320" >'+'<link rel="stylesheet" id="wppa_style-css" href="'+wppaWppaUrl+'/wppa-admin-styles.css?ver='+wppaVersion+'" type="text/css" media="all" />'+'<link rel="stylesheet" id="theme_style" href="'+wppaThemeStyles+'" type="text/css" media="all" />'+'<style>body {font-family: sans-serif; font-size: 12px; line-height: 1.4em;}a {color: #21759B;}</style>'+'<script type="text/javascript" src="'+wppaIncludeUrl+'/js/jquery/jquery.js?ver='+wppaVersion+'"></script>'+'<script type="text/javascript" src="'+wppaWppaUrl+'/js/wppa-utils.js?ver='+wppaVersion+'"></script>'+'<script type="text/javascript" src="'+wppaWppaUrl+'/js/wppa-admin-scripts.js?ver='+wppaVersion+'"></script>'+'<title>'+name+'</title>'+'<script type="text/javascript">wppaAjaxUrl="'+wppaAjaxUrl+'";</script>';wnd.document.write(myHead);wnd.document.write('</head>');wnd.document.write('<body>');}},success:function(result,status,xhr){if(wppaUploadEdit=='classic'){wnd.document.write(result);}
32
+ if(wppaUploadEdit=='new'){var opt={modal:true,resizable:true,width:wppaGetContainerWidth(mocc),show:{effect:"fadeIn",duration:400},closeText:"",};jQuery('#wppa-modal-container-'+mocc).html(result).dialog(opt).dialog("open");jQuery('.ui-dialog').css({boxShadow:'0px 0px 5px 5px #aaaaaa',borderRadius:wppaBoxRadius+'px',padding:'8px',backgroundColor:wppaModalBgColor,boxSizing:'content-box',zIndex:100000,});jQuery('.ui-dialog-titlebar').css({lineHeight:'0px',height:'24px',})
33
+ jQuery('.ui-button').css({backgroundImage:wppaModalQuitImg,padding:0,position:'absolute',right:'8px',top:'8px',width:'16px',height:'16px',});jQuery('.ui-button').attr('title','Close');}},error:function(xhr,status,error){if(wppaUploadEdit=='classic'){wnd.document.write(status+' '+error);}
34
+ wppaConsoleLog('wppaEditPhoto failed. Error = '+error+', status = '+status,'force');},complete:function(xhr,status,newurl){if(wppaUploadEdit=='classic'){wnd.document.write('<script>wppaPhotoStatusChange( "'+id+'" )</script>');wnd.document.write('</body>');wnd.document.write('</html>');}}});}
35
  function wppaPrevTags(tagsSel,tagsEdit,tagsAlbum,tagsPrev){var sel=jQuery('.'+tagsSel);var selArr=[];var editTag='';var album=jQuery('#'+tagsAlbum).val();var i=0;var j=0;var tags='';while(i<sel.length){if(sel[i].selected){selArr[j]=sel[i].value;j++;}
36
  i++;}
37
  editTag=jQuery('#'+tagsEdit).val();if(editTag!=''){selArr[j]=editTag;}
js/wppa-slideshow.js CHANGED
@@ -3,7 +3,7 @@
3
  // Contains slideshow modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
- var wppaJsSlideshowVersion = '6.5.05';
7
 
8
  // This is an entrypoint to load the slide data
9
  function wppaStoreSlideInfo(
@@ -698,7 +698,12 @@ function _wppaNextSlide_4( mocc ) {
698
  }
699
 
700
  // Update breadcrumb
701
- jQuery( '#bc-pname-'+mocc ).html( _wppaNames[mocc][_wppaCurIdx[mocc]] );
 
 
 
 
 
702
 
703
  // Adjust filmstrip
704
  _wppaAdjustFilmstrip( mocc );
@@ -1325,7 +1330,12 @@ function _wppaStart( mocc, idx ) {
1325
  jQuery( '#speed0-'+mocc ).css( 'display', 'inline' );
1326
  jQuery( '#speed1-'+mocc ).css( 'display', 'inline' );
1327
  _wppaShowMetaData( mocc, 'hide' );
1328
- jQuery( '#bc-pname-'+mocc ).html( wppaSlideShow );
 
 
 
 
 
1329
  }
1330
 
1331
  // Both cases:
@@ -1339,7 +1349,12 @@ function _wppaStop( mocc ) {
1339
  jQuery( '#speed0-'+mocc ).css( 'display', 'none' );
1340
  jQuery( '#speed1-'+mocc ).css( 'display', 'none' );
1341
  _wppaShowMetaData( mocc, 'show' );
1342
- jQuery( '#bc-pname-'+mocc ).html( _wppaNames[mocc][_wppaCurIdx[mocc]] );
 
 
 
 
 
1343
  }
1344
 
1345
  function _wppaSpeed( mocc, faster ) {
3
  // Contains slideshow modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
+ var wppaJsSlideshowVersion = '6.5.06';
7
 
8
  // This is an entrypoint to load the slide data
9
  function wppaStoreSlideInfo(
698
  }
699
 
700
  // Update breadcrumb
701
+ if ( jQuery( '#bc-pname-modal-'+mocc ) ) {
702
+ jQuery( '#bc-pname-modal-'+mocc ).html( _wppaNames[mocc][_wppaCurIdx[mocc]] );
703
+ }
704
+ else {
705
+ jQuery( '#bc-pname-'+mocc ).html( _wppaNames[mocc][_wppaCurIdx[mocc]] );
706
+ }
707
 
708
  // Adjust filmstrip
709
  _wppaAdjustFilmstrip( mocc );
1330
  jQuery( '#speed0-'+mocc ).css( 'display', 'inline' );
1331
  jQuery( '#speed1-'+mocc ).css( 'display', 'inline' );
1332
  _wppaShowMetaData( mocc, 'hide' );
1333
+ if ( jQuery( '#bc-pname-modal-'+mocc ) ) {
1334
+ jQuery( '#bc-pname-modal-'+mocc ).html( wppaSlideShow );
1335
+ }
1336
+ else {
1337
+ jQuery( '#bc-pname-'+mocc ).html( wppaSlideShow );
1338
+ }
1339
  }
1340
 
1341
  // Both cases:
1349
  jQuery( '#speed0-'+mocc ).css( 'display', 'none' );
1350
  jQuery( '#speed1-'+mocc ).css( 'display', 'none' );
1351
  _wppaShowMetaData( mocc, 'show' );
1352
+ if ( jQuery( '#bc-pname-modal-'+mocc ) ) {
1353
+ jQuery( '#bc-pname-modal-'+mocc ).html( _wppaNames[mocc][_wppaCurIdx[mocc]] );
1354
+ }
1355
+ else {
1356
+ jQuery( '#bc-pname-'+mocc ).html( _wppaNames[mocc][_wppaCurIdx[mocc]] );
1357
+ }
1358
  }
1359
 
1360
  function _wppaSpeed( mocc, faster ) {
js/wppa-slideshow.min.js CHANGED
@@ -4,7 +4,7 @@
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
- var wppaJsSlideshowVersion='6.5.05';function wppaStoreSlideInfo(mocc,id,url,size,width,height,fullname,name,desc,photoid,avgrat,discount,myrat,rateurl,linkurl,linktitle,linktarget,iwtimeout,commenthtml,iptchtml,exifhtml,lbtitle,shareurl,smhtml,ogdsc,hiresurl,videohtml,audiohtml,waittext,imagealt,posterurl){var cursor;desc=wppaRepairScriptTags(desc);if(!_wppaSlides[mocc]||'0'==id){_wppaSlides[mocc]=[];_wppaNames[mocc]=[];_wppaFullNames[mocc]=[];_wppaDsc[mocc]=[];_wppaOgDsc[mocc]=[];_wppaCurIdx[mocc]=-1;_wppaNxtIdx[mocc]=0;if(parseInt(iwtimeout)>0)_wppaTimeOut[mocc]=parseInt(iwtimeout);else _wppaTimeOut[mocc]=wppaSlideShowTimeOut;_wppaSSRuns[mocc]=false;_wppaTP[mocc]=-2;_wppaFg[mocc]=0;_wppaIsBusy[mocc]=false;_wppaFirst[mocc]=true;_wppaId[mocc]=[];_wppaAvg[mocc]=[];_wppaDisc[mocc]=[];_wppaMyr[mocc]=[];_wppaVRU[mocc]=[];_wppaLinkUrl[mocc]=[];_wppaLinkTitle[mocc]=[];_wppaLinkTarget[mocc]=[];_wppaCommentHtml[mocc]=[];_wppaIptcHtml[mocc]=[];_wppaExifHtml[mocc]=[];_wppaUrl[mocc]=[];_wppaSkipRated[mocc]=false;_wppaLbTitle[mocc]=[];_wppaDidGoto[mocc]=false;wppaSlidePause[mocc]=false;_wppaShareUrl[mocc]=[];_wppaShareHtml[mocc]=[];_wppaFilmNoMove[mocc]=false;_wppaHiresUrl[mocc]=[];_wppaIsVideo[mocc]=[];_wppaVideoHtml[mocc]=[];_wppaAudioHtml[mocc]=[];_wppaVideoNatWidth[mocc]=[];_wppaVideoNatHeight[mocc]=[];wppaVideoPlaying[mocc]=false;wppaAudioPlaying[mocc]=false;_wppaWaitTexts[mocc]=[];_wppaImageAlt[mocc]=[];}
8
  cursor='default';if(linkurl!=''){cursor='pointer';}
9
  else if(wppaLightBox[mocc]!=''){cursor='url( '+wppaImageDirectory+wppaMagnifierCursor+' ),pointer';}
10
  _wppaIsVideo[mocc][id]=(''!=videohtml);if(_wppaIsVideo[mocc][id]){_wppaSlides[mocc][id]=' alt="'+imagealt+'" class="theimg theimg-'+mocc+' big" ';if(wppaSlideVideoStart&&wppaLightBox[mocc]==''){_wppaSlides[mocc][id]+=' autoplay ';}
@@ -66,7 +66,9 @@ break;case'turnover':switch(dir){case'left':case'right':var nwImgWid=parseInt(jQ
66
  break;default:alert('Animation type '+wppaAnimationType+' is not supported in this version');}}
67
  function _wppaNextSlide_4(mocc){var nw=_wppaFg[mocc];var ol=1-nw;var olSli="#theslide"+ol+"-"+mocc;var nwSli="#theslide"+nw+"-"+mocc;jQuery(olSli).css({zIndex:80});jQuery(nwSli).css({zIndex:81});_wppaCurIdx[mocc]=_wppaNxtIdx[mocc];wppaFormatSlide(mocc);if(wppaIsMini[mocc]||wppaGetContainerWidth(mocc)<wppaMiniTreshold){jQuery('#counter-'+mocc).html((_wppaCurIdx[mocc]+1)+' / '+_wppaSlides[mocc].length);}
68
  else{jQuery('#counter-'+mocc).html(wppaPhoto+' '+(_wppaCurIdx[mocc]+1)+' '+wppaOf+' '+_wppaSlides[mocc].length);}
69
- jQuery('#bc-pname-'+mocc).html(_wppaNames[mocc][_wppaCurIdx[mocc]]);_wppaAdjustFilmstrip(mocc);_wppaSetRatingDisplay(mocc);setTimeout('_wppaNextSlide_5( '+mocc+' )',_wppaTextDelay);}
 
 
70
  function _wppaNextSlide_5(mocc){if(!_wppaToTheSame){jQuery('#imagedesc-'+mocc).html(_wppaDsc[mocc][_wppaCurIdx[mocc]]);if(wppaHideWhenEmpty){var desc=_wppaDsc[mocc][_wppaCurIdx[mocc]];if(''==desc||'&nbsp;'==desc){jQuery('#descbox-'+mocc).css('display','none');}
71
  else{jQuery('#descbox-'+mocc).css('display','');}}
72
  jQuery("#imagetitle-"+mocc).html(wppaMakeNameHtml(mocc));jQuery("#wppa-comments-"+mocc).html(_wppaCommentHtml[mocc][_wppaCurIdx[mocc]]);jQuery("#iptc-"+mocc).html(_wppaIptcHtml[mocc][_wppaCurIdx[mocc]]);jQuery("#exif-"+mocc).html(_wppaExifHtml[mocc][_wppaCurIdx[mocc]]);jQuery("#wppa-share-"+mocc).html(_wppaShareHtml[mocc][_wppaCurIdx[mocc]]);}
@@ -141,9 +143,11 @@ function _wppaGotoContinue(mocc){if(_wppaIsBusy[mocc]){setTimeout('_wppaGotoCont
141
  setTimeout('_wppaNextSlide( '+mocc+', "reset" )',wppaGetSlideshowTimeout(mocc)+10);}
142
  function _wppaStart(mocc,idx){if(idx==-2){var i=0;idx=0;_wppaSkipRated[mocc]=true;if(_wppaMyr[mocc][i]!=0){while(i<_wppaSlides[mocc].length){if(idx==0&&_wppaMyr[mocc][i]==0)idx=i;i++;}}}
143
  if(idx>-1){jQuery('#startstop-'+mocc).html(wppaStart+' '+wppaSlideShow);jQuery('#speed0-'+mocc).css('display','none');jQuery('#speed1-'+mocc).css('display','none');_wppaNxtIdx[mocc]=idx;_wppaCurIdx[mocc]=idx;_wppaNextSlide(mocc,0);_wppaShowMetaData(mocc,'show');}
144
- else{_wppaSSRuns[mocc]=true;_wppaNextSlide(mocc,0);jQuery('#startstop-'+mocc).html(wppaStop);jQuery('#speed0-'+mocc).css('display','inline');jQuery('#speed1-'+mocc).css('display','inline');_wppaShowMetaData(mocc,'hide');jQuery('#bc-pname-'+mocc).html(wppaSlideShow);}
 
145
  _wppaSetRatingDisplay(mocc);}
146
- function _wppaStop(mocc){_wppaSSRuns[mocc]=false;jQuery('#startstop-'+mocc).html(wppaStart+' '+wppaSlideShow);jQuery('#speed0-'+mocc).css('display','none');jQuery('#speed1-'+mocc).css('display','none');_wppaShowMetaData(mocc,'show');jQuery('#bc-pname-'+mocc).html(_wppaNames[mocc][_wppaCurIdx[mocc]]);}
 
147
  function _wppaSpeed(mocc,faster){if(_wppaTimeOut[mocc]=='random'){return;}
148
  if(faster){if(_wppaTimeOut[mocc]>500)_wppaTimeOut[mocc]/=1.5;}
149
  else{if(_wppaTimeOut[mocc]<60000)_wppaTimeOut[mocc]*=1.5;}}
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
+ var wppaJsSlideshowVersion='6.5.06';function wppaStoreSlideInfo(mocc,id,url,size,width,height,fullname,name,desc,photoid,avgrat,discount,myrat,rateurl,linkurl,linktitle,linktarget,iwtimeout,commenthtml,iptchtml,exifhtml,lbtitle,shareurl,smhtml,ogdsc,hiresurl,videohtml,audiohtml,waittext,imagealt,posterurl){var cursor;desc=wppaRepairScriptTags(desc);if(!_wppaSlides[mocc]||'0'==id){_wppaSlides[mocc]=[];_wppaNames[mocc]=[];_wppaFullNames[mocc]=[];_wppaDsc[mocc]=[];_wppaOgDsc[mocc]=[];_wppaCurIdx[mocc]=-1;_wppaNxtIdx[mocc]=0;if(parseInt(iwtimeout)>0)_wppaTimeOut[mocc]=parseInt(iwtimeout);else _wppaTimeOut[mocc]=wppaSlideShowTimeOut;_wppaSSRuns[mocc]=false;_wppaTP[mocc]=-2;_wppaFg[mocc]=0;_wppaIsBusy[mocc]=false;_wppaFirst[mocc]=true;_wppaId[mocc]=[];_wppaAvg[mocc]=[];_wppaDisc[mocc]=[];_wppaMyr[mocc]=[];_wppaVRU[mocc]=[];_wppaLinkUrl[mocc]=[];_wppaLinkTitle[mocc]=[];_wppaLinkTarget[mocc]=[];_wppaCommentHtml[mocc]=[];_wppaIptcHtml[mocc]=[];_wppaExifHtml[mocc]=[];_wppaUrl[mocc]=[];_wppaSkipRated[mocc]=false;_wppaLbTitle[mocc]=[];_wppaDidGoto[mocc]=false;wppaSlidePause[mocc]=false;_wppaShareUrl[mocc]=[];_wppaShareHtml[mocc]=[];_wppaFilmNoMove[mocc]=false;_wppaHiresUrl[mocc]=[];_wppaIsVideo[mocc]=[];_wppaVideoHtml[mocc]=[];_wppaAudioHtml[mocc]=[];_wppaVideoNatWidth[mocc]=[];_wppaVideoNatHeight[mocc]=[];wppaVideoPlaying[mocc]=false;wppaAudioPlaying[mocc]=false;_wppaWaitTexts[mocc]=[];_wppaImageAlt[mocc]=[];}
8
  cursor='default';if(linkurl!=''){cursor='pointer';}
9
  else if(wppaLightBox[mocc]!=''){cursor='url( '+wppaImageDirectory+wppaMagnifierCursor+' ),pointer';}
10
  _wppaIsVideo[mocc][id]=(''!=videohtml);if(_wppaIsVideo[mocc][id]){_wppaSlides[mocc][id]=' alt="'+imagealt+'" class="theimg theimg-'+mocc+' big" ';if(wppaSlideVideoStart&&wppaLightBox[mocc]==''){_wppaSlides[mocc][id]+=' autoplay ';}
66
  break;default:alert('Animation type '+wppaAnimationType+' is not supported in this version');}}
67
  function _wppaNextSlide_4(mocc){var nw=_wppaFg[mocc];var ol=1-nw;var olSli="#theslide"+ol+"-"+mocc;var nwSli="#theslide"+nw+"-"+mocc;jQuery(olSli).css({zIndex:80});jQuery(nwSli).css({zIndex:81});_wppaCurIdx[mocc]=_wppaNxtIdx[mocc];wppaFormatSlide(mocc);if(wppaIsMini[mocc]||wppaGetContainerWidth(mocc)<wppaMiniTreshold){jQuery('#counter-'+mocc).html((_wppaCurIdx[mocc]+1)+' / '+_wppaSlides[mocc].length);}
68
  else{jQuery('#counter-'+mocc).html(wppaPhoto+' '+(_wppaCurIdx[mocc]+1)+' '+wppaOf+' '+_wppaSlides[mocc].length);}
69
+ if(jQuery('#bc-pname-modal-'+mocc)){jQuery('#bc-pname-modal-'+mocc).html(_wppaNames[mocc][_wppaCurIdx[mocc]]);}
70
+ else{jQuery('#bc-pname-'+mocc).html(_wppaNames[mocc][_wppaCurIdx[mocc]]);}
71
+ _wppaAdjustFilmstrip(mocc);_wppaSetRatingDisplay(mocc);setTimeout('_wppaNextSlide_5( '+mocc+' )',_wppaTextDelay);}
72
  function _wppaNextSlide_5(mocc){if(!_wppaToTheSame){jQuery('#imagedesc-'+mocc).html(_wppaDsc[mocc][_wppaCurIdx[mocc]]);if(wppaHideWhenEmpty){var desc=_wppaDsc[mocc][_wppaCurIdx[mocc]];if(''==desc||'&nbsp;'==desc){jQuery('#descbox-'+mocc).css('display','none');}
73
  else{jQuery('#descbox-'+mocc).css('display','');}}
74
  jQuery("#imagetitle-"+mocc).html(wppaMakeNameHtml(mocc));jQuery("#wppa-comments-"+mocc).html(_wppaCommentHtml[mocc][_wppaCurIdx[mocc]]);jQuery("#iptc-"+mocc).html(_wppaIptcHtml[mocc][_wppaCurIdx[mocc]]);jQuery("#exif-"+mocc).html(_wppaExifHtml[mocc][_wppaCurIdx[mocc]]);jQuery("#wppa-share-"+mocc).html(_wppaShareHtml[mocc][_wppaCurIdx[mocc]]);}
143
  setTimeout('_wppaNextSlide( '+mocc+', "reset" )',wppaGetSlideshowTimeout(mocc)+10);}
144
  function _wppaStart(mocc,idx){if(idx==-2){var i=0;idx=0;_wppaSkipRated[mocc]=true;if(_wppaMyr[mocc][i]!=0){while(i<_wppaSlides[mocc].length){if(idx==0&&_wppaMyr[mocc][i]==0)idx=i;i++;}}}
145
  if(idx>-1){jQuery('#startstop-'+mocc).html(wppaStart+' '+wppaSlideShow);jQuery('#speed0-'+mocc).css('display','none');jQuery('#speed1-'+mocc).css('display','none');_wppaNxtIdx[mocc]=idx;_wppaCurIdx[mocc]=idx;_wppaNextSlide(mocc,0);_wppaShowMetaData(mocc,'show');}
146
+ else{_wppaSSRuns[mocc]=true;_wppaNextSlide(mocc,0);jQuery('#startstop-'+mocc).html(wppaStop);jQuery('#speed0-'+mocc).css('display','inline');jQuery('#speed1-'+mocc).css('display','inline');_wppaShowMetaData(mocc,'hide');if(jQuery('#bc-pname-modal-'+mocc)){jQuery('#bc-pname-modal-'+mocc).html(wppaSlideShow);}
147
+ else{jQuery('#bc-pname-'+mocc).html(wppaSlideShow);}}
148
  _wppaSetRatingDisplay(mocc);}
149
+ function _wppaStop(mocc){_wppaSSRuns[mocc]=false;jQuery('#startstop-'+mocc).html(wppaStart+' '+wppaSlideShow);jQuery('#speed0-'+mocc).css('display','none');jQuery('#speed1-'+mocc).css('display','none');_wppaShowMetaData(mocc,'show');if(jQuery('#bc-pname-modal-'+mocc)){jQuery('#bc-pname-modal-'+mocc).html(_wppaNames[mocc][_wppaCurIdx[mocc]]);}
150
+ else{jQuery('#bc-pname-'+mocc).html(_wppaNames[mocc][_wppaCurIdx[mocc]]);}}
151
  function _wppaSpeed(mocc,faster){if(_wppaTimeOut[mocc]=='random'){return;}
152
  if(faster){if(_wppaTimeOut[mocc]>500)_wppaTimeOut[mocc]/=1.5;}
153
  else{if(_wppaTimeOut[mocc]<60000)_wppaTimeOut[mocc]*=1.5;}}
js/wppa.js CHANGED
@@ -2,7 +2,7 @@
2
  //
3
  // conatins common vars and functions
4
  //
5
- var wppaJsVersion = '6.5.04';
6
 
7
  // Important notice:
8
  // All external vars that may be given a value in wppa-non-admin.php must be declared here and not in other front-end js files!!
@@ -146,6 +146,11 @@ var wppaStopSumbolBradius = '24';
146
  var wppaEditPhotoWidth = '960';
147
  var wppaThemeStyles = '';
148
  var wppaStickyHeaderHeight = 0;
 
 
 
 
 
149
 
150
  // 'Internal' variables ( private )
151
  var _wppaId = [];
@@ -431,6 +436,10 @@ function _wppaDoAutocol( mocc ) {
431
  w = wppaGetContainerWidth( mocc );//document.getElementById( 'wppa-container-'+mocc ).parentNode.clientWidth;
432
  wppaColWidth[mocc] = w;
433
  jQuery( ".wppa-container-"+mocc ).css( 'width',w );
 
 
 
 
434
 
435
  // Covers
436
  jQuery( ".wppa-asym-text-frame-"+mocc ).css( 'width',w - wppaTextFrameDelta );
2
  //
3
  // conatins common vars and functions
4
  //
5
+ var wppaJsVersion = '6.5.06';
6
 
7
  // Important notice:
8
  // All external vars that may be given a value in wppa-non-admin.php must be declared here and not in other front-end js files!!
146
  var wppaEditPhotoWidth = '960';
147
  var wppaThemeStyles = '';
148
  var wppaStickyHeaderHeight = 0;
149
+ var wppaRenderModal = false;
150
+ var wppaModalBgColor = '#ffffff';
151
+ var wppaBoxRadius = 0;
152
+ var wppaModalQuitImg;
153
+ var wppaUploadEdit = 'none';
154
 
155
  // 'Internal' variables ( private )
156
  var _wppaId = [];
436
  w = wppaGetContainerWidth( mocc );//document.getElementById( 'wppa-container-'+mocc ).parentNode.clientWidth;
437
  wppaColWidth[mocc] = w;
438
  jQuery( ".wppa-container-"+mocc ).css( 'width',w );
439
+ if ( wppaRenderModal ) {
440
+ jQuery( ".ui-dialog" ).css( 'width', w );//dialog( "option", "width", w );
441
+ jQuery( ".ui-dialog" ).attr( 'height', 'auto' );
442
+ }
443
 
444
  // Covers
445
  jQuery( ".wppa-asym-text-frame-"+mocc ).css( 'width',w - wppaTextFrameDelta );
js/wppa.min.js CHANGED
@@ -3,7 +3,7 @@
3
  // conatins common vars and functions
4
  //
5
 
6
- var wppaJsVersion='6.5.04';var wppaVersion='0';var wppaDebug;var wppaFullValign=[];var wppaFullHalign=[];var wppaFullFrameDelta=[];var wppaAnimationSpeed;var wppaImageDirectory;var wppaAutoColumnWidth=[];var wppaAutoColumnFrac=[];var wppaThumbnailAreaDelta;var wppaSlideShowTimeOut=2500;var wppaFadeInAfterFadeOut=false;var wppaTextFrameDelta=0;var wppaBoxDelta=0;var wppaPreambule;var wppaHideWhenEmpty=false;var wppaThumbnailPitch=[];var wppaFilmStripLength=[];var wppaFilmStripMargin=[];var wppaFilmStripAreaDelta=[];var wppaFilmShowGlue=false;var wppaIsMini=[];var wppaPortraitOnly=[];var wppaSlideShow;var wppaPhoto;var wppaOf;var wppaNextPhoto;var wppaPreviousPhoto;var wppaSlower;var wppaFaster;var wppaNextP;var wppaPrevP;var wppaAvgRating;var wppaMyRating;var wppaAvgRat;var wppaMyRat;var wppaDislikeMsg;var wppaMiniTreshold=300;var wppaStart='Start';var wppaStop='Stop';var wppaPleaseName;var wppaPleaseEmail;var wppaPleaseComment;var wppaRatingOnce=true;var wppaBGcolorNumbar='transparent';var wppaBcolorNumbar='transparent';var wppaBGcolorNumbarActive='transparent';var wppaBcolorNumbarActive='transparent';var wppaFontFamilyNumbar='';var wppaFontSizeNumbar='';var wppaFontColorNumbar='';var wppaFontWeightNumbar='';var wppaFontFamilyNumbarActive='';var wppaFontSizeNumbarActive='';var wppaFontColorNumbarActive='';var wppaFontWeightNumbarActive='';var wppaNumbarMax='10';var wppaAjaxUrl='';var wppaLang='';var wppaNextOnCallback=false;var wppaStarOpacity=0.2;var wppaSlideWrap=true;var wppaLightBox=[];var wppaEmailRequired='required';var wppaSlideBorderWidth=0;var wppaSlideInitRunning=[];var wppaAnimationType='fadeover';var wppaSlidePause=[];var wppaSlideBlank=[];var wppaRatingMax=5;var wppaRatingDisplayType='graphic';var wppaRatingPrec=2;var wppaFilmPageSize=[];var wppaAspectRatio=[];var wppaFullSize=[];var wppaStretch=false;var wppaThumbSpaceAuto=false;var wppaMinThumbSpace=4;var wppaMagnifierCursor='';var wppaArtMonkyLink='none';var wppaAutoOpenComments=false;var wppaUpdateAddressLine=false;var wppaFilmThumbTitle='';var wppaUploadUrl='';var wppaVoteForMe='';var wppaVotedForMe='';var wppaSlideSwipe=true;var wppaLightboxSingle=[];var wppaMaxCoverWidth=300;var wppaDownLoad='Download';var wppaSiteUrl='';var wppaWppaUrl='';var wppaIncludeUrl='';var wppaSlideToFullpopup=false;var wppaComAltSize=75;var wppaBumpViewCount=true;var wppaFotomoto=false;var wppaArtMonkeyButton=true;var wppaShortQargs=false;var wppaOvlHires=false;var wppaMasonryCols=[];var wppaVideoPlaying=[];var wppaAudioPlaying=[];var wppaSlideVideoStart=false;var wppaSlideAudioStart=false;var wppaAudioHeight=28;var wppaHis=0;var wppaStartHtml=[];var wppaCanAjaxRender=false;var wppaCanPushState=false;var wppaAllowAjax=true;var wppaMaxOccur=0;var wppaFirstOccur=0;var wppaUsePhotoNamesInUrls=false;var wppaShareHideWhenRunning=false;var wppaCommentRequiredAfterVote=true;var wppaTopMoc=0;var wppaColWidth=[];var wppaFotomotoHideWhenRunning=false;var wppaFotomotoMinWidth=400;var wppaPhotoView=[];var wppaBackgroundColorImage='';var wppaPopupLinkType='';var wppaPopupOnclick=[];var wppaThumbTargetBlank=false;var wppaRel='rel';var wppaStartSymbolUrl='';var wppaPauseSymbolUrl='';var wppaStopSymbolUrl='';var wppaStartPauseSymbolSize='64';var wppaStartPauseSymbolBradius='32';var wppaStopSymbolSize='48';var wppaStopSumbolBradius='24';var wppaEditPhotoWidth='960';var wppaThemeStyles='';var wppaStickyHeaderHeight=0;var _wppaId=[];var _wppaAvg=[];var _wppaDisc=[];var _wppaMyr=[];var _wppaVRU=[];var _wppaLinkUrl=[];var _wppaLinkTitle=[];var _wppaLinkTarget=[];var _wppaCommentHtml=[];var _wppaIptcHtml=[];var _wppaExifHtml=[];var _wppaToTheSame=false;var _wppaSlides=[];var _wppaNames=[];var _wppaFullNames=[];var _wppaDsc=[];var _wppaOgDsc=[];var _wppaCurIdx=[];var _wppaNxtIdx=[];var _wppaTimeOut=[];var _wppaSSRuns=[];var _wppaFg=[];var _wppaTP=[];var _wppaIsBusy=[];var _wppaFirst=[];var _wppaVoteInProgress=false;var _wppaTextDelay;var _wppaUrl=[];var _wppaSkipRated=[];var _wppaLbTitle=[];var _wppaStateCount=0;var _wppaDidGoto=[];var _wppaShareUrl=[];var _wppaShareHtml=[];var _wppaFilmNoMove=[];var _wppaHiresUrl=[];var _wppaIsVideo=[];var _wppaVideoHtml=[];var _wppaAudioHtml=[];var _wppaVideoNatWidth=[];var _wppaVideoNatHeight=[];var _wppaWaitTexts=[];var _wppaImageAlt=[];var __wppaOverruleRun=false;var wppaOvlUrls;var wppaOvlTitles;var wppaOvlAlts;var wppaOvlIdx=0;var wppaOvlFirst=true;var wppaOvlKbHandler='';var wppaOvlSizeHandler='';var wppaOvlPadTop=5;var wppaOvlIsSingle;var wppaOvlRunning=false;var wppaOvlVideoHtmls;var wppaOvlAudioHtmls;var wppaOvlVideoNaturalWidths;var wppaOvlVideoNaturalHeights;var wppaOvlModeInitial='normal';var wppaOvlVideoPlaying=false;var wppaOvlAudioPlaying=false;var wppaOvlShowLegenda=true;var wppaOvlShowStartStop=true;var wppaOvlRadius=0;var wppaOvlBorderWidth=16;var wppaOvlLeftSymbolUrl;var wppaOvlRightSymbolUrl;var wppaLeftRightSymbolSize=32;var wppaLeftRightSymbolBradius=4;var wppaOvlTxtHeight=36;var wppaOvlOpacity=0.8;var wppaOvlOnclickType='none';var wppaOvlTheme='black';var wppaOvlAnimSpeed=300;var wppaOvlSlideSpeed=3000;var wppaVer4WindowWidth=800;var wppaVer4WindowHeight=600;var wppaOvlFontFamily='Helvetica';var wppaOvlFontSize='10';var wppaOvlFontColor='';var wppaOvlFontWeight='bold';var wppaOvlLineHeight='12';var wppaOvlShowCounter=true;var wppaOvlIsVideo=false;var wppaShowLegenda='';var wppaOvlFsPhotoId=0;var wppaPhotoId=0;var wppaOvlVideoStart=false;var wppaOvlAudioStart=false;var wppaLastIptc='';var wppaLastExif='';var wppaIsMobile=false;jQuery(document).ready(function(){wppaDoInit(false);setTimeout(function(){wppaDoInit(true);},1000);});function wppaDoInit(autoOnly){var anyAutocol=false;for(mocc=1;mocc<=wppaTopMoc;mocc++){if(wppaAutoColumnWidth[mocc]){wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);anyAutocol=true;}}
7
  if(!autoOnly){_wppaTextDelay=wppaAnimationSpeed;if(wppaFadeInAfterFadeOut)_wppaTextDelay*=2;if(anyAutocol){jQuery(window).resize(function(){for(mocc=1;mocc<=wppaTopMoc;mocc++){if(wppaAutoColumnWidth[mocc]){wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);}}});}}}
8
  jQuery(document).ready(function(e){if(wppaAllowAjax&&jQuery.ajax){wppaCanAjaxRender=true;}
9
  if(typeof(history.pushState)!='undefined'){var i=1;while(i<=wppaMaxOccur){wppaStartHtml[i]=jQuery('#wppa-container-'+i).html();i++;}
@@ -20,7 +20,8 @@ j++;}
20
  return url;}
21
  function wppaGetContainerWidth(mocc){var elm=document.getElementById('wppa-container-'+mocc);var w=0;if(!wppaAutoColumnWidth[mocc])return elm.clientWidth;while(w==0){elm=elm.parentNode;w=jQuery(elm).width();}
22
  return w*wppaAutoColumnFrac[mocc];}
23
- function _wppaDoAutocol(mocc){wppaConsoleLog('Doing autocol '+mocc);if(!wppaAutoColumnWidth[mocc])return;var w;var h;w=wppaGetContainerWidth(mocc);wppaColWidth[mocc]=w;jQuery(".wppa-container-"+mocc).css('width',w);jQuery(".wppa-asym-text-frame-"+mocc).css('width',w-wppaTextFrameDelta);jQuery(".wppa-cover-box-"+mocc).css('width',w-wppaBoxDelta);var exists=jQuery(".wppa-cover-box-mcr-"+mocc);var MCRWidth;if(exists.length>1){var nCovers=parseInt((w+8)/(wppaMaxCoverWidth+8))+1;var coverMax1=nCovers-1;MCRWidth=parseInt(((w+8)/nCovers)-8);var idx=0;while(idx<exists.length){var col=idx%nCovers;switch(col){case 0:jQuery(exists[idx]).css({'marginLeft':'0px','clear':'both','float':'left'});break;case coverMax1:jQuery(exists[idx]).css({'marginLeft':'8px','clear':'none','float':'right'});break;default:jQuery(exists[idx]).css({'marginLeft':'8px','clear':'none','float':'left'});}
 
24
  idx++;}
25
  jQuery(".wppa-asym-text-frame-mcr-"+mocc).css('width',MCRWidth-wppaTextFrameDelta);jQuery(".wppa-cover-box-mcr-"+mocc).css('width',MCRWidth-wppaBoxDelta);}
26
  else{jQuery(".wppa-asym-text-frame-mcr-"+mocc).css('width',w-wppaTextFrameDelta);var myCss={'width':(w-wppaBoxDelta),'maxWidth':(w-wppaBoxDelta),'marginLeft':'0px','float':'left'}
3
  // conatins common vars and functions
4
  //
5
 
6
+ var wppaJsVersion='6.5.06';var wppaVersion='0';var wppaDebug;var wppaFullValign=[];var wppaFullHalign=[];var wppaFullFrameDelta=[];var wppaAnimationSpeed;var wppaImageDirectory;var wppaAutoColumnWidth=[];var wppaAutoColumnFrac=[];var wppaThumbnailAreaDelta;var wppaSlideShowTimeOut=2500;var wppaFadeInAfterFadeOut=false;var wppaTextFrameDelta=0;var wppaBoxDelta=0;var wppaPreambule;var wppaHideWhenEmpty=false;var wppaThumbnailPitch=[];var wppaFilmStripLength=[];var wppaFilmStripMargin=[];var wppaFilmStripAreaDelta=[];var wppaFilmShowGlue=false;var wppaIsMini=[];var wppaPortraitOnly=[];var wppaSlideShow;var wppaPhoto;var wppaOf;var wppaNextPhoto;var wppaPreviousPhoto;var wppaSlower;var wppaFaster;var wppaNextP;var wppaPrevP;var wppaAvgRating;var wppaMyRating;var wppaAvgRat;var wppaMyRat;var wppaDislikeMsg;var wppaMiniTreshold=300;var wppaStart='Start';var wppaStop='Stop';var wppaPleaseName;var wppaPleaseEmail;var wppaPleaseComment;var wppaRatingOnce=true;var wppaBGcolorNumbar='transparent';var wppaBcolorNumbar='transparent';var wppaBGcolorNumbarActive='transparent';var wppaBcolorNumbarActive='transparent';var wppaFontFamilyNumbar='';var wppaFontSizeNumbar='';var wppaFontColorNumbar='';var wppaFontWeightNumbar='';var wppaFontFamilyNumbarActive='';var wppaFontSizeNumbarActive='';var wppaFontColorNumbarActive='';var wppaFontWeightNumbarActive='';var wppaNumbarMax='10';var wppaAjaxUrl='';var wppaLang='';var wppaNextOnCallback=false;var wppaStarOpacity=0.2;var wppaSlideWrap=true;var wppaLightBox=[];var wppaEmailRequired='required';var wppaSlideBorderWidth=0;var wppaSlideInitRunning=[];var wppaAnimationType='fadeover';var wppaSlidePause=[];var wppaSlideBlank=[];var wppaRatingMax=5;var wppaRatingDisplayType='graphic';var wppaRatingPrec=2;var wppaFilmPageSize=[];var wppaAspectRatio=[];var wppaFullSize=[];var wppaStretch=false;var wppaThumbSpaceAuto=false;var wppaMinThumbSpace=4;var wppaMagnifierCursor='';var wppaArtMonkyLink='none';var wppaAutoOpenComments=false;var wppaUpdateAddressLine=false;var wppaFilmThumbTitle='';var wppaUploadUrl='';var wppaVoteForMe='';var wppaVotedForMe='';var wppaSlideSwipe=true;var wppaLightboxSingle=[];var wppaMaxCoverWidth=300;var wppaDownLoad='Download';var wppaSiteUrl='';var wppaWppaUrl='';var wppaIncludeUrl='';var wppaSlideToFullpopup=false;var wppaComAltSize=75;var wppaBumpViewCount=true;var wppaFotomoto=false;var wppaArtMonkeyButton=true;var wppaShortQargs=false;var wppaOvlHires=false;var wppaMasonryCols=[];var wppaVideoPlaying=[];var wppaAudioPlaying=[];var wppaSlideVideoStart=false;var wppaSlideAudioStart=false;var wppaAudioHeight=28;var wppaHis=0;var wppaStartHtml=[];var wppaCanAjaxRender=false;var wppaCanPushState=false;var wppaAllowAjax=true;var wppaMaxOccur=0;var wppaFirstOccur=0;var wppaUsePhotoNamesInUrls=false;var wppaShareHideWhenRunning=false;var wppaCommentRequiredAfterVote=true;var wppaTopMoc=0;var wppaColWidth=[];var wppaFotomotoHideWhenRunning=false;var wppaFotomotoMinWidth=400;var wppaPhotoView=[];var wppaBackgroundColorImage='';var wppaPopupLinkType='';var wppaPopupOnclick=[];var wppaThumbTargetBlank=false;var wppaRel='rel';var wppaStartSymbolUrl='';var wppaPauseSymbolUrl='';var wppaStopSymbolUrl='';var wppaStartPauseSymbolSize='64';var wppaStartPauseSymbolBradius='32';var wppaStopSymbolSize='48';var wppaStopSumbolBradius='24';var wppaEditPhotoWidth='960';var wppaThemeStyles='';var wppaStickyHeaderHeight=0;var wppaRenderModal=false;var wppaModalBgColor='#ffffff';var wppaBoxRadius=0;var wppaModalQuitImg;var wppaUploadEdit='none';var _wppaId=[];var _wppaAvg=[];var _wppaDisc=[];var _wppaMyr=[];var _wppaVRU=[];var _wppaLinkUrl=[];var _wppaLinkTitle=[];var _wppaLinkTarget=[];var _wppaCommentHtml=[];var _wppaIptcHtml=[];var _wppaExifHtml=[];var _wppaToTheSame=false;var _wppaSlides=[];var _wppaNames=[];var _wppaFullNames=[];var _wppaDsc=[];var _wppaOgDsc=[];var _wppaCurIdx=[];var _wppaNxtIdx=[];var _wppaTimeOut=[];var _wppaSSRuns=[];var _wppaFg=[];var _wppaTP=[];var _wppaIsBusy=[];var _wppaFirst=[];var _wppaVoteInProgress=false;var _wppaTextDelay;var _wppaUrl=[];var _wppaSkipRated=[];var _wppaLbTitle=[];var _wppaStateCount=0;var _wppaDidGoto=[];var _wppaShareUrl=[];var _wppaShareHtml=[];var _wppaFilmNoMove=[];var _wppaHiresUrl=[];var _wppaIsVideo=[];var _wppaVideoHtml=[];var _wppaAudioHtml=[];var _wppaVideoNatWidth=[];var _wppaVideoNatHeight=[];var _wppaWaitTexts=[];var _wppaImageAlt=[];var __wppaOverruleRun=false;var wppaOvlUrls;var wppaOvlTitles;var wppaOvlAlts;var wppaOvlIdx=0;var wppaOvlFirst=true;var wppaOvlKbHandler='';var wppaOvlSizeHandler='';var wppaOvlPadTop=5;var wppaOvlIsSingle;var wppaOvlRunning=false;var wppaOvlVideoHtmls;var wppaOvlAudioHtmls;var wppaOvlVideoNaturalWidths;var wppaOvlVideoNaturalHeights;var wppaOvlModeInitial='normal';var wppaOvlVideoPlaying=false;var wppaOvlAudioPlaying=false;var wppaOvlShowLegenda=true;var wppaOvlShowStartStop=true;var wppaOvlRadius=0;var wppaOvlBorderWidth=16;var wppaOvlLeftSymbolUrl;var wppaOvlRightSymbolUrl;var wppaLeftRightSymbolSize=32;var wppaLeftRightSymbolBradius=4;var wppaOvlTxtHeight=36;var wppaOvlOpacity=0.8;var wppaOvlOnclickType='none';var wppaOvlTheme='black';var wppaOvlAnimSpeed=300;var wppaOvlSlideSpeed=3000;var wppaVer4WindowWidth=800;var wppaVer4WindowHeight=600;var wppaOvlFontFamily='Helvetica';var wppaOvlFontSize='10';var wppaOvlFontColor='';var wppaOvlFontWeight='bold';var wppaOvlLineHeight='12';var wppaOvlShowCounter=true;var wppaOvlIsVideo=false;var wppaShowLegenda='';var wppaOvlFsPhotoId=0;var wppaPhotoId=0;var wppaOvlVideoStart=false;var wppaOvlAudioStart=false;var wppaLastIptc='';var wppaLastExif='';var wppaIsMobile=false;jQuery(document).ready(function(){wppaDoInit(false);setTimeout(function(){wppaDoInit(true);},1000);});function wppaDoInit(autoOnly){var anyAutocol=false;for(mocc=1;mocc<=wppaTopMoc;mocc++){if(wppaAutoColumnWidth[mocc]){wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);anyAutocol=true;}}
7
  if(!autoOnly){_wppaTextDelay=wppaAnimationSpeed;if(wppaFadeInAfterFadeOut)_wppaTextDelay*=2;if(anyAutocol){jQuery(window).resize(function(){for(mocc=1;mocc<=wppaTopMoc;mocc++){if(wppaAutoColumnWidth[mocc]){wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);}}});}}}
8
  jQuery(document).ready(function(e){if(wppaAllowAjax&&jQuery.ajax){wppaCanAjaxRender=true;}
9
  if(typeof(history.pushState)!='undefined'){var i=1;while(i<=wppaMaxOccur){wppaStartHtml[i]=jQuery('#wppa-container-'+i).html();i++;}
20
  return url;}
21
  function wppaGetContainerWidth(mocc){var elm=document.getElementById('wppa-container-'+mocc);var w=0;if(!wppaAutoColumnWidth[mocc])return elm.clientWidth;while(w==0){elm=elm.parentNode;w=jQuery(elm).width();}
22
  return w*wppaAutoColumnFrac[mocc];}
23
+ function _wppaDoAutocol(mocc){wppaConsoleLog('Doing autocol '+mocc);if(!wppaAutoColumnWidth[mocc])return;var w;var h;w=wppaGetContainerWidth(mocc);wppaColWidth[mocc]=w;jQuery(".wppa-container-"+mocc).css('width',w);if(wppaRenderModal){jQuery(".ui-dialog").css('width',w);jQuery(".ui-dialog").attr('height','auto');}
24
+ jQuery(".wppa-asym-text-frame-"+mocc).css('width',w-wppaTextFrameDelta);jQuery(".wppa-cover-box-"+mocc).css('width',w-wppaBoxDelta);var exists=jQuery(".wppa-cover-box-mcr-"+mocc);var MCRWidth;if(exists.length>1){var nCovers=parseInt((w+8)/(wppaMaxCoverWidth+8))+1;var coverMax1=nCovers-1;MCRWidth=parseInt(((w+8)/nCovers)-8);var idx=0;while(idx<exists.length){var col=idx%nCovers;switch(col){case 0:jQuery(exists[idx]).css({'marginLeft':'0px','clear':'both','float':'left'});break;case coverMax1:jQuery(exists[idx]).css({'marginLeft':'8px','clear':'none','float':'right'});break;default:jQuery(exists[idx]).css({'marginLeft':'8px','clear':'none','float':'left'});}
25
  idx++;}
26
  jQuery(".wppa-asym-text-frame-mcr-"+mocc).css('width',MCRWidth-wppaTextFrameDelta);jQuery(".wppa-cover-box-mcr-"+mocc).css('width',MCRWidth-wppaBoxDelta);}
27
  else{jQuery(".wppa-asym-text-frame-mcr-"+mocc).css('width',w-wppaTextFrameDelta);var myCss={'width':(w-wppaBoxDelta),'maxWidth':(w-wppaBoxDelta),'marginLeft':'0px','float':'left'}
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-07-11 11:24+0200\n"
5
- "PO-Revision-Date: 2016-07-11 11:24+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"
@@ -25,12 +25,12 @@ msgid "Pages:"
25
  msgstr "Sider:"
26
 
27
  #: theme/photo-album-page-2010.php:31 theme/photo-album-search-page.php:53
28
- #: wppa-album-admin-autosave.php:1156 wppa-album-admin-autosave.php:1194
29
- #: wppa-album-admin-autosave.php:1293 wppa-album-admin-autosave.php:1465
30
- #: wppa-album-admin-autosave.php:1560 wppa-album-admin-autosave.php:1634
31
- #: wppa-album-admin-autosave.php:1745 wppa-album-admin-autosave.php:2067
32
  #: wppa-comment-admin.php:318 wppa-comment-admin.php:387
33
- #: wppa-comment-admin.php:405 wppa-setup.php:1290 wppa-thumbnails.php:639
34
  msgid "Edit"
35
  msgstr "Rediger"
36
 
@@ -39,7 +39,7 @@ msgid "Warning. No page defined for search results!"
39
  msgstr "Advarsel. Ingen side defineret for søgeresultater!"
40
 
41
  #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:175
42
- #: wppa-settings-autosave.php:421 wppa-settings-autosave.php:3368
43
  msgid "Search"
44
  msgstr "Søg"
45
 
@@ -61,16 +61,16 @@ msgstr ""
61
 
62
  #: theme/search-2016.php:46
63
  msgid "Previous page"
64
- msgstr ""
65
 
66
- #: theme/search-2016.php:47 wppa-admin-functions.php:659
67
  msgid "Next page"
68
- msgstr ""
69
 
70
- #: theme/search-2016.php:48 wppa-settings-autosave.php:419
71
- #: wppa-settings-autosave.php:1619 wppa-settings-autosave.php:8702
72
  msgid "Page"
73
- msgstr ""
74
 
75
  #: theme/wppa-theme.php:328 theme/wppa-theme.php:347
76
  msgid "No photos found matching your search criteria."
@@ -86,7 +86,7 @@ msgstr "Ingen album eller billeder fundet der passer til søgekriterierne."
86
 
87
  #: wppa-admin-functions.php:27
88
  msgid "Settings successfully backed up"
89
- msgstr ""
90
 
91
  #: wppa-admin-functions.php:31
92
  msgid "Unable to backup settings"
@@ -100,21 +100,21 @@ msgstr ""
100
  msgid "Settings file not found"
101
  msgstr ""
102
 
103
- #: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2629
104
- #: wppa-ajax.php:2636
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:2629
109
- #: wppa-ajax.php:2636
110
  msgid "for"
111
  msgstr ""
112
 
113
- #: wppa-admin-functions.php:208 wppa-ajax.php:2636
114
  msgid "and less than or equal to"
115
  msgstr ""
116
 
117
- #: wppa-admin-functions.php:223 wppa-album-admin-autosave.php:323
118
  msgid "--- public ---"
119
  msgstr ""
120
 
@@ -123,185 +123,185 @@ msgstr ""
123
  msgid "File %s is of an unsupported filetype and has been removed."
124
  msgstr ""
125
 
126
- #: wppa-admin-functions.php:567 wppa-admin-functions.php:606
127
- #: wppa-admin-functions.php:610 wppa-admin-functions.php:614
128
  msgid "Unexpected error:"
129
  msgstr ""
130
 
131
- #: wppa-admin-functions.php:567
132
  msgid "Missing database table:"
133
  msgstr ""
134
 
135
- #: wppa-admin-functions.php:606
136
  msgid "Missing directory:"
137
  msgstr ""
138
 
139
- #: wppa-admin-functions.php:610
140
  msgid "Directory is not writable:"
141
  msgstr ""
142
 
143
- #: wppa-admin-functions.php:614
144
  msgid "Directory is not readable:"
145
  msgstr ""
146
 
147
- #: wppa-admin-functions.php:622
148
  msgid ""
149
  "Please de-activate and re-activate the plugin. If this problem persists, ask "
150
  "your administrator."
151
  msgstr ""
152
 
153
- #: wppa-admin-functions.php:646
154
  msgid "Prev page"
155
  msgstr ""
156
 
157
- #: wppa-admin-functions.php:769 wppa-admin-functions.php:772
158
  #, php-format
159
  msgid "Album %s is full"
160
  msgstr ""
161
 
162
- #: wppa-admin-functions.php:790
163
  #, php-format
164
  msgid "Photo %s already exists in album number %s. Removed from depot."
165
  msgstr ""
166
 
167
- #: wppa-admin-functions.php:793
168
  #, php-format
169
  msgid "Photo %s already exists in album number %s."
170
  msgstr ""
171
 
172
- #: wppa-admin-functions.php:823
173
  #, php-format
174
  msgid "ERROR: Attempt to upload a photo that is too large to process (%s)."
175
  msgstr ""
176
 
177
- #: wppa-admin-functions.php:824
178
  msgid "Too big"
179
  msgstr ""
180
 
181
- #: wppa-admin-functions.php:828
182
  msgid ""
183
  "WARNING: You are uploading photos that are too small. Photos must be larger "
184
  "than the thumbnail size and larger than the coverphotosize."
185
  msgstr ""
186
 
187
- #: wppa-admin-functions.php:829
188
  msgid "Too small"
189
  msgstr ""
190
 
191
- #: wppa-admin-functions.php:834
192
  msgid "ERROR: Unable to retrieve image size of"
193
  msgstr ""
194
 
195
- #: wppa-admin-functions.php:834
196
  msgid "Are you sure it is a photo?"
197
  msgstr ""
198
 
199
- #: wppa-admin-functions.php:835
200
  msgid "No imagesize"
201
  msgstr ""
202
 
203
- #: wppa-admin-functions.php:844
204
  msgid "Unsupported mime type encountered:"
205
  msgstr ""
206
 
207
- #: wppa-admin-functions.php:861
208
  msgid "Album not known while trying to add a photo"
209
  msgstr ""
210
 
211
- #: wppa-admin-functions.php:865
212
  #, php-format
213
  msgid ""
214
  "Album %s does not exist or is not accessable while trying to add a photo"
215
  msgstr ""
216
 
217
- #: wppa-admin-functions.php:884
218
  msgid "Could not insert photo."
219
  msgstr ""
220
 
221
- #: wppa-admin-functions.php:920
222
  msgid "ERROR: Unknown file or album."
223
  msgstr ""
224
 
225
- #: wppa-admin.php:54
226
  msgid "Photo&thinsp;Albums"
227
  msgstr ""
228
 
229
- #: wppa-admin.php:57 wppa-adminbar.php:40 wppa-settings-autosave.php:6012
230
  msgid "Album Admin"
231
  msgstr ""
232
 
233
- #: wppa-admin.php:58 wppa-adminbar.php:47 wppa-settings-autosave.php:6013
234
- #: wppa-upload-widget.php:79 wppa-upload.php:88
235
  msgid "Upload Photos"
236
  msgstr ""
237
 
238
- #: wppa-admin.php:61 wppa-adminbar.php:53
239
  msgid "Edit Photos"
240
  msgstr ""
241
 
242
- #: wppa-admin.php:63 wppa-adminbar.php:61 wppa-settings-autosave.php:6014
243
- #: wppa-upload.php:459
244
  msgid "Import Photos"
245
  msgstr ""
246
 
247
- #: wppa-admin.php:64 wppa-adminbar.php:68
248
  msgid "Moderate Photos"
249
  msgstr ""
250
 
251
- #: wppa-admin.php:65 wppa-adminbar.php:75 wppa-export.php:32
252
- #: wppa-settings-autosave.php:6016
253
  msgid "Export Photos"
254
  msgstr ""
255
 
256
- #: wppa-admin.php:66 wppa-adminbar.php:82 wppa-comment-admin.php:223
257
- #: wppa-settings-autosave.php:6017
258
  msgid "Settings"
259
  msgstr ""
260
 
261
- #: wppa-admin.php:67
262
  msgid "Photo of the day Widget"
263
  msgstr ""
264
 
265
- #: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:60
266
- #: wppa-settings-autosave.php:6018 wppa-setup.php:1564
267
  msgid "Photo of the day"
268
  msgstr ""
269
 
270
- #: wppa-admin.php:68
271
  msgid "Manage comments"
272
  msgstr ""
273
 
274
- #: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:411
275
- #: wppa-settings-autosave.php:3197 wppa-settings-autosave.php:8501
276
- #: wppa-settings-autosave.php:8546
277
  msgid "Comments"
278
  msgstr ""
279
 
280
- #: wppa-admin.php:69
281
  msgid "Help &amp; Info"
282
  msgstr ""
283
 
284
- #: wppa-admin.php:69 wppa-adminbar.php:103
285
  msgid "Documentation"
286
  msgstr ""
287
 
288
- #: wppa-admin.php:107
289
  msgid "Uploading is temporary diabled for you"
290
  msgstr ""
291
 
292
- #: wppa-admin.php:113
293
  msgid "Editing is temporary diabled for you"
294
  msgstr ""
295
 
296
- #: wppa-admin.php:120
297
  msgid "Importing is temporary diabled for you"
298
  msgstr ""
299
 
300
- #: wppa-admin.php:122 wppa-upload.php:1059
301
  msgid "Import"
302
  msgstr ""
303
 
304
- #: wppa-admin.php:122 wppa-settings-autosave.php:9679
305
  msgid "Update"
306
  msgstr ""
307
 
@@ -328,15 +328,14 @@ msgid "Please enable this feature in Table IV-A27"
328
  msgstr ""
329
 
330
  #: wppa-admins-choice-widget.php:78 wppa-album-navigator-widget.php:95
331
- #: wppa-album-widget.php:322 wppa-bestof-widget.php:131
332
  #: wppa-comment-widget.php:119 wppa-featen-widget.php:176 wppa-gp-widget.php:88
333
  #: wppa-lasten-widget.php:200 wppa-multitag-widget.php:72
334
- #: wppa-potd-widget.php:204 wppa-qr-widget.php:94 wppa-search-widget.php:94
335
  #: wppa-slideshow-widget.php:198 wppa-stereo-widget.php:68
336
  #: wppa-super-view-widget.php:73 wppa-tagcloud-widget.php:68
337
  #: wppa-thumbnail-widget.php:184 wppa-topten-widget.php:323
338
  #: wppa-upldr-widget.php:176 wppa-upload-widget.php:83
339
- #: wppa-widget-admin.php:245
340
  msgid "Title:"
341
  msgstr ""
342
 
@@ -352,7 +351,7 @@ msgid "Exit & Refresh"
352
  msgstr ""
353
 
354
  #: wppa-ajax.php:250 wppa-ajax.php:316 wppa-ajax.php:351 wppa-ajax.php:629
355
- #: wppa-ajax.php:901 wppa-ajax.php:2586
356
  msgid "Security check failure"
357
  msgstr ""
358
 
@@ -360,7 +359,7 @@ msgstr ""
360
  msgid "You do not have the rights to moderate photos this way"
361
  msgstr ""
362
 
363
- #: wppa-ajax.php:300 wppa-ajax.php:1205 wppa-functions.php:2315
364
  msgid "Photo comment approved"
365
  msgstr ""
366
 
@@ -390,7 +389,7 @@ msgstr ""
390
  msgid "Could not remove comment"
391
  msgstr ""
392
 
393
- #: wppa-ajax.php:364 wppa-ajax.php:769
394
  msgid "Unexpected error"
395
  msgstr ""
396
 
@@ -420,7 +419,7 @@ msgstr ""
420
  msgid "Unable to create zipsdir"
421
  msgstr ""
422
 
423
- #: wppa-ajax.php:503 wppa-functions.php:2126 wppa-thumbnails.php:614
424
  msgid "Selected"
425
  msgstr ""
426
 
@@ -470,23 +469,31 @@ msgstr ""
470
  msgid "Photo has been removed."
471
  msgstr ""
472
 
473
- #: wppa-ajax.php:685 wppa-slideshow.php:722
474
  msgid "Sorry, you can not rate your own photos"
475
  msgstr ""
476
 
477
- #: wppa-ajax.php:697
478
  msgid "Please enter a comment."
479
  msgstr ""
480
 
481
- #: wppa-ajax.php:722
482
- msgid "Security check failure."
 
 
 
 
 
 
 
 
483
  msgstr ""
484
 
485
- #: wppa-ajax.php:734 wppa-ajax.php:750
486
  msgid "Photo rated"
487
  msgstr ""
488
 
489
- #: wppa-ajax.php:853
490
  msgid ""
491
  "Please explain your vote in a comment.\n"
492
  "Your vote will be discarded if you don't.\n"
@@ -496,824 +503,830 @@ msgid ""
496
  "your vote became effective."
497
  msgstr ""
498
 
499
- #: wppa-ajax.php:897
500
  msgid "You do not have the rights to delete a photo"
501
  msgstr ""
502
 
503
- #: wppa-ajax.php:907
504
  #, php-format
505
  msgid "Photo %s has been deleted"
506
  msgstr ""
507
 
508
- #: wppa-ajax.php:923
509
  msgid "You do not have the rights to update album information"
510
  msgstr ""
511
 
512
- #: wppa-ajax.php:935
513
  msgid "<b>Ratings cleared</b>"
514
  msgstr ""
515
 
516
- #: wppa-ajax.php:935 wppa-ajax.php:941 wppa-photo-admin-autosave.php:318
517
  msgid "No ratings for this photo."
518
  msgstr ""
519
 
520
- #: wppa-ajax.php:938
521
  msgid "An error occurred while clearing ratings"
522
  msgstr ""
523
 
524
- #: wppa-ajax.php:941 wppa-ajax.php:962 wppa-ajax.php:984
525
  msgid "<b>No photos in this album</b>"
526
  msgstr ""
527
 
528
- #: wppa-ajax.php:956
529
  msgid "<b>Tags set to defaults</b> (reload)"
530
  msgstr ""
531
 
532
- #: wppa-ajax.php:959
533
  msgid "An error occurred while setting tags"
534
  msgstr ""
535
 
536
- #: wppa-ajax.php:978
537
  msgid "<b>Tags added width defaults</b> (reload)"
538
  msgstr ""
539
 
540
- #: wppa-ajax.php:981
541
  msgid "An error occurred while adding tags"
542
  msgstr ""
543
 
544
- #: wppa-ajax.php:1007
545
  msgid "No subalbums found to process"
546
  msgstr ""
547
 
548
- #: wppa-ajax.php:1012
549
  msgid "No categories found to process"
550
  msgstr ""
551
 
552
- #: wppa-ajax.php:1016
553
  #, php-format
554
  msgid "%d album updated"
555
  msgid_plural "%d albums updated"
556
  msgstr[0] ""
557
  msgstr[1] ""
558
 
559
- #: wppa-ajax.php:1023
560
  #, php-format
561
  msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
562
  msgstr ""
563
 
564
- #: wppa-ajax.php:1025 wppa-ajax.php:1465 wppa-album-admin-autosave.php:392
565
- #: wppa-album-admin-autosave.php:449 wppa-album-admin-autosave.php:1103
566
- #: wppa-album-admin-autosave.php:1240 wppa-album-admin-autosave.php:1412
567
- #: wppa-album-admin-autosave.php:1507 wppa-boxes-html.php:415
568
  #: wppa-boxes-html.php:529 wppa-photo-admin-autosave.php:1363
569
- #: wppa-photo-admin-autosave.php:1482 wppa-photo-admin-autosave.php:1879
570
- #: wppa-settings-autosave.php:553 wppa-settings-autosave.php:715
571
- #: wppa-settings-autosave.php:737 wppa-settings-autosave.php:1485
572
- #: wppa-settings-autosave.php:1506 wppa-settings-autosave.php:3094
573
- #: wppa-settings-autosave.php:3115 wppa-settings-autosave.php:3439
574
- #: wppa-settings-autosave.php:3463 wppa-settings-autosave.php:3988
575
- #: wppa-settings-autosave.php:4102 wppa-settings-autosave.php:4751
576
- #: wppa-settings-autosave.php:4772 wppa-settings-autosave.php:4948
577
- #: wppa-settings-autosave.php:4972 wppa-settings-autosave.php:5978
578
- #: wppa-settings-autosave.php:6388 wppa-settings-autosave.php:6638
579
- #: wppa-settings-autosave.php:6660 wppa-settings-autosave.php:7390
580
- #: wppa-settings-autosave.php:7414 wppa-settings-autosave.php:8495
581
- #: wppa-settings-autosave.php:9136 wppa-settings-autosave.php:9292
582
- #: wppa-thumbnail-widget.php:202 wppa-upload.php:166
 
583
  msgid "Name"
584
  msgstr "Navn"
585
 
586
- #: wppa-ajax.php:1028 wppa-ajax.php:1468 wppa-album-admin-autosave.php:1113
587
- #: wppa-album-admin-autosave.php:1250 wppa-album-admin-autosave.php:1422
588
- #: wppa-album-admin-autosave.php:1517 wppa-photo-admin-autosave.php:1364
589
- #: wppa-photo-admin-autosave.php:1483 wppa-photo-admin-autosave.php:1880
590
- #: wppa-settings-autosave.php:554 wppa-settings-autosave.php:716
591
- #: wppa-settings-autosave.php:738 wppa-settings-autosave.php:1486
592
- #: wppa-settings-autosave.php:1507 wppa-settings-autosave.php:3095
593
- #: wppa-settings-autosave.php:3116 wppa-settings-autosave.php:3440
594
- #: wppa-settings-autosave.php:3464 wppa-settings-autosave.php:4752
595
- #: wppa-settings-autosave.php:4773 wppa-settings-autosave.php:4949
596
- #: wppa-settings-autosave.php:4973 wppa-settings-autosave.php:5979
597
- #: wppa-settings-autosave.php:6389 wppa-settings-autosave.php:6639
598
- #: wppa-settings-autosave.php:6661 wppa-settings-autosave.php:7391
599
- #: wppa-settings-autosave.php:7415 wppa-settings-autosave.php:9137
600
- #: wppa-settings-autosave.php:9159 wppa-settings-autosave.php:9199
601
- #: wppa-settings-autosave.php:9221 wppa-settings-autosave.php:9267
602
- #: wppa-settings-autosave.php:9293 wppa-widget-admin.php:263
 
603
  msgid "Description"
604
  msgstr ""
605
 
606
- #: wppa-ajax.php:1032
607
  msgid "Unbalanced tags in album description!"
608
  msgstr ""
609
 
610
- #: wppa-ajax.php:1039
611
  msgid "Album order #"
612
  msgstr ""
613
 
614
- #: wppa-ajax.php:1042
615
  msgid "Cover photo"
616
  msgstr ""
617
 
618
- #: wppa-ajax.php:1045
619
  msgid "Parent album"
620
  msgstr ""
621
 
622
- #: wppa-ajax.php:1050 wppa-settings-autosave.php:3982
623
  msgid "Photo order"
624
  msgstr ""
625
 
626
- #: wppa-ajax.php:1053
627
  msgid "Use Alt thumbsize"
628
  msgstr ""
629
 
630
- #: wppa-ajax.php:1056
631
  msgid "Cover Type"
632
  msgstr ""
633
 
634
- #: wppa-ajax.php:1059 wppa-settings-autosave.php:4974
635
- #: wppa-settings-autosave.php:5980
636
  msgid "Link type"
637
  msgstr ""
638
 
639
- #: wppa-ajax.php:1062 wppa-album-covers.php:1303
640
  msgid "Link to"
641
  msgstr "Link til"
642
 
643
- #: wppa-ajax.php:1065 wppa-ajax.php:1489 wppa-album-admin-autosave.php:1124
644
- #: wppa-album-admin-autosave.php:1261 wppa-album-admin-autosave.php:1433
645
- #: wppa-album-admin-autosave.php:1528 wppa-boxes-html.php:537
646
  #: wppa-photo-admin-autosave.php:1366 wppa-photo-admin-autosave.php:1485
647
- #: wppa-widget-admin.php:264
648
  msgid "Owner"
649
  msgstr "Ejer"
650
 
651
- #: wppa-ajax.php:1067
652
  #, php-format
653
  msgid "User %s does not exist"
654
  msgstr ""
655
 
656
- #: wppa-ajax.php:1072 wppa-ajax.php:1078
657
  msgid "Upload limit count"
658
  msgstr ""
659
 
660
- #: wppa-ajax.php:1085
661
  msgid "Upload limit time"
662
  msgstr ""
663
 
664
- #: wppa-ajax.php:1089
665
  msgid "Default tags"
666
  msgstr ""
667
 
668
- #: wppa-ajax.php:1094
669
  msgid "Categories"
670
  msgstr ""
671
 
672
- #: wppa-ajax.php:1097
673
  msgid "Sub albums sort order"
674
  msgstr ""
675
 
676
- #: wppa-ajax.php:1105 wppa-ajax.php:1559
677
  msgid "Schedule date/time"
678
  msgstr ""
679
 
680
- #: wppa-ajax.php:1118 wppa-ajax.php:1170
681
  #, php-format
682
  msgid "<b>%s</b> of album %s updated"
683
  msgstr ""
684
 
685
- #: wppa-ajax.php:1126
686
  msgid "All photos set to scheduled per date"
687
  msgstr ""
688
 
689
- #: wppa-ajax.php:1153
690
  #, php-format
691
  msgid "<b>Custom field %s</b> updated"
692
  msgstr ""
693
 
694
- #: wppa-ajax.php:1179
695
  #, php-format
696
  msgid "An error occurred while trying to update <b>%s</b> of album %s"
697
  msgstr ""
698
 
699
- #: wppa-ajax.php:1180 wppa-ajax.php:1443 wppa-ajax.php:1549
700
  msgid "Press CTRL+F5 and try again."
701
  msgstr ""
702
 
703
- #: wppa-ajax.php:1194
704
  msgid "You do not have the rights to update comment status"
705
  msgstr ""
706
 
707
- #: wppa-ajax.php:1211
708
  #, php-format
709
  msgid "Status of comment #%s updated"
710
  msgstr ""
711
 
712
- #: wppa-ajax.php:1214
713
  #, php-format
714
  msgid "Error updating status comment #%s"
715
  msgstr ""
716
 
717
- #: wppa-ajax.php:1225
718
  msgid "You do not have the rights to change photos"
719
  msgstr ""
720
 
721
- #: wppa-ajax.php:1234
722
  msgid "Watermark applied"
723
  msgstr ""
724
 
725
- #: wppa-ajax.php:1238
726
  msgid "An error occured while trying to apply a watermark"
727
  msgstr ""
728
 
729
- #: wppa-ajax.php:1257
730
  msgid "You do not have the rights to update photo information"
731
  msgstr ""
732
 
733
- #: wppa-ajax.php:1263
734
  #, php-format
735
  msgid "%s updated to %s."
736
  msgstr ""
737
 
738
- #: wppa-ajax.php:1313
739
  #, php-format
740
  msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
741
  msgstr ""
742
 
743
- #: wppa-ajax.php:1317
744
  msgid "Exif date/time updated"
745
  msgstr ""
746
 
747
- #: wppa-ajax.php:1323
748
  msgid "Enter a value > -90 and < 90"
749
  msgstr ""
750
 
751
- #: wppa-ajax.php:1331
752
  msgid "Lattitude updated"
753
  msgstr ""
754
 
755
- #: wppa-ajax.php:1333
756
  msgid "Could not update lattitude"
757
  msgstr ""
758
 
759
- #: wppa-ajax.php:1339
760
  msgid "Enter a value > -180 and < 180"
761
  msgstr ""
762
 
763
- #: wppa-ajax.php:1347
764
  msgid "Longitude updated"
765
  msgstr ""
766
 
767
- #: wppa-ajax.php:1349
768
  msgid "Could not update longitude"
769
  msgstr ""
770
 
771
- #: wppa-ajax.php:1357
772
  msgid "Photo files remade"
773
  msgstr ""
774
 
775
- #: wppa-ajax.php:1360
776
  msgid "Could not remake files"
777
  msgstr ""
778
 
779
- #: wppa-ajax.php:1366
780
  msgid "Thumbnail remade"
781
  msgstr ""
782
 
783
- #: wppa-ajax.php:1369
784
  msgid "Could not remake thumbnail"
785
  msgstr ""
786
 
787
- #: wppa-ajax.php:1379 wppa-photo-admin-autosave.php:184
788
- #: wppa-settings-autosave.php:3798 wppa-tinymce-scripts.php:288
789
- #: wppa-tinymce-shortcodes.php:614 wppa-widget-admin.php:91
790
  msgid "left"
791
  msgstr ""
792
 
793
- #: wppa-ajax.php:1383 wppa-photo-admin-autosave.php:186
794
  msgid "180&deg;"
795
  msgstr ""
796
 
797
- #: wppa-ajax.php:1387 wppa-photo-admin-autosave.php:188
798
- #: wppa-settings-autosave.php:3798 wppa-tinymce-scripts.php:290
799
- #: wppa-tinymce-shortcodes.php:616 wppa-widget-admin.php:93
800
  msgid "right"
801
  msgstr ""
802
 
803
- #: wppa-ajax.php:1395
804
  #, php-format
805
  msgid "Photo %s rotated %s"
806
  msgstr ""
807
 
808
- #: wppa-ajax.php:1398
809
  #, php-format
810
  msgid "An error occurred while trying to rotate photo %s"
811
  msgstr ""
812
 
813
- #: wppa-ajax.php:1408 wppa-ajax.php:1431 wppa-photo-admin-autosave.php:1100
814
  #: wppa-photo-admin-autosave.php:1118
815
  #, php-format
816
  msgid "A photo with filename %s already exists in album %s."
817
  msgstr ""
818
 
819
- #: wppa-ajax.php:1418
820
  #, php-format
821
  msgid "Photo %s has been moved to album %s (%s)"
822
  msgstr ""
823
 
824
- #: wppa-ajax.php:1421
825
  #, php-format
826
  msgid "An error occurred while trying to move photo %s"
827
  msgstr ""
828
 
829
- #: wppa-ajax.php:1439
830
  #, php-format
831
  msgid "Photo %s copied to album %s (%s)"
832
  msgstr ""
833
 
834
- #: wppa-ajax.php:1442
835
  #, php-format
836
  msgid "An error occurred while trying to copy photo %s"
837
  msgstr ""
838
 
839
- #: wppa-ajax.php:1472 wppa-ajax.php:2060
840
  msgid "Unbalanced tags in photo description!"
841
  msgstr ""
842
 
843
- #: wppa-ajax.php:1478
844
  msgid "Photo order #"
845
  msgstr ""
846
 
847
- #: wppa-ajax.php:1483
848
  #, php-format
849
  msgid "User %s does not exists"
850
  msgstr ""
851
 
852
- #: wppa-ajax.php:1492
853
  msgid "Link url"
854
  msgstr ""
855
 
856
- #: wppa-ajax.php:1495
857
  msgid "Link title"
858
  msgstr ""
859
 
860
- #: wppa-ajax.php:1498
861
  msgid "Link target"
862
  msgstr ""
863
 
864
- #: wppa-ajax.php:1504 wppa-multitag-widget.php:34 wppa-multitag-widget.php:66
865
  #: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
866
  msgid "Photo Tags"
867
  msgstr ""
868
 
869
- #: wppa-ajax.php:1509 wppa-comment-admin.php:317 wppa-comment-admin.php:404
870
  #: wppa-photo-admin-autosave.php:1365 wppa-photo-admin-autosave.php:1484
871
- #: wppa-settings-autosave.php:6664 wppa-settings-autosave.php:7394
872
- #: wppa-settings-autosave.php:9160 wppa-settings-autosave.php:9200
873
- #: wppa-settings-autosave.php:9222 wppa-settings-autosave.php:9268
874
  msgid "Status"
875
  msgstr ""
876
 
877
- #: wppa-ajax.php:1512
878
  msgid "HTML Alt"
879
  msgstr ""
880
 
881
- #: wppa-ajax.php:1516
882
  msgid "Video width"
883
  msgstr ""
884
 
885
- #: wppa-ajax.php:1518 wppa-ajax.php:1525
886
  msgid "Please enter an integer value >= 0"
887
  msgstr ""
888
 
889
- #: wppa-ajax.php:1523
890
  msgid "Video height"
891
  msgstr ""
892
 
893
- #: wppa-ajax.php:1541 wppa-ajax.php:1575
894
  #, php-format
895
  msgid "<b>%s</b> of video %s updated"
896
  msgstr ""
897
 
898
- #: wppa-ajax.php:1544 wppa-ajax.php:1578
899
  #, php-format
900
  msgid "<b>%s</b> of photo %s updated"
901
  msgstr ""
902
 
903
- #: wppa-ajax.php:1548
904
  #, php-format
905
  msgid "An error occurred while trying to update <b>%s</b> of photo %s"
906
  msgstr ""
907
 
908
- #: wppa-ajax.php:1604
909
  #, php-format
910
  msgid "<b>Custom field %s</b> of photo %s updated"
911
  msgstr ""
912
 
913
- #: wppa-ajax.php:1611
914
  msgid "<b>Error during upload.</b>"
915
  msgstr ""
916
 
917
- #: wppa-ajax.php:1645
918
  msgid "Photo files updated."
919
  msgstr ""
920
 
921
- #: wppa-ajax.php:1650
922
  msgid "Could not update files."
923
  msgstr ""
924
 
925
- #: wppa-ajax.php:1661
926
  #, php-format
927
  msgid "Stereo mode updated in %d milliseconds"
928
  msgstr ""
929
 
930
- #: wppa-ajax.php:1677
931
  msgid "You do not have the rights to update settings"
932
  msgstr ""
933
 
934
- #: wppa-ajax.php:1758
 
 
 
 
935
  msgid "Capability granted"
936
  msgstr ""
937
 
938
- #: wppa-ajax.php:1763
939
  msgid "Capability withdrawn"
940
  msgstr ""
941
 
942
- #: wppa-ajax.php:1774
943
  msgid "Column width."
944
  msgstr ""
945
 
946
- #: wppa-ajax.php:1777
947
  msgid "Initial width."
948
  msgstr ""
949
 
950
- #: wppa-ajax.php:1780
951
  msgid "Full size."
952
  msgstr ""
953
 
954
- #: wppa-ajax.php:1783
955
  msgid "Max height."
956
  msgstr ""
957
 
958
- #: wppa-ajax.php:1788
959
  msgid "Thumbnail size."
960
  msgstr ""
961
 
962
- #: wppa-ajax.php:1792
963
  msgid "Thumbnail frame width"
964
  msgstr ""
965
 
966
- #: wppa-ajax.php:1796
967
  msgid "Thumbnail frame height"
968
  msgstr ""
969
 
970
- #: wppa-ajax.php:1799
971
  msgid "Thumbnail Spacing"
972
  msgstr ""
973
 
974
- #: wppa-ajax.php:1802
975
  msgid "Photocount treshold."
976
  msgstr ""
977
 
978
- #: wppa-ajax.php:1805
979
  msgid "Thumb page size."
980
  msgstr ""
981
 
982
- #: wppa-ajax.php:1808
983
  msgid "Cover photo size."
984
  msgstr ""
985
 
986
- #: wppa-ajax.php:1811
987
  msgid "Album page size."
988
  msgstr ""
989
 
990
- #: wppa-ajax.php:1814
991
  msgid "Number of TopTen photos"
992
  msgstr ""
993
 
994
- #: wppa-ajax.php:1817
995
  msgid "Widget image thumbnail size"
996
  msgstr ""
997
 
998
- #: wppa-ajax.php:1820 wppa-settings-autosave.php:1143
999
  msgid "Max Cover width"
1000
  msgstr ""
1001
 
1002
- #: wppa-ajax.php:1823
1003
  msgid "Minimal description height"
1004
  msgstr ""
1005
 
1006
- #: wppa-ajax.php:1826
1007
  msgid "Minimal cover height"
1008
  msgstr ""
1009
 
1010
- #: wppa-ajax.php:1829
1011
  msgid "Minimal text frame height"
1012
  msgstr ""
1013
 
1014
- #: wppa-ajax.php:1832 wppa-settings-autosave.php:1440
1015
  msgid "Border width"
1016
  msgstr ""
1017
 
1018
- #: wppa-ajax.php:1835 wppa-settings-autosave.php:814
1019
- #: wppa-settings-autosave.php:1449
1020
  msgid "Border radius"
1021
  msgstr ""
1022
 
1023
- #: wppa-ajax.php:1838 wppa-settings-autosave.php:825
1024
  msgid "Box spacing"
1025
  msgstr ""
1026
 
1027
- #: wppa-ajax.php:1844 wppa-settings-autosave.php:1118
1028
  msgid "Popup size"
1029
  msgstr ""
1030
 
1031
- #: wppa-ajax.php:1847
1032
  msgid "Fullsize border width"
1033
  msgstr ""
1034
 
1035
- #: wppa-ajax.php:1850
1036
  msgid "Lightbox Bordersize"
1037
  msgstr ""
1038
 
1039
- #: wppa-ajax.php:1853
1040
  msgid "Lightbox Borderwidth"
1041
  msgstr ""
1042
 
1043
- #: wppa-ajax.php:1856
1044
  msgid "Lightbox Borderradius"
1045
  msgstr ""
1046
 
1047
- #: wppa-ajax.php:1859
1048
  msgid "Number of Comment widget entries"
1049
  msgstr ""
1050
 
1051
- #: wppa-ajax.php:1862
1052
  msgid "Comment Widget image thumbnail size"
1053
  msgstr ""
1054
 
1055
- #: wppa-ajax.php:1865 wppa-ajax.php:1868 wppa-ajax.php:1871
1056
  msgid "Opacity."
1057
  msgstr ""
1058
 
1059
- #: wppa-ajax.php:1880 wppa-settings-autosave.php:1249
1060
  msgid "Avatar size"
1061
  msgstr ""
1062
 
1063
- #: wppa-ajax.php:1883 wppa-ajax.php:1886
1064
  msgid "Watermark opacity"
1065
  msgstr ""
1066
 
1067
- #: wppa-ajax.php:1889 wppa-settings-autosave.php:1418
1068
  msgid "Number of text lines"
1069
  msgstr ""
1070
 
1071
- #: wppa-ajax.php:1892 wppa-settings-autosave.php:4628
1072
  msgid "Overlay opacity"
1073
  msgstr ""
1074
 
1075
- #: wppa-ajax.php:1895 wppa-settings-autosave.php:7954
1076
  msgid "Upload limit"
1077
  msgstr ""
1078
 
1079
- #: wppa-ajax.php:1898 wppa-settings-autosave.php:4298
1080
  msgid "Notify inappropriate"
1081
  msgstr ""
1082
 
1083
- #: wppa-ajax.php:1901
1084
  msgid "Dislike pending"
1085
  msgstr ""
1086
 
1087
- #: wppa-ajax.php:1904
1088
  msgid "Dislike delete"
1089
  msgstr ""
1090
 
1091
- #: wppa-ajax.php:1907 wppa-settings-autosave.php:7490
1092
  msgid "Max execution time"
1093
  msgstr ""
1094
 
1095
- #: wppa-ajax.php:1913
1096
  msgid "myCRED / Cube Points"
1097
  msgstr ""
1098
 
1099
- #: wppa-ajax.php:1916
1100
  msgid "JPG Image quality"
1101
  msgstr ""
1102
 
1103
- #: wppa-ajax.php:1922 wppa-settings-autosave.php:4191
1104
  msgid "Number of coverphotos"
1105
  msgstr ""
1106
 
1107
- #: wppa-ajax.php:1925 wppa-settings-autosave.php:4269
1108
  msgid "Dislike value"
1109
  msgstr ""
1110
 
1111
- #: wppa-ajax.php:1928 wppa-settings-autosave.php:955
1112
  msgid "Slideshow pagesize"
1113
  msgstr ""
1114
 
1115
- #: wppa-ajax.php:1931 wppa-settings-autosave.php:974
1116
  msgid "Slideonly max"
1117
  msgstr ""
1118
 
1119
- #: wppa-ajax.php:1934 wppa-settings-autosave.php:843
1120
  msgid "Max Pagelinks"
1121
  msgstr ""
1122
 
1123
- #: wppa-ajax.php:1937 wppa-settings-autosave.php:3033
1124
  msgid "Start/pause symbol size"
1125
  msgstr ""
1126
 
1127
- #: wppa-ajax.php:1940 wppa-settings-autosave.php:3042
1128
  msgid "Start/pause symbol border radius"
1129
  msgstr ""
1130
 
1131
- #: wppa-ajax.php:1943 wppa-settings-autosave.php:3051
1132
  msgid "Stop symbol size"
1133
  msgstr ""
1134
 
1135
- #: wppa-ajax.php:1946 wppa-settings-autosave.php:3060
1136
  msgid "Stop symbol border radius"
1137
  msgstr ""
1138
 
1139
- #: wppa-ajax.php:1949 wppa-settings-autosave.php:870
1140
  msgid "Sticky header size"
1141
  msgstr ""
1142
 
1143
- #: wppa-ajax.php:1957
1144
  msgid "Ratings cleared"
1145
  msgstr ""
1146
 
1147
- #: wppa-ajax.php:1960
1148
  msgid "Could not clear ratings"
1149
  msgstr ""
1150
 
1151
- #: wppa-ajax.php:1969
1152
  msgid "Viewcounts cleared"
1153
  msgstr ""
1154
 
1155
- #: wppa-ajax.php:1972
1156
  msgid "Could not clear viewcounts"
1157
  msgstr ""
1158
 
1159
- #: wppa-ajax.php:1982
1160
  msgid "IPTC data cleared"
1161
  msgstr ""
1162
 
1163
- #: wppa-ajax.php:1983
1164
  msgid "Refresh this page to clear table X"
1165
  msgstr ""
1166
 
1167
- #: wppa-ajax.php:1987
1168
  msgid "Could not clear IPTC data"
1169
  msgstr ""
1170
 
1171
- #: wppa-ajax.php:1997
1172
  msgid "EXIF data cleared"
1173
  msgstr ""
1174
 
1175
- #: wppa-ajax.php:1998
1176
  msgid "Refresh this page to clear table XI"
1177
  msgstr ""
1178
 
1179
- #: wppa-ajax.php:2002
1180
  msgid "Could not clear EXIF data"
1181
  msgstr ""
1182
 
1183
- #: wppa-ajax.php:2010
1184
  msgid "Recuperation performed"
1185
  msgstr ""
1186
 
1187
- #: wppa-ajax.php:2025
1188
  msgid ""
1189
  "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1190
  "#77bbff"
1191
  msgstr ""
1192
 
1193
- #: wppa-ajax.php:2051
1194
  msgid "You just changed a setting that requires the recalculation of ratings."
1195
  msgstr ""
1196
 
1197
- #: wppa-ajax.php:2052 wppa-ajax.php:2500
1198
  msgid "Please run the appropriate action in Table VIII."
1199
  msgstr ""
1200
 
1201
- #: wppa-ajax.php:2076 wppa-ajax.php:2092
1202
  #, php-format
1203
  msgid "Unable to create or write to %s"
1204
  msgstr ""
1205
 
1206
- #: wppa-ajax.php:2085
1207
  msgid "Source can not be inside the wppa folder."
1208
  msgstr ""
1209
 
1210
- #: wppa-ajax.php:2102
1211
  msgid "The content must contain w#album"
1212
  msgstr ""
1213
 
1214
- #: wppa-ajax.php:2109
1215
  msgid "The content must contain w#lat and w#lon"
1216
  msgstr ""
1217
 
1218
- #: wppa-ajax.php:2157 wppa-ajax.php:2163
1219
  msgid "Members"
1220
  msgstr ""
1221
 
1222
- #: wppa-ajax.php:2157
1223
  msgid "Parent of the member albums"
1224
  msgstr ""
1225
 
1226
- #: wppa-ajax.php:2301
1227
  #, php-format
1228
  msgid "User %s has been blacklisted."
1229
  msgstr ""
1230
 
1231
- #: wppa-ajax.php:2304 wppa-ajax.php:2334
1232
  #, php-format
1233
  msgid "User %s does not exist."
1234
  msgstr ""
1235
 
1236
- #: wppa-ajax.php:2331
1237
  #, php-format
1238
  msgid "User %s is now superuser."
1239
  msgstr ""
1240
 
1241
- #: wppa-ajax.php:2356
1242
  msgid ""
1243
  "The content of the Custom box has been changed to display the Fotomoto "
1244
  "toolbar."
1245
  msgstr ""
1246
 
1247
- #: wppa-ajax.php:2360 wppa-ajax.php:2375
1248
  msgid "The display of the custom box has been enabled"
1249
  msgstr ""
1250
 
1251
- #: wppa-ajax.php:2371
1252
  msgid "The content of the Custom box has been changed to display maps."
1253
  msgstr ""
1254
 
1255
- #: wppa-ajax.php:2409
1256
  msgid "This value can not be empty"
1257
  msgstr ""
1258
 
1259
- #: wppa-ajax.php:2438
1260
  msgid ""
1261
  "You must run Table VIII-A13 and VIII-A14 first before you can switch to "
1262
  "encrypted urls."
1263
  msgstr ""
1264
 
1265
- #: wppa-ajax.php:2441
1266
  msgid "Table IV-A3 will be switched off."
1267
  msgstr ""
1268
 
1269
- #: wppa-ajax.php:2445
1270
  msgid "Table IV-A4 will be switched off."
1271
  msgstr ""
1272
 
1273
- #: wppa-ajax.php:2455
1274
  msgid "Not allowed when cryptic links is active"
1275
  msgstr ""
1276
 
1277
- #: wppa-ajax.php:2467
1278
  msgid "A Twitter account name must start with an at sign: @"
1279
  msgstr ""
1280
 
1281
- #: wppa-ajax.php:2478
1282
  #, php-format
1283
  msgid "Failed to set %s to %s"
1284
  msgstr ""
1285
 
1286
- #: wppa-ajax.php:2483
1287
  #, php-format
1288
  msgid "Setting %s updated to %s"
1289
  msgstr ""
1290
 
1291
- #: wppa-ajax.php:2499
1292
  msgid ""
1293
  "You just changed a setting that requires the regeneration of thumbnails."
1294
  msgstr ""
1295
 
1296
- #: wppa-ajax.php:2554
1297
  msgid "Missing album id"
1298
  msgstr ""
1299
 
1300
- #: wppa-ajax.php:2574
1301
  msgid "You do not have the rights to delete this album"
1302
  msgstr ""
1303
 
1304
- #: wppa-ajax.php:2595
1305
  msgid "An error has occurred"
1306
  msgstr ""
1307
 
1308
- #: wppa-ajax.php:2631 wppa-ajax.php:2638
1309
  msgid "You may also enter:"
1310
  msgstr ""
1311
 
1312
- #: wppa-ajax.php:2632 wppa-ajax.php:2639
1313
  msgid "You may also leave/set this blank"
1314
  msgstr ""
1315
 
1316
- #: wppa-album-admin-autosave.php:23 wppa-album-admin-autosave.php:773
1317
  msgid "Upload to this album"
1318
  msgstr ""
1319
 
@@ -1328,20 +1341,20 @@ msgid ""
1328
  "Please make sure that %s is writeable by the server."
1329
  msgstr ""
1330
 
1331
- #: wppa-album-admin-autosave.php:79 wppa-album-admin-autosave.php:816
1332
  msgid "Manage Photos"
1333
  msgstr ""
1334
 
1335
- #: wppa-album-admin-autosave.php:80 wppa-album-admin-autosave.php:817
1336
  msgid "Copy / move / delete / edit name / edit description / change status"
1337
  msgstr ""
1338
 
1339
- #: wppa-album-admin-autosave.php:81 wppa-album-admin-autosave.php:819
1340
  msgid "Edit photo information except copy and move"
1341
  msgstr ""
1342
 
1343
- #: wppa-album-admin-autosave.php:82 wppa-album-admin-autosave.php:820
1344
- #: wppa-setup.php:1291
1345
  msgid "Edit photo information"
1346
  msgstr ""
1347
 
@@ -1349,279 +1362,279 @@ msgstr ""
1349
  msgid "Back to album table"
1350
  msgstr ""
1351
 
1352
- #: wppa-album-admin-autosave.php:91 wppa-album-admin-autosave.php:827
1353
  msgid "Top of page"
1354
  msgstr ""
1355
 
1356
- #: wppa-album-admin-autosave.php:118 wppa-functions.php:4183
1357
- #: wppa-settings-autosave.php:7802 wppa-wpdb-insert.php:338
1358
  msgid "New Album"
1359
  msgstr "Nyt Album"
1360
 
1361
- #: wppa-album-admin-autosave.php:123 wppa-upload.php:1568 wppa-upload.php:1604
1362
- #: wppa-upload.php:2379
1363
  msgid "Could not create album."
1364
  msgstr ""
1365
 
1366
- #: wppa-album-admin-autosave.php:131 wppa-upload.php:1574 wppa-upload.php:2387
1367
  msgid "Album #"
1368
  msgstr ""
1369
 
1370
- #: wppa-album-admin-autosave.php:131 wppa-upload.php:1574 wppa-upload.php:2387
1371
  msgid "Added."
1372
  msgstr ""
1373
 
1374
- #: wppa-album-admin-autosave.php:176
1375
  msgid "Edit Album Information"
1376
  msgstr ""
1377
 
1378
- #: wppa-album-admin-autosave.php:176 wppa-settings-autosave.php:317
1379
  msgid "Auto Save"
1380
  msgstr ""
1381
 
1382
- #: wppa-album-admin-autosave.php:178
1383
  msgid ""
1384
  "All modifications are instantly updated on the server, except for those that "
1385
  "require a button push."
1386
  msgstr ""
1387
 
1388
- #: wppa-album-admin-autosave.php:179
1389
  msgid ""
1390
  "The <b style=\"color:#070\" >Remark</b> fields keep you informed on the "
1391
  "actions taken at the background."
1392
  msgstr ""
1393
 
1394
- #: wppa-album-admin-autosave.php:183
1395
  msgid "Album number:"
1396
  msgstr ""
1397
 
1398
- #: wppa-album-admin-autosave.php:183 wppa-photo-admin-autosave.php:179
1399
  msgid "Crypt"
1400
  msgstr ""
1401
 
1402
- #: wppa-album-admin-autosave.php:192
1403
  msgid "Name:"
1404
  msgstr ""
1405
 
1406
- #: wppa-album-admin-autosave.php:199
1407
  msgid "Update Album name"
1408
  msgstr ""
1409
 
1410
- #: wppa-album-admin-autosave.php:207
1411
  msgid "Type the name of the album. Do not leave this empty."
1412
  msgstr ""
1413
 
1414
- #: wppa-album-admin-autosave.php:215 wppa-photo-admin-autosave.php:753
1415
  #: wppa-photo-admin-autosave.php:778
1416
  msgid "Description:"
1417
  msgstr ""
1418
 
1419
- #: wppa-album-admin-autosave.php:226
1420
  msgid "Update Album description"
1421
  msgstr ""
1422
 
1423
- #: wppa-album-admin-autosave.php:236
1424
  msgid "Enter / modify the description for this album."
1425
  msgstr ""
1426
 
1427
- #: wppa-album-admin-autosave.php:280
1428
  msgid "Created:"
1429
  msgstr ""
1430
 
1431
- #: wppa-album-admin-autosave.php:283 wppa-album-admin-autosave.php:294
1432
  #: wppa-photo-admin-autosave.php:257 wppa-photo-admin-autosave.php:280
1433
  msgid "local time"
1434
  msgstr ""
1435
 
1436
- #: wppa-album-admin-autosave.php:289 wppa-photo-admin-autosave.php:275
1437
  msgid "Modified:"
1438
  msgstr ""
1439
 
1440
- #: wppa-album-admin-autosave.php:297 wppa-photo-admin-autosave.php:283
1441
  #: wppa-photo-admin-autosave.php:1472
1442
  msgid "Not modified"
1443
  msgstr ""
1444
 
1445
- #: wppa-album-admin-autosave.php:306
1446
  msgid "Views:"
1447
  msgstr ""
1448
 
1449
- #: wppa-album-admin-autosave.php:319 wppa-photo-admin-autosave.php:261
1450
  msgid "Owned by:"
1451
  msgstr ""
1452
 
1453
- #: wppa-album-admin-autosave.php:337
1454
  msgid ""
1455
  "WARNING If you change the owner, you will no longer be able to modify this "
1456
  "album and upload or import photos to it!"
1457
  msgstr ""
1458
 
1459
- #: wppa-album-admin-autosave.php:339
1460
  msgid "Enter user login name or <b>--- public ---</b>"
1461
  msgstr ""
1462
 
1463
- #: wppa-album-admin-autosave.php:348
1464
  msgid "Album sort order #:"
1465
  msgstr ""
1466
 
1467
- #: wppa-album-admin-autosave.php:356
1468
  msgid ""
1469
  "Album order # has only effect if you set the album sort order method to "
1470
  "<b>Order #</b> in the Photo Albums -> Settings screen.<br />"
1471
  msgstr ""
1472
 
1473
- #: wppa-album-admin-autosave.php:359
1474
  msgid ""
1475
  "If you want to sort the albums by order #, enter / modify the order number "
1476
  "here."
1477
  msgstr ""
1478
 
1479
- #: wppa-album-admin-autosave.php:366 wppa-tinymce-shortcodes.php:345
1480
- #: wppa-tinymce-shortcodes.php:371 wppa-tinymce-shortcodes.php:559
1481
  msgid "Parent album:"
1482
  msgstr ""
1483
 
1484
- #: wppa-album-admin-autosave.php:377
1485
  msgid ""
1486
  "If this is a sub album, select the album in which this album will appear."
1487
  msgstr ""
1488
 
1489
- #: wppa-album-admin-autosave.php:386
1490
  msgid "Photo order:"
1491
  msgstr ""
1492
 
1493
- #: wppa-album-admin-autosave.php:390 wppa-album-admin-autosave.php:491
1494
- #: wppa-settings-autosave.php:4025 wppa-settings-autosave.php:4049
1495
- #: wppa-tinymce-shortcodes.php:504 wppa-tinymce-shortcodes.php:523
1496
  msgid "--- default ---"
1497
  msgstr ""
1498
 
1499
- #: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:447
1500
- #: wppa-settings-autosave.php:3987 wppa-settings-autosave.php:4101
1501
  #: wppa-thumbnail-widget.php:201
1502
  msgid "Order #"
1503
  msgstr ""
1504
 
1505
- #: wppa-album-admin-autosave.php:393 wppa-album-admin-autosave.php:446
1506
- #: wppa-settings-autosave.php:3989 wppa-settings-autosave.php:4103
1507
- #: wppa-thumbnail-widget.php:203 wppa-widget-admin.php:156
1508
  msgid "Random"
1509
  msgstr ""
1510
 
1511
- #: wppa-album-admin-autosave.php:394 wppa-settings-autosave.php:3990
1512
  msgid "Rating mean value"
1513
  msgstr ""
1514
 
1515
- #: wppa-album-admin-autosave.php:395 wppa-bestof-widget.php:170
1516
- #: wppa-settings-autosave.php:3991 wppa-topten-widget.php:345
1517
  msgid "Number of votes"
1518
  msgstr ""
1519
 
1520
- #: wppa-album-admin-autosave.php:396 wppa-album-admin-autosave.php:451
1521
- #: wppa-settings-autosave.php:3992 wppa-settings-autosave.php:4104
1522
  msgid "Timestamp"
1523
  msgstr ""
1524
 
1525
- #: wppa-album-admin-autosave.php:397 wppa-photo-admin-autosave.php:292
1526
- #: wppa-settings-autosave.php:3993
1527
  msgid "EXIF Date"
1528
  msgstr ""
1529
 
1530
- #: wppa-album-admin-autosave.php:398 wppa-settings-autosave.php:3994
1531
- #: wppa-settings-autosave.php:4105
1532
  msgid "Order # desc"
1533
  msgstr ""
1534
 
1535
- #: wppa-album-admin-autosave.php:399 wppa-settings-autosave.php:3995
1536
- #: wppa-settings-autosave.php:4106
1537
  msgid "Name desc"
1538
  msgstr ""
1539
 
1540
- #: wppa-album-admin-autosave.php:400 wppa-settings-autosave.php:3996
1541
  #: wppa-thumbnail-widget.php:204
1542
  msgid "Rating mean value desc"
1543
  msgstr ""
1544
 
1545
- #: wppa-album-admin-autosave.php:401 wppa-settings-autosave.php:3997
1546
  #: wppa-thumbnail-widget.php:205
1547
  msgid "Number of votes desc"
1548
  msgstr ""
1549
 
1550
- #: wppa-album-admin-autosave.php:402 wppa-settings-autosave.php:3998
1551
- #: wppa-settings-autosave.php:4107 wppa-thumbnail-widget.php:206
1552
  msgid "Timestamp desc"
1553
  msgstr ""
1554
 
1555
- #: wppa-album-admin-autosave.php:403 wppa-settings-autosave.php:3999
1556
  msgid "EXIF Date desc"
1557
  msgstr ""
1558
 
1559
- #: wppa-album-admin-autosave.php:432
1560
  msgid "Specify the way the photos should be ordered in this album."
1561
  msgstr ""
1562
 
1563
- #: wppa-album-admin-autosave.php:433
1564
  msgid ""
1565
  "The default setting can be changed in the <b>Photo Albums -> Settings</b> "
1566
  "page <b>Table IV-C1</b>."
1567
  msgstr ""
1568
 
1569
- #: wppa-album-admin-autosave.php:441
1570
  msgid "Sub album sort order:"
1571
  msgstr ""
1572
 
1573
- #: wppa-album-admin-autosave.php:445
1574
  msgid "See Table IV-D1"
1575
  msgstr ""
1576
 
1577
- #: wppa-album-admin-autosave.php:448
1578
  msgid "Order # reverse"
1579
  msgstr ""
1580
 
1581
- #: wppa-album-admin-autosave.php:450
1582
  msgid "Name reverse"
1583
  msgstr ""
1584
 
1585
- #: wppa-album-admin-autosave.php:452
1586
  msgid "Timestamp reverse"
1587
  msgstr ""
1588
 
1589
- #: wppa-album-admin-autosave.php:457
1590
  msgid ""
1591
  "Specify the sequence order method to be used for the sub albums of this "
1592
  "album."
1593
  msgstr ""
1594
 
1595
- #: wppa-album-admin-autosave.php:466
1596
  msgid "Use alt thumbsize:"
1597
  msgstr ""
1598
 
1599
- #: wppa-album-admin-autosave.php:470 wppa-bestof-widget.php:182
1600
  #: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
1601
- #: wppa-lasten-widget.php:219 wppa-settings-autosave.php:573
 
 
1602
  #: wppa-settings-autosave.php:582 wppa-settings-autosave.php:591
1603
- #: wppa-settings-autosave.php:602 wppa-settings-autosave.php:611
1604
- #: wppa-settings-autosave.php:620 wppa-settings-autosave.php:629
1605
- #: wppa-settings-autosave.php:638 wppa-settings-autosave.php:647
1606
- #: wppa-settings-autosave.php:656 wppa-settings-autosave.php:665
1607
- #: wppa-settings-autosave.php:674 wppa-settings-autosave.php:683
1608
- #: wppa-settings-autosave.php:692 wppa-topten-widget.php:353
1609
  #: wppa-topten-widget.php:360 wppa-topten-widget.php:368
1610
  #: wppa-topten-widget.php:373 wppa-topten-widget.php:378
1611
  #: wppa-topten-widget.php:383 wppa-topten-widget.php:388
1612
  msgid "no"
1613
  msgstr ""
1614
 
1615
- #: wppa-album-admin-autosave.php:471 wppa-bestof-widget.php:181
1616
  #: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
1617
- #: wppa-lasten-widget.php:220 wppa-settings-autosave.php:573
 
 
1618
  #: wppa-settings-autosave.php:582 wppa-settings-autosave.php:591
1619
- #: wppa-settings-autosave.php:602 wppa-settings-autosave.php:611
1620
- #: wppa-settings-autosave.php:620 wppa-settings-autosave.php:629
1621
- #: wppa-settings-autosave.php:638 wppa-settings-autosave.php:647
1622
- #: wppa-settings-autosave.php:656 wppa-settings-autosave.php:665
1623
- #: wppa-settings-autosave.php:674 wppa-settings-autosave.php:683
1624
- #: wppa-settings-autosave.php:692 wppa-settings-autosave.php:701
1625
  #: wppa-super-view-widget.php:85 wppa-topten-widget.php:352
1626
  #: wppa-topten-widget.php:359 wppa-topten-widget.php:367
1627
  #: wppa-topten-widget.php:372 wppa-topten-widget.php:377
@@ -1629,325 +1642,326 @@ msgstr ""
1629
  msgid "yes"
1630
  msgstr ""
1631
 
1632
- #: wppa-album-admin-autosave.php:476
1633
  msgid ""
1634
  "If set to <b>yes</b> The settings in <b>Table I-C1a,3a</b> and <b>4a</b> "
1635
  "apply rather than <b>I-C1,3</b> and <b>4</b>."
1636
  msgstr ""
1637
 
1638
- #: wppa-album-admin-autosave.php:486
1639
  msgid "Cover Type:"
1640
  msgstr ""
1641
 
1642
- #: wppa-album-admin-autosave.php:492 wppa-settings-autosave.php:2069
1643
- #: wppa-settings-autosave.php:4171
1644
  msgid "Standard"
1645
  msgstr ""
1646
 
1647
- #: wppa-album-admin-autosave.php:493 wppa-settings-autosave.php:4172
1648
  msgid "Long Descriptions"
1649
  msgstr ""
1650
 
1651
- #: wppa-album-admin-autosave.php:494 wppa-settings-autosave.php:4173
1652
  msgid "Image Factory"
1653
  msgstr ""
1654
 
1655
- #: wppa-album-admin-autosave.php:495 wppa-settings-autosave.php:4174
1656
  msgid "Standard mcr"
1657
  msgstr ""
1658
 
1659
- #: wppa-album-admin-autosave.php:496 wppa-settings-autosave.php:4175
1660
  msgid "Long Descriptions mcr"
1661
  msgstr ""
1662
 
1663
- #: wppa-album-admin-autosave.php:497 wppa-settings-autosave.php:4176
1664
  msgid "Image Factory mcr"
1665
  msgstr ""
1666
 
1667
- #: wppa-album-admin-autosave.php:503
1668
  msgid ""
1669
  "The default cover type is the systems standard set in the <b>Photo Albums -> "
1670
  "Settings</b> page <b>Table IV-D6</b>."
1671
  msgstr ""
1672
 
1673
- #: wppa-album-admin-autosave.php:513
1674
  msgid "Cover Photo:"
1675
  msgstr ""
1676
 
1677
- #: wppa-album-admin-autosave.php:521
1678
  msgid "Select the photo you want to appear on the cover of this album."
1679
  msgstr ""
1680
 
1681
- #: wppa-album-admin-autosave.php:522
1682
  msgid ""
1683
  "Select the way the cover photos of this album are selected, or select a "
1684
  "single image."
1685
  msgstr ""
1686
 
1687
- #: wppa-album-admin-autosave.php:531
1688
  msgid "Upload limit:"
1689
  msgstr ""
1690
 
1691
- #: wppa-album-admin-autosave.php:542 wppa-settings-autosave.php:6105
1692
- #: wppa-settings-autosave.php:7961
1693
  msgid "for ever"
1694
  msgstr ""
1695
 
1696
- #: wppa-album-admin-autosave.php:543 wppa-album-admin-autosave.php:560
1697
- #: wppa-settings-autosave.php:6106 wppa-settings-autosave.php:7962
1698
  msgid "per hour"
1699
  msgstr ""
1700
 
1701
- #: wppa-album-admin-autosave.php:544 wppa-album-admin-autosave.php:561
1702
- #: wppa-settings-autosave.php:6107 wppa-settings-autosave.php:7963
1703
  msgid "per day"
1704
  msgstr ""
1705
 
1706
- #: wppa-album-admin-autosave.php:545 wppa-album-admin-autosave.php:562
1707
- #: wppa-settings-autosave.php:6108 wppa-settings-autosave.php:7964
1708
  msgid "per week"
1709
  msgstr ""
1710
 
1711
- #: wppa-album-admin-autosave.php:546 wppa-album-admin-autosave.php:563
1712
- #: wppa-settings-autosave.php:6109 wppa-settings-autosave.php:7965
1713
  msgid "per month"
1714
  msgstr ""
1715
 
1716
- #: wppa-album-admin-autosave.php:547 wppa-album-admin-autosave.php:564
1717
- #: wppa-settings-autosave.php:6110 wppa-settings-autosave.php:7966
1718
  msgid "per year"
1719
  msgstr ""
1720
 
1721
- #: wppa-album-admin-autosave.php:551
1722
  msgid "Set the upload limit (0 means unlimited) and the upload limit period."
1723
  msgstr ""
1724
 
1725
- #: wppa-album-admin-autosave.php:556
1726
  msgid "Unlimited"
1727
  msgstr ""
1728
 
1729
- #: wppa-album-admin-autosave.php:575
1730
  msgid "Catogories:"
1731
  msgstr ""
1732
 
1733
- #: wppa-album-admin-autosave.php:585
1734
  msgid "Separate categories with commas."
1735
  msgstr ""
1736
 
1737
- #: wppa-album-admin-autosave.php:586 wppa-photo-admin-autosave.php:832
1738
  msgid "Examples:"
1739
  msgstr ""
1740
 
1741
- #: wppa-album-admin-autosave.php:592 wppa-photo-admin-autosave.php:836
1742
  msgid "- select -"
1743
  msgstr ""
1744
 
1745
- #: wppa-album-admin-autosave.php:598
1746
  msgid "No categories yet"
1747
  msgstr ""
1748
 
1749
- #: wppa-album-admin-autosave.php:602 wppa-photo-admin-autosave.php:846
1750
  msgid "Select to add"
1751
  msgstr ""
1752
 
1753
- #: wppa-album-admin-autosave.php:608
1754
  msgid ""
1755
  "Are you sure you want to inherit categories to all (grand)children of this "
1756
  "album?"
1757
  msgstr ""
1758
 
1759
- #: wppa-album-admin-autosave.php:609
1760
  msgid ""
1761
  "Are you sure you want to add the categories to all (grand)children of this "
1762
  "album?"
1763
  msgstr ""
1764
 
1765
- #: wppa-album-admin-autosave.php:612
1766
  msgid "Inherit Cats"
1767
  msgstr ""
1768
 
1769
- #: wppa-album-admin-autosave.php:617
1770
  msgid "Apply categories to all (grand)children."
1771
  msgstr ""
1772
 
1773
- #: wppa-album-admin-autosave.php:622
1774
  msgid "Add Inherit Cats"
1775
  msgstr ""
1776
 
1777
- #: wppa-album-admin-autosave.php:627
1778
  msgid "Add categories to all (grand)children."
1779
  msgstr ""
1780
 
1781
- #: wppa-album-admin-autosave.php:634
1782
  msgid "Default photo tags:"
1783
  msgstr ""
1784
 
1785
- #: wppa-album-admin-autosave.php:640
1786
  msgid ""
1787
  "Enter the tags that you want to be assigned to new photos in this album."
1788
  msgstr ""
1789
 
1790
- #: wppa-album-admin-autosave.php:645
1791
  msgid ""
1792
  "Are you sure you want to set the default tags to all photos in this album?"
1793
  msgstr ""
1794
 
1795
- #: wppa-album-admin-autosave.php:646
1796
  msgid ""
1797
  "Are you sure you want to add the default tags to all photos in this album?"
1798
  msgstr ""
1799
 
1800
- #: wppa-album-admin-autosave.php:649
1801
  msgid "Apply default tags"
1802
  msgstr ""
1803
 
1804
- #: wppa-album-admin-autosave.php:654
1805
  msgid "Tag all photos in this album with the default tags."
1806
  msgstr ""
1807
 
1808
- #: wppa-album-admin-autosave.php:659
1809
  msgid "Add default tags"
1810
  msgstr ""
1811
 
1812
- #: wppa-album-admin-autosave.php:664
1813
  msgid "Add the default tags to all photos in this album."
1814
  msgstr ""
1815
 
1816
- #: wppa-album-admin-autosave.php:671
1817
  msgid "Link type:"
1818
  msgstr ""
1819
 
1820
- #: wppa-album-admin-autosave.php:678 wppa-settings-autosave.php:8122
1821
  msgid "the sub-albums and thumbnails"
1822
  msgstr ""
1823
 
1824
- #: wppa-album-admin-autosave.php:679 wppa-settings-autosave.php:8123
1825
  msgid "the sub-albums"
1826
  msgstr ""
1827
 
1828
- #: wppa-album-admin-autosave.php:680 wppa-settings-autosave.php:8124
1829
  msgid "the thumbnails"
1830
  msgstr ""
1831
 
1832
- #: wppa-album-admin-autosave.php:681 wppa-settings-autosave.php:8125
1833
  msgid "the album photos as slideshow"
1834
  msgstr ""
1835
 
1836
- #: wppa-album-admin-autosave.php:682
1837
  msgid "the link page with a clean url"
1838
  msgstr ""
1839
 
1840
- #: wppa-album-admin-autosave.php:683 wppa-settings-autosave.php:8126
1841
  msgid "no link at all"
1842
  msgstr ""
1843
 
1844
- #: wppa-album-admin-autosave.php:688
1845
  msgid ""
1846
  "If you select \"the link page with a clean url\", select an Auto Page of one "
1847
  "of the photos in this album."
1848
  msgstr ""
1849
 
1850
- #: wppa-album-admin-autosave.php:689
1851
  msgid ""
1852
  "If you select \"the link page with a clean url\", make sure you enter the "
1853
  "correct shortcode on the target page."
1854
  msgstr ""
1855
 
1856
- #: wppa-album-admin-autosave.php:698 wppa-bestof-widget.php:196
1857
- #: wppa-slideshow-widget.php:221 wppa-widget-admin.php:232
1858
- #: wppa-widget-admin.php:242 wppa-widget-admin.php:277
1859
  msgid "Link to:"
1860
  msgstr ""
1861
 
1862
- #: wppa-album-admin-autosave.php:704 wppa-settings-autosave.php:9805
1863
- #: wppa-settings-autosave.php:9847 wppa-settings-autosave.php:9899
1864
  msgid "There are no pages (yet) to link to."
1865
  msgstr ""
1866
 
1867
- #: wppa-album-admin-autosave.php:709
1868
  msgid "--- the same page or post ---"
1869
  msgstr ""
1870
 
1871
- #: wppa-album-admin-autosave.php:717
1872
  msgid ""
1873
  "If you want, you can link the title to a WP page in stead of the album's "
1874
  "content. If so, select the page the title links to."
1875
  msgstr ""
1876
 
1877
- #: wppa-album-admin-autosave.php:727
1878
  msgid "Schedule:"
1879
  msgstr ""
1880
 
1881
- #: wppa-album-admin-autosave.php:738
1882
  msgid ""
1883
  "If enabled, new photos will have their status set to the dat/time specified "
1884
  "here."
1885
  msgstr ""
1886
 
1887
- #: wppa-album-admin-autosave.php:744
1888
  msgid "Are you sure you want to schedule all photos in this album?"
1889
  msgstr ""
1890
 
1891
- #: wppa-album-admin-autosave.php:744
1892
  msgid "Schedule all"
1893
  msgstr ""
1894
 
1895
- #: wppa-album-admin-autosave.php:752
1896
  msgid "Are you sure you want to clear the ratings in this album?"
1897
  msgstr ""
1898
 
1899
- #: wppa-album-admin-autosave.php:752
1900
  msgid "Reset ratings"
1901
  msgstr ""
1902
 
1903
- #: wppa-album-admin-autosave.php:769
1904
  msgid "Change the upload limit or remove photos to enable new uploads."
1905
  msgstr ""
1906
 
1907
- #: wppa-album-admin-autosave.php:773
1908
  #, php-format
1909
  msgid "(max %d)"
1910
  msgstr ""
1911
 
1912
- #: wppa-album-admin-autosave.php:774
1913
  msgid "Album is full"
1914
  msgstr ""
1915
 
1916
- #: wppa-album-admin-autosave.php:785
1917
  msgid "Apply new photo desc"
1918
  msgstr ""
1919
 
1920
- #: wppa-album-admin-autosave.php:796
1921
  msgid "Remake all"
1922
  msgstr ""
1923
 
1924
- #: wppa-album-admin-autosave.php:804 wppa-photo-admin-autosave.php:946
1925
  msgid "Remark:"
1926
  msgstr ""
1927
 
1928
- #: wppa-album-admin-autosave.php:807
1929
  #, php-format
1930
  msgid "Album %s is not modified yet"
1931
  msgstr ""
1932
 
1933
- #: wppa-album-admin-autosave.php:818 wppa-album-admin-autosave.php:1959
1934
  msgid "Change sequence order by drag and drop"
1935
  msgstr ""
1936
 
1937
- #: wppa-album-admin-autosave.php:837
1938
  msgid "Moderate comment"
1939
  msgstr ""
1940
 
1941
- #: wppa-album-admin-autosave.php:853
1942
  msgid "Moderate photo"
1943
  msgstr ""
1944
 
1945
- #: wppa-album-admin-autosave.php:854 wppa-functions.php:2345
1946
  #: wppa-photo-admin-autosave.php:24
1947
  msgid "Edit photo"
1948
  msgstr "N&aelig;ste billede"
1949
 
1950
- #: wppa-album-admin-autosave.php:878
 
1951
  msgid "Delete Album"
1952
  msgstr ""
1953
 
@@ -1957,8 +1971,8 @@ msgstr ""
1957
  #: wppa-breadcrumb.php:636 wppa-comment-admin.php:65 wppa-featen-widget.php:179
1958
  #: wppa-lasten-widget.php:203 wppa-slideshow-widget.php:199
1959
  #: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:326
1960
- #: wppa-upload-widget.php:85 wppa-upload.php:116 wppa-upload.php:204
1961
- #: wppa-upload.php:251
1962
  msgid "Album:"
1963
  msgstr "Album:"
1964
 
@@ -1975,14 +1989,14 @@ msgid "What would you like to do with photos currently in the album?"
1975
  msgstr ""
1976
 
1977
  #: wppa-album-admin-autosave.php:888 wppa-album-admin-autosave.php:897
1978
- #: wppa-album-admin-autosave.php:1160 wppa-album-admin-autosave.php:1200
1979
- #: wppa-album-admin-autosave.php:1297 wppa-album-admin-autosave.php:1469
1980
- #: wppa-album-admin-autosave.php:1564 wppa-album-admin-autosave.php:1751
1981
  #: wppa-boxes-html.php:935 wppa-comment-admin.php:319
1982
  #: wppa-comment-admin.php:388 wppa-comment-admin.php:406
1983
- #: wppa-functions.php:2104 wppa-links.php:782 wppa-links.php:800
1984
  #: wppa-photo-admin-autosave.php:1312 wppa-photo-admin-autosave.php:1380
1985
- #: wppa-thumbnails.php:627
1986
  msgid "Delete"
1987
  msgstr "Slet"
1988
 
@@ -1990,8 +2004,8 @@ msgstr "Slet"
1990
  msgid "Move to:"
1991
  msgstr ""
1992
 
1993
- #: wppa-album-admin-autosave.php:896 wppa-photo-admin-autosave.php:2010
1994
- #: wppa-settings-autosave.php:2899
1995
  msgid "Cancel"
1996
  msgstr ""
1997
 
@@ -1999,303 +2013,353 @@ msgstr ""
1999
  msgid "Unable to move photos. Album not deleted."
2000
  msgstr ""
2001
 
2002
- #: wppa-album-admin-autosave.php:949
2003
  msgid "Manage Albums"
2004
  msgstr ""
2005
 
2006
- #: wppa-album-admin-autosave.php:955
2007
  msgid "Are you sure you want to create a new album?"
2008
  msgstr ""
2009
 
2010
- #: wppa-album-admin-autosave.php:960
2011
  msgid "Create New Empty Album"
2012
  msgstr ""
2013
 
2014
- #: wppa-album-admin-autosave.php:966
2015
  msgid "Switch to Collapsable table"
2016
  msgstr ""
2017
 
2018
- #: wppa-album-admin-autosave.php:969
2019
  msgid "Switch to Flat table"
2020
  msgstr ""
2021
 
2022
- #: wppa-album-admin-autosave.php:981
2023
  msgid "Open all"
2024
  msgstr ""
2025
 
2026
- #: wppa-album-admin-autosave.php:994
2027
  msgid "Close all"
2028
  msgstr ""
2029
 
2030
- #: wppa-album-admin-autosave.php:1093 wppa-album-admin-autosave.php:1230
2031
- #: wppa-album-admin-autosave.php:1401 wppa-album-admin-autosave.php:1496
2032
  #: wppa-photo-admin-autosave.php:1361 wppa-photo-admin-autosave.php:1480
2033
  msgid "ID"
2034
  msgstr ""
2035
 
2036
- #: wppa-album-admin-autosave.php:1135 wppa-album-admin-autosave.php:1272
2037
- #: wppa-album-admin-autosave.php:1444 wppa-album-admin-autosave.php:1539
2038
  msgid "Order"
2039
  msgstr ""
2040
 
2041
- #: wppa-album-admin-autosave.php:1145 wppa-album-admin-autosave.php:1282
2042
- #: wppa-album-admin-autosave.php:1454 wppa-album-admin-autosave.php:1549
2043
  msgid "Parent"
2044
  msgstr ""
2045
 
2046
- #: wppa-album-admin-autosave.php:1153 wppa-album-admin-autosave.php:1290
2047
- #: wppa-album-admin-autosave.php:1462 wppa-album-admin-autosave.php:1557
2048
  msgid "Albums/Photos/Moderation required/Scheduled"
2049
  msgstr ""
2050
 
2051
- #: wppa-album-admin-autosave.php:1154 wppa-album-admin-autosave.php:1291
2052
- #: wppa-album-admin-autosave.php:1463 wppa-album-admin-autosave.php:1558
2053
  msgid "A/P/PM/S"
2054
  msgstr ""
2055
 
2056
- #: wppa-album-admin-autosave.php:1157 wppa-album-admin-autosave.php:1195
2057
- #: wppa-album-admin-autosave.php:1294 wppa-album-admin-autosave.php:1466
2058
- #: wppa-album-admin-autosave.php:1561 wppa-album-admin-autosave.php:1639
2059
- #: wppa-album-admin-autosave.php:1746
2060
  msgid "Quick"
2061
  msgstr ""
2062
 
2063
- #: wppa-album-admin-autosave.php:1158 wppa-album-admin-autosave.php:1196
2064
- #: wppa-album-admin-autosave.php:1295 wppa-album-admin-autosave.php:1467
2065
- #: wppa-album-admin-autosave.php:1562 wppa-album-admin-autosave.php:1644
2066
- #: wppa-album-admin-autosave.php:1747
2067
  msgid "Bulk"
2068
  msgstr ""
2069
 
2070
- #: wppa-album-admin-autosave.php:1159 wppa-album-admin-autosave.php:1197
2071
- #: wppa-album-admin-autosave.php:1296 wppa-album-admin-autosave.php:1468
2072
- #: wppa-album-admin-autosave.php:1563 wppa-album-admin-autosave.php:1748
2073
  msgid "Seq"
2074
  msgstr ""
2075
 
2076
- #: wppa-album-admin-autosave.php:1161 wppa-album-admin-autosave.php:1205
2077
- #: wppa-album-admin-autosave.php:1208 wppa-album-admin-autosave.php:1298
2078
- #: wppa-album-admin-autosave.php:1470 wppa-album-admin-autosave.php:1565
2079
- #: wppa-album-admin-autosave.php:1756 wppa-album-admin-autosave.php:1759
2080
  msgid "Create"
2081
  msgstr ""
2082
 
2083
- #: wppa-album-admin-autosave.php:1204 wppa-album-admin-autosave.php:1755
2084
  msgid "Are you sure you want to create a subalbum?"
2085
  msgstr ""
2086
 
2087
- #: wppa-album-admin-autosave.php:1311 wppa-album-admin-autosave.php:1592
2088
  msgid "No albums yet."
2089
  msgstr ""
2090
 
2091
- #: wppa-album-admin-autosave.php:1395 wppa-album-admin-autosave.php:1719
2092
  msgid "Collapse subalbums"
2093
  msgstr ""
2094
 
2095
- #: wppa-album-admin-autosave.php:1396 wppa-album-admin-autosave.php:1720
2096
  msgid "Expand subalbums"
2097
  msgstr ""
2098
 
2099
- #: wppa-album-admin-autosave.php:1478
2100
  msgid ""
2101
  "The following albums are ---separate--- and do not show up in the generic "
2102
  "album display"
2103
  msgstr ""
2104
 
2105
- #: wppa-album-admin-autosave.php:1608
2106
  msgid "Search for photos to edit"
2107
  msgstr ""
2108
 
2109
- #: wppa-album-admin-autosave.php:1609
2110
  msgid ""
2111
  "Enter search words seperated by commas. Photos will meet all search words by "
2112
  "their names, descriptions, translated keywords and/or tags."
2113
  msgstr ""
2114
 
2115
- #: wppa-album-admin-autosave.php:1615
2116
  msgid "Any"
2117
  msgstr ""
2118
 
2119
- #: wppa-album-admin-autosave.php:1619
2120
  msgid "Search for"
2121
  msgstr ""
2122
 
2123
- #: wppa-album-admin-autosave.php:1661
2124
  #, php-format
2125
  msgid ""
2126
  "There are <strong>%d</strong> albums and <strong>%d</strong> photos in the "
2127
  "system."
2128
  msgstr ""
2129
 
2130
- #: wppa-album-admin-autosave.php:1662
2131
  #, php-format
2132
  msgid "<strong>%d</strong> photos are pending moderation."
2133
  msgstr ""
2134
 
2135
- #: wppa-album-admin-autosave.php:1663
2136
  #, php-format
2137
  msgid "<strong>%d</strong> photos are scheduled for later publishing."
2138
  msgstr ""
2139
 
2140
- #: wppa-album-admin-autosave.php:1666
2141
  #, php-format
2142
  msgid "The most recently added album is <strong>%s</strong> (%d)."
2143
  msgstr ""
2144
 
2145
- #: wppa-album-admin-autosave.php:1670
2146
  #, php-format
2147
  msgid "The most recently added photo is <strong>%s</strong> (%d)"
2148
  msgstr ""
2149
 
2150
- #: wppa-album-admin-autosave.php:1671
2151
  #, php-format
2152
  msgid "in album <strong>%s</strong> (%d)."
2153
  msgstr ""
2154
 
2155
- #: wppa-album-admin-autosave.php:1793
2156
  #, php-format
2157
  msgid "Unable to move photos to album %s. Album not deleted."
2158
  msgstr ""
2159
 
2160
- #: wppa-album-admin-autosave.php:1814
2161
  #, php-format
2162
  msgid "Time is out after %d photo deletes. Please redo this operation"
2163
  msgstr ""
2164
 
2165
- #: wppa-album-admin-autosave.php:1849
2166
  msgid "Album Deleted."
2167
  msgstr ""
2168
 
2169
- #: wppa-album-admin-autosave.php:1871
2170
  #, php-format
2171
  msgid "auto select max %s random"
2172
  msgstr ""
2173
 
2174
- #: wppa-album-admin-autosave.php:1873
2175
  #, php-format
2176
  msgid "auto select max %s featured"
2177
  msgstr ""
2178
 
2179
- #: wppa-album-admin-autosave.php:1875
2180
  #, php-format
2181
  msgid "max %s most recent added"
2182
  msgstr ""
2183
 
2184
- #: wppa-album-admin-autosave.php:1877
2185
  #, php-format
2186
  msgid "max %s from (grand)child albums"
2187
  msgstr ""
2188
 
2189
- #: wppa-album-admin-autosave.php:1879
2190
  #, php-format
2191
  msgid "max %s most recent from (grand)child albums"
2192
  msgstr ""
2193
 
2194
- #: wppa-album-admin-autosave.php:1883
2195
  msgid "--- random ---"
2196
  msgstr ""
2197
 
2198
- #: wppa-album-admin-autosave.php:1885
2199
  msgid "--- random featured ---"
2200
  msgstr ""
2201
 
2202
- #: wppa-album-admin-autosave.php:1887
2203
  msgid "--- most recent added ---"
2204
  msgstr ""
2205
 
2206
- #: wppa-album-admin-autosave.php:1889
2207
  msgid "--- random from (grand)children ---"
2208
  msgstr ""
2209
 
2210
- #: wppa-album-admin-autosave.php:1891
2211
  msgid "--- most recent from (grand)children ---"
2212
  msgstr ""
2213
 
2214
- #: wppa-album-admin-autosave.php:1903
2215
  msgid "Nameless, filename = "
2216
  msgstr ""
2217
 
2218
- #: wppa-album-admin-autosave.php:1946
2219
  msgid ""
2220
  "You can edit top-level album sequence order here when you set the album "
2221
  "order to \"Order #\" or \"Order # desc\" in Table IV-D1."
2222
  msgstr ""
2223
 
2224
- #: wppa-album-admin-autosave.php:1949
2225
  msgid ""
2226
  "You can edit sub-album sequence order here when you set the album order to "
2227
  "\"Order #\" or \"Order # desc\" in the \"Sub album sort order:\" selection "
2228
  "box above."
2229
  msgstr ""
2230
 
2231
- #: wppa-album-admin-autosave.php:1957
2232
  msgid "Manage album order"
2233
  msgstr ""
2234
 
2235
- #: wppa-album-admin-autosave.php:2063
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2236
  msgid "Id:"
2237
  msgstr ""
2238
 
2239
- #: wppa-album-admin-autosave.php:2064
2240
  msgid "Ord:"
2241
  msgstr ""
2242
 
2243
- #: wppa-album-covers.php:1333 wppa-album-covers.php:1392
2244
- #: wppa-album-covers.php:1400 wppa-album-covers.php:1616
2245
  msgid "View the album"
2246
  msgstr "Se album"
2247
 
2248
- #: wppa-album-covers.php:1353
2249
  msgid "View the cover photo"
2250
  msgid_plural "View the cover photos"
2251
  msgstr[0] "Se forside foto"
2252
  msgstr[1] "Se forside foto's"
2253
 
2254
- #: wppa-album-covers.php:1410
2255
  msgid "View"
2256
  msgstr "Vis"
2257
 
2258
- #: wppa-album-covers.php:1412
2259
  #, php-format
2260
  msgid "%d album"
2261
  msgid_plural "%d albums"
2262
  msgstr[0] ""
2263
  msgstr[1] ""
2264
 
2265
- #: wppa-album-covers.php:1418 wppa-boxes-html.php:1278 wppa-breadcrumb.php:155
2266
  #: wppa-breadcrumb.php:161 wppa-breadcrumb.php:168 wppa-breadcrumb.php:392
2267
  #: wppa-breadcrumb.php:394 wppa-breadcrumb.php:400 wppa-breadcrumb.php:402
2268
  #: wppa-breadcrumb.php:410 wppa-breadcrumb.php:426 wppa-breadcrumb.php:439
2269
- #: wppa-breadcrumb.php:445 wppa-utils.php:1727 wppa-utils.php:2379
2270
  msgid "and"
2271
  msgstr "og"
2272
 
2273
- #: wppa-album-covers.php:1421
2274
  #, php-format
2275
  msgid "%d photo"
2276
  msgid_plural "%d photos"
2277
  msgstr[0] ""
2278
  msgstr[1] ""
2279
 
2280
- #: wppa-album-covers.php:1484
2281
  msgid "New!"
2282
  msgstr "Nyt!"
2283
 
2284
- #: wppa-album-covers.php:1487 wppa-thumbnails.php:1957 wppa-thumbnails.php:1958
2285
  msgid "New"
2286
  msgstr "Ny"
2287
 
2288
- #: wppa-album-covers.php:1725 wppa-boxes-html.php:844 wppa-non-admin.php:739
2289
- #: wppa-settings-autosave.php:2331 wppa-settings-autosave.php:5553
2290
- #: wppa-settings-autosave.php:8281
2291
  msgid "Slideshow"
2292
  msgstr "Slideshow"
2293
 
2294
- #: wppa-album-covers.php:1726
2295
  msgid "Browse photos"
2296
  msgstr "Se fotos"
2297
 
2298
- #: wppa-album-covers.php:1763 wppa-breadcrumb.php:394 wppa-breadcrumb.php:402
2299
  #: wppa-breadcrumb.php:439 wppa-breadcrumb.php:445
2300
  msgid "Category:"
2301
  msgid_plural "Categories:"
@@ -2310,33 +2374,33 @@ msgstr ""
2310
  msgid "Album navigator"
2311
  msgstr ""
2312
 
2313
- #: wppa-album-navigator-widget.php:96 wppa-album-widget.php:323
2314
  msgid "Album selection or Parent album:"
2315
  msgstr ""
2316
 
2317
- #: wppa-album-navigator-widget.php:99 wppa-album-widget.php:326
2318
  msgid "--- all albums ---"
2319
  msgstr ""
2320
 
2321
- #: wppa-album-navigator-widget.php:100 wppa-album-widget.php:327
2322
  msgid "--- all generic albums ---"
2323
  msgstr ""
2324
 
2325
- #: wppa-album-navigator-widget.php:101 wppa-album-widget.php:328
2326
  msgid "--- all separate albums ---"
2327
  msgstr ""
2328
 
2329
- #: wppa-album-navigator-widget.php:102 wppa-common-functions.php:1703
2330
  #: wppa-items.php:436
2331
  msgid "--- owner/public ---"
2332
  msgstr "---ejer/offentlige---"
2333
 
2334
- #: wppa-album-navigator-widget.php:114 wppa-album-widget.php:348
2335
  msgid "Skip \"empty\" albums:"
2336
  msgstr ""
2337
 
2338
- #: wppa-album-navigator-widget.php:116 wppa-album-widget.php:343
2339
- #: wppa-album-widget.php:350 wppa-lasten-widget.php:236
2340
  #: wppa-slideshow-widget.php:206 wppa-slideshow-widget.php:226
2341
  #: wppa-slideshow-widget.php:233 wppa-slideshow-widget.php:240
2342
  #: wppa-slideshow-widget.php:247 wppa-slideshow-widget.php:254
@@ -2344,8 +2408,8 @@ msgstr ""
2344
  msgid "no."
2345
  msgstr ""
2346
 
2347
- #: wppa-album-navigator-widget.php:117 wppa-album-widget.php:344
2348
- #: wppa-album-widget.php:351 wppa-lasten-widget.php:237
2349
  #: wppa-slideshow-widget.php:207 wppa-slideshow-widget.php:227
2350
  #: wppa-slideshow-widget.php:234 wppa-slideshow-widget.php:241
2351
  #: wppa-slideshow-widget.php:248 wppa-slideshow-widget.php:255
@@ -2357,7 +2421,7 @@ msgstr ""
2357
  msgid "WPPA+ Albums"
2358
  msgstr ""
2359
 
2360
- #: wppa-album-widget.php:16 wppa-album-widget.php:313
2361
  msgid "Thumbnail Albums"
2362
  msgstr ""
2363
 
@@ -2366,15 +2430,15 @@ msgstr ""
2366
  msgid "Upload at least %d photos to this album!"
2367
  msgstr ""
2368
 
2369
- #: wppa-album-widget.php:329
2370
  msgid "--- most recently added albums ---"
2371
  msgstr ""
2372
 
2373
- #: wppa-album-widget.php:341
2374
  msgid "Show album names:"
2375
  msgstr ""
2376
 
2377
- #: wppa-album-widget.php:355 wppa-comment-widget.php:120
2378
  #: wppa-featen-widget.php:187 wppa-lasten-widget.php:241
2379
  #: wppa-thumbnail-widget.php:232 wppa-topten-widget.php:392
2380
  msgid ""
@@ -2439,8 +2503,8 @@ msgstr ""
2439
  msgid "Mean value"
2440
  msgstr ""
2441
 
2442
- #: wppa-bestof-widget.php:178 wppa-topten-widget.php:364
2443
- #: wppa-widget-admin.php:256
2444
  msgid "Subtitle:"
2445
  msgstr ""
2446
 
@@ -2456,17 +2520,18 @@ msgstr ""
2456
  msgid "Rating count:"
2457
  msgstr ""
2458
 
2459
- #: wppa-bestof-widget.php:198 wppa-common-functions.php:1685 wppa-items.php:424
2460
- #: wppa-settings-autosave.php:1431 wppa-settings-autosave.php:1780
2461
- #: wppa-settings-autosave.php:1985 wppa-settings-autosave.php:3784
2462
- #: wppa-settings-autosave.php:3798 wppa-settings-autosave.php:3986
2463
- #: wppa-settings-autosave.php:4100 wppa-settings-autosave.php:5627
2464
- #: wppa-settings-autosave.php:6349 wppa-settings-autosave.php:7758
2465
- #: wppa-settings-autosave.php:7977 wppa-settings-autosave.php:8033
2466
- #: wppa-settings-autosave.php:8896 wppa-settings-autosave.php:9053
2467
- #: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
2468
- #: wppa-tinymce-shortcodes.php:613 wppa-upload.php:1528 wppa-watermark.php:519
2469
- #: wppa-widget-admin.php:90 wppa-widget-admin.php:261
 
2470
  msgid "--- none ---"
2471
  msgstr "--- ingen ---"
2472
 
@@ -2495,7 +2560,7 @@ msgid "Photo search results"
2495
  msgstr "Foto søgeresultater"
2496
 
2497
  #: wppa-boxes-html.php:383 wppa-breadcrumb.php:143
2498
- #: wppa-settings-autosave.php:409
2499
  msgid "Albums"
2500
  msgstr "Album"
2501
 
@@ -2508,7 +2573,7 @@ msgid "Category"
2508
  msgstr "Kategori"
2509
 
2510
  #: wppa-boxes-html.php:421 wppa-boxes-html.php:554
2511
- #: wppa-settings-autosave.php:7873 wppa-settings-autosave.php:7884
2512
  msgid "Text"
2513
  msgstr "Tekst"
2514
 
@@ -2522,9 +2587,9 @@ msgstr "CTRL + Klik for at tilføje / fjerne mulighed."
2522
  msgid "Items must meet all selected options."
2523
  msgstr "Elementer skal opfylde alle valgte indstillinger."
2524
 
2525
- #: wppa-boxes-html.php:546 wppa-settings-autosave.php:9157
2526
- #: wppa-settings-autosave.php:9197 wppa-settings-autosave.php:9219
2527
- #: wppa-settings-autosave.php:9265
2528
  msgid "Tag"
2529
  msgstr "Tag"
2530
 
@@ -2545,8 +2610,8 @@ msgstr "Indsend"
2545
  msgid "Super View Photos"
2546
  msgstr "Super View Billeder"
2547
 
2548
- #: wppa-boxes-html.php:836 wppa-settings-autosave.php:425
2549
- #: wppa-settings-autosave.php:4858
2550
  msgid "Thumbnails"
2551
  msgstr "Miniatyrbilder"
2552
 
@@ -2594,7 +2659,7 @@ msgstr "Find!"
2594
  msgid "Social media landing page"
2595
  msgstr "Sociale medier destinationsside"
2596
 
2597
- #: wppa-boxes-html.php:1279 wppa-utils.php:1727
2598
  #, php-format
2599
  msgid "See this image on %s"
2600
  msgstr "Se dette billed p&aring; %s"
@@ -2634,75 +2699,75 @@ msgstr "Del på Pinterest"
2634
  msgid "Comment on Facebook:"
2635
  msgstr "Kommentar på Facebook:"
2636
 
2637
- #: wppa-boxes-html.php:1653 wppa-upload.php:1138
2638
  msgid "Working..."
2639
  msgstr "Arbejder…"
2640
 
2641
- #: wppa-boxes-html.php:1655 wppa-boxes-html.php:1658
2642
- msgid "Delete album"
2643
- msgstr "Slet album"
2644
 
2645
  #: wppa-boxes-html.php:1750
2646
  msgid "Create Album"
2647
  msgstr "Opret album"
2648
 
2649
- #: wppa-boxes-html.php:1796
2650
  msgid "Enter album name."
2651
  msgstr "Indtast albummets navn."
2652
 
2653
- #: wppa-boxes-html.php:1798 wppa-boxes-html.php:2538
2654
  msgid "Don't leave this blank!"
2655
  msgstr "Lad ikke dette tomt!"
2656
 
2657
- #: wppa-boxes-html.php:1818
2658
  msgid "Enter album description"
2659
  msgstr "Indtast album beskrivelse"
2660
 
2661
- #: wppa-boxes-html.php:1840
2662
  msgid "Create album"
2663
  msgstr "Opret album"
2664
 
2665
- #: wppa-boxes-html.php:1900 wppa-boxes-html.php:1913 wppa-functions.php:4351
2666
  msgid "Max uploads reached"
2667
  msgstr "Maks. antal indsendinger er opn&aring;et"
2668
 
2669
- #: wppa-boxes-html.php:1974 wppa-upload.php:134
2670
  msgid "Upload Photo"
2671
  msgstr "Indsend foto"
2672
 
2673
- #: wppa-boxes-html.php:2054
2674
  msgid "Select Photo / Video / Camera"
2675
  msgstr ""
2676
 
2677
- #: wppa-boxes-html.php:2057
2678
  msgid "Select Photo / Camera"
2679
  msgstr ""
2680
 
2681
- #: wppa-boxes-html.php:2062
2682
  msgid "Select Photo / Video"
2683
  msgstr ""
2684
 
2685
- #: wppa-boxes-html.php:2065
2686
  msgid "Select Photo"
2687
  msgstr ""
2688
 
2689
- #: wppa-boxes-html.php:2072
2690
  msgid "Select Photos / Video / Camera"
2691
  msgstr ""
2692
 
2693
- #: wppa-boxes-html.php:2075
2694
  msgid "Select Photos / Camera"
2695
  msgstr ""
2696
 
2697
- #: wppa-boxes-html.php:2080
2698
  msgid "Select Photos / Video"
2699
  msgstr ""
2700
 
2701
- #: wppa-boxes-html.php:2083
2702
  msgid "Select Photos"
2703
  msgstr ""
2704
 
2705
- #: wppa-boxes-html.php:2121
2706
  #, php-format
2707
  msgid "You may upload %d photo"
2708
  msgid_plural ""
@@ -2711,22 +2776,22 @@ msgid_plural ""
2711
  msgstr[0] ""
2712
  msgstr[1] ""
2713
 
2714
- #: wppa-boxes-html.php:2129
2715
  #, php-format
2716
  msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
2717
  msgstr "Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
2718
 
2719
- #: wppa-boxes-html.php:2158 wppa-upload.php:123 wppa-upload.php:211
2720
- #: wppa-upload.php:258 wppa-upload.php:695
2721
  msgid "Apply watermark file:"
2722
  msgstr "Inds&aelig;t vandm&aelig;rke:"
2723
 
2724
- #: wppa-boxes-html.php:2180 wppa-upload.php:128 wppa-upload.php:216
2725
- #: wppa-upload.php:263 wppa-upload.php:699
2726
  msgid "Position:"
2727
  msgstr "Position:"
2728
 
2729
- #: wppa-boxes-html.php:2208
2730
  msgid ""
2731
  "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
2732
  "photoname if available, else the original filename will be used as photo "
@@ -2736,7 +2801,7 @@ msgstr ""
2736
  "som photoname hvis tilgængelig, ellers det oprindelige filnavn vil blive "
2737
  "brugt som foto navn."
2738
 
2739
- #: wppa-boxes-html.php:2213
2740
  msgid ""
2741
  "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
2742
  "available, else the original filename will be used as photo name."
@@ -2745,170 +2810,190 @@ msgstr ""
2745
  "photoname hvis tilgængelig, ellers det oprindelige filnavn vil blive brugt "
2746
  "som foto navn."
2747
 
2748
- #: wppa-boxes-html.php:2218
2749
  msgid ""
2750
  "If you leave this blank, the original filename will be used as photo name."
2751
  msgstr ""
2752
  "Hvis du ikke udfylder dette felt, s&aring; vil filens navn blive brugt som "
2753
  "foto navn"
2754
 
2755
- #: wppa-boxes-html.php:2223 wppa-settings-autosave.php:1719
2756
  msgid "Photo name"
2757
  msgstr ""
2758
 
2759
- #: wppa-boxes-html.php:2241
2760
  msgid "Photo description"
2761
  msgstr ""
2762
 
2763
- #: wppa-boxes-html.php:2269
2764
  msgid "hidden"
2765
  msgstr "skjult"
2766
 
2767
- #: wppa-boxes-html.php:2339
2768
  msgid "Preview tags:"
2769
  msgstr "Eksempel tags:"
2770
 
2771
- #: wppa-boxes-html.php:2354
2772
- msgid "Please select an album and try again"
2773
- msgstr "Vælg et album, og prøv igen"
 
 
 
 
2774
 
2775
- #: wppa-boxes-html.php:2368
2776
  msgid "Upload photo"
2777
  msgstr "Upload foto"
2778
 
2779
- #: wppa-boxes-html.php:2424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2780
  msgid "ERROR: unable to upload files."
2781
  msgstr "FEJL: ude af stand til at uploade filer."
2782
 
2783
- #: wppa-boxes-html.php:2478
2784
- msgid "Edit albuminfo"
2785
- msgstr "Rediger albuminfo"
2786
 
2787
- #: wppa-boxes-html.php:2536
2788
  msgid "Enter album name"
2789
  msgstr "Indtast albummets navn"
2790
 
2791
- #: wppa-boxes-html.php:2558
2792
  msgid "Album description:"
2793
  msgstr "Album beskrivelse:"
2794
 
2795
- #: wppa-boxes-html.php:2612
2796
  msgid "Update album"
2797
  msgstr "Opdater album"
2798
 
2799
- #: wppa-boxes-html.php:2684
2800
  msgid "wrote:"
2801
  msgstr "skrev:"
2802
 
2803
- #: wppa-boxes-html.php:2746
2804
  msgid "Avatar"
2805
  msgstr "Profilbillede"
2806
 
2807
- #: wppa-boxes-html.php:2789 wppa-links.php:826
2808
  msgid "Awaiting moderation"
2809
  msgstr "Venter p&aring; godkendelse"
2810
 
2811
- #: wppa-boxes-html.php:2792
2812
  msgid "Marked as spam"
2813
  msgstr "Markeret som spam"
2814
 
2815
- #: wppa-boxes-html.php:2816
2816
  msgid "Edit!"
2817
  msgstr "Rediger!"
2818
 
2819
- #: wppa-boxes-html.php:2820
2820
  msgid "Send!"
2821
  msgstr "Send"
2822
 
2823
- #: wppa-boxes-html.php:2881
2824
  msgid "Your name:"
2825
  msgstr "Dit navn"
2826
 
2827
- #: wppa-boxes-html.php:2896
2828
  msgid "Your email:"
2829
  msgstr "Din email"
2830
 
2831
- #: wppa-boxes-html.php:2912
2832
  msgid "Your comment:"
2833
  msgstr "Din kommentar"
2834
 
2835
- #: wppa-boxes-html.php:2956
2836
  #, php-format
2837
  msgid "You must <a href=\"%s\">login</a> to enter a comment"
2838
  msgstr "Du skal <a href=\"%s\">logge ind</a> for at indtaste en kommentar"
2839
 
2840
- #: wppa-boxes-html.php:2959
2841
  msgid "You must login to enter a comment"
2842
  msgstr "Du skal logge ind for at indtaste en kommentar"
2843
 
2844
- #: wppa-boxes-html.php:2971 wppa-functions.php:2544 wppa-thumbnails.php:680
2845
  #, php-format
2846
  msgid "%d comment"
2847
  msgid_plural "%d comments"
2848
  msgstr[0] "%d kommentar"
2849
  msgstr[1] "%d kommentarer"
2850
 
2851
- #: wppa-boxes-html.php:2975
2852
  msgid "Leave a comment"
2853
  msgstr "Skriv en kommentar"
2854
 
2855
- #: wppa-boxes-html.php:3072
2856
  msgid "Show IPTC data"
2857
  msgstr "Vis IPTC data"
2858
 
2859
- #: wppa-boxes-html.php:3083
2860
  msgid "Hide IPTC data"
2861
  msgstr "Skjul IPTC data"
2862
 
2863
- #: wppa-boxes-html.php:3131
2864
  msgid "No IPTC data"
2865
  msgstr "Ingen IPTC data"
2866
 
2867
- #: wppa-boxes-html.php:3183
2868
  msgid "Show EXIF data"
2869
  msgstr "Vis EXIF data"
2870
 
2871
- #: wppa-boxes-html.php:3194
2872
  msgid "Hide EXIF data"
2873
  msgstr "Skjul EXIF data"
2874
 
2875
- #: wppa-boxes-html.php:3246
2876
  msgid "No EXIF data"
2877
  msgstr "Ingen EXIF data"
2878
 
2879
- #: wppa-boxes-html.php:3360 wppa-boxes-html.php:3365
2880
  msgid "< Previous"
2881
  msgstr "< Forrige"
2882
 
2883
- #: wppa-boxes-html.php:3371 wppa-boxes-html.php:3376
2884
  msgid "Next >"
2885
  msgstr "Næste >"
2886
 
2887
- #: wppa-boxes-html.php:3478 wppa-boxes-html.php:3557
2888
  msgid "See the authors albums"
2889
  msgstr "Se forfatternes album"
2890
 
2891
- #: wppa-boxes-html.php:3482 wppa-boxes-html.php:3490 wppa-boxes-html.php:3561
2892
  msgid "See the authors photos"
2893
  msgstr "Se forfatternes billeder"
2894
 
2895
- #: wppa-boxes-html.php:3486 wppa-boxes-html.php:3494 wppa-boxes-html.php:3565
2896
  msgid "See all the authors photos"
2897
  msgstr "Se alle forfatternes billeder"
2898
 
2899
- #: wppa-boxes-html.php:3520
2900
  #, php-format
2901
  msgid "Photo by: %s"
2902
  msgstr "Foto af: %s"
2903
 
2904
- #: wppa-boxes-html.php:3523 wppa-boxes-html.php:3586
2905
  #, php-format
2906
  msgid "%d max rating"
2907
  msgid_plural "%d max ratings"
2908
  msgstr[0] ""
2909
  msgstr[1] ""
2910
 
2911
- #: wppa-boxes-html.php:3527 wppa-boxes-html.php:3590 wppa-non-admin.php:903
2912
  #: wppa-topten-widget.php:196 wppa-topten-widget.php:213
2913
  #: wppa-topten-widget.php:249
2914
  #, php-format
@@ -2917,22 +3002,22 @@ msgid_plural "%d votes"
2917
  msgstr[0] ""
2918
  msgstr[1] ""
2919
 
2920
- #: wppa-boxes-html.php:3531
2921
  #, php-format
2922
  msgid "Rating: %4.2f."
2923
  msgstr ""
2924
 
2925
- #: wppa-boxes-html.php:3539
2926
  #, php-format
2927
  msgid "Photo %s not found."
2928
  msgstr "Foto %s ikke fundet."
2929
 
2930
- #: wppa-boxes-html.php:3594
2931
  #, php-format
2932
  msgid "Mean value: %4.2f."
2933
  msgstr "Middelværdi: %4.2f."
2934
 
2935
- #: wppa-boxes-html.php:3941 wppa-photo-admin-autosave.php:196
2936
  msgid "Refresh"
2937
  msgstr "Opdater"
2938
 
@@ -3129,12 +3214,11 @@ msgstr ""
3129
  msgid "Email:"
3130
  msgstr ""
3131
 
3132
- #: wppa-comment-admin.php:80 wppa-utils.php:1032
3133
  msgid "Comment:"
3134
  msgstr ""
3135
 
3136
- #: wppa-comment-admin.php:86 wppa-widget-admin.php:288
3137
- #: wppa-widget-admin.php:375
3138
  msgid "Save Changes"
3139
  msgstr ""
3140
 
@@ -3193,8 +3277,8 @@ msgstr ""
3193
  msgid "Linkpage:"
3194
  msgstr ""
3195
 
3196
- #: wppa-comment-admin.php:231 wppa-settings-autosave.php:503
3197
- #: wppa-settings-autosave.php:8151
3198
  msgid "--- Please select a page ---"
3199
  msgstr ""
3200
 
@@ -3256,7 +3340,7 @@ msgstr ""
3256
  msgid "Save Settings / Perform bulk action"
3257
  msgstr ""
3258
 
3259
- #: wppa-comment-admin.php:309 wppa-comment-admin.php:396 wppa-non-admin.php:744
3260
  msgid "Photo"
3261
  msgstr "Foto"
3262
 
@@ -3264,19 +3348,19 @@ msgstr "Foto"
3264
  msgid "(Album)"
3265
  msgstr ""
3266
 
3267
- #: wppa-comment-admin.php:311 wppa-comment-admin.php:398
3268
- #: wppa-settings-autosave.php:552 wppa-settings-autosave.php:714
3269
- #: wppa-settings-autosave.php:736 wppa-settings-autosave.php:1484
3270
- #: wppa-settings-autosave.php:1505 wppa-settings-autosave.php:3093
3271
- #: wppa-settings-autosave.php:3114 wppa-settings-autosave.php:3438
3272
- #: wppa-settings-autosave.php:3462 wppa-settings-autosave.php:4750
3273
- #: wppa-settings-autosave.php:4771 wppa-settings-autosave.php:4947
3274
- #: wppa-settings-autosave.php:4971 wppa-settings-autosave.php:5977
3275
- #: wppa-settings-autosave.php:6637 wppa-settings-autosave.php:6659
3276
- #: wppa-settings-autosave.php:7389 wppa-settings-autosave.php:7413
3277
- #: wppa-settings-autosave.php:9135 wppa-settings-autosave.php:9156
3278
- #: wppa-settings-autosave.php:9196 wppa-settings-autosave.php:9218
3279
- #: wppa-settings-autosave.php:9264
3280
  msgid "#"
3281
  msgstr ""
3282
 
@@ -3309,7 +3393,7 @@ msgstr ""
3309
  msgid "Reply to your comment on photo: %s on %s"
3310
  msgstr ""
3311
 
3312
- #: wppa-comment-admin.php:366 wppa-functions.php:2337
3313
  msgid "Reply"
3314
  msgstr "Besvar"
3315
 
@@ -3346,91 +3430,87 @@ msgstr ""
3346
  msgid "Comments on Photos"
3347
  msgstr ""
3348
 
3349
- #: wppa-comment-widget.php:73 wppa-non-admin.php:873 wppa-thumbnails.php:498
3350
  msgid "wrote"
3351
  msgstr "skrev"
3352
 
3353
  #: wppa-comment-widget.php:87 wppa-featen-widget.php:137
3354
- #: wppa-lasten-widget.php:148 wppa-non-admin.php:874 wppa-non-admin.php:879
3355
- #: wppa-non-admin.php:884 wppa-non-admin.php:888 wppa-non-admin.php:895
3356
- #: wppa-non-admin.php:905 wppa-potd-widget.php:151
3357
  #: wppa-thumbnail-widget.php:114 wppa-topten-widget.php:257
3358
  msgid "Photo not found"
3359
  msgstr "Foto ikke fundet"
3360
 
3361
- #: wppa-comment-widget.php:93 wppa-non-admin.php:875
3362
  msgid "There are no commented photos (yet)"
3363
  msgstr ""
3364
 
3365
- #: wppa-common-functions.php:113 wppa-common-functions.php:116
3366
- msgid "Default photo album for"
3367
- msgstr "Standard fotoalbum for"
3368
-
3369
- #: wppa-common-functions.php:656 wppa-functions.php:4762
3370
  #, php-format
3371
  msgid "%d second"
3372
  msgid_plural "%d seconds"
3373
  msgstr[0] ""
3374
  msgstr[1] ""
3375
 
3376
- #: wppa-common-functions.php:660 wppa-functions.php:4758
3377
- #: wppa-settings-autosave.php:6482 wppa-settings-autosave.php:6483
3378
  #, php-format
3379
  msgid "%d minute"
3380
  msgid_plural "%d minutes"
3381
  msgstr[0] ""
3382
  msgstr[1] ""
3383
 
3384
- #: wppa-common-functions.php:664 wppa-functions.php:4754
3385
- #: wppa-settings-autosave.php:6484 wppa-settings-autosave.php:7768
3386
  #, php-format
3387
  msgid "%d hour"
3388
  msgid_plural "%d hours"
3389
  msgstr[0] ""
3390
  msgstr[1] ""
3391
 
3392
- #: wppa-common-functions.php:668 wppa-functions.php:4750
3393
- #: wppa-settings-autosave.php:6485 wppa-settings-autosave.php:7769
3394
- #: wppa-settings-autosave.php:7770 wppa-settings-autosave.php:7771
3395
- #: wppa-settings-autosave.php:7772 wppa-settings-autosave.php:7773
3396
- #: wppa-settings-autosave.php:7774 wppa-settings-autosave.php:7776
3397
- #: wppa-settings-autosave.php:7777 wppa-settings-autosave.php:7778
3398
- #: wppa-settings-autosave.php:8956
3399
  #, php-format
3400
  msgid "%d day"
3401
  msgid_plural "%d days"
3402
  msgstr[0] ""
3403
  msgstr[1] ""
3404
 
3405
- #: wppa-common-functions.php:672 wppa-functions.php:4746
3406
- #: wppa-settings-autosave.php:6486 wppa-settings-autosave.php:7775
3407
- #: wppa-settings-autosave.php:7779 wppa-settings-autosave.php:7780
3408
- #: wppa-settings-autosave.php:7781 wppa-settings-autosave.php:8957
3409
  #, php-format
3410
  msgid "%d week"
3411
  msgid_plural "%d weeks"
3412
  msgstr[0] ""
3413
  msgstr[1] ""
3414
 
3415
- #: wppa-common-functions.php:676 wppa-settings-autosave.php:7782
3416
- #: wppa-settings-autosave.php:8958 wppa-settings-autosave.php:8959
3417
- #: wppa-settings-autosave.php:8960 wppa-settings-autosave.php:8961
3418
- #: wppa-settings-autosave.php:8962 wppa-settings-autosave.php:8964
3419
  #, php-format
3420
  msgid "%d month"
3421
  msgid_plural "%d months"
3422
  msgstr[0] ""
3423
  msgstr[1] ""
3424
 
3425
- #: wppa-common-functions.php:679 wppa-settings-autosave.php:8963
3426
- #: wppa-settings-autosave.php:8965
3427
  #, php-format
3428
  msgid "%d year"
3429
  msgid_plural "%d years"
3430
  msgstr[0] ""
3431
  msgstr[1] ""
3432
 
3433
- #: wppa-common-functions.php:1402
3434
  #, php-format
3435
  msgid ""
3436
  "Based on your server memory limit you should not upload images larger then "
@@ -3439,88 +3519,87 @@ msgstr ""
3439
  "Baseret på din server hukommelse grænse bør du ikke uploade billeder større "
3440
  "derefter <strong>%d x %d (% 2.1f MP)</strong>"
3441
 
3442
- #: wppa-common-functions.php:1679
3443
  msgid "- select an album -"
3444
  msgstr "- vælg et album -"
3445
 
3446
- #: wppa-common-functions.php:1691 wppa-items.php:432
3447
  #: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
3448
  #: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
3449
  #: wppa-tagcloud-widget.php:79
3450
  msgid "--- all ---"
3451
  msgstr "--- alle ---"
3452
 
3453
- #: wppa-common-functions.php:1697
3454
  msgid "--- generic ---"
3455
  msgstr "--- generisk ---"
3456
 
3457
- #: wppa-common-functions.php:1714
3458
  msgid "--- multiple see below ---"
3459
  msgstr "--- multipel se nedenfor ---"
3460
 
3461
- #: wppa-common-functions.php:1720
3462
  msgid "--- a selection box ---"
3463
  msgstr "--- et valgboksen ---"
3464
 
3465
- #: wppa-common-functions.php:1759 wppa-items.php:428
3466
- #: wppa-settings-autosave.php:7977 wppa-settings-autosave.php:8033
3467
- #: wppa-upload.php:1529
3468
  msgid "--- separate ---"
3469
  msgstr "--- adskille ---"
3470
 
3471
- #: wppa-common-functions.php:1865
3472
  msgid "Photo id ="
3473
  msgstr "Foto id ="
3474
 
3475
- #: wppa-common-functions.php:1865
3476
  msgid "Value ="
3477
  msgstr "Værdi ="
3478
 
3479
- #: wppa-date-time.php:85 wppa-date-time.php:209
3480
  msgid "Jan"
3481
  msgstr ""
3482
 
3483
- #: wppa-date-time.php:85 wppa-date-time.php:209
3484
  msgid "Feb"
3485
  msgstr ""
3486
 
3487
- #: wppa-date-time.php:85 wppa-date-time.php:209
3488
  msgid "Mar"
3489
  msgstr ""
3490
 
3491
- #: wppa-date-time.php:85 wppa-date-time.php:209
3492
  msgid "Apr"
3493
  msgstr ""
3494
 
3495
- #: wppa-date-time.php:85 wppa-date-time.php:209
3496
  msgid "May"
3497
  msgstr ""
3498
 
3499
- #: wppa-date-time.php:85 wppa-date-time.php:209
3500
  msgid "Jun"
3501
  msgstr ""
3502
 
3503
- #: wppa-date-time.php:85 wppa-date-time.php:209
3504
  msgid "Jul"
3505
  msgstr ""
3506
 
3507
- #: wppa-date-time.php:85 wppa-date-time.php:209
3508
  msgid "Aug"
3509
  msgstr ""
3510
 
3511
- #: wppa-date-time.php:85 wppa-date-time.php:209
3512
  msgid "Sep"
3513
  msgstr ""
3514
 
3515
- #: wppa-date-time.php:85 wppa-date-time.php:209
3516
  msgid "Oct"
3517
  msgstr ""
3518
 
3519
- #: wppa-date-time.php:85 wppa-date-time.php:209
3520
  msgid "Nov"
3521
  msgstr ""
3522
 
3523
- #: wppa-date-time.php:85 wppa-date-time.php:209
3524
  msgid "Dec"
3525
  msgstr ""
3526
 
@@ -3536,182 +3615,182 @@ msgstr ""
3536
  msgid "n.a."
3537
  msgstr "n.a."
3538
 
3539
- #: wppa-exif-iptc-common.php:239 wppa-utils.php:2611
3540
  msgid "Not Defined"
3541
  msgstr "Ikke Defineret"
3542
 
3543
- #: wppa-exif-iptc-common.php:240 wppa-utils.php:2612
3544
  msgid "Manual"
3545
  msgstr "Manual"
3546
 
3547
- #: wppa-exif-iptc-common.php:241 wppa-utils.php:2613
3548
  msgid "Program AE"
3549
  msgstr "Program AE"
3550
 
3551
- #: wppa-exif-iptc-common.php:242 wppa-utils.php:2614
3552
  msgid "Aperture-priority AE"
3553
  msgstr "Bl&aelig;ndeprioriteret AE"
3554
 
3555
- #: wppa-exif-iptc-common.php:243 wppa-utils.php:2615
3556
  msgid "Shutter speed priority AE"
3557
  msgstr "Lukkerhastighedsprioritet AE"
3558
 
3559
- #: wppa-exif-iptc-common.php:244 wppa-utils.php:2616
3560
  msgid "Creative (Slow speed)"
3561
  msgstr "Kreativ (Langsom hastighed)"
3562
 
3563
- #: wppa-exif-iptc-common.php:245 wppa-utils.php:2617
3564
  msgid "Action (High speed)"
3565
  msgstr "Handling (h&oslash;j hastighed)"
3566
 
3567
- #: wppa-exif-iptc-common.php:246 wppa-utils.php:2618
3568
  msgid "Portrait"
3569
  msgstr "Portr&aelig;t"
3570
 
3571
- #: wppa-exif-iptc-common.php:247 wppa-utils.php:2619
3572
  msgid "Landscape"
3573
  msgstr "Landskab"
3574
 
3575
- #: wppa-exif-iptc-common.php:248 wppa-utils.php:2620
3576
  msgid "Bulb"
3577
  msgstr "Bulb"
3578
 
3579
- #: wppa-exif-iptc-common.php:270 wppa-utils.php:2621
3580
  msgid "Average"
3581
  msgstr "gennemsnitlig"
3582
 
3583
- #: wppa-exif-iptc-common.php:271 wppa-utils.php:2622
3584
  msgid "Center-weighted average"
3585
  msgstr "Centerv&aelig;gtet gennemsnit"
3586
 
3587
- #: wppa-exif-iptc-common.php:272 wppa-utils.php:2623
3588
  msgid "Spot"
3589
  msgstr "Spot"
3590
 
3591
- #: wppa-exif-iptc-common.php:273 wppa-utils.php:2624
3592
  msgid "Multi-spot"
3593
  msgstr "Multi-spot"
3594
 
3595
- #: wppa-exif-iptc-common.php:274 wppa-utils.php:2625
3596
  msgid "Multi-segment"
3597
  msgstr "Multi-segment"
3598
 
3599
- #: wppa-exif-iptc-common.php:275 wppa-utils.php:2626
3600
  msgid "Partial"
3601
  msgstr "Delvist"
3602
 
3603
- #: wppa-exif-iptc-common.php:276 wppa-settings-autosave.php:4875
3604
- #: wppa-utils.php:2627
3605
  msgid "Other"
3606
  msgstr "Andet"
3607
 
3608
- #: wppa-exif-iptc-common.php:312 wppa-utils.php:2628
3609
  msgid "No Flash"
3610
  msgstr "Ingen blitz"
3611
 
3612
- #: wppa-exif-iptc-common.php:314 wppa-utils.php:2629
3613
  msgid "Fired"
3614
  msgstr "Afskudt"
3615
 
3616
- #: wppa-exif-iptc-common.php:316 wppa-utils.php:2630
3617
  msgid "Fired, Return not detected"
3618
  msgstr "Afskudt, returnering er ikke opdaget "
3619
 
3620
- #: wppa-exif-iptc-common.php:318 wppa-utils.php:2631
3621
  msgid "Fired, Return detected"
3622
  msgstr "Afskudt, returnering er opdaget "
3623
 
3624
- #: wppa-exif-iptc-common.php:320 wppa-utils.php:2632
3625
  msgid "On, Did not fire"
3626
  msgstr "Tilsluttet, afsk&oslash;d ikke"
3627
 
3628
- #: wppa-exif-iptc-common.php:322 wppa-utils.php:2633
3629
  msgid "On, Fired"
3630
  msgstr "Tilsluttet, afskudt"
3631
 
3632
- #: wppa-exif-iptc-common.php:324 wppa-utils.php:2634
3633
  msgid "On, Return not detected"
3634
  msgstr "Tilsluttet, returnering er ikke opdaget "
3635
 
3636
- #: wppa-exif-iptc-common.php:326 wppa-utils.php:2635
3637
  msgid "On, Return detected"
3638
  msgstr "Tilsluttet, returnering er opdaget "
3639
 
3640
- #: wppa-exif-iptc-common.php:328 wppa-utils.php:2636
3641
  msgid "Off, Did not fire"
3642
  msgstr "Slukket, afsk&oslash;d ikke"
3643
 
3644
- #: wppa-exif-iptc-common.php:330 wppa-utils.php:2637
3645
  msgid "Off, Did not fire, Return not detected"
3646
  msgstr "Slukket, afsk&oslash;d ikke, returnering er ikke opdaget "
3647
 
3648
- #: wppa-exif-iptc-common.php:332 wppa-utils.php:2638
3649
  msgid "Auto, Did not fire"
3650
  msgstr "Automatisk, afsk&oslash;d ikke"
3651
 
3652
- #: wppa-exif-iptc-common.php:334 wppa-utils.php:2639
3653
  msgid "Auto, Fired"
3654
  msgstr "Automatisk, afskudt"
3655
 
3656
- #: wppa-exif-iptc-common.php:336 wppa-utils.php:2640
3657
  msgid "Auto, Fired, Return not detected"
3658
  msgstr "Automatisk, afskudt, returnering er ikke opdaget "
3659
 
3660
- #: wppa-exif-iptc-common.php:338 wppa-utils.php:2641
3661
  msgid "Auto, Fired, Return detected"
3662
  msgstr "Automatisk, afskudt, returnering er opdaget "
3663
 
3664
- #: wppa-exif-iptc-common.php:340 wppa-utils.php:2642
3665
  msgid "No flash function"
3666
  msgstr "Ingen blitz funktion"
3667
 
3668
- #: wppa-exif-iptc-common.php:342 wppa-utils.php:2643
3669
  msgid "Off, No flash function"
3670
  msgstr "Slukket, ingen blitz funktion"
3671
 
3672
- #: wppa-exif-iptc-common.php:344 wppa-utils.php:2644
3673
  msgid "Fired, Red-eye reduction"
3674
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion"
3675
 
3676
- #: wppa-exif-iptc-common.php:346 wppa-utils.php:2645
3677
  msgid "Fired, Red-eye reduction, Return not detected"
3678
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion, returnering er ikke opdaget "
3679
 
3680
- #: wppa-exif-iptc-common.php:348 wppa-utils.php:2646
3681
  msgid "Fired, Red-eye reduction, Return detected"
3682
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3683
 
3684
- #: wppa-exif-iptc-common.php:350 wppa-utils.php:2647
3685
  msgid "On, Red-eye reduction"
3686
  msgstr "Tilstuttet, R&oslash;d-&oslash;je reduktion"
3687
 
3688
- #: wppa-exif-iptc-common.php:352 wppa-utils.php:2648
3689
  msgid "Red-eye reduction, Return not detected"
3690
  msgstr "R&oslash;d-&oslash;je reduktion, returnering er ikke opdaget "
3691
 
3692
- #: wppa-exif-iptc-common.php:354 wppa-utils.php:2649
3693
  msgid "On, Red-eye reduction, Return detected"
3694
  msgstr "Tilstuttet, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3695
 
3696
- #: wppa-exif-iptc-common.php:356 wppa-utils.php:2650
3697
  msgid "Off, Red-eye reduction"
3698
  msgstr "Slukket, R&oslash;d-&oslash;je reduktion"
3699
 
3700
- #: wppa-exif-iptc-common.php:358 wppa-utils.php:2651
3701
  msgid "Auto, Did not fire, Red-eye reduction"
3702
  msgstr "Automatisk, Afsk&oslash;d ikke, R&oslash;d-&oslash;je reduktion"
3703
 
3704
- #: wppa-exif-iptc-common.php:360 wppa-utils.php:2652
3705
  msgid "Auto, Fired, Red-eye reduction"
3706
  msgstr "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion"
3707
 
3708
- #: wppa-exif-iptc-common.php:362 wppa-utils.php:2653
3709
  msgid "Auto, Fired, Red-eye reduction, Return not detected"
3710
  msgstr ""
3711
  "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion, returnering er ikke "
3712
  "opdaget "
3713
 
3714
- #: wppa-exif-iptc-common.php:364 wppa-utils.php:2654
3715
  msgid "Auto, Fired, Red-eye reduction, Return detected"
3716
  msgstr ""
3717
  "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
@@ -3763,7 +3842,7 @@ msgstr ""
3763
  msgid "done."
3764
  msgstr ""
3765
 
3766
- #: wppa-export.php:129 wppa-upload.php:2144
3767
  msgid "photos processed."
3768
  msgstr ""
3769
 
@@ -3816,19 +3895,19 @@ msgstr ""
3816
  msgid "Featured Photos"
3817
  msgstr ""
3818
 
3819
- #: wppa-featen-widget.php:115 wppa-non-admin.php:878
3820
  msgid "View the featured photos"
3821
  msgstr ""
3822
 
3823
- #: wppa-featen-widget.php:146 wppa-non-admin.php:880
3824
  msgid "There are no featured photos (yet)"
3825
  msgstr ""
3826
 
3827
- #: wppa-functions.php:676
3828
  msgid "No related photos found."
3829
  msgstr "Ingen relaterede billeder fundet."
3830
 
3831
- #: wppa-functions.php:1044
3832
  #, php-format
3833
  msgid ""
3834
  "There are %s albums found. Only the first %s will be shown. Please refine "
@@ -3837,81 +3916,82 @@ msgstr ""
3837
  "Der er %s album fundet. Kun den første %s vil blive vist. Venligst forfine "
3838
  "dine søgekriterier."
3839
 
3840
- #: wppa-functions.php:2101 wppa-links.php:775 wppa-links.php:792
3841
- #: wppa-thumbnails.php:625
3842
  msgid "Are you sure you want to remove this photo?"
3843
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
3844
 
3845
- #: wppa-functions.php:2119 wppa-thumbnails.php:607
3846
  msgid "Are you sure you want to add this photo to your zip?"
3847
  msgstr ""
3848
 
3849
- #: wppa-functions.php:2122 wppa-thumbnails.php:610
3850
  msgid "MyChoice"
3851
  msgstr ""
3852
 
3853
- #: wppa-functions.php:2201
3854
  #, php-format
3855
  msgid "%d dislike"
3856
  msgid_plural "%d dislikes"
3857
  msgstr[0] ""
3858
  msgstr[1] ""
3859
 
3860
- #: wppa-functions.php:2203
3861
  msgid "including mine"
3862
  msgstr "herunder minen"
3863
 
3864
- #: wppa-functions.php:2303
3865
  msgid "Comment edited"
3866
  msgstr "Kommentarer redigeret"
3867
 
3868
- #: wppa-functions.php:2309
3869
  msgid "Photo comment"
3870
  msgstr "Foto kommentar"
3871
 
3872
- #: wppa-functions.php:2324
3873
  msgid "Comment on photo:"
3874
  msgstr "Kommentar til billeder"
3875
 
3876
- #: wppa-functions.php:2335
3877
  msgid "wrote on photo"
3878
  msgstr "Se fotos"
3879
 
3880
- #: wppa-functions.php:2339
3881
  msgid "Moderate comment admin"
3882
  msgstr "Godkend kommentar administration"
3883
 
3884
- #: wppa-functions.php:2342 wppa-functions.php:4559 wppa-upload.php:1428
 
3885
  msgid "Moderate manage photo"
3886
  msgstr "Se fotos"
3887
 
3888
- #: wppa-functions.php:2356
3889
  msgid "You receive this email as you are assigned to moderate"
3890
  msgstr "Du modtager denne e-mail, fordi du er sat til at godkende"
3891
 
3892
- #: wppa-functions.php:2368
3893
  msgid "You receive this email as administrator of the site"
3894
  msgstr ""
3895
  "Du modtager denne e-mail, fordi du er administrator p&aring; hjemmesiden"
3896
 
3897
- #: wppa-functions.php:2385
3898
  msgid "You receive this email as uploader of the photo"
3899
  msgstr "Du modtager denne e-mail, fordi du indsendte et foto"
3900
 
3901
- #: wppa-functions.php:2402
3902
  msgid "You receive this email as owner of the album"
3903
  msgstr "Du modtager denne e-mail, fordi du er ejer af albumet"
3904
 
3905
- #: wppa-functions.php:2419
3906
  msgid "You receive this email because you commented this photo earlier."
3907
  msgstr ""
3908
  "Du modtager denne e-mail, fordi du kommenterede dette billede tidligere."
3909
 
3910
- #: wppa-functions.php:2445
3911
  msgid "Comment added"
3912
  msgstr "Kommentar tilføjet"
3913
 
3914
- #: wppa-functions.php:2451
3915
  msgid ""
3916
  "Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the "
3917
  "computation."
@@ -3919,160 +3999,164 @@ msgstr ""
3919
  "Beklager, du gav et forkert svar.\\n\\nPr&oslash;v venligst igen, at "
3920
  "l&oslash;se beregningen."
3921
 
3922
- #: wppa-functions.php:2462
3923
  msgid "Could not process comment.\\nProbably timed out."
3924
  msgstr "Kommentar kunne ikke bearbejdes"
3925
 
3926
- #: wppa-functions.php:2580 wppa-links.php:1497
3927
  msgid "A video can not be printed or downloaded"
3928
  msgstr "En video kan ikke udskrives eller downloades"
3929
 
3930
- #: wppa-functions.php:3027
3931
  msgid "ERROR: Illegal attempt to enter a rating."
3932
  msgstr "FEJL: Ulovlig forsøg på at indtaste en rating."
3933
 
3934
- #: wppa-functions.php:3040
3935
  msgid "ERROR: Illegal attempt to enter a comment."
3936
  msgstr "FEJL: Ulovlig forsøg på at indtaste en kommentar."
3937
 
3938
- #: wppa-functions.php:4186
3939
  msgid "ERROR: Illegal attempt to create an album."
3940
  msgstr "FEJL: Ulovlig forsøg på at skabe et album."
3941
 
3942
- #: wppa-functions.php:4190
3943
  msgid "Wrong captcha, please try again"
3944
  msgstr "Forkert captcha, prøv igen"
3945
 
3946
- #: wppa-functions.php:4204
3947
  #, php-format
3948
  msgid "Album #%s created"
3949
  msgstr "Album #%s oprettet"
3950
 
3951
- #: wppa-functions.php:4210
3952
  msgid "Could not create album"
3953
  msgstr "Kunne ikke oprette album"
3954
 
3955
- #: wppa-functions.php:4221
3956
  msgid "ERROR: Illegal attempt to upload a file."
3957
  msgstr "FEJL: Ulovlig forsøg på at uploade en fil."
3958
 
3959
- #: wppa-functions.php:4261
3960
  msgid "Photo upload"
3961
  msgstr "Foto upload"
3962
 
3963
- #: wppa-functions.php:4262
3964
  #, php-format
3965
  msgid "%d photo successfully uploaded"
3966
  msgid_plural "%d photos successfully uploaded"
3967
  msgstr[0] ""
3968
  msgstr[1] ""
3969
 
3970
- #: wppa-functions.php:4263
3971
  #, php-format
3972
  msgid "%s points added"
3973
  msgstr ""
3974
 
3975
- #: wppa-functions.php:4273
 
 
 
 
3976
  msgid "Upload failed"
3977
  msgstr "Indl&aelig;sning fejlede"
3978
 
3979
- #: wppa-functions.php:4276
3980
  #, php-format
3981
  msgid "%d upload failed"
3982
  msgid_plural "%d uploads failed"
3983
  msgstr[0] ""
3984
  msgstr[1] ""
3985
 
3986
- #: wppa-functions.php:4357
3987
  msgid "Error during upload"
3988
  msgstr "Fejl under upload"
3989
 
3990
- #: wppa-functions.php:4413
3991
  msgid "Could not insert media into db."
3992
  msgstr ""
3993
 
3994
- #: wppa-functions.php:4453
3995
  msgid "Uploaded file is not an image"
3996
  msgstr "Uploaded fil er ikke et billede"
3997
 
3998
- #: wppa-functions.php:4459
3999
  #, php-format
4000
  msgid ""
4001
  "Only gif, jpg and png image files are supported. Returned filetype = %d."
4002
  msgstr ""
4003
  "Kun gif, jpg og png filer underst&oslash;ttes. Den forkerte filtype er %d."
4004
 
4005
- #: wppa-functions.php:4467
4006
  #, php-format
4007
  msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
4008
  msgstr "Uploadede fil er større end den tilladte maksimum på %d x %d pixel."
4009
 
4010
- #: wppa-functions.php:4475
4011
  #, php-format
4012
  msgid "Uploaded file %s already exists in this album."
4013
  msgstr "Uploadet fil %s findes allerede i dette album."
4014
 
4015
- #: wppa-functions.php:4485
4016
  #, php-format
4017
  msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
4018
  msgstr ""
4019
  "Billedet er for stort. Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
4020
 
4021
- #: wppa-functions.php:4518
4022
  msgid "Could not insert photo into db."
4023
  msgstr "Kunne ikke inds&aelig;tte foto i databasen."
4024
 
4025
- #: wppa-functions.php:4555 wppa-upload.php:1424
4026
  #, php-format
4027
  msgid "New photo uploaded: %s"
4028
  msgstr "Nyt foto indsendt: %s"
4029
 
4030
- #: wppa-functions.php:4556 wppa-upload.php:1425
4031
  #, php-format
4032
  msgid "User %1$s uploaded photo %2$s into album %3$s"
4033
  msgstr "Bruger %1$s indsendte foto %2$s ind i album %3$s"
4034
 
4035
- #: wppa-functions.php:4558 wppa-upload.php:1427
4036
  msgid "This upload requires moderation"
4037
  msgstr "Denne indsendelse kr&aelig;ver godkendelse"
4038
 
4039
- #: wppa-functions.php:4562 wppa-upload.php:1431
4040
  msgid "Details:"
4041
  msgstr "Detaljer:"
4042
 
4043
- #: wppa-functions.php:4563 wppa-upload.php:1432 wppa-utils.php:937
4044
- #: wppa-utils.php:949
4045
  msgid "Manage photo"
4046
  msgstr "Se fotos"
4047
 
4048
- #: wppa-functions.php:4743
4049
  msgid "You can upload after"
4050
  msgstr "Du kan indsende efter"
4051
 
4052
- #: wppa-functions.php:4786 wppa-functions.php:4790 wppa-functions.php:4797
4053
- #: wppa-functions.php:4801 wppa-links.php:1101 wppa-non-admin.php:798
4054
- #: wppa-settings-autosave.php:9304 wppa-settings-autosave.php:9316
4055
- #: wppa-settings-autosave.php:9328 wppa-settings-autosave.php:9340
4056
- #: wppa-settings-autosave.php:9352 wppa-settings-autosave.php:9364
4057
- #: wppa-settings-autosave.php:9376 wppa-settings-autosave.php:9388
4058
  msgid "Download"
4059
  msgstr "Download"
4060
 
4061
- #: wppa-functions.php:4845
4062
  msgid "Zoom in"
4063
  msgstr "Zoom ind"
4064
 
4065
- #: wppa-functions.php:4876
4066
  #, php-format
4067
  msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
4068
  msgstr ""
4069
 
4070
- #: wppa-functions.php:4879
4071
  #, php-format
4072
  msgid "You can vote again after %s hours, %s minutes and %s seconds"
4073
  msgstr ""
4074
 
4075
- #: wppa-functions.php:4882
4076
  #, php-format
4077
  msgid "You can vote again after %s minutes and %s seconds"
4078
  msgstr ""
@@ -4153,139 +4237,637 @@ msgstr ""
4153
  msgid "licence."
4154
  msgstr ""
4155
 
4156
- #: wppa-init.php:195
4157
- msgid ""
4158
- "</strong><h3>WP Photo ALbum Plus Error message</h3>This is a multi site "
4159
- "installation. One of the following 3 lines must be entered in wp-config.php:"
4160
  msgstr ""
4161
 
4162
- #: wppa-init.php:196
4163
- msgid ""
4164
- "<br /><br /><b>define( 'WPPA_MULTISITE_INDIVIDUAL', true );</b> <small>// "
4165
- "Multisite WP 3.5 or later with every site its own albums and photos</small>"
4166
  msgstr ""
4167
 
4168
- #: wppa-init.php:197
4169
- msgid ""
4170
- "<br /><b>define( 'WPPA_MULTISITE_BLOGSDIR', true );</b> <small>// Multisite "
4171
- "prior to WP 3.5 with every site its own albums and photos</small>"
4172
  msgstr ""
4173
 
4174
- #: wppa-init.php:198
4175
- msgid ""
4176
- "<br /><b>define( 'WPPA_MULTISITE_GLOBAL', true );</b> <small>// Multisite "
4177
- "with one common set of albums and photos</small>"
4178
  msgstr ""
4179
 
4180
- #: wppa-init.php:199
4181
- msgid ""
4182
- "<br /><br />For more information see: <a href=\"https://wordpress.org/"
4183
- "plugins/wp-photo-album-plus/faq/\">the faq</a>"
4184
  msgstr ""
4185
 
4186
- #: wppa-init.php:200
4187
- msgid ""
4188
- "<br /><br /><em>If you upload photos, they will be placed in the wrong "
4189
- "location and will not be visible for visitors!</em><strong>"
4190
  msgstr ""
4191
 
4192
- #: wppa-init.php:232
4193
  msgid ""
4194
- "The photo index table needs to be rebuilt. Please run <i>Photo Albums -> "
4195
- "Settings</i> admin page <i>Table VIII-A9</i>"
4196
  msgstr ""
4197
 
4198
- #: wppa-init.php:236
4199
  msgid ""
4200
- "The album index table needs to be rebuilt. Please run <i>Photo Albums -> "
4201
- "Settings</i> admin page <i>Table VIII-A8</i>"
4202
  msgstr ""
4203
 
4204
- #: wppa-init.php:240
4205
- msgid ""
4206
- "The avarage ratings need to be recalculated. Please run <i>Photo Albums -> "
4207
- "Settings</i> admin page <i>Table VIII-A5</i>"
4208
  msgstr ""
4209
 
4210
- #: wppa-init.php:243
4211
- msgid "Please finish setting up WP Photo ALbum Plus on"
4212
  msgstr ""
4213
 
4214
- #: wppa-init.php:243
4215
- msgid "this page"
4216
  msgstr ""
4217
 
4218
- #: wppa-init.php:261
4219
- msgid ""
4220
- "</strong>The tags system needs to be converted. Please run <b>Photo Albums -"
4221
- "> Settings</b> admin page <b>Table VIII-B16</b><strong>"
4222
  msgstr ""
4223
 
4224
- #: wppa-init.php:278
4225
- msgid ""
4226
- "</strong>The cats system needs to be converted. Please run <b>Photo Albums -"
4227
- "> Settings</b> admin page <b>Table VIII-B17</b><strong>"
4228
  msgstr ""
4229
 
4230
- #: wppa-items.php:259 wppa-thumbnails.php:1899
4231
- msgid "Gold medal"
4232
- msgstr "Guldmedalje"
4233
-
4234
- #: wppa-items.php:259 wppa-photo-admin-autosave.php:866
4235
- #: wppa-photo-admin-autosave.php:888 wppa-photo-admin-autosave.php:1331
4236
- #: wppa-photo-admin-autosave.php:1448 wppa-photo-admin-autosave.php:1459
4237
- #: wppa-widget-admin.php:140
4238
- msgid "Gold"
4239
  msgstr ""
4240
 
4241
- #: wppa-items.php:260 wppa-thumbnails.php:1900
4242
- msgid "Silver medal"
4243
- msgstr "Sølvmedalje"
4244
-
4245
- #: wppa-items.php:260 wppa-photo-admin-autosave.php:867
4246
- #: wppa-photo-admin-autosave.php:889 wppa-photo-admin-autosave.php:1332
4247
- #: wppa-photo-admin-autosave.php:1449 wppa-photo-admin-autosave.php:1460
4248
- #: wppa-widget-admin.php:141
4249
- msgid "Silver"
4250
  msgstr ""
4251
 
4252
- #: wppa-items.php:261 wppa-thumbnails.php:1901
4253
- msgid "Bronze medal"
4254
- msgstr "Bronzemedalje"
4255
-
4256
- #: wppa-items.php:261 wppa-photo-admin-autosave.php:868
4257
- #: wppa-photo-admin-autosave.php:890 wppa-photo-admin-autosave.php:1333
4258
- #: wppa-photo-admin-autosave.php:1450 wppa-photo-admin-autosave.php:1461
4259
- #: wppa-widget-admin.php:142
4260
- msgid "Bronze"
4261
  msgstr ""
4262
 
4263
- #: wppa-items.php:336 wppa-items.php:535 wppa-settings-autosave.php:3614
4264
- msgid "none"
4265
  msgstr ""
4266
 
4267
- #: wppa-items.php:352
4268
- msgid "Nomen Nescio"
4269
- msgstr ""
 
 
 
4270
 
4271
- #: wppa-items.php:355
4272
- msgid "Anonymus"
 
 
4273
  msgstr ""
4274
 
4275
- #: wppa-items.php:381 wppa-items.php:546 wppa-upload.php:99 wppa-upload.php:104
4276
- msgid "unknown"
4277
  msgstr ""
4278
 
4279
- #: wppa-items.php:440 wppa-items.php:468
4280
- msgid "--- deleted ---"
4281
- msgstr ""
 
 
 
4282
 
4283
- #: wppa-items.php:450
4284
- msgid "All Albums"
 
4285
  msgstr ""
4286
 
4287
- #: wppa-items.php:454
4288
- msgid "My and public albums"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4289
  msgstr ""
4290
 
4291
  #: wppa-lasten-widget.php:12
@@ -4300,11 +4882,11 @@ msgstr ""
4300
  msgid "Last Ten Uploaded Photos"
4301
  msgstr ""
4302
 
4303
- #: wppa-lasten-widget.php:131 wppa-non-admin.php:883
4304
  msgid "View the most recent uploaded photos"
4305
  msgstr ""
4306
 
4307
- #: wppa-lasten-widget.php:155 wppa-non-admin.php:885
4308
  msgid "There are no uploaded photos (yet)"
4309
  msgstr ""
4310
 
@@ -4382,24 +4964,24 @@ msgstr ""
4382
  msgid "Scheduled for %s"
4383
  msgstr ""
4384
 
4385
- #: wppa-links.php:1042 wppa-links.php:1045 wppa-slideshow.php:1062
4386
  msgid "Previous"
4387
  msgstr "Forrige"
4388
 
4389
- #: wppa-links.php:1052 wppa-links.php:1055 wppa-non-admin.php:749
4390
- #: wppa-slideshow.php:1076
4391
  msgid "Next"
4392
  msgstr "N&aelig;ste"
4393
 
4394
- #: wppa-links.php:1101
4395
- msgid "Download album"
4396
  msgstr ""
4397
 
4398
- #: wppa-links.php:1237
4399
  msgid "View thumbnails"
4400
  msgstr ""
4401
 
4402
- #: wppa-links.php:1250
4403
  msgid "View fullsize slideshow"
4404
  msgstr ""
4405
 
@@ -4407,10 +4989,6 @@ msgstr ""
4407
  msgid "You can run only one maintenance procedure at a time"
4408
  msgstr ""
4409
 
4410
- #: wppa-maintenance.php:66 wppa-upload.php:1453
4411
- msgid "Error"
4412
- msgstr ""
4413
-
4414
  #: wppa-maintenance.php:126
4415
  msgid "Orphan photos"
4416
  msgstr ""
@@ -4438,28 +5016,53 @@ msgid "From and To albums are identical"
4438
  msgstr ""
4439
 
4440
  #: wppa-maintenance.php:756 wppa-maintenance.php:772
4441
- #: wppa-photo-admin-autosave.php:1742 wppa-photo-admin-autosave.php:1763
4442
- #: wppa-settings-autosave.php:4497 wppa-setup.php:351
4443
  msgid "Required"
4444
  msgstr ""
4445
 
4446
- #: wppa-maintenance.php:842
 
 
 
 
 
 
4447
  msgid "There are no index items."
4448
  msgstr ""
4449
 
4450
- #: wppa-maintenance.php:855
 
 
 
 
4451
  msgid "There are no error log messages"
4452
  msgstr ""
4453
 
4454
- #: wppa-maintenance.php:923
 
 
 
 
 
4455
  msgid "There are no ratings"
4456
  msgstr ""
4457
 
4458
- #: wppa-maintenance.php:991
 
 
 
 
 
4459
  msgid "There are no active sessions"
4460
  msgstr ""
4461
 
4462
- #: wppa-maintenance.php:1052
 
 
 
 
 
4463
  msgid "There are no comments"
4464
  msgstr ""
4465
 
@@ -4479,15 +5082,15 @@ msgstr ""
4479
  msgid "Select multiple tags or --- all ---:"
4480
  msgstr ""
4481
 
4482
- #: wppa-non-admin.php:404
4483
  msgid "Press f for fullscreen."
4484
  msgstr "Tryk på f for fuldskærm."
4485
 
4486
- #: wppa-non-admin.php:414 wppa-non-admin.php:485
4487
  msgid "Toggle fullscreen"
4488
  msgstr ""
4489
 
4490
- #: wppa-non-admin.php:479
4491
  msgid ""
4492
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
4493
  "dismiss this notice."
@@ -4495,103 +5098,103 @@ msgstr ""
4495
  "Nøgler: f = næste tilstand; q, x = exit; p = forrige, n = næste, s = start / "
4496
  "stop, d = afvise denne meddelelse."
4497
 
4498
- #: wppa-non-admin.php:480
4499
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
4500
  msgstr "Nøgler: f = næste tilstand; q, x = exit; d = afvise denne meddelelse."
4501
 
4502
- #: wppa-non-admin.php:740 wppa-settings-autosave.php:3805
4503
  #: wppa-slideshow.php:241
4504
  msgid "Start"
4505
  msgstr "Start"
4506
 
4507
- #: wppa-non-admin.php:741
4508
  msgid "Stop"
4509
  msgstr "Stop"
4510
 
4511
- #: wppa-non-admin.php:742 wppa-slideshow.php:233
4512
  msgid "Slower"
4513
  msgstr "Langsommere"
4514
 
4515
- #: wppa-non-admin.php:743 wppa-slideshow.php:249
4516
  msgid "Faster"
4517
  msgstr "Hurtigere"
4518
 
4519
- #: wppa-non-admin.php:745
4520
  msgid "of"
4521
  msgstr "af"
4522
 
4523
- #: wppa-non-admin.php:746
4524
  msgid "Previous photo"
4525
  msgstr "Forrige foto"
4526
 
4527
- #: wppa-non-admin.php:747
4528
  msgid "Next photo"
4529
  msgstr "Næste foto"
4530
 
4531
- #: wppa-non-admin.php:748
4532
  msgid "Prev."
4533
  msgstr "Forrige"
4534
 
4535
- #: wppa-non-admin.php:750 wppa-slideshow.php:789 wppa-slideshow.php:803
4536
- #: wppa-slideshow.php:914
4537
  msgid "Average&nbsp;rating"
4538
  msgstr "Bed&oslash;mmelse&nbsp;gennemsnitlig"
4539
 
4540
- #: wppa-non-admin.php:751 wppa-slideshow.php:852 wppa-slideshow.php:885
4541
- #: wppa-slideshow.php:896
4542
  msgid "My&nbsp;rating"
4543
  msgstr "Min&nbsp;bed&oslash;mmelse"
4544
 
4545
- #: wppa-non-admin.php:752
4546
  msgid "Avg."
4547
  msgstr "Gns."
4548
 
4549
- #: wppa-non-admin.php:753
4550
  msgid "Mine"
4551
  msgstr "Mine"
4552
 
4553
- #: wppa-non-admin.php:754
4554
  msgid "You marked this image as inappropriate."
4555
  msgstr "Du markeret billedet som upassende."
4556
 
4557
- #: wppa-non-admin.php:757
4558
  msgid "Please enter your name"
4559
  msgstr "Indtast venligst dit navn."
4560
 
4561
- #: wppa-non-admin.php:758
4562
  msgid "Please enter a valid email address"
4563
  msgstr "Indtast venligst en gyldig e-mail adresse"
4564
 
4565
- #: wppa-non-admin.php:759
4566
  msgid "Please enter a comment"
4567
  msgstr "Indtast venligst en kommentar"
4568
 
4569
- #: wppa-non-admin.php:793
4570
  msgid "Double click to start/stop slideshow running"
4571
  msgstr "Dobbeltklik for at starte / stoppe diasshowet kører"
4572
 
4573
- #: wppa-non-admin.php:889 wppa-photo-admin-autosave.php:265
4574
- #: wppa-potd-widget.php:174
4575
  msgid "By:"
4576
  msgstr ""
4577
 
4578
- #: wppa-non-admin.php:892 wppa-slideshow-widget.php:124
4579
  msgid "No album defined (yet)"
4580
  msgstr ""
4581
 
4582
- #: wppa-non-admin.php:896 wppa-thumbnail-widget.php:121
4583
  msgid "There are no photos (yet)"
4584
  msgstr ""
4585
 
4586
- #: wppa-non-admin.php:899 wppa-upldr-widget.php:90
4587
  msgid "There are too many registered users in the system for this widget"
4588
  msgstr ""
4589
 
4590
- #: wppa-non-admin.php:900 wppa-upldr-widget.php:125 wppa-upldr-widget.php:132
4591
  msgid "Photos uploaded by"
4592
  msgstr ""
4593
 
4594
- #: wppa-non-admin.php:904 wppa-thumbnails.php:690 wppa-thumbnails.php:1475
4595
  #: wppa-topten-widget.php:203 wppa-topten-widget.php:226
4596
  #: wppa-topten-widget.php:236
4597
  #, php-format
@@ -4600,7 +5203,7 @@ msgid_plural "%d views"
4600
  msgstr[0] ""
4601
  msgstr[1] ""
4602
 
4603
- #: wppa-non-admin.php:906 wppa-topten-widget.php:261
4604
  msgid "There are no rated photos (yet)"
4605
  msgstr ""
4606
 
@@ -4638,7 +5241,6 @@ msgid "No photos matching your search criteria."
4638
  msgstr ""
4639
 
4640
  #: wppa-photo-admin-autosave.php:146 wppa-photo-admin-autosave.php:1499
4641
- #: wppa-widget-admin.php:296
4642
  msgid "No photos yet in this album."
4643
  msgstr ""
4644
 
@@ -4826,8 +5428,8 @@ msgstr ""
4826
  msgid "Same tab"
4827
  msgstr ""
4828
 
4829
- #: wppa-photo-admin-autosave.php:436 wppa-settings-autosave.php:4976
4830
- #: wppa-settings-autosave.php:5982
4831
  msgid "New tab"
4832
  msgstr ""
4833
 
@@ -4852,7 +5454,7 @@ msgstr ""
4852
  msgid "Update file"
4853
  msgstr ""
4854
 
4855
- #: wppa-photo-admin-autosave.php:501 wppa-settings-autosave.php:3316
4856
  msgid "Upload"
4857
  msgstr ""
4858
 
@@ -4918,7 +5520,7 @@ msgstr ""
4918
  msgid "Remake thumbnail file"
4919
  msgstr ""
4920
 
4921
- #: wppa-photo-admin-autosave.php:658 wppa-settings-autosave.php:6852
4922
  msgid "Remake"
4923
  msgstr ""
4924
 
@@ -4970,11901 +5572,11632 @@ msgstr ""
4970
  msgid "Update Photo description"
4971
  msgstr ""
4972
 
4973
- #: wppa-photo-admin-autosave.php:823
4974
- msgid "Tags:"
4975
- msgstr ""
4976
-
4977
- #: wppa-photo-admin-autosave.php:831
4978
- msgid "Separate tags with commas."
4979
- msgstr ""
4980
-
4981
- #: wppa-photo-admin-autosave.php:842
4982
- msgid "No tags yet"
4983
- msgstr ""
4984
-
4985
- #: wppa-photo-admin-autosave.php:854
4986
- msgid "Status:"
4987
- msgstr ""
4988
-
4989
- #: wppa-photo-admin-autosave.php:863 wppa-photo-admin-autosave.php:886
4990
- #: wppa-photo-admin-autosave.php:1328 wppa-photo-admin-autosave.php:1445
4991
- #: wppa-photo-admin-autosave.php:1457 wppa-widget-admin.php:138
4992
- msgid "Publish"
4993
- msgstr ""
4994
-
4995
- #: wppa-photo-admin-autosave.php:865 wppa-photo-admin-autosave.php:887
4996
- #: wppa-photo-admin-autosave.php:1330 wppa-photo-admin-autosave.php:1447
4997
- #: wppa-widget-admin.php:139
4998
- msgid "Featured"
4999
- msgstr ""
5000
-
5001
- #: wppa-photo-admin-autosave.php:869 wppa-photo-admin-autosave.php:891
5002
- #: wppa-photo-admin-autosave.php:1334 wppa-photo-admin-autosave.php:1451
5003
- #: wppa-photo-admin-autosave.php:1462
5004
- msgid "Scheduled"
5005
- msgstr ""
5006
-
5007
- #: wppa-photo-admin-autosave.php:870 wppa-photo-admin-autosave.php:892
5008
- #: wppa-photo-admin-autosave.php:1335 wppa-photo-admin-autosave.php:1452
5009
- #: wppa-photo-admin-autosave.php:1463
5010
- msgid "Private"
5011
- msgstr ""
5012
-
5013
- #: wppa-photo-admin-autosave.php:901
5014
- msgid ""
5015
- "Note: Featured photos should have a descriptive name; a name a search engine "
5016
- "will look for!"
5017
- msgstr ""
5018
-
5019
- #: wppa-photo-admin-autosave.php:911
5020
- msgid "Watermark:"
5021
- msgstr ""
5022
-
5023
- #: wppa-photo-admin-autosave.php:918 wppa-photo-admin-autosave.php:931
5024
- msgid "File:"
5025
- msgstr ""
5026
-
5027
- #: wppa-photo-admin-autosave.php:923 wppa-photo-admin-autosave.php:932
5028
- msgid "Pos:"
5029
- msgstr ""
5030
-
5031
- #: wppa-photo-admin-autosave.php:927
5032
- msgid "Apply watermark"
5033
- msgstr ""
5034
-
5035
- #: wppa-photo-admin-autosave.php:927
5036
- msgid "Are you sure? Once applied it can not be removed!"
5037
- msgstr ""
5038
-
5039
- #: wppa-photo-admin-autosave.php:927
5040
- msgid "And I do not know if there is already a watermark on this photo"
5041
- msgstr ""
5042
-
5043
- #: wppa-photo-admin-autosave.php:937
5044
- msgid "Not configured"
5045
- msgstr ""
5046
-
5047
- #: wppa-photo-admin-autosave.php:951
5048
- #, php-format
5049
- msgid "Video %s is not modified yet"
5050
- msgstr ""
5051
-
5052
- #: wppa-photo-admin-autosave.php:954
5053
- #, php-format
5054
- msgid "Photo %s is not modified yet"
5055
- msgstr ""
5056
-
5057
- #: wppa-photo-admin-autosave.php:973
5058
- msgid "Single image shortcode"
5059
- msgstr ""
5060
-
5061
- #: wppa-photo-admin-autosave.php:979
5062
- msgid "Permalink"
5063
- msgstr ""
5064
-
5065
- #: wppa-photo-admin-autosave.php:984
5066
- msgid "Hi resolution url"
5067
- msgstr ""
5068
-
5069
- #: wppa-photo-admin-autosave.php:989
5070
- msgid "Display file url"
5071
- msgstr ""
5072
-
5073
- #: wppa-photo-admin-autosave.php:995
5074
- msgid "Thumbnail file url"
5075
- msgstr ""
5076
-
5077
- #: wppa-photo-admin-autosave.php:1039 wppa-photo-admin-autosave.php:1049
5078
- msgid "Trash"
5079
- msgstr ""
5080
-
5081
- #: wppa-photo-admin-autosave.php:1165
5082
- #, php-format
5083
- msgid "Time is out after processing %d out of %d items."
5084
- msgstr ""
5085
-
5086
- #: wppa-photo-admin-autosave.php:1178
5087
- #, php-format
5088
- msgid "%d photos deleted."
5089
- msgstr ""
5090
-
5091
- #: wppa-photo-admin-autosave.php:1181
5092
- #, php-format
5093
- msgid "%1$s photos moved to album %2$s."
5094
- msgstr ""
5095
-
5096
- #: wppa-photo-admin-autosave.php:1184
5097
- #, php-format
5098
- msgid "%1$s photos copied to album %2$s."
5099
- msgstr ""
5100
-
5101
- #: wppa-photo-admin-autosave.php:1187
5102
- #, php-format
5103
- msgid "Changed status to %1$s on %2$s photos."
5104
- msgstr ""
5105
-
5106
- #: wppa-photo-admin-autosave.php:1190
5107
- #, php-format
5108
- msgid "Changed owner to %1$s on %2$s photos."
5109
- msgstr ""
5110
-
5111
- #: wppa-photo-admin-autosave.php:1193
5112
- #, php-format
5113
- msgid "%d photos processed."
5114
- msgstr ""
5115
-
5116
- #: wppa-photo-admin-autosave.php:1313
5117
- msgid "Move to"
5118
- msgstr ""
5119
-
5120
- #: wppa-photo-admin-autosave.php:1314
5121
- msgid "Copy to"
5122
- msgstr ""
5123
-
5124
- #: wppa-photo-admin-autosave.php:1316
5125
- msgid "Set status to"
5126
- msgstr ""
5127
-
5128
- #: wppa-photo-admin-autosave.php:1319
5129
- msgid "Set owner to"
5130
- msgstr ""
5131
-
5132
- #: wppa-photo-admin-autosave.php:1326
5133
- msgid "- select a status -"
5134
- msgstr ""
5135
-
5136
- #: wppa-photo-admin-autosave.php:1341
5137
- msgid "- select an owner -"
5138
- msgstr ""
5139
-
5140
- #: wppa-photo-admin-autosave.php:1353
5141
- msgid "Doit!"
5142
- msgstr ""
5143
-
5144
- #: wppa-photo-admin-autosave.php:1355
5145
- msgid ""
5146
- "Pressing this button will reload the page after executing the selected action"
5147
- msgstr ""
5148
-
5149
- #: wppa-photo-admin-autosave.php:1362 wppa-photo-admin-autosave.php:1481
5150
- #: wppa-settings-autosave.php:8466
5151
- msgid "Preview"
5152
- msgstr ""
5153
-
5154
- #: wppa-photo-admin-autosave.php:1367 wppa-photo-admin-autosave.php:1486
5155
- msgid "Remark"
5156
- msgstr ""
5157
-
5158
- #: wppa-photo-admin-autosave.php:1504
5159
- #, php-format
5160
- msgid "Page %d is empty, try <a href=\"%s\" >page %d</a>."
5161
- msgstr ""
5162
-
5163
- #: wppa-photo-admin-autosave.php:1614
5164
- msgid ""
5165
- "Setting photo sequence order has only effect if the photo order method is "
5166
- "set to <b>Order#</b>"
5167
- msgstr ""
5168
-
5169
- #: wppa-photo-admin-autosave.php:1673
5170
- msgid "Id: "
5171
- msgstr ""
5172
-
5173
- #: wppa-photo-admin-autosave.php:1674 wppa-settings-autosave.php:429
5174
- msgid "Video"
5175
- msgstr ""
5176
-
5177
- #: wppa-photo-admin-autosave.php:1675 wppa-settings-autosave.php:410
5178
- msgid "Audio"
5179
- msgstr ""
5180
-
5181
- #: wppa-photo-admin-autosave.php:1676
5182
- msgid "Ord: "
5183
- msgstr ""
5184
-
5185
- #: wppa-photo-admin-autosave.php:1689
5186
- msgid "The album is empty."
5187
- msgstr ""
5188
-
5189
- #: wppa-photo-admin-autosave.php:1789
5190
- msgid "Combined"
5191
- msgstr ""
5192
-
5193
- #: wppa-photo-admin-autosave.php:1826
5194
- msgid "Word"
5195
- msgstr ""
5196
-
5197
- #: wppa-photo-admin-autosave.php:1829
5198
- msgid "Count"
5199
- msgstr ""
5200
-
5201
- #: wppa-photo-admin-autosave.php:1881 wppa-settings-autosave.php:6390
5202
- msgid "Tags"
5203
- msgstr ""
5204
-
5205
- #: wppa-photo-admin-autosave.php:2001
5206
- msgid "Send"
5207
- msgstr ""
5208
-
5209
- #: wppa-photo-files.php:144 wppa-photo-files.php:145
5210
- #, php-format
5211
- msgid "ERROR: File %s is not a valid picture file."
5212
- msgstr "FEJL: Fil %s er ikke en gyldig billedfil."
5213
-
5214
- #: wppa-photo-files.php:289 wppa-photo-files.php:290
5215
- msgid "ERROR: Resized or copied image could not be created."
5216
- msgstr "FEJL: Resized eller kopierede billede kunne ikke oprettes."
5217
-
5218
- #: wppa-potd-widget.php:14
5219
- msgid "WPPA+ Photo Of The Day"
5220
- msgstr ""
5221
-
5222
- #: wppa-potd-widget.php:15
5223
- msgid "Photo Of The Day"
5224
- msgstr ""
5225
-
5226
- #: wppa-potd-widget.php:205
5227
- msgid ""
5228
- "You can set the content and the sizes in this widget in the <b>Photo Albums -"
5229
- "> Photo of the day</b> admin page."
5230
- msgstr ""
5231
-
5232
- #: wppa-qr-widget.php:13
5233
- msgid "WPPA+ QR Widget"
5234
- msgstr ""
5235
-
5236
- #: wppa-qr-widget.php:14 wppa-qr-widget.php:32
5237
- msgid "QR Widget"
5238
- msgstr ""
5239
-
5240
- #: wppa-qr-widget.php:95
5241
- msgid ""
5242
- "You can set the sizes and colors in this widget in the <b>Photo Albums -> "
5243
- "Settings</b> admin page."
5244
  msgstr ""
5245
 
5246
- #: wppa-search-widget.php:13
5247
- msgid "WPPA+ Search Photos"
5248
  msgstr ""
5249
 
5250
- #: wppa-search-widget.php:14 wppa-search-widget.php:36
5251
- #: wppa-search-widget.php:78
5252
- msgid "Search Photos"
5253
  msgstr ""
5254
 
5255
- #: wppa-search-widget.php:100
5256
- msgid "Text:"
5257
  msgstr ""
5258
 
5259
- #: wppa-search-widget.php:104
5260
- msgid ""
5261
- "Enter optional text that will appear before the input box. This may contain "
5262
- "HTML so you can change font size and color."
5263
  msgstr ""
5264
 
5265
- #: wppa-search-widget.php:108
5266
- msgid "Enable rootsearch"
 
 
5267
  msgstr ""
5268
 
5269
- #: wppa-search-widget.php:113
5270
- msgid ""
5271
- "If you want the search to be limited to a specific album and its "
5272
- "(grand)children, select the album here."
5273
  msgstr ""
5274
 
5275
- #: wppa-search-widget.php:115
5276
- msgid ""
5277
- "If you select an album here, it will overrule the previous checkbox using "
5278
- "the album as a 'fixed' root."
5279
  msgstr ""
5280
 
5281
- #: wppa-search-widget.php:129
5282
- msgid "Enable subsearch"
 
 
5283
  msgstr ""
5284
 
5285
- #: wppa-search-widget.php:134 wppa-settings-autosave.php:5910
5286
- msgid "Landing page"
5287
  msgstr ""
5288
 
5289
- #: wppa-search-widget.php:143
5290
- msgid "--- Default ---"
5291
  msgstr ""
5292
 
5293
- #: wppa-search-widget.php:186
5294
- msgid "The default page will be created automaticly"
5295
  msgstr ""
5296
 
5297
- #: wppa-settings-autosave.php:143
5298
- msgid "Saved settings restored"
5299
  msgstr ""
5300
 
5301
- #: wppa-settings-autosave.php:146
5302
- msgid "Unable to restore saved settings"
5303
  msgstr ""
5304
 
5305
- #: wppa-settings-autosave.php:152
5306
- msgid "Reset to default settings"
5307
  msgstr ""
5308
 
5309
- #: wppa-settings-autosave.php:155
5310
- msgid "Unable to set defaults"
5311
  msgstr ""
5312
 
5313
- #: wppa-settings-autosave.php:160
5314
  #, php-format
5315
- msgid "Skinfile %s loaded"
5316
  msgstr ""
5317
 
5318
- #: wppa-settings-autosave.php:171 wppa-settings-autosave.php:193
5319
- #: wppa-settings-autosave.php:214
5320
  #, php-format
5321
- msgid "Upload error %s"
5322
  msgstr ""
5323
 
5324
- #: wppa-settings-autosave.php:176
5325
- #, php-format
5326
- msgid "Uploaded file %s is not a .png file"
5327
  msgstr ""
5328
 
5329
- #: wppa-settings-autosave.php:180 wppa-settings-autosave.php:201
5330
- #: wppa-settings-autosave.php:237
5331
- #, php-format
5332
- msgid "Upload of %s done"
5333
  msgstr ""
5334
 
5335
- #: wppa-settings-autosave.php:185 wppa-settings-autosave.php:206
5336
- #: wppa-settings-autosave.php:242
5337
- msgid "No file selected or error on upload"
5338
  msgstr ""
5339
 
5340
- #: wppa-settings-autosave.php:197
5341
- #, php-format
5342
- msgid "Uploaded file %s is not a .ttf file"
5343
  msgstr ""
5344
 
5345
- #: wppa-settings-autosave.php:219
5346
- #, php-format
5347
- msgid "Uploaded file %s is not a valid image file"
5348
  msgstr ""
5349
 
5350
- #: wppa-settings-autosave.php:298
5351
- #, php-format
5352
- msgid ""
5353
- "%s invalid ratings removed. Please run Table VIII-A5: Rerate to fix the "
5354
- "averages."
5355
  msgstr ""
5356
 
5357
- #: wppa-settings-autosave.php:308
5358
  #, php-format
5359
- msgid "%s obsolete settings removed."
5360
  msgstr ""
5361
 
5362
- #: wppa-settings-autosave.php:317
5363
- msgid "WP Photo Album Plus Settings"
 
5364
  msgstr ""
5365
 
5366
- #: wppa-settings-autosave.php:318
5367
- msgid "Database revision:"
 
5368
  msgstr ""
5369
 
5370
- #: wppa-settings-autosave.php:318
5371
- msgid "WP Charset:"
 
5372
  msgstr ""
5373
 
5374
- #: wppa-settings-autosave.php:321
5375
- msgid "Multisite in singlesite mode."
 
5376
  msgstr ""
5377
 
5378
- #: wppa-settings-autosave.php:324
5379
- msgid "Multisite enabled."
 
5380
  msgstr ""
5381
 
5382
- #: wppa-settings-autosave.php:326
5383
- msgid "Blogid ="
 
5384
  msgstr ""
5385
 
5386
- #: wppa-settings-autosave.php:343
5387
- msgid "Please de-activate plugin <i style=\"font-size:14px;\">"
5388
  msgstr ""
5389
 
5390
- #: wppa-settings-autosave.php:343
5391
- msgid ". </i>This plugin will cause wppa+ to function not properly."
5392
  msgstr ""
5393
 
5394
- #: wppa-settings-autosave.php:353
5395
- msgid "Please note that plugin <i style=\"font-size:14px;\">"
5396
  msgstr ""
5397
 
5398
- #: wppa-settings-autosave.php:353
5399
- msgid "</i> can cause wppa+ to function not properly if it is misconfigured."
5400
  msgstr ""
5401
 
5402
- #: wppa-settings-autosave.php:358 wppa-upload.php:93
5403
- msgid ""
5404
- "There is a serious misconfiguration in your servers PHP config. Function "
5405
- "wppa_imagecreatefromjpeg() does not exist. You will encounter problems when "
5406
- "uploading photos and not be able to generate thumbnail images. Ask your "
5407
- "hosting provider to add GD support with a minimal version 1.8."
5408
  msgstr ""
5409
 
5410
- #: wppa-settings-autosave.php:363
5411
- msgid "Rebuilding the Album index needs completion. See Table VIII"
5412
  msgstr ""
5413
 
5414
- #: wppa-settings-autosave.php:364
5415
- msgid "Rebuilding the Photo index needs completion. See Table VIII"
5416
  msgstr ""
5417
 
5418
- #: wppa-settings-autosave.php:366
5419
- msgid "Remove empty albums needs completion. See Table VIII"
 
5420
  msgstr ""
5421
 
5422
- #: wppa-settings-autosave.php:367
5423
- msgid "Applying new photo description needs completion. See Table VIII"
 
5424
  msgstr ""
5425
 
5426
- #: wppa-settings-autosave.php:368
5427
- msgid "Appending to photo description needs completion. See Table VIII"
5428
  msgstr ""
5429
 
5430
- #: wppa-settings-autosave.php:369
5431
- msgid "Removing from photo description needs completion. See Table VIII"
 
5432
  msgstr ""
5433
 
5434
- #: wppa-settings-autosave.php:370
5435
- msgid "Removing file extensions needs completion. See Table VIII"
 
 
5436
  msgstr ""
5437
 
5438
- #: wppa-settings-autosave.php:371
5439
- msgid "Regenerating the Thumbnails needs completion. See Table VIII"
5440
  msgstr ""
5441
 
5442
- #: wppa-settings-autosave.php:372
5443
- msgid "Rerating needs completion. See Table VIII"
5444
  msgstr ""
5445
 
5446
- #: wppa-settings-autosave.php:380
5447
- msgid ""
5448
- "A thumbframe width or height should not be smaller than a thumbnail size. "
5449
- "Please correct the corresponding setting(s) in Table I-C"
5450
  msgstr ""
5451
 
5452
- #: wppa-settings-autosave.php:385
5453
- msgid "Show legenda"
5454
  msgstr ""
5455
 
5456
- #: wppa-settings-autosave.php:387
5457
- msgid "Legenda:"
5458
  msgstr ""
5459
 
5460
- #: wppa-settings-autosave.php:388 wppa-settings-autosave.php:390
5461
- #: wppa-settings-autosave.php:2069 wppa-settings-autosave.php:5657
5462
- msgid "Button"
5463
  msgstr ""
5464
 
5465
- #: wppa-settings-autosave.php:388
5466
- msgid "action that causes page reload."
5467
  msgstr ""
5468
 
5469
- #: wppa-settings-autosave.php:390 wppa-settings-autosave.php:9970
5470
- #: wppa-settings-autosave.php:9989
5471
- msgid "Are you sure?"
5472
  msgstr ""
5473
 
5474
- #: wppa-settings-autosave.php:391
5475
- msgid "action that does not cause page reload."
5476
  msgstr ""
5477
 
5478
- #: wppa-settings-autosave.php:393 wppa-settings-autosave.php:7260
5479
- #: wppa-settings-autosave.php:7287 wppa-settings-autosave.php:8355
5480
- #: wppa-settings-autosave.php:8357 wppa-settings-autosave.php:9646
5481
- #: wppa-settings-autosave.php:9663 wppa-settings-autosave.php:9692
5482
- #: wppa-settings-autosave.php:9710 wppa-settings-autosave.php:9734
5483
- #: wppa-settings-autosave.php:9755 wppa-settings-autosave.php:9775
5484
- #: wppa-settings-autosave.php:9792 wppa-settings-autosave.php:9836
5485
- #: wppa-settings-autosave.php:9889 wppa-settings-autosave.php:9921
5486
- msgid "Setting unmodified"
5487
  msgstr ""
5488
 
5489
- #: wppa-settings-autosave.php:395
5490
- msgid "Update in progress"
5491
- msgstr ""
 
5492
 
5493
- #: wppa-settings-autosave.php:397
5494
- msgid "Setting updated"
5495
- msgstr ""
5496
 
5497
- #: wppa-settings-autosave.php:399
5498
- msgid "Update failed"
5499
  msgstr ""
5500
 
5501
- #: wppa-settings-autosave.php:401
5502
- msgid "Hide this"
5503
  msgstr ""
5504
 
5505
- #: wppa-settings-autosave.php:407
5506
- msgid "System"
 
 
 
 
 
 
5507
  msgstr ""
5508
 
5509
- #: wppa-settings-autosave.php:408
5510
- msgid "Access"
 
 
 
 
 
 
 
 
 
 
 
 
5511
  msgstr ""
5512
 
5513
- #: wppa-settings-autosave.php:412
5514
- msgid "Counts"
5515
  msgstr ""
5516
 
5517
- #: wppa-settings-autosave.php:413
5518
- msgid "Covers"
5519
  msgstr ""
5520
 
5521
- #: wppa-settings-autosave.php:414
5522
- msgid "Layout"
 
 
5523
  msgstr ""
5524
 
5525
- #: wppa-settings-autosave.php:415 wppa-settings-autosave.php:4926
5526
- msgid "Lightbox"
5527
  msgstr ""
5528
 
5529
- #: wppa-settings-autosave.php:416
5530
- msgid "Links"
5531
  msgstr ""
5532
 
5533
- #: wppa-settings-autosave.php:417
5534
- msgid "Metadata"
 
 
5535
  msgstr ""
5536
 
5537
- #: wppa-settings-autosave.php:418
5538
- msgid "Navigation"
 
5539
  msgstr ""
5540
 
5541
- #: wppa-settings-autosave.php:420 wppa-settings-autosave.php:8498
5542
- #: wppa-settings-autosave.php:8543
5543
- msgid "Rating"
5544
  msgstr ""
5545
 
5546
- #: wppa-settings-autosave.php:422
5547
- msgid "Sizes"
 
 
 
5548
  msgstr ""
5549
 
5550
- #: wppa-settings-autosave.php:423
5551
- msgid "Slideshows"
5552
  msgstr ""
5553
 
5554
- #: wppa-settings-autosave.php:424
5555
- msgid "Social Media"
5556
  msgstr ""
5557
 
5558
- #: wppa-settings-autosave.php:426
5559
- msgid "Uploads"
5560
  msgstr ""
5561
 
5562
- #: wppa-settings-autosave.php:427
5563
- msgid "Widgets"
5564
  msgstr ""
5565
 
5566
- #: wppa-settings-autosave.php:428 wppa-settings-autosave.php:8336
5567
- msgid "Watermark"
5568
  msgstr ""
5569
 
5570
- #: wppa-settings-autosave.php:436
5571
- msgid "Click on the banner of a (sub)table to open/close it, or"
5572
  msgstr ""
5573
 
5574
- #: wppa-settings-autosave.php:438
5575
- msgid "Show settings related to:"
5576
  msgstr ""
5577
 
5578
- #: wppa-settings-autosave.php:444
5579
- msgid "and ( optionally ) to:"
5580
  msgstr ""
5581
 
5582
- #: wppa-settings-autosave.php:458
5583
- msgid "Quick setup"
5584
  msgstr ""
5585
 
5586
- #: wppa-settings-autosave.php:460
5587
- msgid "Do a quick initial setup"
 
 
5588
  msgstr ""
5589
 
5590
- #: wppa-settings-autosave.php:461
5591
- msgid "Close quick setup"
 
5592
  msgstr ""
5593
 
5594
- #: wppa-settings-autosave.php:501
5595
- msgid "--- The same post or page ---"
5596
  msgstr ""
5597
 
5598
- #: wppa-settings-autosave.php:532
5599
- msgid "--- No page to link to (yet) ---"
5600
  msgstr ""
5601
 
5602
- #: wppa-settings-autosave.php:537
5603
- msgid "--- Will be auto created ---"
5604
  msgstr ""
5605
 
5606
- #: wppa-settings-autosave.php:544
5607
- msgid "Table O:"
5608
  msgstr ""
5609
 
5610
- #: wppa-settings-autosave.php:544
5611
- msgid "Quick Setup:"
5612
  msgstr ""
5613
 
5614
- #: wppa-settings-autosave.php:545
5615
- msgid "This table enables you to quickly do an inital setup."
5616
  msgstr ""
5617
 
5618
- #: wppa-settings-autosave.php:555 wppa-settings-autosave.php:717
5619
- #: wppa-settings-autosave.php:739 wppa-settings-autosave.php:1487
5620
- #: wppa-settings-autosave.php:1508 wppa-settings-autosave.php:3096
5621
- #: wppa-settings-autosave.php:3465 wppa-settings-autosave.php:4753
5622
- #: wppa-settings-autosave.php:6640 wppa-settings-autosave.php:7416
5623
- #: wppa-settings-autosave.php:9138
5624
- msgid "Setting"
5625
  msgstr ""
5626
 
5627
- #: wppa-settings-autosave.php:556 wppa-settings-autosave.php:718
5628
- #: wppa-settings-autosave.php:740 wppa-settings-autosave.php:1488
5629
- #: wppa-settings-autosave.php:1509 wppa-settings-autosave.php:3097
5630
- #: wppa-settings-autosave.php:3121 wppa-settings-autosave.php:3445
5631
- #: wppa-settings-autosave.php:3466 wppa-settings-autosave.php:4754
5632
- #: wppa-settings-autosave.php:4778 wppa-settings-autosave.php:4954
5633
- #: wppa-settings-autosave.php:4978 wppa-settings-autosave.php:5984
5634
- #: wppa-settings-autosave.php:6642 wppa-settings-autosave.php:6666
5635
- #: wppa-settings-autosave.php:7396 wppa-settings-autosave.php:7417
5636
- #: wppa-settings-autosave.php:9139 wppa-settings-autosave.php:9161
5637
- #: wppa-settings-autosave.php:9201 wppa-settings-autosave.php:9223
5638
- #: wppa-settings-autosave.php:9269
5639
- msgid "Help"
5640
  msgstr ""
5641
 
5642
- #: wppa-settings-autosave.php:567
5643
- msgid ""
5644
- "To quickly setup WPPA+ please answer the following questions. You can alway "
5645
- "change any setting later. <a>Click on me!</a>"
5646
  msgstr ""
5647
 
5648
- #: wppa-settings-autosave.php:569
5649
- msgid "Is your theme <i>responsive</i>?"
5650
  msgstr ""
5651
 
5652
- #: wppa-settings-autosave.php:570
5653
- msgid ""
5654
- "Responsive themes have a layout that varies with the size of the browser "
5655
- "window."
5656
  msgstr ""
5657
 
5658
- #: wppa-settings-autosave.php:571
5659
- msgid ""
5660
- "WPPA+ needs to know this to automaticly adept the width of the display to "
5661
- "the available width on the page."
5662
  msgstr ""
5663
 
5664
- #: wppa-settings-autosave.php:578
5665
- msgid "Do you want to downsize photos during upload?"
5666
  msgstr ""
5667
 
5668
- #: wppa-settings-autosave.php:579
5669
- msgid ""
5670
- "Downsizing photos make them load faster to the visitor, without loosing "
5671
- "display quality"
5672
  msgstr ""
5673
 
5674
- #: wppa-settings-autosave.php:580
5675
- msgid ""
5676
- "If you answer yes, the photos will be downsized to max 1024 x 768 pixels. "
5677
- "You can change this later, if you like"
5678
  msgstr ""
5679
 
5680
- #: wppa-settings-autosave.php:587
5681
- msgid "Do you want to save the original photofiles?"
5682
  msgstr ""
5683
 
5684
- #: wppa-settings-autosave.php:588
5685
- msgid "This will require considerable disk space on the server."
5686
  msgstr ""
5687
 
5688
- #: wppa-settings-autosave.php:589
5689
- msgid ""
5690
- "If you answer yes, you will be able to remove watermarks you applied with "
5691
- "wppa+ in a later stage, redo downsizing to a larger size afterwards, and "
5692
- "supply fullsize images for download."
5693
  msgstr ""
5694
 
5695
- #: wppa-settings-autosave.php:596
5696
- msgid "May visitors upload photos?"
5697
  msgstr ""
5698
 
5699
- #: wppa-settings-autosave.php:597
5700
- msgid ""
5701
- "It is safe to do so, but i will have to do some settings to keep it safe!"
5702
  msgstr ""
5703
 
5704
- #: wppa-settings-autosave.php:598
5705
- msgid ""
5706
- "If you answer yes, i will assume you want to enable logged in users to "
5707
- "upload photos at the front-end of the website and allow them to edit their "
5708
- "photos name and descriptions."
5709
  msgstr ""
5710
 
5711
- #: wppa-settings-autosave.php:599
5712
- msgid ""
5713
- "The photos will be hold for moderation, the admin will get notified by email."
5714
  msgstr ""
5715
 
5716
- #: wppa-settings-autosave.php:600
5717
- msgid ""
5718
- "Each user will get his own album to upload to. These settings can be changed "
5719
- "later."
5720
  msgstr ""
5721
 
5722
- #: wppa-settings-autosave.php:607
5723
- msgid "Do you want the rating system active?"
5724
  msgstr ""
5725
 
5726
- #: wppa-settings-autosave.php:608
5727
- msgid "Enable the rating system and show the votes in the slideshow."
5728
  msgstr ""
5729
 
5730
- #: wppa-settings-autosave.php:609
5731
- msgid "You can configure the details of the rating system later"
5732
  msgstr ""
5733
 
5734
- #: wppa-settings-autosave.php:616
5735
- msgid "Do you want the comment system active?"
5736
  msgstr ""
5737
 
5738
- #: wppa-settings-autosave.php:617
5739
- msgid "Enable the comment system and show the comments in the slideshow."
5740
  msgstr ""
5741
 
5742
- #: wppa-settings-autosave.php:618
5743
- msgid "You can configure the details of the comment system later"
5744
  msgstr ""
5745
 
5746
- #: wppa-settings-autosave.php:625
5747
- msgid "Do you want the social media share buttons displayed?"
5748
  msgstr ""
5749
 
5750
- #: wppa-settings-autosave.php:626
5751
- msgid "Display the social media buttons in the slideshow"
5752
  msgstr ""
5753
 
5754
- #: wppa-settings-autosave.php:627
5755
- msgid ""
5756
- "These buttons share the specific photo rather than the page where it is "
5757
- "displayed on"
5758
  msgstr ""
5759
 
5760
- #: wppa-settings-autosave.php:634
5761
- msgid "Are you going to use IPTC data?"
5762
  msgstr ""
5763
 
5764
- #: wppa-settings-autosave.php:635
5765
- msgid ""
5766
- "IPTC data is information you may have added in a photo manipulation program."
5767
  msgstr ""
5768
 
5769
- #: wppa-settings-autosave.php:636 wppa-settings-autosave.php:645
5770
- msgid ""
5771
- "The information can be displayed in slideshows and in photo descriptions."
5772
  msgstr ""
5773
 
5774
- #: wppa-settings-autosave.php:643
5775
- msgid "Are you going to use EXIF data?"
5776
  msgstr ""
5777
 
5778
- #: wppa-settings-autosave.php:644
5779
- msgid ""
5780
- "EXIF data is information from the camera like model no, focal distance and "
5781
- "aperture used."
5782
  msgstr ""
5783
 
5784
- #: wppa-settings-autosave.php:652
5785
- msgid "Are you going to use GPX data?"
5786
  msgstr ""
5787
 
5788
- #: wppa-settings-autosave.php:653
5789
- msgid ""
5790
- "Some cameras and mobile devices save the geographic location where the photo "
5791
- "is taken."
5792
  msgstr ""
5793
 
5794
- #: wppa-settings-autosave.php:654
5795
- msgid "A Google map can be displayed in slideshows."
 
5796
  msgstr ""
5797
 
5798
- #: wppa-settings-autosave.php:661
5799
- msgid "Are you going to use Fotomoto?"
5800
  msgstr ""
5801
 
5802
- #: wppa-settings-autosave.php:662
5803
- msgid ""
5804
- "<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> is an "
5805
- "on-line print service."
5806
  msgstr ""
5807
 
5808
- #: wppa-settings-autosave.php:663
5809
- msgid "If you answer Yes, you will have to open an account on Fotomoto."
5810
  msgstr ""
5811
 
5812
- #: wppa-settings-autosave.php:670
5813
- msgid "Are you going to add videofiles?"
5814
  msgstr ""
5815
 
5816
- #: wppa-settings-autosave.php:671
5817
- msgid "You can mix videos and photos in any album."
5818
  msgstr ""
5819
 
5820
- #: wppa-settings-autosave.php:672 wppa-settings-autosave.php:681
5821
- #: wppa-settings-autosave.php:690
5822
- msgid "You can configure the details later"
5823
  msgstr ""
5824
 
5825
- #: wppa-settings-autosave.php:679
5826
- msgid "Are you going to add audiofiles?"
5827
  msgstr ""
5828
 
5829
- #: wppa-settings-autosave.php:680
5830
- msgid "You can add audio to photos in any album."
5831
  msgstr ""
5832
 
5833
- #: wppa-settings-autosave.php:688
5834
- msgid "Are you going to upload 3D stereo photos?"
 
5835
  msgstr ""
5836
 
5837
- #: wppa-settings-autosave.php:689
5838
- msgid "You can add l-r and r-l stereo photo pairs."
5839
  msgstr ""
5840
 
5841
- #: wppa-settings-autosave.php:697
5842
- msgid "Done?"
5843
  msgstr ""
5844
 
5845
- #: wppa-settings-autosave.php:698
5846
- msgid "If you are ready answering these questions, select <b>yes</b>"
5847
  msgstr ""
5848
 
5849
- #: wppa-settings-autosave.php:699
5850
- msgid ""
5851
- "You can change any setting later, and be more specific and add a lot of "
5852
- "settings. For now it is enough, go create albums and upload photos!"
5853
  msgstr ""
5854
 
5855
- #: wppa-settings-autosave.php:703
5856
- msgid ""
5857
- "Thank you!. The most important settings are done now. You can refine your "
5858
- "settings, the behaviour and appearance of WPPA+ in the Tables below."
 
 
 
 
5859
  msgstr ""
5860
 
5861
- #: wppa-settings-autosave.php:728
5862
- msgid "Table I:"
 
 
 
 
 
 
5863
  msgstr ""
5864
 
5865
- #: wppa-settings-autosave.php:728
5866
- msgid "Sizes:"
 
 
 
 
 
5867
  msgstr ""
5868
 
5869
- #: wppa-settings-autosave.php:729
5870
- msgid ""
5871
- "This table describes all the sizes and size options (except fontsizes) for "
5872
- "the generation and display of the WPPA+ elements."
 
 
 
 
5873
  msgstr ""
5874
 
5875
- #: wppa-settings-autosave.php:747
5876
- msgid "WPPA+ global system related size settings"
5877
  msgstr ""
5878
 
5879
- #: wppa-settings-autosave.php:749
5880
- msgid "Column Width"
 
 
5881
  msgstr ""
5882
 
5883
- #: wppa-settings-autosave.php:750
5884
- msgid "The width of the main column in your theme's display area."
 
5885
  msgstr ""
5886
 
5887
- #: wppa-settings-autosave.php:751
5888
- msgid "Enter the width of the main column in your theme's display area."
 
5889
  msgstr ""
5890
 
5891
- #: wppa-settings-autosave.php:752
5892
- msgid ""
5893
- "You should set this value correctly to make sure the fullsize images are "
5894
- "properly aligned horizontally."
5895
  msgstr ""
5896
 
5897
- #: wppa-settings-autosave.php:753
5898
- msgid ""
5899
- "You may enter 'auto' for use in themes that have a floating content column."
 
 
 
5900
  msgstr ""
5901
 
5902
- #: wppa-settings-autosave.php:754
5903
- msgid "The use of 'auto' is required for responsive themes."
 
 
5904
  msgstr ""
5905
 
5906
- #: wppa-settings-autosave.php:757 wppa-settings-autosave.php:766
5907
- #: wppa-settings-autosave.php:888 wppa-settings-autosave.php:1050
5908
- #: wppa-settings-autosave.php:1061
5909
- msgid "pixels wide"
5910
  msgstr ""
5911
 
5912
- #: wppa-settings-autosave.php:762
5913
- msgid "Initial Width"
5914
  msgstr ""
5915
 
5916
- #: wppa-settings-autosave.php:763
5917
- msgid "The most often displayed colun width in responsive theme"
5918
  msgstr ""
5919
 
5920
- #: wppa-settings-autosave.php:764
5921
  msgid ""
5922
- "Change this value only if your responsive theme shows initially a wrong "
5923
- "column width."
5924
  msgstr ""
5925
 
5926
- #: wppa-settings-autosave.php:771
5927
- msgid "Resize on Upload"
5928
  msgstr ""
5929
 
5930
- #: wppa-settings-autosave.php:772
5931
- msgid "Indicate if the photos should be resized during upload."
5932
  msgstr ""
5933
 
5934
- #: wppa-settings-autosave.php:773
5935
  msgid ""
5936
- "If you check this item, the size of the photos will be reduced to the "
5937
- "dimension specified in the next item during the upload/import process."
5938
- msgstr ""
5939
-
5940
- #: wppa-settings-autosave.php:774
5941
- msgid "The photos will never be stretched during upload if they are smaller."
5942
  msgstr ""
5943
 
5944
- #: wppa-settings-autosave.php:782
5945
- msgid "Resize to"
5946
  msgstr ""
5947
 
5948
- #: wppa-settings-autosave.php:783
5949
- msgid "Resize photos to fit within a given area."
 
5950
  msgstr ""
5951
 
5952
- #: wppa-settings-autosave.php:784
5953
- msgid "Specify the screensize for the unscaled photos."
5954
  msgstr ""
5955
 
5956
- #: wppa-settings-autosave.php:785
5957
  msgid ""
5958
- "The use of a non-default value is particularly usefull when you make use of "
5959
- "lightbox functionality."
5960
  msgstr ""
5961
 
5962
- #: wppa-settings-autosave.php:787 wppa-settings-autosave.php:809
5963
- #: wppa-settings-autosave.php:820 wppa-settings-autosave.php:829
5964
- #: wppa-settings-autosave.php:874 wppa-settings-autosave.php:920
5965
- #: wppa-settings-autosave.php:943 wppa-settings-autosave.php:950
5966
- #: wppa-settings-autosave.php:969 wppa-settings-autosave.php:990
5967
- #: wppa-settings-autosave.php:1000 wppa-settings-autosave.php:1094
5968
- #: wppa-settings-autosave.php:1128 wppa-settings-autosave.php:1148
5969
- #: wppa-settings-autosave.php:1157 wppa-settings-autosave.php:1168
5970
- #: wppa-settings-autosave.php:1180 wppa-settings-autosave.php:1190
5971
- #: wppa-settings-autosave.php:1200 wppa-settings-autosave.php:1253
5972
- #: wppa-settings-autosave.php:1262 wppa-settings-autosave.php:1273
5973
- #: wppa-settings-autosave.php:1293 wppa-settings-autosave.php:1313
5974
- #: wppa-settings-autosave.php:1333 wppa-settings-autosave.php:1353
5975
- #: wppa-settings-autosave.php:1373 wppa-settings-autosave.php:1393
5976
- #: wppa-settings-autosave.php:1402 wppa-settings-autosave.php:1411
5977
- #: wppa-settings-autosave.php:1444 wppa-settings-autosave.php:1453
5978
- #: wppa-settings-autosave.php:1465 wppa-settings-autosave.php:1474
5979
- #: wppa-settings-autosave.php:2911 wppa-settings-autosave.php:4799
5980
- #: wppa-settings-autosave.php:4816 wppa-settings-autosave.php:4833
5981
- #: wppa-settings-autosave.php:4850 wppa-settings-autosave.php:4867
5982
- #: wppa-settings-autosave.php:4884 wppa-settings-autosave.php:4901
5983
- #: wppa-settings-autosave.php:4918 wppa-settings-autosave.php:4935
5984
- #: wppa-settings-autosave.php:6201 wppa-settings-autosave.php:8869
5985
- #: wppa-settings-autosave.php:9065 wppa-settings-autosave.php:9107
5986
- #: wppa-settings-autosave.php:9125
5987
- msgid "pixels"
5988
  msgstr ""
5989
 
5990
- #: wppa-settings-autosave.php:788
5991
- msgid "Fit within rectangle as set in Table I-B1,2"
 
 
5992
  msgstr ""
5993
 
5994
- #: wppa-settings-autosave.php:795
5995
- msgid "Photocount threshold"
 
 
5996
  msgstr ""
5997
 
5998
- #: wppa-settings-autosave.php:796
5999
- msgid "Number of photos in an album must exceed."
6000
  msgstr ""
6001
 
6002
- #: wppa-settings-autosave.php:797
6003
- msgid ""
6004
- "Photos do not show up in the album unless there are more than this number of "
6005
- "photos in the album. This allows you to have cover photos on an album that "
6006
- "contains only sub albums without seeing them in the list of sub albums. "
6007
- "Usually set to 0 (always show) or 1 (for one cover photo)."
6008
  msgstr ""
6009
 
6010
- #: wppa-settings-autosave.php:799 wppa-settings-autosave.php:838
6011
- #: wppa-settings-autosave.php:1282 wppa-settings-autosave.php:1322
6012
- #: wppa-settings-autosave.php:1342 wppa-settings-autosave.php:1382
6013
- #: wppa-settings-autosave.php:4195 wppa-settings-autosave.php:6126
6014
- #: wppa-settings-autosave.php:7959
6015
- msgid "photos"
6016
  msgstr ""
6017
 
6018
- #: wppa-settings-autosave.php:804
6019
- msgid "Border thickness"
6020
  msgstr ""
6021
 
6022
- #: wppa-settings-autosave.php:805
6023
- msgid "Thickness of wppa+ box borders."
6024
  msgstr ""
6025
 
6026
- #: wppa-settings-autosave.php:806
6027
- msgid ""
6028
- "Enter the thickness for the border of the WPPA+ boxes. A number of 0 means: "
6029
- "no border."
6030
  msgstr ""
6031
 
6032
- #: wppa-settings-autosave.php:807 wppa-settings-autosave.php:817
6033
- msgid "WPPA+ boxes are: the navigation bars and the filmstrip."
6034
  msgstr ""
6035
 
6036
- #: wppa-settings-autosave.php:815
6037
- msgid "Radius of wppa+ box borders."
6038
  msgstr ""
6039
 
6040
- #: wppa-settings-autosave.php:816
6041
- msgid ""
6042
- "Enter the corner radius for the border of the WPPA+ boxes. A number of 0 "
6043
- "means: no rounded corners."
6044
  msgstr ""
6045
 
6046
- #: wppa-settings-autosave.php:818
6047
- msgid "Note that rounded corners are only supported by modern browsers."
 
6048
  msgstr ""
6049
 
6050
- #: wppa-settings-autosave.php:826
6051
- msgid "Distance between wppa+ boxes."
 
 
6052
  msgstr ""
6053
 
6054
- #: wppa-settings-autosave.php:834
6055
- msgid "Related count"
 
6056
  msgstr ""
6057
 
6058
- #: wppa-settings-autosave.php:835
6059
- msgid "The default maximum number of related photos to find."
 
 
6060
  msgstr ""
6061
 
6062
- #: wppa-settings-autosave.php:836
6063
- msgid ""
6064
- "When using shortcodes like [wppa type=\"album\" album=\"#related,desc,23\"][/"
6065
- "wppa], the maximum number is 23. Omitting the number gives the maximum of "
6066
- "this setting."
6067
  msgstr ""
6068
 
6069
- #: wppa-settings-autosave.php:844
6070
- msgid "The maximum number of pagelinks to be displayed."
 
6071
  msgstr ""
6072
 
6073
- #: wppa-settings-autosave.php:847
6074
- msgid "pages"
 
6075
  msgstr ""
6076
 
6077
- #: wppa-settings-autosave.php:852
6078
- msgid "Max file name length"
 
 
 
6079
  msgstr ""
6080
 
6081
- #: wppa-settings-autosave.php:853
6082
- msgid "The max length of a photo file name excluding the extension."
 
6083
  msgstr ""
6084
 
6085
- #: wppa-settings-autosave.php:854 wppa-settings-autosave.php:863
6086
- msgid "A setting of 0 means: unlimited."
6087
  msgstr ""
6088
 
6089
- #: wppa-settings-autosave.php:856 wppa-settings-autosave.php:865
6090
- msgid "chars"
6091
  msgstr ""
6092
 
6093
- #: wppa-settings-autosave.php:861
6094
- msgid "Max photo name length"
6095
  msgstr ""
6096
 
6097
- #: wppa-settings-autosave.php:862
6098
- msgid "The max length of a photo name."
6099
  msgstr ""
6100
 
6101
- #: wppa-settings-autosave.php:871
6102
- msgid "The height of your sticky header."
6103
  msgstr ""
6104
 
6105
- #: wppa-settings-autosave.php:872
6106
- msgid "If your theme has a sticky header, enter its height here."
6107
  msgstr ""
6108
 
6109
- #: wppa-settings-autosave.php:880
6110
- msgid "Slideshow related size settings"
6111
  msgstr ""
6112
 
6113
- #: wppa-settings-autosave.php:882
6114
- msgid "Maximum Width"
6115
  msgstr ""
6116
 
6117
- #: wppa-settings-autosave.php:883
6118
- msgid "The maximum width photos will be displayed in slideshows."
6119
  msgstr ""
6120
 
6121
- #: wppa-settings-autosave.php:884 wppa-settings-autosave.php:895
6122
- msgid ""
6123
- "Enter the largest size in pixels as how you want your photos to be displayed."
6124
  msgstr ""
6125
 
6126
- #: wppa-settings-autosave.php:885
6127
  msgid ""
6128
- "This is usually the same as the Column Width (Table I-A1), but it may differ."
6129
- msgstr ""
6130
-
6131
- #: wppa-settings-autosave.php:893
6132
- msgid "Maximum Height"
6133
  msgstr ""
6134
 
6135
- #: wppa-settings-autosave.php:894
6136
- msgid "The maximum height photos will be displayed in slideshows."
6137
  msgstr ""
6138
 
6139
- #: wppa-settings-autosave.php:896
6140
- msgid ""
6141
- "This setting defines the height of the space reserved for photos in "
6142
- "slideshows."
6143
  msgstr ""
6144
 
6145
- #: wppa-settings-autosave.php:897
6146
- #, php-format
6147
- msgid ""
6148
- "If you change the width of a display by the %%size= command, this value "
6149
- "changes proportionally to match the aspect ratio as defined by this and the "
6150
- "previous setting."
6151
  msgstr ""
6152
 
6153
- #: wppa-settings-autosave.php:899 wppa-settings-autosave.php:1072
6154
- #: wppa-settings-autosave.php:1083
6155
- msgid "pixels high"
6156
  msgstr ""
6157
 
6158
- #: wppa-settings-autosave.php:904
6159
- msgid "Stretch to fit"
6160
  msgstr ""
6161
 
6162
- #: wppa-settings-autosave.php:905
6163
- msgid "Stretch photos that are too small."
6164
  msgstr ""
6165
 
6166
- #: wppa-settings-autosave.php:906
6167
- msgid ""
6168
- "Images will be stretched to the Maximum Size at display time if they are "
6169
- "smaller. Leaving unchecked is recommended. It is better to upload photos "
6170
- "that fit well the sizes you use!"
6171
  msgstr ""
6172
 
6173
- #: wppa-settings-autosave.php:913
6174
- msgid "Slideshow borderwidth"
6175
  msgstr ""
6176
 
6177
- #: wppa-settings-autosave.php:914
6178
- msgid "The width of the border around slideshow images."
6179
  msgstr ""
6180
 
6181
- #: wppa-settings-autosave.php:915
6182
  msgid ""
6183
- "The border is made by the image background being larger than the image "
6184
- "itsself (padding)."
6185
  msgstr ""
6186
 
6187
- #: wppa-settings-autosave.php:916
6188
- msgid ""
6189
- "Additionally there may be a one pixel outline of a different color. See "
6190
- "Table III-A2."
6191
  msgstr ""
6192
 
6193
- #: wppa-settings-autosave.php:917
6194
- msgid "The number you enter here is exclusive the one pixel outline."
6195
  msgstr ""
6196
 
6197
- #: wppa-settings-autosave.php:918
6198
- msgid "If you leave this entry empty, there will be no outline either."
 
6199
  msgstr ""
6200
 
6201
- #: wppa-settings-autosave.php:925
6202
- msgid "Numbar Max"
6203
  msgstr ""
6204
 
6205
- #: wppa-settings-autosave.php:926
6206
- msgid "Maximum numbers to display."
 
6207
  msgstr ""
6208
 
6209
- #: wppa-settings-autosave.php:927
6210
- msgid ""
6211
- "In order to attemt to fit on one line, the numbers will be replaced by dots "
6212
- "- except the current - when there are more than this number of photos in a "
6213
- "slideshow."
6214
  msgstr ""
6215
 
6216
- #: wppa-settings-autosave.php:929
6217
- msgid "numbers"
6218
  msgstr ""
6219
 
6220
- #: wppa-settings-autosave.php:934
6221
- msgid "Share button size"
6222
  msgstr ""
6223
 
6224
- #: wppa-settings-autosave.php:935
6225
- msgid "The size of the social media icons in the Share box"
6226
  msgstr ""
6227
 
6228
- #: wppa-settings-autosave.php:945
6229
- msgid "Mini Treshold"
6230
  msgstr ""
6231
 
6232
- #: wppa-settings-autosave.php:946
6233
- msgid "Show mini text at slideshow smaller then."
6234
  msgstr ""
6235
 
6236
- #: wppa-settings-autosave.php:947
6237
- msgid ""
6238
- "Display Next and Prev. as opposed to Next photo and Previous photo when the "
6239
- "cotainer is smaller than this size."
6240
  msgstr ""
6241
 
6242
- #: wppa-settings-autosave.php:948
6243
- msgid "Special use in responsive themes."
6244
  msgstr ""
6245
 
6246
- #: wppa-settings-autosave.php:956
6247
- msgid "The maximum number of slides in a certain view. 0 means no pagination"
6248
  msgstr ""
6249
 
6250
- #: wppa-settings-autosave.php:959 wppa-settings-autosave.php:978
6251
- msgid "slides"
6252
  msgstr ""
6253
 
6254
- #: wppa-settings-autosave.php:964
6255
- msgid "Filmstrip Thumbnail Size"
6256
  msgstr ""
6257
 
6258
- #: wppa-settings-autosave.php:965
6259
- msgid "The size of the filmstrip images."
6260
  msgstr ""
6261
 
6262
- #: wppa-settings-autosave.php:966 wppa-settings-autosave.php:987
6263
- #: wppa-settings-autosave.php:997 wppa-settings-autosave.php:1187
6264
- #: wppa-settings-autosave.php:1197
6265
- msgid "This size applies to the width or height, whichever is the largest."
6266
  msgstr ""
6267
 
6268
- #: wppa-settings-autosave.php:967 wppa-settings-autosave.php:988
6269
- #: wppa-settings-autosave.php:998
6270
- msgid ""
6271
- "Changing the thumbnail size may result in all thumbnails being regenerated. "
6272
- "this may take a while."
6273
  msgstr ""
6274
 
6275
- #: wppa-settings-autosave.php:975
6276
- msgid "The max number of slides in a slideonly display"
 
6277
  msgstr ""
6278
 
6279
- #: wppa-settings-autosave.php:983
6280
- msgid "Thumbnail photos related size settings"
6281
  msgstr ""
6282
 
6283
- #: wppa-settings-autosave.php:985
6284
- msgid "Thumbnail Size"
6285
  msgstr ""
6286
 
6287
- #: wppa-settings-autosave.php:986
6288
- msgid "The size of the thumbnail images."
6289
  msgstr ""
6290
 
6291
- #: wppa-settings-autosave.php:995
6292
- msgid "Thumbnail Size Alt"
6293
  msgstr ""
6294
 
6295
- #: wppa-settings-autosave.php:996
6296
- msgid "The alternative size of the thumbnail images."
6297
  msgstr ""
6298
 
6299
- #: wppa-settings-autosave.php:1005
6300
- msgid "Thumbnail Aspect"
6301
  msgstr ""
6302
 
6303
- #: wppa-settings-autosave.php:1006
6304
- msgid "Aspect ration of thumbnail image"
6305
  msgstr ""
6306
 
6307
- #: wppa-settings-autosave.php:1010
6308
- msgid "--- same as fullsize ---"
6309
  msgstr ""
6310
 
6311
- #: wppa-settings-autosave.php:1011
6312
- msgid "--- square clipped ---"
6313
  msgstr ""
6314
 
6315
- #: wppa-settings-autosave.php:1012
6316
- msgid "4:5 landscape clipped"
6317
  msgstr ""
6318
 
6319
- #: wppa-settings-autosave.php:1013
6320
- msgid "3:4 landscape clipped"
6321
  msgstr ""
6322
 
6323
- #: wppa-settings-autosave.php:1014
6324
- msgid "2:3 landscape clipped"
6325
  msgstr ""
6326
 
6327
- #: wppa-settings-autosave.php:1015
6328
- msgid "9:16 landscape clipped"
6329
  msgstr ""
6330
 
6331
- #: wppa-settings-autosave.php:1016
6332
- msgid "1:2 landscape clipped"
6333
  msgstr ""
6334
 
6335
- #: wppa-settings-autosave.php:1017
6336
- msgid "--- square padded ---"
6337
  msgstr ""
6338
 
6339
- #: wppa-settings-autosave.php:1018
6340
- msgid "4:5 landscape padded"
6341
  msgstr ""
6342
 
6343
- #: wppa-settings-autosave.php:1019
6344
- msgid "3:4 landscape padded"
6345
  msgstr ""
6346
 
6347
- #: wppa-settings-autosave.php:1020
6348
- msgid "2:3 landscape padded"
6349
  msgstr ""
6350
 
6351
- #: wppa-settings-autosave.php:1021
6352
- msgid "9:16 landscape padded"
 
 
6353
  msgstr ""
6354
 
6355
- #: wppa-settings-autosave.php:1022
6356
- msgid "1:2 landscape padded"
6357
  msgstr ""
6358
 
6359
- #: wppa-settings-autosave.php:1044
6360
- msgid "Thumbframe width"
 
 
6361
  msgstr ""
6362
 
6363
- #: wppa-settings-autosave.php:1045
6364
- msgid "The width of the thumbnail frame."
 
 
6365
  msgstr ""
6366
 
6367
- #: wppa-settings-autosave.php:1046 wppa-settings-autosave.php:1057
6368
- msgid "Set the width of the thumbnail frame."
6369
  msgstr ""
6370
 
6371
- #: wppa-settings-autosave.php:1047 wppa-settings-autosave.php:1058
6372
- #: wppa-settings-autosave.php:1069 wppa-settings-autosave.php:1080
6373
- #: wppa-settings-autosave.php:1091
6374
- msgid "Set width, height and spacing for the thumbnail frames."
6375
  msgstr ""
6376
 
6377
- #: wppa-settings-autosave.php:1048 wppa-settings-autosave.php:1059
6378
- #: wppa-settings-autosave.php:1070 wppa-settings-autosave.php:1081
6379
- #: wppa-settings-autosave.php:1092
6380
  msgid ""
6381
- "These sizes should be large enough for a thumbnail image and - optionally - "
6382
- "the text under it."
6383
  msgstr ""
6384
 
6385
- #: wppa-settings-autosave.php:1055
6386
- msgid "Thumbframe width Alt"
6387
  msgstr ""
6388
 
6389
- #: wppa-settings-autosave.php:1056
6390
- msgid "The width of the alternative thumbnail frame."
6391
  msgstr ""
6392
 
6393
- #: wppa-settings-autosave.php:1066
6394
- msgid "Thumbframe height"
 
 
 
6395
  msgstr ""
6396
 
6397
- #: wppa-settings-autosave.php:1067
6398
- msgid "The height of the thumbnail frame."
6399
  msgstr ""
6400
 
6401
- #: wppa-settings-autosave.php:1068 wppa-settings-autosave.php:1079
6402
- msgid "Set the height of the thumbnail frame."
 
6403
  msgstr ""
6404
 
6405
- #: wppa-settings-autosave.php:1077
6406
- msgid "Thumbframe height Alt"
 
 
 
6407
  msgstr ""
6408
 
6409
- #: wppa-settings-autosave.php:1078
6410
- msgid "The height of the alternative thumbnail frame."
 
6411
  msgstr ""
6412
 
6413
- #: wppa-settings-autosave.php:1088
6414
- msgid "Thumbnail spacing"
 
 
6415
  msgstr ""
6416
 
6417
- #: wppa-settings-autosave.php:1089
6418
- msgid "The spacing between adjacent thumbnail frames."
6419
  msgstr ""
6420
 
6421
- #: wppa-settings-autosave.php:1090
6422
- msgid "Set the minimal spacing between the adjacent thumbnail frames"
6423
  msgstr ""
6424
 
6425
- #: wppa-settings-autosave.php:1099
6426
- msgid "Auto spacing"
6427
  msgstr ""
6428
 
6429
- #: wppa-settings-autosave.php:1100
6430
- msgid "Space the thumbnail frames automatic."
6431
  msgstr ""
6432
 
6433
- #: wppa-settings-autosave.php:1101
6434
- msgid ""
6435
- "If you check this box, the thumbnail images will be evenly distributed over "
6436
- "the available width."
6437
  msgstr ""
6438
 
6439
- #: wppa-settings-autosave.php:1102
6440
- msgid ""
6441
- "In this case, the thumbnail spacing value (setting I-9) will be regarded as "
6442
- "a minimum value."
6443
  msgstr ""
6444
 
6445
- #: wppa-settings-autosave.php:1109 wppa-settings-autosave.php:1216
6446
- msgid "Page size"
6447
  msgstr ""
6448
 
6449
- #: wppa-settings-autosave.php:1110
6450
- msgid "Max number of thumbnails per page."
6451
  msgstr ""
6452
 
6453
- #: wppa-settings-autosave.php:1111
6454
  msgid ""
6455
- "Enter the maximum number of thumbnail images per page. A value of 0 "
6456
- "indicates no pagination."
6457
  msgstr ""
6458
 
6459
- #: wppa-settings-autosave.php:1113 wppa-settings-autosave.php:5728
6460
- #: wppa-settings-autosave.php:5761 wppa-settings-autosave.php:5858
6461
- #: wppa-widget-admin.php:279
6462
- msgid "thumbnails"
6463
  msgstr ""
6464
 
6465
- #: wppa-settings-autosave.php:1119
6466
- msgid "The size of the thumbnail popup images."
 
6467
  msgstr ""
6468
 
6469
- #: wppa-settings-autosave.php:1120
6470
  msgid ""
6471
- "Enter the size of the popup images. This size should be larger than the "
6472
- "thumbnail size."
6473
  msgstr ""
6474
 
6475
- #: wppa-settings-autosave.php:1121
6476
- msgid "This size should also be at least the cover image size."
6477
  msgstr ""
6478
 
6479
- #: wppa-settings-autosave.php:1122
6480
  msgid ""
6481
- "Changing the popup size may result in all thumbnails being regenerated. this "
6482
- "may take a while."
6483
  msgstr ""
6484
 
6485
- #: wppa-settings-autosave.php:1123
6486
- msgid ""
6487
- "Although this setting has only visual effect if \"Thumb popup\" (Table IV-"
6488
- "C8) is checked,"
6489
  msgstr ""
6490
 
6491
- #: wppa-settings-autosave.php:1124
6492
  msgid ""
6493
- "the value must be right as it is the physical size of the thumbnail and "
6494
- "coverphoto images."
6495
- msgstr ""
6496
-
6497
- #: wppa-settings-autosave.php:1131
6498
- msgid "Use thumbs if fit"
6499
  msgstr ""
6500
 
6501
- #: wppa-settings-autosave.php:1132
6502
- msgid "Use the thumbnail image files if they are large enough."
6503
  msgstr ""
6504
 
6505
- #: wppa-settings-autosave.php:1133
6506
- msgid "This setting speeds up page loading for small photos."
6507
  msgstr ""
6508
 
6509
- #: wppa-settings-autosave.php:1134
6510
  msgid ""
6511
- "Do NOT use this when your thumbnails have a forced aspect ratio (when Table "
6512
- "I-C2 is set to anything different from --- same as fullsize ---)"
6513
  msgstr ""
6514
 
6515
- #: wppa-settings-autosave.php:1141
6516
- msgid "Album cover related size settings"
6517
  msgstr ""
6518
 
6519
- #: wppa-settings-autosave.php:1144
6520
- msgid "Maximum width for a album cover display."
6521
  msgstr ""
6522
 
6523
- #: wppa-settings-autosave.php:1145
6524
- msgid ""
6525
- "Display covers in 2 or more columns if the display area is wider than the "
6526
- "given width."
6527
  msgstr ""
6528
 
6529
- #: wppa-settings-autosave.php:1146
6530
- msgid ""
6531
- "This also applies for 'thumbnails as covers', and will NOT apply to single "
6532
- "items."
6533
  msgstr ""
6534
 
6535
- #: wppa-settings-autosave.php:1153
6536
- msgid "Min Cover height"
6537
  msgstr ""
6538
 
6539
- #: wppa-settings-autosave.php:1154
6540
- msgid "Minimal height of an album cover."
6541
  msgstr ""
6542
 
6543
- #: wppa-settings-autosave.php:1155
6544
- msgid ""
6545
- "If you use this setting to make the albums the same height and you are not "
6546
- "satisfied about the lay-out, try increasing the value in the next setting"
6547
  msgstr ""
6548
 
6549
- #: wppa-settings-autosave.php:1162
6550
- msgid "Min Text frame height"
6551
  msgstr ""
6552
 
6553
- #: wppa-settings-autosave.php:1163
6554
- msgid "The minimal cover text frame height incl header."
6555
  msgstr ""
6556
 
6557
- #: wppa-settings-autosave.php:1164
6558
- msgid ""
6559
- "The height starting with the album title up to and including the view- and "
6560
- "the slideshow- links."
6561
  msgstr ""
6562
 
6563
- #: wppa-settings-autosave.php:1165
6564
  msgid ""
6565
- "This setting enables you to give the album covers the same height while the "
6566
- "title does not need to fit on one line."
6567
- msgstr ""
6568
-
6569
- #: wppa-settings-autosave.php:1166
6570
- msgid "This is the recommended setting to line-up your covers!"
6571
  msgstr ""
6572
 
6573
- #: wppa-settings-autosave.php:1173
6574
- msgid "Min Description height"
 
 
6575
  msgstr ""
6576
 
6577
- #: wppa-settings-autosave.php:1174
6578
- msgid "The minimal height of the album description text frame."
6579
  msgstr ""
6580
 
6581
- #: wppa-settings-autosave.php:1175
6582
- msgid "The minimal height of the description field in an album cover display."
6583
  msgstr ""
6584
 
6585
- #: wppa-settings-autosave.php:1176
6586
  msgid ""
6587
- "This setting enables you to give the album covers the same height provided "
6588
- "that the cover images are equally sized and the titles fit on one line."
6589
  msgstr ""
6590
 
6591
- #: wppa-settings-autosave.php:1177
6592
- msgid ""
6593
- "To force the coverphotos have equal heights, tick the box in Table I-D7."
6594
  msgstr ""
6595
 
6596
- #: wppa-settings-autosave.php:1178
6597
- msgid ""
6598
- "You may need this setting if changing the previous setting is not sufficient "
6599
- "to line-up the covers."
6600
  msgstr ""
6601
 
6602
- #: wppa-settings-autosave.php:1185
6603
- msgid "Coverphoto size"
6604
  msgstr ""
6605
 
6606
- #: wppa-settings-autosave.php:1186
6607
- msgid "The size of the coverphoto."
6608
  msgstr ""
6609
 
6610
- #: wppa-settings-autosave.php:1188 wppa-settings-autosave.php:1198
6611
  msgid ""
6612
- "Changing the coverphoto size may result in all thumbnails being regenerated. "
6613
- "this may take a while."
6614
- msgstr ""
6615
-
6616
- #: wppa-settings-autosave.php:1195
6617
- msgid "Coverphoto size multi"
6618
  msgstr ""
6619
 
6620
- #: wppa-settings-autosave.php:1196
6621
- msgid "The size of coverphotos if more than one."
 
6622
  msgstr ""
6623
 
6624
- #: wppa-settings-autosave.php:1205
6625
- msgid "Size is height"
6626
  msgstr ""
6627
 
6628
- #: wppa-settings-autosave.php:1206
6629
- msgid "The size of the coverphoto is the height of it."
6630
  msgstr ""
6631
 
6632
- #: wppa-settings-autosave.php:1207
6633
- msgid ""
6634
- "If set: the previous setting is the height, if unset: the largest of width "
6635
- "and height."
6636
  msgstr ""
6637
 
6638
- #: wppa-settings-autosave.php:1208
6639
  msgid ""
6640
- "This setting applies for coverphoto position top or bottom only (Table IV-"
6641
- "D3)."
6642
  msgstr ""
6643
 
6644
- #: wppa-settings-autosave.php:1209
6645
- msgid "This makes it easyer to make the covers of equal height."
6646
  msgstr ""
6647
 
6648
- #: wppa-settings-autosave.php:1217
6649
- msgid "Max number of covers per page."
6650
  msgstr ""
6651
 
6652
- #: wppa-settings-autosave.php:1218
6653
  msgid ""
6654
- "Enter the maximum number of album covers per page. A value of 0 indicates no "
6655
- "pagination."
6656
  msgstr ""
6657
 
6658
- #: wppa-settings-autosave.php:1220
6659
- msgid "covers"
6660
  msgstr ""
6661
 
6662
- #: wppa-settings-autosave.php:1225
6663
- msgid "Rating and comment related size settings"
6664
  msgstr ""
6665
 
6666
- #: wppa-settings-autosave.php:1227
6667
- msgid "Rating size"
6668
  msgstr ""
6669
 
6670
- #: wppa-settings-autosave.php:1228
6671
- msgid "Select the number of voting stars."
6672
  msgstr ""
6673
 
6674
- #: wppa-settings-autosave.php:1231
6675
- msgid "Standard: 5 stars"
 
 
6676
  msgstr ""
6677
 
6678
- #: wppa-settings-autosave.php:1231
6679
- msgid "Extended: 10 stars"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6680
  msgstr ""
6681
 
6682
- #: wppa-settings-autosave.php:1231
6683
- msgid "One button vote"
6684
  msgstr ""
6685
 
6686
- #: wppa-settings-autosave.php:1238
6687
- msgid "Display precision"
6688
  msgstr ""
6689
 
6690
- #: wppa-settings-autosave.php:1239
6691
- msgid "Select the desired rating display precision."
6692
  msgstr ""
6693
 
6694
- #: wppa-settings-autosave.php:1242
6695
- msgid "decimal places"
 
 
 
 
6696
  msgstr ""
6697
 
6698
- #: wppa-settings-autosave.php:1250
6699
- msgid "Size of Avatar images."
 
 
 
 
6700
  msgstr ""
6701
 
6702
- #: wppa-settings-autosave.php:1251
6703
- msgid "The size of the square avatar; must be > 0 and < 256"
6704
  msgstr ""
6705
 
6706
- #: wppa-settings-autosave.php:1258
6707
- msgid "Rating space"
6708
  msgstr ""
6709
 
6710
- #: wppa-settings-autosave.php:1259
6711
- msgid "Space between avg and my rating stars"
 
 
6712
  msgstr ""
6713
 
6714
- #: wppa-settings-autosave.php:1267
6715
- msgid "Widget related size settings"
6716
  msgstr ""
6717
 
6718
- #: wppa-settings-autosave.php:1269
6719
- msgid "Widget width"
6720
  msgstr ""
6721
 
6722
- #: wppa-settings-autosave.php:1270
6723
- msgid "The useable width within widgets."
 
 
6724
  msgstr ""
6725
 
6726
- #: wppa-settings-autosave.php:1271
6727
- msgid ""
6728
- "Widget width for photo of the day, general purpose (default), slideshow "
6729
- "(default) and upload widgets."
6730
  msgstr ""
6731
 
6732
- #: wppa-settings-autosave.php:1278
6733
- msgid "TopTen count"
6734
  msgstr ""
6735
 
6736
- #: wppa-settings-autosave.php:1279
6737
- msgid "Number of photos in TopTen widget."
6738
  msgstr ""
6739
 
6740
- #: wppa-settings-autosave.php:1280
6741
- msgid "Enter the maximum number of rated photos in the TopTen widget."
6742
  msgstr ""
6743
 
6744
- #: wppa-settings-autosave.php:1287
6745
- msgid "TopTen size"
 
 
 
6746
  msgstr ""
6747
 
6748
- #: wppa-settings-autosave.php:1288
6749
- msgid "Size of thumbnails in TopTen widget."
6750
  msgstr ""
6751
 
6752
- #: wppa-settings-autosave.php:1289
6753
- msgid "Enter the size for the mini photos in the TopTen widget."
6754
  msgstr ""
6755
 
6756
- #: wppa-settings-autosave.php:1290 wppa-settings-autosave.php:1310
6757
- #: wppa-settings-autosave.php:1330 wppa-settings-autosave.php:1350
6758
- #: wppa-settings-autosave.php:1370 wppa-settings-autosave.php:1390
6759
- msgid "The size applies to the width or height, whatever is the largest."
6760
  msgstr ""
6761
 
6762
- #: wppa-settings-autosave.php:1291 wppa-settings-autosave.php:1311
6763
- #: wppa-settings-autosave.php:1331 wppa-settings-autosave.php:1351
6764
- #: wppa-settings-autosave.php:1371 wppa-settings-autosave.php:1391
6765
- msgid ""
6766
- "Recommended values: 86 for a two column and 56 for a three column display."
6767
  msgstr ""
6768
 
6769
- #: wppa-settings-autosave.php:1298
6770
- msgid "Comment count"
6771
  msgstr ""
6772
 
6773
- #: wppa-settings-autosave.php:1299
6774
- msgid "Number of entries in Comment widget."
6775
  msgstr ""
6776
 
6777
- #: wppa-settings-autosave.php:1300
6778
- msgid "Enter the maximum number of entries in the Comment widget."
6779
  msgstr ""
6780
 
6781
- #: wppa-settings-autosave.php:1302
6782
- msgid "entries"
6783
  msgstr ""
6784
 
6785
- #: wppa-settings-autosave.php:1307
6786
- msgid "Comment size"
6787
  msgstr ""
6788
 
6789
- #: wppa-settings-autosave.php:1308
6790
- msgid "Size of thumbnails in Comment widget."
6791
  msgstr ""
6792
 
6793
- #: wppa-settings-autosave.php:1309
6794
- msgid "Enter the size for the mini photos in the Comment widget."
6795
  msgstr ""
6796
 
6797
- #: wppa-settings-autosave.php:1318
6798
- msgid "Thumbnail count"
6799
  msgstr ""
6800
 
6801
- #: wppa-settings-autosave.php:1319
6802
- msgid "Number of photos in Thumbnail widget."
6803
  msgstr ""
6804
 
6805
- #: wppa-settings-autosave.php:1320
6806
- msgid "Enter the maximum number of rated photos in the Thumbnail widget."
 
6807
  msgstr ""
6808
 
6809
- #: wppa-settings-autosave.php:1327
6810
- msgid "Thumbnail widget size"
 
6811
  msgstr ""
6812
 
6813
- #: wppa-settings-autosave.php:1328
6814
- msgid "Size of thumbnails in Thumbnail widget."
6815
  msgstr ""
6816
 
6817
- #: wppa-settings-autosave.php:1329
6818
- msgid "Enter the size for the mini photos in the Thumbnail widget."
6819
  msgstr ""
6820
 
6821
- #: wppa-settings-autosave.php:1338
6822
- msgid "LasTen count"
 
 
6823
  msgstr ""
6824
 
6825
- #: wppa-settings-autosave.php:1339
6826
- msgid "Number of photos in Last Ten widget."
 
 
 
6827
  msgstr ""
6828
 
6829
- #: wppa-settings-autosave.php:1340
6830
- msgid "Enter the maximum number of photos in the LasTen widget."
 
6831
  msgstr ""
6832
 
6833
- #: wppa-settings-autosave.php:1347
6834
- msgid "LasTen size"
6835
  msgstr ""
6836
 
6837
- #: wppa-settings-autosave.php:1348
6838
- msgid "Size of thumbnails in Last Ten widget."
6839
  msgstr ""
6840
 
6841
- #: wppa-settings-autosave.php:1349
6842
- msgid "Enter the size for the mini photos in the LasTen widget."
 
 
 
6843
  msgstr ""
6844
 
6845
- #: wppa-settings-autosave.php:1358
6846
- msgid "Album widget count"
6847
  msgstr ""
6848
 
6849
- #: wppa-settings-autosave.php:1359
6850
- msgid "Number of albums in Album widget."
6851
  msgstr ""
6852
 
6853
- #: wppa-settings-autosave.php:1360
6854
  msgid ""
6855
- "Enter the maximum number of thumbnail photos of albums in the Album widget."
 
6856
  msgstr ""
6857
 
6858
- #: wppa-settings-autosave.php:1362 wppa-settings-autosave.php:6142
6859
- msgid "albums"
 
 
6860
  msgstr ""
6861
 
6862
- #: wppa-settings-autosave.php:1367
6863
- msgid "Album widget size"
6864
  msgstr ""
6865
 
6866
- #: wppa-settings-autosave.php:1368
6867
- msgid "Size of thumbnails in Album widget."
6868
  msgstr ""
6869
 
6870
- #: wppa-settings-autosave.php:1369
6871
- msgid "Enter the size for the mini photos in the Album widget."
6872
  msgstr ""
6873
 
6874
- #: wppa-settings-autosave.php:1378
6875
- msgid "FeaTen count"
6876
  msgstr ""
6877
 
6878
- #: wppa-settings-autosave.php:1379
6879
- msgid "Number of photos in Featured Ten widget."
 
 
 
6880
  msgstr ""
6881
 
6882
- #: wppa-settings-autosave.php:1380
6883
- msgid "Enter the maximum number of photos in the FeaTen widget."
6884
  msgstr ""
6885
 
6886
- #: wppa-settings-autosave.php:1387
6887
- msgid "FeaTen size"
6888
  msgstr ""
6889
 
6890
- #: wppa-settings-autosave.php:1388
6891
- msgid "Size of thumbnails in Featured Ten widget."
6892
  msgstr ""
6893
 
6894
- #: wppa-settings-autosave.php:1389
6895
- msgid "Enter the size for the mini photos in the FeaTen widget."
6896
  msgstr ""
6897
 
6898
- #: wppa-settings-autosave.php:1398
6899
- msgid "Tagcloud min size"
6900
  msgstr ""
6901
 
6902
- #: wppa-settings-autosave.php:1399
6903
- msgid "Minimal fontsize in tagclouds"
 
 
6904
  msgstr ""
6905
 
6906
- #: wppa-settings-autosave.php:1407
6907
- msgid "Tagcloud max size"
6908
  msgstr ""
6909
 
6910
- #: wppa-settings-autosave.php:1408
6911
- msgid "Maximal fontsize in tagclouds"
6912
  msgstr ""
6913
 
6914
- #: wppa-settings-autosave.php:1416
6915
- msgid ""
6916
- "Lightbox related size settings. These settings have effect only when Table "
6917
- "IX-J3 is set to wppa"
6918
  msgstr ""
6919
 
6920
- #: wppa-settings-autosave.php:1419
6921
- msgid ""
6922
- "Number of lines on the lightbox description area, exclusive the n/m line."
6923
  msgstr ""
6924
 
6925
- #: wppa-settings-autosave.php:1420
6926
- msgid "Enter a number in the range from 0 to 24 or auto"
6927
  msgstr ""
6928
 
6929
- #: wppa-settings-autosave.php:1422
6930
- msgid "lines"
 
 
6931
  msgstr ""
6932
 
6933
- #: wppa-settings-autosave.php:1427
6934
- msgid "Magnifier cursor size"
 
 
 
6935
  msgstr ""
6936
 
6937
- #: wppa-settings-autosave.php:1428
6938
- msgid "Select the size of the magnifier cursor."
6939
  msgstr ""
6940
 
6941
- #: wppa-settings-autosave.php:1431
6942
- msgid "small"
6943
  msgstr ""
6944
 
6945
- #: wppa-settings-autosave.php:1431
6946
- msgid "medium"
6947
  msgstr ""
6948
 
6949
- #: wppa-settings-autosave.php:1431
6950
- msgid "large"
6951
  msgstr ""
6952
 
6953
- #: wppa-settings-autosave.php:1441
6954
- msgid "Border width for lightbox display."
6955
  msgstr ""
6956
 
6957
- #: wppa-settings-autosave.php:1450
6958
- msgid "Border radius for lightbox display."
6959
  msgstr ""
6960
 
6961
- #: wppa-settings-autosave.php:1459
6962
- msgid "Video related size settings"
6963
  msgstr ""
6964
 
6965
- #: wppa-settings-autosave.php:1461
6966
- msgid "Default width"
6967
  msgstr ""
6968
 
6969
- #: wppa-settings-autosave.php:1462
6970
- msgid "The width of most videos"
6971
  msgstr ""
6972
 
6973
- #: wppa-settings-autosave.php:1470
6974
- msgid "Default height"
6975
  msgstr ""
6976
 
6977
- #: wppa-settings-autosave.php:1471
6978
- msgid "The height of most videos"
6979
  msgstr ""
6980
 
6981
- #: wppa-settings-autosave.php:1497
6982
- msgid "Table II:"
6983
  msgstr ""
6984
 
6985
- #: wppa-settings-autosave.php:1497
6986
- msgid "Visibility:"
6987
  msgstr ""
6988
 
6989
- #: wppa-settings-autosave.php:1498
6990
- msgid "This table describes the visibility of certain wppa+ elements."
6991
  msgstr ""
6992
 
6993
- #: wppa-settings-autosave.php:1516
6994
- msgid "Breadcrumb related visibility settings"
6995
  msgstr ""
6996
 
6997
- #: wppa-settings-autosave.php:1518
6998
- msgid "Breadcrumb on posts"
6999
  msgstr ""
7000
 
7001
- #: wppa-settings-autosave.php:1519 wppa-settings-autosave.php:1529
7002
- msgid "Show breadcrumb navigation bars."
7003
  msgstr ""
7004
 
7005
- #: wppa-settings-autosave.php:1520 wppa-settings-autosave.php:1530
7006
- msgid "Indicate whether a breadcrumb navigation should be displayed"
7007
  msgstr ""
7008
 
7009
- #: wppa-settings-autosave.php:1528
7010
- msgid "Breadcrumb on pages"
7011
  msgstr ""
7012
 
7013
- #: wppa-settings-autosave.php:1538
7014
- msgid "Breadcrumb on search results"
7015
  msgstr ""
7016
 
7017
- #: wppa-settings-autosave.php:1539
7018
- msgid "Show breadcrumb navigation bars on the search results page."
7019
  msgstr ""
7020
 
7021
- #: wppa-settings-autosave.php:1540
7022
- msgid ""
7023
- "Indicate whether a breadcrumb navigation should be displayed above the "
7024
- "search results."
7025
  msgstr ""
7026
 
7027
- #: wppa-settings-autosave.php:1547
7028
- msgid "Breadcrumb on topten displays"
7029
  msgstr ""
7030
 
7031
- #: wppa-settings-autosave.php:1548
7032
- msgid "Show breadcrumb navigation bars on topten displays."
7033
  msgstr ""
7034
 
7035
- #: wppa-settings-autosave.php:1549
7036
- msgid ""
7037
- "Indicate whether a breadcrumb navigation should be displayed above the "
7038
- "topten displays."
7039
  msgstr ""
7040
 
7041
- #: wppa-settings-autosave.php:1556
7042
- msgid "Breadcrumb on last ten displays"
 
 
 
 
7043
  msgstr ""
7044
 
7045
- #: wppa-settings-autosave.php:1557
7046
- msgid "Show breadcrumb navigation bars on last ten displays."
7047
  msgstr ""
7048
 
7049
- #: wppa-settings-autosave.php:1558
7050
- msgid ""
7051
- "Indicate whether a breadcrumb navigation should be displayed above the last "
7052
- "ten displays."
7053
  msgstr ""
7054
 
7055
- #: wppa-settings-autosave.php:1565
7056
- msgid "Breadcrumb on comment ten displays"
7057
  msgstr ""
7058
 
7059
- #: wppa-settings-autosave.php:1566
7060
- msgid "Show breadcrumb navigation bars on comment ten displays."
7061
  msgstr ""
7062
 
7063
- #: wppa-settings-autosave.php:1567
7064
- msgid ""
7065
- "Indicate whether a breadcrumb navigation should be displayed above the "
7066
- "comment ten displays."
7067
  msgstr ""
7068
 
7069
- #: wppa-settings-autosave.php:1574
7070
- msgid "Breadcrumb on tag result displays"
7071
  msgstr ""
7072
 
7073
- #: wppa-settings-autosave.php:1575
7074
- msgid "Show breadcrumb navigation bars on tag result displays."
7075
  msgstr ""
7076
 
7077
- #: wppa-settings-autosave.php:1576
7078
- msgid ""
7079
- "Indicate whether a breadcrumb navigation should be displayed above the tag "
7080
- "result displays."
7081
  msgstr ""
7082
 
7083
- #: wppa-settings-autosave.php:1583
7084
- msgid "Breadcrumb on featured ten displays"
7085
  msgstr ""
7086
 
7087
- #: wppa-settings-autosave.php:1584
7088
- msgid "Show breadcrumb navigation bars on featured ten displays."
7089
  msgstr ""
7090
 
7091
- #: wppa-settings-autosave.php:1585
7092
- msgid ""
7093
- "Indicate whether a breadcrumb navigation should be displayed above the "
7094
- "featured ten displays."
7095
  msgstr ""
7096
 
7097
- #: wppa-settings-autosave.php:1592
7098
- msgid "Breadcrumb on related photos displays"
7099
  msgstr ""
7100
 
7101
- #: wppa-settings-autosave.php:1593
7102
- msgid "Show breadcrumb navigation bars on related photos displays."
 
 
7103
  msgstr ""
7104
 
7105
- #: wppa-settings-autosave.php:1594
7106
  msgid ""
7107
- "Indicate whether a breadcrumb navigation should be displayed above the "
7108
- "related photos displays."
7109
  msgstr ""
7110
 
7111
- #: wppa-settings-autosave.php:1601 wppa-setup.php:721
7112
- msgid "Home"
7113
  msgstr ""
7114
 
7115
- #: wppa-settings-autosave.php:1602
7116
- msgid "Show \"Home\" in breadcrumb."
7117
  msgstr ""
7118
 
7119
- #: wppa-settings-autosave.php:1603
7120
  msgid ""
7121
- "Indicate whether the breadcrumb navigation should start with a \"Home\"-link"
 
7122
  msgstr ""
7123
 
7124
- #: wppa-settings-autosave.php:1610
7125
- msgid "Home text"
7126
  msgstr ""
7127
 
7128
- #: wppa-settings-autosave.php:1611
7129
- msgid "The text to use as \"Home\""
 
 
7130
  msgstr ""
7131
 
7132
- #: wppa-settings-autosave.php:1620
7133
- msgid "Show the page(s) in breadcrumb."
7134
  msgstr ""
7135
 
7136
- #: wppa-settings-autosave.php:1621
7137
  msgid ""
7138
- "Indicate whether the breadcrumb navigation should show the page(hierarchy)"
7139
- msgstr ""
7140
-
7141
- #: wppa-settings-autosave.php:1628
7142
- msgid "Separator"
7143
  msgstr ""
7144
 
7145
- #: wppa-settings-autosave.php:1629
7146
- msgid "Breadcrumb separator symbol."
 
 
7147
  msgstr ""
7148
 
7149
- #: wppa-settings-autosave.php:1630
7150
- msgid "Select the desired breadcrumb separator element."
 
 
7151
  msgstr ""
7152
 
7153
- #: wppa-settings-autosave.php:1631
7154
- msgid "A text string may contain valid html."
7155
  msgstr ""
7156
 
7157
- #: wppa-settings-autosave.php:1632
7158
- msgid ""
7159
- "An image will be scaled automatically if you set the navigation font size."
7160
  msgstr ""
7161
 
7162
- #: wppa-settings-autosave.php:1634
7163
- msgid "Text (html):"
7164
  msgstr ""
7165
 
7166
- #: wppa-settings-autosave.php:1634
7167
- msgid "Image (url):"
 
 
7168
  msgstr ""
7169
 
7170
- #: wppa-settings-autosave.php:1642
7171
- msgid "Html"
7172
  msgstr ""
7173
 
7174
- #: wppa-settings-autosave.php:1643
7175
- msgid "Breadcrumb separator text."
7176
  msgstr ""
7177
 
7178
- #: wppa-settings-autosave.php:1644
7179
- msgid "Enter the HTML code that produces the separator symbol you want."
 
 
7180
  msgstr ""
7181
 
7182
- #: wppa-settings-autosave.php:1645
7183
  msgid ""
7184
- "It may be as simple as '-' (without the quotes) or as complex as a tag like "
7185
- "<div>..</div>."
7186
  msgstr ""
7187
 
7188
- #: wppa-settings-autosave.php:1652
7189
- msgid "Image Url"
7190
  msgstr ""
7191
 
7192
- #: wppa-settings-autosave.php:1653
7193
- msgid "Full url to separator image."
7194
  msgstr ""
7195
 
7196
- #: wppa-settings-autosave.php:1654
7197
  msgid ""
7198
- "Enter the full url to the image you want to use for the separator symbol."
7199
- msgstr ""
7200
-
7201
- #: wppa-settings-autosave.php:1661
7202
- msgid "Pagelink position"
7203
  msgstr ""
7204
 
7205
- #: wppa-settings-autosave.php:1662
7206
- msgid "The location for the pagelinks bar."
7207
  msgstr ""
7208
 
7209
- #: wppa-settings-autosave.php:1665 wppa-settings-autosave.php:4140
7210
- msgid "Top"
7211
  msgstr ""
7212
 
7213
- #: wppa-settings-autosave.php:1665 wppa-settings-autosave.php:4140
7214
- msgid "Bottom"
 
 
7215
  msgstr ""
7216
 
7217
- #: wppa-settings-autosave.php:1665
7218
- msgid "Both"
 
 
7219
  msgstr ""
7220
 
7221
- #: wppa-settings-autosave.php:1672
7222
- msgid "Thumblink on slideshow"
7223
  msgstr ""
7224
 
7225
- #: wppa-settings-autosave.php:1673
7226
- msgid "Show a thumb link on slideshow bc."
7227
  msgstr ""
7228
 
7229
- #: wppa-settings-autosave.php:1674
7230
- msgid "Show a link to thumbnail display on an breadcrumb above a slideshow"
7231
  msgstr ""
7232
 
7233
- #: wppa-settings-autosave.php:1681
7234
- msgid "Slideshow related visibility settings"
7235
  msgstr ""
7236
 
7237
- #: wppa-settings-autosave.php:1683
7238
- msgid "Start/stop"
 
 
7239
  msgstr ""
7240
 
7241
- #: wppa-settings-autosave.php:1684
7242
- msgid "Show the Start/Stop slideshow bar."
 
7243
  msgstr ""
7244
 
7245
- #: wppa-settings-autosave.php:1685
7246
  msgid ""
7247
- "If checked: display the start/stop slideshow navigation bar above the full-"
7248
- "size images and slideshow"
7249
  msgstr ""
7250
 
7251
- #: wppa-settings-autosave.php:1692
7252
- msgid "Browse bar"
7253
  msgstr ""
7254
 
7255
- #: wppa-settings-autosave.php:1693
7256
- msgid "Show Browse photos bar."
7257
  msgstr ""
7258
 
7259
- #: wppa-settings-autosave.php:1694
7260
  msgid ""
7261
- "If checked: display the preveous/next navigation bar under the full-size "
7262
- "images and slideshow"
7263
  msgstr ""
7264
 
7265
- #: wppa-settings-autosave.php:1701
7266
- msgid "Filmstrip"
7267
  msgstr ""
7268
 
7269
- #: wppa-settings-autosave.php:1702
7270
- msgid "Show Filmstrip navigation bar."
7271
  msgstr ""
7272
 
7273
- #: wppa-settings-autosave.php:1703
7274
- msgid ""
7275
- "If checked: display the filmstrip navigation bar under the full_size images "
7276
- "and slideshow"
7277
  msgstr ""
7278
 
7279
- #: wppa-settings-autosave.php:1710
7280
- msgid "Film seam"
7281
  msgstr ""
7282
 
7283
- #: wppa-settings-autosave.php:1711
7284
- msgid "Show seam between end and start of film."
 
 
7285
  msgstr ""
7286
 
7287
- #: wppa-settings-autosave.php:1712
7288
- msgid "If checked: display the wrap-around point in the filmstrip"
 
 
7289
  msgstr ""
7290
 
7291
- #: wppa-settings-autosave.php:1720
7292
- msgid "Display photo name."
7293
  msgstr ""
7294
 
7295
- #: wppa-settings-autosave.php:1721
7296
- msgid "If checked: display the name of the photo under the slideshow image."
7297
  msgstr ""
7298
 
7299
- #: wppa-settings-autosave.php:1728 wppa-settings-autosave.php:2133
7300
- msgid "Add (Owner)"
 
 
7301
  msgstr ""
7302
 
7303
- #: wppa-settings-autosave.php:1729 wppa-settings-autosave.php:2134
7304
- msgid "Add the uploaders display name in parenthesis to the name."
7305
  msgstr ""
7306
 
7307
- #: wppa-settings-autosave.php:1737
7308
- msgid "Photo desc"
7309
  msgstr ""
7310
 
7311
- #: wppa-settings-autosave.php:1738
7312
- msgid "Display Photo description."
7313
  msgstr ""
7314
 
7315
- #: wppa-settings-autosave.php:1739
7316
- msgid ""
7317
- "If checked: display the description of the photo under the slideshow image."
7318
  msgstr ""
7319
 
7320
- #: wppa-settings-autosave.php:1746
7321
- msgid "Hide when empty"
7322
  msgstr ""
7323
 
7324
- #: wppa-settings-autosave.php:1747
7325
- msgid "Hide the descriptionbox when empty."
7326
  msgstr ""
7327
 
7328
- #: wppa-settings-autosave.php:1755
7329
- msgid "Rating system"
7330
  msgstr ""
7331
 
7332
- #: wppa-settings-autosave.php:1756
7333
- msgid "Enable the rating system."
7334
  msgstr ""
7335
 
7336
- #: wppa-settings-autosave.php:1757
7337
- msgid "If checked, the photo rating system will be enabled."
7338
  msgstr ""
7339
 
7340
- #: wppa-settings-autosave.php:1765
7341
- msgid "Comments system"
7342
  msgstr ""
7343
 
7344
- #: wppa-settings-autosave.php:1766
7345
- msgid "Enable the comments system."
7346
  msgstr ""
7347
 
7348
- #: wppa-settings-autosave.php:1767
7349
- msgid ""
7350
- "Display the comments box under the fullsize images and let users enter their "
7351
- "comments on individual photos."
7352
  msgstr ""
7353
 
7354
- #: wppa-settings-autosave.php:1775
7355
- msgid "Comment Avatar default"
7356
  msgstr ""
7357
 
7358
- #: wppa-settings-autosave.php:1776
7359
- msgid "Show Avatars with the comments if not --- none ---"
7360
  msgstr ""
7361
 
7362
- #: wppa-settings-autosave.php:1781
7363
- msgid "mystery man"
7364
  msgstr ""
7365
 
7366
- #: wppa-settings-autosave.php:1782
7367
- msgid "identicon"
7368
  msgstr ""
7369
 
7370
- #: wppa-settings-autosave.php:1783
7371
- msgid "monsterid"
7372
  msgstr ""
7373
 
7374
- #: wppa-settings-autosave.php:1784
7375
- msgid "wavatar"
 
 
7376
  msgstr ""
7377
 
7378
- #: wppa-settings-autosave.php:1785
7379
- msgid "retro"
7380
  msgstr ""
7381
 
7382
- #: wppa-settings-autosave.php:1786
7383
- msgid "--- url ---"
7384
  msgstr ""
7385
 
7386
- #: wppa-settings-autosave.php:1801
7387
- msgid "Comment Avatar url"
7388
  msgstr ""
7389
 
7390
- #: wppa-settings-autosave.php:1802
7391
- msgid "Comment Avatar default url."
7392
  msgstr ""
7393
 
7394
- #: wppa-settings-autosave.php:1810
7395
- msgid "Big Browse Buttons"
7396
  msgstr ""
7397
 
7398
- #: wppa-settings-autosave.php:1811
7399
- msgid "Enable invisible browsing buttons."
7400
  msgstr ""
7401
 
7402
- #: wppa-settings-autosave.php:1812 wppa-settings-autosave.php:2391
7403
- msgid ""
7404
- "If checked, the fullsize image is covered by two invisible areas that act as "
7405
- "browse buttons."
7406
  msgstr ""
7407
 
7408
- #: wppa-settings-autosave.php:1813 wppa-settings-autosave.php:2392
7409
- #: wppa-settings-autosave.php:2402
 
7410
  msgid ""
7411
- "Make sure the Full height (Table I-B2) is properly configured to prevent "
7412
- "these areas to overlap unwanted space."
7413
- msgstr ""
7414
-
7415
- #: wppa-settings-autosave.php:1820
7416
- msgid "Ugly Browse Buttons"
7417
  msgstr ""
7418
 
7419
- #: wppa-settings-autosave.php:1821
7420
- msgid "Enable the ugly browsing buttons."
7421
  msgstr ""
7422
 
7423
- #: wppa-settings-autosave.php:1822
7424
- msgid "If checked, the fullsize image is covered by two browse buttons."
7425
  msgstr ""
7426
 
7427
- #: wppa-settings-autosave.php:1833
7428
- msgid "Start/stop icons"
7429
  msgstr ""
7430
 
7431
- #: wppa-settings-autosave.php:1834
7432
- msgid "Show start and stop icons at the center of the slide"
7433
  msgstr ""
7434
 
7435
- #: wppa-settings-autosave.php:1846
7436
- msgid "Show custom box"
7437
  msgstr ""
7438
 
7439
- #: wppa-settings-autosave.php:1847
7440
- msgid "Display the custom box in the slideshow"
7441
  msgstr ""
7442
 
7443
- #: wppa-settings-autosave.php:1848 wppa-settings-autosave.php:1859
7444
- msgid ""
7445
- "You can fill the custom box with any html you like. It will not be checked, "
7446
- "so it is your own responsability to close tags properly."
7447
  msgstr ""
7448
 
7449
- #: wppa-settings-autosave.php:1849 wppa-settings-autosave.php:1860
7450
- msgid "The position of the box can be defined in Table IX-E."
7451
  msgstr ""
7452
 
7453
- #: wppa-settings-autosave.php:1857
7454
- msgid "Custom content"
7455
  msgstr ""
7456
 
7457
- #: wppa-settings-autosave.php:1858
7458
- msgid "The content (html) of the custom box."
7459
  msgstr ""
7460
 
7461
- #: wppa-settings-autosave.php:1867
7462
- msgid "Slideshow/Number bar"
7463
  msgstr ""
7464
 
7465
- #: wppa-settings-autosave.php:1868
7466
- msgid "Display the Slideshow / Number bar."
7467
  msgstr ""
7468
 
7469
- #: wppa-settings-autosave.php:1869
7470
- msgid "If checked: display the number boxes on slideshow"
7471
  msgstr ""
7472
 
7473
- #: wppa-settings-autosave.php:1877
7474
- msgid "IPTC system"
7475
  msgstr ""
7476
 
7477
- #: wppa-settings-autosave.php:1878
7478
- msgid "Enable the iptc system."
7479
  msgstr ""
7480
 
7481
- #: wppa-settings-autosave.php:1879
7482
- msgid "Display the iptc box under the fullsize images."
7483
  msgstr ""
7484
 
7485
- #: wppa-settings-autosave.php:1887
7486
- msgid "IPTC open"
7487
  msgstr ""
7488
 
7489
- #: wppa-settings-autosave.php:1888
7490
- msgid "Display the iptc box initially opened."
7491
  msgstr ""
7492
 
7493
- #: wppa-settings-autosave.php:1889
7494
- msgid "Display the iptc box under the fullsize images initially open."
7495
  msgstr ""
7496
 
7497
- #: wppa-settings-autosave.php:1897
7498
- msgid "EXIF system"
7499
  msgstr ""
7500
 
7501
- #: wppa-settings-autosave.php:1898
7502
- msgid "Enable the exif system."
7503
  msgstr ""
7504
 
7505
- #: wppa-settings-autosave.php:1899
7506
- msgid "Display the exif box under the fullsize images."
 
7507
  msgstr ""
7508
 
7509
- #: wppa-settings-autosave.php:1907
7510
- msgid "EXIF open"
7511
  msgstr ""
7512
 
7513
- #: wppa-settings-autosave.php:1908
7514
- msgid "Display the exif box initially opened."
7515
  msgstr ""
7516
 
7517
- #: wppa-settings-autosave.php:1909
7518
- msgid "Display the exif box under the fullsize images initially open."
7519
  msgstr ""
7520
 
7521
- #: wppa-settings-autosave.php:1917
7522
- msgid "Social media share box related visibility settings"
7523
  msgstr ""
7524
 
7525
- #: wppa-settings-autosave.php:1919
7526
- msgid "Show Share Box"
7527
  msgstr ""
7528
 
7529
- #: wppa-settings-autosave.php:1920
7530
- msgid "Display the share social media buttons box."
7531
  msgstr ""
7532
 
7533
- #: wppa-settings-autosave.php:1929 wppa-settings-autosave.php:9112
7534
- msgid "Hide when running"
7535
  msgstr ""
7536
 
7537
- #: wppa-settings-autosave.php:1930
7538
- msgid "Hide the SM box when slideshow runs."
7539
  msgstr ""
7540
 
7541
- #: wppa-settings-autosave.php:1938
7542
- msgid "Show Share Box Widget"
7543
  msgstr ""
7544
 
7545
- #: wppa-settings-autosave.php:1939
7546
- msgid "Display the share social media buttons box in widgets."
7547
  msgstr ""
7548
 
7549
- #: wppa-settings-autosave.php:1940
7550
- msgid ""
7551
- "This setting applies to normal slideshows in widgets, not to the "
7552
- "slideshowwidget as that is a slideonly display."
7553
  msgstr ""
7554
 
7555
- #: wppa-settings-autosave.php:1948
7556
- msgid "Show Share Buttons Thumbs"
7557
  msgstr ""
7558
 
7559
- #: wppa-settings-autosave.php:1949
7560
- msgid "Display the share social media buttons under thumbnails."
7561
  msgstr ""
7562
 
7563
- #: wppa-settings-autosave.php:1958
7564
- msgid "Show Share Buttons Lightbox"
7565
  msgstr ""
7566
 
7567
- #: wppa-settings-autosave.php:1959
7568
- msgid "Display the share social media buttons on lightbox displays."
 
 
7569
  msgstr ""
7570
 
7571
- #: wppa-settings-autosave.php:1968
7572
- msgid "Show Share Buttons Mphoto"
 
7573
  msgstr ""
7574
 
7575
- #: wppa-settings-autosave.php:1969
7576
- msgid "Display the share social media buttons on mphoto displays."
7577
  msgstr ""
7578
 
7579
- #: wppa-settings-autosave.php:1978
7580
- msgid "Void pages share"
7581
  msgstr ""
7582
 
7583
- #: wppa-settings-autosave.php:1979
7584
- msgid "Do not show share on these pages"
7585
  msgstr ""
7586
 
7587
- #: wppa-settings-autosave.php:1980
7588
- msgid "Use this for pages that require the user is logged in"
7589
  msgstr ""
7590
 
7591
- #: wppa-settings-autosave.php:1984
7592
- msgid "--- Select one or more pages ---"
7593
  msgstr ""
7594
 
7595
- #: wppa-settings-autosave.php:1993
7596
- msgid "Show QR Code"
7597
  msgstr ""
7598
 
7599
- #: wppa-settings-autosave.php:1994
7600
- msgid "Display the QR code in the share box."
7601
  msgstr ""
7602
 
7603
- #: wppa-settings-autosave.php:2002
7604
- msgid "Show Twitter button"
7605
  msgstr ""
7606
 
7607
- #: wppa-settings-autosave.php:2003
7608
- msgid "Display the Twitter button in the share box."
7609
  msgstr ""
7610
 
7611
- #: wppa-settings-autosave.php:2011
7612
- msgid "The creator's Twitter account"
7613
  msgstr ""
7614
 
7615
- #: wppa-settings-autosave.php:2012
7616
- msgid "The Twitter @username a twitter card should be attributed to."
7617
  msgstr ""
7618
 
7619
- #: wppa-settings-autosave.php:2013
7620
- msgid ""
7621
- "If you want to share the image directly - by a so called twitter card - you "
7622
- "must enter your twitter account name here"
7623
  msgstr ""
7624
 
7625
- #: wppa-settings-autosave.php:2020
7626
- msgid "Show Google+ button"
7627
  msgstr ""
7628
 
7629
- #: wppa-settings-autosave.php:2021
7630
- msgid "Display the Google+ button in the share box."
7631
  msgstr ""
7632
 
7633
- #: wppa-settings-autosave.php:2029
7634
- msgid "Show Pinterest button"
7635
  msgstr ""
7636
 
7637
- #: wppa-settings-autosave.php:2030
7638
- msgid "Display the Pintrest button in the share box."
7639
  msgstr ""
7640
 
7641
- #: wppa-settings-autosave.php:2038
7642
- msgid "Show LinkedIn button"
7643
  msgstr ""
7644
 
7645
- #: wppa-settings-autosave.php:2039
7646
- msgid "Display the LinkedIn button in the share box."
7647
  msgstr ""
7648
 
7649
- #: wppa-settings-autosave.php:2047
7650
- msgid "Show Facebook share button"
7651
  msgstr ""
7652
 
7653
- #: wppa-settings-autosave.php:2048 wppa-settings-autosave.php:2057
7654
- msgid "Display the Facebook button in the share box."
7655
  msgstr ""
7656
 
7657
- #: wppa-settings-autosave.php:2056
7658
- msgid "Show Facebook like button"
7659
  msgstr ""
7660
 
7661
- #: wppa-settings-autosave.php:2065
7662
- msgid "Display type"
7663
  msgstr ""
7664
 
7665
- #: wppa-settings-autosave.php:2066
7666
- msgid "Select the Facebook button display type."
7667
  msgstr ""
7668
 
7669
- #: wppa-settings-autosave.php:2069
7670
- msgid "Button with counter"
7671
  msgstr ""
7672
 
7673
- #: wppa-settings-autosave.php:2069
7674
- msgid "Box with counter"
 
 
7675
  msgstr ""
7676
 
7677
- #: wppa-settings-autosave.php:2076
7678
- msgid "Show Facebook comment box"
7679
  msgstr ""
7680
 
7681
- #: wppa-settings-autosave.php:2077
7682
- msgid "Display the Facebook comment dialog box in the share box."
7683
  msgstr ""
7684
 
7685
- #: wppa-settings-autosave.php:2085
7686
- msgid "Facebook User Id"
 
 
7687
  msgstr ""
7688
 
7689
- #: wppa-settings-autosave.php:2086
7690
- msgid "Enter your facebook user id to be able to moderate comments and sends"
7691
  msgstr ""
7692
 
7693
- #: wppa-settings-autosave.php:2094
7694
- msgid "Facebook App Id"
7695
  msgstr ""
7696
 
7697
- #: wppa-settings-autosave.php:2095
7698
- msgid "Enter your facebook app id to be able to moderate comments and sends"
 
 
7699
  msgstr ""
7700
 
7701
- #: wppa-settings-autosave.php:2103
7702
- msgid "Facebook js SDK"
7703
  msgstr ""
7704
 
7705
- #: wppa-settings-autosave.php:2104
7706
- msgid "Load Facebook js SDK"
7707
  msgstr ""
7708
 
7709
- #: wppa-settings-autosave.php:2105
7710
  msgid ""
7711
- "Uncheck this box only when there is a conflict with an other plugin that "
7712
- "also loads the Facebook js SDK."
7713
  msgstr ""
7714
 
7715
- #: wppa-settings-autosave.php:2112
7716
- msgid "Share single image"
7717
  msgstr ""
7718
 
7719
- #: wppa-settings-autosave.php:2113
7720
- msgid "Share a link to a single image, not the slideshow."
7721
  msgstr ""
7722
 
7723
- #: wppa-settings-autosave.php:2114
7724
  msgid ""
7725
- "The sharelink points to a page with a single image rather than to the page "
7726
- "with the photo in the slideshow."
7727
  msgstr ""
7728
 
7729
- #: wppa-settings-autosave.php:2122
7730
- msgid "Thumbnail display related visibility settings"
7731
  msgstr ""
7732
 
7733
- #: wppa-settings-autosave.php:2124
7734
- msgid "Thumbnail name"
7735
  msgstr ""
7736
 
7737
- #: wppa-settings-autosave.php:2125
7738
- msgid "Display Thumbnail name."
 
 
7739
  msgstr ""
7740
 
7741
- #: wppa-settings-autosave.php:2126
7742
- msgid "Display photo name under thumbnail images."
7743
  msgstr ""
7744
 
7745
- #: wppa-settings-autosave.php:2142
7746
- msgid "Thumbnail desc"
7747
  msgstr ""
7748
 
7749
- #: wppa-settings-autosave.php:2143
7750
- msgid "Display Thumbnail description."
 
 
7751
  msgstr ""
7752
 
7753
- #: wppa-settings-autosave.php:2144
7754
- msgid "Display description of the photo under thumbnail images."
7755
  msgstr ""
7756
 
7757
- #: wppa-settings-autosave.php:2151
7758
- msgid "Thumbnail rating"
7759
  msgstr ""
7760
 
7761
- #: wppa-settings-autosave.php:2152
7762
- msgid "Display Thumbnail Rating."
 
7763
  msgstr ""
7764
 
7765
- #: wppa-settings-autosave.php:2153
7766
- msgid "Display the rating of the photo under the thumbnail image."
7767
  msgstr ""
7768
 
7769
- #: wppa-settings-autosave.php:2160
7770
- msgid "Thumbnail comcount"
7771
  msgstr ""
7772
 
7773
- #: wppa-settings-autosave.php:2161
7774
- msgid "Display Thumbnail Comment count."
7775
  msgstr ""
7776
 
7777
- #: wppa-settings-autosave.php:2162
7778
- msgid "Display the number of comments to the photo under the thumbnail image."
 
7779
  msgstr ""
7780
 
7781
- #: wppa-settings-autosave.php:2169
7782
- msgid "Thumbnail viewcount"
7783
  msgstr ""
7784
 
7785
- #: wppa-settings-autosave.php:2170
7786
- msgid "Display the number of views."
7787
  msgstr ""
7788
 
7789
- #: wppa-settings-autosave.php:2171
7790
- msgid "Display the number of views under the thumbnail image."
7791
  msgstr ""
7792
 
7793
- #: wppa-settings-autosave.php:2178
7794
- msgid "Thumbnail virt album"
7795
  msgstr ""
7796
 
7797
- #: wppa-settings-autosave.php:2179
7798
- msgid "Display the real album name on virtual album display."
 
7799
  msgstr ""
7800
 
7801
- #: wppa-settings-autosave.php:2180
7802
- msgid ""
7803
- "Display the album name of the photo in parenthesis under the thumbnail on "
7804
- "virtual album displays like search results etc."
7805
  msgstr ""
7806
 
7807
- #: wppa-settings-autosave.php:2187
7808
- msgid "Thumbnail video"
7809
  msgstr ""
7810
 
7811
- #: wppa-settings-autosave.php:2188
7812
- msgid "Show video controls on thumbnail displays."
7813
  msgstr ""
7814
 
7815
- #: wppa-settings-autosave.php:2189
7816
- msgid ""
7817
- "Works on default thumbnail type only. You can play the video only when the "
7818
- "link is set to no link at all."
7819
  msgstr ""
7820
 
7821
- #: wppa-settings-autosave.php:2196
7822
- msgid "Thumbnail audio"
7823
  msgstr ""
7824
 
7825
- #: wppa-settings-autosave.php:2197
7826
- msgid "Show audio controls on thumbnail displays."
 
 
7827
  msgstr ""
7828
 
7829
- #: wppa-settings-autosave.php:2205
7830
- msgid "Popup name"
7831
  msgstr ""
7832
 
7833
- #: wppa-settings-autosave.php:2206
7834
- msgid "Display Thumbnail name on popup."
7835
  msgstr ""
7836
 
7837
- #: wppa-settings-autosave.php:2207
7838
- msgid "Display photo name under thumbnail images on the popup."
 
7839
  msgstr ""
7840
 
7841
- #: wppa-settings-autosave.php:2214
7842
- msgid "Popup (owner)"
7843
  msgstr ""
7844
 
7845
- #: wppa-settings-autosave.php:2215
7846
- msgid "Display owner on popup."
7847
  msgstr ""
7848
 
7849
- #: wppa-settings-autosave.php:2216
7850
- msgid "Display photo owner under thumbnail images on the popup."
7851
  msgstr ""
7852
 
7853
- #: wppa-settings-autosave.php:2223
7854
- msgid "Popup desc"
7855
  msgstr ""
7856
 
7857
- #: wppa-settings-autosave.php:2224
7858
- msgid "Display Thumbnail description on popup."
7859
  msgstr ""
7860
 
7861
- #: wppa-settings-autosave.php:2225
7862
- msgid "Display description of the photo under thumbnail images on the popup."
7863
  msgstr ""
7864
 
7865
- #: wppa-settings-autosave.php:2232
7866
- msgid "Popup desc no links"
7867
  msgstr ""
7868
 
7869
- #: wppa-settings-autosave.php:2233
7870
- msgid "Strip html anchor tags from descriptions on popups"
7871
  msgstr ""
7872
 
7873
- #: wppa-settings-autosave.php:2234
7874
- msgid ""
7875
- "Use this option to prevent the display of links that cannot be activated."
7876
  msgstr ""
7877
 
7878
- #: wppa-settings-autosave.php:2241
7879
- msgid "Popup rating"
7880
  msgstr ""
7881
 
7882
- #: wppa-settings-autosave.php:2242
7883
- msgid "Display Thumbnail Rating on popup."
7884
  msgstr ""
7885
 
7886
- #: wppa-settings-autosave.php:2243
7887
- msgid "Display the rating of the photo under the thumbnail image on the popup."
 
 
7888
  msgstr ""
7889
 
7890
- #: wppa-settings-autosave.php:2250
7891
- msgid "Popup comcount"
7892
  msgstr ""
7893
 
7894
- #: wppa-settings-autosave.php:2251
7895
- msgid "Display Thumbnail Comment count on popup."
7896
  msgstr ""
7897
 
7898
- #: wppa-settings-autosave.php:2252
7899
  msgid ""
7900
- "Display the number of comments of the photo under the thumbnail image on the "
7901
- "popup."
7902
  msgstr ""
7903
 
7904
- #: wppa-settings-autosave.php:2259
7905
- msgid "Show rating count"
7906
  msgstr ""
7907
 
7908
- #: wppa-settings-autosave.php:2260
7909
- msgid "Display the number of votes along with average ratings."
7910
  msgstr ""
7911
 
7912
- #: wppa-settings-autosave.php:2261
7913
  msgid ""
7914
- "If checked, the number of votes is displayed along with average rating "
7915
- "displays on thumbnail and popup displays."
7916
  msgstr ""
7917
 
7918
- #: wppa-settings-autosave.php:2268
7919
- msgid "Show name on thumb area"
7920
  msgstr ""
7921
 
7922
- #: wppa-settings-autosave.php:2269
7923
- msgid "Select if and where to display the album name on the thumbnail display."
7924
  msgstr ""
7925
 
7926
- #: wppa-settings-autosave.php:2272 wppa-settings-autosave.php:2283
7927
- #: wppa-settings-autosave.php:2312 wppa-settings-autosave.php:4495
7928
- msgid "None"
7929
  msgstr ""
7930
 
7931
- #: wppa-settings-autosave.php:2272 wppa-settings-autosave.php:2283
7932
- #: wppa-settings-autosave.php:2312 wppa-settings-autosave.php:3614
7933
- msgid "At the top"
7934
  msgstr ""
7935
 
7936
- #: wppa-settings-autosave.php:2272 wppa-settings-autosave.php:2283
7937
- #: wppa-settings-autosave.php:2312 wppa-settings-autosave.php:3614
7938
- msgid "At the bottom"
7939
  msgstr ""
7940
 
7941
- #: wppa-settings-autosave.php:2279
7942
- msgid "Show desc on thumb area"
7943
  msgstr ""
7944
 
7945
- #: wppa-settings-autosave.php:2280
7946
- msgid ""
7947
- "Select if and where to display the album description on the thumbnail "
7948
- "display."
7949
  msgstr ""
7950
 
7951
- #: wppa-settings-autosave.php:2290
7952
- msgid "Show Edit/Delete links"
7953
  msgstr ""
7954
 
7955
- #: wppa-settings-autosave.php:2291
7956
- msgid "Show these links under default thumbnails for owner and admin."
7957
  msgstr ""
7958
 
7959
- #: wppa-settings-autosave.php:2299
7960
- msgid "Show empty thumbnail area"
 
7961
  msgstr ""
7962
 
7963
- #: wppa-settings-autosave.php:2300
7964
- msgid "Display thumbnail areas with upload link only for empty albums."
7965
  msgstr ""
7966
 
7967
- #: wppa-settings-autosave.php:2308
7968
- msgid "Upload/create link on thumbnail area"
7969
  msgstr ""
7970
 
7971
- #: wppa-settings-autosave.php:2309
7972
- msgid "Select the location of the upload and crete links."
7973
  msgstr ""
7974
 
7975
- #: wppa-settings-autosave.php:2320
7976
- msgid "Album cover related visibility settings"
7977
  msgstr ""
7978
 
7979
- #: wppa-settings-autosave.php:2322
7980
- msgid "Covertext"
7981
  msgstr ""
7982
 
7983
- #: wppa-settings-autosave.php:2323
7984
- msgid "Show the text on the album cover."
7985
  msgstr ""
7986
 
7987
- #: wppa-settings-autosave.php:2324
7988
- msgid "Display the album decription on the album cover"
7989
  msgstr ""
7990
 
7991
- #: wppa-settings-autosave.php:2332
7992
- msgid "Enable the slideshow."
 
 
7993
  msgstr ""
7994
 
7995
- #: wppa-settings-autosave.php:2333
7996
- msgid ""
7997
- "If you do not want slideshows: uncheck this box. Browsing full size images "
7998
- "will remain possible."
7999
  msgstr ""
8000
 
8001
- #: wppa-settings-autosave.php:2340
8002
- msgid "Slideshow/Browse"
8003
  msgstr ""
8004
 
8005
- #: wppa-settings-autosave.php:2341
8006
- msgid "Display the Slideshow / Browse photos link on album covers"
8007
  msgstr ""
8008
 
8009
- #: wppa-settings-autosave.php:2342
8010
- msgid ""
8011
- "This setting causes the Slideshow link to be displayed on the album cover."
8012
  msgstr ""
8013
 
8014
- #: wppa-settings-autosave.php:2343
8015
- msgid ""
8016
- "If slideshows are disabled in item 2 in this table, you will see a browse "
8017
- "link to fullsize images."
8018
  msgstr ""
8019
 
8020
- #: wppa-settings-autosave.php:2344
8021
- msgid "If you do not want the browse link either, uncheck this item."
8022
  msgstr ""
8023
 
8024
- #: wppa-settings-autosave.php:2351
8025
- msgid "View ..."
8026
  msgstr ""
8027
 
8028
- #: wppa-settings-autosave.php:2352
8029
- msgid "Display the View xx albums and yy photos link on album covers"
8030
  msgstr ""
8031
 
8032
- #: wppa-settings-autosave.php:2360
8033
- msgid "Treecount"
8034
  msgstr ""
8035
 
8036
- #: wppa-settings-autosave.php:2361
8037
- msgid "Disaplay the total number of (sub)albums and photos in subalbums"
8038
  msgstr ""
8039
 
8040
- #: wppa-settings-autosave.php:2362
8041
- msgid ""
8042
- "Displays the total number of sub albums and photos in the entire album tree "
8043
- "in parenthesis if the numbers differ from the direct content of the album."
8044
  msgstr ""
8045
 
8046
- #: wppa-settings-autosave.php:2369
8047
- msgid "Show categories"
8048
  msgstr ""
8049
 
8050
- #: wppa-settings-autosave.php:2370
8051
- msgid "Display the album categories on the covers."
 
 
8052
  msgstr ""
8053
 
8054
- #: wppa-settings-autosave.php:2378
8055
- msgid "Skip empty albums"
 
 
 
8056
  msgstr ""
8057
 
8058
- #: wppa-settings-autosave.php:2379
8059
- msgid "Do not show empty albums, except for admin and owner."
8060
  msgstr ""
8061
 
8062
- #: wppa-settings-autosave.php:2387
8063
- msgid "Widget related visibility settings"
8064
  msgstr ""
8065
 
8066
- #: wppa-settings-autosave.php:2389
8067
- msgid "Big Browse Buttons in widget"
8068
  msgstr ""
8069
 
8070
- #: wppa-settings-autosave.php:2390
8071
- msgid "Enable invisible browsing buttons in widget slideshows."
8072
  msgstr ""
8073
 
8074
- #: wppa-settings-autosave.php:2399
8075
- msgid "Ugly Browse Buttons in widget"
8076
  msgstr ""
8077
 
8078
- #: wppa-settings-autosave.php:2400
8079
- msgid "Enable ugly browsing buttons in widget slideshows."
8080
  msgstr ""
8081
 
8082
- #: wppa-settings-autosave.php:2401
8083
- msgid "If checked, the fullsize image is covered by browse buttons."
8084
  msgstr ""
8085
 
8086
- #: wppa-settings-autosave.php:2409
8087
- msgid "Album widget tooltip"
 
 
8088
  msgstr ""
8089
 
8090
- #: wppa-settings-autosave.php:2410
8091
- msgid "Show the album description on hoovering thumbnail in album widget"
8092
  msgstr ""
8093
 
8094
- #: wppa-settings-autosave.php:2418 wppa-settings-autosave.php:4626
8095
- msgid ""
8096
- "Lightbox related settings. These settings have effect only when Table IX-J3 "
8097
- "is set to wppa"
8098
  msgstr ""
8099
 
8100
- #: wppa-settings-autosave.php:2431
8101
- msgid "Overlay theme color"
8102
  msgstr ""
8103
 
8104
- #: wppa-settings-autosave.php:2432
8105
- msgid "The color of the image border and text background."
8106
  msgstr ""
8107
 
8108
- #: wppa-settings-autosave.php:2435 wppa-settings-autosave.php:2446
8109
- msgid "Black"
8110
  msgstr ""
8111
 
8112
- #: wppa-settings-autosave.php:2435 wppa-settings-autosave.php:2446
8113
- msgid "White"
8114
  msgstr ""
8115
 
8116
- #: wppa-settings-autosave.php:2442
8117
- msgid "Overlay background color"
8118
  msgstr ""
8119
 
8120
- #: wppa-settings-autosave.php:2443
8121
- msgid "The color of the outer background."
8122
  msgstr ""
8123
 
8124
- #: wppa-settings-autosave.php:2453
8125
- msgid "Overlay slide name"
8126
  msgstr ""
8127
 
8128
- #: wppa-settings-autosave.php:2454
8129
- msgid "Show name if from slide."
8130
  msgstr ""
8131
 
8132
- #: wppa-settings-autosave.php:2455
8133
- msgid ""
8134
- "Shows the photos name on a lightbox display when initiated from a slide."
8135
  msgstr ""
8136
 
8137
- #: wppa-settings-autosave.php:2456 wppa-settings-autosave.php:2466
8138
- msgid ""
8139
- "This setting also applies to film thumbnails if Table VI-11 is set to "
8140
- "lightbox overlay."
8141
  msgstr ""
8142
 
8143
- #: wppa-settings-autosave.php:2463
8144
- msgid "Overlay slide desc"
8145
  msgstr ""
8146
 
8147
- #: wppa-settings-autosave.php:2464
8148
- msgid "Show description if from slide."
8149
  msgstr ""
8150
 
8151
- #: wppa-settings-autosave.php:2465
8152
- msgid ""
8153
- "Shows the photos description on a lightbox display when initiated from a "
8154
- "slide."
8155
  msgstr ""
8156
 
8157
- #: wppa-settings-autosave.php:2473
8158
- msgid "Overlay thumb name"
8159
  msgstr ""
8160
 
8161
- #: wppa-settings-autosave.php:2474
8162
- msgid "Show the photos name if from thumb."
8163
  msgstr ""
8164
 
8165
- #: wppa-settings-autosave.php:2475
8166
- msgid ""
8167
- "Shows the name on a lightbox display when initiated from a standard "
8168
- "thumbnail or a widget thumbnail."
8169
  msgstr ""
8170
 
8171
- #: wppa-settings-autosave.php:2476 wppa-settings-autosave.php:2486
8172
- msgid ""
8173
- "This setting applies to standard thumbnails, thumbnail-, comment-, topten- "
8174
- "and lasten-widget."
8175
  msgstr ""
8176
 
8177
- #: wppa-settings-autosave.php:2483
8178
- msgid "Overlay thumb desc"
8179
  msgstr ""
8180
 
8181
- #: wppa-settings-autosave.php:2484
8182
- msgid "Show description if from thumb."
8183
  msgstr ""
8184
 
8185
- #: wppa-settings-autosave.php:2485
8186
- msgid ""
8187
- "Shows the photos description on a lightbox display when initiated from a "
8188
- "standard thumbnail or a widget thumbnail."
8189
  msgstr ""
8190
 
8191
- #: wppa-settings-autosave.php:2493
8192
- msgid "Overlay potd name"
8193
  msgstr ""
8194
 
8195
- #: wppa-settings-autosave.php:2494
8196
- msgid "Show the photos name if from photo of the day."
8197
  msgstr ""
8198
 
8199
- #: wppa-settings-autosave.php:2495
8200
- msgid ""
8201
- "Shows the name on a lightbox display when initiated from the photo of the "
8202
- "day."
8203
  msgstr ""
8204
 
8205
- #: wppa-settings-autosave.php:2502
8206
- msgid "Overlay potd desc"
 
 
8207
  msgstr ""
8208
 
8209
- #: wppa-settings-autosave.php:2503
8210
- msgid "Show description if from from photo of the day."
8211
  msgstr ""
8212
 
8213
- #: wppa-settings-autosave.php:2504
8214
- msgid ""
8215
- "Shows the photos description on a lightbox display when initiated from the "
8216
- "photo of the day."
8217
  msgstr ""
8218
 
8219
- #: wppa-settings-autosave.php:2511
8220
- msgid "Overlay sphoto name"
8221
  msgstr ""
8222
 
8223
- #: wppa-settings-autosave.php:2512
8224
- msgid "Show the photos name if from a single photo."
8225
  msgstr ""
8226
 
8227
- #: wppa-settings-autosave.php:2513
8228
- msgid ""
8229
- "Shows the name on a lightbox display when initiated from a single photo."
8230
  msgstr ""
8231
 
8232
- #: wppa-settings-autosave.php:2520
8233
- msgid "Overlay sphoto desc"
8234
  msgstr ""
8235
 
8236
- #: wppa-settings-autosave.php:2521
8237
- msgid "Show description if from from a single photo."
8238
  msgstr ""
8239
 
8240
- #: wppa-settings-autosave.php:2522
8241
- msgid ""
8242
- "Shows the photos description on a lightbox display when initiated from a "
8243
- "single photo."
8244
  msgstr ""
8245
 
8246
- #: wppa-settings-autosave.php:2529
8247
- msgid "Overlay mphoto name"
8248
  msgstr ""
8249
 
8250
- #: wppa-settings-autosave.php:2530
8251
- msgid "Show the photos name if from a single media style photo."
8252
  msgstr ""
8253
 
8254
- #: wppa-settings-autosave.php:2531
8255
- msgid ""
8256
- "Shows the name on a lightbox display when initiated from a single media "
8257
- "style photo."
8258
  msgstr ""
8259
 
8260
- #: wppa-settings-autosave.php:2538
8261
- msgid "Overlay mphoto desc"
8262
  msgstr ""
8263
 
8264
- #: wppa-settings-autosave.php:2539
8265
- msgid "Show description if from from a media style photo."
8266
  msgstr ""
8267
 
8268
- #: wppa-settings-autosave.php:2540
8269
- msgid ""
8270
- "Shows the photos description on a lightbox display when initiated from a "
8271
- "single media style photo."
8272
  msgstr ""
8273
 
8274
- #: wppa-settings-autosave.php:2547
8275
- msgid "Overlay albumwidget name"
8276
  msgstr ""
8277
 
8278
- #: wppa-settings-autosave.php:2548
8279
- msgid "Show the photos name if from the album widget."
8280
  msgstr ""
8281
 
8282
- #: wppa-settings-autosave.php:2549
8283
  msgid ""
8284
- "Shows the name on a lightbox display when initiated from the album widget."
 
8285
  msgstr ""
8286
 
8287
- #: wppa-settings-autosave.php:2556
8288
- msgid "Overlay albumwidget desc"
8289
  msgstr ""
8290
 
8291
- #: wppa-settings-autosave.php:2557
8292
- msgid "Show description if from from the album widget."
8293
  msgstr ""
8294
 
8295
- #: wppa-settings-autosave.php:2558
8296
- msgid ""
8297
- "Shows the photos description on a lightbox display when initiated from the "
8298
- "album widget."
8299
  msgstr ""
8300
 
8301
- #: wppa-settings-autosave.php:2565
8302
- msgid "Overlay coverphoto name"
8303
  msgstr ""
8304
 
8305
- #: wppa-settings-autosave.php:2566
8306
- msgid "Show the photos name if from the album cover."
8307
  msgstr ""
8308
 
8309
- #: wppa-settings-autosave.php:2567
8310
- msgid ""
8311
- "Shows the name on a lightbox display when initiated from the album "
8312
- "coverphoto."
8313
  msgstr ""
8314
 
8315
- #: wppa-settings-autosave.php:2574
8316
- msgid "Overlay coverphoto desc"
8317
  msgstr ""
8318
 
8319
- #: wppa-settings-autosave.php:2575
8320
- msgid "Show description if from from the album cover."
8321
  msgstr ""
8322
 
8323
- #: wppa-settings-autosave.php:2576
8324
- msgid ""
8325
- "Shows the photos description on a lightbox display when initiated from the "
8326
- "album coverphoto."
8327
  msgstr ""
8328
 
8329
- #: wppa-settings-autosave.php:2583
8330
- msgid "Overlay add owner"
8331
  msgstr ""
8332
 
8333
- #: wppa-settings-autosave.php:2584
8334
- msgid "Add the owner to the photo name on lightbox displays."
8335
  msgstr ""
8336
 
8337
- #: wppa-settings-autosave.php:2585
8338
- msgid ""
8339
- "This setting is independant of the show name switches and is a global "
8340
- "setting."
8341
  msgstr ""
8342
 
8343
- #: wppa-settings-autosave.php:2592
8344
- msgid "Overlay show start/stop"
8345
  msgstr ""
8346
 
8347
- #: wppa-settings-autosave.php:2593
8348
- msgid "Show Start and Stop for running slideshow on lightbox."
8349
  msgstr ""
8350
 
8351
- #: wppa-settings-autosave.php:2601
8352
- msgid "Overlay show legenda"
8353
  msgstr ""
8354
 
8355
- #: wppa-settings-autosave.php:2602
8356
- msgid "Show \"Press f for fullsize\" etc. on lightbox."
8357
  msgstr ""
8358
 
8359
- #: wppa-settings-autosave.php:2603
8360
- msgid "Independant of this setting, it will not show up on mobile devices."
8361
  msgstr ""
8362
 
8363
- #: wppa-settings-autosave.php:2610
8364
- msgid "Show fullscreen icons"
8365
  msgstr ""
8366
 
8367
- #: wppa-settings-autosave.php:2611
8368
- msgid "Shows fullscreen and back to normal icon buttons on upper right corner"
8369
  msgstr ""
8370
 
8371
- #: wppa-settings-autosave.php:2619
8372
- msgid "Show rating"
8373
  msgstr ""
8374
 
8375
- #: wppa-settings-autosave.php:2620
8376
- msgid "Shows and enables rating on lightbox."
8377
  msgstr ""
8378
 
8379
- #: wppa-settings-autosave.php:2621
8380
  msgid ""
8381
- "This works for 5 and 10 stars only, not for single votes or numerical display"
 
8382
  msgstr ""
8383
 
8384
- #: wppa-settings-autosave.php:2628
8385
- msgid "Overlay show counter"
8386
  msgstr ""
8387
 
8388
- #: wppa-settings-autosave.php:2629
8389
- msgid "Show the x/y counter below the image."
8390
  msgstr ""
8391
 
8392
- #: wppa-settings-autosave.php:2637
8393
- msgid "Show Zoom in"
 
 
8394
  msgstr ""
8395
 
8396
- #: wppa-settings-autosave.php:2638
8397
- msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
8398
  msgstr ""
8399
 
8400
- #: wppa-settings-autosave.php:2639
8401
- msgid ""
8402
- "If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
8403
- "contains the photo name."
8404
  msgstr ""
8405
 
8406
- #: wppa-settings-autosave.php:2647
8407
- msgid "Frontend upload configuration settings"
8408
  msgstr ""
8409
 
8410
- #: wppa-settings-autosave.php:2649
8411
- msgid "User upload Photos"
8412
  msgstr ""
8413
 
8414
- #: wppa-settings-autosave.php:2650
8415
- msgid "Enable frontend upload."
8416
  msgstr ""
8417
 
8418
- #: wppa-settings-autosave.php:2651
8419
- msgid ""
8420
- "If you check this item, frontend upload will be enabled according to the "
8421
- "rules set in the following items of this table."
8422
  msgstr ""
8423
 
8424
- #: wppa-settings-autosave.php:2659
8425
- msgid "User upload Video"
8426
  msgstr ""
8427
 
8428
- #: wppa-settings-autosave.php:2660
8429
- msgid "Enable frontend upload of video."
8430
  msgstr ""
8431
 
8432
- #: wppa-settings-autosave.php:2661 wppa-settings-autosave.php:2671
8433
- msgid "Requires Table II-H1 to be ticked."
8434
  msgstr ""
8435
 
8436
- #: wppa-settings-autosave.php:2669
8437
- msgid "User upload Audio"
8438
  msgstr ""
8439
 
8440
- #: wppa-settings-autosave.php:2670
8441
- msgid "Enable frontend upload of audio."
8442
  msgstr ""
8443
 
8444
- #: wppa-settings-autosave.php:2679
8445
- msgid "User upload Photos login"
8446
  msgstr ""
8447
 
8448
- #: wppa-settings-autosave.php:2680
8449
- msgid "Frontend upload requires the user is logged in."
8450
  msgstr ""
8451
 
8452
- #: wppa-settings-autosave.php:2681
8453
- msgid ""
8454
- "If you uncheck this box, make sure you check the item Owners only in Table "
8455
- "VII-D1."
8456
  msgstr ""
8457
 
8458
- #: wppa-settings-autosave.php:2682
8459
- msgid ""
8460
- "Also: set the owner to ---public--- of the albums that are allowed to be "
8461
- "uploaded to."
8462
  msgstr ""
8463
 
8464
- #: wppa-settings-autosave.php:2689
8465
- msgid "User upload Ajax"
8466
  msgstr ""
8467
 
8468
- #: wppa-settings-autosave.php:2690
8469
- msgid "Shows the upload progression bar."
8470
  msgstr ""
8471
 
8472
- #: wppa-settings-autosave.php:2698
8473
- msgid "Show Copyright"
8474
  msgstr ""
8475
 
8476
- #: wppa-settings-autosave.php:2699
8477
- msgid "Show a copyright warning on frontend upload locations."
 
 
8478
  msgstr ""
8479
 
8480
- #: wppa-settings-autosave.php:2708
8481
- msgid "Copyright notice"
8482
  msgstr ""
8483
 
8484
- #: wppa-settings-autosave.php:2709
8485
- msgid "The message to be displayed."
8486
  msgstr ""
8487
 
8488
- #: wppa-settings-autosave.php:2717
8489
- msgid "User Watermark"
 
 
8490
  msgstr ""
8491
 
8492
- #: wppa-settings-autosave.php:2718
8493
- msgid "Uploading users may select watermark settings"
8494
  msgstr ""
8495
 
8496
- #: wppa-settings-autosave.php:2719
8497
- msgid ""
8498
- "If checked, anyone who can upload and/or import photos can overrule the "
8499
- "default watermark settings."
8500
  msgstr ""
8501
 
8502
- #: wppa-settings-autosave.php:2726
8503
- msgid "User name"
8504
  msgstr ""
8505
 
8506
- #: wppa-settings-autosave.php:2727
8507
- msgid "Uploading users may overrule the default name."
8508
  msgstr ""
8509
 
8510
- #: wppa-settings-autosave.php:2728
8511
- msgid ""
8512
- "If checked, the default photo name as defined in Table IX-D13 may be "
8513
- "overruled by the user."
8514
  msgstr ""
8515
 
8516
- #: wppa-settings-autosave.php:2735
8517
- msgid "Apply Newphoto desc user"
8518
  msgstr ""
8519
 
8520
- #: wppa-settings-autosave.php:2736
8521
- msgid "Give each new frontend uploaded photo a standard description."
8522
  msgstr ""
8523
 
8524
- #: wppa-settings-autosave.php:2737
8525
- msgid ""
8526
- "If checked, each new photo will get the description (template) as specified "
8527
- "in Table IX-D5."
8528
  msgstr ""
8529
 
8530
- #: wppa-settings-autosave.php:2744
8531
- msgid "User desc"
8532
  msgstr ""
8533
 
8534
- #: wppa-settings-autosave.php:2745
8535
- msgid "Uploading users may overrule the default description."
8536
  msgstr ""
8537
 
8538
- #: wppa-settings-autosave.php:2753
8539
- msgid "User upload custom"
8540
  msgstr ""
8541
 
8542
- #: wppa-settings-autosave.php:2754
8543
- msgid "Frontend upload can fill in custom data fields."
8544
  msgstr ""
8545
 
8546
- #: wppa-settings-autosave.php:2762
8547
- msgid "User upload tags"
8548
  msgstr ""
8549
 
8550
- #: wppa-settings-autosave.php:2763
8551
- msgid "Frontend upload can add tags."
 
8552
  msgstr ""
8553
 
8554
- #: wppa-settings-autosave.php:2764
8555
- msgid "You can configure the details of tag addition in Table IX-D18.x"
8556
  msgstr ""
8557
 
8558
- #: wppa-settings-autosave.php:2772 wppa-settings-autosave.php:2800
8559
- #: wppa-settings-autosave.php:2828
8560
- msgid "Tag selection box"
8561
  msgstr ""
8562
 
8563
- #: wppa-settings-autosave.php:2773 wppa-settings-autosave.php:2801
8564
- #: wppa-settings-autosave.php:2829
8565
- msgid "Front-end upload tags selecion box."
8566
  msgstr ""
8567
 
8568
- #: wppa-settings-autosave.php:2777 wppa-settings-autosave.php:2805
8569
- #: wppa-settings-autosave.php:2833
8570
- msgid "On:"
8571
  msgstr ""
8572
 
8573
- #: wppa-settings-autosave.php:2777 wppa-settings-autosave.php:2805
8574
- #: wppa-settings-autosave.php:2833
8575
- msgid "Multi:"
8576
  msgstr ""
8577
 
8578
- #: wppa-settings-autosave.php:2782 wppa-settings-autosave.php:2810
8579
- #: wppa-settings-autosave.php:2838
8580
- msgid "Caption box"
 
8581
  msgstr ""
8582
 
8583
- #: wppa-settings-autosave.php:2783 wppa-settings-autosave.php:2811
8584
- #: wppa-settings-autosave.php:2839
8585
- msgid "The title of the tag selection box."
 
 
 
8586
  msgstr ""
8587
 
8588
- #: wppa-settings-autosave.php:2791 wppa-settings-autosave.php:2819
8589
- #: wppa-settings-autosave.php:2847
8590
- msgid "Tags box"
 
8591
  msgstr ""
8592
 
8593
- #: wppa-settings-autosave.php:2792 wppa-settings-autosave.php:2820
8594
- #: wppa-settings-autosave.php:2848
8595
- msgid "The tags in the selection box."
8596
  msgstr ""
8597
 
8598
- #: wppa-settings-autosave.php:2793 wppa-settings-autosave.php:2821
8599
- #: wppa-settings-autosave.php:2849
8600
- msgid ""
8601
- "Enter the tags you want to appear in the selection box. Empty means: all "
8602
- "existing tags"
8603
  msgstr ""
8604
 
8605
- #: wppa-settings-autosave.php:2856
8606
- msgid "New tags"
 
8607
  msgstr ""
8608
 
8609
- #: wppa-settings-autosave.php:2857
8610
- msgid "Input field for any user defined tags."
 
8611
  msgstr ""
8612
 
8613
- #: wppa-settings-autosave.php:2865
8614
- msgid "New tags caption"
 
8615
  msgstr ""
8616
 
8617
- #: wppa-settings-autosave.php:2866
8618
- msgid "The caption above the tags input field."
8619
  msgstr ""
8620
 
8621
- #: wppa-settings-autosave.php:2874
8622
- msgid "Preview tags"
 
 
8623
  msgstr ""
8624
 
8625
- #: wppa-settings-autosave.php:2875
8626
- msgid "Show a preview of all tags that will be added to the photo info."
8627
  msgstr ""
8628
 
8629
- #: wppa-settings-autosave.php:2883
8630
- msgid "Camera connect"
8631
  msgstr ""
8632
 
8633
- #: wppa-settings-autosave.php:2884
8634
- msgid "Connect frontend upload to camara on mobile devices with camera"
8635
  msgstr ""
8636
 
8637
- #: wppa-settings-autosave.php:2893
8638
- msgid "Miscellaneous visibility settings"
8639
  msgstr ""
8640
 
8641
- #: wppa-settings-autosave.php:2895
8642
- msgid "Frontend ending label"
8643
  msgstr ""
8644
 
8645
- #: wppa-settings-autosave.php:2896
8646
- msgid "Frontend upload / create / edit dialog closing label text."
8647
  msgstr ""
8648
 
8649
- #: wppa-settings-autosave.php:2899
8650
- msgid "Abort"
8651
  msgstr ""
8652
 
8653
- #: wppa-settings-autosave.php:2899
8654
- msgid "Close"
8655
  msgstr ""
8656
 
8657
- #: wppa-settings-autosave.php:2899
8658
- msgid "Exit"
8659
  msgstr ""
8660
 
8661
- #: wppa-settings-autosave.php:2899
8662
- msgid "Quit"
8663
  msgstr ""
8664
 
8665
- #: wppa-settings-autosave.php:2907
8666
- msgid "Widget thumbs fontsize"
8667
  msgstr ""
8668
 
8669
- #: wppa-settings-autosave.php:2908
8670
- msgid "Font size for thumbnail subtext in widgets."
 
 
8671
  msgstr ""
8672
 
8673
- #: wppa-settings-autosave.php:2916
8674
- msgid "Arrow color"
8675
  msgstr ""
8676
 
8677
- #: wppa-settings-autosave.php:2917
8678
- msgid "Left/right browsing arrow color."
8679
  msgstr ""
8680
 
8681
- #: wppa-settings-autosave.php:2918
8682
- msgid "Enter the color of the filmstrip navigation arrows."
 
8683
  msgstr ""
8684
 
8685
- #: wppa-settings-autosave.php:2925
8686
- msgid "Owner on new line"
 
 
8687
  msgstr ""
8688
 
8689
- #: wppa-settings-autosave.php:2926
8690
- msgid "Place the (owner) text on a new line."
8691
  msgstr ""
8692
 
8693
- #: wppa-settings-autosave.php:2934
8694
- msgid "Custom datafields albums"
8695
  msgstr ""
8696
 
8697
- #: wppa-settings-autosave.php:2935
8698
- msgid "Define up to 10 custom data fields for albums."
8699
  msgstr ""
8700
 
8701
- #: wppa-settings-autosave.php:2945 wppa-settings-autosave.php:2971
8702
- #, php-format
8703
- msgid "Name, vis, edit %s"
8704
  msgstr ""
8705
 
8706
- #: wppa-settings-autosave.php:2946 wppa-settings-autosave.php:2972
8707
- #, php-format
8708
- msgid "The caption for field %s, visibility and editability at frontend."
8709
  msgstr ""
8710
 
8711
- #: wppa-settings-autosave.php:2947 wppa-settings-autosave.php:2973
8712
- #, php-format
8713
  msgid ""
8714
- "If you check the first box, the value of this field is displayable in photo "
8715
- "descriptions at the frontend with keyword w#c%s"
8716
  msgstr ""
8717
 
8718
- #: wppa-settings-autosave.php:2948 wppa-settings-autosave.php:2974
8719
- msgid ""
8720
- "If you check the second box, the value of this field is editable at the "
8721
- "frontend new style dialog."
8722
  msgstr ""
8723
 
8724
- #: wppa-settings-autosave.php:2960
8725
- msgid "Custom datafields photos"
8726
  msgstr ""
8727
 
8728
- #: wppa-settings-autosave.php:2961
8729
- msgid "Define up to 10 custom data fields for photos."
8730
  msgstr ""
8731
 
8732
- #: wppa-settings-autosave.php:2986
8733
- msgid "Navigation symbols for slideshows and lighbox"
8734
  msgstr ""
8735
 
8736
- #: wppa-settings-autosave.php:2988
8737
- msgid "Start symbol url"
8738
  msgstr ""
8739
 
8740
- #: wppa-settings-autosave.php:2989
8741
- msgid "Supply the url of an image for the start symbol"
8742
  msgstr ""
8743
 
8744
- #: wppa-settings-autosave.php:2997
8745
- msgid "Pause symbol url"
8746
  msgstr ""
8747
 
8748
- #: wppa-settings-autosave.php:2998
8749
- msgid "Supply the url of an image for the pause symbol"
8750
  msgstr ""
8751
 
8752
- #: wppa-settings-autosave.php:3006
8753
- msgid "Stop symbol url"
8754
  msgstr ""
8755
 
8756
- #: wppa-settings-autosave.php:3007
8757
- msgid "Supply the url of an image for the stop symbol"
8758
  msgstr ""
8759
 
8760
- #: wppa-settings-autosave.php:3015
8761
- msgid "Left (prev) symbol url"
8762
  msgstr ""
8763
 
8764
- #: wppa-settings-autosave.php:3016
8765
- msgid "Supply the url of an image for the left symbol, if not default"
8766
  msgstr ""
8767
 
8768
- #: wppa-settings-autosave.php:3024
8769
- msgid "Right (next) symbol url"
8770
  msgstr ""
8771
 
8772
- #: wppa-settings-autosave.php:3025
8773
- msgid "Supply the url of an image for the right symbol, if not default"
8774
  msgstr ""
8775
 
8776
- #: wppa-settings-autosave.php:3034
8777
- msgid "The size of the start/pause symbols."
 
 
8778
  msgstr ""
8779
 
8780
- #: wppa-settings-autosave.php:3043 wppa-settings-autosave.php:3061
8781
- msgid "The border radius if the symbol is round"
8782
  msgstr ""
8783
 
8784
- #: wppa-settings-autosave.php:3052 wppa-settings-autosave.php:3070
8785
- msgid "The size of the stop symbols."
8786
  msgstr ""
8787
 
8788
- #: wppa-settings-autosave.php:3069
8789
- msgid "Left/right symbol size"
8790
  msgstr ""
8791
 
8792
- #: wppa-settings-autosave.php:3078
8793
- msgid "Left/right symbol border radius"
8794
  msgstr ""
8795
 
8796
- #: wppa-settings-autosave.php:3079
8797
- msgid "The border radius"
8798
  msgstr ""
8799
 
8800
- #: wppa-settings-autosave.php:3106
8801
- msgid "Table III:"
8802
  msgstr ""
8803
 
8804
- #: wppa-settings-autosave.php:3106
8805
- msgid "Backgrounds:"
8806
  msgstr ""
8807
 
8808
- #: wppa-settings-autosave.php:3107
8809
- msgid "This table describes the backgrounds of wppa+ elements."
8810
  msgstr ""
8811
 
8812
- #: wppa-settings-autosave.php:3117 wppa-settings-autosave.php:3441
8813
- msgid "Background color"
 
8814
  msgstr ""
8815
 
8816
- #: wppa-settings-autosave.php:3118 wppa-settings-autosave.php:3120
8817
- #: wppa-settings-autosave.php:3442 wppa-settings-autosave.php:3444
8818
- msgid "Sample"
 
8819
  msgstr ""
8820
 
8821
- #: wppa-settings-autosave.php:3119 wppa-settings-autosave.php:3443
8822
- msgid "Border color"
8823
  msgstr ""
8824
 
8825
- #: wppa-settings-autosave.php:3128
8826
- msgid "Slideshow elements backgrounds"
8827
  msgstr ""
8828
 
8829
- #: wppa-settings-autosave.php:3130
8830
- msgid "Nav"
 
 
8831
  msgstr ""
8832
 
8833
- #: wppa-settings-autosave.php:3131
8834
- msgid "Navigation bars."
8835
  msgstr ""
8836
 
8837
- #: wppa-settings-autosave.php:3132
8838
- msgid "Enter valid CSS colors for navigation backgrounds and borders."
8839
  msgstr ""
8840
 
8841
- #: wppa-settings-autosave.php:3143
8842
- msgid "SlideImg"
 
 
8843
  msgstr ""
8844
 
8845
- #: wppa-settings-autosave.php:3144
8846
- msgid "Fullsize Slideshow Photos."
 
 
8847
  msgstr ""
8848
 
8849
- #: wppa-settings-autosave.php:3145
8850
- msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
8851
  msgstr ""
8852
 
8853
- #: wppa-settings-autosave.php:3146
8854
- msgid "The colors may be equal or \"transparent\""
8855
  msgstr ""
8856
 
8857
- #: wppa-settings-autosave.php:3147
8858
  msgid ""
8859
- "For more information about slideshow image borders see the help on Table I-B4"
 
8860
  msgstr ""
8861
 
8862
- #: wppa-settings-autosave.php:3158 wppa-settings-autosave.php:4892
8863
- msgid "Numbar"
8864
  msgstr ""
8865
 
8866
- #: wppa-settings-autosave.php:3159
8867
- msgid "Number bar box background."
8868
  msgstr ""
8869
 
8870
- #: wppa-settings-autosave.php:3160
8871
- msgid "Enter valid CSS colors for numbar box backgrounds and borders."
 
 
8872
  msgstr ""
8873
 
8874
- #: wppa-settings-autosave.php:3171
8875
- msgid "Numbar active"
8876
  msgstr ""
8877
 
8878
- #: wppa-settings-autosave.php:3172
8879
- msgid "Number bar active box background."
8880
  msgstr ""
8881
 
8882
- #: wppa-settings-autosave.php:3173
8883
- msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
 
 
8884
  msgstr ""
8885
 
8886
- #: wppa-settings-autosave.php:3184
8887
- msgid "Name/desc"
8888
  msgstr ""
8889
 
8890
- #: wppa-settings-autosave.php:3185
8891
- msgid "Name and Description bars."
8892
  msgstr ""
8893
 
8894
- #: wppa-settings-autosave.php:3186
8895
  msgid ""
8896
- "Enter valid CSS colors for name and description box backgrounds and borders."
8897
  msgstr ""
8898
 
8899
- #: wppa-settings-autosave.php:3198
8900
- msgid "Comment input and display areas."
8901
  msgstr ""
8902
 
8903
- #: wppa-settings-autosave.php:3199
8904
- msgid "Enter valid CSS colors for comment box backgrounds and borders."
8905
  msgstr ""
8906
 
8907
- #: wppa-settings-autosave.php:3210 wppa-settings-autosave.php:8497
8908
- #: wppa-settings-autosave.php:8542
8909
- msgid "Custom"
 
8910
  msgstr ""
8911
 
8912
- #: wppa-settings-autosave.php:3211
8913
- msgid "Custom box background."
8914
  msgstr ""
8915
 
8916
- #: wppa-settings-autosave.php:3212
8917
- msgid "Enter valid CSS colors for custom box backgrounds and borders."
8918
  msgstr ""
8919
 
8920
- #: wppa-settings-autosave.php:3223
8921
- msgid "IPTC"
 
 
8922
  msgstr ""
8923
 
8924
- #: wppa-settings-autosave.php:3224
8925
- msgid "IPTC display box background."
8926
  msgstr ""
8927
 
8928
- #: wppa-settings-autosave.php:3225
8929
- msgid "Enter valid CSS colors for iptc box backgrounds and borders."
8930
  msgstr ""
8931
 
8932
- #: wppa-settings-autosave.php:3236
8933
- msgid "EXIF"
 
 
8934
  msgstr ""
8935
 
8936
- #: wppa-settings-autosave.php:3237
8937
- msgid "EXIF display box background."
8938
  msgstr ""
8939
 
8940
- #: wppa-settings-autosave.php:3238
8941
- msgid "Enter valid CSS colors for exif box backgrounds and borders."
8942
  msgstr ""
8943
 
8944
- #: wppa-settings-autosave.php:3249
8945
- msgid "Share"
 
8946
  msgstr ""
8947
 
8948
- #: wppa-settings-autosave.php:3250
8949
- msgid "Share box display background."
8950
  msgstr ""
8951
 
8952
- #: wppa-settings-autosave.php:3251
8953
- msgid "Enter valid CSS colors for share box backgrounds and borders."
8954
  msgstr ""
8955
 
8956
- #: wppa-settings-autosave.php:3262
8957
- msgid "Other backgrounds"
 
 
8958
  msgstr ""
8959
 
8960
- #: wppa-settings-autosave.php:3264
8961
- msgid "Even"
8962
  msgstr ""
8963
 
8964
- #: wppa-settings-autosave.php:3265
8965
- msgid "Even background."
8966
  msgstr ""
8967
 
8968
- #: wppa-settings-autosave.php:3266
8969
  msgid ""
8970
- "Enter valid CSS colors for even numbered backgrounds and borders of album "
8971
- "covers and thumbnail displays 'As covers'."
8972
  msgstr ""
8973
 
8974
- #: wppa-settings-autosave.php:3277
8975
- msgid "Odd"
8976
  msgstr ""
8977
 
8978
- #: wppa-settings-autosave.php:3278
8979
- msgid "Odd background."
8980
  msgstr ""
8981
 
8982
- #: wppa-settings-autosave.php:3279
8983
  msgid ""
8984
- "Enter valid CSS colors for odd numbered backgrounds and borders of album "
8985
- "covers and thumbnail displays 'As covers'."
8986
  msgstr ""
8987
 
8988
- #: wppa-settings-autosave.php:3290
8989
- msgid "Thumbnail padding"
8990
  msgstr ""
8991
 
8992
- #: wppa-settings-autosave.php:3291
8993
- msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
8994
  msgstr ""
8995
 
8996
- #: wppa-settings-autosave.php:3292
8997
  msgid ""
8998
- "Enter valid CSS color hexadecimal like #000000 for black or #ffffff for "
8999
- "white for the padded thumbnails."
9000
  msgstr ""
9001
 
9002
- #: wppa-settings-autosave.php:3303
9003
- msgid "Img"
9004
  msgstr ""
9005
 
9006
- #: wppa-settings-autosave.php:3304
9007
- msgid "Cover Photos and popups."
9008
  msgstr ""
9009
 
9010
- #: wppa-settings-autosave.php:3305
9011
- msgid ""
9012
- "Enter valid CSS colors for Cover photo and popup backgrounds and borders."
9013
  msgstr ""
9014
 
9015
- #: wppa-settings-autosave.php:3317
9016
- msgid "Upload box background."
9017
  msgstr ""
9018
 
9019
- #: wppa-settings-autosave.php:3318
9020
- msgid "Enter valid CSS colors for upload box backgrounds and borders."
9021
  msgstr ""
9022
 
9023
- #: wppa-settings-autosave.php:3329
9024
- msgid "Multitag"
9025
  msgstr ""
9026
 
9027
- #: wppa-settings-autosave.php:3330
9028
- msgid "Multitag box background."
9029
  msgstr ""
9030
 
9031
- #: wppa-settings-autosave.php:3331
9032
- msgid "Enter valid CSS colors for multitag box backgrounds and borders."
9033
  msgstr ""
9034
 
9035
- #: wppa-settings-autosave.php:3342
9036
- msgid "Tagcloud"
9037
  msgstr ""
9038
 
9039
- #: wppa-settings-autosave.php:3343
9040
- msgid "Tagcloud box background."
 
9041
  msgstr ""
9042
 
9043
- #: wppa-settings-autosave.php:3344
9044
- msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
9045
  msgstr ""
9046
 
9047
- #: wppa-settings-autosave.php:3355
9048
- msgid "Superview"
9049
  msgstr ""
9050
 
9051
- #: wppa-settings-autosave.php:3356
9052
- msgid "Superview box background."
9053
  msgstr ""
9054
 
9055
- #: wppa-settings-autosave.php:3357
9056
- msgid "Enter valid CSS colors for superview box backgrounds and borders."
9057
  msgstr ""
9058
 
9059
- #: wppa-settings-autosave.php:3369
9060
- msgid "Search box background."
 
 
9061
  msgstr ""
9062
 
9063
- #: wppa-settings-autosave.php:3370
9064
- msgid "Enter valid CSS colors for search box backgrounds and borders."
9065
  msgstr ""
9066
 
9067
- #: wppa-settings-autosave.php:3381
9068
- msgid "BestOf"
9069
  msgstr ""
9070
 
9071
- #: wppa-settings-autosave.php:3382
9072
- msgid "BestOf box background."
9073
  msgstr ""
9074
 
9075
- #: wppa-settings-autosave.php:3383
9076
- msgid "Enter valid CSS colors for bestof box backgrounds and borders."
 
 
9077
  msgstr ""
9078
 
9079
- #: wppa-settings-autosave.php:3394
9080
- msgid "Calendar"
9081
  msgstr ""
9082
 
9083
- #: wppa-settings-autosave.php:3395
9084
- msgid "Calendar box background."
9085
  msgstr ""
9086
 
9087
- #: wppa-settings-autosave.php:3396
9088
- msgid "Enter valid CSS colors for calendar box backgrounds and borders."
9089
  msgstr ""
9090
 
9091
- #: wppa-settings-autosave.php:3407
9092
- msgid "Stereo"
9093
  msgstr ""
9094
 
9095
- #: wppa-settings-autosave.php:3408
9096
- msgid "Stereo mode selection box background."
9097
  msgstr ""
9098
 
9099
- #: wppa-settings-autosave.php:3409
9100
- msgid ""
9101
- "Enter valid CSS colors for stereo mode selection box backgrounds and borders."
9102
  msgstr ""
9103
 
9104
- #: wppa-settings-autosave.php:3420
9105
- msgid "Admins choice"
9106
  msgstr ""
9107
 
9108
- #: wppa-settings-autosave.php:3421
9109
- msgid "Admins choice box background."
 
 
9110
  msgstr ""
9111
 
9112
- #: wppa-settings-autosave.php:3422
9113
- msgid "Enter valid CSS colors for admins choice box backgrounds and borders."
 
 
9114
  msgstr ""
9115
 
9116
- #: wppa-settings-autosave.php:3454
9117
- msgid "Table IV:"
9118
  msgstr ""
9119
 
9120
- #: wppa-settings-autosave.php:3454
9121
- msgid "Behaviour:"
9122
  msgstr ""
9123
 
9124
- #: wppa-settings-autosave.php:3455
9125
- msgid "This table describes the dynamic behaviour of certain wppa+ elements."
9126
  msgstr ""
9127
 
9128
- #: wppa-settings-autosave.php:3473
9129
- msgid "System related settings"
9130
  msgstr ""
9131
 
9132
- #: wppa-settings-autosave.php:3475
9133
- msgid "Use Ajax"
9134
  msgstr ""
9135
 
9136
- #: wppa-settings-autosave.php:3476
9137
- msgid "Use Ajax as much as is possible and implemented."
9138
  msgstr ""
9139
 
9140
- #: wppa-settings-autosave.php:3477
9141
- msgid ""
9142
- "If this box is ticked, page content updates from within wppa+ displays will "
9143
- "be Ajax based as much as possible."
9144
  msgstr ""
9145
 
9146
- #: wppa-settings-autosave.php:3485
9147
- msgid "Ajax NON Admin"
9148
  msgstr ""
9149
 
9150
- #: wppa-settings-autosave.php:3486
9151
- msgid "Frontend ajax use no admin files."
 
 
9152
  msgstr ""
9153
 
9154
- #: wppa-settings-autosave.php:3487
9155
- msgid "If you want to password protect wp-admin, check this box."
9156
  msgstr ""
9157
 
9158
- #: wppa-settings-autosave.php:3488
9159
- msgid ""
9160
- "In rare cases changing page content does not work when this box is checked. "
9161
- "Verify the functionality!"
9162
  msgstr ""
9163
 
9164
- #: wppa-settings-autosave.php:3495
9165
- msgid "Photo names in urls"
 
 
9166
  msgstr ""
9167
 
9168
- #: wppa-settings-autosave.php:3496
9169
- msgid "Display photo names in urls."
9170
  msgstr ""
9171
 
9172
- #: wppa-settings-autosave.php:3497
9173
- msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
9174
  msgstr ""
9175
 
9176
- #: wppa-settings-autosave.php:3498
9177
  msgid ""
9178
- "It is your responsability to avoid duplicate names of photos in the same "
9179
- "album."
9180
  msgstr ""
9181
 
9182
- #: wppa-settings-autosave.php:3505
9183
- msgid "Album names in urls"
9184
  msgstr ""
9185
 
9186
- #: wppa-settings-autosave.php:3506
9187
- msgid "Display album names in urls."
9188
  msgstr ""
9189
 
9190
- #: wppa-settings-autosave.php:3507
9191
- msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
9192
  msgstr ""
9193
 
9194
- #: wppa-settings-autosave.php:3508
9195
- msgid ""
9196
- "It is your responsability to avoid duplicate names of albums in the system."
9197
  msgstr ""
9198
 
9199
- #: wppa-settings-autosave.php:3515
9200
- msgid "Use short query args"
9201
  msgstr ""
9202
 
9203
- #: wppa-settings-autosave.php:3516
9204
- msgid "Use &album=... &photo=..."
9205
  msgstr ""
9206
 
9207
- #: wppa-settings-autosave.php:3517
9208
- msgid ""
9209
- "Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
9210
- "album=... &wppa-photo=..."
9211
  msgstr ""
9212
 
9213
- #: wppa-settings-autosave.php:3518
9214
- msgid ""
9215
- "Use this setting only when there are no conflicts with other plugins that "
9216
- "may interprete arguments like &album= etc."
9217
  msgstr ""
9218
 
9219
- #: wppa-settings-autosave.php:3525
9220
- msgid "Enable pretty links"
 
9221
  msgstr ""
9222
 
9223
- #: wppa-settings-autosave.php:3526
9224
- msgid "Enable the generation and understanding of pretty links."
 
9225
  msgstr ""
9226
 
9227
- #: wppa-settings-autosave.php:3527
9228
- msgid ""
9229
- "If checked, links to social media and the qr code will have \"/token1/token2/"
9230
- "\" etc in stead of \"&arg1=..&arg2=..\" etc."
9231
  msgstr ""
9232
 
9233
- #: wppa-settings-autosave.php:3528
9234
- msgid ""
9235
- "These types of links will be interpreted and cause a redirection on entering."
9236
  msgstr ""
9237
 
9238
- #: wppa-settings-autosave.php:3529
9239
- msgid ""
9240
- "It is recommended to check this box. It shortens links dramatically and "
9241
- "simplifies qr codes."
9242
  msgstr ""
9243
 
9244
- #: wppa-settings-autosave.php:3530
9245
- msgid ""
9246
- "However, you may encounter conflicts with themes and/or other plugins, so "
9247
- "test it troughly!"
9248
  msgstr ""
9249
 
9250
- #: wppa-settings-autosave.php:3531
9251
- msgid ""
9252
- "Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
9253
  msgstr ""
9254
 
9255
- #: wppa-settings-autosave.php:3538
9256
- msgid "Enable encrypted links"
 
 
 
9257
  msgstr ""
9258
 
9259
- #: wppa-settings-autosave.php:3539
9260
- msgid "Encrypt album and photo ids in links."
9261
  msgstr ""
9262
 
9263
- #: wppa-settings-autosave.php:3542
9264
- msgid "The page will be reloaded."
9265
  msgstr ""
9266
 
9267
- #: wppa-settings-autosave.php:3548
9268
- msgid "Refuse unencrypted"
9269
  msgstr ""
9270
 
9271
- #: wppa-settings-autosave.php:3549
9272
- msgid "When encrypted is enabled, refuse unencrypted urls."
9273
  msgstr ""
9274
 
9275
- #: wppa-settings-autosave.php:3557
9276
- msgid "Update addressline"
9277
  msgstr ""
9278
 
9279
- #: wppa-settings-autosave.php:3558
9280
- msgid "Update the addressline after an ajax action or next slide."
9281
  msgstr ""
9282
 
9283
- #: wppa-settings-autosave.php:3559
9284
- msgid ""
9285
- "If checked, refreshing the page will show the current content and the "
9286
- "browsers back and forth arrows will browse the history on the page."
9287
  msgstr ""
9288
 
9289
- #: wppa-settings-autosave.php:3560
9290
- msgid ""
9291
- "If unchecked, refreshing the page will re-display the content of the "
9292
- "original page."
9293
  msgstr ""
9294
 
9295
- #: wppa-settings-autosave.php:3561
9296
- msgid ""
9297
- "This will only work on browsers that support history.pushState() and "
9298
- "therefor NOT in IE"
9299
  msgstr ""
9300
 
9301
- #: wppa-settings-autosave.php:3562
9302
- msgid "Switching this off will affect the browsers behaviour."
9303
  msgstr ""
9304
 
9305
- #: wppa-settings-autosave.php:3569
9306
- msgid "Render shortcode always"
9307
  msgstr ""
9308
 
9309
- #: wppa-settings-autosave.php:3570
9310
- msgid "This will skip the check on proper initialisation."
9311
  msgstr ""
9312
 
9313
- #: wppa-settings-autosave.php:3571
9314
- msgid ""
9315
- "This setting is required for certain themes like Gantry to prevent the "
9316
- "display of wppa placeholders like [WPPA+ Photo display]."
9317
  msgstr ""
9318
 
9319
- #: wppa-settings-autosave.php:3572
9320
- #, php-format
9321
- msgid ""
9322
- "If this check is needed, you can use shortcodes like [wppa ...] only, not "
9323
- "scripts like %%wppa%%."
9324
  msgstr ""
9325
 
9326
- #: wppa-settings-autosave.php:3579
9327
- msgid "Track viewcounts"
9328
  msgstr ""
9329
 
9330
- #: wppa-settings-autosave.php:3580
9331
- msgid "Register number of views of albums and photos."
9332
  msgstr ""
9333
 
9334
- #: wppa-settings-autosave.php:3588
9335
- msgid "Auto page"
9336
  msgstr ""
9337
 
9338
- #: wppa-settings-autosave.php:3589
9339
- msgid "Create a wp page for every fullsize image."
9340
  msgstr ""
9341
 
9342
- #: wppa-settings-autosave.php:3593
9343
- msgid "Please reload this page after changing!"
9344
  msgstr ""
9345
 
9346
- #: wppa-settings-autosave.php:3599
9347
- msgid "Auto page display"
9348
  msgstr ""
9349
 
9350
- #: wppa-settings-autosave.php:3600
9351
- msgid "The type of display on the autopage pages."
9352
  msgstr ""
9353
 
9354
- #: wppa-settings-autosave.php:3603
9355
- msgid "Single photo"
9356
  msgstr ""
9357
 
9358
- #: wppa-settings-autosave.php:3603
9359
- msgid "Media type photo"
9360
  msgstr ""
9361
 
9362
- #: wppa-settings-autosave.php:3603
9363
- msgid "In the style of a slideshow"
9364
  msgstr ""
9365
 
9366
- #: wppa-settings-autosave.php:3610
9367
- msgid "Auto page links"
9368
  msgstr ""
9369
 
9370
- #: wppa-settings-autosave.php:3611
9371
- msgid "The location for the pagelinks."
9372
  msgstr ""
9373
 
9374
- #: wppa-settings-autosave.php:3614
9375
- msgid "At top and bottom"
9376
  msgstr ""
9377
 
9378
- #: wppa-settings-autosave.php:3621
9379
- msgid "Defer javascript"
9380
  msgstr ""
9381
 
9382
- #: wppa-settings-autosave.php:3622
9383
- msgid "Put javascript near the end of the page."
9384
  msgstr ""
9385
 
9386
- #: wppa-settings-autosave.php:3623
9387
- msgid ""
9388
- "If checkd: May fix layout problems and broken slideshows. May speed up or "
9389
- "slow down page appearing."
9390
  msgstr ""
9391
 
9392
- #: wppa-settings-autosave.php:3630
9393
- msgid "Inline styles"
9394
  msgstr ""
9395
 
9396
- #: wppa-settings-autosave.php:3631
9397
- msgid "Set style specifications inline."
9398
  msgstr ""
9399
 
9400
- #: wppa-settings-autosave.php:3632
9401
- msgid "If checked: May fix layout problems, but slows down page appearing."
 
9402
  msgstr ""
9403
 
9404
- #: wppa-settings-autosave.php:3639
9405
- msgid "Custom style"
 
9406
  msgstr ""
9407
 
9408
- #: wppa-settings-autosave.php:3640
9409
- msgid "Enter custom style specs here."
 
 
 
9410
  msgstr ""
9411
 
9412
- #: wppa-settings-autosave.php:3648
9413
- msgid "Use customized style file"
 
 
9414
  msgstr ""
9415
 
9416
- #: wppa-settings-autosave.php:3649 wppa-settings-autosave.php:3658
9417
- msgid "This feature is highly discouraged."
9418
  msgstr ""
9419
 
9420
- #: wppa-settings-autosave.php:3657
9421
- msgid "Use customized theme file"
9422
  msgstr ""
9423
 
9424
- #: wppa-settings-autosave.php:3666
9425
- msgid "Enable photo html access"
9426
  msgstr ""
9427
 
9428
- #: wppa-settings-autosave.php:3667
9429
- msgid ""
9430
- "Creates .htaccess files in .../uploads/wppa/ and .../uploads/wppa/thumbs/"
9431
  msgstr ""
9432
 
9433
- #: wppa-settings-autosave.php:3670
9434
- msgid "create 'all access' .htaccess files"
9435
  msgstr ""
9436
 
9437
- #: wppa-settings-autosave.php:3671
9438
- msgid "remove .htaccess files"
9439
  msgstr ""
9440
 
9441
- #: wppa-settings-autosave.php:3672
9442
- msgid "create 'no hotlinking' .htaccess files"
9443
  msgstr ""
9444
 
9445
- #: wppa-settings-autosave.php:3673
9446
- msgid "do not change existing .htaccess file(s)"
9447
  msgstr ""
9448
 
9449
- #: wppa-settings-autosave.php:3685
9450
- msgid "Lazy or HTML comp"
9451
  msgstr ""
9452
 
9453
- #: wppa-settings-autosave.php:3686
9454
- msgid "Tick this box when you use lazy load or html compression."
9455
  msgstr ""
9456
 
9457
- #: wppa-settings-autosave.php:3687
9458
- msgid ""
9459
- "If the filmstrip images do not show up and you have a lazy load or html "
9460
- "optimizing plugin active: Check this box"
9461
  msgstr ""
9462
 
9463
- #: wppa-settings-autosave.php:3694
9464
- msgid "Thumbs first"
9465
  msgstr ""
9466
 
9467
- #: wppa-settings-autosave.php:3695
9468
- msgid "When displaying album content: thumbnails before subalbums."
9469
  msgstr ""
9470
 
9471
- #: wppa-settings-autosave.php:3703
9472
- msgid "Login links"
9473
  msgstr ""
9474
 
9475
- #: wppa-settings-autosave.php:3704
9476
- msgid "You must login to... links to login page."
9477
  msgstr ""
9478
 
9479
- #: wppa-settings-autosave.php:3712
9480
- msgid "Enable Video"
9481
  msgstr ""
9482
 
9483
- #: wppa-settings-autosave.php:3713
9484
- msgid "Enables video support."
9485
  msgstr ""
9486
 
9487
- #: wppa-settings-autosave.php:3722
9488
- msgid "Enable Audio"
9489
  msgstr ""
9490
 
9491
- #: wppa-settings-autosave.php:3723
9492
- msgid "Enables audio support."
9493
  msgstr ""
9494
 
9495
- #: wppa-settings-autosave.php:3731
9496
- msgid "Enable 3D Stereo"
9497
  msgstr ""
9498
 
9499
- #: wppa-settings-autosave.php:3732
9500
- msgid "Enables 3D stereo photo support."
9501
  msgstr ""
9502
 
9503
- #: wppa-settings-autosave.php:3740
9504
- msgid "Relative urls"
9505
  msgstr ""
9506
 
9507
- #: wppa-settings-autosave.php:3741
9508
- msgid "Use relative urls only."
9509
  msgstr ""
9510
 
9511
- #: wppa-settings-autosave.php:3749
9512
- msgid "Capitalize tags and cats"
 
9513
  msgstr ""
9514
 
9515
- #: wppa-settings-autosave.php:3750
9516
- msgid "Format tags and cats to start with one capital character"
9517
  msgstr ""
9518
 
9519
- #: wppa-settings-autosave.php:3758
9520
- msgid "Enable Admins Choice"
9521
  msgstr ""
9522
 
9523
- #: wppa-settings-autosave.php:3759
9524
- msgid "Enable the creation of zipfiles with selected photos."
9525
  msgstr ""
9526
 
9527
- #: wppa-settings-autosave.php:3760
9528
- msgid "Activate the Admins Choice widget to make the zipfiles downloadable."
9529
  msgstr ""
9530
 
9531
- #: wppa-settings-autosave.php:3767
9532
- msgid "Make owner like photoname"
9533
  msgstr ""
9534
 
9535
- #: wppa-settings-autosave.php:3768
9536
- msgid "Change the owner to the user who's display name equals photoname."
9537
  msgstr ""
9538
 
9539
- #: wppa-settings-autosave.php:3777
9540
- msgid "Slideshow related settings"
9541
  msgstr ""
9542
 
9543
- #: wppa-settings-autosave.php:3779
9544
- msgid "V align"
9545
  msgstr ""
9546
 
9547
- #: wppa-settings-autosave.php:3780
9548
- msgid "Vertical alignment of slideshow images."
9549
  msgstr ""
9550
 
9551
- #: wppa-settings-autosave.php:3781
9552
- msgid "Specify the vertical alignment of slideshow images."
 
9553
  msgstr ""
9554
 
9555
- #: wppa-settings-autosave.php:3782
9556
- msgid ""
9557
- "If you select --- none ---, the photos will not be centered horizontally "
9558
- "either."
9559
  msgstr ""
9560
 
9561
- #: wppa-settings-autosave.php:3784 wppa-settings-autosave.php:4049
9562
- #: wppa-slideshow-widget.php:214
9563
- msgid "top"
9564
  msgstr ""
9565
 
9566
- #: wppa-settings-autosave.php:3784 wppa-settings-autosave.php:3798
9567
- #: wppa-settings-autosave.php:4049 wppa-slideshow-widget.php:215
9568
- #: wppa-tinymce-scripts.php:289 wppa-tinymce-shortcodes.php:615
9569
- #: wppa-widget-admin.php:92
9570
- msgid "center"
9571
  msgstr ""
9572
 
9573
- #: wppa-settings-autosave.php:3784 wppa-settings-autosave.php:4049
9574
- #: wppa-slideshow-widget.php:216
9575
- msgid "bottom"
9576
  msgstr ""
9577
 
9578
- #: wppa-settings-autosave.php:3784 wppa-slideshow-widget.php:217
9579
- msgid "fit"
9580
  msgstr ""
9581
 
9582
- #: wppa-settings-autosave.php:3792
9583
- msgid "H align"
9584
  msgstr ""
9585
 
9586
- #: wppa-settings-autosave.php:3793
9587
- msgid "Horizontal alignment of slideshow images."
9588
  msgstr ""
9589
 
9590
- #: wppa-settings-autosave.php:3794
9591
- msgid ""
9592
- "Specify the horizontal alignment of slideshow images. If you specify --- "
9593
- "none --- , no horizontal alignment will take place."
9594
  msgstr ""
9595
 
9596
- #: wppa-settings-autosave.php:3795
9597
  msgid ""
9598
- "This setting is only usefull when the Column Width differs from the Maximum "
9599
- "Width."
9600
- msgstr ""
9601
-
9602
- #: wppa-settings-autosave.php:3796
9603
- msgid "(Settings I-A1 and I-B1)"
9604
  msgstr ""
9605
 
9606
- #: wppa-settings-autosave.php:3806
9607
- msgid "Start slideshow running."
9608
  msgstr ""
9609
 
9610
- #: wppa-settings-autosave.php:3807
9611
- msgid ""
9612
- "If you select \"running\", the slideshow will start running immediately, if "
9613
- "you select \"still at first photo\", the first photo will be displayed in "
9614
- "browse mode."
9615
  msgstr ""
9616
 
9617
- #: wppa-settings-autosave.php:3808
9618
- msgid ""
9619
- "If you select \"still at first norated\", the first photo that the visitor "
9620
- "did not gave a rating will be displayed in browse mode."
9621
  msgstr ""
9622
 
9623
- #: wppa-settings-autosave.php:3810
9624
- msgid "running"
9625
  msgstr ""
9626
 
9627
- #: wppa-settings-autosave.php:3811
9628
- msgid "still at first photo"
9629
  msgstr ""
9630
 
9631
- #: wppa-settings-autosave.php:3812
9632
- msgid "still at first norated"
9633
  msgstr ""
9634
 
9635
- #: wppa-settings-autosave.php:3823
9636
- msgid "Start slideonly"
9637
  msgstr ""
9638
 
9639
- #: wppa-settings-autosave.php:3824
9640
- msgid "Start slideonly slideshow running."
9641
  msgstr ""
9642
 
9643
- #: wppa-settings-autosave.php:3832 wppa-settings-autosave.php:4706
9644
- msgid "Video autostart"
9645
  msgstr ""
9646
 
9647
- #: wppa-settings-autosave.php:3833
9648
- msgid "Autoplay videos in slideshows."
9649
  msgstr ""
9650
 
9651
- #: wppa-settings-autosave.php:3842 wppa-settings-autosave.php:4715
9652
- msgid "Audio autostart"
9653
  msgstr ""
9654
 
9655
- #: wppa-settings-autosave.php:3843
9656
- msgid "Autoplay audios in slideshows."
9657
  msgstr ""
9658
 
9659
- #: wppa-settings-autosave.php:3851
9660
- msgid "Animation type"
9661
  msgstr ""
9662
 
9663
- #: wppa-settings-autosave.php:3852
9664
- msgid "The way successive slides appear."
9665
  msgstr ""
9666
 
9667
- #: wppa-settings-autosave.php:3853
9668
- msgid ""
9669
- "Select the way the old slide is to be replaced by the new one in the "
9670
- "slideshow/browse fullsize display."
9671
  msgstr ""
9672
 
9673
- #: wppa-settings-autosave.php:3855
9674
- msgid "Fade out and in simultaneous"
9675
  msgstr ""
9676
 
9677
- #: wppa-settings-autosave.php:3856
9678
- msgid "Fade in after fade out"
9679
  msgstr ""
9680
 
9681
- #: wppa-settings-autosave.php:3857
9682
- msgid "Shift adjacent"
 
 
9683
  msgstr ""
9684
 
9685
- #: wppa-settings-autosave.php:3858
9686
- msgid "Stack on"
9687
  msgstr ""
9688
 
9689
- #: wppa-settings-autosave.php:3859
9690
- msgid "Stack off"
9691
  msgstr ""
9692
 
9693
- #: wppa-settings-autosave.php:3860
9694
- msgid "Turn over"
 
 
9695
  msgstr ""
9696
 
9697
- #: wppa-settings-autosave.php:3874
9698
- msgid "Timeout"
9699
  msgstr ""
9700
 
9701
- #: wppa-settings-autosave.php:3875
9702
- msgid "Slideshow timeout."
9703
  msgstr ""
9704
 
9705
- #: wppa-settings-autosave.php:3876
9706
  msgid ""
9707
- "Select the time a single slide will be visible when the slideshow is started."
 
9708
  msgstr ""
9709
 
9710
- #: wppa-settings-autosave.php:3885
9711
- msgid "Speed"
9712
  msgstr ""
9713
 
9714
- #: wppa-settings-autosave.php:3886
9715
- msgid "Slideshow animation speed."
9716
  msgstr ""
9717
 
9718
- #: wppa-settings-autosave.php:3887
9719
- msgid "Specify the animation speed to be used in slideshows."
 
9720
  msgstr ""
9721
 
9722
- #: wppa-settings-autosave.php:3888
9723
- msgid "This is the time it takes a photo to fade in or out."
9724
  msgstr ""
9725
 
9726
- #: wppa-settings-autosave.php:3890 wppa-settings-autosave.php:4244
9727
- #: wppa-settings-autosave.php:4652 wppa-settings-autosave.php:6481
9728
- #: wppa-settings-autosave.php:7594 wppa-settings-autosave.php:7605
9729
- #: wppa-settings-autosave.php:7767
9730
- msgid "--- off ---"
9731
  msgstr ""
9732
 
9733
- #: wppa-settings-autosave.php:3890
9734
- msgid "very fast (200 ms.)"
9735
  msgstr ""
9736
 
9737
- #: wppa-settings-autosave.php:3890
9738
- msgid "fast (400 ms.)"
9739
  msgstr ""
9740
 
9741
- #: wppa-settings-autosave.php:3890
9742
- msgid "normal (800 ms.)"
9743
  msgstr ""
9744
 
9745
- #: wppa-settings-autosave.php:3890
9746
- msgid "slow (1.2 s.)"
9747
  msgstr ""
9748
 
9749
- #: wppa-settings-autosave.php:3890
9750
- msgid "very slow (2 s.)"
9751
  msgstr ""
9752
 
9753
- #: wppa-settings-autosave.php:3890
9754
- msgid "extremely slow (4 s.)"
9755
  msgstr ""
9756
 
9757
- #: wppa-settings-autosave.php:3897
9758
- msgid "Slide hover pause"
9759
  msgstr ""
9760
 
9761
- #: wppa-settings-autosave.php:3898
9762
- msgid "Running Slideshow suspends during mouse hover."
9763
  msgstr ""
9764
 
9765
- #: wppa-settings-autosave.php:3906
9766
- msgid "Slideshow wrap around"
9767
  msgstr ""
9768
 
9769
- #: wppa-settings-autosave.php:3907
9770
- msgid "The slideshow wraps around the start and end"
9771
  msgstr ""
9772
 
9773
- #: wppa-settings-autosave.php:3915
9774
- msgid "Full desc align"
9775
  msgstr ""
9776
 
9777
- #: wppa-settings-autosave.php:3916
9778
- msgid "The alignment of the descriptions under fullsize images and slideshows."
9779
  msgstr ""
9780
 
9781
- #: wppa-settings-autosave.php:3919 wppa-settings-autosave.php:4037
9782
- #: wppa-settings-autosave.php:4140
9783
- msgid "Left"
9784
  msgstr ""
9785
 
9786
- #: wppa-settings-autosave.php:3919
9787
- msgid "Center"
9788
  msgstr ""
9789
 
9790
- #: wppa-settings-autosave.php:3919 wppa-settings-autosave.php:4037
9791
- #: wppa-settings-autosave.php:4140
9792
- msgid "Right"
9793
  msgstr ""
9794
 
9795
- #: wppa-settings-autosave.php:3926
9796
- msgid "Remove redundant space"
9797
  msgstr ""
9798
 
9799
- #: wppa-settings-autosave.php:3927
9800
- msgid "Removes unwanted &lt;p> and &lt;br> tags in fullsize descriptions."
9801
  msgstr ""
9802
 
9803
- #: wppa-settings-autosave.php:3928
9804
- msgid ""
9805
- "This setting has only effect when Table IX-A7 (foreign shortcodes) is "
9806
- "checked."
9807
  msgstr ""
9808
 
9809
- #: wppa-settings-autosave.php:3935
9810
- msgid "Run wpautop on description"
9811
  msgstr ""
9812
 
9813
- #: wppa-settings-autosave.php:3936
9814
- msgid "Adds &lt;p> and &lt;br> tags in fullsize descriptions."
 
9815
  msgstr ""
9816
 
9817
- #: wppa-settings-autosave.php:3944
9818
- msgid "Auto open comments"
9819
  msgstr ""
9820
 
9821
- #: wppa-settings-autosave.php:3945
9822
- msgid "Automatic opens comments box when slideshow does not run."
9823
  msgstr ""
9824
 
9825
- #: wppa-settings-autosave.php:3953
9826
- msgid "Film hover goto"
9827
  msgstr ""
9828
 
9829
- #: wppa-settings-autosave.php:3954
9830
- msgid "Go to slide when hovering filmstrip thumbnail."
9831
  msgstr ""
9832
 
9833
- #: wppa-settings-autosave.php:3955
9834
- msgid "Do not use this setting when slides have different aspect ratios!"
9835
  msgstr ""
9836
 
9837
- #: wppa-settings-autosave.php:3962
9838
- msgid "Slide swipe"
9839
  msgstr ""
9840
 
9841
- #: wppa-settings-autosave.php:3963
9842
- msgid "Enable touch events swipe left-right on slides on touch screens."
9843
  msgstr ""
9844
 
9845
- #: wppa-settings-autosave.php:3971
9846
- msgid "Slide page Ajax"
9847
  msgstr ""
9848
 
9849
- #: wppa-settings-autosave.php:3972
9850
- msgid "Pagelinks slideshow use Ajax"
9851
  msgstr ""
9852
 
9853
- #: wppa-settings-autosave.php:3973
9854
- msgid "On some systems you need to disable ajax here."
9855
  msgstr ""
9856
 
9857
- #: wppa-settings-autosave.php:3980
9858
- msgid "Thumbnail related settings"
9859
  msgstr ""
9860
 
9861
- #: wppa-settings-autosave.php:3983
9862
- msgid "Photo ordering sequence method."
9863
  msgstr ""
9864
 
9865
- #: wppa-settings-autosave.php:3984
9866
  msgid ""
9867
- "Specify the way the photos should be ordered. This is the default setting. "
9868
- "You can overrule the default sorting order on a per album basis."
9869
  msgstr ""
9870
 
9871
- #: wppa-settings-autosave.php:4021
9872
- msgid "Thumbnail type"
9873
  msgstr ""
9874
 
9875
- #: wppa-settings-autosave.php:4022
9876
- msgid "The way the thumbnail images are displayed."
9877
  msgstr ""
9878
 
9879
- #: wppa-settings-autosave.php:4023
9880
- msgid ""
9881
- "You may select an altenative display method for thumbnails. Note that some "
9882
- "of the thumbnail settings do not apply to all available display methods."
9883
  msgstr ""
9884
 
9885
- #: wppa-settings-autosave.php:4025
9886
- msgid "like album covers"
 
 
9887
  msgstr ""
9888
 
9889
- #: wppa-settings-autosave.php:4025
9890
- msgid "like album covers mcr"
9891
  msgstr ""
9892
 
9893
- #: wppa-settings-autosave.php:4025
9894
- msgid "masonry style columns"
9895
  msgstr ""
9896
 
9897
- #: wppa-settings-autosave.php:4025
9898
- msgid "masonry style rows"
9899
  msgstr ""
9900
 
9901
- #: wppa-settings-autosave.php:4033 wppa-settings-autosave.php:4134
9902
- msgid "Placement"
9903
  msgstr ""
9904
 
9905
- #: wppa-settings-autosave.php:4034
9906
- msgid "Thumbnail image left or right."
9907
  msgstr ""
9908
 
9909
- #: wppa-settings-autosave.php:4035
9910
- msgid "Indicate the placement position of the thumbnailphoto you wish."
 
 
9911
  msgstr ""
9912
 
9913
- #: wppa-settings-autosave.php:4044
9914
- msgid "Vertical alignment"
9915
  msgstr ""
9916
 
9917
- #: wppa-settings-autosave.php:4045
9918
- msgid "Vertical alignment of thumbnails."
9919
  msgstr ""
9920
 
9921
- #: wppa-settings-autosave.php:4046
9922
- msgid ""
9923
- "Specify the vertical alignment of thumbnail images. Use this setting when "
9924
- "albums contain both portrait and landscape photos."
9925
  msgstr ""
9926
 
9927
- #: wppa-settings-autosave.php:4047
9928
  msgid ""
9929
- "It is NOT recommended to use the value --- default ---; it will affect the "
9930
- "horizontal alignment also and is meant to be used with custom css."
9931
  msgstr ""
9932
 
9933
- #: wppa-settings-autosave.php:4056
9934
- msgid "Thumb mouseover"
9935
  msgstr ""
9936
 
9937
- #: wppa-settings-autosave.php:4057
9938
- msgid "Apply thumbnail mouseover effect."
9939
  msgstr ""
9940
 
9941
- #: wppa-settings-autosave.php:4058
9942
- msgid "Check this box to use mouseover effect on thumbnail images."
 
 
9943
  msgstr ""
9944
 
9945
- #: wppa-settings-autosave.php:4066
9946
- msgid "Thumb opacity"
 
 
9947
  msgstr ""
9948
 
9949
- #: wppa-settings-autosave.php:4067 wppa-settings-autosave.php:4159
9950
- msgid "Initial opacity value."
9951
  msgstr ""
9952
 
9953
- #: wppa-settings-autosave.php:4068 wppa-settings-autosave.php:4160
9954
- #: wppa-settings-autosave.php:4290
9955
- msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
9956
  msgstr ""
9957
 
9958
- #: wppa-settings-autosave.php:4070 wppa-settings-autosave.php:4162
9959
- #: wppa-settings-autosave.php:4293 wppa-settings-autosave.php:4632
9960
- msgid "%"
 
9961
  msgstr ""
9962
 
9963
- #: wppa-settings-autosave.php:4075
9964
- msgid "Thumb popup"
 
9965
  msgstr ""
9966
 
9967
- #: wppa-settings-autosave.php:4076
9968
- msgid "Use popup effect on thumbnail images."
 
 
9969
  msgstr ""
9970
 
9971
- #: wppa-settings-autosave.php:4077
9972
- msgid "Thumbnails pop-up to a larger image when hovered."
 
 
9973
  msgstr ""
9974
 
9975
- #: wppa-settings-autosave.php:4085
9976
- msgid "Align subtext"
 
9977
  msgstr ""
9978
 
9979
- #: wppa-settings-autosave.php:4086
9980
- msgid "Set thumbnail subtext on equal height."
9981
  msgstr ""
9982
 
9983
- #: wppa-settings-autosave.php:4094
9984
- msgid "Album and covers related settings"
9985
  msgstr ""
9986
 
9987
- #: wppa-settings-autosave.php:4096
9988
- msgid "Album order"
9989
  msgstr ""
9990
 
9991
- #: wppa-settings-autosave.php:4097
9992
- msgid "Album ordering sequence method."
9993
  msgstr ""
9994
 
9995
- #: wppa-settings-autosave.php:4098
9996
- msgid "Specify the way the albums should be ordered."
9997
  msgstr ""
9998
 
9999
- #: wppa-settings-autosave.php:4123
10000
- msgid "Default coverphoto selection"
10001
  msgstr ""
10002
 
10003
- #: wppa-settings-autosave.php:4124
10004
- msgid "Default select cover photo method."
10005
  msgstr ""
10006
 
10007
- #: wppa-settings-autosave.php:4125
10008
  msgid ""
10009
- "This is the initial value on album creation only. It can be overruled on the "
10010
- "edit album page."
10011
- msgstr ""
10012
-
10013
- #: wppa-settings-autosave.php:4126
10014
- msgid "Random from album"
10015
  msgstr ""
10016
 
10017
- #: wppa-settings-autosave.php:4126
10018
- msgid "Random featured from album"
 
 
10019
  msgstr ""
10020
 
10021
- #: wppa-settings-autosave.php:4126
10022
- msgid "Most recently added to album"
 
 
10023
  msgstr ""
10024
 
10025
- #: wppa-settings-autosave.php:4126
10026
- msgid "Random from album or any sub album"
10027
  msgstr ""
10028
 
10029
- #: wppa-settings-autosave.php:4135
10030
- msgid "Cover image position."
10031
  msgstr ""
10032
 
10033
- #: wppa-settings-autosave.php:4136
10034
- msgid ""
10035
- "Enter the position that you want to be used for the default album cover "
10036
- "selected in Table IV-D6."
10037
  msgstr ""
10038
 
10039
- #: wppa-settings-autosave.php:4137
10040
  msgid ""
10041
- "For covertype Image Factory: left will be treated as top and right will be "
10042
- "treted as bottom."
10043
  msgstr ""
10044
 
10045
- #: wppa-settings-autosave.php:4138
10046
- msgid ""
10047
- "For covertype Long Descriptions: top will be treated as left and bottom will "
10048
- "be treted as right."
10049
  msgstr ""
10050
 
10051
- #: wppa-settings-autosave.php:4148
10052
- msgid "Cover mouseover"
10053
  msgstr ""
10054
 
10055
- #: wppa-settings-autosave.php:4149
10056
- msgid "Apply coverphoto mouseover effect."
10057
  msgstr ""
10058
 
10059
- #: wppa-settings-autosave.php:4150
10060
- msgid "Check this box to use mouseover effect on cover images."
10061
  msgstr ""
10062
 
10063
- #: wppa-settings-autosave.php:4158
10064
- msgid "Cover opacity"
10065
  msgstr ""
10066
 
10067
- #: wppa-settings-autosave.php:4167
10068
- msgid "Cover type"
10069
  msgstr ""
10070
 
10071
- #: wppa-settings-autosave.php:4168
10072
- msgid "Select the default cover type."
10073
  msgstr ""
10074
 
10075
- #: wppa-settings-autosave.php:4169
10076
- msgid ""
10077
- "Types with the addition mcr are suitable for Multi Column in a Responsive "
10078
- "theme"
10079
  msgstr ""
10080
 
10081
- #: wppa-settings-autosave.php:4192
10082
- msgid "The umber of coverphotos. Must be > 1 and < 25."
10083
  msgstr ""
10084
 
10085
- #: wppa-settings-autosave.php:4200
10086
- msgid "Cats include subs"
10087
  msgstr ""
10088
 
10089
- #: wppa-settings-autosave.php:4201
10090
- msgid "Child albums are included in Category based shortcodes."
10091
  msgstr ""
10092
 
10093
- #: wppa-settings-autosave.php:4202
10094
- msgid ""
10095
- "When you use album=\"#cat,...\", in a shortcode, the child albums will be "
10096
- "included."
10097
  msgstr ""
10098
 
10099
- #: wppa-settings-autosave.php:4210
10100
- msgid "Rating related settings"
10101
  msgstr ""
10102
 
10103
- #: wppa-settings-autosave.php:4212
10104
- msgid "Rating login"
10105
  msgstr ""
10106
 
10107
- #: wppa-settings-autosave.php:4213
10108
- msgid "Users must login to rate photos."
10109
  msgstr ""
10110
 
10111
- #: wppa-settings-autosave.php:4214
10112
  msgid ""
10113
- "If users want to vote for a photo (rating 1..5 stars) the must login first. "
10114
- "The avarage rating will always be displayed as long as the rating system is "
10115
- "enabled."
10116
  msgstr ""
10117
 
10118
- #: wppa-settings-autosave.php:4221
10119
- msgid "Rating change"
10120
  msgstr ""
10121
 
10122
- #: wppa-settings-autosave.php:4222 wppa-settings-autosave.php:4223
10123
- msgid "Users may change their ratings."
10124
  msgstr ""
10125
 
10126
- #: wppa-settings-autosave.php:4224 wppa-settings-autosave.php:4272
10127
- #: wppa-settings-autosave.php:4291 wppa-settings-autosave.php:4304
10128
- #: wppa-settings-autosave.php:4314 wppa-settings-autosave.php:4324
10129
- #: wppa-settings-autosave.php:4334 wppa-settings-autosave.php:4343
10130
- msgid ""
10131
- "If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
10132
  msgstr ""
10133
 
10134
- #: wppa-settings-autosave.php:4231
10135
- msgid "Rating multi"
10136
  msgstr ""
10137
 
10138
- #: wppa-settings-autosave.php:4232
10139
- msgid "Users may give multiple votes."
10140
  msgstr ""
10141
 
10142
- #: wppa-settings-autosave.php:4233
10143
- msgid ""
10144
- "Users may give multiple votes. (This has no effect when users may change "
10145
- "their votes.)"
10146
  msgstr ""
10147
 
10148
- #: wppa-settings-autosave.php:4240
10149
- msgid "Rating daily"
10150
  msgstr ""
10151
 
10152
- #: wppa-settings-autosave.php:4241
10153
- msgid "Users may rate only once per period"
10154
  msgstr ""
10155
 
10156
- #: wppa-settings-autosave.php:4244
10157
- msgid "Week"
10158
  msgstr ""
10159
 
10160
- #: wppa-settings-autosave.php:4244
10161
- msgid "Day"
 
10162
  msgstr ""
10163
 
10164
- #: wppa-settings-autosave.php:4244
10165
- msgid "Hour"
10166
  msgstr ""
10167
 
10168
- #: wppa-settings-autosave.php:4251
10169
- msgid "Rate own photos"
10170
  msgstr ""
10171
 
10172
- #: wppa-settings-autosave.php:4252
10173
- msgid "It is allowed to rate photos by the uploader himself."
10174
  msgstr ""
10175
 
10176
- #: wppa-settings-autosave.php:4260
10177
- msgid "Rating requires comment"
10178
  msgstr ""
10179
 
10180
- #: wppa-settings-autosave.php:4261
10181
- msgid "Users must clarify their vote in a comment."
10182
  msgstr ""
10183
 
10184
- #: wppa-settings-autosave.php:4270
10185
- msgid "This value counts dislike rating."
10186
  msgstr ""
10187
 
10188
- #: wppa-settings-autosave.php:4271
10189
  msgid ""
10190
- "This value will be used for a dislike rating on calculation of avarage "
10191
- "ratings."
10192
  msgstr ""
10193
 
10194
- #: wppa-settings-autosave.php:4274
10195
- msgid "points"
10196
  msgstr ""
10197
 
10198
- #: wppa-settings-autosave.php:4279
10199
- msgid "Next after vote"
10200
  msgstr ""
10201
 
10202
- #: wppa-settings-autosave.php:4280
10203
- msgid "Goto next slide after voting"
10204
  msgstr ""
10205
 
10206
- #: wppa-settings-autosave.php:4281
10207
- msgid ""
10208
- "If checked, the visitor goes straight to the slide following the slide he "
10209
- "voted. This will speed up mass voting."
10210
  msgstr ""
10211
 
10212
- #: wppa-settings-autosave.php:4288
10213
- msgid "Star off opacity"
10214
  msgstr ""
10215
 
10216
- #: wppa-settings-autosave.php:4289
10217
- msgid "Rating star off state opacity value."
10218
  msgstr ""
10219
 
10220
- #: wppa-settings-autosave.php:4299
10221
- msgid "Notify admin every x times."
10222
  msgstr ""
10223
 
10224
- #: wppa-settings-autosave.php:4300
10225
- msgid ""
10226
- "If this number is positive, there will be a thumb down icon in the rating "
10227
- "bar."
10228
  msgstr ""
10229
 
10230
- #: wppa-settings-autosave.php:4301
10231
- msgid ""
10232
- "Cicking the icon indicates a user wants to report that an image is "
10233
- "inappropiate."
10234
  msgstr ""
10235
 
10236
- #: wppa-settings-autosave.php:4302
10237
- msgid "Admin will be notified by email after every x reports."
10238
  msgstr ""
10239
 
10240
- #: wppa-settings-autosave.php:4303 wppa-settings-autosave.php:4313
10241
- #: wppa-settings-autosave.php:4323
10242
- msgid "A value of 0 disables this feature."
10243
  msgstr ""
10244
 
10245
- #: wppa-settings-autosave.php:4306 wppa-settings-autosave.php:4316
10246
- #: wppa-settings-autosave.php:4326
10247
- msgid "reports"
10248
  msgstr ""
10249
 
10250
- #: wppa-settings-autosave.php:4311
10251
- msgid "Pending after"
10252
  msgstr ""
10253
 
10254
- #: wppa-settings-autosave.php:4312
10255
- msgid "Set status to pending after xx dislike votes."
10256
  msgstr ""
10257
 
10258
- #: wppa-settings-autosave.php:4321
10259
- msgid "Delete after"
10260
  msgstr ""
10261
 
10262
- #: wppa-settings-autosave.php:4322
10263
- msgid "Deete photo after xx dislike votes."
 
 
 
 
 
 
 
 
10264
  msgstr ""
10265
 
10266
- #: wppa-settings-autosave.php:4331
10267
- msgid "Show dislike count"
10268
  msgstr ""
10269
 
10270
- #: wppa-settings-autosave.php:4332
10271
- msgid "Show the number of dislikes in the rating bar."
10272
  msgstr ""
10273
 
10274
- #: wppa-settings-autosave.php:4333
10275
- msgid "Displayes the total number of dislike votes for the current photo."
10276
  msgstr ""
10277
 
10278
- #: wppa-settings-autosave.php:4341
10279
- msgid "Rating display type"
 
 
10280
  msgstr ""
10281
 
10282
- #: wppa-settings-autosave.php:4342
10283
- msgid "Specify the type of the rating display."
10284
  msgstr ""
10285
 
10286
- #: wppa-settings-autosave.php:4345
10287
- msgid "Graphic"
10288
  msgstr ""
10289
 
10290
- #: wppa-settings-autosave.php:4345
10291
- msgid "Numeric"
10292
  msgstr ""
10293
 
10294
- #: wppa-settings-autosave.php:4352
10295
- msgid "Show average rating"
10296
  msgstr ""
10297
 
10298
- #: wppa-settings-autosave.php:4353
10299
- msgid "Display the avarage rating and/or vote count on the rating bar"
 
 
10300
  msgstr ""
10301
 
10302
- #: wppa-settings-autosave.php:4354
10303
- msgid ""
10304
- "If checked, the average rating as well as the current users rating is "
10305
- "displayed in max 5 or 10 stars."
10306
  msgstr ""
10307
 
10308
- #: wppa-settings-autosave.php:4355
10309
- msgid "If unchecked, only the current users rating is displayed (if any)."
 
10310
  msgstr ""
10311
 
10312
- #: wppa-settings-autosave.php:4356
10313
- msgid ""
10314
- "If \"One button vote\" is selected in Table I-E1, this box checked will "
10315
- "display the vote count."
10316
  msgstr ""
10317
 
10318
- #: wppa-settings-autosave.php:4363
10319
- msgid "Single vote button text"
10320
  msgstr ""
10321
 
10322
- #: wppa-settings-autosave.php:4364
10323
- msgid "The text on the voting button."
10324
  msgstr ""
10325
 
10326
- #: wppa-settings-autosave.php:4365 wppa-settings-autosave.php:4374
10327
- msgid "This text may contain qTranslate compatible language tags."
 
 
10328
  msgstr ""
10329
 
10330
- #: wppa-settings-autosave.php:4372
10331
- msgid "Single vote button text voted"
 
 
10332
  msgstr ""
10333
 
10334
- #: wppa-settings-autosave.php:4373
10335
- msgid "The text on the voting button when voted."
10336
  msgstr ""
10337
 
10338
- #: wppa-settings-autosave.php:4381
10339
- msgid "Single vote button thumbnail"
10340
  msgstr ""
10341
 
10342
- #: wppa-settings-autosave.php:4382
10343
- msgid "Display single vote button below thumbnails."
 
 
 
10344
  msgstr ""
10345
 
10346
- #: wppa-settings-autosave.php:4383
10347
  msgid ""
10348
- "This works only in single vote mode: Table I-E1 set to \"one button vote\""
 
10349
  msgstr ""
10350
 
10351
- #: wppa-settings-autosave.php:4390
10352
- msgid "Medal bronze when"
10353
  msgstr ""
10354
 
10355
- #: wppa-settings-autosave.php:4391 wppa-settings-autosave.php:4409
10356
- msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
10357
  msgstr ""
10358
 
10359
- #: wppa-settings-autosave.php:4392 wppa-settings-autosave.php:4410
10360
- msgid ""
10361
- "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10362
- "bronze medal. A value of 0 indicates that you do not want this feature."
10363
  msgstr ""
10364
 
10365
- #: wppa-settings-autosave.php:4394 wppa-settings-autosave.php:4403
10366
- #: wppa-settings-autosave.php:4412
10367
- msgid "Topscores"
10368
  msgstr ""
10369
 
10370
- #: wppa-settings-autosave.php:4399
10371
- msgid "Medal silver when"
10372
  msgstr ""
10373
 
10374
- #: wppa-settings-autosave.php:4400
10375
- msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
10376
  msgstr ""
10377
 
10378
- #: wppa-settings-autosave.php:4401
10379
- msgid ""
10380
- "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10381
- "silver medal. A value of 0 indicates that you do not want this feature."
10382
  msgstr ""
10383
 
10384
- #: wppa-settings-autosave.php:4408
10385
- msgid "Medal gold when"
10386
  msgstr ""
10387
 
10388
- #: wppa-settings-autosave.php:4417
10389
- msgid "Medal tag color"
10390
  msgstr ""
10391
 
10392
- #: wppa-settings-autosave.php:4418
10393
- msgid "The color of the tag on the medal."
10394
  msgstr ""
10395
 
10396
- #: wppa-settings-autosave.php:4421 wppa-settings-autosave.php:7850
10397
- msgid "Red"
10398
  msgstr ""
10399
 
10400
- #: wppa-settings-autosave.php:4421 wppa-settings-autosave.php:7853
10401
- msgid "Green"
 
 
10402
  msgstr ""
10403
 
10404
- #: wppa-settings-autosave.php:4421 wppa-settings-autosave.php:7854
10405
- msgid "Blue"
10406
  msgstr ""
10407
 
10408
- #: wppa-settings-autosave.php:4428
10409
- msgid "Medal position"
10410
  msgstr ""
10411
 
10412
- #: wppa-settings-autosave.php:4429
10413
- msgid "The position of the medal on the image."
10414
  msgstr ""
10415
 
10416
- #: wppa-settings-autosave.php:4432
10417
- msgid "Top left"
10418
  msgstr ""
10419
 
10420
- #: wppa-settings-autosave.php:4432
10421
- msgid "Top right"
10422
  msgstr ""
10423
 
10424
- #: wppa-settings-autosave.php:4432
10425
- msgid "Bottom left"
10426
  msgstr ""
10427
 
10428
- #: wppa-settings-autosave.php:4432
10429
- msgid "Bottom right"
10430
  msgstr ""
10431
 
10432
- #: wppa-settings-autosave.php:4439
10433
- msgid "Top criterium"
10434
  msgstr ""
10435
 
10436
- #: wppa-settings-autosave.php:4440
10437
- msgid "The top sort item used for topten results from shortcodes."
 
10438
  msgstr ""
10439
 
10440
- #: wppa-settings-autosave.php:4443
10441
- msgid "Mean raiting"
10442
  msgstr ""
10443
 
10444
- #: wppa-settings-autosave.php:4443
10445
- msgid "Rating count"
10446
  msgstr ""
10447
 
10448
- #: wppa-settings-autosave.php:4443
10449
- msgid "Viewcount"
10450
  msgstr ""
10451
 
10452
- #: wppa-settings-autosave.php:4450
10453
- msgid "Comments related settings"
10454
  msgstr ""
10455
 
10456
- #: wppa-settings-autosave.php:4452
10457
- msgid "Commenting login"
 
 
 
10458
  msgstr ""
10459
 
10460
- #: wppa-settings-autosave.php:4453
10461
- msgid "Users must be logged in to comment on photos."
10462
  msgstr ""
10463
 
10464
- #: wppa-settings-autosave.php:4454
10465
- msgid ""
10466
- "Check this box if you want users to be logged in to be able to enter "
10467
- "comments on individual photos."
10468
  msgstr ""
10469
 
10470
- #: wppa-settings-autosave.php:4461
10471
- msgid "Comments view login"
10472
  msgstr ""
10473
 
10474
- #: wppa-settings-autosave.php:4462
10475
- msgid "Users must be logged in to see comments on photos."
10476
  msgstr ""
10477
 
10478
- #: wppa-settings-autosave.php:4463
10479
- msgid ""
10480
- "Check this box if you want users to be logged in to be able to see existing "
10481
- "comments on individual photos."
10482
  msgstr ""
10483
 
10484
- #: wppa-settings-autosave.php:4470
10485
- msgid "Last comment first"
10486
  msgstr ""
10487
 
10488
- #: wppa-settings-autosave.php:4471
10489
- msgid "Display the newest comment on top."
10490
  msgstr ""
10491
 
10492
- #: wppa-settings-autosave.php:4472
10493
- msgid "If checked: Display the newest comment on top."
10494
  msgstr ""
10495
 
10496
- #: wppa-settings-autosave.php:4473
10497
- msgid "If unchecked, the comments are listed in the ordere they were entered."
10498
  msgstr ""
10499
 
10500
- #: wppa-settings-autosave.php:4480
10501
- msgid "Comment moderation"
10502
  msgstr ""
10503
 
10504
- #: wppa-settings-autosave.php:4481
10505
- msgid "Comments from what users need approval."
10506
  msgstr ""
10507
 
10508
- #: wppa-settings-autosave.php:4482
10509
- msgid "Select the desired users of which the comments need approval."
10510
  msgstr ""
10511
 
10512
- #: wppa-settings-autosave.php:4484 wppa-settings-autosave.php:6467
10513
- msgid "All users"
 
10514
  msgstr ""
10515
 
10516
- #: wppa-settings-autosave.php:4484 wppa-settings-autosave.php:6467
10517
- msgid "Logged out users"
10518
  msgstr ""
10519
 
10520
- #: wppa-settings-autosave.php:4484 wppa-settings-autosave.php:6467
10521
- msgid "No users"
 
10522
  msgstr ""
10523
 
10524
- #: wppa-settings-autosave.php:4491
10525
- msgid "Comment email required"
10526
  msgstr ""
10527
 
10528
- #: wppa-settings-autosave.php:4492
10529
- msgid "Commenting users must enter their email addresses."
10530
  msgstr ""
10531
 
10532
- #: wppa-settings-autosave.php:4496 wppa-settings-autosave.php:9180
10533
- #: wppa-settings-autosave.php:9248
10534
- msgid "Optional"
 
10535
  msgstr ""
10536
 
10537
- #: wppa-settings-autosave.php:4508
10538
- msgid "Comment notify"
10539
  msgstr ""
10540
 
10541
- #: wppa-settings-autosave.php:4509
10542
- msgid "Select who must receive an e-mail notification of a new comment."
10543
  msgstr ""
10544
 
10545
- #: wppa-settings-autosave.php:4512
10546
- msgid "--- None ---"
10547
  msgstr ""
10548
 
10549
- #: wppa-settings-autosave.php:4513
10550
- msgid "--- Admin ---"
10551
  msgstr ""
10552
 
10553
- #: wppa-settings-autosave.php:4514
10554
- msgid "--- Album owner ---"
10555
  msgstr ""
10556
 
10557
- #: wppa-settings-autosave.php:4515
10558
- msgid "--- Admin & Owner ---"
10559
  msgstr ""
10560
 
10561
- #: wppa-settings-autosave.php:4516
10562
- msgid "--- Uploader ---"
10563
  msgstr ""
10564
 
10565
- #: wppa-settings-autosave.php:4517
10566
- msgid "--- Up & admin ---"
10567
  msgstr ""
10568
 
10569
- #: wppa-settings-autosave.php:4518
10570
- msgid "--- Up & Owner ---"
10571
  msgstr ""
10572
 
10573
- #: wppa-settings-autosave.php:4541
10574
- msgid "Comment notify previous"
10575
  msgstr ""
10576
 
10577
- #: wppa-settings-autosave.php:4542
10578
- msgid "Notify users who has commented this photo earlier."
10579
  msgstr ""
10580
 
10581
- #: wppa-settings-autosave.php:4550
10582
- msgid "Comment notify approved"
10583
  msgstr ""
10584
 
10585
- #: wppa-settings-autosave.php:4551
10586
- msgid "Notify photo owner of approved comment."
10587
  msgstr ""
10588
 
10589
- #: wppa-settings-autosave.php:4559
10590
- msgid "Com ntfy appr email content"
10591
  msgstr ""
10592
 
10593
- #: wppa-settings-autosave.php:4560
10594
- msgid "The content of the email."
 
 
10595
  msgstr ""
10596
 
10597
- #: wppa-settings-autosave.php:4561
10598
- msgid "If you leave this blank, the default content will be used"
10599
  msgstr ""
10600
 
10601
- #: wppa-settings-autosave.php:4562
10602
- msgid "The content may contain html."
10603
  msgstr ""
10604
 
10605
- #: wppa-settings-autosave.php:4563
10606
  msgid ""
10607
- "You may use the following keywords: w#comment for the comment content, "
10608
- "w#user for the commenters name and the standard photo description keywords "
10609
- "w#name, w#filename, w#owner, w#id, w#tags, w#timestamp, w#modified, w#views, "
10610
- "w#amx, w#amy, w#amfs, w#url, w#hrurl, w#tnurl, w#cc0..w#cc9, w#cd0..w#cd9."
10611
  msgstr ""
10612
 
10613
- #: wppa-settings-autosave.php:4570
10614
- msgid "Com ntfy appr email subject"
10615
  msgstr ""
10616
 
10617
- #: wppa-settings-autosave.php:4571
10618
- msgid "The subject of the email."
10619
  msgstr ""
10620
 
10621
- #: wppa-settings-autosave.php:4580
10622
- msgid "Comment ntfy added"
10623
  msgstr ""
10624
 
10625
- #: wppa-settings-autosave.php:4581
10626
- msgid "Show \"Comment added\" after successfull adding a comment."
10627
  msgstr ""
10628
 
10629
- #: wppa-settings-autosave.php:4589
10630
- msgid "ComTen alt display"
10631
  msgstr ""
10632
 
10633
- #: wppa-settings-autosave.php:4590
10634
- msgid "Display comments at comten thumbnails."
10635
  msgstr ""
10636
 
10637
- #: wppa-settings-autosave.php:4598
10638
- msgid "Comten Thumbnail width"
10639
  msgstr ""
10640
 
10641
- #: wppa-settings-autosave.php:4599
10642
- msgid "The width of the thumbnail in the alt comment display."
10643
  msgstr ""
10644
 
10645
- #: wppa-settings-autosave.php:4602
10646
- msgid "Pixels"
10647
  msgstr ""
10648
 
10649
- #: wppa-settings-autosave.php:4607
10650
- msgid "Show smiley picker"
 
 
10651
  msgstr ""
10652
 
10653
- #: wppa-settings-autosave.php:4608
10654
- msgid "Display a clickable row of smileys."
 
 
10655
  msgstr ""
10656
 
10657
- #: wppa-settings-autosave.php:4616
10658
- msgid "Show commenter email"
10659
  msgstr ""
10660
 
10661
- #: wppa-settings-autosave.php:4617
10662
- msgid "Show the commenter's email in the notify emails."
10663
  msgstr ""
10664
 
10665
- #: wppa-settings-autosave.php:4618
10666
- msgid "Shows the email address of the commenter in all notify emails."
10667
  msgstr ""
10668
 
10669
- #: wppa-settings-autosave.php:4619
10670
- msgid ""
10671
- "If switched off, admin will still receive the senders email in the "
10672
- "notification mail"
10673
  msgstr ""
10674
 
10675
- #: wppa-settings-autosave.php:4629
10676
- msgid "The opacity of the lightbox overlay background."
10677
  msgstr ""
10678
 
10679
- #: wppa-settings-autosave.php:4637
10680
- msgid "Click on background"
 
10681
  msgstr ""
10682
 
10683
- #: wppa-settings-autosave.php:4638
10684
- msgid "Select the action to be taken on click on background."
 
10685
  msgstr ""
10686
 
10687
- #: wppa-settings-autosave.php:4641
10688
- msgid "Nothing"
10689
  msgstr ""
10690
 
10691
- #: wppa-settings-autosave.php:4641
10692
- msgid "Exit (close)"
10693
  msgstr ""
10694
 
10695
- #: wppa-settings-autosave.php:4641
10696
- msgid "Browse (left/right)"
10697
  msgstr ""
10698
 
10699
- #: wppa-settings-autosave.php:4648
10700
- msgid "Overlay animation speed"
10701
  msgstr ""
10702
 
10703
- #: wppa-settings-autosave.php:4649
10704
- msgid "The fade-in time of the lightbox images"
10705
  msgstr ""
10706
 
10707
- #: wppa-settings-autosave.php:4652
10708
- msgid "very fast (100 ms.)"
10709
  msgstr ""
10710
 
10711
- #: wppa-settings-autosave.php:4652
10712
- msgid "fast (200 ms.)"
10713
  msgstr ""
10714
 
10715
- #: wppa-settings-autosave.php:4652
10716
- msgid "normal (300 ms.)"
10717
  msgstr ""
10718
 
10719
- #: wppa-settings-autosave.php:4652
10720
- msgid "slow (500 ms.)"
10721
  msgstr ""
10722
 
10723
- #: wppa-settings-autosave.php:4652
10724
- msgid "very slow (1 s.)"
10725
  msgstr ""
10726
 
10727
- #: wppa-settings-autosave.php:4652
10728
- msgid "extremely slow (2 s.)"
10729
  msgstr ""
10730
 
10731
- #: wppa-settings-autosave.php:4659
10732
- msgid "Overlay slideshow speed"
 
 
10733
  msgstr ""
10734
 
10735
- #: wppa-settings-autosave.php:4660
10736
- msgid "The time the lightbox images stay"
10737
  msgstr ""
10738
 
10739
- #: wppa-settings-autosave.php:4663
10740
- msgid "fast (3 s.)"
10741
  msgstr ""
10742
 
10743
- #: wppa-settings-autosave.php:4663
10744
- msgid "normal (5 s.)"
10745
  msgstr ""
10746
 
10747
- #: wppa-settings-autosave.php:4663
10748
- msgid "slow (8 s.)"
10749
  msgstr ""
10750
 
10751
- #: wppa-settings-autosave.php:4663
10752
- msgid "very slow (13 s.)"
10753
  msgstr ""
10754
 
10755
- #: wppa-settings-autosave.php:4663
10756
- msgid "extremely slow (20 s.)"
 
 
10757
  msgstr ""
10758
 
10759
- #: wppa-settings-autosave.php:4679
10760
- msgid "WPPA+ Lightbox global"
 
 
10761
  msgstr ""
10762
 
10763
- #: wppa-settings-autosave.php:4680
10764
- msgid "Use the wppa+ lightbox also for non-wppa images."
 
 
10765
  msgstr ""
10766
 
10767
- #: wppa-settings-autosave.php:4688
10768
- msgid "WPPA+ Lightbox global is a set"
10769
  msgstr ""
10770
 
10771
- #: wppa-settings-autosave.php:4689
10772
- msgid "Treat the other images as a set."
10773
  msgstr ""
10774
 
10775
- #: wppa-settings-autosave.php:4690
10776
- msgid ""
10777
- "If checked, you can scroll through the images in the lightbox view. Requires "
10778
- "item 5 to be checked."
10779
  msgstr ""
10780
 
10781
- #: wppa-settings-autosave.php:4697
10782
- msgid "Use hires files"
10783
  msgstr ""
10784
 
10785
- #: wppa-settings-autosave.php:4698
10786
- msgid "Use the highest resolution available for lightbox."
10787
  msgstr ""
10788
 
10789
- #: wppa-settings-autosave.php:4699
10790
- msgid "Ticking this box is recommended for lightbox fullscreen modes."
10791
  msgstr ""
10792
 
10793
- #: wppa-settings-autosave.php:4707
10794
- msgid "Videos on lightbox start automaticly."
 
 
10795
  msgstr ""
10796
 
10797
- #: wppa-settings-autosave.php:4716
10798
- msgid "Audio on lightbox start automaticly."
10799
  msgstr ""
10800
 
10801
- #: wppa-settings-autosave.php:4724
10802
- msgid "Lightbox start mode"
10803
  msgstr ""
10804
 
10805
- #: wppa-settings-autosave.php:4725
10806
- msgid "The mode lightbox starts in."
10807
  msgstr ""
10808
 
10809
- #: wppa-settings-autosave.php:4728
10810
- msgid "Normal"
 
 
10811
  msgstr ""
10812
 
10813
- #: wppa-settings-autosave.php:4729
10814
- msgid "Padded"
10815
  msgstr ""
10816
 
10817
- #: wppa-settings-autosave.php:4730
10818
- msgid "Stretched"
10819
  msgstr ""
10820
 
10821
- #: wppa-settings-autosave.php:4731
10822
- msgid "Clipped"
10823
  msgstr ""
10824
 
10825
- #: wppa-settings-autosave.php:4732
10826
- msgid "Real size"
 
 
 
10827
  msgstr ""
10828
 
10829
- #: wppa-settings-autosave.php:4763
10830
- msgid "Table V:"
10831
  msgstr ""
10832
 
10833
- #: wppa-settings-autosave.php:4763
10834
- msgid "Fonts:"
10835
  msgstr ""
10836
 
10837
- #: wppa-settings-autosave.php:4764
10838
- msgid "This table describes the Fonts used for the wppa+ elements."
 
 
 
 
10839
  msgstr ""
10840
 
10841
- #: wppa-settings-autosave.php:4774 wppa-settings-autosave.php:4950
10842
- msgid "Font family"
10843
  msgstr ""
10844
 
10845
- #: wppa-settings-autosave.php:4775 wppa-settings-autosave.php:4951
10846
- msgid "Font size"
10847
  msgstr ""
10848
 
10849
- #: wppa-settings-autosave.php:4776 wppa-settings-autosave.php:4952
10850
- msgid "Font color"
 
 
10851
  msgstr ""
10852
 
10853
- #: wppa-settings-autosave.php:4777 wppa-settings-autosave.php:4953
10854
- msgid "Font weight"
10855
  msgstr ""
10856
 
10857
- #: wppa-settings-autosave.php:4787
10858
- msgid "normal"
10859
  msgstr ""
10860
 
10861
- #: wppa-settings-autosave.php:4787
10862
- msgid "bold"
10863
  msgstr ""
10864
 
10865
- #: wppa-settings-autosave.php:4787
10866
- msgid "bolder"
10867
  msgstr ""
10868
 
10869
- #: wppa-settings-autosave.php:4787
10870
- msgid "lighter"
10871
  msgstr ""
10872
 
10873
- #: wppa-settings-autosave.php:4790
10874
- msgid "Album titles"
10875
  msgstr ""
10876
 
10877
- #: wppa-settings-autosave.php:4791
10878
- msgid "Font used for Album titles."
10879
  msgstr ""
10880
 
10881
- #: wppa-settings-autosave.php:4792
10882
- msgid "Enter font name, size, color and weight for album cover titles."
10883
  msgstr ""
10884
 
10885
- #: wppa-settings-autosave.php:4807
10886
- msgid "Slideshow desc"
10887
  msgstr ""
10888
 
10889
- #: wppa-settings-autosave.php:4808
10890
- msgid "Font for slideshow photo descriptions."
10891
  msgstr ""
10892
 
10893
- #: wppa-settings-autosave.php:4809
10894
  msgid ""
10895
- "Enter font name, size, color and weight for slideshow photo descriptions."
 
10896
  msgstr ""
10897
 
10898
- #: wppa-settings-autosave.php:4824
10899
- msgid "Slideshow name"
10900
  msgstr ""
10901
 
10902
- #: wppa-settings-autosave.php:4825
10903
- msgid "Font for slideshow photo names."
10904
  msgstr ""
10905
 
10906
- #: wppa-settings-autosave.php:4826
10907
- msgid "Enter font name, size, color and weight for slideshow photo names."
10908
  msgstr ""
10909
 
10910
- #: wppa-settings-autosave.php:4841
10911
- msgid "Navigations"
 
 
10912
  msgstr ""
10913
 
10914
- #: wppa-settings-autosave.php:4842
10915
- msgid "Font for navigations."
10916
  msgstr ""
10917
 
10918
- #: wppa-settings-autosave.php:4843
10919
- msgid "Enter font name, size, color and weight for navigation items."
10920
  msgstr ""
10921
 
10922
- #: wppa-settings-autosave.php:4859
10923
- msgid "Font for text under thumbnails."
10924
  msgstr ""
10925
 
10926
- #: wppa-settings-autosave.php:4860
10927
  msgid ""
10928
- "Enter font name, size, color and weight for text under thumbnail images."
10929
- msgstr ""
10930
-
10931
- #: wppa-settings-autosave.php:4876
10932
- msgid "General font in wppa boxes."
10933
  msgstr ""
10934
 
10935
- #: wppa-settings-autosave.php:4877
10936
- msgid "Enter font name, size, color and weight for all other items."
 
 
10937
  msgstr ""
10938
 
10939
- #: wppa-settings-autosave.php:4893
10940
- msgid "Font in wppa number bars."
10941
  msgstr ""
10942
 
10943
- #: wppa-settings-autosave.php:4894 wppa-settings-autosave.php:4911
10944
- msgid "Enter font name, size, color and weight for numberbar navigation."
 
10945
  msgstr ""
10946
 
10947
- #: wppa-settings-autosave.php:4909
10948
- msgid "Numbar Active"
 
10949
  msgstr ""
10950
 
10951
- #: wppa-settings-autosave.php:4910
10952
- msgid "Font in wppa number bars, active item."
10953
  msgstr ""
10954
 
10955
- #: wppa-settings-autosave.php:4927
10956
- msgid "Font in wppa lightbox overlays."
10957
  msgstr ""
10958
 
10959
- #: wppa-settings-autosave.php:4928
10960
- msgid "Enter font name, size, color and weight for wppa lightbox overlays."
10961
  msgstr ""
10962
 
10963
- #: wppa-settings-autosave.php:4963
10964
- msgid "Table VI:"
10965
  msgstr ""
10966
 
10967
- #: wppa-settings-autosave.php:4963
10968
- msgid "Links:"
10969
  msgstr ""
10970
 
10971
- #: wppa-settings-autosave.php:4964
10972
- msgid "This table defines the link types and pages."
10973
  msgstr ""
10974
 
10975
- #: wppa-settings-autosave.php:4975 wppa-settings-autosave.php:5981
10976
- msgid "Link page"
10977
  msgstr ""
10978
 
10979
- #: wppa-settings-autosave.php:4977 wppa-settings-autosave.php:5983
10980
- msgid "Photo specific link overrules"
10981
  msgstr ""
10982
 
10983
- #: wppa-settings-autosave.php:4977 wppa-settings-autosave.php:5983
10984
- msgid "PSO"
10985
  msgstr ""
10986
 
10987
- #: wppa-settings-autosave.php:5022
10988
- msgid "Links from images in WPPA+ Widgets"
10989
  msgstr ""
10990
 
10991
- #: wppa-settings-autosave.php:5024
10992
- msgid "PotdWidget"
10993
  msgstr ""
10994
 
10995
- #: wppa-settings-autosave.php:5025
10996
- msgid "Photo Of The Day widget link."
10997
  msgstr ""
10998
 
10999
- #: wppa-settings-autosave.php:5026
11000
- msgid "Select the type of link the photo of the day points to."
11001
  msgstr ""
11002
 
11003
- #: wppa-settings-autosave.php:5027
11004
  msgid ""
11005
- "If you select 'defined on widget admin page' you can manually enter a link "
11006
- "and title on the Photo of the day Widget Admin page."
11007
- msgstr ""
11008
-
11009
- #: wppa-settings-autosave.php:5036 wppa-settings-autosave.php:5079
11010
- #: wppa-settings-autosave.php:5157 wppa-settings-autosave.php:5200
11011
- #: wppa-settings-autosave.php:5248 wppa-settings-autosave.php:5295
11012
- #: wppa-settings-autosave.php:5342 wppa-settings-autosave.php:5394
11013
- #: wppa-settings-autosave.php:5432 wppa-settings-autosave.php:5482
11014
- #: wppa-settings-autosave.php:5524 wppa-settings-autosave.php:5565
11015
- #: wppa-settings-autosave.php:9939
11016
- msgid "no link at all."
11017
  msgstr ""
11018
 
11019
- #: wppa-settings-autosave.php:5037 wppa-settings-autosave.php:5080
11020
- #: wppa-settings-autosave.php:5158 wppa-settings-autosave.php:5201
11021
- #: wppa-settings-autosave.php:5249 wppa-settings-autosave.php:5296
11022
- #: wppa-settings-autosave.php:5343 wppa-settings-autosave.php:5395
11023
- #: wppa-settings-autosave.php:5433 wppa-settings-autosave.php:5483
11024
- #: wppa-settings-autosave.php:5525 wppa-settings-autosave.php:5566
11025
- #: wppa-settings-autosave.php:9940
11026
- msgid "the plain photo (file)."
11027
  msgstr ""
11028
 
11029
- #: wppa-settings-autosave.php:5038 wppa-settings-autosave.php:9946
11030
- msgid "defined on widget admin page."
 
 
11031
  msgstr ""
11032
 
11033
- #: wppa-settings-autosave.php:5039 wppa-settings-autosave.php:5082
11034
- #: wppa-settings-autosave.php:5484 wppa-settings-autosave.php:5526
11035
- #: wppa-settings-autosave.php:9944
11036
- msgid "the content of the album."
11037
  msgstr ""
11038
 
11039
- #: wppa-settings-autosave.php:5040 wppa-settings-autosave.php:5083
11040
- #: wppa-settings-autosave.php:5159 wppa-settings-autosave.php:5204
11041
- #: wppa-settings-autosave.php:5252 wppa-settings-autosave.php:5299
11042
- #: wppa-settings-autosave.php:5346 wppa-settings-autosave.php:5434
11043
- #: wppa-settings-autosave.php:5485 wppa-settings-autosave.php:5527
11044
- #: wppa-settings-autosave.php:9941
11045
- msgid "the full size photo in a slideshow."
11046
  msgstr ""
11047
 
11048
- #: wppa-settings-autosave.php:5041 wppa-settings-autosave.php:5084
11049
- #: wppa-settings-autosave.php:5160 wppa-settings-autosave.php:5205
11050
- #: wppa-settings-autosave.php:5253 wppa-settings-autosave.php:5300
11051
- #: wppa-settings-autosave.php:5347 wppa-settings-autosave.php:5435
11052
- #: wppa-settings-autosave.php:5486 wppa-settings-autosave.php:5528
11053
- #: wppa-settings-autosave.php:5567 wppa-settings-autosave.php:9942
11054
- msgid "the fullsize photo on its own."
11055
  msgstr ""
11056
 
11057
- #: wppa-settings-autosave.php:5042 wppa-settings-autosave.php:5085
11058
- #: wppa-settings-autosave.php:5124 wppa-settings-autosave.php:5163
11059
- #: wppa-settings-autosave.php:5208 wppa-settings-autosave.php:5256
11060
- #: wppa-settings-autosave.php:5303 wppa-settings-autosave.php:5350
11061
- #: wppa-settings-autosave.php:5438
11062
- msgid "a plain page without a querystring."
11063
  msgstr ""
11064
 
11065
- #: wppa-settings-autosave.php:5043 wppa-settings-autosave.php:5086
11066
- #: wppa-settings-autosave.php:5125 wppa-settings-autosave.php:5164
11067
- #: wppa-settings-autosave.php:5209 wppa-settings-autosave.php:5257
11068
- #: wppa-settings-autosave.php:5304 wppa-settings-autosave.php:5351
11069
- #: wppa-settings-autosave.php:5397 wppa-settings-autosave.php:5439
11070
- #: wppa-settings-autosave.php:5487 wppa-settings-autosave.php:5529
11071
- #: wppa-settings-autosave.php:5568
11072
- msgid "lightbox."
11073
  msgstr ""
11074
 
11075
- #: wppa-settings-autosave.php:5068
11076
- msgid "SlideWidget"
11077
  msgstr ""
11078
 
11079
- #: wppa-settings-autosave.php:5069
11080
- msgid "Slideshow widget photo link."
11081
  msgstr ""
11082
 
11083
- #: wppa-settings-autosave.php:5070
11084
- msgid "Select the type of link the slideshow photos point to."
 
11085
  msgstr ""
11086
 
11087
- #: wppa-settings-autosave.php:5081 wppa-settings-autosave.php:9945
11088
- msgid "defined at widget activation."
11089
  msgstr ""
11090
 
11091
- #: wppa-settings-autosave.php:5111
11092
- msgid "Album widget"
11093
  msgstr ""
11094
 
11095
- #: wppa-settings-autosave.php:5112
11096
- msgid "Album widget thumbnail link"
 
 
11097
  msgstr ""
11098
 
11099
- #: wppa-settings-autosave.php:5113
11100
- msgid "Select the type of link the album widget photos point to."
 
11101
  msgstr ""
11102
 
11103
- #: wppa-settings-autosave.php:5122
11104
- msgid "subalbums and thumbnails."
11105
  msgstr ""
11106
 
11107
- #: wppa-settings-autosave.php:5123
11108
- msgid "slideshow."
11109
  msgstr ""
11110
 
11111
- #: wppa-settings-autosave.php:5146
11112
- msgid "ThumbnailWidget"
 
 
11113
  msgstr ""
11114
 
11115
- #: wppa-settings-autosave.php:5147
11116
- msgid "Thumbnail widget photo link."
11117
  msgstr ""
11118
 
11119
- #: wppa-settings-autosave.php:5148
11120
- msgid "Select the type of link the thumbnail photos point to."
11121
  msgstr ""
11122
 
11123
- #: wppa-settings-autosave.php:5161 wppa-settings-autosave.php:5206
11124
- #: wppa-settings-autosave.php:5254 wppa-settings-autosave.php:5301
11125
- #: wppa-settings-autosave.php:5348 wppa-settings-autosave.php:5436
11126
- msgid "the single photo in the style of a slideshow."
11127
  msgstr ""
11128
 
11129
- #: wppa-settings-autosave.php:5162 wppa-settings-autosave.php:5207
11130
- #: wppa-settings-autosave.php:5255 wppa-settings-autosave.php:5302
11131
- #: wppa-settings-autosave.php:5349 wppa-settings-autosave.php:5437
11132
- #: wppa-settings-autosave.php:5570
11133
- msgid "the fs photo with download and print buttons."
11134
  msgstr ""
11135
 
11136
- #: wppa-settings-autosave.php:5189
11137
- msgid "TopTenWidget"
11138
  msgstr ""
11139
 
11140
- #: wppa-settings-autosave.php:5190
11141
- msgid "TopTen widget photo link."
11142
  msgstr ""
11143
 
11144
- #: wppa-settings-autosave.php:5191
11145
- msgid "Select the type of link the top ten photos point to."
11146
  msgstr ""
11147
 
11148
- #: wppa-settings-autosave.php:5202
11149
- msgid "the content of the virtual topten album."
11150
  msgstr ""
11151
 
11152
- #: wppa-settings-autosave.php:5203 wppa-settings-autosave.php:5251
11153
- #: wppa-settings-autosave.php:5298 wppa-settings-autosave.php:5345
11154
- msgid "the content of the thumbnails album."
11155
  msgstr ""
11156
 
11157
- #: wppa-settings-autosave.php:5237
11158
- msgid "LasTenWidget"
11159
  msgstr ""
11160
 
11161
- #: wppa-settings-autosave.php:5238
11162
- msgid "Last Ten widget photo link."
11163
  msgstr ""
11164
 
11165
- #: wppa-settings-autosave.php:5239
11166
- msgid "Select the type of link the last ten photos point to."
11167
  msgstr ""
11168
 
11169
- #: wppa-settings-autosave.php:5250
11170
- msgid "the content of the virtual lasten album."
11171
  msgstr ""
11172
 
11173
- #: wppa-settings-autosave.php:5284
11174
- msgid "CommentWidget"
11175
  msgstr ""
11176
 
11177
- #: wppa-settings-autosave.php:5285
11178
- msgid "Comment widget photo link."
11179
  msgstr ""
11180
 
11181
- #: wppa-settings-autosave.php:5286
11182
- msgid "Select the type of link the comment widget photos point to."
11183
  msgstr ""
11184
 
11185
- #: wppa-settings-autosave.php:5297
11186
- msgid "the content of the virtual comten album."
11187
  msgstr ""
11188
 
11189
- #: wppa-settings-autosave.php:5331
11190
- msgid "FeaTenWidget"
11191
  msgstr ""
11192
 
11193
- #: wppa-settings-autosave.php:5332
11194
- msgid "FeaTen widget photo link."
11195
  msgstr ""
11196
 
11197
- #: wppa-settings-autosave.php:5333
11198
- msgid "Select the type of link the featured ten photos point to."
11199
  msgstr ""
11200
 
11201
- #: wppa-settings-autosave.php:5344
11202
- msgid "the content of the virtual featen album."
 
 
11203
  msgstr ""
11204
 
11205
- #: wppa-settings-autosave.php:5377
11206
- msgid "Links from other WPPA+ images"
11207
  msgstr ""
11208
 
11209
- #: wppa-settings-autosave.php:5379
11210
- msgid "Cover Image"
11211
  msgstr ""
11212
 
11213
- #: wppa-settings-autosave.php:5380
11214
- msgid "The link from the cover image of an album."
 
 
11215
  msgstr ""
11216
 
11217
- #: wppa-settings-autosave.php:5381
11218
- msgid "Select the type of link the coverphoto points to."
11219
  msgstr ""
11220
 
11221
- #: wppa-settings-autosave.php:5382
11222
- msgid "The link from the album title can be configured on the Edit Album page."
11223
  msgstr ""
11224
 
11225
- #: wppa-settings-autosave.php:5383
11226
- msgid "This link will be used for the photo also if you select: same as title."
11227
  msgstr ""
11228
 
11229
- #: wppa-settings-autosave.php:5384
11230
- msgid ""
11231
- "If you specify New Tab on this line, all links from the cover will open a "
11232
- "new tab,"
11233
  msgstr ""
11234
 
11235
- #: wppa-settings-autosave.php:5385
11236
- msgid "except when Ajax is activated on Table IV-A1."
11237
  msgstr ""
11238
 
11239
- #: wppa-settings-autosave.php:5396 wppa-settings-autosave.php:9947
11240
- msgid "same as title."
11241
  msgstr ""
11242
 
11243
- #: wppa-settings-autosave.php:5398
11244
- msgid "a slideshow starting at the photo"
11245
  msgstr ""
11246
 
11247
- #: wppa-settings-autosave.php:5419
11248
- msgid "Thumbnail"
11249
  msgstr ""
11250
 
11251
- #: wppa-settings-autosave.php:5420
11252
- msgid "Thumbnail link."
11253
  msgstr ""
11254
 
11255
- #: wppa-settings-autosave.php:5421 wppa-settings-autosave.php:5471
11256
- #: wppa-settings-autosave.php:5513
11257
- msgid "Select the type of link you want, or no link at all."
11258
  msgstr ""
11259
 
11260
- #: wppa-settings-autosave.php:5422 wppa-settings-autosave.php:5472
11261
- #: wppa-settings-autosave.php:5514
11262
- msgid ""
11263
- "If you select the fullsize photo on its own, it will be stretched to fit, "
11264
- "regardless of that setting."
11265
  msgstr ""
11266
 
11267
- #: wppa-settings-autosave.php:5423 wppa-settings-autosave.php:5473
11268
- #: wppa-settings-autosave.php:5515
11269
- #, php-format
11270
- msgid ""
11271
- "Note that a page must have at least %%wppa%% or [wppa][/wppa] in its content "
11272
- "to show up the photo(s)."
11273
  msgstr ""
11274
 
11275
- #: wppa-settings-autosave.php:5452
11276
- msgid "Auto Page"
 
11277
  msgstr ""
11278
 
11279
- #: wppa-settings-autosave.php:5469
11280
- msgid "Sphoto"
11281
  msgstr ""
11282
 
11283
- #: wppa-settings-autosave.php:5470
11284
- msgid "Single photo link."
11285
  msgstr ""
11286
 
11287
- #: wppa-settings-autosave.php:5511
11288
- msgid "Mphoto"
11289
  msgstr ""
11290
 
11291
- #: wppa-settings-autosave.php:5512
11292
- msgid "Media-like photo link."
11293
  msgstr ""
11294
 
11295
- #: wppa-settings-autosave.php:5554
11296
- msgid "Slideshow fullsize link"
11297
  msgstr ""
11298
 
11299
- #: wppa-settings-autosave.php:5555
11300
- msgid ""
11301
- "You can overrule lightbox but not big browse buttons with the photo specifc "
11302
- "link."
11303
  msgstr ""
11304
 
11305
- #: wppa-settings-autosave.php:5556
11306
- msgid "fullsize slideshow can only be set by the WPPA_SET shortcode."
11307
  msgstr ""
11308
 
11309
- #: wppa-settings-autosave.php:5569
11310
- msgid "lightbox single photos."
11311
  msgstr ""
11312
 
11313
- #: wppa-settings-autosave.php:5571
11314
- msgid "the thumbnails."
11315
  msgstr ""
11316
 
11317
- #: wppa-settings-autosave.php:5572
11318
- msgid "fullsize slideshow"
11319
  msgstr ""
11320
 
11321
- #: wppa-settings-autosave.php:5597
11322
- msgid "Film linktype"
11323
  msgstr ""
11324
 
11325
- #: wppa-settings-autosave.php:5598
11326
- msgid "Direct access goto image in:"
11327
  msgstr ""
11328
 
11329
- #: wppa-settings-autosave.php:5599
11330
- msgid ""
11331
- "Select the action to be taken when the user clicks on a filmstrip image."
11332
  msgstr ""
11333
 
11334
- #: wppa-settings-autosave.php:5604
11335
- msgid "slideshow window"
11336
  msgstr ""
11337
 
11338
- #: wppa-settings-autosave.php:5605
11339
- msgid "lightbox overlay"
11340
  msgstr ""
11341
 
11342
- #: wppa-settings-autosave.php:5620
11343
- msgid "Other links"
11344
  msgstr ""
11345
 
11346
- #: wppa-settings-autosave.php:5622
11347
- msgid "Download Link (aka Art Monkey link)"
11348
  msgstr ""
11349
 
11350
- #: wppa-settings-autosave.php:5623
11351
- msgid "Makes the photo name a download button."
 
 
 
 
11352
  msgstr ""
11353
 
11354
- #: wppa-settings-autosave.php:5624
11355
- msgid "Link Photo name in slideshow to file or zip with photoname as filename."
11356
  msgstr ""
11357
 
11358
- #: wppa-settings-autosave.php:5628 wppa-settings-autosave.php:5675
11359
- msgid "image file"
11360
  msgstr ""
11361
 
11362
- #: wppa-settings-autosave.php:5629 wppa-settings-autosave.php:5676
11363
- msgid "zipped image"
11364
  msgstr ""
11365
 
11366
- #: wppa-settings-autosave.php:5642
11367
- msgid "Art Monkey Source"
11368
  msgstr ""
11369
 
11370
- #: wppa-settings-autosave.php:5643
11371
- msgid "Use Source file for art monkey link if available."
11372
  msgstr ""
11373
 
11374
- #: wppa-settings-autosave.php:5652
11375
- msgid "Art Monkey Display"
11376
  msgstr ""
11377
 
11378
- #: wppa-settings-autosave.php:5653
11379
- msgid "Select button or link ( text )."
11380
  msgstr ""
11381
 
11382
- #: wppa-settings-autosave.php:5658
11383
- msgid "Textlink"
11384
  msgstr ""
11385
 
11386
- #: wppa-settings-autosave.php:5670
11387
- msgid "Popup Download Link"
11388
  msgstr ""
11389
 
11390
- #: wppa-settings-autosave.php:5671
11391
- msgid "Configure the download link on fullsize popups."
11392
  msgstr ""
11393
 
11394
- #: wppa-settings-autosave.php:5672
11395
- msgid "Link fullsize popup download button to either image or zip file."
11396
  msgstr ""
11397
 
11398
- #: wppa-settings-autosave.php:5688
11399
- msgid "Download link on lightbox"
11400
  msgstr ""
11401
 
11402
- #: wppa-settings-autosave.php:5689
11403
- msgid "Art monkey link on lightbox photo names."
11404
  msgstr ""
11405
 
11406
- #: wppa-settings-autosave.php:5698
11407
- msgid "Album download link"
11408
  msgstr ""
11409
 
11410
- #: wppa-settings-autosave.php:5699
11411
- msgid "Place an album download link on the album covers"
 
 
11412
  msgstr ""
11413
 
11414
- #: wppa-settings-autosave.php:5700
11415
- msgid "Creates a download zipfile containing the photos of the album"
11416
  msgstr ""
11417
 
11418
- #: wppa-settings-autosave.php:5708
11419
- msgid "Album download Source"
11420
  msgstr ""
11421
 
11422
- #: wppa-settings-autosave.php:5709
11423
- msgid "Use Source file for album download link if available."
11424
  msgstr ""
11425
 
11426
- #: wppa-settings-autosave.php:5718
11427
- msgid "Tagcloud Link"
11428
  msgstr ""
11429
 
11430
- #: wppa-settings-autosave.php:5719
11431
- msgid "Configure the link from the tags in the tag cloud."
11432
  msgstr ""
11433
 
11434
- #: wppa-settings-autosave.php:5720
11435
- msgid "Link the tag words to ether the thumbnails or the slideshow."
11436
  msgstr ""
11437
 
11438
- #: wppa-settings-autosave.php:5729 wppa-settings-autosave.php:5762
11439
- #: wppa-settings-autosave.php:5859 wppa-widget-admin.php:280
11440
- msgid "slideshow"
11441
  msgstr ""
11442
 
11443
- #: wppa-settings-autosave.php:5744 wppa-settings-autosave.php:5777
11444
- #: wppa-settings-autosave.php:5921
11445
- msgid "Occur"
11446
  msgstr ""
11447
 
11448
- #: wppa-settings-autosave.php:5751
11449
- msgid "Multitag Link"
11450
  msgstr ""
11451
 
11452
- #: wppa-settings-autosave.php:5752
11453
- msgid "Configure the link from the multitag selection."
11454
  msgstr ""
11455
 
11456
- #: wppa-settings-autosave.php:5753
11457
- msgid "Link to ether the thumbnails or the slideshow."
11458
  msgstr ""
11459
 
11460
- #: wppa-settings-autosave.php:5784
11461
- msgid "Super View Landing"
11462
  msgstr ""
11463
 
11464
- #: wppa-settings-autosave.php:5785
11465
- msgid "The landing page for the Super View widget."
11466
  msgstr ""
11467
 
11468
- #: wppa-settings-autosave.php:5793
11469
- msgid "Defined by the visitor"
11470
  msgstr ""
11471
 
11472
- #: wppa-settings-autosave.php:5806
11473
- msgid "Uploader Landing"
11474
  msgstr ""
11475
 
11476
- #: wppa-settings-autosave.php:5807
11477
- msgid "Select the landing page for the Uploader Widget"
11478
  msgstr ""
11479
 
11480
- #: wppa-settings-autosave.php:5827
11481
- msgid "Bestof Landing"
11482
  msgstr ""
11483
 
11484
- #: wppa-settings-autosave.php:5828
11485
- msgid "Select the landing page for the BestOf Widget / Box"
11486
  msgstr ""
11487
 
11488
- #: wppa-settings-autosave.php:5848
11489
- msgid "Album navigator Link"
11490
  msgstr ""
11491
 
11492
- #: wppa-settings-autosave.php:5849
11493
- msgid "Select link type and page for the Album navigator Widget"
11494
  msgstr ""
11495
 
11496
- #: wppa-settings-autosave.php:5877
11497
- msgid "Supersearch Landing"
11498
  msgstr ""
11499
 
11500
- #: wppa-settings-autosave.php:5878
11501
- msgid "Select the landing page for the Supersearch Box"
11502
  msgstr ""
11503
 
11504
- #: wppa-settings-autosave.php:5898
11505
- msgid "SM widget return"
11506
  msgstr ""
11507
 
11508
- #: wppa-settings-autosave.php:5899
11509
- msgid "Select the return link for social media from widgets"
11510
  msgstr ""
11511
 
11512
- #: wppa-settings-autosave.php:5900
11513
- msgid ""
11514
- "If you select Landing page, and it wont work, it may be required to set the "
11515
- "Occur to the sequence number of the landing shortcode on the page."
11516
  msgstr ""
11517
 
11518
- #: wppa-settings-autosave.php:5901
11519
  msgid ""
11520
- "Normally it is 1, but you can try 2 etc. Always create a new shared link to "
11521
- "test a setting."
11522
  msgstr ""
11523
 
11524
- #: wppa-settings-autosave.php:5909
11525
- msgid "Home page"
11526
  msgstr ""
11527
 
11528
- #: wppa-settings-autosave.php:5930
11529
- msgid "Album cover subalbums link"
11530
  msgstr ""
11531
 
11532
- #: wppa-settings-autosave.php:5931
11533
- msgid ""
11534
- "Select the linktype and display type for sub-albums on parent album covers."
11535
  msgstr ""
11536
 
11537
- #: wppa-settings-autosave.php:5939
11538
- msgid "No link at all"
11539
  msgstr ""
11540
 
11541
- #: wppa-settings-autosave.php:5940
11542
- msgid "Thumbnails and covers"
11543
  msgstr ""
11544
 
11545
- #: wppa-settings-autosave.php:5941
11546
- msgid "Slideshow or covers"
11547
  msgstr ""
11548
 
11549
- #: wppa-settings-autosave.php:5951
11550
- msgid "No display at all"
11551
  msgstr ""
11552
 
11553
- #: wppa-settings-autosave.php:5952
11554
- msgid "A list with sub(sub) albums"
11555
  msgstr ""
11556
 
11557
- #: wppa-settings-autosave.php:5953
11558
- msgid "A list of children only"
11559
  msgstr ""
11560
 
11561
- #: wppa-settings-autosave.php:5954
11562
- msgid "An enumeration of names"
11563
  msgstr ""
11564
 
11565
- #: wppa-settings-autosave.php:5955
11566
- msgid "Micro thumbnails"
11567
  msgstr ""
11568
 
11569
- #: wppa-settings-autosave.php:5993
11570
- msgid "Table VII:"
11571
  msgstr ""
11572
 
11573
- #: wppa-settings-autosave.php:5993
11574
- msgid "Permissions and Restrictions:"
11575
  msgstr ""
11576
 
11577
- #: wppa-settings-autosave.php:5994
11578
- msgid ""
11579
- "This table describes the access settings for admin and front-end activities."
11580
  msgstr ""
11581
 
11582
- #: wppa-settings-autosave.php:6015
11583
- msgid "Moderate P+C"
11584
  msgstr ""
11585
 
11586
- #: wppa-settings-autosave.php:6019
11587
- msgid "Comment&nbsp;Admin"
11588
  msgstr ""
11589
 
11590
- #: wppa-settings-autosave.php:6020
11591
- msgid "Help & Info"
11592
  msgstr ""
11593
 
11594
- #: wppa-settings-autosave.php:6022
11595
- msgid "Role"
11596
  msgstr ""
11597
 
11598
- #: wppa-settings-autosave.php:6031
11599
- msgid ""
11600
- "Admin settings per user role. Enabling these settings will overrule the "
11601
- "front-end settings for the specific user role"
11602
  msgstr ""
11603
 
11604
- #: wppa-settings-autosave.php:6055
11605
- msgid "Frontend create Albums and upload Photos enabling and limiting settings"
11606
  msgstr ""
11607
 
11608
- #: wppa-settings-autosave.php:6057
11609
- msgid "User create Albums"
11610
  msgstr ""
11611
 
11612
- #: wppa-settings-autosave.php:6058
11613
- msgid "Enable frontend album creation."
11614
  msgstr ""
11615
 
11616
- #: wppa-settings-autosave.php:6059
11617
- msgid "If you check this item, frontend album creation will be enabled."
11618
  msgstr ""
11619
 
11620
- #: wppa-settings-autosave.php:6069
11621
- msgid "User edit album"
11622
  msgstr ""
11623
 
11624
- #: wppa-settings-autosave.php:6070
11625
- msgid "Enable frontend edit album name and description."
11626
  msgstr ""
11627
 
11628
- #: wppa-settings-autosave.php:6080
11629
- msgid "User delete Albums"
11630
  msgstr ""
11631
 
11632
- #: wppa-settings-autosave.php:6081
11633
- msgid "Enable frontend album deletion"
11634
  msgstr ""
11635
 
11636
- #: wppa-settings-autosave.php:6082
11637
- msgid "If you check this item, frontend album deletion will be enabled."
11638
  msgstr ""
11639
 
11640
- #: wppa-settings-autosave.php:6092
11641
- msgid "User create Albums login"
 
11642
  msgstr ""
11643
 
11644
- #: wppa-settings-autosave.php:6093
11645
- msgid "Frontend album creation requires the user is logged in."
11646
  msgstr ""
11647
 
11648
- #: wppa-settings-autosave.php:6119
11649
- #, php-format
11650
- msgid "Upload limit %s"
11651
  msgstr ""
11652
 
11653
- #: wppa-settings-autosave.php:6120
11654
- msgid "Limit upload capacity for logged out users."
11655
  msgstr ""
11656
 
11657
- #: wppa-settings-autosave.php:6121
11658
- #, php-format
11659
- msgid "Limit upload capacity for the user role %s."
11660
  msgstr ""
11661
 
11662
- #: wppa-settings-autosave.php:6122
11663
- msgid "This setting has only effect when Table VII-B2 is unchecked."
11664
  msgstr ""
11665
 
11666
- #: wppa-settings-autosave.php:6123
11667
- msgid ""
11668
- "This limitation only applies to frontend uploads when the same userrole does "
11669
- "not have the Upload checkbox checked in Table VII-A."
11670
  msgstr ""
11671
 
11672
- #: wppa-settings-autosave.php:6124 wppa-settings-autosave.php:6140
11673
- #: wppa-settings-autosave.php:7957
11674
- msgid "A value of 0 means: no limit."
11675
  msgstr ""
11676
 
11677
- #: wppa-settings-autosave.php:6137
11678
- #, php-format
11679
- msgid "Album limit %s"
11680
  msgstr ""
11681
 
11682
- #: wppa-settings-autosave.php:6138
11683
- #, php-format
11684
- msgid "Limit number of albums for the user role %s."
11685
  msgstr ""
11686
 
11687
- #: wppa-settings-autosave.php:6139
11688
- msgid ""
11689
- "This limitation only applies to frontend create albums when the same "
11690
- "userrole does not have the Album admin checkbox checked in Table VII-A."
11691
  msgstr ""
11692
 
11693
- #: wppa-settings-autosave.php:6151
11694
- msgid "Upload one only"
11695
  msgstr ""
11696
 
11697
- #: wppa-settings-autosave.php:6152
11698
- msgid "Non admin users can upload only one photo at a time."
11699
  msgstr ""
11700
 
11701
- #: wppa-settings-autosave.php:6162
11702
- msgid "Upload moderation"
11703
  msgstr ""
11704
 
11705
- #: wppa-settings-autosave.php:6163
11706
- msgid "Uploaded photos need moderation."
11707
  msgstr ""
11708
 
11709
- #: wppa-settings-autosave.php:6164
11710
- msgid ""
11711
- "If checked, photos uploaded by users who do not have photo album admin "
11712
- "access rights need moderation."
11713
  msgstr ""
11714
 
11715
- #: wppa-settings-autosave.php:6165
11716
- msgid ""
11717
- "Users who have photo album admin access rights can change the photo status "
11718
- "to publish or featured."
11719
  msgstr ""
11720
 
11721
- #: wppa-settings-autosave.php:6166
11722
- msgid "You can set the album admin access rights in Table VII-A."
11723
  msgstr ""
11724
 
11725
- #: wppa-settings-autosave.php:6175
11726
- msgid "Upload notify"
11727
  msgstr ""
11728
 
11729
- #: wppa-settings-autosave.php:6176
11730
- msgid "Notify admin at frontend upload."
11731
  msgstr ""
11732
 
11733
- #: wppa-settings-autosave.php:6177 wppa-settings-autosave.php:6188
11734
- msgid "If checked, admin will receive a notification by email."
11735
  msgstr ""
11736
 
11737
- #: wppa-settings-autosave.php:6186
11738
- msgid "Upload backend notify"
11739
  msgstr ""
11740
 
11741
- #: wppa-settings-autosave.php:6187
11742
- msgid "Notify admin at backend upload."
11743
  msgstr ""
11744
 
11745
- #: wppa-settings-autosave.php:6197
11746
- msgid "Max size in pixels"
11747
  msgstr ""
11748
 
11749
- #: wppa-settings-autosave.php:6198
11750
- msgid "Max size for height and width for front-end uploads."
11751
  msgstr ""
11752
 
11753
- #: wppa-settings-autosave.php:6199
11754
- msgid "Enter the maximum size. 0 is unlimited"
11755
  msgstr ""
11756
 
11757
- #: wppa-settings-autosave.php:6208
11758
- msgid "Home after Upload"
11759
  msgstr ""
11760
 
11761
- #: wppa-settings-autosave.php:6209
11762
- msgid "After successfull front-end upload, go to the home page."
 
 
11763
  msgstr ""
11764
 
11765
- #: wppa-settings-autosave.php:6219
11766
- msgid "Fe alert"
 
 
 
 
11767
  msgstr ""
11768
 
11769
- #: wppa-settings-autosave.php:6220
11770
- msgid "Show alertbox on successful front-end upload/create."
 
 
 
 
 
 
11771
  msgstr ""
11772
 
11773
- #: wppa-settings-autosave.php:6230
11774
- msgid "Admin Functionality restrictions for non administrators"
11775
  msgstr ""
11776
 
11777
- #: wppa-settings-autosave.php:6232
11778
- msgid "Alt thumb is restricted"
11779
  msgstr ""
11780
 
11781
- #: wppa-settings-autosave.php:6233
11782
- msgid "Using <b>alt thumbsize</b> is a restricted action."
11783
  msgstr ""
11784
 
11785
- #: wppa-settings-autosave.php:6234
11786
- msgid ""
11787
- "If checked: alt thumbsize can not be set in album admin by users not having "
11788
- "admin rights."
11789
  msgstr ""
11790
 
11791
- #: wppa-settings-autosave.php:6243
11792
- msgid "Link is restricted"
11793
  msgstr ""
11794
 
11795
- #: wppa-settings-autosave.php:6244
11796
- msgid "Using <b>Link to</b> is a restricted action."
11797
  msgstr ""
11798
 
11799
- #: wppa-settings-autosave.php:6245
11800
- msgid ""
11801
- "If checked: Link to: can not be set in album admin by users not having admin "
11802
- "rights."
11803
  msgstr ""
11804
 
11805
- #: wppa-settings-autosave.php:6254
11806
- msgid "CoverType is restricted"
11807
  msgstr ""
11808
 
11809
- #: wppa-settings-autosave.php:6255
11810
- msgid "Changing <b>Cover Type</b> is a restricted action."
11811
  msgstr ""
11812
 
11813
- #: wppa-settings-autosave.php:6256
11814
- msgid ""
11815
- "If checked: Cover Type: can not be set in album admin by users not having "
11816
- "admin rights."
11817
  msgstr ""
11818
 
11819
- #: wppa-settings-autosave.php:6265
11820
- msgid "Photo order# is restricted"
11821
  msgstr ""
11822
 
11823
- #: wppa-settings-autosave.php:6266
11824
- msgid "Changing <b>Photo sort order #</b> is a restricted action."
 
 
11825
  msgstr ""
11826
 
11827
- #: wppa-settings-autosave.php:6267
11828
- msgid ""
11829
- "If checked: Photo sort order #: can not be set in photo admin by users not "
11830
- "having admin rights."
 
11831
  msgstr ""
11832
 
11833
- #: wppa-settings-autosave.php:6276
11834
- msgid "Change source restricted"
11835
  msgstr ""
11836
 
11837
- #: wppa-settings-autosave.php:6277
11838
- msgid "Changing the import source dir requires admin rights."
11839
  msgstr ""
11840
 
11841
- #: wppa-settings-autosave.php:6278
11842
- msgid ""
11843
- "If checked, the imput source for importing photos and albums is restricted "
11844
- "to user role administrator."
11845
  msgstr ""
11846
 
11847
- #: wppa-settings-autosave.php:6287
11848
- msgid "Extended status restricted"
11849
  msgstr ""
11850
 
11851
- #: wppa-settings-autosave.php:6288
11852
- msgid "Setting status other than pending or publish requires admin rights."
 
11853
  msgstr ""
11854
 
11855
- #: wppa-settings-autosave.php:6298
11856
- msgid "Photo description restricted"
11857
  msgstr ""
11858
 
11859
- #: wppa-settings-autosave.php:6299
11860
- msgid "Edit photo description requires admin rights."
11861
  msgstr ""
11862
 
11863
- #: wppa-settings-autosave.php:6309
11864
- msgid "Update photofiles restricted"
11865
  msgstr ""
11866
 
11867
- #: wppa-settings-autosave.php:6310
11868
- msgid "Re-upload files requires admin rights"
11869
  msgstr ""
11870
 
11871
- #: wppa-settings-autosave.php:6320
11872
- msgid "Miscellaneous limiting settings"
11873
  msgstr ""
11874
 
11875
- #: wppa-settings-autosave.php:6322
11876
- msgid "Owners only"
11877
  msgstr ""
11878
 
11879
- #: wppa-settings-autosave.php:6323
11880
- msgid "Limit edit album access to the album owners only."
11881
  msgstr ""
11882
 
11883
- #: wppa-settings-autosave.php:6324
11884
- msgid "If checked, non-admin users can edit their own albums only."
11885
  msgstr ""
11886
 
11887
- #: wppa-settings-autosave.php:6333
11888
- msgid "Upload Owners only"
11889
  msgstr ""
11890
 
11891
- #: wppa-settings-autosave.php:6334
11892
- msgid "Limit uploads to the album owners only."
11893
  msgstr ""
11894
 
11895
- #: wppa-settings-autosave.php:6335
11896
- msgid ""
11897
- "If checked, users can upload to their own own albums and --- public --- only."
11898
  msgstr ""
11899
 
11900
- #: wppa-settings-autosave.php:6344
11901
- msgid "Frontend Edit"
11902
  msgstr ""
11903
 
11904
- #: wppa-settings-autosave.php:6345
11905
- msgid "Allow the uploader to edit the photo info"
11906
  msgstr ""
11907
 
11908
- #: wppa-settings-autosave.php:6346
11909
- msgid ""
11910
- "If selected, any logged in user who meets the criteria has the capability to "
11911
- "edit the photo information."
11912
  msgstr ""
11913
 
11914
- #: wppa-settings-autosave.php:6347
11915
- msgid "Note: This may be AFTER moderation!!"
11916
  msgstr ""
11917
 
11918
- #: wppa-settings-autosave.php:6349
11919
- msgid "Classic"
11920
  msgstr ""
11921
 
11922
- #: wppa-settings-autosave.php:6349
11923
- msgid "New style"
11924
  msgstr ""
11925
 
11926
- #: wppa-settings-autosave.php:6358
11927
- msgid "Fe Edit users"
11928
  msgstr ""
11929
 
11930
- #: wppa-settings-autosave.php:6359
11931
- msgid "The criteria the user must meet to edit photo info"
 
 
11932
  msgstr ""
11933
 
11934
- #: wppa-settings-autosave.php:6362
11935
- msgid "Admin and superuser"
11936
  msgstr ""
11937
 
11938
- #: wppa-settings-autosave.php:6362
11939
- msgid "Owner, admin and superuser"
11940
  msgstr ""
11941
 
11942
- #: wppa-settings-autosave.php:6371
11943
- msgid "Fe Edit Theme CSS"
11944
  msgstr ""
11945
 
11946
- #: wppa-settings-autosave.php:6372
11947
- msgid "The front-end edit photo dialog uses the theme CSS."
11948
  msgstr ""
11949
 
11950
- #: wppa-settings-autosave.php:6382
11951
- msgid "Fe Edit New Items"
 
11952
  msgstr ""
11953
 
11954
- #: wppa-settings-autosave.php:6383
11955
- msgid "The items that are fe editable"
 
 
 
11956
  msgstr ""
11957
 
11958
- #: wppa-settings-autosave.php:6384
11959
- msgid "See also Table II-J10!"
 
 
 
11960
  msgstr ""
11961
 
11962
- #: wppa-settings-autosave.php:6397
11963
- msgid "Fe Edit Button text"
11964
  msgstr ""
11965
 
11966
- #: wppa-settings-autosave.php:6398
11967
- msgid "The text on the Edit button."
11968
  msgstr ""
11969
 
11970
- #: wppa-settings-autosave.php:6408
11971
- msgid "Fe Edit Dialog caption"
11972
  msgstr ""
11973
 
11974
- #: wppa-settings-autosave.php:6409
11975
- msgid "The text on the header of the popup."
11976
  msgstr ""
11977
 
11978
- #: wppa-settings-autosave.php:6419
11979
- msgid "Frontend Delete"
11980
  msgstr ""
11981
 
11982
- #: wppa-settings-autosave.php:6420
11983
- msgid "Allow the uploader to delete the photo"
11984
  msgstr ""
11985
 
11986
- #: wppa-settings-autosave.php:6430
11987
- msgid "Uploader Moderate Comment"
 
 
11988
  msgstr ""
11989
 
11990
- #: wppa-settings-autosave.php:6431
11991
- msgid "The owner of the photo can moderate the photos comments."
11992
  msgstr ""
11993
 
11994
- #: wppa-settings-autosave.php:6432
11995
- msgid "This setting requires \"Uploader edit\" to be enabled also."
11996
  msgstr ""
11997
 
11998
- #: wppa-settings-autosave.php:6441
11999
- msgid "Upload memory check frontend"
12000
  msgstr ""
12001
 
12002
- #: wppa-settings-autosave.php:6442 wppa-settings-autosave.php:6453
12003
- msgid "Disable uploading photos that are too large."
12004
  msgstr ""
12005
 
12006
- #: wppa-settings-autosave.php:6443 wppa-settings-autosave.php:6454
12007
- msgid ""
12008
- "To prevent out of memory crashes during upload and possible database "
12009
- "inconsistencies, uploads can be prevented if the photos are too big."
12010
  msgstr ""
12011
 
12012
- #: wppa-settings-autosave.php:6452
12013
- msgid "Upload memory check admin"
12014
  msgstr ""
12015
 
12016
- #: wppa-settings-autosave.php:6463
12017
- msgid "Comment captcha"
 
12018
  msgstr ""
12019
 
12020
- #: wppa-settings-autosave.php:6464
12021
- msgid "Use a simple calculate captcha on comments form."
12022
  msgstr ""
12023
 
12024
- #: wppa-settings-autosave.php:6477
12025
- msgid "Spam lifetime"
12026
  msgstr ""
12027
 
12028
- #: wppa-settings-autosave.php:6478
12029
- msgid "Delete spam comments when older than."
12030
  msgstr ""
12031
 
12032
- #: wppa-settings-autosave.php:6505
12033
- msgid "Avoid duplicates"
12034
  msgstr ""
12035
 
12036
- #: wppa-settings-autosave.php:6506
12037
- msgid "Prevent the creation of duplicate photos."
12038
  msgstr ""
12039
 
12040
- #: wppa-settings-autosave.php:6507
12041
- msgid ""
12042
- "If checked: uploading, importing, copying or moving photos to other albums "
12043
- "will be prevented when the desitation album already contains a photo with "
12044
- "the same filename."
12045
  msgstr ""
12046
 
12047
- #: wppa-settings-autosave.php:6516
12048
- msgid "Blacklist user"
12049
  msgstr ""
12050
 
12051
- #: wppa-settings-autosave.php:6517 wppa-settings-autosave.php:6518
12052
- msgid "Set the status of all the users photos to 'pending'."
12053
  msgstr ""
12054
 
12055
- #: wppa-settings-autosave.php:6519
12056
- msgid "Also inhibits further uploads."
12057
  msgstr ""
12058
 
12059
- #: wppa-settings-autosave.php:6525
12060
- msgid "--- select a user to blacklist ---"
12061
  msgstr ""
12062
 
12063
- #: wppa-settings-autosave.php:6535 wppa-settings-autosave.php:6540
12064
- #: wppa-settings-autosave.php:6561 wppa-settings-autosave.php:6599
12065
- #: wppa-settings-autosave.php:6604 wppa-settings-autosave.php:6625
12066
- #: wppa-settings-autosave.php:9055 wppa-settings-autosave.php:9097
12067
- msgid "The page will be reloaded after the action has taken place."
12068
  msgstr ""
12069
 
12070
- #: wppa-settings-autosave.php:6541 wppa-settings-autosave.php:6605
12071
- msgid "User login name <b>( case sensitive! )</b>:"
12072
  msgstr ""
12073
 
12074
- #: wppa-settings-autosave.php:6549
12075
- msgid "Unblacklist user"
12076
  msgstr ""
12077
 
12078
- #: wppa-settings-autosave.php:6550
12079
- msgid "Set the status of all the users photos to 'publish'."
12080
  msgstr ""
12081
 
12082
- #: wppa-settings-autosave.php:6554
12083
- msgid "--- select a user to unblacklist ---"
12084
  msgstr ""
12085
 
12086
- #: wppa-settings-autosave.php:6569
12087
- msgid "Photo owner change"
12088
  msgstr ""
12089
 
12090
- #: wppa-settings-autosave.php:6570
12091
- msgid "Administrators can change photo owner"
12092
  msgstr ""
12093
 
12094
- #: wppa-settings-autosave.php:6580
12095
- msgid "Super user"
12096
  msgstr ""
12097
 
12098
- #: wppa-settings-autosave.php:6581
12099
- msgid "Give these users all rights in wppa."
12100
  msgstr ""
12101
 
12102
- #: wppa-settings-autosave.php:6582
12103
- msgid "This gives the user all the administrator privileges within wppa."
12104
  msgstr ""
12105
 
12106
- #: wppa-settings-autosave.php:6583
12107
- msgid ""
12108
- "Make sure the user also has a role that has all the boxes ticked in Table "
12109
- "VII-A"
12110
  msgstr ""
12111
 
12112
- #: wppa-settings-autosave.php:6589
12113
- msgid "--- select a user to make superuser ---"
12114
  msgstr ""
12115
 
12116
- #: wppa-settings-autosave.php:6613
12117
- msgid "Unsuper user"
12118
  msgstr ""
12119
 
12120
- #: wppa-settings-autosave.php:6614
12121
- msgid "Remove user from super user list."
12122
  msgstr ""
12123
 
12124
- #: wppa-settings-autosave.php:6618
12125
- msgid "--- select a user to unmake superuser ---"
12126
  msgstr ""
12127
 
12128
- #: wppa-settings-autosave.php:6651
12129
- msgid "Table VIII:"
12130
  msgstr ""
12131
 
12132
- #: wppa-settings-autosave.php:6651
12133
- msgid "Actions:"
 
12134
  msgstr ""
12135
 
12136
- #: wppa-settings-autosave.php:6652
12137
- msgid "This table lists all actions that can be taken to the wppa+ system"
12138
  msgstr ""
12139
 
12140
- #: wppa-settings-autosave.php:6662 wppa-settings-autosave.php:7392
12141
- msgid "Specification"
12142
  msgstr ""
12143
 
12144
- #: wppa-settings-autosave.php:6663 wppa-settings-autosave.php:7393
12145
- #: wppa-settings-autosave.php:9963 wppa-settings-autosave.php:9985
12146
- msgid "Do it!"
12147
  msgstr ""
12148
 
12149
- #: wppa-settings-autosave.php:6665 wppa-settings-autosave.php:7395
12150
- msgid "To Go"
12151
  msgstr ""
12152
 
12153
- #: wppa-settings-autosave.php:6673
12154
- msgid "Harmless and reverseable actions"
12155
  msgstr ""
12156
 
12157
- #: wppa-settings-autosave.php:6675
12158
- msgid "Ignore concurrency"
12159
  msgstr ""
12160
 
12161
- #: wppa-settings-autosave.php:6676
12162
- msgid "Ignore the prevention of concurrent actions."
12163
  msgstr ""
12164
 
12165
- #: wppa-settings-autosave.php:6677
12166
- msgid ""
12167
- "This setting is meant to recover from deadlock situations only. Use with "
12168
- "care!"
12169
  msgstr ""
12170
 
12171
- #: wppa-settings-autosave.php:6688
12172
- msgid "Setup"
12173
  msgstr ""
12174
 
12175
- #: wppa-settings-autosave.php:6689
12176
- msgid "Re-initialize plugin."
12177
  msgstr ""
12178
 
12179
- #: wppa-settings-autosave.php:6690
12180
- msgid ""
12181
- "Re-initilizes the plugin, (re)creates database tables and sets up default "
12182
- "settings and directories if required."
12183
  msgstr ""
12184
 
12185
- #: wppa-settings-autosave.php:6691
12186
- msgid ""
12187
- "This action may be required to setup blogs in a multiblog (network) site as "
12188
- "well as in rare cases to correct initilization errors."
12189
  msgstr ""
12190
 
12191
- #: wppa-settings-autosave.php:6702
12192
- msgid "Backup settings"
12193
  msgstr ""
12194
 
12195
- #: wppa-settings-autosave.php:6703
12196
- msgid "Save all settings into a backup file."
12197
  msgstr ""
12198
 
12199
- #: wppa-settings-autosave.php:6704
12200
- msgid "Saves all the settings into a backup file"
12201
  msgstr ""
12202
 
12203
- #: wppa-settings-autosave.php:6715
12204
- msgid "Load settings"
12205
  msgstr ""
12206
 
12207
- #: wppa-settings-autosave.php:6716
12208
- msgid "Restore all settings from defaults, a backup or skin file."
 
 
12209
  msgstr ""
12210
 
12211
- #: wppa-settings-autosave.php:6717
12212
  msgid ""
12213
- "Restores all the settings from the factory supplied defaults, the backup you "
12214
- "created or from a skin file."
12215
  msgstr ""
12216
 
12217
- #: wppa-settings-autosave.php:6723
12218
- msgid "--- set to defaults ---"
12219
  msgstr ""
12220
 
12221
- #: wppa-settings-autosave.php:6726
12222
- msgid "--- restore backup ---"
12223
  msgstr ""
12224
 
12225
- #: wppa-settings-autosave.php:6748
12226
- msgid "Regenerate"
 
12227
  msgstr ""
12228
 
12229
- #: wppa-settings-autosave.php:6749 wppa-settings-autosave.php:6750
12230
- msgid "Regenerate all thumbnails."
12231
  msgstr ""
12232
 
12233
- #: wppa-settings-autosave.php:6753 wppa-settings-autosave.php:6857
12234
- #: wppa-settings-autosave.php:6924
12235
- msgid "Skip one"
12236
  msgstr ""
12237
 
12238
- #: wppa-settings-autosave.php:6762
12239
- msgid "Rerate"
12240
  msgstr ""
12241
 
12242
- #: wppa-settings-autosave.php:6763
12243
- msgid "Recalculate ratings."
12244
  msgstr ""
12245
 
12246
- #: wppa-settings-autosave.php:6764
12247
- msgid ""
12248
- "This function will recalculate all mean photo ratings from the ratings table."
12249
  msgstr ""
12250
 
12251
- #: wppa-settings-autosave.php:6765
12252
- msgid ""
12253
- "You may need this function after the re-import of previously exported photos"
12254
  msgstr ""
12255
 
12256
- #: wppa-settings-autosave.php:6776
12257
- msgid "Lost and found"
12258
  msgstr ""
12259
 
12260
- #: wppa-settings-autosave.php:6777
12261
- msgid "Find \"lost\" photos."
12262
  msgstr ""
12263
 
12264
- #: wppa-settings-autosave.php:6778
12265
- msgid "This function will attempt to find lost photos."
12266
  msgstr ""
12267
 
12268
- #: wppa-settings-autosave.php:6789
12269
- msgid "Recuperate"
12270
  msgstr ""
12271
 
12272
- #: wppa-settings-autosave.php:6791
12273
  msgid ""
12274
- "This action will attempt to find and register IPTC and EXIF data from photos "
12275
- "in the WPPA+ system."
12276
  msgstr ""
12277
 
12278
- #: wppa-settings-autosave.php:6802
12279
- msgid "Remake Index Albums"
12280
  msgstr ""
12281
 
12282
- #: wppa-settings-autosave.php:6803
12283
- msgid "Remakes the index database table for albums."
12284
  msgstr ""
12285
 
12286
- #: wppa-settings-autosave.php:6815
12287
- msgid "Remake Index Photos"
12288
  msgstr ""
12289
 
12290
- #: wppa-settings-autosave.php:6816
12291
- msgid "Remakes the index database table for photos."
12292
  msgstr ""
12293
 
12294
- #: wppa-settings-autosave.php:6834
12295
- msgid "Convert to tree"
 
 
12296
  msgstr ""
12297
 
12298
- #: wppa-settings-autosave.php:6835
12299
- msgid "Convert filesystem to tree structure."
12300
  msgstr ""
12301
 
12302
- #: wppa-settings-autosave.php:6838
12303
- msgid "Convert to flat"
12304
  msgstr ""
12305
 
12306
- #: wppa-settings-autosave.php:6839
12307
- msgid "Convert filesystem to flat structure."
12308
  msgstr ""
12309
 
12310
- #: wppa-settings-autosave.php:6841
12311
- msgid ""
12312
- "If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
12313
- "to flat first."
12314
  msgstr ""
12315
 
12316
- #: wppa-settings-autosave.php:6853
12317
- msgid "Remake the photofiles from photo sourcefiles."
12318
  msgstr ""
12319
 
12320
- #: wppa-settings-autosave.php:6854
12321
- msgid ""
12322
- "This action will remake the fullsize images, thumbnail images, and will "
12323
- "refresh the iptc and exif data for all photos where the source is found in "
12324
- "the corresponding album sub-directory of the source directory."
12325
  msgstr ""
12326
 
12327
- #: wppa-settings-autosave.php:6866
12328
- msgid "Orientation only"
12329
  msgstr ""
12330
 
12331
- #: wppa-settings-autosave.php:6867
12332
- msgid "Remake non standard orientated photos only."
12333
  msgstr ""
12334
 
12335
- #: wppa-settings-autosave.php:6880
12336
- msgid "Recalc sizes"
12337
  msgstr ""
12338
 
12339
- #: wppa-settings-autosave.php:6881
12340
- msgid "Recalculate photosizes and save to db."
12341
  msgstr ""
12342
 
12343
- #: wppa-settings-autosave.php:6893
12344
- msgid "Renew album crypt"
12345
  msgstr ""
12346
 
12347
- #: wppa-settings-autosave.php:6894
12348
- msgid "Renew album encrcryption codes."
12349
  msgstr ""
12350
 
12351
- #: wppa-settings-autosave.php:6906
12352
- msgid "Renew photo crypt"
12353
  msgstr ""
12354
 
12355
- #: wppa-settings-autosave.php:6907
12356
- msgid "Renew photo encrcryption codes."
 
12357
  msgstr ""
12358
 
12359
- #: wppa-settings-autosave.php:6919
12360
- msgid "Create orietation sources"
12361
  msgstr ""
12362
 
12363
- #: wppa-settings-autosave.php:6920
12364
- msgid "Creates correctly oriented pseudo source file."
 
12365
  msgstr ""
12366
 
12367
- #: wppa-settings-autosave.php:6933
12368
- msgid "Clearing and other irreverseable actions"
12369
  msgstr ""
12370
 
12371
- #: wppa-settings-autosave.php:6935
12372
- msgid "Clear ratings"
 
 
12373
  msgstr ""
12374
 
12375
- #: wppa-settings-autosave.php:6936
12376
- msgid "Reset all ratings."
 
12377
  msgstr ""
12378
 
12379
- #: wppa-settings-autosave.php:6937
12380
- msgid "WARNING: If checked, this will clear all ratings in the system!"
 
12381
  msgstr ""
12382
 
12383
- #: wppa-settings-autosave.php:6948
12384
- msgid "Clear viewcounts"
 
12385
  msgstr ""
12386
 
12387
- #: wppa-settings-autosave.php:6949
12388
- msgid "Reset all viewcounts."
 
 
12389
  msgstr ""
12390
 
12391
- #: wppa-settings-autosave.php:6950
12392
- msgid "WARNING: If checked, this will clear all viewcounts in the system!"
12393
  msgstr ""
12394
 
12395
- #: wppa-settings-autosave.php:6961
12396
- msgid "Reset IPTC"
12397
  msgstr ""
12398
 
12399
- #: wppa-settings-autosave.php:6962
12400
- msgid "Clear all IPTC data."
12401
  msgstr ""
12402
 
12403
- #: wppa-settings-autosave.php:6963
12404
- msgid "WARNING: If checked, this will clear all IPTC data in the system!"
12405
  msgstr ""
12406
 
12407
- #: wppa-settings-autosave.php:6974
12408
- msgid "Reset EXIF"
 
 
12409
  msgstr ""
12410
 
12411
- #: wppa-settings-autosave.php:6975
12412
- msgid "Clear all EXIF data."
 
 
12413
  msgstr ""
12414
 
12415
- #: wppa-settings-autosave.php:6976
12416
- msgid "WARNING: If checked, this will clear all EXIF data in the system!"
12417
  msgstr ""
12418
 
12419
- #: wppa-settings-autosave.php:6987
12420
- msgid "Apply New Photodesc"
12421
  msgstr ""
12422
 
12423
- #: wppa-settings-autosave.php:6988
12424
- msgid "Apply New photo description on all photos in the system."
12425
  msgstr ""
12426
 
12427
- #: wppa-settings-autosave.php:7000
12428
- msgid "Append to photodesc"
12429
  msgstr ""
12430
 
12431
- #: wppa-settings-autosave.php:7001
12432
- msgid "Append this text to all photo descriptions."
12433
  msgstr ""
12434
 
12435
- #: wppa-settings-autosave.php:7015
12436
- msgid "Remove from photodesc"
12437
  msgstr ""
12438
 
12439
- #: wppa-settings-autosave.php:7016
12440
- msgid "Remove this text from all photo descriptions."
12441
  msgstr ""
12442
 
12443
- #: wppa-settings-autosave.php:7030
12444
- msgid "Remove empty albums"
12445
  msgstr ""
12446
 
12447
- #: wppa-settings-autosave.php:7031
12448
- msgid "Removes albums that are not used."
12449
  msgstr ""
12450
 
12451
- #: wppa-settings-autosave.php:7043
12452
- msgid "Remove file-ext"
12453
  msgstr ""
12454
 
12455
- #: wppa-settings-autosave.php:7044
12456
- msgid "Remove possible file extension from photo name."
12457
  msgstr ""
12458
 
12459
- #: wppa-settings-autosave.php:7045
12460
- msgid ""
12461
- "This may be required for old photos, uploaded when the option in Table IX-D3 "
12462
- "was not yet available/selected."
12463
  msgstr ""
12464
 
12465
- #: wppa-settings-autosave.php:7056
12466
- msgid "Re-add file-ext"
12467
  msgstr ""
12468
 
12469
- #: wppa-settings-autosave.php:7057
12470
- msgid "Revert the <i>Remove file-ext</i> action."
12471
  msgstr ""
12472
 
12473
- #: wppa-settings-autosave.php:7069
12474
- msgid "Watermark all"
12475
  msgstr ""
12476
 
12477
- #: wppa-settings-autosave.php:7070
12478
- msgid "Apply watermark according to current settings to all photos."
12479
  msgstr ""
12480
 
12481
- #: wppa-settings-autosave.php:7071
12482
- msgid "See Table IX_F for the current watermark settings"
 
 
12483
  msgstr ""
12484
 
12485
- #: wppa-settings-autosave.php:7082
12486
- msgid "Create all autopages"
12487
  msgstr ""
12488
 
12489
- #: wppa-settings-autosave.php:7083
12490
- msgid "Create all the pages to display slides individually."
12491
  msgstr ""
12492
 
12493
- #: wppa-settings-autosave.php:7084 wppa-settings-autosave.php:7098
12494
- msgid "See also Table IV-A10."
 
 
12495
  msgstr ""
12496
 
12497
- #: wppa-settings-autosave.php:7085
12498
- msgid ""
12499
- "Make sure you have a custom menu and the \"Automatically add new top-level "
12500
- "pages to this menu\" box UNticked!!"
12501
  msgstr ""
12502
 
12503
- #: wppa-settings-autosave.php:7096
12504
- msgid "Delete all autopages"
12505
  msgstr ""
12506
 
12507
- #: wppa-settings-autosave.php:7097
12508
- msgid "Delete all the pages to display slides individually."
 
 
12509
  msgstr ""
12510
 
12511
- #: wppa-settings-autosave.php:7110
12512
- msgid "Leading zeroes"
12513
  msgstr ""
12514
 
12515
- #: wppa-settings-autosave.php:7111
12516
- msgid "If photoname numeric, add leading zeros"
12517
  msgstr ""
12518
 
12519
- #: wppa-settings-autosave.php:7112
12520
  msgid ""
12521
- "You can extend the name with leading zeros, so alphabetic sort becomes equal "
12522
- "to numeric sort order."
12523
  msgstr ""
12524
 
12525
- #: wppa-settings-autosave.php:7115
12526
- msgid "Total chars"
12527
  msgstr ""
12528
 
12529
- #: wppa-settings-autosave.php:7124
12530
- msgid "Add GPX tag"
12531
  msgstr ""
12532
 
12533
- #: wppa-settings-autosave.php:7125
12534
- msgid "Make sure photos with gpx data have a Gpx tag"
 
 
12535
  msgstr ""
12536
 
12537
- #: wppa-settings-autosave.php:7138 wppa-settings-autosave.php:8109
12538
- msgid "Optimize files"
12539
  msgstr ""
12540
 
12541
- #: wppa-settings-autosave.php:7139
12542
- msgid "Optimize with EWWW image optimizer"
12543
  msgstr ""
12544
 
12545
- #: wppa-settings-autosave.php:7152
12546
- msgid "Edit tag"
12547
  msgstr ""
12548
 
12549
- #: wppa-settings-autosave.php:7153
12550
- msgid "Globally change a tagname."
12551
  msgstr ""
12552
 
12553
- #: wppa-settings-autosave.php:7159
12554
- msgid "-select a tag-"
12555
  msgstr ""
12556
 
12557
- #: wppa-settings-autosave.php:7165
12558
- msgid "Tag:"
12559
  msgstr ""
12560
 
12561
- #: wppa-settings-autosave.php:7166
12562
- msgid "Change to:"
12563
  msgstr ""
12564
 
12565
- #: wppa-settings-autosave.php:7175
12566
- msgid "Synchronize Cloudinary"
12567
  msgstr ""
12568
 
12569
- #: wppa-settings-autosave.php:7176
12570
- msgid "Removes/adds images in the cloud."
12571
  msgstr ""
12572
 
12573
- #: wppa-settings-autosave.php:7177
12574
- msgid "Removes old images and verifies/adds new images to Cloudinary."
12575
  msgstr ""
12576
 
12577
- #: wppa-settings-autosave.php:7178
12578
- msgid "See Table IX-K4.7 for the configured lifetime."
12579
  msgstr ""
12580
 
12581
- #: wppa-settings-autosave.php:7189
12582
- msgid "Fix tags"
12583
  msgstr ""
12584
 
12585
- #: wppa-settings-autosave.php:7190
12586
- msgid "Make sure photo tags format is uptodate"
 
12587
  msgstr ""
12588
 
12589
- #: wppa-settings-autosave.php:7191
12590
- msgid "Fixes tags to be conform current database rules."
12591
  msgstr ""
12592
 
12593
- #: wppa-settings-autosave.php:7202
12594
- msgid "Fix cats"
12595
  msgstr ""
12596
 
12597
- #: wppa-settings-autosave.php:7203
12598
- msgid "Make sure album cats format is uptodate"
 
 
12599
  msgstr ""
12600
 
12601
- #: wppa-settings-autosave.php:7204
12602
- msgid "Fixes cats to be conform current database rules."
12603
  msgstr ""
12604
 
12605
- #: wppa-settings-autosave.php:7215
12606
- msgid "Set owner to name"
12607
  msgstr ""
12608
 
12609
- #: wppa-settings-autosave.php:7216
12610
- msgid "If photoname equals user display name, set him owner."
12611
  msgstr ""
12612
 
12613
- #: wppa-settings-autosave.php:7228
12614
- msgid "Move all photos"
12615
  msgstr ""
12616
 
12617
- #: wppa-settings-autosave.php:7229
12618
- msgid "Move all photos from one album to another album."
12619
  msgstr ""
12620
 
12621
- #: wppa-settings-autosave.php:7241
12622
- msgid "From"
12623
  msgstr ""
12624
 
12625
- #: wppa-settings-autosave.php:7242
12626
- msgid "Move from album"
12627
  msgstr ""
12628
 
12629
- #: wppa-settings-autosave.php:7268
12630
- msgid "To"
12631
  msgstr ""
12632
 
12633
- #: wppa-settings-autosave.php:7269
12634
- msgid "Move to album"
12635
  msgstr ""
12636
 
12637
- #: wppa-settings-autosave.php:7310
12638
- msgid "Listings"
12639
  msgstr ""
12640
 
12641
- #: wppa-settings-autosave.php:7312
12642
- msgid "List Logfile"
12643
  msgstr ""
12644
 
12645
- #: wppa-settings-autosave.php:7313
12646
- msgid "Show the content of wppa+ (error) log."
12647
  msgstr ""
12648
 
12649
- #: wppa-settings-autosave.php:7317
12650
- msgid "Purge logfile"
12651
  msgstr ""
12652
 
12653
- #: wppa-settings-autosave.php:7326
12654
- msgid "List Ratings"
12655
  msgstr ""
12656
 
12657
- #: wppa-settings-autosave.php:7327
12658
- msgid "Show the most recent ratings."
12659
  msgstr ""
12660
 
12661
- #: wppa-settings-autosave.php:7340
12662
- msgid "List Index"
12663
  msgstr ""
12664
 
12665
- #: wppa-settings-autosave.php:7341
12666
- msgid "Show the content if the index table."
12667
  msgstr ""
12668
 
12669
- #: wppa-settings-autosave.php:7345
12670
- msgid "Start at text:"
12671
  msgstr ""
12672
 
12673
- #: wppa-settings-autosave.php:7355
12674
- msgid "List active sessions"
12675
  msgstr ""
12676
 
12677
- #: wppa-settings-autosave.php:7356
12678
- msgid "Show the content of the sessions table."
12679
  msgstr ""
12680
 
12681
- #: wppa-settings-autosave.php:7369
12682
- msgid "List comments"
12683
  msgstr ""
12684
 
12685
- #: wppa-settings-autosave.php:7370
12686
- msgid "Show the content of the comments table."
12687
  msgstr ""
12688
 
12689
- #: wppa-settings-autosave.php:7376
12690
- msgid "Order by:"
12691
  msgstr ""
12692
 
12693
- #: wppa-settings-autosave.php:7405
12694
- msgid "Table IX:"
 
 
12695
  msgstr ""
12696
 
12697
- #: wppa-settings-autosave.php:7405
12698
- msgid "Miscellaneous:"
12699
  msgstr ""
12700
 
12701
- #: wppa-settings-autosave.php:7406
12702
- msgid "This table lists all settings that do not fit into an other table"
12703
  msgstr ""
12704
 
12705
- #: wppa-settings-autosave.php:7424
12706
- msgid "Internal engine related settings"
12707
  msgstr ""
12708
 
12709
- #: wppa-settings-autosave.php:7426
12710
- msgid "WPPA+ Filter priority"
12711
  msgstr ""
12712
 
12713
- #: wppa-settings-autosave.php:7427
12714
- msgid "Sets the priority of the wppa+ content filter."
12715
  msgstr ""
12716
 
12717
- #: wppa-settings-autosave.php:7428 wppa-settings-autosave.php:7437
12718
- msgid ""
12719
- "If you encounter conflicts with the theme or other plugins, increasing this "
12720
- "value sometimes helps. Use with great care!"
12721
  msgstr ""
12722
 
12723
- #: wppa-settings-autosave.php:7435
12724
- msgid "Do_shortcode priority"
12725
  msgstr ""
12726
 
12727
- #: wppa-settings-autosave.php:7436
12728
- msgid "Sets the priority of the do_shortcode() content filter."
 
 
 
12729
  msgstr ""
12730
 
12731
- #: wppa-settings-autosave.php:7444
12732
- msgid "WPPA shortcode at Filter priority"
12733
  msgstr ""
12734
 
12735
- #: wppa-settings-autosave.php:7445
12736
- msgid "Execute shortcode expansion on filter priority in posts and pages."
12737
  msgstr ""
12738
 
12739
- #: wppa-settings-autosave.php:7446 wppa-settings-autosave.php:7455
12740
- msgid "Use to fix certain layout problems"
12741
  msgstr ""
12742
 
12743
- #: wppa-settings-autosave.php:7453
12744
- msgid "WPPA shortcode at Filter priority widget"
12745
  msgstr ""
12746
 
12747
- #: wppa-settings-autosave.php:7454
12748
- msgid "Execute shortcode expansion on filter priority in widgets."
 
 
 
12749
  msgstr ""
12750
 
12751
- #: wppa-settings-autosave.php:7462
12752
- msgid "JPG image quality"
12753
  msgstr ""
12754
 
12755
- #: wppa-settings-autosave.php:7463
12756
- msgid "The jpg quality when photos are downsized"
12757
  msgstr ""
12758
 
12759
- #: wppa-settings-autosave.php:7464
12760
- msgid "The higher the number the better the quality but the larger the file"
12761
  msgstr ""
12762
 
12763
- #: wppa-settings-autosave.php:7465
12764
- msgid "Possible values 20..100"
12765
  msgstr ""
12766
 
12767
- #: wppa-settings-autosave.php:7472
12768
- msgid "Allow WPPA+ Debugging"
12769
  msgstr ""
12770
 
12771
- #: wppa-settings-autosave.php:7473
12772
- msgid "Allow the use of &amp;debug=.. in urls to this site."
12773
  msgstr ""
12774
 
12775
- #: wppa-settings-autosave.php:7474
12776
- msgid ""
12777
- "If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
12778
- "site will generate the display of special WPPA+ diagnostics, as well as php "
12779
- "warnings"
12780
  msgstr ""
12781
 
12782
- #: wppa-settings-autosave.php:7481
12783
- msgid "Auto continue"
12784
  msgstr ""
12785
 
12786
- #: wppa-settings-autosave.php:7482
12787
- msgid "Continue automatic after time out"
12788
  msgstr ""
12789
 
12790
- #: wppa-settings-autosave.php:7483
12791
  msgid ""
12792
- "If checked, an attempt will be made to restart an admin process when the "
12793
- "time is out."
12794
  msgstr ""
12795
 
12796
- #: wppa-settings-autosave.php:7491
12797
- msgid "Set max execution time here."
12798
  msgstr ""
12799
 
12800
- #: wppa-settings-autosave.php:7492
12801
- msgid ""
12802
- "If your php config does not properly set the max execution time, you can set "
12803
- "it here. Seconds, 0 means do not change."
12804
  msgstr ""
12805
 
12806
- #: wppa-settings-autosave.php:7493
12807
- msgid "A safe value is 45 in most cases"
12808
  msgstr ""
12809
 
12810
- #: wppa-settings-autosave.php:7494
12811
- #, php-format
12812
- msgid "The PHP setting max_execution_time is set to %s."
12813
  msgstr ""
12814
 
12815
- #: wppa-settings-autosave.php:7502
12816
- msgid "Feed use thumb"
12817
  msgstr ""
12818
 
12819
- #: wppa-settings-autosave.php:7503
12820
- msgid "Feeds use thumbnail pictures always."
12821
  msgstr ""
12822
 
12823
- #: wppa-settings-autosave.php:7511
12824
- msgid "Enable <i>in-line</i> settings"
12825
  msgstr ""
12826
 
12827
- #: wppa-settings-autosave.php:7512
12828
- msgid "Activates shortcode [wppa_set][/wppa_set]."
12829
  msgstr ""
12830
 
12831
- #: wppa-settings-autosave.php:7513
12832
- msgid ""
12833
- "Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
12834
  msgstr ""
12835
 
12836
- #: wppa-settings-autosave.php:7514
12837
- msgid ""
12838
- "Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
12839
- "sets the thumbnail type to vertical masonry style"
12840
  msgstr ""
12841
 
12842
- #: wppa-settings-autosave.php:7515
12843
- msgid "Do not forget to reset with [wppa_set][/wppa_set]"
12844
  msgstr ""
12845
 
12846
- #: wppa-settings-autosave.php:7516
12847
- msgid "Use with great care! There is no check on validity of values!"
12848
  msgstr ""
12849
 
12850
- #: wppa-settings-autosave.php:7523
12851
- msgid "Runtime modifyable settings"
12852
  msgstr ""
12853
 
12854
- #: wppa-settings-autosave.php:7524
12855
- msgid "The setting slugs that may be altered using [wppa_set] shortcode."
 
 
12856
  msgstr ""
12857
 
12858
- #: wppa-settings-autosave.php:7533
12859
- msgid "WPPA+ Admin related miscellaneous settings"
12860
  msgstr ""
12861
 
12862
- #: wppa-settings-autosave.php:7535
12863
- msgid "Allow HTML"
12864
  msgstr ""
12865
 
12866
- #: wppa-settings-autosave.php:7536
12867
- msgid "Allow HTML in album and photo descriptions."
 
 
12868
  msgstr ""
12869
 
12870
- #: wppa-settings-autosave.php:7537 wppa-settings-autosave.php:7546
12871
  msgid ""
12872
- "If checked: html is allowed. WARNING: No checks on syntax, it is your own "
12873
- "responsability to close tags properly!"
12874
  msgstr ""
12875
 
12876
- #: wppa-settings-autosave.php:7544
12877
- msgid "Allow HTML custom"
12878
  msgstr ""
12879
 
12880
- #: wppa-settings-autosave.php:7545
12881
- msgid "Allow HTML in custom photo datafields."
12882
  msgstr ""
12883
 
12884
- #: wppa-settings-autosave.php:7553
12885
- msgid "Check tag balance"
12886
  msgstr ""
12887
 
12888
- #: wppa-settings-autosave.php:7554
12889
- msgid "Check if the HTML tags are properly closed: \"balanced\"."
12890
  msgstr ""
12891
 
12892
- #: wppa-settings-autosave.php:7555
 
 
 
 
12893
  msgid ""
12894
- "If the HTML tags in an album or a photo description are not in balance, the "
12895
- "description is not updated, an errormessage is displayed"
12896
  msgstr ""
12897
 
12898
- #: wppa-settings-autosave.php:7562
12899
- msgid "Use WP editor"
12900
  msgstr ""
12901
 
12902
- #: wppa-settings-autosave.php:7563
12903
- msgid "Use the wp editor for multiline text fields."
12904
  msgstr ""
12905
 
12906
- #: wppa-settings-autosave.php:7571
12907
- msgid "Album sel hierarchic"
12908
  msgstr ""
12909
 
12910
- #: wppa-settings-autosave.php:7572
12911
- msgid "Show albums with (grand)parents in selection lists."
12912
  msgstr ""
12913
 
12914
- #: wppa-settings-autosave.php:7580
12915
- msgid "Page sel hierarchic"
 
12916
  msgstr ""
12917
 
12918
- #: wppa-settings-autosave.php:7581
12919
- msgid "Show pages with (grand)parents in selection lists."
12920
  msgstr ""
12921
 
12922
- #: wppa-settings-autosave.php:7590
12923
- msgid "Photo admin page size"
12924
  msgstr ""
12925
 
12926
- #: wppa-settings-autosave.php:7591
12927
  msgid ""
12928
- "The number of photos per page on the <br/>Edit Album -> Manage photos and "
12929
- "Edit Photos admin pages."
12930
  msgstr ""
12931
 
12932
- #: wppa-settings-autosave.php:7601
12933
- msgid "Comment admin page size"
 
12934
  msgstr ""
12935
 
12936
- #: wppa-settings-autosave.php:7602
12937
- msgid "The number of comments per page on the Comments admin pages."
12938
  msgstr ""
12939
 
12940
- #: wppa-settings-autosave.php:7612
12941
- msgid "Geo info edit"
12942
  msgstr ""
12943
 
12944
- #: wppa-settings-autosave.php:7613
12945
- msgid "Lattitude and longitude may be edited in photo admin."
12946
  msgstr ""
12947
 
12948
- #: wppa-settings-autosave.php:7621
12949
- msgid "Admin bar menu admin"
12950
  msgstr ""
12951
 
12952
- #: wppa-settings-autosave.php:7622
12953
- msgid "Show menu on admin bar on admin pages."
 
 
12954
  msgstr ""
12955
 
12956
- #: wppa-settings-autosave.php:7630
12957
- msgid "Admin bar menu frontend"
12958
  msgstr ""
12959
 
12960
- #: wppa-settings-autosave.php:7631
12961
- msgid "Show menu on admin bar on frontend pages."
12962
  msgstr ""
12963
 
12964
- #: wppa-settings-autosave.php:7639
12965
- msgid "Add shortcode to posts"
12966
  msgstr ""
12967
 
12968
- #: wppa-settings-autosave.php:7640
12969
- msgid "Add a shortcode to the end of all posts."
12970
  msgstr ""
12971
 
12972
- #: wppa-settings-autosave.php:7648
12973
- msgid "Shortcode to add"
12974
  msgstr ""
12975
 
12976
- #: wppa-settings-autosave.php:7649
12977
- msgid "The shortcode to be added to the posts."
12978
  msgstr ""
12979
 
12980
- #: wppa-settings-autosave.php:7657
12981
- msgid "We use Scripts"
12982
  msgstr ""
12983
 
12984
- #: wppa-settings-autosave.php:7658
12985
- msgid "Use scripting syntax in shortcode generator."
12986
  msgstr ""
12987
 
12988
- #: wppa-settings-autosave.php:7659
12989
  msgid ""
12990
- "This setting defines if the shortcode generator outputs old style script "
12991
- "tags or new style shortcodes."
12992
  msgstr ""
12993
 
12994
- #: wppa-settings-autosave.php:7667
12995
- msgid "Import page prieviews"
12996
  msgstr ""
12997
 
12998
- #: wppa-settings-autosave.php:7668
12999
- msgid "Show thumbnail previews in import admin page."
 
 
 
13000
  msgstr ""
13001
 
13002
- #: wppa-settings-autosave.php:7676
13003
- msgid "Upload audiostub"
13004
  msgstr ""
13005
 
13006
- #: wppa-settings-autosave.php:7677
13007
- msgid "Upload a new audio stub file"
13008
  msgstr ""
13009
 
13010
- #: wppa-settings-autosave.php:7681
13011
- msgid "Upload audio stub image"
13012
  msgstr ""
13013
 
13014
- #: wppa-settings-autosave.php:7686
13015
- msgid "Confirm create"
13016
  msgstr ""
13017
 
13018
- #: wppa-settings-autosave.php:7687
13019
- msgid "Display confirmation dialog before creating album."
13020
  msgstr ""
13021
 
13022
- #: wppa-settings-autosave.php:7695
13023
- msgid "Import source root"
 
 
 
 
 
 
 
 
 
 
 
 
13024
  msgstr ""
13025
 
13026
- #: wppa-settings-autosave.php:7696
13027
- msgid "Specify the highest level in the filesystem where to import from"
13028
  msgstr ""
13029
 
13030
- #: wppa-settings-autosave.php:7713
13031
- msgid "Allow import from WPPA+ source folders"
13032
  msgstr ""
13033
 
13034
- #: wppa-settings-autosave.php:7714
13035
- msgid "Only switch this on if you know what you are doing!"
13036
  msgstr ""
13037
 
13038
- #: wppa-settings-autosave.php:7723
13039
- msgid "SEO related settings"
13040
  msgstr ""
13041
 
13042
- #: wppa-settings-autosave.php:7725
13043
- msgid "Meta on page"
13044
  msgstr ""
13045
 
13046
- #: wppa-settings-autosave.php:7726
13047
- msgid "Meta tags for photos on the page."
13048
  msgstr ""
13049
 
13050
- #: wppa-settings-autosave.php:7727
13051
- msgid ""
13052
- "If checked, the header of the page will contain metatags that refer to "
13053
- "featured photos on the page in the page context."
13054
  msgstr ""
13055
 
13056
- #: wppa-settings-autosave.php:7734
13057
- msgid "Meta all"
13058
  msgstr ""
13059
 
13060
- #: wppa-settings-autosave.php:7735
13061
- msgid "Meta tags for all featured photos."
13062
  msgstr ""
13063
 
13064
- #: wppa-settings-autosave.php:7736
13065
- msgid ""
13066
- "If checked, the header of the page will contain metatags that refer to all "
13067
- "featured photo files."
13068
  msgstr ""
13069
 
13070
- #: wppa-settings-autosave.php:7737
13071
- msgid ""
13072
- "If you have many featured photos, you might wish to uncheck this item to "
13073
- "reduce the size of the page header."
13074
  msgstr ""
13075
 
13076
- #: wppa-settings-autosave.php:7744
13077
- msgid "Add og meta tags"
13078
  msgstr ""
13079
 
13080
- #: wppa-settings-autosave.php:7745
13081
- msgid "Add og meta tags to the page header."
13082
  msgstr ""
13083
 
13084
- #: wppa-settings-autosave.php:7748
13085
- msgid ""
13086
- "Turning this off may affect the functionality of social media items in the "
13087
- "share box that rely on open graph tags information."
13088
  msgstr ""
13089
 
13090
- #: wppa-settings-autosave.php:7754
13091
- msgid "Image Alt attribute type"
13092
  msgstr ""
13093
 
13094
- #: wppa-settings-autosave.php:7755
13095
- msgid "Select kind of HTML alt=\"\" content for images."
13096
  msgstr ""
13097
 
13098
- #: wppa-settings-autosave.php:7758
13099
- msgid "photo name"
13100
  msgstr ""
13101
 
13102
- #: wppa-settings-autosave.php:7758
13103
- msgid "name without file-ext"
13104
  msgstr ""
13105
 
13106
- #: wppa-settings-autosave.php:7758
13107
- msgid "set in album admin"
13108
  msgstr ""
13109
 
13110
- #: wppa-settings-autosave.php:7765
13111
- msgid "New Album and New Photo related miscellaneous settings"
13112
  msgstr ""
13113
 
13114
- #: wppa-settings-autosave.php:7803
13115
- msgid "Maximum time an album is indicated as New"
13116
  msgstr ""
13117
 
13118
- #: wppa-settings-autosave.php:7811
13119
- msgid "New Photo"
13120
  msgstr ""
13121
 
13122
- #: wppa-settings-autosave.php:7812
13123
- msgid "Maximum time a photo is indicated as New"
13124
  msgstr ""
13125
 
13126
- #: wppa-settings-autosave.php:7820
13127
- msgid "Modified Album"
13128
  msgstr ""
13129
 
13130
- #: wppa-settings-autosave.php:7821
13131
- msgid "Maximum time an album is indicated as Modified"
 
 
13132
  msgstr ""
13133
 
13134
- #: wppa-settings-autosave.php:7829
13135
- msgid "Modified Photo"
13136
  msgstr ""
13137
 
13138
- #: wppa-settings-autosave.php:7830
13139
- msgid "Maximum time a photo is indicated as Modofied"
13140
  msgstr ""
13141
 
13142
- #: wppa-settings-autosave.php:7838
13143
- msgid "Use text labels"
13144
  msgstr ""
13145
 
13146
- #: wppa-settings-autosave.php:7839
13147
- msgid "Use editable text for the New and Modified labels"
13148
  msgstr ""
13149
 
13150
- #: wppa-settings-autosave.php:7840
13151
- msgid "If UNticked, you can specify the urls for custom images to be used."
13152
  msgstr ""
13153
 
13154
- #: wppa-settings-autosave.php:7851
13155
- msgid "Orange"
13156
  msgstr ""
13157
 
13158
- #: wppa-settings-autosave.php:7852
13159
- msgid "Yellow"
13160
  msgstr ""
13161
 
13162
- #: wppa-settings-autosave.php:7855
13163
- msgid "Purple"
13164
  msgstr ""
13165
 
13166
- #: wppa-settings-autosave.php:7856
13167
- msgid "Black/white"
 
 
13168
  msgstr ""
13169
 
13170
- #: wppa-settings-autosave.php:7868 wppa-settings-autosave.php:7890
13171
- msgid "New label"
13172
  msgstr ""
13173
 
13174
- #: wppa-settings-autosave.php:7869
13175
- msgid "Specify the \"New\" indicator details."
13176
  msgstr ""
13177
 
13178
- #: wppa-settings-autosave.php:7870 wppa-settings-autosave.php:7881
13179
- msgid "If you use qTranslate, the text may be multilingual."
13180
  msgstr ""
13181
 
13182
- #: wppa-settings-autosave.php:7874 wppa-settings-autosave.php:7885
13183
- #: wppa-stereo.php:31
13184
- msgid "Color"
13185
  msgstr ""
13186
 
13187
- #: wppa-settings-autosave.php:7879 wppa-settings-autosave.php:7899
13188
- msgid "Modified label"
 
 
13189
  msgstr ""
13190
 
13191
- #: wppa-settings-autosave.php:7880
13192
- msgid "Specify the \"Modified\" indicator details."
13193
  msgstr ""
13194
 
13195
- #: wppa-settings-autosave.php:7891
13196
- msgid "Specify the \"New\" indicator url."
13197
  msgstr ""
13198
 
13199
- #: wppa-settings-autosave.php:7900
13200
- msgid "Specify the \"Modified\" indicator url."
13201
  msgstr ""
13202
 
13203
- #: wppa-settings-autosave.php:7908
13204
- msgid "Limit LasTen New"
13205
  msgstr ""
13206
 
13207
- #: wppa-settings-autosave.php:7909
13208
- msgid "Limits the LasTen photos to those that are 'New', or newly modified."
13209
  msgstr ""
13210
 
13211
- #: wppa-settings-autosave.php:7910
13212
- msgid ""
13213
- "If you tick this box and configured the new photo time, you can even limit "
13214
- "the number by the setting in Table I-F7, or set that number to an unlikely "
13215
- "high value."
13216
  msgstr ""
13217
 
13218
- #: wppa-settings-autosave.php:7917
13219
- msgid "LasTen use Modified"
13220
  msgstr ""
13221
 
13222
- #: wppa-settings-autosave.php:7918
13223
- msgid ""
13224
- "Use the time modified rather than time upload for LasTen widget/shortcode."
13225
  msgstr ""
13226
 
13227
- #: wppa-settings-autosave.php:7926
13228
- msgid "Apply Newphoto desc"
13229
  msgstr ""
13230
 
13231
- #: wppa-settings-autosave.php:7927
13232
- msgid "Give each new photo a standard description."
13233
  msgstr ""
13234
 
13235
- #: wppa-settings-autosave.php:7928
13236
- msgid ""
13237
- "If checked, each new photo will get the description (template) as specified "
13238
- "in the next item."
13239
  msgstr ""
13240
 
13241
- #: wppa-settings-autosave.php:7935
13242
- msgid "New photo desc"
13243
  msgstr ""
13244
 
13245
- #: wppa-settings-autosave.php:7936
13246
- msgid "The description (template) to add to a new photo."
13247
  msgstr ""
13248
 
13249
- #: wppa-settings-autosave.php:7937
13250
- msgid "Enter the default description."
13251
  msgstr ""
13252
 
13253
- #: wppa-settings-autosave.php:7938
13254
- msgid "If you use html, please check item A-1 of this table."
13255
  msgstr ""
13256
 
13257
- #: wppa-settings-autosave.php:7945
13258
- msgid "New photo owner"
13259
  msgstr ""
13260
 
13261
- #: wppa-settings-autosave.php:7946
13262
- msgid "The owner of a new uploaded photo."
13263
  msgstr ""
13264
 
13265
- #: wppa-settings-autosave.php:7947
13266
- msgid "If you leave this blank, the uploader will be set as the owner"
13267
  msgstr ""
13268
 
13269
- #: wppa-settings-autosave.php:7949
13270
- msgid "leave blank or enter login name"
13271
  msgstr ""
13272
 
13273
- #: wppa-settings-autosave.php:7955
13274
- msgid "New albums are created with this upload limit."
13275
  msgstr ""
13276
 
13277
- #: wppa-settings-autosave.php:7956
13278
- msgid ""
13279
- "Administrators can change the limit settings in the \"Edit Album Information"
13280
- "\" admin page."
13281
  msgstr ""
13282
 
13283
- #: wppa-settings-autosave.php:7973
13284
- msgid "Default parent"
13285
  msgstr ""
13286
 
13287
- #: wppa-settings-autosave.php:7974
13288
- msgid "The parent album of new albums."
13289
  msgstr ""
13290
 
13291
- #: wppa-settings-autosave.php:7991
13292
- msgid "Default parent always"
13293
  msgstr ""
13294
 
13295
- #: wppa-settings-autosave.php:7992
13296
- msgid ""
13297
- "The parent album of new albums is always the default, except for "
13298
- "administrators."
13299
  msgstr ""
13300
 
13301
- #: wppa-settings-autosave.php:8000
13302
- msgid "Show album full"
13303
  msgstr ""
13304
 
13305
- #: wppa-settings-autosave.php:8001
13306
- msgid "Show the Upload limit reached message if appropriate."
13307
  msgstr ""
13308
 
13309
- #: wppa-settings-autosave.php:8009
13310
- msgid "Grant an album"
13311
  msgstr ""
13312
 
13313
- #: wppa-settings-autosave.php:8010
13314
- msgid "Create an album for each user logging in."
13315
  msgstr ""
13316
 
13317
- #: wppa-settings-autosave.php:8018
13318
- msgid "Grant album name"
13319
  msgstr ""
13320
 
13321
- #: wppa-settings-autosave.php:8019
13322
- msgid "The name to be used for the album."
13323
  msgstr ""
13324
 
13325
- #: wppa-settings-autosave.php:8022
13326
- msgid "Login name"
13327
  msgstr ""
13328
 
13329
- #: wppa-settings-autosave.php:8022 wppa-upldr-widget.php:182
13330
- msgid "Display name"
13331
  msgstr ""
13332
 
13333
- #: wppa-settings-autosave.php:8022
13334
- msgid "Id"
13335
  msgstr ""
13336
 
13337
- #: wppa-settings-autosave.php:8022
13338
- msgid "Firstname Lastname"
13339
  msgstr ""
13340
 
13341
- #: wppa-settings-autosave.php:8029
13342
- msgid "Grant parent"
13343
  msgstr ""
13344
 
13345
- #: wppa-settings-autosave.php:8030
13346
- msgid "The parent album of the auto created albums."
13347
  msgstr ""
13348
 
13349
- #: wppa-settings-autosave.php:8047
13350
- msgid "Max user albums"
13351
  msgstr ""
13352
 
13353
- #: wppa-settings-autosave.php:8048
13354
- msgid "The max number of albums a user can create."
13355
  msgstr ""
13356
 
13357
- #: wppa-settings-autosave.php:8049
13358
- msgid ""
13359
- "The maximum number of albums a user can create when he is not admin and "
13360
- "owner only is active"
13361
  msgstr ""
13362
 
13363
- #: wppa-settings-autosave.php:8050
13364
- msgid "A number of 0 means No limit"
13365
  msgstr ""
13366
 
13367
- #: wppa-settings-autosave.php:8057
13368
- msgid "Default photo name"
13369
  msgstr ""
13370
 
13371
- #: wppa-settings-autosave.php:8058
13372
- msgid "Select the way the name of a new uploaded photo should be determined."
13373
  msgstr ""
13374
 
13375
- #: wppa-settings-autosave.php:8061
13376
- msgid "Filename"
13377
  msgstr ""
13378
 
13379
- #: wppa-settings-autosave.php:8062
13380
- msgid "Filename without extension"
13381
  msgstr ""
13382
 
13383
- #: wppa-settings-autosave.php:8063
13384
- msgid "IPTC Tag 2#005 (Graphic name)"
13385
  msgstr ""
13386
 
13387
- #: wppa-settings-autosave.php:8064
13388
- msgid "IPTC Tag 2#120 (Caption)"
13389
  msgstr ""
13390
 
13391
- #: wppa-settings-autosave.php:8065
13392
- msgid "No name at all"
13393
  msgstr ""
13394
 
13395
- #: wppa-settings-autosave.php:8073
13396
- msgid "Default coverphoto"
 
 
13397
  msgstr ""
13398
 
13399
- #: wppa-settings-autosave.php:8074
13400
- msgid "Name of photofile to become cover image"
13401
  msgstr ""
13402
 
13403
- #: wppa-settings-autosave.php:8075
13404
- msgid ""
13405
- "If you name a photofile like this setting before upload, it will become the "
13406
- "coverimage automaticly."
13407
  msgstr ""
13408
 
13409
- #: wppa-settings-autosave.php:8082
13410
- msgid "Copy Timestamp"
13411
  msgstr ""
13412
 
13413
- #: wppa-settings-autosave.php:8083
13414
- msgid "Copy timestamp when copying photo."
13415
  msgstr ""
13416
 
13417
- #: wppa-settings-autosave.php:8084
13418
- msgid "If checked, the copied photo is not \"new\""
13419
  msgstr ""
13420
 
13421
- #: wppa-settings-autosave.php:8091
13422
- msgid "Copy Owner"
13423
  msgstr ""
13424
 
13425
- #: wppa-settings-autosave.php:8092
13426
- msgid "Copy the owner when copying photo."
13427
  msgstr ""
13428
 
13429
- #: wppa-settings-autosave.php:8100
13430
- msgid "FE Albums public"
13431
  msgstr ""
13432
 
13433
- #: wppa-settings-autosave.php:8101
13434
- msgid "Frontend created albums are --- public ---"
13435
  msgstr ""
13436
 
13437
- #: wppa-settings-autosave.php:8110
13438
- msgid "Optimize image files right after upload/import"
13439
  msgstr ""
13440
 
13441
- #: wppa-settings-autosave.php:8111
13442
- msgid "This option requires the plugin EWWW Image Optimizer to be activated"
13443
  msgstr ""
13444
 
13445
- #: wppa-settings-autosave.php:8118
13446
- msgid "Default album linktype"
13447
  msgstr ""
13448
 
13449
- #: wppa-settings-autosave.php:8119
13450
- msgid "The album linktype for new albums"
13451
  msgstr ""
13452
 
13453
- #: wppa-settings-autosave.php:8138
13454
- msgid "Search Albums and Photos related settings"
 
 
 
13455
  msgstr ""
13456
 
13457
- #: wppa-settings-autosave.php:8140
13458
- msgid "Search page"
13459
  msgstr ""
13460
 
13461
- #: wppa-settings-autosave.php:8141
13462
- msgid "Display the search results on page."
13463
  msgstr ""
13464
 
13465
- #: wppa-settings-autosave.php:8142
13466
- #, php-format
13467
  msgid ""
13468
- "Select the page to be used to display search results. The page MUST contain "
13469
- "%%wppa%% or [wppa][/wppa]."
13470
  msgstr ""
13471
 
13472
- #: wppa-settings-autosave.php:8143
13473
- msgid "You may give it the title \"Search results\" or something alike."
13474
  msgstr ""
13475
 
13476
- #: wppa-settings-autosave.php:8144
13477
  msgid ""
13478
- "Or you ou may use the standard page on which you display the generic album."
 
13479
  msgstr ""
13480
 
13481
- #: wppa-settings-autosave.php:8177
13482
- msgid "Exclude separate"
13483
  msgstr ""
13484
 
13485
- #: wppa-settings-autosave.php:8178
13486
- msgid "Do not search 'separate' albums."
 
13487
  msgstr ""
13488
 
13489
- #: wppa-settings-autosave.php:8179
13490
- msgid ""
13491
- "When checked, albums (and photos in them) that have the parent set to --- "
13492
- "separate --- will be excluded from being searched."
13493
  msgstr ""
13494
 
13495
- #: wppa-settings-autosave.php:8180
13496
- msgid ""
13497
- "Except when you start searching in a 'saparate' album, with the \"search in "
13498
- "current section\" box ticked."
13499
  msgstr ""
13500
 
13501
- #: wppa-settings-autosave.php:8187
13502
- msgid "Include tags"
13503
  msgstr ""
13504
 
13505
- #: wppa-settings-autosave.php:8188
13506
- msgid "Do also search the photo tags."
13507
  msgstr ""
13508
 
13509
- #: wppa-settings-autosave.php:8189
13510
- msgid "When checked, the tags of the photo will also be searched."
 
13511
  msgstr ""
13512
 
13513
- #: wppa-settings-autosave.php:8196
13514
- msgid "Include categories"
 
 
13515
  msgstr ""
13516
 
13517
- #: wppa-settings-autosave.php:8197
13518
- msgid "Do also search the album categories."
13519
  msgstr ""
13520
 
13521
- #: wppa-settings-autosave.php:8198
13522
- msgid "When checked, the categories of the album will also be searched."
13523
  msgstr ""
13524
 
13525
- #: wppa-settings-autosave.php:8205
13526
- msgid "Include comments"
13527
  msgstr ""
13528
 
13529
- #: wppa-settings-autosave.php:8206
13530
- msgid "Do also search the comments on photos."
13531
  msgstr ""
13532
 
13533
- #: wppa-settings-autosave.php:8207
13534
- msgid "When checked, the comments of the photos will also be searched."
13535
  msgstr ""
13536
 
13537
- #: wppa-settings-autosave.php:8214
13538
- msgid "Photos only"
13539
  msgstr ""
13540
 
13541
- #: wppa-settings-autosave.php:8215
13542
- msgid "Search for photos only."
13543
  msgstr ""
13544
 
13545
- #: wppa-settings-autosave.php:8216
13546
- msgid "When checked, only photos will be searched for."
 
 
13547
  msgstr ""
13548
 
13549
- #: wppa-settings-autosave.php:8231
13550
- msgid "Max albums found"
13551
  msgstr ""
13552
 
13553
- #: wppa-settings-autosave.php:8232
13554
- msgid "The maximum number of albums to be displayed."
13555
  msgstr ""
13556
 
13557
- #: wppa-settings-autosave.php:8240
13558
- msgid "Max photos found"
13559
  msgstr ""
13560
 
13561
- #: wppa-settings-autosave.php:8241
13562
- msgid "The maximum number of photos to be displayed."
13563
  msgstr ""
13564
 
13565
- #: wppa-settings-autosave.php:8249
13566
- msgid "Tags OR only"
 
 
13567
  msgstr ""
13568
 
13569
- #: wppa-settings-autosave.php:8250
13570
- msgid "No and / or buttons"
13571
  msgstr ""
13572
 
13573
- #: wppa-settings-autosave.php:8251
13574
- msgid ""
13575
- "Hide the and/or radiobuttons and do the or method in the multitag widget and "
13576
- "shortcode."
13577
  msgstr ""
13578
 
13579
- #: wppa-settings-autosave.php:8258
13580
- msgid "Tags add Inverse"
13581
  msgstr ""
13582
 
13583
- #: wppa-settings-autosave.php:8259
13584
- msgid "Add a checkbox to invert the selection."
13585
  msgstr ""
13586
 
13587
- #: wppa-settings-autosave.php:8260
13588
- msgid "Adds an Invert (NOT) checkbox on the multitag widget and shortcode."
13589
  msgstr ""
13590
 
13591
- #: wppa-settings-autosave.php:8267
13592
- msgid "Floating searchtoken"
13593
  msgstr ""
13594
 
13595
- #: wppa-settings-autosave.php:8268
13596
- msgid "A match need not start at the first char."
13597
  msgstr ""
13598
 
13599
- #: wppa-settings-autosave.php:8269
13600
  msgid ""
13601
- "A match is found while searching also when the entered token is somewhere in "
13602
- "the middle of a word."
13603
  msgstr ""
13604
 
13605
- #: wppa-settings-autosave.php:8270
13606
- msgid "This works in indexed search only!"
13607
  msgstr ""
13608
 
13609
- #: wppa-settings-autosave.php:8277
13610
- msgid "Search results display"
13611
  msgstr ""
13612
 
13613
- #: wppa-settings-autosave.php:8278
13614
- msgid "Select the way the search results should be displayed."
13615
  msgstr ""
13616
 
13617
- #: wppa-settings-autosave.php:8279
13618
- msgid ""
13619
- "If you select anything different from \"Albums and thumbnails\", \"Photos "
13620
- "only\" is assumed (Table IX-E6)."
13621
  msgstr ""
13622
 
13623
- #: wppa-settings-autosave.php:8281
13624
- msgid "Albums and thumbnails"
13625
  msgstr ""
13626
 
13627
- #: wppa-settings-autosave.php:8281
13628
- msgid "Slideonly slideshow"
13629
  msgstr ""
13630
 
13631
- #: wppa-settings-autosave.php:8288
13632
- msgid "Name max length"
13633
  msgstr ""
13634
 
13635
- #: wppa-settings-autosave.php:8289
13636
- msgid "Max length of displayed photonames in supersearch selectionlist"
13637
  msgstr ""
13638
 
13639
- #: wppa-settings-autosave.php:8290 wppa-settings-autosave.php:8299
13640
- msgid ""
13641
- "To limit the length of the selectionlist, enter the number of characters to "
13642
- "show."
13643
  msgstr ""
13644
 
13645
- #: wppa-settings-autosave.php:8297
13646
- msgid "Text max length"
13647
  msgstr ""
13648
 
13649
- #: wppa-settings-autosave.php:8298
13650
- msgid "Max length of displayed photo text in supersearch selectionlist"
13651
  msgstr ""
13652
 
13653
- #: wppa-settings-autosave.php:8306
13654
- msgid "Search toptext"
13655
  msgstr ""
13656
 
13657
- #: wppa-settings-autosave.php:8307
13658
- msgid "The text at the top of the search box."
13659
  msgstr ""
13660
 
13661
- #: wppa-settings-autosave.php:8308
13662
- msgid "May contain unfiltered HTML."
13663
  msgstr ""
13664
 
13665
- #: wppa-settings-autosave.php:8315
13666
- msgid "Section search text"
 
 
13667
  msgstr ""
13668
 
13669
- #: wppa-settings-autosave.php:8316 wppa-settings-autosave.php:8325
13670
- msgid "The labeltext at the checkbox."
13671
  msgstr ""
13672
 
13673
- #: wppa-settings-autosave.php:8324
13674
- msgid "Results search text"
13675
  msgstr ""
13676
 
13677
- #: wppa-settings-autosave.php:8334
13678
- msgid "Watermark related settings"
13679
  msgstr ""
13680
 
13681
- #: wppa-settings-autosave.php:8337
13682
- msgid "Enable the application of watermarks."
13683
  msgstr ""
13684
 
13685
- #: wppa-settings-autosave.php:8338
13686
- msgid "If checked, photos can be watermarked during upload / import."
13687
  msgstr ""
13688
 
13689
- #: wppa-settings-autosave.php:8347
13690
- msgid "Watermark file"
13691
  msgstr ""
13692
 
13693
- #: wppa-settings-autosave.php:8348
13694
- msgid "The default watermarkfile to be used."
13695
  msgstr ""
13696
 
13697
- #: wppa-settings-autosave.php:8349
13698
- msgid "Watermark files are of type png and reside in"
13699
  msgstr ""
13700
 
13701
- #: wppa-settings-autosave.php:8350
13702
- msgid ""
13703
- "A suitable watermarkfile typically consists of a transparent background and "
13704
- "a black text or drawing."
13705
  msgstr ""
13706
 
13707
- #: wppa-settings-autosave.php:8352
13708
- msgid ""
13709
- "You may also select one of the textual watermark types at the bottom of the "
13710
- "selection list."
13711
  msgstr ""
13712
 
13713
- #: wppa-settings-autosave.php:8356
13714
- msgid "position:"
13715
  msgstr ""
13716
 
13717
- #: wppa-settings-autosave.php:8362
13718
- msgid "Upload watermark"
13719
  msgstr ""
13720
 
13721
- #: wppa-settings-autosave.php:8363
13722
- msgid "Upload a new watermark file"
13723
  msgstr ""
13724
 
13725
- #: wppa-settings-autosave.php:8367
13726
- msgid "Upload watermark image"
13727
  msgstr ""
13728
 
13729
- #: wppa-settings-autosave.php:8372
13730
- msgid "Watermark opacity image"
 
 
13731
  msgstr ""
13732
 
13733
- #: wppa-settings-autosave.php:8373
13734
- msgid "You can set the intensity of image watermarks here."
 
 
 
 
13735
  msgstr ""
13736
 
13737
- #: wppa-settings-autosave.php:8374 wppa-settings-autosave.php:8459
13738
  msgid ""
13739
- "The higher the number, the intenser the watermark. Value must be > 0 and <= "
13740
- "100."
13741
  msgstr ""
13742
 
13743
- #: wppa-settings-autosave.php:8381
13744
- msgid "Textual watermark style"
 
 
13745
  msgstr ""
13746
 
13747
- #: wppa-settings-autosave.php:8382
13748
- msgid "The way the textual watermarks look like"
13749
  msgstr ""
13750
 
13751
- #: wppa-settings-autosave.php:8386
13752
- msgid "TV subtitle style"
13753
  msgstr ""
13754
 
13755
- #: wppa-settings-autosave.php:8386
13756
- msgid "White text on black background"
 
 
13757
  msgstr ""
13758
 
13759
- #: wppa-settings-autosave.php:8386
13760
- msgid "Black text on white background"
13761
  msgstr ""
13762
 
13763
- #: wppa-settings-autosave.php:8386
13764
- msgid "Reverse TV style (Utopia)"
13765
  msgstr ""
13766
 
13767
- #: wppa-settings-autosave.php:8386
13768
- msgid "White on transparent background"
13769
  msgstr ""
13770
 
13771
- #: wppa-settings-autosave.php:8386
13772
- msgid "Black on transparent background"
13773
  msgstr ""
13774
 
13775
- #: wppa-settings-autosave.php:8396
13776
- msgid "Predefined watermark text"
13777
  msgstr ""
13778
 
13779
- #: wppa-settings-autosave.php:8397
13780
- msgid "The text to use when --- pre-defined --- is selected."
13781
  msgstr ""
13782
 
13783
- #: wppa-settings-autosave.php:8398
13784
- msgid "You may use the following keywords:"
13785
  msgstr ""
13786
 
13787
- #: wppa-settings-autosave.php:8399
13788
- msgid ""
13789
- "w#site, w#displayname, all standard photo keywords, iptc and exif keywords"
13790
  msgstr ""
13791
 
13792
- #: wppa-settings-autosave.php:8406
13793
- msgid "Textual watermark font"
13794
  msgstr ""
13795
 
13796
- #: wppa-settings-autosave.php:8407
13797
- msgid "The font to use with textusl watermarks."
13798
  msgstr ""
13799
 
13800
- #: wppa-settings-autosave.php:8408
13801
- msgid "Except for the system font, are font files of type ttf and reside in"
13802
  msgstr ""
13803
 
13804
- #: wppa-settings-autosave.php:8436
13805
- msgid "Textual watermark font size"
13806
  msgstr ""
13807
 
13808
- #: wppa-settings-autosave.php:8437
13809
- msgid "You can set the size of the truetype fonts only."
13810
  msgstr ""
13811
 
13812
- #: wppa-settings-autosave.php:8438
13813
- msgid ""
13814
- "System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
13815
- "value > 5 will be treated as 5."
13816
  msgstr ""
13817
 
13818
- #: wppa-settings-autosave.php:8439
13819
- msgid ""
13820
- "Truetype fonts can have any positive integer size, if your PHPs GD version "
13821
- "is 1, in pixels, in GD2 in points."
13822
  msgstr ""
13823
 
13824
- #: wppa-settings-autosave.php:8440
13825
- msgid "It is unclear howmany pixels a point is..."
13826
  msgstr ""
13827
 
13828
- #: wppa-settings-autosave.php:8447
13829
- msgid "Upload watermark font"
13830
  msgstr ""
13831
 
13832
- #: wppa-settings-autosave.php:8448
13833
- msgid "Upload a new watermark font file"
13834
  msgstr ""
13835
 
13836
- #: wppa-settings-autosave.php:8449
13837
- msgid ""
13838
- "Upload truetype fonts (.ttf) only, and test if they work on your server "
13839
- "platform."
13840
  msgstr ""
13841
 
13842
- #: wppa-settings-autosave.php:8452
13843
- msgid "Upload TrueType font"
13844
  msgstr ""
13845
 
13846
- #: wppa-settings-autosave.php:8457
13847
- msgid "Watermark opacity text"
13848
  msgstr ""
13849
 
13850
- #: wppa-settings-autosave.php:8458
13851
- msgid "You can set the intensity of a text watermarks here."
13852
  msgstr ""
13853
 
13854
- #: wppa-settings-autosave.php:8467
13855
- msgid "A real life preview. To update: refresh the page."
13856
  msgstr ""
13857
 
13858
- #: wppa-settings-autosave.php:8478
13859
- msgid "Watermark thumbnails"
13860
  msgstr ""
13861
 
13862
- #: wppa-settings-autosave.php:8479
13863
- msgid "Watermark also the thumbnail image files."
13864
  msgstr ""
13865
 
13866
- #: wppa-settings-autosave.php:8487
13867
- msgid "Slideshow elements sequence order settings"
13868
  msgstr ""
13869
 
13870
- #: wppa-settings-autosave.php:8493 wppa-settings-autosave.php:8539
13871
- msgid "StartStop"
13872
  msgstr ""
13873
 
13874
- #: wppa-settings-autosave.php:8494 wppa-settings-autosave.php:8540
13875
- msgid "SlideFrame"
13876
  msgstr ""
13877
 
13878
- #: wppa-settings-autosave.php:8496
13879
- msgid "Desc"
13880
  msgstr ""
13881
 
13882
- #: wppa-settings-autosave.php:8499 wppa-settings-autosave.php:8544
13883
- msgid "FilmStrip"
 
 
 
13884
  msgstr ""
13885
 
13886
- #: wppa-settings-autosave.php:8500 wppa-settings-autosave.php:8545
13887
- msgid "Browsebar"
13888
  msgstr ""
13889
 
13890
- #: wppa-settings-autosave.php:8502 wppa-settings-autosave.php:8547
13891
- msgid "IPTC data"
 
13892
  msgstr ""
13893
 
13894
- #: wppa-settings-autosave.php:8503 wppa-settings-autosave.php:8548
13895
- msgid "EXIF data"
13896
  msgstr ""
13897
 
13898
- #: wppa-settings-autosave.php:8504 wppa-settings-autosave.php:8549
13899
- msgid "Share box"
13900
  msgstr ""
13901
 
13902
- #: wppa-settings-autosave.php:8506 wppa-settings-autosave.php:8551
13903
- msgid "Enabled"
 
 
13904
  msgstr ""
13905
 
13906
- #: wppa-settings-autosave.php:8507 wppa-settings-autosave.php:8552
13907
- msgid "Disabled"
13908
  msgstr ""
13909
 
13910
- #: wppa-settings-autosave.php:8509 wppa-settings-autosave.php:8554
13911
- msgid "Start/Stop & Slower/Faster navigation bar"
13912
  msgstr ""
13913
 
13914
- #: wppa-settings-autosave.php:8510 wppa-settings-autosave.php:8555
13915
- msgid "The Slide Frame"
13916
  msgstr ""
13917
 
13918
- #: wppa-settings-autosave.php:8510 wppa-settings-autosave.php:8555
13919
- msgid "( Always )"
13920
  msgstr ""
13921
 
13922
- #: wppa-settings-autosave.php:8511
13923
- msgid "Photo Name Box"
13924
  msgstr ""
13925
 
13926
- #: wppa-settings-autosave.php:8512
13927
- msgid "Photo Description Box"
13928
  msgstr ""
13929
 
13930
- #: wppa-settings-autosave.php:8513 wppa-settings-autosave.php:8557
13931
- msgid "Custom Box"
13932
  msgstr ""
13933
 
13934
- #: wppa-settings-autosave.php:8514 wppa-settings-autosave.php:8558
13935
- msgid "Rating Bar"
13936
  msgstr ""
13937
 
13938
- #: wppa-settings-autosave.php:8515 wppa-settings-autosave.php:8559
13939
- msgid "Film Strip with embedded Start/Stop and Goto functionality"
13940
  msgstr ""
13941
 
13942
- #: wppa-settings-autosave.php:8516 wppa-settings-autosave.php:8560
13943
- msgid "Browse Bar with Photo X of Y counter"
 
 
13944
  msgstr ""
13945
 
13946
- #: wppa-settings-autosave.php:8517 wppa-settings-autosave.php:8561
13947
- msgid "Comments Box"
13948
  msgstr ""
13949
 
13950
- #: wppa-settings-autosave.php:8518 wppa-settings-autosave.php:8562
13951
- msgid "IPTC box"
13952
  msgstr ""
13953
 
13954
- #: wppa-settings-autosave.php:8519 wppa-settings-autosave.php:8563
13955
- msgid "EXIF box"
13956
  msgstr ""
13957
 
13958
- #: wppa-settings-autosave.php:8520 wppa-settings-autosave.php:8564
13959
- msgid "Social media share box"
 
 
13960
  msgstr ""
13961
 
13962
- #: wppa-settings-autosave.php:8526 wppa-settings-autosave.php:8570
13963
- msgid "Move Up"
13964
  msgstr ""
13965
 
13966
- #: wppa-settings-autosave.php:8541
13967
- msgid "NameDesc"
13968
  msgstr ""
13969
 
13970
- #: wppa-settings-autosave.php:8556
13971
- msgid "Photo Name & Description Box"
13972
  msgstr ""
13973
 
13974
- #: wppa-settings-autosave.php:8580
13975
- msgid "Swap Namedesc"
13976
  msgstr ""
13977
 
13978
- #: wppa-settings-autosave.php:8581
13979
- msgid "Swap the order sequence of name and description"
13980
  msgstr ""
13981
 
13982
- #: wppa-settings-autosave.php:8589
13983
- msgid "Split Name and Desc"
13984
  msgstr ""
13985
 
13986
- #: wppa-settings-autosave.php:8590
13987
- msgid "Put Name and Description in separate boxes"
13988
  msgstr ""
13989
 
13990
- #: wppa-settings-autosave.php:8593
13991
- msgid "Please reload this page after the green checkmark appears!"
13992
  msgstr ""
13993
 
13994
- #: wppa-settings-autosave.php:8598
13995
- msgid "Source file management and other upload/import settings and actions."
13996
  msgstr ""
13997
 
13998
- #: wppa-settings-autosave.php:8600
13999
- msgid "Keep sourcefiles admin"
14000
  msgstr ""
14001
 
14002
- #: wppa-settings-autosave.php:8601
14003
- msgid "Keep the original uploaded and imported photo files."
14004
  msgstr ""
14005
 
14006
- #: wppa-settings-autosave.php:8602 wppa-settings-autosave.php:8612
14007
- msgid ""
14008
- "The files will be kept in a separate directory with subdirectories for each "
14009
- "album"
14010
  msgstr ""
14011
 
14012
- #: wppa-settings-autosave.php:8603 wppa-settings-autosave.php:8613
14013
  msgid ""
14014
- "These files can be used to update the photos used in displaying in wppa+ and "
14015
- "optionally for downloading original, un-downsized images."
14016
  msgstr ""
14017
 
14018
- #: wppa-settings-autosave.php:8610
14019
- msgid "Keep sourcefiles frontend"
14020
  msgstr ""
14021
 
14022
- #: wppa-settings-autosave.php:8611
14023
- msgid "Keep the original frontend uploaded photo files."
14024
  msgstr ""
14025
 
14026
- #: wppa-settings-autosave.php:8620
14027
- msgid "Source directory"
 
 
14028
  msgstr ""
14029
 
14030
- #: wppa-settings-autosave.php:8621
14031
- msgid "The path to the directory where the original photofiles will be saved."
14032
  msgstr ""
14033
 
14034
- #: wppa-settings-autosave.php:8622
14035
- msgid "You may change the directory path, but it can not be an url."
14036
  msgstr ""
14037
 
14038
- #: wppa-settings-autosave.php:8623
14039
- msgid ""
14040
- "The parent of the directory that you enter here must exist and be writable."
14041
  msgstr ""
14042
 
14043
- #: wppa-settings-autosave.php:8624
14044
- msgid "The directory itsself will be created if it does not exist yet."
14045
  msgstr ""
14046
 
14047
- #: wppa-settings-autosave.php:8631
14048
- msgid "Keep sync"
14049
  msgstr ""
14050
 
14051
- #: wppa-settings-autosave.php:8632
14052
- msgid "Keep source synchronously with wppa system."
14053
  msgstr ""
14054
 
14055
- #: wppa-settings-autosave.php:8633
14056
- msgid ""
14057
- "If checked, photos that are deleted from wppa, will also be removed from the "
14058
- "sourcefiles."
14059
  msgstr ""
14060
 
14061
- #: wppa-settings-autosave.php:8634
14062
- msgid ""
14063
- "Also, copying or moving photos to different albums, will also copy/move the "
14064
- "sourcefiles."
14065
  msgstr ""
14066
 
14067
- #: wppa-settings-autosave.php:8641
14068
- msgid "Remake add"
14069
  msgstr ""
14070
 
14071
- #: wppa-settings-autosave.php:8642
14072
- msgid "Photos will be added from the source pool"
14073
  msgstr ""
14074
 
14075
- #: wppa-settings-autosave.php:8643
14076
  msgid ""
14077
- "If checked: If photo files are found in the source directory that do not "
14078
- "exist in the corresponding album, they will be added to the album."
14079
  msgstr ""
14080
 
14081
- #: wppa-settings-autosave.php:8650
14082
- msgid "Save IPTC data"
14083
  msgstr ""
14084
 
14085
- #: wppa-settings-autosave.php:8651
14086
- msgid "Store the iptc data from the photo into the iptc db table"
14087
  msgstr ""
14088
 
14089
- #: wppa-settings-autosave.php:8652
14090
- msgid ""
14091
- "You will need this if you enabled the display of iptc data in Table II-B17 "
14092
- "or if you use it in the photo descriptions."
14093
  msgstr ""
14094
 
14095
- #: wppa-settings-autosave.php:8659
14096
- msgid "Save EXIF data"
14097
  msgstr ""
14098
 
14099
- #: wppa-settings-autosave.php:8660
14100
- msgid "Store the exif data from the photo into the exif db table"
14101
  msgstr ""
14102
 
14103
- #: wppa-settings-autosave.php:8661
14104
- msgid ""
14105
- "You will need this if you enabled the display of exif data in Table II-B18 "
14106
- "or if you use it in the photo descriptions."
14107
  msgstr ""
14108
 
14109
- #: wppa-settings-autosave.php:8668
14110
- msgid "Max EXIF tag array size"
14111
  msgstr ""
14112
 
14113
- #: wppa-settings-autosave.php:8669
14114
- msgid "Truncate array tags to ..."
14115
  msgstr ""
14116
 
14117
- #: wppa-settings-autosave.php:8670
14118
- msgid "A value of 0 disables this feature"
14119
  msgstr ""
14120
 
14121
- #: wppa-settings-autosave.php:8672
14122
- msgid "elements"
14123
  msgstr ""
14124
 
14125
- #: wppa-settings-autosave.php:8677
14126
- msgid "Import Create page"
14127
  msgstr ""
14128
 
14129
- #: wppa-settings-autosave.php:8678
14130
- msgid "Create wp page when a directory to album is imported."
14131
  msgstr ""
14132
 
14133
- #: wppa-settings-autosave.php:8679
14134
- msgid ""
14135
- "As soon as an album is created when a directory is imported, a wp page is "
14136
- "made that displays the album content."
14137
  msgstr ""
14138
 
14139
- #: wppa-settings-autosave.php:8687
14140
- msgid "Page content"
14141
  msgstr ""
14142
 
14143
- #: wppa-settings-autosave.php:8688
14144
- msgid "The content of the page. Must contain <b>w#album</b>"
 
 
14145
  msgstr ""
14146
 
14147
- #: wppa-settings-autosave.php:8689
14148
- msgid ""
14149
- "The content of the page. Note: it must contain w#album. This will be "
14150
- "replaced by the album number in the generated shortcode."
14151
  msgstr ""
14152
 
14153
- #: wppa-settings-autosave.php:8697
14154
- msgid "Page type"
 
14155
  msgstr ""
14156
 
14157
- #: wppa-settings-autosave.php:8698
14158
- msgid "Select the type of page to create."
14159
  msgstr ""
14160
 
14161
- #: wppa-settings-autosave.php:8702
14162
- msgid "Post"
14163
  msgstr ""
14164
 
14165
- #: wppa-settings-autosave.php:8709
14166
- msgid "Page status"
 
 
14167
  msgstr ""
14168
 
14169
- #: wppa-settings-autosave.php:8710
14170
- msgid "Select the initial status of the page."
 
 
14171
  msgstr ""
14172
 
14173
- #: wppa-settings-autosave.php:8714
14174
- msgid "Published"
14175
  msgstr ""
14176
 
14177
- #: wppa-settings-autosave.php:8714
14178
- msgid "Draft"
14179
  msgstr ""
14180
 
14181
- #: wppa-settings-autosave.php:8722
14182
- msgid "Permalink root"
14183
  msgstr ""
14184
 
14185
- #: wppa-settings-autosave.php:8723
14186
- msgid "The name of the root for the photofile ermalink structure."
14187
  msgstr ""
14188
 
14189
- #: wppa-settings-autosave.php:8724
14190
- msgid ""
14191
- "Choose a convenient name like \"albums\" or so; this will be the name of a "
14192
- "folder inside .../wp-content/. Make sure you choose a unique name"
14193
  msgstr ""
14194
 
14195
- #: wppa-settings-autosave.php:8732
14196
- msgid "Import parent check"
14197
  msgstr ""
14198
 
14199
- #: wppa-settings-autosave.php:8733
14200
- msgid "On import dirs to albums: keep dir tree as albums."
14201
  msgstr ""
14202
 
14203
- #: wppa-settings-autosave.php:8734
14204
- msgid ""
14205
- "Untick only if all your albums have unique names. Then: additional photos "
14206
- "may be ftp'd to toplevel depot subdirs."
14207
  msgstr ""
14208
 
14209
- #: wppa-settings-autosave.php:8741
14210
- msgid "IPTC need utf8 conversion"
14211
  msgstr ""
14212
 
14213
- #: wppa-settings-autosave.php:8742
14214
- msgid "This setting converts iso to utf8 in iptc text."
14215
  msgstr ""
14216
 
14217
- #: wppa-settings-autosave.php:8743
14218
- msgid "Untick if you have funny characters in iptc data"
14219
  msgstr ""
14220
 
14221
- #: wppa-settings-autosave.php:8750
14222
- msgid "Keep dir to album files"
14223
  msgstr ""
14224
 
14225
- #: wppa-settings-autosave.php:8751
14226
- msgid "Keep imported files after dir to album import"
14227
  msgstr ""
14228
 
14229
- #: wppa-settings-autosave.php:8760
14230
- msgid "Other plugins related settings"
14231
  msgstr ""
14232
 
14233
- #: wppa-settings-autosave.php:8762
14234
- msgid "Foreign shortcodes general"
14235
  msgstr ""
14236
 
14237
- #: wppa-settings-autosave.php:8763
14238
- msgid "Enable foreign shortcodes in album names, albums desc and photo names"
14239
  msgstr ""
14240
 
14241
- #: wppa-settings-autosave.php:8771
14242
- msgid "Foreign shortcodes fullsize"
14243
  msgstr ""
14244
 
14245
- #: wppa-settings-autosave.php:8772
14246
- msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
14247
  msgstr ""
14248
 
14249
- #: wppa-settings-autosave.php:8773 wppa-settings-autosave.php:8784
14250
  msgid ""
14251
- "When checked, you can use shortcodes from other plugins in the description "
14252
- "of photos."
14253
  msgstr ""
14254
 
14255
- #: wppa-settings-autosave.php:8774
14256
- msgid "The shortcodes will be expanded in the descriptions of fullsize images."
14257
  msgstr ""
14258
 
14259
- #: wppa-settings-autosave.php:8775 wppa-settings-autosave.php:8786
14260
- msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
14261
  msgstr ""
14262
 
14263
- #: wppa-settings-autosave.php:8782
14264
- msgid "Foreign shortcodes thumbnails"
14265
  msgstr ""
14266
 
14267
- #: wppa-settings-autosave.php:8783
14268
- msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
 
 
 
 
14269
  msgstr ""
14270
 
14271
- #: wppa-settings-autosave.php:8785
14272
  msgid ""
14273
- "The shortcodes will be expanded in the descriptions of thumbnail images."
 
14274
  msgstr ""
14275
 
14276
- #: wppa-settings-autosave.php:8793
14277
- msgid "Lightbox keyname"
14278
  msgstr ""
14279
 
14280
- #: wppa-settings-autosave.php:8794
14281
- msgid "The identifier of lightbox."
 
 
 
 
14282
  msgstr ""
14283
 
14284
- #: wppa-settings-autosave.php:8795
14285
  msgid ""
14286
- "If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
14287
- "lbox-id here."
14288
  msgstr ""
14289
 
14290
- #: wppa-settings-autosave.php:8802
14291
- msgid "myCRED / Cube Points: Comment"
14292
  msgstr ""
14293
 
14294
- #: wppa-settings-autosave.php:8803
14295
- msgid "Number of points for giving a comment"
14296
  msgstr ""
14297
 
14298
- #: wppa-settings-autosave.php:8804 wppa-settings-autosave.php:8813
14299
- #: wppa-settings-autosave.php:8822 wppa-settings-autosave.php:8831
14300
- msgid "This setting requires the plugin myCRED or Cube Points"
14301
  msgstr ""
14302
 
14303
- #: wppa-settings-autosave.php:8806 wppa-settings-autosave.php:8815
14304
- msgid "points per comment"
14305
  msgstr ""
14306
 
14307
- #: wppa-settings-autosave.php:8811
14308
- msgid "myCRED / Cube Points: Appr Comment"
 
 
14309
  msgstr ""
14310
 
14311
- #: wppa-settings-autosave.php:8812
14312
- msgid "Number of points for receiving an approved comment"
14313
  msgstr ""
14314
 
14315
- #: wppa-settings-autosave.php:8820
14316
- msgid "myCRED / Cube Points: Rating"
14317
  msgstr ""
14318
 
14319
- #: wppa-settings-autosave.php:8821
14320
- msgid "Number of points for a rating vote"
14321
  msgstr ""
14322
 
14323
- #: wppa-settings-autosave.php:8824
14324
- msgid "points per vote"
14325
  msgstr ""
14326
 
14327
- #: wppa-settings-autosave.php:8829
14328
- msgid "myCRED / Cube Points: Upload"
14329
  msgstr ""
14330
 
14331
- #: wppa-settings-autosave.php:8830
14332
- msgid "Number of points for a successfull frontend upload"
14333
  msgstr ""
14334
 
14335
- #: wppa-settings-autosave.php:8833
14336
- msgid "points per upload"
14337
  msgstr ""
14338
 
14339
- #: wppa-settings-autosave.php:8838
14340
- msgid "Use SCABN"
14341
  msgstr ""
14342
 
14343
- #: wppa-settings-autosave.php:8839
14344
- msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
14345
  msgstr ""
14346
 
14347
- #: wppa-settings-autosave.php:8840
14348
- msgid ""
14349
- "If checked, the shortcode to use for the \"add to cart\" button in photo "
14350
- "descriptions is [cart ...]"
14351
  msgstr ""
14352
 
14353
- #: wppa-settings-autosave.php:8841
14354
- msgid ""
14355
- "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
14356
  msgstr ""
14357
 
14358
- #: wppa-settings-autosave.php:8842
14359
- msgid "The shortcode for the check-out page is still [scabn]"
14360
  msgstr ""
14361
 
14362
- #: wppa-settings-autosave.php:8843
14363
- msgid ""
14364
- "The arguments are the same, the defaults are: name = photoname, price = 0.01."
14365
  msgstr ""
14366
 
14367
- #: wppa-settings-autosave.php:8844
14368
- msgid ""
14369
- "Supplying the price should be sufficient; supply a name only when it differs "
14370
- "from the photo name."
14371
  msgstr ""
14372
 
14373
- #: wppa-settings-autosave.php:8845
14374
- msgid "This shortcode handler will also work with Ajax enabled."
 
 
14375
  msgstr ""
14376
 
14377
- #: wppa-settings-autosave.php:8846
14378
  msgid ""
14379
- "Using this interface makes sure that the item urls and callback action urls "
14380
- "are correct."
14381
  msgstr ""
14382
 
14383
- #: wppa-settings-autosave.php:8853
14384
- msgid "Use CM Tooltip Glossary"
14385
  msgstr ""
14386
 
14387
- #: wppa-settings-autosave.php:8854
14388
- msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
14389
  msgstr ""
14390
 
14391
- #: wppa-settings-autosave.php:8855
14392
- msgid ""
14393
- "You MUST set Table IV-A13: Defer javascript, also if you do not want this "
14394
- "plugin to act on album and photo descriptions!"
14395
  msgstr ""
14396
 
14397
- #: wppa-settings-autosave.php:8863
14398
- msgid "External services related settings and actions."
14399
  msgstr ""
14400
 
14401
- #: wppa-settings-autosave.php:8865
14402
- msgid "QR Code widget size"
14403
  msgstr ""
14404
 
14405
- #: wppa-settings-autosave.php:8866
14406
- msgid "The size of the QR code display."
14407
  msgstr ""
14408
 
14409
- #: wppa-settings-autosave.php:8874
14410
- msgid "QR color"
 
 
14411
  msgstr ""
14412
 
14413
- #: wppa-settings-autosave.php:8875
14414
- msgid "The display color of the qr code (dark)"
14415
  msgstr ""
14416
 
14417
- #: wppa-settings-autosave.php:8876
14418
- msgid "This color MUST be given in hexadecimal format!"
14419
  msgstr ""
14420
 
14421
- #: wppa-settings-autosave.php:8883
14422
- msgid "QR background color"
14423
  msgstr ""
14424
 
14425
- #: wppa-settings-autosave.php:8884
14426
- msgid "The background color of the qr code (light)"
14427
  msgstr ""
14428
 
14429
- #: wppa-settings-autosave.php:8892
14430
- msgid "CDN Service"
14431
  msgstr ""
14432
 
14433
- #: wppa-settings-autosave.php:8893
14434
- msgid "Select a CDN Service you want to use."
14435
  msgstr ""
14436
 
14437
- #: wppa-settings-autosave.php:8896
14438
- msgid "Cloudinary in maintenance mode"
14439
  msgstr ""
14440
 
14441
- #: wppa-settings-autosave.php:8906
14442
- msgid "Cloud name"
14443
  msgstr ""
14444
 
14445
- #: wppa-settings-autosave.php:8915
14446
- msgid "API key"
14447
  msgstr ""
14448
 
14449
- #: wppa-settings-autosave.php:8924
14450
- msgid "API secret"
14451
  msgstr ""
14452
 
14453
- #: wppa-settings-autosave.php:8933
14454
- msgid "Delete all"
14455
  msgstr ""
14456
 
14457
- #: wppa-settings-autosave.php:8934
14458
- msgid "Deletes them all !!!"
 
14459
  msgstr ""
14460
 
14461
- #: wppa-settings-autosave.php:8942
14462
- msgid "Delete derived images"
14463
  msgstr ""
14464
 
14465
- #: wppa-settings-autosave.php:8943
14466
- msgid "Deletes all derived images !!!"
14467
  msgstr ""
14468
 
14469
- #: wppa-settings-autosave.php:8951
14470
- msgid "Max lifetime"
14471
  msgstr ""
14472
 
14473
- #: wppa-settings-autosave.php:8952
14474
- msgid "Old images from local server, new images from Cloudinary."
14475
  msgstr ""
14476
 
14477
- #: wppa-settings-autosave.php:8953
14478
- msgid ""
14479
- "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
14480
  msgstr ""
14481
 
14482
- #: wppa-settings-autosave.php:8955
14483
- msgid "Forever"
 
 
14484
  msgstr ""
14485
 
14486
- #: wppa-settings-autosave.php:8986
14487
- msgid "Cloudinary usage"
 
 
14488
  msgstr ""
14489
 
14490
- #: wppa-settings-autosave.php:9022
14491
- msgid "Cloudinary usage data not available"
14492
  msgstr ""
14493
 
14494
- #: wppa-settings-autosave.php:9026
14495
- msgid "Cloudinary routines not installed."
14496
  msgstr ""
14497
 
14498
- #: wppa-settings-autosave.php:9037
14499
- msgid "Cloudinary"
14500
  msgstr ""
14501
 
14502
- #: wppa-settings-autosave.php:9038
14503
- msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
 
 
14504
  msgstr ""
14505
 
14506
- #: wppa-settings-autosave.php:9047
14507
- msgid "GPX Implementation"
14508
  msgstr ""
14509
 
14510
- #: wppa-settings-autosave.php:9048
14511
- msgid "The way the maps are produced."
14512
  msgstr ""
14513
 
14514
- #: wppa-settings-autosave.php:9049
14515
- msgid "Select the way the maps are produced."
14516
  msgstr ""
14517
 
14518
- #: wppa-settings-autosave.php:9050
14519
- msgid ""
14520
- "When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
14521
  msgstr ""
14522
 
14523
- #: wppa-settings-autosave.php:9051
14524
- msgid ""
14525
- "When using WPPA+ Embedded code, you can use Ajax, but there are less display "
14526
- "options."
14527
  msgstr ""
14528
 
14529
- #: wppa-settings-autosave.php:9053
14530
- msgid "WPPA+ Embedded code"
14531
  msgstr ""
14532
 
14533
- #: wppa-settings-autosave.php:9053
14534
- msgid "Google maps GPX viewer plugin"
14535
  msgstr ""
14536
 
14537
- #: wppa-settings-autosave.php:9061
14538
- msgid "Map height"
14539
  msgstr ""
14540
 
14541
- #: wppa-settings-autosave.php:9062
14542
- msgid "The height of the map display."
14543
  msgstr ""
14544
 
14545
- #: wppa-settings-autosave.php:9070
14546
- msgid "Google maps API key"
14547
  msgstr ""
14548
 
14549
- #: wppa-settings-autosave.php:9071
14550
- msgid "Enter your Google maps api key here if you have one."
14551
  msgstr ""
14552
 
14553
- #: wppa-settings-autosave.php:9079
14554
- msgid "GPX Shortcode"
14555
  msgstr ""
14556
 
14557
- #: wppa-settings-autosave.php:9080
14558
- msgid "The shortcode to be used for the gpx feature."
14559
  msgstr ""
14560
 
14561
- #: wppa-settings-autosave.php:9081
14562
- msgid ""
14563
- "Enter / modify the shortcode to be generated for the gpx plugin. It must "
14564
- "contain w#lat and w#lon as placeholders for the lattitude and longitude."
14565
  msgstr ""
14566
 
14567
- #: wppa-settings-autosave.php:9082
14568
- msgid "This item is required for using Google maps GPX viewer plugin only"
14569
  msgstr ""
14570
 
14571
- #: wppa-settings-autosave.php:9089
14572
- msgid "Fotomoto"
14573
  msgstr ""
14574
 
14575
- #: wppa-settings-autosave.php:9090
14576
- msgid "Yes, we use Fotomoto on this site. Read the help text!"
14577
  msgstr ""
14578
 
14579
- #: wppa-settings-autosave.php:9091
14580
- msgid "In order to function properly:"
14581
  msgstr ""
14582
 
14583
- #: wppa-settings-autosave.php:9092
14584
- msgid "1. Get yourself a Fotomoto account."
14585
  msgstr ""
14586
 
14587
- #: wppa-settings-autosave.php:9093
14588
- msgid ""
14589
- "2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
14590
- "the \"Use API Mode:\" checkbox."
14591
  msgstr ""
14592
 
14593
- #: wppa-settings-autosave.php:9094
14594
- msgid "Note: Do NOT Disable the Custom box in Table II-B14."
14595
  msgstr ""
14596
 
14597
- #: wppa-settings-autosave.php:9095
14598
- msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
14599
  msgstr ""
14600
 
14601
- #: wppa-settings-autosave.php:9103
14602
- msgid "Fotomoto fontsize"
14603
  msgstr ""
14604
 
14605
- #: wppa-settings-autosave.php:9104
14606
- msgid "Fontsize for the Fotomoto toolbar."
14607
  msgstr ""
14608
 
14609
- #: wppa-settings-autosave.php:9105
14610
- msgid ""
14611
- "If you set it here, it overrules a possible setting for font-size in ."
14612
- "FotomotoToolbarClass on the Fotomoto dashboard."
14613
  msgstr ""
14614
 
14615
- #: wppa-settings-autosave.php:9113
14616
- msgid "Hide toolbar on running slideshows"
14617
  msgstr ""
14618
 
14619
- #: wppa-settings-autosave.php:9114
14620
- msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
14621
  msgstr ""
14622
 
14623
- #: wppa-settings-autosave.php:9121
14624
- msgid "Fotomoto minwidth"
14625
  msgstr ""
14626
 
14627
- #: wppa-settings-autosave.php:9122
14628
- msgid "Minimum width to display Fotomoto toolbar."
14629
  msgstr ""
14630
 
14631
- #: wppa-settings-autosave.php:9123
14632
- msgid ""
14633
- "The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
14634
  msgstr ""
14635
 
14636
- #: wppa-settings-autosave.php:9148
14637
- msgid "Table X:"
14638
  msgstr ""
14639
 
14640
- #: wppa-settings-autosave.php:9148
14641
- msgid "IPTC Configuration:"
14642
  msgstr ""
14643
 
14644
- #: wppa-settings-autosave.php:9149
14645
- msgid "This table defines the IPTC configuration"
14646
  msgstr ""
14647
 
14648
- #: wppa-settings-autosave.php:9180 wppa-settings-autosave.php:9248
14649
- msgid "Display"
14650
  msgstr ""
14651
 
14652
- #: wppa-settings-autosave.php:9180 wppa-settings-autosave.php:9248
14653
- msgid "Hide"
14654
  msgstr ""
14655
 
14656
- #: wppa-settings-autosave.php:9210
14657
- msgid "Table XI:"
14658
  msgstr ""
14659
 
14660
- #: wppa-settings-autosave.php:9210
14661
- msgid "EXIF Configuration:"
14662
  msgstr ""
14663
 
14664
- #: wppa-settings-autosave.php:9211
14665
- msgid "This table defines the EXIF configuration"
14666
  msgstr ""
14667
 
14668
- #: wppa-settings-autosave.php:9234
14669
- msgid ""
14670
- "Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
14671
- "enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to "
14672
- "add <b>'--enable-exif'</b> to the php <b>Configure Command</b>."
14673
  msgstr ""
14674
 
14675
- #: wppa-settings-autosave.php:9278
14676
- msgid "Table XII:"
14677
  msgstr ""
14678
 
14679
- #: wppa-settings-autosave.php:9278
14680
- msgid "WPPA+ and PHP Configuration:"
14681
  msgstr ""
14682
 
14683
- #: wppa-settings-autosave.php:9279
14684
  msgid ""
14685
- "This table lists all WPPA+ constants and PHP server configuration parameters "
14686
- "and is read only"
14687
  msgstr ""
14688
 
14689
- #: wppa-settings-autosave.php:9294
14690
- msgid "Value"
 
 
14691
  msgstr ""
14692
 
14693
- #: wppa-settings-autosave.php:9300
14694
- msgid "Albums db table name."
14695
  msgstr ""
14696
 
14697
- #: wppa-settings-autosave.php:9312
14698
- msgid "Photos db table name."
14699
  msgstr ""
14700
 
14701
- #: wppa-settings-autosave.php:9324
14702
- msgid "Rating db table name."
14703
  msgstr ""
14704
 
14705
- #: wppa-settings-autosave.php:9336
14706
- msgid "Comments db table name."
14707
  msgstr ""
14708
 
14709
- #: wppa-settings-autosave.php:9348
14710
- msgid "IPTC db table name."
14711
  msgstr ""
14712
 
14713
- #: wppa-settings-autosave.php:9360
14714
- msgid "EXIF db table name."
 
14715
  msgstr ""
14716
 
14717
- #: wppa-settings-autosave.php:9372 wppa-settings-autosave.php:9384
14718
- msgid "Index db table name."
14719
  msgstr ""
14720
 
14721
- #: wppa-settings-autosave.php:9396
14722
- msgid "Plugins main file name."
14723
  msgstr ""
14724
 
14725
- #: wppa-settings-autosave.php:9402
14726
- msgid "ABSPATH windows proof"
14727
  msgstr ""
14728
 
14729
- #: wppa-settings-autosave.php:9408
14730
- msgid "Path to plugins directory."
 
 
14731
  msgstr ""
14732
 
14733
- #: wppa-settings-autosave.php:9414
14734
- msgid "Plugins directory name."
 
 
14735
  msgstr ""
14736
 
14737
- #: wppa-settings-autosave.php:9420
14738
- msgid "Plugins directory url."
14739
  msgstr ""
14740
 
14741
- #: wppa-settings-autosave.php:9426
14742
- msgid "The relative upload directory."
14743
  msgstr ""
14744
 
14745
- #: wppa-settings-autosave.php:9432
14746
- msgid "The upload directory path."
 
 
14747
  msgstr ""
14748
 
14749
- #: wppa-settings-autosave.php:9438
14750
- msgid "The upload directory url."
14751
  msgstr ""
14752
 
14753
- #: wppa-settings-autosave.php:9444
14754
- msgid "The relative depot directory."
14755
  msgstr ""
14756
 
14757
- #: wppa-settings-autosave.php:9450
14758
- msgid "The depot directory path."
 
 
14759
  msgstr ""
14760
 
14761
- #: wppa-settings-autosave.php:9456
14762
- msgid "The depot directory url."
14763
  msgstr ""
14764
 
14765
- #: wppa-settings-autosave.php:9462
14766
- msgid "The path to wp-content."
14767
  msgstr ""
14768
 
14769
- #: wppa-settings-autosave.php:9468
14770
- msgid "WP Content url."
 
 
14771
  msgstr ""
14772
 
14773
- #: wppa-settings-autosave.php:9474
14774
- msgid "WP Base upload dir."
14775
  msgstr ""
14776
 
14777
- #: wppa-settings-autosave.php:9494
14778
- #, php-format
14779
- msgid "<br />Memory used on this page: %6.2f Mb."
14780
  msgstr ""
14781
 
14782
- #: wppa-settings-autosave.php:9495
14783
- #, php-format
14784
- msgid "<br />There are %d settings and %d runtime parameters."
14785
  msgstr ""
14786
 
14787
- #: wppa-settings-autosave.php:9574
14788
- msgid "The default for this setting is:"
14789
  msgstr ""
14790
 
14791
- #: wppa-settings-autosave.php:9591
14792
- msgid "Click for help"
14793
  msgstr ""
14794
 
14795
- #: wppa-settings-autosave.php:9636 wppa-settings-autosave.php:9655
14796
- #: wppa-settings-autosave.php:9685 wppa-settings-autosave.php:9702
14797
- #: wppa-settings-autosave.php:9726 wppa-settings-autosave.php:9747
14798
- #: wppa-settings-autosave.php:9767 wppa-settings-autosave.php:9809
14799
- msgid "Slug ="
14800
  msgstr ""
14801
 
14802
- #: wppa-settings-autosave.php:9702 wppa-settings-autosave.php:9726
14803
- #: wppa-settings-autosave.php:9747 wppa-settings-autosave.php:9767
14804
- msgid "Values = yes, no"
 
14805
  msgstr ""
14806
 
14807
- #: wppa-settings-autosave.php:9725 wppa-settings-autosave.php:9745
14808
- #: wppa-settings-autosave.php:9766
14809
- msgid "Warning!"
14810
  msgstr ""
14811
 
14812
- #: wppa-settings-autosave.php:9746 wppa-settings-autosave.php:9766
14813
- msgid "Please read the help"
14814
  msgstr ""
14815
 
14816
- #: wppa-settings-autosave.php:9809
14817
- msgid "Values = "
 
 
14818
  msgstr ""
14819
 
14820
- #: wppa-settings-autosave.php:9937
14821
- msgid "Checked"
14822
  msgstr ""
14823
 
14824
- #: wppa-settings-autosave.php:9938
14825
- msgid "Unchecked"
14826
  msgstr ""
14827
 
14828
- #: wppa-settings-autosave.php:9943
14829
- msgid "the photo specific link."
14830
  msgstr ""
14831
 
14832
- #: wppa-settings-autosave.php:9977
14833
- msgid "Show!"
14834
  msgstr ""
14835
 
14836
- #: wppa-settings-autosave.php:9997
14837
- msgid "Not done yet"
14838
  msgstr ""
14839
 
14840
- #: wppa-settings-autosave.php:10004
14841
- msgid "Start!"
14842
  msgstr ""
14843
 
14844
- #: wppa-settings-autosave.php:10009
14845
- msgid "Locked!"
14846
  msgstr ""
14847
 
14848
- #: wppa-settings-autosave.php:10040
14849
- msgid ""
14850
- "You can not have popup and lightbox on thumbnails at the same time. Uncheck "
14851
- "either Table IV-C8 or choose a different linktype in Table VI-2."
14852
  msgstr ""
14853
 
14854
- #: wppa-settings-autosave.php:10043
14855
- #, php-format
14856
- msgid ""
14857
- "It is important that you select a page that contains at least %%wppa%% or "
14858
- "[wppa][/wppa]."
14859
  msgstr ""
14860
 
14861
- #: wppa-settings-autosave.php:10044
14862
  msgid ""
14863
- "If you ommit this, the link will not work at all or simply refresh the "
14864
- "(home)page."
14865
  msgstr ""
14866
 
14867
- #: wppa-setup.php:508
14868
- msgid "IMPORTANT UPGRADE NOTICE"
14869
  msgstr ""
14870
 
14871
- #: wppa-setup.php:509
14872
- msgid ""
14873
- "Please CHECK your customized WPPA-STYLE.CSS file against the newly supplied "
14874
- "one. You may wish to add or modify some attributes. Be aware of the fact "
14875
- "that most settings can now be set in the admin settings page."
14876
  msgstr ""
14877
 
14878
- #: wppa-setup.php:510
14879
  msgid ""
14880
- "Please REPLACE your customized WPPA-THEME.PHP file by the newly supplied "
14881
- "one, or just remove it from your theme directory. You may modify it later if "
14882
- "you wish. Your current customized version is NOT compatible with this "
14883
- "version of the plugin software."
14884
  msgstr ""
14885
 
14886
- #: wppa-setup.php:538
14887
- #, php-format
14888
- msgid "WPPA+ successfully updated in multi site mode to db version %s."
14889
  msgstr ""
14890
 
14891
- #: wppa-setup.php:541
14892
- #, php-format
14893
- msgid "WPPA+ successfully updated in single site mode to db version %s."
14894
  msgstr ""
14895
 
14896
- #: wppa-setup.php:546
14897
- msgid "An error occurred during update"
14898
  msgstr ""
14899
 
14900
- #: wppa-setup.php:854
14901
- msgid ""
14902
- "<span style=\"color:red\" >Warning: Do not upload copyrighted material!</"
14903
- "span>"
14904
  msgstr ""
14905
 
14906
- #: wppa-setup.php:863 wppa-setup.php:867 wppa-setup.php:871
14907
- msgid "Select tags:"
14908
  msgstr ""
14909
 
14910
- #: wppa-setup.php:874
14911
- msgid "Enter new tags:"
14912
  msgstr ""
14913
 
14914
- #: wppa-setup.php:1091
14915
- msgid "Vote for me!"
14916
  msgstr ""
14917
 
14918
- #: wppa-setup.php:1092
14919
- msgid "Voted for me"
14920
  msgstr ""
14921
 
14922
- #: wppa-setup.php:1441
14923
- msgid "NEW"
14924
  msgstr ""
14925
 
14926
- #: wppa-setup.php:1443
14927
- msgid "MODIFIED"
14928
  msgstr ""
14929
 
14930
- #: wppa-setup.php:1493
14931
- msgid "Search in current section"
 
 
14932
  msgstr ""
14933
 
14934
- #: wppa-setup.php:1494
14935
- msgid "Search in current results"
14936
  msgstr ""
14937
 
14938
- #: wppa-setup.php:1565
14939
- msgid "Type your custom url here"
14940
  msgstr ""
14941
 
14942
- #: wppa-setup.php:1566
14943
- msgid "Type the title here"
14944
  msgstr ""
14945
 
14946
- #: wppa-setup.php:1580 wppa-topten-widget.php:13 wppa-topten-widget.php:48
14947
- #: wppa-topten-widget.php:298
14948
- msgid "Top Ten Photos"
14949
  msgstr ""
14950
 
14951
- #: wppa-setup.php:1583 wppa-thumbnail-widget.php:13
14952
- #: wppa-thumbnail-widget.php:166
14953
- msgid "Thumbnail Photos"
14954
  msgstr ""
14955
 
14956
- #: wppa-setup.php:1586
14957
- msgid "Search photos"
14958
  msgstr ""
14959
 
14960
- #: wppa-setup.php:1628
 
 
 
 
14961
  msgid ""
14962
- "The uploads directory does not exist, please do a regular WP upload first."
 
14963
  msgstr ""
14964
 
14965
- #: wppa-setup.php:1632
14966
- msgid "Successfully created uploads directory."
14967
  msgstr ""
14968
 
14969
- #: wppa-setup.php:1643
14970
- msgid "Could not create the wppa directory."
14971
  msgstr ""
14972
 
14973
- #: wppa-setup.php:1647
14974
- msgid "Successfully created wppa directory."
 
14975
  msgstr ""
14976
 
14977
- #: wppa-setup.php:1657
14978
- msgid "Could not create the wppa thumbs directory."
14979
  msgstr ""
14980
 
14981
- #: wppa-setup.php:1661
14982
- msgid "Successfully created wppa thumbs directory."
14983
  msgstr ""
14984
 
14985
- #: wppa-setup.php:1671
14986
- msgid "Could not create the wppa watermarks directory."
14987
  msgstr ""
14988
 
14989
- #: wppa-setup.php:1675
14990
- msgid "Successfully created wppa watermarks directory."
14991
  msgstr ""
14992
 
14993
- #: wppa-setup.php:1685
14994
- msgid "Could not create the wppa fonts directory."
14995
  msgstr ""
14996
 
14997
- #: wppa-setup.php:1689
14998
- msgid "Successfully created wppa fonts directory."
14999
  msgstr ""
15000
 
15001
- #: wppa-setup.php:1701
15002
- msgid "Unable to create depot directory."
15003
  msgstr ""
15004
 
15005
- #: wppa-setup.php:1705
15006
- msgid "Successfully created wppa depot directory."
15007
  msgstr ""
15008
 
15009
- #: wppa-setup.php:1716
15010
- msgid "Unable to create user depot directory"
15011
  msgstr ""
15012
 
15013
- #: wppa-setup.php:1720
15014
- msgid "Successfully created wppa user depot directory."
15015
  msgstr ""
15016
 
15017
- #: wppa-setup.php:1730
15018
- msgid "Unable to create temp directory"
15019
  msgstr ""
15020
 
15021
- #: wppa-setup.php:1734
15022
- msgid "Successfully created temp directory."
 
 
15023
  msgstr ""
15024
 
15025
- #: wppa-setup.php:1742
15026
- #, php-format
15027
  msgid ""
15028
- "Ask your administrator to give you more rights, or create <b>%s</b> manually "
15029
- "using an FTP program."
15030
  msgstr ""
15031
 
15032
- #: wppa-slideshow-widget.php:17
15033
- msgid "WPPA+ Sidebar Slideshow"
15034
  msgstr ""
15035
 
15036
- #: wppa-slideshow-widget.php:18 wppa-slideshow-widget.php:162
15037
- msgid "Sidebar Slideshow"
 
15038
  msgstr ""
15039
 
15040
- #: wppa-slideshow-widget.php:71
15041
- msgid "Widget landing page"
 
 
15042
  msgstr ""
15043
 
15044
- #: wppa-slideshow-widget.php:200
 
 
 
 
15045
  msgid ""
15046
- "Enter the width and optionally the height of the area wherein the slides "
15047
- "will appear. If you specify a 0 for the height, it will be calculated. The "
15048
- "value for the height will be ignored if you set the vertical alignment to "
15049
- "'fit'."
15050
  msgstr ""
15051
 
15052
- #: wppa-slideshow-widget.php:201 wppa-slideshow-widget.php:202
15053
- #: wppa-widget-admin.php:86
15054
- msgid "pixels."
15055
  msgstr ""
15056
 
15057
- #: wppa-slideshow-widget.php:204
15058
- msgid "Portrait only:"
15059
  msgstr ""
15060
 
15061
- #: wppa-slideshow-widget.php:208
15062
  msgid ""
15063
- "Set to 'yes' if there are only portrait images in the album and you want the "
15064
- "photos to fill the full width of the widget.<br/>Set to 'no' otherwise."
15065
  msgstr ""
15066
 
15067
- #: wppa-slideshow-widget.php:209
15068
- msgid "If set to 'yes', Vertical alignment will be forced to 'fit'."
15069
  msgstr ""
15070
 
15071
- #: wppa-slideshow-widget.php:212
15072
- msgid "Vertical alignment:"
15073
  msgstr ""
15074
 
15075
- #: wppa-slideshow-widget.php:218
15076
- msgid "Set the desired vertical alignment method."
15077
  msgstr ""
15078
 
15079
- #: wppa-slideshow-widget.php:220
15080
- msgid "Slideshow timeout:"
15081
  msgstr ""
15082
 
15083
- #: wppa-slideshow-widget.php:220
15084
- msgid "sec."
15085
  msgstr ""
15086
 
15087
- #: wppa-slideshow-widget.php:224
15088
- msgid "Show name:"
15089
  msgstr ""
15090
 
15091
- #: wppa-slideshow-widget.php:231
15092
- msgid "Show description:"
15093
  msgstr ""
15094
 
15095
- #: wppa-slideshow-widget.php:238
15096
- msgid "Show filmstrip:"
15097
  msgstr ""
15098
 
15099
- #: wppa-slideshow-widget.php:245
15100
- msgid "Show browsebar:"
15101
  msgstr ""
15102
 
15103
- #: wppa-slideshow-widget.php:252
15104
- msgid "Show numbar:"
15105
  msgstr ""
15106
 
15107
- #: wppa-slideshow-widget.php:259
15108
- msgid "The following text fields support qTranslate"
15109
  msgstr ""
15110
 
15111
- #: wppa-slideshow-widget.php:260
15112
- msgid "Tooltip text:"
15113
  msgstr ""
15114
 
15115
- #: wppa-slideshow-widget.php:261
15116
- msgid "Text above photos:"
15117
  msgstr ""
15118
 
15119
- #: wppa-slideshow-widget.php:262
15120
- msgid "Text below photos:"
15121
  msgstr ""
15122
 
15123
- #: wppa-slideshow.php:261
15124
- msgid "Paused"
15125
- msgstr "Pause"
15126
 
15127
- #: wppa-slideshow.php:269
15128
- msgid ""
15129
- "To see the full size images, you need to enable javascript in your browser."
15130
  msgstr ""
15131
- "For at se billeder i fuld st&oslash;rrelse skal du tillade javascript in din "
15132
- "browser."
15133
 
15134
- #: wppa-slideshow.php:616
15135
- msgid "Checkout"
15136
- msgstr "Gå til kassen"
15137
 
15138
- #: wppa-slideshow.php:676
15139
- #, php-format
15140
- msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
15141
- msgstr "Antal stemmer: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
15142
 
15143
- #: wppa-slideshow.php:692 wppa-slideshow.php:901 wppa-slideshow.php:963
15144
- #, php-format
15145
- msgid "You must <a href=\"%s\">login</a> to vote"
15146
- msgstr "Du skal <a href=\"%s\">logge ind</a> for at stemme"
15147
 
15148
- #: wppa-slideshow.php:695 wppa-slideshow.php:904 wppa-slideshow.php:966
15149
- msgid "You must login to vote"
15150
- msgstr "Du skal logge ind for at stemme"
15151
 
15152
- #: wppa-slideshow.php:726
15153
- msgid "Sorry, you can rate a photo only once"
 
15154
  msgstr ""
15155
 
15156
- #: wppa-slideshow.php:757
15157
- msgid "very low"
15158
- msgstr "meget lav"
15159
 
15160
- #: wppa-slideshow.php:758
15161
- msgid "low"
15162
- msgstr "lav"
15163
 
15164
- #: wppa-slideshow.php:759
15165
- msgid "average"
15166
- msgstr "gennemsnitlig"
15167
 
15168
- #: wppa-slideshow.php:760
15169
- msgid "high"
15170
- msgstr "h&oslash;j"
15171
 
15172
- #: wppa-slideshow.php:761
15173
- msgid "very high"
15174
- msgstr "meget h&oslash;j"
15175
 
15176
- #: wppa-slideshow.php:827 wppa-slideshow.php:934
15177
- msgid "Click this if you do NOT like this image!"
15178
- msgstr "Klik her hvis du IKKE kan lide dette billed!"
15179
 
15180
- #: wppa-slideshow.php:835 wppa-slideshow.php:942
15181
- msgid "Are you sure you want to mark this image as inappropriate?"
15182
  msgstr ""
15183
- "Er du sikker p&aring;, at du vil markere dette billed som v&aelig;rende "
15184
- "upassende."
15185
 
15186
- #: wppa-slideshow.php:844 wppa-slideshow.php:952
15187
- msgid "Number of people who marked this photo as inappropriate"
15188
- msgstr "Antallet af mennesker, der markerede dette billede som upassende"
15189
 
15190
- #: wppa-slideshow.php:958
15191
- msgid "My rating:"
15192
- msgstr "Min vurdering:"
15193
 
15194
- #: wppa-slideshow.php:1053
15195
- msgid "First"
15196
- msgstr "Første"
 
15197
 
15198
- #: wppa-slideshow.php:1085
15199
- msgid "Last"
15200
- msgstr "Sidste"
 
 
15201
 
15202
- #: wppa-slideshow.php:1264
15203
- #, php-format
15204
- msgid "Photo %s of %s"
15205
- msgstr "Foto %s af %s"
 
 
 
15206
 
15207
- #: wppa-slideshow.php:1316
15208
- msgid "Click to start/stop"
15209
- msgstr "Klik for start/stop"
15210
 
15211
- #: wppa-slideshow.php:1328
15212
- msgid "- - - Comments box activated - - -"
15213
- msgstr "- - - Kommentar boks aktiveret - - -"
15214
 
15215
- #: wppa-slideshow.php:1352
15216
- msgid "- - - IPTC box activated - - -"
15217
- msgstr "- - - IPTC boks aktiveret - - -"
15218
 
15219
- #: wppa-slideshow.php:1376
15220
- msgid "- - - EXIF box activated - - -"
15221
- msgstr "- - - EXIF boks aktiveret - - -"
15222
 
15223
- #: wppa-statistics.php:27
15224
- #, php-format
15225
- msgid "There is %d photo album"
15226
- msgid_plural "There are %d photo albums"
15227
- msgstr[0] ""
15228
- msgstr[1] ""
15229
 
15230
- #: wppa-statistics.php:28
15231
- msgid "The last album added is"
15232
  msgstr ""
15233
 
15234
- #: wppa-statistics.php:32
15235
- msgid ", a subalbum of"
15236
- msgstr ", et underalbum til"
 
 
15237
 
15238
- #: wppa-stereo-widget.php:12
15239
- msgid "WPPA+ Stereo settings"
15240
  msgstr ""
15241
 
15242
- #: wppa-stereo-widget.php:13
15243
- msgid "3D Settings"
15244
  msgstr ""
15245
 
15246
- #: wppa-stereo-widget.php:33 wppa-stereo-widget.php:64
15247
- msgid "3D Stereo Settings"
15248
  msgstr ""
15249
 
15250
- #: wppa-stereo.php:32
15251
- msgid "Half color"
15252
  msgstr ""
15253
 
15254
- #: wppa-stereo.php:33
15255
- msgid "Gray"
15256
  msgstr ""
15257
 
15258
- #: wppa-stereo.php:34
15259
- msgid "True anaglyph"
 
 
15260
  msgstr ""
15261
 
15262
- #: wppa-stereo.php:35
15263
- msgid "Optimized"
15264
  msgstr ""
15265
 
15266
- #: wppa-stereo.php:36
15267
- msgid "Flat"
15268
  msgstr ""
15269
 
15270
- #: wppa-stereo.php:38
15271
- msgid "Red - Cyan"
15272
  msgstr ""
15273
 
15274
- #: wppa-stereo.php:39
15275
- msgid "Green - Magenta"
15276
  msgstr ""
15277
 
15278
- #: wppa-super-view-widget.php:13
15279
- msgid "WPPA+ Selectable display"
 
 
15280
  msgstr ""
15281
 
15282
- #: wppa-super-view-widget.php:77
15283
- msgid "Enable (sub)albums of:"
15284
  msgstr ""
15285
 
15286
- #: wppa-super-view-widget.php:82
15287
- msgid "Sort alphabeticly:"
15288
  msgstr ""
15289
 
15290
- #: wppa-super-view-widget.php:84
15291
- msgid "no, use album sort method"
15292
  msgstr ""
15293
 
15294
- #: wppa-tagcloud-widget.php:14
15295
- msgid "Photo Tag Cloud"
15296
  msgstr ""
15297
 
15298
- #: wppa-thumbnail-widget.php:12
15299
- msgid "WPPA+ Thumbnails"
 
15300
  msgstr ""
15301
 
15302
- #: wppa-thumbnail-widget.php:48
15303
- msgid "Thumbnail photos"
15304
  msgstr ""
15305
 
15306
- #: wppa-thumbnail-widget.php:186
15307
- msgid "Link from the title:"
15308
  msgstr ""
15309
 
15310
- #: wppa-thumbnail-widget.php:187
15311
- msgid "Link Title ( tooltip ):"
15312
  msgstr ""
15313
 
15314
- #: wppa-thumbnail-widget.php:198 wppa-topten-widget.php:342
15315
- #: wppa-upldr-widget.php:180
15316
- msgid "Sort by:"
15317
  msgstr ""
15318
 
15319
- #: wppa-thumbnail-widget.php:211
15320
- msgid "Max number:"
15321
  msgstr ""
15322
 
15323
- #: wppa-thumbnail-widget.php:225
15324
- msgid "Show photo names <small>under thumbnails only</small>:"
15325
  msgstr ""
15326
 
15327
- #: wppa-thumbnails.php:177 wppa-thumbnails.php:1114 wppa-topten-widget.php:157
15328
- msgid "View the top rated photos"
15329
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
15330
 
15331
- #: wppa-thumbnails.php:1021
15332
- #, php-format
15333
- msgid "Missing thumbnail image #%s"
15334
- msgstr "Manglende miniaturebillede #%s"
15335
 
15336
- #: wppa-tinymce-scripts.php:64 wppa-tinymce-shortcodes.php:59
15337
- msgid "No Preview available"
 
 
 
15338
  msgstr ""
15339
 
15340
- #: wppa-tinymce-scripts.php:80
15341
- msgid "Album Preview"
15342
  msgstr ""
15343
 
15344
- #: wppa-tinymce-scripts.php:80
15345
- msgid "A maximum of 100 photos can be previewd"
15346
  msgstr ""
15347
 
15348
- #: wppa-tinymce-scripts.php:82
15349
- msgid "Photo Preview"
 
 
15350
  msgstr ""
15351
 
15352
- #: wppa-tinymce-scripts.php:87
15353
- msgid "Type of Gallery display:"
15354
  msgstr ""
15355
 
15356
- #: wppa-tinymce-scripts.php:90
15357
- msgid "The cover of an album"
15358
  msgstr ""
15359
 
15360
- #: wppa-tinymce-scripts.php:91
15361
- msgid "The sub-albums and/or thumbnails in an album"
15362
  msgstr ""
15363
 
15364
- #: wppa-tinymce-scripts.php:92
15365
- msgid "A slideshow of the photos in an album"
15366
  msgstr ""
15367
 
15368
- #: wppa-tinymce-scripts.php:93 wppa-tinymce-shortcodes.php:161
15369
- msgid "A slideshow without supporting boxes"
15370
  msgstr ""
15371
 
15372
- #: wppa-tinymce-scripts.php:94 wppa-tinymce-shortcodes.php:162
15373
- msgid "A slideshow with a filmstrip only"
15374
  msgstr ""
15375
 
15376
- #: wppa-tinymce-scripts.php:95
15377
- msgid "A single photo"
15378
  msgstr ""
15379
 
15380
- #: wppa-tinymce-scripts.php:96 wppa-tinymce-shortcodes.php:175
15381
- msgid "A single photo with caption"
15382
  msgstr ""
15383
 
15384
- #: wppa-tinymce-scripts.php:97 wppa-tinymce-shortcodes.php:176
15385
- msgid "A single photo in the style of a slideshow"
15386
  msgstr ""
15387
 
15388
- #: wppa-tinymce-scripts.php:98 wppa-tinymce-shortcodes.php:203
15389
- msgid "A generic albums display"
15390
  msgstr ""
15391
 
15392
- #: wppa-tinymce-scripts.php:101
15393
- msgid "Specify the type of gallery"
15394
  msgstr ""
15395
 
15396
- #: wppa-tinymce-scripts.php:106
15397
- msgid "Explanation:"
15398
  msgstr ""
15399
 
15400
- #: wppa-tinymce-scripts.php:108
15401
- msgid "Use this gallerytype to display all the top-level album covers."
15402
  msgstr ""
15403
 
15404
- #: wppa-tinymce-scripts.php:113
15405
- msgid "The Album to be used:"
15406
  msgstr ""
15407
 
15408
- #: wppa-tinymce-scripts.php:124 wppa-upload.php:134 wppa-upload.php:222
15409
- #: wppa-upload.php:269
15410
- msgid "Please select an album"
15411
  msgstr ""
15412
 
15413
- #: wppa-tinymce-scripts.php:148
15414
- msgid "- The latest created album -"
15415
  msgstr ""
15416
 
15417
- #: wppa-tinymce-scripts.php:157
15418
- msgid "--- The top rated photos ---"
15419
  msgstr ""
15420
 
15421
- #: wppa-tinymce-scripts.php:166
15422
- msgid "--- The most recently uploaded photos ---"
15423
  msgstr ""
15424
 
15425
- #: wppa-tinymce-scripts.php:175
15426
- msgid "--- A random selection of featured photos ---"
15427
  msgstr ""
15428
 
15429
- #: wppa-tinymce-scripts.php:192
15430
- msgid "--- The most recently commented photos ---"
15431
  msgstr ""
15432
 
15433
- #: wppa-tinymce-scripts.php:195
15434
- msgid "--- Photos that have certain tags ---"
15435
  msgstr ""
15436
 
15437
- #: wppa-tinymce-scripts.php:204
15438
- msgid "--- All photos in the system ---"
15439
  msgstr ""
15440
 
15441
- #: wppa-tinymce-scripts.php:207 wppa-tinymce-shortcodes.php:295
15442
- #: wppa-tinymce-shortcodes.php:318 wppa-tinymce-shortcodes.php:363
15443
- #: wppa-tinymce-shortcodes.php:386 wppa-tinymce-shortcodes.php:574
15444
- msgid "There are no albums yet"
15445
  msgstr ""
15446
 
15447
- #: wppa-tinymce-scripts.php:215
15448
- msgid "Specify the album to be used or --- A special selection of photos ---"
 
15449
  msgstr ""
15450
 
15451
- #: wppa-tinymce-scripts.php:216
15452
- msgid ""
15453
- "In an upload box, the album is optional. When no album is specified: a "
15454
- "selection box will be displayed of the albums the user has the right to "
15455
- "upload."
15456
  msgstr ""
15457
 
15458
- #: wppa-tinymce-scripts.php:217
15459
- msgid "* Album contains less than the minimun number of photos"
15460
  msgstr ""
15461
 
15462
- #: wppa-tinymce-scripts.php:223 wppa-tinymce-shortcodes.php:424
15463
- msgid "The Photo to be used:"
15464
  msgstr ""
15465
 
15466
- #: wppa-tinymce-scripts.php:228 wppa-tinymce-shortcodes.php:430
15467
- msgid "Please select a photo"
15468
  msgstr ""
15469
 
15470
- #: wppa-tinymce-scripts.php:239
15471
- msgid "--- The most recently uploaded photo ---"
15472
  msgstr ""
15473
 
15474
- #: wppa-tinymce-scripts.php:240
15475
- msgid "--- The photo of the day ---"
15476
  msgstr ""
15477
 
15478
- #: wppa-tinymce-scripts.php:243 wppa-tinymce-shortcodes.php:448
15479
- msgid "There are no photos yet"
 
 
15480
  msgstr ""
15481
 
15482
- #: wppa-tinymce-scripts.php:249 wppa-tinymce-shortcodes.php:454
15483
- msgid "Specify the photo to be used"
 
15484
  msgstr ""
15485
 
15486
- #: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:455
15487
- msgid "You can select from a maximum of 100 most recently added photos"
 
 
15488
  msgstr ""
15489
 
15490
- #: wppa-tinymce-scripts.php:256
15491
- msgid "The tags the photos should have:"
15492
  msgstr ""
15493
 
15494
- #: wppa-tinymce-scripts.php:259 wppa-tinymce-shortcodes.php:472
15495
- msgid "--- please select tag(s) ---"
 
 
 
15496
  msgstr ""
15497
 
15498
- #: wppa-tinymce-scripts.php:267
15499
  msgid ""
15500
- "If you want that the photos have all the selected tags, check this box. "
15501
- "Leave it unchecked if the photo must have atleast only one of the selected "
15502
- "tags"
 
 
 
 
 
 
15503
  msgstr ""
15504
 
15505
- #: wppa-tinymce-scripts.php:272 wppa-tinymce-shortcodes.php:597
15506
- msgid "The size of the display:"
 
15507
  msgstr ""
15508
 
15509
- #: wppa-tinymce-scripts.php:277 wppa-tinymce-shortcodes.php:602
15510
- msgid ""
15511
- "Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
15512
- "span>."
15513
  msgstr ""
15514
 
15515
- #: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:603
15516
  msgid ""
15517
- "A value less than <span style=\"color:blue\" >100</span> will automaticly be "
15518
- "interpreted as a <span style=\"color:blue\" >percentage</span> of the "
15519
- "available space."
15520
- msgstr ""
15521
-
15522
- #: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:604
15523
- msgid "Leave this blank for default size"
15524
  msgstr ""
15525
 
15526
- #: wppa-tinymce-scripts.php:284 wppa-tinymce-shortcodes.php:610
15527
- #: wppa-widget-admin.php:86
15528
- msgid "Horizontal alignment:"
15529
  msgstr ""
15530
 
15531
- #: wppa-tinymce-scripts.php:293 wppa-tinymce-shortcodes.php:619
15532
- msgid "Specify the alignment to be used or --- none ---"
15533
  msgstr ""
15534
 
15535
- #: wppa-tinymce-scripts.php:299 wppa-tinymce-shortcodes.php:629
15536
- msgid "Insert Gallery"
15537
  msgstr ""
15538
 
15539
- #: wppa-tinymce-shortcodes.php:127
15540
- msgid "Type of WPPA display:"
15541
  msgstr ""
15542
 
15543
- #: wppa-tinymce-shortcodes.php:130
15544
- msgid "Please select a display type"
15545
  msgstr ""
15546
 
15547
- #: wppa-tinymce-shortcodes.php:131
15548
- msgid "A gallery with covers and/or thumbnails"
15549
  msgstr ""
15550
 
15551
- #: wppa-tinymce-shortcodes.php:132
15552
- msgid "A slideshow"
15553
  msgstr ""
15554
 
15555
- #: wppa-tinymce-shortcodes.php:133
15556
- msgid "A single image"
15557
  msgstr ""
15558
 
15559
- #: wppa-tinymce-shortcodes.php:134
15560
- msgid "A search/selection box"
15561
  msgstr ""
15562
 
15563
- #: wppa-tinymce-shortcodes.php:135
15564
- msgid "An other box type"
15565
  msgstr ""
15566
 
15567
- #: wppa-tinymce-shortcodes.php:142
15568
- msgid "Type of gallery display:"
 
15569
  msgstr ""
15570
 
15571
- #: wppa-tinymce-shortcodes.php:145
15572
- msgid "Please select a gallery type"
 
15573
  msgstr ""
15574
 
15575
- #: wppa-tinymce-shortcodes.php:146
15576
- msgid "The cover(s) of specific album(s)"
15577
  msgstr ""
15578
 
15579
- #: wppa-tinymce-shortcodes.php:147
15580
- msgid "The content of specific album(s)"
 
15581
  msgstr ""
15582
 
15583
- #: wppa-tinymce-shortcodes.php:148
15584
- msgid "The covers of the subalbums of specific album(s)"
15585
  msgstr ""
15586
 
15587
- #: wppa-tinymce-shortcodes.php:149
15588
- msgid "The thumbnails of specific album(s)"
15589
  msgstr ""
15590
 
15591
- #: wppa-tinymce-shortcodes.php:156
15592
- msgid "Type of slideshow:"
15593
  msgstr ""
15594
 
15595
- #: wppa-tinymce-shortcodes.php:159
15596
- msgid "Please select a slideshow type"
15597
  msgstr ""
15598
 
15599
- #: wppa-tinymce-shortcodes.php:160
15600
- msgid "A fully featured slideshow"
15601
  msgstr ""
15602
 
15603
- #: wppa-tinymce-shortcodes.php:163
15604
- msgid "A filmstrip only"
15605
  msgstr ""
15606
 
15607
- #: wppa-tinymce-shortcodes.php:170
15608
- msgid "Type of single image:"
15609
  msgstr ""
15610
 
15611
- #: wppa-tinymce-shortcodes.php:173
15612
- msgid "Please select a single image type"
15613
  msgstr ""
15614
 
15615
- #: wppa-tinymce-shortcodes.php:174
15616
- msgid "A plain single photo"
15617
  msgstr ""
15618
 
15619
- #: wppa-tinymce-shortcodes.php:183
15620
- msgid "Type of search:"
15621
  msgstr ""
15622
 
15623
- #: wppa-tinymce-shortcodes.php:186
15624
- msgid "Please select a search type"
15625
  msgstr ""
15626
 
15627
- #: wppa-tinymce-shortcodes.php:187
15628
- msgid "A search box"
15629
  msgstr ""
15630
 
15631
- #: wppa-tinymce-shortcodes.php:188
15632
- msgid "A supersearch box"
15633
  msgstr ""
15634
 
15635
- #: wppa-tinymce-shortcodes.php:189
15636
- msgid "A tagcloud box"
15637
  msgstr ""
15638
 
15639
- #: wppa-tinymce-shortcodes.php:190
15640
- msgid "A multitag box"
15641
  msgstr ""
15642
 
15643
- #: wppa-tinymce-shortcodes.php:191
15644
- msgid "A superview box"
 
 
 
15645
  msgstr ""
15646
 
15647
- #: wppa-tinymce-shortcodes.php:192
15648
- msgid "A calendar box"
15649
- msgstr ""
15650
 
15651
- #: wppa-tinymce-shortcodes.php:199
15652
- msgid "Type miscellaneous:"
15653
  msgstr ""
15654
 
15655
- #: wppa-tinymce-shortcodes.php:202
15656
- msgid "Please select a miscellaneous display"
15657
  msgstr ""
15658
 
15659
- #: wppa-tinymce-shortcodes.php:204
15660
- msgid "An upload box"
15661
  msgstr ""
15662
 
15663
- #: wppa-tinymce-shortcodes.php:205
15664
- msgid "A landing page shortcode"
 
 
 
 
15665
  msgstr ""
15666
 
15667
- #: wppa-tinymce-shortcodes.php:206
15668
- msgid "A 3D stereo settings box"
15669
  msgstr ""
15670
 
15671
- #: wppa-tinymce-shortcodes.php:207
15672
- msgid "An admins choice box"
15673
  msgstr ""
15674
 
15675
- #: wppa-tinymce-shortcodes.php:214
15676
- msgid "Users:"
 
 
15677
  msgstr ""
15678
 
15679
- #: wppa-tinymce-shortcodes.php:217
15680
- msgid "All"
15681
  msgstr ""
15682
 
15683
- #: wppa-tinymce-shortcodes.php:234
15684
- msgid "Kind of selection:"
15685
  msgstr ""
15686
 
15687
- #: wppa-tinymce-shortcodes.php:237
15688
- msgid "Please select a type of selection to be used"
15689
  msgstr ""
15690
 
15691
- #: wppa-tinymce-shortcodes.php:238
15692
- msgid "One or more wppa+ albums"
15693
  msgstr ""
15694
 
15695
- #: wppa-tinymce-shortcodes.php:239
15696
- msgid "A special selection"
15697
  msgstr ""
15698
 
15699
- #: wppa-tinymce-shortcodes.php:246 wppa-tinymce-shortcodes.php:266
15700
- msgid "The selection to be used:"
15701
  msgstr ""
15702
 
15703
- #: wppa-tinymce-shortcodes.php:249 wppa-tinymce-shortcodes.php:269
15704
- msgid "Please select a virtual album"
15705
  msgstr ""
15706
 
15707
- #: wppa-tinymce-shortcodes.php:250 wppa-tinymce-shortcodes.php:270
15708
- msgid "The most recently modified album"
15709
  msgstr ""
15710
 
15711
- #: wppa-tinymce-shortcodes.php:251
15712
- msgid "The top rated photos"
15713
  msgstr ""
15714
 
15715
- #: wppa-tinymce-shortcodes.php:252
15716
- msgid "The most recently uploaded photos"
15717
  msgstr ""
15718
 
15719
- #: wppa-tinymce-shortcodes.php:253
15720
- msgid "A random selection of featured photos"
15721
  msgstr ""
15722
 
15723
- #: wppa-tinymce-shortcodes.php:254
15724
- msgid "The most recently commented photos"
15725
  msgstr ""
15726
 
15727
- #: wppa-tinymce-shortcodes.php:255
15728
- msgid "Photos tagged with certain tags"
15729
  msgstr ""
15730
 
15731
- #: wppa-tinymce-shortcodes.php:256
15732
- msgid "Albums tagged with a certain category"
15733
  msgstr ""
15734
 
15735
- #: wppa-tinymce-shortcodes.php:257
15736
- msgid "Photos in albums owned by a certain user"
15737
- msgstr ""
15738
 
15739
- #: wppa-tinymce-shortcodes.php:258
15740
- msgid "Photos uploaded by a certain user"
 
15741
  msgstr ""
 
 
15742
 
15743
- #: wppa-tinymce-shortcodes.php:259
15744
- msgid "All photos in the system"
15745
- msgstr ""
15746
 
15747
- #: wppa-tinymce-shortcodes.php:271
15748
- msgid "Albums owned by a certain user"
15749
- msgstr ""
 
15750
 
15751
- #: wppa-tinymce-shortcodes.php:272
15752
- msgid "Albums tagged with certain categories"
15753
- msgstr ""
 
15754
 
15755
- #: wppa-tinymce-shortcodes.php:273
15756
- msgid "All albums in the system"
15757
- msgstr ""
15758
 
15759
- #: wppa-tinymce-shortcodes.php:280 wppa-tinymce-shortcodes.php:303
15760
- msgid "The Album(s) to be used:"
15761
  msgstr ""
15762
 
15763
- #: wppa-tinymce-shortcodes.php:286
15764
- msgid "Please select one or more albums"
15765
- msgstr ""
15766
 
15767
- #: wppa-tinymce-shortcodes.php:309 wppa-upldr-widget.php:210 wppa-utils.php:450
15768
- msgid "All albums"
15769
- msgstr ""
15770
 
15771
- #: wppa-tinymce-shortcodes.php:326
15772
- msgid "The album owner:"
15773
- msgstr ""
15774
 
15775
- #: wppa-tinymce-shortcodes.php:329
15776
- msgid "Please select a user"
15777
- msgstr ""
15778
 
15779
- #: wppa-tinymce-shortcodes.php:330
15780
- msgid "The logged in visitor"
15781
- msgstr ""
15782
 
15783
- #: wppa-tinymce-shortcodes.php:336
15784
- msgid "Too many users, edit manually"
15785
  msgstr ""
 
 
15786
 
15787
- #: wppa-tinymce-shortcodes.php:351
15788
- msgid "No parent specification"
15789
- msgstr ""
15790
 
15791
- #: wppa-tinymce-shortcodes.php:354 wppa-tinymce-shortcodes.php:377
15792
- #: wppa-tinymce-shortcodes.php:565
15793
- msgid "The generic parent"
15794
- msgstr ""
15795
 
15796
- #: wppa-tinymce-shortcodes.php:394
15797
- msgid "Max Albums:"
15798
- msgstr ""
15799
 
15800
- #: wppa-tinymce-shortcodes.php:402
15801
- msgid "Max Photos:"
15802
- msgstr ""
15803
 
15804
- #: wppa-tinymce-shortcodes.php:410
15805
- msgid "The album cat(s):"
15806
- msgstr ""
15807
 
15808
- #: wppa-tinymce-shortcodes.php:413
15809
- msgid "--- please select category ---"
15810
- msgstr ""
 
15811
 
15812
- #: wppa-tinymce-shortcodes.php:431 wppa-tinymce-shortcodes.php:445
15813
- msgid "The photo of the day"
15814
- msgstr ""
15815
 
15816
- #: wppa-tinymce-shortcodes.php:444
15817
- msgid "The most recently uploaded photo"
15818
- msgstr ""
15819
 
15820
- #: wppa-tinymce-shortcodes.php:462
15821
- msgid "Preview image:"
15822
- msgstr ""
15823
 
15824
- #: wppa-tinymce-shortcodes.php:469
15825
- msgid "The photo tag(s):"
15826
- msgstr ""
15827
 
15828
- #: wppa-tinymce-shortcodes.php:483
15829
- msgid "Or / And:"
15830
- msgstr ""
 
 
 
15831
 
15832
- #: wppa-tinymce-shortcodes.php:485
15833
- msgid "Meet any"
15834
  msgstr ""
15835
 
15836
- #: wppa-tinymce-shortcodes.php:486
15837
- msgid "Meet all"
15838
- msgstr ""
15839
 
15840
- #: wppa-tinymce-shortcodes.php:492 wppa-tinymce-shortcodes.php:540
15841
- msgid "Additional features:"
15842
  msgstr ""
15843
 
15844
- #: wppa-tinymce-shortcodes.php:494
15845
- msgid "Enable Subsearch"
15846
  msgstr ""
15847
 
15848
- #: wppa-tinymce-shortcodes.php:495
15849
- msgid "Enable Rootsearch"
15850
  msgstr ""
15851
 
15852
- #: wppa-tinymce-shortcodes.php:501
15853
- msgid "Search root:"
15854
  msgstr ""
15855
 
15856
- #: wppa-tinymce-shortcodes.php:520
15857
- msgid "Landing page:"
15858
  msgstr ""
15859
 
15860
- #: wppa-tinymce-shortcodes.php:542
15861
- msgid "Enable all tags"
15862
  msgstr ""
15863
 
15864
- #: wppa-tinymce-shortcodes.php:545
15865
- msgid "Please select the tags to show"
15866
  msgstr ""
15867
 
15868
- #: wppa-tinymce-shortcodes.php:551
15869
- msgid "There are no tags"
15870
  msgstr ""
15871
 
15872
- #: wppa-tinymce-shortcodes.php:582
15873
- msgid "Calendar type:"
15874
  msgstr ""
15875
 
15876
- #: wppa-tinymce-shortcodes.php:585
15877
- msgid "By EXIF date"
15878
  msgstr ""
15879
 
15880
- #: wppa-tinymce-shortcodes.php:586
15881
- msgid "By date of upload"
15882
  msgstr ""
15883
 
15884
- #: wppa-tinymce-shortcodes.php:587
15885
- msgid "By date last modified"
15886
  msgstr ""
15887
 
15888
- #: wppa-tinymce-shortcodes.php:590
15889
- msgid "Last date first"
15890
  msgstr ""
15891
 
15892
- #: wppa-tinymce-shortcodes.php:591
15893
- msgid "Initially display all"
15894
  msgstr ""
15895
 
15896
- #: wppa-tinymce-shortcodes.php:627
15897
- msgid ""
15898
- "This is a preview of the shortcode that is being generated. You may edit the "
15899
- "comment"
15900
  msgstr ""
15901
 
15902
- #: wppa-tinymce-shortcodes.php:630
15903
- msgid "insert Gallery"
15904
  msgstr ""
15905
 
15906
- #: wppa-tinymce-shortcodes.php:630
15907
- msgid "Please complete the shortcode specs"
15908
  msgstr ""
15909
 
15910
- #: wppa-topten-widget.php:12
15911
- msgid "WPPA+ Top Ten Rated Photos"
15912
  msgstr ""
15913
 
15914
- #: wppa-topten-widget.php:49
15915
- msgid "Top Ten Photo album"
15916
  msgstr ""
15917
 
15918
- #: wppa-topten-widget.php:346
15919
- msgid "Number of views"
 
15920
  msgstr ""
15921
 
15922
- #: wppa-topten-widget.php:350
15923
- msgid "Include sub albums:"
15924
  msgstr ""
15925
 
15926
- #: wppa-topten-widget.php:357
15927
- msgid "Only with medals:"
15928
  msgstr ""
15929
 
15930
- #: wppa-topten-widget.php:365
15931
- msgid "Show owner:"
15932
- msgstr ""
15933
 
15934
- #: wppa-topten-widget.php:370
15935
- msgid "Show album:"
15936
- msgstr ""
 
15937
 
15938
- #: wppa-topten-widget.php:385
15939
- msgid "View count:"
15940
  msgstr ""
15941
 
15942
- #: wppa-upldr-widget.php:14
15943
- msgid "WPPA+ Uploader Photos"
15944
  msgstr ""
15945
 
15946
- #: wppa-upldr-widget.php:15
15947
- msgid "Uploader Photos"
15948
  msgstr ""
15949
 
15950
- #: wppa-upldr-widget.php:42
15951
- msgid "User uploaded photos"
15952
  msgstr ""
15953
 
15954
- #: wppa-upldr-widget.php:168
15955
- msgid "User Photos"
15956
  msgstr ""
15957
 
15958
- #: wppa-upldr-widget.php:183
15959
- msgid "Number of photos"
15960
  msgstr ""
15961
 
15962
- #: wppa-upldr-widget.php:184
15963
- msgid "Most recent photo"
15964
  msgstr ""
15965
 
15966
- #: wppa-upldr-widget.php:188
15967
- msgid "Ignore:"
15968
  msgstr ""
15969
 
15970
- #: wppa-upldr-widget.php:190
15971
- msgid "Enter loginnames seperated by commas"
15972
  msgstr ""
15973
 
15974
- #: wppa-upldr-widget.php:193
15975
- msgid "Look only in albums (including sub-albums):"
15976
  msgstr ""
15977
 
15978
- #: wppa-upload-widget.php:15
15979
- msgid "WPPA+ Upload photos widget"
15980
  msgstr ""
15981
 
15982
- #: wppa-upload-widget.php:16
15983
- msgid "WPPA+ Upload"
15984
  msgstr ""
15985
 
15986
- #: wppa-upload.php:37 wppa-upload.php:52
15987
- msgid "Connecting to edit album..."
15988
  msgstr ""
15989
 
15990
- #: wppa-upload.php:41 wppa-upload.php:56
15991
- msgid "Connecting to edit photos..."
15992
  msgstr ""
15993
 
15994
- #: wppa-upload.php:66
15995
- msgid "Connecting to your depot..."
15996
  msgstr ""
15997
 
15998
- #: wppa-upload.php:111
15999
- msgid "Upload a single photo"
16000
  msgstr ""
16001
 
16002
- #: wppa-upload.php:141
16003
- #, php-format
16004
- msgid ""
16005
- "<b>Notice:</b> your server allows you to upload <b>%s</b> files of maximum "
16006
- "total <b>%s</b> bytes and allows <b>%s</b> seconds to complete."
16007
  msgstr ""
16008
 
16009
- #: wppa-upload.php:142
16010
- msgid ""
16011
- "If your request exceeds these limitations, it will fail, probably without an "
16012
- "errormessage."
16013
  msgstr ""
16014
 
16015
- #: wppa-upload.php:143
16016
- msgid ""
16017
- "Additionally your hosting provider may have set other limitations on "
16018
- "uploading files."
16019
  msgstr ""
16020
 
16021
- #: wppa-upload.php:148
16022
- msgid "Box A:"
16023
  msgstr ""
16024
 
16025
- #: wppa-upload.php:148
16026
- msgid "Multiple Photos in one selection"
16027
  msgstr ""
16028
 
16029
- #: wppa-upload.php:149
16030
- #, php-format
16031
- msgid "You can select up to %s photos in one selection and upload them."
16032
  msgstr ""
16033
 
16034
- #: wppa-upload.php:150
16035
- msgid "You need a modern browser that supports HTML-5 to select multiple files"
16036
  msgstr ""
16037
 
16038
- #: wppa-upload.php:155 wppa-upload.php:164 wppa-upload.php:247
16039
- msgid "Selected Files:"
16040
  msgstr ""
16041
 
16042
- #: wppa-upload.php:166
16043
- msgid "Size"
16044
  msgstr ""
16045
 
16046
- #: wppa-upload.php:166
16047
- msgid "Type"
16048
  msgstr ""
16049
 
16050
- #: wppa-upload.php:187
16051
- msgid "Too many!"
 
 
16052
  msgstr ""
16053
 
16054
- #: wppa-upload.php:191
16055
- msgid "Too big!"
16056
  msgstr ""
16057
 
16058
- #: wppa-upload.php:195
16059
- msgid "Try again!"
 
 
 
16060
  msgstr ""
16061
 
16062
- #: wppa-upload.php:197
16063
- msgid "Total"
16064
  msgstr ""
16065
 
16066
- #: wppa-upload.php:222
16067
- msgid "Upload Multiple Photos"
16068
  msgstr ""
16069
 
16070
- #: wppa-upload.php:229 wppa-upload.php:276
16071
- msgid "After upload: Go to the <b>Edit Album</b> page."
16072
  msgstr ""
16073
 
16074
- #: wppa-upload.php:232 wppa-upload.php:279
16075
- msgid "After upload: Go to the <b>Edit Photos</b> page."
16076
  msgstr ""
16077
 
16078
- #: wppa-upload.php:241
16079
- msgid "Box B:"
16080
  msgstr ""
16081
 
16082
- #: wppa-upload.php:241
16083
- msgid "Single Photos in multiple selections"
16084
  msgstr ""
16085
 
16086
- #: wppa-upload.php:242
16087
- #, php-format
16088
- msgid "You can select up to %s photos one by one and upload them at once."
16089
  msgstr ""
16090
 
16091
- #: wppa-upload.php:269
16092
- msgid "Upload Single Photos"
16093
  msgstr ""
16094
 
16095
- #: wppa-upload.php:296
16096
- msgid "Box C:"
16097
  msgstr ""
16098
 
16099
- #: wppa-upload.php:296
16100
- msgid "Zipped Photos in one selection"
16101
  msgstr ""
16102
 
16103
- #: wppa-upload.php:297
16104
- #, php-format
16105
  msgid ""
16106
- "You can upload one zipfile. It will be placed in your personal wppa-depot: "
16107
- "<b>.../%s</b><br/>Once uploaded, use <b>Import Photos</b> to unzip the file "
16108
- "and place the photos in any album."
16109
- msgstr ""
16110
-
16111
- #: wppa-upload.php:301
16112
- msgid "Upload Zipped Photos"
16113
  msgstr ""
16114
 
16115
- #: wppa-upload.php:306
16116
- msgid "After upload: Go to the <b>Import Photos</b> page."
16117
  msgstr ""
16118
 
16119
- #: wppa-upload.php:312
16120
  msgid ""
16121
- "<small>Ask your administrator to upgrade php to version 5.2.7 or later. This "
16122
- "will enable you to upload zipped photos.</small>"
16123
  msgstr ""
16124
 
16125
- #: wppa-upload.php:320 wppa-upload.php:1204
16126
- msgid "No albums exist. You must"
 
 
 
16127
  msgstr ""
16128
 
16129
- #: wppa-upload.php:320 wppa-upload.php:1204
16130
- msgid "create one"
16131
  msgstr ""
16132
 
16133
- #: wppa-upload.php:320 wppa-upload.php:1204
16134
- msgid "beofre you can upload your photos."
16135
  msgstr ""
16136
 
16137
- #: wppa-upload.php:438
16138
- msgid "Done!"
16139
  msgstr ""
16140
 
16141
- #: wppa-upload.php:444
16142
- msgid "Failed!"
16143
  msgstr ""
16144
 
16145
- #: wppa-upload.php:528
16146
- msgid "Select Local or Remote"
16147
  msgstr ""
16148
 
16149
- #: wppa-upload.php:532
16150
- msgid "Local"
16151
  msgstr ""
16152
 
16153
- #: wppa-upload.php:533
16154
- msgid "Remote"
16155
  msgstr ""
16156
 
16157
- #: wppa-upload.php:536
16158
- msgid "Set Local/Remote"
16159
  msgstr ""
16160
 
16161
- #: wppa-upload.php:539
16162
- msgid ""
16163
- "The server does not allow you to import from remote locations. ( The php "
16164
- "directive allow_url_fopen is not set to 1 )"
16165
  msgstr ""
16166
 
16167
- #: wppa-upload.php:541
16168
- msgid ""
16169
- "The server does not allow you to import from remote locations. ( The curl "
16170
- "functions are not set up )"
16171
  msgstr ""
16172
 
16173
- #: wppa-upload.php:546
16174
- msgid "Import photos from:"
16175
  msgstr ""
16176
 
16177
- #: wppa-upload.php:551
16178
- msgid "Set source directory"
16179
  msgstr ""
16180
 
16181
- #: wppa-upload.php:554
16182
- msgid "Max:"
16183
  msgstr ""
16184
 
16185
- #: wppa-upload.php:556
16186
- msgid "Find remote photos"
16187
  msgstr ""
16188
 
16189
- #: wppa-upload.php:557
16190
- msgid "Working, please wait..."
16191
  msgstr ""
16192
 
16193
- #: wppa-upload.php:558
16194
- msgid ""
16195
- "<br />You can enter either a web page address like <i>http://mysite.com/"
16196
- "mypage/</i> or a full url to an image file like <i>http://mysite.com/wp-"
16197
- "content/uploads/wppa/4711.jpg</i>"
16198
  msgstr ""
16199
 
16200
- #: wppa-upload.php:578 wppa-upload.php:625 wppa-upload.php:671
16201
- #: wppa-upload.php:811 wppa-upload.php:868 wppa-upload.php:925
16202
- #: wppa-upload.php:970
16203
- msgid "There are"
16204
  msgstr ""
16205
 
16206
- #: wppa-upload.php:578
16207
- msgid "zipfiles in the depot."
16208
  msgstr ""
16209
 
16210
- #: wppa-upload.php:584 wppa-upload.php:631 wppa-upload.php:709
16211
- #: wppa-upload.php:828 wppa-upload.php:885 wppa-upload.php:931
16212
- #: wppa-upload.php:976
16213
- msgid "Check/uncheck all"
16214
  msgstr ""
16215
 
16216
- #: wppa-upload.php:588
16217
- msgid "Delete after successful extraction."
16218
  msgstr ""
16219
 
16220
- #: wppa-upload.php:625
16221
- msgid "albumdefinitions in the depot."
16222
  msgstr ""
16223
 
16224
- #: wppa-upload.php:635
16225
- msgid ""
16226
- "Remove from depot after successful import, or if the album already exists."
16227
  msgstr ""
16228
 
16229
- #: wppa-upload.php:674
16230
- msgid "photos in the ngg gallery."
16231
  msgstr ""
16232
 
16233
- #: wppa-upload.php:676
16234
- msgid "photos in the depot."
16235
  msgstr ""
16236
 
16237
- #: wppa-upload.php:678
16238
- msgid "possible photos found remote."
16239
  msgstr ""
16240
 
16241
- #: wppa-upload.php:679
16242
- msgid "Photos will be downsized during import."
16243
  msgstr ""
16244
 
16245
- #: wppa-upload.php:682
16246
- msgid "Default album for import:"
16247
  msgstr ""
16248
 
16249
- #: wppa-upload.php:691
16250
- msgid ""
16251
- "Photos that have (<em>name</em>)[<em>album</em>] will be imported by that "
16252
- "<em>name</em> in that <em>album</em>."
16253
  msgstr ""
16254
 
16255
- #: wppa-upload.php:713 wppa-upload.php:832 wppa-upload.php:889
16256
- #: wppa-upload.php:979
16257
- msgid "Remove from depot after successful import."
16258
  msgstr ""
16259
 
16260
- #: wppa-upload.php:716
16261
- msgid "Remove from depot after failed import."
16262
  msgstr ""
16263
 
16264
- #: wppa-upload.php:721
16265
- #, php-format
16266
- msgid "Import into album <i>%s</i>."
16267
  msgstr ""
16268
 
16269
- #: wppa-upload.php:722
16270
- msgid "The album will be created if it does not exist"
16271
  msgstr ""
16272
 
16273
- #: wppa-upload.php:725
16274
- msgid "Use backup if available"
16275
  msgstr ""
16276
 
16277
- #: wppa-upload.php:729
16278
- msgid "Update existing photos"
16279
  msgstr ""
16280
 
16281
- #: wppa-upload.php:735
16282
- msgid "Do not create duplicates"
16283
  msgstr ""
16284
 
16285
- #: wppa-upload.php:741
16286
- msgid "Zoom previews"
16287
  msgstr ""
16288
 
16289
- #: wppa-upload.php:811
16290
- msgid "videos in the depot."
16291
  msgstr ""
16292
 
16293
- #: wppa-upload.php:814 wppa-upload.php:871
16294
- msgid "Album to import to:"
16295
  msgstr ""
16296
 
16297
- #: wppa-upload.php:868
16298
- msgid "audios in the depot."
16299
  msgstr ""
16300
 
16301
- #: wppa-upload.php:925
16302
- msgid "albumdirectories in the depot."
16303
  msgstr ""
16304
 
16305
- #: wppa-upload.php:970
16306
- msgid "csv files in the depot."
16307
  msgstr ""
16308
 
16309
- #: wppa-upload.php:1149
16310
- msgid "Start Ajax Import"
16311
  msgstr ""
16312
 
16313
- #: wppa-upload.php:1150
16314
- msgid "Stop Ajax Import"
16315
  msgstr ""
16316
 
16317
- #: wppa-upload.php:1158
16318
- msgid "There are no importable files found in directory:"
16319
  msgstr ""
16320
 
16321
- #: wppa-upload.php:1161
16322
- msgid "There are no photos found or left to process at url:"
16323
  msgstr ""
16324
 
16325
- #: wppa-upload.php:1165
16326
- msgid "You can import the following file types:"
16327
  msgstr ""
16328
 
16329
- #: wppa-upload.php:1169
16330
- msgid "Compressed file types: .zip"
16331
  msgstr ""
16332
 
16333
- #: wppa-upload.php:1173
16334
- msgid "Photo file types:"
16335
  msgstr ""
16336
 
16337
- #: wppa-upload.php:1180
16338
- msgid "Video file types:"
16339
  msgstr ""
16340
 
16341
- #: wppa-upload.php:1187
16342
- msgid "Audio file types:"
16343
  msgstr ""
16344
 
16345
- #: wppa-upload.php:1193
16346
- msgid "WPPA+ file types: .amf .pmf"
16347
  msgstr ""
16348
 
16349
- #: wppa-upload.php:1195
16350
- msgid "Directories with optional subdirs containig photos"
16351
  msgstr ""
16352
 
16353
- #: wppa-upload.php:1197
16354
- msgid "Custom data files of type .csv"
16355
  msgstr ""
16356
 
16357
- #: wppa-upload.php:1199
16358
- msgid "Your depot directory is:"
16359
  msgstr ""
16360
 
16361
- #: wppa-upload.php:1207
16362
- msgid "Trying to continue..."
16363
  msgstr ""
16364
 
16365
- #: wppa-upload.php:1359
16366
- #, php-format
16367
- msgid "Time out. %s photos uploaded in album nr %s."
16368
  msgstr ""
16369
 
16370
- #: wppa-upload.php:1371 wppa-upload.php:1404 wppa-upload.php:1762
16371
- msgid "Error inserting photo"
16372
  msgstr ""
16373
 
16374
- #: wppa-upload.php:1380 wppa-upload.php:1411
16375
- msgid "Photos Uploaded in album nr"
16376
  msgstr ""
16377
 
16378
- #: wppa-upload.php:1452
16379
- msgid "Zipfile"
16380
  msgstr ""
16381
 
16382
- #: wppa-upload.php:1452
16383
- msgid "sucessfully uploaded."
16384
  msgstr ""
16385
 
16386
- #: wppa-upload.php:1453
16387
- msgid "during upload."
16388
  msgstr ""
16389
 
16390
- #: wppa-upload.php:1537
16391
- msgid "Unknown parent album:"
16392
  msgstr ""
16393
 
16394
- #: wppa-upload.php:1537
16395
- msgid "--- none --- used."
16396
  msgstr ""
16397
 
16398
- #: wppa-upload.php:1597
16399
- #, php-format
16400
- msgid "This album has been converted from ngg gallery %s"
16401
  msgstr ""
16402
 
16403
- #: wppa-upload.php:1615
16404
- msgid "Processing files, please wait..."
16405
  msgstr ""
16406
 
16407
- #: wppa-upload.php:1615
16408
- msgid ""
16409
- "If the line of dots stops growing or your browser reports Ready, your server "
16410
- "has given up. In that case: try again"
16411
  msgstr ""
16412
 
16413
- #: wppa-upload.php:1615
16414
- msgid "here."
16415
  msgstr ""
16416
 
16417
- #: wppa-upload.php:1742
16418
- #, php-format
16419
- msgid "Photo %s already exists in album %s. (1)"
16420
  msgstr ""
16421
 
16422
- #: wppa-upload.php:1743
16423
- msgid "Duplicate"
16424
  msgstr ""
16425
 
16426
- #: wppa-upload.php:1770
16427
- #, php-format
16428
- msgid "Error inserting photo %s, unknown or non existent album."
16429
  msgstr ""
16430
 
16431
- #: wppa-upload.php:1778
16432
- #, php-format
16433
- msgid "Time out. %s photos imported. Please restart this operation."
16434
  msgstr ""
16435
 
16436
- #: wppa-upload.php:1812 wppa-upload.php:1873
16437
- msgid "Unknown album"
16438
  msgstr ""
16439
 
16440
- #: wppa-upload.php:1863
16441
- #, php-format
16442
- msgid "Error inserting video %s, unknown or non existent album."
16443
  msgstr ""
16444
 
16445
- #: wppa-upload.php:1924
16446
- #, php-format
16447
- msgid "Error inserting audio %s, unknown or non existent album."
16448
  msgstr ""
16449
 
16450
- #: wppa-upload.php:1940
16451
- msgid "Custom datafields enabled"
16452
  msgstr ""
16453
 
16454
- #: wppa-upload.php:1971 wppa-upload.php:1972
16455
- msgid "Processing"
16456
  msgstr ""
16457
 
16458
- #: wppa-upload.php:1981
16459
- msgid "Can not open file. Can not continue. (1)"
16460
  msgstr ""
16461
 
16462
- #: wppa-upload.php:1986
16463
- msgid "Can not open file. Can not continue. (2)"
16464
  msgstr ""
16465
 
16466
- #: wppa-upload.php:1993
16467
- msgid "Can not read header. Can not continue."
16468
  msgstr ""
16469
 
16470
- #: wppa-upload.php:1998
16471
- msgid "Read header:"
16472
  msgstr ""
16473
 
16474
- #: wppa-upload.php:2003
16475
- msgid "Invalid header. Can not continue."
16476
  msgstr ""
16477
 
16478
- #: wppa-upload.php:2010
16479
- msgid "Invalid header. First item must be 'name', 'photoname' or 'filename'"
16480
  msgstr ""
16481
 
16482
- #: wppa-upload.php:2017
16483
- msgid "All available custom data fields are in use. There is no space for"
16484
  msgstr ""
16485
 
16486
- #: wppa-upload.php:2028
16487
- #, php-format
16488
- msgid "New caption %s added."
16489
  msgstr ""
16490
 
16491
- #: wppa-upload.php:2046
16492
- msgid "Read data:"
16493
  msgstr ""
16494
 
16495
- #: wppa-upload.php:2115
16496
- msgid "Done processing files."
16497
  msgstr ""
16498
 
16499
- #: wppa-upload.php:2118
16500
- msgid "No files to import."
16501
  msgstr ""
16502
 
16503
- #: wppa-upload.php:2122
16504
- msgid "Zipfiles extracted."
16505
  msgstr ""
16506
 
16507
- #: wppa-upload.php:2123
16508
- msgid "Albums created."
16509
  msgstr ""
16510
 
16511
- #: wppa-upload.php:2124
16512
- msgid "Directory to album imports."
16513
  msgstr ""
16514
 
16515
- #: wppa-upload.php:2125
16516
- #, php-format
16517
- msgid "With total %s photos."
16518
  msgstr ""
16519
 
16520
- #: wppa-upload.php:2128
16521
- msgid "Photos updated"
16522
  msgstr ""
16523
 
16524
- #: wppa-upload.php:2130
16525
- #, php-format
16526
- msgid "to %s locations"
16527
  msgstr ""
16528
 
16529
- #: wppa-upload.php:2134
16530
- msgid "single photos imported."
 
 
16531
  msgstr ""
16532
 
16533
- #: wppa-upload.php:2137
16534
- msgid "Videos imported."
 
 
16535
  msgstr ""
16536
 
16537
- #: wppa-upload.php:2140
16538
- msgid "Audios imported."
16539
  msgstr ""
16540
 
16541
- #: wppa-upload.php:2143
16542
- msgid "CSVs imported,"
16543
  msgstr ""
16544
 
16545
- #: wppa-upload.php:2145
16546
- msgid "photos skipped."
16547
  msgstr ""
16548
 
16549
- #: wppa-upload.php:2275
16550
- msgid "Error: unexpected fgets() fail in wppa_get_meta_data()."
16551
  msgstr ""
16552
 
16553
- #: wppa-upload.php:2296
16554
- msgid "Class ZipArchive does not exist! Check your php configuration"
16555
  msgstr ""
16556
 
16557
- #: wppa-upload.php:2326
16558
- #, php-format
16559
- msgid ""
16560
- "File %s is of an unsupported filetype and has been ignored during extraction."
16561
  msgstr ""
16562
 
16563
- #: wppa-upload.php:2332
16564
- #, php-format
16565
- msgid "Zipfile %s processed. %s files extracted, %s files skipped."
16566
  msgstr ""
16567
 
16568
- #: wppa-upload.php:2335
16569
- msgid "Failed to extract"
16570
  msgstr ""
16571
 
16572
- #: wppa-upload.php:2401
16573
- #, php-format
16574
- msgid "Page <a href=\"%s\" target=\"_blank\" >%s</a> created."
16575
  msgstr ""
16576
 
16577
- #: wppa-upload.php:2405
16578
- msgid "Could not create page."
16579
  msgstr ""
16580
 
16581
- #: wppa-upload.php:2518
16582
- msgid "--- My depot --- "
16583
  msgstr ""
16584
 
16585
- #: wppa-upload.php:2527
16586
- msgid "--- Ngg Galleries --- "
16587
  msgstr ""
16588
 
16589
- #: wppa-utils.php:299 wppa-utils.php:326
16590
- #, php-format
16591
- msgid "Rating: %s"
16592
  msgstr ""
16593
 
16594
- #: wppa-utils.php:935 wppa-utils.php:946 wppa-utils.php:957
16595
- msgid "Notification of inappropriate image"
16596
  msgstr ""
16597
 
16598
- #: wppa-utils.php:936 wppa-utils.php:947 wppa-utils.php:958
16599
- #, php-format
16600
- msgid "Photo %s has been marked as inappropriate by %s different visitors."
16601
  msgstr ""
16602
 
16603
- #: wppa-utils.php:948
16604
- msgid "The status has been changed to 'pending'."
16605
  msgstr ""
16606
 
16607
- #: wppa-utils.php:959
16608
- msgid "It has been deleted."
16609
  msgstr ""
16610
 
16611
- #: wppa-utils.php:1026
16612
- msgid "Your photo has a new approved comment"
16613
  msgstr ""
16614
 
16615
- #: wppa-utils.php:1029
16616
- msgid "From:"
16617
  msgstr ""
16618
 
16619
- #: wppa-utils.php:1037
16620
- msgid "Approved comment on photo"
16621
  msgstr ""
16622
 
16623
- #: wppa-utils.php:1084
16624
- #, php-format
16625
- msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
16626
  msgstr ""
16627
 
16628
- #: wppa-utils.php:1089
16629
- #, php-format
16630
- msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
16631
  msgstr ""
16632
 
16633
- #: wppa-utils.php:1097
16634
- #, php-format
16635
- msgid ""
16636
- "This message is automaticly generated at %s. It is useless to respond to it."
16637
  msgstr ""
16638
 
16639
- #: wppa-utils.php:1304
16640
- #, php-format
16641
- msgid "Time out after processing %s items."
16642
  msgstr ""
16643
 
16644
- #: wppa-utils.php:1307 wppa-utils.php:1311
16645
- #, php-format
16646
- msgid "Time out after processing %s items. Please restart this operation"
16647
  msgstr ""
16648
 
16649
- #: wppa-utils.php:2376
16650
- msgid "There are no ratings between"
16651
  msgstr ""
16652
 
16653
- #: wppa-video.php:188
 
16654
  msgid ""
16655
- "There is no filetype available for your browser, or your browser does not "
16656
- "support html5 video"
16657
  msgstr ""
16658
- "Der er ingen filtype til rådighed for din browser, eller din browser "
16659
- "understøtter ikke HTML5-video"
16660
 
16661
- #: wppa-watermark.php:527
16662
- msgid "--- text: name ---"
 
 
16663
  msgstr ""
16664
 
16665
- #: wppa-watermark.php:529
16666
- msgid "--- text: filename ---"
 
 
16667
  msgstr ""
16668
 
16669
- #: wppa-watermark.php:531
16670
- msgid "--- text: description ---"
16671
  msgstr ""
16672
 
16673
- #: wppa-watermark.php:533
16674
- msgid "--- text: pre-defined ---"
16675
  msgstr ""
16676
 
16677
- #: wppa-widget-admin.php:45
16678
- msgid "Widget Photo Width."
 
16679
  msgstr ""
16680
 
16681
- #: wppa-widget-admin.php:51
16682
- msgid "Changes Saved. Don't forget to activate the widget!"
16683
  msgstr ""
16684
 
16685
- #: wppa-widget-admin.php:61
16686
- msgid "Photo of the Day Widget Settings"
16687
  msgstr ""
16688
 
16689
- #: wppa-widget-admin.php:72
16690
- msgid "Widget Title:"
16691
  msgstr ""
16692
 
16693
- #: wppa-widget-admin.php:76
16694
- msgid ""
16695
- "Enter/modify the title for the widget. This is a default and can be "
16696
- "overriden at widget activation."
16697
  msgstr ""
16698
 
16699
- #: wppa-widget-admin.php:82
16700
- msgid "Widget Photo Width:"
16701
  msgstr ""
16702
 
16703
- #: wppa-widget-admin.php:95
16704
- msgid ""
16705
- "Enter the desired display width and alignment of the photo in the sidebar."
16706
  msgstr ""
16707
 
16708
- #: wppa-widget-admin.php:101
16709
- msgid "Use album(s):"
16710
  msgstr ""
16711
 
16712
- #: wppa-widget-admin.php:117
16713
- msgid "Select:"
16714
  msgstr ""
16715
 
16716
- #: wppa-widget-admin.php:119
16717
- msgid "Or Edit:"
16718
  msgstr ""
16719
 
16720
- #: wppa-widget-admin.php:120
16721
- msgid "Update thumbnails"
16722
  msgstr ""
16723
 
16724
- #: wppa-widget-admin.php:122
16725
- msgid ""
16726
- "Select or edit the album(s) you want to use the photos of for the widget."
16727
  msgstr ""
16728
 
16729
- #: wppa-widget-admin.php:124
16730
- msgid ""
16731
- "If you want a <b>- special -</b> selection or get rid of it, you may need to "
16732
- "use <b>- start over -</b> first."
16733
  msgstr ""
16734
 
16735
- #: wppa-widget-admin.php:131
16736
- msgid "Status filter:"
16737
  msgstr ""
16738
 
16739
- #: wppa-widget-admin.php:137
16740
- msgid "- none -"
 
16741
  msgstr ""
16742
 
16743
- #: wppa-widget-admin.php:143
16744
- msgid "Any medal"
16745
  msgstr ""
16746
 
16747
- #: wppa-widget-admin.php:149
16748
- msgid "Display method:"
16749
  msgstr ""
16750
 
16751
- #: wppa-widget-admin.php:155
16752
- msgid "Fixed photo"
16753
  msgstr ""
16754
 
16755
- #: wppa-widget-admin.php:157
16756
- msgid "Last upload"
 
 
 
 
16757
  msgstr ""
16758
 
16759
- #: wppa-widget-admin.php:158
16760
- msgid "Change every"
16761
  msgstr ""
16762
 
16763
- #: wppa-widget-admin.php:161
16764
- msgid "The page will now be reloaded"
16765
  msgstr ""
16766
 
16767
- #: wppa-widget-admin.php:174
16768
- msgid "pageview."
 
 
16769
  msgstr ""
16770
 
16771
- #: wppa-widget-admin.php:175
16772
- msgid "hour."
 
16773
  msgstr ""
16774
 
16775
- #: wppa-widget-admin.php:176
16776
- msgid "day."
16777
  msgstr ""
16778
 
16779
- #: wppa-widget-admin.php:177
16780
- msgid "week."
16781
  msgstr ""
16782
 
16783
- #: wppa-widget-admin.php:178
16784
- msgid "month."
16785
  msgstr ""
16786
 
16787
- #: wppa-widget-admin.php:179
16788
- msgid "day of week is order#"
16789
  msgstr ""
16790
 
16791
- #: wppa-widget-admin.php:180
16792
- msgid "day of month is order#"
 
16793
  msgstr ""
16794
 
16795
- #: wppa-widget-admin.php:181
16796
- msgid "day of year is order#"
16797
  msgstr ""
16798
 
16799
- #: wppa-widget-admin.php:183
16800
- msgid "Select how the widget should display."
 
16801
  msgstr ""
16802
 
16803
- #: wppa-widget-admin.php:202
16804
- #, php-format
16805
- msgid "Current day# = %s, offset ="
16806
  msgstr ""
16807
 
16808
- #: wppa-widget-admin.php:214
16809
- #, php-format
16810
- msgid "Todays photo order# = %s."
16811
  msgstr ""
16812
 
16813
- #: wppa-widget-admin.php:220
16814
- msgid "Not found."
16815
  msgstr ""
16816
 
16817
- #: wppa-widget-admin.php:235
16818
- msgid "Links are set on the <b>Photo Albums -> Settings</b> screen."
16819
  msgstr ""
16820
 
16821
- #: wppa-widget-admin.php:247
16822
- msgid "Url:"
16823
  msgstr ""
16824
 
16825
- #: wppa-widget-admin.php:249
16826
- msgid "Enter the title and the url. Do'nt forget the HTTP://"
 
16827
  msgstr ""
16828
 
16829
- #: wppa-widget-admin.php:262
16830
- msgid "Photo Name"
 
16831
  msgstr ""
16832
 
16833
- #: wppa-widget-admin.php:266
16834
- msgid "Select the content of the subtitle."
 
 
16835
  msgstr ""
16836
 
16837
- #: wppa-widget-admin.php:272
16838
- msgid "Counter:"
 
16839
  msgstr ""
16840
 
16841
- #: wppa-widget-admin.php:299
16842
  #, php-format
16843
- msgid "There are too many photos in the selection to show a preview ( %d )"
16844
  msgstr ""
16845
 
16846
- #: wppa-widget-functions.php:149
16847
- msgid "- select (another) album or a set -"
16848
  msgstr ""
16849
 
16850
- #: wppa-widget-functions.php:184
16851
- msgid "- all albums -"
 
 
16852
  msgstr ""
 
 
16853
 
16854
- #: wppa-widget-functions.php:186
16855
- msgid "- all -separate- albums -"
16856
  msgstr ""
16857
 
16858
- #: wppa-widget-functions.php:188
16859
- msgid "- all albums except -separate-"
16860
  msgstr ""
16861
 
16862
- #: wppa-widget-functions.php:190
16863
- msgid "- top rated photos -"
16864
  msgstr ""
16865
 
16866
- #: wppa-widget-functions.php:191
16867
- msgid "- start over -"
16868
  msgstr ""
16869
 
16870
  #. Plugin Name of the plugin/theme
@@ -16890,3 +17223,9 @@ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
16890
  #. Author URI of the plugin/theme
16891
  msgid "http://wppa.opajaap.nl/"
16892
  msgstr "http://wppa.opajaap.nl/"
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-08-27 08:13+0200\n"
5
+ "PO-Revision-Date: 2016-08-27 08:15+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"
25
  msgstr "Sider:"
26
 
27
  #: theme/photo-album-page-2010.php:31 theme/photo-album-search-page.php:53
28
+ #: wppa-album-admin-autosave.php:1152 wppa-album-admin-autosave.php:1190
29
+ #: wppa-album-admin-autosave.php:1289 wppa-album-admin-autosave.php:1461
30
+ #: wppa-album-admin-autosave.php:1556 wppa-album-admin-autosave.php:1630
31
+ #: wppa-album-admin-autosave.php:1741 wppa-album-admin-autosave.php:2261
32
  #: wppa-comment-admin.php:318 wppa-comment-admin.php:387
33
+ #: wppa-comment-admin.php:405 wppa-setup.php:1313 wppa-thumbnails.php:641
34
  msgid "Edit"
35
  msgstr "Rediger"
36
 
39
  msgstr "Advarsel. Ingen side defineret for søgeresultater!"
40
 
41
  #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:175
42
+ #: wppa-settings-autosave.php:381 wppa-settings-autosave.php:3367
43
  msgid "Search"
44
  msgstr "Søg"
45
 
61
 
62
  #: theme/search-2016.php:46
63
  msgid "Previous page"
64
+ msgstr "Forrige side"
65
 
66
+ #: theme/search-2016.php:47 wppa-admin-functions.php:673
67
  msgid "Next page"
68
+ msgstr "Næste side"
69
 
70
+ #: theme/search-2016.php:48 wppa-settings-autosave.php:379
71
+ #: wppa-settings-autosave.php:1581 wppa-settings-autosave.php:8742
72
  msgid "Page"
73
+ msgstr "Side"
74
 
75
  #: theme/wppa-theme.php:328 theme/wppa-theme.php:347
76
  msgid "No photos found matching your search criteria."
86
 
87
  #: wppa-admin-functions.php:27
88
  msgid "Settings successfully backed up"
89
+ msgstr "Indstillinger korrekt bakkes op"
90
 
91
  #: wppa-admin-functions.php:31
92
  msgid "Unable to backup settings"
100
  msgid "Settings file not found"
101
  msgstr ""
102
 
103
+ #: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2709
104
+ #: wppa-ajax.php:2716
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:2709
109
+ #: wppa-ajax.php:2716
110
  msgid "for"
111
  msgstr ""
112
 
113
+ #: wppa-admin-functions.php:208 wppa-ajax.php:2716
114
  msgid "and less than or equal to"
115
  msgstr ""
116
 
117
+ #: wppa-admin-functions.php:223 wppa-album-admin-autosave.php:324
118
  msgid "--- public ---"
119
  msgstr ""
120
 
123
  msgid "File %s is of an unsupported filetype and has been removed."
124
  msgstr ""
125
 
126
+ #: wppa-admin-functions.php:581 wppa-admin-functions.php:620
127
+ #: wppa-admin-functions.php:624 wppa-admin-functions.php:628
128
  msgid "Unexpected error:"
129
  msgstr ""
130
 
131
+ #: wppa-admin-functions.php:581
132
  msgid "Missing database table:"
133
  msgstr ""
134
 
135
+ #: wppa-admin-functions.php:620
136
  msgid "Missing directory:"
137
  msgstr ""
138
 
139
+ #: wppa-admin-functions.php:624
140
  msgid "Directory is not writable:"
141
  msgstr ""
142
 
143
+ #: wppa-admin-functions.php:628
144
  msgid "Directory is not readable:"
145
  msgstr ""
146
 
147
+ #: wppa-admin-functions.php:636
148
  msgid ""
149
  "Please de-activate and re-activate the plugin. If this problem persists, ask "
150
  "your administrator."
151
  msgstr ""
152
 
153
+ #: wppa-admin-functions.php:660
154
  msgid "Prev page"
155
  msgstr ""
156
 
157
+ #: wppa-admin-functions.php:783 wppa-admin-functions.php:786
158
  #, php-format
159
  msgid "Album %s is full"
160
  msgstr ""
161
 
162
+ #: wppa-admin-functions.php:804
163
  #, php-format
164
  msgid "Photo %s already exists in album number %s. Removed from depot."
165
  msgstr ""
166
 
167
+ #: wppa-admin-functions.php:807
168
  #, php-format
169
  msgid "Photo %s already exists in album number %s."
170
  msgstr ""
171
 
172
+ #: wppa-admin-functions.php:837
173
  #, php-format
174
  msgid "ERROR: Attempt to upload a photo that is too large to process (%s)."
175
  msgstr ""
176
 
177
+ #: wppa-admin-functions.php:838
178
  msgid "Too big"
179
  msgstr ""
180
 
181
+ #: wppa-admin-functions.php:842
182
  msgid ""
183
  "WARNING: You are uploading photos that are too small. Photos must be larger "
184
  "than the thumbnail size and larger than the coverphotosize."
185
  msgstr ""
186
 
187
+ #: wppa-admin-functions.php:843
188
  msgid "Too small"
189
  msgstr ""
190
 
191
+ #: wppa-admin-functions.php:848
192
  msgid "ERROR: Unable to retrieve image size of"
193
  msgstr ""
194
 
195
+ #: wppa-admin-functions.php:848
196
  msgid "Are you sure it is a photo?"
197
  msgstr ""
198
 
199
+ #: wppa-admin-functions.php:849
200
  msgid "No imagesize"
201
  msgstr ""
202
 
203
+ #: wppa-admin-functions.php:858
204
  msgid "Unsupported mime type encountered:"
205
  msgstr ""
206
 
207
+ #: wppa-admin-functions.php:875
208
  msgid "Album not known while trying to add a photo"
209
  msgstr ""
210
 
211
+ #: wppa-admin-functions.php:879
212
  #, php-format
213
  msgid ""
214
  "Album %s does not exist or is not accessable while trying to add a photo"
215
  msgstr ""
216
 
217
+ #: wppa-admin-functions.php:898
218
  msgid "Could not insert photo."
219
  msgstr ""
220
 
221
+ #: wppa-admin-functions.php:934
222
  msgid "ERROR: Unknown file or album."
223
  msgstr ""
224
 
225
+ #: wppa-admin.php:56
226
  msgid "Photo&thinsp;Albums"
227
  msgstr ""
228
 
229
+ #: wppa-admin.php:59 wppa-adminbar.php:40 wppa-settings-autosave.php:6041
230
  msgid "Album Admin"
231
  msgstr ""
232
 
233
+ #: wppa-admin.php:60 wppa-adminbar.php:47 wppa-settings-autosave.php:6042
234
+ #: wppa-upload-widget.php:79 wppa-upload.php:119
235
  msgid "Upload Photos"
236
  msgstr ""
237
 
238
+ #: wppa-admin.php:63 wppa-adminbar.php:53
239
  msgid "Edit Photos"
240
  msgstr ""
241
 
242
+ #: wppa-admin.php:65 wppa-adminbar.php:61 wppa-import.php:168
243
+ #: wppa-settings-autosave.php:6043
244
  msgid "Import Photos"
245
  msgstr ""
246
 
247
+ #: wppa-admin.php:66 wppa-adminbar.php:68
248
  msgid "Moderate Photos"
249
  msgstr ""
250
 
251
+ #: wppa-admin.php:67 wppa-adminbar.php:75 wppa-export.php:32
252
+ #: wppa-settings-autosave.php:6045
253
  msgid "Export Photos"
254
  msgstr ""
255
 
256
+ #: wppa-admin.php:68 wppa-adminbar.php:82 wppa-comment-admin.php:223
257
+ #: wppa-settings-autosave.php:6046
258
  msgid "Settings"
259
  msgstr ""
260
 
261
+ #: wppa-admin.php:69
262
  msgid "Photo of the day Widget"
263
  msgstr ""
264
 
265
+ #: wppa-admin.php:69 wppa-adminbar.php:89 wppa-potd-widget.php:60
266
+ #: wppa-settings-autosave.php:6047 wppa-setup.php:1588
267
  msgid "Photo of the day"
268
  msgstr ""
269
 
270
+ #: wppa-admin.php:70
271
  msgid "Manage comments"
272
  msgstr ""
273
 
274
+ #: wppa-admin.php:70 wppa-adminbar.php:96 wppa-settings-autosave.php:371
275
+ #: wppa-settings-autosave.php:3196 wppa-settings-autosave.php:8541
276
+ #: wppa-settings-autosave.php:8586
277
  msgid "Comments"
278
  msgstr ""
279
 
280
+ #: wppa-admin.php:71
281
  msgid "Help &amp; Info"
282
  msgstr ""
283
 
284
+ #: wppa-admin.php:71 wppa-adminbar.php:103
285
  msgid "Documentation"
286
  msgstr ""
287
 
288
+ #: wppa-admin.php:111
289
  msgid "Uploading is temporary diabled for you"
290
  msgstr ""
291
 
292
+ #: wppa-admin.php:118
293
  msgid "Editing is temporary diabled for you"
294
  msgstr ""
295
 
296
+ #: wppa-admin.php:125
297
  msgid "Importing is temporary diabled for you"
298
  msgstr ""
299
 
300
+ #: wppa-admin.php:128 wppa-import.php:1226
301
  msgid "Import"
302
  msgstr ""
303
 
304
+ #: wppa-admin.php:128 wppa-settings-autosave.php:9719
305
  msgid "Update"
306
  msgstr ""
307
 
328
  msgstr ""
329
 
330
  #: wppa-admins-choice-widget.php:78 wppa-album-navigator-widget.php:95
331
+ #: wppa-album-widget.php:324 wppa-bestof-widget.php:131
332
  #: wppa-comment-widget.php:119 wppa-featen-widget.php:176 wppa-gp-widget.php:88
333
  #: wppa-lasten-widget.php:200 wppa-multitag-widget.php:72
334
+ #: wppa-potd-widget.php:211 wppa-qr-widget.php:94 wppa-search-widget.php:94
335
  #: wppa-slideshow-widget.php:198 wppa-stereo-widget.php:68
336
  #: wppa-super-view-widget.php:73 wppa-tagcloud-widget.php:68
337
  #: wppa-thumbnail-widget.php:184 wppa-topten-widget.php:323
338
  #: wppa-upldr-widget.php:176 wppa-upload-widget.php:83
 
339
  msgid "Title:"
340
  msgstr ""
341
 
351
  msgstr ""
352
 
353
  #: wppa-ajax.php:250 wppa-ajax.php:316 wppa-ajax.php:351 wppa-ajax.php:629
354
+ #: wppa-ajax.php:927 wppa-ajax.php:2666
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:1231 wppa-functions.php:2339
363
  msgid "Photo comment approved"
364
  msgstr ""
365
 
389
  msgid "Could not remove comment"
390
  msgstr ""
391
 
392
+ #: wppa-ajax.php:364 wppa-ajax.php:795
393
  msgid "Unexpected error"
394
  msgstr ""
395
 
419
  msgid "Unable to create zipsdir"
420
  msgstr ""
421
 
422
+ #: wppa-ajax.php:503 wppa-functions.php:2137 wppa-thumbnails.php:616
423
  msgid "Selected"
424
  msgstr ""
425
 
469
  msgid "Photo has been removed."
470
  msgstr ""
471
 
472
+ #: wppa-ajax.php:688 wppa-slideshow.php:743
473
  msgid "Sorry, you can not rate your own photos"
474
  msgstr ""
475
 
476
+ #: wppa-ajax.php:700
477
  msgid "Please enter a comment."
478
  msgstr ""
479
 
480
+ #: wppa-ajax.php:727
481
+ msgid "You can not change your vote"
482
+ msgstr ""
483
+
484
+ #: wppa-ajax.php:733
485
+ msgid "You can not change a dislike"
486
+ msgstr ""
487
+
488
+ #: wppa-ajax.php:739
489
+ msgid "You can not change your vote into a dislike"
490
  msgstr ""
491
 
492
+ #: wppa-ajax.php:755 wppa-ajax.php:776
493
  msgid "Photo rated"
494
  msgstr ""
495
 
496
+ #: wppa-ajax.php:879
497
  msgid ""
498
  "Please explain your vote in a comment.\n"
499
  "Your vote will be discarded if you don't.\n"
503
  "your vote became effective."
504
  msgstr ""
505
 
506
+ #: wppa-ajax.php:923
507
  msgid "You do not have the rights to delete a photo"
508
  msgstr ""
509
 
510
+ #: wppa-ajax.php:933
511
  #, php-format
512
  msgid "Photo %s has been deleted"
513
  msgstr ""
514
 
515
+ #: wppa-ajax.php:949
516
  msgid "You do not have the rights to update album information"
517
  msgstr ""
518
 
519
+ #: wppa-ajax.php:961
520
  msgid "<b>Ratings cleared</b>"
521
  msgstr ""
522
 
523
+ #: wppa-ajax.php:961 wppa-ajax.php:967 wppa-photo-admin-autosave.php:318
524
  msgid "No ratings for this photo."
525
  msgstr ""
526
 
527
+ #: wppa-ajax.php:964
528
  msgid "An error occurred while clearing ratings"
529
  msgstr ""
530
 
531
+ #: wppa-ajax.php:967 wppa-ajax.php:988 wppa-ajax.php:1010
532
  msgid "<b>No photos in this album</b>"
533
  msgstr ""
534
 
535
+ #: wppa-ajax.php:982
536
  msgid "<b>Tags set to defaults</b> (reload)"
537
  msgstr ""
538
 
539
+ #: wppa-ajax.php:985
540
  msgid "An error occurred while setting tags"
541
  msgstr ""
542
 
543
+ #: wppa-ajax.php:1004
544
  msgid "<b>Tags added width defaults</b> (reload)"
545
  msgstr ""
546
 
547
+ #: wppa-ajax.php:1007
548
  msgid "An error occurred while adding tags"
549
  msgstr ""
550
 
551
+ #: wppa-ajax.php:1033
552
  msgid "No subalbums found to process"
553
  msgstr ""
554
 
555
+ #: wppa-ajax.php:1038
556
  msgid "No categories found to process"
557
  msgstr ""
558
 
559
+ #: wppa-ajax.php:1042
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:1049
567
  #, php-format
568
  msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
569
  msgstr ""
570
 
571
+ #: wppa-ajax.php:1051 wppa-ajax.php:1491 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
575
  #: wppa-boxes-html.php:529 wppa-photo-admin-autosave.php:1363
576
+ #: wppa-photo-admin-autosave.php:1482 wppa-photo-admin-autosave.php:1894
577
+ #: wppa-potd-admin.php:71 wppa-potd-admin.php:358
578
+ #: wppa-settings-autosave.php:515 wppa-settings-autosave.php:677
579
+ #: wppa-settings-autosave.php:699 wppa-settings-autosave.php:1447
580
+ #: wppa-settings-autosave.php:1468 wppa-settings-autosave.php:3093
581
+ #: wppa-settings-autosave.php:3114 wppa-settings-autosave.php:3451
582
+ #: wppa-settings-autosave.php:3475 wppa-settings-autosave.php:4017
583
+ #: wppa-settings-autosave.php:4131 wppa-settings-autosave.php:4780
584
+ #: wppa-settings-autosave.php:4801 wppa-settings-autosave.php:4977
585
+ #: wppa-settings-autosave.php:5001 wppa-settings-autosave.php:6007
586
+ #: wppa-settings-autosave.php:6428 wppa-settings-autosave.php:6678
587
+ #: wppa-settings-autosave.php:6700 wppa-settings-autosave.php:7430
588
+ #: wppa-settings-autosave.php:7454 wppa-settings-autosave.php:8535
589
+ #: wppa-settings-autosave.php:9176 wppa-settings-autosave.php:9332
590
+ #: wppa-thumbnail-widget.php:202 wppa-upload.php:259
591
  msgid "Name"
592
  msgstr "Navn"
593
 
594
+ #: wppa-ajax.php:1054 wppa-ajax.php:1494 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:1895
598
+ #: wppa-potd-admin.php:72 wppa-potd-admin.php:138 wppa-potd-admin.php:359
599
+ #: wppa-settings-autosave.php:516 wppa-settings-autosave.php:678
600
+ #: wppa-settings-autosave.php:700 wppa-settings-autosave.php:1448
601
+ #: wppa-settings-autosave.php:1469 wppa-settings-autosave.php:3094
602
+ #: wppa-settings-autosave.php:3115 wppa-settings-autosave.php:3452
603
+ #: wppa-settings-autosave.php:3476 wppa-settings-autosave.php:4781
604
+ #: wppa-settings-autosave.php:4802 wppa-settings-autosave.php:4978
605
+ #: wppa-settings-autosave.php:5002 wppa-settings-autosave.php:6008
606
+ #: wppa-settings-autosave.php:6429 wppa-settings-autosave.php:6679
607
+ #: wppa-settings-autosave.php:6701 wppa-settings-autosave.php:7431
608
+ #: wppa-settings-autosave.php:7455 wppa-settings-autosave.php:9177
609
+ #: wppa-settings-autosave.php:9199 wppa-settings-autosave.php:9239
610
+ #: wppa-settings-autosave.php:9261 wppa-settings-autosave.php:9307
611
+ #: wppa-settings-autosave.php:9333
612
  msgid "Description"
613
  msgstr ""
614
 
615
+ #: wppa-ajax.php:1058
616
  msgid "Unbalanced tags in album description!"
617
  msgstr ""
618
 
619
+ #: wppa-ajax.php:1065
620
  msgid "Album order #"
621
  msgstr ""
622
 
623
+ #: wppa-ajax.php:1068
624
  msgid "Cover photo"
625
  msgstr ""
626
 
627
+ #: wppa-ajax.php:1071
628
  msgid "Parent album"
629
  msgstr ""
630
 
631
+ #: wppa-ajax.php:1076 wppa-settings-autosave.php:4011
632
  msgid "Photo order"
633
  msgstr ""
634
 
635
+ #: wppa-ajax.php:1079
636
  msgid "Use Alt thumbsize"
637
  msgstr ""
638
 
639
+ #: wppa-ajax.php:1082
640
  msgid "Cover Type"
641
  msgstr ""
642
 
643
+ #: wppa-ajax.php:1085 wppa-settings-autosave.php:5003
644
+ #: wppa-settings-autosave.php:6009
645
  msgid "Link type"
646
  msgstr ""
647
 
648
+ #: wppa-ajax.php:1088 wppa-album-covers.php:1305
649
  msgid "Link to"
650
  msgstr "Link til"
651
 
652
+ #: wppa-ajax.php:1091 wppa-ajax.php:1515 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
656
+ #: wppa-potd-admin.php:139
657
  msgid "Owner"
658
  msgstr "Ejer"
659
 
660
+ #: wppa-ajax.php:1093
661
  #, php-format
662
  msgid "User %s does not exist"
663
  msgstr ""
664
 
665
+ #: wppa-ajax.php:1098 wppa-ajax.php:1104
666
  msgid "Upload limit count"
667
  msgstr ""
668
 
669
+ #: wppa-ajax.php:1111
670
  msgid "Upload limit time"
671
  msgstr ""
672
 
673
+ #: wppa-ajax.php:1115
674
  msgid "Default tags"
675
  msgstr ""
676
 
677
+ #: wppa-ajax.php:1120
678
  msgid "Categories"
679
  msgstr ""
680
 
681
+ #: wppa-ajax.php:1123
682
  msgid "Sub albums sort order"
683
  msgstr ""
684
 
685
+ #: wppa-ajax.php:1131 wppa-ajax.php:1585
686
  msgid "Schedule date/time"
687
  msgstr ""
688
 
689
+ #: wppa-ajax.php:1144 wppa-ajax.php:1196
690
  #, php-format
691
  msgid "<b>%s</b> of album %s updated"
692
  msgstr ""
693
 
694
+ #: wppa-ajax.php:1152
695
  msgid "All photos set to scheduled per date"
696
  msgstr ""
697
 
698
+ #: wppa-ajax.php:1179
699
  #, php-format
700
  msgid "<b>Custom field %s</b> updated"
701
  msgstr ""
702
 
703
+ #: wppa-ajax.php:1205
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:1206 wppa-ajax.php:1469 wppa-ajax.php:1575
709
  msgid "Press CTRL+F5 and try again."
710
  msgstr ""
711
 
712
+ #: wppa-ajax.php:1220
713
  msgid "You do not have the rights to update comment status"
714
  msgstr ""
715
 
716
+ #: wppa-ajax.php:1237
717
  #, php-format
718
  msgid "Status of comment #%s updated"
719
  msgstr ""
720
 
721
+ #: wppa-ajax.php:1240
722
  #, php-format
723
  msgid "Error updating status comment #%s"
724
  msgstr ""
725
 
726
+ #: wppa-ajax.php:1251
727
  msgid "You do not have the rights to change photos"
728
  msgstr ""
729
 
730
+ #: wppa-ajax.php:1260
731
  msgid "Watermark applied"
732
  msgstr ""
733
 
734
+ #: wppa-ajax.php:1264
735
  msgid "An error occured while trying to apply a watermark"
736
  msgstr ""
737
 
738
+ #: wppa-ajax.php:1283
739
  msgid "You do not have the rights to update photo information"
740
  msgstr ""
741
 
742
+ #: wppa-ajax.php:1289
743
  #, php-format
744
  msgid "%s updated to %s."
745
  msgstr ""
746
 
747
+ #: wppa-ajax.php:1339
748
  #, php-format
749
  msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
750
  msgstr ""
751
 
752
+ #: wppa-ajax.php:1343
753
  msgid "Exif date/time updated"
754
  msgstr ""
755
 
756
+ #: wppa-ajax.php:1349
757
  msgid "Enter a value > -90 and < 90"
758
  msgstr ""
759
 
760
+ #: wppa-ajax.php:1357
761
  msgid "Lattitude updated"
762
  msgstr ""
763
 
764
+ #: wppa-ajax.php:1359
765
  msgid "Could not update lattitude"
766
  msgstr ""
767
 
768
+ #: wppa-ajax.php:1365
769
  msgid "Enter a value > -180 and < 180"
770
  msgstr ""
771
 
772
+ #: wppa-ajax.php:1373
773
  msgid "Longitude updated"
774
  msgstr ""
775
 
776
+ #: wppa-ajax.php:1375
777
  msgid "Could not update longitude"
778
  msgstr ""
779
 
780
+ #: wppa-ajax.php:1383
781
  msgid "Photo files remade"
782
  msgstr ""
783
 
784
+ #: wppa-ajax.php:1386
785
  msgid "Could not remake files"
786
  msgstr ""
787
 
788
+ #: wppa-ajax.php:1392
789
  msgid "Thumbnail remade"
790
  msgstr ""
791
 
792
+ #: wppa-ajax.php:1395
793
  msgid "Could not remake thumbnail"
794
  msgstr ""
795
 
796
+ #: wppa-ajax.php:1405 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:617
799
  msgid "left"
800
  msgstr ""
801
 
802
+ #: wppa-ajax.php:1409 wppa-photo-admin-autosave.php:186
803
  msgid "180&deg;"
804
  msgstr ""
805
 
806
+ #: wppa-ajax.php:1413 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:619
809
  msgid "right"
810
  msgstr ""
811
 
812
+ #: wppa-ajax.php:1421
813
  #, php-format
814
  msgid "Photo %s rotated %s"
815
  msgstr ""
816
 
817
+ #: wppa-ajax.php:1424
818
  #, php-format
819
  msgid "An error occurred while trying to rotate photo %s"
820
  msgstr ""
821
 
822
+ #: wppa-ajax.php:1434 wppa-ajax.php:1457 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:1444
829
  #, php-format
830
  msgid "Photo %s has been moved to album %s (%s)"
831
  msgstr ""
832
 
833
+ #: wppa-ajax.php:1447
834
  #, php-format
835
  msgid "An error occurred while trying to move photo %s"
836
  msgstr ""
837
 
838
+ #: wppa-ajax.php:1465
839
  #, php-format
840
  msgid "Photo %s copied to album %s (%s)"
841
  msgstr ""
842
 
843
+ #: wppa-ajax.php:1468
844
  #, php-format
845
  msgid "An error occurred while trying to copy photo %s"
846
  msgstr ""
847
 
848
+ #: wppa-ajax.php:1498 wppa-ajax.php:2140
849
  msgid "Unbalanced tags in photo description!"
850
  msgstr ""
851
 
852
+ #: wppa-ajax.php:1504
853
  msgid "Photo order #"
854
  msgstr ""
855
 
856
+ #: wppa-ajax.php:1509
857
  #, php-format
858
  msgid "User %s does not exists"
859
  msgstr ""
860
 
861
+ #: wppa-ajax.php:1518
862
  msgid "Link url"
863
  msgstr ""
864
 
865
+ #: wppa-ajax.php:1521
866
  msgid "Link title"
867
  msgstr ""
868
 
869
+ #: wppa-ajax.php:1524
870
  msgid "Link target"
871
  msgstr ""
872
 
873
+ #: wppa-ajax.php:1530 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:1535 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:6704 wppa-settings-autosave.php:7434
881
+ #: wppa-settings-autosave.php:9200 wppa-settings-autosave.php:9240
882
+ #: wppa-settings-autosave.php:9262 wppa-settings-autosave.php:9308
883
  msgid "Status"
884
  msgstr ""
885
 
886
+ #: wppa-ajax.php:1538
887
  msgid "HTML Alt"
888
  msgstr ""
889
 
890
+ #: wppa-ajax.php:1542
891
  msgid "Video width"
892
  msgstr ""
893
 
894
+ #: wppa-ajax.php:1544 wppa-ajax.php:1551
895
  msgid "Please enter an integer value >= 0"
896
  msgstr ""
897
 
898
+ #: wppa-ajax.php:1549
899
  msgid "Video height"
900
  msgstr ""
901
 
902
+ #: wppa-ajax.php:1567 wppa-ajax.php:1601
903
  #, php-format
904
  msgid "<b>%s</b> of video %s updated"
905
  msgstr ""
906
 
907
+ #: wppa-ajax.php:1570 wppa-ajax.php:1604
908
  #, php-format
909
  msgid "<b>%s</b> of photo %s updated"
910
  msgstr ""
911
 
912
+ #: wppa-ajax.php:1574
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:1630
918
  #, php-format
919
  msgid "<b>Custom field %s</b> of photo %s updated"
920
  msgstr ""
921
 
922
+ #: wppa-ajax.php:1637
923
  msgid "<b>Error during upload.</b>"
924
  msgstr ""
925
 
926
+ #: wppa-ajax.php:1671
927
  msgid "Photo files updated."
928
  msgstr ""
929
 
930
+ #: wppa-ajax.php:1676
931
  msgid "Could not update files."
932
  msgstr ""
933
 
934
+ #: wppa-ajax.php:1687
935
  #, php-format
936
  msgid "Stereo mode updated in %d milliseconds"
937
  msgstr ""
938
 
939
+ #: wppa-ajax.php:1704 wppa-ajax.php:1746
940
  msgid "You do not have the rights to update settings"
941
  msgstr ""
942
 
943
+ #: wppa-ajax.php:1740
944
+ msgid "You do not have the rights to update photo of the day settings"
945
+ msgstr ""
946
+
947
+ #: wppa-ajax.php:1818
948
  msgid "Capability granted"
949
  msgstr ""
950
 
951
+ #: wppa-ajax.php:1823
952
  msgid "Capability withdrawn"
953
  msgstr ""
954
 
955
+ #: wppa-ajax.php:1854
956
  msgid "Column width."
957
  msgstr ""
958
 
959
+ #: wppa-ajax.php:1857
960
  msgid "Initial width."
961
  msgstr ""
962
 
963
+ #: wppa-ajax.php:1860
964
  msgid "Full size."
965
  msgstr ""
966
 
967
+ #: wppa-ajax.php:1863
968
  msgid "Max height."
969
  msgstr ""
970
 
971
+ #: wppa-ajax.php:1868
972
  msgid "Thumbnail size."
973
  msgstr ""
974
 
975
+ #: wppa-ajax.php:1872
976
  msgid "Thumbnail frame width"
977
  msgstr ""
978
 
979
+ #: wppa-ajax.php:1876
980
  msgid "Thumbnail frame height"
981
  msgstr ""
982
 
983
+ #: wppa-ajax.php:1879
984
  msgid "Thumbnail Spacing"
985
  msgstr ""
986
 
987
+ #: wppa-ajax.php:1882
988
  msgid "Photocount treshold."
989
  msgstr ""
990
 
991
+ #: wppa-ajax.php:1885
992
  msgid "Thumb page size."
993
  msgstr ""
994
 
995
+ #: wppa-ajax.php:1888
996
  msgid "Cover photo size."
997
  msgstr ""
998
 
999
+ #: wppa-ajax.php:1891
1000
  msgid "Album page size."
1001
  msgstr ""
1002
 
1003
+ #: wppa-ajax.php:1894
1004
  msgid "Number of TopTen photos"
1005
  msgstr ""
1006
 
1007
+ #: wppa-ajax.php:1897
1008
  msgid "Widget image thumbnail size"
1009
  msgstr ""
1010
 
1011
+ #: wppa-ajax.php:1900 wppa-settings-autosave.php:1105
1012
  msgid "Max Cover width"
1013
  msgstr ""
1014
 
1015
+ #: wppa-ajax.php:1903
1016
  msgid "Minimal description height"
1017
  msgstr ""
1018
 
1019
+ #: wppa-ajax.php:1906
1020
  msgid "Minimal cover height"
1021
  msgstr ""
1022
 
1023
+ #: wppa-ajax.php:1909
1024
  msgid "Minimal text frame height"
1025
  msgstr ""
1026
 
1027
+ #: wppa-ajax.php:1912 wppa-settings-autosave.php:1402
1028
  msgid "Border width"
1029
  msgstr ""
1030
 
1031
+ #: wppa-ajax.php:1915 wppa-settings-autosave.php:776
1032
+ #: wppa-settings-autosave.php:1411
1033
  msgid "Border radius"
1034
  msgstr ""
1035
 
1036
+ #: wppa-ajax.php:1918 wppa-settings-autosave.php:787
1037
  msgid "Box spacing"
1038
  msgstr ""
1039
 
1040
+ #: wppa-ajax.php:1924 wppa-settings-autosave.php:1080
1041
  msgid "Popup size"
1042
  msgstr ""
1043
 
1044
+ #: wppa-ajax.php:1927
1045
  msgid "Fullsize border width"
1046
  msgstr ""
1047
 
1048
+ #: wppa-ajax.php:1930
1049
  msgid "Lightbox Bordersize"
1050
  msgstr ""
1051
 
1052
+ #: wppa-ajax.php:1933
1053
  msgid "Lightbox Borderwidth"
1054
  msgstr ""
1055
 
1056
+ #: wppa-ajax.php:1936
1057
  msgid "Lightbox Borderradius"
1058
  msgstr ""
1059
 
1060
+ #: wppa-ajax.php:1939
1061
  msgid "Number of Comment widget entries"
1062
  msgstr ""
1063
 
1064
+ #: wppa-ajax.php:1942
1065
  msgid "Comment Widget image thumbnail size"
1066
  msgstr ""
1067
 
1068
+ #: wppa-ajax.php:1945 wppa-ajax.php:1948 wppa-ajax.php:1951
1069
  msgid "Opacity."
1070
  msgstr ""
1071
 
1072
+ #: wppa-ajax.php:1960 wppa-settings-autosave.php:1211
1073
  msgid "Avatar size"
1074
  msgstr ""
1075
 
1076
+ #: wppa-ajax.php:1963 wppa-ajax.php:1966
1077
  msgid "Watermark opacity"
1078
  msgstr ""
1079
 
1080
+ #: wppa-ajax.php:1969 wppa-settings-autosave.php:1380
1081
  msgid "Number of text lines"
1082
  msgstr ""
1083
 
1084
+ #: wppa-ajax.php:1972 wppa-settings-autosave.php:4657
1085
  msgid "Overlay opacity"
1086
  msgstr ""
1087
 
1088
+ #: wppa-ajax.php:1975 wppa-settings-autosave.php:7994
1089
  msgid "Upload limit"
1090
  msgstr ""
1091
 
1092
+ #: wppa-ajax.php:1978 wppa-settings-autosave.php:4327
1093
  msgid "Notify inappropriate"
1094
  msgstr ""
1095
 
1096
+ #: wppa-ajax.php:1981
1097
  msgid "Dislike pending"
1098
  msgstr ""
1099
 
1100
+ #: wppa-ajax.php:1984
1101
  msgid "Dislike delete"
1102
  msgstr ""
1103
 
1104
+ #: wppa-ajax.php:1987 wppa-settings-autosave.php:7530
1105
  msgid "Max execution time"
1106
  msgstr ""
1107
 
1108
+ #: wppa-ajax.php:1993
1109
  msgid "myCRED / Cube Points"
1110
  msgstr ""
1111
 
1112
+ #: wppa-ajax.php:1996
1113
  msgid "JPG Image quality"
1114
  msgstr ""
1115
 
1116
+ #: wppa-ajax.php:2002 wppa-settings-autosave.php:4220
1117
  msgid "Number of coverphotos"
1118
  msgstr ""
1119
 
1120
+ #: wppa-ajax.php:2005 wppa-settings-autosave.php:4298
1121
  msgid "Dislike value"
1122
  msgstr ""
1123
 
1124
+ #: wppa-ajax.php:2008 wppa-settings-autosave.php:917
1125
  msgid "Slideshow pagesize"
1126
  msgstr ""
1127
 
1128
+ #: wppa-ajax.php:2011 wppa-settings-autosave.php:936
1129
  msgid "Slideonly max"
1130
  msgstr ""
1131
 
1132
+ #: wppa-ajax.php:2014 wppa-settings-autosave.php:805
1133
  msgid "Max Pagelinks"
1134
  msgstr ""
1135
 
1136
+ #: wppa-ajax.php:2017 wppa-settings-autosave.php:3032
1137
  msgid "Start/pause symbol size"
1138
  msgstr ""
1139
 
1140
+ #: wppa-ajax.php:2020 wppa-settings-autosave.php:3041
1141
  msgid "Start/pause symbol border radius"
1142
  msgstr ""
1143
 
1144
+ #: wppa-ajax.php:2023 wppa-settings-autosave.php:3050
1145
  msgid "Stop symbol size"
1146
  msgstr ""
1147
 
1148
+ #: wppa-ajax.php:2026 wppa-settings-autosave.php:3059
1149
  msgid "Stop symbol border radius"
1150
  msgstr ""
1151
 
1152
+ #: wppa-ajax.php:2029 wppa-settings-autosave.php:832
1153
  msgid "Sticky header size"
1154
  msgstr ""
1155
 
1156
+ #: wppa-ajax.php:2037
1157
  msgid "Ratings cleared"
1158
  msgstr ""
1159
 
1160
+ #: wppa-ajax.php:2040
1161
  msgid "Could not clear ratings"
1162
  msgstr ""
1163
 
1164
+ #: wppa-ajax.php:2049
1165
  msgid "Viewcounts cleared"
1166
  msgstr ""
1167
 
1168
+ #: wppa-ajax.php:2052
1169
  msgid "Could not clear viewcounts"
1170
  msgstr ""
1171
 
1172
+ #: wppa-ajax.php:2062
1173
  msgid "IPTC data cleared"
1174
  msgstr ""
1175
 
1176
+ #: wppa-ajax.php:2063
1177
  msgid "Refresh this page to clear table X"
1178
  msgstr ""
1179
 
1180
+ #: wppa-ajax.php:2067
1181
  msgid "Could not clear IPTC data"
1182
  msgstr ""
1183
 
1184
+ #: wppa-ajax.php:2077
1185
  msgid "EXIF data cleared"
1186
  msgstr ""
1187
 
1188
+ #: wppa-ajax.php:2078
1189
  msgid "Refresh this page to clear table XI"
1190
  msgstr ""
1191
 
1192
+ #: wppa-ajax.php:2082
1193
  msgid "Could not clear EXIF data"
1194
  msgstr ""
1195
 
1196
+ #: wppa-ajax.php:2090
1197
  msgid "Recuperation performed"
1198
  msgstr ""
1199
 
1200
+ #: wppa-ajax.php:2105
1201
  msgid ""
1202
  "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1203
  "#77bbff"
1204
  msgstr ""
1205
 
1206
+ #: wppa-ajax.php:2131
1207
  msgid "You just changed a setting that requires the recalculation of ratings."
1208
  msgstr ""
1209
 
1210
+ #: wppa-ajax.php:2132 wppa-ajax.php:2580
1211
  msgid "Please run the appropriate action in Table VIII."
1212
  msgstr ""
1213
 
1214
+ #: wppa-ajax.php:2156 wppa-ajax.php:2172
1215
  #, php-format
1216
  msgid "Unable to create or write to %s"
1217
  msgstr ""
1218
 
1219
+ #: wppa-ajax.php:2165
1220
  msgid "Source can not be inside the wppa folder."
1221
  msgstr ""
1222
 
1223
+ #: wppa-ajax.php:2182
1224
  msgid "The content must contain w#album"
1225
  msgstr ""
1226
 
1227
+ #: wppa-ajax.php:2189
1228
  msgid "The content must contain w#lat and w#lon"
1229
  msgstr ""
1230
 
1231
+ #: wppa-ajax.php:2237 wppa-ajax.php:2243
1232
  msgid "Members"
1233
  msgstr ""
1234
 
1235
+ #: wppa-ajax.php:2237
1236
  msgid "Parent of the member albums"
1237
  msgstr ""
1238
 
1239
+ #: wppa-ajax.php:2381
1240
  #, php-format
1241
  msgid "User %s has been blacklisted."
1242
  msgstr ""
1243
 
1244
+ #: wppa-ajax.php:2384 wppa-ajax.php:2414
1245
  #, php-format
1246
  msgid "User %s does not exist."
1247
  msgstr ""
1248
 
1249
+ #: wppa-ajax.php:2411
1250
  #, php-format
1251
  msgid "User %s is now superuser."
1252
  msgstr ""
1253
 
1254
+ #: wppa-ajax.php:2436
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:2440 wppa-ajax.php:2455
1261
  msgid "The display of the custom box has been enabled"
1262
  msgstr ""
1263
 
1264
+ #: wppa-ajax.php:2451
1265
  msgid "The content of the Custom box has been changed to display maps."
1266
  msgstr ""
1267
 
1268
+ #: wppa-ajax.php:2489
1269
  msgid "This value can not be empty"
1270
  msgstr ""
1271
 
1272
+ #: wppa-ajax.php:2518
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:2521
1279
  msgid "Table IV-A3 will be switched off."
1280
  msgstr ""
1281
 
1282
+ #: wppa-ajax.php:2525
1283
  msgid "Table IV-A4 will be switched off."
1284
  msgstr ""
1285
 
1286
+ #: wppa-ajax.php:2535
1287
  msgid "Not allowed when cryptic links is active"
1288
  msgstr ""
1289
 
1290
+ #: wppa-ajax.php:2547
1291
  msgid "A Twitter account name must start with an at sign: @"
1292
  msgstr ""
1293
 
1294
+ #: wppa-ajax.php:2558
1295
  #, php-format
1296
  msgid "Failed to set %s to %s"
1297
  msgstr ""
1298
 
1299
+ #: wppa-ajax.php:2563
1300
  #, php-format
1301
  msgid "Setting %s updated to %s"
1302
  msgstr ""
1303
 
1304
+ #: wppa-ajax.php:2579
1305
  msgid ""
1306
  "You just changed a setting that requires the regeneration of thumbnails."
1307
  msgstr ""
1308
 
1309
+ #: wppa-ajax.php:2634
1310
  msgid "Missing album id"
1311
  msgstr ""
1312
 
1313
+ #: wppa-ajax.php:2654
1314
  msgid "You do not have the rights to delete this album"
1315
  msgstr ""
1316
 
1317
+ #: wppa-ajax.php:2675
1318
  msgid "An error has occurred"
1319
  msgstr ""
1320
 
1321
+ #: wppa-ajax.php:2711 wppa-ajax.php:2718
1322
  msgid "You may also enter:"
1323
  msgstr ""
1324
 
1325
+ #: wppa-ajax.php:2712 wppa-ajax.php:2719
1326
  msgid "You may also leave/set this blank"
1327
  msgstr ""
1328
 
1329
+ #: wppa-album-admin-autosave.php:23 wppa-album-admin-autosave.php:774
1330
  msgid "Upload to this album"
1331
  msgstr ""
1332
 
1341
  "Please make sure that %s is writeable by the server."
1342
  msgstr ""
1343
 
1344
+ #: wppa-album-admin-autosave.php:79 wppa-album-admin-autosave.php:818
1345
  msgid "Manage Photos"
1346
  msgstr ""
1347
 
1348
+ #: wppa-album-admin-autosave.php:80 wppa-album-admin-autosave.php:819
1349
  msgid "Copy / move / delete / edit name / edit description / change status"
1350
  msgstr ""
1351
 
1352
+ #: wppa-album-admin-autosave.php:81 wppa-album-admin-autosave.php:821
1353
  msgid "Edit photo information except copy and move"
1354
  msgstr ""
1355
 
1356
+ #: wppa-album-admin-autosave.php:82 wppa-album-admin-autosave.php:822
1357
+ #: wppa-setup.php:1314
1358
  msgid "Edit photo information"
1359
  msgstr ""
1360
 
1362
  msgid "Back to album table"
1363
  msgstr ""
1364
 
1365
+ #: wppa-album-admin-autosave.php:91 wppa-album-admin-autosave.php:829
1366
  msgid "Top of page"
1367
  msgstr ""
1368
 
1369
+ #: wppa-album-admin-autosave.php:118 wppa-functions.php:4293
1370
+ #: wppa-settings-autosave.php:7842 wppa-wpdb-insert.php:338
1371
  msgid "New Album"
1372
  msgstr "Nyt Album"
1373
 
1374
+ #: wppa-album-admin-autosave.php:123 wppa-import.php:1644 wppa-import.php:1680
1375
+ #: wppa-import.php:2466
1376
  msgid "Could not create album."
1377
  msgstr ""
1378
 
1379
+ #: wppa-album-admin-autosave.php:131 wppa-import.php:1650 wppa-import.php:2474
1380
  msgid "Album #"
1381
  msgstr ""
1382
 
1383
+ #: wppa-album-admin-autosave.php:131 wppa-import.php:1650 wppa-import.php:2474
1384
  msgid "Added."
1385
  msgstr ""
1386
 
1387
+ #: wppa-album-admin-autosave.php:177
1388
  msgid "Edit Album Information"
1389
  msgstr ""
1390
 
1391
+ #: wppa-album-admin-autosave.php:177 wppa-settings-autosave.php:277
1392
  msgid "Auto Save"
1393
  msgstr ""
1394
 
1395
+ #: wppa-album-admin-autosave.php:179
1396
  msgid ""
1397
  "All modifications are instantly updated on the server, except for those that "
1398
  "require a button push."
1399
  msgstr ""
1400
 
1401
+ #: wppa-album-admin-autosave.php:180
1402
  msgid ""
1403
  "The <b style=\"color:#070\" >Remark</b> fields keep you informed on the "
1404
  "actions taken at the background."
1405
  msgstr ""
1406
 
1407
+ #: wppa-album-admin-autosave.php:184
1408
  msgid "Album number:"
1409
  msgstr ""
1410
 
1411
+ #: wppa-album-admin-autosave.php:184 wppa-photo-admin-autosave.php:179
1412
  msgid "Crypt"
1413
  msgstr ""
1414
 
1415
+ #: wppa-album-admin-autosave.php:193
1416
  msgid "Name:"
1417
  msgstr ""
1418
 
1419
+ #: wppa-album-admin-autosave.php:200
1420
  msgid "Update Album name"
1421
  msgstr ""
1422
 
1423
+ #: wppa-album-admin-autosave.php:208
1424
  msgid "Type the name of the album. Do not leave this empty."
1425
  msgstr ""
1426
 
1427
+ #: wppa-album-admin-autosave.php:216 wppa-photo-admin-autosave.php:753
1428
  #: wppa-photo-admin-autosave.php:778
1429
  msgid "Description:"
1430
  msgstr ""
1431
 
1432
+ #: wppa-album-admin-autosave.php:227
1433
  msgid "Update Album description"
1434
  msgstr ""
1435
 
1436
+ #: wppa-album-admin-autosave.php:237
1437
  msgid "Enter / modify the description for this album."
1438
  msgstr ""
1439
 
1440
+ #: wppa-album-admin-autosave.php:281
1441
  msgid "Created:"
1442
  msgstr ""
1443
 
1444
+ #: wppa-album-admin-autosave.php:284 wppa-album-admin-autosave.php:295
1445
  #: wppa-photo-admin-autosave.php:257 wppa-photo-admin-autosave.php:280
1446
  msgid "local time"
1447
  msgstr ""
1448
 
1449
+ #: wppa-album-admin-autosave.php:290 wppa-photo-admin-autosave.php:275
1450
  msgid "Modified:"
1451
  msgstr ""
1452
 
1453
+ #: wppa-album-admin-autosave.php:298 wppa-photo-admin-autosave.php:283
1454
  #: wppa-photo-admin-autosave.php:1472
1455
  msgid "Not modified"
1456
  msgstr ""
1457
 
1458
+ #: wppa-album-admin-autosave.php:307
1459
  msgid "Views:"
1460
  msgstr ""
1461
 
1462
+ #: wppa-album-admin-autosave.php:320 wppa-photo-admin-autosave.php:261
1463
  msgid "Owned by:"
1464
  msgstr ""
1465
 
1466
+ #: wppa-album-admin-autosave.php:338
1467
  msgid ""
1468
  "WARNING If you change the owner, you will no longer be able to modify this "
1469
  "album and upload or import photos to it!"
1470
  msgstr ""
1471
 
1472
+ #: wppa-album-admin-autosave.php:340
1473
  msgid "Enter user login name or <b>--- public ---</b>"
1474
  msgstr ""
1475
 
1476
+ #: wppa-album-admin-autosave.php:349
1477
  msgid "Album sort order #:"
1478
  msgstr ""
1479
 
1480
+ #: wppa-album-admin-autosave.php:357
1481
  msgid ""
1482
  "Album order # has only effect if you set the album sort order method to "
1483
  "<b>Order #</b> in the Photo Albums -> Settings screen.<br />"
1484
  msgstr ""
1485
 
1486
+ #: wppa-album-admin-autosave.php:360
1487
  msgid ""
1488
  "If you want to sort the albums by order #, enter / modify the order number "
1489
  "here."
1490
  msgstr ""
1491
 
1492
+ #: wppa-album-admin-autosave.php:367 wppa-tinymce-shortcodes.php:346
1493
+ #: wppa-tinymce-shortcodes.php:372 wppa-tinymce-shortcodes.php:560
1494
  msgid "Parent album:"
1495
  msgstr ""
1496
 
1497
+ #: wppa-album-admin-autosave.php:378
1498
  msgid ""
1499
  "If this is a sub album, select the album in which this album will appear."
1500
  msgstr ""
1501
 
1502
+ #: wppa-album-admin-autosave.php:387
1503
  msgid "Photo order:"
1504
  msgstr ""
1505
 
1506
+ #: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:492
1507
+ #: wppa-settings-autosave.php:4054 wppa-settings-autosave.php:4078
1508
+ #: wppa-tinymce-shortcodes.php:505 wppa-tinymce-shortcodes.php:524
1509
  msgid "--- default ---"
1510
  msgstr ""
1511
 
1512
+ #: wppa-album-admin-autosave.php:392 wppa-album-admin-autosave.php:448
1513
+ #: wppa-settings-autosave.php:4016 wppa-settings-autosave.php:4130
1514
  #: wppa-thumbnail-widget.php:201
1515
  msgid "Order #"
1516
  msgstr ""
1517
 
1518
+ #: wppa-album-admin-autosave.php:394 wppa-album-admin-autosave.php:447
1519
+ #: wppa-potd-admin.php:249 wppa-settings-autosave.php:4018
1520
+ #: wppa-settings-autosave.php:4132 wppa-thumbnail-widget.php:203
1521
  msgid "Random"
1522
  msgstr ""
1523
 
1524
+ #: wppa-album-admin-autosave.php:395 wppa-settings-autosave.php:4019
1525
  msgid "Rating mean value"
1526
  msgstr ""
1527
 
1528
+ #: wppa-album-admin-autosave.php:396 wppa-bestof-widget.php:170
1529
+ #: wppa-settings-autosave.php:4020 wppa-topten-widget.php:345
1530
  msgid "Number of votes"
1531
  msgstr ""
1532
 
1533
+ #: wppa-album-admin-autosave.php:397 wppa-album-admin-autosave.php:452
1534
+ #: wppa-settings-autosave.php:4021 wppa-settings-autosave.php:4133
1535
  msgid "Timestamp"
1536
  msgstr ""
1537
 
1538
+ #: wppa-album-admin-autosave.php:398 wppa-photo-admin-autosave.php:292
1539
+ #: wppa-settings-autosave.php:4022
1540
  msgid "EXIF Date"
1541
  msgstr ""
1542
 
1543
+ #: wppa-album-admin-autosave.php:399 wppa-settings-autosave.php:4023
1544
+ #: wppa-settings-autosave.php:4134
1545
  msgid "Order # desc"
1546
  msgstr ""
1547
 
1548
+ #: wppa-album-admin-autosave.php:400 wppa-settings-autosave.php:4024
1549
+ #: wppa-settings-autosave.php:4135
1550
  msgid "Name desc"
1551
  msgstr ""
1552
 
1553
+ #: wppa-album-admin-autosave.php:401 wppa-settings-autosave.php:4025
1554
  #: wppa-thumbnail-widget.php:204
1555
  msgid "Rating mean value desc"
1556
  msgstr ""
1557
 
1558
+ #: wppa-album-admin-autosave.php:402 wppa-settings-autosave.php:4026
1559
  #: wppa-thumbnail-widget.php:205
1560
  msgid "Number of votes desc"
1561
  msgstr ""
1562
 
1563
+ #: wppa-album-admin-autosave.php:403 wppa-settings-autosave.php:4027
1564
+ #: wppa-settings-autosave.php:4136 wppa-thumbnail-widget.php:206
1565
  msgid "Timestamp desc"
1566
  msgstr ""
1567
 
1568
+ #: wppa-album-admin-autosave.php:404 wppa-settings-autosave.php:4028
1569
  msgid "EXIF Date desc"
1570
  msgstr ""
1571
 
1572
+ #: wppa-album-admin-autosave.php:433
1573
  msgid "Specify the way the photos should be ordered in this album."
1574
  msgstr ""
1575
 
1576
+ #: wppa-album-admin-autosave.php:434
1577
  msgid ""
1578
  "The default setting can be changed in the <b>Photo Albums -> Settings</b> "
1579
  "page <b>Table IV-C1</b>."
1580
  msgstr ""
1581
 
1582
+ #: wppa-album-admin-autosave.php:442
1583
  msgid "Sub album sort order:"
1584
  msgstr ""
1585
 
1586
+ #: wppa-album-admin-autosave.php:446
1587
  msgid "See Table IV-D1"
1588
  msgstr ""
1589
 
1590
+ #: wppa-album-admin-autosave.php:449
1591
  msgid "Order # reverse"
1592
  msgstr ""
1593
 
1594
+ #: wppa-album-admin-autosave.php:451
1595
  msgid "Name reverse"
1596
  msgstr ""
1597
 
1598
+ #: wppa-album-admin-autosave.php:453
1599
  msgid "Timestamp reverse"
1600
  msgstr ""
1601
 
1602
+ #: wppa-album-admin-autosave.php:458
1603
  msgid ""
1604
  "Specify the sequence order method to be used for the sub albums of this "
1605
  "album."
1606
  msgstr ""
1607
 
1608
+ #: wppa-album-admin-autosave.php:467
1609
  msgid "Use alt thumbsize:"
1610
  msgstr ""
1611
 
1612
+ #: wppa-album-admin-autosave.php:471 wppa-bestof-widget.php:182
1613
  #: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
1614
+ #: wppa-lasten-widget.php:219 wppa-settings-autosave.php:535
1615
+ #: wppa-settings-autosave.php:544 wppa-settings-autosave.php:553
1616
+ #: wppa-settings-autosave.php:564 wppa-settings-autosave.php:573
1617
  #: wppa-settings-autosave.php:582 wppa-settings-autosave.php:591
1618
+ #: wppa-settings-autosave.php:600 wppa-settings-autosave.php:609
1619
+ #: wppa-settings-autosave.php:618 wppa-settings-autosave.php:627
1620
+ #: wppa-settings-autosave.php:636 wppa-settings-autosave.php:645
1621
+ #: wppa-settings-autosave.php:654 wppa-topten-widget.php:353
 
 
1622
  #: wppa-topten-widget.php:360 wppa-topten-widget.php:368
1623
  #: wppa-topten-widget.php:373 wppa-topten-widget.php:378
1624
  #: wppa-topten-widget.php:383 wppa-topten-widget.php:388
1625
  msgid "no"
1626
  msgstr ""
1627
 
1628
+ #: wppa-album-admin-autosave.php:472 wppa-bestof-widget.php:181
1629
  #: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
1630
+ #: wppa-lasten-widget.php:220 wppa-settings-autosave.php:535
1631
+ #: wppa-settings-autosave.php:544 wppa-settings-autosave.php:553
1632
+ #: wppa-settings-autosave.php:564 wppa-settings-autosave.php:573
1633
  #: wppa-settings-autosave.php:582 wppa-settings-autosave.php:591
1634
+ #: wppa-settings-autosave.php:600 wppa-settings-autosave.php:609
1635
+ #: wppa-settings-autosave.php:618 wppa-settings-autosave.php:627
1636
+ #: wppa-settings-autosave.php:636 wppa-settings-autosave.php:645
1637
+ #: wppa-settings-autosave.php:654 wppa-settings-autosave.php:663
 
 
1638
  #: wppa-super-view-widget.php:85 wppa-topten-widget.php:352
1639
  #: wppa-topten-widget.php:359 wppa-topten-widget.php:367
1640
  #: wppa-topten-widget.php:372 wppa-topten-widget.php:377
1642
  msgid "yes"
1643
  msgstr ""
1644
 
1645
+ #: wppa-album-admin-autosave.php:477
1646
  msgid ""
1647
  "If set to <b>yes</b> The settings in <b>Table I-C1a,3a</b> and <b>4a</b> "
1648
  "apply rather than <b>I-C1,3</b> and <b>4</b>."
1649
  msgstr ""
1650
 
1651
+ #: wppa-album-admin-autosave.php:487
1652
  msgid "Cover Type:"
1653
  msgstr ""
1654
 
1655
+ #: wppa-album-admin-autosave.php:493 wppa-settings-autosave.php:2031
1656
+ #: wppa-settings-autosave.php:4200
1657
  msgid "Standard"
1658
  msgstr ""
1659
 
1660
+ #: wppa-album-admin-autosave.php:494 wppa-settings-autosave.php:4201
1661
  msgid "Long Descriptions"
1662
  msgstr ""
1663
 
1664
+ #: wppa-album-admin-autosave.php:495 wppa-settings-autosave.php:4202
1665
  msgid "Image Factory"
1666
  msgstr ""
1667
 
1668
+ #: wppa-album-admin-autosave.php:496 wppa-settings-autosave.php:4203
1669
  msgid "Standard mcr"
1670
  msgstr ""
1671
 
1672
+ #: wppa-album-admin-autosave.php:497 wppa-settings-autosave.php:4204
1673
  msgid "Long Descriptions mcr"
1674
  msgstr ""
1675
 
1676
+ #: wppa-album-admin-autosave.php:498 wppa-settings-autosave.php:4205
1677
  msgid "Image Factory mcr"
1678
  msgstr ""
1679
 
1680
+ #: wppa-album-admin-autosave.php:504
1681
  msgid ""
1682
  "The default cover type is the systems standard set in the <b>Photo Albums -> "
1683
  "Settings</b> page <b>Table IV-D6</b>."
1684
  msgstr ""
1685
 
1686
+ #: wppa-album-admin-autosave.php:514
1687
  msgid "Cover Photo:"
1688
  msgstr ""
1689
 
1690
+ #: wppa-album-admin-autosave.php:522
1691
  msgid "Select the photo you want to appear on the cover of this album."
1692
  msgstr ""
1693
 
1694
+ #: wppa-album-admin-autosave.php:523
1695
  msgid ""
1696
  "Select the way the cover photos of this album are selected, or select a "
1697
  "single image."
1698
  msgstr ""
1699
 
1700
+ #: wppa-album-admin-autosave.php:532
1701
  msgid "Upload limit:"
1702
  msgstr ""
1703
 
1704
+ #: wppa-album-admin-autosave.php:543 wppa-settings-autosave.php:6145
1705
+ #: wppa-settings-autosave.php:8001
1706
  msgid "for ever"
1707
  msgstr ""
1708
 
1709
+ #: wppa-album-admin-autosave.php:544 wppa-album-admin-autosave.php:561
1710
+ #: wppa-settings-autosave.php:6146 wppa-settings-autosave.php:8002
1711
  msgid "per hour"
1712
  msgstr ""
1713
 
1714
+ #: wppa-album-admin-autosave.php:545 wppa-album-admin-autosave.php:562
1715
+ #: wppa-settings-autosave.php:6147 wppa-settings-autosave.php:8003
1716
  msgid "per day"
1717
  msgstr ""
1718
 
1719
+ #: wppa-album-admin-autosave.php:546 wppa-album-admin-autosave.php:563
1720
+ #: wppa-settings-autosave.php:6148 wppa-settings-autosave.php:8004
1721
  msgid "per week"
1722
  msgstr ""
1723
 
1724
+ #: wppa-album-admin-autosave.php:547 wppa-album-admin-autosave.php:564
1725
+ #: wppa-settings-autosave.php:6149 wppa-settings-autosave.php:8005
1726
  msgid "per month"
1727
  msgstr ""
1728
 
1729
+ #: wppa-album-admin-autosave.php:548 wppa-album-admin-autosave.php:565
1730
+ #: wppa-settings-autosave.php:6150 wppa-settings-autosave.php:8006
1731
  msgid "per year"
1732
  msgstr ""
1733
 
1734
+ #: wppa-album-admin-autosave.php:552
1735
  msgid "Set the upload limit (0 means unlimited) and the upload limit period."
1736
  msgstr ""
1737
 
1738
+ #: wppa-album-admin-autosave.php:557
1739
  msgid "Unlimited"
1740
  msgstr ""
1741
 
1742
+ #: wppa-album-admin-autosave.php:576
1743
  msgid "Catogories:"
1744
  msgstr ""
1745
 
1746
+ #: wppa-album-admin-autosave.php:586
1747
  msgid "Separate categories with commas."
1748
  msgstr ""
1749
 
1750
+ #: wppa-album-admin-autosave.php:587 wppa-photo-admin-autosave.php:832
1751
  msgid "Examples:"
1752
  msgstr ""
1753
 
1754
+ #: wppa-album-admin-autosave.php:593 wppa-photo-admin-autosave.php:836
1755
  msgid "- select -"
1756
  msgstr ""
1757
 
1758
+ #: wppa-album-admin-autosave.php:599
1759
  msgid "No categories yet"
1760
  msgstr ""
1761
 
1762
+ #: wppa-album-admin-autosave.php:603 wppa-photo-admin-autosave.php:846
1763
  msgid "Select to add"
1764
  msgstr ""
1765
 
1766
+ #: wppa-album-admin-autosave.php:609
1767
  msgid ""
1768
  "Are you sure you want to inherit categories to all (grand)children of this "
1769
  "album?"
1770
  msgstr ""
1771
 
1772
+ #: wppa-album-admin-autosave.php:610
1773
  msgid ""
1774
  "Are you sure you want to add the categories to all (grand)children of this "
1775
  "album?"
1776
  msgstr ""
1777
 
1778
+ #: wppa-album-admin-autosave.php:613
1779
  msgid "Inherit Cats"
1780
  msgstr ""
1781
 
1782
+ #: wppa-album-admin-autosave.php:618
1783
  msgid "Apply categories to all (grand)children."
1784
  msgstr ""
1785
 
1786
+ #: wppa-album-admin-autosave.php:623
1787
  msgid "Add Inherit Cats"
1788
  msgstr ""
1789
 
1790
+ #: wppa-album-admin-autosave.php:628
1791
  msgid "Add categories to all (grand)children."
1792
  msgstr ""
1793
 
1794
+ #: wppa-album-admin-autosave.php:635
1795
  msgid "Default photo tags:"
1796
  msgstr ""
1797
 
1798
+ #: wppa-album-admin-autosave.php:641
1799
  msgid ""
1800
  "Enter the tags that you want to be assigned to new photos in this album."
1801
  msgstr ""
1802
 
1803
+ #: wppa-album-admin-autosave.php:646
1804
  msgid ""
1805
  "Are you sure you want to set the default tags to all photos in this album?"
1806
  msgstr ""
1807
 
1808
+ #: wppa-album-admin-autosave.php:647
1809
  msgid ""
1810
  "Are you sure you want to add the default tags to all photos in this album?"
1811
  msgstr ""
1812
 
1813
+ #: wppa-album-admin-autosave.php:650
1814
  msgid "Apply default tags"
1815
  msgstr ""
1816
 
1817
+ #: wppa-album-admin-autosave.php:655
1818
  msgid "Tag all photos in this album with the default tags."
1819
  msgstr ""
1820
 
1821
+ #: wppa-album-admin-autosave.php:660
1822
  msgid "Add default tags"
1823
  msgstr ""
1824
 
1825
+ #: wppa-album-admin-autosave.php:665
1826
  msgid "Add the default tags to all photos in this album."
1827
  msgstr ""
1828
 
1829
+ #: wppa-album-admin-autosave.php:672
1830
  msgid "Link type:"
1831
  msgstr ""
1832
 
1833
+ #: wppa-album-admin-autosave.php:679 wppa-settings-autosave.php:8162
1834
  msgid "the sub-albums and thumbnails"
1835
  msgstr ""
1836
 
1837
+ #: wppa-album-admin-autosave.php:680 wppa-settings-autosave.php:8163
1838
  msgid "the sub-albums"
1839
  msgstr ""
1840
 
1841
+ #: wppa-album-admin-autosave.php:681 wppa-settings-autosave.php:8164
1842
  msgid "the thumbnails"
1843
  msgstr ""
1844
 
1845
+ #: wppa-album-admin-autosave.php:682 wppa-settings-autosave.php:8165
1846
  msgid "the album photos as slideshow"
1847
  msgstr ""
1848
 
1849
+ #: wppa-album-admin-autosave.php:683
1850
  msgid "the link page with a clean url"
1851
  msgstr ""
1852
 
1853
+ #: wppa-album-admin-autosave.php:684 wppa-settings-autosave.php:8166
1854
  msgid "no link at all"
1855
  msgstr ""
1856
 
1857
+ #: wppa-album-admin-autosave.php:689
1858
  msgid ""
1859
  "If you select \"the link page with a clean url\", select an Auto Page of one "
1860
  "of the photos in this album."
1861
  msgstr ""
1862
 
1863
+ #: wppa-album-admin-autosave.php:690
1864
  msgid ""
1865
  "If you select \"the link page with a clean url\", make sure you enter the "
1866
  "correct shortcode on the target page."
1867
  msgstr ""
1868
 
1869
+ #: wppa-album-admin-autosave.php:699 wppa-bestof-widget.php:196
1870
+ #: wppa-potd-admin.php:108 wppa-potd-admin.php:124 wppa-potd-admin.php:152
1871
+ #: wppa-slideshow-widget.php:221
1872
  msgid "Link to:"
1873
  msgstr ""
1874
 
1875
+ #: wppa-album-admin-autosave.php:705 wppa-settings-autosave.php:9845
1876
+ #: wppa-settings-autosave.php:9887 wppa-settings-autosave.php:9939
1877
  msgid "There are no pages (yet) to link to."
1878
  msgstr ""
1879
 
1880
+ #: wppa-album-admin-autosave.php:710
1881
  msgid "--- the same page or post ---"
1882
  msgstr ""
1883
 
1884
+ #: wppa-album-admin-autosave.php:718
1885
  msgid ""
1886
  "If you want, you can link the title to a WP page in stead of the album's "
1887
  "content. If so, select the page the title links to."
1888
  msgstr ""
1889
 
1890
+ #: wppa-album-admin-autosave.php:728
1891
  msgid "Schedule:"
1892
  msgstr ""
1893
 
1894
+ #: wppa-album-admin-autosave.php:739
1895
  msgid ""
1896
  "If enabled, new photos will have their status set to the dat/time specified "
1897
  "here."
1898
  msgstr ""
1899
 
1900
+ #: wppa-album-admin-autosave.php:745
1901
  msgid "Are you sure you want to schedule all photos in this album?"
1902
  msgstr ""
1903
 
1904
+ #: wppa-album-admin-autosave.php:745
1905
  msgid "Schedule all"
1906
  msgstr ""
1907
 
1908
+ #: wppa-album-admin-autosave.php:753
1909
  msgid "Are you sure you want to clear the ratings in this album?"
1910
  msgstr ""
1911
 
1912
+ #: wppa-album-admin-autosave.php:753
1913
  msgid "Reset ratings"
1914
  msgstr ""
1915
 
1916
+ #: wppa-album-admin-autosave.php:770
1917
  msgid "Change the upload limit or remove photos to enable new uploads."
1918
  msgstr ""
1919
 
1920
+ #: wppa-album-admin-autosave.php:774
1921
  #, php-format
1922
  msgid "(max %d)"
1923
  msgstr ""
1924
 
1925
+ #: wppa-album-admin-autosave.php:775
1926
  msgid "Album is full"
1927
  msgstr ""
1928
 
1929
+ #: wppa-album-admin-autosave.php:786
1930
  msgid "Apply new photo desc"
1931
  msgstr ""
1932
 
1933
+ #: wppa-album-admin-autosave.php:797
1934
  msgid "Remake all"
1935
  msgstr ""
1936
 
1937
+ #: wppa-album-admin-autosave.php:805 wppa-photo-admin-autosave.php:946
1938
  msgid "Remark:"
1939
  msgstr ""
1940
 
1941
+ #: wppa-album-admin-autosave.php:808
1942
  #, php-format
1943
  msgid "Album %s is not modified yet"
1944
  msgstr ""
1945
 
1946
+ #: wppa-album-admin-autosave.php:820
1947
  msgid "Change sequence order by drag and drop"
1948
  msgstr ""
1949
 
1950
+ #: wppa-album-admin-autosave.php:840
1951
  msgid "Moderate comment"
1952
  msgstr ""
1953
 
1954
+ #: wppa-album-admin-autosave.php:857
1955
  msgid "Moderate photo"
1956
  msgstr ""
1957
 
1958
+ #: wppa-album-admin-autosave.php:858 wppa-functions.php:2369
1959
  #: wppa-photo-admin-autosave.php:24
1960
  msgid "Edit photo"
1961
  msgstr "N&aelig;ste billede"
1962
 
1963
+ #: wppa-album-admin-autosave.php:878 wppa-boxes-html.php:1655
1964
+ #: wppa-boxes-html.php:1658
1965
  msgid "Delete Album"
1966
  msgstr ""
1967
 
1971
  #: wppa-breadcrumb.php:636 wppa-comment-admin.php:65 wppa-featen-widget.php:179
1972
  #: wppa-lasten-widget.php:203 wppa-slideshow-widget.php:199
1973
  #: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:326
1974
+ #: wppa-upload-widget.php:85 wppa-upload.php:158 wppa-upload.php:299
1975
+ #: wppa-upload.php:373
1976
  msgid "Album:"
1977
  msgstr "Album:"
1978
 
1989
  msgstr ""
1990
 
1991
  #: wppa-album-admin-autosave.php:888 wppa-album-admin-autosave.php:897
1992
+ #: wppa-album-admin-autosave.php:1156 wppa-album-admin-autosave.php:1196
1993
+ #: wppa-album-admin-autosave.php:1293 wppa-album-admin-autosave.php:1465
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:782 wppa-links.php:800
1998
  #: wppa-photo-admin-autosave.php:1312 wppa-photo-admin-autosave.php:1380
1999
+ #: wppa-thumbnails.php:629
2000
  msgid "Delete"
2001
  msgstr "Slet"
2002
 
2004
  msgid "Move to:"
2005
  msgstr ""
2006
 
2007
+ #: wppa-album-admin-autosave.php:896 wppa-photo-admin-autosave.php:2025
2008
+ #: wppa-settings-autosave.php:2898
2009
  msgid "Cancel"
2010
  msgstr ""
2011
 
2013
  msgid "Unable to move photos. Album not deleted."
2014
  msgstr ""
2015
 
2016
+ #: wppa-album-admin-autosave.php:945
2017
  msgid "Manage Albums"
2018
  msgstr ""
2019
 
2020
+ #: wppa-album-admin-autosave.php:951
2021
  msgid "Are you sure you want to create a new album?"
2022
  msgstr ""
2023
 
2024
+ #: wppa-album-admin-autosave.php:956
2025
  msgid "Create New Empty Album"
2026
  msgstr ""
2027
 
2028
+ #: wppa-album-admin-autosave.php:962
2029
  msgid "Switch to Collapsable table"
2030
  msgstr ""
2031
 
2032
+ #: wppa-album-admin-autosave.php:965
2033
  msgid "Switch to Flat table"
2034
  msgstr ""
2035
 
2036
+ #: wppa-album-admin-autosave.php:977
2037
  msgid "Open all"
2038
  msgstr ""
2039
 
2040
+ #: wppa-album-admin-autosave.php:990
2041
  msgid "Close all"
2042
  msgstr ""
2043
 
2044
+ #: wppa-album-admin-autosave.php:1089 wppa-album-admin-autosave.php:1226
2045
+ #: wppa-album-admin-autosave.php:1397 wppa-album-admin-autosave.php:1492
2046
  #: wppa-photo-admin-autosave.php:1361 wppa-photo-admin-autosave.php:1480
2047
  msgid "ID"
2048
  msgstr ""
2049
 
2050
+ #: wppa-album-admin-autosave.php:1131 wppa-album-admin-autosave.php:1268
2051
+ #: wppa-album-admin-autosave.php:1440 wppa-album-admin-autosave.php:1535
2052
  msgid "Order"
2053
  msgstr ""
2054
 
2055
+ #: wppa-album-admin-autosave.php:1141 wppa-album-admin-autosave.php:1278
2056
+ #: wppa-album-admin-autosave.php:1450 wppa-album-admin-autosave.php:1545
2057
  msgid "Parent"
2058
  msgstr ""
2059
 
2060
+ #: wppa-album-admin-autosave.php:1149 wppa-album-admin-autosave.php:1286
2061
+ #: wppa-album-admin-autosave.php:1458 wppa-album-admin-autosave.php:1553
2062
  msgid "Albums/Photos/Moderation required/Scheduled"
2063
  msgstr ""
2064
 
2065
+ #: wppa-album-admin-autosave.php:1150 wppa-album-admin-autosave.php:1287
2066
+ #: wppa-album-admin-autosave.php:1459 wppa-album-admin-autosave.php:1554
2067
  msgid "A/P/PM/S"
2068
  msgstr ""
2069
 
2070
+ #: wppa-album-admin-autosave.php:1153 wppa-album-admin-autosave.php:1191
2071
+ #: wppa-album-admin-autosave.php:1290 wppa-album-admin-autosave.php:1462
2072
+ #: wppa-album-admin-autosave.php:1557 wppa-album-admin-autosave.php:1635
2073
+ #: wppa-album-admin-autosave.php:1742
2074
  msgid "Quick"
2075
  msgstr ""
2076
 
2077
+ #: wppa-album-admin-autosave.php:1154 wppa-album-admin-autosave.php:1192
2078
+ #: wppa-album-admin-autosave.php:1291 wppa-album-admin-autosave.php:1463
2079
+ #: wppa-album-admin-autosave.php:1558 wppa-album-admin-autosave.php:1640
2080
+ #: wppa-album-admin-autosave.php:1743
2081
  msgid "Bulk"
2082
  msgstr ""
2083
 
2084
+ #: wppa-album-admin-autosave.php:1155 wppa-album-admin-autosave.php:1193
2085
+ #: wppa-album-admin-autosave.php:1292 wppa-album-admin-autosave.php:1464
2086
+ #: wppa-album-admin-autosave.php:1559 wppa-album-admin-autosave.php:1744
2087
  msgid "Seq"
2088
  msgstr ""
2089
 
2090
+ #: wppa-album-admin-autosave.php:1157 wppa-album-admin-autosave.php:1201
2091
+ #: wppa-album-admin-autosave.php:1204 wppa-album-admin-autosave.php:1294
2092
+ #: wppa-album-admin-autosave.php:1466 wppa-album-admin-autosave.php:1561
2093
+ #: wppa-album-admin-autosave.php:1752 wppa-album-admin-autosave.php:1755
2094
  msgid "Create"
2095
  msgstr ""
2096
 
2097
+ #: wppa-album-admin-autosave.php:1200 wppa-album-admin-autosave.php:1751
2098
  msgid "Are you sure you want to create a subalbum?"
2099
  msgstr ""
2100
 
2101
+ #: wppa-album-admin-autosave.php:1307 wppa-album-admin-autosave.php:1588
2102
  msgid "No albums yet."
2103
  msgstr ""
2104
 
2105
+ #: wppa-album-admin-autosave.php:1391 wppa-album-admin-autosave.php:1715
2106
  msgid "Collapse subalbums"
2107
  msgstr ""
2108
 
2109
+ #: wppa-album-admin-autosave.php:1392 wppa-album-admin-autosave.php:1716
2110
  msgid "Expand subalbums"
2111
  msgstr ""
2112
 
2113
+ #: wppa-album-admin-autosave.php:1474
2114
  msgid ""
2115
  "The following albums are ---separate--- and do not show up in the generic "
2116
  "album display"
2117
  msgstr ""
2118
 
2119
+ #: wppa-album-admin-autosave.php:1604
2120
  msgid "Search for photos to edit"
2121
  msgstr ""
2122
 
2123
+ #: wppa-album-admin-autosave.php:1605
2124
  msgid ""
2125
  "Enter search words seperated by commas. Photos will meet all search words by "
2126
  "their names, descriptions, translated keywords and/or tags."
2127
  msgstr ""
2128
 
2129
+ #: wppa-album-admin-autosave.php:1611
2130
  msgid "Any"
2131
  msgstr ""
2132
 
2133
+ #: wppa-album-admin-autosave.php:1615
2134
  msgid "Search for"
2135
  msgstr ""
2136
 
2137
+ #: wppa-album-admin-autosave.php:1657
2138
  #, php-format
2139
  msgid ""
2140
  "There are <strong>%d</strong> albums and <strong>%d</strong> photos in the "
2141
  "system."
2142
  msgstr ""
2143
 
2144
+ #: wppa-album-admin-autosave.php:1658
2145
  #, php-format
2146
  msgid "<strong>%d</strong> photos are pending moderation."
2147
  msgstr ""
2148
 
2149
+ #: wppa-album-admin-autosave.php:1659
2150
  #, php-format
2151
  msgid "<strong>%d</strong> photos are scheduled for later publishing."
2152
  msgstr ""
2153
 
2154
+ #: wppa-album-admin-autosave.php:1662
2155
  #, php-format
2156
  msgid "The most recently added album is <strong>%s</strong> (%d)."
2157
  msgstr ""
2158
 
2159
+ #: wppa-album-admin-autosave.php:1666
2160
  #, php-format
2161
  msgid "The most recently added photo is <strong>%s</strong> (%d)"
2162
  msgstr ""
2163
 
2164
+ #: wppa-album-admin-autosave.php:1667
2165
  #, php-format
2166
  msgid "in album <strong>%s</strong> (%d)."
2167
  msgstr ""
2168
 
2169
+ #: wppa-album-admin-autosave.php:1789
2170
  #, php-format
2171
  msgid "Unable to move photos to album %s. Album not deleted."
2172
  msgstr ""
2173
 
2174
+ #: wppa-album-admin-autosave.php:1810
2175
  #, php-format
2176
  msgid "Time is out after %d photo deletes. Please redo this operation"
2177
  msgstr ""
2178
 
2179
+ #: wppa-album-admin-autosave.php:1845
2180
  msgid "Album Deleted."
2181
  msgstr ""
2182
 
2183
+ #: wppa-album-admin-autosave.php:1867
2184
  #, php-format
2185
  msgid "auto select max %s random"
2186
  msgstr ""
2187
 
2188
+ #: wppa-album-admin-autosave.php:1869
2189
  #, php-format
2190
  msgid "auto select max %s featured"
2191
  msgstr ""
2192
 
2193
+ #: wppa-album-admin-autosave.php:1871
2194
  #, php-format
2195
  msgid "max %s most recent added"
2196
  msgstr ""
2197
 
2198
+ #: wppa-album-admin-autosave.php:1873
2199
  #, php-format
2200
  msgid "max %s from (grand)child albums"
2201
  msgstr ""
2202
 
2203
+ #: wppa-album-admin-autosave.php:1875
2204
  #, php-format
2205
  msgid "max %s most recent from (grand)child albums"
2206
  msgstr ""
2207
 
2208
+ #: wppa-album-admin-autosave.php:1879
2209
  msgid "--- random ---"
2210
  msgstr ""
2211
 
2212
+ #: wppa-album-admin-autosave.php:1881
2213
  msgid "--- random featured ---"
2214
  msgstr ""
2215
 
2216
+ #: wppa-album-admin-autosave.php:1883
2217
  msgid "--- most recent added ---"
2218
  msgstr ""
2219
 
2220
+ #: wppa-album-admin-autosave.php:1885
2221
  msgid "--- random from (grand)children ---"
2222
  msgstr ""
2223
 
2224
+ #: wppa-album-admin-autosave.php:1887
2225
  msgid "--- most recent from (grand)children ---"
2226
  msgstr ""
2227
 
2228
+ #: wppa-album-admin-autosave.php:1899
2229
  msgid "Nameless, filename = "
2230
  msgstr ""
2231
 
2232
+ #: wppa-album-admin-autosave.php:1942
2233
  msgid ""
2234
  "You can edit top-level album sequence order here when you set the album "
2235
  "order to \"Order #\" or \"Order # desc\" in Table IV-D1."
2236
  msgstr ""
2237
 
2238
+ #: wppa-album-admin-autosave.php:1945
2239
  msgid ""
2240
  "You can edit sub-album sequence order here when you set the album order to "
2241
  "\"Order #\" or \"Order # desc\" in the \"Sub album sort order:\" selection "
2242
  "box above."
2243
  msgstr ""
2244
 
2245
+ #: wppa-album-admin-autosave.php:1954
2246
  msgid "Manage album order"
2247
  msgstr ""
2248
 
2249
+ #: wppa-album-admin-autosave.php:1958
2250
+ msgid "Change sequence order by drag and drop, or use the up/down arrows."
2251
+ msgstr ""
2252
+
2253
+ #: wppa-album-admin-autosave.php:1961
2254
+ msgid "Do not leave this page unless the bar is entirely green."
2255
+ msgstr ""
2256
+
2257
+ #: wppa-album-admin-autosave.php:1970 wppa-settings-autosave.php:7914
2258
+ #: wppa-settings-autosave.php:7925 wppa-stereo.php:31
2259
+ msgid "Color"
2260
+ msgstr ""
2261
+
2262
+ #: wppa-album-admin-autosave.php:1973
2263
+ msgid "Meaning"
2264
+ msgstr ""
2265
+
2266
+ #: wppa-album-admin-autosave.php:1983
2267
+ msgid "Up to date"
2268
+ msgstr ""
2269
+
2270
+ #: wppa-album-admin-autosave.php:1991
2271
+ msgid "Updating"
2272
+ msgstr ""
2273
+
2274
+ #: wppa-album-admin-autosave.php:1999
2275
+ msgid "Needs update"
2276
+ msgstr ""
2277
+
2278
+ #: wppa-album-admin-autosave.php:2007 wppa-maintenance.php:66
2279
+ #: wppa-upload.php:595
2280
+ msgid "Error"
2281
+ msgstr ""
2282
+
2283
+ #: wppa-album-admin-autosave.php:2213
2284
+ msgid "To top"
2285
+ msgstr ""
2286
+
2287
+ #: wppa-album-admin-autosave.php:2224
2288
+ msgid "One up"
2289
+ msgstr ""
2290
+
2291
+ #: wppa-album-admin-autosave.php:2235
2292
+ msgid "One down"
2293
+ msgstr ""
2294
+
2295
+ #: wppa-album-admin-autosave.php:2246
2296
+ msgid "To bottom"
2297
+ msgstr ""
2298
+
2299
+ #: wppa-album-admin-autosave.php:2257
2300
  msgid "Id:"
2301
  msgstr ""
2302
 
2303
+ #: wppa-album-admin-autosave.php:2258
2304
  msgid "Ord:"
2305
  msgstr ""
2306
 
2307
+ #: wppa-album-covers.php:1335 wppa-album-covers.php:1411
2308
+ #: wppa-album-covers.php:1419 wppa-album-covers.php:1643
2309
  msgid "View the album"
2310
  msgstr "Se album"
2311
 
2312
+ #: wppa-album-covers.php:1355
2313
  msgid "View the cover photo"
2314
  msgid_plural "View the cover photos"
2315
  msgstr[0] "Se forside foto"
2316
  msgstr[1] "Se forside foto's"
2317
 
2318
+ #: wppa-album-covers.php:1429
2319
  msgid "View"
2320
  msgstr "Vis"
2321
 
2322
+ #: wppa-album-covers.php:1431
2323
  #, php-format
2324
  msgid "%d album"
2325
  msgid_plural "%d albums"
2326
  msgstr[0] ""
2327
  msgstr[1] ""
2328
 
2329
+ #: wppa-album-covers.php:1437 wppa-boxes-html.php:1278 wppa-breadcrumb.php:155
2330
  #: wppa-breadcrumb.php:161 wppa-breadcrumb.php:168 wppa-breadcrumb.php:392
2331
  #: wppa-breadcrumb.php:394 wppa-breadcrumb.php:400 wppa-breadcrumb.php:402
2332
  #: wppa-breadcrumb.php:410 wppa-breadcrumb.php:426 wppa-breadcrumb.php:439
2333
+ #: wppa-breadcrumb.php:445 wppa-utils.php:1738 wppa-utils.php:2393
2334
  msgid "and"
2335
  msgstr "og"
2336
 
2337
+ #: wppa-album-covers.php:1440
2338
  #, php-format
2339
  msgid "%d photo"
2340
  msgid_plural "%d photos"
2341
  msgstr[0] ""
2342
  msgstr[1] ""
2343
 
2344
+ #: wppa-album-covers.php:1511
2345
  msgid "New!"
2346
  msgstr "Nyt!"
2347
 
2348
+ #: wppa-album-covers.php:1514 wppa-thumbnails.php:1964 wppa-thumbnails.php:1965
2349
  msgid "New"
2350
  msgstr "Ny"
2351
 
2352
+ #: wppa-album-covers.php:1752 wppa-boxes-html.php:844 wppa-non-admin.php:753
2353
+ #: wppa-settings-autosave.php:2293 wppa-settings-autosave.php:5582
2354
+ #: wppa-settings-autosave.php:8321
2355
  msgid "Slideshow"
2356
  msgstr "Slideshow"
2357
 
2358
+ #: wppa-album-covers.php:1753
2359
  msgid "Browse photos"
2360
  msgstr "Se fotos"
2361
 
2362
+ #: wppa-album-covers.php:1790 wppa-breadcrumb.php:394 wppa-breadcrumb.php:402
2363
  #: wppa-breadcrumb.php:439 wppa-breadcrumb.php:445
2364
  msgid "Category:"
2365
  msgid_plural "Categories:"
2374
  msgid "Album navigator"
2375
  msgstr ""
2376
 
2377
+ #: wppa-album-navigator-widget.php:96 wppa-album-widget.php:325
2378
  msgid "Album selection or Parent album:"
2379
  msgstr ""
2380
 
2381
+ #: wppa-album-navigator-widget.php:99 wppa-album-widget.php:328
2382
  msgid "--- all albums ---"
2383
  msgstr ""
2384
 
2385
+ #: wppa-album-navigator-widget.php:100 wppa-album-widget.php:329
2386
  msgid "--- all generic albums ---"
2387
  msgstr ""
2388
 
2389
+ #: wppa-album-navigator-widget.php:101 wppa-album-widget.php:330
2390
  msgid "--- all separate albums ---"
2391
  msgstr ""
2392
 
2393
+ #: wppa-album-navigator-widget.php:102 wppa-common-functions.php:1683
2394
  #: wppa-items.php:436
2395
  msgid "--- owner/public ---"
2396
  msgstr "---ejer/offentlige---"
2397
 
2398
+ #: wppa-album-navigator-widget.php:114 wppa-album-widget.php:350
2399
  msgid "Skip \"empty\" albums:"
2400
  msgstr ""
2401
 
2402
+ #: wppa-album-navigator-widget.php:116 wppa-album-widget.php:345
2403
+ #: wppa-album-widget.php:352 wppa-lasten-widget.php:236
2404
  #: wppa-slideshow-widget.php:206 wppa-slideshow-widget.php:226
2405
  #: wppa-slideshow-widget.php:233 wppa-slideshow-widget.php:240
2406
  #: wppa-slideshow-widget.php:247 wppa-slideshow-widget.php:254
2408
  msgid "no."
2409
  msgstr ""
2410
 
2411
+ #: wppa-album-navigator-widget.php:117 wppa-album-widget.php:346
2412
+ #: wppa-album-widget.php:353 wppa-lasten-widget.php:237
2413
  #: wppa-slideshow-widget.php:207 wppa-slideshow-widget.php:227
2414
  #: wppa-slideshow-widget.php:234 wppa-slideshow-widget.php:241
2415
  #: wppa-slideshow-widget.php:248 wppa-slideshow-widget.php:255
2421
  msgid "WPPA+ Albums"
2422
  msgstr ""
2423
 
2424
+ #: wppa-album-widget.php:16 wppa-album-widget.php:315
2425
  msgid "Thumbnail Albums"
2426
  msgstr ""
2427
 
2430
  msgid "Upload at least %d photos to this album!"
2431
  msgstr ""
2432
 
2433
+ #: wppa-album-widget.php:331
2434
  msgid "--- most recently added albums ---"
2435
  msgstr ""
2436
 
2437
+ #: wppa-album-widget.php:343
2438
  msgid "Show album names:"
2439
  msgstr ""
2440
 
2441
+ #: wppa-album-widget.php:357 wppa-comment-widget.php:120
2442
  #: wppa-featen-widget.php:187 wppa-lasten-widget.php:241
2443
  #: wppa-thumbnail-widget.php:232 wppa-topten-widget.php:392
2444
  msgid ""
2503
  msgid "Mean value"
2504
  msgstr ""
2505
 
2506
+ #: wppa-bestof-widget.php:178 wppa-potd-admin.php:132
2507
+ #: wppa-topten-widget.php:364
2508
  msgid "Subtitle:"
2509
  msgstr ""
2510
 
2520
  msgid "Rating count:"
2521
  msgstr ""
2522
 
2523
+ #: wppa-bestof-widget.php:198 wppa-common-functions.php:1665
2524
+ #: wppa-import.php:1604 wppa-items.php:424 wppa-potd-admin.php:100
2525
+ #: wppa-potd-admin.php:136 wppa-settings-autosave.php:1393
2526
+ #: wppa-settings-autosave.php:1742 wppa-settings-autosave.php:1947
2527
+ #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:3827
2528
+ #: wppa-settings-autosave.php:4015 wppa-settings-autosave.php:4129
2529
+ #: wppa-settings-autosave.php:5656 wppa-settings-autosave.php:6389
2530
+ #: wppa-settings-autosave.php:7798 wppa-settings-autosave.php:8017
2531
+ #: wppa-settings-autosave.php:8073 wppa-settings-autosave.php:8936
2532
+ #: wppa-settings-autosave.php:9093 wppa-thumbnail-widget.php:200
2533
+ #: wppa-tinymce-scripts.php:287 wppa-tinymce-shortcodes.php:616
2534
+ #: wppa-watermark.php:519
2535
  msgid "--- none ---"
2536
  msgstr "--- ingen ---"
2537
 
2560
  msgstr "Foto søgeresultater"
2561
 
2562
  #: wppa-boxes-html.php:383 wppa-breadcrumb.php:143
2563
+ #: wppa-settings-autosave.php:369
2564
  msgid "Albums"
2565
  msgstr "Album"
2566
 
2573
  msgstr "Kategori"
2574
 
2575
  #: wppa-boxes-html.php:421 wppa-boxes-html.php:554
2576
+ #: wppa-settings-autosave.php:7913 wppa-settings-autosave.php:7924
2577
  msgid "Text"
2578
  msgstr "Tekst"
2579
 
2587
  msgid "Items must meet all selected options."
2588
  msgstr "Elementer skal opfylde alle valgte indstillinger."
2589
 
2590
+ #: wppa-boxes-html.php:546 wppa-settings-autosave.php:9197
2591
+ #: wppa-settings-autosave.php:9237 wppa-settings-autosave.php:9259
2592
+ #: wppa-settings-autosave.php:9305
2593
  msgid "Tag"
2594
  msgstr "Tag"
2595
 
2610
  msgid "Super View Photos"
2611
  msgstr "Super View Billeder"
2612
 
2613
+ #: wppa-boxes-html.php:836 wppa-settings-autosave.php:385
2614
+ #: wppa-settings-autosave.php:4887
2615
  msgid "Thumbnails"
2616
  msgstr "Miniatyrbilder"
2617
 
2659
  msgid "Social media landing page"
2660
  msgstr "Sociale medier destinationsside"
2661
 
2662
+ #: wppa-boxes-html.php:1279 wppa-utils.php:1738
2663
  #, php-format
2664
  msgid "See this image on %s"
2665
  msgstr "Se dette billed p&aring; %s"
2699
  msgid "Comment on Facebook:"
2700
  msgstr "Kommentar på Facebook:"
2701
 
2702
+ #: wppa-boxes-html.php:1653 wppa-import.php:1305
2703
  msgid "Working..."
2704
  msgstr "Arbejder…"
2705
 
2706
+ #: wppa-boxes-html.php:1750
2707
+ msgid "Create Sub Album"
2708
+ msgstr ""
2709
 
2710
  #: wppa-boxes-html.php:1750
2711
  msgid "Create Album"
2712
  msgstr "Opret album"
2713
 
2714
+ #: wppa-boxes-html.php:1797
2715
  msgid "Enter album name."
2716
  msgstr "Indtast albummets navn."
2717
 
2718
+ #: wppa-boxes-html.php:1799 wppa-boxes-html.php:2661
2719
  msgid "Don't leave this blank!"
2720
  msgstr "Lad ikke dette tomt!"
2721
 
2722
+ #: wppa-boxes-html.php:1820
2723
  msgid "Enter album description"
2724
  msgstr "Indtast album beskrivelse"
2725
 
2726
+ #: wppa-boxes-html.php:1848
2727
  msgid "Create album"
2728
  msgstr "Opret album"
2729
 
2730
+ #: wppa-boxes-html.php:1951 wppa-boxes-html.php:1965 wppa-functions.php:4512
2731
  msgid "Max uploads reached"
2732
  msgstr "Maks. antal indsendinger er opn&aring;et"
2733
 
2734
+ #: wppa-boxes-html.php:2030 wppa-upload.php:181
2735
  msgid "Upload Photo"
2736
  msgstr "Indsend foto"
2737
 
2738
+ #: wppa-boxes-html.php:2112
2739
  msgid "Select Photo / Video / Camera"
2740
  msgstr ""
2741
 
2742
+ #: wppa-boxes-html.php:2115
2743
  msgid "Select Photo / Camera"
2744
  msgstr ""
2745
 
2746
+ #: wppa-boxes-html.php:2120
2747
  msgid "Select Photo / Video"
2748
  msgstr ""
2749
 
2750
+ #: wppa-boxes-html.php:2123
2751
  msgid "Select Photo"
2752
  msgstr ""
2753
 
2754
+ #: wppa-boxes-html.php:2130
2755
  msgid "Select Photos / Video / Camera"
2756
  msgstr ""
2757
 
2758
+ #: wppa-boxes-html.php:2133
2759
  msgid "Select Photos / Camera"
2760
  msgstr ""
2761
 
2762
+ #: wppa-boxes-html.php:2138
2763
  msgid "Select Photos / Video"
2764
  msgstr ""
2765
 
2766
+ #: wppa-boxes-html.php:2141
2767
  msgid "Select Photos"
2768
  msgstr ""
2769
 
2770
+ #: wppa-boxes-html.php:2179
2771
  #, php-format
2772
  msgid "You may upload %d photo"
2773
  msgid_plural ""
2776
  msgstr[0] ""
2777
  msgstr[1] ""
2778
 
2779
+ #: wppa-boxes-html.php:2187
2780
  #, php-format
2781
  msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
2782
  msgstr "Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
2783
 
2784
+ #: wppa-boxes-html.php:2216 wppa-import.php:561 wppa-upload.php:167
2785
+ #: wppa-upload.php:309 wppa-upload.php:383
2786
  msgid "Apply watermark file:"
2787
  msgstr "Inds&aelig;t vandm&aelig;rke:"
2788
 
2789
+ #: wppa-boxes-html.php:2238 wppa-import.php:565 wppa-upload.php:171
2790
+ #: wppa-upload.php:313 wppa-upload.php:387
2791
  msgid "Position:"
2792
  msgstr "Position:"
2793
 
2794
+ #: wppa-boxes-html.php:2266
2795
  msgid ""
2796
  "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
2797
  "photoname if available, else the original filename will be used as photo "
2801
  "som photoname hvis tilgængelig, ellers det oprindelige filnavn vil blive "
2802
  "brugt som foto navn."
2803
 
2804
+ #: wppa-boxes-html.php:2271
2805
  msgid ""
2806
  "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
2807
  "available, else the original filename will be used as photo name."
2810
  "photoname hvis tilgængelig, ellers det oprindelige filnavn vil blive brugt "
2811
  "som foto navn."
2812
 
2813
+ #: wppa-boxes-html.php:2276
2814
  msgid ""
2815
  "If you leave this blank, the original filename will be used as photo name."
2816
  msgstr ""
2817
  "Hvis du ikke udfylder dette felt, s&aring; vil filens navn blive brugt som "
2818
  "foto navn"
2819
 
2820
+ #: wppa-boxes-html.php:2281 wppa-settings-autosave.php:1681
2821
  msgid "Photo name"
2822
  msgstr ""
2823
 
2824
+ #: wppa-boxes-html.php:2299
2825
  msgid "Photo description"
2826
  msgstr ""
2827
 
2828
+ #: wppa-boxes-html.php:2327
2829
  msgid "hidden"
2830
  msgstr "skjult"
2831
 
2832
+ #: wppa-boxes-html.php:2397
2833
  msgid "Preview tags:"
2834
  msgstr "Eksempel tags:"
2835
 
2836
+ #: wppa-boxes-html.php:2414
2837
+ msgid "Blog it?"
2838
+ msgstr ""
2839
+
2840
+ #: wppa-boxes-html.php:2424
2841
+ msgid "Upload and blog"
2842
+ msgstr ""
2843
 
2844
+ #: wppa-boxes-html.php:2428 wppa-boxes-html.php:2491
2845
  msgid "Upload photo"
2846
  msgstr "Upload foto"
2847
 
2848
+ #: wppa-boxes-html.php:2436
2849
+ msgid "Post title:"
2850
+ msgstr ""
2851
+
2852
+ #: wppa-boxes-html.php:2446
2853
+ msgid "Text BEFORE the image:"
2854
+ msgstr ""
2855
+
2856
+ #: wppa-boxes-html.php:2456
2857
+ msgid "Text AFTER the image:"
2858
+ msgstr ""
2859
+
2860
+ #: wppa-boxes-html.php:2476
2861
+ msgid "Please select an album and try again"
2862
+ msgstr "Vælg et album, og prøv igen"
2863
+
2864
+ #: wppa-boxes-html.php:2547
2865
  msgid "ERROR: unable to upload files."
2866
  msgstr "FEJL: ude af stand til at uploade filer."
2867
 
2868
+ #: wppa-boxes-html.php:2601
2869
+ msgid "Edit Album Info"
2870
+ msgstr ""
2871
 
2872
+ #: wppa-boxes-html.php:2659
2873
  msgid "Enter album name"
2874
  msgstr "Indtast albummets navn"
2875
 
2876
+ #: wppa-boxes-html.php:2681
2877
  msgid "Album description:"
2878
  msgstr "Album beskrivelse:"
2879
 
2880
+ #: wppa-boxes-html.php:2735
2881
  msgid "Update album"
2882
  msgstr "Opdater album"
2883
 
2884
+ #: wppa-boxes-html.php:2804
2885
  msgid "wrote:"
2886
  msgstr "skrev:"
2887
 
2888
+ #: wppa-boxes-html.php:2866
2889
  msgid "Avatar"
2890
  msgstr "Profilbillede"
2891
 
2892
+ #: wppa-boxes-html.php:2909 wppa-links.php:826
2893
  msgid "Awaiting moderation"
2894
  msgstr "Venter p&aring; godkendelse"
2895
 
2896
+ #: wppa-boxes-html.php:2912
2897
  msgid "Marked as spam"
2898
  msgstr "Markeret som spam"
2899
 
2900
+ #: wppa-boxes-html.php:2936
2901
  msgid "Edit!"
2902
  msgstr "Rediger!"
2903
 
2904
+ #: wppa-boxes-html.php:2940
2905
  msgid "Send!"
2906
  msgstr "Send"
2907
 
2908
+ #: wppa-boxes-html.php:3001
2909
  msgid "Your name:"
2910
  msgstr "Dit navn"
2911
 
2912
+ #: wppa-boxes-html.php:3016
2913
  msgid "Your email:"
2914
  msgstr "Din email"
2915
 
2916
+ #: wppa-boxes-html.php:3032
2917
  msgid "Your comment:"
2918
  msgstr "Din kommentar"
2919
 
2920
+ #: wppa-boxes-html.php:3076
2921
  #, php-format
2922
  msgid "You must <a href=\"%s\">login</a> to enter a comment"
2923
  msgstr "Du skal <a href=\"%s\">logge ind</a> for at indtaste en kommentar"
2924
 
2925
+ #: wppa-boxes-html.php:3079
2926
  msgid "You must login to enter a comment"
2927
  msgstr "Du skal logge ind for at indtaste en kommentar"
2928
 
2929
+ #: wppa-boxes-html.php:3091 wppa-functions.php:2568 wppa-thumbnails.php:682
2930
  #, php-format
2931
  msgid "%d comment"
2932
  msgid_plural "%d comments"
2933
  msgstr[0] "%d kommentar"
2934
  msgstr[1] "%d kommentarer"
2935
 
2936
+ #: wppa-boxes-html.php:3095
2937
  msgid "Leave a comment"
2938
  msgstr "Skriv en kommentar"
2939
 
2940
+ #: wppa-boxes-html.php:3192
2941
  msgid "Show IPTC data"
2942
  msgstr "Vis IPTC data"
2943
 
2944
+ #: wppa-boxes-html.php:3203
2945
  msgid "Hide IPTC data"
2946
  msgstr "Skjul IPTC data"
2947
 
2948
+ #: wppa-boxes-html.php:3251
2949
  msgid "No IPTC data"
2950
  msgstr "Ingen IPTC data"
2951
 
2952
+ #: wppa-boxes-html.php:3303
2953
  msgid "Show EXIF data"
2954
  msgstr "Vis EXIF data"
2955
 
2956
+ #: wppa-boxes-html.php:3314
2957
  msgid "Hide EXIF data"
2958
  msgstr "Skjul EXIF data"
2959
 
2960
+ #: wppa-boxes-html.php:3366
2961
  msgid "No EXIF data"
2962
  msgstr "Ingen EXIF data"
2963
 
2964
+ #: wppa-boxes-html.php:3480 wppa-boxes-html.php:3485
2965
  msgid "< Previous"
2966
  msgstr "< Forrige"
2967
 
2968
+ #: wppa-boxes-html.php:3491 wppa-boxes-html.php:3496
2969
  msgid "Next >"
2970
  msgstr "Næste >"
2971
 
2972
+ #: wppa-boxes-html.php:3598 wppa-boxes-html.php:3677
2973
  msgid "See the authors albums"
2974
  msgstr "Se forfatternes album"
2975
 
2976
+ #: wppa-boxes-html.php:3602 wppa-boxes-html.php:3610 wppa-boxes-html.php:3681
2977
  msgid "See the authors photos"
2978
  msgstr "Se forfatternes billeder"
2979
 
2980
+ #: wppa-boxes-html.php:3606 wppa-boxes-html.php:3614 wppa-boxes-html.php:3685
2981
  msgid "See all the authors photos"
2982
  msgstr "Se alle forfatternes billeder"
2983
 
2984
+ #: wppa-boxes-html.php:3640
2985
  #, php-format
2986
  msgid "Photo by: %s"
2987
  msgstr "Foto af: %s"
2988
 
2989
+ #: wppa-boxes-html.php:3643 wppa-boxes-html.php:3706
2990
  #, php-format
2991
  msgid "%d max rating"
2992
  msgid_plural "%d max ratings"
2993
  msgstr[0] ""
2994
  msgstr[1] ""
2995
 
2996
+ #: wppa-boxes-html.php:3647 wppa-boxes-html.php:3710 wppa-non-admin.php:922
2997
  #: wppa-topten-widget.php:196 wppa-topten-widget.php:213
2998
  #: wppa-topten-widget.php:249
2999
  #, php-format
3002
  msgstr[0] ""
3003
  msgstr[1] ""
3004
 
3005
+ #: wppa-boxes-html.php:3651
3006
  #, php-format
3007
  msgid "Rating: %4.2f."
3008
  msgstr ""
3009
 
3010
+ #: wppa-boxes-html.php:3659
3011
  #, php-format
3012
  msgid "Photo %s not found."
3013
  msgstr "Foto %s ikke fundet."
3014
 
3015
+ #: wppa-boxes-html.php:3714
3016
  #, php-format
3017
  msgid "Mean value: %4.2f."
3018
  msgstr "Middelværdi: %4.2f."
3019
 
3020
+ #: wppa-boxes-html.php:4061 wppa-photo-admin-autosave.php:196
3021
  msgid "Refresh"
3022
  msgstr "Opdater"
3023
 
3214
  msgid "Email:"
3215
  msgstr ""
3216
 
3217
+ #: wppa-comment-admin.php:80 wppa-utils.php:1037
3218
  msgid "Comment:"
3219
  msgstr ""
3220
 
3221
+ #: wppa-comment-admin.php:86
 
3222
  msgid "Save Changes"
3223
  msgstr ""
3224
 
3277
  msgid "Linkpage:"
3278
  msgstr ""
3279
 
3280
+ #: wppa-comment-admin.php:231 wppa-settings-autosave.php:465
3281
+ #: wppa-settings-autosave.php:8191
3282
  msgid "--- Please select a page ---"
3283
  msgstr ""
3284
 
3340
  msgid "Save Settings / Perform bulk action"
3341
  msgstr ""
3342
 
3343
+ #: wppa-comment-admin.php:309 wppa-comment-admin.php:396 wppa-non-admin.php:758
3344
  msgid "Photo"
3345
  msgstr "Foto"
3346
 
3348
  msgid "(Album)"
3349
  msgstr ""
3350
 
3351
+ #: wppa-comment-admin.php:311 wppa-comment-admin.php:398 wppa-potd-admin.php:70
3352
+ #: wppa-potd-admin.php:357 wppa-settings-autosave.php:514
3353
+ #: wppa-settings-autosave.php:676 wppa-settings-autosave.php:698
3354
+ #: wppa-settings-autosave.php:1446 wppa-settings-autosave.php:1467
3355
+ #: wppa-settings-autosave.php:3092 wppa-settings-autosave.php:3113
3356
+ #: wppa-settings-autosave.php:3450 wppa-settings-autosave.php:3474
3357
+ #: wppa-settings-autosave.php:4779 wppa-settings-autosave.php:4800
3358
+ #: wppa-settings-autosave.php:4976 wppa-settings-autosave.php:5000
3359
+ #: wppa-settings-autosave.php:6006 wppa-settings-autosave.php:6677
3360
+ #: wppa-settings-autosave.php:6699 wppa-settings-autosave.php:7429
3361
+ #: wppa-settings-autosave.php:7453 wppa-settings-autosave.php:9175
3362
+ #: wppa-settings-autosave.php:9196 wppa-settings-autosave.php:9236
3363
+ #: wppa-settings-autosave.php:9258 wppa-settings-autosave.php:9304
3364
  msgid "#"
3365
  msgstr ""
3366
 
3393
  msgid "Reply to your comment on photo: %s on %s"
3394
  msgstr ""
3395
 
3396
+ #: wppa-comment-admin.php:366 wppa-functions.php:2361
3397
  msgid "Reply"
3398
  msgstr "Besvar"
3399
 
3430
  msgid "Comments on Photos"
3431
  msgstr ""
3432
 
3433
+ #: wppa-comment-widget.php:73 wppa-non-admin.php:892 wppa-thumbnails.php:500
3434
  msgid "wrote"
3435
  msgstr "skrev"
3436
 
3437
  #: wppa-comment-widget.php:87 wppa-featen-widget.php:137
3438
+ #: wppa-lasten-widget.php:148 wppa-non-admin.php:893 wppa-non-admin.php:898
3439
+ #: wppa-non-admin.php:903 wppa-non-admin.php:907 wppa-non-admin.php:914
3440
+ #: wppa-non-admin.php:924 wppa-potd-widget.php:159
3441
  #: wppa-thumbnail-widget.php:114 wppa-topten-widget.php:257
3442
  msgid "Photo not found"
3443
  msgstr "Foto ikke fundet"
3444
 
3445
+ #: wppa-comment-widget.php:93 wppa-non-admin.php:894
3446
  msgid "There are no commented photos (yet)"
3447
  msgstr ""
3448
 
3449
+ #: wppa-common-functions.php:635 wppa-functions.php:4930
 
 
 
 
3450
  #, php-format
3451
  msgid "%d second"
3452
  msgid_plural "%d seconds"
3453
  msgstr[0] ""
3454
  msgstr[1] ""
3455
 
3456
+ #: wppa-common-functions.php:639 wppa-functions.php:4926
3457
+ #: wppa-settings-autosave.php:6522 wppa-settings-autosave.php:6523
3458
  #, php-format
3459
  msgid "%d minute"
3460
  msgid_plural "%d minutes"
3461
  msgstr[0] ""
3462
  msgstr[1] ""
3463
 
3464
+ #: wppa-common-functions.php:643 wppa-functions.php:4922
3465
+ #: wppa-settings-autosave.php:6524 wppa-settings-autosave.php:7808
3466
  #, php-format
3467
  msgid "%d hour"
3468
  msgid_plural "%d hours"
3469
  msgstr[0] ""
3470
  msgstr[1] ""
3471
 
3472
+ #: wppa-common-functions.php:647 wppa-functions.php:4918
3473
+ #: wppa-settings-autosave.php:6525 wppa-settings-autosave.php:7809
3474
+ #: wppa-settings-autosave.php:7810 wppa-settings-autosave.php:7811
3475
+ #: wppa-settings-autosave.php:7812 wppa-settings-autosave.php:7813
3476
+ #: wppa-settings-autosave.php:7814 wppa-settings-autosave.php:7816
3477
+ #: wppa-settings-autosave.php:7817 wppa-settings-autosave.php:7818
3478
+ #: wppa-settings-autosave.php:8996
3479
  #, php-format
3480
  msgid "%d day"
3481
  msgid_plural "%d days"
3482
  msgstr[0] ""
3483
  msgstr[1] ""
3484
 
3485
+ #: wppa-common-functions.php:651 wppa-functions.php:4914
3486
+ #: wppa-settings-autosave.php:6526 wppa-settings-autosave.php:7815
3487
+ #: wppa-settings-autosave.php:7819 wppa-settings-autosave.php:7820
3488
+ #: wppa-settings-autosave.php:7821 wppa-settings-autosave.php:8997
3489
  #, php-format
3490
  msgid "%d week"
3491
  msgid_plural "%d weeks"
3492
  msgstr[0] ""
3493
  msgstr[1] ""
3494
 
3495
+ #: wppa-common-functions.php:655 wppa-settings-autosave.php:7822
3496
+ #: wppa-settings-autosave.php:8998 wppa-settings-autosave.php:8999
3497
+ #: wppa-settings-autosave.php:9000 wppa-settings-autosave.php:9001
3498
+ #: wppa-settings-autosave.php:9002 wppa-settings-autosave.php:9004
3499
  #, php-format
3500
  msgid "%d month"
3501
  msgid_plural "%d months"
3502
  msgstr[0] ""
3503
  msgstr[1] ""
3504
 
3505
+ #: wppa-common-functions.php:658 wppa-settings-autosave.php:9003
3506
+ #: wppa-settings-autosave.php:9005
3507
  #, php-format
3508
  msgid "%d year"
3509
  msgid_plural "%d years"
3510
  msgstr[0] ""
3511
  msgstr[1] ""
3512
 
3513
+ #: wppa-common-functions.php:1381
3514
  #, php-format
3515
  msgid ""
3516
  "Based on your server memory limit you should not upload images larger then "
3519
  "Baseret på din server hukommelse grænse bør du ikke uploade billeder større "
3520
  "derefter <strong>%d x %d (% 2.1f MP)</strong>"
3521
 
3522
+ #: wppa-common-functions.php:1659
3523
  msgid "- select an album -"
3524
  msgstr "- vælg et album -"
3525
 
3526
+ #: wppa-common-functions.php:1671 wppa-items.php:432
3527
  #: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
3528
  #: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
3529
  #: wppa-tagcloud-widget.php:79
3530
  msgid "--- all ---"
3531
  msgstr "--- alle ---"
3532
 
3533
+ #: wppa-common-functions.php:1677
3534
  msgid "--- generic ---"
3535
  msgstr "--- generisk ---"
3536
 
3537
+ #: wppa-common-functions.php:1694
3538
  msgid "--- multiple see below ---"
3539
  msgstr "--- multipel se nedenfor ---"
3540
 
3541
+ #: wppa-common-functions.php:1700
3542
  msgid "--- a selection box ---"
3543
  msgstr "--- et valgboksen ---"
3544
 
3545
+ #: wppa-common-functions.php:1747 wppa-import.php:1605 wppa-items.php:428
3546
+ #: wppa-settings-autosave.php:8017 wppa-settings-autosave.php:8073
 
3547
  msgid "--- separate ---"
3548
  msgstr "--- adskille ---"
3549
 
3550
+ #: wppa-common-functions.php:1853
3551
  msgid "Photo id ="
3552
  msgstr "Foto id ="
3553
 
3554
+ #: wppa-common-functions.php:1853
3555
  msgid "Value ="
3556
  msgstr "Værdi ="
3557
 
3558
+ #: wppa-date-time.php:85 wppa-date-time.php:210
3559
  msgid "Jan"
3560
  msgstr ""
3561
 
3562
+ #: wppa-date-time.php:85 wppa-date-time.php:210
3563
  msgid "Feb"
3564
  msgstr ""
3565
 
3566
+ #: wppa-date-time.php:85 wppa-date-time.php:210
3567
  msgid "Mar"
3568
  msgstr ""
3569
 
3570
+ #: wppa-date-time.php:85 wppa-date-time.php:210
3571
  msgid "Apr"
3572
  msgstr ""
3573
 
3574
+ #: wppa-date-time.php:85 wppa-date-time.php:210
3575
  msgid "May"
3576
  msgstr ""
3577
 
3578
+ #: wppa-date-time.php:85 wppa-date-time.php:210
3579
  msgid "Jun"
3580
  msgstr ""
3581
 
3582
+ #: wppa-date-time.php:85 wppa-date-time.php:210
3583
  msgid "Jul"
3584
  msgstr ""
3585
 
3586
+ #: wppa-date-time.php:85 wppa-date-time.php:210
3587
  msgid "Aug"
3588
  msgstr ""
3589
 
3590
+ #: wppa-date-time.php:85 wppa-date-time.php:210
3591
  msgid "Sep"
3592
  msgstr ""
3593
 
3594
+ #: wppa-date-time.php:85 wppa-date-time.php:210
3595
  msgid "Oct"
3596
  msgstr ""
3597
 
3598
+ #: wppa-date-time.php:85 wppa-date-time.php:210
3599
  msgid "Nov"
3600
  msgstr ""
3601
 
3602
+ #: wppa-date-time.php:85 wppa-date-time.php:210
3603
  msgid "Dec"
3604
  msgstr ""
3605
 
3615
  msgid "n.a."
3616
  msgstr "n.a."
3617
 
3618
+ #: wppa-exif-iptc-common.php:239 wppa-utils.php:2625
3619
  msgid "Not Defined"
3620
  msgstr "Ikke Defineret"
3621
 
3622
+ #: wppa-exif-iptc-common.php:240 wppa-utils.php:2626
3623
  msgid "Manual"
3624
  msgstr "Manual"
3625
 
3626
+ #: wppa-exif-iptc-common.php:241 wppa-utils.php:2627
3627
  msgid "Program AE"
3628
  msgstr "Program AE"
3629
 
3630
+ #: wppa-exif-iptc-common.php:242 wppa-utils.php:2628
3631
  msgid "Aperture-priority AE"
3632
  msgstr "Bl&aelig;ndeprioriteret AE"
3633
 
3634
+ #: wppa-exif-iptc-common.php:243 wppa-utils.php:2629
3635
  msgid "Shutter speed priority AE"
3636
  msgstr "Lukkerhastighedsprioritet AE"
3637
 
3638
+ #: wppa-exif-iptc-common.php:244 wppa-utils.php:2630
3639
  msgid "Creative (Slow speed)"
3640
  msgstr "Kreativ (Langsom hastighed)"
3641
 
3642
+ #: wppa-exif-iptc-common.php:245 wppa-utils.php:2631
3643
  msgid "Action (High speed)"
3644
  msgstr "Handling (h&oslash;j hastighed)"
3645
 
3646
+ #: wppa-exif-iptc-common.php:246 wppa-utils.php:2632
3647
  msgid "Portrait"
3648
  msgstr "Portr&aelig;t"
3649
 
3650
+ #: wppa-exif-iptc-common.php:247 wppa-utils.php:2633
3651
  msgid "Landscape"
3652
  msgstr "Landskab"
3653
 
3654
+ #: wppa-exif-iptc-common.php:248 wppa-utils.php:2634
3655
  msgid "Bulb"
3656
  msgstr "Bulb"
3657
 
3658
+ #: wppa-exif-iptc-common.php:270 wppa-utils.php:2635
3659
  msgid "Average"
3660
  msgstr "gennemsnitlig"
3661
 
3662
+ #: wppa-exif-iptc-common.php:271 wppa-utils.php:2636
3663
  msgid "Center-weighted average"
3664
  msgstr "Centerv&aelig;gtet gennemsnit"
3665
 
3666
+ #: wppa-exif-iptc-common.php:272 wppa-utils.php:2637
3667
  msgid "Spot"
3668
  msgstr "Spot"
3669
 
3670
+ #: wppa-exif-iptc-common.php:273 wppa-utils.php:2638
3671
  msgid "Multi-spot"
3672
  msgstr "Multi-spot"
3673
 
3674
+ #: wppa-exif-iptc-common.php:274 wppa-utils.php:2639
3675
  msgid "Multi-segment"
3676
  msgstr "Multi-segment"
3677
 
3678
+ #: wppa-exif-iptc-common.php:275 wppa-utils.php:2640
3679
  msgid "Partial"
3680
  msgstr "Delvist"
3681
 
3682
+ #: wppa-exif-iptc-common.php:276 wppa-settings-autosave.php:4904
3683
+ #: wppa-utils.php:2641
3684
  msgid "Other"
3685
  msgstr "Andet"
3686
 
3687
+ #: wppa-exif-iptc-common.php:312 wppa-utils.php:2642
3688
  msgid "No Flash"
3689
  msgstr "Ingen blitz"
3690
 
3691
+ #: wppa-exif-iptc-common.php:314 wppa-utils.php:2643
3692
  msgid "Fired"
3693
  msgstr "Afskudt"
3694
 
3695
+ #: wppa-exif-iptc-common.php:316 wppa-utils.php:2644
3696
  msgid "Fired, Return not detected"
3697
  msgstr "Afskudt, returnering er ikke opdaget "
3698
 
3699
+ #: wppa-exif-iptc-common.php:318 wppa-utils.php:2645
3700
  msgid "Fired, Return detected"
3701
  msgstr "Afskudt, returnering er opdaget "
3702
 
3703
+ #: wppa-exif-iptc-common.php:320 wppa-utils.php:2646
3704
  msgid "On, Did not fire"
3705
  msgstr "Tilsluttet, afsk&oslash;d ikke"
3706
 
3707
+ #: wppa-exif-iptc-common.php:322 wppa-utils.php:2647
3708
  msgid "On, Fired"
3709
  msgstr "Tilsluttet, afskudt"
3710
 
3711
+ #: wppa-exif-iptc-common.php:324 wppa-utils.php:2648
3712
  msgid "On, Return not detected"
3713
  msgstr "Tilsluttet, returnering er ikke opdaget "
3714
 
3715
+ #: wppa-exif-iptc-common.php:326 wppa-utils.php:2649
3716
  msgid "On, Return detected"
3717
  msgstr "Tilsluttet, returnering er opdaget "
3718
 
3719
+ #: wppa-exif-iptc-common.php:328 wppa-utils.php:2650
3720
  msgid "Off, Did not fire"
3721
  msgstr "Slukket, afsk&oslash;d ikke"
3722
 
3723
+ #: wppa-exif-iptc-common.php:330 wppa-utils.php:2651
3724
  msgid "Off, Did not fire, Return not detected"
3725
  msgstr "Slukket, afsk&oslash;d ikke, returnering er ikke opdaget "
3726
 
3727
+ #: wppa-exif-iptc-common.php:332 wppa-utils.php:2652
3728
  msgid "Auto, Did not fire"
3729
  msgstr "Automatisk, afsk&oslash;d ikke"
3730
 
3731
+ #: wppa-exif-iptc-common.php:334 wppa-utils.php:2653
3732
  msgid "Auto, Fired"
3733
  msgstr "Automatisk, afskudt"
3734
 
3735
+ #: wppa-exif-iptc-common.php:336 wppa-utils.php:2654
3736
  msgid "Auto, Fired, Return not detected"
3737
  msgstr "Automatisk, afskudt, returnering er ikke opdaget "
3738
 
3739
+ #: wppa-exif-iptc-common.php:338 wppa-utils.php:2655
3740
  msgid "Auto, Fired, Return detected"
3741
  msgstr "Automatisk, afskudt, returnering er opdaget "
3742
 
3743
+ #: wppa-exif-iptc-common.php:340 wppa-utils.php:2656
3744
  msgid "No flash function"
3745
  msgstr "Ingen blitz funktion"
3746
 
3747
+ #: wppa-exif-iptc-common.php:342 wppa-utils.php:2657
3748
  msgid "Off, No flash function"
3749
  msgstr "Slukket, ingen blitz funktion"
3750
 
3751
+ #: wppa-exif-iptc-common.php:344 wppa-utils.php:2658
3752
  msgid "Fired, Red-eye reduction"
3753
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion"
3754
 
3755
+ #: wppa-exif-iptc-common.php:346 wppa-utils.php:2659
3756
  msgid "Fired, Red-eye reduction, Return not detected"
3757
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion, returnering er ikke opdaget "
3758
 
3759
+ #: wppa-exif-iptc-common.php:348 wppa-utils.php:2660
3760
  msgid "Fired, Red-eye reduction, Return detected"
3761
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3762
 
3763
+ #: wppa-exif-iptc-common.php:350 wppa-utils.php:2661
3764
  msgid "On, Red-eye reduction"
3765
  msgstr "Tilstuttet, R&oslash;d-&oslash;je reduktion"
3766
 
3767
+ #: wppa-exif-iptc-common.php:352 wppa-utils.php:2662
3768
  msgid "Red-eye reduction, Return not detected"
3769
  msgstr "R&oslash;d-&oslash;je reduktion, returnering er ikke opdaget "
3770
 
3771
+ #: wppa-exif-iptc-common.php:354 wppa-utils.php:2663
3772
  msgid "On, Red-eye reduction, Return detected"
3773
  msgstr "Tilstuttet, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3774
 
3775
+ #: wppa-exif-iptc-common.php:356 wppa-utils.php:2664
3776
  msgid "Off, Red-eye reduction"
3777
  msgstr "Slukket, R&oslash;d-&oslash;je reduktion"
3778
 
3779
+ #: wppa-exif-iptc-common.php:358 wppa-utils.php:2665
3780
  msgid "Auto, Did not fire, Red-eye reduction"
3781
  msgstr "Automatisk, Afsk&oslash;d ikke, R&oslash;d-&oslash;je reduktion"
3782
 
3783
+ #: wppa-exif-iptc-common.php:360 wppa-utils.php:2666
3784
  msgid "Auto, Fired, Red-eye reduction"
3785
  msgstr "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion"
3786
 
3787
+ #: wppa-exif-iptc-common.php:362 wppa-utils.php:2667
3788
  msgid "Auto, Fired, Red-eye reduction, Return not detected"
3789
  msgstr ""
3790
  "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion, returnering er ikke "
3791
  "opdaget "
3792
 
3793
+ #: wppa-exif-iptc-common.php:364 wppa-utils.php:2668
3794
  msgid "Auto, Fired, Red-eye reduction, Return detected"
3795
  msgstr ""
3796
  "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3842
  msgid "done."
3843
  msgstr ""
3844
 
3845
+ #: wppa-export.php:129 wppa-import.php:2231
3846
  msgid "photos processed."
3847
  msgstr ""
3848
 
3895
  msgid "Featured Photos"
3896
  msgstr ""
3897
 
3898
+ #: wppa-featen-widget.php:115 wppa-non-admin.php:897
3899
  msgid "View the featured photos"
3900
  msgstr ""
3901
 
3902
+ #: wppa-featen-widget.php:146 wppa-non-admin.php:899
3903
  msgid "There are no featured photos (yet)"
3904
  msgstr ""
3905
 
3906
+ #: wppa-functions.php:681
3907
  msgid "No related photos found."
3908
  msgstr "Ingen relaterede billeder fundet."
3909
 
3910
+ #: wppa-functions.php:1055
3911
  #, php-format
3912
  msgid ""
3913
  "There are %s albums found. Only the first %s will be shown. Please refine "
3916
  "Der er %s album fundet. Kun den første %s vil blive vist. Venligst forfine "
3917
  "dine søgekriterier."
3918
 
3919
+ #: wppa-functions.php:2112 wppa-links.php:775 wppa-links.php:792
3920
+ #: wppa-thumbnails.php:627
3921
  msgid "Are you sure you want to remove this photo?"
3922
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
3923
 
3924
+ #: wppa-functions.php:2130 wppa-thumbnails.php:609
3925
  msgid "Are you sure you want to add this photo to your zip?"
3926
  msgstr ""
3927
 
3928
+ #: wppa-functions.php:2133 wppa-thumbnails.php:612
3929
  msgid "MyChoice"
3930
  msgstr ""
3931
 
3932
+ #: wppa-functions.php:2225
3933
  #, php-format
3934
  msgid "%d dislike"
3935
  msgid_plural "%d dislikes"
3936
  msgstr[0] ""
3937
  msgstr[1] ""
3938
 
3939
+ #: wppa-functions.php:2227
3940
  msgid "including mine"
3941
  msgstr "herunder minen"
3942
 
3943
+ #: wppa-functions.php:2327
3944
  msgid "Comment edited"
3945
  msgstr "Kommentarer redigeret"
3946
 
3947
+ #: wppa-functions.php:2333
3948
  msgid "Photo comment"
3949
  msgstr "Foto kommentar"
3950
 
3951
+ #: wppa-functions.php:2348
3952
  msgid "Comment on photo:"
3953
  msgstr "Kommentar til billeder"
3954
 
3955
+ #: wppa-functions.php:2359
3956
  msgid "wrote on photo"
3957
  msgstr "Se fotos"
3958
 
3959
+ #: wppa-functions.php:2363
3960
  msgid "Moderate comment admin"
3961
  msgstr "Godkend kommentar administration"
3962
 
3963
+ #: wppa-functions.php:2366 wppa-functions.php:4727 wppa-import.php:1524
3964
+ #: wppa-upload.php:570
3965
  msgid "Moderate manage photo"
3966
  msgstr "Se fotos"
3967
 
3968
+ #: wppa-functions.php:2380
3969
  msgid "You receive this email as you are assigned to moderate"
3970
  msgstr "Du modtager denne e-mail, fordi du er sat til at godkende"
3971
 
3972
+ #: wppa-functions.php:2392
3973
  msgid "You receive this email as administrator of the site"
3974
  msgstr ""
3975
  "Du modtager denne e-mail, fordi du er administrator p&aring; hjemmesiden"
3976
 
3977
+ #: wppa-functions.php:2409
3978
  msgid "You receive this email as uploader of the photo"
3979
  msgstr "Du modtager denne e-mail, fordi du indsendte et foto"
3980
 
3981
+ #: wppa-functions.php:2426
3982
  msgid "You receive this email as owner of the album"
3983
  msgstr "Du modtager denne e-mail, fordi du er ejer af albumet"
3984
 
3985
+ #: wppa-functions.php:2443
3986
  msgid "You receive this email because you commented this photo earlier."
3987
  msgstr ""
3988
  "Du modtager denne e-mail, fordi du kommenterede dette billede tidligere."
3989
 
3990
+ #: wppa-functions.php:2469
3991
  msgid "Comment added"
3992
  msgstr "Kommentar tilføjet"
3993
 
3994
+ #: wppa-functions.php:2475
3995
  msgid ""
3996
  "Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the "
3997
  "computation."
3999
  "Beklager, du gav et forkert svar.\\n\\nPr&oslash;v venligst igen, at "
4000
  "l&oslash;se beregningen."
4001
 
4002
+ #: wppa-functions.php:2486
4003
  msgid "Could not process comment.\\nProbably timed out."
4004
  msgstr "Kommentar kunne ikke bearbejdes"
4005
 
4006
+ #: wppa-functions.php:2604 wppa-links.php:1513
4007
  msgid "A video can not be printed or downloaded"
4008
  msgstr "En video kan ikke udskrives eller downloades"
4009
 
4010
+ #: wppa-functions.php:3059
4011
  msgid "ERROR: Illegal attempt to enter a rating."
4012
  msgstr "FEJL: Ulovlig forsøg på at indtaste en rating."
4013
 
4014
+ #: wppa-functions.php:3072
4015
  msgid "ERROR: Illegal attempt to enter a comment."
4016
  msgstr "FEJL: Ulovlig forsøg på at indtaste en kommentar."
4017
 
4018
+ #: wppa-functions.php:4296
4019
  msgid "ERROR: Illegal attempt to create an album."
4020
  msgstr "FEJL: Ulovlig forsøg på at skabe et album."
4021
 
4022
+ #: wppa-functions.php:4304
4023
  msgid "Wrong captcha, please try again"
4024
  msgstr "Forkert captcha, prøv igen"
4025
 
4026
+ #: wppa-functions.php:4320
4027
  #, php-format
4028
  msgid "Album #%s created"
4029
  msgstr "Album #%s oprettet"
4030
 
4031
+ #: wppa-functions.php:4326
4032
  msgid "Could not create album"
4033
  msgstr "Kunne ikke oprette album"
4034
 
4035
+ #: wppa-functions.php:4338
4036
  msgid "ERROR: Illegal attempt to upload a file."
4037
  msgstr "FEJL: Ulovlig forsøg på at uploade en fil."
4038
 
4039
+ #: wppa-functions.php:4411
4040
  msgid "Photo upload"
4041
  msgstr "Foto upload"
4042
 
4043
+ #: wppa-functions.php:4412
4044
  #, php-format
4045
  msgid "%d photo successfully uploaded"
4046
  msgid_plural "%d photos successfully uploaded"
4047
  msgstr[0] ""
4048
  msgstr[1] ""
4049
 
4050
+ #: wppa-functions.php:4413
4051
  #, php-format
4052
  msgid "%s points added"
4053
  msgstr ""
4054
 
4055
+ #: wppa-functions.php:4425
4056
+ msgid "Your post is awaiting moderation."
4057
+ msgstr ""
4058
+
4059
+ #: wppa-functions.php:4434
4060
  msgid "Upload failed"
4061
  msgstr "Indl&aelig;sning fejlede"
4062
 
4063
+ #: wppa-functions.php:4437
4064
  #, php-format
4065
  msgid "%d upload failed"
4066
  msgid_plural "%d uploads failed"
4067
  msgstr[0] ""
4068
  msgstr[1] ""
4069
 
4070
+ #: wppa-functions.php:4518
4071
  msgid "Error during upload"
4072
  msgstr "Fejl under upload"
4073
 
4074
+ #: wppa-functions.php:4574
4075
  msgid "Could not insert media into db."
4076
  msgstr ""
4077
 
4078
+ #: wppa-functions.php:4614
4079
  msgid "Uploaded file is not an image"
4080
  msgstr "Uploaded fil er ikke et billede"
4081
 
4082
+ #: wppa-functions.php:4620
4083
  #, php-format
4084
  msgid ""
4085
  "Only gif, jpg and png image files are supported. Returned filetype = %d."
4086
  msgstr ""
4087
  "Kun gif, jpg og png filer underst&oslash;ttes. Den forkerte filtype er %d."
4088
 
4089
+ #: wppa-functions.php:4628
4090
  #, php-format
4091
  msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
4092
  msgstr "Uploadede fil er større end den tilladte maksimum på %d x %d pixel."
4093
 
4094
+ #: wppa-functions.php:4636
4095
  #, php-format
4096
  msgid "Uploaded file %s already exists in this album."
4097
  msgstr "Uploadet fil %s findes allerede i dette album."
4098
 
4099
+ #: wppa-functions.php:4646
4100
  #, php-format
4101
  msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
4102
  msgstr ""
4103
  "Billedet er for stort. Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
4104
 
4105
+ #: wppa-functions.php:4686
4106
  msgid "Could not insert photo into db."
4107
  msgstr "Kunne ikke inds&aelig;tte foto i databasen."
4108
 
4109
+ #: wppa-functions.php:4723 wppa-import.php:1520 wppa-upload.php:566
4110
  #, php-format
4111
  msgid "New photo uploaded: %s"
4112
  msgstr "Nyt foto indsendt: %s"
4113
 
4114
+ #: wppa-functions.php:4724 wppa-import.php:1521 wppa-upload.php:567
4115
  #, php-format
4116
  msgid "User %1$s uploaded photo %2$s into album %3$s"
4117
  msgstr "Bruger %1$s indsendte foto %2$s ind i album %3$s"
4118
 
4119
+ #: wppa-functions.php:4726 wppa-import.php:1523 wppa-upload.php:569
4120
  msgid "This upload requires moderation"
4121
  msgstr "Denne indsendelse kr&aelig;ver godkendelse"
4122
 
4123
+ #: wppa-functions.php:4730 wppa-import.php:1527 wppa-upload.php:573
4124
  msgid "Details:"
4125
  msgstr "Detaljer:"
4126
 
4127
+ #: wppa-functions.php:4731 wppa-import.php:1528 wppa-upload.php:574
4128
+ #: wppa-utils.php:942 wppa-utils.php:954
4129
  msgid "Manage photo"
4130
  msgstr "Se fotos"
4131
 
4132
+ #: wppa-functions.php:4911
4133
  msgid "You can upload after"
4134
  msgstr "Du kan indsende efter"
4135
 
4136
+ #: wppa-functions.php:4954 wppa-functions.php:4958 wppa-functions.php:4965
4137
+ #: wppa-functions.php:4969 wppa-links.php:1106 wppa-non-admin.php:812
4138
+ #: wppa-settings-autosave.php:9344 wppa-settings-autosave.php:9356
4139
+ #: wppa-settings-autosave.php:9368 wppa-settings-autosave.php:9380
4140
+ #: wppa-settings-autosave.php:9392 wppa-settings-autosave.php:9404
4141
+ #: wppa-settings-autosave.php:9416 wppa-settings-autosave.php:9428
4142
  msgid "Download"
4143
  msgstr "Download"
4144
 
4145
+ #: wppa-functions.php:5013
4146
  msgid "Zoom in"
4147
  msgstr "Zoom ind"
4148
 
4149
+ #: wppa-functions.php:5044
4150
  #, php-format
4151
  msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
4152
  msgstr ""
4153
 
4154
+ #: wppa-functions.php:5047
4155
  #, php-format
4156
  msgid "You can vote again after %s hours, %s minutes and %s seconds"
4157
  msgstr ""
4158
 
4159
+ #: wppa-functions.php:5050
4160
  #, php-format
4161
  msgid "You can vote again after %s minutes and %s seconds"
4162
  msgstr ""
4237
  msgid "licence."
4238
  msgstr ""
4239
 
4240
+ #: wppa-import.php:153
4241
+ msgid "Done!"
 
 
4242
  msgstr ""
4243
 
4244
+ #: wppa-import.php:159
4245
+ msgid "Failed!"
 
 
4246
  msgstr ""
4247
 
4248
+ #: wppa-import.php:251
4249
+ msgid "Select Local or Remote"
 
 
4250
  msgstr ""
4251
 
4252
+ #: wppa-import.php:254
4253
+ msgid "Local"
 
 
4254
  msgstr ""
4255
 
4256
+ #: wppa-import.php:255
4257
+ msgid "Remote"
 
 
4258
  msgstr ""
4259
 
4260
+ #: wppa-import.php:263
4261
+ msgid "Set Local/Remote"
 
 
4262
  msgstr ""
4263
 
4264
+ #: wppa-import.php:268
4265
  msgid ""
4266
+ "The server does not allow you to import from remote locations. ( The php "
4267
+ "directive allow_url_fopen is not set to 1 )"
4268
  msgstr ""
4269
 
4270
+ #: wppa-import.php:271
4271
  msgid ""
4272
+ "The server does not allow you to import from remote locations. ( The curl "
4273
+ "functions are not set up )"
4274
  msgstr ""
4275
 
4276
+ #: wppa-import.php:281
4277
+ msgid "Import photos from:"
 
 
4278
  msgstr ""
4279
 
4280
+ #: wppa-import.php:293
4281
+ msgid "Set source directory"
4282
  msgstr ""
4283
 
4284
+ #: wppa-import.php:306
4285
+ msgid "Max:"
4286
  msgstr ""
4287
 
4288
+ #: wppa-import.php:318
4289
+ msgid "Find remote photos"
 
 
4290
  msgstr ""
4291
 
4292
+ #: wppa-import.php:321
4293
+ msgid "Working, please wait..."
 
 
4294
  msgstr ""
4295
 
4296
+ #: wppa-import.php:324
4297
+ msgid ""
4298
+ "You can enter either a web page address like <i>http://mysite.com/mypage/</"
4299
+ "i> or a full url to an image file like <i>http://mysite.com/wp-content/"
4300
+ "uploads/wppa/4711.jpg</i>"
 
 
 
 
4301
  msgstr ""
4302
 
4303
+ #: wppa-import.php:337 wppa-upload.php:137
4304
+ msgid "No albums exist. You must"
 
 
 
 
 
 
 
4305
  msgstr ""
4306
 
4307
+ #: wppa-import.php:339 wppa-upload.php:139
4308
+ msgid "create one"
 
 
 
 
 
 
 
4309
  msgstr ""
4310
 
4311
+ #: wppa-import.php:341
4312
+ msgid "beofre you can upload your photos."
4313
  msgstr ""
4314
 
4315
+ #: wppa-import.php:362
4316
+ #, php-format
4317
+ msgid "There is %d zipfile in the depot"
4318
+ msgid_plural "There are %d zipfiles in the depot"
4319
+ msgstr[0] ""
4320
+ msgstr[1] ""
4321
 
4322
+ #: wppa-import.php:375 wppa-import.php:452 wppa-import.php:586
4323
+ #: wppa-import.php:840 wppa-import.php:947 wppa-import.php:1039
4324
+ #: wppa-import.php:1120
4325
+ msgid "Check/uncheck all"
4326
  msgstr ""
4327
 
4328
+ #: wppa-import.php:388
4329
+ msgid "Delete after successful extraction."
4330
  msgstr ""
4331
 
4332
+ #: wppa-import.php:439
4333
+ #, php-format
4334
+ msgid "There is %d albumdefinition in the depot"
4335
+ msgid_plural "There are %d albumdefinitions in the depot"
4336
+ msgstr[0] ""
4337
+ msgstr[1] ""
4338
 
4339
+ #: wppa-import.php:465
4340
+ msgid ""
4341
+ "Remove from depot after successful import, or if the album already exists."
4342
  msgstr ""
4343
 
4344
+ #: wppa-import.php:522
4345
+ #, php-format
4346
+ msgid "There is %d photo in the ngg gallery"
4347
+ msgid_plural "There are %d photos in the ngg gallery"
4348
+ msgstr[0] ""
4349
+ msgstr[1] ""
4350
+
4351
+ #: wppa-import.php:525
4352
+ #, php-format
4353
+ msgid "There is %d photo in the depot"
4354
+ msgid_plural "There are %d photos in the depot"
4355
+ msgstr[0] ""
4356
+ msgstr[1] ""
4357
+
4358
+ #: wppa-import.php:531
4359
+ #, php-format
4360
+ msgid "There is %d possible photo found remote"
4361
+ msgid_plural "There are %d possible photos found remote"
4362
+ msgstr[0] ""
4363
+ msgstr[1] ""
4364
+
4365
+ #: wppa-import.php:536
4366
+ msgid "Photos will be downsized during import."
4367
+ msgstr ""
4368
+
4369
+ #: wppa-import.php:545
4370
+ msgid "Default album for import:"
4371
+ msgstr ""
4372
+
4373
+ #: wppa-import.php:554
4374
+ msgid ""
4375
+ "Photos that have (<em>name</em>)[<em>album</em>] will be imported by that "
4376
+ "<em>name</em> in that <em>album</em>."
4377
+ msgstr ""
4378
+
4379
+ #: wppa-import.php:602 wppa-import.php:854 wppa-import.php:963
4380
+ #: wppa-import.php:1133
4381
+ msgid "Remove from depot after successful import."
4382
+ msgstr ""
4383
+
4384
+ #: wppa-import.php:613
4385
+ msgid "Remove from depot after failed import."
4386
+ msgstr ""
4387
+
4388
+ #: wppa-import.php:631
4389
+ msgid "Import into album"
4390
+ msgstr ""
4391
+
4392
+ #: wppa-import.php:634
4393
+ msgid "The album will be created if it does not exist"
4394
+ msgstr ""
4395
+
4396
+ #: wppa-import.php:646
4397
+ msgid "Use backup if available"
4398
+ msgstr ""
4399
+
4400
+ #: wppa-import.php:662
4401
+ msgid "Update existing photos"
4402
+ msgstr ""
4403
+
4404
+ #: wppa-import.php:687
4405
+ msgid "Do not create duplicates"
4406
+ msgstr ""
4407
+
4408
+ #: wppa-import.php:703
4409
+ msgid "Zoom previews"
4410
+ msgstr ""
4411
+
4412
+ #: wppa-import.php:809
4413
+ #, php-format
4414
+ msgid "There is %d video in the depot"
4415
+ msgid_plural "There are %d videos in the depot"
4416
+ msgstr[0] ""
4417
+ msgstr[1] ""
4418
+
4419
+ #: wppa-import.php:815 wppa-import.php:922
4420
+ msgid "Album to import to:"
4421
+ msgstr ""
4422
+
4423
+ #: wppa-import.php:856
4424
+ msgid "Files largenr than 64MB will always be removed after successful import."
4425
+ msgstr ""
4426
+
4427
+ #: wppa-import.php:916
4428
+ #, php-format
4429
+ msgid "There is %d audio in the depot"
4430
+ msgid_plural "There are %d audios in the depot"
4431
+ msgstr[0] ""
4432
+ msgstr[1] ""
4433
+
4434
+ #: wppa-import.php:1022
4435
+ #, php-format
4436
+ msgid "There is %d albumdirectory in the depot"
4437
+ msgid_plural "There are %d albumdirectories in the depot"
4438
+ msgstr[0] ""
4439
+ msgstr[1] ""
4440
+
4441
+ #: wppa-import.php:1080
4442
+ #, php-format
4443
+ msgid "Contains %d file"
4444
+ msgid_plural "Contains %d files"
4445
+ msgstr[0] ""
4446
+ msgstr[1] ""
4447
+
4448
+ #: wppa-import.php:1083
4449
+ #, php-format
4450
+ msgid "and %d subdirectory"
4451
+ msgid_plural "and %d subdirectories"
4452
+ msgstr[0] ""
4453
+ msgstr[1] ""
4454
+
4455
+ #: wppa-import.php:1103
4456
+ #, php-format
4457
+ msgid "There is %d .csv file in the depot"
4458
+ msgid_plural "There are %d .csv files in the depot"
4459
+ msgstr[0] ""
4460
+ msgstr[1] ""
4461
+
4462
+ #: wppa-import.php:1316
4463
+ msgid "Start Ajax Import"
4464
+ msgstr ""
4465
+
4466
+ #: wppa-import.php:1317
4467
+ msgid "Stop Ajax Import"
4468
+ msgstr ""
4469
+
4470
+ #: wppa-import.php:1325
4471
+ msgid "There are no importable files found in directory:"
4472
+ msgstr ""
4473
+
4474
+ #: wppa-import.php:1328
4475
+ msgid "There are no photos found or left to process at url:"
4476
+ msgstr ""
4477
+
4478
+ #: wppa-import.php:1332
4479
+ msgid "You can import the following file types:"
4480
+ msgstr ""
4481
+
4482
+ #: wppa-import.php:1336
4483
+ msgid "Compressed file types: .zip"
4484
+ msgstr ""
4485
+
4486
+ #: wppa-import.php:1340
4487
+ msgid "Photo file types:"
4488
+ msgstr ""
4489
+
4490
+ #: wppa-import.php:1347
4491
+ msgid "Video file types:"
4492
+ msgstr ""
4493
+
4494
+ #: wppa-import.php:1354
4495
+ msgid "Audio file types:"
4496
+ msgstr ""
4497
+
4498
+ #: wppa-import.php:1360
4499
+ msgid "WPPA+ file types: .amf .pmf"
4500
+ msgstr ""
4501
+
4502
+ #: wppa-import.php:1362
4503
+ msgid "Directories with optional subdirs containig photos"
4504
+ msgstr ""
4505
+
4506
+ #: wppa-import.php:1364
4507
+ msgid "Custom data files of type .csv"
4508
+ msgstr ""
4509
+
4510
+ #: wppa-import.php:1366
4511
+ msgid "Your depot directory is:"
4512
+ msgstr ""
4513
+
4514
+ #: wppa-import.php:1370
4515
+ msgid "Trying to continue..."
4516
+ msgstr ""
4517
+
4518
+ #: wppa-import.php:1613
4519
+ msgid "Unknown parent album:"
4520
+ msgstr ""
4521
+
4522
+ #: wppa-import.php:1613
4523
+ msgid "--- none --- used."
4524
+ msgstr ""
4525
+
4526
+ #: wppa-import.php:1673
4527
+ #, php-format
4528
+ msgid "This album has been converted from ngg gallery %s"
4529
+ msgstr ""
4530
+
4531
+ #: wppa-import.php:1691
4532
+ msgid "Processing files, please wait..."
4533
+ msgstr ""
4534
+
4535
+ #: wppa-import.php:1691
4536
+ msgid ""
4537
+ "If the line of dots stops growing or your browser reports Ready, your server "
4538
+ "has given up. In that case: try again"
4539
+ msgstr ""
4540
+
4541
+ #: wppa-import.php:1691
4542
+ msgid "here."
4543
+ msgstr ""
4544
+
4545
+ #: wppa-import.php:1818
4546
+ #, php-format
4547
+ msgid "Photo %s already exists in album %s. (1)"
4548
+ msgstr ""
4549
+
4550
+ #: wppa-import.php:1819
4551
+ msgid "Duplicate"
4552
+ msgstr ""
4553
+
4554
+ #: wppa-import.php:1838 wppa-upload.php:512 wppa-upload.php:546
4555
+ msgid "Error inserting photo"
4556
+ msgstr ""
4557
+
4558
+ #: wppa-import.php:1846
4559
+ #, php-format
4560
+ msgid "Error inserting photo %s, unknown or non existent album."
4561
+ msgstr ""
4562
+
4563
+ #: wppa-import.php:1854
4564
+ #, php-format
4565
+ msgid "Time out. %s photos imported. Please restart this operation."
4566
+ msgstr ""
4567
+
4568
+ #: wppa-import.php:1888 wppa-import.php:1960
4569
+ msgid "Unknown album"
4570
+ msgstr ""
4571
+
4572
+ #: wppa-import.php:1950
4573
+ #, php-format
4574
+ msgid "Error inserting video %s, unknown or non existent album."
4575
+ msgstr ""
4576
+
4577
+ #: wppa-import.php:2011
4578
+ #, php-format
4579
+ msgid "Error inserting audio %s, unknown or non existent album."
4580
+ msgstr ""
4581
+
4582
+ #: wppa-import.php:2027
4583
+ msgid "Custom datafields enabled"
4584
+ msgstr ""
4585
+
4586
+ #: wppa-import.php:2058 wppa-import.php:2059
4587
+ msgid "Processing"
4588
+ msgstr ""
4589
+
4590
+ #: wppa-import.php:2068
4591
+ msgid "Can not open file. Can not continue. (1)"
4592
+ msgstr ""
4593
+
4594
+ #: wppa-import.php:2073
4595
+ msgid "Can not open file. Can not continue. (2)"
4596
+ msgstr ""
4597
+
4598
+ #: wppa-import.php:2080
4599
+ msgid "Can not read header. Can not continue."
4600
+ msgstr ""
4601
+
4602
+ #: wppa-import.php:2085
4603
+ msgid "Read header:"
4604
+ msgstr ""
4605
+
4606
+ #: wppa-import.php:2090
4607
+ msgid "Invalid header. Can not continue."
4608
+ msgstr ""
4609
+
4610
+ #: wppa-import.php:2097
4611
+ msgid "Invalid header. First item must be 'name', 'photoname' or 'filename'"
4612
+ msgstr ""
4613
+
4614
+ #: wppa-import.php:2104
4615
+ msgid "All available custom data fields are in use. There is no space for"
4616
+ msgstr ""
4617
+
4618
+ #: wppa-import.php:2115
4619
+ #, php-format
4620
+ msgid "New caption %s added."
4621
+ msgstr ""
4622
+
4623
+ #: wppa-import.php:2133
4624
+ msgid "Read data:"
4625
+ msgstr ""
4626
+
4627
+ #: wppa-import.php:2202
4628
+ msgid "Done processing files."
4629
+ msgstr ""
4630
+
4631
+ #: wppa-import.php:2205
4632
+ msgid "No files to import."
4633
+ msgstr ""
4634
+
4635
+ #: wppa-import.php:2209
4636
+ msgid "Zipfiles extracted."
4637
+ msgstr ""
4638
+
4639
+ #: wppa-import.php:2210
4640
+ msgid "Albums created."
4641
+ msgstr ""
4642
+
4643
+ #: wppa-import.php:2211
4644
+ msgid "Directory to album imports."
4645
+ msgstr ""
4646
+
4647
+ #: wppa-import.php:2212
4648
+ #, php-format
4649
+ msgid "With total %s photos."
4650
+ msgstr ""
4651
+
4652
+ #: wppa-import.php:2215
4653
+ msgid "Photos updated"
4654
+ msgstr ""
4655
+
4656
+ #: wppa-import.php:2217
4657
+ #, php-format
4658
+ msgid "to %s locations"
4659
+ msgstr ""
4660
+
4661
+ #: wppa-import.php:2221
4662
+ msgid "single photos imported."
4663
+ msgstr ""
4664
+
4665
+ #: wppa-import.php:2224
4666
+ msgid "Videos imported."
4667
+ msgstr ""
4668
+
4669
+ #: wppa-import.php:2227
4670
+ msgid "Audios imported."
4671
+ msgstr ""
4672
+
4673
+ #: wppa-import.php:2230
4674
+ msgid "CSVs imported,"
4675
+ msgstr ""
4676
+
4677
+ #: wppa-import.php:2232
4678
+ msgid "photos skipped."
4679
+ msgstr ""
4680
+
4681
+ #: wppa-import.php:2362
4682
+ msgid "Error: unexpected fgets() fail in wppa_get_meta_data()."
4683
+ msgstr ""
4684
+
4685
+ #: wppa-import.php:2383
4686
+ msgid "Class ZipArchive does not exist! Check your php configuration"
4687
+ msgstr ""
4688
+
4689
+ #: wppa-import.php:2413
4690
+ #, php-format
4691
+ msgid ""
4692
+ "File %s is of an unsupported filetype and has been ignored during extraction."
4693
+ msgstr ""
4694
+
4695
+ #: wppa-import.php:2419
4696
+ #, php-format
4697
+ msgid "Zipfile %s processed. %s files extracted, %s files skipped."
4698
+ msgstr ""
4699
+
4700
+ #: wppa-import.php:2422
4701
+ msgid "Failed to extract"
4702
+ msgstr ""
4703
+
4704
+ #: wppa-import.php:2488
4705
+ #, php-format
4706
+ msgid "Page <a href=\"%s\" target=\"_blank\" >%s</a> created."
4707
+ msgstr ""
4708
+
4709
+ #: wppa-import.php:2492
4710
+ msgid "Could not create page."
4711
+ msgstr ""
4712
+
4713
+ #: wppa-import.php:2607
4714
+ msgid "--- My depot --- "
4715
+ msgstr ""
4716
+
4717
+ #: wppa-import.php:2616
4718
+ msgid "--- Ngg Galleries --- "
4719
+ msgstr ""
4720
+
4721
+ #: wppa-init.php:195
4722
+ msgid ""
4723
+ "</strong><h3>WP Photo ALbum Plus Error message</h3>This is a multi site "
4724
+ "installation. One of the following 3 lines must be entered in wp-config.php:"
4725
+ msgstr ""
4726
+
4727
+ #: wppa-init.php:196
4728
+ msgid ""
4729
+ "<br /><br /><b>define( 'WPPA_MULTISITE_INDIVIDUAL', true );</b> <small>// "
4730
+ "Multisite WP 3.5 or later with every site its own albums and photos</small>"
4731
+ msgstr ""
4732
+
4733
+ #: wppa-init.php:197
4734
+ msgid ""
4735
+ "<br /><b>define( 'WPPA_MULTISITE_BLOGSDIR', true );</b> <small>// Multisite "
4736
+ "prior to WP 3.5 with every site its own albums and photos</small>"
4737
+ msgstr ""
4738
+
4739
+ #: wppa-init.php:198
4740
+ msgid ""
4741
+ "<br /><b>define( 'WPPA_MULTISITE_GLOBAL', true );</b> <small>// Multisite "
4742
+ "with one common set of albums and photos</small>"
4743
+ msgstr ""
4744
+
4745
+ #: wppa-init.php:199
4746
+ msgid ""
4747
+ "<br /><br />For more information see: <a href=\"https://wordpress.org/"
4748
+ "plugins/wp-photo-album-plus/faq/\">the faq</a>"
4749
+ msgstr ""
4750
+
4751
+ #: wppa-init.php:200
4752
+ msgid ""
4753
+ "<br /><br /><em>If you upload photos, they will be placed in the wrong "
4754
+ "location and will not be visible for visitors!</em><strong>"
4755
+ msgstr ""
4756
+
4757
+ #: wppa-init.php:232
4758
+ msgid ""
4759
+ "The photo index table needs to be rebuilt. Please run <i>Photo Albums -> "
4760
+ "Settings</i> admin page <i>Table VIII-A9</i>"
4761
+ msgstr ""
4762
+
4763
+ #: wppa-init.php:236
4764
+ msgid ""
4765
+ "The album index table needs to be rebuilt. Please run <i>Photo Albums -> "
4766
+ "Settings</i> admin page <i>Table VIII-A8</i>"
4767
+ msgstr ""
4768
+
4769
+ #: wppa-init.php:240
4770
+ msgid ""
4771
+ "The avarage ratings need to be recalculated. Please run <i>Photo Albums -> "
4772
+ "Settings</i> admin page <i>Table VIII-A5</i>"
4773
+ msgstr ""
4774
+
4775
+ #: wppa-init.php:243
4776
+ msgid "Please finish setting up WP Photo ALbum Plus on"
4777
+ msgstr ""
4778
+
4779
+ #: wppa-init.php:243
4780
+ msgid "this page"
4781
+ msgstr ""
4782
+
4783
+ #: wppa-init.php:261
4784
+ msgid ""
4785
+ "</strong>The tags system needs to be converted. Please run <b>Photo Albums -"
4786
+ "> Settings</b> admin page <b>Table VIII-B16</b><strong>"
4787
+ msgstr ""
4788
+
4789
+ #: wppa-init.php:278
4790
+ msgid ""
4791
+ "</strong>The cats system needs to be converted. Please run <b>Photo Albums -"
4792
+ "> Settings</b> admin page <b>Table VIII-B17</b><strong>"
4793
+ msgstr ""
4794
+
4795
+ #: wppa-init.php:304
4796
+ #, php-format
4797
+ msgid ""
4798
+ "WPPA scripts will no longer be supported in version 6.6. Please convert the "
4799
+ "%%wppa%% scripts to [wppa][/wppa] shortcodes before upgrading to version 6.6."
4800
+ msgstr ""
4801
+
4802
+ #: wppa-init.php:306
4803
+ msgid "WPPA scripts found in the following Pages / Posts"
4804
+ msgstr ""
4805
+
4806
+ #: wppa-init.php:325
4807
+ #, php-format
4808
+ msgid "For more information see the %s documentation page"
4809
+ msgstr ""
4810
+
4811
+ #: wppa-items.php:259 wppa-thumbnails.php:1906
4812
+ msgid "Gold medal"
4813
+ msgstr "Guldmedalje"
4814
+
4815
+ #: wppa-items.php:259 wppa-photo-admin-autosave.php:866
4816
+ #: wppa-photo-admin-autosave.php:888 wppa-photo-admin-autosave.php:1331
4817
+ #: wppa-photo-admin-autosave.php:1448 wppa-photo-admin-autosave.php:1459
4818
+ #: wppa-potd-admin.php:228
4819
+ msgid "Gold"
4820
+ msgstr ""
4821
+
4822
+ #: wppa-items.php:260 wppa-thumbnails.php:1907
4823
+ msgid "Silver medal"
4824
+ msgstr "Sølvmedalje"
4825
+
4826
+ #: wppa-items.php:260 wppa-photo-admin-autosave.php:867
4827
+ #: wppa-photo-admin-autosave.php:889 wppa-photo-admin-autosave.php:1332
4828
+ #: wppa-photo-admin-autosave.php:1449 wppa-photo-admin-autosave.php:1460
4829
+ #: wppa-potd-admin.php:229
4830
+ msgid "Silver"
4831
+ msgstr ""
4832
+
4833
+ #: wppa-items.php:261 wppa-thumbnails.php:1908
4834
+ msgid "Bronze medal"
4835
+ msgstr "Bronzemedalje"
4836
+
4837
+ #: wppa-items.php:261 wppa-photo-admin-autosave.php:868
4838
+ #: wppa-photo-admin-autosave.php:890 wppa-photo-admin-autosave.php:1333
4839
+ #: wppa-photo-admin-autosave.php:1450 wppa-photo-admin-autosave.php:1461
4840
+ #: wppa-potd-admin.php:230
4841
+ msgid "Bronze"
4842
+ msgstr ""
4843
+
4844
+ #: wppa-items.php:336 wppa-items.php:535 wppa-settings-autosave.php:3634
4845
+ msgid "none"
4846
+ msgstr ""
4847
+
4848
+ #: wppa-items.php:352
4849
+ msgid "Nomen Nescio"
4850
+ msgstr ""
4851
+
4852
+ #: wppa-items.php:355
4853
+ msgid "Anonymus"
4854
+ msgstr ""
4855
+
4856
+ #: wppa-items.php:381 wppa-items.php:546 wppa-upload.php:125
4857
+ #: wppa-upload.php:130
4858
+ msgid "unknown"
4859
+ msgstr ""
4860
+
4861
+ #: wppa-items.php:440 wppa-items.php:468
4862
+ msgid "--- deleted ---"
4863
+ msgstr ""
4864
+
4865
+ #: wppa-items.php:450
4866
+ msgid "All Albums"
4867
+ msgstr ""
4868
+
4869
+ #: wppa-items.php:454
4870
+ msgid "My and public albums"
4871
  msgstr ""
4872
 
4873
  #: wppa-lasten-widget.php:12
4882
  msgid "Last Ten Uploaded Photos"
4883
  msgstr ""
4884
 
4885
+ #: wppa-lasten-widget.php:131 wppa-non-admin.php:902
4886
  msgid "View the most recent uploaded photos"
4887
  msgstr ""
4888
 
4889
+ #: wppa-lasten-widget.php:155 wppa-non-admin.php:904
4890
  msgid "There are no uploaded photos (yet)"
4891
  msgstr ""
4892
 
4964
  msgid "Scheduled for %s"
4965
  msgstr ""
4966
 
4967
+ #: wppa-links.php:1042 wppa-links.php:1045 wppa-slideshow.php:1123
4968
  msgid "Previous"
4969
  msgstr "Forrige"
4970
 
4971
+ #: wppa-links.php:1052 wppa-links.php:1055 wppa-non-admin.php:763
4972
+ #: wppa-slideshow.php:1137
4973
  msgid "Next"
4974
  msgstr "N&aelig;ste"
4975
 
4976
+ #: wppa-links.php:1108
4977
+ msgid "Download Album"
4978
  msgstr ""
4979
 
4980
+ #: wppa-links.php:1252
4981
  msgid "View thumbnails"
4982
  msgstr ""
4983
 
4984
+ #: wppa-links.php:1265
4985
  msgid "View fullsize slideshow"
4986
  msgstr ""
4987
 
4989
  msgid "You can run only one maintenance procedure at a time"
4990
  msgstr ""
4991
 
 
 
 
 
4992
  #: wppa-maintenance.php:126
4993
  msgid "Orphan photos"
4994
  msgstr ""
5016
  msgstr ""
5017
 
5018
  #: wppa-maintenance.php:756 wppa-maintenance.php:772
5019
+ #: wppa-photo-admin-autosave.php:1757 wppa-photo-admin-autosave.php:1778
5020
+ #: wppa-settings-autosave.php:4526 wppa-setup.php:352
5021
  msgid "Required"
5022
  msgstr ""
5023
 
5024
+ #: wppa-maintenance.php:832
5025
+ #, php-format
5026
+ msgid ""
5027
+ "List of Searcheable words <small>( Max 1000 entries of total %d )</small>"
5028
+ msgstr ""
5029
+
5030
+ #: wppa-maintenance.php:865
5031
  msgid "There are no index items."
5032
  msgstr ""
5033
 
5034
+ #: wppa-maintenance.php:875
5035
+ msgid "List of WPPA+ log messages"
5036
+ msgstr ""
5037
+
5038
+ #: wppa-maintenance.php:880
5039
  msgid "There are no error log messages"
5040
  msgstr ""
5041
 
5042
+ #: wppa-maintenance.php:901
5043
+ #, php-format
5044
+ msgid "List of recent ratings <small>( Max 1000 entries of total %d )</small>"
5045
+ msgstr ""
5046
+
5047
+ #: wppa-maintenance.php:951
5048
  msgid "There are no ratings"
5049
  msgstr ""
5050
 
5051
+ #: wppa-maintenance.php:962
5052
+ #, php-format
5053
+ msgid "List of active sessions <small>( Max 1000 entries of total %d )</small>"
5054
+ msgstr ""
5055
+
5056
+ #: wppa-maintenance.php:1022
5057
  msgid "There are no active sessions"
5058
  msgstr ""
5059
 
5060
+ #: wppa-maintenance.php:1038
5061
+ #, php-format
5062
+ msgid "List of comments <small>( Max 1000 entries of total %d )</small>"
5063
+ msgstr ""
5064
+
5065
+ #: wppa-maintenance.php:1084
5066
  msgid "There are no comments"
5067
  msgstr ""
5068
 
5082
  msgid "Select multiple tags or --- all ---:"
5083
  msgstr ""
5084
 
5085
+ #: wppa-non-admin.php:418
5086
  msgid "Press f for fullscreen."
5087
  msgstr "Tryk på f for fuldskærm."
5088
 
5089
+ #: wppa-non-admin.php:428 wppa-non-admin.php:499
5090
  msgid "Toggle fullscreen"
5091
  msgstr ""
5092
 
5093
+ #: wppa-non-admin.php:493
5094
  msgid ""
5095
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
5096
  "dismiss this notice."
5098
  "Nøgler: f = næste tilstand; q, x = exit; p = forrige, n = næste, s = start / "
5099
  "stop, d = afvise denne meddelelse."
5100
 
5101
+ #: wppa-non-admin.php:494
5102
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
5103
  msgstr "Nøgler: f = næste tilstand; q, x = exit; d = afvise denne meddelelse."
5104
 
5105
+ #: wppa-non-admin.php:754 wppa-settings-autosave.php:3834
5106
  #: wppa-slideshow.php:241
5107
  msgid "Start"
5108
  msgstr "Start"
5109
 
5110
+ #: wppa-non-admin.php:755
5111
  msgid "Stop"
5112
  msgstr "Stop"
5113
 
5114
+ #: wppa-non-admin.php:756 wppa-slideshow.php:233
5115
  msgid "Slower"
5116
  msgstr "Langsommere"
5117
 
5118
+ #: wppa-non-admin.php:757 wppa-slideshow.php:249
5119
  msgid "Faster"
5120
  msgstr "Hurtigere"
5121
 
5122
+ #: wppa-non-admin.php:759
5123
  msgid "of"
5124
  msgstr "af"
5125
 
5126
+ #: wppa-non-admin.php:760
5127
  msgid "Previous photo"
5128
  msgstr "Forrige foto"
5129
 
5130
+ #: wppa-non-admin.php:761
5131
  msgid "Next photo"
5132
  msgstr "Næste foto"
5133
 
5134
+ #: wppa-non-admin.php:762
5135
  msgid "Prev."
5136
  msgstr "Forrige"
5137
 
5138
+ #: wppa-non-admin.php:764 wppa-slideshow.php:814 wppa-slideshow.php:828
5139
+ #: wppa-slideshow.php:967
5140
  msgid "Average&nbsp;rating"
5141
  msgstr "Bed&oslash;mmelse&nbsp;gennemsnitlig"
5142
 
5143
+ #: wppa-non-admin.php:765 wppa-slideshow.php:893 wppa-slideshow.php:926
5144
+ #: wppa-slideshow.php:948
5145
  msgid "My&nbsp;rating"
5146
  msgstr "Min&nbsp;bed&oslash;mmelse"
5147
 
5148
+ #: wppa-non-admin.php:766
5149
  msgid "Avg."
5150
  msgstr "Gns."
5151
 
5152
+ #: wppa-non-admin.php:767
5153
  msgid "Mine"
5154
  msgstr "Mine"
5155
 
5156
+ #: wppa-non-admin.php:768
5157
  msgid "You marked this image as inappropriate."
5158
  msgstr "Du markeret billedet som upassende."
5159
 
5160
+ #: wppa-non-admin.php:771
5161
  msgid "Please enter your name"
5162
  msgstr "Indtast venligst dit navn."
5163
 
5164
+ #: wppa-non-admin.php:772
5165
  msgid "Please enter a valid email address"
5166
  msgstr "Indtast venligst en gyldig e-mail adresse"
5167
 
5168
+ #: wppa-non-admin.php:773
5169
  msgid "Please enter a comment"
5170
  msgstr "Indtast venligst en kommentar"
5171
 
5172
+ #: wppa-non-admin.php:807
5173
  msgid "Double click to start/stop slideshow running"
5174
  msgstr "Dobbeltklik for at starte / stoppe diasshowet kører"
5175
 
5176
+ #: wppa-non-admin.php:908 wppa-photo-admin-autosave.php:265
5177
+ #: wppa-potd-widget.php:178
5178
  msgid "By:"
5179
  msgstr ""
5180
 
5181
+ #: wppa-non-admin.php:911 wppa-slideshow-widget.php:124
5182
  msgid "No album defined (yet)"
5183
  msgstr ""
5184
 
5185
+ #: wppa-non-admin.php:915 wppa-thumbnail-widget.php:121
5186
  msgid "There are no photos (yet)"
5187
  msgstr ""
5188
 
5189
+ #: wppa-non-admin.php:918 wppa-upldr-widget.php:90
5190
  msgid "There are too many registered users in the system for this widget"
5191
  msgstr ""
5192
 
5193
+ #: wppa-non-admin.php:919 wppa-upldr-widget.php:125 wppa-upldr-widget.php:132
5194
  msgid "Photos uploaded by"
5195
  msgstr ""
5196
 
5197
+ #: wppa-non-admin.php:923 wppa-thumbnails.php:692 wppa-thumbnails.php:1480
5198
  #: wppa-topten-widget.php:203 wppa-topten-widget.php:226
5199
  #: wppa-topten-widget.php:236
5200
  #, php-format
5203
  msgstr[0] ""
5204
  msgstr[1] ""
5205
 
5206
+ #: wppa-non-admin.php:925 wppa-topten-widget.php:261
5207
  msgid "There are no rated photos (yet)"
5208
  msgstr ""
5209
 
5241
  msgstr ""
5242
 
5243
  #: wppa-photo-admin-autosave.php:146 wppa-photo-admin-autosave.php:1499
 
5244
  msgid "No photos yet in this album."
5245
  msgstr ""
5246
 
5428
  msgid "Same tab"
5429
  msgstr ""
5430
 
5431
+ #: wppa-photo-admin-autosave.php:436 wppa-settings-autosave.php:5005
5432
+ #: wppa-settings-autosave.php:6011
5433
  msgid "New tab"
5434
  msgstr ""
5435
 
5454
  msgid "Update file"
5455
  msgstr ""
5456
 
5457
+ #: wppa-photo-admin-autosave.php:501 wppa-settings-autosave.php:3315
5458
  msgid "Upload"
5459
  msgstr ""
5460
 
5520
  msgid "Remake thumbnail file"
5521
  msgstr ""
5522
 
5523
+ #: wppa-photo-admin-autosave.php:658 wppa-settings-autosave.php:6892
5524
  msgid "Remake"
5525
  msgstr ""
5526
 
5572
  msgid "Update Photo description"
5573
  msgstr ""
5574
 
5575
+ #: wppa-photo-admin-autosave.php:823
5576
+ msgid "Tags:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5577
  msgstr ""
5578
 
5579
+ #: wppa-photo-admin-autosave.php:831
5580
+ msgid "Separate tags with commas."
5581
  msgstr ""
5582
 
5583
+ #: wppa-photo-admin-autosave.php:842
5584
+ msgid "No tags yet"
 
5585
  msgstr ""
5586
 
5587
+ #: wppa-photo-admin-autosave.php:854
5588
+ msgid "Status:"
5589
  msgstr ""
5590
 
5591
+ #: wppa-photo-admin-autosave.php:863 wppa-photo-admin-autosave.php:886
5592
+ #: wppa-photo-admin-autosave.php:1328 wppa-photo-admin-autosave.php:1445
5593
+ #: wppa-photo-admin-autosave.php:1457 wppa-potd-admin.php:226
5594
+ msgid "Publish"
5595
  msgstr ""
5596
 
5597
+ #: wppa-photo-admin-autosave.php:865 wppa-photo-admin-autosave.php:887
5598
+ #: wppa-photo-admin-autosave.php:1330 wppa-photo-admin-autosave.php:1447
5599
+ #: wppa-potd-admin.php:227
5600
+ msgid "Featured"
5601
  msgstr ""
5602
 
5603
+ #: wppa-photo-admin-autosave.php:869 wppa-photo-admin-autosave.php:891
5604
+ #: wppa-photo-admin-autosave.php:1334 wppa-photo-admin-autosave.php:1451
5605
+ #: wppa-photo-admin-autosave.php:1462
5606
+ msgid "Scheduled"
5607
  msgstr ""
5608
 
5609
+ #: wppa-photo-admin-autosave.php:870 wppa-photo-admin-autosave.php:892
5610
+ #: wppa-photo-admin-autosave.php:1335 wppa-photo-admin-autosave.php:1452
5611
+ #: wppa-photo-admin-autosave.php:1463
5612
+ msgid "Private"
5613
  msgstr ""
5614
 
5615
+ #: wppa-photo-admin-autosave.php:901
5616
+ msgid ""
5617
+ "Note: Featured photos should have a descriptive name; a name a search engine "
5618
+ "will look for!"
5619
  msgstr ""
5620
 
5621
+ #: wppa-photo-admin-autosave.php:911
5622
+ msgid "Watermark:"
5623
  msgstr ""
5624
 
5625
+ #: wppa-photo-admin-autosave.php:918 wppa-photo-admin-autosave.php:931
5626
+ msgid "File:"
5627
  msgstr ""
5628
 
5629
+ #: wppa-photo-admin-autosave.php:923 wppa-photo-admin-autosave.php:932
5630
+ msgid "Pos:"
5631
  msgstr ""
5632
 
5633
+ #: wppa-photo-admin-autosave.php:927
5634
+ msgid "Apply watermark"
5635
  msgstr ""
5636
 
5637
+ #: wppa-photo-admin-autosave.php:927
5638
+ msgid "Are you sure? Once applied it can not be removed!"
5639
  msgstr ""
5640
 
5641
+ #: wppa-photo-admin-autosave.php:927
5642
+ msgid "And I do not know if there is already a watermark on this photo"
5643
  msgstr ""
5644
 
5645
+ #: wppa-photo-admin-autosave.php:937
5646
+ msgid "Not configured"
5647
  msgstr ""
5648
 
5649
+ #: wppa-photo-admin-autosave.php:951
5650
  #, php-format
5651
+ msgid "Video %s is not modified yet"
5652
  msgstr ""
5653
 
5654
+ #: wppa-photo-admin-autosave.php:954
 
5655
  #, php-format
5656
+ msgid "Photo %s is not modified yet"
5657
  msgstr ""
5658
 
5659
+ #: wppa-photo-admin-autosave.php:973
5660
+ msgid "Single image shortcode"
 
5661
  msgstr ""
5662
 
5663
+ #: wppa-photo-admin-autosave.php:979
5664
+ msgid "Permalink"
 
 
5665
  msgstr ""
5666
 
5667
+ #: wppa-photo-admin-autosave.php:984
5668
+ msgid "Hi resolution url"
 
5669
  msgstr ""
5670
 
5671
+ #: wppa-photo-admin-autosave.php:989
5672
+ msgid "Display file url"
 
5673
  msgstr ""
5674
 
5675
+ #: wppa-photo-admin-autosave.php:995
5676
+ msgid "Thumbnail file url"
 
5677
  msgstr ""
5678
 
5679
+ #: wppa-photo-admin-autosave.php:1039 wppa-photo-admin-autosave.php:1049
5680
+ msgid "Trash"
 
 
 
5681
  msgstr ""
5682
 
5683
+ #: wppa-photo-admin-autosave.php:1165
5684
  #, php-format
5685
+ msgid "Time is out after processing %d out of %d items."
5686
  msgstr ""
5687
 
5688
+ #: wppa-photo-admin-autosave.php:1178
5689
+ #, php-format
5690
+ msgid "%d photos deleted."
5691
  msgstr ""
5692
 
5693
+ #: wppa-photo-admin-autosave.php:1181
5694
+ #, php-format
5695
+ msgid "%1$s photos moved to album %2$s."
5696
  msgstr ""
5697
 
5698
+ #: wppa-photo-admin-autosave.php:1184
5699
+ #, php-format
5700
+ msgid "%1$s photos copied to album %2$s."
5701
  msgstr ""
5702
 
5703
+ #: wppa-photo-admin-autosave.php:1187
5704
+ #, php-format
5705
+ msgid "Changed status to %1$s on %2$s photos."
5706
  msgstr ""
5707
 
5708
+ #: wppa-photo-admin-autosave.php:1190
5709
+ #, php-format
5710
+ msgid "Changed owner to %1$s on %2$s photos."
5711
  msgstr ""
5712
 
5713
+ #: wppa-photo-admin-autosave.php:1193
5714
+ #, php-format
5715
+ msgid "%d photos processed."
5716
  msgstr ""
5717
 
5718
+ #: wppa-photo-admin-autosave.php:1313
5719
+ msgid "Move to"
5720
  msgstr ""
5721
 
5722
+ #: wppa-photo-admin-autosave.php:1314
5723
+ msgid "Copy to"
5724
  msgstr ""
5725
 
5726
+ #: wppa-photo-admin-autosave.php:1316
5727
+ msgid "Set status to"
5728
  msgstr ""
5729
 
5730
+ #: wppa-photo-admin-autosave.php:1319
5731
+ msgid "Set owner to"
5732
  msgstr ""
5733
 
5734
+ #: wppa-photo-admin-autosave.php:1326
5735
+ msgid "- select a status -"
 
 
 
 
5736
  msgstr ""
5737
 
5738
+ #: wppa-photo-admin-autosave.php:1341
5739
+ msgid "- select an owner -"
5740
  msgstr ""
5741
 
5742
+ #: wppa-photo-admin-autosave.php:1353
5743
+ msgid "Doit!"
5744
  msgstr ""
5745
 
5746
+ #: wppa-photo-admin-autosave.php:1355
5747
+ msgid ""
5748
+ "Pressing this button will reload the page after executing the selected action"
5749
  msgstr ""
5750
 
5751
+ #: wppa-photo-admin-autosave.php:1362 wppa-photo-admin-autosave.php:1481
5752
+ #: wppa-potd-admin.php:321 wppa-settings-autosave.php:8506
5753
+ msgid "Preview"
5754
  msgstr ""
5755
 
5756
+ #: wppa-photo-admin-autosave.php:1367 wppa-photo-admin-autosave.php:1486
5757
+ msgid "Remark"
5758
  msgstr ""
5759
 
5760
+ #: wppa-photo-admin-autosave.php:1504
5761
+ #, php-format
5762
+ msgid "Page %d is empty, try <a href=\"%s\" >page %d</a>."
5763
  msgstr ""
5764
 
5765
+ #: wppa-photo-admin-autosave.php:1629
5766
+ msgid ""
5767
+ "Setting photo sequence order has only effect if the photo order method is "
5768
+ "set to <b>Order#</b>"
5769
  msgstr ""
5770
 
5771
+ #: wppa-photo-admin-autosave.php:1688
5772
+ msgid "Id: "
5773
  msgstr ""
5774
 
5775
+ #: wppa-photo-admin-autosave.php:1689 wppa-settings-autosave.php:389
5776
+ msgid "Video"
5777
  msgstr ""
5778
 
5779
+ #: wppa-photo-admin-autosave.php:1690 wppa-settings-autosave.php:370
5780
+ msgid "Audio"
 
 
5781
  msgstr ""
5782
 
5783
+ #: wppa-photo-admin-autosave.php:1691
5784
+ msgid "Ord: "
5785
  msgstr ""
5786
 
5787
+ #: wppa-photo-admin-autosave.php:1704
5788
+ msgid "The album is empty."
5789
  msgstr ""
5790
 
5791
+ #: wppa-photo-admin-autosave.php:1804
5792
+ msgid "Combined"
 
5793
  msgstr ""
5794
 
5795
+ #: wppa-photo-admin-autosave.php:1841
5796
+ msgid "Word"
5797
  msgstr ""
5798
 
5799
+ #: wppa-photo-admin-autosave.php:1844
5800
+ msgid "Count"
 
5801
  msgstr ""
5802
 
5803
+ #: wppa-photo-admin-autosave.php:1896 wppa-settings-autosave.php:6430
5804
+ msgid "Tags"
5805
  msgstr ""
5806
 
5807
+ #: wppa-photo-admin-autosave.php:2016
5808
+ msgid "Send"
 
 
 
 
 
 
 
5809
  msgstr ""
5810
 
5811
+ #: wppa-photo-files.php:144 wppa-photo-files.php:145
5812
+ #, php-format
5813
+ msgid "ERROR: File %s is not a valid picture file."
5814
+ msgstr "FEJL: Fil %s er ikke en gyldig billedfil."
5815
 
5816
+ #: wppa-photo-files.php:289 wppa-photo-files.php:290
5817
+ msgid "ERROR: Resized or copied image could not be created."
5818
+ msgstr "FEJL: Resized eller kopierede billede kunne ikke oprettes."
5819
 
5820
+ #: wppa-potd-admin.php:55
5821
+ msgid "Photo of the Day (Widget) Settings"
5822
  msgstr ""
5823
 
5824
+ #: wppa-potd-admin.php:56
5825
+ msgid "Changes are updated immediately. The page will reload if required."
5826
  msgstr ""
5827
 
5828
+ #: wppa-potd-admin.php:73 wppa-potd-admin.php:360
5829
+ #: wppa-settings-autosave.php:517 wppa-settings-autosave.php:679
5830
+ #: wppa-settings-autosave.php:701 wppa-settings-autosave.php:1449
5831
+ #: wppa-settings-autosave.php:1470 wppa-settings-autosave.php:3095
5832
+ #: wppa-settings-autosave.php:3477 wppa-settings-autosave.php:4782
5833
+ #: wppa-settings-autosave.php:6680 wppa-settings-autosave.php:7456
5834
+ #: wppa-settings-autosave.php:9178
5835
+ msgid "Setting"
5836
  msgstr ""
5837
 
5838
+ #: wppa-potd-admin.php:74 wppa-potd-admin.php:361
5839
+ #: wppa-settings-autosave.php:518 wppa-settings-autosave.php:680
5840
+ #: wppa-settings-autosave.php:702 wppa-settings-autosave.php:1450
5841
+ #: wppa-settings-autosave.php:1471 wppa-settings-autosave.php:3096
5842
+ #: wppa-settings-autosave.php:3120 wppa-settings-autosave.php:3457
5843
+ #: wppa-settings-autosave.php:3478 wppa-settings-autosave.php:4783
5844
+ #: wppa-settings-autosave.php:4807 wppa-settings-autosave.php:4983
5845
+ #: wppa-settings-autosave.php:5007 wppa-settings-autosave.php:6013
5846
+ #: wppa-settings-autosave.php:6682 wppa-settings-autosave.php:6706
5847
+ #: wppa-settings-autosave.php:7436 wppa-settings-autosave.php:7457
5848
+ #: wppa-settings-autosave.php:9179 wppa-settings-autosave.php:9201
5849
+ #: wppa-settings-autosave.php:9241 wppa-settings-autosave.php:9263
5850
+ #: wppa-settings-autosave.php:9309
5851
+ msgid "Help"
5852
  msgstr ""
5853
 
5854
+ #: wppa-potd-admin.php:82
5855
+ msgid "Widget Title:"
5856
  msgstr ""
5857
 
5858
+ #: wppa-potd-admin.php:83
5859
+ msgid "The title of the widget."
5860
  msgstr ""
5861
 
5862
+ #: wppa-potd-admin.php:84
5863
+ msgid ""
5864
+ "Enter/modify the title for the widget. This is a default and can be "
5865
+ "overriden at widget activation."
5866
  msgstr ""
5867
 
5868
+ #: wppa-potd-admin.php:89
5869
+ msgid "Widget Photo Width:"
5870
  msgstr ""
5871
 
5872
+ #: wppa-potd-admin.php:90
5873
+ msgid "Enter the desired display width of the photo in the sidebar."
5874
  msgstr ""
5875
 
5876
+ #: wppa-potd-admin.php:93 wppa-settings-autosave.php:719
5877
+ #: wppa-settings-autosave.php:728 wppa-settings-autosave.php:850
5878
+ #: wppa-settings-autosave.php:1012 wppa-settings-autosave.php:1023
5879
+ msgid "pixels wide"
5880
  msgstr ""
5881
 
5882
+ #: wppa-potd-admin.php:96 wppa-tinymce-scripts.php:284
5883
+ #: wppa-tinymce-shortcodes.php:613
5884
+ msgid "Horizontal alignment:"
5885
  msgstr ""
5886
 
5887
+ #: wppa-potd-admin.php:97
5888
+ msgid "Enter the desired display alignment of the photo in the sidebar."
 
5889
  msgstr ""
5890
 
5891
+ #: wppa-potd-admin.php:100 wppa-settings-autosave.php:3813
5892
+ #: wppa-settings-autosave.php:3827 wppa-settings-autosave.php:4078
5893
+ #: wppa-slideshow-widget.php:215 wppa-tinymce-scripts.php:289
5894
+ #: wppa-tinymce-shortcodes.php:618
5895
+ msgid "center"
5896
  msgstr ""
5897
 
5898
+ #: wppa-potd-admin.php:109
5899
+ msgid "Enter the url. Do'nt forget the HTTP://"
5900
  msgstr ""
5901
 
5902
+ #: wppa-potd-admin.php:115
5903
+ msgid "Link Title:"
5904
  msgstr ""
5905
 
5906
+ #: wppa-potd-admin.php:116
5907
+ msgid "The balloon text when hovering over the photo."
5908
  msgstr ""
5909
 
5910
+ #: wppa-potd-admin.php:125
5911
+ msgid "Links are set on the <b>Photo Albums -> Settings</b> screen."
5912
  msgstr ""
5913
 
5914
+ #: wppa-potd-admin.php:133
5915
+ msgid "Select the content of the subtitle."
5916
  msgstr ""
5917
 
5918
+ #: wppa-potd-admin.php:137
5919
+ msgid "Photo Name"
5920
  msgstr ""
5921
 
5922
+ #: wppa-potd-admin.php:145
5923
+ msgid "Counter:"
5924
  msgstr ""
5925
 
5926
+ #: wppa-potd-admin.php:146
5927
+ msgid "Display a counter of other photos in the album."
5928
  msgstr ""
5929
 
5930
+ #: wppa-potd-admin.php:153
5931
+ msgid "The counter links to."
5932
  msgstr ""
5933
 
5934
+ #: wppa-potd-admin.php:156 wppa-settings-autosave.php:1075
5935
+ #: wppa-settings-autosave.php:5757 wppa-settings-autosave.php:5790
5936
+ #: wppa-settings-autosave.php:5887
5937
+ msgid "thumbnails"
5938
  msgstr ""
5939
 
5940
+ #: wppa-potd-admin.php:156 wppa-settings-autosave.php:5758
5941
+ #: wppa-settings-autosave.php:5791 wppa-settings-autosave.php:5888
5942
+ msgid "slideshow"
5943
  msgstr ""
5944
 
5945
+ #: wppa-potd-admin.php:156
5946
+ msgid "single image"
5947
  msgstr ""
5948
 
5949
+ #: wppa-potd-admin.php:161
5950
+ msgid "Type of album(s) to use:"
5951
  msgstr ""
5952
 
5953
+ #: wppa-potd-admin.php:162
5954
+ msgid "Select physical or virtual."
5955
  msgstr ""
5956
 
5957
+ #: wppa-potd-admin.php:165
5958
+ msgid "physical albums"
5959
  msgstr ""
5960
 
5961
+ #: wppa-potd-admin.php:165
5962
+ msgid "virtual albums"
5963
  msgstr ""
5964
 
5965
+ #: wppa-potd-admin.php:170
5966
+ msgid "Albums to use:"
5967
  msgstr ""
5968
 
5969
+ #: wppa-potd-admin.php:171 wppa-potd-admin.php:194
5970
+ msgid "Select the albums to use for the photo of the day."
 
 
 
 
 
5971
  msgstr ""
5972
 
5973
+ #: wppa-potd-admin.php:190 wppa-potd-admin.php:644 wppa-potd-admin.php:669
5974
+ #: wppa-potd-admin.php:707 wppa-settings-autosave.php:353
5975
+ #: wppa-settings-autosave.php:7300 wppa-settings-autosave.php:7327
5976
+ #: wppa-settings-autosave.php:8395 wppa-settings-autosave.php:8397
5977
+ #: wppa-settings-autosave.php:9686 wppa-settings-autosave.php:9703
5978
+ #: wppa-settings-autosave.php:9732 wppa-settings-autosave.php:9750
5979
+ #: wppa-settings-autosave.php:9774 wppa-settings-autosave.php:9795
5980
+ #: wppa-settings-autosave.php:9815 wppa-settings-autosave.php:9832
5981
+ #: wppa-settings-autosave.php:9876 wppa-settings-autosave.php:9929
5982
+ #: wppa-settings-autosave.php:9961
5983
+ msgid "Setting unmodified"
 
 
5984
  msgstr ""
5985
 
5986
+ #: wppa-potd-admin.php:195
5987
+ msgid "- all albums -"
 
 
5988
  msgstr ""
5989
 
5990
+ #: wppa-potd-admin.php:196
5991
+ msgid "- all -separate- albums -"
5992
  msgstr ""
5993
 
5994
+ #: wppa-potd-admin.php:197
5995
+ msgid "- all albums except -separate-"
 
 
5996
  msgstr ""
5997
 
5998
+ #: wppa-potd-admin.php:198
5999
+ msgid "- top rated photos -"
 
 
6000
  msgstr ""
6001
 
6002
+ #: wppa-potd-admin.php:206
6003
+ msgid "Include (grand)children:"
6004
  msgstr ""
6005
 
6006
+ #: wppa-potd-admin.php:207
6007
+ msgid "Include the photos of all sub albums?"
 
 
6008
  msgstr ""
6009
 
6010
+ #: wppa-potd-admin.php:213
6011
+ msgid "Inverse selection:"
 
 
6012
  msgstr ""
6013
 
6014
+ #: wppa-potd-admin.php:214
6015
+ msgid "Use any album, except the selection made above."
6016
  msgstr ""
6017
 
6018
+ #: wppa-potd-admin.php:221
6019
+ msgid "Status filter:"
6020
  msgstr ""
6021
 
6022
+ #: wppa-potd-admin.php:222
6023
+ msgid "Use only photos with a certain status."
 
 
 
6024
  msgstr ""
6025
 
6026
+ #: wppa-potd-admin.php:223
6027
+ msgid "Select - none - if you want no filtering on status."
6028
  msgstr ""
6029
 
6030
+ #: wppa-potd-admin.php:225
6031
+ msgid "- none -"
 
6032
  msgstr ""
6033
 
6034
+ #: wppa-potd-admin.php:231
6035
+ msgid "Any medal"
 
 
 
6036
  msgstr ""
6037
 
6038
+ #: wppa-potd-admin.php:244
6039
+ msgid "Display method:"
 
6040
  msgstr ""
6041
 
6042
+ #: wppa-potd-admin.php:245
6043
+ msgid "Select the way a photo will be selected."
 
 
6044
  msgstr ""
6045
 
6046
+ #: wppa-potd-admin.php:248
6047
+ msgid "Fixed photo"
6048
  msgstr ""
6049
 
6050
+ #: wppa-potd-admin.php:250
6051
+ msgid "Last upload"
6052
  msgstr ""
6053
 
6054
+ #: wppa-potd-admin.php:251
6055
+ msgid "Change every"
6056
  msgstr ""
6057
 
6058
+ #: wppa-potd-admin.php:258
6059
+ msgid "Change every period:"
6060
  msgstr ""
6061
 
6062
+ #: wppa-potd-admin.php:259
6063
+ msgid "The time period a certain photo is used."
6064
  msgstr ""
6065
 
6066
+ #: wppa-potd-admin.php:262
6067
+ msgid "pageview."
6068
  msgstr ""
6069
 
6070
+ #: wppa-potd-admin.php:263
6071
+ msgid "hour."
6072
  msgstr ""
6073
 
6074
+ #: wppa-potd-admin.php:264
6075
+ msgid "day."
6076
  msgstr ""
6077
 
6078
+ #: wppa-potd-admin.php:265
6079
+ msgid "week."
 
 
6080
  msgstr ""
6081
 
6082
+ #: wppa-potd-admin.php:266
6083
+ msgid "month."
6084
  msgstr ""
6085
 
6086
+ #: wppa-potd-admin.php:267
6087
+ msgid "day of week is order#"
 
6088
  msgstr ""
6089
 
6090
+ #: wppa-potd-admin.php:268
6091
+ msgid "day of month is order#"
 
6092
  msgstr ""
6093
 
6094
+ #: wppa-potd-admin.php:269
6095
+ msgid "day of year is order#"
6096
  msgstr ""
6097
 
6098
+ #: wppa-potd-admin.php:294
6099
+ msgid "Day offset:"
 
 
6100
  msgstr ""
6101
 
6102
+ #: wppa-potd-admin.php:295
6103
+ msgid "The difference between daynumber and photo order number."
6104
  msgstr ""
6105
 
6106
+ #: wppa-potd-admin.php:306
6107
+ #, php-format
6108
+ msgid "Current day# = %s, offset ="
 
6109
  msgstr ""
6110
 
6111
+ #: wppa-potd-admin.php:315
6112
+ #, php-format
6113
+ msgid "Todays photo order# = %s."
6114
  msgstr ""
6115
 
6116
+ #: wppa-potd-admin.php:322
6117
+ msgid "Current \"photo of the day\":"
6118
  msgstr ""
6119
 
6120
+ #: wppa-potd-admin.php:331
6121
+ msgid "Album"
 
 
6122
  msgstr ""
6123
 
6124
+ #: wppa-potd-admin.php:333
6125
+ msgid "Uploader"
6126
  msgstr ""
6127
 
6128
+ #: wppa-potd-admin.php:338
6129
+ msgid "Not found."
6130
  msgstr ""
6131
 
6132
+ #: wppa-potd-admin.php:342
6133
+ msgid "Show selection"
6134
  msgstr ""
6135
 
6136
+ #: wppa-potd-admin.php:343
6137
+ msgid "Show the photos in the current selection."
 
6138
  msgstr ""
6139
 
6140
+ #: wppa-potd-admin.php:386
6141
+ msgid "Photos in the current selection"
6142
  msgstr ""
6143
 
6144
+ #: wppa-potd-admin.php:411
6145
+ msgid "No photos in the selection"
6146
  msgstr ""
6147
 
6148
+ #: wppa-potd-admin.php:414
6149
+ #, php-format
6150
+ msgid "There are too many photos in the selection to show a preview ( %d )"
6151
  msgstr ""
6152
 
6153
+ #: wppa-potd-admin.php:573 wppa-settings-autosave.php:9614
6154
+ msgid "The default for this setting is:"
6155
  msgstr ""
6156
 
6157
+ #: wppa-potd-admin.php:590 wppa-settings-autosave.php:9631
6158
+ msgid "Click for help"
6159
  msgstr ""
6160
 
6161
+ #: wppa-potd-admin.php:614 wppa-settings-autosave.php:9977
6162
+ msgid "Checked"
6163
  msgstr ""
6164
 
6165
+ #: wppa-potd-admin.php:615 wppa-settings-autosave.php:9978
6166
+ msgid "Unchecked"
 
 
6167
  msgstr ""
6168
 
6169
+ #: wppa-potd-admin.php:616 wppa-settings-autosave.php:5065
6170
+ #: wppa-settings-autosave.php:5108 wppa-settings-autosave.php:5186
6171
+ #: wppa-settings-autosave.php:5229 wppa-settings-autosave.php:5277
6172
+ #: wppa-settings-autosave.php:5324 wppa-settings-autosave.php:5371
6173
+ #: wppa-settings-autosave.php:5423 wppa-settings-autosave.php:5461
6174
+ #: wppa-settings-autosave.php:5511 wppa-settings-autosave.php:5553
6175
+ #: wppa-settings-autosave.php:5594 wppa-settings-autosave.php:9979
6176
+ msgid "no link at all."
6177
  msgstr ""
6178
 
6179
+ #: wppa-potd-admin.php:617 wppa-settings-autosave.php:5066
6180
+ #: wppa-settings-autosave.php:5109 wppa-settings-autosave.php:5187
6181
+ #: wppa-settings-autosave.php:5230 wppa-settings-autosave.php:5278
6182
+ #: wppa-settings-autosave.php:5325 wppa-settings-autosave.php:5372
6183
+ #: wppa-settings-autosave.php:5424 wppa-settings-autosave.php:5462
6184
+ #: wppa-settings-autosave.php:5512 wppa-settings-autosave.php:5554
6185
+ #: wppa-settings-autosave.php:5595 wppa-settings-autosave.php:9980
6186
+ msgid "the plain photo (file)."
6187
  msgstr ""
6188
 
6189
+ #: wppa-potd-admin.php:618 wppa-settings-autosave.php:5069
6190
+ #: wppa-settings-autosave.php:5112 wppa-settings-autosave.php:5188
6191
+ #: wppa-settings-autosave.php:5233 wppa-settings-autosave.php:5281
6192
+ #: wppa-settings-autosave.php:5328 wppa-settings-autosave.php:5375
6193
+ #: wppa-settings-autosave.php:5463 wppa-settings-autosave.php:5514
6194
+ #: wppa-settings-autosave.php:5556 wppa-settings-autosave.php:9981
6195
+ msgid "the full size photo in a slideshow."
6196
  msgstr ""
6197
 
6198
+ #: wppa-potd-admin.php:619 wppa-settings-autosave.php:5070
6199
+ #: wppa-settings-autosave.php:5113 wppa-settings-autosave.php:5189
6200
+ #: wppa-settings-autosave.php:5234 wppa-settings-autosave.php:5282
6201
+ #: wppa-settings-autosave.php:5329 wppa-settings-autosave.php:5376
6202
+ #: wppa-settings-autosave.php:5464 wppa-settings-autosave.php:5515
6203
+ #: wppa-settings-autosave.php:5557 wppa-settings-autosave.php:5596
6204
+ #: wppa-settings-autosave.php:9982
6205
+ msgid "the fullsize photo on its own."
6206
  msgstr ""
6207
 
6208
+ #: wppa-potd-admin.php:620 wppa-settings-autosave.php:9983
6209
+ msgid "the photo specific link."
6210
  msgstr ""
6211
 
6212
+ #: wppa-potd-admin.php:621 wppa-settings-autosave.php:5068
6213
+ #: wppa-settings-autosave.php:5111 wppa-settings-autosave.php:5513
6214
+ #: wppa-settings-autosave.php:5555 wppa-settings-autosave.php:9984
6215
+ msgid "the content of the album."
6216
  msgstr ""
6217
 
6218
+ #: wppa-potd-admin.php:622 wppa-settings-autosave.php:5110
6219
+ #: wppa-settings-autosave.php:9985
6220
+ msgid "defined at widget activation."
6221
  msgstr ""
6222
 
6223
+ #: wppa-potd-admin.php:623 wppa-settings-autosave.php:5067
6224
+ #: wppa-settings-autosave.php:9986
6225
+ msgid "defined on widget admin page."
6226
  msgstr ""
6227
 
6228
+ #: wppa-potd-admin.php:624 wppa-settings-autosave.php:5425
6229
+ #: wppa-settings-autosave.php:9987
6230
+ msgid "same as title."
 
6231
  msgstr ""
6232
 
6233
+ #: wppa-potd-admin.php:636 wppa-potd-admin.php:659 wppa-potd-admin.php:680
6234
+ #: wppa-settings-autosave.php:9676 wppa-settings-autosave.php:9695
6235
+ #: wppa-settings-autosave.php:9725 wppa-settings-autosave.php:9742
6236
+ #: wppa-settings-autosave.php:9766 wppa-settings-autosave.php:9787
6237
+ #: wppa-settings-autosave.php:9807 wppa-settings-autosave.php:9849
6238
+ msgid "Slug ="
6239
  msgstr ""
6240
 
6241
+ #: wppa-potd-admin.php:636 wppa-settings-autosave.php:9742
6242
+ #: wppa-settings-autosave.php:9766 wppa-settings-autosave.php:9787
6243
+ #: wppa-settings-autosave.php:9807
6244
+ msgid "Values = yes, no"
6245
  msgstr ""
6246
 
6247
+ #: wppa-potd-admin.php:680 wppa-settings-autosave.php:9849
6248
+ msgid "Values = "
 
 
6249
  msgstr ""
6250
 
6251
+ #: wppa-potd-widget.php:14
6252
+ msgid "WPPA+ Photo Of The Day"
6253
  msgstr ""
6254
 
6255
+ #: wppa-potd-widget.php:15
6256
+ msgid "Photo Of The Day"
6257
  msgstr ""
6258
 
6259
+ #: wppa-potd-widget.php:212
6260
  msgid ""
6261
+ "You can set the content and the sizes in this widget in the <b>Photo Albums -"
6262
+ "> Photo of the day</b> admin page."
6263
  msgstr ""
6264
 
6265
+ #: wppa-qr-widget.php:13
6266
+ msgid "WPPA+ QR Widget"
6267
  msgstr ""
6268
 
6269
+ #: wppa-qr-widget.php:14 wppa-qr-widget.php:32
6270
+ msgid "QR Widget"
6271
  msgstr ""
6272
 
6273
+ #: wppa-qr-widget.php:95
6274
  msgid ""
6275
+ "You can set the sizes and colors in this widget in the <b>Photo Albums -> "
6276
+ "Settings</b> admin page."
 
 
 
 
6277
  msgstr ""
6278
 
6279
+ #: wppa-search-widget.php:13
6280
+ msgid "WPPA+ Search Photos"
6281
  msgstr ""
6282
 
6283
+ #: wppa-search-widget.php:14 wppa-search-widget.php:36
6284
+ #: wppa-search-widget.php:78
6285
+ msgid "Search Photos"
6286
  msgstr ""
6287
 
6288
+ #: wppa-search-widget.php:100
6289
+ msgid "Text:"
6290
  msgstr ""
6291
 
6292
+ #: wppa-search-widget.php:104
6293
  msgid ""
6294
+ "Enter optional text that will appear before the input box. This may contain "
6295
+ "HTML so you can change font size and color."
6296
  msgstr ""
6297
 
6298
+ #: wppa-search-widget.php:108
6299
+ msgid "Enable rootsearch"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6300
  msgstr ""
6301
 
6302
+ #: wppa-search-widget.php:113
6303
+ msgid ""
6304
+ "If you want the search to be limited to a specific album and its "
6305
+ "(grand)children, select the album here."
6306
  msgstr ""
6307
 
6308
+ #: wppa-search-widget.php:115
6309
+ msgid ""
6310
+ "If you select an album here, it will overrule the previous checkbox using "
6311
+ "the album as a 'fixed' root."
6312
  msgstr ""
6313
 
6314
+ #: wppa-search-widget.php:129
6315
+ msgid "Enable subsearch"
6316
  msgstr ""
6317
 
6318
+ #: wppa-search-widget.php:134 wppa-settings-autosave.php:5939
6319
+ msgid "Landing page"
 
 
 
 
6320
  msgstr ""
6321
 
6322
+ #: wppa-search-widget.php:143
6323
+ msgid "--- Default ---"
 
 
 
 
6324
  msgstr ""
6325
 
6326
+ #: wppa-search-widget.php:186
6327
+ msgid "The default page will be created automaticly"
6328
  msgstr ""
6329
 
6330
+ #: wppa-settings-autosave.php:55
6331
+ msgid "Close!"
6332
  msgstr ""
6333
 
6334
+ #: wppa-settings-autosave.php:103
6335
+ msgid "Saved settings restored"
 
 
6336
  msgstr ""
6337
 
6338
+ #: wppa-settings-autosave.php:106
6339
+ msgid "Unable to restore saved settings"
6340
  msgstr ""
6341
 
6342
+ #: wppa-settings-autosave.php:112
6343
+ msgid "Reset to default settings"
6344
  msgstr ""
6345
 
6346
+ #: wppa-settings-autosave.php:115
6347
+ msgid "Unable to set defaults"
 
 
6348
  msgstr ""
6349
 
6350
+ #: wppa-settings-autosave.php:120
6351
+ #, php-format
6352
+ msgid "Skinfile %s loaded"
6353
  msgstr ""
6354
 
6355
+ #: wppa-settings-autosave.php:131 wppa-settings-autosave.php:153
6356
+ #: wppa-settings-autosave.php:174
6357
+ #, php-format
6358
+ msgid "Upload error %s"
6359
  msgstr ""
6360
 
6361
+ #: wppa-settings-autosave.php:136
6362
+ #, php-format
6363
+ msgid "Uploaded file %s is not a .png file"
6364
  msgstr ""
6365
 
6366
+ #: wppa-settings-autosave.php:140 wppa-settings-autosave.php:161
6367
+ #: wppa-settings-autosave.php:197
6368
+ #, php-format
6369
+ msgid "Upload of %s done"
6370
  msgstr ""
6371
 
6372
+ #: wppa-settings-autosave.php:145 wppa-settings-autosave.php:166
6373
+ #: wppa-settings-autosave.php:202
6374
+ msgid "No file selected or error on upload"
 
 
6375
  msgstr ""
6376
 
6377
+ #: wppa-settings-autosave.php:157
6378
+ #, php-format
6379
+ msgid "Uploaded file %s is not a .ttf file"
6380
  msgstr ""
6381
 
6382
+ #: wppa-settings-autosave.php:179
6383
+ #, php-format
6384
+ msgid "Uploaded file %s is not a valid image file"
6385
  msgstr ""
6386
 
6387
+ #: wppa-settings-autosave.php:258
6388
+ #, php-format
6389
+ msgid ""
6390
+ "%s invalid ratings removed. Please run Table VIII-A5: Rerate to fix the "
6391
+ "averages."
6392
  msgstr ""
6393
 
6394
+ #: wppa-settings-autosave.php:269
6395
+ #, php-format
6396
+ msgid "%s last album used settings removed."
6397
  msgstr ""
6398
 
6399
+ #: wppa-settings-autosave.php:277
6400
+ msgid "WP Photo Album Plus Settings"
6401
  msgstr ""
6402
 
6403
+ #: wppa-settings-autosave.php:278
6404
+ msgid "Database revision:"
6405
  msgstr ""
6406
 
6407
+ #: wppa-settings-autosave.php:278
6408
+ msgid "WP Charset:"
6409
  msgstr ""
6410
 
6411
+ #: wppa-settings-autosave.php:281
6412
+ msgid "Multisite in singlesite mode."
6413
  msgstr ""
6414
 
6415
+ #: wppa-settings-autosave.php:284
6416
+ msgid "Multisite enabled."
6417
  msgstr ""
6418
 
6419
+ #: wppa-settings-autosave.php:286
6420
+ msgid "Blogid ="
6421
  msgstr ""
6422
 
6423
+ #: wppa-settings-autosave.php:303
6424
+ msgid "Please de-activate plugin <i style=\"font-size:14px;\">"
6425
  msgstr ""
6426
 
6427
+ #: wppa-settings-autosave.php:303
6428
+ msgid ". </i>This plugin will cause wppa+ to function not properly."
6429
  msgstr ""
6430
 
6431
+ #: wppa-settings-autosave.php:313
6432
+ msgid "Please note that plugin <i style=\"font-size:14px;\">"
6433
  msgstr ""
6434
 
6435
+ #: wppa-settings-autosave.php:313
6436
+ msgid "</i> can cause wppa+ to function not properly if it is misconfigured."
 
6437
  msgstr ""
6438
 
6439
+ #: wppa-settings-autosave.php:318
6440
  msgid ""
6441
+ "There is a serious misconfiguration in your servers PHP config. Function "
6442
+ "wppa_imagecreatefromjpeg() does not exist. You will encounter problems when "
6443
+ "uploading photos and not be able to generate thumbnail images. Ask your "
6444
+ "hosting provider to add GD support with a minimal version 1.8."
 
6445
  msgstr ""
6446
 
6447
+ #: wppa-settings-autosave.php:323
6448
+ msgid "Rebuilding the Album index needs completion. See Table VIII"
6449
  msgstr ""
6450
 
6451
+ #: wppa-settings-autosave.php:324
6452
+ msgid "Rebuilding the Photo index needs completion. See Table VIII"
 
 
6453
  msgstr ""
6454
 
6455
+ #: wppa-settings-autosave.php:326
6456
+ msgid "Remove empty albums needs completion. See Table VIII"
 
 
 
 
6457
  msgstr ""
6458
 
6459
+ #: wppa-settings-autosave.php:327
6460
+ msgid "Applying new photo description needs completion. See Table VIII"
 
6461
  msgstr ""
6462
 
6463
+ #: wppa-settings-autosave.php:328
6464
+ msgid "Appending to photo description needs completion. See Table VIII"
6465
  msgstr ""
6466
 
6467
+ #: wppa-settings-autosave.php:329
6468
+ msgid "Removing from photo description needs completion. See Table VIII"
6469
  msgstr ""
6470
 
6471
+ #: wppa-settings-autosave.php:330
6472
+ msgid "Removing file extensions needs completion. See Table VIII"
 
 
 
6473
  msgstr ""
6474
 
6475
+ #: wppa-settings-autosave.php:331
6476
+ msgid "Regenerating the Thumbnails needs completion. See Table VIII"
6477
  msgstr ""
6478
 
6479
+ #: wppa-settings-autosave.php:332
6480
+ msgid "Rerating needs completion. See Table VIII"
6481
  msgstr ""
6482
 
6483
+ #: wppa-settings-autosave.php:340
6484
  msgid ""
6485
+ "A thumbframe width or height should not be smaller than a thumbnail size. "
6486
+ "Please correct the corresponding setting(s) in Table I-C"
6487
  msgstr ""
6488
 
6489
+ #: wppa-settings-autosave.php:345
6490
+ msgid "Show legenda"
 
 
6491
  msgstr ""
6492
 
6493
+ #: wppa-settings-autosave.php:347
6494
+ msgid "Legenda:"
6495
  msgstr ""
6496
 
6497
+ #: wppa-settings-autosave.php:348 wppa-settings-autosave.php:350
6498
+ #: wppa-settings-autosave.php:2031 wppa-settings-autosave.php:5686
6499
+ msgid "Button"
6500
  msgstr ""
6501
 
6502
+ #: wppa-settings-autosave.php:348
6503
+ msgid "action that causes page reload."
6504
  msgstr ""
6505
 
6506
+ #: wppa-settings-autosave.php:350 wppa-settings-autosave.php:10010
6507
+ #: wppa-settings-autosave.php:10029
6508
+ msgid "Are you sure?"
6509
  msgstr ""
6510
 
6511
+ #: wppa-settings-autosave.php:351
6512
+ msgid "action that does not cause page reload."
 
 
 
6513
  msgstr ""
6514
 
6515
+ #: wppa-settings-autosave.php:355
6516
+ msgid "Update in progress"
6517
  msgstr ""
6518
 
6519
+ #: wppa-settings-autosave.php:357
6520
+ msgid "Setting updated"
6521
  msgstr ""
6522
 
6523
+ #: wppa-settings-autosave.php:359
6524
+ msgid "Update failed"
6525
  msgstr ""
6526
 
6527
+ #: wppa-settings-autosave.php:361
6528
+ msgid "Hide this"
6529
  msgstr ""
6530
 
6531
+ #: wppa-settings-autosave.php:367
6532
+ msgid "System"
6533
  msgstr ""
6534
 
6535
+ #: wppa-settings-autosave.php:368
6536
+ msgid "Access"
 
 
6537
  msgstr ""
6538
 
6539
+ #: wppa-settings-autosave.php:372
6540
+ msgid "Counts"
6541
  msgstr ""
6542
 
6543
+ #: wppa-settings-autosave.php:373
6544
+ msgid "Covers"
6545
  msgstr ""
6546
 
6547
+ #: wppa-settings-autosave.php:374
6548
+ msgid "Layout"
6549
  msgstr ""
6550
 
6551
+ #: wppa-settings-autosave.php:375 wppa-settings-autosave.php:4955
6552
+ msgid "Lightbox"
6553
  msgstr ""
6554
 
6555
+ #: wppa-settings-autosave.php:376
6556
+ msgid "Links"
6557
  msgstr ""
6558
 
6559
+ #: wppa-settings-autosave.php:377
6560
+ msgid "Metadata"
 
 
6561
  msgstr ""
6562
 
6563
+ #: wppa-settings-autosave.php:378
6564
+ msgid "Navigation"
 
 
 
6565
  msgstr ""
6566
 
6567
+ #: wppa-settings-autosave.php:380 wppa-settings-autosave.php:8538
6568
+ #: wppa-settings-autosave.php:8583
6569
+ msgid "Rating"
6570
  msgstr ""
6571
 
6572
+ #: wppa-settings-autosave.php:382
6573
+ msgid "Sizes"
6574
  msgstr ""
6575
 
6576
+ #: wppa-settings-autosave.php:383
6577
+ msgid "Slideshows"
6578
  msgstr ""
6579
 
6580
+ #: wppa-settings-autosave.php:384
6581
+ msgid "Social Media"
6582
  msgstr ""
6583
 
6584
+ #: wppa-settings-autosave.php:386
6585
+ msgid "Uploads"
6586
  msgstr ""
6587
 
6588
+ #: wppa-settings-autosave.php:387
6589
+ msgid "Widgets"
6590
  msgstr ""
6591
 
6592
+ #: wppa-settings-autosave.php:388 wppa-settings-autosave.php:8376
6593
+ msgid "Watermark"
6594
  msgstr ""
6595
 
6596
+ #: wppa-settings-autosave.php:396
6597
+ msgid "Click on the banner of a (sub)table to open/close it, or"
6598
  msgstr ""
6599
 
6600
+ #: wppa-settings-autosave.php:398
6601
+ msgid "Show settings related to:"
6602
  msgstr ""
6603
 
6604
+ #: wppa-settings-autosave.php:404
6605
+ msgid "and ( optionally ) to:"
6606
  msgstr ""
6607
 
6608
+ #: wppa-settings-autosave.php:420
6609
+ msgid "Quick setup"
6610
  msgstr ""
6611
 
6612
+ #: wppa-settings-autosave.php:422
6613
+ msgid "Do a quick initial setup"
6614
  msgstr ""
6615
 
6616
+ #: wppa-settings-autosave.php:423
6617
+ msgid "Close quick setup"
6618
  msgstr ""
6619
 
6620
+ #: wppa-settings-autosave.php:463
6621
+ msgid "--- The same post or page ---"
6622
  msgstr ""
6623
 
6624
+ #: wppa-settings-autosave.php:494
6625
+ msgid "--- No page to link to (yet) ---"
6626
  msgstr ""
6627
 
6628
+ #: wppa-settings-autosave.php:499
6629
+ msgid "--- Will be auto created ---"
6630
  msgstr ""
6631
 
6632
+ #: wppa-settings-autosave.php:506
6633
+ msgid "Table O:"
6634
  msgstr ""
6635
 
6636
+ #: wppa-settings-autosave.php:506
6637
+ msgid "Quick Setup:"
6638
  msgstr ""
6639
 
6640
+ #: wppa-settings-autosave.php:507
6641
+ msgid "This table enables you to quickly do an inital setup."
6642
  msgstr ""
6643
 
6644
+ #: wppa-settings-autosave.php:529
6645
+ msgid ""
6646
+ "To quickly setup WPPA+ please answer the following questions. You can alway "
6647
+ "change any setting later. <a>Click on me!</a>"
6648
  msgstr ""
6649
 
6650
+ #: wppa-settings-autosave.php:531
6651
+ msgid "Is your theme <i>responsive</i>?"
6652
  msgstr ""
6653
 
6654
+ #: wppa-settings-autosave.php:532
6655
+ msgid ""
6656
+ "Responsive themes have a layout that varies with the size of the browser "
6657
+ "window."
6658
  msgstr ""
6659
 
6660
+ #: wppa-settings-autosave.php:533
6661
+ msgid ""
6662
+ "WPPA+ needs to know this to automaticly adept the width of the display to "
6663
+ "the available width on the page."
6664
  msgstr ""
6665
 
6666
+ #: wppa-settings-autosave.php:540
6667
+ msgid "Do you want to downsize photos during upload?"
6668
  msgstr ""
6669
 
6670
+ #: wppa-settings-autosave.php:541
6671
+ msgid ""
6672
+ "Downsizing photos make them load faster to the visitor, without loosing "
6673
+ "display quality"
6674
  msgstr ""
6675
 
6676
+ #: wppa-settings-autosave.php:542
 
 
6677
  msgid ""
6678
+ "If you answer yes, the photos will be downsized to max 1024 x 768 pixels. "
6679
+ "You can change this later, if you like"
6680
  msgstr ""
6681
 
6682
+ #: wppa-settings-autosave.php:549
6683
+ msgid "Do you want to save the original photofiles?"
6684
  msgstr ""
6685
 
6686
+ #: wppa-settings-autosave.php:550
6687
+ msgid "This will require considerable disk space on the server."
6688
  msgstr ""
6689
 
6690
+ #: wppa-settings-autosave.php:551
6691
+ msgid ""
6692
+ "If you answer yes, you will be able to remove watermarks you applied with "
6693
+ "wppa+ in a later stage, redo downsizing to a larger size afterwards, and "
6694
+ "supply fullsize images for download."
6695
  msgstr ""
6696
 
6697
+ #: wppa-settings-autosave.php:558
6698
+ msgid "May visitors upload photos?"
6699
  msgstr ""
6700
 
6701
+ #: wppa-settings-autosave.php:559
6702
+ msgid ""
6703
+ "It is safe to do so, but i will have to do some settings to keep it safe!"
6704
  msgstr ""
6705
 
6706
+ #: wppa-settings-autosave.php:560
6707
+ msgid ""
6708
+ "If you answer yes, i will assume you want to enable logged in users to "
6709
+ "upload photos at the front-end of the website and allow them to edit their "
6710
+ "photos name and descriptions."
6711
  msgstr ""
6712
 
6713
+ #: wppa-settings-autosave.php:561
6714
+ msgid ""
6715
+ "The photos will be hold for moderation, the admin will get notified by email."
6716
  msgstr ""
6717
 
6718
+ #: wppa-settings-autosave.php:562
6719
+ msgid ""
6720
+ "Each user will get his own album to upload to. These settings can be changed "
6721
+ "later."
6722
  msgstr ""
6723
 
6724
+ #: wppa-settings-autosave.php:569
6725
+ msgid "Do you want the rating system active?"
6726
  msgstr ""
6727
 
6728
+ #: wppa-settings-autosave.php:570
6729
+ msgid "Enable the rating system and show the votes in the slideshow."
6730
  msgstr ""
6731
 
6732
+ #: wppa-settings-autosave.php:571
6733
+ msgid "You can configure the details of the rating system later"
6734
  msgstr ""
6735
 
6736
+ #: wppa-settings-autosave.php:578
6737
+ msgid "Do you want the comment system active?"
6738
  msgstr ""
6739
 
6740
+ #: wppa-settings-autosave.php:579
6741
+ msgid "Enable the comment system and show the comments in the slideshow."
 
 
6742
  msgstr ""
6743
 
6744
+ #: wppa-settings-autosave.php:580
6745
+ msgid "You can configure the details of the comment system later"
 
 
6746
  msgstr ""
6747
 
6748
+ #: wppa-settings-autosave.php:587
6749
+ msgid "Do you want the social media share buttons displayed?"
6750
  msgstr ""
6751
 
6752
+ #: wppa-settings-autosave.php:588
6753
+ msgid "Display the social media buttons in the slideshow"
6754
  msgstr ""
6755
 
6756
+ #: wppa-settings-autosave.php:589
6757
  msgid ""
6758
+ "These buttons share the specific photo rather than the page where it is "
6759
+ "displayed on"
6760
  msgstr ""
6761
 
6762
+ #: wppa-settings-autosave.php:596
6763
+ msgid "Are you going to use IPTC data?"
 
 
6764
  msgstr ""
6765
 
6766
+ #: wppa-settings-autosave.php:597
6767
+ msgid ""
6768
+ "IPTC data is information you may have added in a photo manipulation program."
6769
  msgstr ""
6770
 
6771
+ #: wppa-settings-autosave.php:598 wppa-settings-autosave.php:607
6772
  msgid ""
6773
+ "The information can be displayed in slideshows and in photo descriptions."
 
6774
  msgstr ""
6775
 
6776
+ #: wppa-settings-autosave.php:605
6777
+ msgid "Are you going to use EXIF data?"
6778
  msgstr ""
6779
 
6780
+ #: wppa-settings-autosave.php:606
6781
  msgid ""
6782
+ "EXIF data is information from the camera like model no, focal distance and "
6783
+ "aperture used."
6784
  msgstr ""
6785
 
6786
+ #: wppa-settings-autosave.php:614
6787
+ msgid "Are you going to use GPX data?"
 
 
6788
  msgstr ""
6789
 
6790
+ #: wppa-settings-autosave.php:615
6791
  msgid ""
6792
+ "Some cameras and mobile devices save the geographic location where the photo "
6793
+ "is taken."
 
 
 
 
6794
  msgstr ""
6795
 
6796
+ #: wppa-settings-autosave.php:616
6797
+ msgid "A Google map can be displayed in slideshows."
6798
  msgstr ""
6799
 
6800
+ #: wppa-settings-autosave.php:623
6801
+ msgid "Are you going to use Fotomoto?"
6802
  msgstr ""
6803
 
6804
+ #: wppa-settings-autosave.php:624
6805
  msgid ""
6806
+ "<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> is an "
6807
+ "on-line print service."
6808
  msgstr ""
6809
 
6810
+ #: wppa-settings-autosave.php:625
6811
+ msgid "If you answer Yes, you will have to open an account on Fotomoto."
6812
  msgstr ""
6813
 
6814
+ #: wppa-settings-autosave.php:632
6815
+ msgid "Are you going to add videofiles?"
6816
  msgstr ""
6817
 
6818
+ #: wppa-settings-autosave.php:633
6819
+ msgid "You can mix videos and photos in any album."
 
 
6820
  msgstr ""
6821
 
6822
+ #: wppa-settings-autosave.php:634 wppa-settings-autosave.php:643
6823
+ #: wppa-settings-autosave.php:652
6824
+ msgid "You can configure the details later"
 
6825
  msgstr ""
6826
 
6827
+ #: wppa-settings-autosave.php:641
6828
+ msgid "Are you going to add audiofiles?"
6829
  msgstr ""
6830
 
6831
+ #: wppa-settings-autosave.php:642
6832
+ msgid "You can add audio to photos in any album."
6833
  msgstr ""
6834
 
6835
+ #: wppa-settings-autosave.php:650
6836
+ msgid "Are you going to upload 3D stereo photos?"
 
 
6837
  msgstr ""
6838
 
6839
+ #: wppa-settings-autosave.php:651
6840
+ msgid "You can add l-r and r-l stereo photo pairs."
6841
  msgstr ""
6842
 
6843
+ #: wppa-settings-autosave.php:659
6844
+ msgid "Done?"
6845
  msgstr ""
6846
 
6847
+ #: wppa-settings-autosave.php:660
6848
+ msgid "If you are ready answering these questions, select <b>yes</b>"
 
 
6849
  msgstr ""
6850
 
6851
+ #: wppa-settings-autosave.php:661
6852
  msgid ""
6853
+ "You can change any setting later, and be more specific and add a lot of "
6854
+ "settings. For now it is enough, go create albums and upload photos!"
 
 
 
 
6855
  msgstr ""
6856
 
6857
+ #: wppa-settings-autosave.php:665
6858
+ msgid ""
6859
+ "Thank you!. The most important settings are done now. You can refine your "
6860
+ "settings, the behaviour and appearance of WPPA+ in the Tables below."
6861
  msgstr ""
6862
 
6863
+ #: wppa-settings-autosave.php:690
6864
+ msgid "Table I:"
6865
  msgstr ""
6866
 
6867
+ #: wppa-settings-autosave.php:690
6868
+ msgid "Sizes:"
6869
  msgstr ""
6870
 
6871
+ #: wppa-settings-autosave.php:691
6872
  msgid ""
6873
+ "This table describes all the sizes and size options (except fontsizes) for "
6874
+ "the generation and display of the WPPA+ elements."
6875
  msgstr ""
6876
 
6877
+ #: wppa-settings-autosave.php:709
6878
+ msgid "WPPA+ global system related size settings"
 
6879
  msgstr ""
6880
 
6881
+ #: wppa-settings-autosave.php:711
6882
+ msgid "Column Width"
 
 
6883
  msgstr ""
6884
 
6885
+ #: wppa-settings-autosave.php:712
6886
+ msgid "The width of the main column in your theme's display area."
6887
  msgstr ""
6888
 
6889
+ #: wppa-settings-autosave.php:713
6890
+ msgid "Enter the width of the main column in your theme's display area."
6891
  msgstr ""
6892
 
6893
+ #: wppa-settings-autosave.php:714
6894
  msgid ""
6895
+ "You should set this value correctly to make sure the fullsize images are "
6896
+ "properly aligned horizontally."
 
 
 
 
6897
  msgstr ""
6898
 
6899
+ #: wppa-settings-autosave.php:715
6900
+ msgid ""
6901
+ "You may enter 'auto' for use in themes that have a floating content column."
6902
  msgstr ""
6903
 
6904
+ #: wppa-settings-autosave.php:716
6905
+ msgid "The use of 'auto' is required for responsive themes."
6906
  msgstr ""
6907
 
6908
+ #: wppa-settings-autosave.php:724
6909
+ msgid "Initial Width"
6910
  msgstr ""
6911
 
6912
+ #: wppa-settings-autosave.php:725
6913
+ msgid "The most often displayed colun width in responsive theme"
 
 
6914
  msgstr ""
6915
 
6916
+ #: wppa-settings-autosave.php:726
6917
  msgid ""
6918
+ "Change this value only if your responsive theme shows initially a wrong "
6919
+ "column width."
6920
  msgstr ""
6921
 
6922
+ #: wppa-settings-autosave.php:733
6923
+ msgid "Resize on Upload"
6924
  msgstr ""
6925
 
6926
+ #: wppa-settings-autosave.php:734
6927
+ msgid "Indicate if the photos should be resized during upload."
6928
  msgstr ""
6929
 
6930
+ #: wppa-settings-autosave.php:735
6931
  msgid ""
6932
+ "If you check this item, the size of the photos will be reduced to the "
6933
+ "dimension specified in the next item during the upload/import process."
6934
  msgstr ""
6935
 
6936
+ #: wppa-settings-autosave.php:736
6937
+ msgid "The photos will never be stretched during upload if they are smaller."
6938
  msgstr ""
6939
 
6940
+ #: wppa-settings-autosave.php:744
6941
+ msgid "Resize to"
6942
  msgstr ""
6943
 
6944
+ #: wppa-settings-autosave.php:745
6945
+ msgid "Resize photos to fit within a given area."
6946
  msgstr ""
6947
 
6948
+ #: wppa-settings-autosave.php:746
6949
+ msgid "Specify the screensize for the unscaled photos."
6950
  msgstr ""
6951
 
6952
+ #: wppa-settings-autosave.php:747
6953
+ msgid ""
6954
+ "The use of a non-default value is particularly usefull when you make use of "
6955
+ "lightbox functionality."
6956
  msgstr ""
6957
 
6958
+ #: wppa-settings-autosave.php:749 wppa-settings-autosave.php:771
6959
+ #: wppa-settings-autosave.php:782 wppa-settings-autosave.php:791
6960
+ #: wppa-settings-autosave.php:836 wppa-settings-autosave.php:882
6961
+ #: wppa-settings-autosave.php:905 wppa-settings-autosave.php:912
6962
+ #: wppa-settings-autosave.php:931 wppa-settings-autosave.php:952
6963
+ #: wppa-settings-autosave.php:962 wppa-settings-autosave.php:1056
6964
+ #: wppa-settings-autosave.php:1090 wppa-settings-autosave.php:1110
6965
+ #: wppa-settings-autosave.php:1119 wppa-settings-autosave.php:1130
6966
+ #: wppa-settings-autosave.php:1142 wppa-settings-autosave.php:1152
6967
+ #: wppa-settings-autosave.php:1162 wppa-settings-autosave.php:1215
6968
+ #: wppa-settings-autosave.php:1224 wppa-settings-autosave.php:1235
6969
+ #: wppa-settings-autosave.php:1255 wppa-settings-autosave.php:1275
6970
+ #: wppa-settings-autosave.php:1295 wppa-settings-autosave.php:1315
6971
+ #: wppa-settings-autosave.php:1335 wppa-settings-autosave.php:1355
6972
+ #: wppa-settings-autosave.php:1364 wppa-settings-autosave.php:1373
6973
+ #: wppa-settings-autosave.php:1406 wppa-settings-autosave.php:1415
6974
+ #: wppa-settings-autosave.php:1427 wppa-settings-autosave.php:1436
6975
+ #: wppa-settings-autosave.php:2910 wppa-settings-autosave.php:4828
6976
+ #: wppa-settings-autosave.php:4845 wppa-settings-autosave.php:4862
6977
+ #: wppa-settings-autosave.php:4879 wppa-settings-autosave.php:4896
6978
+ #: wppa-settings-autosave.php:4913 wppa-settings-autosave.php:4930
6979
+ #: wppa-settings-autosave.php:4947 wppa-settings-autosave.php:4964
6980
+ #: wppa-settings-autosave.php:6241 wppa-settings-autosave.php:8909
6981
+ #: wppa-settings-autosave.php:9105 wppa-settings-autosave.php:9147
6982
+ #: wppa-settings-autosave.php:9165
6983
+ msgid "pixels"
6984
  msgstr ""
6985
 
6986
+ #: wppa-settings-autosave.php:750
6987
+ msgid "Fit within rectangle as set in Table I-B1,2"
6988
  msgstr ""
6989
 
6990
+ #: wppa-settings-autosave.php:757
6991
+ msgid "Photocount threshold"
6992
  msgstr ""
6993
 
6994
+ #: wppa-settings-autosave.php:758
6995
+ msgid "Number of photos in an album must exceed."
6996
  msgstr ""
6997
 
6998
+ #: wppa-settings-autosave.php:759
6999
+ msgid ""
7000
+ "Photos do not show up in the album unless there are more than this number of "
7001
+ "photos in the album. This allows you to have cover photos on an album that "
7002
+ "contains only sub albums without seeing them in the list of sub albums. "
7003
+ "Usually set to 0 (always show) or 1 (for one cover photo)."
7004
  msgstr ""
7005
 
7006
+ #: wppa-settings-autosave.php:761 wppa-settings-autosave.php:800
7007
+ #: wppa-settings-autosave.php:1244 wppa-settings-autosave.php:1284
7008
+ #: wppa-settings-autosave.php:1304 wppa-settings-autosave.php:1344
7009
+ #: wppa-settings-autosave.php:4224 wppa-settings-autosave.php:6166
7010
+ #: wppa-settings-autosave.php:7999
7011
+ msgid "photos"
7012
  msgstr ""
7013
 
7014
+ #: wppa-settings-autosave.php:766
7015
+ msgid "Border thickness"
7016
  msgstr ""
7017
 
7018
+ #: wppa-settings-autosave.php:767
7019
+ msgid "Thickness of wppa+ box borders."
7020
  msgstr ""
7021
 
7022
+ #: wppa-settings-autosave.php:768
7023
+ msgid ""
7024
+ "Enter the thickness for the border of the WPPA+ boxes. A number of 0 means: "
7025
+ "no border."
7026
  msgstr ""
7027
 
7028
+ #: wppa-settings-autosave.php:769 wppa-settings-autosave.php:779
7029
+ msgid "WPPA+ boxes are: the navigation bars and the filmstrip."
7030
  msgstr ""
7031
 
7032
+ #: wppa-settings-autosave.php:777
7033
+ msgid "Radius of wppa+ box borders."
7034
  msgstr ""
7035
 
7036
+ #: wppa-settings-autosave.php:778
7037
+ msgid ""
7038
+ "Enter the corner radius for the border of the WPPA+ boxes. A number of 0 "
7039
+ "means: no rounded corners."
7040
  msgstr ""
7041
 
7042
+ #: wppa-settings-autosave.php:780
7043
+ msgid "Note that rounded corners are only supported by modern browsers."
 
 
7044
  msgstr ""
7045
 
7046
+ #: wppa-settings-autosave.php:788
7047
+ msgid "Distance between wppa+ boxes."
7048
  msgstr ""
7049
 
7050
+ #: wppa-settings-autosave.php:796
7051
+ msgid "Related count"
7052
  msgstr ""
7053
 
7054
+ #: wppa-settings-autosave.php:797
7055
+ msgid "The default maximum number of related photos to find."
7056
  msgstr ""
7057
 
7058
+ #: wppa-settings-autosave.php:798
7059
+ msgid ""
7060
+ "When using shortcodes like [wppa type=\"album\" album=\"#related,desc,23\"][/"
7061
+ "wppa], the maximum number is 23. Omitting the number gives the maximum of "
7062
+ "this setting."
7063
  msgstr ""
7064
 
7065
+ #: wppa-settings-autosave.php:806
7066
+ msgid "The maximum number of pagelinks to be displayed."
7067
  msgstr ""
7068
 
7069
+ #: wppa-settings-autosave.php:809
7070
+ msgid "pages"
7071
  msgstr ""
7072
 
7073
+ #: wppa-settings-autosave.php:814
7074
+ msgid "Max file name length"
 
 
7075
  msgstr ""
7076
 
7077
+ #: wppa-settings-autosave.php:815
7078
+ msgid "The max length of a photo file name excluding the extension."
 
 
 
7079
  msgstr ""
7080
 
7081
+ #: wppa-settings-autosave.php:816 wppa-settings-autosave.php:825
7082
+ msgid "A setting of 0 means: unlimited."
7083
  msgstr ""
7084
 
7085
+ #: wppa-settings-autosave.php:818 wppa-settings-autosave.php:827
7086
+ msgid "chars"
7087
  msgstr ""
7088
 
7089
+ #: wppa-settings-autosave.php:823
7090
+ msgid "Max photo name length"
7091
  msgstr ""
7092
 
7093
+ #: wppa-settings-autosave.php:824
7094
+ msgid "The max length of a photo name."
7095
  msgstr ""
7096
 
7097
+ #: wppa-settings-autosave.php:833
7098
+ msgid "The height of your sticky header."
7099
  msgstr ""
7100
 
7101
+ #: wppa-settings-autosave.php:834
7102
+ msgid "If your theme has a sticky header, enter its height here."
7103
  msgstr ""
7104
 
7105
+ #: wppa-settings-autosave.php:842
7106
+ msgid "Slideshow related size settings"
7107
  msgstr ""
7108
 
7109
+ #: wppa-settings-autosave.php:844
7110
+ msgid "Maximum Width"
7111
  msgstr ""
7112
 
7113
+ #: wppa-settings-autosave.php:845
7114
+ msgid "The maximum width photos will be displayed in slideshows."
7115
  msgstr ""
7116
 
7117
+ #: wppa-settings-autosave.php:846 wppa-settings-autosave.php:857
7118
+ msgid ""
7119
+ "Enter the largest size in pixels as how you want your photos to be displayed."
7120
  msgstr ""
7121
 
7122
+ #: wppa-settings-autosave.php:847
7123
+ msgid ""
7124
+ "This is usually the same as the Column Width (Table I-A1), but it may differ."
7125
  msgstr ""
7126
 
7127
+ #: wppa-settings-autosave.php:855
7128
+ msgid "Maximum Height"
7129
  msgstr ""
7130
 
7131
+ #: wppa-settings-autosave.php:856
7132
+ msgid "The maximum height photos will be displayed in slideshows."
7133
  msgstr ""
7134
 
7135
+ #: wppa-settings-autosave.php:858
7136
+ msgid ""
7137
+ "This setting defines the height of the space reserved for photos in "
7138
+ "slideshows."
7139
  msgstr ""
7140
 
7141
+ #: wppa-settings-autosave.php:859
7142
+ msgid ""
7143
+ "If you change the width of a display by the size=\"..\" shortcode attribute, "
7144
+ "this value changes proportionally to match the aspect ratio as defined by "
7145
+ "this and the previous setting."
7146
  msgstr ""
7147
 
7148
+ #: wppa-settings-autosave.php:861 wppa-settings-autosave.php:1034
7149
+ #: wppa-settings-autosave.php:1045
7150
+ msgid "pixels high"
7151
  msgstr ""
7152
 
7153
+ #: wppa-settings-autosave.php:866
7154
+ msgid "Stretch to fit"
7155
  msgstr ""
7156
 
7157
+ #: wppa-settings-autosave.php:867
7158
+ msgid "Stretch photos that are too small."
7159
  msgstr ""
7160
 
7161
+ #: wppa-settings-autosave.php:868
7162
+ msgid ""
7163
+ "Images will be stretched to the Maximum Size at display time if they are "
7164
+ "smaller. Leaving unchecked is recommended. It is better to upload photos "
7165
+ "that fit well the sizes you use!"
7166
  msgstr ""
7167
 
7168
+ #: wppa-settings-autosave.php:875
7169
+ msgid "Slideshow borderwidth"
7170
  msgstr ""
7171
 
7172
+ #: wppa-settings-autosave.php:876
7173
+ msgid "The width of the border around slideshow images."
7174
  msgstr ""
7175
 
7176
+ #: wppa-settings-autosave.php:877
7177
  msgid ""
7178
+ "The border is made by the image background being larger than the image "
7179
+ "itsself (padding)."
7180
  msgstr ""
7181
 
7182
+ #: wppa-settings-autosave.php:878
7183
+ msgid ""
7184
+ "Additionally there may be a one pixel outline of a different color. See "
7185
+ "Table III-A2."
7186
  msgstr ""
7187
 
7188
+ #: wppa-settings-autosave.php:879
7189
+ msgid "The number you enter here is exclusive the one pixel outline."
7190
  msgstr ""
7191
 
7192
+ #: wppa-settings-autosave.php:880
7193
+ msgid "If you leave this entry empty, there will be no outline either."
7194
  msgstr ""
7195
 
7196
+ #: wppa-settings-autosave.php:887
7197
+ msgid "Numbar Max"
7198
  msgstr ""
7199
 
7200
+ #: wppa-settings-autosave.php:888
7201
+ msgid "Maximum numbers to display."
7202
  msgstr ""
7203
 
7204
+ #: wppa-settings-autosave.php:889
7205
+ msgid ""
7206
+ "In order to attemt to fit on one line, the numbers will be replaced by dots "
7207
+ "- except the current - when there are more than this number of photos in a "
7208
+ "slideshow."
7209
  msgstr ""
7210
 
7211
+ #: wppa-settings-autosave.php:891
7212
+ msgid "numbers"
7213
  msgstr ""
7214
 
7215
+ #: wppa-settings-autosave.php:896
7216
+ msgid "Share button size"
7217
  msgstr ""
7218
 
7219
+ #: wppa-settings-autosave.php:897
7220
+ msgid "The size of the social media icons in the Share box"
7221
  msgstr ""
7222
 
7223
+ #: wppa-settings-autosave.php:907
7224
+ msgid "Mini Treshold"
7225
  msgstr ""
7226
 
7227
+ #: wppa-settings-autosave.php:908
7228
+ msgid "Show mini text at slideshow smaller then."
7229
  msgstr ""
7230
 
7231
+ #: wppa-settings-autosave.php:909
7232
+ msgid ""
7233
+ "Display Next and Prev. as opposed to Next photo and Previous photo when the "
7234
+ "cotainer is smaller than this size."
7235
  msgstr ""
7236
 
7237
+ #: wppa-settings-autosave.php:910
7238
+ msgid "Special use in responsive themes."
7239
  msgstr ""
7240
 
7241
+ #: wppa-settings-autosave.php:918
7242
+ msgid "The maximum number of slides in a certain view. 0 means no pagination"
7243
  msgstr ""
7244
 
7245
+ #: wppa-settings-autosave.php:921 wppa-settings-autosave.php:940
7246
+ msgid "slides"
 
 
7247
  msgstr ""
7248
 
7249
+ #: wppa-settings-autosave.php:926
7250
+ msgid "Filmstrip Thumbnail Size"
 
7251
  msgstr ""
7252
 
7253
+ #: wppa-settings-autosave.php:927
7254
+ msgid "The size of the filmstrip images."
7255
  msgstr ""
7256
 
7257
+ #: wppa-settings-autosave.php:928 wppa-settings-autosave.php:949
7258
+ #: wppa-settings-autosave.php:959 wppa-settings-autosave.php:1149
7259
+ #: wppa-settings-autosave.php:1159
7260
+ msgid "This size applies to the width or height, whichever is the largest."
7261
  msgstr ""
7262
 
7263
+ #: wppa-settings-autosave.php:929 wppa-settings-autosave.php:950
7264
+ #: wppa-settings-autosave.php:960
7265
+ msgid ""
7266
+ "Changing the thumbnail size may result in all thumbnails being regenerated. "
7267
+ "this may take a while."
7268
  msgstr ""
7269
 
7270
+ #: wppa-settings-autosave.php:937
7271
+ msgid "The max number of slides in a slideonly display"
7272
  msgstr ""
7273
 
7274
+ #: wppa-settings-autosave.php:945
7275
+ msgid "Thumbnail photos related size settings"
7276
  msgstr ""
7277
 
7278
+ #: wppa-settings-autosave.php:947
7279
+ msgid "Thumbnail Size"
7280
  msgstr ""
7281
 
7282
+ #: wppa-settings-autosave.php:948
7283
+ msgid "The size of the thumbnail images."
7284
  msgstr ""
7285
 
7286
+ #: wppa-settings-autosave.php:957
7287
+ msgid "Thumbnail Size Alt"
7288
  msgstr ""
7289
 
7290
+ #: wppa-settings-autosave.php:958
7291
+ msgid "The alternative size of the thumbnail images."
7292
  msgstr ""
7293
 
7294
+ #: wppa-settings-autosave.php:967
7295
+ msgid "Thumbnail Aspect"
7296
  msgstr ""
7297
 
7298
+ #: wppa-settings-autosave.php:968
7299
+ msgid "Aspect ration of thumbnail image"
7300
  msgstr ""
7301
 
7302
+ #: wppa-settings-autosave.php:972
7303
+ msgid "--- same as fullsize ---"
7304
  msgstr ""
7305
 
7306
+ #: wppa-settings-autosave.php:973
7307
+ msgid "--- square clipped ---"
7308
  msgstr ""
7309
 
7310
+ #: wppa-settings-autosave.php:974
7311
+ msgid "4:5 landscape clipped"
7312
  msgstr ""
7313
 
7314
+ #: wppa-settings-autosave.php:975
7315
+ msgid "3:4 landscape clipped"
7316
  msgstr ""
7317
 
7318
+ #: wppa-settings-autosave.php:976
7319
+ msgid "2:3 landscape clipped"
7320
  msgstr ""
7321
 
7322
+ #: wppa-settings-autosave.php:977
7323
+ msgid "9:16 landscape clipped"
7324
  msgstr ""
7325
 
7326
+ #: wppa-settings-autosave.php:978
7327
+ msgid "1:2 landscape clipped"
7328
  msgstr ""
7329
 
7330
+ #: wppa-settings-autosave.php:979
7331
+ msgid "--- square padded ---"
7332
  msgstr ""
7333
 
7334
+ #: wppa-settings-autosave.php:980
7335
+ msgid "4:5 landscape padded"
7336
  msgstr ""
7337
 
7338
+ #: wppa-settings-autosave.php:981
7339
+ msgid "3:4 landscape padded"
7340
  msgstr ""
7341
 
7342
+ #: wppa-settings-autosave.php:982
7343
+ msgid "2:3 landscape padded"
7344
  msgstr ""
7345
 
7346
+ #: wppa-settings-autosave.php:983
7347
+ msgid "9:16 landscape padded"
7348
  msgstr ""
7349
 
7350
+ #: wppa-settings-autosave.php:984
7351
+ msgid "1:2 landscape padded"
7352
  msgstr ""
7353
 
7354
+ #: wppa-settings-autosave.php:1006
7355
+ msgid "Thumbframe width"
 
 
7356
  msgstr ""
7357
 
7358
+ #: wppa-settings-autosave.php:1007
7359
+ msgid "The width of the thumbnail frame."
7360
  msgstr ""
7361
 
7362
+ #: wppa-settings-autosave.php:1008 wppa-settings-autosave.php:1019
7363
+ msgid "Set the width of the thumbnail frame."
7364
  msgstr ""
7365
 
7366
+ #: wppa-settings-autosave.php:1009 wppa-settings-autosave.php:1020
7367
+ #: wppa-settings-autosave.php:1031 wppa-settings-autosave.php:1042
7368
+ #: wppa-settings-autosave.php:1053
7369
+ msgid "Set width, height and spacing for the thumbnail frames."
7370
  msgstr ""
7371
 
7372
+ #: wppa-settings-autosave.php:1010 wppa-settings-autosave.php:1021
7373
+ #: wppa-settings-autosave.php:1032 wppa-settings-autosave.php:1043
7374
+ #: wppa-settings-autosave.php:1054
7375
+ msgid ""
7376
+ "These sizes should be large enough for a thumbnail image and - optionally - "
7377
+ "the text under it."
7378
  msgstr ""
7379
 
7380
+ #: wppa-settings-autosave.php:1017
7381
+ msgid "Thumbframe width Alt"
7382
  msgstr ""
7383
 
7384
+ #: wppa-settings-autosave.php:1018
7385
+ msgid "The width of the alternative thumbnail frame."
 
 
7386
  msgstr ""
7387
 
7388
+ #: wppa-settings-autosave.php:1028
7389
+ msgid "Thumbframe height"
7390
  msgstr ""
7391
 
7392
+ #: wppa-settings-autosave.php:1029
7393
+ msgid "The height of the thumbnail frame."
7394
  msgstr ""
7395
 
7396
+ #: wppa-settings-autosave.php:1030 wppa-settings-autosave.php:1041
7397
+ msgid "Set the height of the thumbnail frame."
 
 
7398
  msgstr ""
7399
 
7400
+ #: wppa-settings-autosave.php:1039
7401
+ msgid "Thumbframe height Alt"
7402
  msgstr ""
7403
 
7404
+ #: wppa-settings-autosave.php:1040
7405
+ msgid "The height of the alternative thumbnail frame."
7406
  msgstr ""
7407
 
7408
+ #: wppa-settings-autosave.php:1050
7409
+ msgid "Thumbnail spacing"
 
 
7410
  msgstr ""
7411
 
7412
+ #: wppa-settings-autosave.php:1051
7413
+ msgid "The spacing between adjacent thumbnail frames."
7414
  msgstr ""
7415
 
7416
+ #: wppa-settings-autosave.php:1052
7417
+ msgid "Set the minimal spacing between the adjacent thumbnail frames"
7418
  msgstr ""
7419
 
7420
+ #: wppa-settings-autosave.php:1061
7421
+ msgid "Auto spacing"
 
 
7422
  msgstr ""
7423
 
7424
+ #: wppa-settings-autosave.php:1062
7425
+ msgid "Space the thumbnail frames automatic."
7426
  msgstr ""
7427
 
7428
+ #: wppa-settings-autosave.php:1063
7429
+ msgid ""
7430
+ "If you check this box, the thumbnail images will be evenly distributed over "
7431
+ "the available width."
7432
  msgstr ""
7433
 
7434
+ #: wppa-settings-autosave.php:1064
7435
  msgid ""
7436
+ "In this case, the thumbnail spacing value (setting I-9) will be regarded as "
7437
+ "a minimum value."
7438
  msgstr ""
7439
 
7440
+ #: wppa-settings-autosave.php:1071 wppa-settings-autosave.php:1178
7441
+ msgid "Page size"
7442
  msgstr ""
7443
 
7444
+ #: wppa-settings-autosave.php:1072
7445
+ msgid "Max number of thumbnails per page."
7446
  msgstr ""
7447
 
7448
+ #: wppa-settings-autosave.php:1073
7449
  msgid ""
7450
+ "Enter the maximum number of thumbnail images per page. A value of 0 "
7451
+ "indicates no pagination."
7452
  msgstr ""
7453
 
7454
+ #: wppa-settings-autosave.php:1081
7455
+ msgid "The size of the thumbnail popup images."
7456
  msgstr ""
7457
 
7458
+ #: wppa-settings-autosave.php:1082
7459
+ msgid ""
7460
+ "Enter the size of the popup images. This size should be larger than the "
7461
+ "thumbnail size."
7462
  msgstr ""
7463
 
7464
+ #: wppa-settings-autosave.php:1083
7465
+ msgid "This size should also be at least the cover image size."
7466
  msgstr ""
7467
 
7468
+ #: wppa-settings-autosave.php:1084
7469
  msgid ""
7470
+ "Changing the popup size may result in all thumbnails being regenerated. this "
7471
+ "may take a while."
 
 
 
7472
  msgstr ""
7473
 
7474
+ #: wppa-settings-autosave.php:1085
7475
+ msgid ""
7476
+ "Although this setting has only visual effect if \"Thumb popup\" (Table IV-"
7477
+ "C8) is checked,"
7478
  msgstr ""
7479
 
7480
+ #: wppa-settings-autosave.php:1086
7481
+ msgid ""
7482
+ "the value must be right as it is the physical size of the thumbnail and "
7483
+ "coverphoto images."
7484
  msgstr ""
7485
 
7486
+ #: wppa-settings-autosave.php:1093
7487
+ msgid "Use thumbs if fit"
7488
  msgstr ""
7489
 
7490
+ #: wppa-settings-autosave.php:1094
7491
+ msgid "Use the thumbnail image files if they are large enough."
 
7492
  msgstr ""
7493
 
7494
+ #: wppa-settings-autosave.php:1095
7495
+ msgid "This setting speeds up page loading for small photos."
7496
  msgstr ""
7497
 
7498
+ #: wppa-settings-autosave.php:1096
7499
+ msgid ""
7500
+ "Do NOT use this when your thumbnails have a forced aspect ratio (when Table "
7501
+ "I-C2 is set to anything different from --- same as fullsize ---)"
7502
  msgstr ""
7503
 
7504
+ #: wppa-settings-autosave.php:1103
7505
+ msgid "Album cover related size settings"
7506
  msgstr ""
7507
 
7508
+ #: wppa-settings-autosave.php:1106
7509
+ msgid "Maximum width for a album cover display."
7510
  msgstr ""
7511
 
7512
+ #: wppa-settings-autosave.php:1107
7513
+ msgid ""
7514
+ "Display covers in 2 or more columns if the display area is wider than the "
7515
+ "given width."
7516
  msgstr ""
7517
 
7518
+ #: wppa-settings-autosave.php:1108
7519
  msgid ""
7520
+ "This also applies for 'thumbnails as covers', and will NOT apply to single "
7521
+ "items."
7522
  msgstr ""
7523
 
7524
+ #: wppa-settings-autosave.php:1115
7525
+ msgid "Min Cover height"
7526
  msgstr ""
7527
 
7528
+ #: wppa-settings-autosave.php:1116
7529
+ msgid "Minimal height of an album cover."
7530
  msgstr ""
7531
 
7532
+ #: wppa-settings-autosave.php:1117
7533
  msgid ""
7534
+ "If you use this setting to make the albums the same height and you are not "
7535
+ "satisfied about the lay-out, try increasing the value in the next setting"
 
 
 
7536
  msgstr ""
7537
 
7538
+ #: wppa-settings-autosave.php:1124
7539
+ msgid "Min Text frame height"
7540
  msgstr ""
7541
 
7542
+ #: wppa-settings-autosave.php:1125
7543
+ msgid "The minimal cover text frame height incl header."
7544
  msgstr ""
7545
 
7546
+ #: wppa-settings-autosave.php:1126
7547
+ msgid ""
7548
+ "The height starting with the album title up to and including the view- and "
7549
+ "the slideshow- links."
7550
  msgstr ""
7551
 
7552
+ #: wppa-settings-autosave.php:1127
7553
+ msgid ""
7554
+ "This setting enables you to give the album covers the same height while the "
7555
+ "title does not need to fit on one line."
7556
  msgstr ""
7557
 
7558
+ #: wppa-settings-autosave.php:1128
7559
+ msgid "This is the recommended setting to line-up your covers!"
7560
  msgstr ""
7561
 
7562
+ #: wppa-settings-autosave.php:1135
7563
+ msgid "Min Description height"
7564
  msgstr ""
7565
 
7566
+ #: wppa-settings-autosave.php:1136
7567
+ msgid "The minimal height of the album description text frame."
7568
  msgstr ""
7569
 
7570
+ #: wppa-settings-autosave.php:1137
7571
+ msgid "The minimal height of the description field in an album cover display."
7572
  msgstr ""
7573
 
7574
+ #: wppa-settings-autosave.php:1138
7575
+ msgid ""
7576
+ "This setting enables you to give the album covers the same height provided "
7577
+ "that the cover images are equally sized and the titles fit on one line."
7578
  msgstr ""
7579
 
7580
+ #: wppa-settings-autosave.php:1139
7581
+ msgid ""
7582
+ "To force the coverphotos have equal heights, tick the box in Table I-D7."
7583
  msgstr ""
7584
 
7585
+ #: wppa-settings-autosave.php:1140
7586
  msgid ""
7587
+ "You may need this setting if changing the previous setting is not sufficient "
7588
+ "to line-up the covers."
7589
  msgstr ""
7590
 
7591
+ #: wppa-settings-autosave.php:1147
7592
+ msgid "Coverphoto size"
7593
  msgstr ""
7594
 
7595
+ #: wppa-settings-autosave.php:1148
7596
+ msgid "The size of the coverphoto."
7597
  msgstr ""
7598
 
7599
+ #: wppa-settings-autosave.php:1150 wppa-settings-autosave.php:1160
7600
  msgid ""
7601
+ "Changing the coverphoto size may result in all thumbnails being regenerated. "
7602
+ "this may take a while."
7603
  msgstr ""
7604
 
7605
+ #: wppa-settings-autosave.php:1157
7606
+ msgid "Coverphoto size multi"
7607
  msgstr ""
7608
 
7609
+ #: wppa-settings-autosave.php:1158
7610
+ msgid "The size of coverphotos if more than one."
7611
  msgstr ""
7612
 
7613
+ #: wppa-settings-autosave.php:1167
7614
+ msgid "Size is height"
 
 
7615
  msgstr ""
7616
 
7617
+ #: wppa-settings-autosave.php:1168
7618
+ msgid "The size of the coverphoto is the height of it."
7619
  msgstr ""
7620
 
7621
+ #: wppa-settings-autosave.php:1169
7622
+ msgid ""
7623
+ "If set: the previous setting is the height, if unset: the largest of width "
7624
+ "and height."
7625
  msgstr ""
7626
 
7627
+ #: wppa-settings-autosave.php:1170
7628
+ msgid ""
7629
+ "This setting applies for coverphoto position top or bottom only (Table IV-"
7630
+ "D3)."
7631
  msgstr ""
7632
 
7633
+ #: wppa-settings-autosave.php:1171
7634
+ msgid "This makes it easyer to make the covers of equal height."
7635
  msgstr ""
7636
 
7637
+ #: wppa-settings-autosave.php:1179
7638
+ msgid "Max number of covers per page."
7639
  msgstr ""
7640
 
7641
+ #: wppa-settings-autosave.php:1180
7642
+ msgid ""
7643
+ "Enter the maximum number of album covers per page. A value of 0 indicates no "
7644
+ "pagination."
7645
  msgstr ""
7646
 
7647
+ #: wppa-settings-autosave.php:1182
7648
+ msgid "covers"
7649
  msgstr ""
7650
 
7651
+ #: wppa-settings-autosave.php:1187
7652
+ msgid "Rating and comment related size settings"
7653
  msgstr ""
7654
 
7655
+ #: wppa-settings-autosave.php:1189
7656
+ msgid "Rating size"
7657
  msgstr ""
7658
 
7659
+ #: wppa-settings-autosave.php:1190
7660
+ msgid "Select the number of voting stars."
 
7661
  msgstr ""
7662
 
7663
+ #: wppa-settings-autosave.php:1193
7664
+ msgid "Standard: 5 stars"
7665
  msgstr ""
7666
 
7667
+ #: wppa-settings-autosave.php:1193
7668
+ msgid "Extended: 10 stars"
7669
  msgstr ""
7670
 
7671
+ #: wppa-settings-autosave.php:1193
7672
+ msgid "One button vote"
7673
  msgstr ""
7674
 
7675
+ #: wppa-settings-autosave.php:1200
7676
+ msgid "Display precision"
7677
  msgstr ""
7678
 
7679
+ #: wppa-settings-autosave.php:1201
7680
+ msgid "Select the desired rating display precision."
7681
  msgstr ""
7682
 
7683
+ #: wppa-settings-autosave.php:1204
7684
+ msgid "decimal places"
7685
  msgstr ""
7686
 
7687
+ #: wppa-settings-autosave.php:1212
7688
+ msgid "Size of Avatar images."
7689
  msgstr ""
7690
 
7691
+ #: wppa-settings-autosave.php:1213
7692
+ msgid "The size of the square avatar; must be > 0 and < 256"
 
 
7693
  msgstr ""
7694
 
7695
+ #: wppa-settings-autosave.php:1220
7696
+ msgid "Rating space"
7697
  msgstr ""
7698
 
7699
+ #: wppa-settings-autosave.php:1221
7700
+ msgid "Space between avg and my rating stars"
7701
  msgstr ""
7702
 
7703
+ #: wppa-settings-autosave.php:1229
7704
+ msgid "Widget related size settings"
7705
  msgstr ""
7706
 
7707
+ #: wppa-settings-autosave.php:1231
7708
+ msgid "Widget width"
7709
  msgstr ""
7710
 
7711
+ #: wppa-settings-autosave.php:1232
7712
+ msgid "The useable width within widgets."
7713
  msgstr ""
7714
 
7715
+ #: wppa-settings-autosave.php:1233
7716
+ msgid ""
7717
+ "Widget width for photo of the day, general purpose (default), slideshow "
7718
+ "(default) and upload widgets."
7719
  msgstr ""
7720
 
7721
+ #: wppa-settings-autosave.php:1240
7722
+ msgid "TopTen count"
7723
  msgstr ""
7724
 
7725
+ #: wppa-settings-autosave.php:1241
7726
+ msgid "Number of photos in TopTen widget."
7727
  msgstr ""
7728
 
7729
+ #: wppa-settings-autosave.php:1242
7730
+ msgid "Enter the maximum number of rated photos in the TopTen widget."
7731
  msgstr ""
7732
 
7733
+ #: wppa-settings-autosave.php:1249
7734
+ msgid "TopTen size"
7735
  msgstr ""
7736
 
7737
+ #: wppa-settings-autosave.php:1250
7738
+ msgid "Size of thumbnails in TopTen widget."
7739
  msgstr ""
7740
 
7741
+ #: wppa-settings-autosave.php:1251
7742
+ msgid "Enter the size for the mini photos in the TopTen widget."
7743
  msgstr ""
7744
 
7745
+ #: wppa-settings-autosave.php:1252 wppa-settings-autosave.php:1272
7746
+ #: wppa-settings-autosave.php:1292 wppa-settings-autosave.php:1312
7747
+ #: wppa-settings-autosave.php:1332 wppa-settings-autosave.php:1352
7748
+ msgid "The size applies to the width or height, whatever is the largest."
7749
  msgstr ""
7750
 
7751
+ #: wppa-settings-autosave.php:1253 wppa-settings-autosave.php:1273
7752
+ #: wppa-settings-autosave.php:1293 wppa-settings-autosave.php:1313
7753
+ #: wppa-settings-autosave.php:1333 wppa-settings-autosave.php:1353
7754
  msgid ""
7755
+ "Recommended values: 86 for a two column and 56 for a three column display."
 
 
 
 
 
7756
  msgstr ""
7757
 
7758
+ #: wppa-settings-autosave.php:1260
7759
+ msgid "Comment count"
7760
  msgstr ""
7761
 
7762
+ #: wppa-settings-autosave.php:1261
7763
+ msgid "Number of entries in Comment widget."
7764
  msgstr ""
7765
 
7766
+ #: wppa-settings-autosave.php:1262
7767
+ msgid "Enter the maximum number of entries in the Comment widget."
7768
  msgstr ""
7769
 
7770
+ #: wppa-settings-autosave.php:1264
7771
+ msgid "entries"
7772
  msgstr ""
7773
 
7774
+ #: wppa-settings-autosave.php:1269
7775
+ msgid "Comment size"
7776
  msgstr ""
7777
 
7778
+ #: wppa-settings-autosave.php:1270
7779
+ msgid "Size of thumbnails in Comment widget."
7780
  msgstr ""
7781
 
7782
+ #: wppa-settings-autosave.php:1271
7783
+ msgid "Enter the size for the mini photos in the Comment widget."
 
 
7784
  msgstr ""
7785
 
7786
+ #: wppa-settings-autosave.php:1280
7787
+ msgid "Thumbnail count"
7788
  msgstr ""
7789
 
7790
+ #: wppa-settings-autosave.php:1281
7791
+ msgid "Number of photos in Thumbnail widget."
7792
  msgstr ""
7793
 
7794
+ #: wppa-settings-autosave.php:1282
7795
+ msgid "Enter the maximum number of rated photos in the Thumbnail widget."
7796
  msgstr ""
7797
 
7798
+ #: wppa-settings-autosave.php:1289
7799
+ msgid "Thumbnail widget size"
7800
  msgstr ""
7801
 
7802
+ #: wppa-settings-autosave.php:1290
7803
+ msgid "Size of thumbnails in Thumbnail widget."
7804
  msgstr ""
7805
 
7806
+ #: wppa-settings-autosave.php:1291
7807
+ msgid "Enter the size for the mini photos in the Thumbnail widget."
7808
  msgstr ""
7809
 
7810
+ #: wppa-settings-autosave.php:1300
7811
+ msgid "LasTen count"
7812
  msgstr ""
7813
 
7814
+ #: wppa-settings-autosave.php:1301
7815
+ msgid "Number of photos in Last Ten widget."
7816
  msgstr ""
7817
 
7818
+ #: wppa-settings-autosave.php:1302
7819
+ msgid "Enter the maximum number of photos in the LasTen widget."
7820
  msgstr ""
7821
 
7822
+ #: wppa-settings-autosave.php:1309
7823
+ msgid "LasTen size"
7824
  msgstr ""
7825
 
7826
+ #: wppa-settings-autosave.php:1310
7827
+ msgid "Size of thumbnails in Last Ten widget."
7828
  msgstr ""
7829
 
7830
+ #: wppa-settings-autosave.php:1311
7831
+ msgid "Enter the size for the mini photos in the LasTen widget."
7832
  msgstr ""
7833
 
7834
+ #: wppa-settings-autosave.php:1320
7835
+ msgid "Album widget count"
7836
  msgstr ""
7837
 
7838
+ #: wppa-settings-autosave.php:1321
7839
+ msgid "Number of albums in Album widget."
7840
  msgstr ""
7841
 
7842
+ #: wppa-settings-autosave.php:1322
7843
+ msgid ""
7844
+ "Enter the maximum number of thumbnail photos of albums in the Album widget."
7845
  msgstr ""
7846
 
7847
+ #: wppa-settings-autosave.php:1324 wppa-settings-autosave.php:6182
7848
+ msgid "albums"
7849
  msgstr ""
7850
 
7851
+ #: wppa-settings-autosave.php:1329
7852
+ msgid "Album widget size"
7853
  msgstr ""
7854
 
7855
+ #: wppa-settings-autosave.php:1330
7856
+ msgid "Size of thumbnails in Album widget."
7857
  msgstr ""
7858
 
7859
+ #: wppa-settings-autosave.php:1331
7860
+ msgid "Enter the size for the mini photos in the Album widget."
7861
  msgstr ""
7862
 
7863
+ #: wppa-settings-autosave.php:1340
7864
+ msgid "FeaTen count"
7865
  msgstr ""
7866
 
7867
+ #: wppa-settings-autosave.php:1341
7868
+ msgid "Number of photos in Featured Ten widget."
7869
  msgstr ""
7870
 
7871
+ #: wppa-settings-autosave.php:1342
7872
+ msgid "Enter the maximum number of photos in the FeaTen widget."
7873
  msgstr ""
7874
 
7875
+ #: wppa-settings-autosave.php:1349
7876
+ msgid "FeaTen size"
7877
  msgstr ""
7878
 
7879
+ #: wppa-settings-autosave.php:1350
7880
+ msgid "Size of thumbnails in Featured Ten widget."
7881
  msgstr ""
7882
 
7883
+ #: wppa-settings-autosave.php:1351
7884
+ msgid "Enter the size for the mini photos in the FeaTen widget."
7885
  msgstr ""
7886
 
7887
+ #: wppa-settings-autosave.php:1360
7888
+ msgid "Tagcloud min size"
 
 
7889
  msgstr ""
7890
 
7891
+ #: wppa-settings-autosave.php:1361
7892
+ msgid "Minimal fontsize in tagclouds"
7893
  msgstr ""
7894
 
7895
+ #: wppa-settings-autosave.php:1369
7896
+ msgid "Tagcloud max size"
7897
  msgstr ""
7898
 
7899
+ #: wppa-settings-autosave.php:1370
7900
+ msgid "Maximal fontsize in tagclouds"
7901
  msgstr ""
7902
 
7903
+ #: wppa-settings-autosave.php:1378
7904
+ msgid ""
7905
+ "Lightbox related size settings. These settings have effect only when Table "
7906
+ "IX-J3 is set to wppa"
7907
  msgstr ""
7908
 
7909
+ #: wppa-settings-autosave.php:1381
7910
+ msgid ""
7911
+ "Number of lines on the lightbox description area, exclusive the n/m line."
7912
  msgstr ""
7913
 
7914
+ #: wppa-settings-autosave.php:1382
7915
+ msgid "Enter a number in the range from 0 to 24 or auto"
7916
  msgstr ""
7917
 
7918
+ #: wppa-settings-autosave.php:1384
7919
+ msgid "lines"
7920
  msgstr ""
7921
 
7922
+ #: wppa-settings-autosave.php:1389
7923
+ msgid "Magnifier cursor size"
7924
  msgstr ""
7925
 
7926
+ #: wppa-settings-autosave.php:1390
7927
+ msgid "Select the size of the magnifier cursor."
7928
  msgstr ""
7929
 
7930
+ #: wppa-settings-autosave.php:1393
7931
+ msgid "small"
7932
  msgstr ""
7933
 
7934
+ #: wppa-settings-autosave.php:1393
7935
+ msgid "medium"
7936
  msgstr ""
7937
 
7938
+ #: wppa-settings-autosave.php:1393
7939
+ msgid "large"
7940
  msgstr ""
7941
 
7942
+ #: wppa-settings-autosave.php:1403
7943
+ msgid "Border width for lightbox display."
7944
  msgstr ""
7945
 
7946
+ #: wppa-settings-autosave.php:1412
7947
+ msgid "Border radius for lightbox display."
7948
  msgstr ""
7949
 
7950
+ #: wppa-settings-autosave.php:1421
7951
+ msgid "Video related size settings"
7952
  msgstr ""
7953
 
7954
+ #: wppa-settings-autosave.php:1423
7955
+ msgid "Default width"
7956
  msgstr ""
7957
 
7958
+ #: wppa-settings-autosave.php:1424
7959
+ msgid "The width of most videos"
 
 
7960
  msgstr ""
7961
 
7962
+ #: wppa-settings-autosave.php:1432
7963
+ msgid "Default height"
7964
  msgstr ""
7965
 
7966
+ #: wppa-settings-autosave.php:1433
7967
+ msgid "The height of most videos"
7968
  msgstr ""
7969
 
7970
+ #: wppa-settings-autosave.php:1459
7971
+ msgid "Table II:"
7972
  msgstr ""
7973
 
7974
+ #: wppa-settings-autosave.php:1459
7975
+ msgid "Visibility:"
7976
  msgstr ""
7977
 
7978
+ #: wppa-settings-autosave.php:1460
7979
+ msgid "This table describes the visibility of certain wppa+ elements."
7980
  msgstr ""
7981
 
7982
+ #: wppa-settings-autosave.php:1478
7983
+ msgid "Breadcrumb related visibility settings"
7984
  msgstr ""
7985
 
7986
+ #: wppa-settings-autosave.php:1480
7987
+ msgid "Breadcrumb on posts"
7988
  msgstr ""
7989
 
7990
+ #: wppa-settings-autosave.php:1481 wppa-settings-autosave.php:1491
7991
+ msgid "Show breadcrumb navigation bars."
7992
  msgstr ""
7993
 
7994
+ #: wppa-settings-autosave.php:1482 wppa-settings-autosave.php:1492
7995
+ msgid "Indicate whether a breadcrumb navigation should be displayed"
7996
  msgstr ""
7997
 
7998
+ #: wppa-settings-autosave.php:1490
7999
+ msgid "Breadcrumb on pages"
8000
  msgstr ""
8001
 
8002
+ #: wppa-settings-autosave.php:1500
8003
+ msgid "Breadcrumb on search results"
8004
  msgstr ""
8005
 
8006
+ #: wppa-settings-autosave.php:1501
8007
+ msgid "Show breadcrumb navigation bars on the search results page."
8008
  msgstr ""
8009
 
8010
+ #: wppa-settings-autosave.php:1502
8011
+ msgid ""
8012
+ "Indicate whether a breadcrumb navigation should be displayed above the "
8013
+ "search results."
8014
  msgstr ""
8015
 
8016
+ #: wppa-settings-autosave.php:1509
8017
+ msgid "Breadcrumb on topten displays"
8018
  msgstr ""
8019
 
8020
+ #: wppa-settings-autosave.php:1510
8021
+ msgid "Show breadcrumb navigation bars on topten displays."
8022
  msgstr ""
8023
 
8024
+ #: wppa-settings-autosave.php:1511
8025
+ msgid ""
8026
+ "Indicate whether a breadcrumb navigation should be displayed above the "
8027
+ "topten displays."
8028
  msgstr ""
8029
 
8030
+ #: wppa-settings-autosave.php:1518
8031
+ msgid "Breadcrumb on last ten displays"
8032
  msgstr ""
8033
 
8034
+ #: wppa-settings-autosave.php:1519
8035
+ msgid "Show breadcrumb navigation bars on last ten displays."
8036
  msgstr ""
8037
 
8038
+ #: wppa-settings-autosave.php:1520
8039
+ msgid ""
8040
+ "Indicate whether a breadcrumb navigation should be displayed above the last "
8041
+ "ten displays."
8042
  msgstr ""
8043
 
8044
+ #: wppa-settings-autosave.php:1527
8045
+ msgid "Breadcrumb on comment ten displays"
8046
  msgstr ""
8047
 
8048
+ #: wppa-settings-autosave.php:1528
8049
+ msgid "Show breadcrumb navigation bars on comment ten displays."
8050
  msgstr ""
8051
 
8052
+ #: wppa-settings-autosave.php:1529
8053
  msgid ""
8054
+ "Indicate whether a breadcrumb navigation should be displayed above the "
8055
+ "comment ten displays."
8056
  msgstr ""
8057
 
8058
+ #: wppa-settings-autosave.php:1536
8059
+ msgid "Breadcrumb on tag result displays"
8060
  msgstr ""
8061
 
8062
+ #: wppa-settings-autosave.php:1537
8063
+ msgid "Show breadcrumb navigation bars on tag result displays."
8064
  msgstr ""
8065
 
8066
+ #: wppa-settings-autosave.php:1538
8067
  msgid ""
8068
+ "Indicate whether a breadcrumb navigation should be displayed above the tag "
8069
+ "result displays."
8070
  msgstr ""
8071
 
8072
+ #: wppa-settings-autosave.php:1545
8073
+ msgid "Breadcrumb on featured ten displays"
8074
  msgstr ""
8075
 
8076
+ #: wppa-settings-autosave.php:1546
8077
+ msgid "Show breadcrumb navigation bars on featured ten displays."
8078
  msgstr ""
8079
 
8080
+ #: wppa-settings-autosave.php:1547
8081
+ msgid ""
8082
+ "Indicate whether a breadcrumb navigation should be displayed above the "
8083
+ "featured ten displays."
8084
  msgstr ""
8085
 
8086
+ #: wppa-settings-autosave.php:1554
8087
+ msgid "Breadcrumb on related photos displays"
8088
  msgstr ""
8089
 
8090
+ #: wppa-settings-autosave.php:1555
8091
+ msgid "Show breadcrumb navigation bars on related photos displays."
8092
  msgstr ""
8093
 
8094
+ #: wppa-settings-autosave.php:1556
8095
+ msgid ""
8096
+ "Indicate whether a breadcrumb navigation should be displayed above the "
8097
+ "related photos displays."
8098
  msgstr ""
8099
 
8100
+ #: wppa-settings-autosave.php:1563 wppa-setup.php:734
8101
+ msgid "Home"
8102
  msgstr ""
8103
 
8104
+ #: wppa-settings-autosave.php:1564
8105
+ msgid "Show \"Home\" in breadcrumb."
8106
  msgstr ""
8107
 
8108
+ #: wppa-settings-autosave.php:1565
8109
+ msgid ""
8110
+ "Indicate whether the breadcrumb navigation should start with a \"Home\"-link"
8111
  msgstr ""
8112
 
8113
+ #: wppa-settings-autosave.php:1572
8114
+ msgid "Home text"
8115
  msgstr ""
8116
 
8117
+ #: wppa-settings-autosave.php:1573
8118
+ msgid "The text to use as \"Home\""
8119
  msgstr ""
8120
 
8121
+ #: wppa-settings-autosave.php:1582
8122
+ msgid "Show the page(s) in breadcrumb."
8123
  msgstr ""
8124
 
8125
+ #: wppa-settings-autosave.php:1583
8126
+ msgid ""
8127
+ "Indicate whether the breadcrumb navigation should show the page(hierarchy)"
8128
  msgstr ""
8129
 
8130
+ #: wppa-settings-autosave.php:1590
8131
+ msgid "Separator"
8132
  msgstr ""
8133
 
8134
+ #: wppa-settings-autosave.php:1591
8135
+ msgid "Breadcrumb separator symbol."
8136
  msgstr ""
8137
 
8138
+ #: wppa-settings-autosave.php:1592
8139
+ msgid "Select the desired breadcrumb separator element."
8140
  msgstr ""
8141
 
8142
+ #: wppa-settings-autosave.php:1593
8143
+ msgid "A text string may contain valid html."
8144
  msgstr ""
8145
 
8146
+ #: wppa-settings-autosave.php:1594
8147
+ msgid ""
8148
+ "An image will be scaled automatically if you set the navigation font size."
8149
  msgstr ""
8150
 
8151
+ #: wppa-settings-autosave.php:1596
8152
+ msgid "Text (html):"
 
 
8153
  msgstr ""
8154
 
8155
+ #: wppa-settings-autosave.php:1596
8156
+ msgid "Image (url):"
8157
  msgstr ""
8158
 
8159
+ #: wppa-settings-autosave.php:1604
8160
+ msgid "Html"
8161
  msgstr ""
8162
 
8163
+ #: wppa-settings-autosave.php:1605
8164
+ msgid "Breadcrumb separator text."
 
 
8165
  msgstr ""
8166
 
8167
+ #: wppa-settings-autosave.php:1606
8168
+ msgid "Enter the HTML code that produces the separator symbol you want."
8169
  msgstr ""
8170
 
8171
+ #: wppa-settings-autosave.php:1607
8172
+ msgid ""
8173
+ "It may be as simple as '-' (without the quotes) or as complex as a tag like "
8174
+ "<div>..</div>."
8175
  msgstr ""
8176
 
8177
+ #: wppa-settings-autosave.php:1614
8178
+ msgid "Image Url"
8179
  msgstr ""
8180
 
8181
+ #: wppa-settings-autosave.php:1615
8182
+ msgid "Full url to separator image."
8183
  msgstr ""
8184
 
8185
+ #: wppa-settings-autosave.php:1616
8186
+ msgid ""
8187
+ "Enter the full url to the image you want to use for the separator symbol."
8188
  msgstr ""
8189
 
8190
+ #: wppa-settings-autosave.php:1623
8191
+ msgid "Pagelink position"
8192
  msgstr ""
8193
 
8194
+ #: wppa-settings-autosave.php:1624
8195
+ msgid "The location for the pagelinks bar."
8196
  msgstr ""
8197
 
8198
+ #: wppa-settings-autosave.php:1627 wppa-settings-autosave.php:4169
8199
+ msgid "Top"
8200
  msgstr ""
8201
 
8202
+ #: wppa-settings-autosave.php:1627 wppa-settings-autosave.php:4169
8203
+ msgid "Bottom"
8204
  msgstr ""
8205
 
8206
+ #: wppa-settings-autosave.php:1627
8207
+ msgid "Both"
8208
  msgstr ""
8209
 
8210
+ #: wppa-settings-autosave.php:1634
8211
+ msgid "Thumblink on slideshow"
8212
  msgstr ""
8213
 
8214
+ #: wppa-settings-autosave.php:1635
8215
+ msgid "Show a thumb link on slideshow bc."
8216
  msgstr ""
8217
 
8218
+ #: wppa-settings-autosave.php:1636
8219
+ msgid "Show a link to thumbnail display on an breadcrumb above a slideshow"
8220
  msgstr ""
8221
 
8222
+ #: wppa-settings-autosave.php:1643
8223
+ msgid "Slideshow related visibility settings"
 
8224
  msgstr ""
8225
 
8226
+ #: wppa-settings-autosave.php:1645
8227
+ msgid "Start/stop"
8228
  msgstr ""
8229
 
8230
+ #: wppa-settings-autosave.php:1646
8231
+ msgid "Show the Start/Stop slideshow bar."
8232
  msgstr ""
8233
 
8234
+ #: wppa-settings-autosave.php:1647
8235
+ msgid ""
8236
+ "If checked: display the start/stop slideshow navigation bar above the full-"
8237
+ "size images and slideshow"
8238
  msgstr ""
8239
 
8240
+ #: wppa-settings-autosave.php:1654
8241
+ msgid "Browse bar"
8242
  msgstr ""
8243
 
8244
+ #: wppa-settings-autosave.php:1655
8245
+ msgid "Show Browse photos bar."
8246
  msgstr ""
8247
 
8248
+ #: wppa-settings-autosave.php:1656
8249
  msgid ""
8250
+ "If checked: display the preveous/next navigation bar under the full-size "
8251
+ "images and slideshow"
8252
  msgstr ""
8253
 
8254
+ #: wppa-settings-autosave.php:1663
8255
+ msgid "Filmstrip"
8256
  msgstr ""
8257
 
8258
+ #: wppa-settings-autosave.php:1664
8259
+ msgid "Show Filmstrip navigation bar."
8260
  msgstr ""
8261
 
8262
+ #: wppa-settings-autosave.php:1665
8263
  msgid ""
8264
+ "If checked: display the filmstrip navigation bar under the full_size images "
8265
+ "and slideshow"
8266
  msgstr ""
8267
 
8268
+ #: wppa-settings-autosave.php:1672
8269
+ msgid "Film seam"
8270
  msgstr ""
8271
 
8272
+ #: wppa-settings-autosave.php:1673
8273
+ msgid "Show seam between end and start of film."
8274
  msgstr ""
8275
 
8276
+ #: wppa-settings-autosave.php:1674
8277
+ msgid "If checked: display the wrap-around point in the filmstrip"
 
8278
  msgstr ""
8279
 
8280
+ #: wppa-settings-autosave.php:1682
8281
+ msgid "Display photo name."
 
8282
  msgstr ""
8283
 
8284
+ #: wppa-settings-autosave.php:1683
8285
+ msgid "If checked: display the name of the photo under the slideshow image."
 
8286
  msgstr ""
8287
 
8288
+ #: wppa-settings-autosave.php:1690 wppa-settings-autosave.php:2095
8289
+ msgid "Add (Owner)"
8290
  msgstr ""
8291
 
8292
+ #: wppa-settings-autosave.php:1691 wppa-settings-autosave.php:2096
8293
+ msgid "Add the uploaders display name in parenthesis to the name."
 
 
8294
  msgstr ""
8295
 
8296
+ #: wppa-settings-autosave.php:1699
8297
+ msgid "Photo desc"
8298
  msgstr ""
8299
 
8300
+ #: wppa-settings-autosave.php:1700
8301
+ msgid "Display Photo description."
8302
  msgstr ""
8303
 
8304
+ #: wppa-settings-autosave.php:1701
8305
+ msgid ""
8306
+ "If checked: display the description of the photo under the slideshow image."
8307
  msgstr ""
8308
 
8309
+ #: wppa-settings-autosave.php:1708
8310
+ msgid "Hide when empty"
8311
  msgstr ""
8312
 
8313
+ #: wppa-settings-autosave.php:1709
8314
+ msgid "Hide the descriptionbox when empty."
8315
  msgstr ""
8316
 
8317
+ #: wppa-settings-autosave.php:1717
8318
+ msgid "Rating system"
8319
  msgstr ""
8320
 
8321
+ #: wppa-settings-autosave.php:1718
8322
+ msgid "Enable the rating system."
8323
  msgstr ""
8324
 
8325
+ #: wppa-settings-autosave.php:1719
8326
+ msgid "If checked, the photo rating system will be enabled."
8327
  msgstr ""
8328
 
8329
+ #: wppa-settings-autosave.php:1727
8330
+ msgid "Comments system"
8331
  msgstr ""
8332
 
8333
+ #: wppa-settings-autosave.php:1728
8334
+ msgid "Enable the comments system."
8335
  msgstr ""
8336
 
8337
+ #: wppa-settings-autosave.php:1729
8338
+ msgid ""
8339
+ "Display the comments box under the fullsize images and let users enter their "
8340
+ "comments on individual photos."
8341
  msgstr ""
8342
 
8343
+ #: wppa-settings-autosave.php:1737
8344
+ msgid "Comment Avatar default"
 
 
8345
  msgstr ""
8346
 
8347
+ #: wppa-settings-autosave.php:1738
8348
+ msgid "Show Avatars with the comments if not --- none ---"
8349
  msgstr ""
8350
 
8351
+ #: wppa-settings-autosave.php:1743
8352
+ msgid "mystery man"
8353
  msgstr ""
8354
 
8355
+ #: wppa-settings-autosave.php:1744
8356
+ msgid "identicon"
 
8357
  msgstr ""
8358
 
8359
+ #: wppa-settings-autosave.php:1745
8360
+ msgid "monsterid"
 
 
8361
  msgstr ""
8362
 
8363
+ #: wppa-settings-autosave.php:1746
8364
+ msgid "wavatar"
8365
  msgstr ""
8366
 
8367
+ #: wppa-settings-autosave.php:1747
8368
+ msgid "retro"
8369
  msgstr ""
8370
 
8371
+ #: wppa-settings-autosave.php:1748
8372
+ msgid "--- url ---"
8373
  msgstr ""
8374
 
8375
+ #: wppa-settings-autosave.php:1763
8376
+ msgid "Comment Avatar url"
8377
  msgstr ""
8378
 
8379
+ #: wppa-settings-autosave.php:1764
8380
+ msgid "Comment Avatar default url."
8381
  msgstr ""
8382
 
8383
+ #: wppa-settings-autosave.php:1772
8384
+ msgid "Big Browse Buttons"
 
 
8385
  msgstr ""
8386
 
8387
+ #: wppa-settings-autosave.php:1773
8388
+ msgid "Enable invisible browsing buttons."
8389
  msgstr ""
8390
 
8391
+ #: wppa-settings-autosave.php:1774 wppa-settings-autosave.php:2363
8392
+ msgid ""
8393
+ "If checked, the fullsize image is covered by two invisible areas that act as "
8394
+ "browse buttons."
8395
  msgstr ""
8396
 
8397
+ #: wppa-settings-autosave.php:1775 wppa-settings-autosave.php:2364
8398
+ #: wppa-settings-autosave.php:2374
8399
+ msgid ""
8400
+ "Make sure the Full height (Table I-B2) is properly configured to prevent "
8401
+ "these areas to overlap unwanted space."
8402
  msgstr ""
8403
 
8404
+ #: wppa-settings-autosave.php:1782
8405
+ msgid "Ugly Browse Buttons"
8406
  msgstr ""
8407
 
8408
+ #: wppa-settings-autosave.php:1783
8409
+ msgid "Enable the ugly browsing buttons."
8410
  msgstr ""
8411
 
8412
+ #: wppa-settings-autosave.php:1784
8413
+ msgid "If checked, the fullsize image is covered by two browse buttons."
8414
  msgstr ""
8415
 
8416
+ #: wppa-settings-autosave.php:1795
8417
+ msgid "Start/stop icons"
8418
  msgstr ""
8419
 
8420
+ #: wppa-settings-autosave.php:1796
8421
+ msgid "Show start and stop icons at the center of the slide"
8422
  msgstr ""
8423
 
8424
+ #: wppa-settings-autosave.php:1808
8425
+ msgid "Show custom box"
8426
  msgstr ""
8427
 
8428
+ #: wppa-settings-autosave.php:1809
8429
+ msgid "Display the custom box in the slideshow"
8430
  msgstr ""
8431
 
8432
+ #: wppa-settings-autosave.php:1810 wppa-settings-autosave.php:1821
8433
+ msgid ""
8434
+ "You can fill the custom box with any html you like. It will not be checked, "
8435
+ "so it is your own responsability to close tags properly."
8436
  msgstr ""
8437
 
8438
+ #: wppa-settings-autosave.php:1811 wppa-settings-autosave.php:1822
8439
+ msgid "The position of the box can be defined in Table IX-E."
8440
  msgstr ""
8441
 
8442
+ #: wppa-settings-autosave.php:1819
8443
+ msgid "Custom content"
 
 
8444
  msgstr ""
8445
 
8446
+ #: wppa-settings-autosave.php:1820
8447
+ msgid "The content (html) of the custom box."
8448
  msgstr ""
8449
 
8450
+ #: wppa-settings-autosave.php:1829
8451
+ msgid "Slideshow/Number bar"
8452
  msgstr ""
8453
 
8454
+ #: wppa-settings-autosave.php:1830
8455
+ msgid "Display the Slideshow / Number bar."
8456
  msgstr ""
8457
 
8458
+ #: wppa-settings-autosave.php:1831
8459
+ msgid "If checked: display the number boxes on slideshow"
8460
  msgstr ""
8461
 
8462
+ #: wppa-settings-autosave.php:1839
8463
+ msgid "IPTC system"
8464
  msgstr ""
8465
 
8466
+ #: wppa-settings-autosave.php:1840
8467
+ msgid "Enable the iptc system."
8468
  msgstr ""
8469
 
8470
+ #: wppa-settings-autosave.php:1841
8471
+ msgid "Display the iptc box under the fullsize images."
8472
  msgstr ""
8473
 
8474
+ #: wppa-settings-autosave.php:1849
8475
+ msgid "IPTC open"
8476
  msgstr ""
8477
 
8478
+ #: wppa-settings-autosave.php:1850
8479
+ msgid "Display the iptc box initially opened."
 
8480
  msgstr ""
8481
 
8482
+ #: wppa-settings-autosave.php:1851
8483
+ msgid "Display the iptc box under the fullsize images initially open."
 
 
8484
  msgstr ""
8485
 
8486
+ #: wppa-settings-autosave.php:1859
8487
+ msgid "EXIF system"
8488
  msgstr ""
8489
 
8490
+ #: wppa-settings-autosave.php:1860
8491
+ msgid "Enable the exif system."
8492
  msgstr ""
8493
 
8494
+ #: wppa-settings-autosave.php:1861
8495
+ msgid "Display the exif box under the fullsize images."
 
 
8496
  msgstr ""
8497
 
8498
+ #: wppa-settings-autosave.php:1869
8499
+ msgid "EXIF open"
8500
  msgstr ""
8501
 
8502
+ #: wppa-settings-autosave.php:1870
8503
+ msgid "Display the exif box initially opened."
8504
  msgstr ""
8505
 
8506
+ #: wppa-settings-autosave.php:1871
8507
+ msgid "Display the exif box under the fullsize images initially open."
 
 
8508
  msgstr ""
8509
 
8510
+ #: wppa-settings-autosave.php:1879
8511
+ msgid "Social media share box related visibility settings"
 
 
8512
  msgstr ""
8513
 
8514
+ #: wppa-settings-autosave.php:1881
8515
+ msgid "Show Share Box"
8516
  msgstr ""
8517
 
8518
+ #: wppa-settings-autosave.php:1882
8519
+ msgid "Display the share social media buttons box."
8520
  msgstr ""
8521
 
8522
+ #: wppa-settings-autosave.php:1891 wppa-settings-autosave.php:9152
8523
+ msgid "Hide when running"
 
 
8524
  msgstr ""
8525
 
8526
+ #: wppa-settings-autosave.php:1892
8527
+ msgid "Hide the SM box when slideshow runs."
8528
  msgstr ""
8529
 
8530
+ #: wppa-settings-autosave.php:1900
8531
+ msgid "Show Share Box Widget"
8532
  msgstr ""
8533
 
8534
+ #: wppa-settings-autosave.php:1901
8535
+ msgid "Display the share social media buttons box in widgets."
 
 
8536
  msgstr ""
8537
 
8538
+ #: wppa-settings-autosave.php:1902
8539
+ msgid ""
8540
+ "This setting applies to normal slideshows in widgets, not to the "
8541
+ "slideshowwidget as that is a slideonly display."
8542
  msgstr ""
8543
 
8544
+ #: wppa-settings-autosave.php:1910
8545
+ msgid "Show Share Buttons Thumbs"
8546
  msgstr ""
8547
 
8548
+ #: wppa-settings-autosave.php:1911
8549
+ msgid "Display the share social media buttons under thumbnails."
 
 
8550
  msgstr ""
8551
 
8552
+ #: wppa-settings-autosave.php:1920
8553
+ msgid "Show Share Buttons Lightbox"
8554
  msgstr ""
8555
 
8556
+ #: wppa-settings-autosave.php:1921
8557
+ msgid "Display the share social media buttons on lightbox displays."
8558
  msgstr ""
8559
 
8560
+ #: wppa-settings-autosave.php:1930
8561
+ msgid "Show Share Buttons Mphoto"
 
8562
  msgstr ""
8563
 
8564
+ #: wppa-settings-autosave.php:1931
8565
+ msgid "Display the share social media buttons on mphoto displays."
8566
  msgstr ""
8567
 
8568
+ #: wppa-settings-autosave.php:1940
8569
+ msgid "Void pages share"
8570
  msgstr ""
8571
 
8572
+ #: wppa-settings-autosave.php:1941
8573
+ msgid "Do not show share on these pages"
 
 
8574
  msgstr ""
8575
 
8576
+ #: wppa-settings-autosave.php:1942
8577
+ msgid "Use this for pages that require the user is logged in"
8578
  msgstr ""
8579
 
8580
+ #: wppa-settings-autosave.php:1946
8581
+ msgid "--- Select one or more pages ---"
8582
  msgstr ""
8583
 
8584
+ #: wppa-settings-autosave.php:1955
8585
+ msgid "Show QR Code"
 
 
8586
  msgstr ""
8587
 
8588
+ #: wppa-settings-autosave.php:1956
8589
+ msgid "Display the QR code in the share box."
8590
  msgstr ""
8591
 
8592
+ #: wppa-settings-autosave.php:1964
8593
+ msgid "Show Twitter button"
8594
  msgstr ""
8595
 
8596
+ #: wppa-settings-autosave.php:1965
8597
+ msgid "Display the Twitter button in the share box."
 
 
8598
  msgstr ""
8599
 
8600
+ #: wppa-settings-autosave.php:1973
8601
+ msgid "The creator's Twitter account"
8602
  msgstr ""
8603
 
8604
+ #: wppa-settings-autosave.php:1974
8605
+ msgid "The Twitter @username a twitter card should be attributed to."
8606
  msgstr ""
8607
 
8608
+ #: wppa-settings-autosave.php:1975
8609
  msgid ""
8610
+ "If you want to share the image directly - by a so called twitter card - you "
8611
+ "must enter your twitter account name here"
8612
  msgstr ""
8613
 
8614
+ #: wppa-settings-autosave.php:1982
8615
+ msgid "Show Google+ button"
8616
  msgstr ""
8617
 
8618
+ #: wppa-settings-autosave.php:1983
8619
+ msgid "Display the Google+ button in the share box."
8620
  msgstr ""
8621
 
8622
+ #: wppa-settings-autosave.php:1991
8623
+ msgid "Show Pinterest button"
 
 
8624
  msgstr ""
8625
 
8626
+ #: wppa-settings-autosave.php:1992
8627
+ msgid "Display the Pintrest button in the share box."
8628
  msgstr ""
8629
 
8630
+ #: wppa-settings-autosave.php:2000
8631
+ msgid "Show LinkedIn button"
8632
  msgstr ""
8633
 
8634
+ #: wppa-settings-autosave.php:2001
8635
+ msgid "Display the LinkedIn button in the share box."
 
 
8636
  msgstr ""
8637
 
8638
+ #: wppa-settings-autosave.php:2009
8639
+ msgid "Show Facebook share button"
8640
  msgstr ""
8641
 
8642
+ #: wppa-settings-autosave.php:2010 wppa-settings-autosave.php:2019
8643
+ msgid "Display the Facebook button in the share box."
8644
  msgstr ""
8645
 
8646
+ #: wppa-settings-autosave.php:2018
8647
+ msgid "Show Facebook like button"
 
 
8648
  msgstr ""
8649
 
8650
+ #: wppa-settings-autosave.php:2027
8651
+ msgid "Display type"
8652
  msgstr ""
8653
 
8654
+ #: wppa-settings-autosave.php:2028
8655
+ msgid "Select the Facebook button display type."
8656
  msgstr ""
8657
 
8658
+ #: wppa-settings-autosave.php:2031
8659
+ msgid "Button with counter"
 
 
8660
  msgstr ""
8661
 
8662
+ #: wppa-settings-autosave.php:2031
8663
+ msgid "Box with counter"
8664
  msgstr ""
8665
 
8666
+ #: wppa-settings-autosave.php:2038
8667
+ msgid "Show Facebook comment box"
8668
  msgstr ""
8669
 
8670
+ #: wppa-settings-autosave.php:2039
8671
+ msgid "Display the Facebook comment dialog box in the share box."
8672
  msgstr ""
8673
 
8674
+ #: wppa-settings-autosave.php:2047
8675
+ msgid "Facebook User Id"
8676
  msgstr ""
8677
 
8678
+ #: wppa-settings-autosave.php:2048
8679
+ msgid "Enter your facebook user id to be able to moderate comments and sends"
8680
  msgstr ""
8681
 
8682
+ #: wppa-settings-autosave.php:2056
8683
+ msgid "Facebook App Id"
8684
  msgstr ""
8685
 
8686
+ #: wppa-settings-autosave.php:2057
8687
+ msgid "Enter your facebook app id to be able to moderate comments and sends"
8688
  msgstr ""
8689
 
8690
+ #: wppa-settings-autosave.php:2065
8691
+ msgid "Facebook js SDK"
8692
  msgstr ""
8693
 
8694
+ #: wppa-settings-autosave.php:2066
8695
+ msgid "Load Facebook js SDK"
8696
  msgstr ""
8697
 
8698
+ #: wppa-settings-autosave.php:2067
8699
  msgid ""
8700
+ "Uncheck this box only when there is a conflict with an other plugin that "
8701
+ "also loads the Facebook js SDK."
8702
  msgstr ""
8703
 
8704
+ #: wppa-settings-autosave.php:2074
8705
+ msgid "Share single image"
8706
  msgstr ""
8707
 
8708
+ #: wppa-settings-autosave.php:2075
8709
+ msgid "Share a link to a single image, not the slideshow."
8710
  msgstr ""
8711
 
8712
+ #: wppa-settings-autosave.php:2076
8713
+ msgid ""
8714
+ "The sharelink points to a page with a single image rather than to the page "
8715
+ "with the photo in the slideshow."
8716
  msgstr ""
8717
 
8718
+ #: wppa-settings-autosave.php:2084
8719
+ msgid "Thumbnail display related visibility settings"
8720
  msgstr ""
8721
 
8722
+ #: wppa-settings-autosave.php:2086
8723
+ msgid "Thumbnail name"
 
 
8724
  msgstr ""
8725
 
8726
+ #: wppa-settings-autosave.php:2087
8727
+ msgid "Display Thumbnail name."
8728
  msgstr ""
8729
 
8730
+ #: wppa-settings-autosave.php:2088
8731
+ msgid "Display photo name under thumbnail images."
8732
  msgstr ""
8733
 
8734
+ #: wppa-settings-autosave.php:2104
8735
+ msgid "Thumbnail desc"
8736
  msgstr ""
8737
 
8738
+ #: wppa-settings-autosave.php:2105
8739
+ msgid "Display Thumbnail description."
 
 
8740
  msgstr ""
8741
 
8742
+ #: wppa-settings-autosave.php:2106
8743
+ msgid "Display description of the photo under thumbnail images."
8744
  msgstr ""
8745
 
8746
+ #: wppa-settings-autosave.php:2113
8747
+ msgid "Thumbnail rating"
8748
  msgstr ""
8749
 
8750
+ #: wppa-settings-autosave.php:2114
8751
+ msgid "Display Thumbnail Rating."
8752
  msgstr ""
8753
 
8754
+ #: wppa-settings-autosave.php:2115
8755
+ msgid "Display the rating of the photo under the thumbnail image."
8756
  msgstr ""
8757
 
8758
+ #: wppa-settings-autosave.php:2122
8759
+ msgid "Thumbnail comcount"
8760
  msgstr ""
8761
 
8762
+ #: wppa-settings-autosave.php:2123
8763
+ msgid "Display Thumbnail Comment count."
8764
  msgstr ""
8765
 
8766
+ #: wppa-settings-autosave.php:2124
8767
+ msgid "Display the number of comments to the photo under the thumbnail image."
8768
  msgstr ""
8769
 
8770
+ #: wppa-settings-autosave.php:2131
8771
+ msgid "Thumbnail viewcount"
 
 
8772
  msgstr ""
8773
 
8774
+ #: wppa-settings-autosave.php:2132
8775
+ msgid "Display the number of views."
 
 
8776
  msgstr ""
8777
 
8778
+ #: wppa-settings-autosave.php:2133
8779
+ msgid "Display the number of views under the thumbnail image."
8780
  msgstr ""
8781
 
8782
+ #: wppa-settings-autosave.php:2140
8783
+ msgid "Thumbnail virt album"
8784
  msgstr ""
8785
 
8786
+ #: wppa-settings-autosave.php:2141
8787
+ msgid "Display the real album name on virtual album display."
8788
  msgstr ""
8789
 
8790
+ #: wppa-settings-autosave.php:2142
8791
+ msgid ""
8792
+ "Display the album name of the photo in parenthesis under the thumbnail on "
8793
+ "virtual album displays like search results etc."
8794
  msgstr ""
8795
 
8796
+ #: wppa-settings-autosave.php:2149
8797
+ msgid "Thumbnail video"
8798
  msgstr ""
8799
 
8800
+ #: wppa-settings-autosave.php:2150
8801
+ msgid "Show video controls on thumbnail displays."
8802
  msgstr ""
8803
 
8804
+ #: wppa-settings-autosave.php:2151
8805
+ msgid ""
8806
+ "Works on default thumbnail type only. You can play the video only when the "
8807
+ "link is set to no link at all."
8808
  msgstr ""
8809
 
8810
+ #: wppa-settings-autosave.php:2158
8811
+ msgid "Thumbnail audio"
8812
  msgstr ""
8813
 
8814
+ #: wppa-settings-autosave.php:2159
8815
+ msgid "Show audio controls on thumbnail displays."
 
 
8816
  msgstr ""
8817
 
8818
+ #: wppa-settings-autosave.php:2167
8819
+ msgid "Popup name"
8820
  msgstr ""
8821
 
8822
+ #: wppa-settings-autosave.php:2168
8823
+ msgid "Display Thumbnail name on popup."
8824
  msgstr ""
8825
 
8826
+ #: wppa-settings-autosave.php:2169
8827
+ msgid "Display photo name under thumbnail images on the popup."
 
 
8828
  msgstr ""
8829
 
8830
+ #: wppa-settings-autosave.php:2176
8831
+ msgid "Popup (owner)"
8832
  msgstr ""
8833
 
8834
+ #: wppa-settings-autosave.php:2177
8835
+ msgid "Display owner on popup."
8836
  msgstr ""
8837
 
8838
+ #: wppa-settings-autosave.php:2178
8839
+ msgid "Display photo owner under thumbnail images on the popup."
 
 
8840
  msgstr ""
8841
 
8842
+ #: wppa-settings-autosave.php:2185
8843
+ msgid "Popup desc"
8844
  msgstr ""
8845
 
8846
+ #: wppa-settings-autosave.php:2186
8847
+ msgid "Display Thumbnail description on popup."
8848
  msgstr ""
8849
 
8850
+ #: wppa-settings-autosave.php:2187
8851
+ msgid "Display description of the photo under thumbnail images on the popup."
8852
  msgstr ""
8853
 
8854
+ #: wppa-settings-autosave.php:2194
8855
+ msgid "Popup desc no links"
8856
  msgstr ""
8857
 
8858
+ #: wppa-settings-autosave.php:2195
8859
+ msgid "Strip html anchor tags from descriptions on popups"
8860
  msgstr ""
8861
 
8862
+ #: wppa-settings-autosave.php:2196
8863
+ msgid ""
8864
+ "Use this option to prevent the display of links that cannot be activated."
8865
  msgstr ""
8866
 
8867
+ #: wppa-settings-autosave.php:2203
8868
+ msgid "Popup rating"
8869
  msgstr ""
8870
 
8871
+ #: wppa-settings-autosave.php:2204
8872
+ msgid "Display Thumbnail Rating on popup."
 
8873
  msgstr ""
8874
 
8875
+ #: wppa-settings-autosave.php:2205
8876
+ msgid "Display the rating of the photo under the thumbnail image on the popup."
 
8877
  msgstr ""
8878
 
8879
+ #: wppa-settings-autosave.php:2212
8880
+ msgid "Popup comcount"
 
8881
  msgstr ""
8882
 
8883
+ #: wppa-settings-autosave.php:2213
8884
+ msgid "Display Thumbnail Comment count on popup."
 
8885
  msgstr ""
8886
 
8887
+ #: wppa-settings-autosave.php:2214
8888
+ msgid ""
8889
+ "Display the number of comments of the photo under the thumbnail image on the "
8890
+ "popup."
8891
  msgstr ""
8892
 
8893
+ #: wppa-settings-autosave.php:2221
8894
+ msgid "Show rating count"
8895
+ msgstr ""
8896
+
8897
+ #: wppa-settings-autosave.php:2222
8898
+ msgid "Display the number of votes along with average ratings."
8899
  msgstr ""
8900
 
8901
+ #: wppa-settings-autosave.php:2223
8902
+ msgid ""
8903
+ "If checked, the number of votes is displayed along with average rating "
8904
+ "displays on thumbnail and popup displays."
8905
  msgstr ""
8906
 
8907
+ #: wppa-settings-autosave.php:2230
8908
+ msgid "Show name on thumb area"
 
8909
  msgstr ""
8910
 
8911
+ #: wppa-settings-autosave.php:2231
8912
+ msgid "Select if and where to display the album name on the thumbnail display."
 
 
 
8913
  msgstr ""
8914
 
8915
+ #: wppa-settings-autosave.php:2234 wppa-settings-autosave.php:2245
8916
+ #: wppa-settings-autosave.php:2274 wppa-settings-autosave.php:4524
8917
+ msgid "None"
8918
  msgstr ""
8919
 
8920
+ #: wppa-settings-autosave.php:2234 wppa-settings-autosave.php:2245
8921
+ #: wppa-settings-autosave.php:2274 wppa-settings-autosave.php:3634
8922
+ msgid "At the top"
8923
  msgstr ""
8924
 
8925
+ #: wppa-settings-autosave.php:2234 wppa-settings-autosave.php:2245
8926
+ #: wppa-settings-autosave.php:2274 wppa-settings-autosave.php:3634
8927
+ msgid "At the bottom"
8928
  msgstr ""
8929
 
8930
+ #: wppa-settings-autosave.php:2241
8931
+ msgid "Show desc on thumb area"
8932
  msgstr ""
8933
 
8934
+ #: wppa-settings-autosave.php:2242
8935
+ msgid ""
8936
+ "Select if and where to display the album description on the thumbnail "
8937
+ "display."
8938
  msgstr ""
8939
 
8940
+ #: wppa-settings-autosave.php:2252
8941
+ msgid "Show Edit/Delete links"
8942
  msgstr ""
8943
 
8944
+ #: wppa-settings-autosave.php:2253
8945
+ msgid "Show these links under default thumbnails for owner and admin."
8946
  msgstr ""
8947
 
8948
+ #: wppa-settings-autosave.php:2261
8949
+ msgid "Show empty thumbnail area"
8950
  msgstr ""
8951
 
8952
+ #: wppa-settings-autosave.php:2262
8953
+ msgid "Display thumbnail areas with upload link only for empty albums."
8954
  msgstr ""
8955
 
8956
+ #: wppa-settings-autosave.php:2270
8957
+ msgid "Upload/create link on thumbnail area"
8958
  msgstr ""
8959
 
8960
+ #: wppa-settings-autosave.php:2271
8961
+ msgid "Select the location of the upload and crete links."
8962
  msgstr ""
8963
 
8964
+ #: wppa-settings-autosave.php:2282
8965
+ msgid "Album cover related visibility settings"
8966
  msgstr ""
8967
 
8968
+ #: wppa-settings-autosave.php:2284
8969
+ msgid "Covertext"
8970
  msgstr ""
8971
 
8972
+ #: wppa-settings-autosave.php:2285
8973
+ msgid "Show the text on the album cover."
8974
  msgstr ""
8975
 
8976
+ #: wppa-settings-autosave.php:2286
8977
+ msgid "Display the album decription on the album cover"
8978
  msgstr ""
8979
 
8980
+ #: wppa-settings-autosave.php:2294
8981
+ msgid "Enable the slideshow."
8982
  msgstr ""
8983
 
8984
+ #: wppa-settings-autosave.php:2295
8985
+ msgid ""
8986
+ "If you do not want slideshows: uncheck this box. Browsing full size images "
8987
+ "will remain possible."
8988
  msgstr ""
8989
 
8990
+ #: wppa-settings-autosave.php:2302
8991
+ msgid "Slideshow/Browse"
8992
  msgstr ""
8993
 
8994
+ #: wppa-settings-autosave.php:2303
8995
+ msgid "Display the Slideshow / Browse photos link on album covers"
8996
  msgstr ""
8997
 
8998
+ #: wppa-settings-autosave.php:2304
8999
+ msgid ""
9000
+ "This setting causes the Slideshow link to be displayed on the album cover."
9001
  msgstr ""
9002
 
9003
+ #: wppa-settings-autosave.php:2305
9004
+ msgid ""
9005
+ "If slideshows are disabled in item 2 in this table, you will see a browse "
9006
+ "link to fullsize images."
9007
  msgstr ""
9008
 
9009
+ #: wppa-settings-autosave.php:2306
9010
+ msgid "If you do not want the browse link either, uncheck this item."
9011
  msgstr ""
9012
 
9013
+ #: wppa-settings-autosave.php:2313
9014
+ msgid "View ..."
9015
  msgstr ""
9016
 
9017
+ #: wppa-settings-autosave.php:2314
9018
+ msgid "Display the View xx albums and yy photos link on album covers"
9019
  msgstr ""
9020
 
9021
+ #: wppa-settings-autosave.php:2322
9022
+ msgid "Treecount"
 
9023
  msgstr ""
9024
 
9025
+ #: wppa-settings-autosave.php:2323
9026
+ msgid "Disaplay the total number of (sub)albums and photos in subalbums"
 
9027
  msgstr ""
9028
 
9029
+ #: wppa-settings-autosave.php:2324
 
9030
  msgid ""
9031
+ "Displays the total number of sub albums and photos in the entire album tree "
9032
+ "in parenthesis if the numbers differ from the direct content of the album."
9033
  msgstr ""
9034
 
9035
+ #: wppa-settings-autosave.php:2331
9036
+ msgid "Show categories"
 
 
9037
  msgstr ""
9038
 
9039
+ #: wppa-settings-autosave.php:2332
9040
+ msgid "Display the album categories on the covers."
9041
  msgstr ""
9042
 
9043
+ #: wppa-settings-autosave.php:2340
9044
+ msgid "Skip empty albums"
9045
  msgstr ""
9046
 
9047
+ #: wppa-settings-autosave.php:2341
9048
+ msgid "Do not show empty albums, except for admin and owner."
9049
  msgstr ""
9050
 
9051
+ #: wppa-settings-autosave.php:2349
9052
+ msgid "Count on title"
9053
  msgstr ""
9054
 
9055
+ #: wppa-settings-autosave.php:2350
9056
+ msgid "Show photocount along with album title. "
9057
  msgstr ""
9058
 
9059
+ #: wppa-settings-autosave.php:2359
9060
+ msgid "Widget related visibility settings"
9061
  msgstr ""
9062
 
9063
+ #: wppa-settings-autosave.php:2361
9064
+ msgid "Big Browse Buttons in widget"
9065
  msgstr ""
9066
 
9067
+ #: wppa-settings-autosave.php:2362
9068
+ msgid "Enable invisible browsing buttons in widget slideshows."
9069
  msgstr ""
9070
 
9071
+ #: wppa-settings-autosave.php:2371
9072
+ msgid "Ugly Browse Buttons in widget"
9073
  msgstr ""
9074
 
9075
+ #: wppa-settings-autosave.php:2372
9076
+ msgid "Enable ugly browsing buttons in widget slideshows."
9077
  msgstr ""
9078
 
9079
+ #: wppa-settings-autosave.php:2373
9080
+ msgid "If checked, the fullsize image is covered by browse buttons."
9081
  msgstr ""
9082
 
9083
+ #: wppa-settings-autosave.php:2381
9084
+ msgid "Album widget tooltip"
9085
  msgstr ""
9086
 
9087
+ #: wppa-settings-autosave.php:2382
9088
+ msgid "Show the album description on hoovering thumbnail in album widget"
9089
  msgstr ""
9090
 
9091
+ #: wppa-settings-autosave.php:2390 wppa-settings-autosave.php:4655
9092
+ msgid ""
9093
+ "Lightbox related settings. These settings have effect only when Table IX-J3 "
9094
+ "is set to wppa"
9095
  msgstr ""
9096
 
9097
+ #: wppa-settings-autosave.php:2403
9098
+ msgid "Overlay theme color"
9099
  msgstr ""
9100
 
9101
+ #: wppa-settings-autosave.php:2404
9102
+ msgid "The color of the image border and text background."
9103
  msgstr ""
9104
 
9105
+ #: wppa-settings-autosave.php:2407 wppa-settings-autosave.php:2418
9106
+ msgid "Black"
9107
  msgstr ""
9108
 
9109
+ #: wppa-settings-autosave.php:2407 wppa-settings-autosave.php:2418
9110
+ msgid "White"
9111
  msgstr ""
9112
 
9113
+ #: wppa-settings-autosave.php:2414
9114
+ msgid "Overlay background color"
9115
  msgstr ""
9116
 
9117
+ #: wppa-settings-autosave.php:2415
9118
+ msgid "The color of the outer background."
9119
  msgstr ""
9120
 
9121
+ #: wppa-settings-autosave.php:2425
9122
+ msgid "Overlay slide name"
9123
  msgstr ""
9124
 
9125
+ #: wppa-settings-autosave.php:2426
9126
+ msgid "Show name if from slide."
9127
  msgstr ""
9128
 
9129
+ #: wppa-settings-autosave.php:2427
9130
+ msgid ""
9131
+ "Shows the photos name on a lightbox display when initiated from a slide."
9132
  msgstr ""
9133
 
9134
+ #: wppa-settings-autosave.php:2428 wppa-settings-autosave.php:2438
9135
+ msgid ""
9136
+ "This setting also applies to film thumbnails if Table VI-11 is set to "
9137
+ "lightbox overlay."
9138
  msgstr ""
9139
 
9140
+ #: wppa-settings-autosave.php:2435
9141
+ msgid "Overlay slide desc"
9142
  msgstr ""
9143
 
9144
+ #: wppa-settings-autosave.php:2436
9145
+ msgid "Show description if from slide."
9146
  msgstr ""
9147
 
9148
+ #: wppa-settings-autosave.php:2437
9149
+ msgid ""
9150
+ "Shows the photos description on a lightbox display when initiated from a "
9151
+ "slide."
9152
  msgstr ""
9153
 
9154
+ #: wppa-settings-autosave.php:2445
9155
+ msgid "Overlay thumb name"
9156
  msgstr ""
9157
 
9158
+ #: wppa-settings-autosave.php:2446
9159
+ msgid "Show the photos name if from thumb."
9160
  msgstr ""
9161
 
9162
+ #: wppa-settings-autosave.php:2447
9163
+ msgid ""
9164
+ "Shows the name on a lightbox display when initiated from a standard "
9165
+ "thumbnail or a widget thumbnail."
9166
  msgstr ""
9167
 
9168
+ #: wppa-settings-autosave.php:2448 wppa-settings-autosave.php:2458
9169
+ msgid ""
9170
+ "This setting applies to standard thumbnails, thumbnail-, comment-, topten- "
9171
+ "and lasten-widget."
9172
  msgstr ""
9173
 
9174
+ #: wppa-settings-autosave.php:2455
9175
+ msgid "Overlay thumb desc"
9176
  msgstr ""
9177
 
9178
+ #: wppa-settings-autosave.php:2456
9179
+ msgid "Show description if from thumb."
9180
  msgstr ""
9181
 
9182
+ #: wppa-settings-autosave.php:2457
9183
  msgid ""
9184
+ "Shows the photos description on a lightbox display when initiated from a "
9185
+ "standard thumbnail or a widget thumbnail."
9186
  msgstr ""
9187
 
9188
+ #: wppa-settings-autosave.php:2465
9189
+ msgid "Overlay potd name"
9190
  msgstr ""
9191
 
9192
+ #: wppa-settings-autosave.php:2466
9193
+ msgid "Show the photos name if from photo of the day."
9194
  msgstr ""
9195
 
9196
+ #: wppa-settings-autosave.php:2467
9197
+ msgid ""
9198
+ "Shows the name on a lightbox display when initiated from the photo of the "
9199
+ "day."
9200
  msgstr ""
9201
 
9202
+ #: wppa-settings-autosave.php:2474
9203
+ msgid "Overlay potd desc"
9204
  msgstr ""
9205
 
9206
+ #: wppa-settings-autosave.php:2475
9207
+ msgid "Show description if from from photo of the day."
9208
  msgstr ""
9209
 
9210
+ #: wppa-settings-autosave.php:2476
9211
+ msgid ""
9212
+ "Shows the photos description on a lightbox display when initiated from the "
9213
+ "photo of the day."
9214
  msgstr ""
9215
 
9216
+ #: wppa-settings-autosave.php:2483
9217
+ msgid "Overlay sphoto name"
9218
  msgstr ""
9219
 
9220
+ #: wppa-settings-autosave.php:2484
9221
+ msgid "Show the photos name if from a single photo."
9222
  msgstr ""
9223
 
9224
+ #: wppa-settings-autosave.php:2485
9225
  msgid ""
9226
+ "Shows the name on a lightbox display when initiated from a single photo."
9227
  msgstr ""
9228
 
9229
+ #: wppa-settings-autosave.php:2492
9230
+ msgid "Overlay sphoto desc"
9231
  msgstr ""
9232
 
9233
+ #: wppa-settings-autosave.php:2493
9234
+ msgid "Show description if from from a single photo."
9235
  msgstr ""
9236
 
9237
+ #: wppa-settings-autosave.php:2494
9238
+ msgid ""
9239
+ "Shows the photos description on a lightbox display when initiated from a "
9240
+ "single photo."
9241
  msgstr ""
9242
 
9243
+ #: wppa-settings-autosave.php:2501
9244
+ msgid "Overlay mphoto name"
9245
  msgstr ""
9246
 
9247
+ #: wppa-settings-autosave.php:2502
9248
+ msgid "Show the photos name if from a single media style photo."
9249
  msgstr ""
9250
 
9251
+ #: wppa-settings-autosave.php:2503
9252
+ msgid ""
9253
+ "Shows the name on a lightbox display when initiated from a single media "
9254
+ "style photo."
9255
  msgstr ""
9256
 
9257
+ #: wppa-settings-autosave.php:2510
9258
+ msgid "Overlay mphoto desc"
9259
  msgstr ""
9260
 
9261
+ #: wppa-settings-autosave.php:2511
9262
+ msgid "Show description if from from a media style photo."
9263
  msgstr ""
9264
 
9265
+ #: wppa-settings-autosave.php:2512
9266
+ msgid ""
9267
+ "Shows the photos description on a lightbox display when initiated from a "
9268
+ "single media style photo."
9269
  msgstr ""
9270
 
9271
+ #: wppa-settings-autosave.php:2519
9272
+ msgid "Overlay albumwidget name"
9273
  msgstr ""
9274
 
9275
+ #: wppa-settings-autosave.php:2520
9276
+ msgid "Show the photos name if from the album widget."
9277
  msgstr ""
9278
 
9279
+ #: wppa-settings-autosave.php:2521
9280
+ msgid ""
9281
+ "Shows the name on a lightbox display when initiated from the album widget."
9282
  msgstr ""
9283
 
9284
+ #: wppa-settings-autosave.php:2528
9285
+ msgid "Overlay albumwidget desc"
9286
  msgstr ""
9287
 
9288
+ #: wppa-settings-autosave.php:2529
9289
+ msgid "Show description if from from the album widget."
9290
  msgstr ""
9291
 
9292
+ #: wppa-settings-autosave.php:2530
9293
+ msgid ""
9294
+ "Shows the photos description on a lightbox display when initiated from the "
9295
+ "album widget."
9296
  msgstr ""
9297
 
9298
+ #: wppa-settings-autosave.php:2537
9299
+ msgid "Overlay coverphoto name"
9300
  msgstr ""
9301
 
9302
+ #: wppa-settings-autosave.php:2538
9303
+ msgid "Show the photos name if from the album cover."
9304
  msgstr ""
9305
 
9306
+ #: wppa-settings-autosave.php:2539
9307
  msgid ""
9308
+ "Shows the name on a lightbox display when initiated from the album "
9309
+ "coverphoto."
9310
  msgstr ""
9311
 
9312
+ #: wppa-settings-autosave.php:2546
9313
+ msgid "Overlay coverphoto desc"
9314
  msgstr ""
9315
 
9316
+ #: wppa-settings-autosave.php:2547
9317
+ msgid "Show description if from from the album cover."
9318
  msgstr ""
9319
 
9320
+ #: wppa-settings-autosave.php:2548
9321
  msgid ""
9322
+ "Shows the photos description on a lightbox display when initiated from the "
9323
+ "album coverphoto."
9324
  msgstr ""
9325
 
9326
+ #: wppa-settings-autosave.php:2555
9327
+ msgid "Overlay add owner"
9328
  msgstr ""
9329
 
9330
+ #: wppa-settings-autosave.php:2556
9331
+ msgid "Add the owner to the photo name on lightbox displays."
9332
  msgstr ""
9333
 
9334
+ #: wppa-settings-autosave.php:2557
9335
  msgid ""
9336
+ "This setting is independant of the show name switches and is a global "
9337
+ "setting."
9338
  msgstr ""
9339
 
9340
+ #: wppa-settings-autosave.php:2564
9341
+ msgid "Overlay show start/stop"
9342
  msgstr ""
9343
 
9344
+ #: wppa-settings-autosave.php:2565
9345
+ msgid "Show Start and Stop for running slideshow on lightbox."
9346
  msgstr ""
9347
 
9348
+ #: wppa-settings-autosave.php:2573
9349
+ msgid "Overlay show legenda"
 
9350
  msgstr ""
9351
 
9352
+ #: wppa-settings-autosave.php:2574
9353
+ msgid "Show \"Press f for fullsize\" etc. on lightbox."
9354
  msgstr ""
9355
 
9356
+ #: wppa-settings-autosave.php:2575
9357
+ msgid "Independant of this setting, it will not show up on mobile devices."
9358
  msgstr ""
9359
 
9360
+ #: wppa-settings-autosave.php:2582
9361
+ msgid "Show fullscreen icons"
9362
  msgstr ""
9363
 
9364
+ #: wppa-settings-autosave.php:2583
9365
+ msgid "Shows fullscreen and back to normal icon buttons on upper right corner"
9366
  msgstr ""
9367
 
9368
+ #: wppa-settings-autosave.php:2591
9369
+ msgid "Show rating"
9370
  msgstr ""
9371
 
9372
+ #: wppa-settings-autosave.php:2592
9373
+ msgid "Shows and enables rating on lightbox."
9374
  msgstr ""
9375
 
9376
+ #: wppa-settings-autosave.php:2593
9377
+ msgid ""
9378
+ "This works for 5 and 10 stars only, not for single votes or numerical display"
9379
  msgstr ""
9380
 
9381
+ #: wppa-settings-autosave.php:2600
9382
+ msgid "Overlay show counter"
9383
  msgstr ""
9384
 
9385
+ #: wppa-settings-autosave.php:2601
9386
+ msgid "Show the x/y counter below the image."
9387
  msgstr ""
9388
 
9389
+ #: wppa-settings-autosave.php:2609
9390
+ msgid "Show Zoom in"
9391
  msgstr ""
9392
 
9393
+ #: wppa-settings-autosave.php:2610
9394
+ msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
9395
  msgstr ""
9396
 
9397
+ #: wppa-settings-autosave.php:2611
9398
+ msgid ""
9399
+ "If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
9400
+ "contains the photo name."
9401
  msgstr ""
9402
 
9403
+ #: wppa-settings-autosave.php:2619
9404
+ msgid "Frontend upload configuration settings"
9405
  msgstr ""
9406
 
9407
+ #: wppa-settings-autosave.php:2621
9408
+ msgid "User upload Photos"
9409
  msgstr ""
9410
 
9411
+ #: wppa-settings-autosave.php:2622
9412
+ msgid "Enable frontend upload."
9413
  msgstr ""
9414
 
9415
+ #: wppa-settings-autosave.php:2623
9416
+ msgid ""
9417
+ "If you check this item, frontend upload will be enabled according to the "
9418
+ "rules set in the following items of this table."
9419
  msgstr ""
9420
 
9421
+ #: wppa-settings-autosave.php:2631
9422
+ msgid "User upload Video"
9423
  msgstr ""
9424
 
9425
+ #: wppa-settings-autosave.php:2632
9426
+ msgid "Enable frontend upload of video."
9427
  msgstr ""
9428
 
9429
+ #: wppa-settings-autosave.php:2633 wppa-settings-autosave.php:2643
9430
+ msgid "Requires Table II-H1 to be ticked."
9431
  msgstr ""
9432
 
9433
+ #: wppa-settings-autosave.php:2641
9434
+ msgid "User upload Audio"
9435
  msgstr ""
9436
 
9437
+ #: wppa-settings-autosave.php:2642
9438
+ msgid "Enable frontend upload of audio."
9439
  msgstr ""
9440
 
9441
+ #: wppa-settings-autosave.php:2651
9442
+ msgid "User upload Photos login"
 
9443
  msgstr ""
9444
 
9445
+ #: wppa-settings-autosave.php:2652
9446
+ msgid "Frontend upload requires the user is logged in."
9447
  msgstr ""
9448
 
9449
+ #: wppa-settings-autosave.php:2653
9450
+ msgid ""
9451
+ "If you uncheck this box, make sure you check the item Owners only in Table "
9452
+ "VII-D1."
9453
  msgstr ""
9454
 
9455
+ #: wppa-settings-autosave.php:2654
9456
+ msgid ""
9457
+ "Also: set the owner to ---public--- of the albums that are allowed to be "
9458
+ "uploaded to."
9459
  msgstr ""
9460
 
9461
+ #: wppa-settings-autosave.php:2661
9462
+ msgid "User upload Ajax"
9463
  msgstr ""
9464
 
9465
+ #: wppa-settings-autosave.php:2662
9466
+ msgid "Shows the upload progression bar."
9467
  msgstr ""
9468
 
9469
+ #: wppa-settings-autosave.php:2670
9470
+ msgid "Show Copyright"
9471
  msgstr ""
9472
 
9473
+ #: wppa-settings-autosave.php:2671
9474
+ msgid "Show a copyright warning on frontend upload locations."
9475
  msgstr ""
9476
 
9477
+ #: wppa-settings-autosave.php:2680
9478
+ msgid "Copyright notice"
9479
  msgstr ""
9480
 
9481
+ #: wppa-settings-autosave.php:2681
9482
+ msgid "The message to be displayed."
9483
  msgstr ""
9484
 
9485
+ #: wppa-settings-autosave.php:2689
9486
+ msgid "User Watermark"
 
 
9487
  msgstr ""
9488
 
9489
+ #: wppa-settings-autosave.php:2690
9490
+ msgid "Uploading users may select watermark settings"
9491
  msgstr ""
9492
 
9493
+ #: wppa-settings-autosave.php:2691
9494
+ msgid ""
9495
+ "If checked, anyone who can upload and/or import photos can overrule the "
9496
+ "default watermark settings."
9497
  msgstr ""
9498
 
9499
+ #: wppa-settings-autosave.php:2698
9500
+ msgid "User name"
9501
  msgstr ""
9502
 
9503
+ #: wppa-settings-autosave.php:2699
9504
+ msgid "Uploading users may overrule the default name."
 
 
9505
  msgstr ""
9506
 
9507
+ #: wppa-settings-autosave.php:2700
9508
+ msgid ""
9509
+ "If checked, the default photo name as defined in Table IX-D13 may be "
9510
+ "overruled by the user."
9511
  msgstr ""
9512
 
9513
+ #: wppa-settings-autosave.php:2707
9514
+ msgid "Apply Newphoto desc user"
9515
  msgstr ""
9516
 
9517
+ #: wppa-settings-autosave.php:2708
9518
+ msgid "Give each new frontend uploaded photo a standard description."
9519
  msgstr ""
9520
 
9521
+ #: wppa-settings-autosave.php:2709
9522
  msgid ""
9523
+ "If checked, each new photo will get the description (template) as specified "
9524
+ "in Table IX-D5."
9525
  msgstr ""
9526
 
9527
+ #: wppa-settings-autosave.php:2716
9528
+ msgid "User desc"
9529
  msgstr ""
9530
 
9531
+ #: wppa-settings-autosave.php:2717
9532
+ msgid "Uploading users may overrule the default description."
9533
  msgstr ""
9534
 
9535
+ #: wppa-settings-autosave.php:2725
9536
+ msgid "User upload custom"
9537
  msgstr ""
9538
 
9539
+ #: wppa-settings-autosave.php:2726
9540
+ msgid "Frontend upload can fill in custom data fields."
 
9541
  msgstr ""
9542
 
9543
+ #: wppa-settings-autosave.php:2734
9544
+ msgid "User upload tags"
9545
  msgstr ""
9546
 
9547
+ #: wppa-settings-autosave.php:2735
9548
+ msgid "Frontend upload can add tags."
9549
  msgstr ""
9550
 
9551
+ #: wppa-settings-autosave.php:2736
9552
+ msgid "You can configure the details of tag addition in Table IX-D18.x"
 
 
9553
  msgstr ""
9554
 
9555
+ #: wppa-settings-autosave.php:2744 wppa-settings-autosave.php:2772
9556
+ #: wppa-settings-autosave.php:2800
9557
+ msgid "Tag selection box"
 
9558
  msgstr ""
9559
 
9560
+ #: wppa-settings-autosave.php:2745 wppa-settings-autosave.php:2773
9561
+ #: wppa-settings-autosave.php:2801
9562
+ msgid "Front-end upload tags selecion box."
9563
  msgstr ""
9564
 
9565
+ #: wppa-settings-autosave.php:2749 wppa-settings-autosave.php:2777
9566
+ #: wppa-settings-autosave.php:2805
9567
+ msgid "On:"
9568
  msgstr ""
9569
 
9570
+ #: wppa-settings-autosave.php:2749 wppa-settings-autosave.php:2777
9571
+ #: wppa-settings-autosave.php:2805
9572
+ msgid "Multi:"
 
9573
  msgstr ""
9574
 
9575
+ #: wppa-settings-autosave.php:2754 wppa-settings-autosave.php:2782
9576
+ #: wppa-settings-autosave.php:2810
9577
+ msgid "Caption box"
9578
  msgstr ""
9579
 
9580
+ #: wppa-settings-autosave.php:2755 wppa-settings-autosave.php:2783
9581
+ #: wppa-settings-autosave.php:2811
9582
+ msgid "The title of the tag selection box."
 
9583
  msgstr ""
9584
 
9585
+ #: wppa-settings-autosave.php:2763 wppa-settings-autosave.php:2791
9586
+ #: wppa-settings-autosave.php:2819
9587
+ msgid "Tags box"
 
9588
  msgstr ""
9589
 
9590
+ #: wppa-settings-autosave.php:2764 wppa-settings-autosave.php:2792
9591
+ #: wppa-settings-autosave.php:2820
9592
+ msgid "The tags in the selection box."
9593
  msgstr ""
9594
 
9595
+ #: wppa-settings-autosave.php:2765 wppa-settings-autosave.php:2793
9596
+ #: wppa-settings-autosave.php:2821
9597
+ msgid ""
9598
+ "Enter the tags you want to appear in the selection box. Empty means: all "
9599
+ "existing tags"
9600
  msgstr ""
9601
 
9602
+ #: wppa-settings-autosave.php:2828
9603
+ msgid "New tags"
9604
  msgstr ""
9605
 
9606
+ #: wppa-settings-autosave.php:2829
9607
+ msgid "Input field for any user defined tags."
9608
  msgstr ""
9609
 
9610
+ #: wppa-settings-autosave.php:2837
9611
+ msgid "New tags caption"
9612
  msgstr ""
9613
 
9614
+ #: wppa-settings-autosave.php:2838
9615
+ msgid "The caption above the tags input field."
9616
  msgstr ""
9617
 
9618
+ #: wppa-settings-autosave.php:2846
9619
+ msgid "Preview tags"
9620
  msgstr ""
9621
 
9622
+ #: wppa-settings-autosave.php:2847
9623
+ msgid "Show a preview of all tags that will be added to the photo info."
9624
  msgstr ""
9625
 
9626
+ #: wppa-settings-autosave.php:2855
9627
+ msgid "Camera connect"
 
 
9628
  msgstr ""
9629
 
9630
+ #: wppa-settings-autosave.php:2856
9631
+ msgid "Connect frontend upload to camara on mobile devices with camera"
 
 
9632
  msgstr ""
9633
 
9634
+ #: wppa-settings-autosave.php:2864
9635
+ msgid "Blog It!"
 
 
9636
  msgstr ""
9637
 
9638
+ #: wppa-settings-autosave.php:2865
9639
+ msgid "Enable blogging photos."
9640
  msgstr ""
9641
 
9642
+ #: wppa-settings-autosave.php:2866
9643
+ msgid "Users need the capability edit_posts to directly blog photos."
9644
  msgstr ""
9645
 
9646
+ #: wppa-settings-autosave.php:2873
9647
+ msgid "Blog It need moderation"
9648
  msgstr ""
9649
 
9650
+ #: wppa-settings-autosave.php:2874
9651
+ msgid "Posts with blogged photos need moderation."
 
 
9652
  msgstr ""
9653
 
9654
+ #: wppa-settings-autosave.php:2882
9655
+ msgid "Blog It shortcode"
 
 
 
9656
  msgstr ""
9657
 
9658
+ #: wppa-settings-autosave.php:2883
9659
+ msgid "Shortcode to be used on the blog post"
9660
  msgstr ""
9661
 
9662
+ #: wppa-settings-autosave.php:2884
9663
+ msgid "Make sure it contains photo=\"#id\""
9664
  msgstr ""
9665
 
9666
+ #: wppa-settings-autosave.php:2892
9667
+ msgid "Miscellaneous visibility settings"
9668
  msgstr ""
9669
 
9670
+ #: wppa-settings-autosave.php:2894
9671
+ msgid "Frontend ending label"
9672
  msgstr ""
9673
 
9674
+ #: wppa-settings-autosave.php:2895
9675
+ msgid "Frontend upload / create / edit dialog closing label text."
9676
  msgstr ""
9677
 
9678
+ #: wppa-settings-autosave.php:2898
9679
+ msgid "Abort"
9680
  msgstr ""
9681
 
9682
+ #: wppa-settings-autosave.php:2898
9683
+ msgid "Close"
9684
  msgstr ""
9685
 
9686
+ #: wppa-settings-autosave.php:2898
9687
+ msgid "Exit"
9688
  msgstr ""
9689
 
9690
+ #: wppa-settings-autosave.php:2898
9691
+ msgid "Quit"
9692
  msgstr ""
9693
 
9694
+ #: wppa-settings-autosave.php:2906
9695
+ msgid "Widget thumbs fontsize"
9696
  msgstr ""
9697
 
9698
+ #: wppa-settings-autosave.php:2907
9699
+ msgid "Font size for thumbnail subtext in widgets."
9700
  msgstr ""
9701
 
9702
+ #: wppa-settings-autosave.php:2915
9703
+ msgid "Arrow color"
9704
  msgstr ""
9705
 
9706
+ #: wppa-settings-autosave.php:2916
9707
+ msgid "Left/right browsing arrow color."
9708
  msgstr ""
9709
 
9710
+ #: wppa-settings-autosave.php:2917
9711
+ msgid "Enter the color of the filmstrip navigation arrows."
9712
  msgstr ""
9713
 
9714
+ #: wppa-settings-autosave.php:2924
9715
+ msgid "Owner on new line"
9716
  msgstr ""
9717
 
9718
+ #: wppa-settings-autosave.php:2925
9719
+ msgid "Place the (owner) text on a new line."
 
 
9720
  msgstr ""
9721
 
9722
+ #: wppa-settings-autosave.php:2933
9723
+ msgid "Custom datafields albums"
9724
  msgstr ""
9725
 
9726
+ #: wppa-settings-autosave.php:2934
9727
+ msgid "Define up to 10 custom data fields for albums."
9728
  msgstr ""
9729
 
9730
+ #: wppa-settings-autosave.php:2944 wppa-settings-autosave.php:2970
9731
+ #, php-format
9732
+ msgid "Name, vis, edit %s"
9733
  msgstr ""
9734
 
9735
+ #: wppa-settings-autosave.php:2945 wppa-settings-autosave.php:2971
9736
+ #, php-format
9737
+ msgid "The caption for field %s, visibility and editability at frontend."
9738
  msgstr ""
9739
 
9740
+ #: wppa-settings-autosave.php:2946 wppa-settings-autosave.php:2972
9741
+ #, php-format
9742
+ msgid ""
9743
+ "If you check the first box, the value of this field is displayable in photo "
9744
+ "descriptions at the frontend with keyword w#c%s"
9745
  msgstr ""
9746
 
9747
+ #: wppa-settings-autosave.php:2947 wppa-settings-autosave.php:2973
9748
+ msgid ""
9749
+ "If you check the second box, the value of this field is editable at the "
9750
+ "frontend new style dialog."
9751
  msgstr ""
9752
 
9753
+ #: wppa-settings-autosave.php:2959
9754
+ msgid "Custom datafields photos"
9755
  msgstr ""
9756
 
9757
+ #: wppa-settings-autosave.php:2960
9758
+ msgid "Define up to 10 custom data fields for photos."
9759
  msgstr ""
9760
 
9761
+ #: wppa-settings-autosave.php:2985
9762
+ msgid "Navigation symbols for slideshows and lighbox"
9763
  msgstr ""
9764
 
9765
+ #: wppa-settings-autosave.php:2987
9766
+ msgid "Start symbol url"
 
9767
  msgstr ""
9768
 
9769
+ #: wppa-settings-autosave.php:2988
9770
+ msgid "Supply the url of an image for the start symbol"
9771
  msgstr ""
9772
 
9773
+ #: wppa-settings-autosave.php:2996
9774
+ msgid "Pause symbol url"
9775
  msgstr ""
9776
 
9777
+ #: wppa-settings-autosave.php:2997
9778
+ msgid "Supply the url of an image for the pause symbol"
9779
  msgstr ""
9780
 
9781
+ #: wppa-settings-autosave.php:3005
9782
+ msgid "Stop symbol url"
9783
  msgstr ""
9784
 
9785
+ #: wppa-settings-autosave.php:3006
9786
+ msgid "Supply the url of an image for the stop symbol"
9787
  msgstr ""
9788
 
9789
+ #: wppa-settings-autosave.php:3014
9790
+ msgid "Left (prev) symbol url"
9791
  msgstr ""
9792
 
9793
+ #: wppa-settings-autosave.php:3015
9794
+ msgid "Supply the url of an image for the left symbol, if not default"
 
 
9795
  msgstr ""
9796
 
9797
+ #: wppa-settings-autosave.php:3023
9798
+ msgid "Right (next) symbol url"
9799
  msgstr ""
9800
 
9801
+ #: wppa-settings-autosave.php:3024
9802
+ msgid "Supply the url of an image for the right symbol, if not default"
9803
  msgstr ""
9804
 
9805
+ #: wppa-settings-autosave.php:3033
9806
+ msgid "The size of the start/pause symbols."
9807
  msgstr ""
9808
 
9809
+ #: wppa-settings-autosave.php:3042 wppa-settings-autosave.php:3060
9810
+ msgid "The border radius if the symbol is round"
9811
  msgstr ""
9812
 
9813
+ #: wppa-settings-autosave.php:3051 wppa-settings-autosave.php:3069
9814
+ msgid "The size of the stop symbols."
9815
  msgstr ""
9816
 
9817
+ #: wppa-settings-autosave.php:3068
9818
+ msgid "Left/right symbol size"
9819
  msgstr ""
9820
 
9821
+ #: wppa-settings-autosave.php:3077
9822
+ msgid "Left/right symbol border radius"
9823
  msgstr ""
9824
 
9825
+ #: wppa-settings-autosave.php:3078
9826
+ msgid "The border radius"
9827
  msgstr ""
9828
 
9829
+ #: wppa-settings-autosave.php:3105
9830
+ msgid "Table III:"
9831
  msgstr ""
9832
 
9833
+ #: wppa-settings-autosave.php:3105
9834
+ msgid "Backgrounds:"
9835
  msgstr ""
9836
 
9837
+ #: wppa-settings-autosave.php:3106
9838
+ msgid "This table describes the backgrounds of wppa+ elements."
9839
  msgstr ""
9840
 
9841
+ #: wppa-settings-autosave.php:3116 wppa-settings-autosave.php:3453
9842
+ msgid "Background color"
9843
  msgstr ""
9844
 
9845
+ #: wppa-settings-autosave.php:3117 wppa-settings-autosave.php:3119
9846
+ #: wppa-settings-autosave.php:3454 wppa-settings-autosave.php:3456
9847
+ msgid "Sample"
9848
  msgstr ""
9849
 
9850
+ #: wppa-settings-autosave.php:3118 wppa-settings-autosave.php:3455
9851
+ msgid "Border color"
9852
  msgstr ""
9853
 
9854
+ #: wppa-settings-autosave.php:3127
9855
+ msgid "Slideshow elements backgrounds"
9856
  msgstr ""
9857
 
9858
+ #: wppa-settings-autosave.php:3129
9859
+ msgid "Nav"
9860
  msgstr ""
9861
 
9862
+ #: wppa-settings-autosave.php:3130
9863
+ msgid "Navigation bars."
9864
  msgstr ""
9865
 
9866
+ #: wppa-settings-autosave.php:3131
9867
+ msgid "Enter valid CSS colors for navigation backgrounds and borders."
9868
  msgstr ""
9869
 
9870
+ #: wppa-settings-autosave.php:3142
9871
+ msgid "SlideImg"
9872
  msgstr ""
9873
 
9874
+ #: wppa-settings-autosave.php:3143
9875
+ msgid "Fullsize Slideshow Photos."
9876
  msgstr ""
9877
 
9878
+ #: wppa-settings-autosave.php:3144
9879
+ msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
9880
  msgstr ""
9881
 
9882
+ #: wppa-settings-autosave.php:3145
9883
+ msgid "The colors may be equal or \"transparent\""
9884
  msgstr ""
9885
 
9886
+ #: wppa-settings-autosave.php:3146
9887
+ msgid ""
9888
+ "For more information about slideshow image borders see the help on Table I-B4"
9889
  msgstr ""
9890
 
9891
+ #: wppa-settings-autosave.php:3157 wppa-settings-autosave.php:4921
9892
+ msgid "Numbar"
 
 
9893
  msgstr ""
9894
 
9895
+ #: wppa-settings-autosave.php:3158
9896
+ msgid "Number bar box background."
 
9897
  msgstr ""
9898
 
9899
+ #: wppa-settings-autosave.php:3159
9900
+ msgid "Enter valid CSS colors for numbar box backgrounds and borders."
 
 
 
9901
  msgstr ""
9902
 
9903
+ #: wppa-settings-autosave.php:3170
9904
+ msgid "Numbar active"
 
9905
  msgstr ""
9906
 
9907
+ #: wppa-settings-autosave.php:3171
9908
+ msgid "Number bar active box background."
9909
  msgstr ""
9910
 
9911
+ #: wppa-settings-autosave.php:3172
9912
+ msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
9913
  msgstr ""
9914
 
9915
+ #: wppa-settings-autosave.php:3183
9916
+ msgid "Name/desc"
9917
  msgstr ""
9918
 
9919
+ #: wppa-settings-autosave.php:3184
9920
+ msgid "Name and Description bars."
 
 
9921
  msgstr ""
9922
 
9923
+ #: wppa-settings-autosave.php:3185
9924
  msgid ""
9925
+ "Enter valid CSS colors for name and description box backgrounds and borders."
 
 
 
 
 
9926
  msgstr ""
9927
 
9928
+ #: wppa-settings-autosave.php:3197
9929
+ msgid "Comment input and display areas."
9930
  msgstr ""
9931
 
9932
+ #: wppa-settings-autosave.php:3198
9933
+ msgid "Enter valid CSS colors for comment box backgrounds and borders."
 
 
 
9934
  msgstr ""
9935
 
9936
+ #: wppa-settings-autosave.php:3209 wppa-settings-autosave.php:8537
9937
+ #: wppa-settings-autosave.php:8582
9938
+ msgid "Custom"
 
9939
  msgstr ""
9940
 
9941
+ #: wppa-settings-autosave.php:3210
9942
+ msgid "Custom box background."
9943
  msgstr ""
9944
 
9945
+ #: wppa-settings-autosave.php:3211
9946
+ msgid "Enter valid CSS colors for custom box backgrounds and borders."
9947
  msgstr ""
9948
 
9949
+ #: wppa-settings-autosave.php:3222
9950
+ msgid "IPTC"
9951
  msgstr ""
9952
 
9953
+ #: wppa-settings-autosave.php:3223
9954
+ msgid "IPTC display box background."
9955
  msgstr ""
9956
 
9957
+ #: wppa-settings-autosave.php:3224
9958
+ msgid "Enter valid CSS colors for iptc box backgrounds and borders."
9959
  msgstr ""
9960
 
9961
+ #: wppa-settings-autosave.php:3235
9962
+ msgid "EXIF"
9963
  msgstr ""
9964
 
9965
+ #: wppa-settings-autosave.php:3236
9966
+ msgid "EXIF display box background."
9967
  msgstr ""
9968
 
9969
+ #: wppa-settings-autosave.php:3237
9970
+ msgid "Enter valid CSS colors for exif box backgrounds and borders."
9971
  msgstr ""
9972
 
9973
+ #: wppa-settings-autosave.php:3248
9974
+ msgid "Share"
9975
  msgstr ""
9976
 
9977
+ #: wppa-settings-autosave.php:3249
9978
+ msgid "Share box display background."
9979
  msgstr ""
9980
 
9981
+ #: wppa-settings-autosave.php:3250
9982
+ msgid "Enter valid CSS colors for share box backgrounds and borders."
9983
  msgstr ""
9984
 
9985
+ #: wppa-settings-autosave.php:3261
9986
+ msgid "Other backgrounds"
 
 
9987
  msgstr ""
9988
 
9989
+ #: wppa-settings-autosave.php:3263
9990
+ msgid "Even"
9991
  msgstr ""
9992
 
9993
+ #: wppa-settings-autosave.php:3264
9994
+ msgid "Even background."
9995
  msgstr ""
9996
 
9997
+ #: wppa-settings-autosave.php:3265
9998
+ msgid ""
9999
+ "Enter valid CSS colors for even numbered backgrounds and borders of album "
10000
+ "covers and thumbnail displays 'As covers'."
10001
  msgstr ""
10002
 
10003
+ #: wppa-settings-autosave.php:3276
10004
+ msgid "Odd"
10005
  msgstr ""
10006
 
10007
+ #: wppa-settings-autosave.php:3277
10008
+ msgid "Odd background."
10009
  msgstr ""
10010
 
10011
+ #: wppa-settings-autosave.php:3278
10012
+ msgid ""
10013
+ "Enter valid CSS colors for odd numbered backgrounds and borders of album "
10014
+ "covers and thumbnail displays 'As covers'."
10015
  msgstr ""
10016
 
10017
+ #: wppa-settings-autosave.php:3289
10018
+ msgid "Thumbnail padding"
10019
  msgstr ""
10020
 
10021
+ #: wppa-settings-autosave.php:3290
10022
+ msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
10023
  msgstr ""
10024
 
10025
+ #: wppa-settings-autosave.php:3291
10026
  msgid ""
10027
+ "Enter valid CSS color hexadecimal like #000000 for black or #ffffff for "
10028
+ "white for the padded thumbnails."
10029
  msgstr ""
10030
 
10031
+ #: wppa-settings-autosave.php:3302
10032
+ msgid "Img"
10033
  msgstr ""
10034
 
10035
+ #: wppa-settings-autosave.php:3303
10036
+ msgid "Cover Photos and popups."
10037
  msgstr ""
10038
 
10039
+ #: wppa-settings-autosave.php:3304
10040
+ msgid ""
10041
+ "Enter valid CSS colors for Cover photo and popup backgrounds and borders."
10042
  msgstr ""
10043
 
10044
+ #: wppa-settings-autosave.php:3316
10045
+ msgid "Upload box background."
10046
  msgstr ""
10047
 
10048
+ #: wppa-settings-autosave.php:3317
10049
+ msgid "Enter valid CSS colors for upload box backgrounds and borders."
 
 
 
10050
  msgstr ""
10051
 
10052
+ #: wppa-settings-autosave.php:3328
10053
+ msgid "Multitag"
10054
  msgstr ""
10055
 
10056
+ #: wppa-settings-autosave.php:3329
10057
+ msgid "Multitag box background."
10058
  msgstr ""
10059
 
10060
+ #: wppa-settings-autosave.php:3330
10061
+ msgid "Enter valid CSS colors for multitag box backgrounds and borders."
10062
  msgstr ""
10063
 
10064
+ #: wppa-settings-autosave.php:3341
10065
+ msgid "Tagcloud"
10066
  msgstr ""
10067
 
10068
+ #: wppa-settings-autosave.php:3342
10069
+ msgid "Tagcloud box background."
10070
  msgstr ""
10071
 
10072
+ #: wppa-settings-autosave.php:3343
10073
+ msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
10074
  msgstr ""
10075
 
10076
+ #: wppa-settings-autosave.php:3354
10077
+ msgid "Superview"
10078
  msgstr ""
10079
 
10080
+ #: wppa-settings-autosave.php:3355
10081
+ msgid "Superview box background."
10082
  msgstr ""
10083
 
10084
+ #: wppa-settings-autosave.php:3356
10085
+ msgid "Enter valid CSS colors for superview box backgrounds and borders."
10086
  msgstr ""
10087
 
10088
+ #: wppa-settings-autosave.php:3368
10089
+ msgid "Search box background."
10090
  msgstr ""
10091
 
10092
+ #: wppa-settings-autosave.php:3369
10093
+ msgid "Enter valid CSS colors for search box backgrounds and borders."
10094
  msgstr ""
10095
 
10096
+ #: wppa-settings-autosave.php:3380
10097
+ msgid "BestOf"
10098
  msgstr ""
10099
 
10100
+ #: wppa-settings-autosave.php:3381
10101
+ msgid "BestOf box background."
 
10102
  msgstr ""
10103
 
10104
+ #: wppa-settings-autosave.php:3382
10105
+ msgid "Enter valid CSS colors for bestof box backgrounds and borders."
10106
  msgstr ""
10107
 
10108
+ #: wppa-settings-autosave.php:3393
10109
+ msgid "Calendar"
 
10110
  msgstr ""
10111
 
10112
+ #: wppa-settings-autosave.php:3394
10113
+ msgid "Calendar box background."
10114
  msgstr ""
10115
 
10116
+ #: wppa-settings-autosave.php:3395
10117
+ msgid "Enter valid CSS colors for calendar box backgrounds and borders."
10118
  msgstr ""
10119
 
10120
+ #: wppa-settings-autosave.php:3406
10121
+ msgid "Stereo"
 
 
10122
  msgstr ""
10123
 
10124
+ #: wppa-settings-autosave.php:3407
10125
+ msgid "Stereo mode selection box background."
10126
  msgstr ""
10127
 
10128
+ #: wppa-settings-autosave.php:3408
10129
+ msgid ""
10130
+ "Enter valid CSS colors for stereo mode selection box backgrounds and borders."
10131
  msgstr ""
10132
 
10133
+ #: wppa-settings-autosave.php:3419
10134
+ msgid "Admins choice"
10135
  msgstr ""
10136
 
10137
+ #: wppa-settings-autosave.php:3420
10138
+ msgid "Admins choice box background."
10139
  msgstr ""
10140
 
10141
+ #: wppa-settings-autosave.php:3421
10142
+ msgid "Enter valid CSS colors for admins choice box backgrounds and borders."
10143
  msgstr ""
10144
 
10145
+ #: wppa-settings-autosave.php:3432
10146
+ msgid "Modal render box"
10147
  msgstr ""
10148
 
10149
+ #: wppa-settings-autosave.php:3433
10150
+ msgid "The background for the Ajax modal rendering box."
10151
  msgstr ""
10152
 
10153
+ #: wppa-settings-autosave.php:3434
10154
+ msgid "Recommended color: your theme background color."
10155
  msgstr ""
10156
 
10157
+ #: wppa-settings-autosave.php:3466
10158
+ msgid "Table IV:"
10159
  msgstr ""
10160
 
10161
+ #: wppa-settings-autosave.php:3466
10162
+ msgid "Behaviour:"
10163
  msgstr ""
10164
 
10165
+ #: wppa-settings-autosave.php:3467
10166
+ msgid "This table describes the dynamic behaviour of certain wppa+ elements."
10167
  msgstr ""
10168
 
10169
+ #: wppa-settings-autosave.php:3485
10170
+ msgid "System related settings"
10171
  msgstr ""
10172
 
10173
+ #: wppa-settings-autosave.php:3487
10174
+ msgid "Use Ajax"
10175
  msgstr ""
10176
 
10177
+ #: wppa-settings-autosave.php:3488
10178
+ msgid "Use Ajax as much as is possible and implemented."
10179
  msgstr ""
10180
 
10181
+ #: wppa-settings-autosave.php:3489
10182
  msgid ""
10183
+ "If this box is ticked, page content updates from within wppa+ displays will "
10184
+ "be Ajax based as much as possible."
10185
  msgstr ""
10186
 
10187
+ #: wppa-settings-autosave.php:3497
10188
+ msgid "Ajax NON Admin"
10189
  msgstr ""
10190
 
10191
+ #: wppa-settings-autosave.php:3498
10192
+ msgid "Frontend ajax use no admin files."
10193
  msgstr ""
10194
 
10195
+ #: wppa-settings-autosave.php:3499
10196
+ msgid "If you want to password protect wp-admin, check this box."
 
 
10197
  msgstr ""
10198
 
10199
+ #: wppa-settings-autosave.php:3500
10200
+ msgid ""
10201
+ "In rare cases changing page content does not work when this box is checked. "
10202
+ "Verify the functionality!"
10203
  msgstr ""
10204
 
10205
+ #: wppa-settings-autosave.php:3507
10206
+ msgid "Modal boxes"
10207
  msgstr ""
10208
 
10209
+ #: wppa-settings-autosave.php:3508
10210
+ msgid "Place Ajax rendered content in modal boxes"
10211
  msgstr ""
10212
 
10213
+ #: wppa-settings-autosave.php:3516
10214
+ msgid "Photo names in urls"
10215
  msgstr ""
10216
 
10217
+ #: wppa-settings-autosave.php:3517
10218
+ msgid "Display photo names in urls."
10219
  msgstr ""
10220
 
10221
+ #: wppa-settings-autosave.php:3518
10222
+ msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
10223
  msgstr ""
10224
 
10225
+ #: wppa-settings-autosave.php:3519
10226
+ msgid ""
10227
+ "It is your responsability to avoid duplicate names of photos in the same "
10228
+ "album."
10229
  msgstr ""
10230
 
10231
+ #: wppa-settings-autosave.php:3526
10232
+ msgid "Album names in urls"
10233
  msgstr ""
10234
 
10235
+ #: wppa-settings-autosave.php:3527
10236
+ msgid "Display album names in urls."
10237
  msgstr ""
10238
 
10239
+ #: wppa-settings-autosave.php:3528
10240
+ msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
 
 
10241
  msgstr ""
10242
 
10243
+ #: wppa-settings-autosave.php:3529
10244
  msgid ""
10245
+ "It is your responsability to avoid duplicate names of albums in the system."
 
10246
  msgstr ""
10247
 
10248
+ #: wppa-settings-autosave.php:3536
10249
+ msgid "Use short query args"
10250
  msgstr ""
10251
 
10252
+ #: wppa-settings-autosave.php:3537
10253
+ msgid "Use &album=... &photo=..."
10254
  msgstr ""
10255
 
10256
+ #: wppa-settings-autosave.php:3538
10257
+ msgid ""
10258
+ "Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
10259
+ "album=... &wppa-photo=..."
10260
  msgstr ""
10261
 
10262
+ #: wppa-settings-autosave.php:3539
10263
+ msgid ""
10264
+ "Use this setting only when there are no conflicts with other plugins that "
10265
+ "may interprete arguments like &album= etc."
10266
  msgstr ""
10267
 
10268
+ #: wppa-settings-autosave.php:3546
10269
+ msgid "Enable pretty links"
10270
  msgstr ""
10271
 
10272
+ #: wppa-settings-autosave.php:3547
10273
+ msgid "Enable the generation and understanding of pretty links."
 
10274
  msgstr ""
10275
 
10276
+ #: wppa-settings-autosave.php:3548
10277
+ msgid ""
10278
+ "If checked, links to social media and the qr code will have \"/token1/token2/"
10279
+ "\" etc in stead of \"&arg1=..&arg2=..\" etc."
10280
  msgstr ""
10281
 
10282
+ #: wppa-settings-autosave.php:3549
10283
+ msgid ""
10284
+ "These types of links will be interpreted and cause a redirection on entering."
10285
  msgstr ""
10286
 
10287
+ #: wppa-settings-autosave.php:3550
10288
+ msgid ""
10289
+ "It is recommended to check this box. It shortens links dramatically and "
10290
+ "simplifies qr codes."
10291
  msgstr ""
10292
 
10293
+ #: wppa-settings-autosave.php:3551
10294
+ msgid ""
10295
+ "However, you may encounter conflicts with themes and/or other plugins, so "
10296
+ "test it troughly!"
10297
  msgstr ""
10298
 
10299
+ #: wppa-settings-autosave.php:3552
10300
+ msgid ""
10301
+ "Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
10302
  msgstr ""
10303
 
10304
+ #: wppa-settings-autosave.php:3559
10305
+ msgid "Enable encrypted links"
10306
  msgstr ""
10307
 
10308
+ #: wppa-settings-autosave.php:3560
10309
+ msgid "Encrypt album and photo ids in links."
10310
  msgstr ""
10311
 
10312
+ #: wppa-settings-autosave.php:3563
10313
+ msgid "The page will be reloaded."
10314
  msgstr ""
10315
 
10316
+ #: wppa-settings-autosave.php:3569
10317
+ msgid "Refuse unencrypted"
10318
  msgstr ""
10319
 
10320
+ #: wppa-settings-autosave.php:3570
10321
+ msgid "When encrypted is enabled, refuse unencrypted urls."
10322
  msgstr ""
10323
 
10324
+ #: wppa-settings-autosave.php:3578
10325
+ msgid "Update addressline"
10326
  msgstr ""
10327
 
10328
+ #: wppa-settings-autosave.php:3579
10329
+ msgid "Update the addressline after an ajax action or next slide."
10330
  msgstr ""
10331
 
10332
+ #: wppa-settings-autosave.php:3580
10333
  msgid ""
10334
+ "If checked, refreshing the page will show the current content and the "
10335
+ "browsers back and forth arrows will browse the history on the page."
 
 
 
 
10336
  msgstr ""
10337
 
10338
+ #: wppa-settings-autosave.php:3581
10339
+ msgid ""
10340
+ "If unchecked, refreshing the page will re-display the content of the "
10341
+ "original page."
10342
  msgstr ""
10343
 
10344
+ #: wppa-settings-autosave.php:3582
10345
+ msgid ""
10346
+ "This will only work on browsers that support history.pushState() and "
10347
+ "therefor NOT in IE"
10348
  msgstr ""
10349
 
10350
+ #: wppa-settings-autosave.php:3583
10351
+ msgid "Switching this off will affect the browsers behaviour."
10352
  msgstr ""
10353
 
10354
+ #: wppa-settings-autosave.php:3590
10355
+ msgid "Render shortcode always"
10356
  msgstr ""
10357
 
10358
+ #: wppa-settings-autosave.php:3591
10359
+ msgid "This will skip the check on proper initialisation."
 
 
10360
  msgstr ""
10361
 
10362
+ #: wppa-settings-autosave.php:3592
10363
  msgid ""
10364
+ "This setting is required for certain themes like Gantry to prevent the "
10365
+ "display of wppa placeholders like [WPPA+ Photo display]."
10366
  msgstr ""
10367
 
10368
+ #: wppa-settings-autosave.php:3599
10369
+ msgid "Track viewcounts"
 
 
10370
  msgstr ""
10371
 
10372
+ #: wppa-settings-autosave.php:3600
10373
+ msgid "Register number of views of albums and photos."
10374
  msgstr ""
10375
 
10376
+ #: wppa-settings-autosave.php:3608
10377
+ msgid "Auto page"
10378
  msgstr ""
10379
 
10380
+ #: wppa-settings-autosave.php:3609
10381
+ msgid "Create a wp page for every fullsize image."
10382
  msgstr ""
10383
 
10384
+ #: wppa-settings-autosave.php:3613
10385
+ msgid "Please reload this page after changing!"
10386
  msgstr ""
10387
 
10388
+ #: wppa-settings-autosave.php:3619
10389
+ msgid "Auto page display"
10390
  msgstr ""
10391
 
10392
+ #: wppa-settings-autosave.php:3620
10393
+ msgid "The type of display on the autopage pages."
10394
  msgstr ""
10395
 
10396
+ #: wppa-settings-autosave.php:3623
10397
+ msgid "Single photo"
 
 
10398
  msgstr ""
10399
 
10400
+ #: wppa-settings-autosave.php:3623
10401
+ msgid "Media type photo"
10402
  msgstr ""
10403
 
10404
+ #: wppa-settings-autosave.php:3623
10405
+ msgid "In the style of a slideshow"
10406
  msgstr ""
10407
 
10408
+ #: wppa-settings-autosave.php:3630
10409
+ msgid "Auto page links"
10410
  msgstr ""
10411
 
10412
+ #: wppa-settings-autosave.php:3631
10413
+ msgid "The location for the pagelinks."
 
 
10414
  msgstr ""
10415
 
10416
+ #: wppa-settings-autosave.php:3634
10417
+ msgid "At top and bottom"
10418
  msgstr ""
10419
 
10420
+ #: wppa-settings-autosave.php:3641
10421
+ msgid "Defer javascript"
10422
  msgstr ""
10423
 
10424
+ #: wppa-settings-autosave.php:3642
10425
+ msgid "Put javascript near the end of the page."
10426
  msgstr ""
10427
 
10428
+ #: wppa-settings-autosave.php:3643
10429
  msgid ""
10430
+ "If checkd: May fix layout problems and broken slideshows. May speed up or "
10431
+ "slow down page appearing."
 
10432
  msgstr ""
10433
 
10434
+ #: wppa-settings-autosave.php:3650
10435
+ msgid "Inline styles"
10436
  msgstr ""
10437
 
10438
+ #: wppa-settings-autosave.php:3651
10439
+ msgid "Set style specifications inline."
10440
  msgstr ""
10441
 
10442
+ #: wppa-settings-autosave.php:3652
10443
+ msgid "If checked: May fix layout problems, but slows down page appearing."
 
 
 
 
10444
  msgstr ""
10445
 
10446
+ #: wppa-settings-autosave.php:3659
10447
+ msgid "Custom style"
10448
  msgstr ""
10449
 
10450
+ #: wppa-settings-autosave.php:3660
10451
+ msgid "Enter custom style specs here."
10452
  msgstr ""
10453
 
10454
+ #: wppa-settings-autosave.php:3668
10455
+ msgid "Use customized style file"
 
 
10456
  msgstr ""
10457
 
10458
+ #: wppa-settings-autosave.php:3669 wppa-settings-autosave.php:3678
10459
+ msgid "This feature is highly discouraged."
10460
  msgstr ""
10461
 
10462
+ #: wppa-settings-autosave.php:3677
10463
+ msgid "Use customized theme file"
10464
  msgstr ""
10465
 
10466
+ #: wppa-settings-autosave.php:3686
10467
+ msgid "Enable photo html access"
10468
  msgstr ""
10469
 
10470
+ #: wppa-settings-autosave.php:3687
10471
+ msgid ""
10472
+ "Creates .htaccess files in .../uploads/wppa/ and .../uploads/wppa/thumbs/"
10473
  msgstr ""
10474
 
10475
+ #: wppa-settings-autosave.php:3690
10476
+ msgid "create 'all access' .htaccess files"
10477
  msgstr ""
10478
 
10479
+ #: wppa-settings-autosave.php:3691
10480
+ msgid "remove .htaccess files"
10481
  msgstr ""
10482
 
10483
+ #: wppa-settings-autosave.php:3692
10484
+ msgid "create 'no hotlinking' .htaccess files"
10485
  msgstr ""
10486
 
10487
+ #: wppa-settings-autosave.php:3693
10488
+ msgid "do not change existing .htaccess file(s)"
10489
  msgstr ""
10490
 
10491
+ #: wppa-settings-autosave.php:3705
10492
+ msgid "Lazy or HTML comp"
10493
  msgstr ""
10494
 
10495
+ #: wppa-settings-autosave.php:3706
10496
+ msgid "Tick this box when you use lazy load or html compression."
10497
  msgstr ""
10498
 
10499
+ #: wppa-settings-autosave.php:3707
10500
  msgid ""
10501
+ "If the filmstrip images do not show up and you have a lazy load or html "
10502
+ "optimizing plugin active: Check this box"
10503
  msgstr ""
10504
 
10505
+ #: wppa-settings-autosave.php:3714
10506
+ msgid "Thumbs first"
10507
  msgstr ""
10508
 
10509
+ #: wppa-settings-autosave.php:3715
10510
+ msgid "When displaying album content: thumbnails before subalbums."
10511
  msgstr ""
10512
 
10513
+ #: wppa-settings-autosave.php:3723
10514
+ msgid "Login links"
10515
  msgstr ""
10516
 
10517
+ #: wppa-settings-autosave.php:3724
10518
+ msgid "You must login to... links to login page."
 
 
10519
  msgstr ""
10520
 
10521
+ #: wppa-settings-autosave.php:3732
10522
+ msgid "Enable Video"
10523
  msgstr ""
10524
 
10525
+ #: wppa-settings-autosave.php:3733
10526
+ msgid "Enables video support."
10527
  msgstr ""
10528
 
10529
+ #: wppa-settings-autosave.php:3742
10530
+ msgid "Enable Audio"
10531
  msgstr ""
10532
 
10533
+ #: wppa-settings-autosave.php:3743
10534
+ msgid "Enables audio support."
 
 
10535
  msgstr ""
10536
 
10537
+ #: wppa-settings-autosave.php:3751
10538
+ msgid "Enable 3D Stereo"
 
 
10539
  msgstr ""
10540
 
10541
+ #: wppa-settings-autosave.php:3752
10542
+ msgid "Enables 3D stereo photo support."
10543
  msgstr ""
10544
 
10545
+ #: wppa-settings-autosave.php:3760
10546
+ msgid "Relative urls"
 
10547
  msgstr ""
10548
 
10549
+ #: wppa-settings-autosave.php:3761
10550
+ msgid "Use relative urls only."
 
10551
  msgstr ""
10552
 
10553
+ #: wppa-settings-autosave.php:3769
10554
+ msgid "Capitalize tags and cats"
10555
  msgstr ""
10556
 
10557
+ #: wppa-settings-autosave.php:3770
10558
+ msgid "Format tags and cats to start with one capital character"
10559
  msgstr ""
10560
 
10561
+ #: wppa-settings-autosave.php:3778
10562
+ msgid "Enable Admins Choice"
10563
  msgstr ""
10564
 
10565
+ #: wppa-settings-autosave.php:3779
10566
+ msgid "Enable the creation of zipfiles with selected photos."
10567
+ msgstr ""
10568
+
10569
+ #: wppa-settings-autosave.php:3780
10570
+ msgid "Activate the Admins Choice widget to make the zipfiles downloadable."
10571
+ msgstr ""
10572
+
10573
+ #: wppa-settings-autosave.php:3787
10574
+ msgid "Make owner like photoname"
10575
  msgstr ""
10576
 
10577
+ #: wppa-settings-autosave.php:3788
10578
+ msgid "Change the owner to the user who's display name equals photoname."
10579
  msgstr ""
10580
 
10581
+ #: wppa-settings-autosave.php:3796
10582
+ msgid "JS and CSS when needed"
10583
  msgstr ""
10584
 
10585
+ #: wppa-settings-autosave.php:3797
10586
+ msgid "Loads .js and .css files only when they are used on the page."
10587
  msgstr ""
10588
 
10589
+ #: wppa-settings-autosave.php:3798
10590
+ msgid ""
10591
+ "This is a self learning system. The first time a page is loaded that "
10592
+ "requires wppa .css or .js files, the page will reload."
10593
  msgstr ""
10594
 
10595
+ #: wppa-settings-autosave.php:3806
10596
+ msgid "Slideshow related settings"
10597
  msgstr ""
10598
 
10599
+ #: wppa-settings-autosave.php:3808
10600
+ msgid "V align"
10601
  msgstr ""
10602
 
10603
+ #: wppa-settings-autosave.php:3809
10604
+ msgid "Vertical alignment of slideshow images."
10605
  msgstr ""
10606
 
10607
+ #: wppa-settings-autosave.php:3810
10608
+ msgid "Specify the vertical alignment of slideshow images."
10609
  msgstr ""
10610
 
10611
+ #: wppa-settings-autosave.php:3811
10612
+ msgid ""
10613
+ "If you select --- none ---, the photos will not be centered horizontally "
10614
+ "either."
10615
  msgstr ""
10616
 
10617
+ #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:4078
10618
+ #: wppa-slideshow-widget.php:214
10619
+ msgid "top"
 
10620
  msgstr ""
10621
 
10622
+ #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:4078
10623
+ #: wppa-slideshow-widget.php:216
10624
+ msgid "bottom"
10625
  msgstr ""
10626
 
10627
+ #: wppa-settings-autosave.php:3813 wppa-slideshow-widget.php:217
10628
+ msgid "fit"
 
 
10629
  msgstr ""
10630
 
10631
+ #: wppa-settings-autosave.php:3821
10632
+ msgid "H align"
10633
  msgstr ""
10634
 
10635
+ #: wppa-settings-autosave.php:3822
10636
+ msgid "Horizontal alignment of slideshow images."
10637
  msgstr ""
10638
 
10639
+ #: wppa-settings-autosave.php:3823
10640
+ msgid ""
10641
+ "Specify the horizontal alignment of slideshow images. If you specify --- "
10642
+ "none --- , no horizontal alignment will take place."
10643
  msgstr ""
10644
 
10645
+ #: wppa-settings-autosave.php:3824
10646
+ msgid ""
10647
+ "This setting is only usefull when the Column Width differs from the Maximum "
10648
+ "Width."
10649
  msgstr ""
10650
 
10651
+ #: wppa-settings-autosave.php:3825
10652
+ msgid "(Settings I-A1 and I-B1)"
10653
  msgstr ""
10654
 
10655
+ #: wppa-settings-autosave.php:3835
10656
+ msgid "Start slideshow running."
10657
  msgstr ""
10658
 
10659
+ #: wppa-settings-autosave.php:3836
10660
+ msgid ""
10661
+ "If you select \"running\", the slideshow will start running immediately, if "
10662
+ "you select \"still at first photo\", the first photo will be displayed in "
10663
+ "browse mode."
10664
  msgstr ""
10665
 
10666
+ #: wppa-settings-autosave.php:3837
10667
  msgid ""
10668
+ "If you select \"still at first norated\", the first photo that the visitor "
10669
+ "did not gave a rating will be displayed in browse mode."
10670
  msgstr ""
10671
 
10672
+ #: wppa-settings-autosave.php:3839
10673
+ msgid "running"
10674
  msgstr ""
10675
 
10676
+ #: wppa-settings-autosave.php:3840
10677
+ msgid "still at first photo"
10678
  msgstr ""
10679
 
10680
+ #: wppa-settings-autosave.php:3841
10681
+ msgid "still at first norated"
 
 
10682
  msgstr ""
10683
 
10684
+ #: wppa-settings-autosave.php:3852
10685
+ msgid "Start slideonly"
 
10686
  msgstr ""
10687
 
10688
+ #: wppa-settings-autosave.php:3853
10689
+ msgid "Start slideonly slideshow running."
10690
  msgstr ""
10691
 
10692
+ #: wppa-settings-autosave.php:3861 wppa-settings-autosave.php:4735
10693
+ msgid "Video autostart"
10694
  msgstr ""
10695
 
10696
+ #: wppa-settings-autosave.php:3862
10697
+ msgid "Autoplay videos in slideshows."
 
 
10698
  msgstr ""
10699
 
10700
+ #: wppa-settings-autosave.php:3871 wppa-settings-autosave.php:4744
10701
+ msgid "Audio autostart"
10702
  msgstr ""
10703
 
10704
+ #: wppa-settings-autosave.php:3872
10705
+ msgid "Autoplay audios in slideshows."
10706
  msgstr ""
10707
 
10708
+ #: wppa-settings-autosave.php:3880
10709
+ msgid "Animation type"
10710
  msgstr ""
10711
 
10712
+ #: wppa-settings-autosave.php:3881
10713
+ msgid "The way successive slides appear."
10714
  msgstr ""
10715
 
10716
+ #: wppa-settings-autosave.php:3882
10717
+ msgid ""
10718
+ "Select the way the old slide is to be replaced by the new one in the "
10719
+ "slideshow/browse fullsize display."
10720
  msgstr ""
10721
 
10722
+ #: wppa-settings-autosave.php:3884
10723
+ msgid "Fade out and in simultaneous"
10724
  msgstr ""
10725
 
10726
+ #: wppa-settings-autosave.php:3885
10727
+ msgid "Fade in after fade out"
10728
  msgstr ""
10729
 
10730
+ #: wppa-settings-autosave.php:3886
10731
+ msgid "Shift adjacent"
10732
  msgstr ""
10733
 
10734
+ #: wppa-settings-autosave.php:3887
10735
+ msgid "Stack on"
10736
  msgstr ""
10737
 
10738
+ #: wppa-settings-autosave.php:3888
10739
+ msgid "Stack off"
10740
  msgstr ""
10741
 
10742
+ #: wppa-settings-autosave.php:3889
10743
+ msgid "Turn over"
10744
  msgstr ""
10745
 
10746
+ #: wppa-settings-autosave.php:3903
10747
+ msgid "Timeout"
10748
  msgstr ""
10749
 
10750
+ #: wppa-settings-autosave.php:3904
10751
+ msgid "Slideshow timeout."
10752
  msgstr ""
10753
 
10754
+ #: wppa-settings-autosave.php:3905
10755
+ msgid ""
10756
+ "Select the time a single slide will be visible when the slideshow is started."
10757
  msgstr ""
10758
 
10759
+ #: wppa-settings-autosave.php:3914
10760
+ msgid "Speed"
10761
  msgstr ""
10762
 
10763
+ #: wppa-settings-autosave.php:3915
10764
+ msgid "Slideshow animation speed."
10765
  msgstr ""
10766
 
10767
+ #: wppa-settings-autosave.php:3916
10768
+ msgid "Specify the animation speed to be used in slideshows."
10769
  msgstr ""
10770
 
10771
+ #: wppa-settings-autosave.php:3917
10772
+ msgid "This is the time it takes a photo to fade in or out."
10773
  msgstr ""
10774
 
10775
+ #: wppa-settings-autosave.php:3919 wppa-settings-autosave.php:4273
10776
+ #: wppa-settings-autosave.php:4681 wppa-settings-autosave.php:6521
10777
+ #: wppa-settings-autosave.php:7634 wppa-settings-autosave.php:7645
10778
+ #: wppa-settings-autosave.php:7807
10779
+ msgid "--- off ---"
10780
  msgstr ""
10781
 
10782
+ #: wppa-settings-autosave.php:3919
10783
+ msgid "very fast (200 ms.)"
10784
  msgstr ""
10785
 
10786
+ #: wppa-settings-autosave.php:3919
10787
+ msgid "fast (400 ms.)"
 
 
10788
  msgstr ""
10789
 
10790
+ #: wppa-settings-autosave.php:3919
10791
+ msgid "normal (800 ms.)"
10792
  msgstr ""
10793
 
10794
+ #: wppa-settings-autosave.php:3919
10795
+ msgid "slow (1.2 s.)"
10796
  msgstr ""
10797
 
10798
+ #: wppa-settings-autosave.php:3919
10799
+ msgid "very slow (2 s.)"
 
 
10800
  msgstr ""
10801
 
10802
+ #: wppa-settings-autosave.php:3919
10803
+ msgid "extremely slow (4 s.)"
10804
  msgstr ""
10805
 
10806
+ #: wppa-settings-autosave.php:3926
10807
+ msgid "Slide hover pause"
10808
  msgstr ""
10809
 
10810
+ #: wppa-settings-autosave.php:3927
10811
+ msgid "Running Slideshow suspends during mouse hover."
10812
  msgstr ""
10813
 
10814
+ #: wppa-settings-autosave.php:3935
10815
+ msgid "Slideshow wrap around"
10816
  msgstr ""
10817
 
10818
+ #: wppa-settings-autosave.php:3936
10819
+ msgid "The slideshow wraps around the start and end"
10820
  msgstr ""
10821
 
10822
+ #: wppa-settings-autosave.php:3944
10823
+ msgid "Full desc align"
10824
  msgstr ""
10825
 
10826
+ #: wppa-settings-autosave.php:3945
10827
+ msgid "The alignment of the descriptions under fullsize images and slideshows."
10828
  msgstr ""
10829
 
10830
+ #: wppa-settings-autosave.php:3948 wppa-settings-autosave.php:4066
10831
+ #: wppa-settings-autosave.php:4169
10832
+ msgid "Left"
10833
  msgstr ""
10834
 
10835
+ #: wppa-settings-autosave.php:3948
10836
+ msgid "Center"
10837
  msgstr ""
10838
 
10839
+ #: wppa-settings-autosave.php:3948 wppa-settings-autosave.php:4066
10840
+ #: wppa-settings-autosave.php:4169
10841
+ msgid "Right"
10842
  msgstr ""
10843
 
10844
+ #: wppa-settings-autosave.php:3955
10845
+ msgid "Remove redundant space"
10846
  msgstr ""
10847
 
10848
+ #: wppa-settings-autosave.php:3956
10849
+ msgid "Removes unwanted &lt;p> and &lt;br> tags in fullsize descriptions."
10850
  msgstr ""
10851
 
10852
+ #: wppa-settings-autosave.php:3957
10853
+ msgid ""
10854
+ "This setting has only effect when Table IX-A7 (foreign shortcodes) is "
10855
+ "checked."
10856
  msgstr ""
10857
 
10858
+ #: wppa-settings-autosave.php:3964
10859
+ msgid "Run wpautop on description"
10860
  msgstr ""
10861
 
10862
+ #: wppa-settings-autosave.php:3965
10863
+ msgid "Adds &lt;p> and &lt;br> tags in fullsize descriptions."
10864
  msgstr ""
10865
 
10866
+ #: wppa-settings-autosave.php:3973
10867
+ msgid "Auto open comments"
10868
  msgstr ""
10869
 
10870
+ #: wppa-settings-autosave.php:3974
10871
+ msgid "Automatic opens comments box when slideshow does not run."
10872
  msgstr ""
10873
 
10874
+ #: wppa-settings-autosave.php:3982
10875
+ msgid "Film hover goto"
10876
  msgstr ""
10877
 
10878
+ #: wppa-settings-autosave.php:3983
10879
+ msgid "Go to slide when hovering filmstrip thumbnail."
10880
  msgstr ""
10881
 
10882
+ #: wppa-settings-autosave.php:3984
10883
+ msgid "Do not use this setting when slides have different aspect ratios!"
10884
  msgstr ""
10885
 
10886
+ #: wppa-settings-autosave.php:3991
10887
+ msgid "Slide swipe"
10888
  msgstr ""
10889
 
10890
+ #: wppa-settings-autosave.php:3992
10891
+ msgid "Enable touch events swipe left-right on slides on touch screens."
10892
  msgstr ""
10893
 
10894
+ #: wppa-settings-autosave.php:4000
10895
+ msgid "Slide page Ajax"
10896
  msgstr ""
10897
 
10898
+ #: wppa-settings-autosave.php:4001
10899
+ msgid "Pagelinks slideshow use Ajax"
10900
  msgstr ""
10901
 
10902
+ #: wppa-settings-autosave.php:4002
10903
+ msgid "On some systems you need to disable ajax here."
10904
  msgstr ""
10905
 
10906
+ #: wppa-settings-autosave.php:4009
10907
+ msgid "Thumbnail related settings"
10908
  msgstr ""
10909
 
10910
+ #: wppa-settings-autosave.php:4012
10911
+ msgid "Photo ordering sequence method."
10912
  msgstr ""
10913
 
10914
+ #: wppa-settings-autosave.php:4013
10915
+ msgid ""
10916
+ "Specify the way the photos should be ordered. This is the default setting. "
10917
+ "You can overrule the default sorting order on a per album basis."
10918
  msgstr ""
10919
 
10920
+ #: wppa-settings-autosave.php:4050
10921
+ msgid "Thumbnail type"
10922
  msgstr ""
10923
 
10924
+ #: wppa-settings-autosave.php:4051
10925
+ msgid "The way the thumbnail images are displayed."
10926
  msgstr ""
10927
 
10928
+ #: wppa-settings-autosave.php:4052
10929
  msgid ""
10930
+ "You may select an altenative display method for thumbnails. Note that some "
10931
+ "of the thumbnail settings do not apply to all available display methods."
 
 
10932
  msgstr ""
10933
 
10934
+ #: wppa-settings-autosave.php:4054
10935
+ msgid "like album covers"
10936
  msgstr ""
10937
 
10938
+ #: wppa-settings-autosave.php:4054
10939
+ msgid "like album covers mcr"
10940
  msgstr ""
10941
 
10942
+ #: wppa-settings-autosave.php:4054
10943
+ msgid "masonry style columns"
10944
  msgstr ""
10945
 
10946
+ #: wppa-settings-autosave.php:4054
10947
+ msgid "masonry style rows"
10948
  msgstr ""
10949
 
10950
+ #: wppa-settings-autosave.php:4062 wppa-settings-autosave.php:4163
10951
+ msgid "Placement"
10952
  msgstr ""
10953
 
10954
+ #: wppa-settings-autosave.php:4063
10955
+ msgid "Thumbnail image left or right."
10956
  msgstr ""
10957
 
10958
+ #: wppa-settings-autosave.php:4064
10959
+ msgid "Indicate the placement position of the thumbnailphoto you wish."
10960
  msgstr ""
10961
 
10962
+ #: wppa-settings-autosave.php:4073
10963
+ msgid "Vertical alignment"
10964
  msgstr ""
10965
 
10966
+ #: wppa-settings-autosave.php:4074
10967
+ msgid "Vertical alignment of thumbnails."
10968
  msgstr ""
10969
 
10970
+ #: wppa-settings-autosave.php:4075
10971
+ msgid ""
10972
+ "Specify the vertical alignment of thumbnail images. Use this setting when "
10973
+ "albums contain both portrait and landscape photos."
10974
  msgstr ""
10975
 
10976
+ #: wppa-settings-autosave.php:4076
10977
+ msgid ""
10978
+ "It is NOT recommended to use the value --- default ---; it will affect the "
10979
+ "horizontal alignment also and is meant to be used with custom css."
10980
  msgstr ""
10981
 
10982
+ #: wppa-settings-autosave.php:4085
10983
+ msgid "Thumb mouseover"
10984
  msgstr ""
10985
 
10986
+ #: wppa-settings-autosave.php:4086
10987
+ msgid "Apply thumbnail mouseover effect."
10988
  msgstr ""
10989
 
10990
+ #: wppa-settings-autosave.php:4087
10991
+ msgid "Check this box to use mouseover effect on thumbnail images."
10992
  msgstr ""
10993
 
10994
+ #: wppa-settings-autosave.php:4095
10995
+ msgid "Thumb opacity"
 
 
10996
  msgstr ""
10997
 
10998
+ #: wppa-settings-autosave.php:4096 wppa-settings-autosave.php:4188
10999
+ msgid "Initial opacity value."
11000
  msgstr ""
11001
 
11002
+ #: wppa-settings-autosave.php:4097 wppa-settings-autosave.php:4189
11003
+ #: wppa-settings-autosave.php:4319
11004
+ msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
11005
  msgstr ""
11006
 
11007
+ #: wppa-settings-autosave.php:4099 wppa-settings-autosave.php:4191
11008
+ #: wppa-settings-autosave.php:4322 wppa-settings-autosave.php:4661
11009
+ msgid "%"
11010
  msgstr ""
11011
 
11012
+ #: wppa-settings-autosave.php:4104
11013
+ msgid "Thumb popup"
11014
  msgstr ""
11015
 
11016
+ #: wppa-settings-autosave.php:4105
11017
+ msgid "Use popup effect on thumbnail images."
11018
  msgstr ""
11019
 
11020
+ #: wppa-settings-autosave.php:4106
11021
+ msgid "Thumbnails pop-up to a larger image when hovered."
11022
  msgstr ""
11023
 
11024
+ #: wppa-settings-autosave.php:4114
11025
+ msgid "Align subtext"
11026
  msgstr ""
11027
 
11028
+ #: wppa-settings-autosave.php:4115
11029
+ msgid "Set thumbnail subtext on equal height."
11030
  msgstr ""
11031
 
11032
+ #: wppa-settings-autosave.php:4123
11033
+ msgid "Album and covers related settings"
11034
  msgstr ""
11035
 
11036
+ #: wppa-settings-autosave.php:4125
11037
+ msgid "Album order"
11038
  msgstr ""
11039
 
11040
+ #: wppa-settings-autosave.php:4126
11041
+ msgid "Album ordering sequence method."
11042
  msgstr ""
11043
 
11044
+ #: wppa-settings-autosave.php:4127
11045
+ msgid "Specify the way the albums should be ordered."
11046
  msgstr ""
11047
 
11048
+ #: wppa-settings-autosave.php:4152
11049
+ msgid "Default coverphoto selection"
11050
  msgstr ""
11051
 
11052
+ #: wppa-settings-autosave.php:4153
11053
+ msgid "Default select cover photo method."
11054
  msgstr ""
11055
 
11056
+ #: wppa-settings-autosave.php:4154
11057
+ msgid ""
11058
+ "This is the initial value on album creation only. It can be overruled on the "
11059
+ "edit album page."
11060
  msgstr ""
11061
 
11062
+ #: wppa-settings-autosave.php:4155
11063
+ msgid "Random from album"
11064
  msgstr ""
11065
 
11066
+ #: wppa-settings-autosave.php:4155
11067
+ msgid "Random featured from album"
11068
  msgstr ""
11069
 
11070
+ #: wppa-settings-autosave.php:4155
11071
+ msgid "Most recently added to album"
11072
  msgstr ""
11073
 
11074
+ #: wppa-settings-autosave.php:4155
11075
+ msgid "Random from album or any sub album"
11076
  msgstr ""
11077
 
11078
+ #: wppa-settings-autosave.php:4164
11079
+ msgid "Cover image position."
11080
  msgstr ""
11081
 
11082
+ #: wppa-settings-autosave.php:4165
11083
+ msgid ""
11084
+ "Enter the position that you want to be used for the default album cover "
11085
+ "selected in Table IV-D6."
11086
  msgstr ""
11087
 
11088
+ #: wppa-settings-autosave.php:4166
11089
+ msgid ""
11090
+ "For covertype Image Factory: left will be treated as top and right will be "
11091
+ "treted as bottom."
11092
  msgstr ""
11093
 
11094
+ #: wppa-settings-autosave.php:4167
11095
+ msgid ""
11096
+ "For covertype Long Descriptions: top will be treated as left and bottom will "
11097
+ "be treted as right."
11098
  msgstr ""
11099
 
11100
+ #: wppa-settings-autosave.php:4177
11101
+ msgid "Cover mouseover"
11102
  msgstr ""
11103
 
11104
+ #: wppa-settings-autosave.php:4178
11105
+ msgid "Apply coverphoto mouseover effect."
11106
  msgstr ""
11107
 
11108
+ #: wppa-settings-autosave.php:4179
11109
+ msgid "Check this box to use mouseover effect on cover images."
 
 
11110
  msgstr ""
11111
 
11112
+ #: wppa-settings-autosave.php:4187
11113
+ msgid "Cover opacity"
11114
  msgstr ""
11115
 
11116
+ #: wppa-settings-autosave.php:4196
11117
+ msgid "Cover type"
11118
  msgstr ""
11119
 
11120
+ #: wppa-settings-autosave.php:4197
11121
+ msgid "Select the default cover type."
11122
  msgstr ""
11123
 
11124
+ #: wppa-settings-autosave.php:4198
11125
+ msgid ""
11126
+ "Types with the addition mcr are suitable for Multi Column in a Responsive "
11127
+ "theme"
11128
  msgstr ""
11129
 
11130
+ #: wppa-settings-autosave.php:4221
11131
+ msgid "The umber of coverphotos. Must be > 1 and < 25."
11132
  msgstr ""
11133
 
11134
+ #: wppa-settings-autosave.php:4229
11135
+ msgid "Cats include subs"
11136
  msgstr ""
11137
 
11138
+ #: wppa-settings-autosave.php:4230
11139
+ msgid "Child albums are included in Category based shortcodes."
11140
  msgstr ""
11141
 
11142
+ #: wppa-settings-autosave.php:4231
11143
+ msgid ""
11144
+ "When you use album=\"#cat,...\", in a shortcode, the child albums will be "
11145
+ "included."
11146
  msgstr ""
11147
 
11148
+ #: wppa-settings-autosave.php:4239
11149
+ msgid "Rating related settings"
11150
  msgstr ""
11151
 
11152
+ #: wppa-settings-autosave.php:4241
11153
+ msgid "Rating login"
11154
  msgstr ""
11155
 
11156
+ #: wppa-settings-autosave.php:4242
11157
+ msgid "Users must login to rate photos."
11158
  msgstr ""
11159
 
11160
+ #: wppa-settings-autosave.php:4243
11161
+ msgid ""
11162
+ "If users want to vote for a photo (rating 1..5 stars) the must login first. "
11163
+ "The avarage rating will always be displayed as long as the rating system is "
11164
+ "enabled."
11165
  msgstr ""
11166
 
11167
+ #: wppa-settings-autosave.php:4250
11168
+ msgid "Rating change"
11169
  msgstr ""
11170
 
11171
+ #: wppa-settings-autosave.php:4251 wppa-settings-autosave.php:4252
11172
+ msgid "Users may change their ratings."
11173
  msgstr ""
11174
 
11175
+ #: wppa-settings-autosave.php:4253 wppa-settings-autosave.php:4301
11176
+ #: wppa-settings-autosave.php:4320 wppa-settings-autosave.php:4333
11177
+ #: wppa-settings-autosave.php:4343 wppa-settings-autosave.php:4353
11178
+ #: wppa-settings-autosave.php:4363 wppa-settings-autosave.php:4372
11179
+ msgid ""
11180
+ "If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
11181
  msgstr ""
11182
 
11183
+ #: wppa-settings-autosave.php:4260
11184
+ msgid "Rating multi"
11185
  msgstr ""
11186
 
11187
+ #: wppa-settings-autosave.php:4261
11188
+ msgid "Users may give multiple votes."
11189
  msgstr ""
11190
 
11191
+ #: wppa-settings-autosave.php:4262
11192
+ msgid ""
11193
+ "Users may give multiple votes. (This has no effect when users may change "
11194
+ "their votes.)"
11195
  msgstr ""
11196
 
11197
+ #: wppa-settings-autosave.php:4269
11198
+ msgid "Rating daily"
11199
  msgstr ""
11200
 
11201
+ #: wppa-settings-autosave.php:4270
11202
+ msgid "Users may rate only once per period"
11203
  msgstr ""
11204
 
11205
+ #: wppa-settings-autosave.php:4273
11206
+ msgid "Week"
11207
  msgstr ""
11208
 
11209
+ #: wppa-settings-autosave.php:4273
11210
+ msgid "Day"
11211
  msgstr ""
11212
 
11213
+ #: wppa-settings-autosave.php:4273
11214
+ msgid "Hour"
11215
  msgstr ""
11216
 
11217
+ #: wppa-settings-autosave.php:4280
11218
+ msgid "Rate own photos"
11219
  msgstr ""
11220
 
11221
+ #: wppa-settings-autosave.php:4281
11222
+ msgid "It is allowed to rate photos by the uploader himself."
11223
  msgstr ""
11224
 
11225
+ #: wppa-settings-autosave.php:4289
11226
+ msgid "Rating requires comment"
11227
  msgstr ""
11228
 
11229
+ #: wppa-settings-autosave.php:4290
11230
+ msgid "Users must clarify their vote in a comment."
11231
  msgstr ""
11232
 
11233
+ #: wppa-settings-autosave.php:4299
11234
+ msgid "This value counts dislike rating."
11235
  msgstr ""
11236
 
11237
+ #: wppa-settings-autosave.php:4300
11238
  msgid ""
11239
+ "This value will be used for a dislike rating on calculation of avarage "
11240
+ "ratings."
11241
  msgstr ""
11242
 
11243
+ #: wppa-settings-autosave.php:4303
11244
+ msgid "points"
11245
  msgstr ""
11246
 
11247
+ #: wppa-settings-autosave.php:4308
11248
+ msgid "Next after vote"
11249
  msgstr ""
11250
 
11251
+ #: wppa-settings-autosave.php:4309
11252
+ msgid "Goto next slide after voting"
11253
  msgstr ""
11254
 
11255
+ #: wppa-settings-autosave.php:4310
11256
+ msgid ""
11257
+ "If checked, the visitor goes straight to the slide following the slide he "
11258
+ "voted. This will speed up mass voting."
11259
  msgstr ""
11260
 
11261
+ #: wppa-settings-autosave.php:4317
11262
+ msgid "Star off opacity"
11263
  msgstr ""
11264
 
11265
+ #: wppa-settings-autosave.php:4318
11266
+ msgid "Rating star off state opacity value."
11267
  msgstr ""
11268
 
11269
+ #: wppa-settings-autosave.php:4328
11270
+ msgid "Notify admin every x times."
11271
  msgstr ""
11272
 
11273
+ #: wppa-settings-autosave.php:4329
11274
  msgid ""
11275
+ "If this number is positive, there will be a thumb down icon in the rating "
11276
+ "bar."
 
 
 
11277
  msgstr ""
11278
 
11279
+ #: wppa-settings-autosave.php:4330
11280
+ msgid ""
11281
+ "Cicking the icon indicates a user wants to report that an image is "
11282
+ "inappropiate."
11283
  msgstr ""
11284
 
11285
+ #: wppa-settings-autosave.php:4331
11286
+ msgid "Admin will be notified by email after every x reports."
11287
  msgstr ""
11288
 
11289
+ #: wppa-settings-autosave.php:4332 wppa-settings-autosave.php:4342
11290
+ #: wppa-settings-autosave.php:4352
11291
+ msgid "A value of 0 disables this feature."
11292
  msgstr ""
11293
 
11294
+ #: wppa-settings-autosave.php:4335 wppa-settings-autosave.php:4345
11295
+ #: wppa-settings-autosave.php:4355
11296
+ msgid "reports"
11297
  msgstr ""
11298
 
11299
+ #: wppa-settings-autosave.php:4340
11300
+ msgid "Pending after"
11301
  msgstr ""
11302
 
11303
+ #: wppa-settings-autosave.php:4341
11304
+ msgid "Set status to pending after xx dislike votes."
11305
  msgstr ""
11306
 
11307
+ #: wppa-settings-autosave.php:4350
11308
+ msgid "Delete after"
11309
  msgstr ""
11310
 
11311
+ #: wppa-settings-autosave.php:4351
11312
+ msgid "Deete photo after xx dislike votes."
11313
  msgstr ""
11314
 
11315
+ #: wppa-settings-autosave.php:4360
11316
+ msgid "Show dislike count"
11317
  msgstr ""
11318
 
11319
+ #: wppa-settings-autosave.php:4361
11320
+ msgid "Show the number of dislikes in the rating bar."
11321
  msgstr ""
11322
 
11323
+ #: wppa-settings-autosave.php:4362
11324
+ msgid "Displayes the total number of dislike votes for the current photo."
11325
  msgstr ""
11326
 
11327
+ #: wppa-settings-autosave.php:4370
11328
+ msgid "Rating display type"
11329
  msgstr ""
11330
 
11331
+ #: wppa-settings-autosave.php:4371
11332
+ msgid "Specify the type of the rating display."
11333
  msgstr ""
11334
 
11335
+ #: wppa-settings-autosave.php:4374
11336
+ msgid "Graphic"
11337
  msgstr ""
11338
 
11339
+ #: wppa-settings-autosave.php:4374
11340
+ msgid "Numeric"
11341
  msgstr ""
11342
 
11343
+ #: wppa-settings-autosave.php:4381
11344
+ msgid "Show average rating"
11345
  msgstr ""
11346
 
11347
+ #: wppa-settings-autosave.php:4382
11348
+ msgid "Display the avarage rating and/or vote count on the rating bar"
11349
  msgstr ""
11350
 
11351
+ #: wppa-settings-autosave.php:4383
11352
  msgid ""
11353
+ "If checked, the average rating as well as the current users rating is "
11354
+ "displayed in max 5 or 10 stars."
 
 
 
 
 
 
 
 
 
 
11355
  msgstr ""
11356
 
11357
+ #: wppa-settings-autosave.php:4384
11358
+ msgid "If unchecked, only the current users rating is displayed (if any)."
 
 
 
 
 
 
11359
  msgstr ""
11360
 
11361
+ #: wppa-settings-autosave.php:4385
11362
+ msgid ""
11363
+ "If \"One button vote\" is selected in Table I-E1, this box checked will "
11364
+ "display the vote count."
11365
  msgstr ""
11366
 
11367
+ #: wppa-settings-autosave.php:4392
11368
+ msgid "Single vote button text"
 
 
11369
  msgstr ""
11370
 
11371
+ #: wppa-settings-autosave.php:4393
11372
+ msgid "The text on the voting button."
 
 
 
 
 
11373
  msgstr ""
11374
 
11375
+ #: wppa-settings-autosave.php:4394 wppa-settings-autosave.php:4403
11376
+ msgid "This text may contain qTranslate compatible language tags."
 
 
 
 
 
11377
  msgstr ""
11378
 
11379
+ #: wppa-settings-autosave.php:4401
11380
+ msgid "Single vote button text voted"
 
 
 
 
11381
  msgstr ""
11382
 
11383
+ #: wppa-settings-autosave.php:4402
11384
+ msgid "The text on the voting button when voted."
 
 
 
 
 
 
11385
  msgstr ""
11386
 
11387
+ #: wppa-settings-autosave.php:4410
11388
+ msgid "Single vote button thumbnail"
11389
  msgstr ""
11390
 
11391
+ #: wppa-settings-autosave.php:4411
11392
+ msgid "Display single vote button below thumbnails."
11393
  msgstr ""
11394
 
11395
+ #: wppa-settings-autosave.php:4412
11396
+ msgid ""
11397
+ "This works only in single vote mode: Table I-E1 set to \"one button vote\""
11398
  msgstr ""
11399
 
11400
+ #: wppa-settings-autosave.php:4419
11401
+ msgid "Medal bronze when"
11402
  msgstr ""
11403
 
11404
+ #: wppa-settings-autosave.php:4420 wppa-settings-autosave.php:4438
11405
+ msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
11406
  msgstr ""
11407
 
11408
+ #: wppa-settings-autosave.php:4421 wppa-settings-autosave.php:4439
11409
+ msgid ""
11410
+ "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
11411
+ "bronze medal. A value of 0 indicates that you do not want this feature."
11412
  msgstr ""
11413
 
11414
+ #: wppa-settings-autosave.php:4423 wppa-settings-autosave.php:4432
11415
+ #: wppa-settings-autosave.php:4441
11416
+ msgid "Topscores"
11417
  msgstr ""
11418
 
11419
+ #: wppa-settings-autosave.php:4428
11420
+ msgid "Medal silver when"
11421
  msgstr ""
11422
 
11423
+ #: wppa-settings-autosave.php:4429
11424
+ msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
11425
  msgstr ""
11426
 
11427
+ #: wppa-settings-autosave.php:4430
11428
+ msgid ""
11429
+ "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
11430
+ "silver medal. A value of 0 indicates that you do not want this feature."
11431
  msgstr ""
11432
 
11433
+ #: wppa-settings-autosave.php:4437
11434
+ msgid "Medal gold when"
11435
  msgstr ""
11436
 
11437
+ #: wppa-settings-autosave.php:4446
11438
+ msgid "Medal tag color"
11439
  msgstr ""
11440
 
11441
+ #: wppa-settings-autosave.php:4447
11442
+ msgid "The color of the tag on the medal."
 
 
11443
  msgstr ""
11444
 
11445
+ #: wppa-settings-autosave.php:4450 wppa-settings-autosave.php:7890
11446
+ msgid "Red"
 
 
 
11447
  msgstr ""
11448
 
11449
+ #: wppa-settings-autosave.php:4450 wppa-settings-autosave.php:7893
11450
+ msgid "Green"
11451
  msgstr ""
11452
 
11453
+ #: wppa-settings-autosave.php:4450 wppa-settings-autosave.php:7894
11454
+ msgid "Blue"
11455
  msgstr ""
11456
 
11457
+ #: wppa-settings-autosave.php:4457
11458
+ msgid "Medal position"
11459
  msgstr ""
11460
 
11461
+ #: wppa-settings-autosave.php:4458
11462
+ msgid "The position of the medal on the image."
11463
  msgstr ""
11464
 
11465
+ #: wppa-settings-autosave.php:4461
11466
+ msgid "Top left"
 
11467
  msgstr ""
11468
 
11469
+ #: wppa-settings-autosave.php:4461
11470
+ msgid "Top right"
11471
  msgstr ""
11472
 
11473
+ #: wppa-settings-autosave.php:4461
11474
+ msgid "Bottom left"
11475
  msgstr ""
11476
 
11477
+ #: wppa-settings-autosave.php:4461
11478
+ msgid "Bottom right"
11479
  msgstr ""
11480
 
11481
+ #: wppa-settings-autosave.php:4468
11482
+ msgid "Top criterium"
11483
  msgstr ""
11484
 
11485
+ #: wppa-settings-autosave.php:4469
11486
+ msgid "The top sort item used for topten results from shortcodes."
11487
  msgstr ""
11488
 
11489
+ #: wppa-settings-autosave.php:4472
11490
+ msgid "Mean raiting"
11491
  msgstr ""
11492
 
11493
+ #: wppa-settings-autosave.php:4472
11494
+ msgid "Rating count"
11495
  msgstr ""
11496
 
11497
+ #: wppa-settings-autosave.php:4472
11498
+ msgid "Viewcount"
11499
  msgstr ""
11500
 
11501
+ #: wppa-settings-autosave.php:4479
11502
+ msgid "Comments related settings"
11503
  msgstr ""
11504
 
11505
+ #: wppa-settings-autosave.php:4481
11506
+ msgid "Commenting login"
11507
  msgstr ""
11508
 
11509
+ #: wppa-settings-autosave.php:4482
11510
+ msgid "Users must be logged in to comment on photos."
11511
  msgstr ""
11512
 
11513
+ #: wppa-settings-autosave.php:4483
11514
+ msgid ""
11515
+ "Check this box if you want users to be logged in to be able to enter "
11516
+ "comments on individual photos."
11517
  msgstr ""
11518
 
11519
+ #: wppa-settings-autosave.php:4490
11520
+ msgid "Comments view login"
11521
  msgstr ""
11522
 
11523
+ #: wppa-settings-autosave.php:4491
11524
+ msgid "Users must be logged in to see comments on photos."
11525
  msgstr ""
11526
 
11527
+ #: wppa-settings-autosave.php:4492
11528
+ msgid ""
11529
+ "Check this box if you want users to be logged in to be able to see existing "
11530
+ "comments on individual photos."
11531
  msgstr ""
11532
 
11533
+ #: wppa-settings-autosave.php:4499
11534
+ msgid "Last comment first"
11535
  msgstr ""
11536
 
11537
+ #: wppa-settings-autosave.php:4500
11538
+ msgid "Display the newest comment on top."
11539
  msgstr ""
11540
 
11541
+ #: wppa-settings-autosave.php:4501
11542
+ msgid "If checked: Display the newest comment on top."
11543
  msgstr ""
11544
 
11545
+ #: wppa-settings-autosave.php:4502
11546
+ msgid "If unchecked, the comments are listed in the ordere they were entered."
 
 
11547
  msgstr ""
11548
 
11549
+ #: wppa-settings-autosave.php:4509
11550
+ msgid "Comment moderation"
11551
  msgstr ""
11552
 
11553
+ #: wppa-settings-autosave.php:4510
11554
+ msgid "Comments from what users need approval."
11555
  msgstr ""
11556
 
11557
+ #: wppa-settings-autosave.php:4511
11558
+ msgid "Select the desired users of which the comments need approval."
11559
  msgstr ""
11560
 
11561
+ #: wppa-settings-autosave.php:4513 wppa-settings-autosave.php:6507
11562
+ msgid "All users"
11563
  msgstr ""
11564
 
11565
+ #: wppa-settings-autosave.php:4513 wppa-settings-autosave.php:6507
11566
+ msgid "Logged out users"
11567
  msgstr ""
11568
 
11569
+ #: wppa-settings-autosave.php:4513 wppa-settings-autosave.php:6507
11570
+ msgid "No users"
 
11571
  msgstr ""
11572
 
11573
+ #: wppa-settings-autosave.php:4520
11574
+ msgid "Comment email required"
 
 
 
11575
  msgstr ""
11576
 
11577
+ #: wppa-settings-autosave.php:4521
11578
+ msgid "Commenting users must enter their email addresses."
 
 
 
 
11579
  msgstr ""
11580
 
11581
+ #: wppa-settings-autosave.php:4525 wppa-settings-autosave.php:9220
11582
+ #: wppa-settings-autosave.php:9288
11583
+ msgid "Optional"
11584
  msgstr ""
11585
 
11586
+ #: wppa-settings-autosave.php:4537
11587
+ msgid "Comment notify"
11588
  msgstr ""
11589
 
11590
+ #: wppa-settings-autosave.php:4538
11591
+ msgid "Select who must receive an e-mail notification of a new comment."
11592
  msgstr ""
11593
 
11594
+ #: wppa-settings-autosave.php:4541
11595
+ msgid "--- None ---"
11596
  msgstr ""
11597
 
11598
+ #: wppa-settings-autosave.php:4542
11599
+ msgid "--- Admin ---"
11600
  msgstr ""
11601
 
11602
+ #: wppa-settings-autosave.php:4543
11603
+ msgid "--- Album owner ---"
11604
  msgstr ""
11605
 
11606
+ #: wppa-settings-autosave.php:4544
11607
+ msgid "--- Admin & Owner ---"
 
 
11608
  msgstr ""
11609
 
11610
+ #: wppa-settings-autosave.php:4545
11611
+ msgid "--- Uploader ---"
11612
  msgstr ""
11613
 
11614
+ #: wppa-settings-autosave.php:4546
11615
+ msgid "--- Up & admin ---"
11616
  msgstr ""
11617
 
11618
+ #: wppa-settings-autosave.php:4547
11619
+ msgid "--- Up & Owner ---"
11620
  msgstr ""
11621
 
11622
+ #: wppa-settings-autosave.php:4570
11623
+ msgid "Comment notify previous"
11624
  msgstr ""
11625
 
11626
+ #: wppa-settings-autosave.php:4571
11627
+ msgid "Notify users who has commented this photo earlier."
11628
  msgstr ""
11629
 
11630
+ #: wppa-settings-autosave.php:4579
11631
+ msgid "Comment notify approved"
11632
  msgstr ""
11633
 
11634
+ #: wppa-settings-autosave.php:4580
11635
+ msgid "Notify photo owner of approved comment."
 
11636
  msgstr ""
11637
 
11638
+ #: wppa-settings-autosave.php:4588
11639
+ msgid "Com ntfy appr email content"
11640
  msgstr ""
11641
 
11642
+ #: wppa-settings-autosave.php:4589
11643
+ msgid "The content of the email."
11644
  msgstr ""
11645
 
11646
+ #: wppa-settings-autosave.php:4590
11647
+ msgid "If you leave this blank, the default content will be used"
11648
  msgstr ""
11649
 
11650
+ #: wppa-settings-autosave.php:4591
11651
+ msgid "The content may contain html."
11652
  msgstr ""
11653
 
11654
+ #: wppa-settings-autosave.php:4592
11655
+ msgid ""
11656
+ "You may use the following keywords: w#comment for the comment content, "
11657
+ "w#user for the commenters name and the standard photo description keywords "
11658
+ "w#name, w#filename, w#owner, w#id, w#tags, w#timestamp, w#modified, w#views, "
11659
+ "w#amx, w#amy, w#amfs, w#url, w#hrurl, w#tnurl, w#cc0..w#cc9, w#cd0..w#cd9."
11660
  msgstr ""
11661
 
11662
+ #: wppa-settings-autosave.php:4599
11663
+ msgid "Com ntfy appr email subject"
11664
  msgstr ""
11665
 
11666
+ #: wppa-settings-autosave.php:4600
11667
+ msgid "The subject of the email."
11668
  msgstr ""
11669
 
11670
+ #: wppa-settings-autosave.php:4609
11671
+ msgid "Comment ntfy added"
11672
  msgstr ""
11673
 
11674
+ #: wppa-settings-autosave.php:4610
11675
+ msgid "Show \"Comment added\" after successfull adding a comment."
11676
  msgstr ""
11677
 
11678
+ #: wppa-settings-autosave.php:4618
11679
+ msgid "ComTen alt display"
11680
  msgstr ""
11681
 
11682
+ #: wppa-settings-autosave.php:4619
11683
+ msgid "Display comments at comten thumbnails."
11684
  msgstr ""
11685
 
11686
+ #: wppa-settings-autosave.php:4627
11687
+ msgid "Comten Thumbnail width"
11688
  msgstr ""
11689
 
11690
+ #: wppa-settings-autosave.php:4628
11691
+ msgid "The width of the thumbnail in the alt comment display."
11692
  msgstr ""
11693
 
11694
+ #: wppa-settings-autosave.php:4631
11695
+ msgid "Pixels"
11696
  msgstr ""
11697
 
11698
+ #: wppa-settings-autosave.php:4636
11699
+ msgid "Show smiley picker"
11700
  msgstr ""
11701
 
11702
+ #: wppa-settings-autosave.php:4637
11703
+ msgid "Display a clickable row of smileys."
11704
  msgstr ""
11705
 
11706
+ #: wppa-settings-autosave.php:4645
11707
+ msgid "Show commenter email"
11708
  msgstr ""
11709
 
11710
+ #: wppa-settings-autosave.php:4646
11711
+ msgid "Show the commenter's email in the notify emails."
11712
  msgstr ""
11713
 
11714
+ #: wppa-settings-autosave.php:4647
11715
+ msgid "Shows the email address of the commenter in all notify emails."
11716
  msgstr ""
11717
 
11718
+ #: wppa-settings-autosave.php:4648
11719
+ msgid ""
11720
+ "If switched off, admin will still receive the senders email in the "
11721
+ "notification mail"
11722
  msgstr ""
11723
 
11724
+ #: wppa-settings-autosave.php:4658
11725
+ msgid "The opacity of the lightbox overlay background."
11726
  msgstr ""
11727
 
11728
+ #: wppa-settings-autosave.php:4666
11729
+ msgid "Click on background"
11730
  msgstr ""
11731
 
11732
+ #: wppa-settings-autosave.php:4667
11733
+ msgid "Select the action to be taken on click on background."
11734
  msgstr ""
11735
 
11736
+ #: wppa-settings-autosave.php:4670
11737
+ msgid "Nothing"
11738
  msgstr ""
11739
 
11740
+ #: wppa-settings-autosave.php:4670
11741
+ msgid "Exit (close)"
11742
  msgstr ""
11743
 
11744
+ #: wppa-settings-autosave.php:4670
11745
+ msgid "Browse (left/right)"
11746
  msgstr ""
11747
 
11748
+ #: wppa-settings-autosave.php:4677
11749
+ msgid "Overlay animation speed"
 
11750
  msgstr ""
11751
 
11752
+ #: wppa-settings-autosave.php:4678
11753
+ msgid "The fade-in time of the lightbox images"
 
11754
  msgstr ""
11755
 
11756
+ #: wppa-settings-autosave.php:4681
11757
+ msgid "very fast (100 ms.)"
11758
  msgstr ""
11759
 
11760
+ #: wppa-settings-autosave.php:4681
11761
+ msgid "fast (200 ms.)"
11762
  msgstr ""
11763
 
11764
+ #: wppa-settings-autosave.php:4681
11765
+ msgid "normal (300 ms.)"
11766
  msgstr ""
11767
 
11768
+ #: wppa-settings-autosave.php:4681
11769
+ msgid "slow (500 ms.)"
11770
  msgstr ""
11771
 
11772
+ #: wppa-settings-autosave.php:4681
11773
+ msgid "very slow (1 s.)"
11774
  msgstr ""
11775
 
11776
+ #: wppa-settings-autosave.php:4681
11777
+ msgid "extremely slow (2 s.)"
11778
  msgstr ""
11779
 
11780
+ #: wppa-settings-autosave.php:4688
11781
+ msgid "Overlay slideshow speed"
11782
  msgstr ""
11783
 
11784
+ #: wppa-settings-autosave.php:4689
11785
+ msgid "The time the lightbox images stay"
11786
  msgstr ""
11787
 
11788
+ #: wppa-settings-autosave.php:4692
11789
+ msgid "fast (3 s.)"
11790
  msgstr ""
11791
 
11792
+ #: wppa-settings-autosave.php:4692
11793
+ msgid "normal (5 s.)"
11794
  msgstr ""
11795
 
11796
+ #: wppa-settings-autosave.php:4692
11797
+ msgid "slow (8 s.)"
11798
  msgstr ""
11799
 
11800
+ #: wppa-settings-autosave.php:4692
11801
+ msgid "very slow (13 s.)"
11802
  msgstr ""
11803
 
11804
+ #: wppa-settings-autosave.php:4692
11805
+ msgid "extremely slow (20 s.)"
11806
  msgstr ""
11807
 
11808
+ #: wppa-settings-autosave.php:4708
11809
+ msgid "WPPA+ Lightbox global"
11810
  msgstr ""
11811
 
11812
+ #: wppa-settings-autosave.php:4709
11813
+ msgid "Use the wppa+ lightbox also for non-wppa images."
11814
  msgstr ""
11815
 
11816
+ #: wppa-settings-autosave.php:4717
11817
+ msgid "WPPA+ Lightbox global is a set"
11818
  msgstr ""
11819
 
11820
+ #: wppa-settings-autosave.php:4718
11821
+ msgid "Treat the other images as a set."
 
 
11822
  msgstr ""
11823
 
11824
+ #: wppa-settings-autosave.php:4719
11825
  msgid ""
11826
+ "If checked, you can scroll through the images in the lightbox view. Requires "
11827
+ "item 5 to be checked."
11828
  msgstr ""
11829
 
11830
+ #: wppa-settings-autosave.php:4726
11831
+ msgid "Use hires files"
11832
  msgstr ""
11833
 
11834
+ #: wppa-settings-autosave.php:4727
11835
+ msgid "Use the highest resolution available for lightbox."
11836
  msgstr ""
11837
 
11838
+ #: wppa-settings-autosave.php:4728
11839
+ msgid "Ticking this box is recommended for lightbox fullscreen modes."
 
11840
  msgstr ""
11841
 
11842
+ #: wppa-settings-autosave.php:4736
11843
+ msgid "Videos on lightbox start automaticly."
11844
  msgstr ""
11845
 
11846
+ #: wppa-settings-autosave.php:4745
11847
+ msgid "Audio on lightbox start automaticly."
11848
  msgstr ""
11849
 
11850
+ #: wppa-settings-autosave.php:4753
11851
+ msgid "Lightbox start mode"
11852
  msgstr ""
11853
 
11854
+ #: wppa-settings-autosave.php:4754
11855
+ msgid "The mode lightbox starts in."
11856
  msgstr ""
11857
 
11858
+ #: wppa-settings-autosave.php:4757
11859
+ msgid "Normal"
11860
  msgstr ""
11861
 
11862
+ #: wppa-settings-autosave.php:4758
11863
+ msgid "Padded"
11864
  msgstr ""
11865
 
11866
+ #: wppa-settings-autosave.php:4759
11867
+ msgid "Stretched"
11868
  msgstr ""
11869
 
11870
+ #: wppa-settings-autosave.php:4760
11871
+ msgid "Clipped"
11872
  msgstr ""
11873
 
11874
+ #: wppa-settings-autosave.php:4761
11875
+ msgid "Real size"
11876
  msgstr ""
11877
 
11878
+ #: wppa-settings-autosave.php:4792
11879
+ msgid "Table V:"
11880
  msgstr ""
11881
 
11882
+ #: wppa-settings-autosave.php:4792
11883
+ msgid "Fonts:"
 
11884
  msgstr ""
11885
 
11886
+ #: wppa-settings-autosave.php:4793
11887
+ msgid "This table describes the Fonts used for the wppa+ elements."
11888
  msgstr ""
11889
 
11890
+ #: wppa-settings-autosave.php:4803 wppa-settings-autosave.php:4979
11891
+ msgid "Font family"
11892
  msgstr ""
11893
 
11894
+ #: wppa-settings-autosave.php:4804 wppa-settings-autosave.php:4980
11895
+ msgid "Font size"
11896
  msgstr ""
11897
 
11898
+ #: wppa-settings-autosave.php:4805 wppa-settings-autosave.php:4981
11899
+ msgid "Font color"
11900
  msgstr ""
11901
 
11902
+ #: wppa-settings-autosave.php:4806 wppa-settings-autosave.php:4982
11903
+ msgid "Font weight"
 
 
11904
  msgstr ""
11905
 
11906
+ #: wppa-settings-autosave.php:4816
11907
+ msgid "normal"
11908
  msgstr ""
11909
 
11910
+ #: wppa-settings-autosave.php:4816
11911
+ msgid "bold"
11912
  msgstr ""
11913
 
11914
+ #: wppa-settings-autosave.php:4816
11915
+ msgid "bolder"
11916
  msgstr ""
11917
 
11918
+ #: wppa-settings-autosave.php:4816
11919
+ msgid "lighter"
11920
  msgstr ""
11921
 
11922
+ #: wppa-settings-autosave.php:4819
11923
+ msgid "Album titles"
11924
  msgstr ""
11925
 
11926
+ #: wppa-settings-autosave.php:4820
11927
+ msgid "Font used for Album titles."
11928
  msgstr ""
11929
 
11930
+ #: wppa-settings-autosave.php:4821
11931
+ msgid "Enter font name, size, color and weight for album cover titles."
11932
  msgstr ""
11933
 
11934
+ #: wppa-settings-autosave.php:4836
11935
+ msgid "Slideshow desc"
11936
  msgstr ""
11937
 
11938
+ #: wppa-settings-autosave.php:4837
11939
+ msgid "Font for slideshow photo descriptions."
11940
  msgstr ""
11941
 
11942
+ #: wppa-settings-autosave.php:4838
11943
+ msgid ""
11944
+ "Enter font name, size, color and weight for slideshow photo descriptions."
11945
  msgstr ""
11946
 
11947
+ #: wppa-settings-autosave.php:4853
11948
+ msgid "Slideshow name"
11949
  msgstr ""
11950
 
11951
+ #: wppa-settings-autosave.php:4854
11952
+ msgid "Font for slideshow photo names."
 
11953
  msgstr ""
11954
 
11955
+ #: wppa-settings-autosave.php:4855
11956
+ msgid "Enter font name, size, color and weight for slideshow photo names."
11957
  msgstr ""
11958
 
11959
+ #: wppa-settings-autosave.php:4870
11960
+ msgid "Navigations"
 
11961
  msgstr ""
11962
 
11963
+ #: wppa-settings-autosave.php:4871
11964
+ msgid "Font for navigations."
11965
  msgstr ""
11966
 
11967
+ #: wppa-settings-autosave.php:4872
11968
+ msgid "Enter font name, size, color and weight for navigation items."
 
 
11969
  msgstr ""
11970
 
11971
+ #: wppa-settings-autosave.php:4888
11972
+ msgid "Font for text under thumbnails."
 
11973
  msgstr ""
11974
 
11975
+ #: wppa-settings-autosave.php:4889
11976
+ msgid ""
11977
+ "Enter font name, size, color and weight for text under thumbnail images."
11978
  msgstr ""
11979
 
11980
+ #: wppa-settings-autosave.php:4905
11981
+ msgid "General font in wppa boxes."
 
11982
  msgstr ""
11983
 
11984
+ #: wppa-settings-autosave.php:4906
11985
+ msgid "Enter font name, size, color and weight for all other items."
 
 
11986
  msgstr ""
11987
 
11988
+ #: wppa-settings-autosave.php:4922
11989
+ msgid "Font in wppa number bars."
11990
  msgstr ""
11991
 
11992
+ #: wppa-settings-autosave.php:4923 wppa-settings-autosave.php:4940
11993
+ msgid "Enter font name, size, color and weight for numberbar navigation."
11994
  msgstr ""
11995
 
11996
+ #: wppa-settings-autosave.php:4938
11997
+ msgid "Numbar Active"
11998
  msgstr ""
11999
 
12000
+ #: wppa-settings-autosave.php:4939
12001
+ msgid "Font in wppa number bars, active item."
12002
  msgstr ""
12003
 
12004
+ #: wppa-settings-autosave.php:4956
12005
+ msgid "Font in wppa lightbox overlays."
 
 
12006
  msgstr ""
12007
 
12008
+ #: wppa-settings-autosave.php:4957
12009
+ msgid "Enter font name, size, color and weight for wppa lightbox overlays."
 
 
12010
  msgstr ""
12011
 
12012
+ #: wppa-settings-autosave.php:4992
12013
+ msgid "Table VI:"
12014
  msgstr ""
12015
 
12016
+ #: wppa-settings-autosave.php:4992
12017
+ msgid "Links:"
12018
  msgstr ""
12019
 
12020
+ #: wppa-settings-autosave.php:4993
12021
+ msgid "This table defines the link types and pages."
12022
  msgstr ""
12023
 
12024
+ #: wppa-settings-autosave.php:5004 wppa-settings-autosave.php:6010
12025
+ msgid "Link page"
12026
  msgstr ""
12027
 
12028
+ #: wppa-settings-autosave.php:5006 wppa-settings-autosave.php:6012
12029
+ msgid "Photo specific link overrules"
12030
  msgstr ""
12031
 
12032
+ #: wppa-settings-autosave.php:5006 wppa-settings-autosave.php:6012
12033
+ msgid "PSO"
12034
  msgstr ""
12035
 
12036
+ #: wppa-settings-autosave.php:5051
12037
+ msgid "Links from images in WPPA+ Widgets"
12038
  msgstr ""
12039
 
12040
+ #: wppa-settings-autosave.php:5053
12041
+ msgid "PotdWidget"
12042
  msgstr ""
12043
 
12044
+ #: wppa-settings-autosave.php:5054
12045
+ msgid "Photo Of The Day widget link."
12046
  msgstr ""
12047
 
12048
+ #: wppa-settings-autosave.php:5055
12049
+ msgid "Select the type of link the photo of the day points to."
12050
  msgstr ""
12051
 
12052
+ #: wppa-settings-autosave.php:5056
12053
+ msgid ""
12054
+ "If you select 'defined on widget admin page' you can manually enter a link "
12055
+ "and title on the Photo of the day Widget Admin page."
12056
  msgstr ""
12057
 
12058
+ #: wppa-settings-autosave.php:5071 wppa-settings-autosave.php:5114
12059
+ #: wppa-settings-autosave.php:5153 wppa-settings-autosave.php:5192
12060
+ #: wppa-settings-autosave.php:5237 wppa-settings-autosave.php:5285
12061
+ #: wppa-settings-autosave.php:5332 wppa-settings-autosave.php:5379
12062
+ #: wppa-settings-autosave.php:5467
12063
+ msgid "a plain page without a querystring."
12064
  msgstr ""
12065
 
12066
+ #: wppa-settings-autosave.php:5072 wppa-settings-autosave.php:5115
12067
+ #: wppa-settings-autosave.php:5154 wppa-settings-autosave.php:5193
12068
+ #: wppa-settings-autosave.php:5238 wppa-settings-autosave.php:5286
12069
+ #: wppa-settings-autosave.php:5333 wppa-settings-autosave.php:5380
12070
+ #: wppa-settings-autosave.php:5426 wppa-settings-autosave.php:5468
12071
+ #: wppa-settings-autosave.php:5516 wppa-settings-autosave.php:5558
12072
+ #: wppa-settings-autosave.php:5597
12073
+ msgid "lightbox."
12074
  msgstr ""
12075
 
12076
+ #: wppa-settings-autosave.php:5097
12077
+ msgid "SlideWidget"
12078
  msgstr ""
12079
 
12080
+ #: wppa-settings-autosave.php:5098
12081
+ msgid "Slideshow widget photo link."
12082
  msgstr ""
12083
 
12084
+ #: wppa-settings-autosave.php:5099
12085
+ msgid "Select the type of link the slideshow photos point to."
12086
  msgstr ""
12087
 
12088
+ #: wppa-settings-autosave.php:5140
12089
+ msgid "Album widget"
 
 
12090
  msgstr ""
12091
 
12092
+ #: wppa-settings-autosave.php:5141
12093
+ msgid "Album widget thumbnail link"
12094
  msgstr ""
12095
 
12096
+ #: wppa-settings-autosave.php:5142
12097
+ msgid "Select the type of link the album widget photos point to."
12098
  msgstr ""
12099
 
12100
+ #: wppa-settings-autosave.php:5151
12101
+ msgid "subalbums and thumbnails."
 
 
12102
  msgstr ""
12103
 
12104
+ #: wppa-settings-autosave.php:5152
12105
+ msgid "slideshow."
12106
  msgstr ""
12107
 
12108
+ #: wppa-settings-autosave.php:5175
12109
+ msgid "ThumbnailWidget"
12110
  msgstr ""
12111
 
12112
+ #: wppa-settings-autosave.php:5176
12113
+ msgid "Thumbnail widget photo link."
 
 
12114
  msgstr ""
12115
 
12116
+ #: wppa-settings-autosave.php:5177
12117
+ msgid "Select the type of link the thumbnail photos point to."
12118
  msgstr ""
12119
 
12120
+ #: wppa-settings-autosave.php:5190 wppa-settings-autosave.php:5235
12121
+ #: wppa-settings-autosave.php:5283 wppa-settings-autosave.php:5330
12122
+ #: wppa-settings-autosave.php:5377 wppa-settings-autosave.php:5465
12123
+ msgid "the single photo in the style of a slideshow."
12124
  msgstr ""
12125
 
12126
+ #: wppa-settings-autosave.php:5191 wppa-settings-autosave.php:5236
12127
+ #: wppa-settings-autosave.php:5284 wppa-settings-autosave.php:5331
12128
+ #: wppa-settings-autosave.php:5378 wppa-settings-autosave.php:5466
12129
+ #: wppa-settings-autosave.php:5599
12130
+ msgid "the fs photo with download and print buttons."
12131
  msgstr ""
12132
 
12133
+ #: wppa-settings-autosave.php:5218
12134
+ msgid "TopTenWidget"
12135
  msgstr ""
12136
 
12137
+ #: wppa-settings-autosave.php:5219
12138
+ msgid "TopTen widget photo link."
12139
  msgstr ""
12140
 
12141
+ #: wppa-settings-autosave.php:5220
12142
+ msgid "Select the type of link the top ten photos point to."
 
 
12143
  msgstr ""
12144
 
12145
+ #: wppa-settings-autosave.php:5231
12146
+ msgid "the content of the virtual topten album."
12147
  msgstr ""
12148
 
12149
+ #: wppa-settings-autosave.php:5232 wppa-settings-autosave.php:5280
12150
+ #: wppa-settings-autosave.php:5327 wppa-settings-autosave.php:5374
12151
+ msgid "the content of the thumbnails album."
12152
  msgstr ""
12153
 
12154
+ #: wppa-settings-autosave.php:5266
12155
+ msgid "LasTenWidget"
12156
  msgstr ""
12157
 
12158
+ #: wppa-settings-autosave.php:5267
12159
+ msgid "Last Ten widget photo link."
12160
  msgstr ""
12161
 
12162
+ #: wppa-settings-autosave.php:5268
12163
+ msgid "Select the type of link the last ten photos point to."
12164
  msgstr ""
12165
 
12166
+ #: wppa-settings-autosave.php:5279
12167
+ msgid "the content of the virtual lasten album."
12168
  msgstr ""
12169
 
12170
+ #: wppa-settings-autosave.php:5313
12171
+ msgid "CommentWidget"
12172
  msgstr ""
12173
 
12174
+ #: wppa-settings-autosave.php:5314
12175
+ msgid "Comment widget photo link."
12176
  msgstr ""
12177
 
12178
+ #: wppa-settings-autosave.php:5315
12179
+ msgid "Select the type of link the comment widget photos point to."
12180
  msgstr ""
12181
 
12182
+ #: wppa-settings-autosave.php:5326
12183
+ msgid "the content of the virtual comten album."
12184
  msgstr ""
12185
 
12186
+ #: wppa-settings-autosave.php:5360
12187
+ msgid "FeaTenWidget"
12188
  msgstr ""
12189
 
12190
+ #: wppa-settings-autosave.php:5361
12191
+ msgid "FeaTen widget photo link."
12192
  msgstr ""
12193
 
12194
+ #: wppa-settings-autosave.php:5362
12195
+ msgid "Select the type of link the featured ten photos point to."
 
12196
  msgstr ""
12197
 
12198
+ #: wppa-settings-autosave.php:5373
12199
+ msgid "the content of the virtual featen album."
12200
  msgstr ""
12201
 
12202
+ #: wppa-settings-autosave.php:5406
12203
+ msgid "Links from other WPPA+ images"
12204
  msgstr ""
12205
 
12206
+ #: wppa-settings-autosave.php:5408
12207
+ msgid "Cover Image"
 
 
12208
  msgstr ""
12209
 
12210
+ #: wppa-settings-autosave.php:5409
12211
+ msgid "The link from the cover image of an album."
12212
  msgstr ""
12213
 
12214
+ #: wppa-settings-autosave.php:5410
12215
+ msgid "Select the type of link the coverphoto points to."
12216
  msgstr ""
12217
 
12218
+ #: wppa-settings-autosave.php:5411
12219
+ msgid "The link from the album title can be configured on the Edit Album page."
12220
  msgstr ""
12221
 
12222
+ #: wppa-settings-autosave.php:5412
12223
+ msgid "This link will be used for the photo also if you select: same as title."
12224
  msgstr ""
12225
 
12226
+ #: wppa-settings-autosave.php:5413
12227
+ msgid ""
12228
+ "If you specify New Tab on this line, all links from the cover will open a "
12229
+ "new tab,"
12230
  msgstr ""
12231
 
12232
+ #: wppa-settings-autosave.php:5414
12233
+ msgid "except when Ajax is activated on Table IV-A1."
12234
  msgstr ""
12235
 
12236
+ #: wppa-settings-autosave.php:5427
12237
+ msgid "a slideshow starting at the photo"
12238
  msgstr ""
12239
 
12240
+ #: wppa-settings-autosave.php:5448
12241
+ msgid "Thumbnail"
12242
  msgstr ""
12243
 
12244
+ #: wppa-settings-autosave.php:5449
12245
+ msgid "Thumbnail link."
12246
  msgstr ""
12247
 
12248
+ #: wppa-settings-autosave.php:5450 wppa-settings-autosave.php:5500
12249
+ #: wppa-settings-autosave.php:5542
12250
+ msgid "Select the type of link you want, or no link at all."
12251
  msgstr ""
12252
 
12253
+ #: wppa-settings-autosave.php:5451 wppa-settings-autosave.php:5501
12254
+ #: wppa-settings-autosave.php:5543
12255
+ msgid ""
12256
+ "If you select the fullsize photo on its own, it will be stretched to fit, "
12257
+ "regardless of that setting."
12258
  msgstr ""
12259
 
12260
+ #: wppa-settings-autosave.php:5452 wppa-settings-autosave.php:5502
12261
+ #: wppa-settings-autosave.php:5544
12262
+ msgid ""
12263
+ "Note that a page must have at least [wppa][/wppa] in its content to show up "
12264
+ "the photo(s)."
12265
  msgstr ""
12266
 
12267
+ #: wppa-settings-autosave.php:5481
12268
+ msgid "Auto Page"
12269
  msgstr ""
12270
 
12271
+ #: wppa-settings-autosave.php:5498
12272
+ msgid "Sphoto"
12273
  msgstr ""
12274
 
12275
+ #: wppa-settings-autosave.php:5499
12276
+ msgid "Single photo link."
12277
  msgstr ""
12278
 
12279
+ #: wppa-settings-autosave.php:5540
12280
+ msgid "Mphoto"
12281
  msgstr ""
12282
 
12283
+ #: wppa-settings-autosave.php:5541
12284
+ msgid "Media-like photo link."
12285
  msgstr ""
12286
 
12287
+ #: wppa-settings-autosave.php:5583
12288
+ msgid "Slideshow fullsize link"
12289
  msgstr ""
12290
 
12291
+ #: wppa-settings-autosave.php:5584
12292
+ msgid ""
12293
+ "You can overrule lightbox but not big browse buttons with the photo specifc "
12294
+ "link."
12295
  msgstr ""
12296
 
12297
+ #: wppa-settings-autosave.php:5585
12298
+ msgid "fullsize slideshow can only be set by the WPPA_SET shortcode."
12299
  msgstr ""
12300
 
12301
+ #: wppa-settings-autosave.php:5598
12302
+ msgid "lightbox single photos."
12303
  msgstr ""
12304
 
12305
+ #: wppa-settings-autosave.php:5600
12306
+ msgid "the thumbnails."
12307
  msgstr ""
12308
 
12309
+ #: wppa-settings-autosave.php:5601
12310
+ msgid "fullsize slideshow"
12311
  msgstr ""
12312
 
12313
+ #: wppa-settings-autosave.php:5626
12314
+ msgid "Film linktype"
 
 
12315
  msgstr ""
12316
 
12317
+ #: wppa-settings-autosave.php:5627
12318
+ msgid "Direct access goto image in:"
12319
  msgstr ""
12320
 
12321
+ #: wppa-settings-autosave.php:5628
12322
+ msgid ""
12323
+ "Select the action to be taken when the user clicks on a filmstrip image."
12324
  msgstr ""
12325
 
12326
+ #: wppa-settings-autosave.php:5633
12327
+ msgid "slideshow window"
12328
  msgstr ""
12329
 
12330
+ #: wppa-settings-autosave.php:5634
12331
+ msgid "lightbox overlay"
12332
  msgstr ""
12333
 
12334
+ #: wppa-settings-autosave.php:5649
12335
+ msgid "Other links"
12336
  msgstr ""
12337
 
12338
+ #: wppa-settings-autosave.php:5651
12339
+ msgid "Download Link (aka Art Monkey link)"
12340
  msgstr ""
12341
 
12342
+ #: wppa-settings-autosave.php:5652
12343
+ msgid "Makes the photo name a download button."
12344
  msgstr ""
12345
 
12346
+ #: wppa-settings-autosave.php:5653
12347
+ msgid "Link Photo name in slideshow to file or zip with photoname as filename."
 
 
 
12348
  msgstr ""
12349
 
12350
+ #: wppa-settings-autosave.php:5657 wppa-settings-autosave.php:5704
12351
+ msgid "image file"
12352
  msgstr ""
12353
 
12354
+ #: wppa-settings-autosave.php:5658 wppa-settings-autosave.php:5705
12355
+ msgid "zipped image"
12356
  msgstr ""
12357
 
12358
+ #: wppa-settings-autosave.php:5671
12359
+ msgid "Art Monkey Source"
12360
  msgstr ""
12361
 
12362
+ #: wppa-settings-autosave.php:5672
12363
+ msgid "Use Source file for art monkey link if available."
12364
  msgstr ""
12365
 
12366
+ #: wppa-settings-autosave.php:5681
12367
+ msgid "Art Monkey Display"
 
 
 
12368
  msgstr ""
12369
 
12370
+ #: wppa-settings-autosave.php:5682
12371
+ msgid "Select button or link ( text )."
12372
  msgstr ""
12373
 
12374
+ #: wppa-settings-autosave.php:5687
12375
+ msgid "Textlink"
12376
  msgstr ""
12377
 
12378
+ #: wppa-settings-autosave.php:5699
12379
+ msgid "Popup Download Link"
12380
  msgstr ""
12381
 
12382
+ #: wppa-settings-autosave.php:5700
12383
+ msgid "Configure the download link on fullsize popups."
12384
  msgstr ""
12385
 
12386
+ #: wppa-settings-autosave.php:5701
12387
+ msgid "Link fullsize popup download button to either image or zip file."
12388
  msgstr ""
12389
 
12390
+ #: wppa-settings-autosave.php:5717
12391
+ msgid "Download link on lightbox"
12392
  msgstr ""
12393
 
12394
+ #: wppa-settings-autosave.php:5718
12395
+ msgid "Art monkey link on lightbox photo names."
12396
  msgstr ""
12397
 
12398
+ #: wppa-settings-autosave.php:5727
12399
+ msgid "Album download link"
12400
  msgstr ""
12401
 
12402
+ #: wppa-settings-autosave.php:5728
12403
+ msgid "Place an album download link on the album covers"
12404
  msgstr ""
12405
 
12406
+ #: wppa-settings-autosave.php:5729
12407
+ msgid "Creates a download zipfile containing the photos of the album"
 
 
12408
  msgstr ""
12409
 
12410
+ #: wppa-settings-autosave.php:5737
12411
+ msgid "Album download Source"
12412
  msgstr ""
12413
 
12414
+ #: wppa-settings-autosave.php:5738
12415
+ msgid "Use Source file for album download link if available."
12416
  msgstr ""
12417
 
12418
+ #: wppa-settings-autosave.php:5747
12419
+ msgid "Tagcloud Link"
12420
  msgstr ""
12421
 
12422
+ #: wppa-settings-autosave.php:5748
12423
+ msgid "Configure the link from the tags in the tag cloud."
12424
  msgstr ""
12425
 
12426
+ #: wppa-settings-autosave.php:5749
12427
+ msgid "Link the tag words to ether the thumbnails or the slideshow."
12428
  msgstr ""
12429
 
12430
+ #: wppa-settings-autosave.php:5773 wppa-settings-autosave.php:5806
12431
+ #: wppa-settings-autosave.php:5950
12432
+ msgid "Occur"
12433
  msgstr ""
12434
 
12435
+ #: wppa-settings-autosave.php:5780
12436
+ msgid "Multitag Link"
12437
  msgstr ""
12438
 
12439
+ #: wppa-settings-autosave.php:5781
12440
+ msgid "Configure the link from the multitag selection."
12441
  msgstr ""
12442
 
12443
+ #: wppa-settings-autosave.php:5782
12444
+ msgid "Link to ether the thumbnails or the slideshow."
 
12445
  msgstr ""
12446
 
12447
+ #: wppa-settings-autosave.php:5813
12448
+ msgid "Super View Landing"
12449
  msgstr ""
12450
 
12451
+ #: wppa-settings-autosave.php:5814
12452
+ msgid "The landing page for the Super View widget."
12453
  msgstr ""
12454
 
12455
+ #: wppa-settings-autosave.php:5822
12456
+ msgid "Defined by the visitor"
12457
  msgstr ""
12458
 
12459
+ #: wppa-settings-autosave.php:5835
12460
+ msgid "Uploader Landing"
12461
  msgstr ""
12462
 
12463
+ #: wppa-settings-autosave.php:5836
12464
+ msgid "Select the landing page for the Uploader Widget"
 
 
12465
  msgstr ""
12466
 
12467
+ #: wppa-settings-autosave.php:5856
12468
+ msgid "Bestof Landing"
12469
  msgstr ""
12470
 
12471
+ #: wppa-settings-autosave.php:5857
12472
+ msgid "Select the landing page for the BestOf Widget / Box"
12473
  msgstr ""
12474
 
12475
+ #: wppa-settings-autosave.php:5877
12476
+ msgid "Album navigator Link"
 
 
12477
  msgstr ""
12478
 
12479
+ #: wppa-settings-autosave.php:5878
12480
+ msgid "Select link type and page for the Album navigator Widget"
 
 
12481
  msgstr ""
12482
 
12483
+ #: wppa-settings-autosave.php:5906
12484
+ msgid "Supersearch Landing"
12485
  msgstr ""
12486
 
12487
+ #: wppa-settings-autosave.php:5907
12488
+ msgid "Select the landing page for the Supersearch Box"
12489
  msgstr ""
12490
 
12491
+ #: wppa-settings-autosave.php:5927
12492
+ msgid "SM widget return"
12493
  msgstr ""
12494
 
12495
+ #: wppa-settings-autosave.php:5928
12496
+ msgid "Select the return link for social media from widgets"
12497
  msgstr ""
12498
 
12499
+ #: wppa-settings-autosave.php:5929
12500
+ msgid ""
12501
+ "If you select Landing page, and it wont work, it may be required to set the "
12502
+ "Occur to the sequence number of the landing shortcode on the page."
12503
  msgstr ""
12504
 
12505
+ #: wppa-settings-autosave.php:5930
12506
  msgid ""
12507
+ "Normally it is 1, but you can try 2 etc. Always create a new shared link to "
12508
+ "test a setting."
12509
  msgstr ""
12510
 
12511
+ #: wppa-settings-autosave.php:5938
12512
+ msgid "Home page"
12513
  msgstr ""
12514
 
12515
+ #: wppa-settings-autosave.php:5959
12516
+ msgid "Album cover subalbums link"
12517
  msgstr ""
12518
 
12519
+ #: wppa-settings-autosave.php:5960
12520
+ msgid ""
12521
+ "Select the linktype and display type for sub-albums on parent album covers."
12522
  msgstr ""
12523
 
12524
+ #: wppa-settings-autosave.php:5968
12525
+ msgid "No link at all"
12526
  msgstr ""
12527
 
12528
+ #: wppa-settings-autosave.php:5969
12529
+ msgid "Thumbnails and covers"
 
12530
  msgstr ""
12531
 
12532
+ #: wppa-settings-autosave.php:5970
12533
+ msgid "Slideshow or covers"
12534
  msgstr ""
12535
 
12536
+ #: wppa-settings-autosave.php:5980
12537
+ msgid "No display at all"
12538
  msgstr ""
12539
 
12540
+ #: wppa-settings-autosave.php:5981
12541
+ msgid "A list with sub(sub) albums"
 
12542
  msgstr ""
12543
 
12544
+ #: wppa-settings-autosave.php:5982
12545
+ msgid "A list of children only"
 
12546
  msgstr ""
12547
 
12548
+ #: wppa-settings-autosave.php:5983
12549
+ msgid "An enumeration of names"
12550
  msgstr ""
12551
 
12552
+ #: wppa-settings-autosave.php:5984
12553
+ msgid "Micro thumbnails"
12554
  msgstr ""
12555
 
12556
+ #: wppa-settings-autosave.php:6022
12557
+ msgid "Table VII:"
12558
  msgstr ""
12559
 
12560
+ #: wppa-settings-autosave.php:6022
12561
+ msgid "Permissions and Restrictions:"
12562
  msgstr ""
12563
 
12564
+ #: wppa-settings-autosave.php:6023
12565
  msgid ""
12566
+ "This table describes the access settings for admin and front-end activities."
 
12567
  msgstr ""
12568
 
12569
+ #: wppa-settings-autosave.php:6044
12570
+ msgid "Moderate P+C"
12571
  msgstr ""
12572
 
12573
+ #: wppa-settings-autosave.php:6048
12574
+ msgid "Comment&nbsp;Admin"
12575
  msgstr ""
12576
 
12577
+ #: wppa-settings-autosave.php:6049
12578
+ msgid "Help & Info"
12579
  msgstr ""
12580
 
12581
+ #: wppa-settings-autosave.php:6051
12582
+ msgid "Role"
12583
  msgstr ""
12584
 
12585
+ #: wppa-settings-autosave.php:6060
12586
+ msgid ""
12587
+ "Admin settings per user role. Enabling these settings will overrule the "
12588
+ "front-end settings for the specific user role"
12589
  msgstr ""
12590
 
12591
+ #: wppa-settings-autosave.php:6084
12592
+ msgid "Frontend create Albums and upload Photos enabling and limiting settings"
12593
  msgstr ""
12594
 
12595
+ #: wppa-settings-autosave.php:6086
12596
+ msgid "User create Albums"
12597
  msgstr ""
12598
 
12599
+ #: wppa-settings-autosave.php:6087
12600
+ msgid "Enable frontend album creation."
12601
  msgstr ""
12602
 
12603
+ #: wppa-settings-autosave.php:6088
12604
+ msgid "If you check this item, frontend album creation will be enabled."
 
 
12605
  msgstr ""
12606
 
12607
+ #: wppa-settings-autosave.php:6098
12608
+ msgid "User edit album"
12609
  msgstr ""
12610
 
12611
+ #: wppa-settings-autosave.php:6099
12612
+ msgid "Enable frontend edit album name and description."
 
 
 
12613
  msgstr ""
12614
 
12615
+ #: wppa-settings-autosave.php:6109
12616
+ msgid "User delete Albums"
12617
  msgstr ""
12618
 
12619
+ #: wppa-settings-autosave.php:6110
12620
+ msgid "Enable frontend album deletion"
12621
  msgstr ""
12622
 
12623
+ #: wppa-settings-autosave.php:6111
12624
+ msgid "If you check this item, frontend album deletion will be enabled."
12625
  msgstr ""
12626
 
12627
+ #: wppa-settings-autosave.php:6121
12628
+ msgid "User create Albums login"
12629
  msgstr ""
12630
 
12631
+ #: wppa-settings-autosave.php:6122
12632
+ msgid "Frontend album creation requires the user is logged in."
12633
  msgstr ""
12634
 
12635
+ #: wppa-settings-autosave.php:6133
12636
+ msgid "User create Albums Captcha"
12637
  msgstr ""
12638
 
12639
+ #: wppa-settings-autosave.php:6134
12640
+ msgid "Uer must answer security question."
12641
  msgstr ""
12642
 
12643
+ #: wppa-settings-autosave.php:6159
12644
+ #, php-format
12645
+ msgid "Upload limit %s"
12646
  msgstr ""
12647
 
12648
+ #: wppa-settings-autosave.php:6160
12649
+ msgid "Limit upload capacity for logged out users."
12650
  msgstr ""
12651
 
12652
+ #: wppa-settings-autosave.php:6161
12653
+ #, php-format
12654
+ msgid "Limit upload capacity for the user role %s."
12655
  msgstr ""
12656
 
12657
+ #: wppa-settings-autosave.php:6162
12658
+ msgid "This setting has only effect when Table VII-B2 is unchecked."
12659
  msgstr ""
12660
 
12661
+ #: wppa-settings-autosave.php:6163
12662
+ msgid ""
12663
+ "This limitation only applies to frontend uploads when the same userrole does "
12664
+ "not have the Upload checkbox checked in Table VII-A."
12665
  msgstr ""
12666
 
12667
+ #: wppa-settings-autosave.php:6164 wppa-settings-autosave.php:6180
12668
+ #: wppa-settings-autosave.php:7997
12669
+ msgid "A value of 0 means: no limit."
12670
  msgstr ""
12671
 
12672
+ #: wppa-settings-autosave.php:6177
12673
+ #, php-format
12674
+ msgid "Album limit %s"
12675
  msgstr ""
12676
 
12677
+ #: wppa-settings-autosave.php:6178
12678
+ #, php-format
12679
+ msgid "Limit number of albums for the user role %s."
12680
  msgstr ""
12681
 
12682
+ #: wppa-settings-autosave.php:6179
12683
+ msgid ""
12684
+ "This limitation only applies to frontend create albums when the same "
12685
+ "userrole does not have the Album admin checkbox checked in Table VII-A."
12686
  msgstr ""
12687
 
12688
+ #: wppa-settings-autosave.php:6191
12689
+ msgid "Upload one only"
12690
  msgstr ""
12691
 
12692
+ #: wppa-settings-autosave.php:6192
12693
+ msgid "Non admin users can upload only one photo at a time."
12694
  msgstr ""
12695
 
12696
+ #: wppa-settings-autosave.php:6202
12697
+ msgid "Upload moderation"
12698
  msgstr ""
12699
 
12700
+ #: wppa-settings-autosave.php:6203
12701
+ msgid "Uploaded photos need moderation."
12702
  msgstr ""
12703
 
12704
+ #: wppa-settings-autosave.php:6204
12705
+ msgid ""
12706
+ "If checked, photos uploaded by users who do not have photo album admin "
12707
+ "access rights need moderation."
12708
  msgstr ""
12709
 
12710
+ #: wppa-settings-autosave.php:6205
12711
+ msgid ""
12712
+ "Users who have photo album admin access rights can change the photo status "
12713
+ "to publish or featured."
12714
  msgstr ""
12715
 
12716
+ #: wppa-settings-autosave.php:6206
12717
+ msgid "You can set the album admin access rights in Table VII-A."
12718
  msgstr ""
12719
 
12720
+ #: wppa-settings-autosave.php:6215
12721
+ msgid "Upload notify"
12722
  msgstr ""
12723
 
12724
+ #: wppa-settings-autosave.php:6216
12725
+ msgid "Notify admin at frontend upload."
12726
  msgstr ""
12727
 
12728
+ #: wppa-settings-autosave.php:6217 wppa-settings-autosave.php:6228
12729
+ msgid "If checked, admin will receive a notification by email."
12730
  msgstr ""
12731
 
12732
+ #: wppa-settings-autosave.php:6226
12733
+ msgid "Upload backend notify"
12734
  msgstr ""
12735
 
12736
+ #: wppa-settings-autosave.php:6227
12737
+ msgid "Notify admin at backend upload."
12738
  msgstr ""
12739
 
12740
+ #: wppa-settings-autosave.php:6237
12741
+ msgid "Max size in pixels"
12742
  msgstr ""
12743
 
12744
+ #: wppa-settings-autosave.php:6238
12745
+ msgid "Max size for height and width for front-end uploads."
12746
  msgstr ""
12747
 
12748
+ #: wppa-settings-autosave.php:6239
12749
+ msgid "Enter the maximum size. 0 is unlimited"
12750
  msgstr ""
12751
 
12752
+ #: wppa-settings-autosave.php:6248
12753
+ msgid "Home after Upload"
12754
  msgstr ""
12755
 
12756
+ #: wppa-settings-autosave.php:6249
12757
+ msgid "After successfull front-end upload, go to the home page."
12758
  msgstr ""
12759
 
12760
+ #: wppa-settings-autosave.php:6259
12761
+ msgid "Fe alert"
 
 
12762
  msgstr ""
12763
 
12764
+ #: wppa-settings-autosave.php:6260
12765
+ msgid "Show alertbox on successful front-end upload/create."
12766
  msgstr ""
12767
 
12768
+ #: wppa-settings-autosave.php:6270
12769
+ msgid "Admin Functionality restrictions for non administrators"
12770
  msgstr ""
12771
 
12772
+ #: wppa-settings-autosave.php:6272
12773
+ msgid "Alt thumb is restricted"
12774
  msgstr ""
12775
 
12776
+ #: wppa-settings-autosave.php:6273
12777
+ msgid "Using <b>alt thumbsize</b> is a restricted action."
12778
  msgstr ""
12779
 
12780
+ #: wppa-settings-autosave.php:6274
12781
+ msgid ""
12782
+ "If checked: alt thumbsize can not be set in album admin by users not having "
12783
+ "admin rights."
12784
  msgstr ""
12785
 
12786
+ #: wppa-settings-autosave.php:6283
12787
+ msgid "Link is restricted"
12788
  msgstr ""
12789
 
12790
+ #: wppa-settings-autosave.php:6284
12791
+ msgid "Using <b>Link to</b> is a restricted action."
12792
  msgstr ""
12793
 
12794
+ #: wppa-settings-autosave.php:6285
12795
+ msgid ""
12796
+ "If checked: Link to: can not be set in album admin by users not having admin "
12797
+ "rights."
12798
  msgstr ""
12799
 
12800
+ #: wppa-settings-autosave.php:6294
12801
+ msgid "CoverType is restricted"
 
 
12802
  msgstr ""
12803
 
12804
+ #: wppa-settings-autosave.php:6295
12805
+ msgid "Changing <b>Cover Type</b> is a restricted action."
12806
  msgstr ""
12807
 
12808
+ #: wppa-settings-autosave.php:6296
12809
+ msgid ""
12810
+ "If checked: Cover Type: can not be set in album admin by users not having "
12811
+ "admin rights."
12812
  msgstr ""
12813
 
12814
+ #: wppa-settings-autosave.php:6305
12815
+ msgid "Photo order# is restricted"
12816
  msgstr ""
12817
 
12818
+ #: wppa-settings-autosave.php:6306
12819
+ msgid "Changing <b>Photo sort order #</b> is a restricted action."
12820
  msgstr ""
12821
 
12822
+ #: wppa-settings-autosave.php:6307
12823
  msgid ""
12824
+ "If checked: Photo sort order #: can not be set in photo admin by users not "
12825
+ "having admin rights."
12826
  msgstr ""
12827
 
12828
+ #: wppa-settings-autosave.php:6316
12829
+ msgid "Change source restricted"
12830
  msgstr ""
12831
 
12832
+ #: wppa-settings-autosave.php:6317
12833
+ msgid "Changing the import source dir requires admin rights."
12834
  msgstr ""
12835
 
12836
+ #: wppa-settings-autosave.php:6318
12837
+ msgid ""
12838
+ "If checked, the imput source for importing photos and albums is restricted "
12839
+ "to user role administrator."
12840
  msgstr ""
12841
 
12842
+ #: wppa-settings-autosave.php:6327
12843
+ msgid "Extended status restricted"
12844
  msgstr ""
12845
 
12846
+ #: wppa-settings-autosave.php:6328
12847
+ msgid "Setting status other than pending or publish requires admin rights."
12848
  msgstr ""
12849
 
12850
+ #: wppa-settings-autosave.php:6338
12851
+ msgid "Photo description restricted"
12852
  msgstr ""
12853
 
12854
+ #: wppa-settings-autosave.php:6339
12855
+ msgid "Edit photo description requires admin rights."
12856
  msgstr ""
12857
 
12858
+ #: wppa-settings-autosave.php:6349
12859
+ msgid "Update photofiles restricted"
12860
  msgstr ""
12861
 
12862
+ #: wppa-settings-autosave.php:6350
12863
+ msgid "Re-upload files requires admin rights"
12864
  msgstr ""
12865
 
12866
+ #: wppa-settings-autosave.php:6360
12867
+ msgid "Miscellaneous limiting settings"
12868
  msgstr ""
12869
 
12870
+ #: wppa-settings-autosave.php:6362
12871
+ msgid "Owners only"
12872
  msgstr ""
12873
 
12874
+ #: wppa-settings-autosave.php:6363
12875
+ msgid "Limit edit album access to the album owners only."
12876
  msgstr ""
12877
 
12878
+ #: wppa-settings-autosave.php:6364
12879
+ msgid "If checked, non-admin users can edit their own albums only."
12880
  msgstr ""
12881
 
12882
+ #: wppa-settings-autosave.php:6373
12883
+ msgid "Upload Owners only"
12884
  msgstr ""
12885
 
12886
+ #: wppa-settings-autosave.php:6374
12887
+ msgid "Limit uploads to the album owners only."
12888
  msgstr ""
12889
 
12890
+ #: wppa-settings-autosave.php:6375
12891
+ msgid ""
12892
+ "If checked, users can upload to their own own albums and --- public --- only."
12893
  msgstr ""
12894
 
12895
+ #: wppa-settings-autosave.php:6384
12896
+ msgid "Frontend Edit"
12897
  msgstr ""
12898
 
12899
+ #: wppa-settings-autosave.php:6385
12900
+ msgid "Allow the uploader to edit the photo info"
12901
  msgstr ""
12902
 
12903
+ #: wppa-settings-autosave.php:6386
12904
+ msgid ""
12905
+ "If selected, any logged in user who meets the criteria has the capability to "
12906
+ "edit the photo information."
12907
  msgstr ""
12908
 
12909
+ #: wppa-settings-autosave.php:6387
12910
+ msgid "Note: This may be AFTER moderation!!"
12911
  msgstr ""
12912
 
12913
+ #: wppa-settings-autosave.php:6389
12914
+ msgid "Classic"
12915
  msgstr ""
12916
 
12917
+ #: wppa-settings-autosave.php:6389
12918
+ msgid "New style"
12919
  msgstr ""
12920
 
12921
+ #: wppa-settings-autosave.php:6398
12922
+ msgid "Fe Edit users"
12923
  msgstr ""
12924
 
12925
+ #: wppa-settings-autosave.php:6399
12926
+ msgid "The criteria the user must meet to edit photo info"
12927
  msgstr ""
12928
 
12929
+ #: wppa-settings-autosave.php:6402
12930
+ msgid "Admin and superuser"
12931
  msgstr ""
12932
 
12933
+ #: wppa-settings-autosave.php:6402
12934
+ msgid "Owner, admin and superuser"
12935
  msgstr ""
12936
 
12937
+ #: wppa-settings-autosave.php:6411
12938
+ msgid "Fe Edit Theme CSS"
12939
  msgstr ""
12940
 
12941
+ #: wppa-settings-autosave.php:6412
12942
+ msgid "The front-end edit photo dialog uses the theme CSS."
12943
  msgstr ""
12944
 
12945
+ #: wppa-settings-autosave.php:6422
12946
+ msgid "Fe Edit New Items"
12947
  msgstr ""
12948
 
12949
+ #: wppa-settings-autosave.php:6423
12950
+ msgid "The items that are fe editable"
12951
  msgstr ""
12952
 
12953
+ #: wppa-settings-autosave.php:6424
12954
+ msgid "See also Table II-J10!"
12955
  msgstr ""
12956
 
12957
+ #: wppa-settings-autosave.php:6437
12958
+ msgid "Fe Edit Button text"
12959
  msgstr ""
12960
 
12961
+ #: wppa-settings-autosave.php:6438
12962
+ msgid "The text on the Edit button."
12963
  msgstr ""
12964
 
12965
+ #: wppa-settings-autosave.php:6448
12966
+ msgid "Fe Edit Dialog caption"
12967
  msgstr ""
12968
 
12969
+ #: wppa-settings-autosave.php:6449
12970
+ msgid "The text on the header of the popup."
12971
  msgstr ""
12972
 
12973
+ #: wppa-settings-autosave.php:6459
12974
+ msgid "Frontend Delete"
12975
  msgstr ""
12976
 
12977
+ #: wppa-settings-autosave.php:6460
12978
+ msgid "Allow the uploader to delete the photo"
12979
  msgstr ""
12980
 
12981
+ #: wppa-settings-autosave.php:6470
12982
+ msgid "Uploader Moderate Comment"
12983
  msgstr ""
12984
 
12985
+ #: wppa-settings-autosave.php:6471
12986
+ msgid "The owner of the photo can moderate the photos comments."
12987
  msgstr ""
12988
 
12989
+ #: wppa-settings-autosave.php:6472
12990
+ msgid "This setting requires \"Uploader edit\" to be enabled also."
12991
  msgstr ""
12992
 
12993
+ #: wppa-settings-autosave.php:6481
12994
+ msgid "Upload memory check frontend"
12995
  msgstr ""
12996
 
12997
+ #: wppa-settings-autosave.php:6482 wppa-settings-autosave.php:6493
12998
+ msgid "Disable uploading photos that are too large."
12999
  msgstr ""
13000
 
13001
+ #: wppa-settings-autosave.php:6483 wppa-settings-autosave.php:6494
13002
+ msgid ""
13003
+ "To prevent out of memory crashes during upload and possible database "
13004
+ "inconsistencies, uploads can be prevented if the photos are too big."
13005
  msgstr ""
13006
 
13007
+ #: wppa-settings-autosave.php:6492
13008
+ msgid "Upload memory check admin"
13009
  msgstr ""
13010
 
13011
+ #: wppa-settings-autosave.php:6503
13012
+ msgid "Comment captcha"
13013
  msgstr ""
13014
 
13015
+ #: wppa-settings-autosave.php:6504
13016
+ msgid "Use a simple calculate captcha on comments form."
13017
  msgstr ""
13018
 
13019
+ #: wppa-settings-autosave.php:6517
13020
+ msgid "Spam lifetime"
13021
  msgstr ""
13022
 
13023
+ #: wppa-settings-autosave.php:6518
13024
+ msgid "Delete spam comments when older than."
13025
  msgstr ""
13026
 
13027
+ #: wppa-settings-autosave.php:6545
13028
+ msgid "Avoid duplicates"
 
 
13029
  msgstr ""
13030
 
13031
+ #: wppa-settings-autosave.php:6546
13032
+ msgid "Prevent the creation of duplicate photos."
13033
  msgstr ""
13034
 
13035
+ #: wppa-settings-autosave.php:6547
13036
+ msgid ""
13037
+ "If checked: uploading, importing, copying or moving photos to other albums "
13038
+ "will be prevented when the desitation album already contains a photo with "
13039
+ "the same filename."
13040
  msgstr ""
13041
 
13042
+ #: wppa-settings-autosave.php:6556
13043
+ msgid "Blacklist user"
13044
  msgstr ""
13045
 
13046
+ #: wppa-settings-autosave.php:6557 wppa-settings-autosave.php:6558
13047
+ msgid "Set the status of all the users photos to 'pending'."
13048
  msgstr ""
13049
 
13050
+ #: wppa-settings-autosave.php:6559
13051
+ msgid "Also inhibits further uploads."
13052
  msgstr ""
13053
 
13054
+ #: wppa-settings-autosave.php:6565
13055
+ msgid "--- select a user to blacklist ---"
13056
  msgstr ""
13057
 
13058
+ #: wppa-settings-autosave.php:6575 wppa-settings-autosave.php:6580
13059
+ #: wppa-settings-autosave.php:6601 wppa-settings-autosave.php:6639
13060
+ #: wppa-settings-autosave.php:6644 wppa-settings-autosave.php:6665
13061
+ #: wppa-settings-autosave.php:9095 wppa-settings-autosave.php:9137
13062
+ msgid "The page will be reloaded after the action has taken place."
13063
  msgstr ""
13064
 
13065
+ #: wppa-settings-autosave.php:6581 wppa-settings-autosave.php:6645
13066
+ msgid "User login name <b>( case sensitive! )</b>:"
13067
  msgstr ""
13068
 
13069
+ #: wppa-settings-autosave.php:6589
13070
+ msgid "Unblacklist user"
13071
  msgstr ""
13072
 
13073
+ #: wppa-settings-autosave.php:6590
13074
+ msgid "Set the status of all the users photos to 'publish'."
13075
  msgstr ""
13076
 
13077
+ #: wppa-settings-autosave.php:6594
13078
+ msgid "--- select a user to unblacklist ---"
13079
  msgstr ""
13080
 
13081
+ #: wppa-settings-autosave.php:6609
13082
+ msgid "Photo owner change"
13083
  msgstr ""
13084
 
13085
+ #: wppa-settings-autosave.php:6610
13086
+ msgid "Administrators can change photo owner"
13087
  msgstr ""
13088
 
13089
+ #: wppa-settings-autosave.php:6620
13090
+ msgid "Super user"
 
 
 
13091
  msgstr ""
13092
 
13093
+ #: wppa-settings-autosave.php:6621
13094
+ msgid "Give these users all rights in wppa."
13095
  msgstr ""
13096
 
13097
+ #: wppa-settings-autosave.php:6622
13098
+ msgid "This gives the user all the administrator privileges within wppa."
13099
  msgstr ""
13100
 
13101
+ #: wppa-settings-autosave.php:6623
13102
  msgid ""
13103
+ "Make sure the user also has a role that has all the boxes ticked in Table "
13104
+ "VII-A"
13105
  msgstr ""
13106
 
13107
+ #: wppa-settings-autosave.php:6629
13108
+ msgid "--- select a user to make superuser ---"
13109
  msgstr ""
13110
 
13111
+ #: wppa-settings-autosave.php:6653
13112
+ msgid "Unsuper user"
 
 
13113
  msgstr ""
13114
 
13115
+ #: wppa-settings-autosave.php:6654
13116
+ msgid "Remove user from super user list."
13117
  msgstr ""
13118
 
13119
+ #: wppa-settings-autosave.php:6658
13120
+ msgid "--- select a user to unmake superuser ---"
 
13121
  msgstr ""
13122
 
13123
+ #: wppa-settings-autosave.php:6691
13124
+ msgid "Table VIII:"
13125
  msgstr ""
13126
 
13127
+ #: wppa-settings-autosave.php:6691
13128
+ msgid "Actions:"
13129
  msgstr ""
13130
 
13131
+ #: wppa-settings-autosave.php:6692
13132
+ msgid "This table lists all actions that can be taken to the wppa+ system"
13133
  msgstr ""
13134
 
13135
+ #: wppa-settings-autosave.php:6702 wppa-settings-autosave.php:7432
13136
+ msgid "Specification"
13137
  msgstr ""
13138
 
13139
+ #: wppa-settings-autosave.php:6703 wppa-settings-autosave.php:7433
13140
+ #: wppa-settings-autosave.php:10003 wppa-settings-autosave.php:10025
13141
+ msgid "Do it!"
13142
  msgstr ""
13143
 
13144
+ #: wppa-settings-autosave.php:6705 wppa-settings-autosave.php:7435
13145
+ msgid "To Go"
 
 
13146
  msgstr ""
13147
 
13148
+ #: wppa-settings-autosave.php:6713
13149
+ msgid "Harmless and reverseable actions"
13150
  msgstr ""
13151
 
13152
+ #: wppa-settings-autosave.php:6715
13153
+ msgid "Ignore concurrency"
13154
  msgstr ""
13155
 
13156
+ #: wppa-settings-autosave.php:6716
13157
+ msgid "Ignore the prevention of concurrent actions."
13158
  msgstr ""
13159
 
13160
+ #: wppa-settings-autosave.php:6717
13161
+ msgid ""
13162
+ "This setting is meant to recover from deadlock situations only. Use with "
13163
+ "care!"
13164
  msgstr ""
13165
 
13166
+ #: wppa-settings-autosave.php:6728
13167
+ msgid "Setup"
13168
  msgstr ""
13169
 
13170
+ #: wppa-settings-autosave.php:6729
13171
+ msgid "Re-initialize plugin."
13172
  msgstr ""
13173
 
13174
+ #: wppa-settings-autosave.php:6730
13175
+ msgid ""
13176
+ "Re-initilizes the plugin, (re)creates database tables and sets up default "
13177
+ "settings and directories if required."
13178
  msgstr ""
13179
 
13180
+ #: wppa-settings-autosave.php:6731
13181
  msgid ""
13182
+ "This action may be required to setup blogs in a multiblog (network) site as "
13183
+ "well as in rare cases to correct initilization errors."
13184
  msgstr ""
13185
 
13186
+ #: wppa-settings-autosave.php:6742
13187
+ msgid "Backup settings"
13188
  msgstr ""
13189
 
13190
+ #: wppa-settings-autosave.php:6743
13191
+ msgid "Save all settings into a backup file."
13192
  msgstr ""
13193
 
13194
+ #: wppa-settings-autosave.php:6744
13195
+ msgid "Saves all the settings into a backup file"
13196
  msgstr ""
13197
 
13198
+ #: wppa-settings-autosave.php:6755
13199
+ msgid "Load settings"
13200
  msgstr ""
13201
 
13202
+ #: wppa-settings-autosave.php:6756
13203
+ msgid "Restore all settings from defaults, a backup or skin file."
13204
+ msgstr ""
13205
+
13206
+ #: wppa-settings-autosave.php:6757
13207
  msgid ""
13208
+ "Restores all the settings from the factory supplied defaults, the backup you "
13209
+ "created or from a skin file."
13210
  msgstr ""
13211
 
13212
+ #: wppa-settings-autosave.php:6763
13213
+ msgid "--- set to defaults ---"
13214
  msgstr ""
13215
 
13216
+ #: wppa-settings-autosave.php:6766
13217
+ msgid "--- restore backup ---"
13218
  msgstr ""
13219
 
13220
+ #: wppa-settings-autosave.php:6788
13221
+ msgid "Regenerate"
13222
  msgstr ""
13223
 
13224
+ #: wppa-settings-autosave.php:6789 wppa-settings-autosave.php:6790
13225
+ msgid "Regenerate all thumbnails."
13226
  msgstr ""
13227
 
13228
+ #: wppa-settings-autosave.php:6793 wppa-settings-autosave.php:6897
13229
+ #: wppa-settings-autosave.php:6964
13230
+ msgid "Skip one"
13231
  msgstr ""
13232
 
13233
+ #: wppa-settings-autosave.php:6802
13234
+ msgid "Rerate"
13235
  msgstr ""
13236
 
13237
+ #: wppa-settings-autosave.php:6803
13238
+ msgid "Recalculate ratings."
13239
  msgstr ""
13240
 
13241
+ #: wppa-settings-autosave.php:6804
13242
  msgid ""
13243
+ "This function will recalculate all mean photo ratings from the ratings table."
 
13244
  msgstr ""
13245
 
13246
+ #: wppa-settings-autosave.php:6805
13247
+ msgid ""
13248
+ "You may need this function after the re-import of previously exported photos"
13249
  msgstr ""
13250
 
13251
+ #: wppa-settings-autosave.php:6816
13252
+ msgid "Lost and found"
13253
  msgstr ""
13254
 
13255
+ #: wppa-settings-autosave.php:6817
13256
+ msgid "Find \"lost\" photos."
13257
  msgstr ""
13258
 
13259
+ #: wppa-settings-autosave.php:6818
13260
+ msgid "This function will attempt to find lost photos."
13261
  msgstr ""
13262
 
13263
+ #: wppa-settings-autosave.php:6829
13264
+ msgid "Recuperate"
13265
  msgstr ""
13266
 
13267
+ #: wppa-settings-autosave.php:6831
13268
+ msgid ""
13269
+ "This action will attempt to find and register IPTC and EXIF data from photos "
13270
+ "in the WPPA+ system."
13271
  msgstr ""
13272
 
13273
+ #: wppa-settings-autosave.php:6842
13274
+ msgid "Remake Index Albums"
13275
  msgstr ""
13276
 
13277
+ #: wppa-settings-autosave.php:6843
13278
+ msgid "Remakes the index database table for albums."
13279
  msgstr ""
13280
 
13281
+ #: wppa-settings-autosave.php:6855
13282
+ msgid "Remake Index Photos"
13283
  msgstr ""
13284
 
13285
+ #: wppa-settings-autosave.php:6856
13286
+ msgid "Remakes the index database table for photos."
13287
  msgstr ""
13288
 
13289
+ #: wppa-settings-autosave.php:6874
13290
+ msgid "Convert to tree"
13291
  msgstr ""
13292
 
13293
+ #: wppa-settings-autosave.php:6875
13294
+ msgid "Convert filesystem to tree structure."
13295
  msgstr ""
13296
 
13297
+ #: wppa-settings-autosave.php:6878
13298
+ msgid "Convert to flat"
13299
  msgstr ""
13300
 
13301
+ #: wppa-settings-autosave.php:6879
13302
+ msgid "Convert filesystem to flat structure."
13303
  msgstr ""
13304
 
13305
+ #: wppa-settings-autosave.php:6881
13306
  msgid ""
13307
+ "If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
13308
+ "to flat first."
13309
  msgstr ""
13310
 
13311
+ #: wppa-settings-autosave.php:6893
13312
+ msgid "Remake the photofiles from photo sourcefiles."
13313
  msgstr ""
13314
 
13315
+ #: wppa-settings-autosave.php:6894
13316
+ msgid ""
13317
+ "This action will remake the fullsize images, thumbnail images, and will "
13318
+ "refresh the iptc and exif data for all photos where the source is found in "
13319
+ "the corresponding album sub-directory of the source directory."
13320
  msgstr ""
13321
 
13322
+ #: wppa-settings-autosave.php:6906
13323
+ msgid "Orientation only"
13324
  msgstr ""
13325
 
13326
+ #: wppa-settings-autosave.php:6907
13327
+ msgid "Remake non standard orientated photos only."
13328
  msgstr ""
13329
 
13330
+ #: wppa-settings-autosave.php:6920
13331
+ msgid "Recalc sizes"
13332
  msgstr ""
13333
 
13334
+ #: wppa-settings-autosave.php:6921
13335
+ msgid "Recalculate photosizes and save to db."
13336
  msgstr ""
13337
 
13338
+ #: wppa-settings-autosave.php:6933
13339
+ msgid "Renew album crypt"
13340
  msgstr ""
13341
 
13342
+ #: wppa-settings-autosave.php:6934
13343
+ msgid "Renew album encrcryption codes."
13344
+ msgstr ""
13345
+
13346
+ #: wppa-settings-autosave.php:6946
13347
+ msgid "Renew photo crypt"
13348
+ msgstr ""
13349
+
13350
+ #: wppa-settings-autosave.php:6947
13351
+ msgid "Renew photo encrcryption codes."
13352
+ msgstr ""
13353
+
13354
+ #: wppa-settings-autosave.php:6959
13355
+ msgid "Create orietation sources"
13356
  msgstr ""
13357
 
13358
+ #: wppa-settings-autosave.php:6960
13359
+ msgid "Creates correctly oriented pseudo source file."
13360
  msgstr ""
13361
 
13362
+ #: wppa-settings-autosave.php:6973
13363
+ msgid "Clearing and other irreverseable actions"
13364
  msgstr ""
13365
 
13366
+ #: wppa-settings-autosave.php:6975
13367
+ msgid "Clear ratings"
13368
  msgstr ""
13369
 
13370
+ #: wppa-settings-autosave.php:6976
13371
+ msgid "Reset all ratings."
13372
  msgstr ""
13373
 
13374
+ #: wppa-settings-autosave.php:6977
13375
+ msgid "WARNING: If checked, this will clear all ratings in the system!"
13376
  msgstr ""
13377
 
13378
+ #: wppa-settings-autosave.php:6988
13379
+ msgid "Clear viewcounts"
13380
  msgstr ""
13381
 
13382
+ #: wppa-settings-autosave.php:6989
13383
+ msgid "Reset all viewcounts."
 
 
13384
  msgstr ""
13385
 
13386
+ #: wppa-settings-autosave.php:6990
13387
+ msgid "WARNING: If checked, this will clear all viewcounts in the system!"
13388
  msgstr ""
13389
 
13390
+ #: wppa-settings-autosave.php:7001
13391
+ msgid "Reset IPTC"
13392
  msgstr ""
13393
 
13394
+ #: wppa-settings-autosave.php:7002
13395
+ msgid "Clear all IPTC data."
 
 
13396
  msgstr ""
13397
 
13398
+ #: wppa-settings-autosave.php:7003
13399
+ msgid "WARNING: If checked, this will clear all IPTC data in the system!"
 
 
13400
  msgstr ""
13401
 
13402
+ #: wppa-settings-autosave.php:7014
13403
+ msgid "Reset EXIF"
13404
  msgstr ""
13405
 
13406
+ #: wppa-settings-autosave.php:7015
13407
+ msgid "Clear all EXIF data."
13408
  msgstr ""
13409
 
13410
+ #: wppa-settings-autosave.php:7016
13411
+ msgid "WARNING: If checked, this will clear all EXIF data in the system!"
 
 
13412
  msgstr ""
13413
 
13414
+ #: wppa-settings-autosave.php:7027
13415
+ msgid "Apply New Photodesc"
13416
  msgstr ""
13417
 
13418
+ #: wppa-settings-autosave.php:7028
13419
+ msgid "Apply New photo description on all photos in the system."
13420
  msgstr ""
13421
 
13422
+ #: wppa-settings-autosave.php:7040
13423
+ msgid "Append to photodesc"
13424
  msgstr ""
13425
 
13426
+ #: wppa-settings-autosave.php:7041
13427
+ msgid "Append this text to all photo descriptions."
13428
  msgstr ""
13429
 
13430
+ #: wppa-settings-autosave.php:7055
13431
+ msgid "Remove from photodesc"
13432
  msgstr ""
13433
 
13434
+ #: wppa-settings-autosave.php:7056
13435
+ msgid "Remove this text from all photo descriptions."
13436
  msgstr ""
13437
 
13438
+ #: wppa-settings-autosave.php:7070
13439
+ msgid "Remove empty albums"
13440
  msgstr ""
13441
 
13442
+ #: wppa-settings-autosave.php:7071
13443
+ msgid "Removes albums that are not used."
13444
  msgstr ""
13445
 
13446
+ #: wppa-settings-autosave.php:7083
13447
+ msgid "Remove file-ext"
13448
  msgstr ""
13449
 
13450
+ #: wppa-settings-autosave.php:7084
13451
+ msgid "Remove possible file extension from photo name."
13452
  msgstr ""
13453
 
13454
+ #: wppa-settings-autosave.php:7085
13455
+ msgid ""
13456
+ "This may be required for old photos, uploaded when the option in Table IX-D3 "
13457
+ "was not yet available/selected."
13458
  msgstr ""
13459
 
13460
+ #: wppa-settings-autosave.php:7096
13461
+ msgid "Re-add file-ext"
13462
  msgstr ""
13463
 
13464
+ #: wppa-settings-autosave.php:7097
13465
+ msgid "Revert the <i>Remove file-ext</i> action."
13466
  msgstr ""
13467
 
13468
+ #: wppa-settings-autosave.php:7109
13469
+ msgid "Watermark all"
13470
  msgstr ""
13471
 
13472
+ #: wppa-settings-autosave.php:7110
13473
+ msgid "Apply watermark according to current settings to all photos."
13474
  msgstr ""
13475
 
13476
+ #: wppa-settings-autosave.php:7111
13477
+ msgid "See Table IX_F for the current watermark settings"
13478
  msgstr ""
13479
 
13480
+ #: wppa-settings-autosave.php:7122
13481
+ msgid "Create all autopages"
13482
  msgstr ""
13483
 
13484
+ #: wppa-settings-autosave.php:7123
13485
+ msgid "Create all the pages to display slides individually."
13486
  msgstr ""
13487
 
13488
+ #: wppa-settings-autosave.php:7124 wppa-settings-autosave.php:7138
13489
+ msgid "See also Table IV-A10."
13490
  msgstr ""
13491
 
13492
+ #: wppa-settings-autosave.php:7125
13493
+ msgid ""
13494
+ "Make sure you have a custom menu and the \"Automatically add new top-level "
13495
+ "pages to this menu\" box UNticked!!"
13496
  msgstr ""
13497
 
13498
+ #: wppa-settings-autosave.php:7136
13499
+ msgid "Delete all autopages"
13500
  msgstr ""
13501
 
13502
+ #: wppa-settings-autosave.php:7137
13503
+ msgid "Delete all the pages to display slides individually."
13504
  msgstr ""
13505
 
13506
+ #: wppa-settings-autosave.php:7150
13507
+ msgid "Leading zeroes"
13508
  msgstr ""
13509
 
13510
+ #: wppa-settings-autosave.php:7151
13511
+ msgid "If photoname numeric, add leading zeros"
 
13512
  msgstr ""
13513
 
13514
+ #: wppa-settings-autosave.php:7152
13515
+ msgid ""
13516
+ "You can extend the name with leading zeros, so alphabetic sort becomes equal "
13517
+ "to numeric sort order."
13518
  msgstr ""
13519
 
13520
+ #: wppa-settings-autosave.php:7155
13521
+ msgid "Total chars"
13522
  msgstr ""
13523
 
13524
+ #: wppa-settings-autosave.php:7164
13525
+ msgid "Add GPX tag"
13526
  msgstr ""
13527
 
13528
+ #: wppa-settings-autosave.php:7165
13529
+ msgid "Make sure photos with gpx data have a Gpx tag"
13530
  msgstr ""
13531
 
13532
+ #: wppa-settings-autosave.php:7178 wppa-settings-autosave.php:8149
13533
+ msgid "Optimize files"
13534
  msgstr ""
13535
 
13536
+ #: wppa-settings-autosave.php:7179
13537
+ msgid "Optimize with EWWW image optimizer"
13538
  msgstr ""
13539
 
13540
+ #: wppa-settings-autosave.php:7192
13541
+ msgid "Edit tag"
 
 
 
13542
  msgstr ""
13543
 
13544
+ #: wppa-settings-autosave.php:7193
13545
+ msgid "Globally change a tagname."
13546
  msgstr ""
13547
 
13548
+ #: wppa-settings-autosave.php:7199
13549
+ msgid "-select a tag-"
 
13550
  msgstr ""
13551
 
13552
+ #: wppa-settings-autosave.php:7205
13553
+ msgid "Tag:"
13554
  msgstr ""
13555
 
13556
+ #: wppa-settings-autosave.php:7206
13557
+ msgid "Change to:"
13558
  msgstr ""
13559
 
13560
+ #: wppa-settings-autosave.php:7215
13561
+ msgid "Synchronize Cloudinary"
 
 
13562
  msgstr ""
13563
 
13564
+ #: wppa-settings-autosave.php:7216
13565
+ msgid "Removes/adds images in the cloud."
13566
  msgstr ""
13567
 
13568
+ #: wppa-settings-autosave.php:7217
13569
+ msgid "Removes old images and verifies/adds new images to Cloudinary."
13570
  msgstr ""
13571
 
13572
+ #: wppa-settings-autosave.php:7218
13573
+ msgid "See Table IX-K4.7 for the configured lifetime."
13574
  msgstr ""
13575
 
13576
+ #: wppa-settings-autosave.php:7229
13577
+ msgid "Fix tags"
13578
  msgstr ""
13579
 
13580
+ #: wppa-settings-autosave.php:7230
13581
+ msgid "Make sure photo tags format is uptodate"
13582
  msgstr ""
13583
 
13584
+ #: wppa-settings-autosave.php:7231
13585
+ msgid "Fixes tags to be conform current database rules."
13586
  msgstr ""
13587
 
13588
+ #: wppa-settings-autosave.php:7242
13589
+ msgid "Fix cats"
13590
  msgstr ""
13591
 
13592
+ #: wppa-settings-autosave.php:7243
13593
+ msgid "Make sure album cats format is uptodate"
13594
  msgstr ""
13595
 
13596
+ #: wppa-settings-autosave.php:7244
13597
+ msgid "Fixes cats to be conform current database rules."
13598
  msgstr ""
13599
 
13600
+ #: wppa-settings-autosave.php:7255
13601
+ msgid "Set owner to name"
 
 
13602
  msgstr ""
13603
 
13604
+ #: wppa-settings-autosave.php:7256
13605
+ msgid "If photoname equals user display name, set him owner."
13606
  msgstr ""
13607
 
13608
+ #: wppa-settings-autosave.php:7268
13609
+ msgid "Move all photos"
13610
  msgstr ""
13611
 
13612
+ #: wppa-settings-autosave.php:7269
13613
+ msgid "Move all photos from one album to another album."
13614
  msgstr ""
13615
 
13616
+ #: wppa-settings-autosave.php:7281
13617
+ msgid "From"
 
 
13618
  msgstr ""
13619
 
13620
+ #: wppa-settings-autosave.php:7282
13621
+ msgid "Move from album"
13622
  msgstr ""
13623
 
13624
+ #: wppa-settings-autosave.php:7308
13625
+ msgid "To"
13626
  msgstr ""
13627
 
13628
+ #: wppa-settings-autosave.php:7309
13629
+ msgid "Move to album"
13630
  msgstr ""
13631
 
13632
+ #: wppa-settings-autosave.php:7350
13633
+ msgid "Listings"
13634
  msgstr ""
13635
 
13636
+ #: wppa-settings-autosave.php:7352
13637
+ msgid "List Logfile"
13638
  msgstr ""
13639
 
13640
+ #: wppa-settings-autosave.php:7353
13641
+ msgid "Show the content of wppa+ (error) log."
13642
  msgstr ""
13643
 
13644
+ #: wppa-settings-autosave.php:7357
13645
+ msgid "Purge logfile"
13646
  msgstr ""
13647
 
13648
+ #: wppa-settings-autosave.php:7366
13649
+ msgid "List Ratings"
13650
  msgstr ""
13651
 
13652
+ #: wppa-settings-autosave.php:7367
13653
+ msgid "Show the most recent ratings."
13654
  msgstr ""
13655
 
13656
+ #: wppa-settings-autosave.php:7380
13657
+ msgid "List Index"
13658
  msgstr ""
13659
 
13660
+ #: wppa-settings-autosave.php:7381
13661
+ msgid "Show the content if the index table."
13662
  msgstr ""
13663
 
13664
+ #: wppa-settings-autosave.php:7385
13665
+ msgid "Start at text:"
13666
  msgstr ""
13667
 
13668
+ #: wppa-settings-autosave.php:7395
13669
+ msgid "List active sessions"
13670
  msgstr ""
13671
 
13672
+ #: wppa-settings-autosave.php:7396
13673
+ msgid "Show the content of the sessions table."
13674
  msgstr ""
13675
 
13676
+ #: wppa-settings-autosave.php:7409
13677
+ msgid "List comments"
 
 
13678
  msgstr ""
13679
 
13680
+ #: wppa-settings-autosave.php:7410
13681
+ msgid "Show the content of the comments table."
13682
  msgstr ""
13683
 
13684
+ #: wppa-settings-autosave.php:7416
13685
+ msgid "Order by:"
13686
  msgstr ""
13687
 
13688
+ #: wppa-settings-autosave.php:7445
13689
+ msgid "Table IX:"
13690
  msgstr ""
13691
 
13692
+ #: wppa-settings-autosave.php:7445
13693
+ msgid "Miscellaneous:"
13694
  msgstr ""
13695
 
13696
+ #: wppa-settings-autosave.php:7446
13697
+ msgid "This table lists all settings that do not fit into an other table"
13698
  msgstr ""
13699
 
13700
+ #: wppa-settings-autosave.php:7464
13701
+ msgid "Internal engine related settings"
13702
  msgstr ""
13703
 
13704
+ #: wppa-settings-autosave.php:7466
13705
+ msgid "WPPA+ Filter priority"
13706
  msgstr ""
13707
 
13708
+ #: wppa-settings-autosave.php:7467
13709
+ msgid "Sets the priority of the wppa+ content filter."
13710
  msgstr ""
13711
 
13712
+ #: wppa-settings-autosave.php:7468 wppa-settings-autosave.php:7477
13713
+ msgid ""
13714
+ "If you encounter conflicts with the theme or other plugins, increasing this "
13715
+ "value sometimes helps. Use with great care!"
13716
  msgstr ""
13717
 
13718
+ #: wppa-settings-autosave.php:7475
13719
+ msgid "Do_shortcode priority"
13720
  msgstr ""
13721
 
13722
+ #: wppa-settings-autosave.php:7476
13723
+ msgid "Sets the priority of the do_shortcode() content filter."
 
 
13724
  msgstr ""
13725
 
13726
+ #: wppa-settings-autosave.php:7484
13727
+ msgid "WPPA shortcode at Filter priority"
13728
  msgstr ""
13729
 
13730
+ #: wppa-settings-autosave.php:7485
13731
+ msgid "Execute shortcode expansion on filter priority in posts and pages."
13732
  msgstr ""
13733
 
13734
+ #: wppa-settings-autosave.php:7486 wppa-settings-autosave.php:7495
13735
+ msgid "Use to fix certain layout problems"
13736
  msgstr ""
13737
 
13738
+ #: wppa-settings-autosave.php:7493
13739
+ msgid "WPPA shortcode at Filter priority widget"
13740
  msgstr ""
13741
 
13742
+ #: wppa-settings-autosave.php:7494
13743
+ msgid "Execute shortcode expansion on filter priority in widgets."
13744
  msgstr ""
13745
 
13746
+ #: wppa-settings-autosave.php:7502
13747
+ msgid "JPG image quality"
13748
  msgstr ""
13749
 
13750
+ #: wppa-settings-autosave.php:7503
13751
+ msgid "The jpg quality when photos are downsized"
13752
  msgstr ""
13753
 
13754
+ #: wppa-settings-autosave.php:7504
13755
+ msgid "The higher the number the better the quality but the larger the file"
13756
  msgstr ""
13757
 
13758
+ #: wppa-settings-autosave.php:7505
13759
+ msgid "Possible values 20..100"
13760
  msgstr ""
13761
 
13762
+ #: wppa-settings-autosave.php:7512
13763
+ msgid "Allow WPPA+ Debugging"
13764
  msgstr ""
13765
 
13766
+ #: wppa-settings-autosave.php:7513
13767
+ msgid "Allow the use of &amp;debug=.. in urls to this site."
13768
  msgstr ""
13769
 
13770
+ #: wppa-settings-autosave.php:7514
13771
+ msgid ""
13772
+ "If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
13773
+ "site will generate the display of special WPPA+ diagnostics, as well as php "
13774
+ "warnings"
13775
  msgstr ""
13776
 
13777
+ #: wppa-settings-autosave.php:7521
13778
+ msgid "Auto continue"
13779
  msgstr ""
13780
 
13781
+ #: wppa-settings-autosave.php:7522
13782
+ msgid "Continue automatic after time out"
13783
  msgstr ""
13784
 
13785
+ #: wppa-settings-autosave.php:7523
 
13786
  msgid ""
13787
+ "If checked, an attempt will be made to restart an admin process when the "
13788
+ "time is out."
13789
  msgstr ""
13790
 
13791
+ #: wppa-settings-autosave.php:7531
13792
+ msgid "Set max execution time here."
13793
  msgstr ""
13794
 
13795
+ #: wppa-settings-autosave.php:7532
13796
  msgid ""
13797
+ "If your php config does not properly set the max execution time, you can set "
13798
+ "it here. Seconds, 0 means do not change."
13799
  msgstr ""
13800
 
13801
+ #: wppa-settings-autosave.php:7533
13802
+ msgid "A safe value is 45 in most cases"
13803
  msgstr ""
13804
 
13805
+ #: wppa-settings-autosave.php:7534
13806
+ #, php-format
13807
+ msgid "The PHP setting max_execution_time is set to %s."
13808
  msgstr ""
13809
 
13810
+ #: wppa-settings-autosave.php:7542
13811
+ msgid "Feed use thumb"
 
 
13812
  msgstr ""
13813
 
13814
+ #: wppa-settings-autosave.php:7543
13815
+ msgid "Feeds use thumbnail pictures always."
 
 
13816
  msgstr ""
13817
 
13818
+ #: wppa-settings-autosave.php:7551
13819
+ msgid "Enable <i>in-line</i> settings"
13820
  msgstr ""
13821
 
13822
+ #: wppa-settings-autosave.php:7552
13823
+ msgid "Activates shortcode [wppa_set][/wppa_set]."
13824
  msgstr ""
13825
 
13826
+ #: wppa-settings-autosave.php:7553
13827
+ msgid ""
13828
+ "Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
13829
  msgstr ""
13830
 
13831
+ #: wppa-settings-autosave.php:7554
13832
+ msgid ""
13833
+ "Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
13834
+ "sets the thumbnail type to vertical masonry style"
13835
  msgstr ""
13836
 
13837
+ #: wppa-settings-autosave.php:7555
13838
+ msgid "Do not forget to reset with [wppa_set][/wppa_set]"
13839
  msgstr ""
13840
 
13841
+ #: wppa-settings-autosave.php:7556
13842
+ msgid "Use with great care! There is no check on validity of values!"
13843
  msgstr ""
13844
 
13845
+ #: wppa-settings-autosave.php:7563
13846
+ msgid "Runtime modifyable settings"
13847
  msgstr ""
13848
 
13849
+ #: wppa-settings-autosave.php:7564
13850
+ msgid "The setting slugs that may be altered using [wppa_set] shortcode."
13851
  msgstr ""
13852
 
13853
+ #: wppa-settings-autosave.php:7573
13854
+ msgid "WPPA+ Admin related miscellaneous settings"
13855
  msgstr ""
13856
 
13857
+ #: wppa-settings-autosave.php:7575
13858
+ msgid "Allow HTML"
13859
  msgstr ""
13860
 
13861
+ #: wppa-settings-autosave.php:7576
13862
+ msgid "Allow HTML in album and photo descriptions."
13863
  msgstr ""
13864
 
13865
+ #: wppa-settings-autosave.php:7577 wppa-settings-autosave.php:7586
13866
+ msgid ""
13867
+ "If checked: html is allowed. WARNING: No checks on syntax, it is your own "
13868
+ "responsability to close tags properly!"
13869
  msgstr ""
13870
 
13871
+ #: wppa-settings-autosave.php:7584
13872
+ msgid "Allow HTML custom"
13873
  msgstr ""
13874
 
13875
+ #: wppa-settings-autosave.php:7585
13876
+ msgid "Allow HTML in custom photo datafields."
13877
  msgstr ""
13878
 
13879
+ #: wppa-settings-autosave.php:7593
13880
+ msgid "Check tag balance"
13881
  msgstr ""
13882
 
13883
+ #: wppa-settings-autosave.php:7594
13884
+ msgid "Check if the HTML tags are properly closed: \"balanced\"."
13885
  msgstr ""
13886
 
13887
+ #: wppa-settings-autosave.php:7595
13888
+ msgid ""
13889
+ "If the HTML tags in an album or a photo description are not in balance, the "
13890
+ "description is not updated, an errormessage is displayed"
13891
  msgstr ""
13892
 
13893
+ #: wppa-settings-autosave.php:7602
13894
+ msgid "Use WP editor"
13895
  msgstr ""
13896
 
13897
+ #: wppa-settings-autosave.php:7603
13898
+ msgid "Use the wp editor for multiline text fields."
 
 
13899
  msgstr ""
13900
 
13901
+ #: wppa-settings-autosave.php:7611
13902
+ msgid "Album sel hierarchic"
13903
  msgstr ""
13904
 
13905
+ #: wppa-settings-autosave.php:7612
13906
+ msgid "Show albums with (grand)parents in selection lists."
13907
  msgstr ""
13908
 
13909
+ #: wppa-settings-autosave.php:7620
13910
+ msgid "Page sel hierarchic"
13911
  msgstr ""
13912
 
13913
+ #: wppa-settings-autosave.php:7621
13914
+ msgid "Show pages with (grand)parents in selection lists."
13915
  msgstr ""
13916
 
13917
+ #: wppa-settings-autosave.php:7630
13918
+ msgid "Photo admin page size"
13919
  msgstr ""
13920
 
13921
+ #: wppa-settings-autosave.php:7631
13922
  msgid ""
13923
+ "The number of photos per page on the <br/>Edit Album -> Manage photos and "
13924
+ "Edit Photos admin pages."
13925
  msgstr ""
13926
 
13927
+ #: wppa-settings-autosave.php:7641
13928
+ msgid "Comment admin page size"
13929
  msgstr ""
13930
 
13931
+ #: wppa-settings-autosave.php:7642
13932
+ msgid "The number of comments per page on the Comments admin pages."
13933
  msgstr ""
13934
 
13935
+ #: wppa-settings-autosave.php:7652
13936
+ msgid "Geo info edit"
13937
  msgstr ""
13938
 
13939
+ #: wppa-settings-autosave.php:7653
13940
+ msgid "Lattitude and longitude may be edited in photo admin."
 
 
13941
  msgstr ""
13942
 
13943
+ #: wppa-settings-autosave.php:7661
13944
+ msgid "Admin bar menu admin"
13945
  msgstr ""
13946
 
13947
+ #: wppa-settings-autosave.php:7662
13948
+ msgid "Show menu on admin bar on admin pages."
13949
  msgstr ""
13950
 
13951
+ #: wppa-settings-autosave.php:7670
13952
+ msgid "Admin bar menu frontend"
13953
  msgstr ""
13954
 
13955
+ #: wppa-settings-autosave.php:7671
13956
+ msgid "Show menu on admin bar on frontend pages."
13957
  msgstr ""
13958
 
13959
+ #: wppa-settings-autosave.php:7679
13960
+ msgid "Add shortcode to posts"
 
 
13961
  msgstr ""
13962
 
13963
+ #: wppa-settings-autosave.php:7680
13964
+ msgid "Add a shortcode to the end of all posts."
13965
  msgstr ""
13966
 
13967
+ #: wppa-settings-autosave.php:7688
13968
+ msgid "Shortcode to add"
13969
  msgstr ""
13970
 
13971
+ #: wppa-settings-autosave.php:7689
13972
+ msgid "The shortcode to be added to the posts."
13973
  msgstr ""
13974
 
13975
+ #: wppa-settings-autosave.php:7697
13976
+ msgid "We use Scripts"
13977
  msgstr ""
13978
 
13979
+ #: wppa-settings-autosave.php:7698
13980
+ msgid "Use scripting syntax in shortcode generator."
13981
  msgstr ""
13982
 
13983
+ #: wppa-settings-autosave.php:7699
13984
+ msgid ""
13985
+ "This setting defines if the shortcode generator outputs old style script "
13986
+ "tags or new style shortcodes."
13987
  msgstr ""
13988
 
13989
+ #: wppa-settings-autosave.php:7707
13990
+ msgid "Import page prieviews"
13991
  msgstr ""
13992
 
13993
+ #: wppa-settings-autosave.php:7708
13994
+ msgid "Show thumbnail previews in import admin page."
13995
  msgstr ""
13996
 
13997
+ #: wppa-settings-autosave.php:7716
13998
+ msgid "Upload audiostub"
13999
  msgstr ""
14000
 
14001
+ #: wppa-settings-autosave.php:7717
14002
+ msgid "Upload a new audio stub file"
14003
  msgstr ""
14004
 
14005
+ #: wppa-settings-autosave.php:7721
14006
+ msgid "Upload audio stub image"
14007
  msgstr ""
14008
 
14009
+ #: wppa-settings-autosave.php:7726
14010
+ msgid "Confirm create"
14011
  msgstr ""
14012
 
14013
+ #: wppa-settings-autosave.php:7727
14014
+ msgid "Display confirmation dialog before creating album."
14015
  msgstr ""
14016
 
14017
+ #: wppa-settings-autosave.php:7735
14018
+ msgid "Import source root"
14019
  msgstr ""
14020
 
14021
+ #: wppa-settings-autosave.php:7736
14022
+ msgid "Specify the highest level in the filesystem where to import from"
 
 
14023
  msgstr ""
14024
 
14025
+ #: wppa-settings-autosave.php:7753
14026
+ msgid "Allow import from WPPA+ source folders"
 
 
14027
  msgstr ""
14028
 
14029
+ #: wppa-settings-autosave.php:7754
14030
+ msgid "Only switch this on if you know what you are doing!"
14031
  msgstr ""
14032
 
14033
+ #: wppa-settings-autosave.php:7763
14034
+ msgid "SEO related settings"
14035
  msgstr ""
14036
 
14037
+ #: wppa-settings-autosave.php:7765
14038
+ msgid "Meta on page"
14039
  msgstr ""
14040
 
14041
+ #: wppa-settings-autosave.php:7766
14042
+ msgid "Meta tags for photos on the page."
14043
  msgstr ""
14044
 
14045
+ #: wppa-settings-autosave.php:7767
14046
+ msgid ""
14047
+ "If checked, the header of the page will contain metatags that refer to "
14048
+ "featured photos on the page in the page context."
14049
  msgstr ""
14050
 
14051
+ #: wppa-settings-autosave.php:7774
14052
+ msgid "Meta all"
14053
+ msgstr ""
14054
+
14055
+ #: wppa-settings-autosave.php:7775
14056
+ msgid "Meta tags for all featured photos."
14057
  msgstr ""
14058
 
14059
+ #: wppa-settings-autosave.php:7776
14060
  msgid ""
14061
+ "If checked, the header of the page will contain metatags that refer to all "
14062
+ "featured photo files."
14063
  msgstr ""
14064
 
14065
+ #: wppa-settings-autosave.php:7777
14066
+ msgid ""
14067
+ "If you have many featured photos, you might wish to uncheck this item to "
14068
+ "reduce the size of the page header."
14069
  msgstr ""
14070
 
14071
+ #: wppa-settings-autosave.php:7784
14072
+ msgid "Add og meta tags"
14073
  msgstr ""
14074
 
14075
+ #: wppa-settings-autosave.php:7785
14076
+ msgid "Add og meta tags to the page header."
14077
  msgstr ""
14078
 
14079
+ #: wppa-settings-autosave.php:7788
14080
+ msgid ""
14081
+ "Turning this off may affect the functionality of social media items in the "
14082
+ "share box that rely on open graph tags information."
14083
  msgstr ""
14084
 
14085
+ #: wppa-settings-autosave.php:7794
14086
+ msgid "Image Alt attribute type"
14087
  msgstr ""
14088
 
14089
+ #: wppa-settings-autosave.php:7795
14090
+ msgid "Select kind of HTML alt=\"\" content for images."
14091
  msgstr ""
14092
 
14093
+ #: wppa-settings-autosave.php:7798
14094
+ msgid "photo name"
14095
  msgstr ""
14096
 
14097
+ #: wppa-settings-autosave.php:7798
14098
+ msgid "name without file-ext"
14099
  msgstr ""
14100
 
14101
+ #: wppa-settings-autosave.php:7798
14102
+ msgid "set in album admin"
14103
  msgstr ""
14104
 
14105
+ #: wppa-settings-autosave.php:7805
14106
+ msgid "New Album and New Photo related miscellaneous settings"
14107
  msgstr ""
14108
 
14109
+ #: wppa-settings-autosave.php:7843
14110
+ msgid "Maximum time an album is indicated as New"
14111
  msgstr ""
14112
 
14113
+ #: wppa-settings-autosave.php:7851
14114
+ msgid "New Photo"
 
14115
  msgstr ""
14116
 
14117
+ #: wppa-settings-autosave.php:7852
14118
+ msgid "Maximum time a photo is indicated as New"
14119
  msgstr ""
14120
 
14121
+ #: wppa-settings-autosave.php:7860
14122
+ msgid "Modified Album"
14123
  msgstr ""
14124
 
14125
+ #: wppa-settings-autosave.php:7861
14126
+ msgid "Maximum time an album is indicated as Modified"
14127
  msgstr ""
14128
 
14129
+ #: wppa-settings-autosave.php:7869
14130
+ msgid "Modified Photo"
14131
  msgstr ""
14132
 
14133
+ #: wppa-settings-autosave.php:7870
14134
+ msgid "Maximum time a photo is indicated as Modofied"
14135
  msgstr ""
14136
 
14137
+ #: wppa-settings-autosave.php:7878
14138
+ msgid "Use text labels"
 
 
14139
  msgstr ""
14140
 
14141
+ #: wppa-settings-autosave.php:7879
14142
+ msgid "Use editable text for the New and Modified labels"
 
 
14143
  msgstr ""
14144
 
14145
+ #: wppa-settings-autosave.php:7880
14146
+ msgid "If UNticked, you can specify the urls for custom images to be used."
14147
  msgstr ""
14148
 
14149
+ #: wppa-settings-autosave.php:7891
14150
+ msgid "Orange"
14151
  msgstr ""
14152
 
14153
+ #: wppa-settings-autosave.php:7892
14154
+ msgid "Yellow"
14155
  msgstr ""
14156
 
14157
+ #: wppa-settings-autosave.php:7895
14158
+ msgid "Purple"
 
 
14159
  msgstr ""
14160
 
14161
+ #: wppa-settings-autosave.php:7896
14162
+ msgid "Black/white"
14163
  msgstr ""
14164
 
14165
+ #: wppa-settings-autosave.php:7908 wppa-settings-autosave.php:7930
14166
+ msgid "New label"
14167
  msgstr ""
14168
 
14169
+ #: wppa-settings-autosave.php:7909
14170
+ msgid "Specify the \"New\" indicator details."
14171
  msgstr ""
14172
 
14173
+ #: wppa-settings-autosave.php:7910 wppa-settings-autosave.php:7921
14174
+ msgid "If you use qTranslate, the text may be multilingual."
14175
  msgstr ""
14176
 
14177
+ #: wppa-settings-autosave.php:7919 wppa-settings-autosave.php:7939
14178
+ msgid "Modified label"
14179
  msgstr ""
14180
 
14181
+ #: wppa-settings-autosave.php:7920
14182
+ msgid "Specify the \"Modified\" indicator details."
14183
  msgstr ""
14184
 
14185
+ #: wppa-settings-autosave.php:7931
14186
+ msgid "Specify the \"New\" indicator url."
14187
  msgstr ""
14188
 
14189
+ #: wppa-settings-autosave.php:7940
14190
+ msgid "Specify the \"Modified\" indicator url."
14191
  msgstr ""
14192
 
14193
+ #: wppa-settings-autosave.php:7948
14194
+ msgid "Limit LasTen New"
14195
  msgstr ""
14196
 
14197
+ #: wppa-settings-autosave.php:7949
14198
+ msgid "Limits the LasTen photos to those that are 'New', or newly modified."
14199
  msgstr ""
14200
 
14201
+ #: wppa-settings-autosave.php:7950
14202
+ msgid ""
14203
+ "If you tick this box and configured the new photo time, you can even limit "
14204
+ "the number by the setting in Table I-F7, or set that number to an unlikely "
14205
+ "high value."
14206
  msgstr ""
14207
 
14208
+ #: wppa-settings-autosave.php:7957
14209
+ msgid "LasTen use Modified"
14210
  msgstr ""
14211
 
14212
+ #: wppa-settings-autosave.php:7958
14213
+ msgid ""
14214
+ "Use the time modified rather than time upload for LasTen widget/shortcode."
14215
  msgstr ""
14216
 
14217
+ #: wppa-settings-autosave.php:7966
14218
+ msgid "Apply Newphoto desc"
14219
  msgstr ""
14220
 
14221
+ #: wppa-settings-autosave.php:7967
14222
+ msgid "Give each new photo a standard description."
14223
  msgstr ""
14224
 
14225
+ #: wppa-settings-autosave.php:7968
14226
+ msgid ""
14227
+ "If checked, each new photo will get the description (template) as specified "
14228
+ "in the next item."
14229
  msgstr ""
14230
 
14231
+ #: wppa-settings-autosave.php:7975
14232
+ msgid "New photo desc"
14233
  msgstr ""
14234
 
14235
+ #: wppa-settings-autosave.php:7976
14236
+ msgid "The description (template) to add to a new photo."
14237
  msgstr ""
14238
 
14239
+ #: wppa-settings-autosave.php:7977
14240
+ msgid "Enter the default description."
14241
  msgstr ""
14242
 
14243
+ #: wppa-settings-autosave.php:7978
14244
+ msgid "If you use html, please check item A-1 of this table."
14245
  msgstr ""
14246
 
14247
+ #: wppa-settings-autosave.php:7985
14248
+ msgid "New photo owner"
14249
  msgstr ""
14250
 
14251
+ #: wppa-settings-autosave.php:7986
14252
+ msgid "The owner of a new uploaded photo."
14253
  msgstr ""
14254
 
14255
+ #: wppa-settings-autosave.php:7987
14256
+ msgid "If you leave this blank, the uploader will be set as the owner"
14257
  msgstr ""
14258
 
14259
+ #: wppa-settings-autosave.php:7989
14260
+ msgid "leave blank or enter login name"
14261
  msgstr ""
14262
 
14263
+ #: wppa-settings-autosave.php:7995
14264
+ msgid "New albums are created with this upload limit."
14265
  msgstr ""
14266
 
14267
+ #: wppa-settings-autosave.php:7996
14268
+ msgid ""
14269
+ "Administrators can change the limit settings in the \"Edit Album Information"
14270
+ "\" admin page."
14271
  msgstr ""
14272
 
14273
+ #: wppa-settings-autosave.php:8013
14274
+ msgid "Default parent"
14275
  msgstr ""
14276
 
14277
+ #: wppa-settings-autosave.php:8014
14278
+ msgid "The parent album of new albums."
14279
  msgstr ""
14280
 
14281
+ #: wppa-settings-autosave.php:8031
14282
+ msgid "Default parent always"
14283
  msgstr ""
14284
 
14285
+ #: wppa-settings-autosave.php:8032
14286
+ msgid ""
14287
+ "The parent album of new albums is always the default, except for "
14288
+ "administrators."
14289
  msgstr ""
14290
 
14291
+ #: wppa-settings-autosave.php:8040
14292
+ msgid "Show album full"
14293
  msgstr ""
14294
 
14295
+ #: wppa-settings-autosave.php:8041
14296
+ msgid "Show the Upload limit reached message if appropriate."
14297
  msgstr ""
14298
 
14299
+ #: wppa-settings-autosave.php:8049
14300
+ msgid "Grant an album"
14301
  msgstr ""
14302
 
14303
+ #: wppa-settings-autosave.php:8050
14304
+ msgid "Create an album for each user logging in."
14305
  msgstr ""
14306
 
14307
+ #: wppa-settings-autosave.php:8058
14308
+ msgid "Grant album name"
14309
  msgstr ""
14310
 
14311
+ #: wppa-settings-autosave.php:8059
14312
+ msgid "The name to be used for the album."
14313
  msgstr ""
14314
 
14315
+ #: wppa-settings-autosave.php:8062
14316
+ msgid "Login name"
14317
  msgstr ""
14318
 
14319
+ #: wppa-settings-autosave.php:8062 wppa-upldr-widget.php:182
14320
+ msgid "Display name"
14321
  msgstr ""
14322
 
14323
+ #: wppa-settings-autosave.php:8062
14324
+ msgid "Id"
14325
  msgstr ""
14326
 
14327
+ #: wppa-settings-autosave.php:8062
14328
+ msgid "Firstname Lastname"
14329
  msgstr ""
14330
 
14331
+ #: wppa-settings-autosave.php:8069
14332
+ msgid "Grant parent"
14333
  msgstr ""
14334
 
14335
+ #: wppa-settings-autosave.php:8070
14336
+ msgid "The parent album of the auto created albums."
 
 
14337
  msgstr ""
14338
 
14339
+ #: wppa-settings-autosave.php:8071
14340
  msgid ""
14341
+ "You may select multiple albums. All logged in visitors will get their own "
14342
+ "sub-album in each granted parent."
14343
  msgstr ""
14344
 
14345
+ #: wppa-settings-autosave.php:8087
14346
+ msgid "Max user albums"
14347
  msgstr ""
14348
 
14349
+ #: wppa-settings-autosave.php:8088
14350
+ msgid "The max number of albums a user can create."
14351
  msgstr ""
14352
 
14353
+ #: wppa-settings-autosave.php:8089
14354
+ msgid ""
14355
+ "The maximum number of albums a user can create when he is not admin and "
14356
+ "owner only is active"
14357
  msgstr ""
14358
 
14359
+ #: wppa-settings-autosave.php:8090
14360
+ msgid "A number of 0 means No limit"
14361
  msgstr ""
14362
 
14363
+ #: wppa-settings-autosave.php:8097
14364
+ msgid "Default photo name"
14365
  msgstr ""
14366
 
14367
+ #: wppa-settings-autosave.php:8098
14368
+ msgid "Select the way the name of a new uploaded photo should be determined."
 
14369
  msgstr ""
14370
 
14371
+ #: wppa-settings-autosave.php:8101
14372
+ msgid "Filename"
14373
  msgstr ""
14374
 
14375
+ #: wppa-settings-autosave.php:8102
14376
+ msgid "Filename without extension"
14377
  msgstr ""
14378
 
14379
+ #: wppa-settings-autosave.php:8103
14380
+ msgid "IPTC Tag 2#005 (Graphic name)"
14381
  msgstr ""
14382
 
14383
+ #: wppa-settings-autosave.php:8104
14384
+ msgid "IPTC Tag 2#120 (Caption)"
 
 
14385
  msgstr ""
14386
 
14387
+ #: wppa-settings-autosave.php:8105
14388
+ msgid "No name at all"
 
 
14389
  msgstr ""
14390
 
14391
+ #: wppa-settings-autosave.php:8113
14392
+ msgid "Default coverphoto"
14393
  msgstr ""
14394
 
14395
+ #: wppa-settings-autosave.php:8114
14396
+ msgid "Name of photofile to become cover image"
14397
  msgstr ""
14398
 
14399
+ #: wppa-settings-autosave.php:8115
14400
  msgid ""
14401
+ "If you name a photofile like this setting before upload, it will become the "
14402
+ "coverimage automaticly."
14403
  msgstr ""
14404
 
14405
+ #: wppa-settings-autosave.php:8122
14406
+ msgid "Copy Timestamp"
14407
  msgstr ""
14408
 
14409
+ #: wppa-settings-autosave.php:8123
14410
+ msgid "Copy timestamp when copying photo."
14411
  msgstr ""
14412
 
14413
+ #: wppa-settings-autosave.php:8124
14414
+ msgid "If checked, the copied photo is not \"new\""
 
 
14415
  msgstr ""
14416
 
14417
+ #: wppa-settings-autosave.php:8131
14418
+ msgid "Copy Owner"
14419
  msgstr ""
14420
 
14421
+ #: wppa-settings-autosave.php:8132
14422
+ msgid "Copy the owner when copying photo."
14423
  msgstr ""
14424
 
14425
+ #: wppa-settings-autosave.php:8140
14426
+ msgid "FE Albums public"
 
 
14427
  msgstr ""
14428
 
14429
+ #: wppa-settings-autosave.php:8141
14430
+ msgid "Frontend created albums are --- public ---"
14431
  msgstr ""
14432
 
14433
+ #: wppa-settings-autosave.php:8150
14434
+ msgid "Optimize image files right after upload/import"
14435
  msgstr ""
14436
 
14437
+ #: wppa-settings-autosave.php:8151
14438
+ msgid "This option requires the plugin EWWW Image Optimizer to be activated"
14439
  msgstr ""
14440
 
14441
+ #: wppa-settings-autosave.php:8158
14442
+ msgid "Default album linktype"
14443
  msgstr ""
14444
 
14445
+ #: wppa-settings-autosave.php:8159
14446
+ msgid "The album linktype for new albums"
14447
  msgstr ""
14448
 
14449
+ #: wppa-settings-autosave.php:8178
14450
+ msgid "Search Albums and Photos related settings"
14451
  msgstr ""
14452
 
14453
+ #: wppa-settings-autosave.php:8180
14454
+ msgid "Search page"
 
 
14455
  msgstr ""
14456
 
14457
+ #: wppa-settings-autosave.php:8181
14458
+ msgid "Display the search results on page."
14459
  msgstr ""
14460
 
14461
+ #: wppa-settings-autosave.php:8182
14462
+ msgid ""
14463
+ "Select the page to be used to display search results. The page MUST contain "
14464
+ "[wppa][/wppa]."
14465
  msgstr ""
14466
 
14467
+ #: wppa-settings-autosave.php:8183
14468
+ msgid "You may give it the title \"Search results\" or something alike."
 
 
14469
  msgstr ""
14470
 
14471
+ #: wppa-settings-autosave.php:8184
14472
+ msgid ""
14473
+ "Or you ou may use the standard page on which you display the generic album."
14474
  msgstr ""
14475
 
14476
+ #: wppa-settings-autosave.php:8217
14477
+ msgid "Exclude separate"
14478
  msgstr ""
14479
 
14480
+ #: wppa-settings-autosave.php:8218
14481
+ msgid "Do not search 'separate' albums."
14482
  msgstr ""
14483
 
14484
+ #: wppa-settings-autosave.php:8219
14485
+ msgid ""
14486
+ "When checked, albums (and photos in them) that have the parent set to --- "
14487
+ "separate --- will be excluded from being searched."
14488
  msgstr ""
14489
 
14490
+ #: wppa-settings-autosave.php:8220
14491
+ msgid ""
14492
+ "Except when you start searching in a 'saparate' album, with the \"search in "
14493
+ "current section\" box ticked."
14494
  msgstr ""
14495
 
14496
+ #: wppa-settings-autosave.php:8227
14497
+ msgid "Include tags"
14498
  msgstr ""
14499
 
14500
+ #: wppa-settings-autosave.php:8228
14501
+ msgid "Do also search the photo tags."
14502
  msgstr ""
14503
 
14504
+ #: wppa-settings-autosave.php:8229
14505
+ msgid "When checked, the tags of the photo will also be searched."
14506
  msgstr ""
14507
 
14508
+ #: wppa-settings-autosave.php:8236
14509
+ msgid "Include categories"
14510
  msgstr ""
14511
 
14512
+ #: wppa-settings-autosave.php:8237
14513
+ msgid "Do also search the album categories."
 
 
14514
  msgstr ""
14515
 
14516
+ #: wppa-settings-autosave.php:8238
14517
+ msgid "When checked, the categories of the album will also be searched."
14518
  msgstr ""
14519
 
14520
+ #: wppa-settings-autosave.php:8245
14521
+ msgid "Include comments"
14522
  msgstr ""
14523
 
14524
+ #: wppa-settings-autosave.php:8246
14525
+ msgid "Do also search the comments on photos."
 
 
14526
  msgstr ""
14527
 
14528
+ #: wppa-settings-autosave.php:8247
14529
+ msgid "When checked, the comments of the photos will also be searched."
14530
  msgstr ""
14531
 
14532
+ #: wppa-settings-autosave.php:8254
14533
+ msgid "Photos only"
14534
  msgstr ""
14535
 
14536
+ #: wppa-settings-autosave.php:8255
14537
+ msgid "Search for photos only."
14538
  msgstr ""
14539
 
14540
+ #: wppa-settings-autosave.php:8256
14541
+ msgid "When checked, only photos will be searched for."
14542
  msgstr ""
14543
 
14544
+ #: wppa-settings-autosave.php:8271
14545
+ msgid "Max albums found"
14546
  msgstr ""
14547
 
14548
+ #: wppa-settings-autosave.php:8272
14549
+ msgid "The maximum number of albums to be displayed."
14550
  msgstr ""
14551
 
14552
+ #: wppa-settings-autosave.php:8280
14553
+ msgid "Max photos found"
14554
  msgstr ""
14555
 
14556
+ #: wppa-settings-autosave.php:8281
14557
+ msgid "The maximum number of photos to be displayed."
14558
  msgstr ""
14559
 
14560
+ #: wppa-settings-autosave.php:8289
14561
+ msgid "Tags OR only"
14562
  msgstr ""
14563
 
14564
+ #: wppa-settings-autosave.php:8290
14565
+ msgid "No and / or buttons"
14566
  msgstr ""
14567
 
14568
+ #: wppa-settings-autosave.php:8291
14569
  msgid ""
14570
+ "Hide the and/or radiobuttons and do the or method in the multitag widget and "
14571
+ "shortcode."
14572
  msgstr ""
14573
 
14574
+ #: wppa-settings-autosave.php:8298
14575
+ msgid "Tags add Inverse"
14576
  msgstr ""
14577
 
14578
+ #: wppa-settings-autosave.php:8299
14579
+ msgid "Add a checkbox to invert the selection."
14580
  msgstr ""
14581
 
14582
+ #: wppa-settings-autosave.php:8300
14583
+ msgid "Adds an Invert (NOT) checkbox on the multitag widget and shortcode."
14584
  msgstr ""
14585
 
14586
+ #: wppa-settings-autosave.php:8307
14587
+ msgid "Floating searchtoken"
14588
+ msgstr ""
14589
+
14590
+ #: wppa-settings-autosave.php:8308
14591
+ msgid "A match need not start at the first char."
14592
  msgstr ""
14593
 
14594
+ #: wppa-settings-autosave.php:8309
14595
  msgid ""
14596
+ "A match is found while searching also when the entered token is somewhere in "
14597
+ "the middle of a word."
14598
  msgstr ""
14599
 
14600
+ #: wppa-settings-autosave.php:8310
14601
+ msgid "This works in indexed search only!"
14602
  msgstr ""
14603
 
14604
+ #: wppa-settings-autosave.php:8317
14605
+ msgid "Search results display"
14606
+ msgstr ""
14607
+
14608
+ #: wppa-settings-autosave.php:8318
14609
+ msgid "Select the way the search results should be displayed."
14610
  msgstr ""
14611
 
14612
+ #: wppa-settings-autosave.php:8319
14613
  msgid ""
14614
+ "If you select anything different from \"Albums and thumbnails\", \"Photos "
14615
+ "only\" is assumed (Table IX-E6)."
14616
  msgstr ""
14617
 
14618
+ #: wppa-settings-autosave.php:8321
14619
+ msgid "Albums and thumbnails"
14620
  msgstr ""
14621
 
14622
+ #: wppa-settings-autosave.php:8321
14623
+ msgid "Slideonly slideshow"
14624
  msgstr ""
14625
 
14626
+ #: wppa-settings-autosave.php:8328
14627
+ msgid "Name max length"
 
14628
  msgstr ""
14629
 
14630
+ #: wppa-settings-autosave.php:8329
14631
+ msgid "Max length of displayed photonames in supersearch selectionlist"
14632
  msgstr ""
14633
 
14634
+ #: wppa-settings-autosave.php:8330 wppa-settings-autosave.php:8339
14635
+ msgid ""
14636
+ "To limit the length of the selectionlist, enter the number of characters to "
14637
+ "show."
14638
  msgstr ""
14639
 
14640
+ #: wppa-settings-autosave.php:8337
14641
+ msgid "Text max length"
14642
  msgstr ""
14643
 
14644
+ #: wppa-settings-autosave.php:8338
14645
+ msgid "Max length of displayed photo text in supersearch selectionlist"
14646
  msgstr ""
14647
 
14648
+ #: wppa-settings-autosave.php:8346
14649
+ msgid "Search toptext"
14650
  msgstr ""
14651
 
14652
+ #: wppa-settings-autosave.php:8347
14653
+ msgid "The text at the top of the search box."
14654
  msgstr ""
14655
 
14656
+ #: wppa-settings-autosave.php:8348
14657
+ msgid "May contain unfiltered HTML."
14658
  msgstr ""
14659
 
14660
+ #: wppa-settings-autosave.php:8355
14661
+ msgid "Section search text"
14662
  msgstr ""
14663
 
14664
+ #: wppa-settings-autosave.php:8356 wppa-settings-autosave.php:8365
14665
+ msgid "The labeltext at the checkbox."
14666
  msgstr ""
14667
 
14668
+ #: wppa-settings-autosave.php:8364
14669
+ msgid "Results search text"
14670
  msgstr ""
14671
 
14672
+ #: wppa-settings-autosave.php:8374
14673
+ msgid "Watermark related settings"
14674
  msgstr ""
14675
 
14676
+ #: wppa-settings-autosave.php:8377
14677
+ msgid "Enable the application of watermarks."
 
 
14678
  msgstr ""
14679
 
14680
+ #: wppa-settings-autosave.php:8378
14681
+ msgid "If checked, photos can be watermarked during upload / import."
 
14682
  msgstr ""
14683
 
14684
+ #: wppa-settings-autosave.php:8387
14685
+ msgid "Watermark file"
14686
  msgstr ""
14687
 
14688
+ #: wppa-settings-autosave.php:8388
14689
+ msgid "The default watermarkfile to be used."
 
14690
  msgstr ""
14691
 
14692
+ #: wppa-settings-autosave.php:8389
14693
+ msgid "Watermark files are of type png and reside in"
 
 
14694
  msgstr ""
14695
 
14696
+ #: wppa-settings-autosave.php:8390
14697
+ msgid ""
14698
+ "A suitable watermarkfile typically consists of a transparent background and "
14699
+ "a black text or drawing."
14700
  msgstr ""
14701
 
14702
+ #: wppa-settings-autosave.php:8392
14703
  msgid ""
14704
+ "You may also select one of the textual watermark types at the bottom of the "
14705
+ "selection list."
14706
  msgstr ""
14707
 
14708
+ #: wppa-settings-autosave.php:8396
14709
+ msgid "position:"
14710
  msgstr ""
14711
 
14712
+ #: wppa-settings-autosave.php:8402
14713
+ msgid "Upload watermark"
14714
  msgstr ""
14715
 
14716
+ #: wppa-settings-autosave.php:8403
14717
+ msgid "Upload a new watermark file"
 
 
14718
  msgstr ""
14719
 
14720
+ #: wppa-settings-autosave.php:8407
14721
+ msgid "Upload watermark image"
14722
  msgstr ""
14723
 
14724
+ #: wppa-settings-autosave.php:8412
14725
+ msgid "Watermark opacity image"
14726
  msgstr ""
14727
 
14728
+ #: wppa-settings-autosave.php:8413
14729
+ msgid "You can set the intensity of image watermarks here."
14730
  msgstr ""
14731
 
14732
+ #: wppa-settings-autosave.php:8414 wppa-settings-autosave.php:8499
14733
+ msgid ""
14734
+ "The higher the number, the intenser the watermark. Value must be > 0 and <= "
14735
+ "100."
14736
  msgstr ""
14737
 
14738
+ #: wppa-settings-autosave.php:8421
14739
+ msgid "Textual watermark style"
14740
  msgstr ""
14741
 
14742
+ #: wppa-settings-autosave.php:8422
14743
+ msgid "The way the textual watermarks look like"
14744
  msgstr ""
14745
 
14746
+ #: wppa-settings-autosave.php:8426
14747
+ msgid "TV subtitle style"
14748
  msgstr ""
14749
 
14750
+ #: wppa-settings-autosave.php:8426
14751
+ msgid "White text on black background"
14752
  msgstr ""
14753
 
14754
+ #: wppa-settings-autosave.php:8426
14755
+ msgid "Black text on white background"
14756
  msgstr ""
14757
 
14758
+ #: wppa-settings-autosave.php:8426
14759
+ msgid "Reverse TV style (Utopia)"
14760
  msgstr ""
14761
 
14762
+ #: wppa-settings-autosave.php:8426
14763
+ msgid "White on transparent background"
14764
  msgstr ""
14765
 
14766
+ #: wppa-settings-autosave.php:8426
14767
+ msgid "Black on transparent background"
14768
  msgstr ""
14769
 
14770
+ #: wppa-settings-autosave.php:8436
14771
+ msgid "Predefined watermark text"
14772
  msgstr ""
14773
 
14774
+ #: wppa-settings-autosave.php:8437
14775
+ msgid "The text to use when --- pre-defined --- is selected."
14776
  msgstr ""
14777
 
14778
+ #: wppa-settings-autosave.php:8438
14779
+ msgid "You may use the following keywords:"
14780
  msgstr ""
14781
 
14782
+ #: wppa-settings-autosave.php:8439
14783
+ msgid ""
14784
+ "w#site, w#displayname, all standard photo keywords, iptc and exif keywords"
14785
  msgstr ""
14786
 
14787
+ #: wppa-settings-autosave.php:8446
14788
+ msgid "Textual watermark font"
14789
  msgstr ""
14790
 
14791
+ #: wppa-settings-autosave.php:8447
14792
+ msgid "The font to use with textusl watermarks."
14793
  msgstr ""
14794
 
14795
+ #: wppa-settings-autosave.php:8448
14796
+ msgid "Except for the system font, are font files of type ttf and reside in"
14797
  msgstr ""
14798
 
14799
+ #: wppa-settings-autosave.php:8476
14800
+ msgid "Textual watermark font size"
14801
  msgstr ""
14802
 
14803
+ #: wppa-settings-autosave.php:8477
14804
+ msgid "You can set the size of the truetype fonts only."
 
14805
  msgstr ""
14806
 
14807
+ #: wppa-settings-autosave.php:8478
14808
+ msgid ""
14809
+ "System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
14810
+ "value > 5 will be treated as 5."
14811
  msgstr ""
14812
 
14813
+ #: wppa-settings-autosave.php:8479
14814
+ msgid ""
14815
+ "Truetype fonts can have any positive integer size, if your PHPs GD version "
14816
+ "is 1, in pixels, in GD2 in points."
14817
  msgstr ""
14818
 
14819
+ #: wppa-settings-autosave.php:8480
14820
+ msgid "It is unclear howmany pixels a point is..."
14821
  msgstr ""
14822
 
14823
+ #: wppa-settings-autosave.php:8487
14824
+ msgid "Upload watermark font"
14825
  msgstr ""
14826
 
14827
+ #: wppa-settings-autosave.php:8488
14828
+ msgid "Upload a new watermark font file"
14829
  msgstr ""
14830
 
14831
+ #: wppa-settings-autosave.php:8489
14832
+ msgid ""
14833
+ "Upload truetype fonts (.ttf) only, and test if they work on your server "
14834
+ "platform."
14835
  msgstr ""
14836
 
14837
+ #: wppa-settings-autosave.php:8492
14838
+ msgid "Upload TrueType font"
14839
  msgstr ""
14840
 
14841
+ #: wppa-settings-autosave.php:8497
14842
+ msgid "Watermark opacity text"
14843
  msgstr ""
14844
 
14845
+ #: wppa-settings-autosave.php:8498
14846
+ msgid "You can set the intensity of a text watermarks here."
14847
  msgstr ""
14848
 
14849
+ #: wppa-settings-autosave.php:8507
14850
+ msgid "A real life preview. To update: refresh the page."
 
14851
  msgstr ""
14852
 
14853
+ #: wppa-settings-autosave.php:8518
14854
+ msgid "Watermark thumbnails"
 
 
14855
  msgstr ""
14856
 
14857
+ #: wppa-settings-autosave.php:8519
14858
+ msgid "Watermark also the thumbnail image files."
14859
  msgstr ""
14860
 
14861
+ #: wppa-settings-autosave.php:8527
14862
+ msgid "Slideshow elements sequence order settings"
14863
  msgstr ""
14864
 
14865
+ #: wppa-settings-autosave.php:8533 wppa-settings-autosave.php:8579
14866
+ msgid "StartStop"
14867
  msgstr ""
14868
 
14869
+ #: wppa-settings-autosave.php:8534 wppa-settings-autosave.php:8580
14870
+ msgid "SlideFrame"
14871
  msgstr ""
14872
 
14873
+ #: wppa-settings-autosave.php:8536
14874
+ msgid "Desc"
14875
  msgstr ""
14876
 
14877
+ #: wppa-settings-autosave.php:8539 wppa-settings-autosave.php:8584
14878
+ msgid "FilmStrip"
14879
  msgstr ""
14880
 
14881
+ #: wppa-settings-autosave.php:8540 wppa-settings-autosave.php:8585
14882
+ msgid "Browsebar"
14883
  msgstr ""
14884
 
14885
+ #: wppa-settings-autosave.php:8542 wppa-settings-autosave.php:8587
14886
+ msgid "IPTC data"
14887
  msgstr ""
14888
 
14889
+ #: wppa-settings-autosave.php:8543 wppa-settings-autosave.php:8588
14890
+ msgid "EXIF data"
 
 
14891
  msgstr ""
14892
 
14893
+ #: wppa-settings-autosave.php:8544 wppa-settings-autosave.php:8589
14894
+ msgid "Share box"
14895
  msgstr ""
14896
 
14897
+ #: wppa-settings-autosave.php:8546 wppa-settings-autosave.php:8591
14898
+ msgid "Enabled"
14899
  msgstr ""
14900
 
14901
+ #: wppa-settings-autosave.php:8547 wppa-settings-autosave.php:8592
14902
+ msgid "Disabled"
14903
  msgstr ""
14904
 
14905
+ #: wppa-settings-autosave.php:8549 wppa-settings-autosave.php:8594
14906
+ msgid "Start/Stop & Slower/Faster navigation bar"
14907
  msgstr ""
14908
 
14909
+ #: wppa-settings-autosave.php:8550 wppa-settings-autosave.php:8595
14910
+ msgid "The Slide Frame"
14911
  msgstr ""
14912
 
14913
+ #: wppa-settings-autosave.php:8550 wppa-settings-autosave.php:8595
14914
+ msgid "( Always )"
 
 
14915
  msgstr ""
14916
 
14917
+ #: wppa-settings-autosave.php:8551
14918
+ msgid "Photo Name Box"
14919
  msgstr ""
14920
 
14921
+ #: wppa-settings-autosave.php:8552
14922
+ msgid "Photo Description Box"
14923
  msgstr ""
14924
 
14925
+ #: wppa-settings-autosave.php:8553 wppa-settings-autosave.php:8597
14926
+ msgid "Custom Box"
14927
  msgstr ""
14928
 
14929
+ #: wppa-settings-autosave.php:8554 wppa-settings-autosave.php:8598
14930
+ msgid "Rating Bar"
14931
  msgstr ""
14932
 
14933
+ #: wppa-settings-autosave.php:8555 wppa-settings-autosave.php:8599
14934
+ msgid "Film Strip with embedded Start/Stop and Goto functionality"
 
 
14935
  msgstr ""
14936
 
14937
+ #: wppa-settings-autosave.php:8556 wppa-settings-autosave.php:8600
14938
+ msgid "Browse Bar with Photo X of Y counter"
14939
  msgstr ""
14940
 
14941
+ #: wppa-settings-autosave.php:8557 wppa-settings-autosave.php:8601
14942
+ msgid "Comments Box"
14943
  msgstr ""
14944
 
14945
+ #: wppa-settings-autosave.php:8558 wppa-settings-autosave.php:8602
14946
+ msgid "IPTC box"
14947
  msgstr ""
14948
 
14949
+ #: wppa-settings-autosave.php:8559 wppa-settings-autosave.php:8603
14950
+ msgid "EXIF box"
14951
  msgstr ""
14952
 
14953
+ #: wppa-settings-autosave.php:8560 wppa-settings-autosave.php:8604
14954
+ msgid "Social media share box"
 
14955
  msgstr ""
14956
 
14957
+ #: wppa-settings-autosave.php:8566 wppa-settings-autosave.php:8610
14958
+ msgid "Move Up"
14959
  msgstr ""
14960
 
14961
+ #: wppa-settings-autosave.php:8581
14962
+ msgid "NameDesc"
14963
  msgstr ""
14964
 
14965
+ #: wppa-settings-autosave.php:8596
14966
+ msgid "Photo Name & Description Box"
14967
  msgstr ""
14968
 
14969
+ #: wppa-settings-autosave.php:8620
14970
+ msgid "Swap Namedesc"
14971
  msgstr ""
14972
 
14973
+ #: wppa-settings-autosave.php:8621
14974
+ msgid "Swap the order sequence of name and description"
14975
  msgstr ""
14976
 
14977
+ #: wppa-settings-autosave.php:8629
14978
+ msgid "Split Name and Desc"
14979
  msgstr ""
14980
 
14981
+ #: wppa-settings-autosave.php:8630
14982
+ msgid "Put Name and Description in separate boxes"
14983
  msgstr ""
14984
 
14985
+ #: wppa-settings-autosave.php:8633
14986
+ msgid "Please reload this page after the green checkmark appears!"
14987
  msgstr ""
14988
 
14989
+ #: wppa-settings-autosave.php:8638
14990
+ msgid "Source file management and other upload/import settings and actions."
 
 
 
14991
  msgstr ""
14992
 
14993
+ #: wppa-settings-autosave.php:8640
14994
+ msgid "Keep sourcefiles admin"
14995
  msgstr ""
14996
 
14997
+ #: wppa-settings-autosave.php:8641
14998
+ msgid "Keep the original uploaded and imported photo files."
14999
  msgstr ""
15000
 
15001
+ #: wppa-settings-autosave.php:8642 wppa-settings-autosave.php:8652
15002
  msgid ""
15003
+ "The files will be kept in a separate directory with subdirectories for each "
15004
+ "album"
15005
  msgstr ""
15006
 
15007
+ #: wppa-settings-autosave.php:8643 wppa-settings-autosave.php:8653
15008
+ msgid ""
15009
+ "These files can be used to update the photos used in displaying in wppa+ and "
15010
+ "optionally for downloading original, un-downsized images."
15011
  msgstr ""
15012
 
15013
+ #: wppa-settings-autosave.php:8650
15014
+ msgid "Keep sourcefiles frontend"
15015
  msgstr ""
15016
 
15017
+ #: wppa-settings-autosave.php:8651
15018
+ msgid "Keep the original frontend uploaded photo files."
15019
  msgstr ""
15020
 
15021
+ #: wppa-settings-autosave.php:8660
15022
+ msgid "Source directory"
15023
  msgstr ""
15024
 
15025
+ #: wppa-settings-autosave.php:8661
15026
+ msgid "The path to the directory where the original photofiles will be saved."
15027
  msgstr ""
15028
 
15029
+ #: wppa-settings-autosave.php:8662
15030
+ msgid "You may change the directory path, but it can not be an url."
15031
  msgstr ""
15032
 
15033
+ #: wppa-settings-autosave.php:8663
15034
+ msgid ""
15035
+ "The parent of the directory that you enter here must exist and be writable."
15036
  msgstr ""
15037
 
15038
+ #: wppa-settings-autosave.php:8664
15039
+ msgid "The directory itsself will be created if it does not exist yet."
15040
  msgstr ""
15041
 
15042
+ #: wppa-settings-autosave.php:8671
15043
+ msgid "Keep sync"
15044
  msgstr ""
15045
 
15046
+ #: wppa-settings-autosave.php:8672
15047
+ msgid "Keep source synchronously with wppa system."
15048
  msgstr ""
15049
 
15050
+ #: wppa-settings-autosave.php:8673
15051
+ msgid ""
15052
+ "If checked, photos that are deleted from wppa, will also be removed from the "
15053
+ "sourcefiles."
15054
  msgstr ""
15055
 
15056
+ #: wppa-settings-autosave.php:8674
15057
+ msgid ""
15058
+ "Also, copying or moving photos to different albums, will also copy/move the "
15059
+ "sourcefiles."
15060
  msgstr ""
15061
 
15062
+ #: wppa-settings-autosave.php:8681
15063
+ msgid "Remake add"
15064
  msgstr ""
15065
 
15066
+ #: wppa-settings-autosave.php:8682
15067
+ msgid "Photos will be added from the source pool"
15068
  msgstr ""
15069
 
15070
+ #: wppa-settings-autosave.php:8683
15071
+ msgid ""
15072
+ "If checked: If photo files are found in the source directory that do not "
15073
+ "exist in the corresponding album, they will be added to the album."
15074
  msgstr ""
15075
 
15076
+ #: wppa-settings-autosave.php:8690
15077
+ msgid "Save IPTC data"
15078
  msgstr ""
15079
 
15080
+ #: wppa-settings-autosave.php:8691
15081
+ msgid "Store the iptc data from the photo into the iptc db table"
15082
  msgstr ""
15083
 
15084
+ #: wppa-settings-autosave.php:8692
15085
+ msgid ""
15086
+ "You will need this if you enabled the display of iptc data in Table II-B17 "
15087
+ "or if you use it in the photo descriptions."
15088
  msgstr ""
15089
 
15090
+ #: wppa-settings-autosave.php:8699
15091
+ msgid "Save EXIF data"
15092
  msgstr ""
15093
 
15094
+ #: wppa-settings-autosave.php:8700
15095
+ msgid "Store the exif data from the photo into the exif db table"
15096
  msgstr ""
15097
 
15098
+ #: wppa-settings-autosave.php:8701
15099
+ msgid ""
15100
+ "You will need this if you enabled the display of exif data in Table II-B18 "
15101
+ "or if you use it in the photo descriptions."
15102
  msgstr ""
15103
 
15104
+ #: wppa-settings-autosave.php:8708
15105
+ msgid "Max EXIF tag array size"
15106
  msgstr ""
15107
 
15108
+ #: wppa-settings-autosave.php:8709
15109
+ msgid "Truncate array tags to ..."
 
15110
  msgstr ""
15111
 
15112
+ #: wppa-settings-autosave.php:8710
15113
+ msgid "A value of 0 disables this feature"
 
15114
  msgstr ""
15115
 
15116
+ #: wppa-settings-autosave.php:8712
15117
+ msgid "elements"
15118
  msgstr ""
15119
 
15120
+ #: wppa-settings-autosave.php:8717
15121
+ msgid "Import Create page"
15122
  msgstr ""
15123
 
15124
+ #: wppa-settings-autosave.php:8718
15125
+ msgid "Create wp page when a directory to album is imported."
 
 
 
15126
  msgstr ""
15127
 
15128
+ #: wppa-settings-autosave.php:8719
15129
+ msgid ""
15130
+ "As soon as an album is created when a directory is imported, a wp page is "
15131
+ "made that displays the album content."
15132
  msgstr ""
15133
 
15134
+ #: wppa-settings-autosave.php:8727
15135
+ msgid "Page content"
 
15136
  msgstr ""
15137
 
15138
+ #: wppa-settings-autosave.php:8728
15139
+ msgid "The content of the page. Must contain <b>w#album</b>"
15140
  msgstr ""
15141
 
15142
+ #: wppa-settings-autosave.php:8729
15143
+ msgid ""
15144
+ "The content of the page. Note: it must contain w#album. This will be "
15145
+ "replaced by the album number in the generated shortcode."
15146
  msgstr ""
15147
 
15148
+ #: wppa-settings-autosave.php:8737
15149
+ msgid "Page type"
15150
  msgstr ""
15151
 
15152
+ #: wppa-settings-autosave.php:8738
15153
+ msgid "Select the type of page to create."
15154
  msgstr ""
15155
 
15156
+ #: wppa-settings-autosave.php:8742
15157
+ msgid "Post"
15158
  msgstr ""
15159
 
15160
+ #: wppa-settings-autosave.php:8749
15161
+ msgid "Page status"
15162
  msgstr ""
15163
 
15164
+ #: wppa-settings-autosave.php:8750
15165
+ msgid "Select the initial status of the page."
15166
  msgstr ""
15167
 
15168
+ #: wppa-settings-autosave.php:8754
15169
+ msgid "Published"
15170
  msgstr ""
15171
 
15172
+ #: wppa-settings-autosave.php:8754
15173
+ msgid "Draft"
15174
  msgstr ""
15175
 
15176
+ #: wppa-settings-autosave.php:8762
15177
+ msgid "Permalink root"
 
 
15178
  msgstr ""
15179
 
15180
+ #: wppa-settings-autosave.php:8763
15181
+ msgid "The name of the root for the photofile ermalink structure."
 
 
 
15182
  msgstr ""
15183
 
15184
+ #: wppa-settings-autosave.php:8764
15185
  msgid ""
15186
+ "Choose a convenient name like \"albums\" or so; this will be the name of a "
15187
+ "folder inside .../wp-content/. Make sure you choose a unique name"
15188
  msgstr ""
15189
 
15190
+ #: wppa-settings-autosave.php:8772
15191
+ msgid "Import parent check"
15192
  msgstr ""
15193
 
15194
+ #: wppa-settings-autosave.php:8773
15195
+ msgid "On import dirs to albums: keep dir tree as albums."
 
 
 
15196
  msgstr ""
15197
 
15198
+ #: wppa-settings-autosave.php:8774
15199
  msgid ""
15200
+ "Untick only if all your albums have unique names. Then: additional photos "
15201
+ "may be ftp'd to toplevel depot subdirs."
 
 
15202
  msgstr ""
15203
 
15204
+ #: wppa-settings-autosave.php:8781
15205
+ msgid "IPTC need utf8 conversion"
 
15206
  msgstr ""
15207
 
15208
+ #: wppa-settings-autosave.php:8782
15209
+ msgid "This setting converts iso to utf8 in iptc text."
 
15210
  msgstr ""
15211
 
15212
+ #: wppa-settings-autosave.php:8783
15213
+ msgid "Untick if you have funny characters in iptc data"
15214
  msgstr ""
15215
 
15216
+ #: wppa-settings-autosave.php:8790
15217
+ msgid "Keep dir to album files"
 
 
15218
  msgstr ""
15219
 
15220
+ #: wppa-settings-autosave.php:8791
15221
+ msgid "Keep imported files after dir to album import"
15222
  msgstr ""
15223
 
15224
+ #: wppa-settings-autosave.php:8800
15225
+ msgid "Other plugins related settings"
15226
  msgstr ""
15227
 
15228
+ #: wppa-settings-autosave.php:8802
15229
+ msgid "Foreign shortcodes general"
15230
  msgstr ""
15231
 
15232
+ #: wppa-settings-autosave.php:8803
15233
+ msgid "Enable foreign shortcodes in album names, albums desc and photo names"
15234
  msgstr ""
15235
 
15236
+ #: wppa-settings-autosave.php:8811
15237
+ msgid "Foreign shortcodes fullsize"
15238
  msgstr ""
15239
 
15240
+ #: wppa-settings-autosave.php:8812
15241
+ msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
15242
  msgstr ""
15243
 
15244
+ #: wppa-settings-autosave.php:8813 wppa-settings-autosave.php:8824
15245
+ msgid ""
15246
+ "When checked, you can use shortcodes from other plugins in the description "
15247
+ "of photos."
15248
  msgstr ""
15249
 
15250
+ #: wppa-settings-autosave.php:8814
15251
+ msgid "The shortcodes will be expanded in the descriptions of fullsize images."
15252
  msgstr ""
15253
 
15254
+ #: wppa-settings-autosave.php:8815 wppa-settings-autosave.php:8826
15255
+ msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
15256
  msgstr ""
15257
 
15258
+ #: wppa-settings-autosave.php:8822
15259
+ msgid "Foreign shortcodes thumbnails"
15260
  msgstr ""
15261
 
15262
+ #: wppa-settings-autosave.php:8823
15263
+ msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
 
15264
  msgstr ""
15265
 
15266
+ #: wppa-settings-autosave.php:8825
15267
+ msgid ""
15268
+ "The shortcodes will be expanded in the descriptions of thumbnail images."
15269
  msgstr ""
15270
 
15271
+ #: wppa-settings-autosave.php:8833
15272
+ msgid "Lightbox keyname"
15273
  msgstr ""
15274
 
15275
+ #: wppa-settings-autosave.php:8834
15276
+ msgid "The identifier of lightbox."
15277
+ msgstr ""
15278
+
15279
+ #: wppa-settings-autosave.php:8835
15280
  msgid ""
15281
+ "If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
15282
+ "lbox-id here."
15283
  msgstr ""
15284
 
15285
+ #: wppa-settings-autosave.php:8842
15286
+ msgid "myCRED / Cube Points: Comment"
15287
  msgstr ""
15288
 
15289
+ #: wppa-settings-autosave.php:8843
15290
+ msgid "Number of points for giving a comment"
15291
  msgstr ""
15292
 
15293
+ #: wppa-settings-autosave.php:8844 wppa-settings-autosave.php:8853
15294
+ #: wppa-settings-autosave.php:8862 wppa-settings-autosave.php:8871
15295
+ msgid "This setting requires the plugin myCRED or Cube Points"
15296
  msgstr ""
15297
 
15298
+ #: wppa-settings-autosave.php:8846 wppa-settings-autosave.php:8855
15299
+ msgid "points per comment"
15300
  msgstr ""
15301
 
15302
+ #: wppa-settings-autosave.php:8851
15303
+ msgid "myCRED / Cube Points: Appr Comment"
15304
  msgstr ""
15305
 
15306
+ #: wppa-settings-autosave.php:8852
15307
+ msgid "Number of points for receiving an approved comment"
15308
  msgstr ""
15309
 
15310
+ #: wppa-settings-autosave.php:8860
15311
+ msgid "myCRED / Cube Points: Rating"
15312
  msgstr ""
15313
 
15314
+ #: wppa-settings-autosave.php:8861
15315
+ msgid "Number of points for a rating vote"
15316
  msgstr ""
15317
 
15318
+ #: wppa-settings-autosave.php:8864
15319
+ msgid "points per vote"
15320
  msgstr ""
15321
 
15322
+ #: wppa-settings-autosave.php:8869
15323
+ msgid "myCRED / Cube Points: Upload"
15324
  msgstr ""
15325
 
15326
+ #: wppa-settings-autosave.php:8870
15327
+ msgid "Number of points for a successfull frontend upload"
15328
  msgstr ""
15329
 
15330
+ #: wppa-settings-autosave.php:8873
15331
+ msgid "points per upload"
15332
  msgstr ""
15333
 
15334
+ #: wppa-settings-autosave.php:8878
15335
+ msgid "Use SCABN"
15336
  msgstr ""
15337
 
15338
+ #: wppa-settings-autosave.php:8879
15339
+ msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
15340
  msgstr ""
15341
 
15342
+ #: wppa-settings-autosave.php:8880
15343
+ msgid ""
15344
+ "If checked, the shortcode to use for the \"add to cart\" button in photo "
15345
+ "descriptions is [cart ...]"
15346
  msgstr ""
15347
 
15348
+ #: wppa-settings-autosave.php:8881
 
15349
  msgid ""
15350
+ "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
 
15351
  msgstr ""
15352
 
15353
+ #: wppa-settings-autosave.php:8882
15354
+ msgid "The shortcode for the check-out page is still [scabn]"
15355
  msgstr ""
15356
 
15357
+ #: wppa-settings-autosave.php:8883
15358
+ msgid ""
15359
+ "The arguments are the same, the defaults are: name = photoname, price = 0.01."
15360
  msgstr ""
15361
 
15362
+ #: wppa-settings-autosave.php:8884
15363
+ msgid ""
15364
+ "Supplying the price should be sufficient; supply a name only when it differs "
15365
+ "from the photo name."
15366
  msgstr ""
15367
 
15368
+ #: wppa-settings-autosave.php:8885
15369
+ msgid "This shortcode handler will also work with Ajax enabled."
15370
+ msgstr ""
15371
+
15372
+ #: wppa-settings-autosave.php:8886
15373
  msgid ""
15374
+ "Using this interface makes sure that the item urls and callback action urls "
15375
+ "are correct."
 
 
15376
  msgstr ""
15377
 
15378
+ #: wppa-settings-autosave.php:8893
15379
+ msgid "Use CM Tooltip Glossary"
 
15380
  msgstr ""
15381
 
15382
+ #: wppa-settings-autosave.php:8894
15383
+ msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
15384
  msgstr ""
15385
 
15386
+ #: wppa-settings-autosave.php:8895
15387
  msgid ""
15388
+ "You MUST set Table IV-A13: Defer javascript, also if you do not want this "
15389
+ "plugin to act on album and photo descriptions!"
15390
  msgstr ""
15391
 
15392
+ #: wppa-settings-autosave.php:8903
15393
+ msgid "External services related settings and actions."
15394
  msgstr ""
15395
 
15396
+ #: wppa-settings-autosave.php:8905
15397
+ msgid "QR Code widget size"
15398
  msgstr ""
15399
 
15400
+ #: wppa-settings-autosave.php:8906
15401
+ msgid "The size of the QR code display."
15402
  msgstr ""
15403
 
15404
+ #: wppa-settings-autosave.php:8914
15405
+ msgid "QR color"
15406
  msgstr ""
15407
 
15408
+ #: wppa-settings-autosave.php:8915
15409
+ msgid "The display color of the qr code (dark)"
15410
  msgstr ""
15411
 
15412
+ #: wppa-settings-autosave.php:8916
15413
+ msgid "This color MUST be given in hexadecimal format!"
15414
  msgstr ""
15415
 
15416
+ #: wppa-settings-autosave.php:8923
15417
+ msgid "QR background color"
15418
  msgstr ""
15419
 
15420
+ #: wppa-settings-autosave.php:8924
15421
+ msgid "The background color of the qr code (light)"
15422
  msgstr ""
15423
 
15424
+ #: wppa-settings-autosave.php:8932
15425
+ msgid "CDN Service"
15426
  msgstr ""
15427
 
15428
+ #: wppa-settings-autosave.php:8933
15429
+ msgid "Select a CDN Service you want to use."
15430
  msgstr ""
15431
 
15432
+ #: wppa-settings-autosave.php:8936
15433
+ msgid "Cloudinary in maintenance mode"
15434
  msgstr ""
15435
 
15436
+ #: wppa-settings-autosave.php:8946
15437
+ msgid "Cloud name"
15438
  msgstr ""
15439
 
15440
+ #: wppa-settings-autosave.php:8955
15441
+ msgid "API key"
15442
  msgstr ""
15443
 
15444
+ #: wppa-settings-autosave.php:8964
15445
+ msgid "API secret"
15446
  msgstr ""
15447
 
15448
+ #: wppa-settings-autosave.php:8973
15449
+ msgid "Delete all"
15450
+ msgstr ""
15451
 
15452
+ #: wppa-settings-autosave.php:8974
15453
+ msgid "Deletes them all !!!"
 
15454
  msgstr ""
 
 
15455
 
15456
+ #: wppa-settings-autosave.php:8982
15457
+ msgid "Delete derived images"
15458
+ msgstr ""
15459
 
15460
+ #: wppa-settings-autosave.php:8983
15461
+ msgid "Deletes all derived images !!!"
15462
+ msgstr ""
 
15463
 
15464
+ #: wppa-settings-autosave.php:8991
15465
+ msgid "Max lifetime"
15466
+ msgstr ""
 
15467
 
15468
+ #: wppa-settings-autosave.php:8992
15469
+ msgid "Old images from local server, new images from Cloudinary."
15470
+ msgstr ""
15471
 
15472
+ #: wppa-settings-autosave.php:8993
15473
+ msgid ""
15474
+ "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
15475
  msgstr ""
15476
 
15477
+ #: wppa-settings-autosave.php:8995
15478
+ msgid "Forever"
15479
+ msgstr ""
15480
 
15481
+ #: wppa-settings-autosave.php:9026
15482
+ msgid "Cloudinary usage"
15483
+ msgstr ""
15484
 
15485
+ #: wppa-settings-autosave.php:9062
15486
+ msgid "Cloudinary usage data not available"
15487
+ msgstr ""
15488
 
15489
+ #: wppa-settings-autosave.php:9066
15490
+ msgid "Cloudinary routines not installed."
15491
+ msgstr ""
15492
 
15493
+ #: wppa-settings-autosave.php:9077
15494
+ msgid "Cloudinary"
15495
+ msgstr ""
15496
 
15497
+ #: wppa-settings-autosave.php:9078
15498
+ msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
15499
+ msgstr ""
15500
 
15501
+ #: wppa-settings-autosave.php:9087
15502
+ msgid "GPX Implementation"
15503
  msgstr ""
 
 
15504
 
15505
+ #: wppa-settings-autosave.php:9088
15506
+ msgid "The way the maps are produced."
15507
+ msgstr ""
15508
 
15509
+ #: wppa-settings-autosave.php:9089
15510
+ msgid "Select the way the maps are produced."
15511
+ msgstr ""
15512
 
15513
+ #: wppa-settings-autosave.php:9090
15514
+ msgid ""
15515
+ "When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
15516
+ msgstr ""
15517
 
15518
+ #: wppa-settings-autosave.php:9091
15519
+ msgid ""
15520
+ "When using WPPA+ Embedded code, you can use Ajax, but there are less display "
15521
+ "options."
15522
+ msgstr ""
15523
 
15524
+ #: wppa-settings-autosave.php:9093
15525
+ msgid "WPPA+ Embedded code"
15526
+ msgstr ""
15527
+
15528
+ #: wppa-settings-autosave.php:9093
15529
+ msgid "Google maps GPX viewer plugin"
15530
+ msgstr ""
15531
 
15532
+ #: wppa-settings-autosave.php:9101
15533
+ msgid "Map height"
15534
+ msgstr ""
15535
 
15536
+ #: wppa-settings-autosave.php:9102
15537
+ msgid "The height of the map display."
15538
+ msgstr ""
15539
 
15540
+ #: wppa-settings-autosave.php:9110
15541
+ msgid "Google maps API key"
15542
+ msgstr ""
15543
 
15544
+ #: wppa-settings-autosave.php:9111
15545
+ msgid "Enter your Google maps api key here if you have one."
15546
+ msgstr ""
15547
 
15548
+ #: wppa-settings-autosave.php:9119
15549
+ msgid "GPX Shortcode"
15550
+ msgstr ""
 
 
 
15551
 
15552
+ #: wppa-settings-autosave.php:9120
15553
+ msgid "The shortcode to be used for the gpx feature."
15554
  msgstr ""
15555
 
15556
+ #: wppa-settings-autosave.php:9121
15557
+ msgid ""
15558
+ "Enter / modify the shortcode to be generated for the gpx plugin. It must "
15559
+ "contain w#lat and w#lon as placeholders for the lattitude and longitude."
15560
+ msgstr ""
15561
 
15562
+ #: wppa-settings-autosave.php:9122
15563
+ msgid "This item is required for using Google maps GPX viewer plugin only"
15564
  msgstr ""
15565
 
15566
+ #: wppa-settings-autosave.php:9129
15567
+ msgid "Fotomoto"
15568
  msgstr ""
15569
 
15570
+ #: wppa-settings-autosave.php:9130
15571
+ msgid "Yes, we use Fotomoto on this site. Read the help text!"
15572
  msgstr ""
15573
 
15574
+ #: wppa-settings-autosave.php:9131
15575
+ msgid "In order to function properly:"
15576
  msgstr ""
15577
 
15578
+ #: wppa-settings-autosave.php:9132
15579
+ msgid "1. Get yourself a Fotomoto account."
15580
  msgstr ""
15581
 
15582
+ #: wppa-settings-autosave.php:9133
15583
+ msgid ""
15584
+ "2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
15585
+ "the \"Use API Mode:\" checkbox."
15586
  msgstr ""
15587
 
15588
+ #: wppa-settings-autosave.php:9134
15589
+ msgid "Note: Do NOT Disable the Custom box in Table II-B14."
15590
  msgstr ""
15591
 
15592
+ #: wppa-settings-autosave.php:9135
15593
+ msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
15594
  msgstr ""
15595
 
15596
+ #: wppa-settings-autosave.php:9143
15597
+ msgid "Fotomoto fontsize"
15598
  msgstr ""
15599
 
15600
+ #: wppa-settings-autosave.php:9144
15601
+ msgid "Fontsize for the Fotomoto toolbar."
15602
  msgstr ""
15603
 
15604
+ #: wppa-settings-autosave.php:9145
15605
+ msgid ""
15606
+ "If you set it here, it overrules a possible setting for font-size in ."
15607
+ "FotomotoToolbarClass on the Fotomoto dashboard."
15608
  msgstr ""
15609
 
15610
+ #: wppa-settings-autosave.php:9153
15611
+ msgid "Hide toolbar on running slideshows"
15612
  msgstr ""
15613
 
15614
+ #: wppa-settings-autosave.php:9154
15615
+ msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
15616
  msgstr ""
15617
 
15618
+ #: wppa-settings-autosave.php:9161
15619
+ msgid "Fotomoto minwidth"
15620
  msgstr ""
15621
 
15622
+ #: wppa-settings-autosave.php:9162
15623
+ msgid "Minimum width to display Fotomoto toolbar."
15624
  msgstr ""
15625
 
15626
+ #: wppa-settings-autosave.php:9163
15627
+ msgid ""
15628
+ "The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
15629
  msgstr ""
15630
 
15631
+ #: wppa-settings-autosave.php:9188
15632
+ msgid "Table X:"
15633
  msgstr ""
15634
 
15635
+ #: wppa-settings-autosave.php:9188
15636
+ msgid "IPTC Configuration:"
15637
  msgstr ""
15638
 
15639
+ #: wppa-settings-autosave.php:9189
15640
+ msgid "This table defines the IPTC configuration"
15641
  msgstr ""
15642
 
15643
+ #: wppa-settings-autosave.php:9220 wppa-settings-autosave.php:9288
15644
+ msgid "Display"
 
15645
  msgstr ""
15646
 
15647
+ #: wppa-settings-autosave.php:9220 wppa-settings-autosave.php:9288
15648
+ msgid "Hide"
15649
  msgstr ""
15650
 
15651
+ #: wppa-settings-autosave.php:9250
15652
+ msgid "Table XI:"
15653
  msgstr ""
15654
 
15655
+ #: wppa-settings-autosave.php:9250
15656
+ msgid "EXIF Configuration:"
15657
+ msgstr ""
15658
 
15659
+ #: wppa-settings-autosave.php:9251
15660
+ msgid "This table defines the EXIF configuration"
15661
+ msgstr ""
 
15662
 
15663
+ #: wppa-settings-autosave.php:9274
15664
+ msgid ""
15665
+ "Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
15666
+ "enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to "
15667
+ "add <b>'--enable-exif'</b> to the php <b>Configure Command</b>."
15668
  msgstr ""
15669
 
15670
+ #: wppa-settings-autosave.php:9318
15671
+ msgid "Table XII:"
15672
  msgstr ""
15673
 
15674
+ #: wppa-settings-autosave.php:9318
15675
+ msgid "WPPA+ and PHP Configuration:"
15676
  msgstr ""
15677
 
15678
+ #: wppa-settings-autosave.php:9319
15679
+ msgid ""
15680
+ "This table lists all WPPA+ constants and PHP server configuration parameters "
15681
+ "and is read only"
15682
  msgstr ""
15683
 
15684
+ #: wppa-settings-autosave.php:9334
15685
+ msgid "Value"
15686
  msgstr ""
15687
 
15688
+ #: wppa-settings-autosave.php:9340
15689
+ msgid "Albums db table name."
15690
  msgstr ""
15691
 
15692
+ #: wppa-settings-autosave.php:9352
15693
+ msgid "Photos db table name."
15694
  msgstr ""
15695
 
15696
+ #: wppa-settings-autosave.php:9364
15697
+ msgid "Rating db table name."
15698
  msgstr ""
15699
 
15700
+ #: wppa-settings-autosave.php:9376
15701
+ msgid "Comments db table name."
15702
  msgstr ""
15703
 
15704
+ #: wppa-settings-autosave.php:9388
15705
+ msgid "IPTC db table name."
15706
  msgstr ""
15707
 
15708
+ #: wppa-settings-autosave.php:9400
15709
+ msgid "EXIF db table name."
15710
  msgstr ""
15711
 
15712
+ #: wppa-settings-autosave.php:9412 wppa-settings-autosave.php:9424
15713
+ msgid "Index db table name."
15714
  msgstr ""
15715
 
15716
+ #: wppa-settings-autosave.php:9436
15717
+ msgid "Plugins main file name."
15718
  msgstr ""
15719
 
15720
+ #: wppa-settings-autosave.php:9442
15721
+ msgid "ABSPATH windows proof"
15722
  msgstr ""
15723
 
15724
+ #: wppa-settings-autosave.php:9448
15725
+ msgid "Path to plugins directory."
15726
  msgstr ""
15727
 
15728
+ #: wppa-settings-autosave.php:9454
15729
+ msgid "Plugins directory name."
15730
  msgstr ""
15731
 
15732
+ #: wppa-settings-autosave.php:9460
15733
+ msgid "Plugins directory url."
15734
  msgstr ""
15735
 
15736
+ #: wppa-settings-autosave.php:9466
15737
+ msgid "The relative upload directory."
15738
  msgstr ""
15739
 
15740
+ #: wppa-settings-autosave.php:9472
15741
+ msgid "The upload directory path."
 
15742
  msgstr ""
15743
 
15744
+ #: wppa-settings-autosave.php:9478
15745
+ msgid "The upload directory url."
15746
  msgstr ""
15747
 
15748
+ #: wppa-settings-autosave.php:9484
15749
+ msgid "The relative depot directory."
15750
  msgstr ""
15751
 
15752
+ #: wppa-settings-autosave.php:9490
15753
+ msgid "The depot directory path."
15754
  msgstr ""
15755
 
15756
+ #: wppa-settings-autosave.php:9496
15757
+ msgid "The depot directory url."
15758
  msgstr ""
15759
 
15760
+ #: wppa-settings-autosave.php:9502
15761
+ msgid "The path to wp-content."
15762
  msgstr ""
15763
 
15764
+ #: wppa-settings-autosave.php:9508
15765
+ msgid "WP Content url."
15766
  msgstr ""
15767
 
15768
+ #: wppa-settings-autosave.php:9514
15769
+ msgid "WP Base upload dir."
15770
  msgstr ""
15771
 
15772
+ #: wppa-settings-autosave.php:9534
15773
+ #, php-format
15774
+ msgid "<br />Memory used on this page: %6.2f Mb."
 
15775
  msgstr ""
15776
 
15777
+ #: wppa-settings-autosave.php:9535
15778
+ #, php-format
15779
+ msgid "<br />There are %d settings and %d runtime parameters."
15780
  msgstr ""
15781
 
15782
+ #: wppa-settings-autosave.php:9765 wppa-settings-autosave.php:9785
15783
+ #: wppa-settings-autosave.php:9806
15784
+ msgid "Warning!"
 
 
15785
  msgstr ""
15786
 
15787
+ #: wppa-settings-autosave.php:9786 wppa-settings-autosave.php:9806
15788
+ msgid "Please read the help"
15789
  msgstr ""
15790
 
15791
+ #: wppa-settings-autosave.php:10017
15792
+ msgid "Show!"
15793
  msgstr ""
15794
 
15795
+ #: wppa-settings-autosave.php:10037
15796
+ msgid "Not done yet"
15797
  msgstr ""
15798
 
15799
+ #: wppa-settings-autosave.php:10044
15800
+ msgid "Start!"
15801
  msgstr ""
15802
 
15803
+ #: wppa-settings-autosave.php:10049
15804
+ msgid "Locked!"
15805
  msgstr ""
15806
 
15807
+ #: wppa-settings-autosave.php:10080
15808
+ msgid ""
15809
+ "You can not have popup and lightbox on thumbnails at the same time. Uncheck "
15810
+ "either Table IV-C8 or choose a different linktype in Table VI-2."
15811
  msgstr ""
15812
 
15813
+ #: wppa-settings-autosave.php:10083
15814
+ msgid ""
15815
+ "It is important that you select a page that contains at least [wppa][/wppa]."
15816
  msgstr ""
15817
 
15818
+ #: wppa-settings-autosave.php:10084
15819
+ msgid ""
15820
+ "If you ommit this, the link will not work at all or simply refresh the "
15821
+ "(home)page."
15822
  msgstr ""
15823
 
15824
+ #: wppa-setup.php:521
15825
+ msgid "IMPORTANT UPGRADE NOTICE"
15826
  msgstr ""
15827
 
15828
+ #: wppa-setup.php:522
15829
+ msgid ""
15830
+ "Please CHECK your customized WPPA-STYLE.CSS file against the newly supplied "
15831
+ "one. You may wish to add or modify some attributes. Be aware of the fact "
15832
+ "that most settings can now be set in the admin settings page."
15833
  msgstr ""
15834
 
15835
+ #: wppa-setup.php:523
15836
  msgid ""
15837
+ "Please REPLACE your customized WPPA-THEME.PHP file by the newly supplied "
15838
+ "one, or just remove it from your theme directory. You may modify it later if "
15839
+ "you wish. Your current customized version is NOT compatible with this "
15840
+ "version of the plugin software."
15841
+ msgstr ""
15842
+
15843
+ #: wppa-setup.php:551
15844
+ #, php-format
15845
+ msgid "WPPA+ successfully updated in multi site mode to db version %s."
15846
  msgstr ""
15847
 
15848
+ #: wppa-setup.php:554
15849
+ #, php-format
15850
+ msgid "WPPA+ successfully updated in single site mode to db version %s."
15851
  msgstr ""
15852
 
15853
+ #: wppa-setup.php:559
15854
+ msgid "An error occurred during update"
 
 
15855
  msgstr ""
15856
 
15857
+ #: wppa-setup.php:870
15858
  msgid ""
15859
+ "<span style=\"color:red\" >Warning: Do not upload copyrighted material!</"
15860
+ "span>"
 
 
 
 
 
15861
  msgstr ""
15862
 
15863
+ #: wppa-setup.php:879 wppa-setup.php:883 wppa-setup.php:887
15864
+ msgid "Select tags:"
 
15865
  msgstr ""
15866
 
15867
+ #: wppa-setup.php:890
15868
+ msgid "Enter new tags:"
15869
  msgstr ""
15870
 
15871
+ #: wppa-setup.php:1114
15872
+ msgid "Vote for me!"
15873
  msgstr ""
15874
 
15875
+ #: wppa-setup.php:1115
15876
+ msgid "Voted for me"
15877
  msgstr ""
15878
 
15879
+ #: wppa-setup.php:1465
15880
+ msgid "NEW"
15881
  msgstr ""
15882
 
15883
+ #: wppa-setup.php:1467
15884
+ msgid "MODIFIED"
15885
  msgstr ""
15886
 
15887
+ #: wppa-setup.php:1517
15888
+ msgid "Search in current section"
15889
  msgstr ""
15890
 
15891
+ #: wppa-setup.php:1518
15892
+ msgid "Search in current results"
15893
  msgstr ""
15894
 
15895
+ #: wppa-setup.php:1591
15896
+ msgid "Type your custom url here"
15897
  msgstr ""
15898
 
15899
+ #: wppa-setup.php:1592
15900
+ msgid "Type the title here"
15901
  msgstr ""
15902
 
15903
+ #: wppa-setup.php:1611 wppa-topten-widget.php:13 wppa-topten-widget.php:48
15904
+ #: wppa-topten-widget.php:298
15905
+ msgid "Top Ten Photos"
15906
  msgstr ""
15907
 
15908
+ #: wppa-setup.php:1614 wppa-thumbnail-widget.php:13
15909
+ #: wppa-thumbnail-widget.php:166
15910
+ msgid "Thumbnail Photos"
15911
  msgstr ""
15912
 
15913
+ #: wppa-setup.php:1617
15914
+ msgid "Search photos"
15915
  msgstr ""
15916
 
15917
+ #: wppa-setup.php:1662
15918
+ msgid ""
15919
+ "The uploads directory does not exist, please do a regular WP upload first."
15920
  msgstr ""
15921
 
15922
+ #: wppa-setup.php:1666
15923
+ msgid "Successfully created uploads directory."
15924
  msgstr ""
15925
 
15926
+ #: wppa-setup.php:1677
15927
+ msgid "Could not create the wppa directory."
15928
  msgstr ""
15929
 
15930
+ #: wppa-setup.php:1681
15931
+ msgid "Successfully created wppa directory."
15932
  msgstr ""
15933
 
15934
+ #: wppa-setup.php:1691
15935
+ msgid "Could not create the wppa thumbs directory."
15936
  msgstr ""
15937
 
15938
+ #: wppa-setup.php:1695
15939
+ msgid "Successfully created wppa thumbs directory."
15940
  msgstr ""
15941
 
15942
+ #: wppa-setup.php:1705
15943
+ msgid "Could not create the wppa watermarks directory."
15944
  msgstr ""
15945
 
15946
+ #: wppa-setup.php:1709
15947
+ msgid "Successfully created wppa watermarks directory."
15948
  msgstr ""
15949
 
15950
+ #: wppa-setup.php:1719
15951
+ msgid "Could not create the wppa fonts directory."
15952
  msgstr ""
15953
 
15954
+ #: wppa-setup.php:1723
15955
+ msgid "Successfully created wppa fonts directory."
15956
  msgstr ""
15957
 
15958
+ #: wppa-setup.php:1735
15959
+ msgid "Unable to create depot directory."
15960
  msgstr ""
15961
 
15962
+ #: wppa-setup.php:1739
15963
+ msgid "Successfully created wppa depot directory."
15964
  msgstr ""
15965
 
15966
+ #: wppa-setup.php:1750
15967
+ msgid "Unable to create user depot directory"
15968
  msgstr ""
15969
 
15970
+ #: wppa-setup.php:1754
15971
+ msgid "Successfully created wppa user depot directory."
15972
  msgstr ""
15973
 
15974
+ #: wppa-setup.php:1764
15975
+ msgid "Unable to create temp directory"
15976
  msgstr ""
15977
 
15978
+ #: wppa-setup.php:1768
15979
+ msgid "Successfully created temp directory."
15980
  msgstr ""
15981
 
15982
+ #: wppa-setup.php:1776
15983
+ #, php-format
15984
+ msgid ""
15985
+ "Ask your administrator to give you more rights, or create <b>%s</b> manually "
15986
+ "using an FTP program."
15987
  msgstr ""
15988
 
15989
+ #: wppa-setup.php:1803
15990
+ msgid "Default photo album for"
15991
+ msgstr "Standard fotoalbum for"
15992
 
15993
+ #: wppa-slideshow-widget.php:17
15994
+ msgid "WPPA+ Sidebar Slideshow"
15995
  msgstr ""
15996
 
15997
+ #: wppa-slideshow-widget.php:18 wppa-slideshow-widget.php:162
15998
+ msgid "Sidebar Slideshow"
15999
  msgstr ""
16000
 
16001
+ #: wppa-slideshow-widget.php:71
16002
+ msgid "Widget landing page"
16003
  msgstr ""
16004
 
16005
+ #: wppa-slideshow-widget.php:200
16006
+ msgid ""
16007
+ "Enter the width and optionally the height of the area wherein the slides "
16008
+ "will appear. If you specify a 0 for the height, it will be calculated. The "
16009
+ "value for the height will be ignored if you set the vertical alignment to "
16010
+ "'fit'."
16011
  msgstr ""
16012
 
16013
+ #: wppa-slideshow-widget.php:201 wppa-slideshow-widget.php:202
16014
+ msgid "pixels."
16015
  msgstr ""
16016
 
16017
+ #: wppa-slideshow-widget.php:204
16018
+ msgid "Portrait only:"
16019
  msgstr ""
16020
 
16021
+ #: wppa-slideshow-widget.php:208
16022
+ msgid ""
16023
+ "Set to 'yes' if there are only portrait images in the album and you want the "
16024
+ "photos to fill the full width of the widget.<br/>Set to 'no' otherwise."
16025
  msgstr ""
16026
 
16027
+ #: wppa-slideshow-widget.php:209
16028
+ msgid "If set to 'yes', Vertical alignment will be forced to 'fit'."
16029
  msgstr ""
16030
 
16031
+ #: wppa-slideshow-widget.php:212
16032
+ msgid "Vertical alignment:"
16033
  msgstr ""
16034
 
16035
+ #: wppa-slideshow-widget.php:218
16036
+ msgid "Set the desired vertical alignment method."
16037
  msgstr ""
16038
 
16039
+ #: wppa-slideshow-widget.php:220
16040
+ msgid "Slideshow timeout:"
16041
  msgstr ""
16042
 
16043
+ #: wppa-slideshow-widget.php:220
16044
+ msgid "sec."
16045
  msgstr ""
16046
 
16047
+ #: wppa-slideshow-widget.php:224
16048
+ msgid "Show name:"
16049
  msgstr ""
16050
 
16051
+ #: wppa-slideshow-widget.php:231
16052
+ msgid "Show description:"
16053
  msgstr ""
16054
 
16055
+ #: wppa-slideshow-widget.php:238
16056
+ msgid "Show filmstrip:"
16057
  msgstr ""
16058
 
16059
+ #: wppa-slideshow-widget.php:245
16060
+ msgid "Show browsebar:"
16061
  msgstr ""
16062
 
16063
+ #: wppa-slideshow-widget.php:252
16064
+ msgid "Show numbar:"
16065
  msgstr ""
16066
 
16067
+ #: wppa-slideshow-widget.php:259
16068
+ msgid "The following text fields support qTranslate"
16069
  msgstr ""
16070
 
16071
+ #: wppa-slideshow-widget.php:260
16072
+ msgid "Tooltip text:"
16073
  msgstr ""
16074
 
16075
+ #: wppa-slideshow-widget.php:261
16076
+ msgid "Text above photos:"
16077
  msgstr ""
16078
 
16079
+ #: wppa-slideshow-widget.php:262
16080
+ msgid "Text below photos:"
16081
  msgstr ""
16082
 
16083
+ #: wppa-slideshow.php:261
16084
+ msgid "Paused"
16085
+ msgstr "Pause"
16086
 
16087
+ #: wppa-slideshow.php:269
16088
+ msgid ""
16089
+ "To see the full size images, you need to enable javascript in your browser."
16090
  msgstr ""
16091
+ "For at se billeder i fuld st&oslash;rrelse skal du tillade javascript in din "
16092
+ "browser."
16093
 
16094
+ #: wppa-slideshow.php:620
16095
+ msgid "Checkout"
16096
+ msgstr "Gå til kassen"
16097
 
16098
+ #: wppa-slideshow.php:680
16099
+ #, php-format
16100
+ msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
16101
+ msgstr "Antal stemmer: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
16102
 
16103
+ #: wppa-slideshow.php:696 wppa-slideshow.php:954 wppa-slideshow.php:1024
16104
+ #, php-format
16105
+ msgid "You must <a href=\"%s\">login</a> to vote"
16106
+ msgstr "Du skal <a href=\"%s\">logge ind</a> for at stemme"
16107
 
16108
+ #: wppa-slideshow.php:699 wppa-slideshow.php:957 wppa-slideshow.php:1027
16109
+ msgid "You must login to vote"
16110
+ msgstr "Du skal logge ind for at stemme"
16111
 
16112
+ #: wppa-slideshow.php:747
16113
+ msgid "Sorry, you can rate a photo only once"
16114
  msgstr ""
16115
 
16116
+ #: wppa-slideshow.php:779
16117
+ msgid "very low"
16118
+ msgstr "meget lav"
16119
 
16120
+ #: wppa-slideshow.php:780
16121
+ msgid "low"
16122
+ msgstr "lav"
16123
 
16124
+ #: wppa-slideshow.php:781
16125
+ msgid "average"
16126
+ msgstr "gennemsnitlig"
16127
 
16128
+ #: wppa-slideshow.php:782
16129
+ msgid "high"
16130
+ msgstr "h&oslash;j"
16131
 
16132
+ #: wppa-slideshow.php:783
16133
+ msgid "very high"
16134
+ msgstr "meget h&oslash;j"
16135
 
16136
+ #: wppa-slideshow.php:850 wppa-slideshow.php:986
16137
+ msgid "Are you sure you want to mark this image as inappropriate?"
16138
  msgstr ""
16139
+ "Er du sikker p&aring;, at du vil markere dette billed som v&aelig;rende "
16140
+ "upassende."
16141
 
16142
+ #: wppa-slideshow.php:853 wppa-slideshow.php:989
16143
+ msgid "Click this if you do NOT like this image!"
16144
+ msgstr "Klik her hvis du IKKE kan lide dette billed!"
16145
 
16146
+ #: wppa-slideshow.php:885 wppa-slideshow.php:1013
16147
+ msgid "Number of people who marked this photo as inappropriate"
16148
+ msgstr "Antallet af mennesker, der markerede dette billede som upassende"
 
16149
 
16150
+ #: wppa-slideshow.php:1019
16151
+ msgid "My rating:"
16152
+ msgstr "Min vurdering:"
16153
 
16154
+ #: wppa-slideshow.php:1114
16155
+ msgid "First"
16156
+ msgstr "Første"
16157
 
16158
+ #: wppa-slideshow.php:1146
16159
+ msgid "Last"
16160
+ msgstr "Sidste"
16161
 
16162
+ #: wppa-slideshow.php:1325
16163
+ #, php-format
16164
+ msgid "Photo %s of %s"
16165
+ msgstr "Foto %s af %s"
16166
 
16167
+ #: wppa-slideshow.php:1377
16168
+ msgid "Click to start/stop"
16169
+ msgstr "Klik for start/stop"
16170
 
16171
+ #: wppa-slideshow.php:1389
16172
+ msgid "- - - Comments box activated - - -"
16173
+ msgstr "- - - Kommentar boks aktiveret - - -"
16174
 
16175
+ #: wppa-slideshow.php:1413
16176
+ msgid "- - - IPTC box activated - - -"
16177
+ msgstr "- - - IPTC boks aktiveret - - -"
16178
 
16179
+ #: wppa-slideshow.php:1437
16180
+ msgid "- - - EXIF box activated - - -"
16181
+ msgstr "- - - EXIF boks aktiveret - - -"
16182
 
16183
+ #: wppa-statistics.php:27
16184
+ #, php-format
16185
+ msgid "There is %d photo album"
16186
+ msgid_plural "There are %d photo albums"
16187
+ msgstr[0] ""
16188
+ msgstr[1] ""
16189
 
16190
+ #: wppa-statistics.php:28
16191
+ msgid "The last album added is"
16192
  msgstr ""
16193
 
16194
+ #: wppa-statistics.php:32
16195
+ msgid ", a subalbum of"
16196
+ msgstr ", et underalbum til"
16197
 
16198
+ #: wppa-stereo-widget.php:12
16199
+ msgid "WPPA+ Stereo settings"
16200
  msgstr ""
16201
 
16202
+ #: wppa-stereo-widget.php:13
16203
+ msgid "3D Settings"
16204
  msgstr ""
16205
 
16206
+ #: wppa-stereo-widget.php:33 wppa-stereo-widget.php:64
16207
+ msgid "3D Stereo Settings"
16208
  msgstr ""
16209
 
16210
+ #: wppa-stereo.php:32
16211
+ msgid "Half color"
16212
  msgstr ""
16213
 
16214
+ #: wppa-stereo.php:33
16215
+ msgid "Gray"
16216
  msgstr ""
16217
 
16218
+ #: wppa-stereo.php:34
16219
+ msgid "True anaglyph"
16220
  msgstr ""
16221
 
16222
+ #: wppa-stereo.php:35
16223
+ msgid "Optimized"
16224
  msgstr ""
16225
 
16226
+ #: wppa-stereo.php:36
16227
+ msgid "Flat"
16228
  msgstr ""
16229
 
16230
+ #: wppa-stereo.php:38
16231
+ msgid "Red - Cyan"
16232
  msgstr ""
16233
 
16234
+ #: wppa-stereo.php:39
16235
+ msgid "Green - Magenta"
16236
  msgstr ""
16237
 
16238
+ #: wppa-super-view-widget.php:13
16239
+ msgid "WPPA+ Selectable display"
16240
  msgstr ""
16241
 
16242
+ #: wppa-super-view-widget.php:77
16243
+ msgid "Enable (sub)albums of:"
16244
  msgstr ""
16245
 
16246
+ #: wppa-super-view-widget.php:82
16247
+ msgid "Sort alphabeticly:"
16248
  msgstr ""
16249
 
16250
+ #: wppa-super-view-widget.php:84
16251
+ msgid "no, use album sort method"
16252
  msgstr ""
16253
 
16254
+ #: wppa-tagcloud-widget.php:14
16255
+ msgid "Photo Tag Cloud"
 
 
16256
  msgstr ""
16257
 
16258
+ #: wppa-thumbnail-widget.php:12
16259
+ msgid "WPPA+ Thumbnails"
16260
  msgstr ""
16261
 
16262
+ #: wppa-thumbnail-widget.php:48
16263
+ msgid "Thumbnail photos"
16264
  msgstr ""
16265
 
16266
+ #: wppa-thumbnail-widget.php:186
16267
+ msgid "Link from the title:"
16268
  msgstr ""
16269
 
16270
+ #: wppa-thumbnail-widget.php:187
16271
+ msgid "Link Title ( tooltip ):"
16272
  msgstr ""
16273
 
16274
+ #: wppa-thumbnail-widget.php:198 wppa-topten-widget.php:342
16275
+ #: wppa-upldr-widget.php:180
16276
+ msgid "Sort by:"
16277
  msgstr ""
16278
 
16279
+ #: wppa-thumbnail-widget.php:211
16280
+ msgid "Max number:"
16281
  msgstr ""
16282
 
16283
+ #: wppa-thumbnail-widget.php:225
16284
+ msgid "Show photo names <small>under thumbnails only</small>:"
16285
  msgstr ""
16286
 
16287
+ #: wppa-thumbnails.php:177 wppa-thumbnails.php:1117 wppa-topten-widget.php:157
16288
+ msgid "View the top rated photos"
16289
+ msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
16290
 
16291
+ #: wppa-thumbnails.php:1024
16292
+ #, php-format
16293
+ msgid "Missing thumbnail image #%s"
16294
+ msgstr "Manglende miniaturebillede #%s"
16295
 
16296
+ #: wppa-tinymce-scripts.php:64 wppa-tinymce-shortcodes.php:59
16297
+ msgid "No Preview available"
16298
  msgstr ""
16299
 
16300
+ #: wppa-tinymce-scripts.php:80
16301
+ msgid "Album Preview"
16302
  msgstr ""
16303
 
16304
+ #: wppa-tinymce-scripts.php:80
16305
+ msgid "A maximum of 100 photos can be previewd"
16306
  msgstr ""
16307
 
16308
+ #: wppa-tinymce-scripts.php:82
16309
+ msgid "Photo Preview"
16310
  msgstr ""
16311
 
16312
+ #: wppa-tinymce-scripts.php:87
16313
+ msgid "Type of Gallery display:"
16314
  msgstr ""
16315
 
16316
+ #: wppa-tinymce-scripts.php:90
16317
+ msgid "The cover of an album"
16318
  msgstr ""
16319
 
16320
+ #: wppa-tinymce-scripts.php:91
16321
+ msgid "The sub-albums and/or thumbnails in an album"
16322
  msgstr ""
16323
 
16324
+ #: wppa-tinymce-scripts.php:92
16325
+ msgid "A slideshow of the photos in an album"
16326
  msgstr ""
16327
 
16328
+ #: wppa-tinymce-scripts.php:93 wppa-tinymce-shortcodes.php:161
16329
+ msgid "A slideshow without supporting boxes"
16330
  msgstr ""
16331
 
16332
+ #: wppa-tinymce-scripts.php:94 wppa-tinymce-shortcodes.php:162
16333
+ msgid "A slideshow with a filmstrip only"
16334
  msgstr ""
16335
 
16336
+ #: wppa-tinymce-scripts.php:95
16337
+ msgid "A single photo"
16338
  msgstr ""
16339
 
16340
+ #: wppa-tinymce-scripts.php:96 wppa-tinymce-shortcodes.php:175
16341
+ msgid "A single photo with caption"
16342
  msgstr ""
16343
 
16344
+ #: wppa-tinymce-scripts.php:97 wppa-tinymce-shortcodes.php:177
16345
+ msgid "A single photo in the style of a slideshow"
16346
  msgstr ""
16347
 
16348
+ #: wppa-tinymce-scripts.php:98 wppa-tinymce-shortcodes.php:204
16349
+ msgid "A generic albums display"
16350
  msgstr ""
16351
 
16352
+ #: wppa-tinymce-scripts.php:101
16353
+ msgid "Specify the type of gallery"
16354
  msgstr ""
16355
 
16356
+ #: wppa-tinymce-scripts.php:106
16357
+ msgid "Explanation:"
16358
  msgstr ""
16359
 
16360
+ #: wppa-tinymce-scripts.php:108
16361
+ msgid "Use this gallerytype to display all the top-level album covers."
 
 
 
16362
  msgstr ""
16363
 
16364
+ #: wppa-tinymce-scripts.php:113
16365
+ msgid "The Album to be used:"
 
 
16366
  msgstr ""
16367
 
16368
+ #: wppa-tinymce-scripts.php:124 wppa-upload.php:182 wppa-upload.php:327
16369
+ #: wppa-upload.php:401
16370
+ msgid "Please select an album"
 
16371
  msgstr ""
16372
 
16373
+ #: wppa-tinymce-scripts.php:148
16374
+ msgid "- The latest created album -"
16375
  msgstr ""
16376
 
16377
+ #: wppa-tinymce-scripts.php:157
16378
+ msgid "--- The top rated photos ---"
16379
  msgstr ""
16380
 
16381
+ #: wppa-tinymce-scripts.php:166
16382
+ msgid "--- The most recently uploaded photos ---"
 
16383
  msgstr ""
16384
 
16385
+ #: wppa-tinymce-scripts.php:175
16386
+ msgid "--- A random selection of featured photos ---"
16387
  msgstr ""
16388
 
16389
+ #: wppa-tinymce-scripts.php:192
16390
+ msgid "--- The most recently commented photos ---"
16391
  msgstr ""
16392
 
16393
+ #: wppa-tinymce-scripts.php:195
16394
+ msgid "--- Photos that have certain tags ---"
16395
  msgstr ""
16396
 
16397
+ #: wppa-tinymce-scripts.php:204
16398
+ msgid "--- All photos in the system ---"
16399
  msgstr ""
16400
 
16401
+ #: wppa-tinymce-scripts.php:207 wppa-tinymce-shortcodes.php:296
16402
+ #: wppa-tinymce-shortcodes.php:319 wppa-tinymce-shortcodes.php:364
16403
+ #: wppa-tinymce-shortcodes.php:387 wppa-tinymce-shortcodes.php:575
16404
+ msgid "There are no albums yet"
16405
  msgstr ""
16406
 
16407
+ #: wppa-tinymce-scripts.php:215
16408
+ msgid "Specify the album to be used or --- A special selection of photos ---"
16409
  msgstr ""
16410
 
16411
+ #: wppa-tinymce-scripts.php:216
16412
+ msgid ""
16413
+ "In an upload box, the album is optional. When no album is specified: a "
16414
+ "selection box will be displayed of the albums the user has the right to "
16415
+ "upload."
16416
  msgstr ""
16417
 
16418
+ #: wppa-tinymce-scripts.php:217
16419
+ msgid "* Album contains less than the minimun number of photos"
16420
  msgstr ""
16421
 
16422
+ #: wppa-tinymce-scripts.php:223 wppa-tinymce-shortcodes.php:425
16423
+ msgid "The Photo to be used:"
16424
  msgstr ""
16425
 
16426
+ #: wppa-tinymce-scripts.php:228 wppa-tinymce-shortcodes.php:431
16427
+ msgid "Please select a photo"
16428
  msgstr ""
16429
 
16430
+ #: wppa-tinymce-scripts.php:239
16431
+ msgid "--- The most recently uploaded photo ---"
16432
  msgstr ""
16433
 
16434
+ #: wppa-tinymce-scripts.php:240
16435
+ msgid "--- The photo of the day ---"
16436
  msgstr ""
16437
 
16438
+ #: wppa-tinymce-scripts.php:243 wppa-tinymce-shortcodes.php:449
16439
+ msgid "There are no photos yet"
16440
  msgstr ""
16441
 
16442
+ #: wppa-tinymce-scripts.php:249 wppa-tinymce-shortcodes.php:455
16443
+ msgid "Specify the photo to be used"
 
16444
  msgstr ""
16445
 
16446
+ #: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:456
16447
+ msgid "You can select from a maximum of 100 most recently added photos"
16448
  msgstr ""
16449
 
16450
+ #: wppa-tinymce-scripts.php:256
16451
+ msgid "The tags the photos should have:"
16452
  msgstr ""
16453
 
16454
+ #: wppa-tinymce-scripts.php:259 wppa-tinymce-shortcodes.php:473
16455
+ msgid "--- please select tag(s) ---"
16456
  msgstr ""
16457
 
16458
+ #: wppa-tinymce-scripts.php:267
 
16459
  msgid ""
16460
+ "If you want that the photos have all the selected tags, check this box. "
16461
+ "Leave it unchecked if the photo must have atleast only one of the selected "
16462
+ "tags"
 
 
 
 
16463
  msgstr ""
16464
 
16465
+ #: wppa-tinymce-scripts.php:272 wppa-tinymce-shortcodes.php:598
16466
+ msgid "The size of the display:"
16467
  msgstr ""
16468
 
16469
+ #: wppa-tinymce-scripts.php:277 wppa-tinymce-shortcodes.php:603
16470
  msgid ""
16471
+ "Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
16472
+ "span>."
16473
  msgstr ""
16474
 
16475
+ #: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:604
16476
+ msgid ""
16477
+ "A value less than <span style=\"color:blue\" >100</span> will automaticly be "
16478
+ "interpreted as a <span style=\"color:blue\" >percentage</span> of the "
16479
+ "available space."
16480
  msgstr ""
16481
 
16482
+ #: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:606
16483
+ msgid "Leave this blank for default size"
16484
  msgstr ""
16485
 
16486
+ #: wppa-tinymce-scripts.php:293 wppa-tinymce-shortcodes.php:622
16487
+ msgid "Specify the alignment to be used or --- none ---"
16488
  msgstr ""
16489
 
16490
+ #: wppa-tinymce-scripts.php:299 wppa-tinymce-shortcodes.php:632
16491
+ msgid "Insert Gallery"
16492
  msgstr ""
16493
 
16494
+ #: wppa-tinymce-shortcodes.php:127
16495
+ msgid "Type of WPPA display:"
16496
  msgstr ""
16497
 
16498
+ #: wppa-tinymce-shortcodes.php:130
16499
+ msgid "Please select a display type"
16500
  msgstr ""
16501
 
16502
+ #: wppa-tinymce-shortcodes.php:131
16503
+ msgid "A gallery with covers and/or thumbnails"
16504
  msgstr ""
16505
 
16506
+ #: wppa-tinymce-shortcodes.php:132
16507
+ msgid "A slideshow"
16508
  msgstr ""
16509
 
16510
+ #: wppa-tinymce-shortcodes.php:133
16511
+ msgid "A single image"
16512
  msgstr ""
16513
 
16514
+ #: wppa-tinymce-shortcodes.php:134
16515
+ msgid "A search/selection box"
 
 
16516
  msgstr ""
16517
 
16518
+ #: wppa-tinymce-shortcodes.php:135
16519
+ msgid "An other box type"
 
 
16520
  msgstr ""
16521
 
16522
+ #: wppa-tinymce-shortcodes.php:142
16523
+ msgid "Type of gallery display:"
16524
  msgstr ""
16525
 
16526
+ #: wppa-tinymce-shortcodes.php:145
16527
+ msgid "Please select a gallery type"
16528
  msgstr ""
16529
 
16530
+ #: wppa-tinymce-shortcodes.php:146
16531
+ msgid "The cover(s) of specific album(s)"
16532
  msgstr ""
16533
 
16534
+ #: wppa-tinymce-shortcodes.php:147
16535
+ msgid "The content of specific album(s)"
16536
  msgstr ""
16537
 
16538
+ #: wppa-tinymce-shortcodes.php:148
16539
+ msgid "The covers of the subalbums of specific album(s)"
16540
  msgstr ""
16541
 
16542
+ #: wppa-tinymce-shortcodes.php:149
16543
+ msgid "The thumbnails of specific album(s)"
 
 
 
16544
  msgstr ""
16545
 
16546
+ #: wppa-tinymce-shortcodes.php:156
16547
+ msgid "Type of slideshow:"
 
 
16548
  msgstr ""
16549
 
16550
+ #: wppa-tinymce-shortcodes.php:159
16551
+ msgid "Please select a slideshow type"
16552
  msgstr ""
16553
 
16554
+ #: wppa-tinymce-shortcodes.php:160
16555
+ msgid "A fully featured slideshow"
 
 
16556
  msgstr ""
16557
 
16558
+ #: wppa-tinymce-shortcodes.php:163
16559
+ msgid "A filmstrip only"
16560
  msgstr ""
16561
 
16562
+ #: wppa-tinymce-shortcodes.php:170
16563
+ msgid "Type of single image:"
16564
  msgstr ""
16565
 
16566
+ #: wppa-tinymce-shortcodes.php:173
16567
+ msgid "Please select a single image type"
 
16568
  msgstr ""
16569
 
16570
+ #: wppa-tinymce-shortcodes.php:174
16571
+ msgid "A plain single photo"
16572
  msgstr ""
16573
 
16574
+ #: wppa-tinymce-shortcodes.php:176
16575
+ msgid "A single photo with extended caption"
16576
  msgstr ""
16577
 
16578
+ #: wppa-tinymce-shortcodes.php:184
16579
+ msgid "Type of search:"
16580
  msgstr ""
16581
 
16582
+ #: wppa-tinymce-shortcodes.php:187
16583
+ msgid "Please select a search type"
16584
  msgstr ""
16585
 
16586
+ #: wppa-tinymce-shortcodes.php:188
16587
+ msgid "A search box"
16588
  msgstr ""
16589
 
16590
+ #: wppa-tinymce-shortcodes.php:189
16591
+ msgid "A supersearch box"
 
 
16592
  msgstr ""
16593
 
16594
+ #: wppa-tinymce-shortcodes.php:190
16595
+ msgid "A tagcloud box"
 
16596
  msgstr ""
16597
 
16598
+ #: wppa-tinymce-shortcodes.php:191
16599
+ msgid "A multitag box"
16600
  msgstr ""
16601
 
16602
+ #: wppa-tinymce-shortcodes.php:192
16603
+ msgid "A superview box"
 
16604
  msgstr ""
16605
 
16606
+ #: wppa-tinymce-shortcodes.php:193
16607
+ msgid "A calendar box"
16608
  msgstr ""
16609
 
16610
+ #: wppa-tinymce-shortcodes.php:200
16611
+ msgid "Type miscellaneous:"
16612
  msgstr ""
16613
 
16614
+ #: wppa-tinymce-shortcodes.php:203
16615
+ msgid "Please select a miscellaneous display"
16616
  msgstr ""
16617
 
16618
+ #: wppa-tinymce-shortcodes.php:205
16619
+ msgid "An upload box"
16620
  msgstr ""
16621
 
16622
+ #: wppa-tinymce-shortcodes.php:206
16623
+ msgid "A landing page shortcode"
16624
  msgstr ""
16625
 
16626
+ #: wppa-tinymce-shortcodes.php:207
16627
+ msgid "A 3D stereo settings box"
16628
  msgstr ""
16629
 
16630
+ #: wppa-tinymce-shortcodes.php:208
16631
+ msgid "An admins choice box"
16632
  msgstr ""
16633
 
16634
+ #: wppa-tinymce-shortcodes.php:215
16635
+ msgid "Users:"
16636
  msgstr ""
16637
 
16638
+ #: wppa-tinymce-shortcodes.php:218
16639
+ msgid "All"
16640
  msgstr ""
16641
 
16642
+ #: wppa-tinymce-shortcodes.php:235
16643
+ msgid "Kind of selection:"
16644
  msgstr ""
16645
 
16646
+ #: wppa-tinymce-shortcodes.php:238
16647
+ msgid "Please select a type of selection to be used"
16648
  msgstr ""
16649
 
16650
+ #: wppa-tinymce-shortcodes.php:239
16651
+ msgid "One or more wppa+ albums"
16652
  msgstr ""
16653
 
16654
+ #: wppa-tinymce-shortcodes.php:240
16655
+ msgid "A special selection"
16656
  msgstr ""
16657
 
16658
+ #: wppa-tinymce-shortcodes.php:247 wppa-tinymce-shortcodes.php:267
16659
+ msgid "The selection to be used:"
16660
  msgstr ""
16661
 
16662
+ #: wppa-tinymce-shortcodes.php:250 wppa-tinymce-shortcodes.php:270
16663
+ msgid "Please select a virtual album"
16664
  msgstr ""
16665
 
16666
+ #: wppa-tinymce-shortcodes.php:251 wppa-tinymce-shortcodes.php:271
16667
+ msgid "The most recently modified album"
16668
  msgstr ""
16669
 
16670
+ #: wppa-tinymce-shortcodes.php:252
16671
+ msgid "The top rated photos"
16672
  msgstr ""
16673
 
16674
+ #: wppa-tinymce-shortcodes.php:253
16675
+ msgid "The most recently uploaded photos"
16676
  msgstr ""
16677
 
16678
+ #: wppa-tinymce-shortcodes.php:254
16679
+ msgid "A random selection of featured photos"
16680
  msgstr ""
16681
 
16682
+ #: wppa-tinymce-shortcodes.php:255
16683
+ msgid "The most recently commented photos"
16684
  msgstr ""
16685
 
16686
+ #: wppa-tinymce-shortcodes.php:256
16687
+ msgid "Photos tagged with certain tags"
16688
  msgstr ""
16689
 
16690
+ #: wppa-tinymce-shortcodes.php:257
16691
+ msgid "Albums tagged with a certain category"
16692
  msgstr ""
16693
 
16694
+ #: wppa-tinymce-shortcodes.php:258
16695
+ msgid "Photos in albums owned by a certain user"
16696
  msgstr ""
16697
 
16698
+ #: wppa-tinymce-shortcodes.php:259
16699
+ msgid "Photos uploaded by a certain user"
16700
  msgstr ""
16701
 
16702
+ #: wppa-tinymce-shortcodes.php:260
16703
+ msgid "All photos in the system"
 
16704
  msgstr ""
16705
 
16706
+ #: wppa-tinymce-shortcodes.php:272
16707
+ msgid "Albums owned by a certain user"
16708
  msgstr ""
16709
 
16710
+ #: wppa-tinymce-shortcodes.php:273
16711
+ msgid "Albums tagged with certain categories"
16712
  msgstr ""
16713
 
16714
+ #: wppa-tinymce-shortcodes.php:274
16715
+ msgid "All albums in the system"
16716
  msgstr ""
16717
 
16718
+ #: wppa-tinymce-shortcodes.php:281 wppa-tinymce-shortcodes.php:304
16719
+ msgid "The Album(s) to be used:"
16720
  msgstr ""
16721
 
16722
+ #: wppa-tinymce-shortcodes.php:287
16723
+ msgid "Please select one or more albums"
16724
  msgstr ""
16725
 
16726
+ #: wppa-tinymce-shortcodes.php:310 wppa-upldr-widget.php:210 wppa-utils.php:450
16727
+ msgid "All albums"
16728
  msgstr ""
16729
 
16730
+ #: wppa-tinymce-shortcodes.php:327
16731
+ msgid "The album owner:"
16732
  msgstr ""
16733
 
16734
+ #: wppa-tinymce-shortcodes.php:330
16735
+ msgid "Please select a user"
 
16736
  msgstr ""
16737
 
16738
+ #: wppa-tinymce-shortcodes.php:331
16739
+ msgid "The logged in visitor"
16740
  msgstr ""
16741
 
16742
+ #: wppa-tinymce-shortcodes.php:337
16743
+ msgid "Too many users, edit manually"
 
 
16744
  msgstr ""
16745
 
16746
+ #: wppa-tinymce-shortcodes.php:352
16747
+ msgid "No parent specification"
16748
  msgstr ""
16749
 
16750
+ #: wppa-tinymce-shortcodes.php:355 wppa-tinymce-shortcodes.php:378
16751
+ #: wppa-tinymce-shortcodes.php:566
16752
+ msgid "The generic parent"
16753
  msgstr ""
16754
 
16755
+ #: wppa-tinymce-shortcodes.php:395
16756
+ msgid "Max Albums:"
16757
  msgstr ""
16758
 
16759
+ #: wppa-tinymce-shortcodes.php:403
16760
+ msgid "Max Photos:"
 
16761
  msgstr ""
16762
 
16763
+ #: wppa-tinymce-shortcodes.php:411
16764
+ msgid "The album cat(s):"
 
16765
  msgstr ""
16766
 
16767
+ #: wppa-tinymce-shortcodes.php:414
16768
+ msgid "--- please select category ---"
16769
  msgstr ""
16770
 
16771
+ #: wppa-tinymce-shortcodes.php:432 wppa-tinymce-shortcodes.php:446
16772
+ msgid "The photo of the day"
 
16773
  msgstr ""
16774
 
16775
+ #: wppa-tinymce-shortcodes.php:445
16776
+ msgid "The most recently uploaded photo"
 
16777
  msgstr ""
16778
 
16779
+ #: wppa-tinymce-shortcodes.php:463
16780
+ msgid "Preview image:"
16781
  msgstr ""
16782
 
16783
+ #: wppa-tinymce-shortcodes.php:470
16784
+ msgid "The photo tag(s):"
16785
  msgstr ""
16786
 
16787
+ #: wppa-tinymce-shortcodes.php:484
16788
+ msgid "Or / And:"
16789
  msgstr ""
16790
 
16791
+ #: wppa-tinymce-shortcodes.php:486
16792
+ msgid "Meet any"
16793
  msgstr ""
16794
 
16795
+ #: wppa-tinymce-shortcodes.php:487
16796
+ msgid "Meet all"
16797
  msgstr ""
16798
 
16799
+ #: wppa-tinymce-shortcodes.php:493 wppa-tinymce-shortcodes.php:541
16800
+ msgid "Additional features:"
16801
  msgstr ""
16802
 
16803
+ #: wppa-tinymce-shortcodes.php:495
16804
+ msgid "Enable Subsearch"
16805
  msgstr ""
16806
 
16807
+ #: wppa-tinymce-shortcodes.php:496
16808
+ msgid "Enable Rootsearch"
16809
  msgstr ""
16810
 
16811
+ #: wppa-tinymce-shortcodes.php:502
16812
+ msgid "Search root:"
16813
  msgstr ""
16814
 
16815
+ #: wppa-tinymce-shortcodes.php:521
16816
+ msgid "Landing page:"
 
16817
  msgstr ""
16818
 
16819
+ #: wppa-tinymce-shortcodes.php:543
16820
+ msgid "Enable all tags"
16821
  msgstr ""
16822
 
16823
+ #: wppa-tinymce-shortcodes.php:546
16824
+ msgid "Please select the tags to show"
16825
  msgstr ""
16826
 
16827
+ #: wppa-tinymce-shortcodes.php:552
16828
+ msgid "There are no tags"
16829
  msgstr ""
16830
 
16831
+ #: wppa-tinymce-shortcodes.php:583
16832
+ msgid "Calendar type:"
16833
  msgstr ""
16834
 
16835
+ #: wppa-tinymce-shortcodes.php:586
16836
+ msgid "By EXIF date"
16837
  msgstr ""
16838
 
16839
+ #: wppa-tinymce-shortcodes.php:587
16840
+ msgid "By date of upload"
16841
  msgstr ""
16842
 
16843
+ #: wppa-tinymce-shortcodes.php:588
16844
+ msgid "By date last modified"
 
16845
  msgstr ""
16846
 
16847
+ #: wppa-tinymce-shortcodes.php:591
16848
+ msgid "Last date first"
16849
  msgstr ""
16850
 
16851
+ #: wppa-tinymce-shortcodes.php:592
16852
+ msgid "Initially display all"
 
16853
  msgstr ""
16854
 
16855
+ #: wppa-tinymce-shortcodes.php:605
16856
+ msgid ""
16857
+ "For responsive with a fixed maximum, add the max to auto e.g. <span style="
16858
+ "\"color:blue\" >auto,550</span>"
16859
  msgstr ""
16860
 
16861
+ #: wppa-tinymce-shortcodes.php:630
16862
+ msgid ""
16863
+ "This is a preview of the shortcode that is being generated. You may edit the "
16864
+ "comment"
16865
  msgstr ""
16866
 
16867
+ #: wppa-tinymce-shortcodes.php:633
16868
+ msgid "insert Gallery"
16869
  msgstr ""
16870
 
16871
+ #: wppa-tinymce-shortcodes.php:633
16872
+ msgid "Please complete the shortcode specs"
16873
  msgstr ""
16874
 
16875
+ #: wppa-topten-widget.php:12
16876
+ msgid "WPPA+ Top Ten Rated Photos"
16877
  msgstr ""
16878
 
16879
+ #: wppa-topten-widget.php:49
16880
+ msgid "Top Ten Photo album"
16881
  msgstr ""
16882
 
16883
+ #: wppa-topten-widget.php:346
16884
+ msgid "Number of views"
16885
  msgstr ""
16886
 
16887
+ #: wppa-topten-widget.php:350
16888
+ msgid "Include sub albums:"
 
 
16889
  msgstr ""
16890
 
16891
+ #: wppa-topten-widget.php:357
16892
+ msgid "Only with medals:"
 
16893
  msgstr ""
16894
 
16895
+ #: wppa-topten-widget.php:365
16896
+ msgid "Show owner:"
16897
  msgstr ""
16898
 
16899
+ #: wppa-topten-widget.php:370
16900
+ msgid "Show album:"
 
16901
  msgstr ""
16902
 
16903
+ #: wppa-topten-widget.php:385
16904
+ msgid "View count:"
16905
  msgstr ""
16906
 
16907
+ #: wppa-upldr-widget.php:14
16908
+ msgid "WPPA+ Uploader Photos"
16909
  msgstr ""
16910
 
16911
+ #: wppa-upldr-widget.php:15
16912
+ msgid "Uploader Photos"
16913
  msgstr ""
16914
 
16915
+ #: wppa-upldr-widget.php:42
16916
+ msgid "User uploaded photos"
 
16917
  msgstr ""
16918
 
16919
+ #: wppa-upldr-widget.php:168
16920
+ msgid "User Photos"
16921
  msgstr ""
16922
 
16923
+ #: wppa-upldr-widget.php:183
16924
+ msgid "Number of photos"
 
16925
  msgstr ""
16926
 
16927
+ #: wppa-upldr-widget.php:184
16928
+ msgid "Most recent photo"
16929
  msgstr ""
16930
 
16931
+ #: wppa-upldr-widget.php:188
16932
+ msgid "Ignore:"
16933
  msgstr ""
16934
 
16935
+ #: wppa-upldr-widget.php:190
16936
+ msgid "Enter loginnames seperated by commas"
16937
  msgstr ""
16938
 
16939
+ #: wppa-upldr-widget.php:193
16940
+ msgid "Look only in albums (including sub-albums):"
16941
  msgstr ""
16942
 
16943
+ #: wppa-upload-widget.php:15
16944
+ msgid "WPPA+ Upload photos widget"
16945
  msgstr ""
16946
 
16947
+ #: wppa-upload-widget.php:16
16948
+ msgid "WPPA+ Upload"
 
16949
  msgstr ""
16950
 
16951
+ #: wppa-upload.php:77 wppa-upload.php:92
16952
+ msgid "Connecting to edit album..."
 
16953
  msgstr ""
16954
 
16955
+ #: wppa-upload.php:81 wppa-upload.php:96
16956
+ msgid "Connecting to edit photos..."
 
 
16957
  msgstr ""
16958
 
16959
+ #: wppa-upload.php:106
16960
+ msgid "Connecting to your depot..."
 
16961
  msgstr ""
16962
 
16963
+ #: wppa-upload.php:141
16964
+ msgid "before you can upload your photos."
 
16965
  msgstr ""
16966
 
16967
+ #: wppa-upload.php:152
16968
+ msgid "Upload a single photo"
16969
  msgstr ""
16970
 
16971
+ #: wppa-upload.php:209
16972
+ #, php-format
16973
  msgid ""
16974
+ "<b>Notice:</b> your server allows you to upload <b>%s</b> files of maximum "
16975
+ "total <b>%s</b> bytes and allows <b>%s</b> seconds to complete."
16976
  msgstr ""
 
 
16977
 
16978
+ #: wppa-upload.php:210
16979
+ msgid ""
16980
+ "If your request exceeds these limitations, it will fail, probably without an "
16981
+ "errormessage."
16982
  msgstr ""
16983
 
16984
+ #: wppa-upload.php:211
16985
+ msgid ""
16986
+ "Additionally your hosting provider may have set other limitations on "
16987
+ "uploading files."
16988
  msgstr ""
16989
 
16990
+ #: wppa-upload.php:227
16991
+ msgid "Box A:"
16992
  msgstr ""
16993
 
16994
+ #: wppa-upload.php:227
16995
+ msgid "Multiple Photos in one selection"
16996
  msgstr ""
16997
 
16998
+ #: wppa-upload.php:229
16999
+ #, php-format
17000
+ msgid "You can select up to %s photos in one selection and upload them."
17001
  msgstr ""
17002
 
17003
+ #: wppa-upload.php:232
17004
+ msgid "You need a modern browser that supports HTML-5 to select multiple files"
17005
  msgstr ""
17006
 
17007
+ #: wppa-upload.php:248 wppa-upload.php:257 wppa-upload.php:370
17008
+ msgid "Selected Files:"
17009
  msgstr ""
17010
 
17011
+ #: wppa-upload.php:260
17012
+ msgid "Size"
17013
  msgstr ""
17014
 
17015
+ #: wppa-upload.php:261
17016
+ msgid "Type"
 
 
17017
  msgstr ""
17018
 
17019
+ #: wppa-upload.php:282
17020
+ msgid "Too many!"
17021
  msgstr ""
17022
 
17023
+ #: wppa-upload.php:286
17024
+ msgid "Too big!"
 
17025
  msgstr ""
17026
 
17027
+ #: wppa-upload.php:290
17028
+ msgid "Try again!"
17029
  msgstr ""
17030
 
17031
+ #: wppa-upload.php:292
17032
+ msgid "Total"
17033
  msgstr ""
17034
 
17035
+ #: wppa-upload.php:326
17036
+ msgid "Upload Multiple Photos"
17037
  msgstr ""
17038
 
17039
+ #: wppa-upload.php:341 wppa-upload.php:414
17040
+ msgid "After upload: Go to the <b>Edit Album</b> page."
17041
  msgstr ""
17042
 
17043
+ #: wppa-upload.php:344 wppa-upload.php:417
17044
+ msgid "After upload: Go to the <b>Edit Photos</b> page."
 
17045
  msgstr ""
17046
 
17047
+ #: wppa-upload.php:355
17048
+ msgid "Box B:"
 
 
17049
  msgstr ""
17050
 
17051
+ #: wppa-upload.php:355
17052
+ msgid "Single Photos in multiple selections"
17053
  msgstr ""
17054
 
17055
+ #: wppa-upload.php:357
17056
+ #, php-format
17057
+ msgid "You can select up to %s photos one by one and upload them at once."
17058
  msgstr ""
17059
 
17060
+ #: wppa-upload.php:400
17061
+ msgid "Upload Single Photos"
17062
  msgstr ""
17063
 
17064
+ #: wppa-upload.php:436
17065
+ msgid "Box C:"
17066
  msgstr ""
17067
 
17068
+ #: wppa-upload.php:436
17069
+ msgid "Zipped Photos in one selection"
17070
  msgstr ""
17071
 
17072
+ #: wppa-upload.php:438
17073
+ #, php-format
17074
+ msgid ""
17075
+ "You can upload one zipfile. It will be placed in your personal wppa-depot: "
17076
+ "<b>.../%s</b><br/>Once uploaded, use <b>Import Photos</b> to unzip the file "
17077
+ "and place the photos in any album."
17078
  msgstr ""
17079
 
17080
+ #: wppa-upload.php:455
17081
+ msgid "Upload Zipped Photos"
17082
  msgstr ""
17083
 
17084
+ #: wppa-upload.php:467
17085
+ msgid "After upload: Go to the <b>Import Photos</b> page."
17086
  msgstr ""
17087
 
17088
+ #: wppa-upload.php:475
17089
+ msgid ""
17090
+ "Ask your administrator to upgrade php to version 5.2.7 or later. This will "
17091
+ "enable you to upload zipped photos."
17092
  msgstr ""
17093
 
17094
+ #: wppa-upload.php:500
17095
+ #, php-format
17096
+ msgid "Time out. %s photos uploaded in album nr %s."
17097
  msgstr ""
17098
 
17099
+ #: wppa-upload.php:521 wppa-upload.php:553
17100
+ msgid "Photos Uploaded in album nr"
17101
  msgstr ""
17102
 
17103
+ #: wppa-upload.php:594
17104
+ msgid "Zipfile"
17105
  msgstr ""
17106
 
17107
+ #: wppa-upload.php:594
17108
+ msgid "sucessfully uploaded."
17109
  msgstr ""
17110
 
17111
+ #: wppa-upload.php:595
17112
+ msgid "during upload."
17113
  msgstr ""
17114
 
17115
+ #: wppa-utils.php:299 wppa-utils.php:326
17116
+ #, php-format
17117
+ msgid "Rating: %s"
17118
  msgstr ""
17119
 
17120
+ #: wppa-utils.php:940 wppa-utils.php:951 wppa-utils.php:962
17121
+ msgid "Notification of inappropriate image"
17122
  msgstr ""
17123
 
17124
+ #: wppa-utils.php:941 wppa-utils.php:952 wppa-utils.php:963
17125
+ #, php-format
17126
+ msgid "Photo %s has been marked as inappropriate by %s different visitors."
17127
  msgstr ""
17128
 
17129
+ #: wppa-utils.php:953
17130
+ msgid "The status has been changed to 'pending'."
 
17131
  msgstr ""
17132
 
17133
+ #: wppa-utils.php:964
17134
+ msgid "It has been deleted."
 
17135
  msgstr ""
17136
 
17137
+ #: wppa-utils.php:1031
17138
+ msgid "Your photo has a new approved comment"
17139
  msgstr ""
17140
 
17141
+ #: wppa-utils.php:1034
17142
+ msgid "From:"
17143
  msgstr ""
17144
 
17145
+ #: wppa-utils.php:1042
17146
+ msgid "Approved comment on photo"
17147
  msgstr ""
17148
 
17149
+ #: wppa-utils.php:1089
17150
+ #, php-format
17151
+ msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
17152
  msgstr ""
17153
 
17154
+ #: wppa-utils.php:1094
17155
+ #, php-format
17156
+ msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
17157
  msgstr ""
17158
 
17159
+ #: wppa-utils.php:1102
17160
+ #, php-format
17161
+ msgid ""
17162
+ "This message is automaticly generated at %s. It is useless to respond to it."
17163
  msgstr ""
17164
 
17165
+ #: wppa-utils.php:1323
17166
+ #, php-format
17167
+ msgid "Time out after processing %s items."
17168
  msgstr ""
17169
 
17170
+ #: wppa-utils.php:1326 wppa-utils.php:1330
17171
  #, php-format
17172
+ msgid "Time out after processing %s items. Please restart this operation"
17173
  msgstr ""
17174
 
17175
+ #: wppa-utils.php:2390
17176
+ msgid "There are no ratings between"
17177
  msgstr ""
17178
 
17179
+ #: wppa-video.php:188
17180
+ msgid ""
17181
+ "There is no filetype available for your browser, or your browser does not "
17182
+ "support html5 video"
17183
  msgstr ""
17184
+ "Der er ingen filtype til rådighed for din browser, eller din browser "
17185
+ "understøtter ikke HTML5-video"
17186
 
17187
+ #: wppa-watermark.php:527
17188
+ msgid "--- text: name ---"
17189
  msgstr ""
17190
 
17191
+ #: wppa-watermark.php:529
17192
+ msgid "--- text: filename ---"
17193
  msgstr ""
17194
 
17195
+ #: wppa-watermark.php:531
17196
+ msgid "--- text: description ---"
17197
  msgstr ""
17198
 
17199
+ #: wppa-watermark.php:533
17200
+ msgid "--- text: pre-defined ---"
17201
  msgstr ""
17202
 
17203
  #. Plugin Name of the plugin/theme
17223
  #. Author URI of the plugin/theme
17224
  msgid "http://wppa.opajaap.nl/"
17225
  msgstr "http://wppa.opajaap.nl/"
17226
+
17227
+ #~ msgid "Delete album"
17228
+ #~ msgstr "Slet album"
17229
+
17230
+ #~ msgid "Edit albuminfo"
17231
+ #~ msgstr "Rediger albuminfo"
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-07-11 11:24+0200\n"
5
- "PO-Revision-Date: 2016-07-11 11:24+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"
@@ -25,12 +25,12 @@ msgid "Pages:"
25
  msgstr "Seiten:"
26
 
27
  #: theme/photo-album-page-2010.php:31 theme/photo-album-search-page.php:53
28
- #: wppa-album-admin-autosave.php:1156 wppa-album-admin-autosave.php:1194
29
- #: wppa-album-admin-autosave.php:1293 wppa-album-admin-autosave.php:1465
30
- #: wppa-album-admin-autosave.php:1560 wppa-album-admin-autosave.php:1634
31
- #: wppa-album-admin-autosave.php:1745 wppa-album-admin-autosave.php:2067
32
  #: wppa-comment-admin.php:318 wppa-comment-admin.php:387
33
- #: wppa-comment-admin.php:405 wppa-setup.php:1290 wppa-thumbnails.php:639
34
  msgid "Edit"
35
  msgstr "Bearbeiten"
36
 
@@ -39,7 +39,7 @@ msgid "Warning. No page defined for search results!"
39
  msgstr "Warnung. Keine Seite für die Suchergebnisse definiert!"
40
 
41
  #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:175
42
- #: wppa-settings-autosave.php:421 wppa-settings-autosave.php:3368
43
  msgid "Search"
44
  msgstr "Suche"
45
 
@@ -62,18 +62,16 @@ msgstr ""
62
 
63
  #: theme/search-2016.php:46
64
  msgid "Previous page"
65
- msgstr ""
66
 
67
- #: theme/search-2016.php:47 wppa-admin-functions.php:659
68
- #, fuzzy
69
  msgid "Next page"
70
  msgstr "Nächste Seite"
71
 
72
- #: theme/search-2016.php:48 wppa-settings-autosave.php:419
73
- #: wppa-settings-autosave.php:1619 wppa-settings-autosave.php:8702
74
- #, fuzzy
75
  msgid "Page"
76
- msgstr "Seite:"
77
 
78
  #: theme/wppa-theme.php:328 theme/wppa-theme.php:347
79
  msgid "No photos found matching your search criteria."
@@ -88,80 +86,66 @@ msgid "No albums or photos found matching your search criteria."
88
  msgstr "Keine Alben oder Photos gefunden die Ihren Suchkriterien entsprechen."
89
 
90
  #: wppa-admin-functions.php:27
91
- #, fuzzy
92
  msgid "Settings successfully backed up"
93
  msgstr "Einstellungen erfolgreich gesichert"
94
 
95
  #: wppa-admin-functions.php:31
96
- #, fuzzy
97
  msgid "Unable to backup settings"
98
- msgstr "Es konnten keine backup-Einstellungen"
99
 
100
  #: wppa-admin-functions.php:40
101
- #, fuzzy
102
  msgid "Error writing to settings backup file"
103
  msgstr "Fehler beim Schreiben in Einstellungen-backup-Datei"
104
 
105
  #: wppa-admin-functions.php:101
106
- #, fuzzy
107
  msgid "Settings file not found"
108
  msgstr "Einstellungsdatei nicht gefunden"
109
 
110
- #: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2629
111
- #: wppa-ajax.php:2636
112
- #, fuzzy
113
  msgid "Please supply a numeric value greater than or equal to"
114
- msgstr "Bitte geben Sie einen numerischen Wert größer als oder gleich"
115
 
116
- #: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2629
117
- #: wppa-ajax.php:2636
118
- #, fuzzy
119
  msgid "for"
120
  msgstr "für"
121
 
122
- #: wppa-admin-functions.php:208 wppa-ajax.php:2636
123
- #, fuzzy
124
  msgid "and less than or equal to"
125
- msgstr "Kleiner oder gleich"
126
 
127
- #: wppa-admin-functions.php:223 wppa-album-admin-autosave.php:323
128
- #, fuzzy
129
  msgid "--- public ---"
130
- msgstr "--- Besitzer/öffentliche ---"
131
 
132
  #: wppa-admin-functions.php:462
133
- #, fuzzy, php-format
134
  msgid "File %s is of an unsupported filetype and has been removed."
135
  msgstr "Datei %s ist ein nicht unterstützter Dateityp und wurde entfernt."
136
 
137
- #: wppa-admin-functions.php:567 wppa-admin-functions.php:606
138
- #: wppa-admin-functions.php:610 wppa-admin-functions.php:614
139
- #, fuzzy
140
  msgid "Unexpected error:"
141
- msgstr "Unerwarteter Fehler"
142
 
143
- #: wppa-admin-functions.php:567
144
- #, fuzzy
145
  msgid "Missing database table:"
146
  msgstr "Fehlende Datenbank-Tabelle:"
147
 
148
- #: wppa-admin-functions.php:606
149
- #, fuzzy
150
  msgid "Missing directory:"
151
  msgstr "Fehlendes Verzeichnis:"
152
 
153
- #: wppa-admin-functions.php:610
154
- #, fuzzy
155
  msgid "Directory is not writable:"
156
  msgstr "Verzeichnis ist nicht beschreibbar:"
157
 
158
- #: wppa-admin-functions.php:614
159
- #, fuzzy
160
  msgid "Directory is not readable:"
161
  msgstr "Verzeichnis kann nicht gelesen werden:"
162
 
163
- #: wppa-admin-functions.php:622
164
- #, fuzzy
165
  msgid ""
166
  "Please de-activate and re-activate the plugin. If this problem persists, ask "
167
  "your administrator."
@@ -169,39 +153,35 @@ msgstr ""
169
  "Bitte deaktivieren Sie und reaktivieren Sie das Plugin. Wenn dieses Problem "
170
  "weiterhin besteht, bitten Sie Ihren Administrator."
171
 
172
- #: wppa-admin-functions.php:646
173
- #, fuzzy
174
  msgid "Prev page"
175
- msgstr "zurück"
176
 
177
- #: wppa-admin-functions.php:769 wppa-admin-functions.php:772
178
- #, fuzzy, php-format
179
  msgid "Album %s is full"
180
  msgstr "Album %s ist voll"
181
 
182
- #: wppa-admin-functions.php:790
183
- #, fuzzy, php-format
184
  msgid "Photo %s already exists in album number %s. Removed from depot."
185
- msgstr "Foto %s existiert bereits im Album Nummer %s entfernt vom Depot."
186
 
187
- #: wppa-admin-functions.php:793
188
- #, fuzzy, php-format
189
  msgid "Photo %s already exists in album number %s."
190
  msgstr "Foto %s existiert bereits im Albumnummer %s."
191
 
192
- #: wppa-admin-functions.php:823
193
- #, fuzzy, php-format
194
  msgid "ERROR: Attempt to upload a photo that is too large to process (%s)."
195
- msgstr ""
196
- "Fehler: Versuchen Sie, ein Foto hochladen, die zu groß zum Prozess (%s) ist."
197
 
198
- #: wppa-admin-functions.php:824
199
- #, fuzzy
200
  msgid "Too big"
201
  msgstr "Zu groß"
202
 
203
- #: wppa-admin-functions.php:828
204
- #, fuzzy
205
  msgid ""
206
  "WARNING: You are uploading photos that are too small. Photos must be larger "
207
  "than the thumbnail size and larger than the coverphotosize."
@@ -209,37 +189,32 @@ msgstr ""
209
  "Warnung: Sie sind Fotos hochladen, die zu klein sind. Fotos müssen größer "
210
  "als die Größe der Miniaturansichten und größer als die Coverphotosize sein."
211
 
212
- #: wppa-admin-functions.php:829
213
- #, fuzzy
214
  msgid "Too small"
215
  msgstr "Zu Klein"
216
 
217
- #: wppa-admin-functions.php:834
218
- #, fuzzy
219
  msgid "ERROR: Unable to retrieve image size of"
220
- msgstr "Fehler: Konnte nicht abgerufen werden Bildgröße von"
221
 
222
- #: wppa-admin-functions.php:834
223
- #, fuzzy
224
  msgid "Are you sure it is a photo?"
225
- msgstr "Sind Sie sicher, dass es ein Foto?"
226
 
227
- #: wppa-admin-functions.php:835
228
- #, fuzzy
229
  msgid "No imagesize"
230
- msgstr "Keine imagesize"
231
 
232
- #: wppa-admin-functions.php:844
233
- #, fuzzy
234
  msgid "Unsupported mime type encountered:"
235
  msgstr "Nicht unterstützten MIME-Typ begegnet:"
236
 
237
- #: wppa-admin-functions.php:861
238
  #, fuzzy
239
  msgid "Album not known while trying to add a photo"
240
  msgstr "Album nicht bekannt, bei dem Versuch, ein Foto hinzufügen"
241
 
242
- #: wppa-admin-functions.php:865
243
  #, fuzzy, php-format
244
  msgid ""
245
  "Album %s does not exist or is not accessable while trying to add a photo"
@@ -247,113 +222,113 @@ msgstr ""
247
  "Album %s existiert nicht oder ist nicht zugänglich, bei dem Versuch, ein "
248
  "Foto hinzufügen"
249
 
250
- #: wppa-admin-functions.php:884
251
  #, fuzzy
252
  msgid "Could not insert photo."
253
  msgstr "Konnte Foto nicht in db einfügen."
254
 
255
- #: wppa-admin-functions.php:920
256
  #, fuzzy
257
  msgid "ERROR: Unknown file or album."
258
  msgstr "Fehler: Unbekannte Datei oder Album."
259
 
260
- #: wppa-admin.php:54
261
  #, fuzzy
262
  msgid "Photo&thinsp;Albums"
263
  msgstr "Foto &thinsp; Alben"
264
 
265
- #: wppa-admin.php:57 wppa-adminbar.php:40 wppa-settings-autosave.php:6012
266
  #, fuzzy
267
  msgid "Album Admin"
268
  msgstr "Album-Admin"
269
 
270
- #: wppa-admin.php:58 wppa-adminbar.php:47 wppa-settings-autosave.php:6013
271
- #: wppa-upload-widget.php:79 wppa-upload.php:88
272
  #, fuzzy
273
  msgid "Upload Photos"
274
  msgstr "Fotos hochladen"
275
 
276
- #: wppa-admin.php:61 wppa-adminbar.php:53
277
  #, fuzzy
278
  msgid "Edit Photos"
279
  msgstr "Fotos bearbeiten"
280
 
281
- #: wppa-admin.php:63 wppa-adminbar.php:61 wppa-settings-autosave.php:6014
282
- #: wppa-upload.php:459
283
  #, fuzzy
284
  msgid "Import Photos"
285
  msgstr "Importieren von Fotos"
286
 
287
- #: wppa-admin.php:64 wppa-adminbar.php:68
288
  #, fuzzy
289
  msgid "Moderate Photos"
290
  msgstr "Moderate Fotos"
291
 
292
- #: wppa-admin.php:65 wppa-adminbar.php:75 wppa-export.php:32
293
- #: wppa-settings-autosave.php:6016
294
  #, fuzzy
295
  msgid "Export Photos"
296
  msgstr "Exportieren von Fotos"
297
 
298
- #: wppa-admin.php:66 wppa-adminbar.php:82 wppa-comment-admin.php:223
299
- #: wppa-settings-autosave.php:6017
300
  #, fuzzy
301
  msgid "Settings"
302
  msgstr "Einstellungen"
303
 
304
- #: wppa-admin.php:67
305
  #, fuzzy
306
  msgid "Photo of the day Widget"
307
  msgstr "Foto des Tages Widget"
308
 
309
- #: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:60
310
- #: wppa-settings-autosave.php:6018 wppa-setup.php:1564
311
  #, fuzzy
312
  msgid "Photo of the day"
313
  msgstr "Foto des Tages"
314
 
315
- #: wppa-admin.php:68
316
  #, fuzzy
317
  msgid "Manage comments"
318
  msgstr "Kommentare verwalten"
319
 
320
- #: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:411
321
- #: wppa-settings-autosave.php:3197 wppa-settings-autosave.php:8501
322
- #: wppa-settings-autosave.php:8546
323
  #, fuzzy
324
  msgid "Comments"
325
  msgstr "Kommentare"
326
 
327
- #: wppa-admin.php:69
328
  #, fuzzy
329
  msgid "Help &amp; Info"
330
  msgstr "Hilfe &amp; Info"
331
 
332
- #: wppa-admin.php:69 wppa-adminbar.php:103
333
  msgid "Documentation"
334
  msgstr "Documentation"
335
 
336
- #: wppa-admin.php:107
337
  #, fuzzy
338
  msgid "Uploading is temporary diabled for you"
339
  msgstr "Das Hochladen ist temporäre Kindersitzen für Sie"
340
 
341
- #: wppa-admin.php:113
342
  #, fuzzy
343
  msgid "Editing is temporary diabled for you"
344
  msgstr "Die Bearbeitung ist temporäre Kindersitzen für Sie"
345
 
346
- #: wppa-admin.php:120
347
  #, fuzzy
348
  msgid "Importing is temporary diabled for you"
349
  msgstr "Die Einfuhr von ist temporären Kindersitzen für Sie"
350
 
351
- #: wppa-admin.php:122 wppa-upload.php:1059
352
  #, fuzzy
353
  msgid "Import"
354
  msgstr "Importieren"
355
 
356
- #: wppa-admin.php:122 wppa-settings-autosave.php:9679
357
  #, fuzzy
358
  msgid "Update"
359
  msgstr "Aktualisieren"
@@ -386,15 +361,14 @@ msgid "Please enable this feature in Table IV-A27"
386
  msgstr "Bitte aktivieren Sie diese Funktion in Tabelle IV-A27"
387
 
388
  #: wppa-admins-choice-widget.php:78 wppa-album-navigator-widget.php:95
389
- #: wppa-album-widget.php:322 wppa-bestof-widget.php:131
390
  #: wppa-comment-widget.php:119 wppa-featen-widget.php:176 wppa-gp-widget.php:88
391
  #: wppa-lasten-widget.php:200 wppa-multitag-widget.php:72
392
- #: wppa-potd-widget.php:204 wppa-qr-widget.php:94 wppa-search-widget.php:94
393
  #: wppa-slideshow-widget.php:198 wppa-stereo-widget.php:68
394
  #: wppa-super-view-widget.php:73 wppa-tagcloud-widget.php:68
395
  #: wppa-thumbnail-widget.php:184 wppa-topten-widget.php:323
396
  #: wppa-upldr-widget.php:176 wppa-upload-widget.php:83
397
- #: wppa-widget-admin.php:245
398
  #, fuzzy
399
  msgid "Title:"
400
  msgstr "Titel:"
@@ -416,7 +390,7 @@ msgid "Exit & Refresh"
416
  msgstr "Ausfahrt & aktualisieren"
417
 
418
  #: wppa-ajax.php:250 wppa-ajax.php:316 wppa-ajax.php:351 wppa-ajax.php:629
419
- #: wppa-ajax.php:901 wppa-ajax.php:2586
420
  #, fuzzy
421
  msgid "Security check failure"
422
  msgstr "Sicherheitsfehler"
@@ -426,7 +400,7 @@ msgstr "Sicherheitsfehler"
426
  msgid "You do not have the rights to moderate photos this way"
427
  msgstr "Sie haben nicht die Rechte an Fotos auf diese Weise moderieren"
428
 
429
- #: wppa-ajax.php:300 wppa-ajax.php:1205 wppa-functions.php:2315
430
  #, fuzzy
431
  msgid "Photo comment approved"
432
  msgstr "Foto Kommentar genehmigt"
@@ -461,7 +435,7 @@ msgstr "Kommentar entfernt"
461
  msgid "Could not remove comment"
462
  msgstr "Kommentar konnte nicht entfernt werden."
463
 
464
- #: wppa-ajax.php:364 wppa-ajax.php:769
465
  #, fuzzy
466
  msgid "Unexpected error"
467
  msgstr "Unerwarteter Fehler"
@@ -474,7 +448,7 @@ msgstr "Diese Funktion ist auf dieser Website nicht aktiviert."
474
  #: wppa-ajax.php:382
475
  #, fuzzy
476
  msgid "The album is empty"
477
- msgstr "Das ALbum ist leer."
478
 
479
  #: wppa-ajax.php:391 wppa-ajax.php:470 wppa-ajax.php:592
480
  #, fuzzy
@@ -496,7 +470,7 @@ msgstr "Die ZIP-Datei kann nur %s von %s Fotos hinzugefügt werden"
496
  msgid "Unable to create zipsdir"
497
  msgstr "Nicht in der Lage, Zipsdir zu erstellen"
498
 
499
- #: wppa-ajax.php:503 wppa-functions.php:2126 wppa-thumbnails.php:614
500
  #, fuzzy
501
  msgid "Selected"
502
  msgstr "ja"
@@ -529,7 +503,7 @@ msgstr "Das Foto ist nicht mehr vorhanden"
529
  #: wppa-ajax.php:643
530
  #, fuzzy
531
  msgid "An error occurred while processing you rating request."
532
- msgstr "Bei der Verarbeitung du ne Anfrage ist ein Fehler aufgetreten."
533
 
534
  #: wppa-ajax.php:644
535
  #, fuzzy
@@ -548,8 +522,8 @@ msgid ""
548
  "Althoug an error occurred while processing your rating, your vote has been "
549
  "registered."
550
  msgstr ""
551
- "Althoug Während Ihrer Bewertung ein Fehler aufgetreten ist, hat Ihre Stimme "
552
- "wurde registriert."
553
 
554
  #: wppa-ajax.php:647
555
  #, fuzzy
@@ -561,27 +535,37 @@ msgstr "Jedoch kann dies nicht in der aktuellen Seitenzugriff niederschlagen"
561
  msgid "Photo has been removed."
562
  msgstr "Foto wurde entfernt."
563
 
564
- #: wppa-ajax.php:685 wppa-slideshow.php:722
565
  #, fuzzy
566
  msgid "Sorry, you can not rate your own photos"
567
  msgstr "Leider können Sie nicht Ihre eigenen Fotos bewerten"
568
 
569
- #: wppa-ajax.php:697
570
  #, fuzzy
571
  msgid "Please enter a comment."
572
  msgstr "Bitte geben Sie einen Kommentar ein."
573
 
574
- #: wppa-ajax.php:722
575
  #, fuzzy
576
- msgid "Security check failure."
577
- msgstr "Sicherheitsfehler"
 
 
 
 
 
 
 
 
 
 
578
 
579
- #: wppa-ajax.php:734 wppa-ajax.php:750
580
  #, fuzzy
581
  msgid "Photo rated"
582
  msgstr "Foto bewertet"
583
 
584
- #: wppa-ajax.php:853
585
  #, fuzzy
586
  msgid ""
587
  "Please explain your vote in a comment.\n"
@@ -597,824 +581,830 @@ msgstr ""
597
  "Im Anschluss an Ihren Kommentar können Sie aktualisieren Sie die Seite um zu "
598
  "sehen, dass Ihre Stimme in Kraft trat."
599
 
600
- #: wppa-ajax.php:897
601
  #, fuzzy
602
  msgid "You do not have the rights to delete a photo"
603
  msgstr "Sie haben nicht das Recht auf ein Foto löschen"
604
 
605
- #: wppa-ajax.php:907
606
  #, fuzzy, php-format
607
  msgid "Photo %s has been deleted"
608
  msgstr "Foto %s wurde gelöscht"
609
 
610
- #: wppa-ajax.php:923
611
  #, fuzzy
612
  msgid "You do not have the rights to update album information"
613
- msgstr ""
614
- "Sie verfügen nicht über die Rechte zum Album Informationen zu aktualisieren"
615
 
616
- #: wppa-ajax.php:935
617
  #, fuzzy
618
  msgid "<b>Ratings cleared</b>"
619
  msgstr "<b>Bewertungen gelöscht</b>"
620
 
621
- #: wppa-ajax.php:935 wppa-ajax.php:941 wppa-photo-admin-autosave.php:318
622
  #, fuzzy
623
  msgid "No ratings for this photo."
624
- msgstr "Noch keine Bewertungen für dieses Foto."
625
 
626
- #: wppa-ajax.php:938
627
  #, fuzzy
628
  msgid "An error occurred while clearing ratings"
629
- msgstr "Beim Löschen Bewertungen ist ein Fehler aufgetreten"
630
 
631
- #: wppa-ajax.php:941 wppa-ajax.php:962 wppa-ajax.php:984
632
  #, fuzzy
633
  msgid "<b>No photos in this album</b>"
634
- msgstr "<b>Keine Bilder in diesem Album</b>"
635
 
636
- #: wppa-ajax.php:956
637
  #, fuzzy
638
  msgid "<b>Tags set to defaults</b> (reload)"
639
  msgstr "<b>Tags auf Standardwerte gesetzt</b> (neu laden)"
640
 
641
- #: wppa-ajax.php:959
642
  #, fuzzy
643
  msgid "An error occurred while setting tags"
644
  msgstr "Fehler beim Festlegen von tags"
645
 
646
- #: wppa-ajax.php:978
647
  #, fuzzy
648
  msgid "<b>Tags added width defaults</b> (reload)"
649
  msgstr "<b>Breite Standardwerte mit Markierungen</b> (neu laden)"
650
 
651
- #: wppa-ajax.php:981
652
  #, fuzzy
653
  msgid "An error occurred while adding tags"
654
  msgstr "Fehler beim Hinzufügen von tags"
655
 
656
- #: wppa-ajax.php:1007
657
  #, fuzzy
658
  msgid "No subalbums found to process"
659
  msgstr "Keine Subalbums gefunden, um Prozess"
660
 
661
- #: wppa-ajax.php:1012
662
  #, fuzzy
663
  msgid "No categories found to process"
664
  msgstr "Keine Kategorien gefunden zu verarbeiten"
665
 
666
- #: wppa-ajax.php:1016
667
  #, php-format
668
  msgid "%d album updated"
669
  msgid_plural "%d albums updated"
670
  msgstr[0] "%d Album aktualisiert"
671
  msgstr[1] "%d Album aktualisiert"
672
 
673
- #: wppa-ajax.php:1023
674
  #, fuzzy, php-format
675
  msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
676
  msgstr "Album-Name darf nicht leer sein.<br>Setzen Sie auf <b>%s</b>"
677
 
678
- #: wppa-ajax.php:1025 wppa-ajax.php:1465 wppa-album-admin-autosave.php:392
679
- #: wppa-album-admin-autosave.php:449 wppa-album-admin-autosave.php:1103
680
- #: wppa-album-admin-autosave.php:1240 wppa-album-admin-autosave.php:1412
681
- #: wppa-album-admin-autosave.php:1507 wppa-boxes-html.php:415
682
  #: wppa-boxes-html.php:529 wppa-photo-admin-autosave.php:1363
683
- #: wppa-photo-admin-autosave.php:1482 wppa-photo-admin-autosave.php:1879
684
- #: wppa-settings-autosave.php:553 wppa-settings-autosave.php:715
685
- #: wppa-settings-autosave.php:737 wppa-settings-autosave.php:1485
686
- #: wppa-settings-autosave.php:1506 wppa-settings-autosave.php:3094
687
- #: wppa-settings-autosave.php:3115 wppa-settings-autosave.php:3439
688
- #: wppa-settings-autosave.php:3463 wppa-settings-autosave.php:3988
689
- #: wppa-settings-autosave.php:4102 wppa-settings-autosave.php:4751
690
- #: wppa-settings-autosave.php:4772 wppa-settings-autosave.php:4948
691
- #: wppa-settings-autosave.php:4972 wppa-settings-autosave.php:5978
692
- #: wppa-settings-autosave.php:6388 wppa-settings-autosave.php:6638
693
- #: wppa-settings-autosave.php:6660 wppa-settings-autosave.php:7390
694
- #: wppa-settings-autosave.php:7414 wppa-settings-autosave.php:8495
695
- #: wppa-settings-autosave.php:9136 wppa-settings-autosave.php:9292
696
- #: wppa-thumbnail-widget.php:202 wppa-upload.php:166
 
697
  msgid "Name"
698
  msgstr "Name"
699
 
700
- #: wppa-ajax.php:1028 wppa-ajax.php:1468 wppa-album-admin-autosave.php:1113
701
- #: wppa-album-admin-autosave.php:1250 wppa-album-admin-autosave.php:1422
702
- #: wppa-album-admin-autosave.php:1517 wppa-photo-admin-autosave.php:1364
703
- #: wppa-photo-admin-autosave.php:1483 wppa-photo-admin-autosave.php:1880
704
- #: wppa-settings-autosave.php:554 wppa-settings-autosave.php:716
705
- #: wppa-settings-autosave.php:738 wppa-settings-autosave.php:1486
706
- #: wppa-settings-autosave.php:1507 wppa-settings-autosave.php:3095
707
- #: wppa-settings-autosave.php:3116 wppa-settings-autosave.php:3440
708
- #: wppa-settings-autosave.php:3464 wppa-settings-autosave.php:4752
709
- #: wppa-settings-autosave.php:4773 wppa-settings-autosave.php:4949
710
- #: wppa-settings-autosave.php:4973 wppa-settings-autosave.php:5979
711
- #: wppa-settings-autosave.php:6389 wppa-settings-autosave.php:6639
712
- #: wppa-settings-autosave.php:6661 wppa-settings-autosave.php:7391
713
- #: wppa-settings-autosave.php:7415 wppa-settings-autosave.php:9137
714
- #: wppa-settings-autosave.php:9159 wppa-settings-autosave.php:9199
715
- #: wppa-settings-autosave.php:9221 wppa-settings-autosave.php:9267
716
- #: wppa-settings-autosave.php:9293 wppa-widget-admin.php:263
 
717
  #, fuzzy
718
  msgid "Description"
719
  msgstr "Album Beschreibung eingeben"
720
 
721
- #: wppa-ajax.php:1032
722
  #, fuzzy
723
  msgid "Unbalanced tags in album description!"
724
  msgstr "Unsymmetrische Tags in Album Beschreibung!"
725
 
726
- #: wppa-ajax.php:1039
727
  #, fuzzy
728
  msgid "Album order #"
729
  msgstr "Album bestellen #"
730
 
731
- #: wppa-ajax.php:1042
732
  #, fuzzy
733
  msgid "Cover photo"
734
  msgstr "Titelbild"
735
 
736
- #: wppa-ajax.php:1045
737
  #, fuzzy
738
  msgid "Parent album"
739
  msgstr "Übergeordnetes Album"
740
 
741
- #: wppa-ajax.php:1050 wppa-settings-autosave.php:3982
742
  #, fuzzy
743
  msgid "Photo order"
744
  msgstr "Bildersortierung"
745
 
746
- #: wppa-ajax.php:1053
747
  #, fuzzy
748
  msgid "Use Alt thumbsize"
749
  msgstr "Verwenden Sie Alt dies"
750
 
751
- #: wppa-ajax.php:1056
752
  #, fuzzy
753
  msgid "Cover Type"
754
  msgstr "Cover-Typ"
755
 
756
- #: wppa-ajax.php:1059 wppa-settings-autosave.php:4974
757
- #: wppa-settings-autosave.php:5980
758
  #, fuzzy
759
  msgid "Link type"
760
  msgstr "Verknüpfungstyp"
761
 
762
- #: wppa-ajax.php:1062 wppa-album-covers.php:1303
763
  msgid "Link to"
764
  msgstr "Link zu"
765
 
766
- #: wppa-ajax.php:1065 wppa-ajax.php:1489 wppa-album-admin-autosave.php:1124
767
- #: wppa-album-admin-autosave.php:1261 wppa-album-admin-autosave.php:1433
768
- #: wppa-album-admin-autosave.php:1528 wppa-boxes-html.php:537
769
  #: wppa-photo-admin-autosave.php:1366 wppa-photo-admin-autosave.php:1485
770
- #: wppa-widget-admin.php:264
771
  msgid "Owner"
772
  msgstr "Inhaber"
773
 
774
- #: wppa-ajax.php:1067
775
  #, fuzzy, php-format
776
  msgid "User %s does not exist"
777
  msgstr "Benutzer \"%s\" nicht vorhanden"
778
 
779
- #: wppa-ajax.php:1072 wppa-ajax.php:1078
780
  #, fuzzy
781
  msgid "Upload limit count"
782
  msgstr "Upload Limit Graf"
783
 
784
- #: wppa-ajax.php:1085
785
  #, fuzzy
786
  msgid "Upload limit time"
787
  msgstr "Hochladebegrenzung"
788
 
789
- #: wppa-ajax.php:1089
790
  #, fuzzy
791
  msgid "Default tags"
792
  msgstr "Standard-tags"
793
 
794
- #: wppa-ajax.php:1094
795
  #, fuzzy
796
  msgid "Categories"
797
  msgstr "Regionen"
798
 
799
- #: wppa-ajax.php:1097
800
  #, fuzzy
801
  msgid "Sub albums sort order"
802
  msgstr "Sub-Alben-Sortierung"
803
 
804
- #: wppa-ajax.php:1105 wppa-ajax.php:1559
805
  #, fuzzy
806
  msgid "Schedule date/time"
807
  msgstr "Datum/Uhrzeit planen"
808
 
809
- #: wppa-ajax.php:1118 wppa-ajax.php:1170
810
  #, fuzzy, php-format
811
  msgid "<b>%s</b> of album %s updated"
812
  msgstr "<b>%s</b> %s aktualisiert-Album"
813
 
814
- #: wppa-ajax.php:1126
815
  #, fuzzy
816
  msgid "All photos set to scheduled per date"
817
  msgstr "Alle Fotos auf geplante pro Datum festgelegt"
818
 
819
- #: wppa-ajax.php:1153
820
- #, php-format
821
  msgid "<b>Custom field %s</b> updated"
822
- msgstr ""
823
 
824
- #: wppa-ajax.php:1179
825
  #, fuzzy, php-format
826
  msgid "An error occurred while trying to update <b>%s</b> of album %s"
827
  msgstr ""
828
  "Beim Versuch, <b>%s</b> %s Album aktualisieren ist ein Fehler aufgetreten."
829
 
830
- #: wppa-ajax.php:1180 wppa-ajax.php:1443 wppa-ajax.php:1549
831
  #, fuzzy
832
  msgid "Press CTRL+F5 and try again."
833
  msgstr "Strg + F5 Taste und versuchen Sie es erneut."
834
 
835
- #: wppa-ajax.php:1194
836
  #, fuzzy
837
  msgid "You do not have the rights to update comment status"
838
  msgstr "Sie haben nicht die Rechte Kommentarstatus aktualisieren"
839
 
840
- #: wppa-ajax.php:1211
841
  #, fuzzy, php-format
842
  msgid "Status of comment #%s updated"
843
  msgstr "Status der Kommentar #%s aktualisiert"
844
 
845
- #: wppa-ajax.php:1214
846
  #, fuzzy, php-format
847
  msgid "Error updating status comment #%s"
848
  msgstr "Fehler beim Aktualisieren der Status Kommentar #%s"
849
 
850
- #: wppa-ajax.php:1225
851
  #, fuzzy
852
  msgid "You do not have the rights to change photos"
853
  msgstr "Sie haben nicht die Rechte an Fotos ändern"
854
 
855
- #: wppa-ajax.php:1234
856
  #, fuzzy
857
  msgid "Watermark applied"
858
  msgstr "Wasserzeichen angewendet"
859
 
860
- #: wppa-ajax.php:1238
861
  #, fuzzy
862
  msgid "An error occured while trying to apply a watermark"
863
  msgstr "Ist ein Fehler aufgetreten beim Versuch, ein Wasserzeichen anwenden"
864
 
865
- #: wppa-ajax.php:1257
866
  #, fuzzy
867
  msgid "You do not have the rights to update photo information"
868
  msgstr "Sie müssen nicht das Rechte Fotoinformationen aktualisieren"
869
 
870
- #: wppa-ajax.php:1263
871
  #, fuzzy, php-format
872
  msgid "%s updated to %s."
873
  msgstr "%s %s aktualisiert."
874
 
875
- #: wppa-ajax.php:1313
876
  #, fuzzy, php-format
877
  msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
878
  msgstr "Format Fehler %s muss Yyyy:mm:dd HH"
879
 
880
- #: wppa-ajax.php:1317
881
  #, fuzzy
882
  msgid "Exif date/time updated"
883
  msgstr "Exif-Datum/Uhrzeit aktualisiert"
884
 
885
- #: wppa-ajax.php:1323
886
  #, fuzzy
887
  msgid "Enter a value > -90 and < 90"
888
  msgstr "Geben Sie einen Wert >-90 und < 90"
889
 
890
- #: wppa-ajax.php:1331
891
  #, fuzzy
892
  msgid "Lattitude updated"
893
  msgstr "Latitude aktualisiert"
894
 
895
- #: wppa-ajax.php:1333
896
  #, fuzzy
897
  msgid "Could not update lattitude"
898
  msgstr "Breitengrad konnte nicht aktualisiert werden."
899
 
900
- #: wppa-ajax.php:1339
901
  #, fuzzy
902
  msgid "Enter a value > -180 and < 180"
903
  msgstr "Geben Sie einen Wert >-180 und < 180"
904
 
905
- #: wppa-ajax.php:1347
906
  #, fuzzy
907
  msgid "Longitude updated"
908
  msgstr "Länge aktualisiert"
909
 
910
- #: wppa-ajax.php:1349
911
  #, fuzzy
912
  msgid "Could not update longitude"
913
  msgstr "Längengrad konnte nicht aktualisiert werden."
914
 
915
- #: wppa-ajax.php:1357
916
  #, fuzzy
917
  msgid "Photo files remade"
918
  msgstr "Foto-Dateien überarbeitet"
919
 
920
- #: wppa-ajax.php:1360
921
  #, fuzzy
922
  msgid "Could not remake files"
923
  msgstr "Dateien konnten nicht erneuern."
924
 
925
- #: wppa-ajax.php:1366
926
  #, fuzzy
927
  msgid "Thumbnail remade"
928
  msgstr "Miniaturansicht Remake"
929
 
930
- #: wppa-ajax.php:1369
931
  #, fuzzy
932
  msgid "Could not remake thumbnail"
933
  msgstr "Konnte keine Miniaturansicht remake"
934
 
935
- #: wppa-ajax.php:1379 wppa-photo-admin-autosave.php:184
936
- #: wppa-settings-autosave.php:3798 wppa-tinymce-scripts.php:288
937
- #: wppa-tinymce-shortcodes.php:614 wppa-widget-admin.php:91
938
  #, fuzzy
939
  msgid "left"
940
  msgstr "Links"
941
 
942
- #: wppa-ajax.php:1383 wppa-photo-admin-autosave.php:186
943
  #, fuzzy
944
  msgid "180&deg;"
945
  msgstr "180°"
946
 
947
- #: wppa-ajax.php:1387 wppa-photo-admin-autosave.php:188
948
- #: wppa-settings-autosave.php:3798 wppa-tinymce-scripts.php:290
949
- #: wppa-tinymce-shortcodes.php:616 wppa-widget-admin.php:93
950
  #, fuzzy
951
  msgid "right"
952
  msgstr "Rechts"
953
 
954
- #: wppa-ajax.php:1395
955
  #, fuzzy, php-format
956
  msgid "Photo %s rotated %s"
957
  msgstr "Foto %s %s gedreht"
958
 
959
- #: wppa-ajax.php:1398
960
  #, fuzzy, php-format
961
  msgid "An error occurred while trying to rotate photo %s"
962
  msgstr "Ist ein Fehler aufgetreten beim Versuch, Foto %s zu drehen"
963
 
964
- #: wppa-ajax.php:1408 wppa-ajax.php:1431 wppa-photo-admin-autosave.php:1100
965
  #: wppa-photo-admin-autosave.php:1118
966
  #, fuzzy, php-format
967
  msgid "A photo with filename %s already exists in album %s."
968
  msgstr "Ein Foto mit Dateinamen %s existiert bereits im Album %s."
969
 
970
- #: wppa-ajax.php:1418
971
  #, fuzzy, php-format
972
  msgid "Photo %s has been moved to album %s (%s)"
973
  msgstr "Foto %s wurde verschoben auf Album %s (%s)"
974
 
975
- #: wppa-ajax.php:1421
976
  #, fuzzy, php-format
977
  msgid "An error occurred while trying to move photo %s"
978
  msgstr "Ist ein Fehler aufgetreten beim Versuch, Foto %s verschieben"
979
 
980
- #: wppa-ajax.php:1439
981
  #, fuzzy, php-format
982
  msgid "Photo %s copied to album %s (%s)"
983
  msgstr "Foto %s %s (%s) Album kopiert"
984
 
985
- #: wppa-ajax.php:1442
986
  #, fuzzy, php-format
987
  msgid "An error occurred while trying to copy photo %s"
988
  msgstr "Ist ein Fehler aufgetreten beim Versuch, Foto %s kopieren"
989
 
990
- #: wppa-ajax.php:1472 wppa-ajax.php:2060
991
  #, fuzzy
992
  msgid "Unbalanced tags in photo description!"
993
  msgstr "Unsymmetrische Tags in Fotobeschreibung!"
994
 
995
- #: wppa-ajax.php:1478
996
  #, fuzzy
997
  msgid "Photo order #"
998
  msgstr "Bildersortierung"
999
 
1000
- #: wppa-ajax.php:1483
1001
  #, fuzzy, php-format
1002
  msgid "User %s does not exists"
1003
  msgstr "Benutzer %s existiert nicht"
1004
 
1005
- #: wppa-ajax.php:1492
1006
  #, fuzzy
1007
  msgid "Link url"
1008
  msgstr "Top Link in der Liste?"
1009
 
1010
- #: wppa-ajax.php:1495
1011
  #, fuzzy
1012
  msgid "Link title"
1013
  msgstr "Link-Titel"
1014
 
1015
- #: wppa-ajax.php:1498
1016
  #, fuzzy
1017
  msgid "Link target"
1018
  msgstr "Linkziel"
1019
 
1020
- #: wppa-ajax.php:1504 wppa-multitag-widget.php:34 wppa-multitag-widget.php:66
1021
  #: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
1022
  #, fuzzy
1023
  msgid "Photo Tags"
1024
  msgstr "Foto-Tags"
1025
 
1026
- #: wppa-ajax.php:1509 wppa-comment-admin.php:317 wppa-comment-admin.php:404
1027
  #: wppa-photo-admin-autosave.php:1365 wppa-photo-admin-autosave.php:1484
1028
- #: wppa-settings-autosave.php:6664 wppa-settings-autosave.php:7394
1029
- #: wppa-settings-autosave.php:9160 wppa-settings-autosave.php:9200
1030
- #: wppa-settings-autosave.php:9222 wppa-settings-autosave.php:9268
1031
  #, fuzzy
1032
  msgid "Status"
1033
  msgstr "Status"
1034
 
1035
- #: wppa-ajax.php:1512
1036
  #, fuzzy
1037
  msgid "HTML Alt"
1038
  msgstr "HTML Alt"
1039
 
1040
- #: wppa-ajax.php:1516
1041
  #, fuzzy
1042
  msgid "Video width"
1043
  msgstr "Breite des Videos"
1044
 
1045
- #: wppa-ajax.php:1518 wppa-ajax.php:1525
1046
  #, fuzzy
1047
  msgid "Please enter an integer value >= 0"
1048
  msgstr "Bitte geben Sie einen ganzzahligen Wert > = 0"
1049
 
1050
- #: wppa-ajax.php:1523
1051
  #, fuzzy
1052
  msgid "Video height"
1053
  msgstr "Video Höhe"
1054
 
1055
- #: wppa-ajax.php:1541 wppa-ajax.php:1575
1056
  #, fuzzy, php-format
1057
  msgid "<b>%s</b> of video %s updated"
1058
  msgstr "<b>%s</b> von Video%s aktualisiert"
1059
 
1060
- #: wppa-ajax.php:1544 wppa-ajax.php:1578
1061
  #, fuzzy, php-format
1062
  msgid "<b>%s</b> of photo %s updated"
1063
  msgstr "<b>%s</b> %s aktualisiert Fotos"
1064
 
1065
- #: wppa-ajax.php:1548
1066
  #, fuzzy, php-format
1067
  msgid "An error occurred while trying to update <b>%s</b> of photo %s"
1068
  msgstr ""
1069
  "Beim Versuch, <b>%s</b> %s Fotos aktualisieren ist ein Fehler aufgetreten."
1070
 
1071
- #: wppa-ajax.php:1604
1072
  #, fuzzy, php-format
1073
  msgid "<b>Custom field %s</b> of photo %s updated"
1074
  msgstr "<b>Benutzerdefiniertes Feld %s</b> %s aktualisiert Fotos"
1075
 
1076
- #: wppa-ajax.php:1611
1077
  #, fuzzy
1078
  msgid "<b>Error during upload.</b>"
1079
- msgstr "<b>Fehler beim Upload.</b>"
1080
 
1081
- #: wppa-ajax.php:1645
1082
  #, fuzzy
1083
  msgid "Photo files updated."
1084
  msgstr "Foto-Dateien aktualisiert."
1085
 
1086
- #: wppa-ajax.php:1650
1087
  #, fuzzy
1088
  msgid "Could not update files."
1089
  msgstr "Dateien konnten nicht aktualisiert werden."
1090
 
1091
- #: wppa-ajax.php:1661
1092
  #, fuzzy, php-format
1093
  msgid "Stereo mode updated in %d milliseconds"
1094
  msgstr "Stereo-Modus in %d Millisekunden aktualisiert"
1095
 
1096
- #: wppa-ajax.php:1677
1097
  #, fuzzy
1098
  msgid "You do not have the rights to update settings"
1099
  msgstr "Sie haben nicht die Rechte Einstellungen aktualisieren"
1100
 
1101
- #: wppa-ajax.php:1758
 
 
 
 
 
1102
  #, fuzzy
1103
  msgid "Capability granted"
1104
  msgstr "Fähigkeit gewährt"
1105
 
1106
- #: wppa-ajax.php:1763
1107
  #, fuzzy
1108
  msgid "Capability withdrawn"
1109
  msgstr "Fähigkeit zurückgezogen"
1110
 
1111
- #: wppa-ajax.php:1774
1112
  #, fuzzy
1113
  msgid "Column width."
1114
- msgstr "Spaltenbreite"
1115
 
1116
- #: wppa-ajax.php:1777
1117
  #, fuzzy
1118
  msgid "Initial width."
1119
  msgstr "Ursprüngliche Breite"
1120
 
1121
- #: wppa-ajax.php:1780
1122
  #, fuzzy
1123
  msgid "Full size."
1124
  msgstr "Originalgröße"
1125
 
1126
- #: wppa-ajax.php:1783
1127
  #, fuzzy
1128
  msgid "Max height."
1129
  msgstr "Max. Höhe:"
1130
 
1131
- #: wppa-ajax.php:1788
1132
  #, fuzzy
1133
  msgid "Thumbnail size."
1134
- msgstr "Miniaturbildgröße"
1135
 
1136
- #: wppa-ajax.php:1792
1137
  #, fuzzy
1138
  msgid "Thumbnail frame width"
1139
  msgstr "Thumbnail Rahmenbreite"
1140
 
1141
- #: wppa-ajax.php:1796
1142
  #, fuzzy
1143
  msgid "Thumbnail frame height"
1144
  msgstr "Miniaturansicht Rahmenhöhe"
1145
 
1146
- #: wppa-ajax.php:1799
1147
  #, fuzzy
1148
  msgid "Thumbnail Spacing"
1149
  msgstr "Miniaturansicht Abstand"
1150
 
1151
- #: wppa-ajax.php:1802
1152
  #, fuzzy
1153
  msgid "Photocount treshold."
1154
  msgstr "Photocount Treshold."
1155
 
1156
- #: wppa-ajax.php:1805
1157
  #, fuzzy
1158
  msgid "Thumb page size."
1159
  msgstr "Daumen Sie-Seitengröße."
1160
 
1161
- #: wppa-ajax.php:1808
1162
  #, fuzzy
1163
  msgid "Cover photo size."
1164
  msgstr "Coverbild Größe"
1165
 
1166
- #: wppa-ajax.php:1811
1167
  #, fuzzy
1168
  msgid "Album page size."
1169
  msgstr "Größe der Album Seite"
1170
 
1171
- #: wppa-ajax.php:1814
1172
  #, fuzzy
1173
  msgid "Number of TopTen photos"
1174
  msgstr "Anzahl der TopTen Fotos"
1175
 
1176
- #: wppa-ajax.php:1817
1177
  #, fuzzy
1178
  msgid "Widget image thumbnail size"
1179
  msgstr "Thumbnail-Bildgröße Widget"
1180
 
1181
- #: wppa-ajax.php:1820 wppa-settings-autosave.php:1143
1182
  #, fuzzy
1183
  msgid "Max Cover width"
1184
  msgstr "Breite Max Cover"
1185
 
1186
- #: wppa-ajax.php:1823
1187
  #, fuzzy
1188
  msgid "Minimal description height"
1189
  msgstr "Minimale Beschreibung Höhe"
1190
 
1191
- #: wppa-ajax.php:1826
1192
  #, fuzzy
1193
  msgid "Minimal cover height"
1194
  msgstr "Minimale Deckelhöhe"
1195
 
1196
- #: wppa-ajax.php:1829
1197
  #, fuzzy
1198
  msgid "Minimal text frame height"
1199
  msgstr "Wenig Text Rahmenhöhe"
1200
 
1201
- #: wppa-ajax.php:1832 wppa-settings-autosave.php:1440
1202
  #, fuzzy
1203
  msgid "Border width"
1204
  msgstr "Randbreite"
1205
 
1206
- #: wppa-ajax.php:1835 wppa-settings-autosave.php:814
1207
- #: wppa-settings-autosave.php:1449
1208
  #, fuzzy
1209
  msgid "Border radius"
1210
  msgstr "Radius Rand"
1211
 
1212
- #: wppa-ajax.php:1838 wppa-settings-autosave.php:825
1213
  #, fuzzy
1214
  msgid "Box spacing"
1215
  msgstr "Box-Abstand"
1216
 
1217
- #: wppa-ajax.php:1844 wppa-settings-autosave.php:1118
1218
  #, fuzzy
1219
  msgid "Popup size"
1220
  msgstr "Popup-Größe"
1221
 
1222
- #: wppa-ajax.php:1847
1223
  #, fuzzy
1224
  msgid "Fullsize border width"
1225
  msgstr "Fullsize Rahmenbreite"
1226
 
1227
- #: wppa-ajax.php:1850
1228
  #, fuzzy
1229
  msgid "Lightbox Bordersize"
1230
  msgstr "Leuchtkasten Bordersize"
1231
 
1232
- #: wppa-ajax.php:1853
1233
  #, fuzzy
1234
  msgid "Lightbox Borderwidth"
1235
  msgstr "Lightbox Borderwidth"
1236
 
1237
- #: wppa-ajax.php:1856
1238
  #, fuzzy
1239
  msgid "Lightbox Borderradius"
1240
  msgstr "Leuchtkasten Borderradius"
1241
 
1242
- #: wppa-ajax.php:1859
1243
  #, fuzzy
1244
  msgid "Number of Comment widget entries"
1245
  msgstr "Anzahl der Kommentar Widget Einträge"
1246
 
1247
- #: wppa-ajax.php:1862
1248
  #, fuzzy
1249
  msgid "Comment Widget image thumbnail size"
1250
  msgstr "Thumbnail-Bildgröße Kommentar Widget"
1251
 
1252
- #: wppa-ajax.php:1865 wppa-ajax.php:1868 wppa-ajax.php:1871
1253
  #, fuzzy
1254
  msgid "Opacity."
1255
- msgstr "Deckkraft"
1256
 
1257
- #: wppa-ajax.php:1880 wppa-settings-autosave.php:1249
1258
  #, fuzzy
1259
  msgid "Avatar size"
1260
  msgstr "Avatar-Grösse: "
1261
 
1262
- #: wppa-ajax.php:1883 wppa-ajax.php:1886
1263
  #, fuzzy
1264
  msgid "Watermark opacity"
1265
  msgstr "Deckkraft Wasserzeichen"
1266
 
1267
- #: wppa-ajax.php:1889 wppa-settings-autosave.php:1418
1268
  #, fuzzy
1269
  msgid "Number of text lines"
1270
  msgstr "Anzahl der Textzeilen"
1271
 
1272
- #: wppa-ajax.php:1892 wppa-settings-autosave.php:4628
1273
  #, fuzzy
1274
  msgid "Overlay opacity"
1275
  msgstr "Überlagerungsdeckkraft"
1276
 
1277
- #: wppa-ajax.php:1895 wppa-settings-autosave.php:7954
1278
  #, fuzzy
1279
  msgid "Upload limit"
1280
  msgstr "Hochladebegrenzung"
1281
 
1282
- #: wppa-ajax.php:1898 wppa-settings-autosave.php:4298
1283
  #, fuzzy
1284
  msgid "Notify inappropriate"
1285
  msgstr "Unangemessen zu benachrichtigen"
1286
 
1287
- #: wppa-ajax.php:1901
1288
  #, fuzzy
1289
  msgid "Dislike pending"
1290
  msgstr "Mag nicht anhängig"
1291
 
1292
- #: wppa-ajax.php:1904
1293
  #, fuzzy
1294
  msgid "Dislike delete"
1295
  msgstr "Abneigung gegen löschen"
1296
 
1297
- #: wppa-ajax.php:1907 wppa-settings-autosave.php:7490
1298
  #, fuzzy
1299
  msgid "Max execution time"
1300
  msgstr "Max Durchführungszeit"
1301
 
1302
- #: wppa-ajax.php:1913
1303
  #, fuzzy
1304
  msgid "myCRED / Cube Points"
1305
  msgstr "MyCRED / Cube Punkte"
1306
 
1307
- #: wppa-ajax.php:1916
1308
  #, fuzzy
1309
  msgid "JPG Image quality"
1310
  msgstr "JPG-Bild-Qualität"
1311
 
1312
- #: wppa-ajax.php:1922 wppa-settings-autosave.php:4191
1313
  #, fuzzy
1314
  msgid "Number of coverphotos"
1315
  msgstr "Anzahl der coverphotos"
1316
 
1317
- #: wppa-ajax.php:1925 wppa-settings-autosave.php:4269
1318
  #, fuzzy
1319
  msgid "Dislike value"
1320
  msgstr "Dislike Wert"
1321
 
1322
- #: wppa-ajax.php:1928 wppa-settings-autosave.php:955
1323
  #, fuzzy
1324
  msgid "Slideshow pagesize"
1325
  msgstr "Diashow Seitengröße"
1326
 
1327
- #: wppa-ajax.php:1931 wppa-settings-autosave.php:974
1328
  #, fuzzy
1329
  msgid "Slideonly max"
1330
  msgstr "Slideonly max"
1331
 
1332
- #: wppa-ajax.php:1934 wppa-settings-autosave.php:843
1333
  #, fuzzy
1334
  msgid "Max Pagelinks"
1335
  msgstr "Max Pagelinks"
1336
 
1337
- #: wppa-ajax.php:1937 wppa-settings-autosave.php:3033
1338
  #, fuzzy
1339
  msgid "Start/pause symbol size"
1340
  msgstr "Start/Pause Symbolgröße"
1341
 
1342
- #: wppa-ajax.php:1940 wppa-settings-autosave.php:3042
1343
  #, fuzzy
1344
  msgid "Start/pause symbol border radius"
1345
  msgstr "Start/Pause-Symbol Rahmenradius"
1346
 
1347
- #: wppa-ajax.php:1943 wppa-settings-autosave.php:3051
1348
  #, fuzzy
1349
  msgid "Stop symbol size"
1350
  msgstr "Symbolgröße zu stoppen"
1351
 
1352
- #: wppa-ajax.php:1946 wppa-settings-autosave.php:3060
1353
  #, fuzzy
1354
  msgid "Stop symbol border radius"
1355
  msgstr "Stop-Symbol Grenze Radius"
1356
 
1357
- #: wppa-ajax.php:1949 wppa-settings-autosave.php:870
1358
  #, fuzzy
1359
  msgid "Sticky header size"
1360
  msgstr "Sticky"
1361
 
1362
- #: wppa-ajax.php:1957
1363
  #, fuzzy
1364
  msgid "Ratings cleared"
1365
  msgstr "Bewertungen gelöscht"
1366
 
1367
- #: wppa-ajax.php:1960
1368
  #, fuzzy
1369
  msgid "Could not clear ratings"
1370
- msgstr "Könnte nicht klar Bewertungen"
1371
 
1372
- #: wppa-ajax.php:1969
1373
  #, fuzzy
1374
  msgid "Viewcounts cleared"
1375
  msgstr "Viewcounts gelöscht"
1376
 
1377
- #: wppa-ajax.php:1972
1378
  #, fuzzy
1379
  msgid "Could not clear viewcounts"
1380
  msgstr "Viewcounts konnten nicht gelöscht werden."
1381
 
1382
- #: wppa-ajax.php:1982
1383
  #, fuzzy
1384
  msgid "IPTC data cleared"
1385
  msgstr "IPTC-Daten gelöscht"
1386
 
1387
- #: wppa-ajax.php:1983
1388
  #, fuzzy
1389
  msgid "Refresh this page to clear table X"
1390
  msgstr "Aktualisieren Sie diese Seite um Tabelle X löschen"
1391
 
1392
- #: wppa-ajax.php:1987
1393
  #, fuzzy
1394
  msgid "Could not clear IPTC data"
1395
  msgstr "IPTC-Daten konnten nicht gelöscht werden."
1396
 
1397
- #: wppa-ajax.php:1997
1398
  #, fuzzy
1399
  msgid "EXIF data cleared"
1400
  msgstr "EXIF-Daten gelöscht"
1401
 
1402
- #: wppa-ajax.php:1998
1403
  #, fuzzy
1404
  msgid "Refresh this page to clear table XI"
1405
  msgstr "Aktualisieren Sie diese Seite um Tabelle XI löschen"
1406
 
1407
- #: wppa-ajax.php:2002
1408
  #, fuzzy
1409
  msgid "Could not clear EXIF data"
1410
  msgstr "EXIF-Daten konnten nicht gelöscht werden."
1411
 
1412
- #: wppa-ajax.php:2010
1413
  #, fuzzy
1414
  msgid "Recuperation performed"
1415
  msgstr "Rekuperation durchgeführt"
1416
 
1417
- #: wppa-ajax.php:2025
1418
  #, fuzzy
1419
  msgid ""
1420
  "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
@@ -1423,64 +1413,64 @@ msgstr ""
1423
  "Illegale Format. Bitte geben Sie einen 6-stelligen hexadezimalen Farbwert. "
1424
  "Beispiel: #77bbff"
1425
 
1426
- #: wppa-ajax.php:2051
1427
  #, fuzzy
1428
  msgid "You just changed a setting that requires the recalculation of ratings."
1429
  msgstr ""
1430
- "Sie verändert nur eine Einstellung, die Neuberechnung der Bewertungen "
1431
- "erfordert."
1432
 
1433
- #: wppa-ajax.php:2052 wppa-ajax.php:2500
1434
  #, fuzzy
1435
  msgid "Please run the appropriate action in Table VIII."
1436
  msgstr "Bitte führen Sie die entsprechende Aktion in Tabelle VIII."
1437
 
1438
- #: wppa-ajax.php:2076 wppa-ajax.php:2092
1439
  #, fuzzy, php-format
1440
  msgid "Unable to create or write to %s"
1441
  msgstr "Nicht erstellen oder schreiben Sie an %s"
1442
 
1443
- #: wppa-ajax.php:2085
1444
  #, fuzzy
1445
  msgid "Source can not be inside the wppa folder."
1446
  msgstr "Quelle kann nicht im Ordner \"Wppa\" sein."
1447
 
1448
- #: wppa-ajax.php:2102
1449
  #, fuzzy
1450
  msgid "The content must contain w#album"
1451
  msgstr "Der Inhalt muss w #album enthalten."
1452
 
1453
- #: wppa-ajax.php:2109
1454
  #, fuzzy
1455
  msgid "The content must contain w#lat and w#lon"
1456
  msgstr "Der Inhalt muss w #lat und w #lon enthalten."
1457
 
1458
- #: wppa-ajax.php:2157 wppa-ajax.php:2163
1459
  #, fuzzy
1460
  msgid "Members"
1461
  msgstr "Mitarbeiter"
1462
 
1463
- #: wppa-ajax.php:2157
1464
  #, fuzzy
1465
  msgid "Parent of the member albums"
1466
  msgstr "Eltern der Mitglieder Alben"
1467
 
1468
- #: wppa-ajax.php:2301
1469
  #, fuzzy, php-format
1470
  msgid "User %s has been blacklisted."
1471
  msgstr "Benutzer %s hat auf der schwarzen Liste."
1472
 
1473
- #: wppa-ajax.php:2304 wppa-ajax.php:2334
1474
  #, fuzzy, php-format
1475
  msgid "User %s does not exist."
1476
  msgstr "Benutzer \"%s\" nicht vorhanden"
1477
 
1478
- #: wppa-ajax.php:2331
1479
  #, fuzzy, php-format
1480
  msgid "User %s is now superuser."
1481
  msgstr "Benutzer %s ist jetzt Superuser."
1482
 
1483
- #: wppa-ajax.php:2356
1484
  #, fuzzy
1485
  msgid ""
1486
  "The content of the Custom box has been changed to display the Fotomoto "
@@ -1489,23 +1479,23 @@ msgstr ""
1489
  "Der Inhalt des Felds Custom wurde geändert, um die Fotomoto-Symbolleiste "
1490
  "angezeigt."
1491
 
1492
- #: wppa-ajax.php:2360 wppa-ajax.php:2375
1493
  #, fuzzy
1494
  msgid "The display of the custom box has been enabled"
1495
  msgstr "Die Anzeige der benutzerdefinierten Feld wurde aktiviert"
1496
 
1497
- #: wppa-ajax.php:2371
1498
  #, fuzzy
1499
  msgid "The content of the Custom box has been changed to display maps."
1500
  msgstr ""
1501
  "Der Inhalt des Felds Custom wurde geändert, um Karten angezeigt werden."
1502
 
1503
- #: wppa-ajax.php:2409
1504
  #, fuzzy
1505
  msgid "This value can not be empty"
1506
  msgstr "Dieser Wert darf nicht leer sein."
1507
 
1508
- #: wppa-ajax.php:2438
1509
  #, fuzzy
1510
  msgid ""
1511
  "You must run Table VIII-A13 and VIII-A14 first before you can switch to "
@@ -1514,37 +1504,37 @@ msgstr ""
1514
  "Sie müssen Tabelle VIII-A13 und VIII-A14 zuerst ausführen, bevor Sie zum "
1515
  "verschlüsselten Urls wechseln können."
1516
 
1517
- #: wppa-ajax.php:2441
1518
  #, fuzzy
1519
  msgid "Table IV-A3 will be switched off."
1520
  msgstr "Tabelle IV-A3 wird abgeschaltet."
1521
 
1522
- #: wppa-ajax.php:2445
1523
  #, fuzzy
1524
  msgid "Table IV-A4 will be switched off."
1525
  msgstr "Tabelle IV-A4 wird ausgeschaltet."
1526
 
1527
- #: wppa-ajax.php:2455
1528
  #, fuzzy
1529
  msgid "Not allowed when cryptic links is active"
1530
  msgstr "Nicht zulässig, wenn kryptische Links aktiv ist"
1531
 
1532
- #: wppa-ajax.php:2467
1533
  #, fuzzy
1534
  msgid "A Twitter account name must start with an at sign: @"
1535
  msgstr "Ein Twitter-Account-Namen muss beginnen mit einem at-Zeichen: @"
1536
 
1537
- #: wppa-ajax.php:2478
1538
  #, fuzzy, php-format
1539
  msgid "Failed to set %s to %s"
1540
  msgstr "Fehler beim Festlegen von %s auf %s"
1541
 
1542
- #: wppa-ajax.php:2483
1543
  #, fuzzy, php-format
1544
  msgid "Setting %s updated to %s"
1545
  msgstr "Festlegen von %s %s aktualisiert"
1546
 
1547
- #: wppa-ajax.php:2499
1548
  #, fuzzy
1549
  msgid ""
1550
  "You just changed a setting that requires the regeneration of thumbnails."
@@ -1552,32 +1542,32 @@ msgstr ""
1552
  "Sie haben nur eine Einstellung, die die Regeneration von Thumbnails "
1553
  "erfordert geändert."
1554
 
1555
- #: wppa-ajax.php:2554
1556
  #, fuzzy
1557
  msgid "Missing album id"
1558
  msgstr "Fehlende Album-id"
1559
 
1560
- #: wppa-ajax.php:2574
1561
  #, fuzzy
1562
  msgid "You do not have the rights to delete this album"
1563
  msgstr "Sie haben nicht die Rechte an diesem Album löschen"
1564
 
1565
- #: wppa-ajax.php:2595
1566
  #, fuzzy
1567
  msgid "An error has occurred"
1568
  msgstr "Ein Interner Fehler Ist Aufgetreten"
1569
 
1570
- #: wppa-ajax.php:2631 wppa-ajax.php:2638
1571
  #, fuzzy
1572
  msgid "You may also enter:"
1573
  msgstr "Sie können auch eingeben:"
1574
 
1575
- #: wppa-ajax.php:2632 wppa-ajax.php:2639
1576
  #, fuzzy
1577
  msgid "You may also leave/set this blank"
1578
  msgstr "Sie können auch Urlaub/dies leere set"
1579
 
1580
- #: wppa-album-admin-autosave.php:23 wppa-album-admin-autosave.php:773
1581
  #, fuzzy
1582
  msgid "Upload to this album"
1583
  msgstr "Auf diesem Album hochladen"
@@ -1596,25 +1586,25 @@ msgstr ""
1596
  "Das Upload-Verzeichnis existiert nicht oder ist nicht vom Server "
1597
  "beschreibbar. Bitte stellen Sie sicher, dass %s vom Server beschreibbar ist."
1598
 
1599
- #: wppa-album-admin-autosave.php:79 wppa-album-admin-autosave.php:816
1600
  #, fuzzy
1601
  msgid "Manage Photos"
1602
  msgstr "Fotos verwalten"
1603
 
1604
- #: wppa-album-admin-autosave.php:80 wppa-album-admin-autosave.php:817
1605
  #, fuzzy
1606
  msgid "Copy / move / delete / edit name / edit description / change status"
1607
  msgstr ""
1608
  "Kopieren Sie / verschieben Sie / löschen Sie / bearbeiten Sie Name / "
1609
  "bearbeiten Sie Beschreibung / ändern status"
1610
 
1611
- #: wppa-album-admin-autosave.php:81 wppa-album-admin-autosave.php:819
1612
  #, fuzzy
1613
  msgid "Edit photo information except copy and move"
1614
  msgstr "Fotoinformationen außer Kopie bearbeiten und verschieben"
1615
 
1616
- #: wppa-album-admin-autosave.php:82 wppa-album-admin-autosave.php:820
1617
- #: wppa-setup.php:1291
1618
  #, fuzzy
1619
  msgid "Edit photo information"
1620
  msgstr "Foto bearbeiten"
@@ -1624,43 +1614,43 @@ msgstr "Foto bearbeiten"
1624
  msgid "Back to album table"
1625
  msgstr "Zurück zum album"
1626
 
1627
- #: wppa-album-admin-autosave.php:91 wppa-album-admin-autosave.php:827
1628
  #, fuzzy
1629
  msgid "Top of page"
1630
  msgstr "Am Anfang der Seite"
1631
 
1632
- #: wppa-album-admin-autosave.php:118 wppa-functions.php:4183
1633
- #: wppa-settings-autosave.php:7802 wppa-wpdb-insert.php:338
1634
  msgid "New Album"
1635
  msgstr "Neues Fotoalbum"
1636
 
1637
- #: wppa-album-admin-autosave.php:123 wppa-upload.php:1568 wppa-upload.php:1604
1638
- #: wppa-upload.php:2379
1639
  #, fuzzy
1640
  msgid "Could not create album."
1641
  msgstr "Album konnte nicht erstellt werden"
1642
 
1643
- #: wppa-album-admin-autosave.php:131 wppa-upload.php:1574 wppa-upload.php:2387
1644
  #, fuzzy
1645
  msgid "Album #"
1646
  msgstr "Album:"
1647
 
1648
- #: wppa-album-admin-autosave.php:131 wppa-upload.php:1574 wppa-upload.php:2387
1649
  #, fuzzy
1650
  msgid "Added."
1651
  msgstr "%s Punkte hinzugefügt"
1652
 
1653
- #: wppa-album-admin-autosave.php:176
1654
  #, fuzzy
1655
  msgid "Edit Album Information"
1656
  msgstr "Informationen über das Album bearbeiten"
1657
 
1658
- #: wppa-album-admin-autosave.php:176 wppa-settings-autosave.php:317
1659
  #, fuzzy
1660
  msgid "Auto Save"
1661
  msgstr "Auto. speichern"
1662
 
1663
- #: wppa-album-admin-autosave.php:178
1664
  #, fuzzy
1665
  msgid ""
1666
  "All modifications are instantly updated on the server, except for those that "
@@ -1669,7 +1659,7 @@ msgstr ""
1669
  "Alle Änderungen werden sofort auf dem Server, mit Ausnahme derjenigen, die "
1670
  "ein Knopfdruck erfordern aktualisiert."
1671
 
1672
- #: wppa-album-admin-autosave.php:179
1673
  #, fuzzy
1674
  msgid ""
1675
  "The <b style=\"color:#070\" >Remark</b> fields keep you informed on the "
@@ -1678,80 +1668,80 @@ msgstr ""
1678
  "Die <b style=\"color:#070\">Bemerkung</b> Felder informieren Sie über die "
1679
  "Aktionen im Hintergrund."
1680
 
1681
- #: wppa-album-admin-autosave.php:183
1682
  #, fuzzy
1683
  msgid "Album number:"
1684
  msgstr "Albumnummer:"
1685
 
1686
- #: wppa-album-admin-autosave.php:183 wppa-photo-admin-autosave.php:179
1687
  #, fuzzy
1688
  msgid "Crypt"
1689
  msgstr "\"Gruft\";"
1690
 
1691
- #: wppa-album-admin-autosave.php:192
1692
  #, fuzzy
1693
  msgid "Name:"
1694
  msgstr "Name"
1695
 
1696
- #: wppa-album-admin-autosave.php:199
1697
  #, fuzzy
1698
  msgid "Update Album name"
1699
  msgstr "Album updaten"
1700
 
1701
- #: wppa-album-admin-autosave.php:207
1702
  #, fuzzy
1703
  msgid "Type the name of the album. Do not leave this empty."
1704
  msgstr "Geben Sie den Namen des Albums. Lassen Sie dies leer."
1705
 
1706
- #: wppa-album-admin-autosave.php:215 wppa-photo-admin-autosave.php:753
1707
  #: wppa-photo-admin-autosave.php:778
1708
  #, fuzzy
1709
  msgid "Description:"
1710
  msgstr "Album Beschreibung eingeben"
1711
 
1712
- #: wppa-album-admin-autosave.php:226
1713
  #, fuzzy
1714
  msgid "Update Album description"
1715
  msgstr "Album Beschreibung aktualisiert"
1716
 
1717
- #: wppa-album-admin-autosave.php:236
1718
  #, fuzzy
1719
  msgid "Enter / modify the description for this album."
1720
  msgstr "Geben Sie ein / ändern Sie die Beschreibung für dieses Album."
1721
 
1722
- #: wppa-album-admin-autosave.php:280
1723
  #, fuzzy
1724
  msgid "Created:"
1725
  msgstr "ERROR: Resized oder kopierte Bild konnte nicht erstellt werden."
1726
 
1727
- #: wppa-album-admin-autosave.php:283 wppa-album-admin-autosave.php:294
1728
  #: wppa-photo-admin-autosave.php:257 wppa-photo-admin-autosave.php:280
1729
  #, fuzzy
1730
  msgid "local time"
1731
  msgstr "Ortszeit"
1732
 
1733
- #: wppa-album-admin-autosave.php:289 wppa-photo-admin-autosave.php:275
1734
  #, fuzzy
1735
  msgid "Modified:"
1736
  msgstr "Bearbeitet:"
1737
 
1738
- #: wppa-album-admin-autosave.php:297 wppa-photo-admin-autosave.php:283
1739
  #: wppa-photo-admin-autosave.php:1472
1740
  #, fuzzy
1741
  msgid "Not modified"
1742
  msgstr "Nicht geändert"
1743
 
1744
- #: wppa-album-admin-autosave.php:306
1745
  #, fuzzy
1746
  msgid "Views:"
1747
  msgstr "Aufrufe:"
1748
 
1749
- #: wppa-album-admin-autosave.php:319 wppa-photo-admin-autosave.php:261
1750
  #, fuzzy
1751
  msgid "Owned by:"
1752
  msgstr "gehört"
1753
 
1754
- #: wppa-album-admin-autosave.php:337
1755
  #, fuzzy
1756
  msgid ""
1757
  "WARNING If you change the owner, you will no longer be able to modify this "
@@ -1760,17 +1750,17 @@ msgstr ""
1760
  "Warnung Wenn Sie den Besitzer ändern, werden Sie nicht mehr in der Lage, "
1761
  "dieses Album zu ändern und hochladen oder importieren Sie Fotos darauf!"
1762
 
1763
- #: wppa-album-admin-autosave.php:339
1764
  #, fuzzy
1765
  msgid "Enter user login name or <b>--- public ---</b>"
1766
  msgstr "Geben Sie Benutzer-Login-Namen oder <b>---öffentliche---</b>"
1767
 
1768
- #: wppa-album-admin-autosave.php:348
1769
  #, fuzzy
1770
  msgid "Album sort order #:"
1771
  msgstr "Album Art bestellen #:"
1772
 
1773
- #: wppa-album-admin-autosave.php:356
1774
  #, fuzzy
1775
  msgid ""
1776
  "Album order # has only effect if you set the album sort order method to "
@@ -1780,7 +1770,7 @@ msgstr ""
1780
  "sortieren Reihenfolge-Methode <b>bestellen #</b> in den Fotoalben-> "
1781
  "Bildschirm \"Einstellungen\".<br>"
1782
 
1783
- #: wppa-album-admin-autosave.php:359
1784
  #, fuzzy
1785
  msgid ""
1786
  "If you want to sort the albums by order #, enter / modify the order number "
@@ -1789,13 +1779,13 @@ msgstr ""
1789
  "Wenn Sie die Alben von sortieren möchten, eingeben / ändern die "
1790
  "Bestellnummer hier bestellen #."
1791
 
1792
- #: wppa-album-admin-autosave.php:366 wppa-tinymce-shortcodes.php:345
1793
- #: wppa-tinymce-shortcodes.php:371 wppa-tinymce-shortcodes.php:559
1794
  #, fuzzy
1795
  msgid "Parent album:"
1796
  msgstr "Übergeordnetes Album"
1797
 
1798
- #: wppa-album-admin-autosave.php:377
1799
  #, fuzzy
1800
  msgid ""
1801
  "If this is a sub album, select the album in which this album will appear."
@@ -1803,97 +1793,97 @@ msgstr ""
1803
  "Wenn dies ein Sub-Album ist, wählen Sie das Album, in dem dieses Album "
1804
  "angezeigt werden."
1805
 
1806
- #: wppa-album-admin-autosave.php:386
1807
  #, fuzzy
1808
  msgid "Photo order:"
1809
  msgstr "Bildersortierung"
1810
 
1811
- #: wppa-album-admin-autosave.php:390 wppa-album-admin-autosave.php:491
1812
- #: wppa-settings-autosave.php:4025 wppa-settings-autosave.php:4049
1813
- #: wppa-tinymce-shortcodes.php:504 wppa-tinymce-shortcodes.php:523
1814
  #, fuzzy
1815
  msgid "--- default ---"
1816
  msgstr "Standard-Fotoalbum für"
1817
 
1818
- #: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:447
1819
- #: wppa-settings-autosave.php:3987 wppa-settings-autosave.php:4101
1820
  #: wppa-thumbnail-widget.php:201
1821
  #, fuzzy
1822
  msgid "Order #"
1823
  msgstr "Bestellung #"
1824
 
1825
- #: wppa-album-admin-autosave.php:393 wppa-album-admin-autosave.php:446
1826
- #: wppa-settings-autosave.php:3989 wppa-settings-autosave.php:4103
1827
- #: wppa-thumbnail-widget.php:203 wppa-widget-admin.php:156
1828
  #, fuzzy
1829
  msgid "Random"
1830
  msgstr "Zufall"
1831
 
1832
- #: wppa-album-admin-autosave.php:394 wppa-settings-autosave.php:3990
1833
  #, fuzzy
1834
  msgid "Rating mean value"
1835
  msgstr "Bewertungswerte"
1836
 
1837
- #: wppa-album-admin-autosave.php:395 wppa-bestof-widget.php:170
1838
- #: wppa-settings-autosave.php:3991 wppa-topten-widget.php:345
1839
  #, fuzzy
1840
  msgid "Number of votes"
1841
  msgstr "Anzahl der Stimmen"
1842
 
1843
- #: wppa-album-admin-autosave.php:396 wppa-album-admin-autosave.php:451
1844
- #: wppa-settings-autosave.php:3992 wppa-settings-autosave.php:4104
1845
  #, fuzzy
1846
  msgid "Timestamp"
1847
  msgstr "Zeitstempel"
1848
 
1849
- #: wppa-album-admin-autosave.php:397 wppa-photo-admin-autosave.php:292
1850
- #: wppa-settings-autosave.php:3993
1851
  #, fuzzy
1852
  msgid "EXIF Date"
1853
  msgstr "EXIF-Datum"
1854
 
1855
- #: wppa-album-admin-autosave.php:398 wppa-settings-autosave.php:3994
1856
- #: wppa-settings-autosave.php:4105
1857
  #, fuzzy
1858
  msgid "Order # desc"
1859
  msgstr "Auftrag # desc"
1860
 
1861
- #: wppa-album-admin-autosave.php:399 wppa-settings-autosave.php:3995
1862
- #: wppa-settings-autosave.php:4106
1863
  #, fuzzy
1864
  msgid "Name desc"
1865
  msgstr "Name absteigend"
1866
 
1867
- #: wppa-album-admin-autosave.php:400 wppa-settings-autosave.php:3996
1868
  #: wppa-thumbnail-widget.php:204
1869
  #, fuzzy
1870
  msgid "Rating mean value desc"
1871
  msgstr "Bewertung Mittelwert desc"
1872
 
1873
- #: wppa-album-admin-autosave.php:401 wppa-settings-autosave.php:3997
1874
  #: wppa-thumbnail-widget.php:205
1875
  #, fuzzy
1876
  msgid "Number of votes desc"
1877
  msgstr "Anzahl der Stimmen"
1878
 
1879
- #: wppa-album-admin-autosave.php:402 wppa-settings-autosave.php:3998
1880
- #: wppa-settings-autosave.php:4107 wppa-thumbnail-widget.php:206
1881
  #, fuzzy
1882
  msgid "Timestamp desc"
1883
  msgstr "Zeitstempel ab"
1884
 
1885
- #: wppa-album-admin-autosave.php:403 wppa-settings-autosave.php:3999
1886
  #, fuzzy
1887
  msgid "EXIF Date desc"
1888
  msgstr "EXIF Datum desc"
1889
 
1890
- #: wppa-album-admin-autosave.php:432
1891
  #, fuzzy
1892
  msgid "Specify the way the photos should be ordered in this album."
1893
  msgstr ""
1894
  "Geben Sie die Art und Weise die Fotos bestellt werden sollte in diesem Album."
1895
 
1896
- #: wppa-album-admin-autosave.php:433
1897
  #, fuzzy
1898
  msgid ""
1899
  "The default setting can be changed in the <b>Photo Albums -> Settings</b> "
@@ -1902,32 +1892,32 @@ msgstr ""
1902
  "Die Standardeinstellung kann in den <b>Fotoalben-> Einstellungen</b> Seite "
1903
  "<b>Tabelle IV-C1</b>geändert werden."
1904
 
1905
- #: wppa-album-admin-autosave.php:441
1906
  #, fuzzy
1907
  msgid "Sub album sort order:"
1908
  msgstr "Sub-Album-Sortierreihenfolge:"
1909
 
1910
- #: wppa-album-admin-autosave.php:445
1911
  #, fuzzy
1912
  msgid "See Table IV-D1"
1913
  msgstr "Siehe Tabelle IV-D1"
1914
 
1915
- #: wppa-album-admin-autosave.php:448
1916
  #, fuzzy
1917
  msgid "Order # reverse"
1918
  msgstr "Auftrag # reverse"
1919
 
1920
- #: wppa-album-admin-autosave.php:450
1921
  #, fuzzy
1922
  msgid "Name reverse"
1923
  msgstr "Name rückwärts"
1924
 
1925
- #: wppa-album-admin-autosave.php:452
1926
  #, fuzzy
1927
  msgid "Timestamp reverse"
1928
  msgstr "Timestamp reverse"
1929
 
1930
- #: wppa-album-admin-autosave.php:457
1931
  #, fuzzy
1932
  msgid ""
1933
  "Specify the sequence order method to be used for the sub albums of this "
@@ -1936,21 +1926,21 @@ msgstr ""
1936
  "Geben Sie die Sequenz Bestellmethode für die Sub-Alben dieses Albums "
1937
  "verwendet werden."
1938
 
1939
- #: wppa-album-admin-autosave.php:466
1940
  #, fuzzy
1941
  msgid "Use alt thumbsize:"
1942
  msgstr "Verwenden Sie Alt dies:"
1943
 
1944
- #: wppa-album-admin-autosave.php:470 wppa-bestof-widget.php:182
1945
  #: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
1946
- #: wppa-lasten-widget.php:219 wppa-settings-autosave.php:573
 
 
1947
  #: wppa-settings-autosave.php:582 wppa-settings-autosave.php:591
1948
- #: wppa-settings-autosave.php:602 wppa-settings-autosave.php:611
1949
- #: wppa-settings-autosave.php:620 wppa-settings-autosave.php:629
1950
- #: wppa-settings-autosave.php:638 wppa-settings-autosave.php:647
1951
- #: wppa-settings-autosave.php:656 wppa-settings-autosave.php:665
1952
- #: wppa-settings-autosave.php:674 wppa-settings-autosave.php:683
1953
- #: wppa-settings-autosave.php:692 wppa-topten-widget.php:353
1954
  #: wppa-topten-widget.php:360 wppa-topten-widget.php:368
1955
  #: wppa-topten-widget.php:373 wppa-topten-widget.php:378
1956
  #: wppa-topten-widget.php:383 wppa-topten-widget.php:388
@@ -1958,16 +1948,16 @@ msgstr "Verwenden Sie Alt dies:"
1958
  msgid "no"
1959
  msgstr "nein"
1960
 
1961
- #: wppa-album-admin-autosave.php:471 wppa-bestof-widget.php:181
1962
  #: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
1963
- #: wppa-lasten-widget.php:220 wppa-settings-autosave.php:573
 
 
1964
  #: wppa-settings-autosave.php:582 wppa-settings-autosave.php:591
1965
- #: wppa-settings-autosave.php:602 wppa-settings-autosave.php:611
1966
- #: wppa-settings-autosave.php:620 wppa-settings-autosave.php:629
1967
- #: wppa-settings-autosave.php:638 wppa-settings-autosave.php:647
1968
- #: wppa-settings-autosave.php:656 wppa-settings-autosave.php:665
1969
- #: wppa-settings-autosave.php:674 wppa-settings-autosave.php:683
1970
- #: wppa-settings-autosave.php:692 wppa-settings-autosave.php:701
1971
  #: wppa-super-view-widget.php:85 wppa-topten-widget.php:352
1972
  #: wppa-topten-widget.php:359 wppa-topten-widget.php:367
1973
  #: wppa-topten-widget.php:372 wppa-topten-widget.php:377
@@ -1976,7 +1966,7 @@ msgstr "nein"
1976
  msgid "yes"
1977
  msgstr "Ja"
1978
 
1979
- #: wppa-album-admin-autosave.php:476
1980
  #, fuzzy
1981
  msgid ""
1982
  "If set to <b>yes</b> The settings in <b>Table I-C1a,3a</b> and <b>4a</b> "
@@ -1985,43 +1975,43 @@ msgstr ""
1985
  "Wenn <b>Ja</b> die Einstellungen in <b>Tisch - C1a, 3a</b> und <b>4a</b> "
1986
  "statt <b>ich-C1, 3</b> und <b>4</b>gelten soll."
1987
 
1988
- #: wppa-album-admin-autosave.php:486
1989
  #, fuzzy
1990
  msgid "Cover Type:"
1991
  msgstr "Cover Art:"
1992
 
1993
- #: wppa-album-admin-autosave.php:492 wppa-settings-autosave.php:2069
1994
- #: wppa-settings-autosave.php:4171
1995
  #, fuzzy
1996
  msgid "Standard"
1997
  msgstr "Standard "
1998
 
1999
- #: wppa-album-admin-autosave.php:493 wppa-settings-autosave.php:4172
2000
  #, fuzzy
2001
  msgid "Long Descriptions"
2002
  msgstr "Lange Beschreibungen"
2003
 
2004
- #: wppa-album-admin-autosave.php:494 wppa-settings-autosave.php:4173
2005
  #, fuzzy
2006
  msgid "Image Factory"
2007
  msgstr "Image Factory"
2008
 
2009
- #: wppa-album-admin-autosave.php:495 wppa-settings-autosave.php:4174
2010
  #, fuzzy
2011
  msgid "Standard mcr"
2012
  msgstr "Standard-mcr"
2013
 
2014
- #: wppa-album-admin-autosave.php:496 wppa-settings-autosave.php:4175
2015
  #, fuzzy
2016
  msgid "Long Descriptions mcr"
2017
  msgstr "Lange Beschreibungen mcr"
2018
 
2019
- #: wppa-album-admin-autosave.php:497 wppa-settings-autosave.php:4176
2020
  #, fuzzy
2021
  msgid "Image Factory mcr"
2022
  msgstr "Bild Fabrik mcr"
2023
 
2024
- #: wppa-album-admin-autosave.php:503
2025
  #, fuzzy
2026
  msgid ""
2027
  "The default cover type is the systems standard set in the <b>Photo Albums -> "
@@ -2030,18 +2020,18 @@ msgstr ""
2030
  "Der Standardtyp Abdeckung ist die Systeme standard gesetzt in der <b>Foto-"
2031
  "Alben-> Einstellungen</b> Seite <b>Tabelle IV-D6</b>."
2032
 
2033
- #: wppa-album-admin-autosave.php:513
2034
  #, fuzzy
2035
  msgid "Cover Photo:"
2036
  msgstr "Titelbild"
2037
 
2038
- #: wppa-album-admin-autosave.php:521
2039
  #, fuzzy
2040
  msgid "Select the photo you want to appear on the cover of this album."
2041
  msgstr ""
2042
  "Wählen Sie das Foto, das Sie auf dem Cover des Albums angezeigt werden soll."
2043
 
2044
- #: wppa-album-admin-autosave.php:522
2045
  #, fuzzy
2046
  msgid ""
2047
  "Select the way the cover photos of this album are selected, or select a "
@@ -2050,89 +2040,89 @@ msgstr ""
2050
  "Wählen Sie die Art und Weise die Cover-Fotos für dieses Album ausgewählt "
2051
  "sind, die oder wählen Sie ein einzelnes Bild."
2052
 
2053
- #: wppa-album-admin-autosave.php:531
2054
  #, fuzzy
2055
  msgid "Upload limit:"
2056
  msgstr "Hochladebegrenzung"
2057
 
2058
- #: wppa-album-admin-autosave.php:542 wppa-settings-autosave.php:6105
2059
- #: wppa-settings-autosave.php:7961
2060
  #, fuzzy
2061
  msgid "for ever"
2062
- msgstr "für immer"
2063
 
2064
- #: wppa-album-admin-autosave.php:543 wppa-album-admin-autosave.php:560
2065
- #: wppa-settings-autosave.php:6106 wppa-settings-autosave.php:7962
2066
  #, fuzzy
2067
  msgid "per hour"
2068
- msgstr "pro Stunde"
2069
 
2070
- #: wppa-album-admin-autosave.php:544 wppa-album-admin-autosave.php:561
2071
- #: wppa-settings-autosave.php:6107 wppa-settings-autosave.php:7963
2072
  #, fuzzy
2073
  msgid "per day"
2074
  msgstr "pro Tag "
2075
 
2076
- #: wppa-album-admin-autosave.php:545 wppa-album-admin-autosave.php:562
2077
- #: wppa-settings-autosave.php:6108 wppa-settings-autosave.php:7964
2078
  #, fuzzy
2079
  msgid "per week"
2080
  msgstr "pro Woche"
2081
 
2082
- #: wppa-album-admin-autosave.php:546 wppa-album-admin-autosave.php:563
2083
- #: wppa-settings-autosave.php:6109 wppa-settings-autosave.php:7965
2084
  #, fuzzy
2085
  msgid "per month"
2086
  msgstr "pro Monat"
2087
 
2088
- #: wppa-album-admin-autosave.php:547 wppa-album-admin-autosave.php:564
2089
- #: wppa-settings-autosave.php:6110 wppa-settings-autosave.php:7966
2090
  #, fuzzy
2091
  msgid "per year"
2092
- msgstr "im Jahr"
2093
 
2094
- #: wppa-album-admin-autosave.php:551
2095
  #, fuzzy
2096
  msgid "Set the upload limit (0 means unlimited) and the upload limit period."
2097
  msgstr ""
2098
  "Festlegen Sie Upload-Limit (0 bedeutet unbegrenzt) und den Upload begrenzen "
2099
  "Zeitraum."
2100
 
2101
- #: wppa-album-admin-autosave.php:556
2102
  #, fuzzy
2103
  msgid "Unlimited"
2104
  msgstr "unbegrenzt"
2105
 
2106
- #: wppa-album-admin-autosave.php:575
2107
  #, fuzzy
2108
  msgid "Catogories:"
2109
  msgstr "Catogories:"
2110
 
2111
- #: wppa-album-admin-autosave.php:585
2112
  #, fuzzy
2113
  msgid "Separate categories with commas."
2114
  msgstr "Mehrere Kategorien mit Kommas trennen"
2115
 
2116
- #: wppa-album-admin-autosave.php:586 wppa-photo-admin-autosave.php:832
2117
  #, fuzzy
2118
  msgid "Examples:"
2119
  msgstr "Voorbeelden:"
2120
 
2121
- #: wppa-album-admin-autosave.php:592 wppa-photo-admin-autosave.php:836
2122
  msgid "- select -"
2123
  msgstr "- Wähle -"
2124
 
2125
- #: wppa-album-admin-autosave.php:598
2126
  #, fuzzy
2127
  msgid "No categories yet"
2128
  msgstr "Keine Bereiche"
2129
 
2130
- #: wppa-album-admin-autosave.php:602 wppa-photo-admin-autosave.php:846
2131
  #, fuzzy
2132
  msgid "Select to add"
2133
  msgstr "Die ausgewählte Seite hinzufügen"
2134
 
2135
- #: wppa-album-admin-autosave.php:608
2136
  #, fuzzy
2137
  msgid ""
2138
  "Are you sure you want to inherit categories to all (grand)children of this "
@@ -2141,7 +2131,7 @@ msgstr ""
2141
  "Sind Sie sicher, dass Sie Kategorien für alle (großen) Kinder dieses Albums "
2142
  "vererben möchten?"
2143
 
2144
- #: wppa-album-admin-autosave.php:609
2145
  #, fuzzy
2146
  msgid ""
2147
  "Are you sure you want to add the categories to all (grand)children of this "
@@ -2150,32 +2140,32 @@ msgstr ""
2150
  "Sind Sie sicher, dass Sie die Kategorien für alle (Enkel-) Kinder dieses "
2151
  "Album hinzufügen?"
2152
 
2153
- #: wppa-album-admin-autosave.php:612
2154
  #, fuzzy
2155
  msgid "Inherit Cats"
2156
  msgstr "Erben von Katzen"
2157
 
2158
- #: wppa-album-admin-autosave.php:617
2159
  #, fuzzy
2160
  msgid "Apply categories to all (grand)children."
2161
  msgstr "Alle (Enkel) Kategorien zuweisen."
2162
 
2163
- #: wppa-album-admin-autosave.php:622
2164
  #, fuzzy
2165
  msgid "Add Inherit Cats"
2166
  msgstr "Fügen Sie erben Katzen"
2167
 
2168
- #: wppa-album-admin-autosave.php:627
2169
  #, fuzzy
2170
  msgid "Add categories to all (grand)children."
2171
  msgstr "Alle (Enkel) Kategorien hinzufügen."
2172
 
2173
- #: wppa-album-admin-autosave.php:634
2174
  #, fuzzy
2175
  msgid "Default photo tags:"
2176
  msgstr "Standardbild"
2177
 
2178
- #: wppa-album-admin-autosave.php:640
2179
  #, fuzzy
2180
  msgid ""
2181
  "Enter the tags that you want to be assigned to new photos in this album."
@@ -2183,7 +2173,7 @@ msgstr ""
2183
  "Geben Sie die Tags, die Sie möchten neue Fotos in diesem Album zugeordnet "
2184
  "werden."
2185
 
2186
- #: wppa-album-admin-autosave.php:645
2187
  #, fuzzy
2188
  msgid ""
2189
  "Are you sure you want to set the default tags to all photos in this album?"
@@ -2191,7 +2181,7 @@ msgstr ""
2191
  "Sind Sie sicher, dass Sie die Standard-Tags auf alle Fotos in diesem Album "
2192
  "festlegen möchten?"
2193
 
2194
- #: wppa-album-admin-autosave.php:646
2195
  #, fuzzy
2196
  msgid ""
2197
  "Are you sure you want to add the default tags to all photos in this album?"
@@ -2199,62 +2189,62 @@ msgstr ""
2199
  "Sind Sie sicher, dass Sie die Standard-Tags auf alle Fotos in diesem Album "
2200
  "hinzufügen möchten?"
2201
 
2202
- #: wppa-album-admin-autosave.php:649
2203
  #, fuzzy
2204
  msgid "Apply default tags"
2205
  msgstr "Standard-Tags anwenden"
2206
 
2207
- #: wppa-album-admin-autosave.php:654
2208
  #, fuzzy
2209
  msgid "Tag all photos in this album with the default tags."
2210
  msgstr "Markieren Sie alle Fotos in diesem Album mit den Standard-Tags."
2211
 
2212
- #: wppa-album-admin-autosave.php:659
2213
  #, fuzzy
2214
  msgid "Add default tags"
2215
  msgstr "Standard-Tags hinzufügen"
2216
 
2217
- #: wppa-album-admin-autosave.php:664
2218
  #, fuzzy
2219
  msgid "Add the default tags to all photos in this album."
2220
  msgstr "Alle Fotos in diesem Album die Standard-Tags hinzufügen."
2221
 
2222
- #: wppa-album-admin-autosave.php:671
2223
  #, fuzzy
2224
  msgid "Link type:"
2225
  msgstr "Link Typ:"
2226
 
2227
- #: wppa-album-admin-autosave.php:678 wppa-settings-autosave.php:8122
2228
  #, fuzzy
2229
  msgid "the sub-albums and thumbnails"
2230
  msgstr "die Unteralben und Miniaturen"
2231
 
2232
- #: wppa-album-admin-autosave.php:679 wppa-settings-autosave.php:8123
2233
  #, fuzzy
2234
  msgid "the sub-albums"
2235
  msgstr "die Sub-Alben"
2236
 
2237
- #: wppa-album-admin-autosave.php:680 wppa-settings-autosave.php:8124
2238
  #, fuzzy
2239
  msgid "the thumbnails"
2240
  msgstr "Miniaturbilden"
2241
 
2242
- #: wppa-album-admin-autosave.php:681 wppa-settings-autosave.php:8125
2243
  #, fuzzy
2244
  msgid "the album photos as slideshow"
2245
  msgstr "die Albumfotos als Diashow"
2246
 
2247
- #: wppa-album-admin-autosave.php:682
2248
  #, fuzzy
2249
  msgid "the link page with a clean url"
2250
  msgstr "der Link-Seite mit einer sauberen url"
2251
 
2252
- #: wppa-album-admin-autosave.php:683 wppa-settings-autosave.php:8126
2253
  #, fuzzy
2254
  msgid "no link at all"
2255
  msgstr "keine Verbindung überhaupt"
2256
 
2257
- #: wppa-album-admin-autosave.php:688
2258
  #, fuzzy
2259
  msgid ""
2260
  "If you select \"the link page with a clean url\", select an Auto Page of one "
@@ -2263,7 +2253,7 @@ msgstr ""
2263
  "Bei Auswahl von \"der Link-Seite mit einer sauberen Url\" wählen Sie eine "
2264
  "Auto-Seite von einem der Fotos in diesem Album."
2265
 
2266
- #: wppa-album-admin-autosave.php:689
2267
  #, fuzzy
2268
  msgid ""
2269
  "If you select \"the link page with a clean url\", make sure you enter the "
@@ -2272,25 +2262,25 @@ msgstr ""
2272
  "Wählst du \"die Link-Seite mit einer sauberen Url\", stellen Sie sicher, "
2273
  "dass Sie die richtige Kurzwahl auf der Zielseite eingeben."
2274
 
2275
- #: wppa-album-admin-autosave.php:698 wppa-bestof-widget.php:196
2276
- #: wppa-slideshow-widget.php:221 wppa-widget-admin.php:232
2277
- #: wppa-widget-admin.php:242 wppa-widget-admin.php:277
2278
  #, fuzzy
2279
  msgid "Link to:"
2280
  msgstr "Link zu"
2281
 
2282
- #: wppa-album-admin-autosave.php:704 wppa-settings-autosave.php:9805
2283
- #: wppa-settings-autosave.php:9847 wppa-settings-autosave.php:9899
2284
  #, fuzzy
2285
  msgid "There are no pages (yet) to link to."
2286
  msgstr "Dort sind keine Seiten verknüpft zu"
2287
 
2288
- #: wppa-album-admin-autosave.php:709
2289
  #, fuzzy
2290
  msgid "--- the same page or post ---"
2291
  msgstr "---der gleichen Seite oder per Post---"
2292
 
2293
- #: wppa-album-admin-autosave.php:717
2294
  #, fuzzy
2295
  msgid ""
2296
  "If you want, you can link the title to a WP page in stead of the album's "
@@ -2299,12 +2289,12 @@ msgstr ""
2299
  "Wenn Sie möchten, können Sie den Titel auf eine WP-Seite an Stelle von das "
2300
  "Album Inhalten verknüpfen. Wenn ja, wählen Sie die Seite der Titel Links zu."
2301
 
2302
- #: wppa-album-admin-autosave.php:727
2303
  #, fuzzy
2304
  msgid "Schedule:"
2305
- msgstr "Zeitlicher Ablauf:"
2306
 
2307
- #: wppa-album-admin-autosave.php:738
2308
  #, fuzzy
2309
  msgid ""
2310
  "If enabled, new photos will have their status set to the dat/time specified "
@@ -2313,86 +2303,86 @@ msgstr ""
2313
  "Wenn aktiviert, werden neue Fotos ihren Status auf die hier angegebene Dat/"
2314
  "Zeit eingestellt haben."
2315
 
2316
- #: wppa-album-admin-autosave.php:744
2317
  #, fuzzy
2318
  msgid "Are you sure you want to schedule all photos in this album?"
2319
  msgstr "Sind Sie sicher, dass Sie alle Fotos in diesem Album planen möchten?"
2320
 
2321
- #: wppa-album-admin-autosave.php:744
2322
  #, fuzzy
2323
  msgid "Schedule all"
2324
  msgstr "Planen Sie alle"
2325
 
2326
- #: wppa-album-admin-autosave.php:752
2327
  #, fuzzy
2328
  msgid "Are you sure you want to clear the ratings in this album?"
2329
  msgstr ""
2330
- "Sind Sie sicher, dass Sie, um die Bewertungen in diesem Album wirklich "
2331
- "löschen?"
2332
 
2333
- #: wppa-album-admin-autosave.php:752
2334
  #, fuzzy
2335
  msgid "Reset ratings"
2336
  msgstr "Reset-Bewertungen"
2337
 
2338
- #: wppa-album-admin-autosave.php:769
2339
  #, fuzzy
2340
  msgid "Change the upload limit or remove photos to enable new uploads."
2341
  msgstr ""
2342
- "Ändern Sie den Upload-Limit oder Fotos zu entfernen, um neue Uploads zu "
2343
  "ermöglichen."
2344
 
2345
- #: wppa-album-admin-autosave.php:773
2346
  #, fuzzy, php-format
2347
  msgid "(max %d)"
2348
  msgstr "(Max %d)"
2349
 
2350
- #: wppa-album-admin-autosave.php:774
2351
  #, fuzzy
2352
  msgid "Album is full"
2353
  msgstr "Album ist voll"
2354
 
2355
- #: wppa-album-admin-autosave.php:785
2356
  #, fuzzy
2357
  msgid "Apply new photo desc"
2358
  msgstr "Gelten neue Foto desc"
2359
 
2360
- #: wppa-album-admin-autosave.php:796
2361
  #, fuzzy
2362
  msgid "Remake all"
2363
  msgstr "Alle Remake"
2364
 
2365
- #: wppa-album-admin-autosave.php:804 wppa-photo-admin-autosave.php:946
2366
  #, fuzzy
2367
  msgid "Remark:"
2368
- msgstr "Anmerkung:"
2369
 
2370
- #: wppa-album-admin-autosave.php:807
2371
  #, fuzzy, php-format
2372
  msgid "Album %s is not modified yet"
2373
  msgstr "Album %s ist noch nicht geändert."
2374
 
2375
- #: wppa-album-admin-autosave.php:818 wppa-album-admin-autosave.php:1959
2376
  #, fuzzy
2377
  msgid "Change sequence order by drag and drop"
2378
  msgstr "Änderungsauftrag Reihenfolge durch drag & drop"
2379
 
2380
- #: wppa-album-admin-autosave.php:837
2381
  #, fuzzy
2382
  msgid "Moderate comment"
2383
  msgstr "Moderiere Kommentare"
2384
 
2385
- #: wppa-album-admin-autosave.php:853
2386
  #, fuzzy
2387
  msgid "Moderate photo"
2388
  msgstr "Moderate Foto"
2389
 
2390
- #: wppa-album-admin-autosave.php:854 wppa-functions.php:2345
2391
  #: wppa-photo-admin-autosave.php:24
2392
  msgid "Edit photo"
2393
  msgstr "Foto bearbeiten"
2394
 
2395
- #: wppa-album-admin-autosave.php:878
 
2396
  #, fuzzy
2397
  msgid "Delete Album"
2398
  msgstr "Album löschen"
@@ -2403,8 +2393,8 @@ msgstr "Album löschen"
2403
  #: wppa-breadcrumb.php:636 wppa-comment-admin.php:65 wppa-featen-widget.php:179
2404
  #: wppa-lasten-widget.php:203 wppa-slideshow-widget.php:199
2405
  #: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:326
2406
- #: wppa-upload-widget.php:85 wppa-upload.php:116 wppa-upload.php:204
2407
- #: wppa-upload.php:251
2408
  msgid "Album:"
2409
  msgstr "Album:"
2410
 
@@ -2421,27 +2411,27 @@ msgstr "Drücken Sie Löschen, um fortzufahren und zurück gehen Abbrechen."
2421
  #: wppa-album-admin-autosave.php:887
2422
  #, fuzzy
2423
  msgid "What would you like to do with photos currently in the album?"
2424
- msgstr "Was würden Sie gerne mit Fotos von sich in dem Album zu tun?"
2425
 
2426
  #: wppa-album-admin-autosave.php:888 wppa-album-admin-autosave.php:897
2427
- #: wppa-album-admin-autosave.php:1160 wppa-album-admin-autosave.php:1200
2428
- #: wppa-album-admin-autosave.php:1297 wppa-album-admin-autosave.php:1469
2429
- #: wppa-album-admin-autosave.php:1564 wppa-album-admin-autosave.php:1751
2430
  #: wppa-boxes-html.php:935 wppa-comment-admin.php:319
2431
  #: wppa-comment-admin.php:388 wppa-comment-admin.php:406
2432
- #: wppa-functions.php:2104 wppa-links.php:782 wppa-links.php:800
2433
  #: wppa-photo-admin-autosave.php:1312 wppa-photo-admin-autosave.php:1380
2434
- #: wppa-thumbnails.php:627
2435
  msgid "Delete"
2436
  msgstr "Löschen"
2437
 
2438
  #: wppa-album-admin-autosave.php:889
2439
  #, fuzzy
2440
  msgid "Move to:"
2441
- msgstr "Gehe zu"
2442
 
2443
- #: wppa-album-admin-autosave.php:896 wppa-photo-admin-autosave.php:2010
2444
- #: wppa-settings-autosave.php:2899
2445
  #, fuzzy
2446
  msgid "Cancel"
2447
  msgstr "Stornieren"
@@ -2451,124 +2441,124 @@ msgstr "Stornieren"
2451
  msgid "Unable to move photos. Album not deleted."
2452
  msgstr "Nicht in der Lage, Fotos zu bewegen. Album nicht gelöscht."
2453
 
2454
- #: wppa-album-admin-autosave.php:949
2455
  #, fuzzy
2456
  msgid "Manage Albums"
2457
  msgstr "Alben verwalten"
2458
 
2459
- #: wppa-album-admin-autosave.php:955
2460
  #, fuzzy
2461
  msgid "Are you sure you want to create a new album?"
2462
  msgstr "Sind Sie sicher, dass Sie ein neues Album erstellen möchten?"
2463
 
2464
- #: wppa-album-admin-autosave.php:960
2465
  #, fuzzy
2466
  msgid "Create New Empty Album"
2467
  msgstr "Neues leeres Album erstellen"
2468
 
2469
- #: wppa-album-admin-autosave.php:966
2470
  #, fuzzy
2471
  msgid "Switch to Collapsable table"
2472
  msgstr "Wechseln Sie zur Brötchenwärmer Tabelle"
2473
 
2474
- #: wppa-album-admin-autosave.php:969
2475
  #, fuzzy
2476
  msgid "Switch to Flat table"
2477
  msgstr "Wechseln Sie zur Tabellenliste"
2478
 
2479
- #: wppa-album-admin-autosave.php:981
2480
  #, fuzzy
2481
  msgid "Open all"
2482
- msgstr "Alle öffnen"
2483
 
2484
- #: wppa-album-admin-autosave.php:994
2485
  #, fuzzy
2486
  msgid "Close all"
2487
  msgstr "alle schliessen"
2488
 
2489
- #: wppa-album-admin-autosave.php:1093 wppa-album-admin-autosave.php:1230
2490
- #: wppa-album-admin-autosave.php:1401 wppa-album-admin-autosave.php:1496
2491
  #: wppa-photo-admin-autosave.php:1361 wppa-photo-admin-autosave.php:1480
2492
  #, fuzzy
2493
  msgid "ID"
2494
  msgstr "ID"
2495
 
2496
- #: wppa-album-admin-autosave.php:1135 wppa-album-admin-autosave.php:1272
2497
- #: wppa-album-admin-autosave.php:1444 wppa-album-admin-autosave.php:1539
2498
  #, fuzzy
2499
  msgid "Order"
2500
  msgstr "Bestellen"
2501
 
2502
- #: wppa-album-admin-autosave.php:1145 wppa-album-admin-autosave.php:1282
2503
- #: wppa-album-admin-autosave.php:1454 wppa-album-admin-autosave.php:1549
2504
  #, fuzzy
2505
  msgid "Parent"
2506
  msgstr "Eltern"
2507
 
2508
- #: wppa-album-admin-autosave.php:1153 wppa-album-admin-autosave.php:1290
2509
- #: wppa-album-admin-autosave.php:1462 wppa-album-admin-autosave.php:1557
2510
  #, fuzzy
2511
  msgid "Albums/Photos/Moderation required/Scheduled"
2512
  msgstr "Alben/Fotos/Moderation erforderlich/geplant"
2513
 
2514
- #: wppa-album-admin-autosave.php:1154 wppa-album-admin-autosave.php:1291
2515
- #: wppa-album-admin-autosave.php:1463 wppa-album-admin-autosave.php:1558
2516
  #, fuzzy
2517
  msgid "A/P/PM/S"
2518
  msgstr "A/P/PM/S"
2519
 
2520
- #: wppa-album-admin-autosave.php:1157 wppa-album-admin-autosave.php:1195
2521
- #: wppa-album-admin-autosave.php:1294 wppa-album-admin-autosave.php:1466
2522
- #: wppa-album-admin-autosave.php:1561 wppa-album-admin-autosave.php:1639
2523
- #: wppa-album-admin-autosave.php:1746
2524
  #, fuzzy
2525
  msgid "Quick"
2526
  msgstr "Schnell-"
2527
 
2528
- #: wppa-album-admin-autosave.php:1158 wppa-album-admin-autosave.php:1196
2529
- #: wppa-album-admin-autosave.php:1295 wppa-album-admin-autosave.php:1467
2530
- #: wppa-album-admin-autosave.php:1562 wppa-album-admin-autosave.php:1644
2531
- #: wppa-album-admin-autosave.php:1747
2532
  #, fuzzy
2533
  msgid "Bulk"
2534
  msgstr "Bull"
2535
 
2536
- #: wppa-album-admin-autosave.php:1159 wppa-album-admin-autosave.php:1197
2537
- #: wppa-album-admin-autosave.php:1296 wppa-album-admin-autosave.php:1468
2538
- #: wppa-album-admin-autosave.php:1563 wppa-album-admin-autosave.php:1748
2539
  #, fuzzy
2540
  msgid "Seq"
2541
- msgstr "SolZ. lfd.:"
2542
 
2543
- #: wppa-album-admin-autosave.php:1161 wppa-album-admin-autosave.php:1205
2544
- #: wppa-album-admin-autosave.php:1208 wppa-album-admin-autosave.php:1298
2545
- #: wppa-album-admin-autosave.php:1470 wppa-album-admin-autosave.php:1565
2546
- #: wppa-album-admin-autosave.php:1756 wppa-album-admin-autosave.php:1759
2547
  #, fuzzy
2548
  msgid "Create"
2549
  msgstr "Album konnte nicht erstellt werden"
2550
 
2551
- #: wppa-album-admin-autosave.php:1204 wppa-album-admin-autosave.php:1755
2552
  #, fuzzy
2553
  msgid "Are you sure you want to create a subalbum?"
2554
  msgstr "Sind Sie sicher, dass Sie eine Subalbum erstellen möchten?"
2555
 
2556
- #: wppa-album-admin-autosave.php:1311 wppa-album-admin-autosave.php:1592
2557
  #, fuzzy
2558
  msgid "No albums yet."
2559
  msgstr "Noch keine Alben."
2560
 
2561
- #: wppa-album-admin-autosave.php:1395 wppa-album-admin-autosave.php:1719
2562
  #, fuzzy
2563
  msgid "Collapse subalbums"
2564
  msgstr "Kollaps subalbums"
2565
 
2566
- #: wppa-album-admin-autosave.php:1396 wppa-album-admin-autosave.php:1720
2567
  #, fuzzy
2568
  msgid "Expand subalbums"
2569
  msgstr "Subalbums erweitern"
2570
 
2571
- #: wppa-album-admin-autosave.php:1478
2572
  #, fuzzy
2573
  msgid ""
2574
  "The following albums are ---separate--- and do not show up in the generic "
@@ -2577,12 +2567,12 @@ msgstr ""
2577
  "Die folgenden Alben sind---separate--- und erscheinen nicht in der "
2578
  "generischen Album-Anzeige"
2579
 
2580
- #: wppa-album-admin-autosave.php:1608
2581
  #, fuzzy
2582
  msgid "Search for photos to edit"
2583
  msgstr "Suche nach Fotos zu bearbeiten"
2584
 
2585
- #: wppa-album-admin-autosave.php:1609
2586
  #, fuzzy
2587
  msgid ""
2588
  "Enter search words seperated by commas. Photos will meet all search words by "
@@ -2592,17 +2582,17 @@ msgstr ""
2592
  "durch ihre Namen, Beschreibungen, übersetzte Schlüsselwörter und/oder Tags "
2593
  "treffen."
2594
 
2595
- #: wppa-album-admin-autosave.php:1615
2596
  #, fuzzy
2597
  msgid "Any"
2598
  msgstr "Alle"
2599
 
2600
- #: wppa-album-admin-autosave.php:1619
2601
  #, fuzzy
2602
  msgid "Search for"
2603
  msgstr "Suche"
2604
 
2605
- #: wppa-album-admin-autosave.php:1661
2606
  #, fuzzy, php-format
2607
  msgid ""
2608
  "There are <strong>%d</strong> albums and <strong>%d</strong> photos in the "
@@ -2610,102 +2600,102 @@ msgid ""
2610
  msgstr ""
2611
  "Es gibt Alben <strong>%d</strong> und <strong>%d</strong> Fotos im System."
2612
 
2613
- #: wppa-album-admin-autosave.php:1662
2614
  #, fuzzy, php-format
2615
  msgid "<strong>%d</strong> photos are pending moderation."
2616
  msgstr "<strong>%d</strong> Fotos stehen Mäßigung."
2617
 
2618
- #: wppa-album-admin-autosave.php:1663
2619
  #, fuzzy, php-format
2620
  msgid "<strong>%d</strong> photos are scheduled for later publishing."
2621
  msgstr "<strong>%d</strong> Fotos sollen später veröffentlichen."
2622
 
2623
- #: wppa-album-admin-autosave.php:1666
2624
  #, fuzzy, php-format
2625
  msgid "The most recently added album is <strong>%s</strong> (%d)."
2626
  msgstr "Die zuletzt hinzugefügte Album <strong>%s</strong> (%d) ist."
2627
 
2628
- #: wppa-album-admin-autosave.php:1670
2629
  #, fuzzy, php-format
2630
  msgid "The most recently added photo is <strong>%s</strong> (%d)"
2631
  msgstr "Das meiste hinzugefügte ist zuletzt Foto <strong>%s</strong> (%d)"
2632
 
2633
- #: wppa-album-admin-autosave.php:1671
2634
  #, fuzzy, php-format
2635
  msgid "in album <strong>%s</strong> (%d)."
2636
  msgstr "Album - <strong>%s</strong> (% d)."
2637
 
2638
- #: wppa-album-admin-autosave.php:1793
2639
  #, fuzzy, php-format
2640
  msgid "Unable to move photos to album %s. Album not deleted."
2641
  msgstr "Nicht in der Lage bringen Sie Fotos zum Album %s Album nicht gelöscht."
2642
 
2643
- #: wppa-album-admin-autosave.php:1814
2644
  #, fuzzy, php-format
2645
  msgid "Time is out after %d photo deletes. Please redo this operation"
2646
  msgstr "Es ist nachdem %d Foto gelöscht. Bitte wiederholen Sie diesen Vorgang"
2647
 
2648
- #: wppa-album-admin-autosave.php:1849
2649
  #, fuzzy
2650
  msgid "Album Deleted."
2651
  msgstr "Album gelöscht."
2652
 
2653
- #: wppa-album-admin-autosave.php:1871
2654
  #, fuzzy, php-format
2655
  msgid "auto select max %s random"
2656
  msgstr "Auto wählen Sie zufällige max %s"
2657
 
2658
- #: wppa-album-admin-autosave.php:1873
2659
  #, fuzzy, php-format
2660
  msgid "auto select max %s featured"
2661
  msgstr "automatische Auswahl max. %s vorgestellt"
2662
 
2663
- #: wppa-album-admin-autosave.php:1875
2664
  #, fuzzy, php-format
2665
  msgid "max %s most recent added"
2666
  msgstr "Max %s jüngsten hinzugefügt"
2667
 
2668
- #: wppa-album-admin-autosave.php:1877
2669
  #, fuzzy, php-format
2670
  msgid "max %s from (grand)child albums"
2671
  msgstr "Max %s von (groß-) Kind Alben"
2672
 
2673
- #: wppa-album-admin-autosave.php:1879
2674
  #, fuzzy, php-format
2675
  msgid "max %s most recent from (grand)child albums"
2676
  msgstr "Max %s jüngsten von (groß-) Kind Alben"
2677
 
2678
- #: wppa-album-admin-autosave.php:1883
2679
  #, fuzzy
2680
  msgid "--- random ---"
2681
  msgstr "Zufall"
2682
 
2683
- #: wppa-album-admin-autosave.php:1885
2684
  #, fuzzy
2685
  msgid "--- random featured ---"
2686
  msgstr "---zufällige vorgestellten---"
2687
 
2688
- #: wppa-album-admin-autosave.php:1887
2689
  #, fuzzy
2690
  msgid "--- most recent added ---"
2691
  msgstr "---aktuelle hinzugefügt---"
2692
 
2693
- #: wppa-album-admin-autosave.php:1889
2694
  #, fuzzy
2695
  msgid "--- random from (grand)children ---"
2696
  msgstr "---random von (Enkel)---"
2697
 
2698
- #: wppa-album-admin-autosave.php:1891
2699
  #, fuzzy
2700
  msgid "--- most recent from (grand)children ---"
2701
  msgstr "---aktuelle aus (Enkel)---"
2702
 
2703
- #: wppa-album-admin-autosave.php:1903
2704
  #, fuzzy
2705
  msgid "Nameless, filename = "
2706
  msgstr "Namenlos, Dateiname ="
2707
 
2708
- #: wppa-album-admin-autosave.php:1946
2709
  #, fuzzy
2710
  msgid ""
2711
  "You can edit top-level album sequence order here when you set the album "
@@ -2715,7 +2705,7 @@ msgstr ""
2715
  "Album \"Order #\" oder \"Order # Desc\" in Tabelle IV-D1 Reihenfolge "
2716
  "festlegen."
2717
 
2718
- #: wppa-album-admin-autosave.php:1949
2719
  #, fuzzy
2720
  msgid ""
2721
  "You can edit sub-album sequence order here when you set the album order to "
@@ -2726,77 +2716,143 @@ msgstr ""
2726
  "\"#\" oder \"Order # Desc\" in die \"Sub-Album Sortierreihenfolge:\" "
2727
  "Auswahlfeld oben."
2728
 
2729
- #: wppa-album-admin-autosave.php:1957
2730
  #, fuzzy
2731
  msgid "Manage album order"
2732
  msgstr "Verwalten Sie Album-Bestellung"
2733
 
2734
- #: wppa-album-admin-autosave.php:2063
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2735
  #, fuzzy
2736
  msgid "Id:"
2737
  msgstr "ID:"
2738
 
2739
- #: wppa-album-admin-autosave.php:2064
2740
  #, fuzzy
2741
  msgid "Ord:"
2742
  msgstr "Ord:"
2743
 
2744
- #: wppa-album-covers.php:1333 wppa-album-covers.php:1392
2745
- #: wppa-album-covers.php:1400 wppa-album-covers.php:1616
2746
  msgid "View the album"
2747
  msgstr "Das Album ansehen"
2748
 
2749
- #: wppa-album-covers.php:1353
2750
  msgid "View the cover photo"
2751
  msgid_plural "View the cover photos"
2752
  msgstr[0] "Titelfoto ansehen"
2753
  msgstr[1] "Titelfotos ansehen"
2754
 
2755
- #: wppa-album-covers.php:1410
2756
  msgid "View"
2757
  msgstr "Ansehen"
2758
 
2759
- #: wppa-album-covers.php:1412
2760
  #, php-format
2761
  msgid "%d album"
2762
  msgid_plural "%d albums"
2763
  msgstr[0] "%d Alben"
2764
  msgstr[1] "%d Album"
2765
 
2766
- #: wppa-album-covers.php:1418 wppa-boxes-html.php:1278 wppa-breadcrumb.php:155
2767
  #: wppa-breadcrumb.php:161 wppa-breadcrumb.php:168 wppa-breadcrumb.php:392
2768
  #: wppa-breadcrumb.php:394 wppa-breadcrumb.php:400 wppa-breadcrumb.php:402
2769
  #: wppa-breadcrumb.php:410 wppa-breadcrumb.php:426 wppa-breadcrumb.php:439
2770
- #: wppa-breadcrumb.php:445 wppa-utils.php:1727 wppa-utils.php:2379
2771
  msgid "and"
2772
  msgstr "und"
2773
 
2774
- #: wppa-album-covers.php:1421
2775
  #, php-format
2776
  msgid "%d photo"
2777
  msgid_plural "%d photos"
2778
  msgstr[0] "%d Foto"
2779
  msgstr[1] "%d Fotos"
2780
 
2781
- #: wppa-album-covers.php:1484
2782
  msgid "New!"
2783
  msgstr "Neu!"
2784
 
2785
- #: wppa-album-covers.php:1487 wppa-thumbnails.php:1957 wppa-thumbnails.php:1958
2786
  msgid "New"
2787
  msgstr "Neu"
2788
 
2789
- #: wppa-album-covers.php:1725 wppa-boxes-html.php:844 wppa-non-admin.php:739
2790
- #: wppa-settings-autosave.php:2331 wppa-settings-autosave.php:5553
2791
- #: wppa-settings-autosave.php:8281
2792
  msgid "Slideshow"
2793
  msgstr "Diaschau"
2794
 
2795
- #: wppa-album-covers.php:1726
2796
  msgid "Browse photos"
2797
  msgstr "Durchsuche Fotos"
2798
 
2799
- #: wppa-album-covers.php:1763 wppa-breadcrumb.php:394 wppa-breadcrumb.php:402
2800
  #: wppa-breadcrumb.php:439 wppa-breadcrumb.php:445
2801
  msgid "Category:"
2802
  msgid_plural "Categories:"
@@ -2813,38 +2869,38 @@ msgstr "WPPA + Album navigator"
2813
  msgid "Album navigator"
2814
  msgstr "Album-navigator"
2815
 
2816
- #: wppa-album-navigator-widget.php:96 wppa-album-widget.php:323
2817
  #, fuzzy
2818
  msgid "Album selection or Parent album:"
2819
  msgstr "Ausgewählte Album oder übergeordnete Album:"
2820
 
2821
- #: wppa-album-navigator-widget.php:99 wppa-album-widget.php:326
2822
  #, fuzzy
2823
  msgid "--- all albums ---"
2824
  msgstr "- Alle Alben -"
2825
 
2826
- #: wppa-album-navigator-widget.php:100 wppa-album-widget.php:327
2827
  #, fuzzy
2828
  msgid "--- all generic albums ---"
2829
  msgstr "---alle generischen Alben---"
2830
 
2831
- #: wppa-album-navigator-widget.php:101 wppa-album-widget.php:328
2832
  #, fuzzy
2833
  msgid "--- all separate albums ---"
2834
  msgstr "- Alle -separate- Alben -"
2835
 
2836
- #: wppa-album-navigator-widget.php:102 wppa-common-functions.php:1703
2837
  #: wppa-items.php:436
2838
  msgid "--- owner/public ---"
2839
  msgstr "--- Besitzer/öffentliche ---"
2840
 
2841
- #: wppa-album-navigator-widget.php:114 wppa-album-widget.php:348
2842
  #, fuzzy
2843
  msgid "Skip \"empty\" albums:"
2844
  msgstr "\"Leere\" Alben zu überspringen:"
2845
 
2846
- #: wppa-album-navigator-widget.php:116 wppa-album-widget.php:343
2847
- #: wppa-album-widget.php:350 wppa-lasten-widget.php:236
2848
  #: wppa-slideshow-widget.php:206 wppa-slideshow-widget.php:226
2849
  #: wppa-slideshow-widget.php:233 wppa-slideshow-widget.php:240
2850
  #: wppa-slideshow-widget.php:247 wppa-slideshow-widget.php:254
@@ -2853,8 +2909,8 @@ msgstr "\"Leere\" Alben zu überspringen:"
2853
  msgid "no."
2854
  msgstr "Nr."
2855
 
2856
- #: wppa-album-navigator-widget.php:117 wppa-album-widget.php:344
2857
- #: wppa-album-widget.php:351 wppa-lasten-widget.php:237
2858
  #: wppa-slideshow-widget.php:207 wppa-slideshow-widget.php:227
2859
  #: wppa-slideshow-widget.php:234 wppa-slideshow-widget.php:241
2860
  #: wppa-slideshow-widget.php:248 wppa-slideshow-widget.php:255
@@ -2868,7 +2924,7 @@ msgstr "Ja"
2868
  msgid "WPPA+ Albums"
2869
  msgstr "WPPA + Alben"
2870
 
2871
- #: wppa-album-widget.php:16 wppa-album-widget.php:313
2872
  #, fuzzy
2873
  msgid "Thumbnail Albums"
2874
  msgstr "Thumbnail-Alben"
@@ -2878,17 +2934,17 @@ msgstr "Thumbnail-Alben"
2878
  msgid "Upload at least %d photos to this album!"
2879
  msgstr "Laden Sie mindestens %d Fotos zu diesem Album!"
2880
 
2881
- #: wppa-album-widget.php:329
2882
  #, fuzzy
2883
  msgid "--- most recently added albums ---"
2884
  msgstr "---die meisten kürzlich hinzugefügte Alben---"
2885
 
2886
- #: wppa-album-widget.php:341
2887
  #, fuzzy
2888
  msgid "Show album names:"
2889
  msgstr "Album-Namen anzeigen:"
2890
 
2891
- #: wppa-album-widget.php:355 wppa-comment-widget.php:120
2892
  #: wppa-featen-widget.php:187 wppa-lasten-widget.php:241
2893
  #: wppa-thumbnail-widget.php:232 wppa-topten-widget.php:392
2894
  #, fuzzy
@@ -2968,8 +3024,8 @@ msgstr "Anzahl der max Bewertungen"
2968
  msgid "Mean value"
2969
  msgstr "Mittelwert"
2970
 
2971
- #: wppa-bestof-widget.php:178 wppa-topten-widget.php:364
2972
- #: wppa-widget-admin.php:256
2973
  #, fuzzy
2974
  msgid "Subtitle:"
2975
  msgstr "Untertitel:"
@@ -2977,29 +3033,30 @@ msgstr "Untertitel:"
2977
  #: wppa-bestof-widget.php:179
2978
  #, fuzzy
2979
  msgid "No of max ratings:"
2980
- msgstr "Keine von max Bewertungen:"
2981
 
2982
  #: wppa-bestof-widget.php:184 wppa-topten-widget.php:375
2983
  #, fuzzy
2984
  msgid "Mean rating:"
2985
- msgstr "Mittlere Bewertung:"
2986
 
2987
  #: wppa-bestof-widget.php:189 wppa-topten-widget.php:380
2988
  #, fuzzy
2989
  msgid "Rating count:"
2990
  msgstr "Bewertungen"
2991
 
2992
- #: wppa-bestof-widget.php:198 wppa-common-functions.php:1685 wppa-items.php:424
2993
- #: wppa-settings-autosave.php:1431 wppa-settings-autosave.php:1780
2994
- #: wppa-settings-autosave.php:1985 wppa-settings-autosave.php:3784
2995
- #: wppa-settings-autosave.php:3798 wppa-settings-autosave.php:3986
2996
- #: wppa-settings-autosave.php:4100 wppa-settings-autosave.php:5627
2997
- #: wppa-settings-autosave.php:6349 wppa-settings-autosave.php:7758
2998
- #: wppa-settings-autosave.php:7977 wppa-settings-autosave.php:8033
2999
- #: wppa-settings-autosave.php:8896 wppa-settings-autosave.php:9053
3000
- #: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
3001
- #: wppa-tinymce-shortcodes.php:613 wppa-upload.php:1528 wppa-watermark.php:519
3002
- #: wppa-widget-admin.php:90 wppa-widget-admin.php:261
 
3003
  msgid "--- none ---"
3004
  msgstr "--- keine ---"
3005
 
@@ -3009,27 +3066,31 @@ msgid "The authors album(s)"
3009
  msgstr "Die Autoren-Alben"
3010
 
3011
  #: wppa-bestof-widget.php:200
 
3012
  msgid "The photos in the authors album(s), thumbnails"
3013
- msgstr ""
3014
 
3015
  #: wppa-bestof-widget.php:201
 
3016
  msgid "The photos in the authors album(s), slideshow"
3017
- msgstr ""
3018
 
3019
  #: wppa-bestof-widget.php:202
 
3020
  msgid "All the authors photos, thumbnails"
3021
- msgstr ""
3022
 
3023
  #: wppa-bestof-widget.php:203
 
3024
  msgid "All the authors photos, slideshow"
3025
- msgstr ""
3026
 
3027
  #: wppa-boxes-html.php:139 wppa-boxes-html.php:251
3028
  msgid "Photo search results"
3029
  msgstr "Foto Suchergebnisse"
3030
 
3031
  #: wppa-boxes-html.php:383 wppa-breadcrumb.php:143
3032
- #: wppa-settings-autosave.php:409
3033
  msgid "Albums"
3034
  msgstr "Alben"
3035
 
@@ -3042,7 +3103,7 @@ msgid "Category"
3042
  msgstr "Kategorie"
3043
 
3044
  #: wppa-boxes-html.php:421 wppa-boxes-html.php:554
3045
- #: wppa-settings-autosave.php:7873 wppa-settings-autosave.php:7884
3046
  msgid "Text"
3047
  msgstr "Text"
3048
 
@@ -3056,9 +3117,9 @@ msgstr "STRG+Klicken, um Option hinzuzufügen/zu entfernen."
3056
  msgid "Items must meet all selected options."
3057
  msgstr "Einzelteile müssen alle ausgewählten Optionen zu treffen."
3058
 
3059
- #: wppa-boxes-html.php:546 wppa-settings-autosave.php:9157
3060
- #: wppa-settings-autosave.php:9197 wppa-settings-autosave.php:9219
3061
- #: wppa-settings-autosave.php:9265
3062
  msgid "Tag"
3063
  msgstr "Tag"
3064
 
@@ -3079,8 +3140,8 @@ msgstr "Senden"
3079
  msgid "Super View Photos"
3080
  msgstr "Super View Fotos"
3081
 
3082
- #: wppa-boxes-html.php:836 wppa-settings-autosave.php:425
3083
- #: wppa-settings-autosave.php:4858
3084
  msgid "Thumbnails"
3085
  msgstr "Miniaturbilden"
3086
 
@@ -3128,7 +3189,7 @@ msgstr "Finde!"
3128
  msgid "Social media landing page"
3129
  msgstr "Social-Media-Zielseite"
3130
 
3131
- #: wppa-boxes-html.php:1279 wppa-utils.php:1727
3132
  #, php-format
3133
  msgid "See this image on %s"
3134
  msgstr "Schau Dir das Bild an auf %s"
@@ -3168,83 +3229,84 @@ msgstr "Teilen auf Pinterest"
3168
  msgid "Comment on Facebook:"
3169
  msgstr "Kommentar auf Facebook:"
3170
 
3171
- #: wppa-boxes-html.php:1653 wppa-upload.php:1138
3172
  msgid "Working..."
3173
  msgstr "Arbeiten..."
3174
 
3175
- #: wppa-boxes-html.php:1655 wppa-boxes-html.php:1658
3176
- msgid "Delete album"
3177
- msgstr "Album löschen"
 
3178
 
3179
  #: wppa-boxes-html.php:1750
3180
  msgid "Create Album"
3181
  msgstr "Album Erstellen"
3182
 
3183
- #: wppa-boxes-html.php:1796
3184
  msgid "Enter album name."
3185
  msgstr "Albumnamen eingeben."
3186
 
3187
- #: wppa-boxes-html.php:1798 wppa-boxes-html.php:2538
3188
  msgid "Don't leave this blank!"
3189
  msgstr "Hinterlasse einen Kommentar"
3190
 
3191
- #: wppa-boxes-html.php:1818
3192
  msgid "Enter album description"
3193
  msgstr "Album Beschreibung eingeben"
3194
 
3195
- #: wppa-boxes-html.php:1840
3196
  msgid "Create album"
3197
  msgstr "Album Erstellen"
3198
 
3199
- #: wppa-boxes-html.php:1900 wppa-boxes-html.php:1913 wppa-functions.php:4351
3200
  msgid "Max uploads reached"
3201
  msgstr "Max Uploads erreicht"
3202
 
3203
- #: wppa-boxes-html.php:1974 wppa-upload.php:134
3204
  msgid "Upload Photo"
3205
  msgstr "Upload Foto"
3206
 
3207
- #: wppa-boxes-html.php:2054
3208
  #, fuzzy
3209
  msgid "Select Photo / Video / Camera"
3210
  msgstr "Wählen Sie Foto / Video / Kamera"
3211
 
3212
- #: wppa-boxes-html.php:2057
3213
  #, fuzzy
3214
  msgid "Select Photo / Camera"
3215
  msgstr "Wählen Sie Foto / Kamera"
3216
 
3217
- #: wppa-boxes-html.php:2062
3218
  #, fuzzy
3219
  msgid "Select Photo / Video"
3220
  msgstr "Wählen Sie Foto / Video"
3221
 
3222
- #: wppa-boxes-html.php:2065
3223
  #, fuzzy
3224
  msgid "Select Photo"
3225
  msgstr "Foto auswählen"
3226
 
3227
- #: wppa-boxes-html.php:2072
3228
  #, fuzzy
3229
  msgid "Select Photos / Video / Camera"
3230
  msgstr "Wählen Sie Fotos / Video / Kamera"
3231
 
3232
- #: wppa-boxes-html.php:2075
3233
  #, fuzzy
3234
  msgid "Select Photos / Camera"
3235
  msgstr "Wählen Sie Fotos / Kamera"
3236
 
3237
- #: wppa-boxes-html.php:2080
3238
  #, fuzzy
3239
  msgid "Select Photos / Video"
3240
  msgstr "Wählen Sie Fotos / Video"
3241
 
3242
- #: wppa-boxes-html.php:2083
3243
  #, fuzzy
3244
  msgid "Select Photos"
3245
  msgstr "Fotos auswählen"
3246
 
3247
- #: wppa-boxes-html.php:2121
3248
  #, php-format
3249
  msgid "You may upload %d photo"
3250
  msgid_plural ""
@@ -3255,22 +3317,22 @@ msgstr[1] ""
3255
  "Sie können bis zu %d Fotos gleichzeitig Hochladen wenn ihr browser HTML-5 "
3256
  "multiple file upload unterstützt"
3257
 
3258
- #: wppa-boxes-html.php:2129
3259
  #, php-format
3260
  msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
3261
  msgstr "Max Fotogröße: %d x %d (% 2.1f MegaPixel)"
3262
 
3263
- #: wppa-boxes-html.php:2158 wppa-upload.php:123 wppa-upload.php:211
3264
- #: wppa-upload.php:258 wppa-upload.php:695
3265
  msgid "Apply watermark file:"
3266
  msgstr "Wende Wasserzeichen-Datei an:"
3267
 
3268
- #: wppa-boxes-html.php:2180 wppa-upload.php:128 wppa-upload.php:216
3269
- #: wppa-upload.php:263 wppa-upload.php:699
3270
  msgid "Position:"
3271
  msgstr "Position:"
3272
 
3273
- #: wppa-boxes-html.php:2208
3274
  msgid ""
3275
  "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
3276
  "photoname if available, else the original filename will be used as photo "
@@ -3279,7 +3341,7 @@ msgstr ""
3279
  "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 005 (Graphic Name) wie "
3280
  "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
3281
 
3282
- #: wppa-boxes-html.php:2213
3283
  msgid ""
3284
  "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
3285
  "available, else the original filename will be used as photo name."
@@ -3287,176 +3349,202 @@ msgstr ""
3287
  "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 120 (Caption) wie "
3288
  "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
3289
 
3290
- #: wppa-boxes-html.php:2218
3291
  msgid ""
3292
  "If you leave this blank, the original filename will be used as photo name."
3293
  msgstr ""
3294
  "Wenn das leer gelassen wird, wird der Originalname der Datei als Fotoname "
3295
  "verwendet."
3296
 
3297
- #: wppa-boxes-html.php:2223 wppa-settings-autosave.php:1719
3298
  #, fuzzy
3299
  msgid "Photo name"
3300
  msgstr ""
3301
  "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 120 (Caption) wie "
3302
  "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
3303
 
3304
- #: wppa-boxes-html.php:2241
3305
  #, fuzzy
3306
  msgid "Photo description"
3307
  msgstr "Foto-Beschreibung"
3308
 
3309
- #: wppa-boxes-html.php:2269
3310
  msgid "hidden"
3311
  msgstr "verborgen"
3312
 
3313
- #: wppa-boxes-html.php:2339
3314
  msgid "Preview tags:"
3315
  msgstr "Vorschau tags:"
3316
 
3317
- #: wppa-boxes-html.php:2354
3318
- msgid "Please select an album and try again"
3319
- msgstr "Bitte wählen Sie ein Album aus und versuchen Sie es erneut"
 
 
 
 
 
 
3320
 
3321
- #: wppa-boxes-html.php:2368
3322
  msgid "Upload photo"
3323
  msgstr "Foto hochladen"
3324
 
3325
- #: wppa-boxes-html.php:2424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3326
  msgid "ERROR: unable to upload files."
3327
  msgstr "ERROR: kann keine Dateien hochladen."
3328
 
3329
- #: wppa-boxes-html.php:2478
3330
- msgid "Edit albuminfo"
3331
- msgstr "Albuminfo bearbeiten"
 
3332
 
3333
- #: wppa-boxes-html.php:2536
3334
  msgid "Enter album name"
3335
  msgstr "Albumnamen eingeben"
3336
 
3337
- #: wppa-boxes-html.php:2558
3338
  msgid "Album description:"
3339
  msgstr "Album Beschreibung:"
3340
 
3341
- #: wppa-boxes-html.php:2612
3342
  msgid "Update album"
3343
  msgstr "Album updaten"
3344
 
3345
- #: wppa-boxes-html.php:2684
3346
  msgid "wrote:"
3347
  msgstr "schrieb:"
3348
 
3349
- #: wppa-boxes-html.php:2746
3350
  msgid "Avatar"
3351
  msgstr "Profilbild"
3352
 
3353
- #: wppa-boxes-html.php:2789 wppa-links.php:826
3354
  msgid "Awaiting moderation"
3355
  msgstr "Warten auf Moderation"
3356
 
3357
- #: wppa-boxes-html.php:2792
3358
  msgid "Marked as spam"
3359
  msgstr "Als Spam markiert"
3360
 
3361
- #: wppa-boxes-html.php:2816
3362
  msgid "Edit!"
3363
  msgstr "Bearbeiten!"
3364
 
3365
- #: wppa-boxes-html.php:2820
3366
  msgid "Send!"
3367
  msgstr "Absenden!"
3368
 
3369
- #: wppa-boxes-html.php:2881
3370
  msgid "Your name:"
3371
  msgstr "Dein Name:"
3372
 
3373
- #: wppa-boxes-html.php:2896
3374
  msgid "Your email:"
3375
  msgstr "Deine E-mail:"
3376
 
3377
- #: wppa-boxes-html.php:2912
3378
  msgid "Your comment:"
3379
  msgstr "Dein Kommentar:"
3380
 
3381
- #: wppa-boxes-html.php:2956
3382
  #, php-format
3383
  msgid "You must <a href=\"%s\">login</a> to enter a comment"
3384
  msgstr ""
3385
  "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
3386
  "hinterlassen."
3387
 
3388
- #: wppa-boxes-html.php:2959
3389
  msgid "You must login to enter a comment"
3390
  msgstr "Sie müssen sich anmelden, um einen Kommentar ein zu geben"
3391
 
3392
- #: wppa-boxes-html.php:2971 wppa-functions.php:2544 wppa-thumbnails.php:680
3393
  #, php-format
3394
  msgid "%d comment"
3395
  msgid_plural "%d comments"
3396
  msgstr[0] "%d Kommentar"
3397
  msgstr[1] "%d Kommentare"
3398
 
3399
- #: wppa-boxes-html.php:2975
3400
  msgid "Leave a comment"
3401
  msgstr "Hinterlasse einen Kommentar"
3402
 
3403
- #: wppa-boxes-html.php:3072
3404
  msgid "Show IPTC data"
3405
  msgstr "IPTC-Daten anzeigen"
3406
 
3407
- #: wppa-boxes-html.php:3083
3408
  msgid "Hide IPTC data"
3409
  msgstr "IPTC-Daten ausblenden"
3410
 
3411
- #: wppa-boxes-html.php:3131
3412
  msgid "No IPTC data"
3413
  msgstr "Keine IPTC-Daten"
3414
 
3415
- #: wppa-boxes-html.php:3183
3416
  msgid "Show EXIF data"
3417
  msgstr "EXIF-Daten anzeigen"
3418
 
3419
- #: wppa-boxes-html.php:3194
3420
  msgid "Hide EXIF data"
3421
  msgstr "EXIF-Daten ausblenden"
3422
 
3423
- #: wppa-boxes-html.php:3246
3424
  msgid "No EXIF data"
3425
  msgstr "Keine EXIF-Daten"
3426
 
3427
- #: wppa-boxes-html.php:3360 wppa-boxes-html.php:3365
3428
  msgid "< Previous"
3429
  msgstr "< Vorherige"
3430
 
3431
- #: wppa-boxes-html.php:3371 wppa-boxes-html.php:3376
3432
  msgid "Next >"
3433
  msgstr "Nächstes >"
3434
 
3435
- #: wppa-boxes-html.php:3478 wppa-boxes-html.php:3557
3436
  msgid "See the authors albums"
3437
  msgstr "Siehe die Autoren Alben"
3438
 
3439
- #: wppa-boxes-html.php:3482 wppa-boxes-html.php:3490 wppa-boxes-html.php:3561
3440
  msgid "See the authors photos"
3441
  msgstr "Siehe die Autoren Fotos"
3442
 
3443
- #: wppa-boxes-html.php:3486 wppa-boxes-html.php:3494 wppa-boxes-html.php:3565
3444
  msgid "See all the authors photos"
3445
  msgstr "Siehe Alle Autoren Fotos"
3446
 
3447
- #: wppa-boxes-html.php:3520
3448
  #, php-format
3449
  msgid "Photo by: %s"
3450
  msgstr "Foto von: %s"
3451
 
3452
- #: wppa-boxes-html.php:3523 wppa-boxes-html.php:3586
3453
  #, php-format
3454
  msgid "%d max rating"
3455
  msgid_plural "%d max ratings"
3456
  msgstr[0] "%d max Bewertung"
3457
  msgstr[1] "%d max Bewertungen"
3458
 
3459
- #: wppa-boxes-html.php:3527 wppa-boxes-html.php:3590 wppa-non-admin.php:903
3460
  #: wppa-topten-widget.php:196 wppa-topten-widget.php:213
3461
  #: wppa-topten-widget.php:249
3462
  #, php-format
@@ -3465,22 +3553,22 @@ msgid_plural "%d votes"
3465
  msgstr[0] "%d Stimme"
3466
  msgstr[1] "%d Stimmen"
3467
 
3468
- #: wppa-boxes-html.php:3531
3469
  #, php-format
3470
  msgid "Rating: %4.2f."
3471
  msgstr "Bewertung: %4.2f."
3472
 
3473
- #: wppa-boxes-html.php:3539
3474
  #, php-format
3475
  msgid "Photo %s not found."
3476
  msgstr "Foto %s nicht gefunden."
3477
 
3478
- #: wppa-boxes-html.php:3594
3479
  #, php-format
3480
  msgid "Mean value: %4.2f."
3481
  msgstr "Mittelwert: %4.2f."
3482
 
3483
- #: wppa-boxes-html.php:3941 wppa-photo-admin-autosave.php:196
3484
  msgid "Refresh"
3485
  msgstr "Aktualisieren"
3486
 
@@ -3683,15 +3771,14 @@ msgstr "Benutzer:"
3683
  #: wppa-comment-admin.php:76
3684
  #, fuzzy
3685
  msgid "Email:"
3686
- msgstr "Sie erhalten diese E-Mail als Administrator der Website"
3687
 
3688
- #: wppa-comment-admin.php:80 wppa-utils.php:1032
3689
  #, fuzzy
3690
  msgid "Comment:"
3691
- msgstr "Moderiere Kommentare"
3692
 
3693
- #: wppa-comment-admin.php:86 wppa-widget-admin.php:288
3694
- #: wppa-widget-admin.php:375
3695
  #, fuzzy
3696
  msgid "Save Changes"
3697
  msgstr "Änderungen speichern"
@@ -3740,7 +3827,7 @@ msgstr ""
3740
  #: wppa-comment-admin.php:196
3741
  #, fuzzy
3742
  msgid "Total:"
3743
- msgstr "Gesamt"
3744
 
3745
  #: wppa-comment-admin.php:200
3746
  #, fuzzy
@@ -3767,8 +3854,8 @@ msgstr "Auto gelöscht Spam:"
3767
  msgid "Linkpage:"
3768
  msgstr "Linkpage:"
3769
 
3770
- #: wppa-comment-admin.php:231 wppa-settings-autosave.php:503
3771
- #: wppa-settings-autosave.php:8151
3772
  #, fuzzy
3773
  msgid "--- Please select a page ---"
3774
  msgstr "Bitte wählen Sie eine Seite…"
@@ -3779,8 +3866,8 @@ msgid ""
3779
  "You can see the photo and all its comments on the selected page by clicking "
3780
  "on the thumbnail image"
3781
  msgstr ""
3782
- "Sie können das Foto und alle ihre Kommentare zu der ausgewählten Seite, "
3783
- "indem Sie auf das Thumbnail-Bild zu sehen"
3784
 
3785
  #: wppa-comment-admin.php:250
3786
  #, fuzzy
@@ -3847,7 +3934,7 @@ msgstr "Löschen Sie alle spam"
3847
  msgid "Save Settings / Perform bulk action"
3848
  msgstr "Einstellungen speichern / durchführen Bulk Aktion"
3849
 
3850
- #: wppa-comment-admin.php:309 wppa-comment-admin.php:396 wppa-non-admin.php:744
3851
  msgid "Photo"
3852
  msgstr "Foto"
3853
 
@@ -3856,19 +3943,19 @@ msgstr "Foto"
3856
  msgid "(Album)"
3857
  msgstr "Album:"
3858
 
3859
- #: wppa-comment-admin.php:311 wppa-comment-admin.php:398
3860
- #: wppa-settings-autosave.php:552 wppa-settings-autosave.php:714
3861
- #: wppa-settings-autosave.php:736 wppa-settings-autosave.php:1484
3862
- #: wppa-settings-autosave.php:1505 wppa-settings-autosave.php:3093
3863
- #: wppa-settings-autosave.php:3114 wppa-settings-autosave.php:3438
3864
- #: wppa-settings-autosave.php:3462 wppa-settings-autosave.php:4750
3865
- #: wppa-settings-autosave.php:4771 wppa-settings-autosave.php:4947
3866
- #: wppa-settings-autosave.php:4971 wppa-settings-autosave.php:5977
3867
- #: wppa-settings-autosave.php:6637 wppa-settings-autosave.php:6659
3868
- #: wppa-settings-autosave.php:7389 wppa-settings-autosave.php:7413
3869
- #: wppa-settings-autosave.php:9135 wppa-settings-autosave.php:9156
3870
- #: wppa-settings-autosave.php:9196 wppa-settings-autosave.php:9218
3871
- #: wppa-settings-autosave.php:9264
3872
  #, fuzzy
3873
  msgid "#"
3874
  msgstr "# [ hash vor der Sortierungsnummer ]"
@@ -3886,7 +3973,7 @@ msgstr "Teilnehmer"
3886
  #: wppa-comment-admin.php:314 wppa-comment-admin.php:401
3887
  #, fuzzy
3888
  msgid "Email"
3889
- msgstr "Sie erhalten diese E-Mail als Administrator der Website"
3890
 
3891
  #: wppa-comment-admin.php:315 wppa-comment-admin.php:402
3892
  #, fuzzy
@@ -3896,19 +3983,19 @@ msgstr "Mal seit"
3896
  #: wppa-comment-admin.php:316 wppa-comment-admin.php:403
3897
  #, fuzzy
3898
  msgid "Comment"
3899
- msgstr "Moderiere Kommentare"
3900
 
3901
  #: wppa-comment-admin.php:354
3902
  #, fuzzy
3903
  msgid "Click to see the fullsize photo and all comments"
3904
- msgstr "Klicken Sie auf das Foto und Gross alle Komentare zu sehen,"
3905
 
3906
  #: wppa-comment-admin.php:365
3907
  #, fuzzy, php-format
3908
  msgid "Reply to your comment on photo: %s on %s"
3909
  msgstr "Antwort auf Ihren Kommentar auf Foto: %s %s"
3910
 
3911
- #: wppa-comment-admin.php:366 wppa-functions.php:2337
3912
  msgid "Reply"
3913
  msgstr "Antwort"
3914
 
@@ -3945,98 +4032,94 @@ msgstr "Nicht in der Lage, Kommentar zu aktualisieren. Err ="
3945
  #: wppa-comment-widget.php:14
3946
  #, fuzzy
3947
  msgid "WPPA+ Comments on Photos"
3948
- msgstr "WPPA Kommentare zu Fotos"
3949
 
3950
  #: wppa-comment-widget.php:15 wppa-comment-widget.php:116
3951
  #, fuzzy
3952
  msgid "Comments on Photos"
3953
- msgstr "Kommentare zu den Fotos"
3954
 
3955
- #: wppa-comment-widget.php:73 wppa-non-admin.php:873 wppa-thumbnails.php:498
3956
  msgid "wrote"
3957
  msgstr "schrieb"
3958
 
3959
  #: wppa-comment-widget.php:87 wppa-featen-widget.php:137
3960
- #: wppa-lasten-widget.php:148 wppa-non-admin.php:874 wppa-non-admin.php:879
3961
- #: wppa-non-admin.php:884 wppa-non-admin.php:888 wppa-non-admin.php:895
3962
- #: wppa-non-admin.php:905 wppa-potd-widget.php:151
3963
  #: wppa-thumbnail-widget.php:114 wppa-topten-widget.php:257
3964
  msgid "Photo not found"
3965
  msgstr "Foto nicht gefunden"
3966
 
3967
- #: wppa-comment-widget.php:93 wppa-non-admin.php:875
3968
  msgid "There are no commented photos (yet)"
3969
  msgstr "Es sind (noch) keine kommentierte Fotos"
3970
 
3971
- #: wppa-common-functions.php:113 wppa-common-functions.php:116
3972
- msgid "Default photo album for"
3973
- msgstr "Standard-Fotoalbum für"
3974
-
3975
- #: wppa-common-functions.php:656 wppa-functions.php:4762
3976
  #, php-format
3977
  msgid "%d second"
3978
  msgid_plural "%d seconds"
3979
  msgstr[0] "%d Sekunde"
3980
  msgstr[1] "%d Sekunden"
3981
 
3982
- #: wppa-common-functions.php:660 wppa-functions.php:4758
3983
- #: wppa-settings-autosave.php:6482 wppa-settings-autosave.php:6483
3984
  #, php-format
3985
  msgid "%d minute"
3986
  msgid_plural "%d minutes"
3987
  msgstr[0] "%d Minute"
3988
  msgstr[1] "%d Minuten"
3989
 
3990
- #: wppa-common-functions.php:664 wppa-functions.php:4754
3991
- #: wppa-settings-autosave.php:6484 wppa-settings-autosave.php:7768
3992
  #, php-format
3993
  msgid "%d hour"
3994
  msgid_plural "%d hours"
3995
  msgstr[0] "%d Stunde"
3996
  msgstr[1] "%d Stunden"
3997
 
3998
- #: wppa-common-functions.php:668 wppa-functions.php:4750
3999
- #: wppa-settings-autosave.php:6485 wppa-settings-autosave.php:7769
4000
- #: wppa-settings-autosave.php:7770 wppa-settings-autosave.php:7771
4001
- #: wppa-settings-autosave.php:7772 wppa-settings-autosave.php:7773
4002
- #: wppa-settings-autosave.php:7774 wppa-settings-autosave.php:7776
4003
- #: wppa-settings-autosave.php:7777 wppa-settings-autosave.php:7778
4004
- #: wppa-settings-autosave.php:8956
4005
  #, php-format
4006
  msgid "%d day"
4007
  msgid_plural "%d days"
4008
  msgstr[0] "%d Tag"
4009
  msgstr[1] "%d Tage"
4010
 
4011
- #: wppa-common-functions.php:672 wppa-functions.php:4746
4012
- #: wppa-settings-autosave.php:6486 wppa-settings-autosave.php:7775
4013
- #: wppa-settings-autosave.php:7779 wppa-settings-autosave.php:7780
4014
- #: wppa-settings-autosave.php:7781 wppa-settings-autosave.php:8957
4015
  #, php-format
4016
  msgid "%d week"
4017
  msgid_plural "%d weeks"
4018
  msgstr[0] "%d Woche"
4019
  msgstr[1] "%d Wochen"
4020
 
4021
- #: wppa-common-functions.php:676 wppa-settings-autosave.php:7782
4022
- #: wppa-settings-autosave.php:8958 wppa-settings-autosave.php:8959
4023
- #: wppa-settings-autosave.php:8960 wppa-settings-autosave.php:8961
4024
- #: wppa-settings-autosave.php:8962 wppa-settings-autosave.php:8964
4025
  #, php-format
4026
  msgid "%d month"
4027
  msgid_plural "%d months"
4028
  msgstr[0] "%d Monat"
4029
  msgstr[1] "%d Monate"
4030
 
4031
- #: wppa-common-functions.php:679 wppa-settings-autosave.php:8963
4032
- #: wppa-settings-autosave.php:8965
4033
  #, php-format
4034
  msgid "%d year"
4035
  msgid_plural "%d years"
4036
  msgstr[0] "%d Jahr"
4037
  msgstr[1] "%d Jahre"
4038
 
4039
- #: wppa-common-functions.php:1402
4040
  #, php-format
4041
  msgid ""
4042
  "Based on your server memory limit you should not upload images larger then "
@@ -4045,99 +4128,98 @@ msgstr ""
4045
  "Basierend auf Ihrem Server Speichergrenze sollten Sie keine Bilder hochladen "
4046
  "größer <strong>dann %d x %d (% 2.1f MP)</strong>"
4047
 
4048
- #: wppa-common-functions.php:1679
4049
  msgid "- select an album -"
4050
  msgstr "- wählen Sie ein Album -"
4051
 
4052
- #: wppa-common-functions.php:1691 wppa-items.php:432
4053
  #: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
4054
  #: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
4055
  #: wppa-tagcloud-widget.php:79
4056
  msgid "--- all ---"
4057
  msgstr "--- alle ---"
4058
 
4059
- #: wppa-common-functions.php:1697
4060
  msgid "--- generic ---"
4061
  msgstr "--- generikum ---"
4062
 
4063
- #: wppa-common-functions.php:1714
4064
  msgid "--- multiple see below ---"
4065
  msgstr "--- Mehrere siehe unten ---"
4066
 
4067
- #: wppa-common-functions.php:1720
4068
  msgid "--- a selection box ---"
4069
  msgstr "--- eine Auswahlbox ---"
4070
 
4071
- #: wppa-common-functions.php:1759 wppa-items.php:428
4072
- #: wppa-settings-autosave.php:7977 wppa-settings-autosave.php:8033
4073
- #: wppa-upload.php:1529
4074
  msgid "--- separate ---"
4075
  msgstr "--- separat ---"
4076
 
4077
- #: wppa-common-functions.php:1865
4078
  msgid "Photo id ="
4079
  msgstr "Foto id ="
4080
 
4081
- #: wppa-common-functions.php:1865
4082
  msgid "Value ="
4083
  msgstr "Wert ="
4084
 
4085
- #: wppa-date-time.php:85 wppa-date-time.php:209
4086
  #, fuzzy
4087
  msgid "Jan"
4088
  msgstr "Jan"
4089
 
4090
- #: wppa-date-time.php:85 wppa-date-time.php:209
4091
  #, fuzzy
4092
  msgid "Feb"
4093
  msgstr "Feb"
4094
 
4095
- #: wppa-date-time.php:85 wppa-date-time.php:209
4096
  #, fuzzy
4097
  msgid "Mar"
4098
  msgstr "Mär"
4099
 
4100
- #: wppa-date-time.php:85 wppa-date-time.php:209
4101
  #, fuzzy
4102
  msgid "Apr"
4103
  msgstr "Apr"
4104
 
4105
- #: wppa-date-time.php:85 wppa-date-time.php:209
4106
  #, fuzzy
4107
  msgid "May"
4108
  msgstr "Mai"
4109
 
4110
- #: wppa-date-time.php:85 wppa-date-time.php:209
4111
  #, fuzzy
4112
  msgid "Jun"
4113
  msgstr "Jun"
4114
 
4115
- #: wppa-date-time.php:85 wppa-date-time.php:209
4116
  #, fuzzy
4117
  msgid "Jul"
4118
  msgstr "Jul"
4119
 
4120
- #: wppa-date-time.php:85 wppa-date-time.php:209
4121
  #, fuzzy
4122
  msgid "Aug"
4123
  msgstr "Aug"
4124
 
4125
- #: wppa-date-time.php:85 wppa-date-time.php:209
4126
  #, fuzzy
4127
  msgid "Sep"
4128
  msgstr "Sep"
4129
 
4130
- #: wppa-date-time.php:85 wppa-date-time.php:209
4131
  #, fuzzy
4132
  msgid "Oct"
4133
  msgstr "Okt"
4134
 
4135
- #: wppa-date-time.php:85 wppa-date-time.php:209
4136
  #, fuzzy
4137
  msgid "Nov"
4138
  msgstr "Nov"
4139
 
4140
- #: wppa-date-time.php:85 wppa-date-time.php:209
4141
  #, fuzzy
4142
  msgid "Dec"
4143
  msgstr "Dez"
@@ -4156,180 +4238,180 @@ msgstr "Ungültige Album Bezeichner:"
4156
  msgid "n.a."
4157
  msgstr "n. z."
4158
 
4159
- #: wppa-exif-iptc-common.php:239 wppa-utils.php:2611
4160
  msgid "Not Defined"
4161
  msgstr "Nicht definiert"
4162
 
4163
- #: wppa-exif-iptc-common.php:240 wppa-utils.php:2612
4164
  msgid "Manual"
4165
  msgstr "Manuell"
4166
 
4167
- #: wppa-exif-iptc-common.php:241 wppa-utils.php:2613
4168
  msgid "Program AE"
4169
  msgstr "Program AE"
4170
 
4171
- #: wppa-exif-iptc-common.php:242 wppa-utils.php:2614
4172
  msgid "Aperture-priority AE"
4173
  msgstr "Aperture-priority AE"
4174
 
4175
- #: wppa-exif-iptc-common.php:243 wppa-utils.php:2615
4176
  msgid "Shutter speed priority AE"
4177
  msgstr "Verschlusszeitvorrang bei AE"
4178
 
4179
- #: wppa-exif-iptc-common.php:244 wppa-utils.php:2616
4180
  msgid "Creative (Slow speed)"
4181
  msgstr "Creative (Slow-Speed)"
4182
 
4183
- #: wppa-exif-iptc-common.php:245 wppa-utils.php:2617
4184
  msgid "Action (High speed)"
4185
  msgstr "Aktion (High-Speed)"
4186
 
4187
- #: wppa-exif-iptc-common.php:246 wppa-utils.php:2618
4188
  msgid "Portrait"
4189
  msgstr "Portrait"
4190
 
4191
- #: wppa-exif-iptc-common.php:247 wppa-utils.php:2619
4192
  msgid "Landscape"
4193
  msgstr "Querformat"
4194
 
4195
- #: wppa-exif-iptc-common.php:248 wppa-utils.php:2620
4196
  msgid "Bulb"
4197
  msgstr "Birne"
4198
 
4199
- #: wppa-exif-iptc-common.php:270 wppa-utils.php:2621
4200
  msgid "Average"
4201
  msgstr "Durchschnitt"
4202
 
4203
- #: wppa-exif-iptc-common.php:271 wppa-utils.php:2622
4204
  msgid "Center-weighted average"
4205
  msgstr "Mittenbetont"
4206
 
4207
- #: wppa-exif-iptc-common.php:272 wppa-utils.php:2623
4208
  msgid "Spot"
4209
  msgstr "Spot"
4210
 
4211
- #: wppa-exif-iptc-common.php:273 wppa-utils.php:2624
4212
  msgid "Multi-spot"
4213
  msgstr "Multi-spot"
4214
 
4215
- #: wppa-exif-iptc-common.php:274 wppa-utils.php:2625
4216
  msgid "Multi-segment"
4217
  msgstr "Multi-segment"
4218
 
4219
- #: wppa-exif-iptc-common.php:275 wppa-utils.php:2626
4220
  msgid "Partial"
4221
  msgstr "Partiell"
4222
 
4223
- #: wppa-exif-iptc-common.php:276 wppa-settings-autosave.php:4875
4224
- #: wppa-utils.php:2627
4225
  msgid "Other"
4226
  msgstr "Sonstiges"
4227
 
4228
- #: wppa-exif-iptc-common.php:312 wppa-utils.php:2628
4229
  msgid "No Flash"
4230
  msgstr "Kein Blitz"
4231
 
4232
- #: wppa-exif-iptc-common.php:314 wppa-utils.php:2629
4233
  msgid "Fired"
4234
  msgstr "Fired"
4235
 
4236
- #: wppa-exif-iptc-common.php:316 wppa-utils.php:2630
4237
  msgid "Fired, Return not detected"
4238
  msgstr "Fired, Return not detected"
4239
 
4240
- #: wppa-exif-iptc-common.php:318 wppa-utils.php:2631
4241
  msgid "Fired, Return detected"
4242
  msgstr "Fired, Return detected"
4243
 
4244
- #: wppa-exif-iptc-common.php:320 wppa-utils.php:2632
4245
  msgid "On, Did not fire"
4246
  msgstr "An, kein Blitz"
4247
 
4248
- #: wppa-exif-iptc-common.php:322 wppa-utils.php:2633
4249
  msgid "On, Fired"
4250
  msgstr "An, Fired"
4251
 
4252
- #: wppa-exif-iptc-common.php:324 wppa-utils.php:2634
4253
  msgid "On, Return not detected"
4254
  msgstr "An, Return not detected"
4255
 
4256
- #: wppa-exif-iptc-common.php:326 wppa-utils.php:2635
4257
  msgid "On, Return detected"
4258
  msgstr "An, Return detected"
4259
 
4260
- #: wppa-exif-iptc-common.php:328 wppa-utils.php:2636
4261
  msgid "Off, Did not fire"
4262
  msgstr "Aus, kein Blitz"
4263
 
4264
- #: wppa-exif-iptc-common.php:330 wppa-utils.php:2637
4265
  msgid "Off, Did not fire, Return not detected"
4266
  msgstr "Aus, kein Blitz, nicht erkannt und Rück"
4267
 
4268
- #: wppa-exif-iptc-common.php:332 wppa-utils.php:2638
4269
  msgid "Auto, Did not fire"
4270
  msgstr "Auto, kein Blitz"
4271
 
4272
- #: wppa-exif-iptc-common.php:334 wppa-utils.php:2639
4273
  msgid "Auto, Fired"
4274
  msgstr "Auto, Blitz"
4275
 
4276
- #: wppa-exif-iptc-common.php:336 wppa-utils.php:2640
4277
  msgid "Auto, Fired, Return not detected"
4278
  msgstr "Auto, Blitz, nicht erkannt und Rück"
4279
 
4280
- #: wppa-exif-iptc-common.php:338 wppa-utils.php:2641
4281
  msgid "Auto, Fired, Return detected"
4282
  msgstr "Auto, Blitz, erkannt und Rück"
4283
 
4284
- #: wppa-exif-iptc-common.php:340 wppa-utils.php:2642
4285
  msgid "No flash function"
4286
  msgstr "Keine Blitzfunktion"
4287
 
4288
- #: wppa-exif-iptc-common.php:342 wppa-utils.php:2643
4289
  msgid "Off, No flash function"
4290
  msgstr "Aus, Keine Blitzfunktion"
4291
 
4292
- #: wppa-exif-iptc-common.php:344 wppa-utils.php:2644
4293
  msgid "Fired, Red-eye reduction"
4294
  msgstr "Blitz, Rote-Augen-Reduzierung"
4295
 
4296
- #: wppa-exif-iptc-common.php:346 wppa-utils.php:2645
4297
  msgid "Fired, Red-eye reduction, Return not detected"
4298
  msgstr "Blitz, Rote-Augen-Reduzierung, nicht erkannt und Rück"
4299
 
4300
- #: wppa-exif-iptc-common.php:348 wppa-utils.php:2646
4301
  msgid "Fired, Red-eye reduction, Return detected"
4302
  msgstr "Blitz, Rote-Augen-Reduzierung, erkannt und Rück"
4303
 
4304
- #: wppa-exif-iptc-common.php:350 wppa-utils.php:2647
4305
  msgid "On, Red-eye reduction"
4306
  msgstr "An, Rote-Augen-Reduzierung"
4307
 
4308
- #: wppa-exif-iptc-common.php:352 wppa-utils.php:2648
4309
  msgid "Red-eye reduction, Return not detected"
4310
  msgstr "Rote-Augen-Reduzierung, nicht erkannt und Rück"
4311
 
4312
- #: wppa-exif-iptc-common.php:354 wppa-utils.php:2649
4313
  msgid "On, Red-eye reduction, Return detected"
4314
  msgstr "An, Rote-Augen-Reduzierung, erkannt und Rück"
4315
 
4316
- #: wppa-exif-iptc-common.php:356 wppa-utils.php:2650
4317
  msgid "Off, Red-eye reduction"
4318
  msgstr "Aus, Rote-Augen-Reduzierung"
4319
 
4320
- #: wppa-exif-iptc-common.php:358 wppa-utils.php:2651
4321
  msgid "Auto, Did not fire, Red-eye reduction"
4322
  msgstr "Auto, kein Blitz, Rote-Augen-Reduzierung"
4323
 
4324
- #: wppa-exif-iptc-common.php:360 wppa-utils.php:2652
4325
  msgid "Auto, Fired, Red-eye reduction"
4326
  msgstr "Auto, Blitz, Rote-Augen-Reduzierung"
4327
 
4328
- #: wppa-exif-iptc-common.php:362 wppa-utils.php:2653
4329
  msgid "Auto, Fired, Red-eye reduction, Return not detected"
4330
  msgstr "Auto, Blitz, Rote-Augen-Reduzierung, nicht erkannt und Rück"
4331
 
4332
- #: wppa-exif-iptc-common.php:364 wppa-utils.php:2654
4333
  msgid "Auto, Fired, Red-eye reduction, Return detected"
4334
  msgstr "Auto, Blitz, Rote-Augen-Reduzierung, erkannt und Rück"
4335
 
@@ -4355,7 +4437,7 @@ msgstr "Bestellungen exportieren"
4355
  #: wppa-export.php:81
4356
  #, fuzzy
4357
  msgid "Exporting...<br/>"
4358
- msgstr "Exportiere ..."
4359
 
4360
  #: wppa-export.php:90
4361
  #, fuzzy
@@ -4395,7 +4477,7 @@ msgstr "<br>Verarbeitung-album"
4395
  msgid "done."
4396
  msgstr "getan hat."
4397
 
4398
- #: wppa-export.php:129 wppa-upload.php:2144
4399
  #, fuzzy
4400
  msgid "photos processed."
4401
  msgstr "Fotos verarbeitet."
@@ -4460,19 +4542,19 @@ msgstr "WPPA + vorgestellten Fotos"
4460
  msgid "Featured Photos"
4461
  msgstr "Beliebte Fotos"
4462
 
4463
- #: wppa-featen-widget.php:115 wppa-non-admin.php:878
4464
  msgid "View the featured photos"
4465
  msgstr "Sehen Sie die best bewertesten Fotos"
4466
 
4467
- #: wppa-featen-widget.php:146 wppa-non-admin.php:880
4468
  msgid "There are no featured photos (yet)"
4469
  msgstr "Es sind (noch) keine vorgestellten Fotos"
4470
 
4471
- #: wppa-functions.php:676
4472
  msgid "No related photos found."
4473
  msgstr "Keine verwandten Fotos gefunden."
4474
 
4475
- #: wppa-functions.php:1044
4476
  #, php-format
4477
  msgid ""
4478
  "There are %s albums found. Only the first %s will be shown. Please refine "
@@ -4481,81 +4563,82 @@ msgstr ""
4481
  "Es gibt %s Alben gefunden. Nur das erste %s wird angezeigt. Bitte verfeinern "
4482
  "Sie Ihre Suchkriterien."
4483
 
4484
- #: wppa-functions.php:2101 wppa-links.php:775 wppa-links.php:792
4485
- #: wppa-thumbnails.php:625
4486
  msgid "Are you sure you want to remove this photo?"
4487
  msgstr "Bist Du sicher, dass Du diese Foto löschen möchtest?"
4488
 
4489
- #: wppa-functions.php:2119 wppa-thumbnails.php:607
4490
  msgid "Are you sure you want to add this photo to your zip?"
4491
  msgstr ""
4492
  "Sind Sie sicher, dass Sie dieses Foto mit Ihrem ZIP-Paket hinzufügen möchten?"
4493
 
4494
- #: wppa-functions.php:2122 wppa-thumbnails.php:610
4495
  #, fuzzy
4496
  msgid "MyChoice"
4497
  msgstr "MyChoice"
4498
 
4499
- #: wppa-functions.php:2201
4500
  #, php-format
4501
  msgid "%d dislike"
4502
  msgid_plural "%d dislikes"
4503
  msgstr[0] "%d Abneigung"
4504
  msgstr[1] "%d Abneigungen"
4505
 
4506
- #: wppa-functions.php:2203
4507
  msgid "including mine"
4508
  msgstr "einschließlich meine"
4509
 
4510
- #: wppa-functions.php:2303
4511
  msgid "Comment edited"
4512
  msgstr "Kommentar bearbeitet"
4513
 
4514
- #: wppa-functions.php:2309
4515
  msgid "Photo comment"
4516
  msgstr "Foto kommentar"
4517
 
4518
- #: wppa-functions.php:2324
4519
  msgid "Comment on photo:"
4520
  msgstr "Kommentar zum Foto:"
4521
 
4522
- #: wppa-functions.php:2335
4523
  msgid "wrote on photo"
4524
  msgstr "schrieb am Foto"
4525
 
4526
- #: wppa-functions.php:2339
4527
  msgid "Moderate comment admin"
4528
  msgstr "Moderiere Kommentare"
4529
 
4530
- #: wppa-functions.php:2342 wppa-functions.php:4559 wppa-upload.php:1428
 
4531
  msgid "Moderate manage photo"
4532
  msgstr "Moderiere Fotos"
4533
 
4534
- #: wppa-functions.php:2356
4535
  msgid "You receive this email as you are assigned to moderate"
4536
  msgstr "Sie erhalten diese E-Mail, wie Sie, um moderate zugeordnet sind"
4537
 
4538
- #: wppa-functions.php:2368
4539
  msgid "You receive this email as administrator of the site"
4540
  msgstr "Sie erhalten diese E-Mail als Administrator der Website"
4541
 
4542
- #: wppa-functions.php:2385
4543
  msgid "You receive this email as uploader of the photo"
4544
  msgstr "Sie erhalten diese E-Mail als Uploader des Fotos"
4545
 
4546
- #: wppa-functions.php:2402
4547
  msgid "You receive this email as owner of the album"
4548
  msgstr "Sie erhalten diese E-Mail als Eigentümer des Albums"
4549
 
4550
- #: wppa-functions.php:2419
4551
  msgid "You receive this email because you commented this photo earlier."
4552
  msgstr "Sie erhalten diese E-Mail, weil Sie dieses Foto früheren kommentiert."
4553
 
4554
- #: wppa-functions.php:2445
4555
  msgid "Comment added"
4556
  msgstr "Kommentar hinzugefügt"
4557
 
4558
- #: wppa-functions.php:2451
4559
  msgid ""
4560
  "Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the "
4561
  "computation."
@@ -4564,165 +4647,170 @@ msgstr ""
4564
  "\n"
4565
  "Bitte versuchen Sie es erneut, um die Berechnung zu lösen."
4566
 
4567
- #: wppa-functions.php:2462
4568
  msgid "Could not process comment.\\nProbably timed out."
4569
  msgstr ""
4570
  "Konnte Kommentar nicht werarbeiten. \n"
4571
  "Warscheinlich Zeitüberschreitung."
4572
 
4573
- #: wppa-functions.php:2580 wppa-links.php:1497
4574
  msgid "A video can not be printed or downloaded"
4575
  msgstr "Ein Video kann nicht gedruckt oder heruntergeladen werden"
4576
 
4577
- #: wppa-functions.php:3027
4578
  msgid "ERROR: Illegal attempt to enter a rating."
4579
  msgstr "ERROR: Illegal Versuch, eine Bewertung zu gelangen."
4580
 
4581
- #: wppa-functions.php:3040
4582
  msgid "ERROR: Illegal attempt to enter a comment."
4583
  msgstr "ERROR: Illegal Versuch, einen Kommentar eingeben."
4584
 
4585
- #: wppa-functions.php:4186
4586
  msgid "ERROR: Illegal attempt to create an album."
4587
  msgstr "ERROR: Illegal Versuch, ein Album zu erstellen."
4588
 
4589
- #: wppa-functions.php:4190
4590
  msgid "Wrong captcha, please try again"
4591
  msgstr "Falsche Captcha, versuchen Sie es erneut"
4592
 
4593
- #: wppa-functions.php:4204
4594
  #, php-format
4595
  msgid "Album #%s created"
4596
  msgstr "Album #%s erstellt"
4597
 
4598
- #: wppa-functions.php:4210
4599
  msgid "Could not create album"
4600
  msgstr "Album konnte nicht erstellt werden"
4601
 
4602
- #: wppa-functions.php:4221
4603
  msgid "ERROR: Illegal attempt to upload a file."
4604
  msgstr "ERROR: Illegal Versuch, eine Datei hochzuladen."
4605
 
4606
- #: wppa-functions.php:4261
4607
  msgid "Photo upload"
4608
  msgstr "Fotos hochgeladen"
4609
 
4610
- #: wppa-functions.php:4262
4611
  #, php-format
4612
  msgid "%d photo successfully uploaded"
4613
  msgid_plural "%d photos successfully uploaded"
4614
  msgstr[0] "%d Foto erfolgreich hochgeladen"
4615
  msgstr[1] "%d Fotos erfolgreich hochgeladen"
4616
 
4617
- #: wppa-functions.php:4263
4618
  #, php-format
4619
  msgid "%s points added"
4620
  msgstr "%s Punkte hinzugefügt"
4621
 
4622
- #: wppa-functions.php:4273
 
 
 
 
 
4623
  msgid "Upload failed"
4624
  msgstr "Upload fehlgeschlagen"
4625
 
4626
- #: wppa-functions.php:4276
4627
  #, php-format
4628
  msgid "%d upload failed"
4629
  msgid_plural "%d uploads failed"
4630
  msgstr[0] "%d Hochladung fehlgeschlagen"
4631
  msgstr[1] "%d Hochladungen fehlgeschlagen"
4632
 
4633
- #: wppa-functions.php:4357
4634
  msgid "Error during upload"
4635
  msgstr "Fehler beim Hochladen"
4636
 
4637
- #: wppa-functions.php:4413
4638
  #, fuzzy
4639
  msgid "Could not insert media into db."
4640
  msgstr "Medien konnte in Db nicht eingefügt werden."
4641
 
4642
- #: wppa-functions.php:4453
4643
  msgid "Uploaded file is not an image"
4644
  msgstr "Hochgeladenen datei ist kein Bild"
4645
 
4646
- #: wppa-functions.php:4459
4647
  #, php-format
4648
  msgid ""
4649
  "Only gif, jpg and png image files are supported. Returned filetype = %d."
4650
  msgstr ""
4651
  "Nur gif, jpg und png Bild-Dateien werden unterstützt. Kehrte filetype =% d."
4652
 
4653
- #: wppa-functions.php:4467
4654
  #, php-format
4655
  msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
4656
  msgstr ""
4657
  "Hochgeladene Datei ist größer als das erlaubte Maximum von %d x %d Pixel."
4658
 
4659
- #: wppa-functions.php:4475
4660
  #, php-format
4661
  msgid "Uploaded file %s already exists in this album."
4662
  msgstr "Hochgeladene Datei %s existiert bereits in diesem Album."
4663
 
4664
- #: wppa-functions.php:4485
4665
  #, php-format
4666
  msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
4667
  msgstr "Das Bild ist zu groß. Max Fotogröße: %d x %d (% 2.1f MegaPixel)"
4668
 
4669
- #: wppa-functions.php:4518
4670
  msgid "Could not insert photo into db."
4671
  msgstr "Konnte Foto nicht in db einfügen."
4672
 
4673
- #: wppa-functions.php:4555 wppa-upload.php:1424
4674
  #, php-format
4675
  msgid "New photo uploaded: %s"
4676
  msgstr "Neues Foto hochgeladen: %s"
4677
 
4678
- #: wppa-functions.php:4556 wppa-upload.php:1425
4679
  #, php-format
4680
  msgid "User %1$s uploaded photo %2$s into album %3$s"
4681
  msgstr "Benutzer %1$s hat Foto %2$s in album %3$s hochgeladen "
4682
 
4683
- #: wppa-functions.php:4558 wppa-upload.php:1427
4684
  msgid "This upload requires moderation"
4685
  msgstr "Dieser Upload erfordert Moderation"
4686
 
4687
- #: wppa-functions.php:4562 wppa-upload.php:1431
4688
  msgid "Details:"
4689
  msgstr "Details:"
4690
 
4691
- #: wppa-functions.php:4563 wppa-upload.php:1432 wppa-utils.php:937
4692
- #: wppa-utils.php:949
4693
  msgid "Manage photo"
4694
  msgstr "Fotos verwalten"
4695
 
4696
- #: wppa-functions.php:4743
4697
  msgid "You can upload after"
4698
  msgstr "Sie können Hochladen nach"
4699
 
4700
- #: wppa-functions.php:4786 wppa-functions.php:4790 wppa-functions.php:4797
4701
- #: wppa-functions.php:4801 wppa-links.php:1101 wppa-non-admin.php:798
4702
- #: wppa-settings-autosave.php:9304 wppa-settings-autosave.php:9316
4703
- #: wppa-settings-autosave.php:9328 wppa-settings-autosave.php:9340
4704
- #: wppa-settings-autosave.php:9352 wppa-settings-autosave.php:9364
4705
- #: wppa-settings-autosave.php:9376 wppa-settings-autosave.php:9388
4706
  msgid "Download"
4707
  msgstr "Herunterladen"
4708
 
4709
- #: wppa-functions.php:4845
4710
  msgid "Zoom in"
4711
  msgstr "Hineinzoomen"
4712
 
4713
- #: wppa-functions.php:4876
4714
  #, fuzzy, php-format
4715
  msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
4716
  msgstr ""
4717
  "Sie können nach %s Tage, %s Stunden, Minuten %s und %s Sekunden wieder "
4718
  "Stimmen."
4719
 
4720
- #: wppa-functions.php:4879
4721
  #, fuzzy, php-format
4722
  msgid "You can vote again after %s hours, %s minutes and %s seconds"
4723
  msgstr "Sie können nach %s Stunden, Minuten %s und %s Sekunden wieder Stimmen."
4724
 
4725
- #: wppa-functions.php:4882
4726
  #, fuzzy, php-format
4727
  msgid "You can vote again after %s minutes and %s seconds"
4728
  msgstr "Sie können nach Minuten %s und %s Sekunden wieder Stimmen."
@@ -4826,17059 +4914,16845 @@ msgstr "WP Photo Album erscheint unter dem"
4826
  msgid "licence."
4827
  msgstr "Lizenz"
4828
 
4829
- #: wppa-init.php:195
4830
  #, fuzzy
4831
- msgid ""
4832
- "</strong><h3>WP Photo ALbum Plus Error message</h3>This is a multi site "
4833
- "installation. One of the following 3 lines must be entered in wp-config.php:"
4834
- msgstr ""
4835
- "<h3>WP Photo ALbum Plus Fehlermeldung</h3>Dies ist ein Multi-Site-"
4836
- "Installation. Eines der folgenden 3 Zeilen eingegeben werden in wp-Config."
4837
- "php:"
4838
 
4839
- #: wppa-init.php:196
4840
  #, fuzzy
4841
- msgid ""
4842
- "<br /><br /><b>define( 'WPPA_MULTISITE_INDIVIDUAL', true );</b> <small>// "
4843
- "Multisite WP 3.5 or later with every site its own albums and photos</small>"
4844
- msgstr ""
4845
- "<br><br><b>definieren (\"WPPA_MULTISITE_INDIVIDUAL\", true);</b> <small>/ / "
4846
- "Multisite WP 3,5 oder später mit jedem Standort eine eigene Alben und Fotos</"
4847
- "small>"
4848
 
4849
- #: wppa-init.php:197
4850
  #, fuzzy
4851
- msgid ""
4852
- "<br /><b>define( 'WPPA_MULTISITE_BLOGSDIR', true );</b> <small>// Multisite "
4853
- "prior to WP 3.5 with every site its own albums and photos</small>"
4854
- msgstr ""
4855
- "<br><b>definieren (\"WPPA_MULTISITE_BLOGSDIR\", true);</b> <small>/ / "
4856
- "Multisite vor WP 3.5 mit jedem Standort eine eigene Alben und Fotos</small>"
4857
 
4858
- #: wppa-init.php:198
4859
  #, fuzzy
4860
- msgid ""
4861
- "<br /><b>define( 'WPPA_MULTISITE_GLOBAL', true );</b> <small>// Multisite "
4862
- "with one common set of albums and photos</small>"
4863
- msgstr ""
4864
- "<br><b>definieren (\"WPPA_MULTISITE_GLOBAL\", true);</b> <small>/ / "
4865
- "Multisite mit einem gemeinsamen Alben und Fotos</small>"
4866
 
4867
- #: wppa-init.php:199
4868
  #, fuzzy
4869
- msgid ""
4870
- "<br /><br />For more information see: <a href=\"https://wordpress.org/"
4871
- "plugins/wp-photo-album-plus/faq/\">the faq</a>"
4872
- msgstr ""
4873
- "<br><br>Weitere Informationen finden Sie unter: <a href=\"https://wordpress."
4874
- "org/plugins/wp-photo-album-plus/faq/\">faq</a>"
4875
 
4876
- #: wppa-init.php:200
4877
  #, fuzzy
4878
- msgid ""
4879
- "<br /><br /><em>If you upload photos, they will be placed in the wrong "
4880
- "location and will not be visible for visitors!</em><strong>"
4881
- msgstr ""
4882
- "<br><br><em>Wenn Sie Fotos hochladen, sie an der falschen Stelle platziert "
4883
- "werden und werden nicht sichtbar für die Besucher!</em><strong></strong>"
4884
 
4885
- #: wppa-init.php:232
4886
  #, fuzzy
4887
  msgid ""
4888
- "The photo index table needs to be rebuilt. Please run <i>Photo Albums -> "
4889
- "Settings</i> admin page <i>Table VIII-A9</i>"
4890
  msgstr ""
4891
- "Der Foto-Index-Tabelle muss neu erstellt werden. Bitte führen Sie "
4892
- "<i>Fotoalben-> Einstellungen</i> Adminseite <i>Tabelle VIII-A9</i>"
4893
 
4894
- #: wppa-init.php:236
4895
  #, fuzzy
4896
  msgid ""
4897
- "The album index table needs to be rebuilt. Please run <i>Photo Albums -> "
4898
- "Settings</i> admin page <i>Table VIII-A8</i>"
4899
  msgstr ""
4900
- "Die Album-Index-Tabelle muss neu erstellt werden. Bitte führen Sie "
4901
- "<i>Fotoalben-> Einstellungen</i> Adminseite <i>Tabelle VIII-A8</i>"
4902
 
4903
- #: wppa-init.php:240
4904
  #, fuzzy
4905
- msgid ""
4906
- "The avarage ratings need to be recalculated. Please run <i>Photo Albums -> "
4907
- "Settings</i> admin page <i>Table VIII-A5</i>"
4908
- msgstr ""
4909
- "Die durchschnittlichen Bewertungen müssen neu berechnet werden. Bitte führen "
4910
- "Sie <i>Fotoalben-> Einstellungen</i> Adminseite <i>Tabelle VIII-A5</i>"
4911
 
4912
- #: wppa-init.php:243
4913
  #, fuzzy
4914
- msgid "Please finish setting up WP Photo ALbum Plus on"
4915
- msgstr "Schließen Sie die Einrichtung von WP Photo ALbum Plus auf"
4916
 
4917
- #: wppa-init.php:243
4918
  #, fuzzy
4919
- msgid "this page"
4920
- msgstr "diese Seite"
4921
 
4922
- #: wppa-init.php:261
4923
  #, fuzzy
4924
- msgid ""
4925
- "</strong>The tags system needs to be converted. Please run <b>Photo Albums -"
4926
- "> Settings</b> admin page <b>Table VIII-B16</b><strong>"
4927
- msgstr ""
4928
- "Tags-System muss konvertiert werden. Bitte führen Sie <b>Fotoalben-> "
4929
- "Einstellungen</b> Adminseite <b>Tabelle VIII-B16</b><strong></strong>"
4930
 
4931
- #: wppa-init.php:278
 
 
 
 
 
4932
  #, fuzzy
4933
  msgid ""
4934
- "</strong>The cats system needs to be converted. Please run <b>Photo Albums -"
4935
- "> Settings</b> admin page <b>Table VIII-B17</b><strong>"
 
4936
  msgstr ""
4937
- "Das Katzen-System muss konvertiert werden. Bitte führen Sie <b>Fotoalben-> "
4938
- "Einstellungen</b> Adminseite <b>Tabelle VIII-B17</b><strong></strong>"
4939
-
4940
- #: wppa-items.php:259 wppa-thumbnails.php:1899
4941
- msgid "Gold medal"
4942
- msgstr "Gold medaille"
4943
 
4944
- #: wppa-items.php:259 wppa-photo-admin-autosave.php:866
4945
- #: wppa-photo-admin-autosave.php:888 wppa-photo-admin-autosave.php:1331
4946
- #: wppa-photo-admin-autosave.php:1448 wppa-photo-admin-autosave.php:1459
4947
- #: wppa-widget-admin.php:140
4948
  #, fuzzy
4949
- msgid "Gold"
4950
- msgstr "Gold"
4951
 
4952
- #: wppa-items.php:260 wppa-thumbnails.php:1900
4953
- msgid "Silver medal"
4954
- msgstr "Silber Medallie"
 
4955
 
4956
- #: wppa-items.php:260 wppa-photo-admin-autosave.php:867
4957
- #: wppa-photo-admin-autosave.php:889 wppa-photo-admin-autosave.php:1332
4958
- #: wppa-photo-admin-autosave.php:1449 wppa-photo-admin-autosave.php:1460
4959
- #: wppa-widget-admin.php:141
4960
  #, fuzzy
4961
- msgid "Silver"
4962
- msgstr "Silber"
4963
 
4964
- #: wppa-items.php:261 wppa-thumbnails.php:1901
4965
- msgid "Bronze medal"
4966
- msgstr "Bronze medaille"
 
 
 
4967
 
4968
- #: wppa-items.php:261 wppa-photo-admin-autosave.php:868
4969
- #: wppa-photo-admin-autosave.php:890 wppa-photo-admin-autosave.php:1333
4970
- #: wppa-photo-admin-autosave.php:1450 wppa-photo-admin-autosave.php:1461
4971
- #: wppa-widget-admin.php:142
4972
  #, fuzzy
4973
- msgid "Bronze"
4974
- msgstr "Bronze"
4975
 
4976
- #: wppa-items.php:336 wppa-items.php:535 wppa-settings-autosave.php:3614
4977
  #, fuzzy
4978
- msgid "none"
4979
- msgstr "keine"
4980
 
4981
- #: wppa-items.php:352
4982
- msgid "Nomen Nescio"
4983
- msgstr ""
 
 
 
4984
 
4985
- #: wppa-items.php:355
4986
- msgid "Anonymus"
 
 
4987
  msgstr ""
 
 
4988
 
4989
- #: wppa-items.php:381 wppa-items.php:546 wppa-upload.php:99 wppa-upload.php:104
4990
- #, fuzzy
4991
- msgid "unknown"
4992
- msgstr "unbekannt"
 
 
4993
 
4994
- #: wppa-items.php:440 wppa-items.php:468
4995
- #, fuzzy
4996
- msgid "--- deleted ---"
4997
- msgstr "Gelöscht"
 
 
4998
 
4999
- #: wppa-items.php:450
5000
- #, fuzzy
5001
- msgid "All Albums"
5002
- msgstr "- Alle Alben -"
 
 
5003
 
5004
- #: wppa-items.php:454
5005
  #, fuzzy
5006
- msgid "My and public albums"
5007
- msgstr "Meine und öffentliche Alben"
5008
 
5009
- #: wppa-lasten-widget.php:12
5010
  #, fuzzy
5011
- msgid "WPPA+ Last Ten Uploaded Photos"
5012
- msgstr "WPPA + zehn zuletzt hochgeladenen Fotos"
5013
 
5014
- #: wppa-lasten-widget.php:13 wppa-lasten-widget.php:186
5015
  #, fuzzy
5016
- msgid "Last Ten Photos"
5017
- msgstr "Letzten zehn Fotos"
 
 
 
 
5018
 
5019
- #: wppa-lasten-widget.php:45
 
5020
  #, fuzzy
5021
- msgid "Last Ten Uploaded Photos"
5022
- msgstr "Letzten zehn hochgeladenen Fotos"
5023
 
5024
- #: wppa-lasten-widget.php:131 wppa-non-admin.php:883
5025
- msgid "View the most recent uploaded photos"
5026
- msgstr "Sehen Sie die neuesten hochgeladenen Fotos"
 
5027
 
5028
- #: wppa-lasten-widget.php:155 wppa-non-admin.php:885
5029
- msgid "There are no uploaded photos (yet)"
5030
- msgstr "Es sind (noch) keine hochgeladene Fotos"
 
5031
 
5032
- #: wppa-lasten-widget.php:212
5033
  #, fuzzy
5034
- msgid ""
5035
- "Select --- multiple see below --- in the Album selection box. Then enter "
5036
- "album numbers seperated by commas"
5037
- msgstr ""
5038
- "Wählen Sie---mehrere siehe unten---in den Album-Auswahl-Box. Geben Sie dann "
5039
- "Album zahlen getrennt durch Kommas"
5040
 
5041
- #: wppa-lasten-widget.php:217
5042
  #, fuzzy
5043
- msgid "Include subalbums:"
5044
- msgstr "Fügen Unteralben:"
5045
 
5046
- #: wppa-lasten-widget.php:225 wppa-thumbnail-widget.php:216
5047
- #: wppa-topten-widget.php:334
5048
  #, fuzzy
5049
- msgid "Display:"
5050
- msgstr "Anzeige:"
5051
 
5052
- #: wppa-lasten-widget.php:227 wppa-thumbnail-widget.php:218
5053
- #: wppa-topten-widget.php:336
5054
  #, fuzzy
5055
- msgid "thumbnail images"
5056
- msgstr "Thumbnails zuschneiden?"
5057
 
5058
- #: wppa-lasten-widget.php:228 wppa-thumbnail-widget.php:219
5059
- #: wppa-topten-widget.php:337
5060
  #, fuzzy
5061
- msgid "photo names"
5062
- msgstr "Foto Name"
5063
 
5064
- #: wppa-lasten-widget.php:234
 
 
 
 
 
 
 
5065
  #, fuzzy
5066
- msgid "Show time since:"
5067
- msgstr "Show Time seit:"
5068
 
5069
- #: wppa-links.php:763
5070
  #, fuzzy
5071
- msgid "App"
5072
- msgstr "App"
 
 
5073
 
5074
- #: wppa-links.php:764
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5075
  #, fuzzy
5076
- msgid "Mod"
5077
- msgstr "Mod"
5078
 
5079
- #: wppa-links.php:765
5080
  #, fuzzy
5081
- msgid "Del"
5082
- msgstr "Entf. "
5083
 
5084
- #: wppa-links.php:769 wppa-links.php:786
5085
  #, fuzzy
5086
- msgid "Are you sure you want to publish this photo?"
5087
- msgstr "Sind Sie sicher, dass Sie dieses Foto veröffentlichen möchten?"
5088
 
5089
- #: wppa-links.php:780 wppa-links.php:797
5090
  #, fuzzy
5091
- msgid "Approve"
5092
- msgstr "Geprüft"
5093
 
5094
- #: wppa-links.php:781
5095
  #, fuzzy
5096
- msgid "Moderate"
5097
- msgstr "Sie erhalten diese E-Mail, wie Sie, um moderate zugeordnet sind"
5098
 
5099
- #: wppa-links.php:798
5100
  #, fuzzy
5101
- msgid "PhotoAdmin"
5102
- msgstr "PhotoAdmin"
5103
 
5104
- #: wppa-links.php:799
5105
  #, fuzzy
5106
- msgid "CommentAdmin"
5107
- msgstr "CommentAdmin"
5108
 
5109
- #: wppa-links.php:803
5110
  #, fuzzy
5111
- msgid "Are you sure you want to publish this comment?"
5112
- msgstr "Sind Sie sicher, dass Sie diesen Kommentar veröffentlichen möchten?"
5113
 
5114
- #: wppa-links.php:815
5115
  #, fuzzy
5116
- msgid "Are you sure you want to remove this comment?"
5117
- msgstr "Bist du sicher, dass du diesen Kommentar entfernen möchtest?"
5118
 
5119
- #: wppa-links.php:829
5120
- #, fuzzy, php-format
5121
- msgid "Scheduled for %s"
5122
- msgstr "Für %s geplant"
5123
 
5124
- #: wppa-links.php:1042 wppa-links.php:1045 wppa-slideshow.php:1062
5125
- msgid "Previous"
5126
- msgstr "Vorheriges"
 
5127
 
5128
- #: wppa-links.php:1052 wppa-links.php:1055 wppa-non-admin.php:749
5129
- #: wppa-slideshow.php:1076
5130
- msgid "Next"
5131
- msgstr "Nächstes"
5132
 
5133
- #: wppa-links.php:1101
5134
  #, fuzzy
5135
- msgid "Download album"
5136
- msgstr "Album herunterladen"
5137
 
5138
- #: wppa-links.php:1237
5139
  #, fuzzy
5140
- msgid "View thumbnails"
5141
- msgstr "Anzeigen die Miniaturen"
5142
 
5143
- #: wppa-links.php:1250
5144
  #, fuzzy
5145
- msgid "View fullsize slideshow"
5146
- msgstr "Fullsize-Diashow ansehen"
5147
 
5148
- #: wppa-maintenance.php:66
5149
  #, fuzzy
5150
- msgid "You can run only one maintenance procedure at a time"
5151
- msgstr "Nur eine Wartungsverfahren kann zu einem Zeitpunkt ausgeführt werden."
 
 
 
 
 
5152
 
5153
- #: wppa-maintenance.php:66 wppa-upload.php:1453
5154
  #, fuzzy
5155
- msgid "Error"
5156
- msgstr "ERROR: Illegal Versuch, eine Bewertung zu gelangen."
5157
 
5158
- #: wppa-maintenance.php:126
5159
  #, fuzzy
5160
- msgid "Orphan photos"
5161
- msgstr "Seltene Fotos"
 
 
 
 
5162
 
5163
- #: wppa-maintenance.php:126
5164
  #, fuzzy
5165
- msgid "This album contains refound lost photos"
5166
- msgstr "Dieses Album enthält lesenswerte verlorenen Fotos"
5167
 
5168
- #: wppa-maintenance.php:154
 
 
 
 
 
5169
  #, fuzzy
5170
- msgid "Feature must be enabled in Table IV-A28 first"
5171
- msgstr "Funktion muss in Tabelle IV-A28 zuerst aktiviert werden"
5172
 
5173
- #: wppa-maintenance.php:161
 
 
 
 
 
5174
  #, fuzzy, php-format
5175
- msgid "From album %d does not exist"
5176
- msgstr "Vom Album vorhanden %d nicht"
 
5177
 
5178
- #: wppa-maintenance.php:166
5179
  #, fuzzy, php-format
5180
- msgid "To album %d does not exist"
5181
- msgstr "Album existiert %d nicht"
5182
 
5183
- #: wppa-maintenance.php:170
5184
  #, fuzzy
5185
- msgid "From and To albums are identical"
5186
- msgstr "Von und zu den Alben sind identisch"
5187
 
5188
- #: wppa-maintenance.php:756 wppa-maintenance.php:772
5189
- #: wppa-photo-admin-autosave.php:1742 wppa-photo-admin-autosave.php:1763
5190
- #: wppa-settings-autosave.php:4497 wppa-setup.php:351
5191
- msgid "Required"
5192
- msgstr "Erforderlich"
5193
 
5194
- #: wppa-maintenance.php:842
5195
- #, fuzzy
5196
- msgid "There are no index items."
5197
- msgstr "Es gibt keine Index-Elemente."
 
5198
 
5199
- #: wppa-maintenance.php:855
5200
  #, fuzzy
5201
- msgid "There are no error log messages"
5202
- msgstr "Es gibt keine Fehler-Log-Meldungen"
5203
 
5204
- #: wppa-maintenance.php:923
5205
  #, fuzzy
5206
- msgid "There are no ratings"
5207
- msgstr "Es liegen noch keine Bewertungen"
5208
 
5209
- #: wppa-maintenance.php:991
5210
  #, fuzzy
5211
- msgid "There are no active sessions"
5212
- msgstr "Es gibt keine aktiven Sitzungen"
5213
 
5214
- #: wppa-maintenance.php:1052
5215
  #, fuzzy
5216
- msgid "There are no comments"
5217
- msgstr "- - - Kommentar Box aktiviert- - -"
5218
 
5219
- #: wppa-multitag-widget.php:13 wppa-tagcloud-widget.php:13
5220
  #, fuzzy
5221
- msgid "WPPA+ Photo Tags"
5222
- msgstr "WPPA + Foto-Tags"
5223
 
5224
- #: wppa-multitag-widget.php:14
5225
  #, fuzzy
5226
- msgid "Photo Tags Filter"
5227
- msgstr "Fotofilter Tags"
5228
 
5229
- #: wppa-multitag-widget.php:73
5230
  #, fuzzy
5231
- msgid "No of columns:"
5232
- msgstr "Anzahl Spalten:"
5233
 
5234
- #: wppa-multitag-widget.php:74 wppa-tagcloud-widget.php:69
5235
  #, fuzzy
5236
- msgid "Select multiple tags or --- all ---:"
5237
- msgstr "Wählen Sie mehrere Tags oder---alle---:"
5238
-
5239
- #: wppa-non-admin.php:404
5240
- msgid "Press f for fullscreen."
5241
- msgstr "Drücken Sie f für Vollbild."
5242
-
5243
- #: wppa-non-admin.php:414 wppa-non-admin.php:485
5244
- msgid "Toggle fullscreen"
5245
- msgstr "Wechsel zwischen Vollbild"
5246
-
5247
- #: wppa-non-admin.php:479
5248
- msgid ""
5249
- "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
5250
- "dismiss this notice."
5251
  msgstr ""
5252
- "Tasten: f = nächsten Modus; q,x = verlassen; p = vorheriges, n = nächstes, s "
5253
- "= Start / Stop, d = entlassen diesen Hinweis."
5254
 
5255
- #: wppa-non-admin.php:480
5256
- msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
 
5257
  msgstr ""
5258
- "Tasten: f = nächsten Modus; q,x = verlassen; d = entlassen diesen Hinweis."
 
5259
 
5260
- #: wppa-non-admin.php:740 wppa-settings-autosave.php:3805
5261
- #: wppa-slideshow.php:241
5262
- msgid "Start"
5263
- msgstr "Starte"
5264
 
5265
- #: wppa-non-admin.php:741
5266
- msgid "Stop"
5267
- msgstr "Stop"
 
5268
 
5269
- #: wppa-non-admin.php:742 wppa-slideshow.php:233
5270
- msgid "Slower"
5271
- msgstr "Langsamer"
 
5272
 
5273
- #: wppa-non-admin.php:743 wppa-slideshow.php:249
5274
- msgid "Faster"
5275
- msgstr "Schneller"
 
5276
 
5277
- #: wppa-non-admin.php:745
5278
- msgid "of"
5279
- msgstr "von"
 
5280
 
5281
- #: wppa-non-admin.php:746
5282
- msgid "Previous photo"
5283
- msgstr "Vorheriges Foto"
 
5284
 
5285
- #: wppa-non-admin.php:747
5286
- msgid "Next photo"
5287
- msgstr "Nächstes Foto"
 
5288
 
5289
- #: wppa-non-admin.php:748
5290
- msgid "Prev."
5291
- msgstr "Vorheriges"
 
5292
 
5293
- #: wppa-non-admin.php:750 wppa-slideshow.php:789 wppa-slideshow.php:803
5294
- #: wppa-slideshow.php:914
5295
- msgid "Average&nbsp;rating"
5296
- msgstr "Durchschnittliche Bewertung"
5297
 
5298
- #: wppa-non-admin.php:751 wppa-slideshow.php:852 wppa-slideshow.php:885
5299
- #: wppa-slideshow.php:896
5300
- msgid "My&nbsp;rating"
5301
- msgstr "Meine&nbsp;Bewertung"
5302
 
5303
- #: wppa-non-admin.php:752
5304
- msgid "Avg."
5305
- msgstr "Durchs."
 
5306
 
5307
- #: wppa-non-admin.php:753
5308
- msgid "Mine"
5309
- msgstr "Meine"
 
5310
 
5311
- #: wppa-non-admin.php:754
5312
- msgid "You marked this image as inappropriate."
5313
- msgstr "Sie markiert das Bild als unangemessen."
 
5314
 
5315
- #: wppa-non-admin.php:757
5316
- msgid "Please enter your name"
5317
- msgstr "Bitte geben Sie Ihren Namen ein"
 
5318
 
5319
- #: wppa-non-admin.php:758
5320
- msgid "Please enter a valid email address"
5321
- msgstr "Bitte geben Sie eine gültige eMail-Adresse ein"
 
5322
 
5323
- #: wppa-non-admin.php:759
5324
- msgid "Please enter a comment"
5325
- msgstr "Bitte geben Sie einen Kommentar ein."
 
5326
 
5327
- #: wppa-non-admin.php:793
5328
- msgid "Double click to start/stop slideshow running"
5329
- msgstr "Doppelklicken Sie zum Starten / Stoppen Diashow Lauf"
 
 
5330
 
5331
- #: wppa-non-admin.php:889 wppa-photo-admin-autosave.php:265
5332
- #: wppa-potd-widget.php:174
5333
- msgid "By:"
5334
- msgstr "Durch:"
 
 
 
5335
 
5336
- #: wppa-non-admin.php:892 wppa-slideshow-widget.php:124
5337
- msgid "No album defined (yet)"
5338
- msgstr "Noch kein Album definiert"
 
 
5339
 
5340
- #: wppa-non-admin.php:896 wppa-thumbnail-widget.php:121
5341
- msgid "There are no photos (yet)"
5342
- msgstr "Es sind (noch) keine Fotos"
5343
-
5344
- #: wppa-non-admin.php:899 wppa-upldr-widget.php:90
5345
- msgid "There are too many registered users in the system for this widget"
5346
- msgstr "Es gibt zu viele registrierte Benutzer im System für dieses Widget"
5347
-
5348
- #: wppa-non-admin.php:900 wppa-upldr-widget.php:125 wppa-upldr-widget.php:132
5349
- msgid "Photos uploaded by"
5350
- msgstr "Fotos hochgeladen durch"
5351
-
5352
- #: wppa-non-admin.php:904 wppa-thumbnails.php:690 wppa-thumbnails.php:1475
5353
- #: wppa-topten-widget.php:203 wppa-topten-widget.php:226
5354
- #: wppa-topten-widget.php:236
5355
- #, php-format
5356
- msgid "%d view"
5357
- msgid_plural "%d views"
5358
- msgstr[0] "%d Ansicht"
5359
- msgstr[1] "%d Ansichte"
5360
 
5361
- #: wppa-non-admin.php:906 wppa-topten-widget.php:261
5362
- msgid "There are no rated photos (yet)"
5363
- msgstr "Es sind (noch) keine bewertesten Fotos"
 
5364
 
5365
- #: wppa-photo-admin-autosave.php:35
5366
  #, fuzzy
5367
- msgid "Edit photos"
5368
- msgstr "Fotos bearbeiten"
5369
 
5370
- #: wppa-photo-admin-autosave.php:54
5371
  #, fuzzy
5372
- msgid "Moderate photos"
5373
- msgstr "Moderate Fotos"
5374
 
5375
- #: wppa-photo-admin-autosave.php:96
5376
  #, fuzzy
5377
- msgid "You do not have the rights to do this"
5378
- msgstr "Sie haben nicht die Rechte dazu"
5379
 
5380
- #: wppa-photo-admin-autosave.php:118
5381
  #, fuzzy
5382
- msgid "This photo is no longer awaiting moderation."
5383
- msgstr "Dieses Foto ist nicht mehr wartet auf Moderation."
 
 
 
 
 
5384
 
5385
- #: wppa-photo-admin-autosave.php:119
5386
  #, fuzzy
5387
- msgid "There are no photos awaiting moderation at this time."
5388
- msgstr "Es gibt keine Fotos warten auf Moderation zu diesem Zeitpunkt."
 
 
 
 
 
5389
 
5390
- #: wppa-photo-admin-autosave.php:121
5391
  #, fuzzy
5392
- msgid "Manage all photos by timestamp"
5393
- msgstr "Verwalten Sie alle Fotos von timestamp"
5394
-
5395
- #: wppa-photo-admin-autosave.php:138
5396
- #, fuzzy, php-format
5397
- msgid "Photo %s has been removed."
5398
- msgstr "Foto %s wurde entfernt."
5399
 
5400
- #: wppa-photo-admin-autosave.php:143 wppa-photo-admin-autosave.php:1496
5401
  #, fuzzy
5402
- msgid "No photos matching your search criteria."
5403
- msgstr "Keine Fotos gefunden, die deinen Suchkriterien entsprechen."
 
 
 
 
5404
 
5405
- #: wppa-photo-admin-autosave.php:146 wppa-photo-admin-autosave.php:1499
5406
- #: wppa-widget-admin.php:296
5407
  #, fuzzy
5408
- msgid "No photos yet in this album."
5409
- msgstr "Keine Fotos in diesem Album."
 
 
 
 
5410
 
5411
- #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:543
5412
  #, fuzzy
5413
- msgid "top - left"
5414
- msgstr "Oben links"
 
 
 
 
5415
 
5416
- #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:543
5417
  #, fuzzy
5418
- msgid "top - center"
5419
- msgstr "Oben in der Mitte"
 
 
 
 
5420
 
5421
- #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:543
5422
  #, fuzzy
5423
- msgid "top - right"
5424
- msgstr "Oben rechts"
 
 
 
 
5425
 
5426
- #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:544
5427
  #, fuzzy
5428
- msgid "center - left"
5429
- msgstr "Linksbündig"
 
 
 
 
5430
 
5431
- #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:544
5432
  #, fuzzy
5433
- msgid "center - center"
5434
- msgstr "Zentrum - Zentrum"
5435
 
5436
- #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:544
5437
  #, fuzzy
5438
- msgid "center - right"
5439
- msgstr "Zentriert"
5440
 
5441
- #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:545
5442
  #, fuzzy
5443
- msgid "bottom - left"
5444
- msgstr "Unten links"
 
 
 
 
5445
 
5446
- #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:545
5447
  #, fuzzy
5448
- msgid "bottom - center"
5449
- msgstr "Unten Zentriert"
 
 
 
 
5450
 
5451
- #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:545
5452
- #, fuzzy
5453
- msgid "bottom - right"
5454
- msgstr "Unten Rechts"
 
 
 
 
 
5455
 
5456
- #: wppa-photo-admin-autosave.php:177
5457
  #, fuzzy
5458
- msgid "Preview:"
5459
- msgstr "Vorschau tags:"
5460
 
5461
- #: wppa-photo-admin-autosave.php:180
5462
  #, fuzzy, php-format
5463
- msgid "Album: %d<br />(%s)"
5464
- msgstr "Album: %d<br>(%s)"
5465
 
5466
- #: wppa-photo-admin-autosave.php:183
5467
- #, fuzzy
5468
- msgid "Rotate"
5469
- msgstr "Drehen"
5470
 
5471
- #: wppa-photo-admin-autosave.php:184
 
 
 
5472
  #, fuzzy
5473
- msgid "Are you sure you want to rotate this photo left?"
5474
- msgstr "Sind Sie sicher, dass dieses Foto links gedreht werden soll?"
5475
 
5476
- #: wppa-photo-admin-autosave.php:186
5477
- #, fuzzy
5478
- msgid "Are you sure you want to rotate this photo 180&deg;?"
5479
- msgstr "Sind Sie sicher, dass dieses Foto 180° gedreht werden soll?"
5480
 
5481
- #: wppa-photo-admin-autosave.php:188
 
 
 
5482
  #, fuzzy
5483
- msgid "Are you sure you want to rotate this photo right?"
5484
- msgstr "Sind Sie sicher, dass dieses Foto rechts gedreht werden soll?"
5485
 
5486
- #: wppa-photo-admin-autosave.php:193
 
 
 
 
 
 
 
5487
  #, fuzzy
5488
- msgid "If it says 'Photo rotated', the photo is rotated."
5489
- msgstr "Wenn sie sagt, \"Foto gedreht\", wird das Foto gedreht."
5490
 
5491
- #: wppa-photo-admin-autosave.php:197
5492
- #, fuzzy, php-format
5493
- msgid "If it says 'Photo rotated', the photo is rotated. %s the page."
5494
- msgstr "Wenn sie sagt, \"Foto gedreht\", wird das Foto gedreht. %s der Seite."
5495
 
5496
- #: wppa-photo-admin-autosave.php:211
5497
  #, fuzzy
5498
- msgid "Preview fullsize video"
5499
- msgstr "Video Vorschau fullsize"
5500
 
5501
- #: wppa-photo-admin-autosave.php:226
5502
  #, fuzzy
5503
- msgid "Preview fullsize photo"
5504
- msgstr "Vorschau-Fullsize-Foto"
5505
 
5506
- #: wppa-photo-admin-autosave.php:241
 
5507
  #, fuzzy
5508
- msgid "Audio disabled"
5509
- msgstr "Audio deaktiviert"
5510
 
5511
- #: wppa-photo-admin-autosave.php:251
5512
  #, fuzzy
5513
- msgid "Upload:"
5514
- msgstr "ERROR: kann keine Dateien hochladen."
5515
 
5516
- #: wppa-photo-admin-autosave.php:309
5517
  #, fuzzy
5518
- msgid "Rating:"
5519
- msgstr "Meine Bewertung:"
5520
 
5521
- #: wppa-photo-admin-autosave.php:315
5522
  #, fuzzy
5523
- msgid "Entries:"
5524
- msgstr "Einträge eines RSS oder Atom Feeds"
5525
 
5526
- #: wppa-photo-admin-autosave.php:315
5527
  #, fuzzy
5528
- msgid "Mean value:"
5529
- msgstr "Mittelwert: %4.2f."
5530
-
5531
- #: wppa-photo-admin-autosave.php:322
5532
- #, fuzzy, php-format
5533
- msgid "Disliked by %d visitors"
5534
- msgstr "Abgelehnt von %d Besucher"
5535
-
5536
- #: wppa-photo-admin-autosave.php:326
5537
- #, fuzzy, php-format
5538
- msgid "%d pending votes."
5539
- msgstr "%d bis zu stimmen."
5540
-
5541
- #: wppa-photo-admin-autosave.php:336
5542
- #, fuzzy
5543
- msgid "Views"
5544
- msgstr "Ansichten"
5545
-
5546
- #: wppa-photo-admin-autosave.php:347
5547
- #, fuzzy
5548
- msgid "Photo sort order #:"
5549
- msgstr "Bildersortierung"
5550
-
5551
- #: wppa-photo-admin-autosave.php:363
5552
- #, fuzzy
5553
- msgid "Are you sure you want to move this video?"
5554
- msgstr "Bist Du sicher dass Du das Video entfernen möchtest?"
5555
-
5556
- #: wppa-photo-admin-autosave.php:363
5557
- #, fuzzy
5558
- msgid "Are you sure you want to move this photo?"
5559
- msgstr "Bist Du sicher dass Du dieses Foto löschen möchtest?"
5560
-
5561
- #: wppa-photo-admin-autosave.php:364
5562
- #, fuzzy
5563
- msgid "Please select an album to move to first."
5564
- msgstr "Bitte wählen Sie ein Album, um zuerst zu bewegen."
5565
-
5566
- #: wppa-photo-admin-autosave.php:367
5567
- #, fuzzy
5568
- msgid "Move video to"
5569
- msgstr "Video zu verschieben"
5570
-
5571
- #: wppa-photo-admin-autosave.php:368
5572
- #, fuzzy
5573
- msgid "Move photo to"
5574
- msgstr "Foto zu verschieben"
5575
-
5576
- #: wppa-photo-admin-autosave.php:380
5577
- #, fuzzy
5578
- msgid "Are you sure you want to copy this video?"
5579
- msgstr "Bist Du sicher dass Du das Video entfernen möchtest?"
5580
-
5581
- #: wppa-photo-admin-autosave.php:380
5582
- #, fuzzy
5583
- msgid "Are you sure you want to copy this photo?"
5584
- msgstr "Bist Du sicher dass Du dieses Foto löschen möchtest?"
5585
-
5586
- #: wppa-photo-admin-autosave.php:381
5587
- #, fuzzy
5588
- msgid "Please select an album to copy to first."
5589
- msgstr "Bitte wählen Sie ein Album, zuerst zu kopieren."
5590
-
5591
- #: wppa-photo-admin-autosave.php:384
5592
- #, fuzzy
5593
- msgid "Copy video to"
5594
- msgstr "Video zu kopieren"
5595
-
5596
- #: wppa-photo-admin-autosave.php:385
5597
- #, fuzzy
5598
- msgid "Copy photo to"
5599
- msgstr "Foto, Kopie um"
5600
-
5601
- #: wppa-photo-admin-autosave.php:403
5602
- #, fuzzy
5603
- msgid "Are you sure you want to delete this video?"
5604
- msgstr "Sind Sie sicher, dass Sie dieses Video löschen möchten?"
5605
-
5606
- #: wppa-photo-admin-autosave.php:404 wppa-photo-admin-autosave.php:1380
5607
- #, fuzzy
5608
- msgid "Are you sure you want to delete this photo?"
5609
- msgstr "Bist du sicher, dass du dieses Foto löschen möchtest?"
5610
-
5611
- #: wppa-photo-admin-autosave.php:406
5612
- #, fuzzy
5613
- msgid "Delete video"
5614
- msgstr "Video löschen:"
5615
-
5616
- #: wppa-photo-admin-autosave.php:406
5617
- #, fuzzy
5618
- msgid "Delete photo"
5619
- msgstr "Foto löschen"
5620
-
5621
- #: wppa-photo-admin-autosave.php:417
5622
- #, fuzzy
5623
- msgid "Autopage Permalink:"
5624
- msgstr "AutoPage Permalink:"
5625
-
5626
- #: wppa-photo-admin-autosave.php:430
5627
- #, fuzzy
5628
- msgid "Link url:"
5629
- msgstr "Link URL"
5630
-
5631
- #: wppa-photo-admin-autosave.php:435
5632
- #, fuzzy
5633
- msgid "Same tab"
5634
- msgstr "gleichem Tab"
5635
-
5636
- #: wppa-photo-admin-autosave.php:436 wppa-settings-autosave.php:4976
5637
- #: wppa-settings-autosave.php:5982
5638
- #, fuzzy
5639
- msgid "New tab"
5640
- msgstr "neuem Tab"
5641
-
5642
- #: wppa-photo-admin-autosave.php:444
5643
- #, fuzzy
5644
- msgid "Link title:"
5645
- msgstr "Link Titel:"
5646
-
5647
- #: wppa-photo-admin-autosave.php:453
5648
- #, fuzzy
5649
- msgid ""
5650
- "If you want this link to be used, check 'PS Overrule' checkbox in table VI."
5651
- msgstr ""
5652
- "Wenn Sie diesen Link verwendet werden sollen, das Kontrollkästchen Sie "
5653
- "\"Überstimmen PS\" in Tabelle VI."
5654
-
5655
- #: wppa-photo-admin-autosave.php:464
5656
- #, fuzzy
5657
- msgid "HTML Alt attribute:"
5658
- msgstr "HTML Alt-Attribut:"
5659
-
5660
- #: wppa-photo-admin-autosave.php:484
5661
- #, fuzzy
5662
- msgid "Filename:"
5663
- msgstr ""
5664
- "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 120 (Caption) wie "
5665
- "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
5666
-
5667
- #: wppa-photo-admin-autosave.php:490
5668
- #, fuzzy
5669
- msgid "Update file"
5670
- msgstr "Datei aktualisieren"
5671
-
5672
- #: wppa-photo-admin-autosave.php:501 wppa-settings-autosave.php:3316
5673
- #, fuzzy
5674
- msgid "Upload"
5675
- msgstr "ERROR: kann keine Dateien hochladen."
5676
-
5677
- #: wppa-photo-admin-autosave.php:511
5678
- #, fuzzy
5679
- msgid "Video size:"
5680
- msgstr "Videogröße:"
5681
-
5682
- #: wppa-photo-admin-autosave.php:517 wppa-slideshow-widget.php:201
5683
- #, fuzzy
5684
- msgid "Width:"
5685
- msgstr "Breite:"
5686
-
5687
- #: wppa-photo-admin-autosave.php:520 wppa-photo-admin-autosave.php:528
5688
- #, fuzzy, php-format
5689
- msgid "pix, (0=default:%s)"
5690
- msgstr "PIX, (0 = Standard: %s)"
5691
-
5692
- #: wppa-photo-admin-autosave.php:525 wppa-slideshow-widget.php:202
5693
- #, fuzzy
5694
- msgid "Height:"
5695
- msgstr "Höhe:"
5696
-
5697
- #: wppa-photo-admin-autosave.php:536 wppa-photo-admin-autosave.php:558
5698
- #, fuzzy
5699
- msgid "Formats:"
5700
- msgstr "Formate:"
5701
-
5702
- #: wppa-photo-admin-autosave.php:544 wppa-photo-admin-autosave.php:566
5703
- #, fuzzy
5704
- msgid "Filesize:"
5705
- msgstr "Dateigrösse"
5706
-
5707
- #: wppa-photo-admin-autosave.php:579
5708
- #, fuzzy
5709
- msgid "Poster:"
5710
- msgstr "Poster"
5711
-
5712
- #: wppa-photo-admin-autosave.php:579
5713
- #, fuzzy
5714
- msgid "Photo sizes:"
5715
- msgstr "Fotogrößen:"
5716
-
5717
- #: wppa-photo-admin-autosave.php:585
5718
- #, fuzzy
5719
- msgid "Source file:"
5720
- msgstr "Quelldatei"
5721
-
5722
- #: wppa-photo-admin-autosave.php:598
5723
- #, fuzzy
5724
- msgid "Remake display file and thumbnail file"
5725
- msgstr "Remake Display und thumbnail Datei"
5726
-
5727
- #: wppa-photo-admin-autosave.php:598
5728
- #, fuzzy
5729
- msgid "Remake files"
5730
- msgstr "Remake-Dateien"
5731
-
5732
- #: wppa-photo-admin-autosave.php:603 wppa-photo-admin-autosave.php:628
5733
- #: wppa-photo-admin-autosave.php:651
5734
- #, fuzzy
5735
- msgid "Unavailable"
5736
- msgstr "Nicht verfügbar"
5737
-
5738
- #: wppa-photo-admin-autosave.php:613
5739
- #, fuzzy
5740
- msgid "Display file:"
5741
- msgstr "Display-Datei:"
5742
-
5743
- #: wppa-photo-admin-autosave.php:638
5744
- #, fuzzy
5745
- msgid "Thumbnail file:"
5746
- msgstr "Thumbnail-Datei:"
5747
-
5748
- #: wppa-photo-admin-autosave.php:658
5749
- #, fuzzy
5750
- msgid "Remake thumbnail file"
5751
- msgstr "Remake-thumbnail-Datei"
5752
-
5753
- #: wppa-photo-admin-autosave.php:658 wppa-settings-autosave.php:6852
5754
- #, fuzzy
5755
- msgid "Remake"
5756
- msgstr "Neuverfilmung"
5757
-
5758
- #: wppa-photo-admin-autosave.php:670
5759
- #, fuzzy
5760
- msgid "Stereophoto:"
5761
- msgstr "StereoPhoto:"
5762
-
5763
- #: wppa-photo-admin-autosave.php:674
5764
- #, fuzzy
5765
- msgid "no stereo image or ready anaglyph"
5766
- msgstr "weder bereit Anaglyphen und Stereo-Bild"
5767
-
5768
- #: wppa-photo-admin-autosave.php:675
5769
- #, fuzzy
5770
- msgid "Left - right stereo image"
5771
- msgstr "Links - rechts Stereo-Bild"
5772
-
5773
- #: wppa-photo-admin-autosave.php:676
5774
- #, fuzzy
5775
- msgid "Right - left stereo image"
5776
- msgstr "Rechts - links Stereo-Bild"
5777
-
5778
- #: wppa-photo-admin-autosave.php:682
5779
- #, fuzzy
5780
- msgid "Images:"
5781
- msgstr ""
5782
- "Basierend auf Ihrem Server Speichergrenze sollten Sie keine Bilder hochladen "
5783
- "größer <strong>dann %d x %d (% 2.1f MP)</strong>"
5784
-
5785
- #: wppa-photo-admin-autosave.php:712
5786
- #, fuzzy
5787
- msgid "Location:"
5788
- msgstr "Ort:"
5789
-
5790
- #: wppa-photo-admin-autosave.php:720
5791
- #, fuzzy
5792
- msgid "Lat:"
5793
- msgstr "Breitengrad (Lat)"
5794
-
5795
- #: wppa-photo-admin-autosave.php:721
5796
- #, fuzzy
5797
- msgid "Lon:"
5798
- msgstr "Längengrad (Lng)"
5799
-
5800
- #: wppa-photo-admin-autosave.php:723
5801
- #, fuzzy
5802
- msgid "Refresh the page after changing to see the degrees being updated"
5803
- msgstr ""
5804
- "Aktualisieren Sie die Seite nach dem ändern um zu sehen, die Grade "
5805
- "aktualisiert"
5806
-
5807
- #: wppa-photo-admin-autosave.php:733
5808
- #, fuzzy
5809
- msgid "Photoname:"
5810
- msgstr ""
5811
- "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 005 (Graphic Name) wie "
5812
- "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
5813
-
5814
- #: wppa-photo-admin-autosave.php:739
5815
- #, fuzzy
5816
- msgid "Update Photo name"
5817
- msgstr "Foto aktualisieren"
5818
-
5819
- #: wppa-photo-admin-autosave.php:765
5820
- #, fuzzy
5821
- msgid "Update Photo description"
5822
- msgstr "Fotobeschreibung aktualisieren"
5823
-
5824
- #: wppa-photo-admin-autosave.php:823
5825
- #, fuzzy
5826
- msgid "Tags:"
5827
- msgstr "Tags:"
5828
-
5829
- #: wppa-photo-admin-autosave.php:831
5830
- #, fuzzy
5831
- msgid "Separate tags with commas."
5832
- msgstr "Schlagworte durch Kommas trennen"
5833
-
5834
- #: wppa-photo-admin-autosave.php:842
5835
- #, fuzzy
5836
- msgid "No tags yet"
5837
- msgstr "Noch keine <a href=\"%s\">Schlagworte</a> vorhanden."
5838
-
5839
- #: wppa-photo-admin-autosave.php:854
5840
- #, fuzzy
5841
- msgid "Status:"
5842
- msgstr "Status:"
5843
 
5844
- #: wppa-photo-admin-autosave.php:863 wppa-photo-admin-autosave.php:886
5845
- #: wppa-photo-admin-autosave.php:1328 wppa-photo-admin-autosave.php:1445
5846
- #: wppa-photo-admin-autosave.php:1457 wppa-widget-admin.php:138
5847
  #, fuzzy
5848
- msgid "Publish"
5849
- msgstr "Veröffentlichung"
5850
 
5851
- #: wppa-photo-admin-autosave.php:865 wppa-photo-admin-autosave.php:887
5852
- #: wppa-photo-admin-autosave.php:1330 wppa-photo-admin-autosave.php:1447
5853
- #: wppa-widget-admin.php:139
5854
  #, fuzzy
5855
- msgid "Featured"
5856
- msgstr "Sehen Sie die best bewertesten Fotos"
5857
 
5858
- #: wppa-photo-admin-autosave.php:869 wppa-photo-admin-autosave.php:891
5859
- #: wppa-photo-admin-autosave.php:1334 wppa-photo-admin-autosave.php:1451
5860
- #: wppa-photo-admin-autosave.php:1462
5861
- #, fuzzy
5862
- msgid "Scheduled"
5863
- msgstr "Geplant"
5864
 
5865
- #: wppa-photo-admin-autosave.php:870 wppa-photo-admin-autosave.php:892
5866
- #: wppa-photo-admin-autosave.php:1335 wppa-photo-admin-autosave.php:1452
5867
- #: wppa-photo-admin-autosave.php:1463
5868
- #, fuzzy
5869
- msgid "Private"
5870
- msgstr "Privat"
5871
 
5872
- #: wppa-photo-admin-autosave.php:901
5873
  #, fuzzy
5874
  msgid ""
5875
- "Note: Featured photos should have a descriptive name; a name a search engine "
5876
- "will look for!"
5877
  msgstr ""
5878
- "Hinweis: Empfohlene Fotos sollte einen aussagekräftigen Namen haben; ein "
5879
- "Name einer Suchmaschine sucht!"
5880
-
5881
- #: wppa-photo-admin-autosave.php:911
5882
- #, fuzzy
5883
- msgid "Watermark:"
5884
- msgstr "Wasserzeichen"
5885
-
5886
- #: wppa-photo-admin-autosave.php:918 wppa-photo-admin-autosave.php:931
5887
- #, fuzzy
5888
- msgid "File:"
5889
- msgstr "Wende Wasserzeichen-Datei an:"
5890
-
5891
- #: wppa-photo-admin-autosave.php:923 wppa-photo-admin-autosave.php:932
5892
- #, fuzzy
5893
- msgid "Pos:"
5894
- msgstr "Pos.:"
5895
-
5896
- #: wppa-photo-admin-autosave.php:927
5897
- #, fuzzy
5898
- msgid "Apply watermark"
5899
- msgstr "Wende Wasserzeichen-Datei an:"
5900
-
5901
- #: wppa-photo-admin-autosave.php:927
5902
- #, fuzzy
5903
- msgid "Are you sure? Once applied it can not be removed!"
5904
- msgstr "Bist du sicher? Einmal angewendet, es kann nicht entfernt werden!"
5905
-
5906
- #: wppa-photo-admin-autosave.php:927
5907
- #, fuzzy
5908
- msgid "And I do not know if there is already a watermark on this photo"
5909
- msgstr "Und ich weiß nicht, ob es bereits ein Wasserzeichen auf diesem Foto"
5910
-
5911
- #: wppa-photo-admin-autosave.php:937
5912
- #, fuzzy
5913
- msgid "Not configured"
5914
- msgstr "(nicht konfiguriert)"
5915
-
5916
- #: wppa-photo-admin-autosave.php:951
5917
- #, fuzzy, php-format
5918
- msgid "Video %s is not modified yet"
5919
- msgstr "Video %s ist noch nicht geändert."
5920
-
5921
- #: wppa-photo-admin-autosave.php:954
5922
- #, fuzzy, php-format
5923
- msgid "Photo %s is not modified yet"
5924
- msgstr "Foto %s ist noch nicht geändert."
5925
-
5926
- #: wppa-photo-admin-autosave.php:973
5927
- #, fuzzy
5928
- msgid "Single image shortcode"
5929
- msgstr "Einzelbild-shortcode"
5930
-
5931
- #: wppa-photo-admin-autosave.php:979
5932
- #, fuzzy
5933
- msgid "Permalink"
5934
- msgstr "Permalink"
5935
-
5936
- #: wppa-photo-admin-autosave.php:984
5937
- #, fuzzy
5938
- msgid "Hi resolution url"
5939
- msgstr "Hallo Auflösung Url"
5940
-
5941
- #: wppa-photo-admin-autosave.php:989
5942
- #, fuzzy
5943
- msgid "Display file url"
5944
- msgstr "URL anzeigen"
5945
-
5946
- #: wppa-photo-admin-autosave.php:995
5947
- #, fuzzy
5948
- msgid "Thumbnail file url"
5949
- msgstr "Thumbnail Datei-url"
5950
-
5951
- #: wppa-photo-admin-autosave.php:1039 wppa-photo-admin-autosave.php:1049
5952
- #, fuzzy
5953
- msgid "Trash"
5954
- msgstr "Papierkorb"
5955
-
5956
- #: wppa-photo-admin-autosave.php:1165
5957
- #, fuzzy, php-format
5958
- msgid "Time is out after processing %d out of %d items."
5959
- msgstr "Es ist nach der Verarbeitung %d aus %d Elemente."
5960
-
5961
- #: wppa-photo-admin-autosave.php:1178
5962
- #, fuzzy, php-format
5963
- msgid "%d photos deleted."
5964
- msgstr "%d Fotos gelöscht."
5965
-
5966
- #: wppa-photo-admin-autosave.php:1181
5967
- #, fuzzy, php-format
5968
- msgid "%1$s photos moved to album %2$s."
5969
- msgstr "%1$s Fotos zog nach Album %2$s."
5970
-
5971
- #: wppa-photo-admin-autosave.php:1184
5972
- #, fuzzy, php-format
5973
- msgid "%1$s photos copied to album %2$s."
5974
- msgstr "%1$s Fotos in Album %2$s kopiert."
5975
-
5976
- #: wppa-photo-admin-autosave.php:1187
5977
- #, fuzzy, php-format
5978
- msgid "Changed status to %1$s on %2$s photos."
5979
- msgstr "Status auf %1$s auf %2$s Fotos geändert."
5980
-
5981
- #: wppa-photo-admin-autosave.php:1190
5982
- #, fuzzy, php-format
5983
- msgid "Changed owner to %1$s on %2$s photos."
5984
- msgstr "Eigentümer auf %1$s auf %2$s Fotos geändert."
5985
-
5986
- #: wppa-photo-admin-autosave.php:1193
5987
- #, fuzzy, php-format
5988
- msgid "%d photos processed."
5989
- msgstr "%d Fotos verarbeitet."
5990
-
5991
- #: wppa-photo-admin-autosave.php:1313
5992
- #, fuzzy
5993
- msgid "Move to"
5994
- msgstr "Anfahren"
5995
-
5996
- #: wppa-photo-admin-autosave.php:1314
5997
- #, fuzzy
5998
- msgid "Copy to"
5999
- msgstr "Kopieer naar"
6000
-
6001
- #: wppa-photo-admin-autosave.php:1316
6002
- #, fuzzy
6003
- msgid "Set status to"
6004
- msgstr "Status zu setzen"
6005
 
6006
- #: wppa-photo-admin-autosave.php:1319
6007
  #, fuzzy
6008
- msgid "Set owner to"
6009
- msgstr "Eingestellten Besitzer"
6010
-
6011
- #: wppa-photo-admin-autosave.php:1326
6012
- msgid "- select a status -"
6013
- msgstr "-Wählen Sie einen Status-"
6014
-
6015
- #: wppa-photo-admin-autosave.php:1341
6016
- msgid "- select an owner -"
6017
- msgstr "-Wählen Sie einen Besitzer-"
6018
 
6019
- #: wppa-photo-admin-autosave.php:1353
 
6020
  #, fuzzy
6021
- msgid "Doit!"
6022
- msgstr "Doit!"
6023
 
6024
- #: wppa-photo-admin-autosave.php:1355
 
6025
  #, fuzzy
6026
- msgid ""
6027
- "Pressing this button will reload the page after executing the selected action"
6028
- msgstr ""
6029
- "Betätigung dieser Taste wird die Seite neu zu laden nach Ausführung der "
6030
- "ausgewählten Aktion"
6031
 
6032
- #: wppa-photo-admin-autosave.php:1362 wppa-photo-admin-autosave.php:1481
6033
- #: wppa-settings-autosave.php:8466
6034
  #, fuzzy
6035
- msgid "Preview"
6036
- msgstr "Vorschau"
6037
 
6038
- #: wppa-photo-admin-autosave.php:1367 wppa-photo-admin-autosave.php:1486
6039
  #, fuzzy
6040
- msgid "Remark"
6041
- msgstr "Bemerkung"
6042
-
6043
- #: wppa-photo-admin-autosave.php:1504
6044
- #, fuzzy, php-format
6045
- msgid "Page %d is empty, try <a href=\"%s\" >page %d</a>."
6046
- msgstr "Seite %d ist leer, <a href=\"%s\">Seite %d</a>versuchen."
6047
 
6048
- #: wppa-photo-admin-autosave.php:1614
6049
  #, fuzzy
6050
- msgid ""
6051
- "Setting photo sequence order has only effect if the photo order method is "
6052
- "set to <b>Order#</b>"
6053
- msgstr ""
6054
- "Foto Reihenfolge festlegen hat nur Auswirkungen, wenn die Bestellmethode "
6055
- "Foto auf <b>Bestellung #</b> festgelegt ist"
6056
 
6057
- #: wppa-photo-admin-autosave.php:1673
6058
  #, fuzzy
6059
- msgid "Id: "
6060
- msgstr "ID:"
6061
 
6062
- #: wppa-photo-admin-autosave.php:1674 wppa-settings-autosave.php:429
6063
  #, fuzzy
6064
- msgid "Video"
6065
- msgstr "Video"
6066
 
6067
- #: wppa-photo-admin-autosave.php:1675 wppa-settings-autosave.php:410
6068
  #, fuzzy
6069
- msgid "Audio"
6070
- msgstr "Audio"
6071
 
6072
- #: wppa-photo-admin-autosave.php:1676
6073
  #, fuzzy
6074
- msgid "Ord: "
6075
- msgstr "Ord:"
6076
 
6077
- #: wppa-photo-admin-autosave.php:1689
6078
  #, fuzzy
6079
- msgid "The album is empty."
6080
- msgstr "Das ALbum ist leer."
6081
 
6082
- #: wppa-photo-admin-autosave.php:1789
6083
  #, fuzzy
6084
- msgid "Combined"
6085
- msgstr "Kombiniert"
6086
 
6087
- #: wppa-photo-admin-autosave.php:1826
6088
  #, fuzzy
6089
- msgid "Word"
6090
- msgstr "Word"
6091
 
6092
- #: wppa-photo-admin-autosave.php:1829
6093
  #, fuzzy
6094
- msgid "Count"
6095
- msgstr "Häufigkeit"
6096
 
6097
- #: wppa-photo-admin-autosave.php:1881 wppa-settings-autosave.php:6390
6098
  #, fuzzy
6099
- msgid "Tags"
6100
- msgstr "Suchbegriffe"
6101
 
6102
- #: wppa-photo-admin-autosave.php:2001
6103
- #, fuzzy
6104
- msgid "Send"
6105
- msgstr "Absenden!"
6106
 
6107
- #: wppa-photo-files.php:144 wppa-photo-files.php:145
6108
- #, php-format
6109
- msgid "ERROR: File %s is not a valid picture file."
6110
- msgstr "FEHLER: Die Datei%s ist keine gültige Bilddatei."
6111
 
6112
- #: wppa-photo-files.php:289 wppa-photo-files.php:290
6113
- msgid "ERROR: Resized or copied image could not be created."
6114
- msgstr "ERROR: Resized oder kopierte Bild konnte nicht erstellt werden."
 
6115
 
6116
- #: wppa-potd-widget.php:14
6117
  #, fuzzy
6118
- msgid "WPPA+ Photo Of The Day"
6119
- msgstr "WPPA + Foto des Tages"
6120
 
6121
- #: wppa-potd-widget.php:15
6122
  #, fuzzy
6123
- msgid "Photo Of The Day"
6124
- msgstr "Foto des Tages"
6125
-
6126
- #: wppa-potd-widget.php:205
6127
- msgid ""
6128
- "You can set the content and the sizes in this widget in the <b>Photo Albums -"
6129
- "> Photo of the day</b> admin page."
6130
- msgstr ""
6131
 
6132
- #: wppa-qr-widget.php:13
6133
  #, fuzzy
6134
- msgid "WPPA+ QR Widget"
6135
- msgstr "WPPA + QR Widget"
6136
 
6137
- #: wppa-qr-widget.php:14 wppa-qr-widget.php:32
6138
  #, fuzzy
6139
- msgid "QR Widget"
6140
- msgstr "QR-Widget"
6141
 
6142
- #: wppa-qr-widget.php:95
6143
  #, fuzzy
6144
- msgid ""
6145
- "You can set the sizes and colors in this widget in the <b>Photo Albums -> "
6146
- "Settings</b> admin page."
6147
- msgstr ""
6148
- "Sie können die Größen und Farben in diesem Widget in der Admin-Seite "
6149
- "<b>Fotoalben-> Einstellungen</b> festlegen."
6150
 
6151
- #: wppa-search-widget.php:13
6152
  #, fuzzy
6153
- msgid "WPPA+ Search Photos"
6154
- msgstr "Foto suchen"
6155
 
6156
- #: wppa-search-widget.php:14 wppa-search-widget.php:36
6157
- #: wppa-search-widget.php:78
6158
  #, fuzzy
6159
- msgid "Search Photos"
6160
- msgstr "Foto suchen"
6161
 
6162
- #: wppa-search-widget.php:100
6163
- #, fuzzy
6164
- msgid "Text:"
6165
- msgstr "Text"
6166
 
6167
- #: wppa-search-widget.php:104
 
 
 
 
 
6168
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
6169
  msgid ""
6170
- "Enter optional text that will appear before the input box. This may contain "
6171
- "HTML so you can change font size and color."
6172
  msgstr ""
6173
- "Geben Sie optionalen Text, der bevor Sie das Eingabefeld angezeigt wird. "
6174
- "Dies kann HTML enthalten, so können Sie die Schriftgröße und Farbe ändern."
6175
 
6176
- #: wppa-search-widget.php:108
6177
  #, fuzzy
6178
- msgid "Enable rootsearch"
6179
- msgstr "Rootsearch aktivieren"
6180
 
6181
- #: wppa-search-widget.php:113
6182
  #, fuzzy
6183
- msgid ""
6184
- "If you want the search to be limited to a specific album and its "
6185
- "(grand)children, select the album here."
6186
- msgstr ""
6187
- "Wenn Sie die Suche auf ein bestimmtes Album und ihre (gross-) Kinder zu "
6188
- "beschränken möchten, wählen Sie das Album hier."
6189
 
6190
- #: wppa-search-widget.php:115
6191
  #, fuzzy
6192
- msgid ""
6193
- "If you select an album here, it will overrule the previous checkbox using "
6194
- "the album as a 'fixed' root."
 
 
 
6195
  msgstr ""
6196
- "Wenn Sie ein Album hier auswählen, wird es die vorherigen Checkbox mit das "
6197
- "Album als eine \"feste\" Root außer Kraft setzen."
6198
 
6199
- #: wppa-search-widget.php:129
6200
  #, fuzzy
6201
- msgid "Enable subsearch"
6202
- msgstr "Subsearch aktivieren"
6203
 
6204
- #: wppa-search-widget.php:134 wppa-settings-autosave.php:5910
6205
- #, fuzzy
6206
- msgid "Landing page"
6207
- msgstr "Zielseite"
 
 
6208
 
6209
- #: wppa-search-widget.php:143
6210
  #, fuzzy
6211
- msgid "--- Default ---"
6212
- msgstr "Standard-Fotoalbum für"
6213
 
6214
- #: wppa-search-widget.php:186
 
 
 
 
 
 
6215
  #, fuzzy
6216
- msgid "The default page will be created automaticly"
6217
- msgstr "Die Standardseite wird automatisch erstellt"
6218
 
6219
- #: wppa-settings-autosave.php:143
6220
  #, fuzzy
6221
- msgid "Saved settings restored"
6222
- msgstr "Gespeicherten Einstellungen wiederhergestellt"
6223
 
6224
- #: wppa-settings-autosave.php:146
6225
  #, fuzzy
6226
- msgid "Unable to restore saved settings"
6227
- msgstr "Nicht in der Lage, Wiederherstellungseinstellungen gespeichert"
6228
 
6229
- #: wppa-settings-autosave.php:152
6230
  #, fuzzy
6231
- msgid "Reset to default settings"
6232
- msgstr "Auf Standardeinstellungen zurücksetzen"
6233
 
6234
- #: wppa-settings-autosave.php:155
6235
  #, fuzzy
6236
- msgid "Unable to set defaults"
6237
- msgstr "Nicht in der Lage zum Festlegen von Standardeinstellungen"
6238
 
6239
- #: wppa-settings-autosave.php:160
6240
- #, fuzzy, php-format
6241
- msgid "Skinfile %s loaded"
6242
- msgstr "Skinfile %s geladen"
6243
 
6244
- #: wppa-settings-autosave.php:171 wppa-settings-autosave.php:193
6245
- #: wppa-settings-autosave.php:214
6246
- #, fuzzy, php-format
6247
- msgid "Upload error %s"
6248
- msgstr "Fehler beim Hochladen: %s"
6249
 
6250
- #: wppa-settings-autosave.php:176
6251
- #, fuzzy, php-format
6252
- msgid "Uploaded file %s is not a .png file"
6253
- msgstr "Hochgeladene Datei %s ist keine PNG-Datei"
 
 
 
6254
 
6255
- #: wppa-settings-autosave.php:180 wppa-settings-autosave.php:201
6256
- #: wppa-settings-autosave.php:237
6257
- #, fuzzy, php-format
6258
- msgid "Upload of %s done"
6259
- msgstr "Upload von %s getan"
6260
 
6261
- #: wppa-settings-autosave.php:185 wppa-settings-autosave.php:206
6262
- #: wppa-settings-autosave.php:242
6263
- #, fuzzy
6264
- msgid "No file selected or error on upload"
6265
- msgstr "Keine Datei ausgewählt oder Fehler beim Hochladen"
6266
 
6267
- #: wppa-settings-autosave.php:197
6268
- #, fuzzy, php-format
6269
- msgid "Uploaded file %s is not a .ttf file"
6270
- msgstr "Hochgeladene Datei %s ist keine .ttf-Datei"
6271
 
6272
- #: wppa-settings-autosave.php:219
6273
- #, fuzzy, php-format
6274
- msgid "Uploaded file %s is not a valid image file"
6275
- msgstr "Hochgeladene Datei %s ist keine gültige Grafik-Datei"
6276
 
6277
- #: wppa-settings-autosave.php:298
6278
- #, fuzzy, php-format
6279
- msgid ""
6280
- "%s invalid ratings removed. Please run Table VIII-A5: Rerate to fix the "
6281
- "averages."
6282
- msgstr ""
6283
- "%s ungültige Bewertungen entfernt. Bitte führen Sie Tabelle VIII-A5: Rerate, "
6284
- "die Durchschnittswerte zu beheben."
6285
 
6286
- #: wppa-settings-autosave.php:308
6287
- #, fuzzy, php-format
6288
- msgid "%s obsolete settings removed."
6289
- msgstr "%s veraltete Einstellungen entfernt."
6290
 
6291
- #: wppa-settings-autosave.php:317
6292
- #, fuzzy
6293
- msgid "WP Photo Album Plus Settings"
6294
- msgstr "WP Photo Album Plus Einstellungen"
6295
 
6296
- #: wppa-settings-autosave.php:318
6297
- #, fuzzy
6298
- msgid "Database revision:"
6299
- msgstr "Datenbank Version:"
6300
 
6301
- #: wppa-settings-autosave.php:318
6302
- #, fuzzy
6303
- msgid "WP Charset:"
6304
- msgstr "WP-Charset:"
6305
 
6306
- #: wppa-settings-autosave.php:321
6307
- #, fuzzy
6308
- msgid "Multisite in singlesite mode."
6309
- msgstr "Multisite im Singlesite-Modus."
6310
 
6311
- #: wppa-settings-autosave.php:324
6312
- #, fuzzy
6313
- msgid "Multisite enabled."
6314
- msgstr "WP Multisite Aktiviert"
6315
 
6316
- #: wppa-settings-autosave.php:326
6317
- #, fuzzy
6318
- msgid "Blogid ="
6319
- msgstr "BlogId ="
6320
 
6321
- #: wppa-settings-autosave.php:343
6322
- #, fuzzy
6323
- msgid "Please de-activate plugin <i style=\"font-size:14px;\">"
6324
- msgstr "Bitte de-aktivieren Sie plugin<i style=\"font-size:14px;\"></i>"
6325
 
6326
- #: wppa-settings-autosave.php:343
6327
- #, fuzzy
6328
- msgid ". </i>This plugin will cause wppa+ to function not properly."
6329
- msgstr ". Dieses Plugin wird Wppa + nicht richtig funktionieren verursachen."
6330
 
6331
- #: wppa-settings-autosave.php:353
6332
- #, fuzzy
6333
- msgid "Please note that plugin <i style=\"font-size:14px;\">"
6334
- msgstr "Bitte beachten Sie, dass plugin<i style=\"font-size:14px;\"></i>"
6335
 
6336
- #: wppa-settings-autosave.php:353
6337
- #, fuzzy
6338
- msgid "</i> can cause wppa+ to function not properly if it is misconfigured."
6339
- msgstr "kann Wppa + Funktion nicht richtig führen, wenn es falsch ist."
6340
 
6341
- #: wppa-settings-autosave.php:358 wppa-upload.php:93
6342
- #, fuzzy
6343
- msgid ""
6344
- "There is a serious misconfiguration in your servers PHP config. Function "
6345
- "wppa_imagecreatefromjpeg() does not exist. You will encounter problems when "
6346
- "uploading photos and not be able to generate thumbnail images. Ask your "
6347
- "hosting provider to add GD support with a minimal version 1.8."
6348
- msgstr ""
6349
- "Es ist eine ernste Fehlkonfiguration in Ihrem Server PHP Config. Funktion "
6350
- "wppa_imagecreatefromjpeg() ist nicht vorhanden. Sie werden Probleme beim "
6351
- "Hochladen von Fotos und möglicherweise keine Miniaturbilder zu generieren. "
6352
- "Fragen Sie Ihren Hosting-Provider, GD-Unterstützung mit einer minimalen "
6353
- "Version 1.8 hinzuzufügen."
6354
 
6355
- #: wppa-settings-autosave.php:363
6356
- #, fuzzy
6357
- msgid "Rebuilding the Album index needs completion. See Table VIII"
6358
- msgstr "Neuerstellung des Indexes Album braucht Abschluss. Siehe Tabelle VIII"
6359
 
6360
- #: wppa-settings-autosave.php:364
6361
- #, fuzzy
6362
- msgid "Rebuilding the Photo index needs completion. See Table VIII"
6363
- msgstr "Neuerstellung des Indexes Foto braucht Abschluss. Siehe Tabelle VIII"
6364
 
6365
- #: wppa-settings-autosave.php:366
6366
- #, fuzzy
6367
- msgid "Remove empty albums needs completion. See Table VIII"
6368
- msgstr "Entfernen Sie leere Alben Bedürfnisse Abschluss. Siehe Tabelle VIII"
6369
 
6370
- #: wppa-settings-autosave.php:367
6371
- #, fuzzy
6372
- msgid "Applying new photo description needs completion. See Table VIII"
6373
- msgstr "Anwendung neuer Fotobeschreibung braucht Abschluss. Siehe Tabelle VIII"
6374
 
6375
- #: wppa-settings-autosave.php:368
6376
- #, fuzzy
6377
- msgid "Appending to photo description needs completion. See Table VIII"
6378
- msgstr "Anfügen an Fotobeschreibung braucht Abschluss. Siehe Tabelle VIII"
6379
 
6380
- #: wppa-settings-autosave.php:369
6381
- #, fuzzy
6382
- msgid "Removing from photo description needs completion. See Table VIII"
6383
- msgstr "Entfernen von Fotobeschreibung braucht Abschluss. Siehe Tabelle VIII"
6384
 
6385
- #: wppa-settings-autosave.php:370
6386
- #, fuzzy
6387
- msgid "Removing file extensions needs completion. See Table VIII"
6388
- msgstr ""
6389
- "Entfernen von Dateierweiterungen benötigt Abschluss. Siehe Tabelle VIII"
 
 
 
6390
 
6391
- #: wppa-settings-autosave.php:371
6392
- #, fuzzy
6393
- msgid "Regenerating the Thumbnails needs completion. See Table VIII"
6394
- msgstr "Regeneriert die Thumbnails braucht Abschluss. Siehe Tabelle VIII"
6395
 
6396
- #: wppa-settings-autosave.php:372
6397
  #, fuzzy
6398
- msgid "Rerating needs completion. See Table VIII"
6399
- msgstr "Neuauslegung Bedürfnisse Abschluss. Siehe Tabelle VIII"
6400
 
6401
- #: wppa-settings-autosave.php:380
6402
  #, fuzzy
6403
- msgid ""
6404
- "A thumbframe width or height should not be smaller than a thumbnail size. "
6405
- "Please correct the corresponding setting(s) in Table I-C"
6406
- msgstr ""
6407
- "Eine Thumbframe Breite oder Höhe sollte nicht kleiner als eine "
6408
- "Miniaturansicht. Bitte korrigieren Sie die entsprechenden Einstellungen im "
6409
- "Tab-C"
6410
 
6411
- #: wppa-settings-autosave.php:385
6412
  #, fuzzy
6413
- msgid "Show legenda"
6414
- msgstr "Legenda zeigen"
6415
 
6416
- #: wppa-settings-autosave.php:387
6417
  #, fuzzy
6418
- msgid "Legenda:"
6419
- msgstr "Legenda:"
6420
 
6421
- #: wppa-settings-autosave.php:388 wppa-settings-autosave.php:390
6422
- #: wppa-settings-autosave.php:2069 wppa-settings-autosave.php:5657
6423
  #, fuzzy
6424
- msgid "Button"
6425
- msgstr "Schaltfläche"
6426
 
6427
- #: wppa-settings-autosave.php:388
6428
  #, fuzzy
6429
- msgid "action that causes page reload."
6430
- msgstr "Aktion, die bewirkt, dass die Seite neu zu laden."
6431
 
6432
- #: wppa-settings-autosave.php:390 wppa-settings-autosave.php:9970
6433
- #: wppa-settings-autosave.php:9989
6434
- #, fuzzy
6435
- msgid "Are you sure?"
6436
- msgstr ""
6437
- "Sind Sie sicher, dass Sie dieses Foto mit Ihrem ZIP-Paket hinzufügen möchten?"
6438
 
6439
- #: wppa-settings-autosave.php:391
6440
  #, fuzzy
6441
- msgid "action that does not cause page reload."
6442
- msgstr "Aktion bewirkt, dass keine Seite neu laden."
6443
 
6444
- #: wppa-settings-autosave.php:393 wppa-settings-autosave.php:7260
6445
- #: wppa-settings-autosave.php:7287 wppa-settings-autosave.php:8355
6446
- #: wppa-settings-autosave.php:8357 wppa-settings-autosave.php:9646
6447
- #: wppa-settings-autosave.php:9663 wppa-settings-autosave.php:9692
6448
- #: wppa-settings-autosave.php:9710 wppa-settings-autosave.php:9734
6449
- #: wppa-settings-autosave.php:9755 wppa-settings-autosave.php:9775
6450
- #: wppa-settings-autosave.php:9792 wppa-settings-autosave.php:9836
6451
- #: wppa-settings-autosave.php:9889 wppa-settings-autosave.php:9921
6452
  #, fuzzy
6453
- msgid "Setting unmodified"
6454
- msgstr "Festlegen von unveränderten"
6455
 
6456
- #: wppa-settings-autosave.php:395
6457
  #, fuzzy
6458
- msgid "Update in progress"
6459
- msgstr "Update wird durchgeführt…"
6460
 
6461
- #: wppa-settings-autosave.php:397
6462
  #, fuzzy
6463
- msgid "Setting updated"
6464
- msgstr "Einstellung aktualisiert"
6465
 
6466
- #: wppa-settings-autosave.php:399
6467
  #, fuzzy
6468
- msgid "Update failed"
6469
- msgstr "Update fehlgeschlagen"
6470
 
6471
- #: wppa-settings-autosave.php:401
6472
  #, fuzzy
6473
- msgid "Hide this"
6474
- msgstr "IPTC-Daten ausblenden"
6475
 
6476
- #: wppa-settings-autosave.php:407
6477
  #, fuzzy
6478
- msgid "System"
6479
- msgstr "Danke für die Installation von Support System"
6480
 
6481
- #: wppa-settings-autosave.php:408
6482
  #, fuzzy
6483
- msgid "Access"
6484
- msgstr "Zugriff"
6485
 
6486
- #: wppa-settings-autosave.php:412
6487
  #, fuzzy
6488
- msgid "Counts"
6489
- msgstr "Anzahl"
6490
 
6491
- #: wppa-settings-autosave.php:413
6492
  #, fuzzy
6493
- msgid "Covers"
6494
- msgstr "Abdeckungen"
6495
 
6496
- #: wppa-settings-autosave.php:414
6497
  #, fuzzy
6498
- msgid "Layout"
6499
- msgstr "Layout"
6500
 
6501
- #: wppa-settings-autosave.php:415 wppa-settings-autosave.php:4926
6502
  #, fuzzy
6503
- msgid "Lightbox"
6504
- msgstr "Lightbox"
 
 
 
 
 
6505
 
6506
- #: wppa-settings-autosave.php:416
6507
  #, fuzzy
6508
- msgid "Links"
6509
- msgstr "Verweise"
6510
 
6511
- #: wppa-settings-autosave.php:417
6512
  #, fuzzy
6513
- msgid "Metadata"
6514
- msgstr "Metadaten"
6515
 
6516
- #: wppa-settings-autosave.php:418
6517
  #, fuzzy
6518
- msgid "Navigation"
6519
- msgstr "Navigation"
6520
 
6521
- #: wppa-settings-autosave.php:420 wppa-settings-autosave.php:8498
6522
- #: wppa-settings-autosave.php:8543
6523
  #, fuzzy
6524
- msgid "Rating"
6525
- msgstr "ERROR: Illegal Versuch, eine Bewertung zu gelangen."
6526
 
6527
- #: wppa-settings-autosave.php:422
6528
  #, fuzzy
6529
- msgid "Sizes"
6530
- msgstr "Größen"
6531
 
6532
- #: wppa-settings-autosave.php:423
6533
- #, fuzzy
6534
- msgid "Slideshows"
6535
- msgstr "Slideshows"
6536
 
6537
- #: wppa-settings-autosave.php:424
6538
  #, fuzzy
6539
- msgid "Social Media"
6540
- msgstr "Social Media"
6541
 
6542
- #: wppa-settings-autosave.php:426
6543
  #, fuzzy
6544
- msgid "Uploads"
6545
- msgstr "Uploads"
6546
 
6547
- #: wppa-settings-autosave.php:427
6548
  #, fuzzy
6549
- msgid "Widgets"
6550
- msgstr "Widgets"
6551
 
6552
- #: wppa-settings-autosave.php:428 wppa-settings-autosave.php:8336
6553
  #, fuzzy
6554
- msgid "Watermark"
6555
- msgstr "Wasserzeichen"
6556
 
6557
- #: wppa-settings-autosave.php:436
6558
  #, fuzzy
6559
- msgid "Click on the banner of a (sub)table to open/close it, or"
6560
- msgstr ""
6561
- "Klicken Sie auf das Banner einer (Teil-) Tabelle zu öffnen/schließen, oder"
6562
 
6563
- #: wppa-settings-autosave.php:438
6564
  #, fuzzy
6565
- msgid "Show settings related to:"
6566
- msgstr "Zeigen Sie die Einstellungen in Bezug auf:"
6567
 
6568
- #: wppa-settings-autosave.php:444
6569
  #, fuzzy
6570
- msgid "and ( optionally ) to:"
6571
- msgstr "und (optional):"
6572
 
6573
- #: wppa-settings-autosave.php:458
6574
- #, fuzzy
6575
- msgid "Quick setup"
6576
- msgstr "Kurzanleitung zur Installation"
6577
 
6578
- #: wppa-settings-autosave.php:460
6579
- #, fuzzy
6580
- msgid "Do a quick initial setup"
6581
- msgstr "Eine schnelle Ersteinrichtung zu tun"
6582
 
6583
- #: wppa-settings-autosave.php:461
6584
  #, fuzzy
6585
- msgid "Close quick setup"
6586
- msgstr "Enge Schnelleinrichtung"
6587
 
6588
- #: wppa-settings-autosave.php:501
6589
  #, fuzzy
6590
- msgid "--- The same post or page ---"
6591
- msgstr "---Die gleiche Post oder Seite---"
6592
 
6593
- #: wppa-settings-autosave.php:532
6594
  #, fuzzy
6595
- msgid "--- No page to link to (yet) ---"
6596
- msgstr "---Keine Seite verknüpfen mit (noch)---"
6597
 
6598
- #: wppa-settings-autosave.php:537
6599
  #, fuzzy
6600
- msgid "--- Will be auto created ---"
6601
- msgstr "---Auto entstehen---"
6602
 
6603
- #: wppa-settings-autosave.php:544
6604
  #, fuzzy
6605
- msgid "Table O:"
6606
- msgstr "Tabelle O:"
6607
 
6608
- #: wppa-settings-autosave.php:544
6609
  #, fuzzy
6610
- msgid "Quick Setup:"
6611
- msgstr "Kurzanleitung zur Installation"
6612
 
6613
- #: wppa-settings-autosave.php:545
6614
  #, fuzzy
6615
- msgid "This table enables you to quickly do an inital setup."
6616
- msgstr ""
6617
- "Diese Tabelle ermöglicht es Ihnen, schnell eine Erstinstallation zu tun."
6618
 
6619
- #: wppa-settings-autosave.php:555 wppa-settings-autosave.php:717
6620
- #: wppa-settings-autosave.php:739 wppa-settings-autosave.php:1487
6621
- #: wppa-settings-autosave.php:1508 wppa-settings-autosave.php:3096
6622
- #: wppa-settings-autosave.php:3465 wppa-settings-autosave.php:4753
6623
- #: wppa-settings-autosave.php:6640 wppa-settings-autosave.php:7416
6624
- #: wppa-settings-autosave.php:9138
6625
  #, fuzzy
6626
- msgid "Setting"
6627
- msgstr "تنظیمات"
6628
 
6629
- #: wppa-settings-autosave.php:556 wppa-settings-autosave.php:718
6630
- #: wppa-settings-autosave.php:740 wppa-settings-autosave.php:1488
6631
- #: wppa-settings-autosave.php:1509 wppa-settings-autosave.php:3097
6632
- #: wppa-settings-autosave.php:3121 wppa-settings-autosave.php:3445
6633
- #: wppa-settings-autosave.php:3466 wppa-settings-autosave.php:4754
6634
- #: wppa-settings-autosave.php:4778 wppa-settings-autosave.php:4954
6635
- #: wppa-settings-autosave.php:4978 wppa-settings-autosave.php:5984
6636
- #: wppa-settings-autosave.php:6642 wppa-settings-autosave.php:6666
6637
- #: wppa-settings-autosave.php:7396 wppa-settings-autosave.php:7417
6638
- #: wppa-settings-autosave.php:9139 wppa-settings-autosave.php:9161
6639
- #: wppa-settings-autosave.php:9201 wppa-settings-autosave.php:9223
6640
- #: wppa-settings-autosave.php:9269
6641
  #, fuzzy
6642
- msgid "Help"
6643
- msgstr "Hilfe"
6644
 
6645
- #: wppa-settings-autosave.php:567
6646
  #, fuzzy
6647
- msgid ""
6648
- "To quickly setup WPPA+ please answer the following questions. You can alway "
6649
- "change any setting later. <a>Click on me!</a>"
6650
- msgstr ""
6651
- "Zu schnell Setup beantworte WPPA + bitte die folgenden Fragen. Sie können "
6652
- "sich jederzeit ändern, jede Einstellung später. <a>Klicken Sie auf mich!</a>"
6653
 
6654
- #: wppa-settings-autosave.php:569
6655
  #, fuzzy
6656
- msgid "Is your theme <i>responsive</i>?"
6657
- msgstr "Ist Ihr Thema <i>reagieren</i>?"
6658
 
6659
- #: wppa-settings-autosave.php:570
6660
  #, fuzzy
6661
- msgid ""
6662
- "Responsive themes have a layout that varies with the size of the browser "
6663
- "window."
6664
- msgstr ""
6665
- "Ansprechende Themen haben eine Layout, die variiert mit der Größe des "
6666
- "Browser-Fensters."
6667
 
6668
- #: wppa-settings-autosave.php:571
6669
  #, fuzzy
6670
- msgid ""
6671
- "WPPA+ needs to know this to automaticly adept the width of the display to "
6672
- "the available width on the page."
6673
- msgstr ""
6674
- "WPPA + muss kennen, um automatisch Adept die Breite des Displays, um die "
6675
- "verfügbare Breite auf der Seite."
6676
 
6677
- #: wppa-settings-autosave.php:578
6678
  #, fuzzy
6679
- msgid "Do you want to downsize photos during upload?"
6680
- msgstr "Möchten Sie Fotos beim Hochladen verkleinern?"
6681
 
6682
- #: wppa-settings-autosave.php:579
6683
  #, fuzzy
6684
- msgid ""
6685
- "Downsizing photos make them load faster to the visitor, without loosing "
6686
- "display quality"
6687
- msgstr ""
6688
- "Downsizing-Fotos machen sie für den Besucher schneller zu laden, ohne "
6689
- "Qualität zu verlieren"
6690
 
6691
- #: wppa-settings-autosave.php:580
6692
  #, fuzzy
6693
- msgid ""
6694
- "If you answer yes, the photos will be downsized to max 1024 x 768 pixels. "
6695
- "You can change this later, if you like"
6696
- msgstr ""
6697
- "Wenn Sie Ja Antworten, werden die Fotos auf max. 1024 x 768 Pixel "
6698
- "verkleinert werden. Sie können dies ändern, später, wenn Sie wollen"
6699
 
6700
- #: wppa-settings-autosave.php:587
6701
  #, fuzzy
6702
- msgid "Do you want to save the original photofiles?"
6703
- msgstr "Möchten Sie die ursprüngliche Photofiles speichern?"
6704
 
6705
- #: wppa-settings-autosave.php:588
6706
  #, fuzzy
6707
- msgid "This will require considerable disk space on the server."
6708
- msgstr "Dies erfordert erheblichen Speicherplatz auf dem Server."
6709
 
6710
- #: wppa-settings-autosave.php:589
6711
  #, fuzzy
6712
- msgid ""
6713
- "If you answer yes, you will be able to remove watermarks you applied with "
6714
- "wppa+ in a later stage, redo downsizing to a larger size afterwards, and "
6715
- "supply fullsize images for download."
6716
- msgstr ""
6717
- "Wenn Sie Ja Antworten, werden Sie möglicherweise entfernen Wasserzeichen, "
6718
- "die Sie in einem späteren Stadium mit Wppa + angewendet, Downsizing auf eine "
6719
- "größere Größe danach wiederholen und Fullsize Bilder zum Download."
6720
 
6721
- #: wppa-settings-autosave.php:596
 
6722
  #, fuzzy
6723
- msgid "May visitors upload photos?"
6724
- msgstr "Können Besucher Fotos hochladen?"
6725
 
6726
- #: wppa-settings-autosave.php:597
6727
  #, fuzzy
6728
- msgid ""
6729
- "It is safe to do so, but i will have to do some settings to keep it safe!"
6730
- msgstr ""
6731
- "Es ist sicher, dies zu tun, aber ich muss tun, einige Einstellungen, um sie "
6732
- "zu schützen!"
6733
 
6734
- #: wppa-settings-autosave.php:598
6735
  #, fuzzy
6736
  msgid ""
6737
- "If you answer yes, i will assume you want to enable logged in users to "
6738
- "upload photos at the front-end of the website and allow them to edit their "
6739
- "photos name and descriptions."
6740
  msgstr ""
6741
- "Wenn Sie mit Ja beantworten, gehe ich davon aus, dass Sie ermöglichen "
6742
- "möchten, angemeldete Benutzer Fotos auf dem Front-End der Website hochladen "
6743
- "und es ihnen ermöglichen, ihre Fotos Namen und Beschreibungen zu bearbeiten."
6744
 
6745
- #: wppa-settings-autosave.php:599
6746
  #, fuzzy
6747
- msgid ""
6748
- "The photos will be hold for moderation, the admin will get notified by email."
6749
- msgstr ""
6750
- "Die Fotos werden Halt zur Mäßigung, der Admin erhalten Sie per e-Mail "
6751
- "benachrichtigt."
6752
 
6753
- #: wppa-settings-autosave.php:600
6754
  #, fuzzy
6755
- msgid ""
6756
- "Each user will get his own album to upload to. These settings can be changed "
6757
- "later."
6758
  msgstr ""
6759
- "Jeder Benutzer bekommt sein eigenes Album auf hochladen. Diese Einstellungen "
6760
- "können später geändert werden."
6761
-
6762
- #: wppa-settings-autosave.php:607
6763
- #, fuzzy
6764
- msgid "Do you want the rating system active?"
6765
- msgstr "Möchten Sie das Rating-System aktiv?"
6766
 
6767
- #: wppa-settings-autosave.php:608
6768
  #, fuzzy
6769
- msgid "Enable the rating system and show the votes in the slideshow."
6770
- msgstr ""
6771
- "Aktivieren Sie das Rating-System und zeigen Sie die Stimmen in der Diashow."
6772
 
6773
- #: wppa-settings-autosave.php:609
6774
  #, fuzzy
6775
- msgid "You can configure the details of the rating system later"
6776
- msgstr "Sie können die Details des Ratingsystems später konfigurieren."
6777
 
6778
- #: wppa-settings-autosave.php:616
6779
  #, fuzzy
6780
- msgid "Do you want the comment system active?"
6781
- msgstr "Möchten Sie das Kommentarsystem aktiv?"
6782
 
6783
- #: wppa-settings-autosave.php:617
6784
  #, fuzzy
6785
- msgid "Enable the comment system and show the comments in the slideshow."
6786
- msgstr ""
6787
- "Aktivieren Sie die Kommentar-System und zeigen Sie die Kommentare in der "
6788
- "Diashow."
 
 
 
6789
 
6790
- #: wppa-settings-autosave.php:618
6791
  #, fuzzy
6792
- msgid "You can configure the details of the comment system later"
6793
- msgstr "Sie können die Details der Kommentar-System später konfigurieren."
6794
 
6795
- #: wppa-settings-autosave.php:625
6796
  #, fuzzy
6797
- msgid "Do you want the social media share buttons displayed?"
6798
- msgstr "Möchten Sie, dass die social Media Buttons angezeigt teilen?"
6799
 
6800
- #: wppa-settings-autosave.php:626
6801
  #, fuzzy
6802
- msgid "Display the social media buttons in the slideshow"
6803
- msgstr "Die social Media Buttons in der Diashow anzeigen"
6804
 
6805
- #: wppa-settings-autosave.php:627
6806
  #, fuzzy
6807
- msgid ""
6808
- "These buttons share the specific photo rather than the page where it is "
6809
- "displayed on"
6810
- msgstr ""
6811
- "Diese Schaltflächen zu teilen, das besondere Foto, anstatt die Seite, wo es "
6812
- "auf angezeigt wird"
6813
 
6814
- #: wppa-settings-autosave.php:634
6815
  #, fuzzy
6816
- msgid "Are you going to use IPTC data?"
6817
- msgstr "Willst du die IPTC-Daten verwenden?"
6818
 
6819
- #: wppa-settings-autosave.php:635
6820
  #, fuzzy
6821
- msgid ""
6822
- "IPTC data is information you may have added in a photo manipulation program."
6823
- msgstr ""
6824
- "IPTC-Daten sind Informationen, die Sie möglicherweise in einem Foto-"
6825
- "Manipulation-Programm hinzugefügt."
6826
 
6827
- #: wppa-settings-autosave.php:636 wppa-settings-autosave.php:645
6828
  #, fuzzy
6829
- msgid ""
6830
- "The information can be displayed in slideshows and in photo descriptions."
6831
- msgstr ""
6832
- "Die Informationen kann in Diashows und Fotobeschreibungen angezeigt werden."
6833
 
6834
- #: wppa-settings-autosave.php:643
6835
  #, fuzzy
6836
- msgid "Are you going to use EXIF data?"
6837
- msgstr "Willst du die EXIF-Daten verwenden?"
6838
 
6839
- #: wppa-settings-autosave.php:644
 
6840
  #, fuzzy
6841
- msgid ""
6842
- "EXIF data is information from the camera like model no, focal distance and "
6843
- "aperture used."
6844
- msgstr ""
6845
- "EXIF-Daten sind Informationen aus der Kamera wie Modell Nein, Brennweite und "
6846
- "Blende verwendet."
6847
 
6848
- #: wppa-settings-autosave.php:652
6849
  #, fuzzy
6850
- msgid "Are you going to use GPX data?"
6851
- msgstr "Willst du GPX-Daten verwenden?"
6852
 
6853
- #: wppa-settings-autosave.php:653
6854
  #, fuzzy
6855
- msgid ""
6856
- "Some cameras and mobile devices save the geographic location where the photo "
6857
- "is taken."
6858
- msgstr ""
6859
- "Einige Kameras und mobile Geräte speichern die geografische Position, wo das "
6860
- "Foto aufgenommen wurde."
6861
 
6862
- #: wppa-settings-autosave.php:654
6863
  #, fuzzy
6864
- msgid "A Google map can be displayed in slideshows."
6865
- msgstr "Eine Google-Karte kann in Diashows angezeigt werden."
6866
 
6867
- #: wppa-settings-autosave.php:661
6868
  #, fuzzy
6869
- msgid "Are you going to use Fotomoto?"
6870
- msgstr "Willst du Fotomoto verwenden?"
6871
 
6872
- #: wppa-settings-autosave.php:662
6873
  #, fuzzy
6874
- msgid ""
6875
- "<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> is an "
6876
- "on-line print service."
6877
- msgstr ""
6878
- "<a href=\"http://www.fotomoto.com/\" target=\"_blank\">Fotomoto</a> ist ein "
6879
- "Online-Druckdienst."
6880
 
6881
- #: wppa-settings-autosave.php:663
6882
  #, fuzzy
6883
- msgid "If you answer Yes, you will have to open an account on Fotomoto."
6884
- msgstr "Wenn Sie Ja Antworten, musst du ein Konto auf Fotomoto eröffnen."
6885
 
6886
- #: wppa-settings-autosave.php:670
6887
  #, fuzzy
6888
- msgid "Are you going to add videofiles?"
6889
- msgstr "Wollen Sie Videodateien hinzufügen?"
6890
 
6891
- #: wppa-settings-autosave.php:671
6892
  #, fuzzy
6893
- msgid "You can mix videos and photos in any album."
6894
- msgstr "Sie können Videos und Fotos in ein Album mischen."
6895
 
6896
- #: wppa-settings-autosave.php:672 wppa-settings-autosave.php:681
6897
- #: wppa-settings-autosave.php:690
6898
  #, fuzzy
6899
- msgid "You can configure the details later"
6900
- msgstr "Sie können die Details später konfigurieren."
 
 
6901
 
6902
- #: wppa-settings-autosave.php:679
6903
  #, fuzzy
6904
- msgid "Are you going to add audiofiles?"
6905
- msgstr "Wollen Sie Audiofiles hinzufügen?"
6906
 
6907
- #: wppa-settings-autosave.php:680
6908
  #, fuzzy
6909
- msgid "You can add audio to photos in any album."
6910
- msgstr "Sie können Fotos in einem Album Audio hinzufügen."
6911
 
6912
- #: wppa-settings-autosave.php:688
6913
  #, fuzzy
6914
- msgid "Are you going to upload 3D stereo photos?"
6915
- msgstr "Willst du 3D Stereo-Fotos hochladen?"
6916
 
6917
- #: wppa-settings-autosave.php:689
6918
  #, fuzzy
6919
- msgid "You can add l-r and r-l stereo photo pairs."
6920
- msgstr "Sie können l-R-R-l Stereo-Foto-Paare hinzufügen."
 
 
6921
 
6922
- #: wppa-settings-autosave.php:697
6923
  #, fuzzy
6924
- msgid "Done?"
6925
- msgstr "Erledigt?"
 
 
6926
 
6927
- #: wppa-settings-autosave.php:698
6928
  #, fuzzy
6929
- msgid "If you are ready answering these questions, select <b>yes</b>"
6930
- msgstr "Bist du bereit, diese Fragen zu beantworten, wählen Sie <b>Ja</b>"
6931
 
6932
- #: wppa-settings-autosave.php:699
6933
  #, fuzzy
6934
- msgid ""
6935
- "You can change any setting later, and be more specific and add a lot of "
6936
- "settings. For now it is enough, go create albums and upload photos!"
6937
- msgstr ""
6938
- "Sie können jede Einstellung später ändern und genauer zu sein und eine Menge "
6939
- "Einstellungen hinzufügen. Für jetzt ist es genug, gehen Sie Alben erstellen "
6940
- "und Fotos hochladen!"
6941
 
6942
- #: wppa-settings-autosave.php:703
6943
  #, fuzzy
6944
- msgid ""
6945
- "Thank you!. The most important settings are done now. You can refine your "
6946
- "settings, the behaviour and appearance of WPPA+ in the Tables below."
6947
- msgstr ""
6948
- "Danke!. Die wichtigsten Einstellungen sind jetzt fertig. Sie können Ihre "
6949
- "Einstellungen, das Verhalten und Aussehen der WPPA + in den nachstehenden "
6950
- "Tabellen verfeinern."
6951
 
6952
- #: wppa-settings-autosave.php:728
6953
  #, fuzzy
6954
- msgid "Table I:"
6955
- msgstr "Tabelle I:"
6956
 
6957
- #: wppa-settings-autosave.php:728
6958
  #, fuzzy
6959
- msgid "Sizes:"
6960
- msgstr "Maße:"
6961
 
6962
- #: wppa-settings-autosave.php:729
6963
  #, fuzzy
6964
- msgid ""
6965
- "This table describes all the sizes and size options (except fontsizes) for "
6966
- "the generation and display of the WPPA+ elements."
6967
- msgstr ""
6968
- "Diese Tabelle beschreibt die Größen und Größenoptionen (mit Ausnahme von "
6969
- "Schriftgrößen) für die Generierung und Anzeige der WPPA + Elemente."
6970
 
6971
- #: wppa-settings-autosave.php:747
 
 
6972
  #, fuzzy
6973
- msgid "WPPA+ global system related size settings"
6974
- msgstr "WPPA + global System bezogenen Größeneinstellungen"
6975
 
6976
- #: wppa-settings-autosave.php:749
 
 
6977
  #, fuzzy
6978
- msgid "Column Width"
6979
- msgstr "Breite der Spalte"
6980
 
6981
- #: wppa-settings-autosave.php:750
 
 
6982
  #, fuzzy
6983
- msgid "The width of the main column in your theme's display area."
6984
- msgstr "Die Breite der Hauptspalte im Anzeigebereich des Themas."
6985
 
6986
- #: wppa-settings-autosave.php:751
 
 
6987
  #, fuzzy
6988
- msgid "Enter the width of the main column in your theme's display area."
6989
- msgstr "Geben Sie die Breite der Hauptspalte im Anzeigebereich des Themas."
6990
 
6991
- #: wppa-settings-autosave.php:752
6992
  #, fuzzy
6993
  msgid ""
6994
- "You should set this value correctly to make sure the fullsize images are "
6995
- "properly aligned horizontally."
6996
  msgstr ""
6997
- "Sie sollten diesen Wert richtig eingestellt, um sicherzustellen, dass die "
6998
- "Fullsize-Bilder richtig horizontal ausgerichtet sind."
6999
 
7000
- #: wppa-settings-autosave.php:753
7001
  #, fuzzy
7002
- msgid ""
7003
- "You may enter 'auto' for use in themes that have a floating content column."
7004
- msgstr ""
7005
- "Geben Sie 'auto' für den Einsatz in Themen, die eine schwimmende Inhalte "
7006
- "Spalte haben."
7007
 
7008
- #: wppa-settings-autosave.php:754
7009
  #, fuzzy
7010
- msgid "The use of 'auto' is required for responsive themes."
7011
- msgstr "Die Verwendung von 'Auto' ist für reagieren Themen erforderlich."
7012
 
7013
- #: wppa-settings-autosave.php:757 wppa-settings-autosave.php:766
7014
- #: wppa-settings-autosave.php:888 wppa-settings-autosave.php:1050
7015
- #: wppa-settings-autosave.php:1061
7016
  #, fuzzy
7017
- msgid "pixels wide"
7018
- msgstr "0像素宽"
7019
 
7020
- #: wppa-settings-autosave.php:762
7021
  #, fuzzy
7022
- msgid "Initial Width"
7023
- msgstr "Ursprüngliche Breite"
7024
 
7025
- #: wppa-settings-autosave.php:763
7026
  #, fuzzy
7027
- msgid "The most often displayed colun width in responsive theme"
7028
- msgstr "Die meisten oft Colun Breite in ansprechende Thema angezeigt."
7029
 
7030
- #: wppa-settings-autosave.php:764
7031
  #, fuzzy
7032
- msgid ""
7033
- "Change this value only if your responsive theme shows initially a wrong "
7034
- "column width."
7035
- msgstr ""
7036
- "Ändern Sie diesen Wert nur, wenn Ihre ansprechende Thema zunächst eine "
7037
- "falsche Spaltenbreite zeigt."
7038
 
7039
- #: wppa-settings-autosave.php:771
7040
  #, fuzzy
7041
- msgid "Resize on Upload"
7042
- msgstr "Beim Hochladen verkleinern"
 
 
 
 
 
 
 
 
 
 
7043
 
7044
- #: wppa-settings-autosave.php:772
7045
  #, fuzzy
7046
- msgid "Indicate if the photos should be resized during upload."
7047
- msgstr "Geben Sie an, ob die Fotos beim Hochladen verkleinert werden sollte."
7048
 
7049
- #: wppa-settings-autosave.php:773
7050
  #, fuzzy
7051
- msgid ""
7052
- "If you check this item, the size of the photos will be reduced to the "
7053
- "dimension specified in the next item during the upload/import process."
7054
- msgstr ""
7055
- "Wenn Sie diesen Artikel überprüfen, verringert sich die Größe der Fotos auf "
7056
- "die Dimension, die in der Tagesordnung beim Upload/Import angegeben."
7057
 
7058
- #: wppa-settings-autosave.php:774
7059
  #, fuzzy
7060
- msgid "The photos will never be stretched during upload if they are smaller."
7061
- msgstr ""
7062
- "Die Fotos werden nie während des Uploads gestreckt werden, wenn sie kleiner "
7063
- "sind."
7064
 
7065
- #: wppa-settings-autosave.php:782
7066
  #, fuzzy
7067
- msgid "Resize to"
7068
- msgstr "Passend skalieren"
7069
 
7070
- #: wppa-settings-autosave.php:783
7071
  #, fuzzy
7072
- msgid "Resize photos to fit within a given area."
7073
- msgstr "Verkleinern Sie Fotos in einem bestimmten Gebiet passen."
7074
 
7075
- #: wppa-settings-autosave.php:784
7076
  #, fuzzy
7077
- msgid "Specify the screensize for the unscaled photos."
7078
- msgstr "Geben Sie die Screensize für die unskalierten Fotos."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7079
 
7080
- #: wppa-settings-autosave.php:785
7081
  #, fuzzy
7082
- msgid ""
7083
- "The use of a non-default value is particularly usefull when you make use of "
7084
- "lightbox functionality."
7085
- msgstr ""
7086
- "Die Verwendung von nicht-Standardwert ist besonders nützlich, wenn Sie "
7087
- "machen Lightbox-Funktionen nutzen."
7088
 
7089
- #: wppa-settings-autosave.php:787 wppa-settings-autosave.php:809
7090
- #: wppa-settings-autosave.php:820 wppa-settings-autosave.php:829
7091
- #: wppa-settings-autosave.php:874 wppa-settings-autosave.php:920
7092
- #: wppa-settings-autosave.php:943 wppa-settings-autosave.php:950
7093
- #: wppa-settings-autosave.php:969 wppa-settings-autosave.php:990
7094
- #: wppa-settings-autosave.php:1000 wppa-settings-autosave.php:1094
7095
- #: wppa-settings-autosave.php:1128 wppa-settings-autosave.php:1148
7096
- #: wppa-settings-autosave.php:1157 wppa-settings-autosave.php:1168
7097
- #: wppa-settings-autosave.php:1180 wppa-settings-autosave.php:1190
7098
- #: wppa-settings-autosave.php:1200 wppa-settings-autosave.php:1253
7099
- #: wppa-settings-autosave.php:1262 wppa-settings-autosave.php:1273
7100
- #: wppa-settings-autosave.php:1293 wppa-settings-autosave.php:1313
7101
- #: wppa-settings-autosave.php:1333 wppa-settings-autosave.php:1353
7102
- #: wppa-settings-autosave.php:1373 wppa-settings-autosave.php:1393
7103
- #: wppa-settings-autosave.php:1402 wppa-settings-autosave.php:1411
7104
- #: wppa-settings-autosave.php:1444 wppa-settings-autosave.php:1453
7105
- #: wppa-settings-autosave.php:1465 wppa-settings-autosave.php:1474
7106
- #: wppa-settings-autosave.php:2911 wppa-settings-autosave.php:4799
7107
- #: wppa-settings-autosave.php:4816 wppa-settings-autosave.php:4833
7108
- #: wppa-settings-autosave.php:4850 wppa-settings-autosave.php:4867
7109
- #: wppa-settings-autosave.php:4884 wppa-settings-autosave.php:4901
7110
- #: wppa-settings-autosave.php:4918 wppa-settings-autosave.php:4935
7111
- #: wppa-settings-autosave.php:6201 wppa-settings-autosave.php:8869
7112
- #: wppa-settings-autosave.php:9065 wppa-settings-autosave.php:9107
7113
- #: wppa-settings-autosave.php:9125
7114
  #, fuzzy
7115
- msgid "pixels"
7116
- msgstr "Pixel"
7117
 
7118
- #: wppa-settings-autosave.php:788
7119
  #, fuzzy
7120
- msgid "Fit within rectangle as set in Table I-B1,2"
7121
- msgstr "Fit im Rechteck wie in Tabelle ich-B1, 2"
7122
 
7123
- #: wppa-settings-autosave.php:795
7124
  #, fuzzy
7125
- msgid "Photocount threshold"
7126
- msgstr "Photocount Schwelle"
7127
 
7128
- #: wppa-settings-autosave.php:796
 
 
 
 
 
 
 
 
7129
  #, fuzzy
7130
- msgid "Number of photos in an album must exceed."
7131
- msgstr "Anzahl der Fotos in einem Album überschreiten darf."
7132
 
7133
- #: wppa-settings-autosave.php:797
7134
  #, fuzzy
7135
  msgid ""
7136
- "Photos do not show up in the album unless there are more than this number of "
7137
- "photos in the album. This allows you to have cover photos on an album that "
7138
- "contains only sub albums without seeing them in the list of sub albums. "
7139
- "Usually set to 0 (always show) or 1 (for one cover photo)."
7140
  msgstr ""
7141
- "Fotos erscheinen in das Album nicht, es sei denn es mehr als diese Anzahl "
7142
- "von Fotos in das Album gibt. Dies ermöglicht Ihnen, Cover-Fotos auf ein "
7143
- "Album zu erstellen, nur Sub Alben enthält, ohne sie zu sehen in der Liste "
7144
- "der Sub-Alben. In der Regel auf 0 gesetzt (immer einblenden) oder 1 (für ein "
7145
- "Titelbild)."
7146
 
7147
- #: wppa-settings-autosave.php:799 wppa-settings-autosave.php:838
7148
- #: wppa-settings-autosave.php:1282 wppa-settings-autosave.php:1322
7149
- #: wppa-settings-autosave.php:1342 wppa-settings-autosave.php:1382
7150
- #: wppa-settings-autosave.php:4195 wppa-settings-autosave.php:6126
7151
- #: wppa-settings-autosave.php:7959
7152
  #, fuzzy
7153
- msgid "photos"
7154
- msgstr "Fotos"
7155
 
7156
- #: wppa-settings-autosave.php:804
7157
  #, fuzzy
7158
- msgid "Border thickness"
7159
- msgstr "Rahmendicke:"
7160
 
7161
- #: wppa-settings-autosave.php:805
7162
- #, fuzzy
7163
- msgid "Thickness of wppa+ box borders."
7164
- msgstr "Die Dicke des Wppa + Box Grenzen."
7165
 
7166
- #: wppa-settings-autosave.php:806
7167
  #, fuzzy
7168
  msgid ""
7169
- "Enter the thickness for the border of the WPPA+ boxes. A number of 0 means: "
7170
- "no border."
7171
  msgstr ""
7172
- "Geben Sie die Dicke für die Grenze der WPPA + Boxen. Eine Reihe von 0 "
7173
- "bedeutet: keine Grenze."
7174
 
7175
- #: wppa-settings-autosave.php:807 wppa-settings-autosave.php:817
7176
  #, fuzzy
7177
- msgid "WPPA+ boxes are: the navigation bars and the filmstrip."
7178
- msgstr "WPPA + Boxen sind: die Navigationsleisten und im Filmstreifen."
7179
 
7180
- #: wppa-settings-autosave.php:815
7181
  #, fuzzy
7182
- msgid "Radius of wppa+ box borders."
7183
- msgstr "Radius des Wppa + Box Grenzen."
7184
 
7185
- #: wppa-settings-autosave.php:816
7186
  #, fuzzy
7187
- msgid ""
7188
- "Enter the corner radius for the border of the WPPA+ boxes. A number of 0 "
7189
- "means: no rounded corners."
7190
- msgstr ""
7191
- "Geben Sie den Eckenradius für die Grenze der WPPA + Boxen. Eine Reihe von 0 "
7192
- "bedeutet: keine abgerundeten Ecken."
7193
 
7194
- #: wppa-settings-autosave.php:818
7195
  #, fuzzy
7196
- msgid "Note that rounded corners are only supported by modern browsers."
7197
- msgstr ""
7198
- "Beachten Sie, dass die abgerundete Ecken nur von modernen Browsern "
7199
- "unterstützt werden."
7200
 
7201
- #: wppa-settings-autosave.php:826
7202
  #, fuzzy
7203
- msgid "Distance between wppa+ boxes."
7204
- msgstr "Abstand zwischen Wppa + Boxen."
7205
 
7206
- #: wppa-settings-autosave.php:834
7207
  #, fuzzy
7208
- msgid "Related count"
7209
- msgstr "Verwandte Graf"
7210
 
7211
- #: wppa-settings-autosave.php:835
7212
  #, fuzzy
7213
- msgid "The default maximum number of related photos to find."
7214
- msgstr "Die maximale Standardanzahl von verwandten Fotos zu finden."
7215
 
7216
- #: wppa-settings-autosave.php:836
7217
  #, fuzzy
7218
- msgid ""
7219
- "When using shortcodes like [wppa type=\"album\" album=\"#related,desc,23\"][/"
7220
- "wppa], the maximum number is 23. Omitting the number gives the maximum of "
7221
- "this setting."
7222
- msgstr ""
7223
- "Bei der Verwendung von Kurzwahlnummern wie [Wppa Typ = \"Album\" Album = "
7224
- "\"#related, Desc, 23\"] [/wppa], die maximale Anzahl beträgt 23. Weglassen "
7225
- "der Zahl gibt das Maximum dieser Einstellung."
7226
 
7227
- #: wppa-settings-autosave.php:844
7228
  #, fuzzy
7229
- msgid "The maximum number of pagelinks to be displayed."
7230
- msgstr "Die maximale Anzahl von Pagelinks angezeigt werden."
7231
 
7232
- #: wppa-settings-autosave.php:847
7233
  #, fuzzy
7234
- msgid "pages"
7235
- msgstr "Seiten:"
 
 
 
 
 
 
 
 
 
7236
 
7237
- #: wppa-settings-autosave.php:852
7238
  #, fuzzy
7239
- msgid "Max file name length"
7240
- msgstr "Max Datei Namenslänge"
7241
 
7242
- #: wppa-settings-autosave.php:853
7243
  #, fuzzy
7244
- msgid "The max length of a photo file name excluding the extension."
7245
- msgstr "Die maximale Länge eines Bild-Dateinamens ausgenommen die Erweiterung."
 
 
7246
 
7247
- #: wppa-settings-autosave.php:854 wppa-settings-autosave.php:863
 
 
 
 
 
 
7248
  #, fuzzy
7249
- msgid "A setting of 0 means: unlimited."
7250
- msgstr "Die Einstellung 0 bedeutet: unbegrenzt."
7251
 
7252
- #: wppa-settings-autosave.php:856 wppa-settings-autosave.php:865
 
 
 
 
 
 
 
 
 
 
 
 
7253
  #, fuzzy
7254
- msgid "chars"
7255
- msgstr "Zeichen"
7256
 
7257
- #: wppa-settings-autosave.php:861
7258
  #, fuzzy
7259
- msgid "Max photo name length"
7260
- msgstr "Max Foto Namenslänge"
7261
 
7262
- #: wppa-settings-autosave.php:862
7263
  #, fuzzy
7264
- msgid "The max length of a photo name."
7265
- msgstr "Die maximale Länge eines Foto-namens."
7266
 
7267
- #: wppa-settings-autosave.php:871
7268
  #, fuzzy
7269
- msgid "The height of your sticky header."
7270
- msgstr "Die Höhe Ihrer klebrigen Header."
 
 
 
 
7271
 
7272
- #: wppa-settings-autosave.php:872
7273
  #, fuzzy
7274
- msgid "If your theme has a sticky header, enter its height here."
7275
- msgstr ""
7276
- "Wenn Ihr Thema einen klebrigen-Header verfügt, geben Sie hier ihren "
7277
- "Höhepunkt."
7278
 
7279
- #: wppa-settings-autosave.php:880
7280
  #, fuzzy
7281
- msgid "Slideshow related size settings"
7282
- msgstr "Diashow im Zusammenhang Größeneinstellungen"
7283
 
7284
- #: wppa-settings-autosave.php:882
 
 
7285
  #, fuzzy
7286
- msgid "Maximum Width"
7287
- msgstr "Maximalbreite"
7288
 
7289
- #: wppa-settings-autosave.php:883
 
7290
  #, fuzzy
7291
- msgid "The maximum width photos will be displayed in slideshows."
7292
- msgstr "Die maximale Breite Fotos werden in Diashows angezeigt."
7293
 
7294
- #: wppa-settings-autosave.php:884 wppa-settings-autosave.php:895
7295
  #, fuzzy
7296
- msgid ""
7297
- "Enter the largest size in pixels as how you want your photos to be displayed."
7298
  msgstr ""
7299
- "Geben Sie die maximale Bildgröße in Pixeln, wie Sie Ihre Fotos angezeigt "
7300
- "werden sollen."
7301
 
7302
- #: wppa-settings-autosave.php:885
 
 
 
7303
  #, fuzzy
7304
- msgid ""
7305
- "This is usually the same as the Column Width (Table I-A1), but it may differ."
7306
- msgstr ""
7307
- "Dies ist in der Regel die gleichen wie die Spaltenbreite (Tabelle i-A1), "
7308
- "aber es kann abweichen."
7309
 
7310
- #: wppa-settings-autosave.php:893
7311
  #, fuzzy
7312
- msgid "Maximum Height"
7313
- msgstr "Maximale Höhe 40px"
7314
 
7315
- #: wppa-settings-autosave.php:894
7316
  #, fuzzy
7317
- msgid "The maximum height photos will be displayed in slideshows."
7318
- msgstr "Die maximale Höhe Fotos werden in Diashows angezeigt."
7319
 
7320
- #: wppa-settings-autosave.php:896
7321
  #, fuzzy
7322
- msgid ""
7323
- "This setting defines the height of the space reserved for photos in "
7324
- "slideshows."
7325
- msgstr ""
7326
- "Diese Einstellung definiert die Höhe des Raumes vorbehalten Fotos in "
7327
- "Diashows."
7328
 
7329
- #: wppa-settings-autosave.php:897
7330
- #, fuzzy, php-format
7331
- msgid ""
7332
- "If you change the width of a display by the %%size= command, this value "
7333
- "changes proportionally to match the aspect ratio as defined by this and the "
7334
- "previous setting."
7335
  msgstr ""
7336
- "Wenn Sie die Breite einer Anzeige durch Ändern der %% Größe = Befehl, diese "
7337
- "Wertänderungen anteilig entsprechend das Seitenverhältnis wie diese und die "
7338
- "vorherige Einstellung definiert."
7339
 
7340
- #: wppa-settings-autosave.php:899 wppa-settings-autosave.php:1072
7341
- #: wppa-settings-autosave.php:1083
7342
  #, fuzzy
7343
- msgid "pixels high"
7344
- msgstr "Pixel hoch"
7345
 
7346
- #: wppa-settings-autosave.php:904
7347
  #, fuzzy
7348
- msgid "Stretch to fit"
7349
- msgstr "Strecken, um fit"
 
 
7350
 
7351
- #: wppa-settings-autosave.php:905
7352
  #, fuzzy
7353
- msgid "Stretch photos that are too small."
7354
- msgstr "Dehnen Sie Fotos, die zu klein sind."
7355
 
7356
- #: wppa-settings-autosave.php:906
7357
  #, fuzzy
7358
- msgid ""
7359
- "Images will be stretched to the Maximum Size at display time if they are "
7360
- "smaller. Leaving unchecked is recommended. It is better to upload photos "
7361
- "that fit well the sizes you use!"
7362
- msgstr ""
7363
- "Bilder werden auf die Maximalgröße zum Zeitpunkt der Anzeige gestreckt "
7364
- "werden, wenn sie kleiner sind. Es empfiehlt sich unkontrolliert verlassen. "
7365
- "Es ist besser, Fotos hochladen, die gut passen die Größen, die Sie verwenden!"
7366
 
7367
- #: wppa-settings-autosave.php:913
7368
  #, fuzzy
7369
- msgid "Slideshow borderwidth"
7370
- msgstr "Diashow borderwidth"
7371
 
7372
- #: wppa-settings-autosave.php:914
 
 
7373
  #, fuzzy
7374
- msgid "The width of the border around slideshow images."
7375
- msgstr "Die Breite des Rahmens um Diashow-Bilder."
7376
 
7377
- #: wppa-settings-autosave.php:915
 
7378
  #, fuzzy
7379
- msgid ""
7380
- "The border is made by the image background being larger than the image "
7381
- "itsself (padding)."
7382
- msgstr ""
7383
- "Die Grenze wird durch den Bildhintergrund ist größer als das Bild selbst "
7384
- "(Padding) gemacht."
7385
 
7386
- #: wppa-settings-autosave.php:916
7387
  #, fuzzy
7388
- msgid ""
7389
- "Additionally there may be a one pixel outline of a different color. See "
7390
- "Table III-A2."
7391
- msgstr ""
7392
- "Zusätzlich kann eine Gliederung ein Pixel in einer anderen Farbe sein. Siehe "
7393
- "Tabelle III-A2."
7394
 
7395
- #: wppa-settings-autosave.php:917
7396
  #, fuzzy
7397
- msgid "The number you enter here is exclusive the one pixel outline."
7398
- msgstr "Die Anzahl, die Sie hier eingeben ist exklusiv den Umriss ein Pixel."
7399
 
7400
- #: wppa-settings-autosave.php:918
7401
  #, fuzzy
7402
- msgid "If you leave this entry empty, there will be no outline either."
7403
- msgstr "Wenn Sie diesen Eintrag leer lassen, wird es auch kein Umriss geben."
7404
 
7405
- #: wppa-settings-autosave.php:925
7406
  #, fuzzy
7407
- msgid "Numbar Max"
7408
- msgstr "Numbar Max"
7409
 
7410
- #: wppa-settings-autosave.php:926
7411
  #, fuzzy
7412
- msgid "Maximum numbers to display."
7413
- msgstr "Maximale Anzahl angezeigt."
7414
 
7415
- #: wppa-settings-autosave.php:927
7416
  #, fuzzy
7417
- msgid ""
7418
- "In order to attemt to fit on one line, the numbers will be replaced by dots "
7419
- "- except the current - when there are more than this number of photos in a "
7420
- "slideshow."
7421
- msgstr ""
7422
- "In Ordnung, hält auf eine Zeile passen werden die Zahlen durch Punkte - mit "
7423
- "Ausnahme der Strom - ersetzt werden, wenn mehr als diese Anzahl von Fotos in "
7424
- "einer Diashow."
7425
 
7426
- #: wppa-settings-autosave.php:929
7427
  #, fuzzy
7428
- msgid "numbers"
7429
- msgstr "Nummern"
7430
 
7431
- #: wppa-settings-autosave.php:934
 
 
 
 
 
 
 
 
 
7432
  #, fuzzy
7433
- msgid "Share button size"
7434
- msgstr "\"Teilen\"-Button"
 
 
 
 
 
 
 
 
7435
 
7436
- #: wppa-settings-autosave.php:935
 
 
 
 
 
 
 
 
7437
  #, fuzzy
7438
- msgid "The size of the social media icons in the Share box"
7439
- msgstr "Die Größe des social Media-Symbole in der Mitteilungsbox"
7440
 
7441
- #: wppa-settings-autosave.php:945
7442
  #, fuzzy
7443
- msgid "Mini Treshold"
7444
- msgstr "Mini Treshold"
7445
 
7446
- #: wppa-settings-autosave.php:946
7447
  #, fuzzy
7448
- msgid "Show mini text at slideshow smaller then."
7449
- msgstr "Zeigen Sie Mini-Text bei Diashow kleiner dann."
7450
 
7451
- #: wppa-settings-autosave.php:947
7452
  #, fuzzy
7453
- msgid ""
7454
- "Display Next and Prev. as opposed to Next photo and Previous photo when the "
7455
- "cotainer is smaller than this size."
7456
- msgstr ""
7457
- "Wenn die Cotainer kleiner als diese Größe ist weiter \"und\" Prev im "
7458
- "Gegensatz zum nächsten Foto und vorherige Foto angezeigt."
7459
 
7460
- #: wppa-settings-autosave.php:948
7461
  #, fuzzy
7462
- msgid "Special use in responsive themes."
7463
- msgstr "Besondere Verwendung in reagieren Themen."
7464
 
7465
- #: wppa-settings-autosave.php:956
7466
  #, fuzzy
7467
- msgid "The maximum number of slides in a certain view. 0 means no pagination"
7468
- msgstr ""
7469
- "Die maximale Anzahl der Folien in einer bestimmten Ansicht. 0 bedeutet keine "
7470
- "Paginierung"
7471
 
7472
- #: wppa-settings-autosave.php:959 wppa-settings-autosave.php:978
7473
  #, fuzzy
7474
- msgid "slides"
7475
- msgstr "Gleitschienen"
7476
 
7477
- #: wppa-settings-autosave.php:964
 
 
 
 
7478
  #, fuzzy
7479
- msgid "Filmstrip Thumbnail Size"
7480
- msgstr "Filmstreifen-Miniaturansicht"
7481
 
7482
- #: wppa-settings-autosave.php:965
7483
  #, fuzzy
7484
- msgid "The size of the filmstrip images."
7485
- msgstr "Die Größe der Filmstreifen Bilder."
7486
 
7487
- #: wppa-settings-autosave.php:966 wppa-settings-autosave.php:987
7488
- #: wppa-settings-autosave.php:997 wppa-settings-autosave.php:1187
7489
- #: wppa-settings-autosave.php:1197
7490
  #, fuzzy
7491
- msgid "This size applies to the width or height, whichever is the largest."
7492
- msgstr "Diese Größe bezieht sich auf die Breite oder Höhe, welches das größte."
7493
 
7494
- #: wppa-settings-autosave.php:967 wppa-settings-autosave.php:988
7495
- #: wppa-settings-autosave.php:998
7496
  #, fuzzy
7497
- msgid ""
7498
- "Changing the thumbnail size may result in all thumbnails being regenerated. "
7499
- "this may take a while."
7500
- msgstr ""
7501
- "Ändern der Größe die Miniaturansichten führen alle Thumbnails werden "
7502
- "regeneriert. Dies kann eine Weile dauern."
7503
 
7504
- #: wppa-settings-autosave.php:975
7505
  #, fuzzy
7506
- msgid "The max number of slides in a slideonly display"
7507
- msgstr "Die maximale Anzahl von Folien in einer Slideonly-Anzeige"
7508
 
7509
- #: wppa-settings-autosave.php:983
7510
  #, fuzzy
7511
- msgid "Thumbnail photos related size settings"
7512
- msgstr "Thumbnail-Bilder im Zusammenhang mit Größeneinstellungen"
7513
 
7514
- #: wppa-settings-autosave.php:985
7515
  #, fuzzy
7516
- msgid "Thumbnail Size"
7517
- msgstr "Vorschaubild Grösse"
7518
 
7519
- #: wppa-settings-autosave.php:986
7520
  #, fuzzy
7521
- msgid "The size of the thumbnail images."
7522
- msgstr "Die Größe der Miniaturbilder."
7523
 
7524
- #: wppa-settings-autosave.php:995
7525
  #, fuzzy
7526
- msgid "Thumbnail Size Alt"
7527
- msgstr "Miniaturbildgröße"
7528
 
7529
- #: wppa-settings-autosave.php:996
7530
  #, fuzzy
7531
- msgid "The alternative size of the thumbnail images."
7532
- msgstr "Die alternative Größe der Miniaturen."
7533
 
7534
- #: wppa-settings-autosave.php:1005
7535
  #, fuzzy
7536
- msgid "Thumbnail Aspect"
7537
- msgstr "Miniaturansicht Aspekt"
7538
 
7539
- #: wppa-settings-autosave.php:1006
7540
  #, fuzzy
7541
- msgid "Aspect ration of thumbnail image"
7542
- msgstr "Seitenverhältnis der Miniaturansicht"
7543
 
7544
- #: wppa-settings-autosave.php:1010
7545
  #, fuzzy
7546
- msgid "--- same as fullsize ---"
7547
- msgstr "---gleich als Fullsize---"
7548
 
7549
- #: wppa-settings-autosave.php:1011
7550
  #, fuzzy
7551
- msgid "--- square clipped ---"
7552
- msgstr "---Platz abgeschnitten---"
7553
 
7554
- #: wppa-settings-autosave.php:1012
7555
  #, fuzzy
7556
- msgid "4:5 landscape clipped"
7557
- msgstr "4:5 Landschaft abgeschnitten"
7558
 
7559
- #: wppa-settings-autosave.php:1013
7560
  #, fuzzy
7561
- msgid "3:4 landscape clipped"
7562
- msgstr "3:4 Landschaft abgeschnitten"
7563
 
7564
- #: wppa-settings-autosave.php:1014
7565
  #, fuzzy
7566
- msgid "2:3 landscape clipped"
7567
- msgstr "2:3 Landschaft abgeschnitten"
7568
 
7569
- #: wppa-settings-autosave.php:1015
7570
  #, fuzzy
7571
- msgid "9:16 landscape clipped"
7572
- msgstr "09:16 Landschaft abgeschnitten"
 
 
 
 
 
 
 
 
 
 
7573
 
7574
- #: wppa-settings-autosave.php:1016
7575
  #, fuzzy
7576
- msgid "1:2 landscape clipped"
7577
- msgstr "1:2 Landschaft abgeschnitten"
 
 
 
 
 
7578
 
7579
- #: wppa-settings-autosave.php:1017
7580
  #, fuzzy
7581
- msgid "--- square padded ---"
7582
- msgstr "---Platz gepolstert---"
7583
 
7584
- #: wppa-settings-autosave.php:1018
7585
  #, fuzzy
7586
- msgid "4:5 landscape padded"
7587
- msgstr "4:5 Landschaft gepolstert"
7588
 
7589
- #: wppa-settings-autosave.php:1019
7590
  #, fuzzy
7591
- msgid "3:4 landscape padded"
7592
- msgstr "3:4 Landschaft gepolstert"
7593
 
7594
- #: wppa-settings-autosave.php:1020
7595
  #, fuzzy
7596
- msgid "2:3 landscape padded"
7597
- msgstr "2:3 Landschaft gepolstert"
7598
 
7599
- #: wppa-settings-autosave.php:1021
7600
  #, fuzzy
7601
- msgid "9:16 landscape padded"
7602
- msgstr "09:16 Landschaft gepolstert"
7603
 
7604
- #: wppa-settings-autosave.php:1022
7605
  #, fuzzy
7606
- msgid "1:2 landscape padded"
7607
- msgstr "1:2 Landschaft gepolstert"
7608
 
7609
- #: wppa-settings-autosave.php:1044
 
 
 
 
 
7610
  #, fuzzy
7611
- msgid "Thumbframe width"
7612
- msgstr "Thumbframe breite"
7613
 
7614
- #: wppa-settings-autosave.php:1045
7615
  #, fuzzy
7616
- msgid "The width of the thumbnail frame."
7617
- msgstr "Die Breite des Rahmens Miniaturansicht."
7618
 
7619
- #: wppa-settings-autosave.php:1046 wppa-settings-autosave.php:1057
7620
  #, fuzzy
7621
- msgid "Set the width of the thumbnail frame."
7622
- msgstr "Legen Sie die Breite des Rahmens Miniaturansicht."
7623
 
7624
- #: wppa-settings-autosave.php:1047 wppa-settings-autosave.php:1058
7625
- #: wppa-settings-autosave.php:1069 wppa-settings-autosave.php:1080
7626
- #: wppa-settings-autosave.php:1091
7627
  #, fuzzy
7628
- msgid "Set width, height and spacing for the thumbnail frames."
7629
- msgstr "Breite, Höhe und Abstand für die Miniaturansicht Bilder eingestellt."
7630
 
7631
- #: wppa-settings-autosave.php:1048 wppa-settings-autosave.php:1059
7632
- #: wppa-settings-autosave.php:1070 wppa-settings-autosave.php:1081
7633
- #: wppa-settings-autosave.php:1092
 
 
 
 
7634
  #, fuzzy
7635
- msgid ""
7636
- "These sizes should be large enough for a thumbnail image and - optionally - "
7637
- "the text under it."
7638
- msgstr ""
7639
- "Diese Größen sollte groß genug für eine Miniaturansicht und -gegebenenfalls "
7640
- "- den Text darunter."
7641
 
7642
- #: wppa-settings-autosave.php:1055
 
 
 
 
 
 
7643
  #, fuzzy
7644
- msgid "Thumbframe width Alt"
7645
- msgstr "Thumbframe breite Alt"
7646
 
7647
- #: wppa-settings-autosave.php:1056
 
 
 
 
 
7648
  #, fuzzy
7649
- msgid "The width of the alternative thumbnail frame."
7650
- msgstr "Die Breite des alternativen thumbnail Rahmens."
7651
 
7652
- #: wppa-settings-autosave.php:1066
 
 
 
 
 
 
7653
  #, fuzzy
7654
- msgid "Thumbframe height"
7655
- msgstr "Thumbframe Höhe"
7656
 
7657
- #: wppa-settings-autosave.php:1067
7658
  #, fuzzy
7659
- msgid "The height of the thumbnail frame."
7660
- msgstr "Die Höhe des thumbnail Rahmens."
7661
 
7662
- #: wppa-settings-autosave.php:1068 wppa-settings-autosave.php:1079
 
 
7663
  #, fuzzy
7664
- msgid "Set the height of the thumbnail frame."
7665
- msgstr "Festlegen Sie die Höhe des thumbnail Rahmens."
7666
 
7667
- #: wppa-settings-autosave.php:1077
 
7668
  #, fuzzy
7669
- msgid "Thumbframe height Alt"
7670
- msgstr "Thumbframe Höhe Alt"
7671
 
7672
- #: wppa-settings-autosave.php:1078
 
7673
  #, fuzzy
7674
- msgid "The height of the alternative thumbnail frame."
7675
- msgstr "Die Höhe des alternativen thumbnail Rahmens."
7676
 
7677
- #: wppa-settings-autosave.php:1088
 
7678
  #, fuzzy
7679
- msgid "Thumbnail spacing"
7680
- msgstr "Miniaturansicht Abstand"
7681
 
7682
- #: wppa-settings-autosave.php:1089
 
 
 
 
7683
  #, fuzzy
7684
- msgid "The spacing between adjacent thumbnail frames."
7685
- msgstr "Der Abstand zwischen angrenzenden thumbnail Frames."
7686
 
7687
- #: wppa-settings-autosave.php:1090
 
 
7688
  #, fuzzy
7689
- msgid "Set the minimal spacing between the adjacent thumbnail frames"
7690
- msgstr ""
7691
- "Festlegen Sie den minimale Abstand zwischen den benachbarten thumbnail Rahmen"
7692
 
7693
- #: wppa-settings-autosave.php:1099
7694
  #, fuzzy
7695
- msgid "Auto spacing"
7696
- msgstr "Automatische Abstände"
7697
 
7698
- #: wppa-settings-autosave.php:1100
7699
  #, fuzzy
7700
- msgid "Space the thumbnail frames automatic."
7701
- msgstr "Raum die Miniaturansicht Bilder automatisch."
7702
 
7703
- #: wppa-settings-autosave.php:1101
7704
  #, fuzzy
7705
- msgid ""
7706
- "If you check this box, the thumbnail images will be evenly distributed over "
7707
- "the available width."
7708
- msgstr ""
7709
- "Wenn Sie dieses Kontrollkästchen aktivieren, werden die Miniaturbilder die "
7710
- "verfügbare Breite gleichmäßig verteilt."
7711
 
7712
- #: wppa-settings-autosave.php:1102
7713
  #, fuzzy
7714
  msgid ""
7715
- "In this case, the thumbnail spacing value (setting I-9) will be regarded as "
7716
- "a minimum value."
7717
  msgstr ""
7718
- "In diesem Fall wird die Miniaturansicht Abstandswert (Einstellung i-9) als "
7719
- "einen Mindestwert angesehen werden."
7720
 
7721
- #: wppa-settings-autosave.php:1109 wppa-settings-autosave.php:1216
7722
  #, fuzzy
7723
- msgid "Page size"
7724
- msgstr "Seitengröße"
7725
 
7726
- #: wppa-settings-autosave.php:1110
7727
  #, fuzzy
7728
- msgid "Max number of thumbnails per page."
7729
- msgstr "Max. Anzahl der Thumbnails pro Seite."
7730
 
7731
- #: wppa-settings-autosave.php:1111
7732
  #, fuzzy
7733
  msgid ""
7734
- "Enter the maximum number of thumbnail images per page. A value of 0 "
7735
- "indicates no pagination."
7736
  msgstr ""
7737
- "Geben Sie die maximale Anzahl der thumbnail-Bilder pro Seite. Der Wert 0 "
7738
- "bedeutet keine Paginierung."
7739
 
7740
- #: wppa-settings-autosave.php:1113 wppa-settings-autosave.php:5728
7741
- #: wppa-settings-autosave.php:5761 wppa-settings-autosave.php:5858
7742
- #: wppa-widget-admin.php:279
7743
  #, fuzzy
7744
- msgid "thumbnails"
7745
- msgstr "Miniaturbilden"
 
 
 
 
 
 
7746
 
7747
- #: wppa-settings-autosave.php:1119
7748
  #, fuzzy
7749
- msgid "The size of the thumbnail popup images."
7750
- msgstr "Die Größe der Miniaturansicht Popup Bilder."
7751
 
7752
- #: wppa-settings-autosave.php:1120
7753
  #, fuzzy
7754
  msgid ""
7755
- "Enter the size of the popup images. This size should be larger than the "
7756
- "thumbnail size."
7757
  msgstr ""
7758
- "Geben Sie die Größe der Popup-Bilder. Diese Größe sollte größer als die "
7759
- "Größe der Miniaturansichten."
7760
 
7761
- #: wppa-settings-autosave.php:1121
7762
  #, fuzzy
7763
- msgid "This size should also be at least the cover image size."
7764
- msgstr "Diese Größe sollte auch mindestens die Abdeckung Bildgröße."
7765
 
7766
- #: wppa-settings-autosave.php:1122
7767
  #, fuzzy
7768
  msgid ""
7769
- "Changing the popup size may result in all thumbnails being regenerated. this "
7770
- "may take a while."
7771
  msgstr ""
7772
- "Popup-Größe ändern führen alle Thumbnails werden regeneriert. Dies kann eine "
7773
- "Weile dauern."
7774
 
7775
- #: wppa-settings-autosave.php:1123
7776
  #, fuzzy
7777
  msgid ""
7778
- "Although this setting has only visual effect if \"Thumb popup\" (Table IV-"
7779
- "C8) is checked,"
7780
  msgstr ""
7781
- "Obwohl diese Einstellung nur optische Wirkung, hat wenn \"Daumen-Popup"
7782
- "\" (Tabelle IV-C8) aktiviert ist,"
7783
 
7784
- #: wppa-settings-autosave.php:1124
7785
  #, fuzzy
7786
- msgid ""
7787
- "the value must be right as it is the physical size of the thumbnail and "
7788
- "coverphoto images."
7789
- msgstr ""
7790
- "der Wert muss sein Recht, wie es die physische Größe der Miniaturansicht und "
7791
- "Titelfoto Bilder ist."
7792
 
7793
- #: wppa-settings-autosave.php:1131
7794
  #, fuzzy
7795
- msgid "Use thumbs if fit"
7796
- msgstr "Verwenden Sie Daumen, wenn passen"
7797
 
7798
- #: wppa-settings-autosave.php:1132
7799
  #, fuzzy
7800
- msgid "Use the thumbnail image files if they are large enough."
7801
- msgstr "Verwenden Sie die thumbnail-Bild-Dateien, wenn sie groß genug sind."
7802
 
7803
- #: wppa-settings-autosave.php:1133
7804
  #, fuzzy
7805
- msgid "This setting speeds up page loading for small photos."
7806
- msgstr "Diese Einstellung beschleunigt Seitenladen für kleine Fotos."
7807
 
7808
- #: wppa-settings-autosave.php:1134
7809
  #, fuzzy
7810
- msgid ""
7811
- "Do NOT use this when your thumbnails have a forced aspect ratio (when Table "
7812
- "I-C2 is set to anything different from --- same as fullsize ---)"
7813
- msgstr ""
7814
- "Verwenden Sie diese nicht bei wenn Ihre Miniaturen einen erzwungene "
7815
- "Seitenverhältnis (Tisch-C2 auf nichts anderes, als---wie Fullsize---"
7816
- "eingestellt ist)"
7817
 
7818
- #: wppa-settings-autosave.php:1141
7819
  #, fuzzy
7820
- msgid "Album cover related size settings"
7821
- msgstr "Album-Cover im Zusammenhang Größeneinstellungen"
7822
 
7823
- #: wppa-settings-autosave.php:1144
7824
  #, fuzzy
7825
- msgid "Maximum width for a album cover display."
7826
- msgstr "Maximale Breite für ein Album cover Anzeige."
7827
 
7828
- #: wppa-settings-autosave.php:1145
7829
  #, fuzzy
7830
- msgid ""
7831
- "Display covers in 2 or more columns if the display area is wider than the "
7832
- "given width."
7833
- msgstr ""
7834
- "Anzeige deckt in 2 oder mehr Spalten, wenn der Anzeigebereich breiter als "
7835
- "die angegebene Breite ist."
7836
 
7837
- #: wppa-settings-autosave.php:1146
7838
  #, fuzzy
7839
- msgid ""
7840
- "This also applies for 'thumbnails as covers', and will NOT apply to single "
7841
- "items."
7842
- msgstr ""
7843
- "Dies gilt für \"Thumbnails als Cover\", und gelten nicht für einzelne "
7844
- "Artikel."
7845
 
7846
- #: wppa-settings-autosave.php:1153
7847
- #, fuzzy
7848
- msgid "Min Cover height"
7849
- msgstr "Min Deckelhöhe"
7850
 
7851
- #: wppa-settings-autosave.php:1154
7852
- #, fuzzy
7853
- msgid "Minimal height of an album cover."
7854
- msgstr "Minimale Höhe der ein Album-Cover."
 
7855
 
7856
- #: wppa-settings-autosave.php:1155
7857
- #, fuzzy
7858
- msgid ""
7859
- "If you use this setting to make the albums the same height and you are not "
7860
- "satisfied about the lay-out, try increasing the value in the next setting"
7861
- msgstr ""
7862
- "Wenn Sie diese Einstellung verwenden, um den Alben die gleiche Höhe zu "
7863
- "machen und Sie nicht zufrieden über das Lay-out sind, erhöhen Sie den Wert "
7864
- "in der nächsten Einstellung"
 
7865
 
7866
- #: wppa-settings-autosave.php:1162
 
7867
  #, fuzzy
7868
- msgid "Min Text frame height"
7869
- msgstr "Min Text Rahmenhöhe"
7870
 
7871
- #: wppa-settings-autosave.php:1163
7872
- #, fuzzy
7873
- msgid "The minimal cover text frame height incl header."
7874
- msgstr "Die minimale Abdeckung Textrahmenhöhe inkl Header."
7875
 
7876
- #: wppa-settings-autosave.php:1164
7877
- #, fuzzy
 
 
 
 
 
7878
  msgid ""
7879
- "The height starting with the album title up to and including the view- and "
7880
- "the slideshow- links."
7881
  msgstr ""
7882
- "Die Höhe, beginnend mit dem Albumtitel bis zu und einschließlich der "
7883
- "Ansicht- und Diashow-Links."
7884
 
7885
- #: wppa-settings-autosave.php:1165
 
 
 
 
 
7886
  #, fuzzy
7887
- msgid ""
7888
- "This setting enables you to give the album covers the same height while the "
7889
- "title does not need to fit on one line."
7890
- msgstr ""
7891
- "Diese Einstellung können Sie die Album-Cover die gleiche Höhe geben, während "
7892
- "der Titel nicht in eine Zeile passen muss."
7893
 
7894
- #: wppa-settings-autosave.php:1166
7895
  #, fuzzy
7896
- msgid "This is the recommended setting to line-up your covers!"
7897
- msgstr "Dies ist die empfohlene Einstellung zum Line-up Ihrer deckt!"
7898
 
7899
- #: wppa-settings-autosave.php:1173
7900
  #, fuzzy
7901
- msgid "Min Description height"
7902
- msgstr "Min Beschreibung Höhe"
7903
 
7904
- #: wppa-settings-autosave.php:1174
7905
  #, fuzzy
7906
- msgid "The minimal height of the album description text frame."
7907
- msgstr "Die minimale Höhe des Textrahmens Album Beschreibung."
7908
 
7909
- #: wppa-settings-autosave.php:1175
7910
  #, fuzzy
7911
- msgid "The minimal height of the description field in an album cover display."
7912
- msgstr "Die minimale Höhe des Feldes in ein Album-Cover anzeigen lassen."
7913
 
7914
- #: wppa-settings-autosave.php:1176
7915
  #, fuzzy
7916
- msgid ""
7917
- "This setting enables you to give the album covers the same height provided "
7918
- "that the cover images are equally sized and the titles fit on one line."
7919
- msgstr ""
7920
- "Diese Einstellung ermöglicht es, die Sie für das Album eingeben die gleiche "
7921
- "Höhe erstreckt, vorausgesetzt, dass die Cover-Bilder gleich groß sind und "
7922
- "die Titel in eine Zeile passen."
7923
 
7924
- #: wppa-settings-autosave.php:1177
7925
  #, fuzzy
7926
- msgid ""
7927
- "To force the coverphotos have equal heights, tick the box in Table I-D7."
7928
- msgstr ""
7929
- "Erzwingen haben der Coverphotos gleiche Höhen, kreuzen Sie das Kästchen in "
7930
- "Tisch-D7."
7931
 
7932
- #: wppa-settings-autosave.php:1178
7933
  #, fuzzy
7934
- msgid ""
7935
- "You may need this setting if changing the previous setting is not sufficient "
7936
- "to line-up the covers."
7937
- msgstr ""
7938
- "Diese Einstellung eventuell ist ein Wechsel der vorherigen Einstellung nicht "
7939
- "ausreichen, um Line-up der Abdeckungen."
7940
 
7941
- #: wppa-settings-autosave.php:1185
7942
  #, fuzzy
7943
- msgid "Coverphoto size"
7944
- msgstr "Titelfoto Größe"
7945
 
7946
- #: wppa-settings-autosave.php:1186
7947
  #, fuzzy
7948
- msgid "The size of the coverphoto."
7949
- msgstr "Die Größe des dem Titelfoto."
7950
 
7951
- #: wppa-settings-autosave.php:1188 wppa-settings-autosave.php:1198
7952
  #, fuzzy
7953
  msgid ""
7954
- "Changing the coverphoto size may result in all thumbnails being regenerated. "
7955
- "this may take a while."
 
 
7956
  msgstr ""
7957
- "Titelfoto Größenveränderung führen alle Thumbnails werden regeneriert. Dies "
7958
- "kann eine Weile dauern."
 
 
 
7959
 
7960
- #: wppa-settings-autosave.php:1195
7961
  #, fuzzy
7962
- msgid "Coverphoto size multi"
7963
- msgstr "Titelfoto Größe multi"
7964
 
7965
- #: wppa-settings-autosave.php:1196
7966
  #, fuzzy
7967
- msgid "The size of coverphotos if more than one."
7968
- msgstr "Die Größe des Coverphotos, wenn mehr als eine."
7969
 
7970
- #: wppa-settings-autosave.php:1205
7971
  #, fuzzy
7972
- msgid "Size is height"
7973
- msgstr "Größe ist Höhe"
7974
 
7975
- #: wppa-settings-autosave.php:1206
7976
  #, fuzzy
7977
- msgid "The size of the coverphoto is the height of it."
7978
- msgstr "Die Größe der das Titelfoto ist die Höhe."
7979
 
7980
- #: wppa-settings-autosave.php:1207
7981
  #, fuzzy
7982
- msgid ""
7983
- "If set: the previous setting is the height, if unset: the largest of width "
7984
- "and height."
7985
- msgstr ""
7986
- "Wenn festgelegt: die vorherige Einstellung ist die Höhe, wenn nicht "
7987
- "festgelegt: die größte Breite und Höhe."
7988
 
7989
- #: wppa-settings-autosave.php:1208
7990
  #, fuzzy
7991
- msgid ""
7992
- "This setting applies for coverphoto position top or bottom only (Table IV-"
7993
- "D3)."
 
 
 
7994
  msgstr ""
7995
- "Diese Einstellung gilt für Titelfoto Position oben oder nur unten (Tabelle "
7996
- "IV-D3)."
7997
 
7998
- #: wppa-settings-autosave.php:1209
7999
  #, fuzzy
8000
- msgid "This makes it easyer to make the covers of equal height."
8001
- msgstr "Dies macht es easyer die Abdeckungen von gleicher Höhe zu machen."
8002
 
8003
- #: wppa-settings-autosave.php:1217
8004
  #, fuzzy
8005
- msgid "Max number of covers per page."
8006
- msgstr "Maximalanzahl der Bezüge pro Seite."
8007
 
8008
- #: wppa-settings-autosave.php:1218
8009
  #, fuzzy
8010
  msgid ""
8011
- "Enter the maximum number of album covers per page. A value of 0 indicates no "
8012
- "pagination."
8013
  msgstr ""
8014
- "Geben Sie die maximale Anzahl von Album-Covern pro Seite. Der Wert 0 "
8015
- "bedeutet keine Paginierung."
 
8016
 
8017
- #: wppa-settings-autosave.php:1220
8018
  #, fuzzy
8019
- msgid "covers"
8020
- msgstr "Covers"
8021
 
8022
- #: wppa-settings-autosave.php:1225
8023
  #, fuzzy
8024
- msgid "Rating and comment related size settings"
8025
- msgstr "Bewertung und Kommentar im Zusammenhang Größeneinstellungen"
8026
 
8027
- #: wppa-settings-autosave.php:1227
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-08-27 08:20+0200\n"
5
+ "PO-Revision-Date: 2016-08-27 10:13+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"
25
  msgstr "Seiten:"
26
 
27
  #: theme/photo-album-page-2010.php:31 theme/photo-album-search-page.php:53
28
+ #: wppa-album-admin-autosave.php:1152 wppa-album-admin-autosave.php:1190
29
+ #: wppa-album-admin-autosave.php:1289 wppa-album-admin-autosave.php:1461
30
+ #: wppa-album-admin-autosave.php:1556 wppa-album-admin-autosave.php:1630
31
+ #: wppa-album-admin-autosave.php:1741 wppa-album-admin-autosave.php:2261
32
  #: wppa-comment-admin.php:318 wppa-comment-admin.php:387
33
+ #: wppa-comment-admin.php:405 wppa-setup.php:1313 wppa-thumbnails.php:641
34
  msgid "Edit"
35
  msgstr "Bearbeiten"
36
 
39
  msgstr "Warnung. Keine Seite für die Suchergebnisse definiert!"
40
 
41
  #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:175
42
+ #: wppa-settings-autosave.php:381 wppa-settings-autosave.php:3367
43
  msgid "Search"
44
  msgstr "Suche"
45
 
62
 
63
  #: theme/search-2016.php:46
64
  msgid "Previous page"
65
+ msgstr "Vorherige Seite"
66
 
67
+ #: theme/search-2016.php:47 wppa-admin-functions.php:673
 
68
  msgid "Next page"
69
  msgstr "Nächste Seite"
70
 
71
+ #: theme/search-2016.php:48 wppa-settings-autosave.php:379
72
+ #: wppa-settings-autosave.php:1581 wppa-settings-autosave.php:8742
 
73
  msgid "Page"
74
+ msgstr "Seite"
75
 
76
  #: theme/wppa-theme.php:328 theme/wppa-theme.php:347
77
  msgid "No photos found matching your search criteria."
86
  msgstr "Keine Alben oder Photos gefunden die Ihren Suchkriterien entsprechen."
87
 
88
  #: wppa-admin-functions.php:27
 
89
  msgid "Settings successfully backed up"
90
  msgstr "Einstellungen erfolgreich gesichert"
91
 
92
  #: wppa-admin-functions.php:31
 
93
  msgid "Unable to backup settings"
94
+ msgstr "Es konnten keine backup der Einstellungen angefertigt weden"
95
 
96
  #: wppa-admin-functions.php:40
 
97
  msgid "Error writing to settings backup file"
98
  msgstr "Fehler beim Schreiben in Einstellungen-backup-Datei"
99
 
100
  #: wppa-admin-functions.php:101
 
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:2709
105
+ #: wppa-ajax.php:2716
 
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:2709
110
+ #: wppa-ajax.php:2716
 
111
  msgid "for"
112
  msgstr "für"
113
 
114
+ #: wppa-admin-functions.php:208 wppa-ajax.php:2716
 
115
  msgid "and less than or equal to"
116
+ msgstr "und kleiner oder gleich zu"
117
 
118
+ #: wppa-admin-functions.php:223 wppa-album-admin-autosave.php:324
 
119
  msgid "--- public ---"
120
+ msgstr "--- öffentlich ---"
121
 
122
  #: wppa-admin-functions.php:462
123
+ #, php-format
124
  msgid "File %s is of an unsupported filetype and has been removed."
125
  msgstr "Datei %s ist ein nicht unterstützter Dateityp und wurde entfernt."
126
 
127
+ #: wppa-admin-functions.php:581 wppa-admin-functions.php:620
128
+ #: wppa-admin-functions.php:624 wppa-admin-functions.php:628
 
129
  msgid "Unexpected error:"
130
+ msgstr "Unerwarteter Fehler:"
131
 
132
+ #: wppa-admin-functions.php:581
 
133
  msgid "Missing database table:"
134
  msgstr "Fehlende Datenbank-Tabelle:"
135
 
136
+ #: wppa-admin-functions.php:620
 
137
  msgid "Missing directory:"
138
  msgstr "Fehlendes Verzeichnis:"
139
 
140
+ #: wppa-admin-functions.php:624
 
141
  msgid "Directory is not writable:"
142
  msgstr "Verzeichnis ist nicht beschreibbar:"
143
 
144
+ #: wppa-admin-functions.php:628
 
145
  msgid "Directory is not readable:"
146
  msgstr "Verzeichnis kann nicht gelesen werden:"
147
 
148
+ #: wppa-admin-functions.php:636
 
149
  msgid ""
150
  "Please de-activate and re-activate the plugin. If this problem persists, ask "
151
  "your administrator."
153
  "Bitte deaktivieren Sie und reaktivieren Sie das Plugin. Wenn dieses Problem "
154
  "weiterhin besteht, bitten Sie Ihren Administrator."
155
 
156
+ #: wppa-admin-functions.php:660
 
157
  msgid "Prev page"
158
+ msgstr "Vorherige Seite"
159
 
160
+ #: wppa-admin-functions.php:783 wppa-admin-functions.php:786
161
+ #, php-format
162
  msgid "Album %s is full"
163
  msgstr "Album %s ist voll"
164
 
165
+ #: wppa-admin-functions.php:804
166
+ #, php-format
167
  msgid "Photo %s already exists in album number %s. Removed from depot."
168
+ msgstr "Foto %s existiert bereits im Album Nummer %s. Entfernt vom Depot."
169
 
170
+ #: wppa-admin-functions.php:807
171
+ #, php-format
172
  msgid "Photo %s already exists in album number %s."
173
  msgstr "Foto %s existiert bereits im Albumnummer %s."
174
 
175
+ #: wppa-admin-functions.php:837
176
+ #, php-format
177
  msgid "ERROR: Attempt to upload a photo that is too large to process (%s)."
178
+ msgstr "Fehler: Versuche ein Foto hochladen, die zu groß zum Prozess (%s) ist."
 
179
 
180
+ #: wppa-admin-functions.php:838
 
181
  msgid "Too big"
182
  msgstr "Zu groß"
183
 
184
+ #: wppa-admin-functions.php:842
 
185
  msgid ""
186
  "WARNING: You are uploading photos that are too small. Photos must be larger "
187
  "than the thumbnail size and larger than the coverphotosize."
189
  "Warnung: Sie sind Fotos hochladen, die zu klein sind. Fotos müssen größer "
190
  "als die Größe der Miniaturansichten und größer als die Coverphotosize sein."
191
 
192
+ #: wppa-admin-functions.php:843
 
193
  msgid "Too small"
194
  msgstr "Zu Klein"
195
 
196
+ #: wppa-admin-functions.php:848
 
197
  msgid "ERROR: Unable to retrieve image size of"
198
+ msgstr "Fehler: Konnte Bildgröße nicht abrufen"
199
 
200
+ #: wppa-admin-functions.php:848
 
201
  msgid "Are you sure it is a photo?"
202
+ msgstr "Sind Sie sicher, dass es ein Foto ist?"
203
 
204
+ #: wppa-admin-functions.php:849
 
205
  msgid "No imagesize"
206
+ msgstr "Keine Bildgröße "
207
 
208
+ #: wppa-admin-functions.php:858
 
209
  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
  #, fuzzy, php-format
219
  msgid ""
220
  "Album %s does not exist or is not accessable while trying to add a photo"
222
  "Album %s existiert nicht oder ist nicht zugänglich, bei dem Versuch, ein "
223
  "Foto hinzufügen"
224
 
225
+ #: wppa-admin-functions.php:898
226
  #, fuzzy
227
  msgid "Could not insert photo."
228
  msgstr "Konnte Foto nicht in db einfügen."
229
 
230
+ #: wppa-admin-functions.php:934
231
  #, fuzzy
232
  msgid "ERROR: Unknown file or album."
233
  msgstr "Fehler: Unbekannte Datei oder Album."
234
 
235
+ #: wppa-admin.php:56
236
  #, fuzzy
237
  msgid "Photo&thinsp;Albums"
238
  msgstr "Foto &thinsp; Alben"
239
 
240
+ #: wppa-admin.php:59 wppa-adminbar.php:40 wppa-settings-autosave.php:6041
241
  #, fuzzy
242
  msgid "Album Admin"
243
  msgstr "Album-Admin"
244
 
245
+ #: wppa-admin.php:60 wppa-adminbar.php:47 wppa-settings-autosave.php:6042
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:6043
258
  #, fuzzy
259
  msgid "Import Photos"
260
  msgstr "Importieren von Fotos"
261
 
262
+ #: wppa-admin.php:66 wppa-adminbar.php:68
263
  #, fuzzy
264
  msgid "Moderate Photos"
265
  msgstr "Moderate Fotos"
266
 
267
+ #: wppa-admin.php:67 wppa-adminbar.php:75 wppa-export.php:32
268
+ #: wppa-settings-autosave.php:6045
269
  #, fuzzy
270
  msgid "Export Photos"
271
  msgstr "Exportieren von Fotos"
272
 
273
+ #: wppa-admin.php:68 wppa-adminbar.php:82 wppa-comment-admin.php:223
274
+ #: wppa-settings-autosave.php:6046
275
  #, fuzzy
276
  msgid "Settings"
277
  msgstr "Einstellungen"
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:6047 wppa-setup.php:1588
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:8541
297
+ #: wppa-settings-autosave.php:8586
298
  #, fuzzy
299
  msgid "Comments"
300
  msgstr "Kommentare"
301
 
302
+ #: wppa-admin.php:71
303
  #, fuzzy
304
  msgid "Help &amp; Info"
305
  msgstr "Hilfe &amp; Info"
306
 
307
+ #: wppa-admin.php:71 wppa-adminbar.php:103
308
  msgid "Documentation"
309
  msgstr "Documentation"
310
 
311
+ #: wppa-admin.php:111
312
  #, fuzzy
313
  msgid "Uploading is temporary diabled for you"
314
  msgstr "Das Hochladen ist temporäre Kindersitzen für Sie"
315
 
316
+ #: wppa-admin.php:118
317
  #, fuzzy
318
  msgid "Editing is temporary diabled for you"
319
  msgstr "Die Bearbeitung ist temporäre Kindersitzen für Sie"
320
 
321
+ #: wppa-admin.php:125
322
  #, fuzzy
323
  msgid "Importing is temporary diabled for you"
324
  msgstr "Die Einfuhr von ist temporären Kindersitzen 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:9719
332
  #, fuzzy
333
  msgid "Update"
334
  msgstr "Aktualisieren"
361
  msgstr "Bitte aktivieren Sie diese Funktion in Tabelle IV-A27"
362
 
363
  #: wppa-admins-choice-widget.php:78 wppa-album-navigator-widget.php:95
364
+ #: wppa-album-widget.php:324 wppa-bestof-widget.php:131
365
  #: wppa-comment-widget.php:119 wppa-featen-widget.php:176 wppa-gp-widget.php:88
366
  #: wppa-lasten-widget.php:200 wppa-multitag-widget.php:72
367
+ #: wppa-potd-widget.php:211 wppa-qr-widget.php:94 wppa-search-widget.php:94
368
  #: wppa-slideshow-widget.php:198 wppa-stereo-widget.php:68
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:"
390
  msgstr "Ausfahrt & aktualisieren"
391
 
392
  #: wppa-ajax.php:250 wppa-ajax.php:316 wppa-ajax.php:351 wppa-ajax.php:629
393
+ #: wppa-ajax.php:927 wppa-ajax.php:2666
394
  #, fuzzy
395
  msgid "Security check failure"
396
  msgstr "Sicherheitsfehler"
400
  msgid "You do not have the rights to moderate photos this way"
401
  msgstr "Sie haben nicht die Rechte an Fotos auf diese Weise moderieren"
402
 
403
+ #: wppa-ajax.php:300 wppa-ajax.php:1231 wppa-functions.php:2339
404
  #, fuzzy
405
  msgid "Photo comment approved"
406
  msgstr "Foto Kommentar genehmigt"
435
  msgid "Could not remove comment"
436
  msgstr "Kommentar konnte nicht entfernt werden."
437
 
438
+ #: wppa-ajax.php:364 wppa-ajax.php:795
439
  #, fuzzy
440
  msgid "Unexpected error"
441
  msgstr "Unerwarteter Fehler"
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
470
  msgid "Unable to create zipsdir"
471
  msgstr "Nicht in der Lage, Zipsdir zu erstellen"
472
 
473
+ #: wppa-ajax.php:503 wppa-functions.php:2137 wppa-thumbnails.php:616
474
  #, fuzzy
475
  msgid "Selected"
476
  msgstr "ja"
503
  #: wppa-ajax.php:643
504
  #, fuzzy
505
  msgid "An error occurred while processing you rating request."
506
+ msgstr "Fehler beim Verarbeiten von Rating-Anfrage."
507
 
508
  #: wppa-ajax.php:644
509
  #, fuzzy
522
  "Althoug an error occurred while processing your rating, your vote has been "
523
  "registered."
524
  msgstr ""
525
+ "Auch wenn ein Fehler aufgetreten während der Verarbeitung Ihre Bewertung, "
526
+ "Ihre Stimme registriert wurde."
527
 
528
  #: wppa-ajax.php:647
529
  #, fuzzy
535
  msgid "Photo has been removed."
536
  msgstr "Foto wurde entfernt."
537
 
538
+ #: wppa-ajax.php:688 wppa-slideshow.php:743
539
  #, fuzzy
540
  msgid "Sorry, you can not rate your own photos"
541
  msgstr "Leider können Sie nicht Ihre eigenen Fotos bewerten"
542
 
543
+ #: wppa-ajax.php:700
544
  #, fuzzy
545
  msgid "Please enter a comment."
546
  msgstr "Bitte geben Sie einen Kommentar ein."
547
 
548
+ #: wppa-ajax.php:727
549
  #, fuzzy
550
+ msgid "You can not change your vote"
551
+ msgstr "Ihre Stimme können Sie nicht ändern."
552
+
553
+ #: wppa-ajax.php:733
554
+ #, fuzzy
555
+ msgid "You can not change a dislike"
556
+ msgstr "Eine Abneigung können Sie nicht ändern."
557
+
558
+ #: wppa-ajax.php:739
559
+ #, fuzzy
560
+ msgid "You can not change your vote into a dislike"
561
+ msgstr "Sie können Ihre Stimme nicht in eine Abneigung ändern."
562
 
563
+ #: wppa-ajax.php:755 wppa-ajax.php:776
564
  #, fuzzy
565
  msgid "Photo rated"
566
  msgstr "Foto bewertet"
567
 
568
+ #: wppa-ajax.php:879
569
  #, fuzzy
570
  msgid ""
571
  "Please explain your vote in a comment.\n"
581
  "Im Anschluss an Ihren Kommentar können Sie aktualisieren Sie die Seite um zu "
582
  "sehen, dass Ihre Stimme in Kraft trat."
583
 
584
+ #: wppa-ajax.php:923
585
  #, fuzzy
586
  msgid "You do not have the rights to delete a photo"
587
  msgstr "Sie haben nicht das Recht auf ein Foto löschen"
588
 
589
+ #: wppa-ajax.php:933
590
  #, fuzzy, php-format
591
  msgid "Photo %s has been deleted"
592
  msgstr "Foto %s wurde gelöscht"
593
 
594
+ #: wppa-ajax.php:949
595
  #, fuzzy
596
  msgid "You do not have the rights to update album information"
597
+ msgstr "Sie haben nicht die Rechte Albuminformationen aktualisieren"
 
598
 
599
+ #: wppa-ajax.php:961
600
  #, fuzzy
601
  msgid "<b>Ratings cleared</b>"
602
  msgstr "<b>Bewertungen gelöscht</b>"
603
 
604
+ #: wppa-ajax.php:961 wppa-ajax.php:967 wppa-photo-admin-autosave.php:318
605
  #, fuzzy
606
  msgid "No ratings for this photo."
607
+ msgstr "Keine Bewertungen für dieses Foto."
608
 
609
+ #: wppa-ajax.php:964
610
  #, fuzzy
611
  msgid "An error occurred while clearing ratings"
612
+ msgstr "Fehler beim Löschen von Bewertungen"
613
 
614
+ #: wppa-ajax.php:967 wppa-ajax.php:988 wppa-ajax.php:1010
615
  #, fuzzy
616
  msgid "<b>No photos in this album</b>"
617
+ msgstr "<b>Keine Fotos in diesem album</b>"
618
 
619
+ #: wppa-ajax.php:982
620
  #, fuzzy
621
  msgid "<b>Tags set to defaults</b> (reload)"
622
  msgstr "<b>Tags auf Standardwerte gesetzt</b> (neu laden)"
623
 
624
+ #: wppa-ajax.php:985
625
  #, fuzzy
626
  msgid "An error occurred while setting tags"
627
  msgstr "Fehler beim Festlegen von tags"
628
 
629
+ #: wppa-ajax.php:1004
630
  #, fuzzy
631
  msgid "<b>Tags added width defaults</b> (reload)"
632
  msgstr "<b>Breite Standardwerte mit Markierungen</b> (neu laden)"
633
 
634
+ #: wppa-ajax.php:1007
635
  #, fuzzy
636
  msgid "An error occurred while adding tags"
637
  msgstr "Fehler beim Hinzufügen von tags"
638
 
639
+ #: wppa-ajax.php:1033
640
  #, fuzzy
641
  msgid "No subalbums found to process"
642
  msgstr "Keine Subalbums gefunden, um Prozess"
643
 
644
+ #: wppa-ajax.php:1038
645
  #, fuzzy
646
  msgid "No categories found to process"
647
  msgstr "Keine Kategorien gefunden zu verarbeiten"
648
 
649
+ #: wppa-ajax.php:1042
650
  #, php-format
651
  msgid "%d album updated"
652
  msgid_plural "%d albums updated"
653
  msgstr[0] "%d Album aktualisiert"
654
  msgstr[1] "%d Album aktualisiert"
655
 
656
+ #: wppa-ajax.php:1049
657
  #, fuzzy, php-format
658
  msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
659
  msgstr "Album-Name darf nicht leer sein.<br>Setzen Sie auf <b>%s</b>"
660
 
661
+ #: wppa-ajax.php:1051 wppa-ajax.php:1491 wppa-album-admin-autosave.php:393
662
+ #: wppa-album-admin-autosave.php:450 wppa-album-admin-autosave.php:1099
663
+ #: wppa-album-admin-autosave.php:1236 wppa-album-admin-autosave.php:1408
664
+ #: wppa-album-admin-autosave.php:1503 wppa-boxes-html.php:415
665
  #: wppa-boxes-html.php:529 wppa-photo-admin-autosave.php:1363
666
+ #: wppa-photo-admin-autosave.php:1482 wppa-photo-admin-autosave.php:1894
667
+ #: wppa-potd-admin.php:71 wppa-potd-admin.php:358
668
+ #: wppa-settings-autosave.php:515 wppa-settings-autosave.php:677
669
+ #: wppa-settings-autosave.php:699 wppa-settings-autosave.php:1447
670
+ #: wppa-settings-autosave.php:1468 wppa-settings-autosave.php:3093
671
+ #: wppa-settings-autosave.php:3114 wppa-settings-autosave.php:3451
672
+ #: wppa-settings-autosave.php:3475 wppa-settings-autosave.php:4017
673
+ #: wppa-settings-autosave.php:4131 wppa-settings-autosave.php:4780
674
+ #: wppa-settings-autosave.php:4801 wppa-settings-autosave.php:4977
675
+ #: wppa-settings-autosave.php:5001 wppa-settings-autosave.php:6007
676
+ #: wppa-settings-autosave.php:6428 wppa-settings-autosave.php:6678
677
+ #: wppa-settings-autosave.php:6700 wppa-settings-autosave.php:7430
678
+ #: wppa-settings-autosave.php:7454 wppa-settings-autosave.php:8535
679
+ #: wppa-settings-autosave.php:9176 wppa-settings-autosave.php:9332
680
+ #: wppa-thumbnail-widget.php:202 wppa-upload.php:259
681
  msgid "Name"
682
  msgstr "Name"
683
 
684
+ #: wppa-ajax.php:1054 wppa-ajax.php:1494 wppa-album-admin-autosave.php:1109
685
+ #: wppa-album-admin-autosave.php:1246 wppa-album-admin-autosave.php:1418
686
+ #: wppa-album-admin-autosave.php:1513 wppa-photo-admin-autosave.php:1364
687
+ #: wppa-photo-admin-autosave.php:1483 wppa-photo-admin-autosave.php:1895
688
+ #: wppa-potd-admin.php:72 wppa-potd-admin.php:138 wppa-potd-admin.php:359
689
+ #: wppa-settings-autosave.php:516 wppa-settings-autosave.php:678
690
+ #: wppa-settings-autosave.php:700 wppa-settings-autosave.php:1448
691
+ #: wppa-settings-autosave.php:1469 wppa-settings-autosave.php:3094
692
+ #: wppa-settings-autosave.php:3115 wppa-settings-autosave.php:3452
693
+ #: wppa-settings-autosave.php:3476 wppa-settings-autosave.php:4781
694
+ #: wppa-settings-autosave.php:4802 wppa-settings-autosave.php:4978
695
+ #: wppa-settings-autosave.php:5002 wppa-settings-autosave.php:6008
696
+ #: wppa-settings-autosave.php:6429 wppa-settings-autosave.php:6679
697
+ #: wppa-settings-autosave.php:6701 wppa-settings-autosave.php:7431
698
+ #: wppa-settings-autosave.php:7455 wppa-settings-autosave.php:9177
699
+ #: wppa-settings-autosave.php:9199 wppa-settings-autosave.php:9239
700
+ #: wppa-settings-autosave.php:9261 wppa-settings-autosave.php:9307
701
+ #: wppa-settings-autosave.php:9333
702
  #, fuzzy
703
  msgid "Description"
704
  msgstr "Album Beschreibung eingeben"
705
 
706
+ #: wppa-ajax.php:1058
707
  #, fuzzy
708
  msgid "Unbalanced tags in album description!"
709
  msgstr "Unsymmetrische Tags in Album Beschreibung!"
710
 
711
+ #: wppa-ajax.php:1065
712
  #, fuzzy
713
  msgid "Album order #"
714
  msgstr "Album bestellen #"
715
 
716
+ #: wppa-ajax.php:1068
717
  #, fuzzy
718
  msgid "Cover photo"
719
  msgstr "Titelbild"
720
 
721
+ #: wppa-ajax.php:1071
722
  #, fuzzy
723
  msgid "Parent album"
724
  msgstr "Übergeordnetes Album"
725
 
726
+ #: wppa-ajax.php:1076 wppa-settings-autosave.php:4011
727
  #, fuzzy
728
  msgid "Photo order"
729
  msgstr "Bildersortierung"
730
 
731
+ #: wppa-ajax.php:1079
732
  #, fuzzy
733
  msgid "Use Alt thumbsize"
734
  msgstr "Verwenden Sie Alt dies"
735
 
736
+ #: wppa-ajax.php:1082
737
  #, fuzzy
738
  msgid "Cover Type"
739
  msgstr "Cover-Typ"
740
 
741
+ #: wppa-ajax.php:1085 wppa-settings-autosave.php:5003
742
+ #: wppa-settings-autosave.php:6009
743
  #, fuzzy
744
  msgid "Link type"
745
  msgstr "Verknüpfungstyp"
746
 
747
+ #: wppa-ajax.php:1088 wppa-album-covers.php:1305
748
  msgid "Link to"
749
  msgstr "Link zu"
750
 
751
+ #: wppa-ajax.php:1091 wppa-ajax.php:1515 wppa-album-admin-autosave.php:1120
752
+ #: wppa-album-admin-autosave.php:1257 wppa-album-admin-autosave.php:1429
753
+ #: wppa-album-admin-autosave.php:1524 wppa-boxes-html.php:537
754
  #: wppa-photo-admin-autosave.php:1366 wppa-photo-admin-autosave.php:1485
755
+ #: wppa-potd-admin.php:139
756
  msgid "Owner"
757
  msgstr "Inhaber"
758
 
759
+ #: wppa-ajax.php:1093
760
  #, fuzzy, php-format
761
  msgid "User %s does not exist"
762
  msgstr "Benutzer \"%s\" nicht vorhanden"
763
 
764
+ #: wppa-ajax.php:1098 wppa-ajax.php:1104
765
  #, fuzzy
766
  msgid "Upload limit count"
767
  msgstr "Upload Limit Graf"
768
 
769
+ #: wppa-ajax.php:1111
770
  #, fuzzy
771
  msgid "Upload limit time"
772
  msgstr "Hochladebegrenzung"
773
 
774
+ #: wppa-ajax.php:1115
775
  #, fuzzy
776
  msgid "Default tags"
777
  msgstr "Standard-tags"
778
 
779
+ #: wppa-ajax.php:1120
780
  #, fuzzy
781
  msgid "Categories"
782
  msgstr "Regionen"
783
 
784
+ #: wppa-ajax.php:1123
785
  #, fuzzy
786
  msgid "Sub albums sort order"
787
  msgstr "Sub-Alben-Sortierung"
788
 
789
+ #: wppa-ajax.php:1131 wppa-ajax.php:1585
790
  #, fuzzy
791
  msgid "Schedule date/time"
792
  msgstr "Datum/Uhrzeit planen"
793
 
794
+ #: wppa-ajax.php:1144 wppa-ajax.php:1196
795
  #, fuzzy, php-format
796
  msgid "<b>%s</b> of album %s updated"
797
  msgstr "<b>%s</b> %s aktualisiert-Album"
798
 
799
+ #: wppa-ajax.php:1152
800
  #, fuzzy
801
  msgid "All photos set to scheduled per date"
802
  msgstr "Alle Fotos auf geplante pro Datum festgelegt"
803
 
804
+ #: wppa-ajax.php:1179
805
+ #, fuzzy, php-format
806
  msgid "<b>Custom field %s</b> updated"
807
+ msgstr "Benutzerdefiniertes Feld aktualisiert."
808
 
809
+ #: wppa-ajax.php:1205
810
  #, fuzzy, php-format
811
  msgid "An error occurred while trying to update <b>%s</b> of album %s"
812
  msgstr ""
813
  "Beim Versuch, <b>%s</b> %s Album aktualisieren ist ein Fehler aufgetreten."
814
 
815
+ #: wppa-ajax.php:1206 wppa-ajax.php:1469 wppa-ajax.php:1575
816
  #, fuzzy
817
  msgid "Press CTRL+F5 and try again."
818
  msgstr "Strg + F5 Taste und versuchen Sie es erneut."
819
 
820
+ #: wppa-ajax.php:1220
821
  #, fuzzy
822
  msgid "You do not have the rights to update comment status"
823
  msgstr "Sie haben nicht die Rechte Kommentarstatus aktualisieren"
824
 
825
+ #: wppa-ajax.php:1237
826
  #, fuzzy, php-format
827
  msgid "Status of comment #%s updated"
828
  msgstr "Status der Kommentar #%s aktualisiert"
829
 
830
+ #: wppa-ajax.php:1240
831
  #, fuzzy, php-format
832
  msgid "Error updating status comment #%s"
833
  msgstr "Fehler beim Aktualisieren der Status Kommentar #%s"
834
 
835
+ #: wppa-ajax.php:1251
836
  #, fuzzy
837
  msgid "You do not have the rights to change photos"
838
  msgstr "Sie haben nicht die Rechte an Fotos ändern"
839
 
840
+ #: wppa-ajax.php:1260
841
  #, fuzzy
842
  msgid "Watermark applied"
843
  msgstr "Wasserzeichen angewendet"
844
 
845
+ #: wppa-ajax.php:1264
846
  #, fuzzy
847
  msgid "An error occured while trying to apply a watermark"
848
  msgstr "Ist ein Fehler aufgetreten beim Versuch, ein Wasserzeichen anwenden"
849
 
850
+ #: wppa-ajax.php:1283
851
  #, fuzzy
852
  msgid "You do not have the rights to update photo information"
853
  msgstr "Sie müssen nicht das Rechte Fotoinformationen aktualisieren"
854
 
855
+ #: wppa-ajax.php:1289
856
  #, fuzzy, php-format
857
  msgid "%s updated to %s."
858
  msgstr "%s %s aktualisiert."
859
 
860
+ #: wppa-ajax.php:1339
861
  #, fuzzy, php-format
862
  msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
863
  msgstr "Format Fehler %s muss Yyyy:mm:dd HH"
864
 
865
+ #: wppa-ajax.php:1343
866
  #, fuzzy
867
  msgid "Exif date/time updated"
868
  msgstr "Exif-Datum/Uhrzeit aktualisiert"
869
 
870
+ #: wppa-ajax.php:1349
871
  #, fuzzy
872
  msgid "Enter a value > -90 and < 90"
873
  msgstr "Geben Sie einen Wert >-90 und < 90"
874
 
875
+ #: wppa-ajax.php:1357
876
  #, fuzzy
877
  msgid "Lattitude updated"
878
  msgstr "Latitude aktualisiert"
879
 
880
+ #: wppa-ajax.php:1359
881
  #, fuzzy
882
  msgid "Could not update lattitude"
883
  msgstr "Breitengrad konnte nicht aktualisiert werden."
884
 
885
+ #: wppa-ajax.php:1365
886
  #, fuzzy
887
  msgid "Enter a value > -180 and < 180"
888
  msgstr "Geben Sie einen Wert >-180 und < 180"
889
 
890
+ #: wppa-ajax.php:1373
891
  #, fuzzy
892
  msgid "Longitude updated"
893
  msgstr "Länge aktualisiert"
894
 
895
+ #: wppa-ajax.php:1375
896
  #, fuzzy
897
  msgid "Could not update longitude"
898
  msgstr "Längengrad konnte nicht aktualisiert werden."
899
 
900
+ #: wppa-ajax.php:1383
901
  #, fuzzy
902
  msgid "Photo files remade"
903
  msgstr "Foto-Dateien überarbeitet"
904
 
905
+ #: wppa-ajax.php:1386
906
  #, fuzzy
907
  msgid "Could not remake files"
908
  msgstr "Dateien konnten nicht erneuern."
909
 
910
+ #: wppa-ajax.php:1392
911
  #, fuzzy
912
  msgid "Thumbnail remade"
913
  msgstr "Miniaturansicht Remake"
914
 
915
+ #: wppa-ajax.php:1395
916
  #, fuzzy
917
  msgid "Could not remake thumbnail"
918
  msgstr "Konnte keine Miniaturansicht remake"
919
 
920
+ #: wppa-ajax.php:1405 wppa-photo-admin-autosave.php:184 wppa-potd-admin.php:100
921
+ #: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:288
922
+ #: wppa-tinymce-shortcodes.php:617
923
  #, fuzzy
924
  msgid "left"
925
  msgstr "Links"
926
 
927
+ #: wppa-ajax.php:1409 wppa-photo-admin-autosave.php:186
928
  #, fuzzy
929
  msgid "180&deg;"
930
  msgstr "180°"
931
 
932
+ #: wppa-ajax.php:1413 wppa-photo-admin-autosave.php:188 wppa-potd-admin.php:100
933
+ #: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:290
934
+ #: wppa-tinymce-shortcodes.php:619
935
  #, fuzzy
936
  msgid "right"
937
  msgstr "Rechts"
938
 
939
+ #: wppa-ajax.php:1421
940
  #, fuzzy, php-format
941
  msgid "Photo %s rotated %s"
942
  msgstr "Foto %s %s gedreht"
943
 
944
+ #: wppa-ajax.php:1424
945
  #, fuzzy, php-format
946
  msgid "An error occurred while trying to rotate photo %s"
947
  msgstr "Ist ein Fehler aufgetreten beim Versuch, Foto %s zu drehen"
948
 
949
+ #: wppa-ajax.php:1434 wppa-ajax.php:1457 wppa-photo-admin-autosave.php:1100
950
  #: wppa-photo-admin-autosave.php:1118
951
  #, fuzzy, php-format
952
  msgid "A photo with filename %s already exists in album %s."
953
  msgstr "Ein Foto mit Dateinamen %s existiert bereits im Album %s."
954
 
955
+ #: wppa-ajax.php:1444
956
  #, fuzzy, php-format
957
  msgid "Photo %s has been moved to album %s (%s)"
958
  msgstr "Foto %s wurde verschoben auf Album %s (%s)"
959
 
960
+ #: wppa-ajax.php:1447
961
  #, fuzzy, php-format
962
  msgid "An error occurred while trying to move photo %s"
963
  msgstr "Ist ein Fehler aufgetreten beim Versuch, Foto %s verschieben"
964
 
965
+ #: wppa-ajax.php:1465
966
  #, fuzzy, php-format
967
  msgid "Photo %s copied to album %s (%s)"
968
  msgstr "Foto %s %s (%s) Album kopiert"
969
 
970
+ #: wppa-ajax.php:1468
971
  #, fuzzy, php-format
972
  msgid "An error occurred while trying to copy photo %s"
973
  msgstr "Ist ein Fehler aufgetreten beim Versuch, Foto %s kopieren"
974
 
975
+ #: wppa-ajax.php:1498 wppa-ajax.php:2140
976
  #, fuzzy
977
  msgid "Unbalanced tags in photo description!"
978
  msgstr "Unsymmetrische Tags in Fotobeschreibung!"
979
 
980
+ #: wppa-ajax.php:1504
981
  #, fuzzy
982
  msgid "Photo order #"
983
  msgstr "Bildersortierung"
984
 
985
+ #: wppa-ajax.php:1509
986
  #, fuzzy, php-format
987
  msgid "User %s does not exists"
988
  msgstr "Benutzer %s existiert nicht"
989
 
990
+ #: wppa-ajax.php:1518
991
  #, fuzzy
992
  msgid "Link url"
993
  msgstr "Top Link in der Liste?"
994
 
995
+ #: wppa-ajax.php:1521
996
  #, fuzzy
997
  msgid "Link title"
998
  msgstr "Link-Titel"
999
 
1000
+ #: wppa-ajax.php:1524
1001
  #, fuzzy
1002
  msgid "Link target"
1003
  msgstr "Linkziel"
1004
 
1005
+ #: wppa-ajax.php:1530 wppa-multitag-widget.php:34 wppa-multitag-widget.php:66
1006
  #: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
1007
  #, fuzzy
1008
  msgid "Photo Tags"
1009
  msgstr "Foto-Tags"
1010
 
1011
+ #: wppa-ajax.php:1535 wppa-comment-admin.php:317 wppa-comment-admin.php:404
1012
  #: wppa-photo-admin-autosave.php:1365 wppa-photo-admin-autosave.php:1484
1013
+ #: wppa-settings-autosave.php:6704 wppa-settings-autosave.php:7434
1014
+ #: wppa-settings-autosave.php:9200 wppa-settings-autosave.php:9240
1015
+ #: wppa-settings-autosave.php:9262 wppa-settings-autosave.php:9308
1016
  #, fuzzy
1017
  msgid "Status"
1018
  msgstr "Status"
1019
 
1020
+ #: wppa-ajax.php:1538
1021
  #, fuzzy
1022
  msgid "HTML Alt"
1023
  msgstr "HTML Alt"
1024
 
1025
+ #: wppa-ajax.php:1542
1026
  #, fuzzy
1027
  msgid "Video width"
1028
  msgstr "Breite des Videos"
1029
 
1030
+ #: wppa-ajax.php:1544 wppa-ajax.php:1551
1031
  #, fuzzy
1032
  msgid "Please enter an integer value >= 0"
1033
  msgstr "Bitte geben Sie einen ganzzahligen Wert > = 0"
1034
 
1035
+ #: wppa-ajax.php:1549
1036
  #, fuzzy
1037
  msgid "Video height"
1038
  msgstr "Video Höhe"
1039
 
1040
+ #: wppa-ajax.php:1567 wppa-ajax.php:1601
1041
  #, fuzzy, php-format
1042
  msgid "<b>%s</b> of video %s updated"
1043
  msgstr "<b>%s</b> von Video%s aktualisiert"
1044
 
1045
+ #: wppa-ajax.php:1570 wppa-ajax.php:1604
1046
  #, fuzzy, php-format
1047
  msgid "<b>%s</b> of photo %s updated"
1048
  msgstr "<b>%s</b> %s aktualisiert Fotos"
1049
 
1050
+ #: wppa-ajax.php:1574
1051
  #, fuzzy, php-format
1052
  msgid "An error occurred while trying to update <b>%s</b> of photo %s"
1053
  msgstr ""
1054
  "Beim Versuch, <b>%s</b> %s Fotos aktualisieren ist ein Fehler aufgetreten."
1055
 
1056
+ #: wppa-ajax.php:1630
1057
  #, fuzzy, php-format
1058
  msgid "<b>Custom field %s</b> of photo %s updated"
1059
  msgstr "<b>Benutzerdefiniertes Feld %s</b> %s aktualisiert Fotos"
1060
 
1061
+ #: wppa-ajax.php:1637
1062
  #, fuzzy
1063
  msgid "<b>Error during upload.</b>"
1064
+ msgstr "Fehler beim Datei-Upload."
1065
 
1066
+ #: wppa-ajax.php:1671
1067
  #, fuzzy
1068
  msgid "Photo files updated."
1069
  msgstr "Foto-Dateien aktualisiert."
1070
 
1071
+ #: wppa-ajax.php:1676
1072
  #, fuzzy
1073
  msgid "Could not update files."
1074
  msgstr "Dateien konnten nicht aktualisiert werden."
1075
 
1076
+ #: wppa-ajax.php:1687
1077
  #, fuzzy, php-format
1078
  msgid "Stereo mode updated in %d milliseconds"
1079
  msgstr "Stereo-Modus in %d Millisekunden aktualisiert"
1080
 
1081
+ #: wppa-ajax.php:1704 wppa-ajax.php:1746
1082
  #, fuzzy
1083
  msgid "You do not have the rights to update settings"
1084
  msgstr "Sie haben nicht die Rechte Einstellungen aktualisieren"
1085
 
1086
+ #: wppa-ajax.php:1740
1087
+ #, fuzzy
1088
+ msgid "You do not have the rights to update photo of the day settings"
1089
+ msgstr "Sie haben nicht die Rechte, Foto des Tages-Einstellungen aktualisieren"
1090
+
1091
+ #: wppa-ajax.php:1818
1092
  #, fuzzy
1093
  msgid "Capability granted"
1094
  msgstr "Fähigkeit gewährt"
1095
 
1096
+ #: wppa-ajax.php:1823
1097
  #, fuzzy
1098
  msgid "Capability withdrawn"
1099
  msgstr "Fähigkeit zurückgezogen"
1100
 
1101
+ #: wppa-ajax.php:1854
1102
  #, fuzzy
1103
  msgid "Column width."
1104
+ msgstr "Breite der Spalte"
1105
 
1106
+ #: wppa-ajax.php:1857
1107
  #, fuzzy
1108
  msgid "Initial width."
1109
  msgstr "Ursprüngliche Breite"
1110
 
1111
+ #: wppa-ajax.php:1860
1112
  #, fuzzy
1113
  msgid "Full size."
1114
  msgstr "Originalgröße"
1115
 
1116
+ #: wppa-ajax.php:1863
1117
  #, fuzzy
1118
  msgid "Max height."
1119
  msgstr "Max. Höhe:"
1120
 
1121
+ #: wppa-ajax.php:1868
1122
  #, fuzzy
1123
  msgid "Thumbnail size."
1124
+ msgstr "Thumbnail Größe"
1125
 
1126
+ #: wppa-ajax.php:1872
1127
  #, fuzzy
1128
  msgid "Thumbnail frame width"
1129
  msgstr "Thumbnail Rahmenbreite"
1130
 
1131
+ #: wppa-ajax.php:1876
1132
  #, fuzzy
1133
  msgid "Thumbnail frame height"
1134
  msgstr "Miniaturansicht Rahmenhöhe"
1135
 
1136
+ #: wppa-ajax.php:1879
1137
  #, fuzzy
1138
  msgid "Thumbnail Spacing"
1139
  msgstr "Miniaturansicht Abstand"
1140
 
1141
+ #: wppa-ajax.php:1882
1142
  #, fuzzy
1143
  msgid "Photocount treshold."
1144
  msgstr "Photocount Treshold."
1145
 
1146
+ #: wppa-ajax.php:1885
1147
  #, fuzzy
1148
  msgid "Thumb page size."
1149
  msgstr "Daumen Sie-Seitengröße."
1150
 
1151
+ #: wppa-ajax.php:1888
1152
  #, fuzzy
1153
  msgid "Cover photo size."
1154
  msgstr "Coverbild Größe"
1155
 
1156
+ #: wppa-ajax.php:1891
1157
  #, fuzzy
1158
  msgid "Album page size."
1159
  msgstr "Größe der Album Seite"
1160
 
1161
+ #: wppa-ajax.php:1894
1162
  #, fuzzy
1163
  msgid "Number of TopTen photos"
1164
  msgstr "Anzahl der TopTen Fotos"
1165
 
1166
+ #: wppa-ajax.php:1897
1167
  #, fuzzy
1168
  msgid "Widget image thumbnail size"
1169
  msgstr "Thumbnail-Bildgröße Widget"
1170
 
1171
+ #: wppa-ajax.php:1900 wppa-settings-autosave.php:1105
1172
  #, fuzzy
1173
  msgid "Max Cover width"
1174
  msgstr "Breite Max Cover"
1175
 
1176
+ #: wppa-ajax.php:1903
1177
  #, fuzzy
1178
  msgid "Minimal description height"
1179
  msgstr "Minimale Beschreibung Höhe"
1180
 
1181
+ #: wppa-ajax.php:1906
1182
  #, fuzzy
1183
  msgid "Minimal cover height"
1184
  msgstr "Minimale Deckelhöhe"
1185
 
1186
+ #: wppa-ajax.php:1909
1187
  #, fuzzy
1188
  msgid "Minimal text frame height"
1189
  msgstr "Wenig Text Rahmenhöhe"
1190
 
1191
+ #: wppa-ajax.php:1912 wppa-settings-autosave.php:1402
1192
  #, fuzzy
1193
  msgid "Border width"
1194
  msgstr "Randbreite"
1195
 
1196
+ #: wppa-ajax.php:1915 wppa-settings-autosave.php:776
1197
+ #: wppa-settings-autosave.php:1411
1198
  #, fuzzy
1199
  msgid "Border radius"
1200
  msgstr "Radius Rand"
1201
 
1202
+ #: wppa-ajax.php:1918 wppa-settings-autosave.php:787
1203
  #, fuzzy
1204
  msgid "Box spacing"
1205
  msgstr "Box-Abstand"
1206
 
1207
+ #: wppa-ajax.php:1924 wppa-settings-autosave.php:1080
1208
  #, fuzzy
1209
  msgid "Popup size"
1210
  msgstr "Popup-Größe"
1211
 
1212
+ #: wppa-ajax.php:1927
1213
  #, fuzzy
1214
  msgid "Fullsize border width"
1215
  msgstr "Fullsize Rahmenbreite"
1216
 
1217
+ #: wppa-ajax.php:1930
1218
  #, fuzzy
1219
  msgid "Lightbox Bordersize"
1220
  msgstr "Leuchtkasten Bordersize"
1221
 
1222
+ #: wppa-ajax.php:1933
1223
  #, fuzzy
1224
  msgid "Lightbox Borderwidth"
1225
  msgstr "Lightbox Borderwidth"
1226
 
1227
+ #: wppa-ajax.php:1936
1228
  #, fuzzy
1229
  msgid "Lightbox Borderradius"
1230
  msgstr "Leuchtkasten Borderradius"
1231
 
1232
+ #: wppa-ajax.php:1939
1233
  #, fuzzy
1234
  msgid "Number of Comment widget entries"
1235
  msgstr "Anzahl der Kommentar Widget Einträge"
1236
 
1237
+ #: wppa-ajax.php:1942
1238
  #, fuzzy
1239
  msgid "Comment Widget image thumbnail size"
1240
  msgstr "Thumbnail-Bildgröße Kommentar Widget"
1241
 
1242
+ #: wppa-ajax.php:1945 wppa-ajax.php:1948 wppa-ajax.php:1951
1243
  #, fuzzy
1244
  msgid "Opacity."
1245
+ msgstr "Lichtundurchlässigkeit"
1246
 
1247
+ #: wppa-ajax.php:1960 wppa-settings-autosave.php:1211
1248
  #, fuzzy
1249
  msgid "Avatar size"
1250
  msgstr "Avatar-Grösse: "
1251
 
1252
+ #: wppa-ajax.php:1963 wppa-ajax.php:1966
1253
  #, fuzzy
1254
  msgid "Watermark opacity"
1255
  msgstr "Deckkraft Wasserzeichen"
1256
 
1257
+ #: wppa-ajax.php:1969 wppa-settings-autosave.php:1380
1258
  #, fuzzy
1259
  msgid "Number of text lines"
1260
  msgstr "Anzahl der Textzeilen"
1261
 
1262
+ #: wppa-ajax.php:1972 wppa-settings-autosave.php:4657
1263
  #, fuzzy
1264
  msgid "Overlay opacity"
1265
  msgstr "Überlagerungsdeckkraft"
1266
 
1267
+ #: wppa-ajax.php:1975 wppa-settings-autosave.php:7994
1268
  #, fuzzy
1269
  msgid "Upload limit"
1270
  msgstr "Hochladebegrenzung"
1271
 
1272
+ #: wppa-ajax.php:1978 wppa-settings-autosave.php:4327
1273
  #, fuzzy
1274
  msgid "Notify inappropriate"
1275
  msgstr "Unangemessen zu benachrichtigen"
1276
 
1277
+ #: wppa-ajax.php:1981
1278
  #, fuzzy
1279
  msgid "Dislike pending"
1280
  msgstr "Mag nicht anhängig"
1281
 
1282
+ #: wppa-ajax.php:1984
1283
  #, fuzzy
1284
  msgid "Dislike delete"
1285
  msgstr "Abneigung gegen löschen"
1286
 
1287
+ #: wppa-ajax.php:1987 wppa-settings-autosave.php:7530
1288
  #, fuzzy
1289
  msgid "Max execution time"
1290
  msgstr "Max Durchführungszeit"
1291
 
1292
+ #: wppa-ajax.php:1993
1293
  #, fuzzy
1294
  msgid "myCRED / Cube Points"
1295
  msgstr "MyCRED / Cube Punkte"
1296
 
1297
+ #: wppa-ajax.php:1996
1298
  #, fuzzy
1299
  msgid "JPG Image quality"
1300
  msgstr "JPG-Bild-Qualität"
1301
 
1302
+ #: wppa-ajax.php:2002 wppa-settings-autosave.php:4220
1303
  #, fuzzy
1304
  msgid "Number of coverphotos"
1305
  msgstr "Anzahl der coverphotos"
1306
 
1307
+ #: wppa-ajax.php:2005 wppa-settings-autosave.php:4298
1308
  #, fuzzy
1309
  msgid "Dislike value"
1310
  msgstr "Dislike Wert"
1311
 
1312
+ #: wppa-ajax.php:2008 wppa-settings-autosave.php:917
1313
  #, fuzzy
1314
  msgid "Slideshow pagesize"
1315
  msgstr "Diashow Seitengröße"
1316
 
1317
+ #: wppa-ajax.php:2011 wppa-settings-autosave.php:936
1318
  #, fuzzy
1319
  msgid "Slideonly max"
1320
  msgstr "Slideonly max"
1321
 
1322
+ #: wppa-ajax.php:2014 wppa-settings-autosave.php:805
1323
  #, fuzzy
1324
  msgid "Max Pagelinks"
1325
  msgstr "Max Pagelinks"
1326
 
1327
+ #: wppa-ajax.php:2017 wppa-settings-autosave.php:3032
1328
  #, fuzzy
1329
  msgid "Start/pause symbol size"
1330
  msgstr "Start/Pause Symbolgröße"
1331
 
1332
+ #: wppa-ajax.php:2020 wppa-settings-autosave.php:3041
1333
  #, fuzzy
1334
  msgid "Start/pause symbol border radius"
1335
  msgstr "Start/Pause-Symbol Rahmenradius"
1336
 
1337
+ #: wppa-ajax.php:2023 wppa-settings-autosave.php:3050
1338
  #, fuzzy
1339
  msgid "Stop symbol size"
1340
  msgstr "Symbolgröße zu stoppen"
1341
 
1342
+ #: wppa-ajax.php:2026 wppa-settings-autosave.php:3059
1343
  #, fuzzy
1344
  msgid "Stop symbol border radius"
1345
  msgstr "Stop-Symbol Grenze Radius"
1346
 
1347
+ #: wppa-ajax.php:2029 wppa-settings-autosave.php:832
1348
  #, fuzzy
1349
  msgid "Sticky header size"
1350
  msgstr "Sticky"
1351
 
1352
+ #: wppa-ajax.php:2037
1353
  #, fuzzy
1354
  msgid "Ratings cleared"
1355
  msgstr "Bewertungen gelöscht"
1356
 
1357
+ #: wppa-ajax.php:2040
1358
  #, fuzzy
1359
  msgid "Could not clear ratings"
1360
+ msgstr "Bewertungen konnten nicht gelöscht werden."
1361
 
1362
+ #: wppa-ajax.php:2049
1363
  #, fuzzy
1364
  msgid "Viewcounts cleared"
1365
  msgstr "Viewcounts gelöscht"
1366
 
1367
+ #: wppa-ajax.php:2052
1368
  #, fuzzy
1369
  msgid "Could not clear viewcounts"
1370
  msgstr "Viewcounts konnten nicht gelöscht werden."
1371
 
1372
+ #: wppa-ajax.php:2062
1373
  #, fuzzy
1374
  msgid "IPTC data cleared"
1375
  msgstr "IPTC-Daten gelöscht"
1376
 
1377
+ #: wppa-ajax.php:2063
1378
  #, fuzzy
1379
  msgid "Refresh this page to clear table X"
1380
  msgstr "Aktualisieren Sie diese Seite um Tabelle X löschen"
1381
 
1382
+ #: wppa-ajax.php:2067
1383
  #, fuzzy
1384
  msgid "Could not clear IPTC data"
1385
  msgstr "IPTC-Daten konnten nicht gelöscht werden."
1386
 
1387
+ #: wppa-ajax.php:2077
1388
  #, fuzzy
1389
  msgid "EXIF data cleared"
1390
  msgstr "EXIF-Daten gelöscht"
1391
 
1392
+ #: wppa-ajax.php:2078
1393
  #, fuzzy
1394
  msgid "Refresh this page to clear table XI"
1395
  msgstr "Aktualisieren Sie diese Seite um Tabelle XI löschen"
1396
 
1397
+ #: wppa-ajax.php:2082
1398
  #, fuzzy
1399
  msgid "Could not clear EXIF data"
1400
  msgstr "EXIF-Daten konnten nicht gelöscht werden."
1401
 
1402
+ #: wppa-ajax.php:2090
1403
  #, fuzzy
1404
  msgid "Recuperation performed"
1405
  msgstr "Rekuperation durchgeführt"
1406
 
1407
+ #: wppa-ajax.php:2105
1408
  #, fuzzy
1409
  msgid ""
1410
  "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1413
  "Illegale Format. Bitte geben Sie einen 6-stelligen hexadezimalen Farbwert. "
1414
  "Beispiel: #77bbff"
1415
 
1416
+ #: wppa-ajax.php:2131
1417
  #, fuzzy
1418
  msgid "You just changed a setting that requires the recalculation of ratings."
1419
  msgstr ""
1420
+ "Sie haben nur eine Einstellung, die die Neuberechnung der Bewertungen "
1421
+ "erfordert geändert."
1422
 
1423
+ #: wppa-ajax.php:2132 wppa-ajax.php:2580
1424
  #, fuzzy
1425
  msgid "Please run the appropriate action in Table VIII."
1426
  msgstr "Bitte führen Sie die entsprechende Aktion in Tabelle VIII."
1427
 
1428
+ #: wppa-ajax.php:2156 wppa-ajax.php:2172
1429
  #, fuzzy, php-format
1430
  msgid "Unable to create or write to %s"
1431
  msgstr "Nicht erstellen oder schreiben Sie an %s"
1432
 
1433
+ #: wppa-ajax.php:2165
1434
  #, fuzzy
1435
  msgid "Source can not be inside the wppa folder."
1436
  msgstr "Quelle kann nicht im Ordner \"Wppa\" sein."
1437
 
1438
+ #: wppa-ajax.php:2182
1439
  #, fuzzy
1440
  msgid "The content must contain w#album"
1441
  msgstr "Der Inhalt muss w #album enthalten."
1442
 
1443
+ #: wppa-ajax.php:2189
1444
  #, fuzzy
1445
  msgid "The content must contain w#lat and w#lon"
1446
  msgstr "Der Inhalt muss w #lat und w #lon enthalten."
1447
 
1448
+ #: wppa-ajax.php:2237 wppa-ajax.php:2243
1449
  #, fuzzy
1450
  msgid "Members"
1451
  msgstr "Mitarbeiter"
1452
 
1453
+ #: wppa-ajax.php:2237
1454
  #, fuzzy
1455
  msgid "Parent of the member albums"
1456
  msgstr "Eltern der Mitglieder Alben"
1457
 
1458
+ #: wppa-ajax.php:2381
1459
  #, fuzzy, php-format
1460
  msgid "User %s has been blacklisted."
1461
  msgstr "Benutzer %s hat auf der schwarzen Liste."
1462
 
1463
+ #: wppa-ajax.php:2384 wppa-ajax.php:2414
1464
  #, fuzzy, php-format
1465
  msgid "User %s does not exist."
1466
  msgstr "Benutzer \"%s\" nicht vorhanden"
1467
 
1468
+ #: wppa-ajax.php:2411
1469
  #, fuzzy, php-format
1470
  msgid "User %s is now superuser."
1471
  msgstr "Benutzer %s ist jetzt Superuser."
1472
 
1473
+ #: wppa-ajax.php:2436
1474
  #, fuzzy
1475
  msgid ""
1476
  "The content of the Custom box has been changed to display the Fotomoto "
1479
  "Der Inhalt des Felds Custom wurde geändert, um die Fotomoto-Symbolleiste "
1480
  "angezeigt."
1481
 
1482
+ #: wppa-ajax.php:2440 wppa-ajax.php:2455
1483
  #, fuzzy
1484
  msgid "The display of the custom box has been enabled"
1485
  msgstr "Die Anzeige der benutzerdefinierten Feld wurde aktiviert"
1486
 
1487
+ #: wppa-ajax.php:2451
1488
  #, fuzzy
1489
  msgid "The content of the Custom box has been changed to display maps."
1490
  msgstr ""
1491
  "Der Inhalt des Felds Custom wurde geändert, um Karten angezeigt werden."
1492
 
1493
+ #: wppa-ajax.php:2489
1494
  #, fuzzy
1495
  msgid "This value can not be empty"
1496
  msgstr "Dieser Wert darf nicht leer sein."
1497
 
1498
+ #: wppa-ajax.php:2518
1499
  #, fuzzy
1500
  msgid ""
1501
  "You must run Table VIII-A13 and VIII-A14 first before you can switch to "
1504
  "Sie müssen Tabelle VIII-A13 und VIII-A14 zuerst ausführen, bevor Sie zum "
1505
  "verschlüsselten Urls wechseln können."
1506
 
1507
+ #: wppa-ajax.php:2521
1508
  #, fuzzy
1509
  msgid "Table IV-A3 will be switched off."
1510
  msgstr "Tabelle IV-A3 wird abgeschaltet."
1511
 
1512
+ #: wppa-ajax.php:2525
1513
  #, fuzzy
1514
  msgid "Table IV-A4 will be switched off."
1515
  msgstr "Tabelle IV-A4 wird ausgeschaltet."
1516
 
1517
+ #: wppa-ajax.php:2535
1518
  #, fuzzy
1519
  msgid "Not allowed when cryptic links is active"
1520
  msgstr "Nicht zulässig, wenn kryptische Links aktiv ist"
1521
 
1522
+ #: wppa-ajax.php:2547
1523
  #, fuzzy
1524
  msgid "A Twitter account name must start with an at sign: @"
1525
  msgstr "Ein Twitter-Account-Namen muss beginnen mit einem at-Zeichen: @"
1526
 
1527
+ #: wppa-ajax.php:2558
1528
  #, fuzzy, php-format
1529
  msgid "Failed to set %s to %s"
1530
  msgstr "Fehler beim Festlegen von %s auf %s"
1531
 
1532
+ #: wppa-ajax.php:2563
1533
  #, fuzzy, php-format
1534
  msgid "Setting %s updated to %s"
1535
  msgstr "Festlegen von %s %s aktualisiert"
1536
 
1537
+ #: wppa-ajax.php:2579
1538
  #, fuzzy
1539
  msgid ""
1540
  "You just changed a setting that requires the regeneration of thumbnails."
1542
  "Sie haben nur eine Einstellung, die die Regeneration von Thumbnails "
1543
  "erfordert geändert."
1544
 
1545
+ #: wppa-ajax.php:2634
1546
  #, fuzzy
1547
  msgid "Missing album id"
1548
  msgstr "Fehlende Album-id"
1549
 
1550
+ #: wppa-ajax.php:2654
1551
  #, fuzzy
1552
  msgid "You do not have the rights to delete this album"
1553
  msgstr "Sie haben nicht die Rechte an diesem Album löschen"
1554
 
1555
+ #: wppa-ajax.php:2675
1556
  #, fuzzy
1557
  msgid "An error has occurred"
1558
  msgstr "Ein Interner Fehler Ist Aufgetreten"
1559
 
1560
+ #: wppa-ajax.php:2711 wppa-ajax.php:2718
1561
  #, fuzzy
1562
  msgid "You may also enter:"
1563
  msgstr "Sie können auch eingeben:"
1564
 
1565
+ #: wppa-ajax.php:2712 wppa-ajax.php:2719
1566
  #, fuzzy
1567
  msgid "You may also leave/set this blank"
1568
  msgstr "Sie können auch Urlaub/dies leere set"
1569
 
1570
+ #: wppa-album-admin-autosave.php:23 wppa-album-admin-autosave.php:774
1571
  #, fuzzy
1572
  msgid "Upload to this album"
1573
  msgstr "Auf diesem Album hochladen"
1586
  "Das Upload-Verzeichnis existiert nicht oder ist nicht vom Server "
1587
  "beschreibbar. Bitte stellen Sie sicher, dass %s vom Server beschreibbar ist."
1588
 
1589
+ #: wppa-album-admin-autosave.php:79 wppa-album-admin-autosave.php:818
1590
  #, fuzzy
1591
  msgid "Manage Photos"
1592
  msgstr "Fotos verwalten"
1593
 
1594
+ #: wppa-album-admin-autosave.php:80 wppa-album-admin-autosave.php:819
1595
  #, fuzzy
1596
  msgid "Copy / move / delete / edit name / edit description / change status"
1597
  msgstr ""
1598
  "Kopieren Sie / verschieben Sie / löschen Sie / bearbeiten Sie Name / "
1599
  "bearbeiten Sie Beschreibung / ändern status"
1600
 
1601
+ #: wppa-album-admin-autosave.php:81 wppa-album-admin-autosave.php:821
1602
  #, fuzzy
1603
  msgid "Edit photo information except copy and move"
1604
  msgstr "Fotoinformationen außer Kopie bearbeiten und verschieben"
1605
 
1606
+ #: wppa-album-admin-autosave.php:82 wppa-album-admin-autosave.php:822
1607
+ #: wppa-setup.php:1314
1608
  #, fuzzy
1609
  msgid "Edit photo information"
1610
  msgstr "Foto bearbeiten"
1614
  msgid "Back to album table"
1615
  msgstr "Zurück zum album"
1616
 
1617
+ #: wppa-album-admin-autosave.php:91 wppa-album-admin-autosave.php:829
1618
  #, fuzzy
1619
  msgid "Top of page"
1620
  msgstr "Am Anfang der Seite"
1621
 
1622
+ #: wppa-album-admin-autosave.php:118 wppa-functions.php:4293
1623
+ #: wppa-settings-autosave.php:7842 wppa-wpdb-insert.php:338
1624
  msgid "New Album"
1625
  msgstr "Neues Fotoalbum"
1626
 
1627
+ #: wppa-album-admin-autosave.php:123 wppa-import.php:1644 wppa-import.php:1680
1628
+ #: wppa-import.php:2466
1629
  #, fuzzy
1630
  msgid "Could not create album."
1631
  msgstr "Album konnte nicht erstellt werden"
1632
 
1633
+ #: wppa-album-admin-autosave.php:131 wppa-import.php:1650 wppa-import.php:2474
1634
  #, fuzzy
1635
  msgid "Album #"
1636
  msgstr "Album:"
1637
 
1638
+ #: wppa-album-admin-autosave.php:131 wppa-import.php:1650 wppa-import.php:2474
1639
  #, fuzzy
1640
  msgid "Added."
1641
  msgstr "%s Punkte hinzugefügt"
1642
 
1643
+ #: wppa-album-admin-autosave.php:177
1644
  #, fuzzy
1645
  msgid "Edit Album Information"
1646
  msgstr "Informationen über das Album bearbeiten"
1647
 
1648
+ #: wppa-album-admin-autosave.php:177 wppa-settings-autosave.php:277
1649
  #, fuzzy
1650
  msgid "Auto Save"
1651
  msgstr "Auto. speichern"
1652
 
1653
+ #: wppa-album-admin-autosave.php:179
1654
  #, fuzzy
1655
  msgid ""
1656
  "All modifications are instantly updated on the server, except for those that "
1659
  "Alle Änderungen werden sofort auf dem Server, mit Ausnahme derjenigen, die "
1660
  "ein Knopfdruck erfordern aktualisiert."
1661
 
1662
+ #: wppa-album-admin-autosave.php:180
1663
  #, fuzzy
1664
  msgid ""
1665
  "The <b style=\"color:#070\" >Remark</b> fields keep you informed on the "
1668
  "Die <b style=\"color:#070\">Bemerkung</b> Felder informieren Sie über die "
1669
  "Aktionen im Hintergrund."
1670
 
1671
+ #: wppa-album-admin-autosave.php:184
1672
  #, fuzzy
1673
  msgid "Album number:"
1674
  msgstr "Albumnummer:"
1675
 
1676
+ #: wppa-album-admin-autosave.php:184 wppa-photo-admin-autosave.php:179
1677
  #, fuzzy
1678
  msgid "Crypt"
1679
  msgstr "\"Gruft\";"
1680
 
1681
+ #: wppa-album-admin-autosave.php:193
1682
  #, fuzzy
1683
  msgid "Name:"
1684
  msgstr "Name"
1685
 
1686
+ #: wppa-album-admin-autosave.php:200
1687
  #, fuzzy
1688
  msgid "Update Album name"
1689
  msgstr "Album updaten"
1690
 
1691
+ #: wppa-album-admin-autosave.php:208
1692
  #, fuzzy
1693
  msgid "Type the name of the album. Do not leave this empty."
1694
  msgstr "Geben Sie den Namen des Albums. Lassen Sie dies leer."
1695
 
1696
+ #: wppa-album-admin-autosave.php:216 wppa-photo-admin-autosave.php:753
1697
  #: wppa-photo-admin-autosave.php:778
1698
  #, fuzzy
1699
  msgid "Description:"
1700
  msgstr "Album Beschreibung eingeben"
1701
 
1702
+ #: wppa-album-admin-autosave.php:227
1703
  #, fuzzy
1704
  msgid "Update Album description"
1705
  msgstr "Album Beschreibung aktualisiert"
1706
 
1707
+ #: wppa-album-admin-autosave.php:237
1708
  #, fuzzy
1709
  msgid "Enter / modify the description for this album."
1710
  msgstr "Geben Sie ein / ändern Sie die Beschreibung für dieses Album."
1711
 
1712
+ #: wppa-album-admin-autosave.php:281
1713
  #, fuzzy
1714
  msgid "Created:"
1715
  msgstr "ERROR: Resized oder kopierte Bild konnte nicht erstellt werden."
1716
 
1717
+ #: wppa-album-admin-autosave.php:284 wppa-album-admin-autosave.php:295
1718
  #: wppa-photo-admin-autosave.php:257 wppa-photo-admin-autosave.php:280
1719
  #, fuzzy
1720
  msgid "local time"
1721
  msgstr "Ortszeit"
1722
 
1723
+ #: wppa-album-admin-autosave.php:290 wppa-photo-admin-autosave.php:275
1724
  #, fuzzy
1725
  msgid "Modified:"
1726
  msgstr "Bearbeitet:"
1727
 
1728
+ #: wppa-album-admin-autosave.php:298 wppa-photo-admin-autosave.php:283
1729
  #: wppa-photo-admin-autosave.php:1472
1730
  #, fuzzy
1731
  msgid "Not modified"
1732
  msgstr "Nicht geändert"
1733
 
1734
+ #: wppa-album-admin-autosave.php:307
1735
  #, fuzzy
1736
  msgid "Views:"
1737
  msgstr "Aufrufe:"
1738
 
1739
+ #: wppa-album-admin-autosave.php:320 wppa-photo-admin-autosave.php:261
1740
  #, fuzzy
1741
  msgid "Owned by:"
1742
  msgstr "gehört"
1743
 
1744
+ #: wppa-album-admin-autosave.php:338
1745
  #, fuzzy
1746
  msgid ""
1747
  "WARNING If you change the owner, you will no longer be able to modify this "
1750
  "Warnung Wenn Sie den Besitzer ändern, werden Sie nicht mehr in der Lage, "
1751
  "dieses Album zu ändern und hochladen oder importieren Sie Fotos darauf!"
1752
 
1753
+ #: wppa-album-admin-autosave.php:340
1754
  #, fuzzy
1755
  msgid "Enter user login name or <b>--- public ---</b>"
1756
  msgstr "Geben Sie Benutzer-Login-Namen oder <b>---öffentliche---</b>"
1757
 
1758
+ #: wppa-album-admin-autosave.php:349
1759
  #, fuzzy
1760
  msgid "Album sort order #:"
1761
  msgstr "Album Art bestellen #:"
1762
 
1763
+ #: wppa-album-admin-autosave.php:357
1764
  #, fuzzy
1765
  msgid ""
1766
  "Album order # has only effect if you set the album sort order method to "
1770
  "sortieren Reihenfolge-Methode <b>bestellen #</b> in den Fotoalben-> "
1771
  "Bildschirm \"Einstellungen\".<br>"
1772
 
1773
+ #: wppa-album-admin-autosave.php:360
1774
  #, fuzzy
1775
  msgid ""
1776
  "If you want to sort the albums by order #, enter / modify the order number "
1779
  "Wenn Sie die Alben von sortieren möchten, eingeben / ändern die "
1780
  "Bestellnummer hier bestellen #."
1781
 
1782
+ #: wppa-album-admin-autosave.php:367 wppa-tinymce-shortcodes.php:346
1783
+ #: wppa-tinymce-shortcodes.php:372 wppa-tinymce-shortcodes.php:560
1784
  #, fuzzy
1785
  msgid "Parent album:"
1786
  msgstr "Übergeordnetes Album"
1787
 
1788
+ #: wppa-album-admin-autosave.php:378
1789
  #, fuzzy
1790
  msgid ""
1791
  "If this is a sub album, select the album in which this album will appear."
1793
  "Wenn dies ein Sub-Album ist, wählen Sie das Album, in dem dieses Album "
1794
  "angezeigt werden."
1795
 
1796
+ #: wppa-album-admin-autosave.php:387
1797
  #, fuzzy
1798
  msgid "Photo order:"
1799
  msgstr "Bildersortierung"
1800
 
1801
+ #: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:492
1802
+ #: wppa-settings-autosave.php:4054 wppa-settings-autosave.php:4078
1803
+ #: wppa-tinymce-shortcodes.php:505 wppa-tinymce-shortcodes.php:524
1804
  #, fuzzy
1805
  msgid "--- default ---"
1806
  msgstr "Standard-Fotoalbum für"
1807
 
1808
+ #: wppa-album-admin-autosave.php:392 wppa-album-admin-autosave.php:448
1809
+ #: wppa-settings-autosave.php:4016 wppa-settings-autosave.php:4130
1810
  #: wppa-thumbnail-widget.php:201
1811
  #, fuzzy
1812
  msgid "Order #"
1813
  msgstr "Bestellung #"
1814
 
1815
+ #: wppa-album-admin-autosave.php:394 wppa-album-admin-autosave.php:447
1816
+ #: wppa-potd-admin.php:249 wppa-settings-autosave.php:4018
1817
+ #: wppa-settings-autosave.php:4132 wppa-thumbnail-widget.php:203
1818
  #, fuzzy
1819
  msgid "Random"
1820
  msgstr "Zufall"
1821
 
1822
+ #: wppa-album-admin-autosave.php:395 wppa-settings-autosave.php:4019
1823
  #, fuzzy
1824
  msgid "Rating mean value"
1825
  msgstr "Bewertungswerte"
1826
 
1827
+ #: wppa-album-admin-autosave.php:396 wppa-bestof-widget.php:170
1828
+ #: wppa-settings-autosave.php:4020 wppa-topten-widget.php:345
1829
  #, fuzzy
1830
  msgid "Number of votes"
1831
  msgstr "Anzahl der Stimmen"
1832
 
1833
+ #: wppa-album-admin-autosave.php:397 wppa-album-admin-autosave.php:452
1834
+ #: wppa-settings-autosave.php:4021 wppa-settings-autosave.php:4133
1835
  #, fuzzy
1836
  msgid "Timestamp"
1837
  msgstr "Zeitstempel"
1838
 
1839
+ #: wppa-album-admin-autosave.php:398 wppa-photo-admin-autosave.php:292
1840
+ #: wppa-settings-autosave.php:4022
1841
  #, fuzzy
1842
  msgid "EXIF Date"
1843
  msgstr "EXIF-Datum"
1844
 
1845
+ #: wppa-album-admin-autosave.php:399 wppa-settings-autosave.php:4023
1846
+ #: wppa-settings-autosave.php:4134
1847
  #, fuzzy
1848
  msgid "Order # desc"
1849
  msgstr "Auftrag # desc"
1850
 
1851
+ #: wppa-album-admin-autosave.php:400 wppa-settings-autosave.php:4024
1852
+ #: wppa-settings-autosave.php:4135
1853
  #, fuzzy
1854
  msgid "Name desc"
1855
  msgstr "Name absteigend"
1856
 
1857
+ #: wppa-album-admin-autosave.php:401 wppa-settings-autosave.php:4025
1858
  #: wppa-thumbnail-widget.php:204
1859
  #, fuzzy
1860
  msgid "Rating mean value desc"
1861
  msgstr "Bewertung Mittelwert desc"
1862
 
1863
+ #: wppa-album-admin-autosave.php:402 wppa-settings-autosave.php:4026
1864
  #: wppa-thumbnail-widget.php:205
1865
  #, fuzzy
1866
  msgid "Number of votes desc"
1867
  msgstr "Anzahl der Stimmen"
1868
 
1869
+ #: wppa-album-admin-autosave.php:403 wppa-settings-autosave.php:4027
1870
+ #: wppa-settings-autosave.php:4136 wppa-thumbnail-widget.php:206
1871
  #, fuzzy
1872
  msgid "Timestamp desc"
1873
  msgstr "Zeitstempel ab"
1874
 
1875
+ #: wppa-album-admin-autosave.php:404 wppa-settings-autosave.php:4028
1876
  #, fuzzy
1877
  msgid "EXIF Date desc"
1878
  msgstr "EXIF Datum desc"
1879
 
1880
+ #: wppa-album-admin-autosave.php:433
1881
  #, fuzzy
1882
  msgid "Specify the way the photos should be ordered in this album."
1883
  msgstr ""
1884
  "Geben Sie die Art und Weise die Fotos bestellt werden sollte in diesem Album."
1885
 
1886
+ #: wppa-album-admin-autosave.php:434
1887
  #, fuzzy
1888
  msgid ""
1889
  "The default setting can be changed in the <b>Photo Albums -> Settings</b> "
1892
  "Die Standardeinstellung kann in den <b>Fotoalben-> Einstellungen</b> Seite "
1893
  "<b>Tabelle IV-C1</b>geändert werden."
1894
 
1895
+ #: wppa-album-admin-autosave.php:442
1896
  #, fuzzy
1897
  msgid "Sub album sort order:"
1898
  msgstr "Sub-Album-Sortierreihenfolge:"
1899
 
1900
+ #: wppa-album-admin-autosave.php:446
1901
  #, fuzzy
1902
  msgid "See Table IV-D1"
1903
  msgstr "Siehe Tabelle IV-D1"
1904
 
1905
+ #: wppa-album-admin-autosave.php:449
1906
  #, fuzzy
1907
  msgid "Order # reverse"
1908
  msgstr "Auftrag # reverse"
1909
 
1910
+ #: wppa-album-admin-autosave.php:451
1911
  #, fuzzy
1912
  msgid "Name reverse"
1913
  msgstr "Name rückwärts"
1914
 
1915
+ #: wppa-album-admin-autosave.php:453
1916
  #, fuzzy
1917
  msgid "Timestamp reverse"
1918
  msgstr "Timestamp reverse"
1919
 
1920
+ #: wppa-album-admin-autosave.php:458
1921
  #, fuzzy
1922
  msgid ""
1923
  "Specify the sequence order method to be used for the sub albums of this "
1926
  "Geben Sie die Sequenz Bestellmethode für die Sub-Alben dieses Albums "
1927
  "verwendet werden."
1928
 
1929
+ #: wppa-album-admin-autosave.php:467
1930
  #, fuzzy
1931
  msgid "Use alt thumbsize:"
1932
  msgstr "Verwenden Sie Alt dies:"
1933
 
1934
+ #: wppa-album-admin-autosave.php:471 wppa-bestof-widget.php:182
1935
  #: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
1936
+ #: wppa-lasten-widget.php:219 wppa-settings-autosave.php:535
1937
+ #: wppa-settings-autosave.php:544 wppa-settings-autosave.php:553
1938
+ #: wppa-settings-autosave.php:564 wppa-settings-autosave.php:573
1939
  #: wppa-settings-autosave.php:582 wppa-settings-autosave.php:591
1940
+ #: wppa-settings-autosave.php:600 wppa-settings-autosave.php:609
1941
+ #: wppa-settings-autosave.php:618 wppa-settings-autosave.php:627
1942
+ #: wppa-settings-autosave.php:636 wppa-settings-autosave.php:645
1943
+ #: wppa-settings-autosave.php:654 wppa-topten-widget.php:353
 
 
1944
  #: wppa-topten-widget.php:360 wppa-topten-widget.php:368
1945
  #: wppa-topten-widget.php:373 wppa-topten-widget.php:378
1946
  #: wppa-topten-widget.php:383 wppa-topten-widget.php:388
1948
  msgid "no"
1949
  msgstr "nein"
1950
 
1951
+ #: wppa-album-admin-autosave.php:472 wppa-bestof-widget.php:181
1952
  #: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
1953
+ #: wppa-lasten-widget.php:220 wppa-settings-autosave.php:535
1954
+ #: wppa-settings-autosave.php:544 wppa-settings-autosave.php:553
1955
+ #: wppa-settings-autosave.php:564 wppa-settings-autosave.php:573
1956
  #: wppa-settings-autosave.php:582 wppa-settings-autosave.php:591
1957
+ #: wppa-settings-autosave.php:600 wppa-settings-autosave.php:609
1958
+ #: wppa-settings-autosave.php:618 wppa-settings-autosave.php:627
1959
+ #: wppa-settings-autosave.php:636 wppa-settings-autosave.php:645
1960
+ #: wppa-settings-autosave.php:654 wppa-settings-autosave.php:663
 
 
1961
  #: wppa-super-view-widget.php:85 wppa-topten-widget.php:352
1962
  #: wppa-topten-widget.php:359 wppa-topten-widget.php:367
1963
  #: wppa-topten-widget.php:372 wppa-topten-widget.php:377
1966
  msgid "yes"
1967
  msgstr "Ja"
1968
 
1969
+ #: wppa-album-admin-autosave.php:477
1970
  #, fuzzy
1971
  msgid ""
1972
  "If set to <b>yes</b> The settings in <b>Table I-C1a,3a</b> and <b>4a</b> "
1975
  "Wenn <b>Ja</b> die Einstellungen in <b>Tisch - C1a, 3a</b> und <b>4a</b> "
1976
  "statt <b>ich-C1, 3</b> und <b>4</b>gelten soll."
1977
 
1978
+ #: wppa-album-admin-autosave.php:487
1979
  #, fuzzy
1980
  msgid "Cover Type:"
1981
  msgstr "Cover Art:"
1982
 
1983
+ #: wppa-album-admin-autosave.php:493 wppa-settings-autosave.php:2031
1984
+ #: wppa-settings-autosave.php:4200
1985
  #, fuzzy
1986
  msgid "Standard"
1987
  msgstr "Standard "
1988
 
1989
+ #: wppa-album-admin-autosave.php:494 wppa-settings-autosave.php:4201
1990
  #, fuzzy
1991
  msgid "Long Descriptions"
1992
  msgstr "Lange Beschreibungen"
1993
 
1994
+ #: wppa-album-admin-autosave.php:495 wppa-settings-autosave.php:4202
1995
  #, fuzzy
1996
  msgid "Image Factory"
1997
  msgstr "Image Factory"
1998
 
1999
+ #: wppa-album-admin-autosave.php:496 wppa-settings-autosave.php:4203
2000
  #, fuzzy
2001
  msgid "Standard mcr"
2002
  msgstr "Standard-mcr"
2003
 
2004
+ #: wppa-album-admin-autosave.php:497 wppa-settings-autosave.php:4204
2005
  #, fuzzy
2006
  msgid "Long Descriptions mcr"
2007
  msgstr "Lange Beschreibungen mcr"
2008
 
2009
+ #: wppa-album-admin-autosave.php:498 wppa-settings-autosave.php:4205
2010
  #, fuzzy
2011
  msgid "Image Factory mcr"
2012
  msgstr "Bild Fabrik mcr"
2013
 
2014
+ #: wppa-album-admin-autosave.php:504
2015
  #, fuzzy
2016
  msgid ""
2017
  "The default cover type is the systems standard set in the <b>Photo Albums -> "
2020
  "Der Standardtyp Abdeckung ist die Systeme standard gesetzt in der <b>Foto-"
2021
  "Alben-> Einstellungen</b> Seite <b>Tabelle IV-D6</b>."
2022
 
2023
+ #: wppa-album-admin-autosave.php:514
2024
  #, fuzzy
2025
  msgid "Cover Photo:"
2026
  msgstr "Titelbild"
2027
 
2028
+ #: wppa-album-admin-autosave.php:522
2029
  #, fuzzy
2030
  msgid "Select the photo you want to appear on the cover of this album."
2031
  msgstr ""
2032
  "Wählen Sie das Foto, das Sie auf dem Cover des Albums angezeigt werden soll."
2033
 
2034
+ #: wppa-album-admin-autosave.php:523
2035
  #, fuzzy
2036
  msgid ""
2037
  "Select the way the cover photos of this album are selected, or select a "
2040
  "Wählen Sie die Art und Weise die Cover-Fotos für dieses Album ausgewählt "
2041
  "sind, die oder wählen Sie ein einzelnes Bild."
2042
 
2043
+ #: wppa-album-admin-autosave.php:532
2044
  #, fuzzy
2045
  msgid "Upload limit:"
2046
  msgstr "Hochladebegrenzung"
2047
 
2048
+ #: wppa-album-admin-autosave.php:543 wppa-settings-autosave.php:6145
2049
+ #: wppa-settings-autosave.php:8001
2050
  #, fuzzy
2051
  msgid "for ever"
2052
+ msgstr "Für immer"
2053
 
2054
+ #: wppa-album-admin-autosave.php:544 wppa-album-admin-autosave.php:561
2055
+ #: wppa-settings-autosave.php:6146 wppa-settings-autosave.php:8002
2056
  #, fuzzy
2057
  msgid "per hour"
2058
+ msgstr "Pro Stunde"
2059
 
2060
+ #: wppa-album-admin-autosave.php:545 wppa-album-admin-autosave.php:562
2061
+ #: wppa-settings-autosave.php:6147 wppa-settings-autosave.php:8003
2062
  #, fuzzy
2063
  msgid "per day"
2064
  msgstr "pro Tag "
2065
 
2066
+ #: wppa-album-admin-autosave.php:546 wppa-album-admin-autosave.php:563
2067
+ #: wppa-settings-autosave.php:6148 wppa-settings-autosave.php:8004
2068
  #, fuzzy
2069
  msgid "per week"
2070
  msgstr "pro Woche"
2071
 
2072
+ #: wppa-album-admin-autosave.php:547 wppa-album-admin-autosave.php:564
2073
+ #: wppa-settings-autosave.php:6149 wppa-settings-autosave.php:8005
2074
  #, fuzzy
2075
  msgid "per month"
2076
  msgstr "pro Monat"
2077
 
2078
+ #: wppa-album-admin-autosave.php:548 wppa-album-admin-autosave.php:565
2079
+ #: wppa-settings-autosave.php:6150 wppa-settings-autosave.php:8006
2080
  #, fuzzy
2081
  msgid "per year"
2082
+ msgstr "pro Jahr"
2083
 
2084
+ #: wppa-album-admin-autosave.php:552
2085
  #, fuzzy
2086
  msgid "Set the upload limit (0 means unlimited) and the upload limit period."
2087
  msgstr ""
2088
  "Festlegen Sie Upload-Limit (0 bedeutet unbegrenzt) und den Upload begrenzen "
2089
  "Zeitraum."
2090
 
2091
+ #: wppa-album-admin-autosave.php:557
2092
  #, fuzzy
2093
  msgid "Unlimited"
2094
  msgstr "unbegrenzt"
2095
 
2096
+ #: wppa-album-admin-autosave.php:576
2097
  #, fuzzy
2098
  msgid "Catogories:"
2099
  msgstr "Catogories:"
2100
 
2101
+ #: wppa-album-admin-autosave.php:586
2102
  #, fuzzy
2103
  msgid "Separate categories with commas."
2104
  msgstr "Mehrere Kategorien mit Kommas trennen"
2105
 
2106
+ #: wppa-album-admin-autosave.php:587 wppa-photo-admin-autosave.php:832
2107
  #, fuzzy
2108
  msgid "Examples:"
2109
  msgstr "Voorbeelden:"
2110
 
2111
+ #: wppa-album-admin-autosave.php:593 wppa-photo-admin-autosave.php:836
2112
  msgid "- select -"
2113
  msgstr "- Wähle -"
2114
 
2115
+ #: wppa-album-admin-autosave.php:599
2116
  #, fuzzy
2117
  msgid "No categories yet"
2118
  msgstr "Keine Bereiche"
2119
 
2120
+ #: wppa-album-admin-autosave.php:603 wppa-photo-admin-autosave.php:846
2121
  #, fuzzy
2122
  msgid "Select to add"
2123
  msgstr "Die ausgewählte Seite hinzufügen"
2124
 
2125
+ #: wppa-album-admin-autosave.php:609
2126
  #, fuzzy
2127
  msgid ""
2128
  "Are you sure you want to inherit categories to all (grand)children of this "
2131
  "Sind Sie sicher, dass Sie Kategorien für alle (großen) Kinder dieses Albums "
2132
  "vererben möchten?"
2133
 
2134
+ #: wppa-album-admin-autosave.php:610
2135
  #, fuzzy
2136
  msgid ""
2137
  "Are you sure you want to add the categories to all (grand)children of this "
2140
  "Sind Sie sicher, dass Sie die Kategorien für alle (Enkel-) Kinder dieses "
2141
  "Album hinzufügen?"
2142
 
2143
+ #: wppa-album-admin-autosave.php:613
2144
  #, fuzzy
2145
  msgid "Inherit Cats"
2146
  msgstr "Erben von Katzen"
2147
 
2148
+ #: wppa-album-admin-autosave.php:618
2149
  #, fuzzy
2150
  msgid "Apply categories to all (grand)children."
2151
  msgstr "Alle (Enkel) Kategorien zuweisen."
2152
 
2153
+ #: wppa-album-admin-autosave.php:623
2154
  #, fuzzy
2155
  msgid "Add Inherit Cats"
2156
  msgstr "Fügen Sie erben Katzen"
2157
 
2158
+ #: wppa-album-admin-autosave.php:628
2159
  #, fuzzy
2160
  msgid "Add categories to all (grand)children."
2161
  msgstr "Alle (Enkel) Kategorien hinzufügen."
2162
 
2163
+ #: wppa-album-admin-autosave.php:635
2164
  #, fuzzy
2165
  msgid "Default photo tags:"
2166
  msgstr "Standardbild"
2167
 
2168
+ #: wppa-album-admin-autosave.php:641
2169
  #, fuzzy
2170
  msgid ""
2171
  "Enter the tags that you want to be assigned to new photos in this album."
2173
  "Geben Sie die Tags, die Sie möchten neue Fotos in diesem Album zugeordnet "
2174
  "werden."
2175
 
2176
+ #: wppa-album-admin-autosave.php:646
2177
  #, fuzzy
2178
  msgid ""
2179
  "Are you sure you want to set the default tags to all photos in this album?"
2181
  "Sind Sie sicher, dass Sie die Standard-Tags auf alle Fotos in diesem Album "
2182
  "festlegen möchten?"
2183
 
2184
+ #: wppa-album-admin-autosave.php:647
2185
  #, fuzzy
2186
  msgid ""
2187
  "Are you sure you want to add the default tags to all photos in this album?"
2189
  "Sind Sie sicher, dass Sie die Standard-Tags auf alle Fotos in diesem Album "
2190
  "hinzufügen möchten?"
2191
 
2192
+ #: wppa-album-admin-autosave.php:650
2193
  #, fuzzy
2194
  msgid "Apply default tags"
2195
  msgstr "Standard-Tags anwenden"
2196
 
2197
+ #: wppa-album-admin-autosave.php:655
2198
  #, fuzzy
2199
  msgid "Tag all photos in this album with the default tags."
2200
  msgstr "Markieren Sie alle Fotos in diesem Album mit den Standard-Tags."
2201
 
2202
+ #: wppa-album-admin-autosave.php:660
2203
  #, fuzzy
2204
  msgid "Add default tags"
2205
  msgstr "Standard-Tags hinzufügen"
2206
 
2207
+ #: wppa-album-admin-autosave.php:665
2208
  #, fuzzy
2209
  msgid "Add the default tags to all photos in this album."
2210
  msgstr "Alle Fotos in diesem Album die Standard-Tags hinzufügen."
2211
 
2212
+ #: wppa-album-admin-autosave.php:672
2213
  #, fuzzy
2214
  msgid "Link type:"
2215
  msgstr "Link Typ:"
2216
 
2217
+ #: wppa-album-admin-autosave.php:679 wppa-settings-autosave.php:8162
2218
  #, fuzzy
2219
  msgid "the sub-albums and thumbnails"
2220
  msgstr "die Unteralben und Miniaturen"
2221
 
2222
+ #: wppa-album-admin-autosave.php:680 wppa-settings-autosave.php:8163
2223
  #, fuzzy
2224
  msgid "the sub-albums"
2225
  msgstr "die Sub-Alben"
2226
 
2227
+ #: wppa-album-admin-autosave.php:681 wppa-settings-autosave.php:8164
2228
  #, fuzzy
2229
  msgid "the thumbnails"
2230
  msgstr "Miniaturbilden"
2231
 
2232
+ #: wppa-album-admin-autosave.php:682 wppa-settings-autosave.php:8165
2233
  #, fuzzy
2234
  msgid "the album photos as slideshow"
2235
  msgstr "die Albumfotos als Diashow"
2236
 
2237
+ #: wppa-album-admin-autosave.php:683
2238
  #, fuzzy
2239
  msgid "the link page with a clean url"
2240
  msgstr "der Link-Seite mit einer sauberen url"
2241
 
2242
+ #: wppa-album-admin-autosave.php:684 wppa-settings-autosave.php:8166
2243
  #, fuzzy
2244
  msgid "no link at all"
2245
  msgstr "keine Verbindung überhaupt"
2246
 
2247
+ #: wppa-album-admin-autosave.php:689
2248
  #, fuzzy
2249
  msgid ""
2250
  "If you select \"the link page with a clean url\", select an Auto Page of one "
2253
  "Bei Auswahl von \"der Link-Seite mit einer sauberen Url\" wählen Sie eine "
2254
  "Auto-Seite von einem der Fotos in diesem Album."
2255
 
2256
+ #: wppa-album-admin-autosave.php:690
2257
  #, fuzzy
2258
  msgid ""
2259
  "If you select \"the link page with a clean url\", make sure you enter the "
2262
  "Wählst du \"die Link-Seite mit einer sauberen Url\", stellen Sie sicher, "
2263
  "dass Sie die richtige Kurzwahl auf der Zielseite eingeben."
2264
 
2265
+ #: wppa-album-admin-autosave.php:699 wppa-bestof-widget.php:196
2266
+ #: wppa-potd-admin.php:108 wppa-potd-admin.php:124 wppa-potd-admin.php:152
2267
+ #: wppa-slideshow-widget.php:221
2268
  #, fuzzy
2269
  msgid "Link to:"
2270
  msgstr "Link zu"
2271
 
2272
+ #: wppa-album-admin-autosave.php:705 wppa-settings-autosave.php:9845
2273
+ #: wppa-settings-autosave.php:9887 wppa-settings-autosave.php:9939
2274
  #, fuzzy
2275
  msgid "There are no pages (yet) to link to."
2276
  msgstr "Dort sind keine Seiten verknüpft zu"
2277
 
2278
+ #: wppa-album-admin-autosave.php:710
2279
  #, fuzzy
2280
  msgid "--- the same page or post ---"
2281
  msgstr "---der gleichen Seite oder per Post---"
2282
 
2283
+ #: wppa-album-admin-autosave.php:718
2284
  #, fuzzy
2285
  msgid ""
2286
  "If you want, you can link the title to a WP page in stead of the album's "
2289
  "Wenn Sie möchten, können Sie den Titel auf eine WP-Seite an Stelle von das "
2290
  "Album Inhalten verknüpfen. Wenn ja, wählen Sie die Seite der Titel Links zu."
2291
 
2292
+ #: wppa-album-admin-autosave.php:728
2293
  #, fuzzy
2294
  msgid "Schedule:"
2295
+ msgstr "Zeitplan:"
2296
 
2297
+ #: wppa-album-admin-autosave.php:739
2298
  #, fuzzy
2299
  msgid ""
2300
  "If enabled, new photos will have their status set to the dat/time specified "
2303
  "Wenn aktiviert, werden neue Fotos ihren Status auf die hier angegebene Dat/"
2304
  "Zeit eingestellt haben."
2305
 
2306
+ #: wppa-album-admin-autosave.php:745
2307
  #, fuzzy
2308
  msgid "Are you sure you want to schedule all photos in this album?"
2309
  msgstr "Sind Sie sicher, dass Sie alle Fotos in diesem Album planen möchten?"
2310
 
2311
+ #: wppa-album-admin-autosave.php:745
2312
  #, fuzzy
2313
  msgid "Schedule all"
2314
  msgstr "Planen Sie alle"
2315
 
2316
+ #: wppa-album-admin-autosave.php:753
2317
  #, fuzzy
2318
  msgid "Are you sure you want to clear the ratings in this album?"
2319
  msgstr ""
2320
+ "Sind Sie sicher, dass Sie die Bewertungen in diesem Album löschen möchten?"
 
2321
 
2322
+ #: wppa-album-admin-autosave.php:753
2323
  #, fuzzy
2324
  msgid "Reset ratings"
2325
  msgstr "Reset-Bewertungen"
2326
 
2327
+ #: wppa-album-admin-autosave.php:770
2328
  #, fuzzy
2329
  msgid "Change the upload limit or remove photos to enable new uploads."
2330
  msgstr ""
2331
+ "Ändern Sie die Upload-Limit oder entfernen Sie Fotos um neue Uploads zu "
2332
  "ermöglichen."
2333
 
2334
+ #: wppa-album-admin-autosave.php:774
2335
  #, fuzzy, php-format
2336
  msgid "(max %d)"
2337
  msgstr "(Max %d)"
2338
 
2339
+ #: wppa-album-admin-autosave.php:775
2340
  #, fuzzy
2341
  msgid "Album is full"
2342
  msgstr "Album ist voll"
2343
 
2344
+ #: wppa-album-admin-autosave.php:786
2345
  #, fuzzy
2346
  msgid "Apply new photo desc"
2347
  msgstr "Gelten neue Foto desc"
2348
 
2349
+ #: wppa-album-admin-autosave.php:797
2350
  #, fuzzy
2351
  msgid "Remake all"
2352
  msgstr "Alle Remake"
2353
 
2354
+ #: wppa-album-admin-autosave.php:805 wppa-photo-admin-autosave.php:946
2355
  #, fuzzy
2356
  msgid "Remark:"
2357
+ msgstr "Hinweis:"
2358
 
2359
+ #: wppa-album-admin-autosave.php:808
2360
  #, fuzzy, php-format
2361
  msgid "Album %s is not modified yet"
2362
  msgstr "Album %s ist noch nicht geändert."
2363
 
2364
+ #: wppa-album-admin-autosave.php:820
2365
  #, fuzzy
2366
  msgid "Change sequence order by drag and drop"
2367
  msgstr "Änderungsauftrag Reihenfolge durch drag & drop"
2368
 
2369
+ #: wppa-album-admin-autosave.php:840
2370
  #, fuzzy
2371
  msgid "Moderate comment"
2372
  msgstr "Moderiere Kommentare"
2373
 
2374
+ #: wppa-album-admin-autosave.php:857
2375
  #, fuzzy
2376
  msgid "Moderate photo"
2377
  msgstr "Moderate Foto"
2378
 
2379
+ #: wppa-album-admin-autosave.php:858 wppa-functions.php:2369
2380
  #: wppa-photo-admin-autosave.php:24
2381
  msgid "Edit photo"
2382
  msgstr "Foto bearbeiten"
2383
 
2384
+ #: wppa-album-admin-autosave.php:878 wppa-boxes-html.php:1655
2385
+ #: wppa-boxes-html.php:1658
2386
  #, fuzzy
2387
  msgid "Delete Album"
2388
  msgstr "Album löschen"
2393
  #: wppa-breadcrumb.php:636 wppa-comment-admin.php:65 wppa-featen-widget.php:179
2394
  #: wppa-lasten-widget.php:203 wppa-slideshow-widget.php:199
2395
  #: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:326
2396
+ #: wppa-upload-widget.php:85 wppa-upload.php:158 wppa-upload.php:299
2397
+ #: wppa-upload.php:373
2398
  msgid "Album:"
2399
  msgstr "Album:"
2400
 
2411
  #: wppa-album-admin-autosave.php:887
2412
  #, fuzzy
2413
  msgid "What would you like to do with photos currently in the album?"
2414
+ msgstr "Was möchten Sie mit Fotos in das Album zu tun?"
2415
 
2416
  #: wppa-album-admin-autosave.php:888 wppa-album-admin-autosave.php:897
2417
+ #: wppa-album-admin-autosave.php:1156 wppa-album-admin-autosave.php:1196
2418
+ #: wppa-album-admin-autosave.php:1293 wppa-album-admin-autosave.php:1465
2419
+ #: wppa-album-admin-autosave.php:1560 wppa-album-admin-autosave.php:1747
2420
  #: wppa-boxes-html.php:935 wppa-comment-admin.php:319
2421
  #: wppa-comment-admin.php:388 wppa-comment-admin.php:406
2422
+ #: wppa-functions.php:2115 wppa-links.php:782 wppa-links.php:800
2423
  #: wppa-photo-admin-autosave.php:1312 wppa-photo-admin-autosave.php:1380
2424
+ #: wppa-thumbnails.php:629
2425
  msgid "Delete"
2426
  msgstr "Löschen"
2427
 
2428
  #: wppa-album-admin-autosave.php:889
2429
  #, fuzzy
2430
  msgid "Move to:"
2431
+ msgstr "Gehe nach"
2432
 
2433
+ #: wppa-album-admin-autosave.php:896 wppa-photo-admin-autosave.php:2025
2434
+ #: wppa-settings-autosave.php:2898
2435
  #, fuzzy
2436
  msgid "Cancel"
2437
  msgstr "Stornieren"
2441
  msgid "Unable to move photos. Album not deleted."
2442
  msgstr "Nicht in der Lage, Fotos zu bewegen. Album nicht gelöscht."
2443
 
2444
+ #: wppa-album-admin-autosave.php:945
2445
  #, fuzzy
2446
  msgid "Manage Albums"
2447
  msgstr "Alben verwalten"
2448
 
2449
+ #: wppa-album-admin-autosave.php:951
2450
  #, fuzzy
2451
  msgid "Are you sure you want to create a new album?"
2452
  msgstr "Sind Sie sicher, dass Sie ein neues Album erstellen möchten?"
2453
 
2454
+ #: wppa-album-admin-autosave.php:956
2455
  #, fuzzy
2456
  msgid "Create New Empty Album"
2457
  msgstr "Neues leeres Album erstellen"
2458
 
2459
+ #: wppa-album-admin-autosave.php:962
2460
  #, fuzzy
2461
  msgid "Switch to Collapsable table"
2462
  msgstr "Wechseln Sie zur Brötchenwärmer Tabelle"
2463
 
2464
+ #: wppa-album-admin-autosave.php:965
2465
  #, fuzzy
2466
  msgid "Switch to Flat table"
2467
  msgstr "Wechseln Sie zur Tabellenliste"
2468
 
2469
+ #: wppa-album-admin-autosave.php:977
2470
  #, fuzzy
2471
  msgid "Open all"
2472
+ msgstr "Alle ausklappen"
2473
 
2474
+ #: wppa-album-admin-autosave.php:990
2475
  #, fuzzy
2476
  msgid "Close all"
2477
  msgstr "alle schliessen"
2478
 
2479
+ #: wppa-album-admin-autosave.php:1089 wppa-album-admin-autosave.php:1226
2480
+ #: wppa-album-admin-autosave.php:1397 wppa-album-admin-autosave.php:1492
2481
  #: wppa-photo-admin-autosave.php:1361 wppa-photo-admin-autosave.php:1480
2482
  #, fuzzy
2483
  msgid "ID"
2484
  msgstr "ID"
2485
 
2486
+ #: wppa-album-admin-autosave.php:1131 wppa-album-admin-autosave.php:1268
2487
+ #: wppa-album-admin-autosave.php:1440 wppa-album-admin-autosave.php:1535
2488
  #, fuzzy
2489
  msgid "Order"
2490
  msgstr "Bestellen"
2491
 
2492
+ #: wppa-album-admin-autosave.php:1141 wppa-album-admin-autosave.php:1278
2493
+ #: wppa-album-admin-autosave.php:1450 wppa-album-admin-autosave.php:1545
2494
  #, fuzzy
2495
  msgid "Parent"
2496
  msgstr "Eltern"
2497
 
2498
+ #: wppa-album-admin-autosave.php:1149 wppa-album-admin-autosave.php:1286
2499
+ #: wppa-album-admin-autosave.php:1458 wppa-album-admin-autosave.php:1553
2500
  #, fuzzy
2501
  msgid "Albums/Photos/Moderation required/Scheduled"
2502
  msgstr "Alben/Fotos/Moderation erforderlich/geplant"
2503
 
2504
+ #: wppa-album-admin-autosave.php:1150 wppa-album-admin-autosave.php:1287
2505
+ #: wppa-album-admin-autosave.php:1459 wppa-album-admin-autosave.php:1554
2506
  #, fuzzy
2507
  msgid "A/P/PM/S"
2508
  msgstr "A/P/PM/S"
2509
 
2510
+ #: wppa-album-admin-autosave.php:1153 wppa-album-admin-autosave.php:1191
2511
+ #: wppa-album-admin-autosave.php:1290 wppa-album-admin-autosave.php:1462
2512
+ #: wppa-album-admin-autosave.php:1557 wppa-album-admin-autosave.php:1635
2513
+ #: wppa-album-admin-autosave.php:1742
2514
  #, fuzzy
2515
  msgid "Quick"
2516
  msgstr "Schnell-"
2517
 
2518
+ #: wppa-album-admin-autosave.php:1154 wppa-album-admin-autosave.php:1192
2519
+ #: wppa-album-admin-autosave.php:1291 wppa-album-admin-autosave.php:1463
2520
+ #: wppa-album-admin-autosave.php:1558 wppa-album-admin-autosave.php:1640
2521
+ #: wppa-album-admin-autosave.php:1743
2522
  #, fuzzy
2523
  msgid "Bulk"
2524
  msgstr "Bull"
2525
 
2526
+ #: wppa-album-admin-autosave.php:1155 wppa-album-admin-autosave.php:1193
2527
+ #: wppa-album-admin-autosave.php:1292 wppa-album-admin-autosave.php:1464
2528
+ #: wppa-album-admin-autosave.php:1559 wppa-album-admin-autosave.php:1744
2529
  #, fuzzy
2530
  msgid "Seq"
2531
+ msgstr "lid."
2532
 
2533
+ #: wppa-album-admin-autosave.php:1157 wppa-album-admin-autosave.php:1201
2534
+ #: wppa-album-admin-autosave.php:1204 wppa-album-admin-autosave.php:1294
2535
+ #: wppa-album-admin-autosave.php:1466 wppa-album-admin-autosave.php:1561
2536
+ #: wppa-album-admin-autosave.php:1752 wppa-album-admin-autosave.php:1755
2537
  #, fuzzy
2538
  msgid "Create"
2539
  msgstr "Album konnte nicht erstellt werden"
2540
 
2541
+ #: wppa-album-admin-autosave.php:1200 wppa-album-admin-autosave.php:1751
2542
  #, fuzzy
2543
  msgid "Are you sure you want to create a subalbum?"
2544
  msgstr "Sind Sie sicher, dass Sie eine Subalbum erstellen möchten?"
2545
 
2546
+ #: wppa-album-admin-autosave.php:1307 wppa-album-admin-autosave.php:1588
2547
  #, fuzzy
2548
  msgid "No albums yet."
2549
  msgstr "Noch keine Alben."
2550
 
2551
+ #: wppa-album-admin-autosave.php:1391 wppa-album-admin-autosave.php:1715
2552
  #, fuzzy
2553
  msgid "Collapse subalbums"
2554
  msgstr "Kollaps subalbums"
2555
 
2556
+ #: wppa-album-admin-autosave.php:1392 wppa-album-admin-autosave.php:1716
2557
  #, fuzzy
2558
  msgid "Expand subalbums"
2559
  msgstr "Subalbums erweitern"
2560
 
2561
+ #: wppa-album-admin-autosave.php:1474
2562
  #, fuzzy
2563
  msgid ""
2564
  "The following albums are ---separate--- and do not show up in the generic "
2567
  "Die folgenden Alben sind---separate--- und erscheinen nicht in der "
2568
  "generischen Album-Anzeige"
2569
 
2570
+ #: wppa-album-admin-autosave.php:1604
2571
  #, fuzzy
2572
  msgid "Search for photos to edit"
2573
  msgstr "Suche nach Fotos zu bearbeiten"
2574
 
2575
+ #: wppa-album-admin-autosave.php:1605
2576
  #, fuzzy
2577
  msgid ""
2578
  "Enter search words seperated by commas. Photos will meet all search words by "
2582
  "durch ihre Namen, Beschreibungen, übersetzte Schlüsselwörter und/oder Tags "
2583
  "treffen."
2584
 
2585
+ #: wppa-album-admin-autosave.php:1611
2586
  #, fuzzy
2587
  msgid "Any"
2588
  msgstr "Alle"
2589
 
2590
+ #: wppa-album-admin-autosave.php:1615
2591
  #, fuzzy
2592
  msgid "Search for"
2593
  msgstr "Suche"
2594
 
2595
+ #: wppa-album-admin-autosave.php:1657
2596
  #, fuzzy, php-format
2597
  msgid ""
2598
  "There are <strong>%d</strong> albums and <strong>%d</strong> photos in the "
2600
  msgstr ""
2601
  "Es gibt Alben <strong>%d</strong> und <strong>%d</strong> Fotos im System."
2602
 
2603
+ #: wppa-album-admin-autosave.php:1658
2604
  #, fuzzy, php-format
2605
  msgid "<strong>%d</strong> photos are pending moderation."
2606
  msgstr "<strong>%d</strong> Fotos stehen Mäßigung."
2607
 
2608
+ #: wppa-album-admin-autosave.php:1659
2609
  #, fuzzy, php-format
2610
  msgid "<strong>%d</strong> photos are scheduled for later publishing."
2611
  msgstr "<strong>%d</strong> Fotos sollen später veröffentlichen."
2612
 
2613
+ #: wppa-album-admin-autosave.php:1662
2614
  #, fuzzy, php-format
2615
  msgid "The most recently added album is <strong>%s</strong> (%d)."
2616
  msgstr "Die zuletzt hinzugefügte Album <strong>%s</strong> (%d) ist."
2617
 
2618
+ #: wppa-album-admin-autosave.php:1666
2619
  #, fuzzy, php-format
2620
  msgid "The most recently added photo is <strong>%s</strong> (%d)"
2621
  msgstr "Das meiste hinzugefügte ist zuletzt Foto <strong>%s</strong> (%d)"
2622
 
2623
+ #: wppa-album-admin-autosave.php:1667
2624
  #, fuzzy, php-format
2625
  msgid "in album <strong>%s</strong> (%d)."
2626
  msgstr "Album - <strong>%s</strong> (% d)."
2627
 
2628
+ #: wppa-album-admin-autosave.php:1789
2629
  #, fuzzy, php-format
2630
  msgid "Unable to move photos to album %s. Album not deleted."
2631
  msgstr "Nicht in der Lage bringen Sie Fotos zum Album %s Album nicht gelöscht."
2632
 
2633
+ #: wppa-album-admin-autosave.php:1810
2634
  #, fuzzy, php-format
2635
  msgid "Time is out after %d photo deletes. Please redo this operation"
2636
  msgstr "Es ist nachdem %d Foto gelöscht. Bitte wiederholen Sie diesen Vorgang"
2637
 
2638
+ #: wppa-album-admin-autosave.php:1845
2639
  #, fuzzy
2640
  msgid "Album Deleted."
2641
  msgstr "Album gelöscht."
2642
 
2643
+ #: wppa-album-admin-autosave.php:1867
2644
  #, fuzzy, php-format
2645
  msgid "auto select max %s random"
2646
  msgstr "Auto wählen Sie zufällige max %s"
2647
 
2648
+ #: wppa-album-admin-autosave.php:1869
2649
  #, fuzzy, php-format
2650
  msgid "auto select max %s featured"
2651
  msgstr "automatische Auswahl max. %s vorgestellt"
2652
 
2653
+ #: wppa-album-admin-autosave.php:1871
2654
  #, fuzzy, php-format
2655
  msgid "max %s most recent added"
2656
  msgstr "Max %s jüngsten hinzugefügt"
2657
 
2658
+ #: wppa-album-admin-autosave.php:1873
2659
  #, fuzzy, php-format
2660
  msgid "max %s from (grand)child albums"
2661
  msgstr "Max %s von (groß-) Kind Alben"
2662
 
2663
+ #: wppa-album-admin-autosave.php:1875
2664
  #, fuzzy, php-format
2665
  msgid "max %s most recent from (grand)child albums"
2666
  msgstr "Max %s jüngsten von (groß-) Kind Alben"
2667
 
2668
+ #: wppa-album-admin-autosave.php:1879
2669
  #, fuzzy
2670
  msgid "--- random ---"
2671
  msgstr "Zufall"
2672
 
2673
+ #: wppa-album-admin-autosave.php:1881
2674
  #, fuzzy
2675
  msgid "--- random featured ---"
2676
  msgstr "---zufällige vorgestellten---"
2677
 
2678
+ #: wppa-album-admin-autosave.php:1883
2679
  #, fuzzy
2680
  msgid "--- most recent added ---"
2681
  msgstr "---aktuelle hinzugefügt---"
2682
 
2683
+ #: wppa-album-admin-autosave.php:1885
2684
  #, fuzzy
2685
  msgid "--- random from (grand)children ---"
2686
  msgstr "---random von (Enkel)---"
2687
 
2688
+ #: wppa-album-admin-autosave.php:1887
2689
  #, fuzzy
2690
  msgid "--- most recent from (grand)children ---"
2691
  msgstr "---aktuelle aus (Enkel)---"
2692
 
2693
+ #: wppa-album-admin-autosave.php:1899
2694
  #, fuzzy
2695
  msgid "Nameless, filename = "
2696
  msgstr "Namenlos, Dateiname ="
2697
 
2698
+ #: wppa-album-admin-autosave.php:1942
2699
  #, fuzzy
2700
  msgid ""
2701
  "You can edit top-level album sequence order here when you set the album "
2705
  "Album \"Order #\" oder \"Order # Desc\" in Tabelle IV-D1 Reihenfolge "
2706
  "festlegen."
2707
 
2708
+ #: wppa-album-admin-autosave.php:1945
2709
  #, fuzzy
2710
  msgid ""
2711
  "You can edit sub-album sequence order here when you set the album order to "
2716
  "\"#\" oder \"Order # Desc\" in die \"Sub-Album Sortierreihenfolge:\" "
2717
  "Auswahlfeld oben."
2718
 
2719
+ #: wppa-album-admin-autosave.php:1954
2720
  #, fuzzy
2721
  msgid "Manage album order"
2722
  msgstr "Verwalten Sie Album-Bestellung"
2723
 
2724
+ #: wppa-album-admin-autosave.php:1958
2725
+ #, fuzzy
2726
+ msgid "Change sequence order by drag and drop, or use the up/down arrows."
2727
+ msgstr ""
2728
+ "Ändern Sie der Reihenfolge per Drag and Drop, oder verwenden Sie die Pfeile "
2729
+ "nach oben/unten."
2730
+
2731
+ #: wppa-album-admin-autosave.php:1961
2732
+ #, fuzzy
2733
+ msgid "Do not leave this page unless the bar is entirely green."
2734
+ msgstr ""
2735
+ "Verlassen Sie diese Seite nicht, es sei denn, der Balken komplett grün "
2736
+ "angezeigt wird."
2737
+
2738
+ #: wppa-album-admin-autosave.php:1970 wppa-settings-autosave.php:7914
2739
+ #: wppa-settings-autosave.php:7925 wppa-stereo.php:31
2740
+ #, fuzzy
2741
+ msgid "Color"
2742
+ msgstr "Farbe"
2743
+
2744
+ #: wppa-album-admin-autosave.php:1973
2745
+ #, fuzzy
2746
+ msgid "Meaning"
2747
+ msgstr "Bedeutung"
2748
+
2749
+ #: wppa-album-admin-autosave.php:1983
2750
+ #, fuzzy
2751
+ msgid "Up to date"
2752
+ msgstr "Aktuell"
2753
+
2754
+ #: wppa-album-admin-autosave.php:1991
2755
+ #, fuzzy
2756
+ msgid "Updating"
2757
+ msgstr "Danke, dass du auf die neueste Version aktualisiert hast!"
2758
+
2759
+ #: wppa-album-admin-autosave.php:1999
2760
+ #, fuzzy
2761
+ msgid "Needs update"
2762
+ msgstr "Aktualisierung benötigt"
2763
+
2764
+ #: wppa-album-admin-autosave.php:2007 wppa-maintenance.php:66
2765
+ #: wppa-upload.php:595
2766
+ #, fuzzy
2767
+ msgid "Error"
2768
+ msgstr "ERROR: Illegal Versuch, ein Album zu erstellen."
2769
+
2770
+ #: wppa-album-admin-autosave.php:2213
2771
+ #, fuzzy
2772
+ msgid "To top"
2773
+ msgstr "Nach oben"
2774
+
2775
+ #: wppa-album-admin-autosave.php:2224
2776
+ #, fuzzy
2777
+ msgid "One up"
2778
+ msgstr "Ein bis"
2779
+
2780
+ #: wppa-album-admin-autosave.php:2235
2781
+ #, fuzzy
2782
+ msgid "One down"
2783
+ msgstr "Nach unten"
2784
+
2785
+ #: wppa-album-admin-autosave.php:2246
2786
+ #, fuzzy
2787
+ msgid "To bottom"
2788
+ msgstr "Von Oben nach Unten"
2789
+
2790
+ #: wppa-album-admin-autosave.php:2257
2791
  #, fuzzy
2792
  msgid "Id:"
2793
  msgstr "ID:"
2794
 
2795
+ #: wppa-album-admin-autosave.php:2258
2796
  #, fuzzy
2797
  msgid "Ord:"
2798
  msgstr "Ord:"
2799
 
2800
+ #: wppa-album-covers.php:1335 wppa-album-covers.php:1411
2801
+ #: wppa-album-covers.php:1419 wppa-album-covers.php:1643
2802
  msgid "View the album"
2803
  msgstr "Das Album ansehen"
2804
 
2805
+ #: wppa-album-covers.php:1355
2806
  msgid "View the cover photo"
2807
  msgid_plural "View the cover photos"
2808
  msgstr[0] "Titelfoto ansehen"
2809
  msgstr[1] "Titelfotos ansehen"
2810
 
2811
+ #: wppa-album-covers.php:1429
2812
  msgid "View"
2813
  msgstr "Ansehen"
2814
 
2815
+ #: wppa-album-covers.php:1431
2816
  #, php-format
2817
  msgid "%d album"
2818
  msgid_plural "%d albums"
2819
  msgstr[0] "%d Alben"
2820
  msgstr[1] "%d Album"
2821
 
2822
+ #: wppa-album-covers.php:1437 wppa-boxes-html.php:1278 wppa-breadcrumb.php:155
2823
  #: wppa-breadcrumb.php:161 wppa-breadcrumb.php:168 wppa-breadcrumb.php:392
2824
  #: wppa-breadcrumb.php:394 wppa-breadcrumb.php:400 wppa-breadcrumb.php:402
2825
  #: wppa-breadcrumb.php:410 wppa-breadcrumb.php:426 wppa-breadcrumb.php:439
2826
+ #: wppa-breadcrumb.php:445 wppa-utils.php:1738 wppa-utils.php:2393
2827
  msgid "and"
2828
  msgstr "und"
2829
 
2830
+ #: wppa-album-covers.php:1440
2831
  #, php-format
2832
  msgid "%d photo"
2833
  msgid_plural "%d photos"
2834
  msgstr[0] "%d Foto"
2835
  msgstr[1] "%d Fotos"
2836
 
2837
+ #: wppa-album-covers.php:1511
2838
  msgid "New!"
2839
  msgstr "Neu!"
2840
 
2841
+ #: wppa-album-covers.php:1514 wppa-thumbnails.php:1964 wppa-thumbnails.php:1965
2842
  msgid "New"
2843
  msgstr "Neu"
2844
 
2845
+ #: wppa-album-covers.php:1752 wppa-boxes-html.php:844 wppa-non-admin.php:753
2846
+ #: wppa-settings-autosave.php:2293 wppa-settings-autosave.php:5582
2847
+ #: wppa-settings-autosave.php:8321
2848
  msgid "Slideshow"
2849
  msgstr "Diaschau"
2850
 
2851
+ #: wppa-album-covers.php:1753
2852
  msgid "Browse photos"
2853
  msgstr "Durchsuche Fotos"
2854
 
2855
+ #: wppa-album-covers.php:1790 wppa-breadcrumb.php:394 wppa-breadcrumb.php:402
2856
  #: wppa-breadcrumb.php:439 wppa-breadcrumb.php:445
2857
  msgid "Category:"
2858
  msgid_plural "Categories:"
2869
  msgid "Album navigator"
2870
  msgstr "Album-navigator"
2871
 
2872
+ #: wppa-album-navigator-widget.php:96 wppa-album-widget.php:325
2873
  #, fuzzy
2874
  msgid "Album selection or Parent album:"
2875
  msgstr "Ausgewählte Album oder übergeordnete Album:"
2876
 
2877
+ #: wppa-album-navigator-widget.php:99 wppa-album-widget.php:328
2878
  #, fuzzy
2879
  msgid "--- all albums ---"
2880
  msgstr "- Alle Alben -"
2881
 
2882
+ #: wppa-album-navigator-widget.php:100 wppa-album-widget.php:329
2883
  #, fuzzy
2884
  msgid "--- all generic albums ---"
2885
  msgstr "---alle generischen Alben---"
2886
 
2887
+ #: wppa-album-navigator-widget.php:101 wppa-album-widget.php:330
2888
  #, fuzzy
2889
  msgid "--- all separate albums ---"
2890
  msgstr "- Alle -separate- Alben -"
2891
 
2892
+ #: wppa-album-navigator-widget.php:102 wppa-common-functions.php:1683
2893
  #: wppa-items.php:436
2894
  msgid "--- owner/public ---"
2895
  msgstr "--- Besitzer/öffentliche ---"
2896
 
2897
+ #: wppa-album-navigator-widget.php:114 wppa-album-widget.php:350
2898
  #, fuzzy
2899
  msgid "Skip \"empty\" albums:"
2900
  msgstr "\"Leere\" Alben zu überspringen:"
2901
 
2902
+ #: wppa-album-navigator-widget.php:116 wppa-album-widget.php:345
2903
+ #: wppa-album-widget.php:352 wppa-lasten-widget.php:236
2904
  #: wppa-slideshow-widget.php:206 wppa-slideshow-widget.php:226
2905
  #: wppa-slideshow-widget.php:233 wppa-slideshow-widget.php:240
2906
  #: wppa-slideshow-widget.php:247 wppa-slideshow-widget.php:254
2909
  msgid "no."
2910
  msgstr "Nr."
2911
 
2912
+ #: wppa-album-navigator-widget.php:117 wppa-album-widget.php:346
2913
+ #: wppa-album-widget.php:353 wppa-lasten-widget.php:237
2914
  #: wppa-slideshow-widget.php:207 wppa-slideshow-widget.php:227
2915
  #: wppa-slideshow-widget.php:234 wppa-slideshow-widget.php:241
2916
  #: wppa-slideshow-widget.php:248 wppa-slideshow-widget.php:255
2924
  msgid "WPPA+ Albums"
2925
  msgstr "WPPA + Alben"
2926
 
2927
+ #: wppa-album-widget.php:16 wppa-album-widget.php:315
2928
  #, fuzzy
2929
  msgid "Thumbnail Albums"
2930
  msgstr "Thumbnail-Alben"
2934
  msgid "Upload at least %d photos to this album!"
2935
  msgstr "Laden Sie mindestens %d Fotos zu diesem Album!"
2936
 
2937
+ #: wppa-album-widget.php:331
2938
  #, fuzzy
2939
  msgid "--- most recently added albums ---"
2940
  msgstr "---die meisten kürzlich hinzugefügte Alben---"
2941
 
2942
+ #: wppa-album-widget.php:343
2943
  #, fuzzy
2944
  msgid "Show album names:"
2945
  msgstr "Album-Namen anzeigen:"
2946
 
2947
+ #: wppa-album-widget.php:357 wppa-comment-widget.php:120
2948
  #: wppa-featen-widget.php:187 wppa-lasten-widget.php:241
2949
  #: wppa-thumbnail-widget.php:232 wppa-topten-widget.php:392
2950
  #, fuzzy
3024
  msgid "Mean value"
3025
  msgstr "Mittelwert"
3026
 
3027
+ #: wppa-bestof-widget.php:178 wppa-potd-admin.php:132
3028
+ #: wppa-topten-widget.php:364
3029
  #, fuzzy
3030
  msgid "Subtitle:"
3031
  msgstr "Untertitel:"
3033
  #: wppa-bestof-widget.php:179
3034
  #, fuzzy
3035
  msgid "No of max ratings:"
3036
+ msgstr "Anzahl der max Bewertungen:"
3037
 
3038
  #: wppa-bestof-widget.php:184 wppa-topten-widget.php:375
3039
  #, fuzzy
3040
  msgid "Mean rating:"
3041
+ msgstr "Durchschnittliche Bewertung:"
3042
 
3043
  #: wppa-bestof-widget.php:189 wppa-topten-widget.php:380
3044
  #, fuzzy
3045
  msgid "Rating count:"
3046
  msgstr "Bewertungen"
3047
 
3048
+ #: wppa-bestof-widget.php:198 wppa-common-functions.php:1665
3049
+ #: wppa-import.php:1604 wppa-items.php:424 wppa-potd-admin.php:100
3050
+ #: wppa-potd-admin.php:136 wppa-settings-autosave.php:1393
3051
+ #: wppa-settings-autosave.php:1742 wppa-settings-autosave.php:1947
3052
+ #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:3827
3053
+ #: wppa-settings-autosave.php:4015 wppa-settings-autosave.php:4129
3054
+ #: wppa-settings-autosave.php:5656 wppa-settings-autosave.php:6389
3055
+ #: wppa-settings-autosave.php:7798 wppa-settings-autosave.php:8017
3056
+ #: wppa-settings-autosave.php:8073 wppa-settings-autosave.php:8936
3057
+ #: wppa-settings-autosave.php:9093 wppa-thumbnail-widget.php:200
3058
+ #: wppa-tinymce-scripts.php:287 wppa-tinymce-shortcodes.php:616
3059
+ #: wppa-watermark.php:519
3060
  msgid "--- none ---"
3061
  msgstr "--- keine ---"
3062
 
3066
  msgstr "Die Autoren-Alben"
3067
 
3068
  #: wppa-bestof-widget.php:200
3069
+ #, fuzzy
3070
  msgid "The photos in the authors album(s), thumbnails"
3071
+ msgstr "Die Fotos in der Autoren-Alben, Miniaturen"
3072
 
3073
  #: wppa-bestof-widget.php:201
3074
+ #, fuzzy
3075
  msgid "The photos in the authors album(s), slideshow"
3076
+ msgstr "Die Fotos in der Autoren-Alben, Diashow"
3077
 
3078
  #: wppa-bestof-widget.php:202
3079
+ #, fuzzy
3080
  msgid "All the authors photos, thumbnails"
3081
+ msgstr "Alle Autoren-Fotos, Miniaturen"
3082
 
3083
  #: wppa-bestof-widget.php:203
3084
+ #, fuzzy
3085
  msgid "All the authors photos, slideshow"
3086
+ msgstr "Alle Autoren-Fotos, Diashow"
3087
 
3088
  #: wppa-boxes-html.php:139 wppa-boxes-html.php:251
3089
  msgid "Photo search results"
3090
  msgstr "Foto Suchergebnisse"
3091
 
3092
  #: wppa-boxes-html.php:383 wppa-breadcrumb.php:143
3093
+ #: wppa-settings-autosave.php:369
3094
  msgid "Albums"
3095
  msgstr "Alben"
3096
 
3103
  msgstr "Kategorie"
3104
 
3105
  #: wppa-boxes-html.php:421 wppa-boxes-html.php:554
3106
+ #: wppa-settings-autosave.php:7913 wppa-settings-autosave.php:7924
3107
  msgid "Text"
3108
  msgstr "Text"
3109
 
3117
  msgid "Items must meet all selected options."
3118
  msgstr "Einzelteile müssen alle ausgewählten Optionen zu treffen."
3119
 
3120
+ #: wppa-boxes-html.php:546 wppa-settings-autosave.php:9197
3121
+ #: wppa-settings-autosave.php:9237 wppa-settings-autosave.php:9259
3122
+ #: wppa-settings-autosave.php:9305
3123
  msgid "Tag"
3124
  msgstr "Tag"
3125
 
3140
  msgid "Super View Photos"
3141
  msgstr "Super View Fotos"
3142
 
3143
+ #: wppa-boxes-html.php:836 wppa-settings-autosave.php:385
3144
+ #: wppa-settings-autosave.php:4887
3145
  msgid "Thumbnails"
3146
  msgstr "Miniaturbilden"
3147
 
3189
  msgid "Social media landing page"
3190
  msgstr "Social-Media-Zielseite"
3191
 
3192
+ #: wppa-boxes-html.php:1279 wppa-utils.php:1738
3193
  #, php-format
3194
  msgid "See this image on %s"
3195
  msgstr "Schau Dir das Bild an auf %s"
3229
  msgid "Comment on Facebook:"
3230
  msgstr "Kommentar auf Facebook:"
3231
 
3232
+ #: wppa-boxes-html.php:1653 wppa-import.php:1305
3233
  msgid "Working..."
3234
  msgstr "Arbeiten..."
3235
 
3236
+ #: wppa-boxes-html.php:1750
3237
+ #, fuzzy
3238
+ msgid "Create Sub Album"
3239
+ msgstr "Album Erstellen"
3240
 
3241
  #: wppa-boxes-html.php:1750
3242
  msgid "Create Album"
3243
  msgstr "Album Erstellen"
3244
 
3245
+ #: wppa-boxes-html.php:1797
3246
  msgid "Enter album name."
3247
  msgstr "Albumnamen eingeben."
3248
 
3249
+ #: wppa-boxes-html.php:1799 wppa-boxes-html.php:2661
3250
  msgid "Don't leave this blank!"
3251
  msgstr "Hinterlasse einen Kommentar"
3252
 
3253
+ #: wppa-boxes-html.php:1820
3254
  msgid "Enter album description"
3255
  msgstr "Album Beschreibung eingeben"
3256
 
3257
+ #: wppa-boxes-html.php:1848
3258
  msgid "Create album"
3259
  msgstr "Album Erstellen"
3260
 
3261
+ #: wppa-boxes-html.php:1951 wppa-boxes-html.php:1965 wppa-functions.php:4512
3262
  msgid "Max uploads reached"
3263
  msgstr "Max Uploads erreicht"
3264
 
3265
+ #: wppa-boxes-html.php:2030 wppa-upload.php:181
3266
  msgid "Upload Photo"
3267
  msgstr "Upload Foto"
3268
 
3269
+ #: wppa-boxes-html.php:2112
3270
  #, fuzzy
3271
  msgid "Select Photo / Video / Camera"
3272
  msgstr "Wählen Sie Foto / Video / Kamera"
3273
 
3274
+ #: wppa-boxes-html.php:2115
3275
  #, fuzzy
3276
  msgid "Select Photo / Camera"
3277
  msgstr "Wählen Sie Foto / Kamera"
3278
 
3279
+ #: wppa-boxes-html.php:2120
3280
  #, fuzzy
3281
  msgid "Select Photo / Video"
3282
  msgstr "Wählen Sie Foto / Video"
3283
 
3284
+ #: wppa-boxes-html.php:2123
3285
  #, fuzzy
3286
  msgid "Select Photo"
3287
  msgstr "Foto auswählen"
3288
 
3289
+ #: wppa-boxes-html.php:2130
3290
  #, fuzzy
3291
  msgid "Select Photos / Video / Camera"
3292
  msgstr "Wählen Sie Fotos / Video / Kamera"
3293
 
3294
+ #: wppa-boxes-html.php:2133
3295
  #, fuzzy
3296
  msgid "Select Photos / Camera"
3297
  msgstr "Wählen Sie Fotos / Kamera"
3298
 
3299
+ #: wppa-boxes-html.php:2138
3300
  #, fuzzy
3301
  msgid "Select Photos / Video"
3302
  msgstr "Wählen Sie Fotos / Video"
3303
 
3304
+ #: wppa-boxes-html.php:2141
3305
  #, fuzzy
3306
  msgid "Select Photos"
3307
  msgstr "Fotos auswählen"
3308
 
3309
+ #: wppa-boxes-html.php:2179
3310
  #, php-format
3311
  msgid "You may upload %d photo"
3312
  msgid_plural ""
3317
  "Sie können bis zu %d Fotos gleichzeitig Hochladen wenn ihr browser HTML-5 "
3318
  "multiple file upload unterstützt"
3319
 
3320
+ #: wppa-boxes-html.php:2187
3321
  #, php-format
3322
  msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
3323
  msgstr "Max Fotogröße: %d x %d (% 2.1f MegaPixel)"
3324
 
3325
+ #: wppa-boxes-html.php:2216 wppa-import.php:561 wppa-upload.php:167
3326
+ #: wppa-upload.php:309 wppa-upload.php:383
3327
  msgid "Apply watermark file:"
3328
  msgstr "Wende Wasserzeichen-Datei an:"
3329
 
3330
+ #: wppa-boxes-html.php:2238 wppa-import.php:565 wppa-upload.php:171
3331
+ #: wppa-upload.php:313 wppa-upload.php:387
3332
  msgid "Position:"
3333
  msgstr "Position:"
3334
 
3335
+ #: wppa-boxes-html.php:2266
3336
  msgid ""
3337
  "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
3338
  "photoname if available, else the original filename will be used as photo "
3341
  "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 005 (Graphic Name) wie "
3342
  "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
3343
 
3344
+ #: wppa-boxes-html.php:2271
3345
  msgid ""
3346
  "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
3347
  "available, else the original filename will be used as photo name."
3349
  "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 120 (Caption) wie "
3350
  "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
3351
 
3352
+ #: wppa-boxes-html.php:2276
3353
  msgid ""
3354
  "If you leave this blank, the original filename will be used as photo name."
3355
  msgstr ""
3356
  "Wenn das leer gelassen wird, wird der Originalname der Datei als Fotoname "
3357
  "verwendet."
3358
 
3359
+ #: wppa-boxes-html.php:2281 wppa-settings-autosave.php:1681
3360
  #, fuzzy
3361
  msgid "Photo name"
3362
  msgstr ""
3363
  "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 120 (Caption) wie "
3364
  "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
3365
 
3366
+ #: wppa-boxes-html.php:2299
3367
  #, fuzzy
3368
  msgid "Photo description"
3369
  msgstr "Foto-Beschreibung"
3370
 
3371
+ #: wppa-boxes-html.php:2327
3372
  msgid "hidden"
3373
  msgstr "verborgen"
3374
 
3375
+ #: wppa-boxes-html.php:2397
3376
  msgid "Preview tags:"
3377
  msgstr "Vorschau tags:"
3378
 
3379
+ #: wppa-boxes-html.php:2414
3380
+ #, fuzzy
3381
+ msgid "Blog it?"
3382
+ msgstr "Blog es?"
3383
+
3384
+ #: wppa-boxes-html.php:2424
3385
+ #, fuzzy
3386
+ msgid "Upload and blog"
3387
+ msgstr "Upload und blog"
3388
 
3389
+ #: wppa-boxes-html.php:2428 wppa-boxes-html.php:2491
3390
  msgid "Upload photo"
3391
  msgstr "Foto hochladen"
3392
 
3393
+ #: wppa-boxes-html.php:2436
3394
+ #, fuzzy
3395
+ msgid "Post title:"
3396
+ msgstr "Beitragstitel"
3397
+
3398
+ #: wppa-boxes-html.php:2446
3399
+ #, fuzzy
3400
+ msgid "Text BEFORE the image:"
3401
+ msgstr "Text vor dem Bild:"
3402
+
3403
+ #: wppa-boxes-html.php:2456
3404
+ #, fuzzy
3405
+ msgid "Text AFTER the image:"
3406
+ msgstr "Text nach dem Bild:"
3407
+
3408
+ #: wppa-boxes-html.php:2476
3409
+ msgid "Please select an album and try again"
3410
+ msgstr "Bitte wählen Sie ein Album aus und versuchen Sie es erneut"
3411
+
3412
+ #: wppa-boxes-html.php:2547
3413
  msgid "ERROR: unable to upload files."
3414
  msgstr "ERROR: kann keine Dateien hochladen."
3415
 
3416
+ #: wppa-boxes-html.php:2601
3417
+ #, fuzzy
3418
+ msgid "Edit Album Info"
3419
+ msgstr "Fotoalbum bearbeiten"
3420
 
3421
+ #: wppa-boxes-html.php:2659
3422
  msgid "Enter album name"
3423
  msgstr "Albumnamen eingeben"
3424
 
3425
+ #: wppa-boxes-html.php:2681
3426
  msgid "Album description:"
3427
  msgstr "Album Beschreibung:"
3428
 
3429
+ #: wppa-boxes-html.php:2735
3430
  msgid "Update album"
3431
  msgstr "Album updaten"
3432
 
3433
+ #: wppa-boxes-html.php:2804
3434
  msgid "wrote:"
3435
  msgstr "schrieb:"
3436
 
3437
+ #: wppa-boxes-html.php:2866
3438
  msgid "Avatar"
3439
  msgstr "Profilbild"
3440
 
3441
+ #: wppa-boxes-html.php:2909 wppa-links.php:826
3442
  msgid "Awaiting moderation"
3443
  msgstr "Warten auf Moderation"
3444
 
3445
+ #: wppa-boxes-html.php:2912
3446
  msgid "Marked as spam"
3447
  msgstr "Als Spam markiert"
3448
 
3449
+ #: wppa-boxes-html.php:2936
3450
  msgid "Edit!"
3451
  msgstr "Bearbeiten!"
3452
 
3453
+ #: wppa-boxes-html.php:2940
3454
  msgid "Send!"
3455
  msgstr "Absenden!"
3456
 
3457
+ #: wppa-boxes-html.php:3001
3458
  msgid "Your name:"
3459
  msgstr "Dein Name:"
3460
 
3461
+ #: wppa-boxes-html.php:3016
3462
  msgid "Your email:"
3463
  msgstr "Deine E-mail:"
3464
 
3465
+ #: wppa-boxes-html.php:3032
3466
  msgid "Your comment:"
3467
  msgstr "Dein Kommentar:"
3468
 
3469
+ #: wppa-boxes-html.php:3076
3470
  #, php-format
3471
  msgid "You must <a href=\"%s\">login</a> to enter a comment"
3472
  msgstr ""
3473
  "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
3474
  "hinterlassen."
3475
 
3476
+ #: wppa-boxes-html.php:3079
3477
  msgid "You must login to enter a comment"
3478
  msgstr "Sie müssen sich anmelden, um einen Kommentar ein zu geben"
3479
 
3480
+ #: wppa-boxes-html.php:3091 wppa-functions.php:2568 wppa-thumbnails.php:682
3481
  #, php-format
3482
  msgid "%d comment"
3483
  msgid_plural "%d comments"
3484
  msgstr[0] "%d Kommentar"
3485
  msgstr[1] "%d Kommentare"
3486
 
3487
+ #: wppa-boxes-html.php:3095
3488
  msgid "Leave a comment"
3489
  msgstr "Hinterlasse einen Kommentar"
3490
 
3491
+ #: wppa-boxes-html.php:3192
3492
  msgid "Show IPTC data"
3493
  msgstr "IPTC-Daten anzeigen"
3494
 
3495
+ #: wppa-boxes-html.php:3203
3496
  msgid "Hide IPTC data"
3497
  msgstr "IPTC-Daten ausblenden"
3498
 
3499
+ #: wppa-boxes-html.php:3251
3500
  msgid "No IPTC data"
3501
  msgstr "Keine IPTC-Daten"
3502
 
3503
+ #: wppa-boxes-html.php:3303
3504
  msgid "Show EXIF data"
3505
  msgstr "EXIF-Daten anzeigen"
3506
 
3507
+ #: wppa-boxes-html.php:3314
3508
  msgid "Hide EXIF data"
3509
  msgstr "EXIF-Daten ausblenden"
3510
 
3511
+ #: wppa-boxes-html.php:3366
3512
  msgid "No EXIF data"
3513
  msgstr "Keine EXIF-Daten"
3514
 
3515
+ #: wppa-boxes-html.php:3480 wppa-boxes-html.php:3485
3516
  msgid "< Previous"
3517
  msgstr "< Vorherige"
3518
 
3519
+ #: wppa-boxes-html.php:3491 wppa-boxes-html.php:3496
3520
  msgid "Next >"
3521
  msgstr "Nächstes >"
3522
 
3523
+ #: wppa-boxes-html.php:3598 wppa-boxes-html.php:3677
3524
  msgid "See the authors albums"
3525
  msgstr "Siehe die Autoren Alben"
3526
 
3527
+ #: wppa-boxes-html.php:3602 wppa-boxes-html.php:3610 wppa-boxes-html.php:3681
3528
  msgid "See the authors photos"
3529
  msgstr "Siehe die Autoren Fotos"
3530
 
3531
+ #: wppa-boxes-html.php:3606 wppa-boxes-html.php:3614 wppa-boxes-html.php:3685
3532
  msgid "See all the authors photos"
3533
  msgstr "Siehe Alle Autoren Fotos"
3534
 
3535
+ #: wppa-boxes-html.php:3640
3536
  #, php-format
3537
  msgid "Photo by: %s"
3538
  msgstr "Foto von: %s"
3539
 
3540
+ #: wppa-boxes-html.php:3643 wppa-boxes-html.php:3706
3541
  #, php-format
3542
  msgid "%d max rating"
3543
  msgid_plural "%d max ratings"
3544
  msgstr[0] "%d max Bewertung"
3545
  msgstr[1] "%d max Bewertungen"
3546
 
3547
+ #: wppa-boxes-html.php:3647 wppa-boxes-html.php:3710 wppa-non-admin.php:922
3548
  #: wppa-topten-widget.php:196 wppa-topten-widget.php:213
3549
  #: wppa-topten-widget.php:249
3550
  #, php-format
3553
  msgstr[0] "%d Stimme"
3554
  msgstr[1] "%d Stimmen"
3555
 
3556
+ #: wppa-boxes-html.php:3651
3557
  #, php-format
3558
  msgid "Rating: %4.2f."
3559
  msgstr "Bewertung: %4.2f."
3560
 
3561
+ #: wppa-boxes-html.php:3659
3562
  #, php-format
3563
  msgid "Photo %s not found."
3564
  msgstr "Foto %s nicht gefunden."
3565
 
3566
+ #: wppa-boxes-html.php:3714
3567
  #, php-format
3568
  msgid "Mean value: %4.2f."
3569
  msgstr "Mittelwert: %4.2f."
3570
 
3571
+ #: wppa-boxes-html.php:4061 wppa-photo-admin-autosave.php:196
3572
  msgid "Refresh"
3573
  msgstr "Aktualisieren"
3574
 
3771
  #: wppa-comment-admin.php:76
3772
  #, fuzzy
3773
  msgid "Email:"
3774
+ msgstr "Bitte geben Sie eine gültige eMail-Adresse ein"
3775
 
3776
+ #: wppa-comment-admin.php:80 wppa-utils.php:1037
3777
  #, fuzzy
3778
  msgid "Comment:"
3779
+ msgstr "Bitte geben Sie einen Kommentar ein."
3780
 
3781
+ #: wppa-comment-admin.php:86
 
3782
  #, fuzzy
3783
  msgid "Save Changes"
3784
  msgstr "Änderungen speichern"
3827
  #: wppa-comment-admin.php:196
3828
  #, fuzzy
3829
  msgid "Total:"
3830
+ msgstr "Gesammtsumme:"
3831
 
3832
  #: wppa-comment-admin.php:200
3833
  #, fuzzy
3854
  msgid "Linkpage:"
3855
  msgstr "Linkpage:"
3856
 
3857
+ #: wppa-comment-admin.php:231 wppa-settings-autosave.php:465
3858
+ #: wppa-settings-autosave.php:8191
3859
  #, fuzzy
3860
  msgid "--- Please select a page ---"
3861
  msgstr "Bitte wählen Sie eine Seite…"
3866
  "You can see the photo and all its comments on the selected page by clicking "
3867
  "on the thumbnail image"
3868
  msgstr ""
3869
+ "Das Foto und alle seine Kommentare seht auf der ausgewählten Seite ihr durch "
3870
+ "Klicken auf die Miniaturansicht"
3871
 
3872
  #: wppa-comment-admin.php:250
3873
  #, fuzzy
3934
  msgid "Save Settings / Perform bulk action"
3935
  msgstr "Einstellungen speichern / durchführen Bulk Aktion"
3936
 
3937
+ #: wppa-comment-admin.php:309 wppa-comment-admin.php:396 wppa-non-admin.php:758
3938
  msgid "Photo"
3939
  msgstr "Foto"
3940
 
3943
  msgid "(Album)"
3944
  msgstr "Album:"
3945
 
3946
+ #: wppa-comment-admin.php:311 wppa-comment-admin.php:398 wppa-potd-admin.php:70
3947
+ #: wppa-potd-admin.php:357 wppa-settings-autosave.php:514
3948
+ #: wppa-settings-autosave.php:676 wppa-settings-autosave.php:698
3949
+ #: wppa-settings-autosave.php:1446 wppa-settings-autosave.php:1467
3950
+ #: wppa-settings-autosave.php:3092 wppa-settings-autosave.php:3113
3951
+ #: wppa-settings-autosave.php:3450 wppa-settings-autosave.php:3474
3952
+ #: wppa-settings-autosave.php:4779 wppa-settings-autosave.php:4800
3953
+ #: wppa-settings-autosave.php:4976 wppa-settings-autosave.php:5000
3954
+ #: wppa-settings-autosave.php:6006 wppa-settings-autosave.php:6677
3955
+ #: wppa-settings-autosave.php:6699 wppa-settings-autosave.php:7429
3956
+ #: wppa-settings-autosave.php:7453 wppa-settings-autosave.php:9175
3957
+ #: wppa-settings-autosave.php:9196 wppa-settings-autosave.php:9236
3958
+ #: wppa-settings-autosave.php:9258 wppa-settings-autosave.php:9304
3959
  #, fuzzy
3960
  msgid "#"
3961
  msgstr "# [ hash vor der Sortierungsnummer ]"
3973
  #: wppa-comment-admin.php:314 wppa-comment-admin.php:401
3974
  #, fuzzy
3975
  msgid "Email"
3976
+ msgstr "Bitte geben Sie eine gültige eMail-Adresse ein"
3977
 
3978
  #: wppa-comment-admin.php:315 wppa-comment-admin.php:402
3979
  #, fuzzy
3983
  #: wppa-comment-admin.php:316 wppa-comment-admin.php:403
3984
  #, fuzzy
3985
  msgid "Comment"
3986
+ msgstr "Bitte geben Sie einen Kommentar ein."
3987
 
3988
  #: wppa-comment-admin.php:354
3989
  #, fuzzy
3990
  msgid "Click to see the fullsize photo and all comments"
3991
+ msgstr "Klicken Sie, um das Fullsize-Foto und alle Kommentare anzeigen"
3992
 
3993
  #: wppa-comment-admin.php:365
3994
  #, fuzzy, php-format
3995
  msgid "Reply to your comment on photo: %s on %s"
3996
  msgstr "Antwort auf Ihren Kommentar auf Foto: %s %s"
3997
 
3998
+ #: wppa-comment-admin.php:366 wppa-functions.php:2361
3999
  msgid "Reply"
4000
  msgstr "Antwort"
4001
 
4032
  #: wppa-comment-widget.php:14
4033
  #, fuzzy
4034
  msgid "WPPA+ Comments on Photos"
4035
+ msgstr "WPPA + Kommentare zu Fotos"
4036
 
4037
  #: wppa-comment-widget.php:15 wppa-comment-widget.php:116
4038
  #, fuzzy
4039
  msgid "Comments on Photos"
4040
+ msgstr "Kommentare zu Fotos"
4041
 
4042
+ #: wppa-comment-widget.php:73 wppa-non-admin.php:892 wppa-thumbnails.php:500
4043
  msgid "wrote"
4044
  msgstr "schrieb"
4045
 
4046
  #: wppa-comment-widget.php:87 wppa-featen-widget.php:137
4047
+ #: wppa-lasten-widget.php:148 wppa-non-admin.php:893 wppa-non-admin.php:898
4048
+ #: wppa-non-admin.php:903 wppa-non-admin.php:907 wppa-non-admin.php:914
4049
+ #: wppa-non-admin.php:924 wppa-potd-widget.php:159
4050
  #: wppa-thumbnail-widget.php:114 wppa-topten-widget.php:257
4051
  msgid "Photo not found"
4052
  msgstr "Foto nicht gefunden"
4053
 
4054
+ #: wppa-comment-widget.php:93 wppa-non-admin.php:894
4055
  msgid "There are no commented photos (yet)"
4056
  msgstr "Es sind (noch) keine kommentierte Fotos"
4057
 
4058
+ #: wppa-common-functions.php:635 wppa-functions.php:4930
 
 
 
 
4059
  #, php-format
4060
  msgid "%d second"
4061
  msgid_plural "%d seconds"
4062
  msgstr[0] "%d Sekunde"
4063
  msgstr[1] "%d Sekunden"
4064
 
4065
+ #: wppa-common-functions.php:639 wppa-functions.php:4926
4066
+ #: wppa-settings-autosave.php:6522 wppa-settings-autosave.php:6523
4067
  #, php-format
4068
  msgid "%d minute"
4069
  msgid_plural "%d minutes"
4070
  msgstr[0] "%d Minute"
4071
  msgstr[1] "%d Minuten"
4072
 
4073
+ #: wppa-common-functions.php:643 wppa-functions.php:4922
4074
+ #: wppa-settings-autosave.php:6524 wppa-settings-autosave.php:7808
4075
  #, php-format
4076
  msgid "%d hour"
4077
  msgid_plural "%d hours"
4078
  msgstr[0] "%d Stunde"
4079
  msgstr[1] "%d Stunden"
4080
 
4081
+ #: wppa-common-functions.php:647 wppa-functions.php:4918
4082
+ #: wppa-settings-autosave.php:6525 wppa-settings-autosave.php:7809
4083
+ #: wppa-settings-autosave.php:7810 wppa-settings-autosave.php:7811
4084
+ #: wppa-settings-autosave.php:7812 wppa-settings-autosave.php:7813
4085
+ #: wppa-settings-autosave.php:7814 wppa-settings-autosave.php:7816
4086
+ #: wppa-settings-autosave.php:7817 wppa-settings-autosave.php:7818
4087
+ #: wppa-settings-autosave.php:8996
4088
  #, php-format
4089
  msgid "%d day"
4090
  msgid_plural "%d days"
4091
  msgstr[0] "%d Tag"
4092
  msgstr[1] "%d Tage"
4093
 
4094
+ #: wppa-common-functions.php:651 wppa-functions.php:4914
4095
+ #: wppa-settings-autosave.php:6526 wppa-settings-autosave.php:7815
4096
+ #: wppa-settings-autosave.php:7819 wppa-settings-autosave.php:7820
4097
+ #: wppa-settings-autosave.php:7821 wppa-settings-autosave.php:8997
4098
  #, php-format
4099
  msgid "%d week"
4100
  msgid_plural "%d weeks"
4101
  msgstr[0] "%d Woche"
4102
  msgstr[1] "%d Wochen"
4103
 
4104
+ #: wppa-common-functions.php:655 wppa-settings-autosave.php:7822
4105
+ #: wppa-settings-autosave.php:8998 wppa-settings-autosave.php:8999
4106
+ #: wppa-settings-autosave.php:9000 wppa-settings-autosave.php:9001
4107
+ #: wppa-settings-autosave.php:9002 wppa-settings-autosave.php:9004
4108
  #, php-format
4109
  msgid "%d month"
4110
  msgid_plural "%d months"
4111
  msgstr[0] "%d Monat"
4112
  msgstr[1] "%d Monate"
4113
 
4114
+ #: wppa-common-functions.php:658 wppa-settings-autosave.php:9003
4115
+ #: wppa-settings-autosave.php:9005
4116
  #, php-format
4117
  msgid "%d year"
4118
  msgid_plural "%d years"
4119
  msgstr[0] "%d Jahr"
4120
  msgstr[1] "%d Jahre"
4121
 
4122
+ #: wppa-common-functions.php:1381
4123
  #, php-format
4124
  msgid ""
4125
  "Based on your server memory limit you should not upload images larger then "
4128
  "Basierend auf Ihrem Server Speichergrenze sollten Sie keine Bilder hochladen "
4129
  "größer <strong>dann %d x %d (% 2.1f MP)</strong>"
4130
 
4131
+ #: wppa-common-functions.php:1659
4132
  msgid "- select an album -"
4133
  msgstr "- wählen Sie ein Album -"
4134
 
4135
+ #: wppa-common-functions.php:1671 wppa-items.php:432
4136
  #: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
4137
  #: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
4138
  #: wppa-tagcloud-widget.php:79
4139
  msgid "--- all ---"
4140
  msgstr "--- alle ---"
4141
 
4142
+ #: wppa-common-functions.php:1677
4143
  msgid "--- generic ---"
4144
  msgstr "--- generikum ---"
4145
 
4146
+ #: wppa-common-functions.php:1694
4147
  msgid "--- multiple see below ---"
4148
  msgstr "--- Mehrere siehe unten ---"
4149
 
4150
+ #: wppa-common-functions.php:1700
4151
  msgid "--- a selection box ---"
4152
  msgstr "--- eine Auswahlbox ---"
4153
 
4154
+ #: wppa-common-functions.php:1747 wppa-import.php:1605 wppa-items.php:428
4155
+ #: wppa-settings-autosave.php:8017 wppa-settings-autosave.php:8073
 
4156
  msgid "--- separate ---"
4157
  msgstr "--- separat ---"
4158
 
4159
+ #: wppa-common-functions.php:1853
4160
  msgid "Photo id ="
4161
  msgstr "Foto id ="
4162
 
4163
+ #: wppa-common-functions.php:1853
4164
  msgid "Value ="
4165
  msgstr "Wert ="
4166
 
4167
+ #: wppa-date-time.php:85 wppa-date-time.php:210
4168
  #, fuzzy
4169
  msgid "Jan"
4170
  msgstr "Jan"
4171
 
4172
+ #: wppa-date-time.php:85 wppa-date-time.php:210
4173
  #, fuzzy
4174
  msgid "Feb"
4175
  msgstr "Feb"
4176
 
4177
+ #: wppa-date-time.php:85 wppa-date-time.php:210
4178
  #, fuzzy
4179
  msgid "Mar"
4180
  msgstr "Mär"
4181
 
4182
+ #: wppa-date-time.php:85 wppa-date-time.php:210
4183
  #, fuzzy
4184
  msgid "Apr"
4185
  msgstr "Apr"
4186
 
4187
+ #: wppa-date-time.php:85 wppa-date-time.php:210
4188
  #, fuzzy
4189
  msgid "May"
4190
  msgstr "Mai"
4191
 
4192
+ #: wppa-date-time.php:85 wppa-date-time.php:210
4193
  #, fuzzy
4194
  msgid "Jun"
4195
  msgstr "Jun"
4196
 
4197
+ #: wppa-date-time.php:85 wppa-date-time.php:210
4198
  #, fuzzy
4199
  msgid "Jul"
4200
  msgstr "Jul"
4201
 
4202
+ #: wppa-date-time.php:85 wppa-date-time.php:210
4203
  #, fuzzy
4204
  msgid "Aug"
4205
  msgstr "Aug"
4206
 
4207
+ #: wppa-date-time.php:85 wppa-date-time.php:210
4208
  #, fuzzy
4209
  msgid "Sep"
4210
  msgstr "Sep"
4211
 
4212
+ #: wppa-date-time.php:85 wppa-date-time.php:210
4213
  #, fuzzy
4214
  msgid "Oct"
4215
  msgstr "Okt"
4216
 
4217
+ #: wppa-date-time.php:85 wppa-date-time.php:210
4218
  #, fuzzy
4219
  msgid "Nov"
4220
  msgstr "Nov"
4221
 
4222
+ #: wppa-date-time.php:85 wppa-date-time.php:210
4223
  #, fuzzy
4224
  msgid "Dec"
4225
  msgstr "Dez"
4238
  msgid "n.a."
4239
  msgstr "n. z."
4240
 
4241
+ #: wppa-exif-iptc-common.php:239 wppa-utils.php:2625
4242
  msgid "Not Defined"
4243
  msgstr "Nicht definiert"
4244
 
4245
+ #: wppa-exif-iptc-common.php:240 wppa-utils.php:2626
4246
  msgid "Manual"
4247
  msgstr "Manuell"
4248
 
4249
+ #: wppa-exif-iptc-common.php:241 wppa-utils.php:2627
4250
  msgid "Program AE"
4251
  msgstr "Program AE"
4252
 
4253
+ #: wppa-exif-iptc-common.php:242 wppa-utils.php:2628
4254
  msgid "Aperture-priority AE"
4255
  msgstr "Aperture-priority AE"
4256
 
4257
+ #: wppa-exif-iptc-common.php:243 wppa-utils.php:2629
4258
  msgid "Shutter speed priority AE"
4259
  msgstr "Verschlusszeitvorrang bei AE"
4260
 
4261
+ #: wppa-exif-iptc-common.php:244 wppa-utils.php:2630
4262
  msgid "Creative (Slow speed)"
4263
  msgstr "Creative (Slow-Speed)"
4264
 
4265
+ #: wppa-exif-iptc-common.php:245 wppa-utils.php:2631
4266
  msgid "Action (High speed)"
4267
  msgstr "Aktion (High-Speed)"
4268
 
4269
+ #: wppa-exif-iptc-common.php:246 wppa-utils.php:2632
4270
  msgid "Portrait"
4271
  msgstr "Portrait"
4272
 
4273
+ #: wppa-exif-iptc-common.php:247 wppa-utils.php:2633
4274
  msgid "Landscape"
4275
  msgstr "Querformat"
4276
 
4277
+ #: wppa-exif-iptc-common.php:248 wppa-utils.php:2634
4278
  msgid "Bulb"
4279
  msgstr "Birne"
4280
 
4281
+ #: wppa-exif-iptc-common.php:270 wppa-utils.php:2635
4282
  msgid "Average"
4283
  msgstr "Durchschnitt"
4284
 
4285
+ #: wppa-exif-iptc-common.php:271 wppa-utils.php:2636
4286
  msgid "Center-weighted average"
4287
  msgstr "Mittenbetont"
4288
 
4289
+ #: wppa-exif-iptc-common.php:272 wppa-utils.php:2637
4290
  msgid "Spot"
4291
  msgstr "Spot"
4292
 
4293
+ #: wppa-exif-iptc-common.php:273 wppa-utils.php:2638
4294
  msgid "Multi-spot"
4295
  msgstr "Multi-spot"
4296
 
4297
+ #: wppa-exif-iptc-common.php:274 wppa-utils.php:2639
4298
  msgid "Multi-segment"
4299
  msgstr "Multi-segment"
4300
 
4301
+ #: wppa-exif-iptc-common.php:275 wppa-utils.php:2640
4302
  msgid "Partial"
4303
  msgstr "Partiell"
4304
 
4305
+ #: wppa-exif-iptc-common.php:276 wppa-settings-autosave.php:4904
4306
+ #: wppa-utils.php:2641
4307
  msgid "Other"
4308
  msgstr "Sonstiges"
4309
 
4310
+ #: wppa-exif-iptc-common.php:312 wppa-utils.php:2642
4311
  msgid "No Flash"
4312
  msgstr "Kein Blitz"
4313
 
4314
+ #: wppa-exif-iptc-common.php:314 wppa-utils.php:2643
4315
  msgid "Fired"
4316
  msgstr "Fired"
4317
 
4318
+ #: wppa-exif-iptc-common.php:316 wppa-utils.php:2644
4319
  msgid "Fired, Return not detected"
4320
  msgstr "Fired, Return not detected"
4321
 
4322
+ #: wppa-exif-iptc-common.php:318 wppa-utils.php:2645
4323
  msgid "Fired, Return detected"
4324
  msgstr "Fired, Return detected"
4325
 
4326
+ #: wppa-exif-iptc-common.php:320 wppa-utils.php:2646
4327
  msgid "On, Did not fire"
4328
  msgstr "An, kein Blitz"
4329
 
4330
+ #: wppa-exif-iptc-common.php:322 wppa-utils.php:2647
4331
  msgid "On, Fired"
4332
  msgstr "An, Fired"
4333
 
4334
+ #: wppa-exif-iptc-common.php:324 wppa-utils.php:2648
4335
  msgid "On, Return not detected"
4336
  msgstr "An, Return not detected"
4337
 
4338
+ #: wppa-exif-iptc-common.php:326 wppa-utils.php:2649
4339
  msgid "On, Return detected"
4340
  msgstr "An, Return detected"
4341
 
4342
+ #: wppa-exif-iptc-common.php:328 wppa-utils.php:2650
4343
  msgid "Off, Did not fire"
4344
  msgstr "Aus, kein Blitz"
4345
 
4346
+ #: wppa-exif-iptc-common.php:330 wppa-utils.php:2651
4347
  msgid "Off, Did not fire, Return not detected"
4348
  msgstr "Aus, kein Blitz, nicht erkannt und Rück"
4349
 
4350
+ #: wppa-exif-iptc-common.php:332 wppa-utils.php:2652
4351
  msgid "Auto, Did not fire"
4352
  msgstr "Auto, kein Blitz"
4353
 
4354
+ #: wppa-exif-iptc-common.php:334 wppa-utils.php:2653
4355
  msgid "Auto, Fired"
4356
  msgstr "Auto, Blitz"
4357
 
4358
+ #: wppa-exif-iptc-common.php:336 wppa-utils.php:2654
4359
  msgid "Auto, Fired, Return not detected"
4360
  msgstr "Auto, Blitz, nicht erkannt und Rück"
4361
 
4362
+ #: wppa-exif-iptc-common.php:338 wppa-utils.php:2655
4363
  msgid "Auto, Fired, Return detected"
4364
  msgstr "Auto, Blitz, erkannt und Rück"
4365
 
4366
+ #: wppa-exif-iptc-common.php:340 wppa-utils.php:2656
4367
  msgid "No flash function"
4368
  msgstr "Keine Blitzfunktion"
4369
 
4370
+ #: wppa-exif-iptc-common.php:342 wppa-utils.php:2657
4371
  msgid "Off, No flash function"
4372
  msgstr "Aus, Keine Blitzfunktion"
4373
 
4374
+ #: wppa-exif-iptc-common.php:344 wppa-utils.php:2658
4375
  msgid "Fired, Red-eye reduction"
4376
  msgstr "Blitz, Rote-Augen-Reduzierung"
4377
 
4378
+ #: wppa-exif-iptc-common.php:346 wppa-utils.php:2659
4379
  msgid "Fired, Red-eye reduction, Return not detected"
4380
  msgstr "Blitz, Rote-Augen-Reduzierung, nicht erkannt und Rück"
4381
 
4382
+ #: wppa-exif-iptc-common.php:348 wppa-utils.php:2660
4383
  msgid "Fired, Red-eye reduction, Return detected"
4384
  msgstr "Blitz, Rote-Augen-Reduzierung, erkannt und Rück"
4385
 
4386
+ #: wppa-exif-iptc-common.php:350 wppa-utils.php:2661
4387
  msgid "On, Red-eye reduction"
4388
  msgstr "An, Rote-Augen-Reduzierung"
4389
 
4390
+ #: wppa-exif-iptc-common.php:352 wppa-utils.php:2662
4391
  msgid "Red-eye reduction, Return not detected"
4392
  msgstr "Rote-Augen-Reduzierung, nicht erkannt und Rück"
4393
 
4394
+ #: wppa-exif-iptc-common.php:354 wppa-utils.php:2663
4395
  msgid "On, Red-eye reduction, Return detected"
4396
  msgstr "An, Rote-Augen-Reduzierung, erkannt und Rück"
4397
 
4398
+ #: wppa-exif-iptc-common.php:356 wppa-utils.php:2664
4399
  msgid "Off, Red-eye reduction"
4400
  msgstr "Aus, Rote-Augen-Reduzierung"
4401
 
4402
+ #: wppa-exif-iptc-common.php:358 wppa-utils.php:2665
4403
  msgid "Auto, Did not fire, Red-eye reduction"
4404
  msgstr "Auto, kein Blitz, Rote-Augen-Reduzierung"
4405
 
4406
+ #: wppa-exif-iptc-common.php:360 wppa-utils.php:2666
4407
  msgid "Auto, Fired, Red-eye reduction"
4408
  msgstr "Auto, Blitz, Rote-Augen-Reduzierung"
4409
 
4410
+ #: wppa-exif-iptc-common.php:362 wppa-utils.php:2667
4411
  msgid "Auto, Fired, Red-eye reduction, Return not detected"
4412
  msgstr "Auto, Blitz, Rote-Augen-Reduzierung, nicht erkannt und Rück"
4413
 
4414
+ #: wppa-exif-iptc-common.php:364 wppa-utils.php:2668
4415
  msgid "Auto, Fired, Red-eye reduction, Return detected"
4416
  msgstr "Auto, Blitz, Rote-Augen-Reduzierung, erkannt und Rück"
4417
 
4437
  #: wppa-export.php:81
4438
  #, fuzzy
4439
  msgid "Exporting...<br/>"
4440
+ msgstr "Exportieren...<br>"
4441
 
4442
  #: wppa-export.php:90
4443
  #, fuzzy
4477
  msgid "done."
4478
  msgstr "getan hat."
4479
 
4480
+ #: wppa-export.php:129 wppa-import.php:2231
4481
  #, fuzzy
4482
  msgid "photos processed."
4483
  msgstr "Fotos verarbeitet."
4542
  msgid "Featured Photos"
4543
  msgstr "Beliebte Fotos"
4544
 
4545
+ #: wppa-featen-widget.php:115 wppa-non-admin.php:897
4546
  msgid "View the featured photos"
4547
  msgstr "Sehen Sie die best bewertesten Fotos"
4548
 
4549
+ #: wppa-featen-widget.php:146 wppa-non-admin.php:899
4550
  msgid "There are no featured photos (yet)"
4551
  msgstr "Es sind (noch) keine vorgestellten Fotos"
4552
 
4553
+ #: wppa-functions.php:681
4554
  msgid "No related photos found."
4555
  msgstr "Keine verwandten Fotos gefunden."
4556
 
4557
+ #: wppa-functions.php:1055
4558
  #, php-format
4559
  msgid ""
4560
  "There are %s albums found. Only the first %s will be shown. Please refine "
4563
  "Es gibt %s Alben gefunden. Nur das erste %s wird angezeigt. Bitte verfeinern "
4564
  "Sie Ihre Suchkriterien."
4565
 
4566
+ #: wppa-functions.php:2112 wppa-links.php:775 wppa-links.php:792
4567
+ #: wppa-thumbnails.php:627
4568
  msgid "Are you sure you want to remove this photo?"
4569
  msgstr "Bist Du sicher, dass Du diese Foto löschen möchtest?"
4570
 
4571
+ #: wppa-functions.php:2130 wppa-thumbnails.php:609
4572
  msgid "Are you sure you want to add this photo to your zip?"
4573
  msgstr ""
4574
  "Sind Sie sicher, dass Sie dieses Foto mit Ihrem ZIP-Paket hinzufügen möchten?"
4575
 
4576
+ #: wppa-functions.php:2133 wppa-thumbnails.php:612
4577
  #, fuzzy
4578
  msgid "MyChoice"
4579
  msgstr "MyChoice"
4580
 
4581
+ #: wppa-functions.php:2225
4582
  #, php-format
4583
  msgid "%d dislike"
4584
  msgid_plural "%d dislikes"
4585
  msgstr[0] "%d Abneigung"
4586
  msgstr[1] "%d Abneigungen"
4587
 
4588
+ #: wppa-functions.php:2227
4589
  msgid "including mine"
4590
  msgstr "einschließlich meine"
4591
 
4592
+ #: wppa-functions.php:2327
4593
  msgid "Comment edited"
4594
  msgstr "Kommentar bearbeitet"
4595
 
4596
+ #: wppa-functions.php:2333
4597
  msgid "Photo comment"
4598
  msgstr "Foto kommentar"
4599
 
4600
+ #: wppa-functions.php:2348
4601
  msgid "Comment on photo:"
4602
  msgstr "Kommentar zum Foto:"
4603
 
4604
+ #: wppa-functions.php:2359
4605
  msgid "wrote on photo"
4606
  msgstr "schrieb am Foto"
4607
 
4608
+ #: wppa-functions.php:2363
4609
  msgid "Moderate comment admin"
4610
  msgstr "Moderiere Kommentare"
4611
 
4612
+ #: wppa-functions.php:2366 wppa-functions.php:4727 wppa-import.php:1524
4613
+ #: wppa-upload.php:570
4614
  msgid "Moderate manage photo"
4615
  msgstr "Moderiere Fotos"
4616
 
4617
+ #: wppa-functions.php:2380
4618
  msgid "You receive this email as you are assigned to moderate"
4619
  msgstr "Sie erhalten diese E-Mail, wie Sie, um moderate zugeordnet sind"
4620
 
4621
+ #: wppa-functions.php:2392
4622
  msgid "You receive this email as administrator of the site"
4623
  msgstr "Sie erhalten diese E-Mail als Administrator der Website"
4624
 
4625
+ #: wppa-functions.php:2409
4626
  msgid "You receive this email as uploader of the photo"
4627
  msgstr "Sie erhalten diese E-Mail als Uploader des Fotos"
4628
 
4629
+ #: wppa-functions.php:2426
4630
  msgid "You receive this email as owner of the album"
4631
  msgstr "Sie erhalten diese E-Mail als Eigentümer des Albums"
4632
 
4633
+ #: wppa-functions.php:2443
4634
  msgid "You receive this email because you commented this photo earlier."
4635
  msgstr "Sie erhalten diese E-Mail, weil Sie dieses Foto früheren kommentiert."
4636
 
4637
+ #: wppa-functions.php:2469
4638
  msgid "Comment added"
4639
  msgstr "Kommentar hinzugefügt"
4640
 
4641
+ #: wppa-functions.php:2475
4642
  msgid ""
4643
  "Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the "
4644
  "computation."
4647
  "\n"
4648
  "Bitte versuchen Sie es erneut, um die Berechnung zu lösen."
4649
 
4650
+ #: wppa-functions.php:2486
4651
  msgid "Could not process comment.\\nProbably timed out."
4652
  msgstr ""
4653
  "Konnte Kommentar nicht werarbeiten. \n"
4654
  "Warscheinlich Zeitüberschreitung."
4655
 
4656
+ #: wppa-functions.php:2604 wppa-links.php:1513
4657
  msgid "A video can not be printed or downloaded"
4658
  msgstr "Ein Video kann nicht gedruckt oder heruntergeladen werden"
4659
 
4660
+ #: wppa-functions.php:3059
4661
  msgid "ERROR: Illegal attempt to enter a rating."
4662
  msgstr "ERROR: Illegal Versuch, eine Bewertung zu gelangen."
4663
 
4664
+ #: wppa-functions.php:3072
4665
  msgid "ERROR: Illegal attempt to enter a comment."
4666
  msgstr "ERROR: Illegal Versuch, einen Kommentar eingeben."
4667
 
4668
+ #: wppa-functions.php:4296
4669
  msgid "ERROR: Illegal attempt to create an album."
4670
  msgstr "ERROR: Illegal Versuch, ein Album zu erstellen."
4671
 
4672
+ #: wppa-functions.php:4304
4673
  msgid "Wrong captcha, please try again"
4674
  msgstr "Falsche Captcha, versuchen Sie es erneut"
4675
 
4676
+ #: wppa-functions.php:4320
4677
  #, php-format
4678
  msgid "Album #%s created"
4679
  msgstr "Album #%s erstellt"
4680
 
4681
+ #: wppa-functions.php:4326
4682
  msgid "Could not create album"
4683
  msgstr "Album konnte nicht erstellt werden"
4684
 
4685
+ #: wppa-functions.php:4338
4686
  msgid "ERROR: Illegal attempt to upload a file."
4687
  msgstr "ERROR: Illegal Versuch, eine Datei hochzuladen."
4688
 
4689
+ #: wppa-functions.php:4411
4690
  msgid "Photo upload"
4691
  msgstr "Fotos hochgeladen"
4692
 
4693
+ #: wppa-functions.php:4412
4694
  #, php-format
4695
  msgid "%d photo successfully uploaded"
4696
  msgid_plural "%d photos successfully uploaded"
4697
  msgstr[0] "%d Foto erfolgreich hochgeladen"
4698
  msgstr[1] "%d Fotos erfolgreich hochgeladen"
4699
 
4700
+ #: wppa-functions.php:4413
4701
  #, php-format
4702
  msgid "%s points added"
4703
  msgstr "%s Punkte hinzugefügt"
4704
 
4705
+ #: wppa-functions.php:4425
4706
+ #, fuzzy
4707
+ msgid "Your post is awaiting moderation."
4708
+ msgstr "Dein Eintrag wartet auf Moderation."
4709
+
4710
+ #: wppa-functions.php:4434
4711
  msgid "Upload failed"
4712
  msgstr "Upload fehlgeschlagen"
4713
 
4714
+ #: wppa-functions.php:4437
4715
  #, php-format
4716
  msgid "%d upload failed"
4717
  msgid_plural "%d uploads failed"
4718
  msgstr[0] "%d Hochladung fehlgeschlagen"
4719
  msgstr[1] "%d Hochladungen fehlgeschlagen"
4720
 
4721
+ #: wppa-functions.php:4518
4722
  msgid "Error during upload"
4723
  msgstr "Fehler beim Hochladen"
4724
 
4725
+ #: wppa-functions.php:4574
4726
  #, fuzzy
4727
  msgid "Could not insert media into db."
4728
  msgstr "Medien konnte in Db nicht eingefügt werden."
4729
 
4730
+ #: wppa-functions.php:4614
4731
  msgid "Uploaded file is not an image"
4732
  msgstr "Hochgeladenen datei ist kein Bild"
4733
 
4734
+ #: wppa-functions.php:4620
4735
  #, php-format
4736
  msgid ""
4737
  "Only gif, jpg and png image files are supported. Returned filetype = %d."
4738
  msgstr ""
4739
  "Nur gif, jpg und png Bild-Dateien werden unterstützt. Kehrte filetype =% d."
4740
 
4741
+ #: wppa-functions.php:4628
4742
  #, php-format
4743
  msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
4744
  msgstr ""
4745
  "Hochgeladene Datei ist größer als das erlaubte Maximum von %d x %d Pixel."
4746
 
4747
+ #: wppa-functions.php:4636
4748
  #, php-format
4749
  msgid "Uploaded file %s already exists in this album."
4750
  msgstr "Hochgeladene Datei %s existiert bereits in diesem Album."
4751
 
4752
+ #: wppa-functions.php:4646
4753
  #, php-format
4754
  msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
4755
  msgstr "Das Bild ist zu groß. Max Fotogröße: %d x %d (% 2.1f MegaPixel)"
4756
 
4757
+ #: wppa-functions.php:4686
4758
  msgid "Could not insert photo into db."
4759
  msgstr "Konnte Foto nicht in db einfügen."
4760
 
4761
+ #: wppa-functions.php:4723 wppa-import.php:1520 wppa-upload.php:566
4762
  #, php-format
4763
  msgid "New photo uploaded: %s"
4764
  msgstr "Neues Foto hochgeladen: %s"
4765
 
4766
+ #: wppa-functions.php:4724 wppa-import.php:1521 wppa-upload.php:567
4767
  #, php-format
4768
  msgid "User %1$s uploaded photo %2$s into album %3$s"
4769
  msgstr "Benutzer %1$s hat Foto %2$s in album %3$s hochgeladen "
4770
 
4771
+ #: wppa-functions.php:4726 wppa-import.php:1523 wppa-upload.php:569
4772
  msgid "This upload requires moderation"
4773
  msgstr "Dieser Upload erfordert Moderation"
4774
 
4775
+ #: wppa-functions.php:4730 wppa-import.php:1527 wppa-upload.php:573
4776
  msgid "Details:"
4777
  msgstr "Details:"
4778
 
4779
+ #: wppa-functions.php:4731 wppa-import.php:1528 wppa-upload.php:574
4780
+ #: wppa-utils.php:942 wppa-utils.php:954
4781
  msgid "Manage photo"
4782
  msgstr "Fotos verwalten"
4783
 
4784
+ #: wppa-functions.php:4911
4785
  msgid "You can upload after"
4786
  msgstr "Sie können Hochladen nach"
4787
 
4788
+ #: wppa-functions.php:4954 wppa-functions.php:4958 wppa-functions.php:4965
4789
+ #: wppa-functions.php:4969 wppa-links.php:1106 wppa-non-admin.php:812
4790
+ #: wppa-settings-autosave.php:9344 wppa-settings-autosave.php:9356
4791
+ #: wppa-settings-autosave.php:9368 wppa-settings-autosave.php:9380
4792
+ #: wppa-settings-autosave.php:9392 wppa-settings-autosave.php:9404
4793
+ #: wppa-settings-autosave.php:9416 wppa-settings-autosave.php:9428
4794
  msgid "Download"
4795
  msgstr "Herunterladen"
4796
 
4797
+ #: wppa-functions.php:5013
4798
  msgid "Zoom in"
4799
  msgstr "Hineinzoomen"
4800
 
4801
+ #: wppa-functions.php:5044
4802
  #, fuzzy, php-format
4803
  msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
4804
  msgstr ""
4805
  "Sie können nach %s Tage, %s Stunden, Minuten %s und %s Sekunden wieder "
4806
  "Stimmen."
4807
 
4808
+ #: wppa-functions.php:5047
4809
  #, fuzzy, php-format
4810
  msgid "You can vote again after %s hours, %s minutes and %s seconds"
4811
  msgstr "Sie können nach %s Stunden, Minuten %s und %s Sekunden wieder Stimmen."
4812
 
4813
+ #: wppa-functions.php:5050
4814
  #, fuzzy, php-format
4815
  msgid "You can vote again after %s minutes and %s seconds"
4816
  msgstr "Sie können nach Minuten %s und %s Sekunden wieder Stimmen."
4914
  msgid "licence."
4915
  msgstr "Lizenz"
4916
 
4917
+ #: wppa-import.php:153
4918
  #, fuzzy
4919
+ msgid "Done!"
4920
+ msgstr "Erledigt!"
 
 
 
 
 
4921
 
4922
+ #: wppa-import.php:159
4923
  #, fuzzy
4924
+ msgid "Failed!"
4925
+ msgstr "Fehler!"
 
 
 
 
 
4926
 
4927
+ #: wppa-import.php:251
4928
  #, fuzzy
4929
+ msgid "Select Local or Remote"
4930
+ msgstr "Wählen Sie lokal oder Remote"
 
 
 
 
4931
 
4932
+ #: wppa-import.php:254
4933
  #, fuzzy
4934
+ msgid "Local"
4935
+ msgstr "Lokale Archive gelöscht: %d"
 
 
 
 
4936
 
4937
+ #: wppa-import.php:255
4938
  #, fuzzy
4939
+ msgid "Remote"
4940
+ msgstr "Nicht vor Ort"
 
 
 
 
4941
 
4942
+ #: wppa-import.php:263
4943
  #, fuzzy
4944
+ msgid "Set Local/Remote"
4945
+ msgstr "Lokal/Remote Set"
 
 
 
 
4946
 
4947
+ #: wppa-import.php:268
4948
  #, fuzzy
4949
  msgid ""
4950
+ "The server does not allow you to import from remote locations. ( The php "
4951
+ "directive allow_url_fopen is not set to 1 )"
4952
  msgstr ""
4953
+ "Der Server ist nicht möglich, von remote-Standorten zu importieren. (Die "
4954
+ "Richtlinie Allow_url_fopen Php ist nicht auf 1 festgelegt)"
4955
 
4956
+ #: wppa-import.php:271
4957
  #, fuzzy
4958
  msgid ""
4959
+ "The server does not allow you to import from remote locations. ( The curl "
4960
+ "functions are not set up )"
4961
  msgstr ""
4962
+ "Der Server ist nicht möglich, von remote-Standorten zu importieren. (Die "
4963
+ "Curl-Funktionen sind nicht eingerichtet)"
4964
 
4965
+ #: wppa-import.php:281
4966
  #, fuzzy
4967
+ msgid "Import photos from:"
4968
+ msgstr "Importieren von Fotos aus:"
 
 
 
 
4969
 
4970
+ #: wppa-import.php:293
4971
  #, fuzzy
4972
+ msgid "Set source directory"
4973
+ msgstr "Quellenverzeichnis"
4974
 
4975
+ #: wppa-import.php:306
4976
  #, fuzzy
4977
+ msgid "Max:"
4978
+ msgstr "Max:"
4979
 
4980
+ #: wppa-import.php:318
4981
  #, fuzzy
4982
+ msgid "Find remote photos"
4983
+ msgstr "Finden Sie entfernte Fotos"
 
 
 
 
4984
 
4985
+ #: wppa-import.php:321
4986
+ #, fuzzy
4987
+ msgid "Working, please wait..."
4988
+ msgstr "Arbeiten, bitte warten..."
4989
+
4990
+ #: wppa-import.php:324
4991
  #, fuzzy
4992
  msgid ""
4993
+ "You can enter either a web page address like <i>http://mysite.com/mypage/</"
4994
+ "i> or a full url to an image file like <i>http://mysite.com/wp-content/"
4995
+ "uploads/wppa/4711.jpg</i>"
4996
  msgstr ""
4997
+ "Sie können entweder die Adresse einer Webseite wie <i>http://mysite.com/"
4998
+ "mypage/</i> oder eine vollständige Url zu einer Image-Datei wie <i>http://"
4999
+ "mysite.com/wp-content/uploads/wppa/4711.jpg</i> eingeben."
 
 
 
5000
 
5001
+ #: wppa-import.php:337 wppa-upload.php:137
 
 
 
5002
  #, fuzzy
5003
+ msgid "No albums exist. You must"
5004
+ msgstr "Keine Alben vorhanden. Sie müssen"
5005
 
5006
+ #: wppa-import.php:339 wppa-upload.php:139
5007
+ #, fuzzy
5008
+ msgid "create one"
5009
+ msgstr "Konto erstellen."
5010
 
5011
+ #: wppa-import.php:341
 
 
 
5012
  #, fuzzy
5013
+ msgid "beofre you can upload your photos."
5014
+ msgstr "Beofre Sie Ihre Fotos hochladen können."
5015
 
5016
+ #: wppa-import.php:362
5017
+ #, php-format
5018
+ msgid "There is %d zipfile in the depot"
5019
+ msgid_plural "There are %d zipfiles in the depot"
5020
+ msgstr[0] "Es gibt %d zipfile im Depot"
5021
+ msgstr[1] "Es gibt %d zipfiles im Depot"
5022
 
5023
+ #: wppa-import.php:375 wppa-import.php:452 wppa-import.php:586
5024
+ #: wppa-import.php:840 wppa-import.php:947 wppa-import.php:1039
5025
+ #: wppa-import.php:1120
 
5026
  #, fuzzy
5027
+ msgid "Check/uncheck all"
5028
+ msgstr "Alle aus-/abwählen"
5029
 
5030
+ #: wppa-import.php:388
5031
  #, fuzzy
5032
+ msgid "Delete after successful extraction."
5033
+ msgstr "Löschen Sie nach der erfolgreichen Extraktion."
5034
 
5035
+ #: wppa-import.php:439
5036
+ #, php-format
5037
+ msgid "There is %d albumdefinition in the depot"
5038
+ msgid_plural "There are %d albumdefinitions in the depot"
5039
+ msgstr[0] "Es gibt %d albumdefinition im Depot"
5040
+ msgstr[1] "Es gibt %d albumdefinitionen im Depot"
5041
 
5042
+ #: wppa-import.php:465
5043
+ #, fuzzy
5044
+ msgid ""
5045
+ "Remove from depot after successful import, or if the album already exists."
5046
  msgstr ""
5047
+ "Nach dem erfolgreichen Import aus Depot entfernen oder wenn das Album "
5048
+ "bereits vorhanden ist."
5049
 
5050
+ #: wppa-import.php:522
5051
+ #, php-format
5052
+ msgid "There is %d photo in the ngg gallery"
5053
+ msgid_plural "There are %d photos in the ngg gallery"
5054
+ msgstr[0] "Es gibt %d Foto in der Galerie ngg"
5055
+ msgstr[1] "Es gibt %d Fotos in der Galerie ngg"
5056
 
5057
+ #: wppa-import.php:525
5058
+ #, php-format
5059
+ msgid "There is %d photo in the depot"
5060
+ msgid_plural "There are %d photos in the depot"
5061
+ msgstr[0] "Es gibt %d Foto im Depot"
5062
+ msgstr[1] "Es gibt %d Fotos im Depot"
5063
 
5064
+ #: wppa-import.php:531
5065
+ #, php-format
5066
+ msgid "There is %d possible photo found remote"
5067
+ msgid_plural "There are %d possible photos found remote"
5068
+ msgstr[0] "Es gibt %d möglich Foto vorhanden Fern"
5069
+ msgstr[1] "Es gibt %d möglich Fotos vorhanden Fern"
5070
 
5071
+ #: wppa-import.php:536
5072
  #, fuzzy
5073
+ msgid "Photos will be downsized during import."
5074
+ msgstr "Fotos werden beim Import verkleinert werden."
5075
 
5076
+ #: wppa-import.php:545
5077
  #, fuzzy
5078
+ msgid "Default album for import:"
5079
+ msgstr "Standard-Album für den Import:"
5080
 
5081
+ #: wppa-import.php:554
5082
  #, fuzzy
5083
+ msgid ""
5084
+ "Photos that have (<em>name</em>)[<em>album</em>] will be imported by that "
5085
+ "<em>name</em> in that <em>album</em>."
5086
+ msgstr ""
5087
+ "Fotos, die (<em>Name</em>) [<em>Album</em>] werden unter diesem <em>Namen</"
5088
+ "em> in diesem <em>Album</em>importiert werden."
5089
 
5090
+ #: wppa-import.php:602 wppa-import.php:854 wppa-import.php:963
5091
+ #: wppa-import.php:1133
5092
  #, fuzzy
5093
+ msgid "Remove from depot after successful import."
5094
+ msgstr "Nach dem erfolgreichen Import vom Depot zu entfernen."
5095
 
5096
+ #: wppa-import.php:613
5097
+ #, fuzzy
5098
+ msgid "Remove from depot after failed import."
5099
+ msgstr "Nach fehlgeschlagenen Import aus Depot entfernen."
5100
 
5101
+ #: wppa-import.php:631
5102
+ #, fuzzy
5103
+ msgid "Import into album"
5104
+ msgstr "In Album importieren"
5105
 
5106
+ #: wppa-import.php:634
5107
  #, fuzzy
5108
+ msgid "The album will be created if it does not exist"
5109
+ msgstr "Das Album wird erstellt, wenn es nicht vorhanden ist"
 
 
 
 
5110
 
5111
+ #: wppa-import.php:646
5112
  #, fuzzy
5113
+ msgid "Use backup if available"
5114
+ msgstr "Verwendung Backup, falls vorhanden"
5115
 
5116
+ #: wppa-import.php:662
 
5117
  #, fuzzy
5118
+ msgid "Update existing photos"
5119
+ msgstr "Aktualisieren Sie vorhandene Fotos"
5120
 
5121
+ #: wppa-import.php:687
 
5122
  #, fuzzy
5123
+ msgid "Do not create duplicates"
5124
+ msgstr "Keine Duplikate erstellen"
5125
 
5126
+ #: wppa-import.php:703
 
5127
  #, fuzzy
5128
+ msgid "Zoom previews"
5129
+ msgstr "Zoom Vorschau"
5130
 
5131
+ #: wppa-import.php:809
5132
+ #, php-format
5133
+ msgid "There is %d video in the depot"
5134
+ msgid_plural "There are %d videos in the depot"
5135
+ msgstr[0] "Es gibt %d Video im Depot"
5136
+ msgstr[1] "Es gibt %d Videos im Depot"
5137
+
5138
+ #: wppa-import.php:815 wppa-import.php:922
5139
  #, fuzzy
5140
+ msgid "Album to import to:"
5141
+ msgstr "Album zu importieren:"
5142
 
5143
+ #: wppa-import.php:856
5144
  #, fuzzy
5145
+ msgid "Files largenr than 64MB will always be removed after successful import."
5146
+ msgstr ""
5147
+ "Largenr 64MB werden immer entfernt werden, nach dem erfolgreichen Import-"
5148
+ "Dateien."
5149
 
5150
+ #: wppa-import.php:916
5151
+ #, php-format
5152
+ msgid "There is %d audio in the depot"
5153
+ msgid_plural "There are %d audios in the depot"
5154
+ msgstr[0] "Es gibt %d Audio im Depot"
5155
+ msgstr[1] "Es gibt %d Audios im Depot"
5156
+
5157
+ #: wppa-import.php:1022
5158
+ #, php-format
5159
+ msgid "There is %d albumdirectory in the depot"
5160
+ msgid_plural "There are %d albumdirectories in the depot"
5161
+ msgstr[0] "Es gibt %d albumdirectory im Depot"
5162
+ msgstr[1] "Es gibt %d albumdirectories im Depot"
5163
+
5164
+ #: wppa-import.php:1080
5165
+ #, php-format
5166
+ msgid "Contains %d file"
5167
+ msgid_plural "Contains %d files"
5168
+ msgstr[0] "Enthält %d Datei"
5169
+ msgstr[1] "Enthält %d Datei"
5170
+
5171
+ #: wppa-import.php:1083
5172
+ #, php-format
5173
+ msgid "and %d subdirectory"
5174
+ msgid_plural "and %d subdirectories"
5175
+ msgstr[0] "und %d Unterverzeichnis"
5176
+ msgstr[1] "und %d Unterverzeichnisse"
5177
+
5178
+ #: wppa-import.php:1103
5179
+ #, php-format
5180
+ msgid "There is %d .csv file in the depot"
5181
+ msgid_plural "There are %d .csv files in the depot"
5182
+ msgstr[0] "Es gibt %d CSV-Datei im Depot"
5183
+ msgstr[1] "Es gibt %d CSV-Datei im Depot"
5184
+
5185
+ #: wppa-import.php:1316
5186
  #, fuzzy
5187
+ msgid "Start Ajax Import"
5188
+ msgstr "Import starten"
5189
 
5190
+ #: wppa-import.php:1317
5191
  #, fuzzy
5192
+ msgid "Stop Ajax Import"
5193
+ msgstr "Ajax-Import zu stoppen"
5194
 
5195
+ #: wppa-import.php:1325
5196
  #, fuzzy
5197
+ msgid "There are no importable files found in directory:"
5198
+ msgstr "Es gibt keine importierbaren Dateien befindet sich im Verzeichnis:"
5199
 
5200
+ #: wppa-import.php:1328
5201
  #, fuzzy
5202
+ msgid "There are no photos found or left to process at url:"
5203
+ msgstr "Es gibt keine Fotos gefunden oder links unter Url verarbeiten:"
5204
 
5205
+ #: wppa-import.php:1332
5206
  #, fuzzy
5207
+ msgid "You can import the following file types:"
5208
+ msgstr "Sie können die folgenden Dateitypen importieren:"
5209
 
5210
+ #: wppa-import.php:1336
5211
  #, fuzzy
5212
+ msgid "Compressed file types: .zip"
5213
+ msgstr "Komprimierten Dateitypen: .zip"
5214
 
5215
+ #: wppa-import.php:1340
5216
  #, fuzzy
5217
+ msgid "Photo file types:"
5218
+ msgstr "Foto-Dateitypen:"
5219
 
5220
+ #: wppa-import.php:1347
5221
  #, fuzzy
5222
+ msgid "Video file types:"
5223
+ msgstr "Video-Dateitypen:"
5224
 
5225
+ #: wppa-import.php:1354
5226
  #, fuzzy
5227
+ msgid "Audio file types:"
5228
+ msgstr "Audio-Datei-Typen:"
5229
 
5230
+ #: wppa-import.php:1360
5231
+ #, fuzzy
5232
+ msgid "WPPA+ file types: .amf .pmf"
5233
+ msgstr "WPPA + Dateitypen: .amf .pmf"
5234
 
5235
+ #: wppa-import.php:1362
5236
+ #, fuzzy
5237
+ msgid "Directories with optional subdirs containig photos"
5238
+ msgstr "Verzeichnisse mit optionalen Unterverzeichnisse mit Fotos"
5239
 
5240
+ #: wppa-import.php:1364
5241
+ #, fuzzy
5242
+ msgid "Custom data files of type .csv"
5243
+ msgstr "Benutzerdefinierte Daten-Dateien des Typs CSV"
5244
 
5245
+ #: wppa-import.php:1366
5246
  #, fuzzy
5247
+ msgid "Your depot directory is:"
5248
+ msgstr "Ihr Depot-Verzeichnis ist:"
5249
 
5250
+ #: wppa-import.php:1370
5251
  #, fuzzy
5252
+ msgid "Trying to continue..."
5253
+ msgstr "Der Versuch, weiter..."
5254
 
5255
+ #: wppa-import.php:1613
5256
  #, fuzzy
5257
+ msgid "Unknown parent album:"
5258
+ msgstr "Unbekannten übergeordneten Album:"
5259
 
5260
+ #: wppa-import.php:1613
5261
  #, fuzzy
5262
+ msgid "--- none --- used."
5263
+ msgstr "---keine---verwendet."
5264
+
5265
+ #: wppa-import.php:1673
5266
+ #, fuzzy, php-format
5267
+ msgid "This album has been converted from ngg gallery %s"
5268
+ msgstr "Dieses Album wurde von Ngg Galerie %s konvertiert"
5269
 
5270
+ #: wppa-import.php:1691
5271
  #, fuzzy
5272
+ msgid "Processing files, please wait..."
5273
+ msgstr "Verarbeitung von Dateien, warten bitte..."
5274
 
5275
+ #: wppa-import.php:1691
5276
  #, fuzzy
5277
+ msgid ""
5278
+ "If the line of dots stops growing or your browser reports Ready, your server "
5279
+ "has given up. In that case: try again"
5280
+ msgstr ""
5281
+ "Meldet die Linie der Punkte Haltestellen wachsen oder Ihrem Browser bereit, "
5282
+ "hat Ihren Server aufgegeben. In diesem Fall: versuchen Sie es erneut"
5283
 
5284
+ #: wppa-import.php:1691
5285
  #, fuzzy
5286
+ msgid "here."
5287
+ msgstr "here."
5288
 
5289
+ #: wppa-import.php:1818
5290
+ #, fuzzy, php-format
5291
+ msgid "Photo %s already exists in album %s. (1)"
5292
+ msgstr "Foto %s existiert bereits im Album %s. (1)"
5293
+
5294
+ #: wppa-import.php:1819
5295
  #, fuzzy
5296
+ msgid "Duplicate"
5297
+ msgstr "Duplizieren"
5298
 
5299
+ #: wppa-import.php:1838 wppa-upload.php:512 wppa-upload.php:546
5300
+ #, fuzzy
5301
+ msgid "Error inserting photo"
5302
+ msgstr "Fehler einfügen Foto"
5303
+
5304
+ #: wppa-import.php:1846
5305
  #, fuzzy, php-format
5306
+ msgid "Error inserting photo %s, unknown or non existent album."
5307
+ msgstr ""
5308
+ "Fehler beim Einfügen der Foto %s, unbekannte oder nicht existent Album."
5309
 
5310
+ #: wppa-import.php:1854
5311
  #, fuzzy, php-format
5312
+ msgid "Time out. %s photos imported. Please restart this operation."
5313
+ msgstr "Time Out. %s Fotos importiert. Bitte starten Sie diesen Vorgang."
5314
 
5315
+ #: wppa-import.php:1888 wppa-import.php:1960
5316
  #, fuzzy
5317
+ msgid "Unknown album"
5318
+ msgstr "Unbekanntes album"
5319
 
5320
+ #: wppa-import.php:1950
5321
+ #, fuzzy, php-format
5322
+ msgid "Error inserting video %s, unknown or non existent album."
5323
+ msgstr ""
5324
+ "Fehler beim Einfügen von Video %s, unbekannte oder nicht existent Album."
5325
 
5326
+ #: wppa-import.php:2011
5327
+ #, fuzzy, php-format
5328
+ msgid "Error inserting audio %s, unknown or non existent album."
5329
+ msgstr ""
5330
+ "Fehler beim Einfügen von Audio %s, unbekannte oder nicht existent Album."
5331
 
5332
+ #: wppa-import.php:2027
5333
  #, fuzzy
5334
+ msgid "Custom datafields enabled"
5335
+ msgstr "Benutzerdefinierte Datafields aktiviert"
5336
 
5337
+ #: wppa-import.php:2058 wppa-import.php:2059
5338
  #, fuzzy
5339
+ msgid "Processing"
5340
+ msgstr "In Bearbeitung [ Bestell-status ]"
5341
 
5342
+ #: wppa-import.php:2068
5343
  #, fuzzy
5344
+ msgid "Can not open file. Can not continue. (1)"
5345
+ msgstr "Datei kann nicht geöffnet werden. Kann nicht fortgesetzt werden. (1)"
5346
 
5347
+ #: wppa-import.php:2073
5348
  #, fuzzy
5349
+ msgid "Can not open file. Can not continue. (2)"
5350
+ msgstr "Datei kann nicht geöffnet werden. Kann nicht fortgesetzt werden. (2)"
5351
 
5352
+ #: wppa-import.php:2080
5353
  #, fuzzy
5354
+ msgid "Can not read header. Can not continue."
5355
+ msgstr "Header kann nicht gelesen werden. Kann nicht fortgesetzt werden."
5356
 
5357
+ #: wppa-import.php:2085
5358
  #, fuzzy
5359
+ msgid "Read header:"
5360
+ msgstr "Lesen Sie Header:"
5361
 
5362
+ #: wppa-import.php:2090
5363
  #, fuzzy
5364
+ msgid "Invalid header. Can not continue."
5365
+ msgstr "Ungültiger Header. Kann nicht fortgesetzt werden."
5366
 
5367
+ #: wppa-import.php:2097
5368
  #, fuzzy
5369
+ msgid "Invalid header. First item must be 'name', 'photoname' or 'filename'"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5370
  msgstr ""
5371
+ "Ungültiger Header. Erstes Element muss \"Name\", \"Photoname\" oder "
5372
+ "\"Dateiname\""
5373
 
5374
+ #: wppa-import.php:2104
5375
+ #, fuzzy
5376
+ msgid "All available custom data fields are in use. There is no space for"
5377
  msgstr ""
5378
+ "Alle verfügbaren benutzerdefinierte Datenfelder sind im Einsatz. Es gibt "
5379
+ "keinen Platz für"
5380
 
5381
+ #: wppa-import.php:2115
5382
+ #, fuzzy, php-format
5383
+ msgid "New caption %s added."
5384
+ msgstr "Neue Beschriftung %s hinzugefügt."
5385
 
5386
+ #: wppa-import.php:2133
5387
+ #, fuzzy
5388
+ msgid "Read data:"
5389
+ msgstr "Lesen von Daten:"
5390
 
5391
+ #: wppa-import.php:2202
5392
+ #, fuzzy
5393
+ msgid "Done processing files."
5394
+ msgstr "Verarbeitung von Dateien durchgeführt."
5395
 
5396
+ #: wppa-import.php:2205
5397
+ #, fuzzy
5398
+ msgid "No files to import."
5399
+ msgstr "Keine Dateien importieren."
5400
 
5401
+ #: wppa-import.php:2209
5402
+ #, fuzzy
5403
+ msgid "Zipfiles extracted."
5404
+ msgstr "Zipfiles extrahiert."
5405
 
5406
+ #: wppa-import.php:2210
5407
+ #, fuzzy
5408
+ msgid "Albums created."
5409
+ msgstr "Alben erstellt."
5410
 
5411
+ #: wppa-import.php:2211
5412
+ #, fuzzy
5413
+ msgid "Directory to album imports."
5414
+ msgstr "Album-Verzeichnis importiert."
5415
 
5416
+ #: wppa-import.php:2212
5417
+ #, fuzzy, php-format
5418
+ msgid "With total %s photos."
5419
+ msgstr "Insgesamt %s Fotos"
5420
 
5421
+ #: wppa-import.php:2215
5422
+ #, fuzzy
5423
+ msgid "Photos updated"
5424
+ msgstr "Fotos in der Fotogalerie"
5425
 
5426
+ #: wppa-import.php:2217
5427
+ #, fuzzy, php-format
5428
+ msgid "to %s locations"
5429
+ msgstr "%s-Standorte"
5430
 
5431
+ #: wppa-import.php:2221
5432
+ #, fuzzy
5433
+ msgid "single photos imported."
5434
+ msgstr "einzelne Fotos nicht importiert."
5435
 
5436
+ #: wppa-import.php:2224
5437
+ #, fuzzy
5438
+ msgid "Videos imported."
5439
+ msgstr "Videos nicht importiert."
5440
 
5441
+ #: wppa-import.php:2227
5442
+ #, fuzzy
5443
+ msgid "Audios imported."
5444
+ msgstr "Audios nicht importiert."
5445
 
5446
+ #: wppa-import.php:2230
5447
+ #, fuzzy
5448
+ msgid "CSVs imported,"
5449
+ msgstr "CSVs nicht importiert,"
5450
 
5451
+ #: wppa-import.php:2232
5452
+ #, fuzzy
5453
+ msgid "photos skipped."
5454
+ msgstr "Fotos übersprungen."
5455
 
5456
+ #: wppa-import.php:2362
5457
+ #, fuzzy
5458
+ msgid "Error: unexpected fgets() fail in wppa_get_meta_data()."
5459
+ msgstr "Fehler: unerwartete fgets() Scheitern in wppa_get_meta_data()."
5460
 
5461
+ #: wppa-import.php:2383
5462
+ #, fuzzy
5463
+ msgid "Class ZipArchive does not exist! Check your php configuration"
5464
+ msgstr ""
5465
+ "Klasse ZipArchive existiert nicht! Überprüfen Sie Ihre Php-Konfiguration"
5466
 
5467
+ #: wppa-import.php:2413
5468
+ #, fuzzy, php-format
5469
+ msgid ""
5470
+ "File %s is of an unsupported filetype and has been ignored during extraction."
5471
+ msgstr ""
5472
+ "Datei %s ist ein nicht unterstützter Dateityp und während der Extraktion "
5473
+ "ignoriert worden ist."
5474
 
5475
+ #: wppa-import.php:2419
5476
+ #, fuzzy, php-format
5477
+ msgid "Zipfile %s processed. %s files extracted, %s files skipped."
5478
+ msgstr ""
5479
+ "ZIP-Datei %s verarbeitet. %s-Dateien extrahiert, übersprungene %s Dateien."
5480
 
5481
+ #: wppa-import.php:2422
5482
+ #, fuzzy
5483
+ msgid "Failed to extract"
5484
+ msgstr "Fehler beim Extrahieren"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5485
 
5486
+ #: wppa-import.php:2488
5487
+ #, fuzzy, php-format
5488
+ msgid "Page <a href=\"%s\" target=\"_blank\" >%s</a> created."
5489
+ msgstr "Seite <a href=\"%s\" target=\"_blank\">%s</a> erstellt."
5490
 
5491
+ #: wppa-import.php:2492
5492
  #, fuzzy
5493
+ msgid "Could not create page."
5494
+ msgstr "Seite konnte nicht erstellt werden."
5495
 
5496
+ #: wppa-import.php:2607
5497
  #, fuzzy
5498
+ msgid "--- My depot --- "
5499
+ msgstr "---Mein Depot---"
5500
 
5501
+ #: wppa-import.php:2616
5502
  #, fuzzy
5503
+ msgid "--- Ngg Galleries --- "
5504
+ msgstr "---Ngg Galerien---"
5505
 
5506
+ #: wppa-init.php:195
5507
  #, fuzzy
5508
+ msgid ""
5509
+ "</strong><h3>WP Photo ALbum Plus Error message</h3>This is a multi site "
5510
+ "installation. One of the following 3 lines must be entered in wp-config.php:"
5511
+ msgstr ""
5512
+ "<h3>WP Photo ALbum Plus Fehlermeldung</h3>Dies ist ein Multi-Site-"
5513
+ "Installation. Eines der folgenden 3 Zeilen eingegeben werden in wp-Config."
5514
+ "php:"
5515
 
5516
+ #: wppa-init.php:196
5517
  #, fuzzy
5518
+ msgid ""
5519
+ "<br /><br /><b>define( 'WPPA_MULTISITE_INDIVIDUAL', true );</b> <small>// "
5520
+ "Multisite WP 3.5 or later with every site its own albums and photos</small>"
5521
+ msgstr ""
5522
+ "<br><br><b>definieren (\"WPPA_MULTISITE_INDIVIDUAL\", true);</b> <small>/ / "
5523
+ "Multisite WP 3,5 oder später mit jedem Standort eine eigene Alben und Fotos</"
5524
+ "small>"
5525
 
5526
+ #: wppa-init.php:197
5527
  #, fuzzy
5528
+ msgid ""
5529
+ "<br /><b>define( 'WPPA_MULTISITE_BLOGSDIR', true );</b> <small>// Multisite "
5530
+ "prior to WP 3.5 with every site its own albums and photos</small>"
5531
+ msgstr ""
5532
+ "<br><b>definieren (\"WPPA_MULTISITE_BLOGSDIR\", true);</b> <small>/ / "
5533
+ "Multisite vor WP 3.5 mit jedem Standort eine eigene Alben und Fotos</small>"
 
5534
 
5535
+ #: wppa-init.php:198
5536
  #, fuzzy
5537
+ msgid ""
5538
+ "<br /><b>define( 'WPPA_MULTISITE_GLOBAL', true );</b> <small>// Multisite "
5539
+ "with one common set of albums and photos</small>"
5540
+ msgstr ""
5541
+ "<br><b>definieren (\"WPPA_MULTISITE_GLOBAL\", true);</b> <small>/ / "
5542
+ "Multisite mit einem gemeinsamen Alben und Fotos</small>"
5543
 
5544
+ #: wppa-init.php:199
 
5545
  #, fuzzy
5546
+ msgid ""
5547
+ "<br /><br />For more information see: <a href=\"https://wordpress.org/"
5548
+ "plugins/wp-photo-album-plus/faq/\">the faq</a>"
5549
+ msgstr ""
5550
+ "<br><br>Weitere Informationen finden Sie unter: <a href=\"https://wordpress."
5551
+ "org/plugins/wp-photo-album-plus/faq/\">faq</a>"
5552
 
5553
+ #: wppa-init.php:200
5554
  #, fuzzy
5555
+ msgid ""
5556
+ "<br /><br /><em>If you upload photos, they will be placed in the wrong "
5557
+ "location and will not be visible for visitors!</em><strong>"
5558
+ msgstr ""
5559
+ "<br><br><em>Wenn Sie Fotos hochladen, sie an der falschen Stelle platziert "
5560
+ "werden und werden nicht sichtbar für die Besucher!</em><strong></strong>"
5561
 
5562
+ #: wppa-init.php:232
5563
  #, fuzzy
5564
+ msgid ""
5565
+ "The photo index table needs to be rebuilt. Please run <i>Photo Albums -> "
5566
+ "Settings</i> admin page <i>Table VIII-A9</i>"
5567
+ msgstr ""
5568
+ "Der Foto-Index-Tabelle muss neu erstellt werden. Bitte führen Sie "
5569
+ "<i>Fotoalben-> Einstellungen</i> Adminseite <i>Tabelle VIII-A9</i>"
5570
 
5571
+ #: wppa-init.php:236
5572
  #, fuzzy
5573
+ msgid ""
5574
+ "The album index table needs to be rebuilt. Please run <i>Photo Albums -> "
5575
+ "Settings</i> admin page <i>Table VIII-A8</i>"
5576
+ msgstr ""
5577
+ "Die Album-Index-Tabelle muss neu erstellt werden. Bitte führen Sie "
5578
+ "<i>Fotoalben-> Einstellungen</i> Adminseite <i>Tabelle VIII-A8</i>"
5579
 
5580
+ #: wppa-init.php:240
5581
  #, fuzzy
5582
+ msgid ""
5583
+ "The avarage ratings need to be recalculated. Please run <i>Photo Albums -> "
5584
+ "Settings</i> admin page <i>Table VIII-A5</i>"
5585
+ msgstr ""
5586
+ "Die durchschnittlichen Bewertungen müssen neu berechnet werden. Bitte führen "
5587
+ "Sie <i>Fotoalben-> Einstellungen</i> Adminseite <i>Tabelle VIII-A5</i>"
5588
 
5589
+ #: wppa-init.php:243
5590
  #, fuzzy
5591
+ msgid "Please finish setting up WP Photo ALbum Plus on"
5592
+ msgstr "Schließen Sie die Einrichtung von WP Photo ALbum Plus auf"
5593
 
5594
+ #: wppa-init.php:243
5595
  #, fuzzy
5596
+ msgid "this page"
5597
+ msgstr "diese Seite"
5598
 
5599
+ #: wppa-init.php:261
5600
  #, fuzzy
5601
+ msgid ""
5602
+ "</strong>The tags system needs to be converted. Please run <b>Photo Albums -"
5603
+ "> Settings</b> admin page <b>Table VIII-B16</b><strong>"
5604
+ msgstr ""
5605
+ "Tags-System muss konvertiert werden. Bitte führen Sie <b>Fotoalben-> "
5606
+ "Einstellungen</b> Adminseite <b>Tabelle VIII-B16</b><strong></strong>"
5607
 
5608
+ #: wppa-init.php:278
5609
  #, fuzzy
5610
+ msgid ""
5611
+ "</strong>The cats system needs to be converted. Please run <b>Photo Albums -"
5612
+ "> Settings</b> admin page <b>Table VIII-B17</b><strong>"
5613
+ msgstr ""
5614
+ "Das Katzen-System muss konvertiert werden. Bitte führen Sie <b>Fotoalben-> "
5615
+ "Einstellungen</b> Adminseite <b>Tabelle VIII-B17</b><strong></strong>"
5616
 
5617
+ #: wppa-init.php:304
5618
+ #, fuzzy, php-format
5619
+ msgid ""
5620
+ "WPPA scripts will no longer be supported in version 6.6. Please convert the "
5621
+ "%%wppa%% scripts to [wppa][/wppa] shortcodes before upgrading to version 6.6."
5622
+ msgstr ""
5623
+ "WPPA Skripte werden nicht mehr in der Version 6.6 unterstützt werden. "
5624
+ "Konvertieren Sie die %% Wppa %%skripts [Wppa] [/wppa] Shortcodes vor dem "
5625
+ "Upgrade auf Version 6.6."
5626
 
5627
+ #: wppa-init.php:306
5628
  #, fuzzy
5629
+ msgid "WPPA scripts found in the following Pages / Posts"
5630
+ msgstr "WPPA Skripts finden auf den folgenden Seiten / Beiträge"
5631
 
5632
+ #: wppa-init.php:325
5633
  #, fuzzy, php-format
5634
+ msgid "For more information see the %s documentation page"
5635
+ msgstr "Weitere Informationen finden Sie auf der Seite %s Dokumentation"
5636
 
5637
+ #: wppa-items.php:259 wppa-thumbnails.php:1906
5638
+ msgid "Gold medal"
5639
+ msgstr "Gold medaille"
 
5640
 
5641
+ #: wppa-items.php:259 wppa-photo-admin-autosave.php:866
5642
+ #: wppa-photo-admin-autosave.php:888 wppa-photo-admin-autosave.php:1331
5643
+ #: wppa-photo-admin-autosave.php:1448 wppa-photo-admin-autosave.php:1459
5644
+ #: wppa-potd-admin.php:228
5645
  #, fuzzy
5646
+ msgid "Gold"
5647
+ msgstr "Gold"
5648
 
5649
+ #: wppa-items.php:260 wppa-thumbnails.php:1907
5650
+ msgid "Silver medal"
5651
+ msgstr "Silber Medallie"
 
5652
 
5653
+ #: wppa-items.php:260 wppa-photo-admin-autosave.php:867
5654
+ #: wppa-photo-admin-autosave.php:889 wppa-photo-admin-autosave.php:1332
5655
+ #: wppa-photo-admin-autosave.php:1449 wppa-photo-admin-autosave.php:1460
5656
+ #: wppa-potd-admin.php:229
5657
  #, fuzzy
5658
+ msgid "Silver"
5659
+ msgstr "Silber"
5660
 
5661
+ #: wppa-items.php:261 wppa-thumbnails.php:1908
5662
+ msgid "Bronze medal"
5663
+ msgstr "Bronze medaille"
5664
+
5665
+ #: wppa-items.php:261 wppa-photo-admin-autosave.php:868
5666
+ #: wppa-photo-admin-autosave.php:890 wppa-photo-admin-autosave.php:1333
5667
+ #: wppa-photo-admin-autosave.php:1450 wppa-photo-admin-autosave.php:1461
5668
+ #: wppa-potd-admin.php:230
5669
  #, fuzzy
5670
+ msgid "Bronze"
5671
+ msgstr "Bronze"
5672
 
5673
+ #: wppa-items.php:336 wppa-items.php:535 wppa-settings-autosave.php:3634
5674
+ #, fuzzy
5675
+ msgid "none"
5676
+ msgstr "keine"
5677
 
5678
+ #: wppa-items.php:352
5679
  #, fuzzy
5680
+ msgid "Nomen Nescio"
5681
+ msgstr "Nomen Nescio"
5682
 
5683
+ #: wppa-items.php:355
5684
  #, fuzzy
5685
+ msgid "Anonymus"
5686
+ msgstr "Anonymus"
5687
 
5688
+ #: wppa-items.php:381 wppa-items.php:546 wppa-upload.php:125
5689
+ #: wppa-upload.php:130
5690
  #, fuzzy
5691
+ msgid "unknown"
5692
+ msgstr "unbekannt"
5693
 
5694
+ #: wppa-items.php:440 wppa-items.php:468
5695
  #, fuzzy
5696
+ msgid "--- deleted ---"
5697
+ msgstr "Gelöscht"
5698
 
5699
+ #: wppa-items.php:450
5700
  #, fuzzy
5701
+ msgid "All Albums"
5702
+ msgstr "- Alle Alben -"
5703
 
5704
+ #: wppa-items.php:454
5705
  #, fuzzy
5706
+ msgid "My and public albums"
5707
+ msgstr "Meine und öffentliche Alben"
5708
 
5709
+ #: wppa-lasten-widget.php:12
5710
  #, fuzzy
5711
+ msgid "WPPA+ Last Ten Uploaded Photos"
5712
+ msgstr "WPPA + zehn zuletzt hochgeladenen Fotos"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5713
 
5714
+ #: wppa-lasten-widget.php:13 wppa-lasten-widget.php:186
 
 
5715
  #, fuzzy
5716
+ msgid "Last Ten Photos"
5717
+ msgstr "Letzten zehn Fotos"
5718
 
5719
+ #: wppa-lasten-widget.php:45
 
 
5720
  #, fuzzy
5721
+ msgid "Last Ten Uploaded Photos"
5722
+ msgstr "Letzten zehn hochgeladenen Fotos"
5723
 
5724
+ #: wppa-lasten-widget.php:131 wppa-non-admin.php:902
5725
+ msgid "View the most recent uploaded photos"
5726
+ msgstr "Sehen Sie die neuesten hochgeladenen Fotos"
 
 
 
5727
 
5728
+ #: wppa-lasten-widget.php:155 wppa-non-admin.php:904
5729
+ msgid "There are no uploaded photos (yet)"
5730
+ msgstr "Es sind (noch) keine hochgeladene Fotos"
 
 
 
5731
 
5732
+ #: wppa-lasten-widget.php:212
5733
  #, fuzzy
5734
  msgid ""
5735
+ "Select --- multiple see below --- in the Album selection box. Then enter "
5736
+ "album numbers seperated by commas"
5737
  msgstr ""
5738
+ "Wählen Sie---mehrere siehe unten---in den Album-Auswahl-Box. Geben Sie dann "
5739
+ "Album zahlen getrennt durch Kommas"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5740
 
5741
+ #: wppa-lasten-widget.php:217
5742
  #, fuzzy
5743
+ msgid "Include subalbums:"
5744
+ msgstr "Fügen Unteralben:"
 
 
 
 
 
 
 
 
5745
 
5746
+ #: wppa-lasten-widget.php:225 wppa-thumbnail-widget.php:216
5747
+ #: wppa-topten-widget.php:334
5748
  #, fuzzy
5749
+ msgid "Display:"
5750
+ msgstr "Anzeige:"
5751
 
5752
+ #: wppa-lasten-widget.php:227 wppa-thumbnail-widget.php:218
5753
+ #: wppa-topten-widget.php:336
5754
  #, fuzzy
5755
+ msgid "thumbnail images"
5756
+ msgstr "Thumbnails zuschneiden?"
 
 
 
5757
 
5758
+ #: wppa-lasten-widget.php:228 wppa-thumbnail-widget.php:219
5759
+ #: wppa-topten-widget.php:337
5760
  #, fuzzy
5761
+ msgid "photo names"
5762
+ msgstr "Foto Name"
5763
 
5764
+ #: wppa-lasten-widget.php:234
5765
  #, fuzzy
5766
+ msgid "Show time since:"
5767
+ msgstr "Show Time seit:"
 
 
 
 
 
5768
 
5769
+ #: wppa-links.php:763
5770
  #, fuzzy
5771
+ msgid "App"
5772
+ msgstr "App"
 
 
 
 
5773
 
5774
+ #: wppa-links.php:764
5775
  #, fuzzy
5776
+ msgid "Mod"
5777
+ msgstr "Mod"
5778
 
5779
+ #: wppa-links.php:765
5780
  #, fuzzy
5781
+ msgid "Del"
5782
+ msgstr "Entf. "
5783
 
5784
+ #: wppa-links.php:769 wppa-links.php:786
5785
  #, fuzzy
5786
+ msgid "Are you sure you want to publish this photo?"
5787
+ msgstr "Sind Sie sicher, dass Sie dieses Foto veröffentlichen möchten?"
5788
 
5789
+ #: wppa-links.php:780 wppa-links.php:797
5790
  #, fuzzy
5791
+ msgid "Approve"
5792
+ msgstr "Geprüft"
5793
 
5794
+ #: wppa-links.php:781
5795
  #, fuzzy
5796
+ msgid "Moderate"
5797
+ msgstr "Sie erhalten diese E-Mail, wie Sie, um moderate zugeordnet sind"
5798
 
5799
+ #: wppa-links.php:798
5800
  #, fuzzy
5801
+ msgid "PhotoAdmin"
5802
+ msgstr "PhotoAdmin"
5803
 
5804
+ #: wppa-links.php:799
5805
  #, fuzzy
5806
+ msgid "CommentAdmin"
5807
+ msgstr "CommentAdmin"
5808
 
5809
+ #: wppa-links.php:803
5810
  #, fuzzy
5811
+ msgid "Are you sure you want to publish this comment?"
5812
+ msgstr "Sind Sie sicher, dass Sie diesen Kommentar veröffentlichen möchten?"
5813
 
5814
+ #: wppa-links.php:815
5815
  #, fuzzy
5816
+ msgid "Are you sure you want to remove this comment?"
5817
+ msgstr "Bist du sicher, dass du diesen Kommentar entfernen möchtest?"
5818
 
5819
+ #: wppa-links.php:829
5820
+ #, fuzzy, php-format
5821
+ msgid "Scheduled for %s"
5822
+ msgstr "Für %s geplant"
5823
 
5824
+ #: wppa-links.php:1042 wppa-links.php:1045 wppa-slideshow.php:1123
5825
+ msgid "Previous"
5826
+ msgstr "Vorheriges"
 
5827
 
5828
+ #: wppa-links.php:1052 wppa-links.php:1055 wppa-non-admin.php:763
5829
+ #: wppa-slideshow.php:1137
5830
+ msgid "Next"
5831
+ msgstr "Nächstes"
5832
 
5833
+ #: wppa-links.php:1108
5834
  #, fuzzy
5835
+ msgid "Download Album"
5836
+ msgstr "Album herunterladen"
5837
 
5838
+ #: wppa-links.php:1252
5839
  #, fuzzy
5840
+ msgid "View thumbnails"
5841
+ msgstr "Anzeigen die Miniaturen"
 
 
 
 
 
 
5842
 
5843
+ #: wppa-links.php:1265
5844
  #, fuzzy
5845
+ msgid "View fullsize slideshow"
5846
+ msgstr "Fullsize-Diashow ansehen"
5847
 
5848
+ #: wppa-maintenance.php:66
5849
  #, fuzzy
5850
+ msgid "You can run only one maintenance procedure at a time"
5851
+ msgstr "Nur eine Wartungsverfahren kann zu einem Zeitpunkt ausgeführt werden."
5852
 
5853
+ #: wppa-maintenance.php:126
5854
  #, fuzzy
5855
+ msgid "Orphan photos"
5856
+ msgstr "Seltene Fotos"
 
 
 
 
5857
 
5858
+ #: wppa-maintenance.php:126
5859
  #, fuzzy
5860
+ msgid "This album contains refound lost photos"
5861
+ msgstr "Dieses Album enthält lesenswerte verlorenen Fotos"
5862
 
5863
+ #: wppa-maintenance.php:154
 
5864
  #, fuzzy
5865
+ msgid "Feature must be enabled in Table IV-A28 first"
5866
+ msgstr "Funktion muss in Tabelle IV-A28 zuerst aktiviert werden"
5867
 
5868
+ #: wppa-maintenance.php:161
5869
+ #, fuzzy, php-format
5870
+ msgid "From album %d does not exist"
5871
+ msgstr "Vom Album vorhanden %d nicht"
5872
 
5873
+ #: wppa-maintenance.php:166
5874
+ #, fuzzy, php-format
5875
+ msgid "To album %d does not exist"
5876
+ msgstr "Album existiert %d nicht"
5877
+
5878
+ #: wppa-maintenance.php:170
5879
  #, fuzzy
5880
+ msgid "From and To albums are identical"
5881
+ msgstr "Von und zu den Alben sind identisch"
5882
+
5883
+ #: wppa-maintenance.php:756 wppa-maintenance.php:772
5884
+ #: wppa-photo-admin-autosave.php:1757 wppa-photo-admin-autosave.php:1778
5885
+ #: wppa-settings-autosave.php:4526 wppa-setup.php:352
5886
+ msgid "Required"
5887
+ msgstr "Erforderlich"
5888
+
5889
+ #: wppa-maintenance.php:832
5890
+ #, fuzzy, php-format
5891
  msgid ""
5892
+ "List of Searcheable words <small>( Max 1000 entries of total %d )</small>"
 
5893
  msgstr ""
5894
+ "Liste der suchbaren Wörter <small>(Max 1000 Einträge von insgesamt %d)</"
5895
+ "small>"
5896
 
5897
+ #: wppa-maintenance.php:865
5898
  #, fuzzy
5899
+ msgid "There are no index items."
5900
+ msgstr "Es gibt keine Index-Elemente."
5901
 
5902
+ #: wppa-maintenance.php:875
5903
  #, fuzzy
5904
+ msgid "List of WPPA+ log messages"
5905
+ msgstr "Liste der WPPA + Log-Meldungen"
 
 
 
 
5906
 
5907
+ #: wppa-maintenance.php:880
5908
  #, fuzzy
5909
+ msgid "There are no error log messages"
5910
+ msgstr "Es gibt keine Fehler-Log-Meldungen"
5911
+
5912
+ #: wppa-maintenance.php:901
5913
+ #, fuzzy, php-format
5914
+ msgid "List of recent ratings <small>( Max 1000 entries of total %d )</small>"
5915
  msgstr ""
5916
+ "Liste der jüngsten Bewertungen <small>(Max 1000 Einträge von insgesamt %d)</"
5917
+ "small>"
5918
 
5919
+ #: wppa-maintenance.php:951
5920
  #, fuzzy
5921
+ msgid "There are no ratings"
5922
+ msgstr "Es gibt keine Bewertungen"
5923
 
5924
+ #: wppa-maintenance.php:962
5925
+ #, fuzzy, php-format
5926
+ msgid "List of active sessions <small>( Max 1000 entries of total %d )</small>"
5927
+ msgstr ""
5928
+ "Liste der aktiven Sitzungen <small>(Max 1000 Einträge von insgesamt %d)</"
5929
+ "small>"
5930
 
5931
+ #: wppa-maintenance.php:1022
5932
  #, fuzzy
5933
+ msgid "There are no active sessions"
5934
+ msgstr "Es gibt keine aktiven Sitzungen"
5935
 
5936
+ #: wppa-maintenance.php:1038
5937
+ #, fuzzy, php-format
5938
+ msgid "List of comments <small>( Max 1000 entries of total %d )</small>"
5939
+ msgstr ""
5940
+ "Liste der Kommentare <small>(Max 1000 Einträge von insgesamt %d)</small>"
5941
+
5942
+ #: wppa-maintenance.php:1084
5943
  #, fuzzy
5944
+ msgid "There are no comments"
5945
+ msgstr "- - - Kommentar Box aktiviert- - -"
5946
 
5947
+ #: wppa-multitag-widget.php:13 wppa-tagcloud-widget.php:13
5948
  #, fuzzy
5949
+ msgid "WPPA+ Photo Tags"
5950
+ msgstr "WPPA + Foto-Tags"
5951
 
5952
+ #: wppa-multitag-widget.php:14
5953
  #, fuzzy
5954
+ msgid "Photo Tags Filter"
5955
+ msgstr "Fotofilter Tags"
5956
 
5957
+ #: wppa-multitag-widget.php:73
5958
  #, fuzzy
5959
+ msgid "No of columns:"
5960
+ msgstr "Anzahl Spalten:"
5961
 
5962
+ #: wppa-multitag-widget.php:74 wppa-tagcloud-widget.php:69
5963
  #, fuzzy
5964
+ msgid "Select multiple tags or --- all ---:"
5965
+ msgstr "Wählen Sie mehrere Tags oder---alle---:"
5966
 
5967
+ #: wppa-non-admin.php:418
5968
+ msgid "Press f for fullscreen."
5969
+ msgstr "Drücken Sie f für Vollbild."
 
5970
 
5971
+ #: wppa-non-admin.php:428 wppa-non-admin.php:499
5972
+ msgid "Toggle fullscreen"
5973
+ msgstr "Wechsel zwischen Vollbild"
 
 
5974
 
5975
+ #: wppa-non-admin.php:493
5976
+ msgid ""
5977
+ "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
5978
+ "dismiss this notice."
5979
+ msgstr ""
5980
+ "Tasten: f = nächsten Modus; q,x = verlassen; p = vorheriges, n = nächstes, s "
5981
+ "= Start / Stop, d = entlassen diesen Hinweis."
5982
 
5983
+ #: wppa-non-admin.php:494
5984
+ msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
5985
+ msgstr ""
5986
+ "Tasten: f = nächsten Modus; q,x = verlassen; d = entlassen diesen Hinweis."
 
5987
 
5988
+ #: wppa-non-admin.php:754 wppa-settings-autosave.php:3834
5989
+ #: wppa-slideshow.php:241
5990
+ msgid "Start"
5991
+ msgstr "Starte"
 
5992
 
5993
+ #: wppa-non-admin.php:755
5994
+ msgid "Stop"
5995
+ msgstr "Stop"
 
5996
 
5997
+ #: wppa-non-admin.php:756 wppa-slideshow.php:233
5998
+ msgid "Slower"
5999
+ msgstr "Langsamer"
 
6000
 
6001
+ #: wppa-non-admin.php:757 wppa-slideshow.php:249
6002
+ msgid "Faster"
6003
+ msgstr "Schneller"
 
 
 
 
 
6004
 
6005
+ #: wppa-non-admin.php:759
6006
+ msgid "of"
6007
+ msgstr "von"
 
6008
 
6009
+ #: wppa-non-admin.php:760
6010
+ msgid "Previous photo"
6011
+ msgstr "Vorheriges Foto"
 
6012
 
6013
+ #: wppa-non-admin.php:761
6014
+ msgid "Next photo"
6015
+ msgstr "Nächstes Foto"
 
6016
 
6017
+ #: wppa-non-admin.php:762
6018
+ msgid "Prev."
6019
+ msgstr "Vorheriges"
 
6020
 
6021
+ #: wppa-non-admin.php:764 wppa-slideshow.php:814 wppa-slideshow.php:828
6022
+ #: wppa-slideshow.php:967
6023
+ msgid "Average&nbsp;rating"
6024
+ msgstr "Durchschnittliche Bewertung"
6025
 
6026
+ #: wppa-non-admin.php:765 wppa-slideshow.php:893 wppa-slideshow.php:926
6027
+ #: wppa-slideshow.php:948
6028
+ msgid "My&nbsp;rating"
6029
+ msgstr "Meine&nbsp;Bewertung"
6030
 
6031
+ #: wppa-non-admin.php:766
6032
+ msgid "Avg."
6033
+ msgstr "Durchs."
 
6034
 
6035
+ #: wppa-non-admin.php:767
6036
+ msgid "Mine"
6037
+ msgstr "Meine"
 
6038
 
6039
+ #: wppa-non-admin.php:768
6040
+ msgid "You marked this image as inappropriate."
6041
+ msgstr "Sie markiert das Bild als unangemessen."
 
6042
 
6043
+ #: wppa-non-admin.php:771
6044
+ msgid "Please enter your name"
6045
+ msgstr "Bitte geben Sie Ihren Namen ein"
 
6046
 
6047
+ #: wppa-non-admin.php:772
6048
+ msgid "Please enter a valid email address"
6049
+ msgstr "Bitte geben Sie eine gültige eMail-Adresse ein"
 
6050
 
6051
+ #: wppa-non-admin.php:773
6052
+ msgid "Please enter a comment"
6053
+ msgstr "Bitte geben Sie einen Kommentar ein."
 
 
 
 
 
 
 
 
 
 
6054
 
6055
+ #: wppa-non-admin.php:807
6056
+ msgid "Double click to start/stop slideshow running"
6057
+ msgstr "Doppelklicken Sie zum Starten / Stoppen Diashow Lauf"
 
6058
 
6059
+ #: wppa-non-admin.php:908 wppa-photo-admin-autosave.php:265
6060
+ #: wppa-potd-widget.php:178
6061
+ msgid "By:"
6062
+ msgstr "Durch:"
6063
 
6064
+ #: wppa-non-admin.php:911 wppa-slideshow-widget.php:124
6065
+ msgid "No album defined (yet)"
6066
+ msgstr "Noch kein Album definiert"
 
6067
 
6068
+ #: wppa-non-admin.php:915 wppa-thumbnail-widget.php:121
6069
+ msgid "There are no photos (yet)"
6070
+ msgstr "Es sind (noch) keine Fotos"
 
6071
 
6072
+ #: wppa-non-admin.php:918 wppa-upldr-widget.php:90
6073
+ msgid "There are too many registered users in the system for this widget"
6074
+ msgstr "Es gibt zu viele registrierte Benutzer im System für dieses Widget"
 
6075
 
6076
+ #: wppa-non-admin.php:919 wppa-upldr-widget.php:125 wppa-upldr-widget.php:132
6077
+ msgid "Photos uploaded by"
6078
+ msgstr "Fotos hochgeladen durch"
 
6079
 
6080
+ #: wppa-non-admin.php:923 wppa-thumbnails.php:692 wppa-thumbnails.php:1480
6081
+ #: wppa-topten-widget.php:203 wppa-topten-widget.php:226
6082
+ #: wppa-topten-widget.php:236
6083
+ #, php-format
6084
+ msgid "%d view"
6085
+ msgid_plural "%d views"
6086
+ msgstr[0] "%d Ansicht"
6087
+ msgstr[1] "%d Ansichte"
6088
 
6089
+ #: wppa-non-admin.php:925 wppa-topten-widget.php:261
6090
+ msgid "There are no rated photos (yet)"
6091
+ msgstr "Es sind (noch) keine bewertesten Fotos"
 
6092
 
6093
+ #: wppa-photo-admin-autosave.php:35
6094
  #, fuzzy
6095
+ msgid "Edit photos"
6096
+ msgstr "Fotos bearbeiten"
6097
 
6098
+ #: wppa-photo-admin-autosave.php:54
6099
  #, fuzzy
6100
+ msgid "Moderate photos"
6101
+ msgstr "Moderate Fotos"
 
 
 
 
 
6102
 
6103
+ #: wppa-photo-admin-autosave.php:96
6104
  #, fuzzy
6105
+ msgid "You do not have the rights to do this"
6106
+ msgstr "Sie haben nicht die Rechte dazu"
6107
 
6108
+ #: wppa-photo-admin-autosave.php:118
6109
  #, fuzzy
6110
+ msgid "This photo is no longer awaiting moderation."
6111
+ msgstr "Dieses Foto ist nicht mehr wartet auf Moderation."
6112
 
6113
+ #: wppa-photo-admin-autosave.php:119
 
6114
  #, fuzzy
6115
+ msgid "There are no photos awaiting moderation at this time."
6116
+ msgstr "Es gibt keine Fotos warten auf Moderation zu diesem Zeitpunkt."
6117
 
6118
+ #: wppa-photo-admin-autosave.php:121
6119
  #, fuzzy
6120
+ msgid "Manage all photos by timestamp"
6121
+ msgstr "Verwalten Sie alle Fotos von timestamp"
6122
 
6123
+ #: wppa-photo-admin-autosave.php:138
6124
+ #, fuzzy, php-format
6125
+ msgid "Photo %s has been removed."
6126
+ msgstr "Foto %s wurde entfernt."
 
 
6127
 
6128
+ #: wppa-photo-admin-autosave.php:143 wppa-photo-admin-autosave.php:1496
6129
  #, fuzzy
6130
+ msgid "No photos matching your search criteria."
6131
+ msgstr "Keine Fotos gefunden, die deinen Suchkriterien entsprechen."
6132
 
6133
+ #: wppa-photo-admin-autosave.php:146 wppa-photo-admin-autosave.php:1499
 
 
 
 
 
 
 
6134
  #, fuzzy
6135
+ msgid "No photos yet in this album."
6136
+ msgstr "Keine Fotos in diesem Album."
6137
 
6138
+ #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:543
6139
  #, fuzzy
6140
+ msgid "top - left"
6141
+ msgstr "Top-Links"
6142
 
6143
+ #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:543
6144
  #, fuzzy
6145
+ msgid "top - center"
6146
+ msgstr "Top-Mittig"
6147
 
6148
+ #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:543
6149
  #, fuzzy
6150
+ msgid "top - right"
6151
+ msgstr "Oben rechts"
6152
 
6153
+ #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:544
6154
  #, fuzzy
6155
+ msgid "center - left"
6156
+ msgstr "mittig links"
6157
 
6158
+ #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:544
6159
  #, fuzzy
6160
+ msgid "center - center"
6161
+ msgstr "Zentrum - Zentrum"
6162
 
6163
+ #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:544
6164
  #, fuzzy
6165
+ msgid "center - right"
6166
+ msgstr "mittig rechts"
6167
 
6168
+ #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:545
6169
  #, fuzzy
6170
+ msgid "bottom - left"
6171
+ msgstr "Unten links"
6172
 
6173
+ #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:545
6174
  #, fuzzy
6175
+ msgid "bottom - center"
6176
+ msgstr "unten zentriert"
6177
 
6178
+ #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:545
6179
  #, fuzzy
6180
+ msgid "bottom - right"
6181
+ msgstr "Unten Rechts"
6182
 
6183
+ #: wppa-photo-admin-autosave.php:177
6184
  #, fuzzy
6185
+ msgid "Preview:"
6186
+ msgstr "Vorschau tags:"
6187
+
6188
+ #: wppa-photo-admin-autosave.php:180
6189
+ #, fuzzy, php-format
6190
+ msgid "Album: %d<br />(%s)"
6191
+ msgstr "Album: %d<br>(%s)"
6192
 
6193
+ #: wppa-photo-admin-autosave.php:183
6194
  #, fuzzy
6195
+ msgid "Rotate"
6196
+ msgstr "Drehen"
6197
 
6198
+ #: wppa-photo-admin-autosave.php:184
6199
  #, fuzzy
6200
+ msgid "Are you sure you want to rotate this photo left?"
6201
+ msgstr "Sind Sie sicher, dass dieses Foto links gedreht werden soll?"
6202
 
6203
+ #: wppa-photo-admin-autosave.php:186
6204
  #, fuzzy
6205
+ msgid "Are you sure you want to rotate this photo 180&deg;?"
6206
+ msgstr "Sind Sie sicher, dass dieses Foto 180° gedreht werden soll?"
6207
 
6208
+ #: wppa-photo-admin-autosave.php:188
 
6209
  #, fuzzy
6210
+ msgid "Are you sure you want to rotate this photo right?"
6211
+ msgstr "Sind Sie sicher, dass dieses Foto rechts gedreht werden soll?"
6212
 
6213
+ #: wppa-photo-admin-autosave.php:193
6214
  #, fuzzy
6215
+ msgid "If it says 'Photo rotated', the photo is rotated."
6216
+ msgstr "Wenn sie sagt, \"Foto gedreht\", wird das Foto gedreht."
6217
 
6218
+ #: wppa-photo-admin-autosave.php:197
6219
+ #, fuzzy, php-format
6220
+ msgid "If it says 'Photo rotated', the photo is rotated. %s the page."
6221
+ msgstr "Wenn sie sagt, \"Foto gedreht\", wird das Foto gedreht. %s der Seite."
6222
 
6223
+ #: wppa-photo-admin-autosave.php:211
6224
  #, fuzzy
6225
+ msgid "Preview fullsize video"
6226
+ msgstr "Video Vorschau fullsize"
6227
 
6228
+ #: wppa-photo-admin-autosave.php:226
6229
  #, fuzzy
6230
+ msgid "Preview fullsize photo"
6231
+ msgstr "Vorschau-Fullsize-Foto"
6232
 
6233
+ #: wppa-photo-admin-autosave.php:241
6234
  #, fuzzy
6235
+ msgid "Audio disabled"
6236
+ msgstr "Audio deaktiviert"
6237
 
6238
+ #: wppa-photo-admin-autosave.php:251
6239
  #, fuzzy
6240
+ msgid "Upload:"
6241
+ msgstr "Fehler beim Hochladen"
6242
 
6243
+ #: wppa-photo-admin-autosave.php:309
6244
  #, fuzzy
6245
+ msgid "Rating:"
6246
+ msgstr "Meine Bewertung:"
 
6247
 
6248
+ #: wppa-photo-admin-autosave.php:315
6249
  #, fuzzy
6250
+ msgid "Entries:"
6251
+ msgstr "Einträge:"
6252
 
6253
+ #: wppa-photo-admin-autosave.php:315
6254
  #, fuzzy
6255
+ msgid "Mean value:"
6256
+ msgstr "Mittelwert: %4.2f."
6257
 
6258
+ #: wppa-photo-admin-autosave.php:322
6259
+ #, fuzzy, php-format
6260
+ msgid "Disliked by %d visitors"
6261
+ msgstr "Abgelehnt von %d Besucher"
6262
 
6263
+ #: wppa-photo-admin-autosave.php:326
6264
+ #, fuzzy, php-format
6265
+ msgid "%d pending votes."
6266
+ msgstr "%d bis zu stimmen."
6267
 
6268
+ #: wppa-photo-admin-autosave.php:336
6269
  #, fuzzy
6270
+ msgid "Views"
6271
+ msgstr "Ansichten"
6272
 
6273
+ #: wppa-photo-admin-autosave.php:347
6274
  #, fuzzy
6275
+ msgid "Photo sort order #:"
6276
+ msgstr "Bildersortierung"
6277
 
6278
+ #: wppa-photo-admin-autosave.php:363
6279
  #, fuzzy
6280
+ msgid "Are you sure you want to move this video?"
6281
+ msgstr "Bist Du sicher dass Du das Video entfernen möchtest?"
6282
 
6283
+ #: wppa-photo-admin-autosave.php:363
6284
  #, fuzzy
6285
+ msgid "Are you sure you want to move this photo?"
6286
+ msgstr "Bist Du sicher dass Du dieses Foto löschen möchtest?"
6287
 
6288
+ #: wppa-photo-admin-autosave.php:364
6289
  #, fuzzy
6290
+ msgid "Please select an album to move to first."
6291
+ msgstr "Bitte wählen Sie ein Album, um zuerst zu bewegen."
6292
 
6293
+ #: wppa-photo-admin-autosave.php:367
6294
  #, fuzzy
6295
+ msgid "Move video to"
6296
+ msgstr "Video zu verschieben"
6297
 
6298
+ #: wppa-photo-admin-autosave.php:368
6299
  #, fuzzy
6300
+ msgid "Move photo to"
6301
+ msgstr "Foto zu verschieben"
 
6302
 
6303
+ #: wppa-photo-admin-autosave.php:380
 
 
 
 
 
6304
  #, fuzzy
6305
+ msgid "Are you sure you want to copy this video?"
6306
+ msgstr "Bist Du sicher dass Du das Video entfernen möchtest?"
6307
 
6308
+ #: wppa-photo-admin-autosave.php:380
 
 
 
 
 
 
 
 
 
 
 
6309
  #, fuzzy
6310
+ msgid "Are you sure you want to copy this photo?"
6311
+ msgstr "Bist Du sicher dass Du dieses Foto löschen möchtest?"
6312
 
6313
+ #: wppa-photo-admin-autosave.php:381
6314
  #, fuzzy
6315
+ msgid "Please select an album to copy to first."
6316
+ msgstr "Bitte wählen Sie ein Album, zuerst zu kopieren."
 
 
 
 
6317
 
6318
+ #: wppa-photo-admin-autosave.php:384
6319
  #, fuzzy
6320
+ msgid "Copy video to"
6321
+ msgstr "Video zu kopieren"
6322
 
6323
+ #: wppa-photo-admin-autosave.php:385
6324
  #, fuzzy
6325
+ msgid "Copy photo to"
6326
+ msgstr "Foto, Kopie um"
 
 
 
 
6327
 
6328
+ #: wppa-photo-admin-autosave.php:403
6329
  #, fuzzy
6330
+ msgid "Are you sure you want to delete this video?"
6331
+ msgstr "Sind Sie sicher, dass Sie dieses Video löschen möchten?"
 
 
 
 
6332
 
6333
+ #: wppa-photo-admin-autosave.php:404 wppa-photo-admin-autosave.php:1380
6334
  #, fuzzy
6335
+ msgid "Are you sure you want to delete this photo?"
6336
+ msgstr "Bist du sicher, dass du dieses Foto löschen möchtest?"
6337
 
6338
+ #: wppa-photo-admin-autosave.php:406
6339
  #, fuzzy
6340
+ msgid "Delete video"
6341
+ msgstr "Video löschen"
 
 
 
 
6342
 
6343
+ #: wppa-photo-admin-autosave.php:406
6344
  #, fuzzy
6345
+ msgid "Delete photo"
6346
+ msgstr "Foto löschen"
 
 
 
 
6347
 
6348
+ #: wppa-photo-admin-autosave.php:417
6349
  #, fuzzy
6350
+ msgid "Autopage Permalink:"
6351
+ msgstr "AutoPage Permalink:"
6352
 
6353
+ #: wppa-photo-admin-autosave.php:430
6354
  #, fuzzy
6355
+ msgid "Link url:"
6356
+ msgstr "Link URL"
6357
 
6358
+ #: wppa-photo-admin-autosave.php:435
6359
  #, fuzzy
6360
+ msgid "Same tab"
6361
+ msgstr "gleichem Tab"
 
 
 
 
 
 
6362
 
6363
+ #: wppa-photo-admin-autosave.php:436 wppa-settings-autosave.php:5005
6364
+ #: wppa-settings-autosave.php:6011
6365
  #, fuzzy
6366
+ msgid "New tab"
6367
+ msgstr "neuem Tab"
6368
 
6369
+ #: wppa-photo-admin-autosave.php:444
6370
  #, fuzzy
6371
+ msgid "Link title:"
6372
+ msgstr "Link Titel:"
 
 
 
6373
 
6374
+ #: wppa-photo-admin-autosave.php:453
6375
  #, fuzzy
6376
  msgid ""
6377
+ "If you want this link to be used, check 'PS Overrule' checkbox in table VI."
 
 
6378
  msgstr ""
6379
+ "Wenn Sie diesen Link verwendet werden sollen, das Kontrollkästchen Sie "
6380
+ "\"Überstimmen PS\" in Tabelle VI."
 
6381
 
6382
+ #: wppa-photo-admin-autosave.php:464
6383
  #, fuzzy
6384
+ msgid "HTML Alt attribute:"
6385
+ msgstr "HTML Alt-Attribut:"
 
 
 
6386
 
6387
+ #: wppa-photo-admin-autosave.php:484
6388
  #, fuzzy
6389
+ msgid "Filename:"
 
 
6390
  msgstr ""
6391
+ "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 120 (Caption) wie "
6392
+ "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
 
 
 
 
 
6393
 
6394
+ #: wppa-photo-admin-autosave.php:490
6395
  #, fuzzy
6396
+ msgid "Update file"
6397
+ msgstr "Datei aktualisieren"
 
6398
 
6399
+ #: wppa-photo-admin-autosave.php:501 wppa-settings-autosave.php:3315
6400
  #, fuzzy
6401
+ msgid "Upload"
6402
+ msgstr "Fehler beim Hochladen"
6403
 
6404
+ #: wppa-photo-admin-autosave.php:511
6405
  #, fuzzy
6406
+ msgid "Video size:"
6407
+ msgstr "Videogröße:"
6408
 
6409
+ #: wppa-photo-admin-autosave.php:517 wppa-slideshow-widget.php:201
6410
  #, fuzzy
6411
+ msgid "Width:"
6412
+ msgstr "Breite:"
6413
+
6414
+ #: wppa-photo-admin-autosave.php:520 wppa-photo-admin-autosave.php:528
6415
+ #, fuzzy, php-format
6416
+ msgid "pix, (0=default:%s)"
6417
+ msgstr "PIX, (0 = Standard: %s)"
6418
 
6419
+ #: wppa-photo-admin-autosave.php:525 wppa-slideshow-widget.php:202
6420
  #, fuzzy
6421
+ msgid "Height:"
6422
+ msgstr "Höhe:"
6423
 
6424
+ #: wppa-photo-admin-autosave.php:536 wppa-photo-admin-autosave.php:558
6425
  #, fuzzy
6426
+ msgid "Formats:"
6427
+ msgstr "Formate:"
6428
 
6429
+ #: wppa-photo-admin-autosave.php:544 wppa-photo-admin-autosave.php:566
6430
  #, fuzzy
6431
+ msgid "Filesize:"
6432
+ msgstr "Dateigrösse"
6433
 
6434
+ #: wppa-photo-admin-autosave.php:579
6435
  #, fuzzy
6436
+ msgid "Poster:"
6437
+ msgstr "Poster"
 
 
 
 
6438
 
6439
+ #: wppa-photo-admin-autosave.php:579
6440
  #, fuzzy
6441
+ msgid "Photo sizes:"
6442
+ msgstr "Fotogrößen:"
6443
 
6444
+ #: wppa-photo-admin-autosave.php:585
6445
  #, fuzzy
6446
+ msgid "Source file:"
6447
+ msgstr "Quelldatei"
 
 
 
6448
 
6449
+ #: wppa-photo-admin-autosave.php:598
6450
  #, fuzzy
6451
+ msgid "Remake display file and thumbnail file"
6452
+ msgstr "Remake Display und thumbnail Datei"
 
 
6453
 
6454
+ #: wppa-photo-admin-autosave.php:598
6455
  #, fuzzy
6456
+ msgid "Remake files"
6457
+ msgstr "Remake-Dateien"
6458
 
6459
+ #: wppa-photo-admin-autosave.php:603 wppa-photo-admin-autosave.php:628
6460
+ #: wppa-photo-admin-autosave.php:651
6461
  #, fuzzy
6462
+ msgid "Unavailable"
6463
+ msgstr "Nicht verfügbar"
 
 
 
 
6464
 
6465
+ #: wppa-photo-admin-autosave.php:613
6466
  #, fuzzy
6467
+ msgid "Display file:"
6468
+ msgstr "Display-Datei:"
6469
 
6470
+ #: wppa-photo-admin-autosave.php:638
6471
  #, fuzzy
6472
+ msgid "Thumbnail file:"
6473
+ msgstr "Thumbnail-Datei:"
 
 
 
 
6474
 
6475
+ #: wppa-photo-admin-autosave.php:658
6476
  #, fuzzy
6477
+ msgid "Remake thumbnail file"
6478
+ msgstr "Remake-thumbnail-Datei"
6479
 
6480
+ #: wppa-photo-admin-autosave.php:658 wppa-settings-autosave.php:6892
6481
  #, fuzzy
6482
+ msgid "Remake"
6483
+ msgstr "Neuverfilmung"
6484
 
6485
+ #: wppa-photo-admin-autosave.php:670
6486
  #, fuzzy
6487
+ msgid "Stereophoto:"
6488
+ msgstr "StereoPhoto:"
 
 
 
 
6489
 
6490
+ #: wppa-photo-admin-autosave.php:674
6491
  #, fuzzy
6492
+ msgid "no stereo image or ready anaglyph"
6493
+ msgstr "weder bereit Anaglyphen und Stereo-Bild"
6494
 
6495
+ #: wppa-photo-admin-autosave.php:675
6496
  #, fuzzy
6497
+ msgid "Left - right stereo image"
6498
+ msgstr "Links - rechts Stereo-Bild"
6499
 
6500
+ #: wppa-photo-admin-autosave.php:676
6501
  #, fuzzy
6502
+ msgid "Right - left stereo image"
6503
+ msgstr "Rechts - links Stereo-Bild"
6504
 
6505
+ #: wppa-photo-admin-autosave.php:682
 
6506
  #, fuzzy
6507
+ msgid "Images:"
6508
+ msgstr ""
6509
+ "Basierend auf Ihrem Server Speichergrenze sollten Sie keine Bilder hochladen "
6510
+ "größer <strong>dann %d x %d (% 2.1f MP)</strong>"
6511
 
6512
+ #: wppa-photo-admin-autosave.php:712
6513
  #, fuzzy
6514
+ msgid "Location:"
6515
+ msgstr "Ort:"
6516
 
6517
+ #: wppa-photo-admin-autosave.php:720
6518
  #, fuzzy
6519
+ msgid "Lat:"
6520
+ msgstr "Breitengrad (Lat)"
6521
 
6522
+ #: wppa-photo-admin-autosave.php:721
6523
  #, fuzzy
6524
+ msgid "Lon:"
6525
+ msgstr "Längengrad (Lng)"
6526
 
6527
+ #: wppa-photo-admin-autosave.php:723
6528
  #, fuzzy
6529
+ msgid "Refresh the page after changing to see the degrees being updated"
6530
+ msgstr ""
6531
+ "Aktualisieren Sie die Seite nach dem ändern um zu sehen, die Grade "
6532
+ "aktualisiert"
6533
 
6534
+ #: wppa-photo-admin-autosave.php:733
6535
  #, fuzzy
6536
+ msgid "Photoname:"
6537
+ msgstr ""
6538
+ "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 005 (Graphic Name) wie "
6539
+ "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
6540
 
6541
+ #: wppa-photo-admin-autosave.php:739
6542
  #, fuzzy
6543
+ msgid "Update Photo name"
6544
+ msgstr "Foto aktualisieren"
6545
 
6546
+ #: wppa-photo-admin-autosave.php:765
6547
  #, fuzzy
6548
+ msgid "Update Photo description"
6549
+ msgstr "Fotobeschreibung aktualisieren"
 
 
 
 
 
6550
 
6551
+ #: wppa-photo-admin-autosave.php:823
6552
  #, fuzzy
6553
+ msgid "Tags:"
6554
+ msgstr "Tags:"
 
 
 
 
 
6555
 
6556
+ #: wppa-photo-admin-autosave.php:831
6557
  #, fuzzy
6558
+ msgid "Separate tags with commas."
6559
+ msgstr "Tags durch Kommas trennen"
6560
 
6561
+ #: wppa-photo-admin-autosave.php:842
6562
  #, fuzzy
6563
+ msgid "No tags yet"
6564
+ msgstr "Noch keine <a href=\"%s\">Schlagworte</a> vorhanden."
6565
 
6566
+ #: wppa-photo-admin-autosave.php:854
6567
  #, fuzzy
6568
+ msgid "Status:"
6569
+ msgstr "Status:"
 
 
 
 
6570
 
6571
+ #: wppa-photo-admin-autosave.php:863 wppa-photo-admin-autosave.php:886
6572
+ #: wppa-photo-admin-autosave.php:1328 wppa-photo-admin-autosave.php:1445
6573
+ #: wppa-photo-admin-autosave.php:1457 wppa-potd-admin.php:226
6574
  #, fuzzy
6575
+ msgid "Publish"
6576
+ msgstr "Veröffentlichung"
6577
 
6578
+ #: wppa-photo-admin-autosave.php:865 wppa-photo-admin-autosave.php:887
6579
+ #: wppa-photo-admin-autosave.php:1330 wppa-photo-admin-autosave.php:1447
6580
+ #: wppa-potd-admin.php:227
6581
  #, fuzzy
6582
+ msgid "Featured"
6583
+ msgstr "Sehen Sie die best bewertesten Fotos"
6584
 
6585
+ #: wppa-photo-admin-autosave.php:869 wppa-photo-admin-autosave.php:891
6586
+ #: wppa-photo-admin-autosave.php:1334 wppa-photo-admin-autosave.php:1451
6587
+ #: wppa-photo-admin-autosave.php:1462
6588
  #, fuzzy
6589
+ msgid "Scheduled"
6590
+ msgstr "Geplant"
6591
 
6592
+ #: wppa-photo-admin-autosave.php:870 wppa-photo-admin-autosave.php:892
6593
+ #: wppa-photo-admin-autosave.php:1335 wppa-photo-admin-autosave.php:1452
6594
+ #: wppa-photo-admin-autosave.php:1463
6595
  #, fuzzy
6596
+ msgid "Private"
6597
+ msgstr "Privat"
6598
 
6599
+ #: wppa-photo-admin-autosave.php:901
6600
  #, fuzzy
6601
  msgid ""
6602
+ "Note: Featured photos should have a descriptive name; a name a search engine "
6603
+ "will look for!"
6604
  msgstr ""
6605
+ "Hinweis: Empfohlene Fotos sollte einen aussagekräftigen Namen haben; ein "
6606
+ "Name einer Suchmaschine sucht!"
6607
 
6608
+ #: wppa-photo-admin-autosave.php:911
6609
  #, fuzzy
6610
+ msgid "Watermark:"
6611
+ msgstr "Wasserzeichen"
 
 
 
6612
 
6613
+ #: wppa-photo-admin-autosave.php:918 wppa-photo-admin-autosave.php:931
6614
  #, fuzzy
6615
+ msgid "File:"
6616
+ msgstr "Hochgeladenen datei ist kein Bild"
6617
 
6618
+ #: wppa-photo-admin-autosave.php:923 wppa-photo-admin-autosave.php:932
 
 
6619
  #, fuzzy
6620
+ msgid "Pos:"
6621
+ msgstr "Pos"
6622
 
6623
+ #: wppa-photo-admin-autosave.php:927
6624
  #, fuzzy
6625
+ msgid "Apply watermark"
6626
+ msgstr "Wende Wasserzeichen-Datei an:"
6627
 
6628
+ #: wppa-photo-admin-autosave.php:927
6629
  #, fuzzy
6630
+ msgid "Are you sure? Once applied it can not be removed!"
6631
+ msgstr "Bist du sicher? Einmal angewendet, es kann nicht entfernt werden!"
6632
 
6633
+ #: wppa-photo-admin-autosave.php:927
6634
  #, fuzzy
6635
+ msgid "And I do not know if there is already a watermark on this photo"
6636
+ msgstr "Und ich weiß nicht, ob es bereits ein Wasserzeichen auf diesem Foto"
 
 
 
 
6637
 
6638
+ #: wppa-photo-admin-autosave.php:937
6639
  #, fuzzy
6640
+ msgid "Not configured"
6641
+ msgstr "(nicht konfiguriert)"
6642
+
6643
+ #: wppa-photo-admin-autosave.php:951
6644
+ #, fuzzy, php-format
6645
+ msgid "Video %s is not modified yet"
6646
+ msgstr "Video %s ist noch nicht geändert."
6647
+
6648
+ #: wppa-photo-admin-autosave.php:954
6649
+ #, fuzzy, php-format
6650
+ msgid "Photo %s is not modified yet"
6651
+ msgstr "Foto %s ist noch nicht geändert."
6652
 
6653
+ #: wppa-photo-admin-autosave.php:973
6654
  #, fuzzy
6655
+ msgid "Single image shortcode"
6656
+ msgstr "Einzelbild-shortcode"
6657
 
6658
+ #: wppa-photo-admin-autosave.php:979
6659
  #, fuzzy
6660
+ msgid "Permalink"
6661
+ msgstr "Permalink"
 
 
 
 
6662
 
6663
+ #: wppa-photo-admin-autosave.php:984
6664
  #, fuzzy
6665
+ msgid "Hi resolution url"
6666
+ msgstr "Hallo Auflösung Url"
 
 
6667
 
6668
+ #: wppa-photo-admin-autosave.php:989
6669
  #, fuzzy
6670
+ msgid "Display file url"
6671
+ msgstr "URL zeigen"
6672
 
6673
+ #: wppa-photo-admin-autosave.php:995
6674
  #, fuzzy
6675
+ msgid "Thumbnail file url"
6676
+ msgstr "Thumbnail Datei-url"
6677
 
6678
+ #: wppa-photo-admin-autosave.php:1039 wppa-photo-admin-autosave.php:1049
6679
  #, fuzzy
6680
+ msgid "Trash"
6681
+ msgstr "Papierkorb"
6682
+
6683
+ #: wppa-photo-admin-autosave.php:1165
6684
+ #, fuzzy, php-format
6685
+ msgid "Time is out after processing %d out of %d items."
6686
+ msgstr "Es ist nach der Verarbeitung %d aus %d Elemente."
6687
+
6688
+ #: wppa-photo-admin-autosave.php:1178
6689
+ #, fuzzy, php-format
6690
+ msgid "%d photos deleted."
6691
+ msgstr "%d Fotos gelöscht."
6692
+
6693
+ #: wppa-photo-admin-autosave.php:1181
6694
+ #, fuzzy, php-format
6695
+ msgid "%1$s photos moved to album %2$s."
6696
+ msgstr "%1$s Fotos zog nach Album %2$s."
6697
+
6698
+ #: wppa-photo-admin-autosave.php:1184
6699
+ #, fuzzy, php-format
6700
+ msgid "%1$s photos copied to album %2$s."
6701
+ msgstr "%1$s Fotos in Album %2$s kopiert."
6702
+
6703
+ #: wppa-photo-admin-autosave.php:1187
6704
+ #, fuzzy, php-format
6705
+ msgid "Changed status to %1$s on %2$s photos."
6706
+ msgstr "Status auf %1$s auf %2$s Fotos geändert."
6707
+
6708
+ #: wppa-photo-admin-autosave.php:1190
6709
+ #, fuzzy, php-format
6710
+ msgid "Changed owner to %1$s on %2$s photos."
6711
+ msgstr "Eigentümer auf %1$s auf %2$s Fotos geändert."
6712
+
6713
+ #: wppa-photo-admin-autosave.php:1193
6714
+ #, fuzzy, php-format
6715
+ msgid "%d photos processed."
6716
+ msgstr "%d Fotos verarbeitet."
6717
 
6718
+ #: wppa-photo-admin-autosave.php:1313
6719
  #, fuzzy
6720
+ msgid "Move to"
6721
+ msgstr "Anfahren"
 
 
 
 
6722
 
6723
+ #: wppa-photo-admin-autosave.php:1314
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6724
  #, fuzzy
6725
+ msgid "Copy to"
6726
+ msgstr "Kopieer naar"
6727
 
6728
+ #: wppa-photo-admin-autosave.php:1316
6729
  #, fuzzy
6730
+ msgid "Set status to"
6731
+ msgstr "Status zu setzen"
6732
 
6733
+ #: wppa-photo-admin-autosave.php:1319
6734
  #, fuzzy
6735
+ msgid "Set owner to"
6736
+ msgstr "Eingestellten Besitzer"
6737
 
6738
+ #: wppa-photo-admin-autosave.php:1326
6739
+ msgid "- select a status -"
6740
+ msgstr "-Wählen Sie einen Status-"
6741
+
6742
+ #: wppa-photo-admin-autosave.php:1341
6743
+ msgid "- select an owner -"
6744
+ msgstr "-Wählen Sie einen Besitzer-"
6745
+
6746
+ #: wppa-photo-admin-autosave.php:1353
6747
  #, fuzzy
6748
+ msgid "Doit!"
6749
+ msgstr "Doit!"
6750
 
6751
+ #: wppa-photo-admin-autosave.php:1355
6752
  #, fuzzy
6753
  msgid ""
6754
+ "Pressing this button will reload the page after executing the selected action"
 
 
 
6755
  msgstr ""
6756
+ "Betätigung dieser Taste wird die Seite neu zu laden nach Ausführung der "
6757
+ "ausgewählten Aktion"
 
 
 
6758
 
6759
+ #: wppa-photo-admin-autosave.php:1362 wppa-photo-admin-autosave.php:1481
6760
+ #: wppa-potd-admin.php:321 wppa-settings-autosave.php:8506
 
 
 
6761
  #, fuzzy
6762
+ msgid "Preview"
6763
+ msgstr "Vorschau"
6764
 
6765
+ #: wppa-photo-admin-autosave.php:1367 wppa-photo-admin-autosave.php:1486
6766
  #, fuzzy
6767
+ msgid "Remark"
6768
+ msgstr "Bemerkung"
6769
 
6770
+ #: wppa-photo-admin-autosave.php:1504
6771
+ #, fuzzy, php-format
6772
+ msgid "Page %d is empty, try <a href=\"%s\" >page %d</a>."
6773
+ msgstr "Seite %d ist leer, <a href=\"%s\">Seite %d</a>versuchen."
6774
 
6775
+ #: wppa-photo-admin-autosave.php:1629
6776
  #, fuzzy
6777
  msgid ""
6778
+ "Setting photo sequence order has only effect if the photo order method is "
6779
+ "set to <b>Order#</b>"
6780
  msgstr ""
6781
+ "Foto Reihenfolge festlegen hat nur Auswirkungen, wenn die Bestellmethode "
6782
+ "Foto auf <b>Bestellung #</b> festgelegt ist"
6783
 
6784
+ #: wppa-photo-admin-autosave.php:1688
6785
  #, fuzzy
6786
+ msgid "Id: "
6787
+ msgstr "ID:"
6788
 
6789
+ #: wppa-photo-admin-autosave.php:1689 wppa-settings-autosave.php:389
6790
  #, fuzzy
6791
+ msgid "Video"
6792
+ msgstr "Video"
6793
 
6794
+ #: wppa-photo-admin-autosave.php:1690 wppa-settings-autosave.php:370
6795
  #, fuzzy
6796
+ msgid "Audio"
6797
+ msgstr "Audio"
 
 
 
 
6798
 
6799
+ #: wppa-photo-admin-autosave.php:1691
6800
  #, fuzzy
6801
+ msgid "Ord: "
6802
+ msgstr "Ord:"
 
 
6803
 
6804
+ #: wppa-photo-admin-autosave.php:1704
6805
  #, fuzzy
6806
+ msgid "The album is empty."
6807
+ msgstr "Das ALbum ist leer."
6808
 
6809
+ #: wppa-photo-admin-autosave.php:1804
6810
  #, fuzzy
6811
+ msgid "Combined"
6812
+ msgstr "Kombiniert"
6813
 
6814
+ #: wppa-photo-admin-autosave.php:1841
6815
  #, fuzzy
6816
+ msgid "Word"
6817
+ msgstr "Word"
6818
 
6819
+ #: wppa-photo-admin-autosave.php:1844
6820
  #, fuzzy
6821
+ msgid "Count"
6822
+ msgstr "Häufigkeit"
 
 
 
 
 
 
6823
 
6824
+ #: wppa-photo-admin-autosave.php:1896 wppa-settings-autosave.php:6430
6825
  #, fuzzy
6826
+ msgid "Tags"
6827
+ msgstr "Suchbegriffe"
6828
 
6829
+ #: wppa-photo-admin-autosave.php:2016
6830
  #, fuzzy
6831
+ msgid "Send"
6832
+ msgstr "Absenden!"
6833
+
6834
+ #: wppa-photo-files.php:144 wppa-photo-files.php:145
6835
+ #, php-format
6836
+ msgid "ERROR: File %s is not a valid picture file."
6837
+ msgstr "FEHLER: Die Datei%s ist keine gültige Bilddatei."
6838
+
6839
+ #: wppa-photo-files.php:289 wppa-photo-files.php:290
6840
+ msgid "ERROR: Resized or copied image could not be created."
6841
+ msgstr "ERROR: Resized oder kopierte Bild konnte nicht erstellt werden."
6842
 
6843
+ #: wppa-potd-admin.php:55
6844
  #, fuzzy
6845
+ msgid "Photo of the Day (Widget) Settings"
6846
+ msgstr "Foto des Tages (Widget) Einstellungen"
6847
 
6848
+ #: wppa-potd-admin.php:56
6849
  #, fuzzy
6850
+ msgid "Changes are updated immediately. The page will reload if required."
6851
+ msgstr ""
6852
+ "Änderungen werden sofort aktualisiert. Die Seite wird neu geladen, falls "
6853
+ "erforderlich."
6854
 
6855
+ #: wppa-potd-admin.php:73 wppa-potd-admin.php:360
6856
+ #: wppa-settings-autosave.php:517 wppa-settings-autosave.php:679
6857
+ #: wppa-settings-autosave.php:701 wppa-settings-autosave.php:1449
6858
+ #: wppa-settings-autosave.php:1470 wppa-settings-autosave.php:3095
6859
+ #: wppa-settings-autosave.php:3477 wppa-settings-autosave.php:4782
6860
+ #: wppa-settings-autosave.php:6680 wppa-settings-autosave.php:7456
6861
+ #: wppa-settings-autosave.php:9178
6862
  #, fuzzy
6863
+ msgid "Setting"
6864
+ msgstr "تنظیمات"
6865
 
6866
+ #: wppa-potd-admin.php:74 wppa-potd-admin.php:361
6867
+ #: wppa-settings-autosave.php:518 wppa-settings-autosave.php:680
6868
+ #: wppa-settings-autosave.php:702 wppa-settings-autosave.php:1450
6869
+ #: wppa-settings-autosave.php:1471 wppa-settings-autosave.php:3096
6870
+ #: wppa-settings-autosave.php:3120 wppa-settings-autosave.php:3457
6871
+ #: wppa-settings-autosave.php:3478 wppa-settings-autosave.php:4783
6872
+ #: wppa-settings-autosave.php:4807 wppa-settings-autosave.php:4983
6873
+ #: wppa-settings-autosave.php:5007 wppa-settings-autosave.php:6013
6874
+ #: wppa-settings-autosave.php:6682 wppa-settings-autosave.php:6706
6875
+ #: wppa-settings-autosave.php:7436 wppa-settings-autosave.php:7457
6876
+ #: wppa-settings-autosave.php:9179 wppa-settings-autosave.php:9201
6877
+ #: wppa-settings-autosave.php:9241 wppa-settings-autosave.php:9263
6878
+ #: wppa-settings-autosave.php:9309
6879
  #, fuzzy
6880
+ msgid "Help"
6881
+ msgstr "Hilfe"
6882
 
6883
+ #: wppa-potd-admin.php:82
6884
  #, fuzzy
6885
+ msgid "Widget Title:"
6886
+ msgstr "Widget-Titel:"
6887
 
6888
+ #: wppa-potd-admin.php:83
6889
  #, fuzzy
6890
+ msgid "The title of the widget."
6891
+ msgstr "Widget-Titel"
6892
 
6893
+ #: wppa-potd-admin.php:84
6894
  #, fuzzy
6895
+ msgid ""
6896
+ "Enter/modify the title for the widget. This is a default and can be "
6897
+ "overriden at widget activation."
6898
+ msgstr ""
6899
+ "Eingeben/ändern Sie den Titel für das Widget. Dies kann ist ein Standard und "
6900
+ "überschrieben bei der Widget-Aktivierung."
6901
 
6902
+ #: wppa-potd-admin.php:89
6903
  #, fuzzy
6904
+ msgid "Widget Photo Width:"
6905
+ msgstr "Widget-Foto-Breite:"
 
 
6906
 
6907
+ #: wppa-potd-admin.php:90
6908
  #, fuzzy
6909
+ msgid "Enter the desired display width of the photo in the sidebar."
6910
+ msgstr "Geben Sie die gewünschte Anzeigebreite des Bildes in der Seitenleiste."
6911
 
6912
+ #: wppa-potd-admin.php:93 wppa-settings-autosave.php:719
6913
+ #: wppa-settings-autosave.php:728 wppa-settings-autosave.php:850
6914
+ #: wppa-settings-autosave.php:1012 wppa-settings-autosave.php:1023
6915
  #, fuzzy
6916
+ msgid "pixels wide"
6917
+ msgstr "0像素宽"
6918
 
6919
+ #: wppa-potd-admin.php:96 wppa-tinymce-scripts.php:284
6920
+ #: wppa-tinymce-shortcodes.php:613
6921
  #, fuzzy
6922
+ msgid "Horizontal alignment:"
6923
+ msgstr "Horizontale Ausrichtung Info"
6924
 
6925
+ #: wppa-potd-admin.php:97
6926
  #, fuzzy
6927
+ msgid "Enter the desired display alignment of the photo in the sidebar."
 
6928
  msgstr ""
6929
+ "Geben Sie die gewünschte Display-Ausrichtung des Fotos in der Seitenleiste."
 
6930
 
6931
+ #: wppa-potd-admin.php:100 wppa-settings-autosave.php:3813
6932
+ #: wppa-settings-autosave.php:3827 wppa-settings-autosave.php:4078
6933
+ #: wppa-slideshow-widget.php:215 wppa-tinymce-scripts.php:289
6934
+ #: wppa-tinymce-shortcodes.php:618
6935
  #, fuzzy
6936
+ msgid "center"
6937
+ msgstr "Mitte"
 
 
 
6938
 
6939
+ #: wppa-potd-admin.php:109
6940
  #, fuzzy
6941
+ msgid "Enter the url. Do'nt forget the HTTP://"
6942
+ msgstr "Geben Sie die Url. Do'nt vergessen Sie HTTP://"
6943
 
6944
+ #: wppa-potd-admin.php:115
6945
  #, fuzzy
6946
+ msgid "Link Title:"
6947
+ msgstr "Link-Titel:"
6948
 
6949
+ #: wppa-potd-admin.php:116
6950
  #, fuzzy
6951
+ msgid "The balloon text when hovering over the photo."
6952
+ msgstr "Der Ballon-Text, wenn die Maus über das Foto."
 
 
 
 
6953
 
6954
+ #: wppa-potd-admin.php:125
6955
+ #, fuzzy
6956
+ msgid "Links are set on the <b>Photo Albums -> Settings</b> screen."
 
 
 
6957
  msgstr ""
6958
+ "Links sind auf dem <b>Foto-Alben-> Einstellungen</b> Bildschirm gesetzt."
 
 
6959
 
6960
+ #: wppa-potd-admin.php:133
 
6961
  #, fuzzy
6962
+ msgid "Select the content of the subtitle."
6963
+ msgstr "Wählen Sie den Inhalt des Untertitels."
6964
 
6965
+ #: wppa-potd-admin.php:137
6966
  #, fuzzy
6967
+ msgid "Photo Name"
6968
+ msgstr ""
6969
+ "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 120 (Caption) wie "
6970
+ "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
6971
 
6972
+ #: wppa-potd-admin.php:145
6973
  #, fuzzy
6974
+ msgid "Counter:"
6975
+ msgstr "Zähler"
6976
 
6977
+ #: wppa-potd-admin.php:146
6978
  #, fuzzy
6979
+ msgid "Display a counter of other photos in the album."
6980
+ msgstr "Einen Zähler für andere Fotos in das Album anzeigen."
 
 
 
 
 
 
6981
 
6982
+ #: wppa-potd-admin.php:153
6983
  #, fuzzy
6984
+ msgid "The counter links to."
6985
+ msgstr "Die Zähler Links."
6986
 
6987
+ #: wppa-potd-admin.php:156 wppa-settings-autosave.php:1075
6988
+ #: wppa-settings-autosave.php:5757 wppa-settings-autosave.php:5790
6989
+ #: wppa-settings-autosave.php:5887
6990
  #, fuzzy
6991
+ msgid "thumbnails"
6992
+ msgstr "Miniaturbilden"
6993
 
6994
+ #: wppa-potd-admin.php:156 wppa-settings-autosave.php:5758
6995
+ #: wppa-settings-autosave.php:5791 wppa-settings-autosave.php:5888
6996
  #, fuzzy
6997
+ msgid "slideshow"
6998
+ msgstr "Diaschau"
 
 
 
 
6999
 
7000
+ #: wppa-potd-admin.php:156
7001
  #, fuzzy
7002
+ msgid "single image"
7003
+ msgstr "einfaches Bild"
 
 
 
 
7004
 
7005
+ #: wppa-potd-admin.php:161
7006
  #, fuzzy
7007
+ msgid "Type of album(s) to use:"
7008
+ msgstr "Art der Alben zu verwenden:"
7009
 
7010
+ #: wppa-potd-admin.php:162
7011
  #, fuzzy
7012
+ msgid "Select physical or virtual."
7013
+ msgstr "Wählen Sie physisch oder virtuell."
7014
 
7015
+ #: wppa-potd-admin.php:165
7016
  #, fuzzy
7017
+ msgid "physical albums"
7018
+ msgstr "physische Alben"
7019
 
7020
+ #: wppa-potd-admin.php:165
7021
  #, fuzzy
7022
+ msgid "virtual albums"
7023
+ msgstr "virtuelle Alben"
7024
 
7025
+ #: wppa-potd-admin.php:170
7026
  #, fuzzy
7027
+ msgid "Albums to use:"
7028
+ msgstr "Alben, zu verwenden:"
 
 
 
 
 
 
7029
 
7030
+ #: wppa-potd-admin.php:171 wppa-potd-admin.php:194
7031
  #, fuzzy
7032
+ msgid "Select the albums to use for the photo of the day."
7033
+ msgstr "Wählen Sie die Alben für das Foto des Tages zu verwenden."
7034
 
7035
+ #: wppa-potd-admin.php:190 wppa-potd-admin.php:644 wppa-potd-admin.php:669
7036
+ #: wppa-potd-admin.php:707 wppa-settings-autosave.php:353
7037
+ #: wppa-settings-autosave.php:7300 wppa-settings-autosave.php:7327
7038
+ #: wppa-settings-autosave.php:8395 wppa-settings-autosave.php:8397
7039
+ #: wppa-settings-autosave.php:9686 wppa-settings-autosave.php:9703
7040
+ #: wppa-settings-autosave.php:9732 wppa-settings-autosave.php:9750
7041
+ #: wppa-settings-autosave.php:9774 wppa-settings-autosave.php:9795
7042
+ #: wppa-settings-autosave.php:9815 wppa-settings-autosave.php:9832
7043
+ #: wppa-settings-autosave.php:9876 wppa-settings-autosave.php:9929
7044
+ #: wppa-settings-autosave.php:9961
7045
  #, fuzzy
7046
+ msgid "Setting unmodified"
7047
+ msgstr "Festlegen von unveränderten"
7048
+
7049
+ #: wppa-potd-admin.php:195
7050
+ msgid "- all albums -"
7051
+ msgstr "- Alle Alben -"
7052
+
7053
+ #: wppa-potd-admin.php:196
7054
+ msgid "- all -separate- albums -"
7055
+ msgstr "- Alle -separate- Alben -"
7056
 
7057
+ #: wppa-potd-admin.php:197
7058
+ msgid "- all albums except -separate-"
7059
+ msgstr "-alle Alben außer - separate-"
7060
+
7061
+ #: wppa-potd-admin.php:198
7062
+ msgid "- top rated photos -"
7063
+ msgstr "- Hoch bewertete Fotos -"
7064
+
7065
+ #: wppa-potd-admin.php:206
7066
  #, fuzzy
7067
+ msgid "Include (grand)children:"
7068
+ msgstr "(Enkel) gehören:"
7069
 
7070
+ #: wppa-potd-admin.php:207
7071
  #, fuzzy
7072
+ msgid "Include the photos of all sub albums?"
7073
+ msgstr "Fügen Sie die Fotos aller Sub-Alben?"
7074
 
7075
+ #: wppa-potd-admin.php:213
7076
  #, fuzzy
7077
+ msgid "Inverse selection:"
7078
+ msgstr "Inverse Auswahl"
7079
 
7080
+ #: wppa-potd-admin.php:214
7081
  #, fuzzy
7082
+ msgid "Use any album, except the selection made above."
7083
+ msgstr "Verwenden Sie ein Album, mit Ausnahme der Auswahl oben gemacht."
 
 
 
 
7084
 
7085
+ #: wppa-potd-admin.php:221
7086
  #, fuzzy
7087
+ msgid "Status filter:"
7088
+ msgstr "Status-Filter:"
7089
 
7090
+ #: wppa-potd-admin.php:222
7091
  #, fuzzy
7092
+ msgid "Use only photos with a certain status."
7093
+ msgstr "Verwenden Sie nur Fotos mit einem bestimmten Status."
 
 
7094
 
7095
+ #: wppa-potd-admin.php:223
7096
  #, fuzzy
7097
+ msgid "Select - none - if you want no filtering on status."
7098
+ msgstr "Wählen Sie - keine - wenn Sie wollen, keine Filterung auf Status."
7099
 
7100
+ #: wppa-potd-admin.php:225
7101
+ msgid "- none -"
7102
+ msgstr "- keine -"
7103
+
7104
+ #: wppa-potd-admin.php:231
7105
  #, fuzzy
7106
+ msgid "Any medal"
7107
+ msgstr "Jede Medaille"
7108
 
7109
+ #: wppa-potd-admin.php:244
7110
  #, fuzzy
7111
+ msgid "Display method:"
7112
+ msgstr "Displaymethode"
7113
 
7114
+ #: wppa-potd-admin.php:245
 
 
7115
  #, fuzzy
7116
+ msgid "Select the way a photo will be selected."
7117
+ msgstr "Wählen Sie die Art und Weise, die ein Foto ausgewählt werden."
7118
 
7119
+ #: wppa-potd-admin.php:248
 
7120
  #, fuzzy
7121
+ msgid "Fixed photo"
7122
+ msgstr "Festen Foto"
 
 
 
 
7123
 
7124
+ #: wppa-potd-admin.php:250
7125
  #, fuzzy
7126
+ msgid "Last upload"
7127
+ msgstr "Letzter Upload:"
7128
 
7129
+ #: wppa-potd-admin.php:251
7130
  #, fuzzy
7131
+ msgid "Change every"
7132
+ msgstr "Wechsel jeden"
7133
 
7134
+ #: wppa-potd-admin.php:258
7135
  #, fuzzy
7136
+ msgid "Change every period:"
7137
+ msgstr "Jeder Zeit zu ändern:"
7138
 
7139
+ #: wppa-potd-admin.php:259
7140
  #, fuzzy
7141
+ msgid "The time period a certain photo is used."
7142
+ msgstr "Der Zeitraum wird eine bestimmte Foto verwendet."
7143
 
7144
+ #: wppa-potd-admin.php:262
7145
  #, fuzzy
7146
+ msgid "pageview."
7147
+ msgstr "Besuche"
7148
 
7149
+ #: wppa-potd-admin.php:263
7150
  #, fuzzy
7151
+ msgid "hour."
7152
+ msgstr "ausweisen."
7153
 
7154
+ #: wppa-potd-admin.php:264
7155
  #, fuzzy
7156
+ msgid "day."
7157
+ msgstr "tag."
7158
 
7159
+ #: wppa-potd-admin.php:265
7160
  #, fuzzy
7161
+ msgid "week."
7162
+ msgstr "Woche kontrolliert."
7163
 
7164
+ #: wppa-potd-admin.php:266
7165
  #, fuzzy
7166
+ msgid "month."
7167
+ msgstr "Rate TEUR 10."
7168
 
7169
+ #: wppa-potd-admin.php:267
7170
  #, fuzzy
7171
+ msgid "day of week is order#"
7172
+ msgstr "Tag der Woche ist Bestellung #"
7173
 
7174
+ #: wppa-potd-admin.php:268
7175
  #, fuzzy
7176
+ msgid "day of month is order#"
7177
+ msgstr "Tag des Monats ist Bestellung #"
7178
 
7179
+ #: wppa-potd-admin.php:269
7180
  #, fuzzy
7181
+ msgid "day of year is order#"
7182
+ msgstr "Tag des Jahres ist Bestellung #"
7183
 
7184
+ #: wppa-potd-admin.php:294
7185
  #, fuzzy
7186
+ msgid "Day offset:"
7187
+ msgstr "Tag-Versatz:"
7188
 
7189
+ #: wppa-potd-admin.php:295
7190
  #, fuzzy
7191
+ msgid "The difference between daynumber and photo order number."
7192
+ msgstr "Der Unterschied zwischen Daynumber und Foto-Bestell-Nummer."
7193
+
7194
+ #: wppa-potd-admin.php:306
7195
+ #, fuzzy, php-format
7196
+ msgid "Current day# = %s, offset ="
7197
+ msgstr "Aktuellen Tag # = %s, Offset ="
7198
+
7199
+ #: wppa-potd-admin.php:315
7200
+ #, fuzzy, php-format
7201
+ msgid "Todays photo order# = %s."
7202
+ msgstr "Heutige Foto-Bestellung # = %s."
7203
 
7204
+ #: wppa-potd-admin.php:322
7205
  #, fuzzy
7206
+ msgid "Current \"photo of the day\":"
7207
+ msgstr "Aktuell \"Photo of the Day\":"
7208
+
7209
+ #: wppa-potd-admin.php:331
7210
+ #, fuzzy
7211
+ msgid "Album"
7212
+ msgstr "Album:"
7213
 
7214
+ #: wppa-potd-admin.php:333
7215
  #, fuzzy
7216
+ msgid "Uploader"
7217
+ msgstr "Uploader"
7218
 
7219
+ #: wppa-potd-admin.php:338
7220
  #, fuzzy
7221
+ msgid "Not found."
7222
+ msgstr "Foto %s nicht gefunden."
7223
 
7224
+ #: wppa-potd-admin.php:342
7225
  #, fuzzy
7226
+ msgid "Show selection"
7227
+ msgstr "Auswahl anzeigen"
7228
 
7229
+ #: wppa-potd-admin.php:343
7230
  #, fuzzy
7231
+ msgid "Show the photos in the current selection."
7232
+ msgstr "Zeigen Sie die Fotos in der aktuellen Auswahl."
7233
 
7234
+ #: wppa-potd-admin.php:386
7235
  #, fuzzy
7236
+ msgid "Photos in the current selection"
7237
+ msgstr "Fotos in der aktuellen Auswahl"
7238
 
7239
+ #: wppa-potd-admin.php:411
7240
  #, fuzzy
7241
+ msgid "No photos in the selection"
7242
+ msgstr "Keine Fotos in der Auswahl"
7243
 
7244
+ #: wppa-potd-admin.php:414
7245
+ #, fuzzy, php-format
7246
+ msgid "There are too many photos in the selection to show a preview ( %d )"
7247
+ msgstr "Es gibt zu viele Fotos in der Auswahl eine Vorschau (% d) zu zeigen,"
7248
+
7249
+ #: wppa-potd-admin.php:573 wppa-settings-autosave.php:9614
7250
  #, fuzzy
7251
+ msgid "The default for this setting is:"
7252
+ msgstr "Der Standardwert für diese Einstellung ist:"
7253
 
7254
+ #: wppa-potd-admin.php:590 wppa-settings-autosave.php:9631
7255
  #, fuzzy
7256
+ msgid "Click for help"
7257
+ msgstr "Klicke hier, um Hilfe zu erhalten!"
7258
 
7259
+ #: wppa-potd-admin.php:614 wppa-settings-autosave.php:9977
7260
  #, fuzzy
7261
+ msgid "Checked"
7262
+ msgstr "Markiert"
7263
 
7264
+ #: wppa-potd-admin.php:615 wppa-settings-autosave.php:9978
 
 
7265
  #, fuzzy
7266
+ msgid "Unchecked"
7267
+ msgstr "Nicht ausgewählt"
7268
 
7269
+ #: wppa-potd-admin.php:616 wppa-settings-autosave.php:5065
7270
+ #: wppa-settings-autosave.php:5108 wppa-settings-autosave.php:5186
7271
+ #: wppa-settings-autosave.php:5229 wppa-settings-autosave.php:5277
7272
+ #: wppa-settings-autosave.php:5324 wppa-settings-autosave.php:5371
7273
+ #: wppa-settings-autosave.php:5423 wppa-settings-autosave.php:5461
7274
+ #: wppa-settings-autosave.php:5511 wppa-settings-autosave.php:5553
7275
+ #: wppa-settings-autosave.php:5594 wppa-settings-autosave.php:9979
7276
  #, fuzzy
7277
+ msgid "no link at all."
7278
+ msgstr "keine Verbindung überhaupt."
 
 
 
 
7279
 
7280
+ #: wppa-potd-admin.php:617 wppa-settings-autosave.php:5066
7281
+ #: wppa-settings-autosave.php:5109 wppa-settings-autosave.php:5187
7282
+ #: wppa-settings-autosave.php:5230 wppa-settings-autosave.php:5278
7283
+ #: wppa-settings-autosave.php:5325 wppa-settings-autosave.php:5372
7284
+ #: wppa-settings-autosave.php:5424 wppa-settings-autosave.php:5462
7285
+ #: wppa-settings-autosave.php:5512 wppa-settings-autosave.php:5554
7286
+ #: wppa-settings-autosave.php:5595 wppa-settings-autosave.php:9980
7287
  #, fuzzy
7288
+ msgid "the plain photo (file)."
7289
+ msgstr "Das schlichte Foto (Datei)."
7290
 
7291
+ #: wppa-potd-admin.php:618 wppa-settings-autosave.php:5069
7292
+ #: wppa-settings-autosave.php:5112 wppa-settings-autosave.php:5188
7293
+ #: wppa-settings-autosave.php:5233 wppa-settings-autosave.php:5281
7294
+ #: wppa-settings-autosave.php:5328 wppa-settings-autosave.php:5375
7295
+ #: wppa-settings-autosave.php:5463 wppa-settings-autosave.php:5514
7296
+ #: wppa-settings-autosave.php:5556 wppa-settings-autosave.php:9981
7297
  #, fuzzy
7298
+ msgid "the full size photo in a slideshow."
7299
+ msgstr "das Foto in voller Größe in einer Diashow."
7300
 
7301
+ #: wppa-potd-admin.php:619 wppa-settings-autosave.php:5070
7302
+ #: wppa-settings-autosave.php:5113 wppa-settings-autosave.php:5189
7303
+ #: wppa-settings-autosave.php:5234 wppa-settings-autosave.php:5282
7304
+ #: wppa-settings-autosave.php:5329 wppa-settings-autosave.php:5376
7305
+ #: wppa-settings-autosave.php:5464 wppa-settings-autosave.php:5515
7306
+ #: wppa-settings-autosave.php:5557 wppa-settings-autosave.php:5596
7307
+ #: wppa-settings-autosave.php:9982
7308
  #, fuzzy
7309
+ msgid "the fullsize photo on its own."
7310
+ msgstr "die Fullsize-Foto auf eigene."
7311
 
7312
+ #: wppa-potd-admin.php:620 wppa-settings-autosave.php:9983
7313
  #, fuzzy
7314
+ msgid "the photo specific link."
7315
+ msgstr "die spezielle Foto-Link."
7316
 
7317
+ #: wppa-potd-admin.php:621 wppa-settings-autosave.php:5068
7318
+ #: wppa-settings-autosave.php:5111 wppa-settings-autosave.php:5513
7319
+ #: wppa-settings-autosave.php:5555 wppa-settings-autosave.php:9984
7320
  #, fuzzy
7321
+ msgid "the content of the album."
7322
+ msgstr "der Inhalt des Albums."
7323
 
7324
+ #: wppa-potd-admin.php:622 wppa-settings-autosave.php:5110
7325
+ #: wppa-settings-autosave.php:9985
7326
  #, fuzzy
7327
+ msgid "defined at widget activation."
7328
+ msgstr "definiert bei der Widget-Aktivierung."
7329
 
7330
+ #: wppa-potd-admin.php:623 wppa-settings-autosave.php:5067
7331
+ #: wppa-settings-autosave.php:9986
7332
  #, fuzzy
7333
+ msgid "defined on widget admin page."
7334
+ msgstr "Widget-Admin-Seite definiert."
7335
 
7336
+ #: wppa-potd-admin.php:624 wppa-settings-autosave.php:5425
7337
+ #: wppa-settings-autosave.php:9987
7338
  #, fuzzy
7339
+ msgid "same as title."
7340
+ msgstr "Titel identisch."
7341
 
7342
+ #: wppa-potd-admin.php:636 wppa-potd-admin.php:659 wppa-potd-admin.php:680
7343
+ #: wppa-settings-autosave.php:9676 wppa-settings-autosave.php:9695
7344
+ #: wppa-settings-autosave.php:9725 wppa-settings-autosave.php:9742
7345
+ #: wppa-settings-autosave.php:9766 wppa-settings-autosave.php:9787
7346
+ #: wppa-settings-autosave.php:9807 wppa-settings-autosave.php:9849
7347
  #, fuzzy
7348
+ msgid "Slug ="
7349
+ msgstr "Slug"
7350
 
7351
+ #: wppa-potd-admin.php:636 wppa-settings-autosave.php:9742
7352
+ #: wppa-settings-autosave.php:9766 wppa-settings-autosave.php:9787
7353
+ #: wppa-settings-autosave.php:9807
7354
  #, fuzzy
7355
+ msgid "Values = yes, no"
7356
+ msgstr "Werte = ja, Nein"
 
7357
 
7358
+ #: wppa-potd-admin.php:680 wppa-settings-autosave.php:9849
7359
  #, fuzzy
7360
+ msgid "Values = "
7361
+ msgstr "Werte"
7362
 
7363
+ #: wppa-potd-widget.php:14
7364
  #, fuzzy
7365
+ msgid "WPPA+ Photo Of The Day"
7366
+ msgstr "WPPA + Foto des Tages"
7367
 
7368
+ #: wppa-potd-widget.php:15
7369
  #, fuzzy
7370
+ msgid "Photo Of The Day"
7371
+ msgstr "Foto des Tages"
 
 
 
 
7372
 
7373
+ #: wppa-potd-widget.php:212
7374
  #, fuzzy
7375
  msgid ""
7376
+ "You can set the content and the sizes in this widget in the <b>Photo Albums -"
7377
+ "> Photo of the day</b> admin page."
7378
  msgstr ""
7379
+ "Sie können den Inhalt und die Größen in diesem Widget in der <b>Foto-Alben-> "
7380
+ "Foto des Tages</b> -Admin-Seite festlegen."
7381
 
7382
+ #: wppa-qr-widget.php:13
7383
  #, fuzzy
7384
+ msgid "WPPA+ QR Widget"
7385
+ msgstr "WPPA + QR Widget"
7386
 
7387
+ #: wppa-qr-widget.php:14 wppa-qr-widget.php:32
7388
  #, fuzzy
7389
+ msgid "QR Widget"
7390
+ msgstr "QR-Widget"
7391
 
7392
+ #: wppa-qr-widget.php:95
7393
  #, fuzzy
7394
  msgid ""
7395
+ "You can set the sizes and colors in this widget in the <b>Photo Albums -> "
7396
+ "Settings</b> admin page."
7397
  msgstr ""
7398
+ "Sie können die Größen und Farben in diesem Widget in der Admin-Seite "
7399
+ "<b>Fotoalben-> Einstellungen</b> festlegen."
7400
 
7401
+ #: wppa-search-widget.php:13
 
 
7402
  #, fuzzy
7403
+ msgid "WPPA+ Search Photos"
7404
+ msgstr "Foto suchen"
7405
+
7406
+ #: wppa-search-widget.php:14 wppa-search-widget.php:36
7407
+ #: wppa-search-widget.php:78
7408
+ #, fuzzy
7409
+ msgid "Search Photos"
7410
+ msgstr "Foto suchen"
7411
 
7412
+ #: wppa-search-widget.php:100
7413
  #, fuzzy
7414
+ msgid "Text:"
7415
+ msgstr "Text"
7416
 
7417
+ #: wppa-search-widget.php:104
7418
  #, fuzzy
7419
  msgid ""
7420
+ "Enter optional text that will appear before the input box. This may contain "
7421
+ "HTML so you can change font size and color."
7422
  msgstr ""
7423
+ "Geben Sie optionalen Text, der bevor Sie das Eingabefeld angezeigt wird. "
7424
+ "Dies kann HTML enthalten, so können Sie die Schriftgröße und Farbe ändern."
7425
 
7426
+ #: wppa-search-widget.php:108
7427
  #, fuzzy
7428
+ msgid "Enable rootsearch"
7429
+ msgstr "Rootsearch aktivieren"
7430
 
7431
+ #: wppa-search-widget.php:113
7432
  #, fuzzy
7433
  msgid ""
7434
+ "If you want the search to be limited to a specific album and its "
7435
+ "(grand)children, select the album here."
7436
  msgstr ""
7437
+ "Wenn Sie die Suche auf ein bestimmtes Album und ihre (gross-) Kinder zu "
7438
+ "beschränken möchten, wählen Sie das Album hier."
7439
 
7440
+ #: wppa-search-widget.php:115
7441
  #, fuzzy
7442
  msgid ""
7443
+ "If you select an album here, it will overrule the previous checkbox using "
7444
+ "the album as a 'fixed' root."
7445
  msgstr ""
7446
+ "Wenn Sie ein Album hier auswählen, wird es die vorherigen Checkbox mit das "
7447
+ "Album als eine \"feste\" Root außer Kraft setzen."
7448
 
7449
+ #: wppa-search-widget.php:129
7450
  #, fuzzy
7451
+ msgid "Enable subsearch"
7452
+ msgstr "Subsearch aktivieren"
 
 
 
 
7453
 
7454
+ #: wppa-search-widget.php:134 wppa-settings-autosave.php:5939
7455
  #, fuzzy
7456
+ msgid "Landing page"
7457
+ msgstr "Landing Seite"
7458
 
7459
+ #: wppa-search-widget.php:143
7460
  #, fuzzy
7461
+ msgid "--- Default ---"
7462
+ msgstr "Standard-Fotoalbum für"
7463
 
7464
+ #: wppa-search-widget.php:186
7465
  #, fuzzy
7466
+ msgid "The default page will be created automaticly"
7467
+ msgstr "Die Standardseite wird automatisch erstellt"
7468
 
7469
+ #: wppa-settings-autosave.php:55
7470
  #, fuzzy
7471
+ msgid "Close!"
7472
+ msgstr "Schließen"
 
 
 
 
 
7473
 
7474
+ #: wppa-settings-autosave.php:103
7475
  #, fuzzy
7476
+ msgid "Saved settings restored"
7477
+ msgstr "Gespeicherten Einstellungen wiederhergestellt"
7478
 
7479
+ #: wppa-settings-autosave.php:106
7480
  #, fuzzy
7481
+ msgid "Unable to restore saved settings"
7482
+ msgstr "Nicht in der Lage, Wiederherstellungseinstellungen gespeichert"
7483
 
7484
+ #: wppa-settings-autosave.php:112
7485
  #, fuzzy
7486
+ msgid "Reset to default settings"
7487
+ msgstr "Auf Standardeinstellungen zurücksetzen"
 
 
 
 
7488
 
7489
+ #: wppa-settings-autosave.php:115
7490
  #, fuzzy
7491
+ msgid "Unable to set defaults"
7492
+ msgstr "Nicht in der Lage zum Festlegen von Standardeinstellungen"
 
 
 
 
7493
 
7494
+ #: wppa-settings-autosave.php:120
7495
+ #, fuzzy, php-format
7496
+ msgid "Skinfile %s loaded"
7497
+ msgstr "Skinfile %s geladen"
7498
 
7499
+ #: wppa-settings-autosave.php:131 wppa-settings-autosave.php:153
7500
+ #: wppa-settings-autosave.php:174
7501
+ #, fuzzy, php-format
7502
+ msgid "Upload error %s"
7503
+ msgstr "Fehler beim Hochladen: %s"
7504
 
7505
+ #: wppa-settings-autosave.php:136
7506
+ #, fuzzy, php-format
7507
+ msgid "Uploaded file %s is not a .png file"
7508
+ msgstr "Hochgeladene Datei %s ist keine PNG-Datei"
7509
+
7510
+ #: wppa-settings-autosave.php:140 wppa-settings-autosave.php:161
7511
+ #: wppa-settings-autosave.php:197
7512
+ #, fuzzy, php-format
7513
+ msgid "Upload of %s done"
7514
+ msgstr "Upload von %s getan"
7515
 
7516
+ #: wppa-settings-autosave.php:145 wppa-settings-autosave.php:166
7517
+ #: wppa-settings-autosave.php:202
7518
  #, fuzzy
7519
+ msgid "No file selected or error on upload"
7520
+ msgstr "Keine Datei ausgewählt oder Fehler beim Hochladen"
7521
 
7522
+ #: wppa-settings-autosave.php:157
7523
+ #, fuzzy, php-format
7524
+ msgid "Uploaded file %s is not a .ttf file"
7525
+ msgstr "Hochgeladene Datei %s ist keine .ttf-Datei"
7526
 
7527
+ #: wppa-settings-autosave.php:179
7528
+ #, fuzzy, php-format
7529
+ msgid "Uploaded file %s is not a valid image file"
7530
+ msgstr "Hochgeladene Datei %s ist keine gültige Grafik-Datei"
7531
+
7532
+ #: wppa-settings-autosave.php:258
7533
+ #, fuzzy, php-format
7534
  msgid ""
7535
+ "%s invalid ratings removed. Please run Table VIII-A5: Rerate to fix the "
7536
+ "averages."
7537
  msgstr ""
7538
+ "%s ungültige Bewertungen entfernt. Bitte führen Sie Tabelle VIII-A5: Rerate, "
7539
+ "die Durchschnittswerte zu beheben."
7540
 
7541
+ #: wppa-settings-autosave.php:269
7542
+ #, fuzzy, php-format
7543
+ msgid "%s last album used settings removed."
7544
+ msgstr "%s letztes Album verwendeten Einstellungen entfernt."
7545
+
7546
+ #: wppa-settings-autosave.php:277
7547
  #, fuzzy
7548
+ msgid "WP Photo Album Plus Settings"
7549
+ msgstr "WP Photo Album Plus Einstellungen"
 
 
 
 
7550
 
7551
+ #: wppa-settings-autosave.php:278
7552
  #, fuzzy
7553
+ msgid "Database revision:"
7554
+ msgstr "Datenbank Version:"
7555
 
7556
+ #: wppa-settings-autosave.php:278
7557
  #, fuzzy
7558
+ msgid "WP Charset:"
7559
+ msgstr "WP-Charset:"
7560
 
7561
+ #: wppa-settings-autosave.php:281
7562
  #, fuzzy
7563
+ msgid "Multisite in singlesite mode."
7564
+ msgstr "Multisite im Singlesite-Modus."
7565
 
7566
+ #: wppa-settings-autosave.php:284
7567
  #, fuzzy
7568
+ msgid "Multisite enabled."
7569
+ msgstr "WP Multisite Aktiviert"
7570
 
7571
+ #: wppa-settings-autosave.php:286
7572
  #, fuzzy
7573
+ msgid "Blogid ="
7574
+ msgstr "BlogId ="
 
 
 
 
 
7575
 
7576
+ #: wppa-settings-autosave.php:303
7577
  #, fuzzy
7578
+ msgid "Please de-activate plugin <i style=\"font-size:14px;\">"
7579
+ msgstr "Bitte de-aktivieren Sie plugin<i style=\"font-size:14px;\"></i>"
 
 
 
7580
 
7581
+ #: wppa-settings-autosave.php:303
7582
  #, fuzzy
7583
+ msgid ". </i>This plugin will cause wppa+ to function not properly."
7584
+ msgstr ". Dieses Plugin wird Wppa + nicht richtig funktionieren verursachen."
 
 
 
 
7585
 
7586
+ #: wppa-settings-autosave.php:313
7587
  #, fuzzy
7588
+ msgid "Please note that plugin <i style=\"font-size:14px;\">"
7589
+ msgstr "Bitte beachten Sie, dass plugin<i style=\"font-size:14px;\"></i>"
7590
 
7591
+ #: wppa-settings-autosave.php:313
7592
  #, fuzzy
7593
+ msgid "</i> can cause wppa+ to function not properly if it is misconfigured."
7594
+ msgstr "kann Wppa + Funktion nicht richtig führen, wenn es falsch ist."
7595
 
7596
+ #: wppa-settings-autosave.php:318
7597
  #, fuzzy
7598
  msgid ""
7599
+ "There is a serious misconfiguration in your servers PHP config. Function "
7600
+ "wppa_imagecreatefromjpeg() does not exist. You will encounter problems when "
7601
+ "uploading photos and not be able to generate thumbnail images. Ask your "
7602
+ "hosting provider to add GD support with a minimal version 1.8."
7603
  msgstr ""
7604
+ "Es ist eine ernste Fehlkonfiguration in Ihrem Server PHP Config. Funktion "
7605
+ "wppa_imagecreatefromjpeg() ist nicht vorhanden. Sie werden Probleme beim "
7606
+ "Hochladen von Fotos und möglicherweise keine Miniaturbilder zu generieren. "
7607
+ "Fragen Sie Ihren Hosting-Provider, GD-Unterstützung mit einer minimalen "
7608
+ "Version 1.8 hinzuzufügen."
7609
 
7610
+ #: wppa-settings-autosave.php:323
7611
  #, fuzzy
7612
+ msgid "Rebuilding the Album index needs completion. See Table VIII"
7613
+ msgstr "Neuerstellung des Indexes Album braucht Abschluss. Siehe Tabelle VIII"
7614
 
7615
+ #: wppa-settings-autosave.php:324
7616
  #, fuzzy
7617
+ msgid "Rebuilding the Photo index needs completion. See Table VIII"
7618
+ msgstr "Neuerstellung des Indexes Foto braucht Abschluss. Siehe Tabelle VIII"
7619
 
7620
+ #: wppa-settings-autosave.php:326
7621
  #, fuzzy
7622
+ msgid "Remove empty albums needs completion. See Table VIII"
7623
+ msgstr "Entfernen Sie leere Alben Bedürfnisse Abschluss. Siehe Tabelle VIII"
7624
 
7625
+ #: wppa-settings-autosave.php:327
7626
  #, fuzzy
7627
+ msgid "Applying new photo description needs completion. See Table VIII"
7628
+ msgstr "Anwendung neuer Fotobeschreibung braucht Abschluss. Siehe Tabelle VIII"
7629
 
7630
+ #: wppa-settings-autosave.php:328
7631
  #, fuzzy
7632
+ msgid "Appending to photo description needs completion. See Table VIII"
7633
+ msgstr "Anfügen an Fotobeschreibung braucht Abschluss. Siehe Tabelle VIII"
 
 
 
 
7634
 
7635
+ #: wppa-settings-autosave.php:329
7636
  #, fuzzy
7637
+ msgid "Removing from photo description needs completion. See Table VIII"
7638
+ msgstr "Entfernen von Fotobeschreibung braucht Abschluss. Siehe Tabelle VIII"
7639
+
7640
+ #: wppa-settings-autosave.php:330
7641
+ #, fuzzy
7642
+ msgid "Removing file extensions needs completion. See Table VIII"
7643
  msgstr ""
7644
+ "Entfernen von Dateierweiterungen benötigt Abschluss. Siehe Tabelle VIII"
 
7645
 
7646
+ #: wppa-settings-autosave.php:331
7647
  #, fuzzy
7648
+ msgid "Regenerating the Thumbnails needs completion. See Table VIII"
7649
+ msgstr "Regeneriert die Thumbnails braucht Abschluss. Siehe Tabelle VIII"
7650
 
7651
+ #: wppa-settings-autosave.php:332
7652
  #, fuzzy
7653
+ msgid "Rerating needs completion. See Table VIII"
7654
+ msgstr "Neuauslegung Bedürfnisse Abschluss. Siehe Tabelle VIII"
7655
 
7656
+ #: wppa-settings-autosave.php:340
7657
  #, fuzzy
7658
  msgid ""
7659
+ "A thumbframe width or height should not be smaller than a thumbnail size. "
7660
+ "Please correct the corresponding setting(s) in Table I-C"
7661
  msgstr ""
7662
+ "Eine Thumbframe Breite oder Höhe sollte nicht kleiner als eine "
7663
+ "Miniaturansicht. Bitte korrigieren Sie die entsprechenden Einstellungen im "
7664
+ "Tab-C"
7665
 
7666
+ #: wppa-settings-autosave.php:345
7667
  #, fuzzy
7668
+ msgid "Show legenda"
7669
+ msgstr "Legenda zeigen"
7670
 
7671
+ #: wppa-settings-autosave.php:347
7672
  #, fuzzy
7673
+ msgid "Legenda:"
7674
+ msgstr "Legenda:"
7675
 
7676
+ #: wppa-settings-autosave.php:348 wppa-settings-autosave.php:350
7677
+ #: wppa-settings-autosave.ph