WP Photo Album Plus - Version 6.5.07

Version Description

Download this release

Release Info

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

Code changes from version 6.5.06 to 6.5.07

js/wppa-admin-scripts.js CHANGED
@@ -1,7 +1,7 @@
1
  /* admin-scripts.js */
2
  /* Package: wp-photo-album-plus
3
  /*
4
- /* Version 6.5.04
5
  /* Various js routines used in admin pages
6
  */
7
 
@@ -1143,59 +1143,6 @@ function wppaAjaxUpdatePhotoMonitor() {
1143
  }
1144
  }
1145
 
1146
- // New style front-end edit photo
1147
- function wppaUpdatePhotoNew(id) {
1148
-
1149
- var myItems = [ 'name',
1150
- 'description',
1151
- 'tags',
1152
- 'custom_0',
1153
- 'custom_1',
1154
- 'custom_2',
1155
- 'custom_3',
1156
- 'custom_4',
1157
- 'custom_5',
1158
- 'custom_6',
1159
- 'custom_7',
1160
- 'custom_8',
1161
- 'custom_9'
1162
- ];
1163
-
1164
- var myData = 'action=wppa' +
1165
- '&wppa-action=update-photo-new' +
1166
- '&photo-id=' + id +
1167
- '&wppa-nonce=' + jQuery('#wppa-nonce').val();
1168
-
1169
- var i = 0;
1170
- while ( i < myItems.length ) {
1171
- if ( typeof(jQuery('#'+myItems[i] ).val() ) != 'undefined' ) {
1172
- myData += '&' + myItems[i] + '=' + jQuery('#'+myItems[i]).val();
1173
- }
1174
- i++;
1175
- }
1176
-
1177
- jQuery.ajax( { url: wppaAjaxUrl,
1178
- data: myData,
1179
- async: false,
1180
- type: 'POST',
1181
- timeout: 10000,
1182
- beforeSend: function( xhr ) {
1183
-
1184
- },
1185
- success: function( result, status, xhr ) {
1186
- if ( result.length > 0 ) { alert(result); }
1187
- },
1188
- error: function( xhr, status, error ) {
1189
- alert(result);
1190
-
1191
- wppaConsoleLog( 'wppaUpdatePhotoNew failed. Error = ' + error + ', status = ' + status, 'force' );
1192
- },
1193
- complete: function( xhr, status, newurl ) {
1194
-
1195
- }
1196
- } );
1197
-
1198
- }
1199
 
1200
  function _wppaAjaxUpdatePhoto(photo, actionslug, value, refresh) {
1201
 
1
  /* admin-scripts.js */
2
  /* Package: wp-photo-album-plus
3
  /*
4
+ /* Version 6.5.07
5
  /* Various js routines used in admin pages
6
  */
7
 
1143
  }
1144
  }
1145
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1146
 
1147
  function _wppaAjaxUpdatePhoto(photo, actionslug, value, refresh) {
1148
 
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.06';
7
 
8
  var wppaRenderAdd = false;
9
  var wppaWaitForCounter = 0;
@@ -895,5 +895,59 @@ function wppaAjaxComment( mocc, id ) {
895
  } );
896
  }
897
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
898
  // Log we're in.
899
  wppaConsoleLog( 'wppa-ajax-front.js version '+wppaJsAjaxVersion+' loaded.', 'force' );
3
  // Contains frontend ajax modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
+ var wppaJsAjaxVersion = '6.5.07';
7
 
8
  var wppaRenderAdd = false;
9
  var wppaWaitForCounter = 0;
895
  } );
896
  }
897
 
898
+ // New style front-end edit photo
899
+ function wppaUpdatePhotoNew(id) {
900
+
901
+ var myItems = [ 'name',
902
+ 'description',
903
+ 'tags',
904
+ 'custom_0',
905
+ 'custom_1',
906
+ 'custom_2',
907
+ 'custom_3',
908
+ 'custom_4',
909
+ 'custom_5',
910
+ 'custom_6',
911
+ 'custom_7',
912
+ 'custom_8',
913
+ 'custom_9'
914
+ ];
915
+
916
+ var myData = 'action=wppa' +
917
+ '&wppa-action=update-photo-new' +
918
+ '&photo-id=' + id +
919
+ '&wppa-nonce=' + jQuery('#wppa-nonce-'+id).val();
920
+
921
+ var i = 0;
922
+ while ( i < myItems.length ) {
923
+ if ( typeof(jQuery('#'+myItems[i] ).val() ) != 'undefined' ) {
924
+ myData += '&' + myItems[i] + '=' + jQuery('#'+myItems[i]).val();
925
+ }
926
+ i++;
927
+ }
928
+
929
+ jQuery.ajax( { url: wppaAjaxUrl,
930
+ data: myData,
931
+ async: false,
932
+ type: 'POST',
933
+ timeout: 10000,
934
+ beforeSend: function( xhr ) {
935
+
936
+ },
937
+ success: function( result, status, xhr ) {
938
+ if ( result.length > 0 ) { alert(result); }
939
+ },
940
+ error: function( xhr, status, error ) {
941
+ alert(result);
942
+
943
+ wppaConsoleLog( 'wppaUpdatePhotoNew failed. Error = ' + error + ', status = ' + status, 'force' );
944
+ },
945
+ complete: function( xhr, status, newurl ) {
946
+
947
+ }
948
+ } );
949
+
950
+ }
951
+
952
  // Log we're in.
953
  wppaConsoleLog( 'wppa-ajax-front.js version '+wppaJsAjaxVersion+' loaded.', 'force' );
js/wppa-ajax-front.min.js CHANGED
@@ -4,7 +4,7 @@
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
- var wppaJsAjaxVersion='6.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);}}
@@ -59,4 +59,7 @@ if(typeof(jQuery("#wppa-comment-edit-"+mocc).val())!='undefined'){data+='&commen
59
  if(typeof(jQuery("#wppa-returnurl-"+mocc).val())!='undefined'){data+='&returnurl='+encodeURIComponent(jQuery("#wppa-returnurl-"+mocc).val());}
60
  jQuery.ajax({url:wppaAjaxUrl,data:data,async:true,type:'POST',timeout:60000,beforeSend:function(xhr){jQuery("#wppa-comment-spin-"+mocc).css('display','inline');},success:function(result,status,xhr){result=result.replace(/\\/g,'');jQuery("#wppa-comments-"+mocc).html(result);if(_wppaCurIdx[mocc]){_wppaCommentHtml[mocc][_wppaCurIdx[mocc]]=result;}
61
  wppaOpenComments(mocc);},error:function(xhr,status,error){wppaConsoleLog('wppaAjaxComment failed. Error = '+error+', status = '+status,'force');},complete:function(xhr,status,newurl){jQuery("#wppa-comment-spin-"+mocc).css('display','none');}});}
 
 
 
62
  wppaConsoleLog('wppa-ajax-front.js version '+wppaJsAjaxVersion+' loaded.','force');
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
+ var wppaJsAjaxVersion='6.5.07';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);}}
59
  if(typeof(jQuery("#wppa-returnurl-"+mocc).val())!='undefined'){data+='&returnurl='+encodeURIComponent(jQuery("#wppa-returnurl-"+mocc).val());}
60
  jQuery.ajax({url:wppaAjaxUrl,data:data,async:true,type:'POST',timeout:60000,beforeSend:function(xhr){jQuery("#wppa-comment-spin-"+mocc).css('display','inline');},success:function(result,status,xhr){result=result.replace(/\\/g,'');jQuery("#wppa-comments-"+mocc).html(result);if(_wppaCurIdx[mocc]){_wppaCommentHtml[mocc][_wppaCurIdx[mocc]]=result;}
61
  wppaOpenComments(mocc);},error:function(xhr,status,error){wppaConsoleLog('wppaAjaxComment failed. Error = '+error+', status = '+status,'force');},complete:function(xhr,status,newurl){jQuery("#wppa-comment-spin-"+mocc).css('display','none');}});}
62
+ function wppaUpdatePhotoNew(id){var myItems=['name','description','tags','custom_0','custom_1','custom_2','custom_3','custom_4','custom_5','custom_6','custom_7','custom_8','custom_9'];var myData='action=wppa'+'&wppa-action=update-photo-new'+'&photo-id='+id+'&wppa-nonce='+jQuery('#wppa-nonce-'+id).val();var i=0;while(i<myItems.length){if(typeof(jQuery('#'+myItems[i]).val())!='undefined'){myData+='&'+myItems[i]+'='+jQuery('#'+myItems[i]).val();}
63
+ i++;}
64
+ jQuery.ajax({url:wppaAjaxUrl,data:myData,async:false,type:'POST',timeout:10000,beforeSend:function(xhr){},success:function(result,status,xhr){if(result.length>0){alert(result);}},error:function(xhr,status,error){alert(result);wppaConsoleLog('wppaUpdatePhotoNew failed. Error = '+error+', status = '+status,'force');},complete:function(xhr,status,newurl){}});}
65
  wppaConsoleLog('wppa-ajax-front.js version '+wppaJsAjaxVersion+' loaded.','force');
js/wppa-lightbox.js CHANGED
@@ -3,7 +3,7 @@
3
  // Conatins lightbox modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
- var wppaLightboxVersion = '6.5.04';
7
 
8
  // Global inits
9
  var wppaNormsBtnOpac = 1;
@@ -1249,17 +1249,32 @@ wppaConsoleLog( 'wppaInitOverlay' );
1249
  // found one
1250
  wppaWppaOverlayActivated = true;
1251
 
1252
- // Install onclick handler
1253
- jQuery( anchor ).click( function( event ) {
1254
- wppaOvlShow( this );
1255
- event.preventDefault();
1256
- });
1257
-
1258
- // Install ontouchstart handler
1259
- jQuery( anchor ).on( "touchstart", function( event ) {
1260
- wppaOvlShow( this );
1261
- // event.preventDefault();
1262
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1263
 
1264
  // Install orientationchange handler if mobile
1265
  if ( wppaIsMobile ) {
3
  // Conatins lightbox modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
+ var wppaLightboxVersion = '6.5.07';
7
 
8
  // Global inits
9
  var wppaNormsBtnOpac = 1;
1249
  // found one
1250
  wppaWppaOverlayActivated = true;
1251
 
1252
+ // Install handler
1253
+ if ( wppaIsMobile ) {
1254
+
1255
+ // Install ontouch handlers
1256
+ jQuery( anchor ).on( 'touchstart', function( event ) { // tap
1257
+
1258
+ wppaStartTime();
1259
+ // event.preventDefault();
1260
+ });
1261
+ jQuery( anchor ).on( 'touchend', function( event ) { // tap
1262
+
1263
+ if ( wppaInTime() ) {
1264
+ wppaOvlShow( this );
1265
+ }
1266
+ event.preventDefault();
1267
+ });
1268
+
1269
+ }
1270
+ else {
1271
+
1272
+ // Install onclick handler
1273
+ jQuery( anchor ).on( 'click', function( event ) {
1274
+ wppaOvlShow( this );
1275
+ event.preventDefault();
1276
+ });
1277
+ }
1278
 
1279
  // Install orientationchange handler if mobile
1280
  if ( wppaIsMobile ) {
js/wppa-lightbox.min.js CHANGED
@@ -4,7 +4,7 @@
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
- var wppaLightboxVersion='6.5.04';var wppaNormsBtnOpac=1;var wppaIsVideo=false;var wppaHasAudio=false;var wppaOvlImgs=[];var wppaKbHandlerInstalled=false;var wppaOvlMode='normal';var wppaOvlCurIdx=0;var wppaSavedContainerWidth;var wppaSavedContainerHeight;var wppaSavedMarginLeft;var wppaSavedMarginTop;var wppaSavedImageWidth;var wppaSavedImageHeight;jQuery(document).ready(function(e){wppaInitOverlay();});jQuery(window).resize(function(){jQuery("#wppa-overlay-bg").css({height:window.innerHeight,width:window.innerWidth,});wppaOvlResize();});function wppaDoOnOrientationChange(e){if(wppaOvlMode!='normal'&&document.getElementById('wppa-overlay-img')){setTimeout('wppaOvlShow( '+wppaOvlIdx+' )',100);return;}}
8
  function wppaOvlKeyboardHandler(e){var keycode;var escapeKey;if(e==null){keycode=event.keyCode;escapeKey=27;}else{keycode=e.keyCode;escapeKey=27;}
9
  var key=String.fromCharCode(keycode).toLowerCase();switch(keycode){case escapeKey:wppaStopVideo(mocc);if(wppaOvlMode!='normal'){wppaOvlNorm(true);}
10
  wppaOvlHide();break;case 37:wppaOvlShowPrev();break;case 39:wppaOvlShowNext();break;}
@@ -126,6 +126,9 @@ return true;}
126
  function wppaInitOverlay(){wppaConsoleLog('wppaInitOverlay');wppaOvlMode=wppaOvlModeInitial;var anchors=jQuery('a');var anchor;var i;var temp=[];wppaOvlFsPhotoId=0;wppaPhotoId=0;wppaOvlCurIdx=0;wppaSavedContainerWidth=240+2*wppaOvlBorderWidth;wppaSavedContainerHeight=180+3*wppaOvlBorderWidth+20+(wppaOvlTxtHeight=='auto'?50:wppaOvlTxtHeight);wppaSavedMarginLeft=-(120+wppaOvlBorderWidth);wppaSavedMarginTop=-(90+wppaOvlBorderWidth+10+(wppaOvlTxtHeight=='auto'?25:wppaOvlTxtHeight/2));wppaSavedImageWidth=240;wppaSavedImageHeight=180+wppaOvlBorderWidth;for(i=0;i<anchors.length;i++){anchor=anchors[i];if(jQuery(anchor).attr('data-rel')){temp=jQuery(anchor).attr('data-rel').split("[");}
127
  else if(anchor.rel){temp=anchor.rel.split("[");}
128
  else{temp[0]='';}
129
- if(temp[0]=='wppa'){wppaWppaOverlayActivated=true;jQuery(anchor).click(function(event){wppaOvlShow(this);event.preventDefault();});jQuery(anchor).on("touchstart",function(event){wppaOvlShow(this);});if(wppaIsMobile){window.addEventListener('orientationchange',wppaDoOnOrientationChange);}}}}
 
 
 
130
  function wppaOvlResize(){wppaConsoleLog('wppaOvlResize');setTimeout('wppaOvlSize( '+wppaOvlAnimSpeed+' )',100);if(wppaOvlAudioStart&&!wppaOvlAudioPlaying){setTimeout('wppaOvlStartAudio()',1000);}}
131
  wppaConsoleLog('wppa-lightbox.js version '+wppaLightboxVersion+' loaded.','force');
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
+ var wppaLightboxVersion='6.5.07';var wppaNormsBtnOpac=1;var wppaIsVideo=false;var wppaHasAudio=false;var wppaOvlImgs=[];var wppaKbHandlerInstalled=false;var wppaOvlMode='normal';var wppaOvlCurIdx=0;var wppaSavedContainerWidth;var wppaSavedContainerHeight;var wppaSavedMarginLeft;var wppaSavedMarginTop;var wppaSavedImageWidth;var wppaSavedImageHeight;jQuery(document).ready(function(e){wppaInitOverlay();});jQuery(window).resize(function(){jQuery("#wppa-overlay-bg").css({height:window.innerHeight,width:window.innerWidth,});wppaOvlResize();});function wppaDoOnOrientationChange(e){if(wppaOvlMode!='normal'&&document.getElementById('wppa-overlay-img')){setTimeout('wppaOvlShow( '+wppaOvlIdx+' )',100);return;}}
8
  function wppaOvlKeyboardHandler(e){var keycode;var escapeKey;if(e==null){keycode=event.keyCode;escapeKey=27;}else{keycode=e.keyCode;escapeKey=27;}
9
  var key=String.fromCharCode(keycode).toLowerCase();switch(keycode){case escapeKey:wppaStopVideo(mocc);if(wppaOvlMode!='normal'){wppaOvlNorm(true);}
10
  wppaOvlHide();break;case 37:wppaOvlShowPrev();break;case 39:wppaOvlShowNext();break;}
126
  function wppaInitOverlay(){wppaConsoleLog('wppaInitOverlay');wppaOvlMode=wppaOvlModeInitial;var anchors=jQuery('a');var anchor;var i;var temp=[];wppaOvlFsPhotoId=0;wppaPhotoId=0;wppaOvlCurIdx=0;wppaSavedContainerWidth=240+2*wppaOvlBorderWidth;wppaSavedContainerHeight=180+3*wppaOvlBorderWidth+20+(wppaOvlTxtHeight=='auto'?50:wppaOvlTxtHeight);wppaSavedMarginLeft=-(120+wppaOvlBorderWidth);wppaSavedMarginTop=-(90+wppaOvlBorderWidth+10+(wppaOvlTxtHeight=='auto'?25:wppaOvlTxtHeight/2));wppaSavedImageWidth=240;wppaSavedImageHeight=180+wppaOvlBorderWidth;for(i=0;i<anchors.length;i++){anchor=anchors[i];if(jQuery(anchor).attr('data-rel')){temp=jQuery(anchor).attr('data-rel').split("[");}
127
  else if(anchor.rel){temp=anchor.rel.split("[");}
128
  else{temp[0]='';}
129
+ if(temp[0]=='wppa'){wppaWppaOverlayActivated=true;if(wppaIsMobile){jQuery(anchor).on('touchstart',function(event){wppaStartTime();});jQuery(anchor).on('touchend',function(event){if(wppaInTime()){wppaOvlShow(this);}
130
+ event.preventDefault();});}
131
+ else{jQuery(anchor).on('click',function(event){wppaOvlShow(this);event.preventDefault();});}
132
+ if(wppaIsMobile){window.addEventListener('orientationchange',wppaDoOnOrientationChange);}}}}
133
  function wppaOvlResize(){wppaConsoleLog('wppaOvlResize');setTimeout('wppaOvlSize( '+wppaOvlAnimSpeed+' )',100);if(wppaOvlAudioStart&&!wppaOvlAudioPlaying){setTimeout('wppaOvlStartAudio()',1000);}}
134
  wppaConsoleLog('wppa-lightbox.js version '+wppaLightboxVersion+' loaded.','force');
js/wppa-slideshow.js CHANGED
@@ -3,7 +3,7 @@
3
  // Contains slideshow modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
- var wppaJsSlideshowVersion = '6.5.06';
7
 
8
  // This is an entrypoint to load the slide data
9
  function wppaStoreSlideInfo(
@@ -720,7 +720,11 @@ function _wppaNextSlide_5( mocc ) {
720
  if ( ! _wppaToTheSame ) {
721
 
722
  // Restore subtitles
723
- jQuery( '#imagedesc-'+mocc ).html( _wppaDsc[mocc][_wppaCurIdx[mocc]] );
 
 
 
 
724
  if ( wppaHideWhenEmpty ) {
725
  var desc = _wppaDsc[mocc][_wppaCurIdx[mocc]];
726
  if ( '' == desc || '&nbsp;' == desc ) {
@@ -827,6 +831,58 @@ function _wppaNextSlide_5( mocc ) {
827
  }
828
  }
829
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
830
  // Format a slide
831
  function wppaFormatSlide( mocc ) {
832
 
3
  // Contains slideshow modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
+ var wppaJsSlideshowVersion = '6.5.07';
7
 
8
  // This is an entrypoint to load the slide data
9
  function wppaStoreSlideInfo(
720
  if ( ! _wppaToTheSame ) {
721
 
722
  // Restore subtitles
723
+ var imageDescHtml = _wppaDsc[mocc][_wppaCurIdx[mocc]];
724
+ imageDescHtml = wppaCovertSutcliffe( imageDescHtml, mocc );
725
+
726
+ jQuery( '#imagedesc-'+mocc ).html( imageDescHtml );
727
+
728
  if ( wppaHideWhenEmpty ) {
729
  var desc = _wppaDsc[mocc][_wppaCurIdx[mocc]];
730
  if ( '' == desc || '&nbsp;' == desc ) {
831
  }
832
  }
833
 
834
+ // Enhance imagedesc html according to sutcliffe rules
835
+ function wppaCovertSutcliffe( html, mocc ) {
836
+ var result = html;
837
+ var imgid = 'theimg'+_wppaFg[mocc]+'-'+mocc;
838
+ var wppaSutcliffeWidth = 0;
839
+ var wppaSutcliffeHeight = 0;
840
+ var myWidth = 0;
841
+
842
+ switch ( wppaSutcliffeStyle ) {
843
+
844
+ case 'none':
845
+ break;
846
+
847
+ case 'fullsize':
848
+ result =
849
+ '<center >' +
850
+ '<div id="wppa-sutcliffe-' + mocc + '" style="max-width:100%;text-align:left;" >' +
851
+ html +
852
+ '<div style="display:inline;float:right;margin-right:3px;" >' +
853
+ ( _wppaCurIdx[mocc]+1 ) + ' | '+_wppaSlides[mocc].length +
854
+ '</div>' +
855
+ '</div>' +
856
+ '<div style="clear:both" ></div>' +
857
+ '</center>';
858
+ break;
859
+
860
+ case 'imagewidth':
861
+ case 'portaitwidth':
862
+ wppaSutcliffeWidth = jQuery( '#'+imgid ).width();
863
+ wppaSutcliffeHeight = jQuery( '#'+imgid ).height();
864
+ if ( wppaSutcliffeStyle == 'imagewidth' ) {
865
+ myWidth = wppaSutcliffeWidth;
866
+ }
867
+ else {
868
+ myWidth = wppaSutcliffeWidth < wppaSutcliffeHeight ? wppaSutcliffeWidth : wppaSutcliffeHeight;
869
+ }
870
+ result =
871
+ '<center >' +
872
+ '<div id="wppa-sutcliffe-' + mocc + '" style="max-width:' + myWidth + 'px;text-align:left;" >' +
873
+ html +
874
+ '<div style="display:inline;float:right;" >' +
875
+ ( _wppaCurIdx[mocc]+1 ) + ' | '+_wppaSlides[mocc].length +
876
+ '</div>' +
877
+ '</div>' +
878
+ '<div style="clear:both" ></div>' +
879
+ '</center>';
880
+ break;
881
+ }
882
+
883
+ return result;
884
+ }
885
+
886
  // Format a slide
887
  function wppaFormatSlide( mocc ) {
888
 
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.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 ';}
@@ -69,7 +69,7 @@ else{jQuery('#counter-'+mocc).html(wppaPhoto+' '+(_wppaCurIdx[mocc]+1)+' '+wppaO
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]]);}
75
  _wppaToTheSame=false;if(_wppaSSRuns[mocc]&&!wppaSlideWrap&&((_wppaCurIdx[mocc]+1)==_wppaSlides[mocc].length)){_wppaIsBusy[mocc]=false;_wppaStop(mocc);return;}
@@ -81,6 +81,14 @@ if(!_wppaSSRuns[mocc]){if(_wppaSlides[mocc].length>1){wppaPushStateSlide(mocc,_w
81
  if(_wppaSSRuns[mocc]){setTimeout('_wppaNextSlide( '+mocc+', "auto" )',wppaGetSlideshowTimeout(mocc));}}
82
  jQuery(document).trigger('glossaryTooltipReady');_wppaDidGoto[mocc]=false;_wppaIsBusy[mocc]=false;if(!wppaIsMini[mocc]){_bumpViewCount(_wppaId[mocc][_wppaCurIdx[mocc]]);}
83
  _wppaDoAutocol(mocc);wppaStopAudio();if(wppaSlideAudioStart){var elms=jQuery('.wppa-audio-'+_wppaId[mocc][_wppaCurIdx[mocc]]+'-'+mocc);if(elms.length>0){var audio=elms[elms.length-1];if(audio){if(!wppaAudioPlaying[mocc]){audio.play();}}}}}
 
 
 
 
 
 
 
 
84
  function wppaFormatSlide(mocc){var imgid='theimg'+_wppaFg[mocc]+'-'+mocc;var slideid='theslide'+_wppaFg[mocc]+'-'+mocc;var frameid='slide_frame-'+mocc;var contw=wppaColWidth[mocc];var elm=document.getElementById(imgid);var audios=jQuery('.wppa-audio-'+mocc);if(!elm)return;if(typeof(contw)=='undefined'||contw==0){contw=wppaGetContainerWidth(mocc);wppaColWidth[mocc]=contw;}
85
  var natwidth=elm.naturalWidth;if(typeof(natwidth)=='undefined')natwidth=parseInt(elm.style.maxWidth);var natheight=elm.naturalHeight;if(typeof(natheight)=='undefined')natheight=parseInt(elm.style.maxHeight);var aspect=wppaAspectRatio[mocc];var fullsize=wppaFullSize[mocc];var delta=wppaFullFrameDelta[mocc];var ponly=wppaPortraitOnly[mocc];var valign=wppaFullValign[mocc];if(typeof(valign)=='undefined')valign='none';var halign=wppaFullHalign[mocc];if(typeof(halign)=='undefined')halign='none';var stretch=wppaStretch;var imgw,imgh;var margl,margt;var slidew,slideh;var framew,frameh;if(ponly){imgw=contw-delta;imgh=parseInt(imgw*natheight/natwidth);margl=0;margt=0;slidew=contw;slideh=imgh+delta;framew=contw;frameh=slideh;jQuery('#'+frameid).css({width:framew,height:frameh});jQuery('#'+slideid).css({width:slidew,height:slideh});jQuery('#'+imgid).css({width:imgw,height:imgh});}
86
  else{framew=contw;if(fullsize<contw){framew=fullsize;}
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
+ var wppaJsSlideshowVersion='6.5.07';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 ';}
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){var imageDescHtml=_wppaDsc[mocc][_wppaCurIdx[mocc]];imageDescHtml=wppaCovertSutcliffe(imageDescHtml,mocc);jQuery('#imagedesc-'+mocc).html(imageDescHtml);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]]);}
75
  _wppaToTheSame=false;if(_wppaSSRuns[mocc]&&!wppaSlideWrap&&((_wppaCurIdx[mocc]+1)==_wppaSlides[mocc].length)){_wppaIsBusy[mocc]=false;_wppaStop(mocc);return;}
81
  if(_wppaSSRuns[mocc]){setTimeout('_wppaNextSlide( '+mocc+', "auto" )',wppaGetSlideshowTimeout(mocc));}}
82
  jQuery(document).trigger('glossaryTooltipReady');_wppaDidGoto[mocc]=false;_wppaIsBusy[mocc]=false;if(!wppaIsMini[mocc]){_bumpViewCount(_wppaId[mocc][_wppaCurIdx[mocc]]);}
83
  _wppaDoAutocol(mocc);wppaStopAudio();if(wppaSlideAudioStart){var elms=jQuery('.wppa-audio-'+_wppaId[mocc][_wppaCurIdx[mocc]]+'-'+mocc);if(elms.length>0){var audio=elms[elms.length-1];if(audio){if(!wppaAudioPlaying[mocc]){audio.play();}}}}}
84
+ function wppaCovertSutcliffe(html,mocc){var result=html;var imgid='theimg'+_wppaFg[mocc]+'-'+mocc;var wppaSutcliffeWidth=0;var wppaSutcliffeHeight=0;var myWidth=0;switch(wppaSutcliffeStyle){case'none':break;case'fullsize':result='<center >'+'<div id="wppa-sutcliffe-'+mocc+'" style="max-width:100%;text-align:left;" >'+
85
+ html+'<div style="display:inline;float:right;margin-right:3px;" >'+
86
+ (_wppaCurIdx[mocc]+1)+' | '+_wppaSlides[mocc].length+'</div>'+'</div>'+'<div style="clear:both" ></div>'+'</center>';break;case'imagewidth':case'portaitwidth':wppaSutcliffeWidth=jQuery('#'+imgid).width();wppaSutcliffeHeight=jQuery('#'+imgid).height();if(wppaSutcliffeStyle=='imagewidth'){myWidth=wppaSutcliffeWidth;}
87
+ else{myWidth=wppaSutcliffeWidth<wppaSutcliffeHeight?wppaSutcliffeWidth:wppaSutcliffeHeight;}
88
+ result='<center >'+'<div id="wppa-sutcliffe-'+mocc+'" style="max-width:'+myWidth+'px;text-align:left;" >'+
89
+ html+'<div style="display:inline;float:right;" >'+
90
+ (_wppaCurIdx[mocc]+1)+' | '+_wppaSlides[mocc].length+'</div>'+'</div>'+'<div style="clear:both" ></div>'+'</center>';break;}
91
+ return result;}
92
  function wppaFormatSlide(mocc){var imgid='theimg'+_wppaFg[mocc]+'-'+mocc;var slideid='theslide'+_wppaFg[mocc]+'-'+mocc;var frameid='slide_frame-'+mocc;var contw=wppaColWidth[mocc];var elm=document.getElementById(imgid);var audios=jQuery('.wppa-audio-'+mocc);if(!elm)return;if(typeof(contw)=='undefined'||contw==0){contw=wppaGetContainerWidth(mocc);wppaColWidth[mocc]=contw;}
93
  var natwidth=elm.naturalWidth;if(typeof(natwidth)=='undefined')natwidth=parseInt(elm.style.maxWidth);var natheight=elm.naturalHeight;if(typeof(natheight)=='undefined')natheight=parseInt(elm.style.maxHeight);var aspect=wppaAspectRatio[mocc];var fullsize=wppaFullSize[mocc];var delta=wppaFullFrameDelta[mocc];var ponly=wppaPortraitOnly[mocc];var valign=wppaFullValign[mocc];if(typeof(valign)=='undefined')valign='none';var halign=wppaFullHalign[mocc];if(typeof(halign)=='undefined')halign='none';var stretch=wppaStretch;var imgw,imgh;var margl,margt;var slidew,slideh;var framew,frameh;if(ponly){imgw=contw-delta;imgh=parseInt(imgw*natheight/natwidth);margl=0;margt=0;slidew=contw;slideh=imgh+delta;framew=contw;frameh=slideh;jQuery('#'+frameid).css({width:framew,height:frameh});jQuery('#'+slideid).css({width:slidew,height:slideh});jQuery('#'+imgid).css({width:imgw,height:imgh});}
94
  else{framew=contw;if(fullsize<contw){framew=fullsize;}
js/wppa-touch.js CHANGED
@@ -3,7 +3,7 @@
3
  // Contains swipe modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
- var wppaJsTouchVersion = '6.3.3';
7
 
8
  var wppaTriggerElementID = null;
9
  var wppaFingerCount = 0;
@@ -21,6 +21,27 @@ var wppaSwipeAngle = null;
21
  var wppaSwipeDirection = null;
22
  var wppaSwipeOnLightbox = false;
23
  var wppaSwipeMocc = 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
 
25
  function wppaTouchStart( event, id, mocc ) {
26
 
3
  // Contains swipe modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
+ var wppaJsTouchVersion = '6.5.07';
7
 
8
  var wppaTriggerElementID = null;
9
  var wppaFingerCount = 0;
21
  var wppaSwipeDirection = null;
22
  var wppaSwipeOnLightbox = false;
23
  var wppaSwipeMocc = 0;
24
+ var wppaMobileTimeStart = 0;
25
+
26
+ function wppaStartTime() {
27
+ var d = new Date();
28
+ var t = d.getTime();
29
+ wppaMobileTimeStart = t;
30
+ return true;
31
+ }
32
+
33
+ function wppaInTime() {
34
+ var d = new Date();
35
+ var t = d.getTime();
36
+ // Return true if no later than 500 msec after wppaStartTime();
37
+ return ( t - wppaMobileTimeStart ) < 250;
38
+ }
39
+
40
+ function wppaTapLink( url ) {
41
+ if ( wppaInTime() ) {
42
+ document.location.href = url;
43
+ }
44
+ }
45
 
46
  function wppaTouchStart( event, id, mocc ) {
47
 
js/wppa-touch.min.js CHANGED
@@ -4,7 +4,10 @@
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
- var wppaJsTouchVersion='6.3.3';var wppaTriggerElementID=null;var wppaFingerCount=0;var wppaStartX=0;var wppaStartY=0;var wppaCurX=0;var wppaCurY=0;var wppaDeltaX=0;var wppaDeltaY=0;var wppaHorzDiff=0;var wppaVertDiff=0;var wppaMinLength=72;var wppaSwipeLength=0;var wppaSwipeAngle=null;var wppaSwipeDirection=null;var wppaSwipeOnLightbox=false;var wppaSwipeMocc=0;function wppaTouchStart(event,id,mocc){wppaSwipeMocc=mocc;if(mocc==-1){wppaSwipeOnLightbox=true;event.preventDefault();}
 
 
 
8
  wppaFingerCount=event.touches.length;if(wppaFingerCount==1){wppaStartX=event.touches[0].pageX;wppaStartY=event.touches[0].pageY;wppaTriggerElementID=id;}else{wppaTouchCancel();}}
9
  function wppaTouchMove(event){if(wppaSwipeOnLightbox){event.preventDefault();}
10
  if(event.touches.length==1){wppaCurX=event.touches[0].pageX;wppaCurY=event.touches[0].pageY;}else{wppaTouchCancel();}}
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
+ var wppaJsTouchVersion='6.5.07';var wppaTriggerElementID=null;var wppaFingerCount=0;var wppaStartX=0;var wppaStartY=0;var wppaCurX=0;var wppaCurY=0;var wppaDeltaX=0;var wppaDeltaY=0;var wppaHorzDiff=0;var wppaVertDiff=0;var wppaMinLength=72;var wppaSwipeLength=0;var wppaSwipeAngle=null;var wppaSwipeDirection=null;var wppaSwipeOnLightbox=false;var wppaSwipeMocc=0;var wppaMobileTimeStart=0;function wppaStartTime(){var d=new Date();var t=d.getTime();wppaMobileTimeStart=t;return true;}
8
+ function wppaInTime(){var d=new Date();var t=d.getTime();return(t-wppaMobileTimeStart)<250;}
9
+ function wppaTapLink(url){if(wppaInTime()){document.location.href=url;}}
10
+ function wppaTouchStart(event,id,mocc){wppaSwipeMocc=mocc;if(mocc==-1){wppaSwipeOnLightbox=true;event.preventDefault();}
11
  wppaFingerCount=event.touches.length;if(wppaFingerCount==1){wppaStartX=event.touches[0].pageX;wppaStartY=event.touches[0].pageY;wppaTriggerElementID=id;}else{wppaTouchCancel();}}
12
  function wppaTouchMove(event){if(wppaSwipeOnLightbox){event.preventDefault();}
13
  if(event.touches.length==1){wppaCurX=event.touches[0].pageX;wppaCurY=event.touches[0].pageY;}else{wppaTouchCancel();}}
js/wppa.js CHANGED
@@ -2,7 +2,7 @@
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!!
@@ -251,6 +251,7 @@ var wppaOvlAudioStart = false;
251
  var wppaLastIptc = '';
252
  var wppaLastExif = '';
253
  var wppaIsMobile = false;
 
254
 
255
  // Init at dom ready
256
  jQuery( document ).ready(function() {
@@ -527,6 +528,26 @@ function _wppaDoAutocol( mocc ) {
527
  // Comments
528
  jQuery( ".wppa-comment-textarea-"+mocc ).css( 'width',w * 0.7 );
529
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
530
  // Filmstrip
531
  wppaFilmStripLength[mocc] = w - wppaFilmStripAreaDelta[mocc];
532
  jQuery( "#filmwindow-"+mocc ).css( 'width',wppaFilmStripLength[mocc] );
2
  //
3
  // conatins common vars and functions
4
  //
5
+ var wppaJsVersion = '6.5.07';
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!!
251
  var wppaLastIptc = '';
252
  var wppaLastExif = '';
253
  var wppaIsMobile = false;
254
+ var wppaSutcliffeStyle = 'none';
255
 
256
  // Init at dom ready
257
  jQuery( document ).ready(function() {
528
  // Comments
529
  jQuery( ".wppa-comment-textarea-"+mocc ).css( 'width',w * 0.7 );
530
 
531
+ // Sutcliffe slide description
532
+ switch ( wppaSutcliffeStyle ) {
533
+
534
+ case 'none':
535
+ case 'fullsize':
536
+ break;
537
+ case 'imagewidth':
538
+ case 'portaitwidth':
539
+ var myWidth;
540
+ wppaSutcliffeWidth = jQuery( '#theimg'+_wppaFg[mocc]+'-'+mocc ).width();
541
+ wppaSutcliffeHeight = jQuery( '#theimg'+_wppaFg[mocc]+'-'+mocc ).height();
542
+ if ( wppaSutcliffeStyle == 'imagewidth' ) {
543
+ myWidth = wppaSutcliffeWidth;
544
+ }
545
+ else {
546
+ myWidth = wppaSutcliffeWidth < wppaSutcliffeHeight ? wppaSutcliffeWidth : wppaSutcliffeHeight;
547
+ }
548
+ jQuery( "#wppa-sutcliffe-"+mocc ).css('width',myWidth);
549
+ }
550
+
551
  // Filmstrip
552
  wppaFilmStripLength[mocc] = w - wppaFilmStripAreaDelta[mocc];
553
  jQuery( "#filmwindow-"+mocc ).css( 'width',wppaFilmStripLength[mocc] );
js/wppa.min.js CHANGED
@@ -3,7 +3,7 @@
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++;}
@@ -28,7 +28,10 @@ else{jQuery(".wppa-asym-text-frame-mcr-"+mocc).css('width',w-wppaTextFrameDelta)
28
  jQuery(".wppa-cover-box-mcr-"+mocc).css(myCss);}
29
  jQuery(".wppa-thumb-area-"+mocc).css('width',w-wppaThumbnailAreaDelta);if(wppaThumbSpaceAuto){var tfw=parseInt(jQuery(".thumbnail-frame-"+mocc).css('width'));if(tfw){var minspc=wppaMinThumbSpace;var weff=w-wppaThumbnailAreaDelta-7;var nthumbs=parseInt(weff/(tfw+minspc));var availsp=weff-nthumbs*tfw;var newspc=parseInt(0.5+availsp/(nthumbs+1));jQuery(".thumbnail-frame-"+mocc).css({marginLeft:newspc});}}
30
  jQuery(".thumbnail-frame-comalt-"+mocc).css('width',w-wppaThumbnailAreaDelta);jQuery(".wppa-com-alt-"+mocc).css('width',w-wppaThumbnailAreaDelta-wppaComAltSize-16);var row=1;var rowHeightPix;var rowHeightPerc=jQuery('#wppa-mas-h-'+row+'-'+mocc).attr('data-height-perc');while(rowHeightPerc){rowHeightPix=rowHeightPerc*(w-wppaThumbnailAreaDelta)/100;jQuery('#wppa-mas-h-'+row+'-'+mocc).css('height',rowHeightPix);row++;rowHeightPerc=jQuery('#wppa-mas-h-'+row+'-'+mocc).attr('data-height-perc');}
31
- wppaSetMasHorFrameWidthsForIeAndChrome(mocc);wppaFormatSlide(mocc);jQuery("#audio-slide-"+mocc).css('width',w-wppaBoxDelta-6);jQuery(".wppa-comment-textarea-"+mocc).css('width',w*0.7);wppaFilmStripLength[mocc]=w-wppaFilmStripAreaDelta[mocc];jQuery("#filmwindow-"+mocc).css('width',wppaFilmStripLength[mocc]);_wppaAdjustFilmstrip(mocc);if(!wppaIsMini[mocc]&&typeof(_wppaSlides[mocc])!='undefined'){if(wppaColWidth[mocc]<wppaMiniTreshold){jQuery('#prev-arrow-'+mocc).html(wppaPrevP);jQuery('#next-arrow-'+mocc).html(wppaNextP);jQuery('#wppa-avg-rat-'+mocc).html(wppaAvgRat);jQuery('#wppa-my-rat-'+mocc).html(wppaMyRat);jQuery('#counter-'+mocc).html((_wppaCurIdx[mocc]+1)+' / '+_wppaSlides[mocc].length);}
 
 
 
32
  else{jQuery('#prev-arrow-'+mocc).html(wppaPreviousPhoto);jQuery('#next-arrow-'+mocc).html(wppaNextPhoto);jQuery('#wppa-avg-rat-'+mocc).html(wppaAvgRating);jQuery('#wppa-my-rat-'+mocc).html(wppaMyRating);jQuery('#counter-'+mocc).html(wppaPhoto+' '+(_wppaCurIdx[mocc]+1)+' '+wppaOf+' '+_wppaSlides[mocc].length);}}
33
  jQuery(".wppa-sphoto-"+mocc).css('width',w);jQuery(".wppa-simg-"+mocc).css('width',w-2*wppaSlideBorderWidth);jQuery(".wppa-simg-"+mocc).css('height','');jQuery(".wppa-mphoto-"+mocc).css('width',w+10);jQuery(".wppa-mimg-"+mocc).css('width',w);jQuery(".wppa-mimg-"+mocc).css('height','');}
34
  function wppaSetMasHorFrameWidthsForIeAndChrome(mocc){var frames=jQuery('.wppa-mas-h-'+mocc);var tnm=wppaMinThumbSpace;for(var i=0;i<frames.length;i++){var img=wppaGetChildI(frames[i]);if(img){if(img.nodeName=='IMG'){if(!img.complete){setTimeout('wppaSetMasHorFrameWidthsForIeAndChrome( '+mocc+' )',400);return;}}
3
  // conatins common vars and functions
4
  //
5
 
6
+ var wppaJsVersion='6.5.07';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;var wppaSutcliffeStyle='none';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++;}
28
  jQuery(".wppa-cover-box-mcr-"+mocc).css(myCss);}
29
  jQuery(".wppa-thumb-area-"+mocc).css('width',w-wppaThumbnailAreaDelta);if(wppaThumbSpaceAuto){var tfw=parseInt(jQuery(".thumbnail-frame-"+mocc).css('width'));if(tfw){var minspc=wppaMinThumbSpace;var weff=w-wppaThumbnailAreaDelta-7;var nthumbs=parseInt(weff/(tfw+minspc));var availsp=weff-nthumbs*tfw;var newspc=parseInt(0.5+availsp/(nthumbs+1));jQuery(".thumbnail-frame-"+mocc).css({marginLeft:newspc});}}
30
  jQuery(".thumbnail-frame-comalt-"+mocc).css('width',w-wppaThumbnailAreaDelta);jQuery(".wppa-com-alt-"+mocc).css('width',w-wppaThumbnailAreaDelta-wppaComAltSize-16);var row=1;var rowHeightPix;var rowHeightPerc=jQuery('#wppa-mas-h-'+row+'-'+mocc).attr('data-height-perc');while(rowHeightPerc){rowHeightPix=rowHeightPerc*(w-wppaThumbnailAreaDelta)/100;jQuery('#wppa-mas-h-'+row+'-'+mocc).css('height',rowHeightPix);row++;rowHeightPerc=jQuery('#wppa-mas-h-'+row+'-'+mocc).attr('data-height-perc');}
31
+ wppaSetMasHorFrameWidthsForIeAndChrome(mocc);wppaFormatSlide(mocc);jQuery("#audio-slide-"+mocc).css('width',w-wppaBoxDelta-6);jQuery(".wppa-comment-textarea-"+mocc).css('width',w*0.7);switch(wppaSutcliffeStyle){case'none':case'fullsize':break;case'imagewidth':case'portaitwidth':var myWidth;wppaSutcliffeWidth=jQuery('#theimg'+_wppaFg[mocc]+'-'+mocc).width();wppaSutcliffeHeight=jQuery('#theimg'+_wppaFg[mocc]+'-'+mocc).height();if(wppaSutcliffeStyle=='imagewidth'){myWidth=wppaSutcliffeWidth;}
32
+ else{myWidth=wppaSutcliffeWidth<wppaSutcliffeHeight?wppaSutcliffeWidth:wppaSutcliffeHeight;}
33
+ jQuery("#wppa-sutcliffe-"+mocc).css('width',myWidth);}
34
+ wppaFilmStripLength[mocc]=w-wppaFilmStripAreaDelta[mocc];jQuery("#filmwindow-"+mocc).css('width',wppaFilmStripLength[mocc]);_wppaAdjustFilmstrip(mocc);if(!wppaIsMini[mocc]&&typeof(_wppaSlides[mocc])!='undefined'){if(wppaColWidth[mocc]<wppaMiniTreshold){jQuery('#prev-arrow-'+mocc).html(wppaPrevP);jQuery('#next-arrow-'+mocc).html(wppaNextP);jQuery('#wppa-avg-rat-'+mocc).html(wppaAvgRat);jQuery('#wppa-my-rat-'+mocc).html(wppaMyRat);jQuery('#counter-'+mocc).html((_wppaCurIdx[mocc]+1)+' / '+_wppaSlides[mocc].length);}
35
  else{jQuery('#prev-arrow-'+mocc).html(wppaPreviousPhoto);jQuery('#next-arrow-'+mocc).html(wppaNextPhoto);jQuery('#wppa-avg-rat-'+mocc).html(wppaAvgRating);jQuery('#wppa-my-rat-'+mocc).html(wppaMyRating);jQuery('#counter-'+mocc).html(wppaPhoto+' '+(_wppaCurIdx[mocc]+1)+' '+wppaOf+' '+_wppaSlides[mocc].length);}}
36
  jQuery(".wppa-sphoto-"+mocc).css('width',w);jQuery(".wppa-simg-"+mocc).css('width',w-2*wppaSlideBorderWidth);jQuery(".wppa-simg-"+mocc).css('height','');jQuery(".wppa-mphoto-"+mocc).css('width',w+10);jQuery(".wppa-mimg-"+mocc).css('width',w);jQuery(".wppa-mimg-"+mocc).css('height','');}
37
  function wppaSetMasHorFrameWidthsForIeAndChrome(mocc){var frames=jQuery('.wppa-mas-h-'+mocc);var tnm=wppaMinThumbSpace;for(var i=0;i<frames.length;i++){var img=wppaGetChildI(frames[i]);if(img){if(img.nodeName=='IMG'){if(!img.complete){setTimeout('wppaSetMasHorFrameWidthsForIeAndChrome( '+mocc+' )',400);return;}}
languages/wp-photo-album-plus-da_DK.mo CHANGED
Binary file
languages/wp-photo-album-plus-da_DK.po CHANGED
@@ -1,15 +1,15 @@
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"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.8\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: wppa.php\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -30,7 +30,7 @@ msgstr "Sider:"
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
 
@@ -68,7 +68,7 @@ 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
 
@@ -226,11 +226,11 @@ msgstr ""
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 ""
@@ -240,7 +240,7 @@ 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
 
@@ -249,12 +249,12 @@ 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
 
@@ -263,7 +263,7 @@ 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
 
@@ -272,8 +272,8 @@ 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
 
@@ -301,7 +301,7 @@ msgstr ""
301
  msgid "Import"
302
  msgstr ""
303
 
304
- #: wppa-admin.php:128 wppa-settings-autosave.php:9719
305
  msgid "Update"
306
  msgstr ""
307
 
@@ -573,20 +573,20 @@ msgstr ""
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"
@@ -594,21 +594,21 @@ msgstr "Navn"
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
 
@@ -628,7 +628,7 @@ msgstr ""
628
  msgid "Parent album"
629
  msgstr ""
630
 
631
- #: wppa-ajax.php:1076 wppa-settings-autosave.php:4011
632
  msgid "Photo order"
633
  msgstr ""
634
 
@@ -640,8 +640,8 @@ msgstr ""
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
 
@@ -877,9 +877,9 @@ 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
 
@@ -1081,15 +1081,15 @@ msgstr ""
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
 
@@ -1101,7 +1101,7 @@ msgstr ""
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
 
@@ -1113,11 +1113,11 @@ msgstr ""
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
 
@@ -1354,7 +1354,7 @@ 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
 
@@ -1366,8 +1366,8 @@ msgstr ""
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
 
@@ -1504,68 +1504,68 @@ 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
 
@@ -1653,27 +1653,27 @@ 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
 
@@ -1701,33 +1701,33 @@ msgstr ""
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
 
@@ -1830,19 +1830,19 @@ msgstr ""
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
 
@@ -1850,7 +1850,7 @@ msgstr ""
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
 
@@ -1872,8 +1872,8 @@ msgstr ""
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
 
@@ -1960,15 +1960,15 @@ msgstr ""
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
 
1968
  #: wppa-album-admin-autosave.php:880 wppa-boxes-html.php:820
1969
  #: wppa-breadcrumb.php:288 wppa-breadcrumb.php:312 wppa-breadcrumb.php:342
1970
  #: wppa-breadcrumb.php:362 wppa-breadcrumb.php:456 wppa-breadcrumb.php:483
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
@@ -2004,7 +2004,7 @@ msgstr "Slet"
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 ""
@@ -2254,8 +2254,8 @@ msgstr ""
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
 
@@ -2326,11 +2326,12 @@ 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
 
@@ -2349,9 +2350,9 @@ msgstr "Nyt!"
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
 
@@ -2390,7 +2391,7 @@ msgstr ""
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---"
@@ -2520,18 +2521,18 @@ msgstr ""
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
 
@@ -2573,7 +2574,7 @@ msgid "Category"
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,9 +2588,9 @@ msgstr "CTRL + Klik for at tilføje / fjerne mulighed."
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
 
@@ -2611,7 +2612,7 @@ 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,115 +2660,120 @@ msgstr "Find!"
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"
2666
 
2667
- #: wppa-boxes-html.php:1306 wppa-qr-widget.php:39
2668
  msgid "QR code"
2669
  msgstr "QR kode"
2670
 
2671
- #: wppa-boxes-html.php:1351
2672
  #, php-format
2673
  msgid "Tweet %s on Twitter"
2674
  msgstr "Tweet %s p&aring; Twitter"
2675
 
2676
- #: wppa-boxes-html.php:1358
2677
  msgid "Share on Twitter"
2678
  msgstr "Del på Twitter"
2679
 
2680
- #: wppa-boxes-html.php:1371
2681
  #, php-format
2682
  msgid "Share %s on Google+"
2683
  msgstr "Del %s p&aring; Google+"
2684
 
2685
- #: wppa-boxes-html.php:1379
2686
  msgid "Share on Google+"
2687
  msgstr "Del på Google+"
2688
 
2689
- #: wppa-boxes-html.php:1394
2690
  #, php-format
2691
  msgid "Share %s on Pinterest"
2692
  msgstr "Del %s p&aring; Pinterest"
2693
 
2694
- #: wppa-boxes-html.php:1404
2695
  msgid "Share on Pinterest"
2696
  msgstr "Del på Pinterest"
2697
 
2698
- #: wppa-boxes-html.php:1549
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,22 +2782,22 @@ 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,7 +2807,7 @@ msgstr ""
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,190 +2816,190 @@ msgstr ""
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,22 +3008,22 @@ msgid_plural "%d votes"
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
 
@@ -3025,7 +3031,7 @@ msgstr "Opdater"
3025
  msgid "Post:"
3026
  msgstr "Indlæg:"
3027
 
3028
- #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:661
3029
  msgid "Page:"
3030
  msgstr "Side:"
3031
 
@@ -3169,19 +3175,19 @@ msgstr "Miniaturevisning"
3169
  msgid "Thumbs"
3170
  msgstr "Miniature"
3171
 
3172
- #: wppa-breadcrumb.php:659
3173
  msgid "Unpublished"
3174
  msgstr "Ikke publiceret"
3175
 
3176
- #: wppa-breadcrumb.php:689
3177
  msgid "Found photos will meet the search criteria as follows:"
3178
  msgstr "Fundet fotos vil opfylde søgekriterierne som følger:"
3179
 
3180
- #: wppa-breadcrumb.php:692
3181
  msgid "AND"
3182
  msgstr "OG"
3183
 
3184
- #: wppa-breadcrumb.php:696
3185
  msgid "OR"
3186
  msgstr "ELLER"
3187
 
@@ -3214,7 +3220,7 @@ msgstr ""
3214
  msgid "Email:"
3215
  msgstr ""
3216
 
3217
- #: wppa-comment-admin.php:80 wppa-utils.php:1037
3218
  msgid "Comment:"
3219
  msgstr ""
3220
 
@@ -3278,7 +3284,7 @@ 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,7 +3346,7 @@ msgstr ""
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
 
@@ -3354,13 +3360,13 @@ msgstr ""
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
 
@@ -3430,87 +3436,87 @@ msgstr ""
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,39 +3525,39 @@ msgstr ""
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
 
@@ -3615,182 +3621,182 @@ msgstr ""
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 "
@@ -3895,11 +3901,11 @@ msgstr ""
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
 
@@ -3960,7 +3966,7 @@ msgstr "Se fotos"
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"
@@ -4003,160 +4009,160 @@ msgstr ""
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 ""
@@ -4882,11 +4888,11 @@ msgstr ""
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
 
@@ -4968,7 +4974,7 @@ msgstr ""
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"
@@ -5016,8 +5022,8 @@ msgid "From and To albums are identical"
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
 
@@ -5082,15 +5088,15 @@ msgstr ""
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,103 +5104,103 @@ msgstr ""
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,7 +5209,7 @@ msgid_plural "%d views"
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
 
@@ -5428,8 +5434,8 @@ msgstr ""
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
 
@@ -5520,7 +5526,7 @@ msgstr ""
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
 
@@ -5749,7 +5755,7 @@ msgid ""
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
 
@@ -5788,23 +5794,23 @@ msgstr ""
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
 
@@ -5829,9 +5835,9 @@ msgstr ""
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
 
@@ -5840,14 +5846,14 @@ msgstr ""
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
 
@@ -5889,7 +5895,7 @@ 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"
@@ -5932,13 +5938,13 @@ 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
 
@@ -5972,14 +5978,14 @@ 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
 
@@ -6150,101 +6156,101 @@ msgstr ""
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
 
@@ -6315,7 +6321,7 @@ msgstr ""
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
 
@@ -6495,7 +6501,7 @@ 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
 
@@ -6503,8 +6509,8 @@ msgstr ""
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
 
@@ -6548,7 +6554,7 @@ msgstr ""
6548
  msgid "Layout"
6549
  msgstr ""
6550
 
6551
- #: wppa-settings-autosave.php:375 wppa-settings-autosave.php:4955
6552
  msgid "Lightbox"
6553
  msgstr ""
6554
 
@@ -6564,8 +6570,8 @@ msgstr ""
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
 
@@ -6589,7 +6595,7 @@ msgstr ""
6589
  msgid "Widgets"
6590
  msgstr ""
6591
 
6592
- #: wppa-settings-autosave.php:388 wppa-settings-autosave.php:8376
6593
  msgid "Watermark"
6594
  msgstr ""
6595
 
@@ -6972,14 +6978,14 @@ msgstr ""
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
 
@@ -7006,8 +7012,8 @@ msgstr ""
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
 
@@ -7844,7 +7850,7 @@ 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
 
@@ -8195,11 +8201,11 @@ msgstr ""
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
 
@@ -8519,7 +8525,7 @@ msgstr ""
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
 
@@ -8913,7 +8919,7 @@ 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
 
@@ -9088,7 +9094,7 @@ msgstr ""
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"
@@ -9888,7 +9894,7 @@ 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
 
@@ -9933,8 +9939,8 @@ msgstr ""
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
 
@@ -10614,12 +10620,12 @@ msgid ""
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 ""
@@ -10689,7 +10695,7 @@ msgstr ""
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
 
@@ -10697,7 +10703,7 @@ msgstr ""
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
 
@@ -10772,10 +10778,10 @@ msgstr ""
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
 
@@ -10827,8 +10833,8 @@ msgstr ""
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
 
@@ -10836,8 +10842,8 @@ msgstr ""
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
 
@@ -10904,754 +10910,774 @@ 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 "
@@ -11659,4163 +11685,4163 @@ msgid ""
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."
@@ -15868,125 +15894,125 @@ msgstr ""
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
 
@@ -17117,62 +17143,62 @@ msgstr ""
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
 
@@ -17223,9 +17249,3 @@ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
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"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-09-15 10:14+0200\n"
5
+ "PO-Revision-Date: 2016-09-15 10:14+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"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.9\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: wppa.php\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
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:1314 wppa-thumbnails.php:641
34
  msgid "Edit"
35
  msgstr "Rediger"
36
 
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:8762
72
  msgid "Page"
73
  msgstr "Side"
74
 
226
  msgid "Photo&thinsp;Albums"
227
  msgstr ""
228
 
229
+ #: wppa-admin.php:59 wppa-adminbar.php:40 wppa-settings-autosave.php:6061
230
  msgid "Album Admin"
231
  msgstr ""
232
 
233
+ #: wppa-admin.php:60 wppa-adminbar.php:47 wppa-settings-autosave.php:6062
234
  #: wppa-upload-widget.php:79 wppa-upload.php:119
235
  msgid "Upload Photos"
236
  msgstr ""
240
  msgstr ""
241
 
242
  #: wppa-admin.php:65 wppa-adminbar.php:61 wppa-import.php:168
243
+ #: wppa-settings-autosave.php:6063
244
  msgid "Import Photos"
245
  msgstr ""
246
 
249
  msgstr ""
250
 
251
  #: wppa-admin.php:67 wppa-adminbar.php:75 wppa-export.php:32
252
+ #: wppa-settings-autosave.php:6065
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:6066
258
  msgid "Settings"
259
  msgstr ""
260
 
263
  msgstr ""
264
 
265
  #: wppa-admin.php:69 wppa-adminbar.php:89 wppa-potd-widget.php:60
266
+ #: wppa-settings-autosave.php:6067 wppa-setup.php:1589
267
  msgid "Photo of the day"
268
  msgstr ""
269
 
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:8561
276
+ #: wppa-settings-autosave.php:8606
277
  msgid "Comments"
278
  msgstr ""
279
 
301
  msgid "Import"
302
  msgstr ""
303
 
304
+ #: wppa-admin.php:128 wppa-settings-autosave.php:9739
305
  msgid "Update"
306
  msgstr ""
307
 
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:1899
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:4037
583
+ #: wppa-settings-autosave.php:4151 wppa-settings-autosave.php:4800
584
+ #: wppa-settings-autosave.php:4821 wppa-settings-autosave.php:4997
585
+ #: wppa-settings-autosave.php:5021 wppa-settings-autosave.php:6027
586
+ #: wppa-settings-autosave.php:6448 wppa-settings-autosave.php:6698
587
+ #: wppa-settings-autosave.php:6720 wppa-settings-autosave.php:7450
588
+ #: wppa-settings-autosave.php:7474 wppa-settings-autosave.php:8555
589
+ #: wppa-settings-autosave.php:9196 wppa-settings-autosave.php:9352
590
  #: wppa-thumbnail-widget.php:202 wppa-upload.php:259
591
  msgid "Name"
592
  msgstr "Navn"
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:1900
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:4801
604
+ #: wppa-settings-autosave.php:4822 wppa-settings-autosave.php:4998
605
+ #: wppa-settings-autosave.php:5022 wppa-settings-autosave.php:6028
606
+ #: wppa-settings-autosave.php:6449 wppa-settings-autosave.php:6699
607
+ #: wppa-settings-autosave.php:6721 wppa-settings-autosave.php:7451
608
+ #: wppa-settings-autosave.php:7475 wppa-settings-autosave.php:9197
609
+ #: wppa-settings-autosave.php:9219 wppa-settings-autosave.php:9259
610
+ #: wppa-settings-autosave.php:9281 wppa-settings-autosave.php:9327
611
+ #: wppa-settings-autosave.php:9353
612
  msgid "Description"
613
  msgstr ""
614
 
628
  msgid "Parent album"
629
  msgstr ""
630
 
631
+ #: wppa-ajax.php:1076 wppa-settings-autosave.php:4031
632
  msgid "Photo order"
633
  msgstr ""
634
 
640
  msgid "Cover Type"
641
  msgstr ""
642
 
643
+ #: wppa-ajax.php:1085 wppa-settings-autosave.php:5023
644
+ #: wppa-settings-autosave.php:6029
645
  msgid "Link type"
646
  msgstr ""
647
 
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:6724 wppa-settings-autosave.php:7454
881
+ #: wppa-settings-autosave.php:9220 wppa-settings-autosave.php:9260
882
+ #: wppa-settings-autosave.php:9282 wppa-settings-autosave.php:9328
883
  msgid "Status"
884
  msgstr ""
885
 
1081
  msgid "Number of text lines"
1082
  msgstr ""
1083
 
1084
+ #: wppa-ajax.php:1972 wppa-settings-autosave.php:4677
1085
  msgid "Overlay opacity"
1086
  msgstr ""
1087
 
1088
+ #: wppa-ajax.php:1975 wppa-settings-autosave.php:8014
1089
  msgid "Upload limit"
1090
  msgstr ""
1091
 
1092
+ #: wppa-ajax.php:1978 wppa-settings-autosave.php:4347
1093
  msgid "Notify inappropriate"
1094
  msgstr ""
1095
 
1101
  msgid "Dislike delete"
1102
  msgstr ""
1103
 
1104
+ #: wppa-ajax.php:1987 wppa-settings-autosave.php:7550
1105
  msgid "Max execution time"
1106
  msgstr ""
1107
 
1113
  msgid "JPG Image quality"
1114
  msgstr ""
1115
 
1116
+ #: wppa-ajax.php:2002 wppa-settings-autosave.php:4240
1117
  msgid "Number of coverphotos"
1118
  msgstr ""
1119
 
1120
+ #: wppa-ajax.php:2005 wppa-settings-autosave.php:4318
1121
  msgid "Dislike value"
1122
  msgstr ""
1123
 
1354
  msgstr ""
1355
 
1356
  #: wppa-album-admin-autosave.php:82 wppa-album-admin-autosave.php:822
1357
+ #: wppa-setup.php:1315
1358
  msgid "Edit photo information"
1359
  msgstr ""
1360
 
1366
  msgid "Top of page"
1367
  msgstr ""
1368
 
1369
+ #: wppa-album-admin-autosave.php:118 wppa-functions.php:3989
1370
+ #: wppa-settings-autosave.php:7862 wppa-wpdb-insert.php:338
1371
  msgid "New Album"
1372
  msgstr "Nyt Album"
1373
 
1504
  msgstr ""
1505
 
1506
  #: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:492
1507
+ #: wppa-settings-autosave.php:4074 wppa-settings-autosave.php:4098
1508
  #: wppa-tinymce-shortcodes.php: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:4036 wppa-settings-autosave.php:4150
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:4038
1520
+ #: wppa-settings-autosave.php:4152 wppa-thumbnail-widget.php:203
1521
  msgid "Random"
1522
  msgstr ""
1523
 
1524
+ #: wppa-album-admin-autosave.php:395 wppa-settings-autosave.php:4039
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:4040 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:4041 wppa-settings-autosave.php:4153
1535
  msgid "Timestamp"
1536
  msgstr ""
1537
 
1538
  #: wppa-album-admin-autosave.php:398 wppa-photo-admin-autosave.php:292
1539
+ #: wppa-settings-autosave.php:4042
1540
  msgid "EXIF Date"
1541
  msgstr ""
1542
 
1543
+ #: wppa-album-admin-autosave.php:399 wppa-settings-autosave.php:4043
1544
+ #: wppa-settings-autosave.php:4154
1545
  msgid "Order # desc"
1546
  msgstr ""
1547
 
1548
+ #: wppa-album-admin-autosave.php:400 wppa-settings-autosave.php:4044
1549
+ #: wppa-settings-autosave.php:4155
1550
  msgid "Name desc"
1551
  msgstr ""
1552
 
1553
+ #: wppa-album-admin-autosave.php:401 wppa-settings-autosave.php:4045
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:4046
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:4047
1564
+ #: wppa-settings-autosave.php:4156 wppa-thumbnail-widget.php:206
1565
  msgid "Timestamp desc"
1566
  msgstr ""
1567
 
1568
+ #: wppa-album-admin-autosave.php:404 wppa-settings-autosave.php:4048
1569
  msgid "EXIF Date desc"
1570
  msgstr ""
1571
 
1653
  msgstr ""
1654
 
1655
  #: wppa-album-admin-autosave.php:493 wppa-settings-autosave.php:2031
1656
+ #: wppa-settings-autosave.php:4220
1657
  msgid "Standard"
1658
  msgstr ""
1659
 
1660
+ #: wppa-album-admin-autosave.php:494 wppa-settings-autosave.php:4221
1661
  msgid "Long Descriptions"
1662
  msgstr ""
1663
 
1664
+ #: wppa-album-admin-autosave.php:495 wppa-settings-autosave.php:4222
1665
  msgid "Image Factory"
1666
  msgstr ""
1667
 
1668
+ #: wppa-album-admin-autosave.php:496 wppa-settings-autosave.php:4223
1669
  msgid "Standard mcr"
1670
  msgstr ""
1671
 
1672
+ #: wppa-album-admin-autosave.php:497 wppa-settings-autosave.php:4224
1673
  msgid "Long Descriptions mcr"
1674
  msgstr ""
1675
 
1676
+ #: wppa-album-admin-autosave.php:498 wppa-settings-autosave.php:4225
1677
  msgid "Image Factory mcr"
1678
  msgstr ""
1679
 
1701
  msgid "Upload limit:"
1702
  msgstr ""
1703
 
1704
+ #: wppa-album-admin-autosave.php:543 wppa-settings-autosave.php:6165
1705
+ #: wppa-settings-autosave.php:8021
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:6166 wppa-settings-autosave.php:8022
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:6167 wppa-settings-autosave.php:8023
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:6168 wppa-settings-autosave.php:8024
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:6169 wppa-settings-autosave.php:8025
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:6170 wppa-settings-autosave.php:8026
1731
  msgid "per year"
1732
  msgstr ""
1733
 
1830
  msgid "Link type:"
1831
  msgstr ""
1832
 
1833
+ #: wppa-album-admin-autosave.php:679 wppa-settings-autosave.php:8182
1834
  msgid "the sub-albums and thumbnails"
1835
  msgstr ""
1836
 
1837
+ #: wppa-album-admin-autosave.php:680 wppa-settings-autosave.php:8183
1838
  msgid "the sub-albums"
1839
  msgstr ""
1840
 
1841
+ #: wppa-album-admin-autosave.php:681 wppa-settings-autosave.php:8184
1842
  msgid "the thumbnails"
1843
  msgstr ""
1844
 
1845
+ #: wppa-album-admin-autosave.php:682 wppa-settings-autosave.php:8185
1846
  msgid "the album photos as slideshow"
1847
  msgstr ""
1848
 
1850
  msgid "the link page with a clean url"
1851
  msgstr ""
1852
 
1853
+ #: wppa-album-admin-autosave.php:684 wppa-settings-autosave.php:8186
1854
  msgid "no link at all"
1855
  msgstr ""
1856
 
1872
  msgid "Link to:"
1873
  msgstr ""
1874
 
1875
+ #: wppa-album-admin-autosave.php:705 wppa-settings-autosave.php:9865
1876
+ #: wppa-settings-autosave.php:9907 wppa-settings-autosave.php:9959
1877
  msgid "There are no pages (yet) to link to."
1878
  msgstr ""
1879
 
1960
  msgid "Edit photo"
1961
  msgstr "N&aelig;ste billede"
1962
 
1963
+ #: wppa-album-admin-autosave.php:878 wppa-boxes-html.php:1855
1964
+ #: wppa-boxes-html.php:1858
1965
  msgid "Delete Album"
1966
  msgstr ""
1967
 
1968
  #: wppa-album-admin-autosave.php:880 wppa-boxes-html.php:820
1969
  #: wppa-breadcrumb.php:288 wppa-breadcrumb.php:312 wppa-breadcrumb.php:342
1970
  #: wppa-breadcrumb.php:362 wppa-breadcrumb.php:456 wppa-breadcrumb.php:483
1971
+ #: wppa-breadcrumb.php:643 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
2004
  msgid "Move to:"
2005
  msgstr ""
2006
 
2007
+ #: wppa-album-admin-autosave.php:896 wppa-photo-admin-autosave.php:2030
2008
  #: wppa-settings-autosave.php:2898
2009
  msgid "Cancel"
2010
  msgstr ""
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:7934
2258
+ #: wppa-settings-autosave.php:7945 wppa-stereo.php:31
2259
  msgid "Color"
2260
  msgstr ""
2261
 
2326
  msgstr[0] ""
2327
  msgstr[1] ""
2328
 
2329
+ #: wppa-album-covers.php:1437 wppa-boxes-html.php:1282 wppa-boxes-html.php:1596
2330
+ #: wppa-breadcrumb.php:155 wppa-breadcrumb.php:161 wppa-breadcrumb.php:168
2331
+ #: wppa-breadcrumb.php:392 wppa-breadcrumb.php:394 wppa-breadcrumb.php:400
2332
+ #: wppa-breadcrumb.php:402 wppa-breadcrumb.php:410 wppa-breadcrumb.php:426
2333
+ #: wppa-breadcrumb.php:439 wppa-breadcrumb.php:445 wppa-utils.php:1739
2334
+ #: wppa-utils.php:2394
2335
  msgid "and"
2336
  msgstr "og"
2337
 
2350
  msgid "New"
2351
  msgstr "Ny"
2352
 
2353
+ #: wppa-album-covers.php:1752 wppa-boxes-html.php:844 wppa-non-admin.php:754
2354
+ #: wppa-settings-autosave.php:2293 wppa-settings-autosave.php:5602
2355
+ #: wppa-settings-autosave.php:8341
2356
  msgid "Slideshow"
2357
  msgstr "Slideshow"
2358
 
2391
  msgid "--- all separate albums ---"
2392
  msgstr ""
2393
 
2394
+ #: wppa-album-navigator-widget.php:102 wppa-common-functions.php:1701
2395
  #: wppa-items.php:436
2396
  msgid "--- owner/public ---"
2397
  msgstr "---ejer/offentlige---"
2521
  msgid "Rating count:"
2522
  msgstr ""
2523
 
2524
+ #: wppa-bestof-widget.php:198 wppa-common-functions.php:1683
2525
  #: wppa-import.php:1604 wppa-items.php:424 wppa-potd-admin.php:100
2526
  #: wppa-potd-admin.php:136 wppa-settings-autosave.php:1393
2527
  #: wppa-settings-autosave.php:1742 wppa-settings-autosave.php:1947
2528
  #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:3827
2529
+ #: wppa-settings-autosave.php:4013 wppa-settings-autosave.php:4035
2530
+ #: wppa-settings-autosave.php:4149 wppa-settings-autosave.php:5676
2531
+ #: wppa-settings-autosave.php:6409 wppa-settings-autosave.php:7818
2532
+ #: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
2533
+ #: wppa-settings-autosave.php:8956 wppa-settings-autosave.php:9113
2534
+ #: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
2535
+ #: wppa-tinymce-shortcodes.php:616 wppa-watermark.php:519
2536
  msgid "--- none ---"
2537
  msgstr "--- ingen ---"
2538
 
2574
  msgstr "Kategori"
2575
 
2576
  #: wppa-boxes-html.php:421 wppa-boxes-html.php:554
2577
+ #: wppa-settings-autosave.php:7933 wppa-settings-autosave.php:7944
2578
  msgid "Text"
2579
  msgstr "Tekst"
2580
 
2588
  msgid "Items must meet all selected options."
2589
  msgstr "Elementer skal opfylde alle valgte indstillinger."
2590
 
2591
+ #: wppa-boxes-html.php:546 wppa-settings-autosave.php:9217
2592
+ #: wppa-settings-autosave.php:9257 wppa-settings-autosave.php:9279
2593
+ #: wppa-settings-autosave.php:9325
2594
  msgid "Tag"
2595
  msgstr "Tag"
2596
 
2612
  msgstr "Super View Billeder"
2613
 
2614
  #: wppa-boxes-html.php:836 wppa-settings-autosave.php:385
2615
+ #: wppa-settings-autosave.php:4907
2616
  msgid "Thumbnails"
2617
  msgstr "Miniatyrbilder"
2618
 
2660
  msgid "Social media landing page"
2661
  msgstr "Sociale medier destinationsside"
2662
 
2663
+ #: wppa-boxes-html.php:1283 wppa-utils.php:1739
2664
  #, php-format
2665
  msgid "See this image on %s"
2666
  msgstr "Se dette billed p&aring; %s"
2667
 
2668
+ #: wppa-boxes-html.php:1310 wppa-boxes-html.php:1614 wppa-qr-widget.php:39
2669
  msgid "QR code"
2670
  msgstr "QR kode"
2671
 
2672
+ #: wppa-boxes-html.php:1355 wppa-boxes-html.php:1646
2673
  #, php-format
2674
  msgid "Tweet %s on Twitter"
2675
  msgstr "Tweet %s p&aring; Twitter"
2676
 
2677
+ #: wppa-boxes-html.php:1362 wppa-boxes-html.php:1653
2678
  msgid "Share on Twitter"
2679
  msgstr "Del på Twitter"
2680
 
2681
+ #: wppa-boxes-html.php:1375 wppa-boxes-html.php:1666
2682
  #, php-format
2683
  msgid "Share %s on Google+"
2684
  msgstr "Del %s p&aring; Google+"
2685
 
2686
+ #: wppa-boxes-html.php:1383 wppa-boxes-html.php:1674
2687
  msgid "Share on Google+"
2688
  msgstr "Del på Google+"
2689
 
2690
+ #: wppa-boxes-html.php:1398
2691
  #, php-format
2692
  msgid "Share %s on Pinterest"
2693
  msgstr "Del %s p&aring; Pinterest"
2694
 
2695
+ #: wppa-boxes-html.php:1408
2696
  msgid "Share on Pinterest"
2697
  msgstr "Del på Pinterest"
2698
 
2699
+ #: wppa-boxes-html.php:1553 wppa-boxes-html.php:1750
2700
  msgid "Comment on Facebook:"
2701
  msgstr "Kommentar på Facebook:"
2702
 
2703
+ #: wppa-boxes-html.php:1597
2704
+ #, php-format
2705
+ msgid "See this article on %s"
2706
+ msgstr ""
2707
+
2708
+ #: wppa-boxes-html.php:1853 wppa-import.php:1305
2709
  msgid "Working..."
2710
  msgstr "Arbejder…"
2711
 
2712
+ #: wppa-boxes-html.php:1950
2713
  msgid "Create Sub Album"
2714
  msgstr ""
2715
 
2716
+ #: wppa-boxes-html.php:1950
2717
  msgid "Create Album"
2718
  msgstr "Opret album"
2719
 
2720
+ #: wppa-boxes-html.php:1997
2721
  msgid "Enter album name."
2722
  msgstr "Indtast albummets navn."
2723
 
2724
+ #: wppa-boxes-html.php:1999 wppa-boxes-html.php:2861
2725
  msgid "Don't leave this blank!"
2726
  msgstr "Lad ikke dette tomt!"
2727
 
2728
+ #: wppa-boxes-html.php:2020
2729
  msgid "Enter album description"
2730
  msgstr "Indtast album beskrivelse"
2731
 
2732
+ #: wppa-boxes-html.php:2048
2733
  msgid "Create album"
2734
  msgstr "Opret album"
2735
 
2736
+ #: wppa-boxes-html.php:2151 wppa-boxes-html.php:2165 wppa-functions.php:4208
2737
  msgid "Max uploads reached"
2738
  msgstr "Maks. antal indsendinger er opn&aring;et"
2739
 
2740
+ #: wppa-boxes-html.php:2230 wppa-upload.php:181
2741
  msgid "Upload Photo"
2742
  msgstr "Indsend foto"
2743
 
2744
+ #: wppa-boxes-html.php:2312
2745
  msgid "Select Photo / Video / Camera"
2746
  msgstr ""
2747
 
2748
+ #: wppa-boxes-html.php:2315
2749
  msgid "Select Photo / Camera"
2750
  msgstr ""
2751
 
2752
+ #: wppa-boxes-html.php:2320
2753
  msgid "Select Photo / Video"
2754
  msgstr ""
2755
 
2756
+ #: wppa-boxes-html.php:2323
2757
  msgid "Select Photo"
2758
  msgstr ""
2759
 
2760
+ #: wppa-boxes-html.php:2330
2761
  msgid "Select Photos / Video / Camera"
2762
  msgstr ""
2763
 
2764
+ #: wppa-boxes-html.php:2333
2765
  msgid "Select Photos / Camera"
2766
  msgstr ""
2767
 
2768
+ #: wppa-boxes-html.php:2338
2769
  msgid "Select Photos / Video"
2770
  msgstr ""
2771
 
2772
+ #: wppa-boxes-html.php:2341
2773
  msgid "Select Photos"
2774
  msgstr ""
2775
 
2776
+ #: wppa-boxes-html.php:2379
2777
  #, php-format
2778
  msgid "You may upload %d photo"
2779
  msgid_plural ""
2782
  msgstr[0] ""
2783
  msgstr[1] ""
2784
 
2785
+ #: wppa-boxes-html.php:2387
2786
  #, php-format
2787
  msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
2788
  msgstr "Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
2789
 
2790
+ #: wppa-boxes-html.php:2416 wppa-import.php:561 wppa-upload.php:167
2791
  #: wppa-upload.php:309 wppa-upload.php:383
2792
  msgid "Apply watermark file:"
2793
  msgstr "Inds&aelig;t vandm&aelig;rke:"
2794
 
2795
+ #: wppa-boxes-html.php:2438 wppa-import.php:565 wppa-upload.php:171
2796
  #: wppa-upload.php:313 wppa-upload.php:387
2797
  msgid "Position:"
2798
  msgstr "Position:"
2799
 
2800
+ #: wppa-boxes-html.php:2466
2801
  msgid ""
2802
  "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
2803
  "photoname if available, else the original filename will be used as photo "
2807
  "som photoname hvis tilgængelig, ellers det oprindelige filnavn vil blive "
2808
  "brugt som foto navn."
2809
 
2810
+ #: wppa-boxes-html.php:2471
2811
  msgid ""
2812
  "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
2813
  "available, else the original filename will be used as photo name."
2816
  "photoname hvis tilgængelig, ellers det oprindelige filnavn vil blive brugt "
2817
  "som foto navn."
2818
 
2819
+ #: wppa-boxes-html.php:2476
2820
  msgid ""
2821
  "If you leave this blank, the original filename will be used as photo name."
2822
  msgstr ""
2823
  "Hvis du ikke udfylder dette felt, s&aring; vil filens navn blive brugt som "
2824
  "foto navn"
2825
 
2826
+ #: wppa-boxes-html.php:2481 wppa-settings-autosave.php:1681
2827
  msgid "Photo name"
2828
  msgstr ""
2829
 
2830
+ #: wppa-boxes-html.php:2499
2831
  msgid "Photo description"
2832
  msgstr ""
2833
 
2834
+ #: wppa-boxes-html.php:2527
2835
  msgid "hidden"
2836
  msgstr "skjult"
2837
 
2838
+ #: wppa-boxes-html.php:2597
2839
  msgid "Preview tags:"
2840
  msgstr "Eksempel tags:"
2841
 
2842
+ #: wppa-boxes-html.php:2614
2843
  msgid "Blog it?"
2844
  msgstr ""
2845
 
2846
+ #: wppa-boxes-html.php:2624
2847
  msgid "Upload and blog"
2848
  msgstr ""
2849
 
2850
+ #: wppa-boxes-html.php:2628 wppa-boxes-html.php:2691
2851
  msgid "Upload photo"
2852
  msgstr "Upload foto"
2853
 
2854
+ #: wppa-boxes-html.php:2636
2855
  msgid "Post title:"
2856
  msgstr ""
2857
 
2858
+ #: wppa-boxes-html.php:2646
2859
  msgid "Text BEFORE the image:"
2860
  msgstr ""
2861
 
2862
+ #: wppa-boxes-html.php:2656
2863
  msgid "Text AFTER the image:"
2864
  msgstr ""
2865
 
2866
+ #: wppa-boxes-html.php:2676
2867
  msgid "Please select an album and try again"
2868
  msgstr "Vælg et album, og prøv igen"
2869
 
2870
+ #: wppa-boxes-html.php:2747
2871
  msgid "ERROR: unable to upload files."
2872
  msgstr "FEJL: ude af stand til at uploade filer."
2873
 
2874
+ #: wppa-boxes-html.php:2801
2875
  msgid "Edit Album Info"
2876
  msgstr ""
2877
 
2878
+ #: wppa-boxes-html.php:2859
2879
  msgid "Enter album name"
2880
  msgstr "Indtast albummets navn"
2881
 
2882
+ #: wppa-boxes-html.php:2881
2883
  msgid "Album description:"
2884
  msgstr "Album beskrivelse:"
2885
 
2886
+ #: wppa-boxes-html.php:2935
2887
  msgid "Update album"
2888
  msgstr "Opdater album"
2889
 
2890
+ #: wppa-boxes-html.php:3004
2891
  msgid "wrote:"
2892
  msgstr "skrev:"
2893
 
2894
+ #: wppa-boxes-html.php:3066
2895
  msgid "Avatar"
2896
  msgstr "Profilbillede"
2897
 
2898
+ #: wppa-boxes-html.php:3109 wppa-links.php:826
2899
  msgid "Awaiting moderation"
2900
  msgstr "Venter p&aring; godkendelse"
2901
 
2902
+ #: wppa-boxes-html.php:3112
2903
  msgid "Marked as spam"
2904
  msgstr "Markeret som spam"
2905
 
2906
+ #: wppa-boxes-html.php:3136
2907
  msgid "Edit!"
2908
  msgstr "Rediger!"
2909
 
2910
+ #: wppa-boxes-html.php:3140
2911
  msgid "Send!"
2912
  msgstr "Send"
2913
 
2914
+ #: wppa-boxes-html.php:3201
2915
  msgid "Your name:"
2916
  msgstr "Dit navn"
2917
 
2918
+ #: wppa-boxes-html.php:3216
2919
  msgid "Your email:"
2920
  msgstr "Din email"
2921
 
2922
+ #: wppa-boxes-html.php:3232
2923
  msgid "Your comment:"
2924
  msgstr "Din kommentar"
2925
 
2926
+ #: wppa-boxes-html.php:3276
2927
  #, php-format
2928
  msgid "You must <a href=\"%s\">login</a> to enter a comment"
2929
  msgstr "Du skal <a href=\"%s\">logge ind</a> for at indtaste en kommentar"
2930
 
2931
+ #: wppa-boxes-html.php:3279
2932
  msgid "You must login to enter a comment"
2933
  msgstr "Du skal logge ind for at indtaste en kommentar"
2934
 
2935
+ #: wppa-boxes-html.php:3291 wppa-functions.php:2568 wppa-thumbnails.php:682
2936
  #, php-format
2937
  msgid "%d comment"
2938
  msgid_plural "%d comments"
2939
  msgstr[0] "%d kommentar"
2940
  msgstr[1] "%d kommentarer"
2941
 
2942
+ #: wppa-boxes-html.php:3295
2943
  msgid "Leave a comment"
2944
  msgstr "Skriv en kommentar"
2945
 
2946
+ #: wppa-boxes-html.php:3392
2947
  msgid "Show IPTC data"
2948
  msgstr "Vis IPTC data"
2949
 
2950
+ #: wppa-boxes-html.php:3403
2951
  msgid "Hide IPTC data"
2952
  msgstr "Skjul IPTC data"
2953
 
2954
+ #: wppa-boxes-html.php:3451
2955
  msgid "No IPTC data"
2956
  msgstr "Ingen IPTC data"
2957
 
2958
+ #: wppa-boxes-html.php:3503
2959
  msgid "Show EXIF data"
2960
  msgstr "Vis EXIF data"
2961
 
2962
+ #: wppa-boxes-html.php:3514
2963
  msgid "Hide EXIF data"
2964
  msgstr "Skjul EXIF data"
2965
 
2966
+ #: wppa-boxes-html.php:3566
2967
  msgid "No EXIF data"
2968
  msgstr "Ingen EXIF data"
2969
 
2970
+ #: wppa-boxes-html.php:3680 wppa-boxes-html.php:3685
2971
  msgid "< Previous"
2972
  msgstr "< Forrige"
2973
 
2974
+ #: wppa-boxes-html.php:3691 wppa-boxes-html.php:3696
2975
  msgid "Next >"
2976
  msgstr "Næste >"
2977
 
2978
+ #: wppa-boxes-html.php:3798 wppa-boxes-html.php:3877
2979
  msgid "See the authors albums"
2980
  msgstr "Se forfatternes album"
2981
 
2982
+ #: wppa-boxes-html.php:3802 wppa-boxes-html.php:3810 wppa-boxes-html.php:3881
2983
  msgid "See the authors photos"
2984
  msgstr "Se forfatternes billeder"
2985
 
2986
+ #: wppa-boxes-html.php:3806 wppa-boxes-html.php:3814 wppa-boxes-html.php:3885
2987
  msgid "See all the authors photos"
2988
  msgstr "Se alle forfatternes billeder"
2989
 
2990
+ #: wppa-boxes-html.php:3840
2991
  #, php-format
2992
  msgid "Photo by: %s"
2993
  msgstr "Foto af: %s"
2994
 
2995
+ #: wppa-boxes-html.php:3843 wppa-boxes-html.php:3906
2996
  #, php-format
2997
  msgid "%d max rating"
2998
  msgid_plural "%d max ratings"
2999
  msgstr[0] ""
3000
  msgstr[1] ""
3001
 
3002
+ #: wppa-boxes-html.php:3847 wppa-boxes-html.php:3910 wppa-non-admin.php:924
3003
  #: wppa-topten-widget.php:196 wppa-topten-widget.php:213
3004
  #: wppa-topten-widget.php:249
3005
  #, php-format
3008
  msgstr[0] ""
3009
  msgstr[1] ""
3010
 
3011
+ #: wppa-boxes-html.php:3851
3012
  #, php-format
3013
  msgid "Rating: %4.2f."
3014
  msgstr ""
3015
 
3016
+ #: wppa-boxes-html.php:3859
3017
  #, php-format
3018
  msgid "Photo %s not found."
3019
  msgstr "Foto %s ikke fundet."
3020
 
3021
+ #: wppa-boxes-html.php:3914
3022
  #, php-format
3023
  msgid "Mean value: %4.2f."
3024
  msgstr "Middelværdi: %4.2f."
3025
 
3026
+ #: wppa-boxes-html.php:4261 wppa-photo-admin-autosave.php:196
3027
  msgid "Refresh"
3028
  msgstr "Opdater"
3029
 
3031
  msgid "Post:"
3032
  msgstr "Indlæg:"
3033
 
3034
+ #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:668
3035
  msgid "Page:"
3036
  msgstr "Side:"
3037
 
3175
  msgid "Thumbs"
3176
  msgstr "Miniature"
3177
 
3178
+ #: wppa-breadcrumb.php:666
3179
  msgid "Unpublished"
3180
  msgstr "Ikke publiceret"
3181
 
3182
+ #: wppa-breadcrumb.php:696
3183
  msgid "Found photos will meet the search criteria as follows:"
3184
  msgstr "Fundet fotos vil opfylde søgekriterierne som følger:"
3185
 
3186
+ #: wppa-breadcrumb.php:699
3187
  msgid "AND"
3188
  msgstr "OG"
3189
 
3190
+ #: wppa-breadcrumb.php:703
3191
  msgid "OR"
3192
  msgstr "ELLER"
3193
 
3220
  msgid "Email:"
3221
  msgstr ""
3222
 
3223
+ #: wppa-comment-admin.php:80 wppa-utils.php:1038
3224
  msgid "Comment:"
3225
  msgstr ""
3226
 
3284
  msgstr ""
3285
 
3286
  #: wppa-comment-admin.php:231 wppa-settings-autosave.php:465
3287
+ #: wppa-settings-autosave.php:8211
3288
  msgid "--- Please select a page ---"
3289
  msgstr ""
3290
 
3346
  msgid "Save Settings / Perform bulk action"
3347
  msgstr ""
3348
 
3349
+ #: wppa-comment-admin.php:309 wppa-comment-admin.php:396 wppa-non-admin.php:759
3350
  msgid "Photo"
3351
  msgstr "Foto"
3352
 
3360
  #: wppa-settings-autosave.php:1446 wppa-settings-autosave.php:1467
3361
  #: wppa-settings-autosave.php:3092 wppa-settings-autosave.php:3113
3362
  #: wppa-settings-autosave.php:3450 wppa-settings-autosave.php:3474
3363
+ #: wppa-settings-autosave.php:4799 wppa-settings-autosave.php:4820
3364
+ #: wppa-settings-autosave.php:4996 wppa-settings-autosave.php:5020
3365
+ #: wppa-settings-autosave.php:6026 wppa-settings-autosave.php:6697
3366
+ #: wppa-settings-autosave.php:6719 wppa-settings-autosave.php:7449
3367
+ #: wppa-settings-autosave.php:7473 wppa-settings-autosave.php:9195
3368
+ #: wppa-settings-autosave.php:9216 wppa-settings-autosave.php:9256
3369
+ #: wppa-settings-autosave.php:9278 wppa-settings-autosave.php:9324
3370
  msgid "#"
3371
  msgstr ""
3372
 
3436
  msgid "Comments on Photos"
3437
  msgstr ""
3438
 
3439
+ #: wppa-comment-widget.php:73 wppa-non-admin.php:894 wppa-thumbnails.php:500
3440
  msgid "wrote"
3441
  msgstr "skrev"
3442
 
3443
  #: wppa-comment-widget.php:87 wppa-featen-widget.php:137
3444
+ #: wppa-lasten-widget.php:148 wppa-non-admin.php:895 wppa-non-admin.php:900
3445
+ #: wppa-non-admin.php:905 wppa-non-admin.php:909 wppa-non-admin.php:916
3446
+ #: wppa-non-admin.php:926 wppa-potd-widget.php:159
3447
  #: wppa-thumbnail-widget.php:114 wppa-topten-widget.php:257
3448
  msgid "Photo not found"
3449
  msgstr "Foto ikke fundet"
3450
 
3451
+ #: wppa-comment-widget.php:93 wppa-non-admin.php:896
3452
  msgid "There are no commented photos (yet)"
3453
  msgstr ""
3454
 
3455
+ #: wppa-common-functions.php:653 wppa-functions.php:4626
3456
  #, php-format
3457
  msgid "%d second"
3458
  msgid_plural "%d seconds"
3459
  msgstr[0] ""
3460
  msgstr[1] ""
3461
 
3462
+ #: wppa-common-functions.php:657 wppa-functions.php:4622
3463
+ #: wppa-settings-autosave.php:6542 wppa-settings-autosave.php:6543
3464
  #, php-format
3465
  msgid "%d minute"
3466
  msgid_plural "%d minutes"
3467
  msgstr[0] ""
3468
  msgstr[1] ""
3469
 
3470
+ #: wppa-common-functions.php:661 wppa-functions.php:4618
3471
+ #: wppa-settings-autosave.php:6544 wppa-settings-autosave.php:7828
3472
  #, php-format
3473
  msgid "%d hour"
3474
  msgid_plural "%d hours"
3475
  msgstr[0] ""
3476
  msgstr[1] ""
3477
 
3478
+ #: wppa-common-functions.php:665 wppa-functions.php:4614
3479
+ #: wppa-settings-autosave.php:6545 wppa-settings-autosave.php:7829
3480
+ #: wppa-settings-autosave.php:7830 wppa-settings-autosave.php:7831
3481
+ #: wppa-settings-autosave.php:7832 wppa-settings-autosave.php:7833
3482
+ #: wppa-settings-autosave.php:7834 wppa-settings-autosave.php:7836
3483
+ #: wppa-settings-autosave.php:7837 wppa-settings-autosave.php:7838
3484
+ #: wppa-settings-autosave.php:9016
3485
  #, php-format
3486
  msgid "%d day"
3487
  msgid_plural "%d days"
3488
  msgstr[0] ""
3489
  msgstr[1] ""
3490
 
3491
+ #: wppa-common-functions.php:669 wppa-functions.php:4610
3492
+ #: wppa-settings-autosave.php:6546 wppa-settings-autosave.php:7835
3493
+ #: wppa-settings-autosave.php:7839 wppa-settings-autosave.php:7840
3494
+ #: wppa-settings-autosave.php:7841 wppa-settings-autosave.php:9017
3495
  #, php-format
3496
  msgid "%d week"
3497
  msgid_plural "%d weeks"
3498
  msgstr[0] ""
3499
  msgstr[1] ""
3500
 
3501
+ #: wppa-common-functions.php:673 wppa-settings-autosave.php:7842
3502
+ #: wppa-settings-autosave.php:9018 wppa-settings-autosave.php:9019
3503
+ #: wppa-settings-autosave.php:9020 wppa-settings-autosave.php:9021
3504
+ #: wppa-settings-autosave.php:9022 wppa-settings-autosave.php:9024
3505
  #, php-format
3506
  msgid "%d month"
3507
  msgid_plural "%d months"
3508
  msgstr[0] ""
3509
  msgstr[1] ""
3510
 
3511
+ #: wppa-common-functions.php:676 wppa-settings-autosave.php:9023
3512
+ #: wppa-settings-autosave.php:9025
3513
  #, php-format
3514
  msgid "%d year"
3515
  msgid_plural "%d years"
3516
  msgstr[0] ""
3517
  msgstr[1] ""
3518
 
3519
+ #: wppa-common-functions.php:1399
3520
  #, php-format
3521
  msgid ""
3522
  "Based on your server memory limit you should not upload images larger then "
3525
  "Baseret på din server hukommelse grænse bør du ikke uploade billeder større "
3526
  "derefter <strong>%d x %d (% 2.1f MP)</strong>"
3527
 
3528
+ #: wppa-common-functions.php:1677
3529
  msgid "- select an album -"
3530
  msgstr "- vælg et album -"
3531
 
3532
+ #: wppa-common-functions.php:1689 wppa-items.php:432
3533
  #: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
3534
  #: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
3535
  #: wppa-tagcloud-widget.php:79
3536
  msgid "--- all ---"
3537
  msgstr "--- alle ---"
3538
 
3539
+ #: wppa-common-functions.php:1695
3540
  msgid "--- generic ---"
3541
  msgstr "--- generisk ---"
3542
 
3543
+ #: wppa-common-functions.php:1712
3544
  msgid "--- multiple see below ---"
3545
  msgstr "--- multipel se nedenfor ---"
3546
 
3547
+ #: wppa-common-functions.php:1718
3548
  msgid "--- a selection box ---"
3549
  msgstr "--- et valgboksen ---"
3550
 
3551
+ #: wppa-common-functions.php:1765 wppa-import.php:1605 wppa-items.php:428
3552
+ #: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
3553
  msgid "--- separate ---"
3554
  msgstr "--- adskille ---"
3555
 
3556
+ #: wppa-common-functions.php:1871
3557
  msgid "Photo id ="
3558
  msgstr "Foto id ="
3559
 
3560
+ #: wppa-common-functions.php:1871
3561
  msgid "Value ="
3562
  msgstr "Værdi ="
3563
 
3621
  msgid "n.a."
3622
  msgstr "n.a."
3623
 
3624
+ #: wppa-exif-iptc-common.php:239 wppa-utils.php:2626
3625
  msgid "Not Defined"
3626
  msgstr "Ikke Defineret"
3627
 
3628
+ #: wppa-exif-iptc-common.php:240 wppa-utils.php:2627
3629
  msgid "Manual"
3630
  msgstr "Manual"
3631
 
3632
+ #: wppa-exif-iptc-common.php:241 wppa-utils.php:2628
3633
  msgid "Program AE"
3634
  msgstr "Program AE"
3635
 
3636
+ #: wppa-exif-iptc-common.php:242 wppa-utils.php:2629
3637
  msgid "Aperture-priority AE"
3638
  msgstr "Bl&aelig;ndeprioriteret AE"
3639
 
3640
+ #: wppa-exif-iptc-common.php:243 wppa-utils.php:2630
3641
  msgid "Shutter speed priority AE"
3642
  msgstr "Lukkerhastighedsprioritet AE"
3643
 
3644
+ #: wppa-exif-iptc-common.php:244 wppa-utils.php:2631
3645
  msgid "Creative (Slow speed)"
3646
  msgstr "Kreativ (Langsom hastighed)"
3647
 
3648
+ #: wppa-exif-iptc-common.php:245 wppa-utils.php:2632
3649
  msgid "Action (High speed)"
3650
  msgstr "Handling (h&oslash;j hastighed)"
3651
 
3652
+ #: wppa-exif-iptc-common.php:246 wppa-utils.php:2633
3653
  msgid "Portrait"
3654
  msgstr "Portr&aelig;t"
3655
 
3656
+ #: wppa-exif-iptc-common.php:247 wppa-utils.php:2634
3657
  msgid "Landscape"
3658
  msgstr "Landskab"
3659
 
3660
+ #: wppa-exif-iptc-common.php:248 wppa-utils.php:2635
3661
  msgid "Bulb"
3662
  msgstr "Bulb"
3663
 
3664
+ #: wppa-exif-iptc-common.php:270 wppa-utils.php:2636
3665
  msgid "Average"
3666
  msgstr "gennemsnitlig"
3667
 
3668
+ #: wppa-exif-iptc-common.php:271 wppa-utils.php:2637
3669
  msgid "Center-weighted average"
3670
  msgstr "Centerv&aelig;gtet gennemsnit"
3671
 
3672
+ #: wppa-exif-iptc-common.php:272 wppa-utils.php:2638
3673
  msgid "Spot"
3674
  msgstr "Spot"
3675
 
3676
+ #: wppa-exif-iptc-common.php:273 wppa-utils.php:2639
3677
  msgid "Multi-spot"
3678
  msgstr "Multi-spot"
3679
 
3680
+ #: wppa-exif-iptc-common.php:274 wppa-utils.php:2640
3681
  msgid "Multi-segment"
3682
  msgstr "Multi-segment"
3683
 
3684
+ #: wppa-exif-iptc-common.php:275 wppa-utils.php:2641
3685
  msgid "Partial"
3686
  msgstr "Delvist"
3687
 
3688
+ #: wppa-exif-iptc-common.php:276 wppa-settings-autosave.php:4924
3689
+ #: wppa-utils.php:2642
3690
  msgid "Other"
3691
  msgstr "Andet"
3692
 
3693
+ #: wppa-exif-iptc-common.php:312 wppa-utils.php:2643
3694
  msgid "No Flash"
3695
  msgstr "Ingen blitz"
3696
 
3697
+ #: wppa-exif-iptc-common.php:314 wppa-utils.php:2644
3698
  msgid "Fired"
3699
  msgstr "Afskudt"
3700
 
3701
+ #: wppa-exif-iptc-common.php:316 wppa-utils.php:2645
3702
  msgid "Fired, Return not detected"
3703
  msgstr "Afskudt, returnering er ikke opdaget "
3704
 
3705
+ #: wppa-exif-iptc-common.php:318 wppa-utils.php:2646
3706
  msgid "Fired, Return detected"
3707
  msgstr "Afskudt, returnering er opdaget "
3708
 
3709
+ #: wppa-exif-iptc-common.php:320 wppa-utils.php:2647
3710
  msgid "On, Did not fire"
3711
  msgstr "Tilsluttet, afsk&oslash;d ikke"
3712
 
3713
+ #: wppa-exif-iptc-common.php:322 wppa-utils.php:2648
3714
  msgid "On, Fired"
3715
  msgstr "Tilsluttet, afskudt"
3716
 
3717
+ #: wppa-exif-iptc-common.php:324 wppa-utils.php:2649
3718
  msgid "On, Return not detected"
3719
  msgstr "Tilsluttet, returnering er ikke opdaget "
3720
 
3721
+ #: wppa-exif-iptc-common.php:326 wppa-utils.php:2650
3722
  msgid "On, Return detected"
3723
  msgstr "Tilsluttet, returnering er opdaget "
3724
 
3725
+ #: wppa-exif-iptc-common.php:328 wppa-utils.php:2651
3726
  msgid "Off, Did not fire"
3727
  msgstr "Slukket, afsk&oslash;d ikke"
3728
 
3729
+ #: wppa-exif-iptc-common.php:330 wppa-utils.php:2652
3730
  msgid "Off, Did not fire, Return not detected"
3731
  msgstr "Slukket, afsk&oslash;d ikke, returnering er ikke opdaget "
3732
 
3733
+ #: wppa-exif-iptc-common.php:332 wppa-utils.php:2653
3734
  msgid "Auto, Did not fire"
3735
  msgstr "Automatisk, afsk&oslash;d ikke"
3736
 
3737
+ #: wppa-exif-iptc-common.php:334 wppa-utils.php:2654
3738
  msgid "Auto, Fired"
3739
  msgstr "Automatisk, afskudt"
3740
 
3741
+ #: wppa-exif-iptc-common.php:336 wppa-utils.php:2655
3742
  msgid "Auto, Fired, Return not detected"
3743
  msgstr "Automatisk, afskudt, returnering er ikke opdaget "
3744
 
3745
+ #: wppa-exif-iptc-common.php:338 wppa-utils.php:2656
3746
  msgid "Auto, Fired, Return detected"
3747
  msgstr "Automatisk, afskudt, returnering er opdaget "
3748
 
3749
+ #: wppa-exif-iptc-common.php:340 wppa-utils.php:2657
3750
  msgid "No flash function"
3751
  msgstr "Ingen blitz funktion"
3752
 
3753
+ #: wppa-exif-iptc-common.php:342 wppa-utils.php:2658
3754
  msgid "Off, No flash function"
3755
  msgstr "Slukket, ingen blitz funktion"
3756
 
3757
+ #: wppa-exif-iptc-common.php:344 wppa-utils.php:2659
3758
  msgid "Fired, Red-eye reduction"
3759
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion"
3760
 
3761
+ #: wppa-exif-iptc-common.php:346 wppa-utils.php:2660
3762
  msgid "Fired, Red-eye reduction, Return not detected"
3763
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion, returnering er ikke opdaget "
3764
 
3765
+ #: wppa-exif-iptc-common.php:348 wppa-utils.php:2661
3766
  msgid "Fired, Red-eye reduction, Return detected"
3767
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3768
 
3769
+ #: wppa-exif-iptc-common.php:350 wppa-utils.php:2662
3770
  msgid "On, Red-eye reduction"
3771
  msgstr "Tilstuttet, R&oslash;d-&oslash;je reduktion"
3772
 
3773
+ #: wppa-exif-iptc-common.php:352 wppa-utils.php:2663
3774
  msgid "Red-eye reduction, Return not detected"
3775
  msgstr "R&oslash;d-&oslash;je reduktion, returnering er ikke opdaget "
3776
 
3777
+ #: wppa-exif-iptc-common.php:354 wppa-utils.php:2664
3778
  msgid "On, Red-eye reduction, Return detected"
3779
  msgstr "Tilstuttet, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3780
 
3781
+ #: wppa-exif-iptc-common.php:356 wppa-utils.php:2665
3782
  msgid "Off, Red-eye reduction"
3783
  msgstr "Slukket, R&oslash;d-&oslash;je reduktion"
3784
 
3785
+ #: wppa-exif-iptc-common.php:358 wppa-utils.php:2666
3786
  msgid "Auto, Did not fire, Red-eye reduction"
3787
  msgstr "Automatisk, Afsk&oslash;d ikke, R&oslash;d-&oslash;je reduktion"
3788
 
3789
+ #: wppa-exif-iptc-common.php:360 wppa-utils.php:2667
3790
  msgid "Auto, Fired, Red-eye reduction"
3791
  msgstr "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion"
3792
 
3793
+ #: wppa-exif-iptc-common.php:362 wppa-utils.php:2668
3794
  msgid "Auto, Fired, Red-eye reduction, Return not detected"
3795
  msgstr ""
3796
  "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion, returnering er ikke "
3797
  "opdaget "
3798
 
3799
+ #: wppa-exif-iptc-common.php:364 wppa-utils.php:2669
3800
  msgid "Auto, Fired, Red-eye reduction, Return detected"
3801
  msgstr ""
3802
  "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3901
  msgid "Featured Photos"
3902
  msgstr ""
3903
 
3904
+ #: wppa-featen-widget.php:115 wppa-non-admin.php:899
3905
  msgid "View the featured photos"
3906
  msgstr ""
3907
 
3908
+ #: wppa-featen-widget.php:146 wppa-non-admin.php:901
3909
  msgid "There are no featured photos (yet)"
3910
  msgstr ""
3911
 
3966
  msgid "Moderate comment admin"
3967
  msgstr "Godkend kommentar administration"
3968
 
3969
+ #: wppa-functions.php:2366 wppa-functions.php:4423 wppa-import.php:1524
3970
  #: wppa-upload.php:570
3971
  msgid "Moderate manage photo"
3972
  msgstr "Se fotos"
4009
  msgid "Could not process comment.\\nProbably timed out."
4010
  msgstr "Kommentar kunne ikke bearbejdes"
4011
 
4012
+ #: wppa-functions.php:2604 wppa-links.php:1514
4013
  msgid "A video can not be printed or downloaded"
4014
  msgstr "En video kan ikke udskrives eller downloades"
4015
 
4016
+ #: wppa-functions.php:3073
4017
  msgid "ERROR: Illegal attempt to enter a rating."
4018
  msgstr "FEJL: Ulovlig forsøg på at indtaste en rating."
4019
 
4020
+ #: wppa-functions.php:3086
4021
  msgid "ERROR: Illegal attempt to enter a comment."
4022
  msgstr "FEJL: Ulovlig forsøg på at indtaste en kommentar."
4023
 
4024
+ #: wppa-functions.php:3992
4025
  msgid "ERROR: Illegal attempt to create an album."
4026
  msgstr "FEJL: Ulovlig forsøg på at skabe et album."
4027
 
4028
+ #: wppa-functions.php:4000
4029
  msgid "Wrong captcha, please try again"
4030
  msgstr "Forkert captcha, prøv igen"
4031
 
4032
+ #: wppa-functions.php:4016
4033
  #, php-format
4034
  msgid "Album #%s created"
4035
  msgstr "Album #%s oprettet"
4036
 
4037
+ #: wppa-functions.php:4022
4038
  msgid "Could not create album"
4039
  msgstr "Kunne ikke oprette album"
4040
 
4041
+ #: wppa-functions.php:4034
4042
  msgid "ERROR: Illegal attempt to upload a file."
4043
  msgstr "FEJL: Ulovlig forsøg på at uploade en fil."
4044
 
4045
+ #: wppa-functions.php:4107
4046
  msgid "Photo upload"
4047
  msgstr "Foto upload"
4048
 
4049
+ #: wppa-functions.php:4108
4050
  #, php-format
4051
  msgid "%d photo successfully uploaded"
4052
  msgid_plural "%d photos successfully uploaded"
4053
  msgstr[0] ""
4054
  msgstr[1] ""
4055
 
4056
+ #: wppa-functions.php:4109
4057
  #, php-format
4058
  msgid "%s points added"
4059
  msgstr ""
4060
 
4061
+ #: wppa-functions.php:4121
4062
  msgid "Your post is awaiting moderation."
4063
  msgstr ""
4064
 
4065
+ #: wppa-functions.php:4130
4066
  msgid "Upload failed"
4067
  msgstr "Indl&aelig;sning fejlede"
4068
 
4069
+ #: wppa-functions.php:4133
4070
  #, php-format
4071
  msgid "%d upload failed"
4072
  msgid_plural "%d uploads failed"
4073
  msgstr[0] ""
4074
  msgstr[1] ""
4075
 
4076
+ #: wppa-functions.php:4214
4077
  msgid "Error during upload"
4078
  msgstr "Fejl under upload"
4079
 
4080
+ #: wppa-functions.php:4270
4081
  msgid "Could not insert media into db."
4082
  msgstr ""
4083
 
4084
+ #: wppa-functions.php:4310
4085
  msgid "Uploaded file is not an image"
4086
  msgstr "Uploaded fil er ikke et billede"
4087
 
4088
+ #: wppa-functions.php:4316
4089
  #, php-format
4090
  msgid ""
4091
  "Only gif, jpg and png image files are supported. Returned filetype = %d."
4092
  msgstr ""
4093
  "Kun gif, jpg og png filer underst&oslash;ttes. Den forkerte filtype er %d."
4094
 
4095
+ #: wppa-functions.php:4324
4096
  #, php-format
4097
  msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
4098
  msgstr "Uploadede fil er større end den tilladte maksimum på %d x %d pixel."
4099
 
4100
+ #: wppa-functions.php:4332
4101
  #, php-format
4102
  msgid "Uploaded file %s already exists in this album."
4103
  msgstr "Uploadet fil %s findes allerede i dette album."
4104
 
4105
+ #: wppa-functions.php:4342
4106
  #, php-format
4107
  msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
4108
  msgstr ""
4109
  "Billedet er for stort. Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
4110
 
4111
+ #: wppa-functions.php:4382
4112
  msgid "Could not insert photo into db."
4113
  msgstr "Kunne ikke inds&aelig;tte foto i databasen."
4114
 
4115
+ #: wppa-functions.php:4419 wppa-import.php:1520 wppa-upload.php:566
4116
  #, php-format
4117
  msgid "New photo uploaded: %s"
4118
  msgstr "Nyt foto indsendt: %s"
4119
 
4120
+ #: wppa-functions.php:4420 wppa-import.php:1521 wppa-upload.php:567
4121
  #, php-format
4122
  msgid "User %1$s uploaded photo %2$s into album %3$s"
4123
  msgstr "Bruger %1$s indsendte foto %2$s ind i album %3$s"
4124
 
4125
+ #: wppa-functions.php:4422 wppa-import.php:1523 wppa-upload.php:569
4126
  msgid "This upload requires moderation"
4127
  msgstr "Denne indsendelse kr&aelig;ver godkendelse"
4128
 
4129
+ #: wppa-functions.php:4426 wppa-import.php:1527 wppa-upload.php:573
4130
  msgid "Details:"
4131
  msgstr "Detaljer:"
4132
 
4133
+ #: wppa-functions.php:4427 wppa-import.php:1528 wppa-upload.php:574
4134
+ #: wppa-utils.php:943 wppa-utils.php:955
4135
  msgid "Manage photo"
4136
  msgstr "Se fotos"
4137
 
4138
+ #: wppa-functions.php:4607
4139
  msgid "You can upload after"
4140
  msgstr "Du kan indsende efter"
4141
 
4142
+ #: wppa-functions.php:4650 wppa-functions.php:4654 wppa-functions.php:4661
4143
+ #: wppa-functions.php:4665 wppa-links.php:1106 wppa-non-admin.php:813
4144
+ #: wppa-settings-autosave.php:9364 wppa-settings-autosave.php:9376
4145
+ #: wppa-settings-autosave.php:9388 wppa-settings-autosave.php:9400
4146
+ #: wppa-settings-autosave.php:9412 wppa-settings-autosave.php:9424
4147
+ #: wppa-settings-autosave.php:9436 wppa-settings-autosave.php:9448
4148
  msgid "Download"
4149
  msgstr "Download"
4150
 
4151
+ #: wppa-functions.php:4709
4152
  msgid "Zoom in"
4153
  msgstr "Zoom ind"
4154
 
4155
+ #: wppa-functions.php:4740
4156
  #, php-format
4157
  msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
4158
  msgstr ""
4159
 
4160
+ #: wppa-functions.php:4743
4161
  #, php-format
4162
  msgid "You can vote again after %s hours, %s minutes and %s seconds"
4163
  msgstr ""
4164
 
4165
+ #: wppa-functions.php:4746
4166
  #, php-format
4167
  msgid "You can vote again after %s minutes and %s seconds"
4168
  msgstr ""
4888
  msgid "Last Ten Uploaded Photos"
4889
  msgstr ""
4890
 
4891
+ #: wppa-lasten-widget.php:131 wppa-non-admin.php:904
4892
  msgid "View the most recent uploaded photos"
4893
  msgstr ""
4894
 
4895
+ #: wppa-lasten-widget.php:155 wppa-non-admin.php:906
4896
  msgid "There are no uploaded photos (yet)"
4897
  msgstr ""
4898
 
4974
  msgid "Previous"
4975
  msgstr "Forrige"
4976
 
4977
+ #: wppa-links.php:1052 wppa-links.php:1055 wppa-non-admin.php:764
4978
  #: wppa-slideshow.php:1137
4979
  msgid "Next"
4980
  msgstr "N&aelig;ste"
5022
  msgstr ""
5023
 
5024
  #: wppa-maintenance.php:756 wppa-maintenance.php:772
5025
+ #: wppa-photo-admin-autosave.php:1762 wppa-photo-admin-autosave.php:1783
5026
+ #: wppa-settings-autosave.php:4546 wppa-setup.php:352
5027
  msgid "Required"
5028
  msgstr ""
5029
 
5088
  msgid "Select multiple tags or --- all ---:"
5089
  msgstr ""
5090
 
5091
+ #: wppa-non-admin.php:419
5092
  msgid "Press f for fullscreen."
5093
  msgstr "Tryk på f for fuldskærm."
5094
 
5095
+ #: wppa-non-admin.php:429 wppa-non-admin.php:500
5096
  msgid "Toggle fullscreen"
5097
  msgstr ""
5098
 
5099
+ #: wppa-non-admin.php:494
5100
  msgid ""
5101
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
5102
  "dismiss this notice."
5104
  "Nøgler: f = næste tilstand; q, x = exit; p = forrige, n = næste, s = start / "
5105
  "stop, d = afvise denne meddelelse."
5106
 
5107
+ #: wppa-non-admin.php:495
5108
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
5109
  msgstr "Nøgler: f = næste tilstand; q, x = exit; d = afvise denne meddelelse."
5110
 
5111
+ #: wppa-non-admin.php:755 wppa-settings-autosave.php:3834
5112
  #: wppa-slideshow.php:241
5113
  msgid "Start"
5114
  msgstr "Start"
5115
 
5116
+ #: wppa-non-admin.php:756
5117
  msgid "Stop"
5118
  msgstr "Stop"
5119
 
5120
+ #: wppa-non-admin.php:757 wppa-slideshow.php:233
5121
  msgid "Slower"
5122
  msgstr "Langsommere"
5123
 
5124
+ #: wppa-non-admin.php:758 wppa-slideshow.php:249
5125
  msgid "Faster"
5126
  msgstr "Hurtigere"
5127
 
5128
+ #: wppa-non-admin.php:760
5129
  msgid "of"
5130
  msgstr "af"
5131
 
5132
+ #: wppa-non-admin.php:761
5133
  msgid "Previous photo"
5134
  msgstr "Forrige foto"
5135
 
5136
+ #: wppa-non-admin.php:762
5137
  msgid "Next photo"
5138
  msgstr "Næste foto"
5139
 
5140
+ #: wppa-non-admin.php:763
5141
  msgid "Prev."
5142
  msgstr "Forrige"
5143
 
5144
+ #: wppa-non-admin.php:765 wppa-slideshow.php:814 wppa-slideshow.php:828
5145
  #: wppa-slideshow.php:967
5146
  msgid "Average&nbsp;rating"
5147
  msgstr "Bed&oslash;mmelse&nbsp;gennemsnitlig"
5148
 
5149
+ #: wppa-non-admin.php:766 wppa-slideshow.php:893 wppa-slideshow.php:926
5150
  #: wppa-slideshow.php:948
5151
  msgid "My&nbsp;rating"
5152
  msgstr "Min&nbsp;bed&oslash;mmelse"
5153
 
5154
+ #: wppa-non-admin.php:767
5155
  msgid "Avg."
5156
  msgstr "Gns."
5157
 
5158
+ #: wppa-non-admin.php:768
5159
  msgid "Mine"
5160
  msgstr "Mine"
5161
 
5162
+ #: wppa-non-admin.php:769
5163
  msgid "You marked this image as inappropriate."
5164
  msgstr "Du markeret billedet som upassende."
5165
 
5166
+ #: wppa-non-admin.php:772
5167
  msgid "Please enter your name"
5168
  msgstr "Indtast venligst dit navn."
5169
 
5170
+ #: wppa-non-admin.php:773
5171
  msgid "Please enter a valid email address"
5172
  msgstr "Indtast venligst en gyldig e-mail adresse"
5173
 
5174
+ #: wppa-non-admin.php:774
5175
  msgid "Please enter a comment"
5176
  msgstr "Indtast venligst en kommentar"
5177
 
5178
+ #: wppa-non-admin.php:808
5179
  msgid "Double click to start/stop slideshow running"
5180
  msgstr "Dobbeltklik for at starte / stoppe diasshowet kører"
5181
 
5182
+ #: wppa-non-admin.php:910 wppa-photo-admin-autosave.php:265
5183
  #: wppa-potd-widget.php:178
5184
  msgid "By:"
5185
  msgstr ""
5186
 
5187
+ #: wppa-non-admin.php:913 wppa-slideshow-widget.php:124
5188
  msgid "No album defined (yet)"
5189
  msgstr ""
5190
 
5191
+ #: wppa-non-admin.php:917 wppa-thumbnail-widget.php:121
5192
  msgid "There are no photos (yet)"
5193
  msgstr ""
5194
 
5195
+ #: wppa-non-admin.php:920 wppa-upldr-widget.php:90
5196
  msgid "There are too many registered users in the system for this widget"
5197
  msgstr ""
5198
 
5199
+ #: wppa-non-admin.php:921 wppa-upldr-widget.php:125 wppa-upldr-widget.php:132
5200
  msgid "Photos uploaded by"
5201
  msgstr ""
5202
 
5203
+ #: wppa-non-admin.php:925 wppa-thumbnails.php:692 wppa-thumbnails.php:1480
5204
  #: wppa-topten-widget.php:203 wppa-topten-widget.php:226
5205
  #: wppa-topten-widget.php:236
5206
  #, php-format
5209
  msgstr[0] ""
5210
  msgstr[1] ""
5211
 
5212
+ #: wppa-non-admin.php:927 wppa-topten-widget.php:261
5213
  msgid "There are no rated photos (yet)"
5214
  msgstr ""
5215
 
5434
  msgid "Same tab"
5435
  msgstr ""
5436
 
5437
+ #: wppa-photo-admin-autosave.php:436 wppa-settings-autosave.php:5025
5438
+ #: wppa-settings-autosave.php:6031
5439
  msgid "New tab"
5440
  msgstr ""
5441
 
5526
  msgid "Remake thumbnail file"
5527
  msgstr ""
5528
 
5529
+ #: wppa-photo-admin-autosave.php:658 wppa-settings-autosave.php:6912
5530
  msgid "Remake"
5531
  msgstr ""
5532
 
5755
  msgstr ""
5756
 
5757
  #: wppa-photo-admin-autosave.php:1362 wppa-photo-admin-autosave.php:1481
5758
+ #: wppa-potd-admin.php:321 wppa-settings-autosave.php:8526
5759
  msgid "Preview"
5760
  msgstr ""
5761
 
5794
  msgid "The album is empty."
5795
  msgstr ""
5796
 
5797
+ #: wppa-photo-admin-autosave.php:1809
5798
  msgid "Combined"
5799
  msgstr ""
5800
 
5801
+ #: wppa-photo-admin-autosave.php:1846
5802
  msgid "Word"
5803
  msgstr ""
5804
 
5805
+ #: wppa-photo-admin-autosave.php:1849
5806
  msgid "Count"
5807
  msgstr ""
5808
 
5809
+ #: wppa-photo-admin-autosave.php:1901 wppa-settings-autosave.php:6450
5810
  msgid "Tags"
5811
  msgstr ""
5812
 
5813
+ #: wppa-photo-admin-autosave.php:2021
5814
  msgid "Send"
5815
  msgstr ""
5816
 
5835
  #: wppa-settings-autosave.php:517 wppa-settings-autosave.php:679
5836
  #: wppa-settings-autosave.php:701 wppa-settings-autosave.php:1449
5837
  #: wppa-settings-autosave.php:1470 wppa-settings-autosave.php:3095
5838
+ #: wppa-settings-autosave.php:3477 wppa-settings-autosave.php:4802
5839
+ #: wppa-settings-autosave.php:6700 wppa-settings-autosave.php:7476
5840
+ #: wppa-settings-autosave.php:9198
5841
  msgid "Setting"
5842
  msgstr ""
5843
 
5846
  #: wppa-settings-autosave.php:702 wppa-settings-autosave.php:1450
5847
  #: wppa-settings-autosave.php:1471 wppa-settings-autosave.php:3096
5848
  #: wppa-settings-autosave.php:3120 wppa-settings-autosave.php:3457
5849
+ #: wppa-settings-autosave.php:3478 wppa-settings-autosave.php:4803
5850
+ #: wppa-settings-autosave.php:4827 wppa-settings-autosave.php:5003
5851
+ #: wppa-settings-autosave.php:5027 wppa-settings-autosave.php:6033
5852
+ #: wppa-settings-autosave.php:6702 wppa-settings-autosave.php:6726
5853
+ #: wppa-settings-autosave.php:7456 wppa-settings-autosave.php:7477
5854
+ #: wppa-settings-autosave.php:9199 wppa-settings-autosave.php:9221
5855
+ #: wppa-settings-autosave.php:9261 wppa-settings-autosave.php:9283
5856
+ #: wppa-settings-autosave.php:9329
5857
  msgid "Help"
5858
  msgstr ""
5859
 
5895
  msgstr ""
5896
 
5897
  #: wppa-potd-admin.php:100 wppa-settings-autosave.php:3813
5898
+ #: wppa-settings-autosave.php:3827 wppa-settings-autosave.php:4098
5899
  #: wppa-slideshow-widget.php:215 wppa-tinymce-scripts.php:289
5900
  #: wppa-tinymce-shortcodes.php:618
5901
  msgid "center"
5938
  msgstr ""
5939
 
5940
  #: wppa-potd-admin.php:156 wppa-settings-autosave.php:1075
5941
+ #: wppa-settings-autosave.php:5777 wppa-settings-autosave.php:5810
5942
+ #: wppa-settings-autosave.php:5907
5943
  msgid "thumbnails"
5944
  msgstr ""
5945
 
5946
+ #: wppa-potd-admin.php:156 wppa-settings-autosave.php:5778
5947
+ #: wppa-settings-autosave.php:5811 wppa-settings-autosave.php:5908
5948
  msgid "slideshow"
5949
  msgstr ""
5950
 
5978
 
5979
  #: wppa-potd-admin.php:190 wppa-potd-admin.php:644 wppa-potd-admin.php:669
5980
  #: wppa-potd-admin.php:707 wppa-settings-autosave.php:353
5981
+ #: wppa-settings-autosave.php:7320 wppa-settings-autosave.php:7347
5982
+ #: wppa-settings-autosave.php:8415 wppa-settings-autosave.php:8417
5983
+ #: wppa-settings-autosave.php:9706 wppa-settings-autosave.php:9723
5984
+ #: wppa-settings-autosave.php:9752 wppa-settings-autosave.php:9770
5985
+ #: wppa-settings-autosave.php:9794 wppa-settings-autosave.php:9815
5986
+ #: wppa-settings-autosave.php:9835 wppa-settings-autosave.php:9852
5987
+ #: wppa-settings-autosave.php:9896 wppa-settings-autosave.php:9949
5988
+ #: wppa-settings-autosave.php:9981
5989
  msgid "Setting unmodified"
5990
  msgstr ""
5991
 
6156
  msgid "There are too many photos in the selection to show a preview ( %d )"
6157
  msgstr ""
6158
 
6159
+ #: wppa-potd-admin.php:573 wppa-settings-autosave.php:9634
6160
  msgid "The default for this setting is:"
6161
  msgstr ""
6162
 
6163
+ #: wppa-potd-admin.php:590 wppa-settings-autosave.php:9651
6164
  msgid "Click for help"
6165
  msgstr ""
6166
 
6167
+ #: wppa-potd-admin.php:614 wppa-settings-autosave.php:9997
6168
  msgid "Checked"
6169
  msgstr ""
6170
 
6171
+ #: wppa-potd-admin.php:615 wppa-settings-autosave.php:9998
6172
  msgid "Unchecked"
6173
  msgstr ""
6174
 
6175
+ #: wppa-potd-admin.php:616 wppa-settings-autosave.php:5085
6176
+ #: wppa-settings-autosave.php:5128 wppa-settings-autosave.php:5206
6177
+ #: wppa-settings-autosave.php:5249 wppa-settings-autosave.php:5297
6178
+ #: wppa-settings-autosave.php:5344 wppa-settings-autosave.php:5391
6179
+ #: wppa-settings-autosave.php:5443 wppa-settings-autosave.php:5481
6180
+ #: wppa-settings-autosave.php:5531 wppa-settings-autosave.php:5573
6181
+ #: wppa-settings-autosave.php:5614 wppa-settings-autosave.php:9999
6182
  msgid "no link at all."
6183
  msgstr ""
6184
 
6185
+ #: wppa-potd-admin.php:617 wppa-settings-autosave.php:5086
6186
+ #: wppa-settings-autosave.php:5129 wppa-settings-autosave.php:5207
6187
+ #: wppa-settings-autosave.php:5250 wppa-settings-autosave.php:5298
6188
+ #: wppa-settings-autosave.php:5345 wppa-settings-autosave.php:5392
6189
+ #: wppa-settings-autosave.php:5444 wppa-settings-autosave.php:5482
6190
+ #: wppa-settings-autosave.php:5532 wppa-settings-autosave.php:5574
6191
+ #: wppa-settings-autosave.php:5615 wppa-settings-autosave.php:10000
6192
  msgid "the plain photo (file)."
6193
  msgstr ""
6194
 
6195
+ #: wppa-potd-admin.php:618 wppa-settings-autosave.php:5089
6196
+ #: wppa-settings-autosave.php:5132 wppa-settings-autosave.php:5208
6197
+ #: wppa-settings-autosave.php:5253 wppa-settings-autosave.php:5301
6198
+ #: wppa-settings-autosave.php:5348 wppa-settings-autosave.php:5395
6199
+ #: wppa-settings-autosave.php:5483 wppa-settings-autosave.php:5534
6200
+ #: wppa-settings-autosave.php:5576 wppa-settings-autosave.php:10001
6201
  msgid "the full size photo in a slideshow."
6202
  msgstr ""
6203
 
6204
+ #: wppa-potd-admin.php:619 wppa-settings-autosave.php:5090
6205
+ #: wppa-settings-autosave.php:5133 wppa-settings-autosave.php:5209
6206
+ #: wppa-settings-autosave.php:5254 wppa-settings-autosave.php:5302
6207
+ #: wppa-settings-autosave.php:5349 wppa-settings-autosave.php:5396
6208
+ #: wppa-settings-autosave.php:5484 wppa-settings-autosave.php:5535
6209
+ #: wppa-settings-autosave.php:5577 wppa-settings-autosave.php:5616
6210
+ #: wppa-settings-autosave.php:10002
6211
  msgid "the fullsize photo on its own."
6212
  msgstr ""
6213
 
6214
+ #: wppa-potd-admin.php:620 wppa-settings-autosave.php:10003
6215
  msgid "the photo specific link."
6216
  msgstr ""
6217
 
6218
+ #: wppa-potd-admin.php:621 wppa-settings-autosave.php:5088
6219
+ #: wppa-settings-autosave.php:5131 wppa-settings-autosave.php:5533
6220
+ #: wppa-settings-autosave.php:5575 wppa-settings-autosave.php:10004
6221
  msgid "the content of the album."
6222
  msgstr ""
6223
 
6224
+ #: wppa-potd-admin.php:622 wppa-settings-autosave.php:5130
6225
+ #: wppa-settings-autosave.php:10005
6226
  msgid "defined at widget activation."
6227
  msgstr ""
6228
 
6229
+ #: wppa-potd-admin.php:623 wppa-settings-autosave.php:5087
6230
+ #: wppa-settings-autosave.php:10006
6231
  msgid "defined on widget admin page."
6232
  msgstr ""
6233
 
6234
+ #: wppa-potd-admin.php:624 wppa-settings-autosave.php:5445
6235
+ #: wppa-settings-autosave.php:10007
6236
  msgid "same as title."
6237
  msgstr ""
6238
 
6239
  #: wppa-potd-admin.php:636 wppa-potd-admin.php:659 wppa-potd-admin.php:680
6240
+ #: wppa-settings-autosave.php:9696 wppa-settings-autosave.php:9715
6241
+ #: wppa-settings-autosave.php:9745 wppa-settings-autosave.php:9762
6242
+ #: wppa-settings-autosave.php:9786 wppa-settings-autosave.php:9807
6243
+ #: wppa-settings-autosave.php:9827 wppa-settings-autosave.php:9869
6244
  msgid "Slug ="
6245
  msgstr ""
6246
 
6247
+ #: wppa-potd-admin.php:636 wppa-settings-autosave.php:9762
6248
+ #: wppa-settings-autosave.php:9786 wppa-settings-autosave.php:9807
6249
+ #: wppa-settings-autosave.php:9827
6250
  msgid "Values = yes, no"
6251
  msgstr ""
6252
 
6253
+ #: wppa-potd-admin.php:680 wppa-settings-autosave.php:9869
6254
  msgid "Values = "
6255
  msgstr ""
6256
 
6321
  msgid "Enable subsearch"
6322
  msgstr ""
6323
 
6324
+ #: wppa-search-widget.php:134 wppa-settings-autosave.php:5959
6325
  msgid "Landing page"
6326
  msgstr ""
6327
 
6501
  msgstr ""
6502
 
6503
  #: wppa-settings-autosave.php:348 wppa-settings-autosave.php:350
6504
+ #: wppa-settings-autosave.php:2031 wppa-settings-autosave.php:5706
6505
  msgid "Button"
6506
  msgstr ""
6507
 
6509
  msgid "action that causes page reload."
6510
  msgstr ""
6511
 
6512
+ #: wppa-settings-autosave.php:350 wppa-settings-autosave.php:10030
6513
+ #: wppa-settings-autosave.php:10049
6514
  msgid "Are you sure?"
6515
  msgstr ""
6516
 
6554
  msgid "Layout"
6555
  msgstr ""
6556
 
6557
+ #: wppa-settings-autosave.php:375 wppa-settings-autosave.php:4975
6558
  msgid "Lightbox"
6559
  msgstr ""
6560
 
6570
  msgid "Navigation"
6571
  msgstr ""
6572
 
6573
+ #: wppa-settings-autosave.php:380 wppa-settings-autosave.php:8558
6574
+ #: wppa-settings-autosave.php:8603
6575
  msgid "Rating"
6576
  msgstr ""
6577
 
6595
  msgid "Widgets"
6596
  msgstr ""
6597
 
6598
+ #: wppa-settings-autosave.php:388 wppa-settings-autosave.php:8396
6599
  msgid "Watermark"
6600
  msgstr ""
6601
 
6978
  #: wppa-settings-autosave.php:1364 wppa-settings-autosave.php:1373
6979
  #: wppa-settings-autosave.php:1406 wppa-settings-autosave.php:1415
6980
  #: wppa-settings-autosave.php:1427 wppa-settings-autosave.php:1436
6981
+ #: wppa-settings-autosave.php:2910 wppa-settings-autosave.php:4848
6982
+ #: wppa-settings-autosave.php:4865 wppa-settings-autosave.php:4882
6983
+ #: wppa-settings-autosave.php:4899 wppa-settings-autosave.php:4916
6984
+ #: wppa-settings-autosave.php:4933 wppa-settings-autosave.php:4950
6985
+ #: wppa-settings-autosave.php:4967 wppa-settings-autosave.php:4984
6986
+ #: wppa-settings-autosave.php:6261 wppa-settings-autosave.php:8929
6987
+ #: wppa-settings-autosave.php:9125 wppa-settings-autosave.php:9167
6988
+ #: wppa-settings-autosave.php:9185
6989
  msgid "pixels"
6990
  msgstr ""
6991
 
7012
  #: wppa-settings-autosave.php:761 wppa-settings-autosave.php:800
7013
  #: wppa-settings-autosave.php:1244 wppa-settings-autosave.php:1284
7014
  #: wppa-settings-autosave.php:1304 wppa-settings-autosave.php:1344
7015
+ #: wppa-settings-autosave.php:4244 wppa-settings-autosave.php:6186
7016
+ #: wppa-settings-autosave.php:8019
7017
  msgid "photos"
7018
  msgstr ""
7019
 
7850
  "Enter the maximum number of thumbnail photos of albums in the Album widget."
7851
  msgstr ""
7852
 
7853
+ #: wppa-settings-autosave.php:1324 wppa-settings-autosave.php:6202
7854
  msgid "albums"
7855
  msgstr ""
7856
 
8201
  msgid "The location for the pagelinks bar."
8202
  msgstr ""
8203
 
8204
+ #: wppa-settings-autosave.php:1627 wppa-settings-autosave.php:4189
8205
  msgid "Top"
8206
  msgstr ""
8207
 
8208
+ #: wppa-settings-autosave.php:1627 wppa-settings-autosave.php:4189
8209
  msgid "Bottom"
8210
  msgstr ""
8211
 
8525
  msgid "Display the share social media buttons box."
8526
  msgstr ""
8527
 
8528
+ #: wppa-settings-autosave.php:1891 wppa-settings-autosave.php:9172
8529
  msgid "Hide when running"
8530
  msgstr ""
8531
 
8919
  msgstr ""
8920
 
8921
  #: wppa-settings-autosave.php:2234 wppa-settings-autosave.php:2245
8922
+ #: wppa-settings-autosave.php:2274 wppa-settings-autosave.php:4544
8923
  msgid "None"
8924
  msgstr ""
8925
 
9094
  msgid "Show the album description on hoovering thumbnail in album widget"
9095
  msgstr ""
9096
 
9097
+ #: wppa-settings-autosave.php:2390 wppa-settings-autosave.php:4675
9098
  msgid ""
9099
  "Lightbox related settings. These settings have effect only when Table IX-J3 "
9100
  "is set to wppa"
9894
  "For more information about slideshow image borders see the help on Table I-B4"
9895
  msgstr ""
9896
 
9897
+ #: wppa-settings-autosave.php:3157 wppa-settings-autosave.php:4941
9898
  msgid "Numbar"
9899
  msgstr ""
9900
 
9939
  msgid "Enter valid CSS colors for comment box backgrounds and borders."
9940
  msgstr ""
9941
 
9942
+ #: wppa-settings-autosave.php:3209 wppa-settings-autosave.php:8557
9943
+ #: wppa-settings-autosave.php:8602
9944
  msgid "Custom"
9945
  msgstr ""
9946
 
10620
  "either."
10621
  msgstr ""
10622
 
10623
+ #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:4098
10624
  #: wppa-slideshow-widget.php:214
10625
  msgid "top"
10626
  msgstr ""
10627
 
10628
+ #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:4098
10629
  #: wppa-slideshow-widget.php:216
10630
  msgid "bottom"
10631
  msgstr ""
10695
  msgid "Start slideonly slideshow running."
10696
  msgstr ""
10697
 
10698
+ #: wppa-settings-autosave.php:3861 wppa-settings-autosave.php:4755
10699
  msgid "Video autostart"
10700
  msgstr ""
10701
 
10703
  msgid "Autoplay videos in slideshows."
10704
  msgstr ""
10705
 
10706
+ #: wppa-settings-autosave.php:3871 wppa-settings-autosave.php:4764
10707
  msgid "Audio autostart"
10708
  msgstr ""
10709
 
10778
  msgid "This is the time it takes a photo to fade in or out."
10779
  msgstr ""
10780
 
10781
+ #: wppa-settings-autosave.php:3919 wppa-settings-autosave.php:4293
10782
+ #: wppa-settings-autosave.php:4701 wppa-settings-autosave.php:6541
10783
+ #: wppa-settings-autosave.php:7654 wppa-settings-autosave.php:7665
10784
+ #: wppa-settings-autosave.php:7827
10785
  msgid "--- off ---"
10786
  msgstr ""
10787
 
10833
  msgid "The alignment of the descriptions under fullsize images and slideshows."
10834
  msgstr ""
10835
 
10836
+ #: wppa-settings-autosave.php:3948 wppa-settings-autosave.php:4086
10837
+ #: wppa-settings-autosave.php:4189
10838
  msgid "Left"
10839
  msgstr ""
10840
 
10842
  msgid "Center"
10843
  msgstr ""
10844
 
10845
+ #: wppa-settings-autosave.php:3948 wppa-settings-autosave.php:4086
10846
+ #: wppa-settings-autosave.php:4189
10847
  msgid "Right"
10848
  msgstr ""
10849
 
10910
  msgstr ""
10911
 
10912
  #: wppa-settings-autosave.php:4009
10913
+ msgid "Sutcliffe style"
10914
+ msgstr ""
10915
+
10916
+ #: wppa-settings-autosave.php:4010
10917
+ msgid "Show description with counter at limited size."
10918
+ msgstr ""
10919
+
10920
+ #: wppa-settings-autosave.php:4014
10921
+ msgid "available width"
10922
+ msgstr ""
10923
+
10924
+ #: wppa-settings-autosave.php:4015
10925
+ msgid "width of image"
10926
+ msgstr ""
10927
+
10928
+ #: wppa-settings-autosave.php:4016
10929
+ msgid "width of portrait image"
10930
+ msgstr ""
10931
+
10932
+ #: wppa-settings-autosave.php:4029
10933
  msgid "Thumbnail related settings"
10934
  msgstr ""
10935
 
10936
+ #: wppa-settings-autosave.php:4032
10937
  msgid "Photo ordering sequence method."
10938
  msgstr ""
10939
 
10940
+ #: wppa-settings-autosave.php:4033
10941
  msgid ""
10942
  "Specify the way the photos should be ordered. This is the default setting. "
10943
  "You can overrule the default sorting order on a per album basis."
10944
  msgstr ""
10945
 
10946
+ #: wppa-settings-autosave.php:4070
10947
  msgid "Thumbnail type"
10948
  msgstr ""
10949
 
10950
+ #: wppa-settings-autosave.php:4071
10951
  msgid "The way the thumbnail images are displayed."
10952
  msgstr ""
10953
 
10954
+ #: wppa-settings-autosave.php:4072
10955
  msgid ""
10956
  "You may select an altenative display method for thumbnails. Note that some "
10957
  "of the thumbnail settings do not apply to all available display methods."
10958
  msgstr ""
10959
 
10960
+ #: wppa-settings-autosave.php:4074
10961
  msgid "like album covers"
10962
  msgstr ""
10963
 
10964
+ #: wppa-settings-autosave.php:4074
10965
  msgid "like album covers mcr"
10966
  msgstr ""
10967
 
10968
+ #: wppa-settings-autosave.php:4074
10969
  msgid "masonry style columns"
10970
  msgstr ""
10971
 
10972
+ #: wppa-settings-autosave.php:4074
10973
  msgid "masonry style rows"
10974
  msgstr ""
10975
 
10976
+ #: wppa-settings-autosave.php:4082 wppa-settings-autosave.php:4183
10977
  msgid "Placement"
10978
  msgstr ""
10979
 
10980
+ #: wppa-settings-autosave.php:4083
10981
  msgid "Thumbnail image left or right."
10982
  msgstr ""
10983
 
10984
+ #: wppa-settings-autosave.php:4084
10985
  msgid "Indicate the placement position of the thumbnailphoto you wish."
10986
  msgstr ""
10987
 
10988
+ #: wppa-settings-autosave.php:4093
10989
  msgid "Vertical alignment"
10990
  msgstr ""
10991
 
10992
+ #: wppa-settings-autosave.php:4094
10993
  msgid "Vertical alignment of thumbnails."
10994
  msgstr ""
10995
 
10996
+ #: wppa-settings-autosave.php:4095
10997
  msgid ""
10998
  "Specify the vertical alignment of thumbnail images. Use this setting when "
10999
  "albums contain both portrait and landscape photos."
11000
  msgstr ""
11001
 
11002
+ #: wppa-settings-autosave.php:4096
11003
  msgid ""
11004
  "It is NOT recommended to use the value --- default ---; it will affect the "
11005
  "horizontal alignment also and is meant to be used with custom css."
11006
  msgstr ""
11007
 
11008
+ #: wppa-settings-autosave.php:4105
11009
  msgid "Thumb mouseover"
11010
  msgstr ""
11011
 
11012
+ #: wppa-settings-autosave.php:4106
11013
  msgid "Apply thumbnail mouseover effect."
11014
  msgstr ""
11015
 
11016
+ #: wppa-settings-autosave.php:4107
11017
  msgid "Check this box to use mouseover effect on thumbnail images."
11018
  msgstr ""
11019
 
11020
+ #: wppa-settings-autosave.php:4115
11021
  msgid "Thumb opacity"
11022
  msgstr ""
11023
 
11024
+ #: wppa-settings-autosave.php:4116 wppa-settings-autosave.php:4208
11025
  msgid "Initial opacity value."
11026
  msgstr ""
11027
 
11028
+ #: wppa-settings-autosave.php:4117 wppa-settings-autosave.php:4209
11029
+ #: wppa-settings-autosave.php:4339
11030
  msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
11031
  msgstr ""
11032
 
11033
+ #: wppa-settings-autosave.php:4119 wppa-settings-autosave.php:4211
11034
+ #: wppa-settings-autosave.php:4342 wppa-settings-autosave.php:4681
11035
  msgid "%"
11036
  msgstr ""
11037
 
11038
+ #: wppa-settings-autosave.php:4124
11039
  msgid "Thumb popup"
11040
  msgstr ""
11041
 
11042
+ #: wppa-settings-autosave.php:4125
11043
  msgid "Use popup effect on thumbnail images."
11044
  msgstr ""
11045
 
11046
+ #: wppa-settings-autosave.php:4126
11047
  msgid "Thumbnails pop-up to a larger image when hovered."
11048
  msgstr ""
11049
 
11050
+ #: wppa-settings-autosave.php:4134
11051
  msgid "Align subtext"
11052
  msgstr ""
11053
 
11054
+ #: wppa-settings-autosave.php:4135
11055
  msgid "Set thumbnail subtext on equal height."
11056
  msgstr ""
11057
 
11058
+ #: wppa-settings-autosave.php:4143
11059
  msgid "Album and covers related settings"
11060
  msgstr ""
11061
 
11062
+ #: wppa-settings-autosave.php:4145
11063
  msgid "Album order"
11064
  msgstr ""
11065
 
11066
+ #: wppa-settings-autosave.php:4146
11067
  msgid "Album ordering sequence method."
11068
  msgstr ""
11069
 
11070
+ #: wppa-settings-autosave.php:4147
11071
  msgid "Specify the way the albums should be ordered."
11072
  msgstr ""
11073
 
11074
+ #: wppa-settings-autosave.php:4172
11075
  msgid "Default coverphoto selection"
11076
  msgstr ""
11077
 
11078
+ #: wppa-settings-autosave.php:4173
11079
  msgid "Default select cover photo method."
11080
  msgstr ""
11081
 
11082
+ #: wppa-settings-autosave.php:4174
11083
  msgid ""
11084
  "This is the initial value on album creation only. It can be overruled on the "
11085
  "edit album page."
11086
  msgstr ""
11087
 
11088
+ #: wppa-settings-autosave.php:4175
11089
  msgid "Random from album"
11090
  msgstr ""
11091
 
11092
+ #: wppa-settings-autosave.php:4175
11093
  msgid "Random featured from album"
11094
  msgstr ""
11095
 
11096
+ #: wppa-settings-autosave.php:4175
11097
  msgid "Most recently added to album"
11098
  msgstr ""
11099
 
11100
+ #: wppa-settings-autosave.php:4175
11101
  msgid "Random from album or any sub album"
11102
  msgstr ""
11103
 
11104
+ #: wppa-settings-autosave.php:4184
11105
  msgid "Cover image position."
11106
  msgstr ""
11107
 
11108
+ #: wppa-settings-autosave.php:4185
11109
  msgid ""
11110
  "Enter the position that you want to be used for the default album cover "
11111
  "selected in Table IV-D6."
11112
  msgstr ""
11113
 
11114
+ #: wppa-settings-autosave.php:4186
11115
  msgid ""
11116
  "For covertype Image Factory: left will be treated as top and right will be "
11117
  "treted as bottom."
11118
  msgstr ""
11119
 
11120
+ #: wppa-settings-autosave.php:4187
11121
  msgid ""
11122
  "For covertype Long Descriptions: top will be treated as left and bottom will "
11123
  "be treted as right."
11124
  msgstr ""
11125
 
11126
+ #: wppa-settings-autosave.php:4197
11127
  msgid "Cover mouseover"
11128
  msgstr ""
11129
 
11130
+ #: wppa-settings-autosave.php:4198
11131
  msgid "Apply coverphoto mouseover effect."
11132
  msgstr ""
11133
 
11134
+ #: wppa-settings-autosave.php:4199
11135
  msgid "Check this box to use mouseover effect on cover images."
11136
  msgstr ""
11137
 
11138
+ #: wppa-settings-autosave.php:4207
11139
  msgid "Cover opacity"
11140
  msgstr ""
11141
 
11142
+ #: wppa-settings-autosave.php:4216
11143
  msgid "Cover type"
11144
  msgstr ""
11145
 
11146
+ #: wppa-settings-autosave.php:4217
11147
  msgid "Select the default cover type."
11148
  msgstr ""
11149
 
11150
+ #: wppa-settings-autosave.php:4218
11151
  msgid ""
11152
  "Types with the addition mcr are suitable for Multi Column in a Responsive "
11153
  "theme"
11154
  msgstr ""
11155
 
11156
+ #: wppa-settings-autosave.php:4241
11157
  msgid "The umber of coverphotos. Must be > 1 and < 25."
11158
  msgstr ""
11159
 
11160
+ #: wppa-settings-autosave.php:4249
11161
  msgid "Cats include subs"
11162
  msgstr ""
11163
 
11164
+ #: wppa-settings-autosave.php:4250
11165
  msgid "Child albums are included in Category based shortcodes."
11166
  msgstr ""
11167
 
11168
+ #: wppa-settings-autosave.php:4251
11169
  msgid ""
11170
  "When you use album=\"#cat,...\", in a shortcode, the child albums will be "
11171
  "included."
11172
  msgstr ""
11173
 
11174
+ #: wppa-settings-autosave.php:4259
11175
  msgid "Rating related settings"
11176
  msgstr ""
11177
 
11178
+ #: wppa-settings-autosave.php:4261
11179
  msgid "Rating login"
11180
  msgstr ""
11181
 
11182
+ #: wppa-settings-autosave.php:4262
11183
  msgid "Users must login to rate photos."
11184
  msgstr ""
11185
 
11186
+ #: wppa-settings-autosave.php:4263
11187
  msgid ""
11188
  "If users want to vote for a photo (rating 1..5 stars) the must login first. "
11189
  "The avarage rating will always be displayed as long as the rating system is "
11190
  "enabled."
11191
  msgstr ""
11192
 
11193
+ #: wppa-settings-autosave.php:4270
11194
  msgid "Rating change"
11195
  msgstr ""
11196
 
11197
+ #: wppa-settings-autosave.php:4271 wppa-settings-autosave.php:4272
11198
  msgid "Users may change their ratings."
11199
  msgstr ""
11200
 
11201
+ #: wppa-settings-autosave.php:4273 wppa-settings-autosave.php:4321
11202
+ #: wppa-settings-autosave.php:4340 wppa-settings-autosave.php:4353
11203
+ #: wppa-settings-autosave.php:4363 wppa-settings-autosave.php:4373
11204
+ #: wppa-settings-autosave.php:4383 wppa-settings-autosave.php:4392
11205
  msgid ""
11206
  "If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
11207
  msgstr ""
11208
 
11209
+ #: wppa-settings-autosave.php:4280
11210
  msgid "Rating multi"
11211
  msgstr ""
11212
 
11213
+ #: wppa-settings-autosave.php:4281
11214
  msgid "Users may give multiple votes."
11215
  msgstr ""
11216
 
11217
+ #: wppa-settings-autosave.php:4282
11218
  msgid ""
11219
  "Users may give multiple votes. (This has no effect when users may change "
11220
  "their votes.)"
11221
  msgstr ""
11222
 
11223
+ #: wppa-settings-autosave.php:4289
11224
  msgid "Rating daily"
11225
  msgstr ""
11226
 
11227
+ #: wppa-settings-autosave.php:4290
11228
  msgid "Users may rate only once per period"
11229
  msgstr ""
11230
 
11231
+ #: wppa-settings-autosave.php:4293
11232
  msgid "Week"
11233
  msgstr ""
11234
 
11235
+ #: wppa-settings-autosave.php:4293
11236
  msgid "Day"
11237
  msgstr ""
11238
 
11239
+ #: wppa-settings-autosave.php:4293
11240
  msgid "Hour"
11241
  msgstr ""
11242
 
11243
+ #: wppa-settings-autosave.php:4300
11244
  msgid "Rate own photos"
11245
  msgstr ""
11246
 
11247
+ #: wppa-settings-autosave.php:4301
11248
  msgid "It is allowed to rate photos by the uploader himself."
11249
  msgstr ""
11250
 
11251
+ #: wppa-settings-autosave.php:4309
11252
  msgid "Rating requires comment"
11253
  msgstr ""
11254
 
11255
+ #: wppa-settings-autosave.php:4310
11256
  msgid "Users must clarify their vote in a comment."
11257
  msgstr ""
11258
 
11259
+ #: wppa-settings-autosave.php:4319
11260
  msgid "This value counts dislike rating."
11261
  msgstr ""
11262
 
11263
+ #: wppa-settings-autosave.php:4320
11264
  msgid ""
11265
  "This value will be used for a dislike rating on calculation of avarage "
11266
  "ratings."
11267
  msgstr ""
11268
 
11269
+ #: wppa-settings-autosave.php:4323
11270
  msgid "points"
11271
  msgstr ""
11272
 
11273
+ #: wppa-settings-autosave.php:4328
11274
  msgid "Next after vote"
11275
  msgstr ""
11276
 
11277
+ #: wppa-settings-autosave.php:4329
11278
  msgid "Goto next slide after voting"
11279
  msgstr ""
11280
 
11281
+ #: wppa-settings-autosave.php:4330
11282
  msgid ""
11283
  "If checked, the visitor goes straight to the slide following the slide he "
11284
  "voted. This will speed up mass voting."
11285
  msgstr ""
11286
 
11287
+ #: wppa-settings-autosave.php:4337
11288
  msgid "Star off opacity"
11289
  msgstr ""
11290
 
11291
+ #: wppa-settings-autosave.php:4338
11292
  msgid "Rating star off state opacity value."
11293
  msgstr ""
11294
 
11295
+ #: wppa-settings-autosave.php:4348
11296
  msgid "Notify admin every x times."
11297
  msgstr ""
11298
 
11299
+ #: wppa-settings-autosave.php:4349
11300
  msgid ""
11301
  "If this number is positive, there will be a thumb down icon in the rating "
11302
  "bar."
11303
  msgstr ""
11304
 
11305
+ #: wppa-settings-autosave.php:4350
11306
  msgid ""
11307
  "Cicking the icon indicates a user wants to report that an image is "
11308
  "inappropiate."
11309
  msgstr ""
11310
 
11311
+ #: wppa-settings-autosave.php:4351
11312
  msgid "Admin will be notified by email after every x reports."
11313
  msgstr ""
11314
 
11315
+ #: wppa-settings-autosave.php:4352 wppa-settings-autosave.php:4362
11316
+ #: wppa-settings-autosave.php:4372
11317
  msgid "A value of 0 disables this feature."
11318
  msgstr ""
11319
 
11320
+ #: wppa-settings-autosave.php:4355 wppa-settings-autosave.php:4365
11321
+ #: wppa-settings-autosave.php:4375
11322
  msgid "reports"
11323
  msgstr ""
11324
 
11325
+ #: wppa-settings-autosave.php:4360
11326
  msgid "Pending after"
11327
  msgstr ""
11328
 
11329
+ #: wppa-settings-autosave.php:4361
11330
  msgid "Set status to pending after xx dislike votes."
11331
  msgstr ""
11332
 
11333
+ #: wppa-settings-autosave.php:4370
11334
  msgid "Delete after"
11335
  msgstr ""
11336
 
11337
+ #: wppa-settings-autosave.php:4371
11338
  msgid "Deete photo after xx dislike votes."
11339
  msgstr ""
11340
 
11341
+ #: wppa-settings-autosave.php:4380
11342
  msgid "Show dislike count"
11343
  msgstr ""
11344
 
11345
+ #: wppa-settings-autosave.php:4381
11346
  msgid "Show the number of dislikes in the rating bar."
11347
  msgstr ""
11348
 
11349
+ #: wppa-settings-autosave.php:4382
11350
  msgid "Displayes the total number of dislike votes for the current photo."
11351
  msgstr ""
11352
 
11353
+ #: wppa-settings-autosave.php:4390
11354
  msgid "Rating display type"
11355
  msgstr ""
11356
 
11357
+ #: wppa-settings-autosave.php:4391
11358
  msgid "Specify the type of the rating display."
11359
  msgstr ""
11360
 
11361
+ #: wppa-settings-autosave.php:4394
11362
  msgid "Graphic"
11363
  msgstr ""
11364
 
11365
+ #: wppa-settings-autosave.php:4394
11366
  msgid "Numeric"
11367
  msgstr ""
11368
 
11369
+ #: wppa-settings-autosave.php:4401
11370
  msgid "Show average rating"
11371
  msgstr ""
11372
 
11373
+ #: wppa-settings-autosave.php:4402
11374
  msgid "Display the avarage rating and/or vote count on the rating bar"
11375
  msgstr ""
11376
 
11377
+ #: wppa-settings-autosave.php:4403
11378
  msgid ""
11379
  "If checked, the average rating as well as the current users rating is "
11380
  "displayed in max 5 or 10 stars."
11381
  msgstr ""
11382
 
11383
+ #: wppa-settings-autosave.php:4404
11384
  msgid "If unchecked, only the current users rating is displayed (if any)."
11385
  msgstr ""
11386
 
11387
+ #: wppa-settings-autosave.php:4405
11388
  msgid ""
11389
  "If \"One button vote\" is selected in Table I-E1, this box checked will "
11390
  "display the vote count."
11391
  msgstr ""
11392
 
11393
+ #: wppa-settings-autosave.php:4412
11394
  msgid "Single vote button text"
11395
  msgstr ""
11396
 
11397
+ #: wppa-settings-autosave.php:4413
11398
  msgid "The text on the voting button."
11399
  msgstr ""
11400
 
11401
+ #: wppa-settings-autosave.php:4414 wppa-settings-autosave.php:4423
11402
  msgid "This text may contain qTranslate compatible language tags."
11403
  msgstr ""
11404
 
11405
+ #: wppa-settings-autosave.php:4421
11406
  msgid "Single vote button text voted"
11407
  msgstr ""
11408
 
11409
+ #: wppa-settings-autosave.php:4422
11410
  msgid "The text on the voting button when voted."
11411
  msgstr ""
11412
 
11413
+ #: wppa-settings-autosave.php:4430
11414
  msgid "Single vote button thumbnail"
11415
  msgstr ""
11416
 
11417
+ #: wppa-settings-autosave.php:4431
11418
  msgid "Display single vote button below thumbnails."
11419
  msgstr ""
11420
 
11421
+ #: wppa-settings-autosave.php:4432
11422
  msgid ""
11423
  "This works only in single vote mode: Table I-E1 set to \"one button vote\""
11424
  msgstr ""
11425
 
11426
+ #: wppa-settings-autosave.php:4439
11427
  msgid "Medal bronze when"
11428
  msgstr ""
11429
 
11430
+ #: wppa-settings-autosave.php:4440 wppa-settings-autosave.php:4458
11431
  msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
11432
  msgstr ""
11433
 
11434
+ #: wppa-settings-autosave.php:4441 wppa-settings-autosave.php:4459
11435
  msgid ""
11436
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
11437
  "bronze medal. A value of 0 indicates that you do not want this feature."
11438
  msgstr ""
11439
 
11440
+ #: wppa-settings-autosave.php:4443 wppa-settings-autosave.php:4452
11441
+ #: wppa-settings-autosave.php:4461
11442
  msgid "Topscores"
11443
  msgstr ""
11444
 
11445
+ #: wppa-settings-autosave.php:4448
11446
  msgid "Medal silver when"
11447
  msgstr ""
11448
 
11449
+ #: wppa-settings-autosave.php:4449
11450
  msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
11451
  msgstr ""
11452
 
11453
+ #: wppa-settings-autosave.php:4450
11454
  msgid ""
11455
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
11456
  "silver medal. A value of 0 indicates that you do not want this feature."
11457
  msgstr ""
11458
 
11459
+ #: wppa-settings-autosave.php:4457
11460
  msgid "Medal gold when"
11461
  msgstr ""
11462
 
11463
+ #: wppa-settings-autosave.php:4466
11464
  msgid "Medal tag color"
11465
  msgstr ""
11466
 
11467
+ #: wppa-settings-autosave.php:4467
11468
  msgid "The color of the tag on the medal."
11469
  msgstr ""
11470
 
11471
+ #: wppa-settings-autosave.php:4470 wppa-settings-autosave.php:7910
11472
  msgid "Red"
11473
  msgstr ""
11474
 
11475
+ #: wppa-settings-autosave.php:4470 wppa-settings-autosave.php:7913
11476
  msgid "Green"
11477
  msgstr ""
11478
 
11479
+ #: wppa-settings-autosave.php:4470 wppa-settings-autosave.php:7914
11480
  msgid "Blue"
11481
  msgstr ""
11482
 
11483
+ #: wppa-settings-autosave.php:4477
11484
  msgid "Medal position"
11485
  msgstr ""
11486
 
11487
+ #: wppa-settings-autosave.php:4478
11488
  msgid "The position of the medal on the image."
11489
  msgstr ""
11490
 
11491
+ #: wppa-settings-autosave.php:4481
11492
  msgid "Top left"
11493
  msgstr ""
11494
 
11495
+ #: wppa-settings-autosave.php:4481
11496
  msgid "Top right"
11497
  msgstr ""
11498
 
11499
+ #: wppa-settings-autosave.php:4481
11500
  msgid "Bottom left"
11501
  msgstr ""
11502
 
11503
+ #: wppa-settings-autosave.php:4481
11504
  msgid "Bottom right"
11505
  msgstr ""
11506
 
11507
+ #: wppa-settings-autosave.php:4488
11508
  msgid "Top criterium"
11509
  msgstr ""
11510
 
11511
+ #: wppa-settings-autosave.php:4489
11512
  msgid "The top sort item used for topten results from shortcodes."
11513
  msgstr ""
11514
 
11515
+ #: wppa-settings-autosave.php:4492
11516
  msgid "Mean raiting"
11517
  msgstr ""
11518
 
11519
+ #: wppa-settings-autosave.php:4492
11520
  msgid "Rating count"
11521
  msgstr ""
11522
 
11523
+ #: wppa-settings-autosave.php:4492
11524
  msgid "Viewcount"
11525
  msgstr ""
11526
 
11527
+ #: wppa-settings-autosave.php:4499
11528
  msgid "Comments related settings"
11529
  msgstr ""
11530
 
11531
+ #: wppa-settings-autosave.php:4501
11532
  msgid "Commenting login"
11533
  msgstr ""
11534
 
11535
+ #: wppa-settings-autosave.php:4502
11536
  msgid "Users must be logged in to comment on photos."
11537
  msgstr ""
11538
 
11539
+ #: wppa-settings-autosave.php:4503
11540
  msgid ""
11541
  "Check this box if you want users to be logged in to be able to enter "
11542
  "comments on individual photos."
11543
  msgstr ""
11544
 
11545
+ #: wppa-settings-autosave.php:4510
11546
  msgid "Comments view login"
11547
  msgstr ""
11548
 
11549
+ #: wppa-settings-autosave.php:4511
11550
  msgid "Users must be logged in to see comments on photos."
11551
  msgstr ""
11552
 
11553
+ #: wppa-settings-autosave.php:4512
11554
  msgid ""
11555
  "Check this box if you want users to be logged in to be able to see existing "
11556
  "comments on individual photos."
11557
  msgstr ""
11558
 
11559
+ #: wppa-settings-autosave.php:4519
11560
  msgid "Last comment first"
11561
  msgstr ""
11562
 
11563
+ #: wppa-settings-autosave.php:4520
11564
  msgid "Display the newest comment on top."
11565
  msgstr ""
11566
 
11567
+ #: wppa-settings-autosave.php:4521
11568
  msgid "If checked: Display the newest comment on top."
11569
  msgstr ""
11570
 
11571
+ #: wppa-settings-autosave.php:4522
11572
  msgid "If unchecked, the comments are listed in the ordere they were entered."
11573
  msgstr ""
11574
 
11575
+ #: wppa-settings-autosave.php:4529
11576
  msgid "Comment moderation"
11577
  msgstr ""
11578
 
11579
+ #: wppa-settings-autosave.php:4530
11580
  msgid "Comments from what users need approval."
11581
  msgstr ""
11582
 
11583
+ #: wppa-settings-autosave.php:4531
11584
  msgid "Select the desired users of which the comments need approval."
11585
  msgstr ""
11586
 
11587
+ #: wppa-settings-autosave.php:4533 wppa-settings-autosave.php:6527
11588
  msgid "All users"
11589
  msgstr ""
11590
 
11591
+ #: wppa-settings-autosave.php:4533 wppa-settings-autosave.php:6527
11592
  msgid "Logged out users"
11593
  msgstr ""
11594
 
11595
+ #: wppa-settings-autosave.php:4533 wppa-settings-autosave.php:6527
11596
  msgid "No users"
11597
  msgstr ""
11598
 
11599
+ #: wppa-settings-autosave.php:4540
11600
  msgid "Comment email required"
11601
  msgstr ""
11602
 
11603
+ #: wppa-settings-autosave.php:4541
11604
  msgid "Commenting users must enter their email addresses."
11605
  msgstr ""
11606
 
11607
+ #: wppa-settings-autosave.php:4545 wppa-settings-autosave.php:9240
11608
+ #: wppa-settings-autosave.php:9308
11609
  msgid "Optional"
11610
  msgstr ""
11611
 
11612
+ #: wppa-settings-autosave.php:4557
11613
  msgid "Comment notify"
11614
  msgstr ""
11615
 
11616
+ #: wppa-settings-autosave.php:4558
11617
  msgid "Select who must receive an e-mail notification of a new comment."
11618
  msgstr ""
11619
 
11620
+ #: wppa-settings-autosave.php:4561
11621
  msgid "--- None ---"
11622
  msgstr ""
11623
 
11624
+ #: wppa-settings-autosave.php:4562
11625
  msgid "--- Admin ---"
11626
  msgstr ""
11627
 
11628
+ #: wppa-settings-autosave.php:4563
11629
  msgid "--- Album owner ---"
11630
  msgstr ""
11631
 
11632
+ #: wppa-settings-autosave.php:4564
11633
  msgid "--- Admin & Owner ---"
11634
  msgstr ""
11635
 
11636
+ #: wppa-settings-autosave.php:4565
11637
  msgid "--- Uploader ---"
11638
  msgstr ""
11639
 
11640
+ #: wppa-settings-autosave.php:4566
11641
  msgid "--- Up & admin ---"
11642
  msgstr ""
11643
 
11644
+ #: wppa-settings-autosave.php:4567
11645
  msgid "--- Up & Owner ---"
11646
  msgstr ""
11647
 
11648
+ #: wppa-settings-autosave.php:4590
11649
  msgid "Comment notify previous"
11650
  msgstr ""
11651
 
11652
+ #: wppa-settings-autosave.php:4591
11653
  msgid "Notify users who has commented this photo earlier."
11654
  msgstr ""
11655
 
11656
+ #: wppa-settings-autosave.php:4599
11657
  msgid "Comment notify approved"
11658
  msgstr ""
11659
 
11660
+ #: wppa-settings-autosave.php:4600
11661
  msgid "Notify photo owner of approved comment."
11662
  msgstr ""
11663
 
11664
+ #: wppa-settings-autosave.php:4608
11665
  msgid "Com ntfy appr email content"
11666
  msgstr ""
11667
 
11668
+ #: wppa-settings-autosave.php:4609
11669
  msgid "The content of the email."
11670
  msgstr ""
11671
 
11672
+ #: wppa-settings-autosave.php:4610
11673
  msgid "If you leave this blank, the default content will be used"
11674
  msgstr ""
11675
 
11676
+ #: wppa-settings-autosave.php:4611
11677
  msgid "The content may contain html."
11678
  msgstr ""
11679
 
11680
+ #: wppa-settings-autosave.php:4612
11681
  msgid ""
11682
  "You may use the following keywords: w#comment for the comment content, "
11683
  "w#user for the commenters name and the standard photo description keywords "
11685
  "w#amx, w#amy, w#amfs, w#url, w#hrurl, w#tnurl, w#cc0..w#cc9, w#cd0..w#cd9."
11686
  msgstr ""
11687
 
11688
+ #: wppa-settings-autosave.php:4619
11689
  msgid "Com ntfy appr email subject"
11690
  msgstr ""
11691
 
11692
+ #: wppa-settings-autosave.php:4620
11693
  msgid "The subject of the email."
11694
  msgstr ""
11695
 
11696
+ #: wppa-settings-autosave.php:4629
11697
  msgid "Comment ntfy added"
11698
  msgstr ""
11699
 
11700
+ #: wppa-settings-autosave.php:4630
11701
  msgid "Show \"Comment added\" after successfull adding a comment."
11702
  msgstr ""
11703
 
11704
+ #: wppa-settings-autosave.php:4638
11705
  msgid "ComTen alt display"
11706
  msgstr ""
11707
 
11708
+ #: wppa-settings-autosave.php:4639
11709
  msgid "Display comments at comten thumbnails."
11710
  msgstr ""
11711
 
11712
+ #: wppa-settings-autosave.php:4647
11713
  msgid "Comten Thumbnail width"
11714
  msgstr ""
11715
 
11716
+ #: wppa-settings-autosave.php:4648
11717
  msgid "The width of the thumbnail in the alt comment display."
11718
  msgstr ""
11719
 
11720
+ #: wppa-settings-autosave.php:4651
11721
  msgid "Pixels"
11722
  msgstr ""
11723
 
11724
+ #: wppa-settings-autosave.php:4656
11725
  msgid "Show smiley picker"
11726
  msgstr ""
11727
 
11728
+ #: wppa-settings-autosave.php:4657
11729
  msgid "Display a clickable row of smileys."
11730
  msgstr ""
11731
 
11732
+ #: wppa-settings-autosave.php:4665
11733
  msgid "Show commenter email"
11734
  msgstr ""
11735
 
11736
+ #: wppa-settings-autosave.php:4666
11737
  msgid "Show the commenter's email in the notify emails."
11738
  msgstr ""
11739
 
11740
+ #: wppa-settings-autosave.php:4667
11741
  msgid "Shows the email address of the commenter in all notify emails."
11742
  msgstr ""
11743
 
11744
+ #: wppa-settings-autosave.php:4668
11745
  msgid ""
11746
  "If switched off, admin will still receive the senders email in the "
11747
  "notification mail"
11748
  msgstr ""
11749
 
11750
+ #: wppa-settings-autosave.php:4678
11751
  msgid "The opacity of the lightbox overlay background."
11752
  msgstr ""
11753
 
11754
+ #: wppa-settings-autosave.php:4686
11755
  msgid "Click on background"
11756
  msgstr ""
11757
 
11758
+ #: wppa-settings-autosave.php:4687
11759
  msgid "Select the action to be taken on click on background."
11760
  msgstr ""
11761
 
11762
+ #: wppa-settings-autosave.php:4690
11763
  msgid "Nothing"
11764
  msgstr ""
11765
 
11766
+ #: wppa-settings-autosave.php:4690
11767
  msgid "Exit (close)"
11768
  msgstr ""
11769
 
11770
+ #: wppa-settings-autosave.php:4690
11771
  msgid "Browse (left/right)"
11772
  msgstr ""
11773
 
11774
+ #: wppa-settings-autosave.php:4697
11775
  msgid "Overlay animation speed"
11776
  msgstr ""
11777
 
11778
+ #: wppa-settings-autosave.php:4698
11779
  msgid "The fade-in time of the lightbox images"
11780
  msgstr ""
11781
 
11782
+ #: wppa-settings-autosave.php:4701
11783
  msgid "very fast (100 ms.)"
11784
  msgstr ""
11785
 
11786
+ #: wppa-settings-autosave.php:4701
11787
  msgid "fast (200 ms.)"
11788
  msgstr ""
11789
 
11790
+ #: wppa-settings-autosave.php:4701
11791
  msgid "normal (300 ms.)"
11792
  msgstr ""
11793
 
11794
+ #: wppa-settings-autosave.php:4701
11795
  msgid "slow (500 ms.)"
11796
  msgstr ""
11797
 
11798
+ #: wppa-settings-autosave.php:4701
11799
  msgid "very slow (1 s.)"
11800
  msgstr ""
11801
 
11802
+ #: wppa-settings-autosave.php:4701
11803
  msgid "extremely slow (2 s.)"
11804
  msgstr ""
11805
 
11806
+ #: wppa-settings-autosave.php:4708
11807
  msgid "Overlay slideshow speed"
11808
  msgstr ""
11809
 
11810
+ #: wppa-settings-autosave.php:4709
11811
  msgid "The time the lightbox images stay"
11812
  msgstr ""
11813
 
11814
+ #: wppa-settings-autosave.php:4712
11815
  msgid "fast (3 s.)"
11816
  msgstr ""
11817
 
11818
+ #: wppa-settings-autosave.php:4712
11819
  msgid "normal (5 s.)"
11820
  msgstr ""
11821
 
11822
+ #: wppa-settings-autosave.php:4712
11823
  msgid "slow (8 s.)"
11824
  msgstr ""
11825
 
11826
+ #: wppa-settings-autosave.php:4712
11827
  msgid "very slow (13 s.)"
11828
  msgstr ""
11829
 
11830
+ #: wppa-settings-autosave.php:4712
11831
  msgid "extremely slow (20 s.)"
11832
  msgstr ""
11833
 
11834
+ #: wppa-settings-autosave.php:4728
11835
  msgid "WPPA+ Lightbox global"
11836
  msgstr ""
11837
 
11838
+ #: wppa-settings-autosave.php:4729
11839
  msgid "Use the wppa+ lightbox also for non-wppa images."
11840
  msgstr ""
11841
 
11842
+ #: wppa-settings-autosave.php:4737
11843
  msgid "WPPA+ Lightbox global is a set"
11844
  msgstr ""
11845
 
11846
+ #: wppa-settings-autosave.php:4738
11847
  msgid "Treat the other images as a set."
11848
  msgstr ""
11849
 
11850
+ #: wppa-settings-autosave.php:4739
11851
  msgid ""
11852
  "If checked, you can scroll through the images in the lightbox view. Requires "
11853
  "item 5 to be checked."
11854
  msgstr ""
11855
 
11856
+ #: wppa-settings-autosave.php:4746
11857
  msgid "Use hires files"
11858
  msgstr ""
11859
 
11860
+ #: wppa-settings-autosave.php:4747
11861
  msgid "Use the highest resolution available for lightbox."
11862
  msgstr ""
11863
 
11864
+ #: wppa-settings-autosave.php:4748
11865
  msgid "Ticking this box is recommended for lightbox fullscreen modes."
11866
  msgstr ""
11867
 
11868
+ #: wppa-settings-autosave.php:4756
11869
  msgid "Videos on lightbox start automaticly."
11870
  msgstr ""
11871
 
11872
+ #: wppa-settings-autosave.php:4765
11873
  msgid "Audio on lightbox start automaticly."
11874
  msgstr ""
11875
 
11876
+ #: wppa-settings-autosave.php:4773
11877
  msgid "Lightbox start mode"
11878
  msgstr ""
11879
 
11880
+ #: wppa-settings-autosave.php:4774
11881
  msgid "The mode lightbox starts in."
11882
  msgstr ""
11883
 
11884
+ #: wppa-settings-autosave.php:4777
11885
  msgid "Normal"
11886
  msgstr ""
11887
 
11888
+ #: wppa-settings-autosave.php:4778
11889
  msgid "Padded"
11890
  msgstr ""
11891
 
11892
+ #: wppa-settings-autosave.php:4779
11893
  msgid "Stretched"
11894
  msgstr ""
11895
 
11896
+ #: wppa-settings-autosave.php:4780
11897
  msgid "Clipped"
11898
  msgstr ""
11899
 
11900
+ #: wppa-settings-autosave.php:4781
11901
  msgid "Real size"
11902
  msgstr ""
11903
 
11904
+ #: wppa-settings-autosave.php:4812
11905
  msgid "Table V:"
11906
  msgstr ""
11907
 
11908
+ #: wppa-settings-autosave.php:4812
11909
  msgid "Fonts:"
11910
  msgstr ""
11911
 
11912
+ #: wppa-settings-autosave.php:4813
11913
  msgid "This table describes the Fonts used for the wppa+ elements."
11914
  msgstr ""
11915
 
11916
+ #: wppa-settings-autosave.php:4823 wppa-settings-autosave.php:4999
11917
  msgid "Font family"
11918
  msgstr ""
11919
 
11920
+ #: wppa-settings-autosave.php:4824 wppa-settings-autosave.php:5000
11921
  msgid "Font size"
11922
  msgstr ""
11923
 
11924
+ #: wppa-settings-autosave.php:4825 wppa-settings-autosave.php:5001
11925
  msgid "Font color"
11926
  msgstr ""
11927
 
11928
+ #: wppa-settings-autosave.php:4826 wppa-settings-autosave.php:5002
11929
  msgid "Font weight"
11930
  msgstr ""
11931
 
11932
+ #: wppa-settings-autosave.php:4836
11933
  msgid "normal"
11934
  msgstr ""
11935
 
11936
+ #: wppa-settings-autosave.php:4836
11937
  msgid "bold"
11938
  msgstr ""
11939
 
11940
+ #: wppa-settings-autosave.php:4836
11941
  msgid "bolder"
11942
  msgstr ""
11943
 
11944
+ #: wppa-settings-autosave.php:4836
11945
  msgid "lighter"
11946
  msgstr ""
11947
 
11948
+ #: wppa-settings-autosave.php:4839
11949
  msgid "Album titles"
11950
  msgstr ""
11951
 
11952
+ #: wppa-settings-autosave.php:4840
11953
  msgid "Font used for Album titles."
11954
  msgstr ""
11955
 
11956
+ #: wppa-settings-autosave.php:4841
11957
  msgid "Enter font name, size, color and weight for album cover titles."
11958
  msgstr ""
11959
 
11960
+ #: wppa-settings-autosave.php:4856
11961
  msgid "Slideshow desc"
11962
  msgstr ""
11963
 
11964
+ #: wppa-settings-autosave.php:4857
11965
  msgid "Font for slideshow photo descriptions."
11966
  msgstr ""
11967
 
11968
+ #: wppa-settings-autosave.php:4858
11969
  msgid ""
11970
  "Enter font name, size, color and weight for slideshow photo descriptions."
11971
  msgstr ""
11972
 
11973
+ #: wppa-settings-autosave.php:4873
11974
  msgid "Slideshow name"
11975
  msgstr ""
11976
 
11977
+ #: wppa-settings-autosave.php:4874
11978
  msgid "Font for slideshow photo names."
11979
  msgstr ""
11980
 
11981
+ #: wppa-settings-autosave.php:4875
11982
  msgid "Enter font name, size, color and weight for slideshow photo names."
11983
  msgstr ""
11984
 
11985
+ #: wppa-settings-autosave.php:4890
11986
  msgid "Navigations"
11987
  msgstr ""
11988
 
11989
+ #: wppa-settings-autosave.php:4891
11990
  msgid "Font for navigations."
11991
  msgstr ""
11992
 
11993
+ #: wppa-settings-autosave.php:4892
11994
  msgid "Enter font name, size, color and weight for navigation items."
11995
  msgstr ""
11996
 
11997
+ #: wppa-settings-autosave.php:4908
11998
  msgid "Font for text under thumbnails."
11999
  msgstr ""
12000
 
12001
+ #: wppa-settings-autosave.php:4909
12002
  msgid ""
12003
  "Enter font name, size, color and weight for text under thumbnail images."
12004
  msgstr ""
12005
 
12006
+ #: wppa-settings-autosave.php:4925
12007
  msgid "General font in wppa boxes."
12008
  msgstr ""
12009
 
12010
+ #: wppa-settings-autosave.php:4926
12011
  msgid "Enter font name, size, color and weight for all other items."
12012
  msgstr ""
12013
 
12014
+ #: wppa-settings-autosave.php:4942
12015
  msgid "Font in wppa number bars."
12016
  msgstr ""
12017
 
12018
+ #: wppa-settings-autosave.php:4943 wppa-settings-autosave.php:4960
12019
  msgid "Enter font name, size, color and weight for numberbar navigation."
12020
  msgstr ""
12021
 
12022
+ #: wppa-settings-autosave.php:4958
12023
  msgid "Numbar Active"
12024
  msgstr ""
12025
 
12026
+ #: wppa-settings-autosave.php:4959
12027
  msgid "Font in wppa number bars, active item."
12028
  msgstr ""
12029
 
12030
+ #: wppa-settings-autosave.php:4976
12031
  msgid "Font in wppa lightbox overlays."
12032
  msgstr ""
12033
 
12034
+ #: wppa-settings-autosave.php:4977
12035
  msgid "Enter font name, size, color and weight for wppa lightbox overlays."
12036
  msgstr ""
12037
 
12038
+ #: wppa-settings-autosave.php:5012
12039
  msgid "Table VI:"
12040
  msgstr ""
12041
 
12042
+ #: wppa-settings-autosave.php:5012
12043
  msgid "Links:"
12044
  msgstr ""
12045
 
12046
+ #: wppa-settings-autosave.php:5013
12047
  msgid "This table defines the link types and pages."
12048
  msgstr ""
12049
 
12050
+ #: wppa-settings-autosave.php:5024 wppa-settings-autosave.php:6030
12051
  msgid "Link page"
12052
  msgstr ""
12053
 
12054
+ #: wppa-settings-autosave.php:5026 wppa-settings-autosave.php:6032
12055
  msgid "Photo specific link overrules"
12056
  msgstr ""
12057
 
12058
+ #: wppa-settings-autosave.php:5026 wppa-settings-autosave.php:6032
12059
  msgid "PSO"
12060
  msgstr ""
12061
 
12062
+ #: wppa-settings-autosave.php:5071
12063
  msgid "Links from images in WPPA+ Widgets"
12064
  msgstr ""
12065
 
12066
+ #: wppa-settings-autosave.php:5073
12067
  msgid "PotdWidget"
12068
  msgstr ""
12069
 
12070
+ #: wppa-settings-autosave.php:5074
12071
  msgid "Photo Of The Day widget link."
12072
  msgstr ""
12073
 
12074
+ #: wppa-settings-autosave.php:5075
12075
  msgid "Select the type of link the photo of the day points to."
12076
  msgstr ""
12077
 
12078
+ #: wppa-settings-autosave.php:5076
12079
  msgid ""
12080
  "If you select 'defined on widget admin page' you can manually enter a link "
12081
  "and title on the Photo of the day Widget Admin page."
12082
  msgstr ""
12083
 
12084
+ #: wppa-settings-autosave.php:5091 wppa-settings-autosave.php:5134
12085
+ #: wppa-settings-autosave.php:5173 wppa-settings-autosave.php:5212
12086
+ #: wppa-settings-autosave.php:5257 wppa-settings-autosave.php:5305
12087
+ #: wppa-settings-autosave.php:5352 wppa-settings-autosave.php:5399
12088
+ #: wppa-settings-autosave.php:5487
12089
  msgid "a plain page without a querystring."
12090
  msgstr ""
12091
 
12092
+ #: wppa-settings-autosave.php:5092 wppa-settings-autosave.php:5135
12093
+ #: wppa-settings-autosave.php:5174 wppa-settings-autosave.php:5213
12094
+ #: wppa-settings-autosave.php:5258 wppa-settings-autosave.php:5306
12095
+ #: wppa-settings-autosave.php:5353 wppa-settings-autosave.php:5400
12096
+ #: wppa-settings-autosave.php:5446 wppa-settings-autosave.php:5488
12097
+ #: wppa-settings-autosave.php:5536 wppa-settings-autosave.php:5578
12098
+ #: wppa-settings-autosave.php:5617
12099
  msgid "lightbox."
12100
  msgstr ""
12101
 
12102
+ #: wppa-settings-autosave.php:5117
12103
  msgid "SlideWidget"
12104
  msgstr ""
12105
 
12106
+ #: wppa-settings-autosave.php:5118
12107
  msgid "Slideshow widget photo link."
12108
  msgstr ""
12109
 
12110
+ #: wppa-settings-autosave.php:5119
12111
  msgid "Select the type of link the slideshow photos point to."
12112
  msgstr ""
12113
 
12114
+ #: wppa-settings-autosave.php:5160
12115
  msgid "Album widget"
12116
  msgstr ""
12117
 
12118
+ #: wppa-settings-autosave.php:5161
12119
  msgid "Album widget thumbnail link"
12120
  msgstr ""
12121
 
12122
+ #: wppa-settings-autosave.php:5162
12123
  msgid "Select the type of link the album widget photos point to."
12124
  msgstr ""
12125
 
12126
+ #: wppa-settings-autosave.php:5171
12127
  msgid "subalbums and thumbnails."
12128
  msgstr ""
12129
 
12130
+ #: wppa-settings-autosave.php:5172
12131
  msgid "slideshow."
12132
  msgstr ""
12133
 
12134
+ #: wppa-settings-autosave.php:5195
12135
  msgid "ThumbnailWidget"
12136
  msgstr ""
12137
 
12138
+ #: wppa-settings-autosave.php:5196
12139
  msgid "Thumbnail widget photo link."
12140
  msgstr ""
12141
 
12142
+ #: wppa-settings-autosave.php:5197
12143
  msgid "Select the type of link the thumbnail photos point to."
12144
  msgstr ""
12145
 
12146
+ #: wppa-settings-autosave.php:5210 wppa-settings-autosave.php:5255
12147
+ #: wppa-settings-autosave.php:5303 wppa-settings-autosave.php:5350
12148
+ #: wppa-settings-autosave.php:5397 wppa-settings-autosave.php:5485
12149
  msgid "the single photo in the style of a slideshow."
12150
  msgstr ""
12151
 
12152
+ #: wppa-settings-autosave.php:5211 wppa-settings-autosave.php:5256
12153
+ #: wppa-settings-autosave.php:5304 wppa-settings-autosave.php:5351
12154
+ #: wppa-settings-autosave.php:5398 wppa-settings-autosave.php:5486
12155
+ #: wppa-settings-autosave.php:5619
12156
  msgid "the fs photo with download and print buttons."
12157
  msgstr ""
12158
 
12159
+ #: wppa-settings-autosave.php:5238
12160
  msgid "TopTenWidget"
12161
  msgstr ""
12162
 
12163
+ #: wppa-settings-autosave.php:5239
12164
  msgid "TopTen widget photo link."
12165
  msgstr ""
12166
 
12167
+ #: wppa-settings-autosave.php:5240
12168
  msgid "Select the type of link the top ten photos point to."
12169
  msgstr ""
12170
 
12171
+ #: wppa-settings-autosave.php:5251
12172
  msgid "the content of the virtual topten album."
12173
  msgstr ""
12174
 
12175
+ #: wppa-settings-autosave.php:5252 wppa-settings-autosave.php:5300
12176
+ #: wppa-settings-autosave.php:5347 wppa-settings-autosave.php:5394
12177
  msgid "the content of the thumbnails album."
12178
  msgstr ""
12179
 
12180
+ #: wppa-settings-autosave.php:5286
12181
  msgid "LasTenWidget"
12182
  msgstr ""
12183
 
12184
+ #: wppa-settings-autosave.php:5287
12185
  msgid "Last Ten widget photo link."
12186
  msgstr ""
12187
 
12188
+ #: wppa-settings-autosave.php:5288
12189
  msgid "Select the type of link the last ten photos point to."
12190
  msgstr ""
12191
 
12192
+ #: wppa-settings-autosave.php:5299
12193
  msgid "the content of the virtual lasten album."
12194
  msgstr ""
12195
 
12196
+ #: wppa-settings-autosave.php:5333
12197
  msgid "CommentWidget"
12198
  msgstr ""
12199
 
12200
+ #: wppa-settings-autosave.php:5334
12201
  msgid "Comment widget photo link."
12202
  msgstr ""
12203
 
12204
+ #: wppa-settings-autosave.php:5335
12205
  msgid "Select the type of link the comment widget photos point to."
12206
  msgstr ""
12207
 
12208
+ #: wppa-settings-autosave.php:5346
12209
  msgid "the content of the virtual comten album."
12210
  msgstr ""
12211
 
12212
+ #: wppa-settings-autosave.php:5380
12213
  msgid "FeaTenWidget"
12214
  msgstr ""
12215
 
12216
+ #: wppa-settings-autosave.php:5381
12217
  msgid "FeaTen widget photo link."
12218
  msgstr ""
12219
 
12220
+ #: wppa-settings-autosave.php:5382
12221
  msgid "Select the type of link the featured ten photos point to."
12222
  msgstr ""
12223
 
12224
+ #: wppa-settings-autosave.php:5393
12225
  msgid "the content of the virtual featen album."
12226
  msgstr ""
12227
 
12228
+ #: wppa-settings-autosave.php:5426
12229
  msgid "Links from other WPPA+ images"
12230
  msgstr ""
12231
 
12232
+ #: wppa-settings-autosave.php:5428
12233
  msgid "Cover Image"
12234
  msgstr ""
12235
 
12236
+ #: wppa-settings-autosave.php:5429
12237
  msgid "The link from the cover image of an album."
12238
  msgstr ""
12239
 
12240
+ #: wppa-settings-autosave.php:5430
12241
  msgid "Select the type of link the coverphoto points to."
12242
  msgstr ""
12243
 
12244
+ #: wppa-settings-autosave.php:5431
12245
  msgid "The link from the album title can be configured on the Edit Album page."
12246
  msgstr ""
12247
 
12248
+ #: wppa-settings-autosave.php:5432
12249
  msgid "This link will be used for the photo also if you select: same as title."
12250
  msgstr ""
12251
 
12252
+ #: wppa-settings-autosave.php:5433
12253
  msgid ""
12254
  "If you specify New Tab on this line, all links from the cover will open a "
12255
  "new tab,"
12256
  msgstr ""
12257
 
12258
+ #: wppa-settings-autosave.php:5434
12259
  msgid "except when Ajax is activated on Table IV-A1."
12260
  msgstr ""
12261
 
12262
+ #: wppa-settings-autosave.php:5447
12263
  msgid "a slideshow starting at the photo"
12264
  msgstr ""
12265
 
12266
+ #: wppa-settings-autosave.php:5468
12267
  msgid "Thumbnail"
12268
  msgstr ""
12269
 
12270
+ #: wppa-settings-autosave.php:5469
12271
  msgid "Thumbnail link."
12272
  msgstr ""
12273
 
12274
+ #: wppa-settings-autosave.php:5470 wppa-settings-autosave.php:5520
12275
+ #: wppa-settings-autosave.php:5562
12276
  msgid "Select the type of link you want, or no link at all."
12277
  msgstr ""
12278
 
12279
+ #: wppa-settings-autosave.php:5471 wppa-settings-autosave.php:5521
12280
+ #: wppa-settings-autosave.php:5563
12281
  msgid ""
12282
  "If you select the fullsize photo on its own, it will be stretched to fit, "
12283
  "regardless of that setting."
12284
  msgstr ""
12285
 
12286
+ #: wppa-settings-autosave.php:5472 wppa-settings-autosave.php:5522
12287
+ #: wppa-settings-autosave.php:5564
12288
  msgid ""
12289
  "Note that a page must have at least [wppa][/wppa] in its content to show up "
12290
  "the photo(s)."
12291
  msgstr ""
12292
 
12293
+ #: wppa-settings-autosave.php:5501
12294
  msgid "Auto Page"
12295
  msgstr ""
12296
 
12297
+ #: wppa-settings-autosave.php:5518
12298
  msgid "Sphoto"
12299
  msgstr ""
12300
 
12301
+ #: wppa-settings-autosave.php:5519
12302
  msgid "Single photo link."
12303
  msgstr ""
12304
 
12305
+ #: wppa-settings-autosave.php:5560
12306
  msgid "Mphoto"
12307
  msgstr ""
12308
 
12309
+ #: wppa-settings-autosave.php:5561
12310
  msgid "Media-like photo link."
12311
  msgstr ""
12312
 
12313
+ #: wppa-settings-autosave.php:5603
12314
  msgid "Slideshow fullsize link"
12315
  msgstr ""
12316
 
12317
+ #: wppa-settings-autosave.php:5604
12318
  msgid ""
12319
  "You can overrule lightbox but not big browse buttons with the photo specifc "
12320
  "link."
12321
  msgstr ""
12322
 
12323
+ #: wppa-settings-autosave.php:5605
12324
  msgid "fullsize slideshow can only be set by the WPPA_SET shortcode."
12325
  msgstr ""
12326
 
12327
+ #: wppa-settings-autosave.php:5618
12328
  msgid "lightbox single photos."
12329
  msgstr ""
12330
 
12331
+ #: wppa-settings-autosave.php:5620
12332
  msgid "the thumbnails."
12333
  msgstr ""
12334
 
12335
+ #: wppa-settings-autosave.php:5621
12336
  msgid "fullsize slideshow"
12337
  msgstr ""
12338
 
12339
+ #: wppa-settings-autosave.php:5646
12340
  msgid "Film linktype"
12341
  msgstr ""
12342
 
12343
+ #: wppa-settings-autosave.php:5647
12344
  msgid "Direct access goto image in:"
12345
  msgstr ""
12346
 
12347
+ #: wppa-settings-autosave.php:5648
12348
  msgid ""
12349
  "Select the action to be taken when the user clicks on a filmstrip image."
12350
  msgstr ""
12351
 
12352
+ #: wppa-settings-autosave.php:5653
12353
  msgid "slideshow window"
12354
  msgstr ""
12355
 
12356
+ #: wppa-settings-autosave.php:5654
12357
  msgid "lightbox overlay"
12358
  msgstr ""
12359
 
12360
+ #: wppa-settings-autosave.php:5669
12361
  msgid "Other links"
12362
  msgstr ""
12363
 
12364
+ #: wppa-settings-autosave.php:5671
12365
  msgid "Download Link (aka Art Monkey link)"
12366
  msgstr ""
12367
 
12368
+ #: wppa-settings-autosave.php:5672
12369
  msgid "Makes the photo name a download button."
12370
  msgstr ""
12371
 
12372
+ #: wppa-settings-autosave.php:5673
12373
  msgid "Link Photo name in slideshow to file or zip with photoname as filename."
12374
  msgstr ""
12375
 
12376
+ #: wppa-settings-autosave.php:5677 wppa-settings-autosave.php:5724
12377
  msgid "image file"
12378
  msgstr ""
12379
 
12380
+ #: wppa-settings-autosave.php:5678 wppa-settings-autosave.php:5725
12381
  msgid "zipped image"
12382
  msgstr ""
12383
 
12384
+ #: wppa-settings-autosave.php:5691
12385
  msgid "Art Monkey Source"
12386
  msgstr ""
12387
 
12388
+ #: wppa-settings-autosave.php:5692
12389
  msgid "Use Source file for art monkey link if available."
12390
  msgstr ""
12391
 
12392
+ #: wppa-settings-autosave.php:5701
12393
  msgid "Art Monkey Display"
12394
  msgstr ""
12395
 
12396
+ #: wppa-settings-autosave.php:5702
12397
  msgid "Select button or link ( text )."
12398
  msgstr ""
12399
 
12400
+ #: wppa-settings-autosave.php:5707
12401
  msgid "Textlink"
12402
  msgstr ""
12403
 
12404
+ #: wppa-settings-autosave.php:5719
12405
  msgid "Popup Download Link"
12406
  msgstr ""
12407
 
12408
+ #: wppa-settings-autosave.php:5720
12409
  msgid "Configure the download link on fullsize popups."
12410
  msgstr ""
12411
 
12412
+ #: wppa-settings-autosave.php:5721
12413
  msgid "Link fullsize popup download button to either image or zip file."
12414
  msgstr ""
12415
 
12416
+ #: wppa-settings-autosave.php:5737
12417
  msgid "Download link on lightbox"
12418
  msgstr ""
12419
 
12420
+ #: wppa-settings-autosave.php:5738
12421
  msgid "Art monkey link on lightbox photo names."
12422
  msgstr ""
12423
 
12424
+ #: wppa-settings-autosave.php:5747
12425
  msgid "Album download link"
12426
  msgstr ""
12427
 
12428
+ #: wppa-settings-autosave.php:5748
12429
  msgid "Place an album download link on the album covers"
12430
  msgstr ""
12431
 
12432
+ #: wppa-settings-autosave.php:5749
12433
  msgid "Creates a download zipfile containing the photos of the album"
12434
  msgstr ""
12435
 
12436
+ #: wppa-settings-autosave.php:5757
12437
  msgid "Album download Source"
12438
  msgstr ""
12439
 
12440
+ #: wppa-settings-autosave.php:5758
12441
  msgid "Use Source file for album download link if available."
12442
  msgstr ""
12443
 
12444
+ #: wppa-settings-autosave.php:5767
12445
  msgid "Tagcloud Link"
12446
  msgstr ""
12447
 
12448
+ #: wppa-settings-autosave.php:5768
12449
  msgid "Configure the link from the tags in the tag cloud."
12450
  msgstr ""
12451
 
12452
+ #: wppa-settings-autosave.php:5769
12453
  msgid "Link the tag words to ether the thumbnails or the slideshow."
12454
  msgstr ""
12455
 
12456
+ #: wppa-settings-autosave.php:5793 wppa-settings-autosave.php:5826
12457
+ #: wppa-settings-autosave.php:5970
12458
  msgid "Occur"
12459
  msgstr ""
12460
 
12461
+ #: wppa-settings-autosave.php:5800
12462
  msgid "Multitag Link"
12463
  msgstr ""
12464
 
12465
+ #: wppa-settings-autosave.php:5801
12466
  msgid "Configure the link from the multitag selection."
12467
  msgstr ""
12468
 
12469
+ #: wppa-settings-autosave.php:5802
12470
  msgid "Link to ether the thumbnails or the slideshow."
12471
  msgstr ""
12472
 
12473
+ #: wppa-settings-autosave.php:5833
12474
  msgid "Super View Landing"
12475
  msgstr ""
12476
 
12477
+ #: wppa-settings-autosave.php:5834
12478
  msgid "The landing page for the Super View widget."
12479
  msgstr ""
12480
 
12481
+ #: wppa-settings-autosave.php:5842
12482
  msgid "Defined by the visitor"
12483
  msgstr ""
12484
 
12485
+ #: wppa-settings-autosave.php:5855
12486
  msgid "Uploader Landing"
12487
  msgstr ""
12488
 
12489
+ #: wppa-settings-autosave.php:5856
12490
  msgid "Select the landing page for the Uploader Widget"
12491
  msgstr ""
12492
 
12493
+ #: wppa-settings-autosave.php:5876
12494
  msgid "Bestof Landing"
12495
  msgstr ""
12496
 
12497
+ #: wppa-settings-autosave.php:5877
12498
  msgid "Select the landing page for the BestOf Widget / Box"
12499
  msgstr ""
12500
 
12501
+ #: wppa-settings-autosave.php:5897
12502
  msgid "Album navigator Link"
12503
  msgstr ""
12504
 
12505
+ #: wppa-settings-autosave.php:5898
12506
  msgid "Select link type and page for the Album navigator Widget"
12507
  msgstr ""
12508
 
12509
+ #: wppa-settings-autosave.php:5926
12510
  msgid "Supersearch Landing"
12511
  msgstr ""
12512
 
12513
+ #: wppa-settings-autosave.php:5927
12514
  msgid "Select the landing page for the Supersearch Box"
12515
  msgstr ""
12516
 
12517
+ #: wppa-settings-autosave.php:5947
12518
  msgid "SM widget return"
12519
  msgstr ""
12520
 
12521
+ #: wppa-settings-autosave.php:5948
12522
  msgid "Select the return link for social media from widgets"
12523
  msgstr ""
12524
 
12525
+ #: wppa-settings-autosave.php:5949
12526
  msgid ""
12527
  "If you select Landing page, and it wont work, it may be required to set the "
12528
  "Occur to the sequence number of the landing shortcode on the page."
12529
  msgstr ""
12530
 
12531
+ #: wppa-settings-autosave.php:5950
12532
  msgid ""
12533
  "Normally it is 1, but you can try 2 etc. Always create a new shared link to "
12534
  "test a setting."
12535
  msgstr ""
12536
 
12537
+ #: wppa-settings-autosave.php:5958
12538
  msgid "Home page"
12539
  msgstr ""
12540
 
12541
+ #: wppa-settings-autosave.php:5979
12542
  msgid "Album cover subalbums link"
12543
  msgstr ""
12544
 
12545
+ #: wppa-settings-autosave.php:5980
12546
  msgid ""
12547
  "Select the linktype and display type for sub-albums on parent album covers."
12548
  msgstr ""
12549
 
12550
+ #: wppa-settings-autosave.php:5988
12551
  msgid "No link at all"
12552
  msgstr ""
12553
 
12554
+ #: wppa-settings-autosave.php:5989
12555
  msgid "Thumbnails and covers"
12556
  msgstr ""
12557
 
12558
+ #: wppa-settings-autosave.php:5990
12559
  msgid "Slideshow or covers"
12560
  msgstr ""
12561
 
12562
+ #: wppa-settings-autosave.php:6000
12563
  msgid "No display at all"
12564
  msgstr ""
12565
 
12566
+ #: wppa-settings-autosave.php:6001
12567
  msgid "A list with sub(sub) albums"
12568
  msgstr ""
12569
 
12570
+ #: wppa-settings-autosave.php:6002
12571
  msgid "A list of children only"
12572
  msgstr ""
12573
 
12574
+ #: wppa-settings-autosave.php:6003
12575
  msgid "An enumeration of names"
12576
  msgstr ""
12577
 
12578
+ #: wppa-settings-autosave.php:6004
12579
  msgid "Micro thumbnails"
12580
  msgstr ""
12581
 
12582
+ #: wppa-settings-autosave.php:6042
12583
  msgid "Table VII:"
12584
  msgstr ""
12585
 
12586
+ #: wppa-settings-autosave.php:6042
12587
  msgid "Permissions and Restrictions:"
12588
  msgstr ""
12589
 
12590
+ #: wppa-settings-autosave.php:6043
12591
  msgid ""
12592
  "This table describes the access settings for admin and front-end activities."
12593
  msgstr ""
12594
 
12595
+ #: wppa-settings-autosave.php:6064
12596
  msgid "Moderate P+C"
12597
  msgstr ""
12598
 
12599
+ #: wppa-settings-autosave.php:6068
12600
  msgid "Comment&nbsp;Admin"
12601
  msgstr ""
12602
 
12603
+ #: wppa-settings-autosave.php:6069
12604
  msgid "Help & Info"
12605
  msgstr ""
12606
 
12607
+ #: wppa-settings-autosave.php:6071
12608
  msgid "Role"
12609
  msgstr ""
12610
 
12611
+ #: wppa-settings-autosave.php:6080
12612
  msgid ""
12613
  "Admin settings per user role. Enabling these settings will overrule the "
12614
  "front-end settings for the specific user role"
12615
  msgstr ""
12616
 
12617
+ #: wppa-settings-autosave.php:6104
12618
  msgid "Frontend create Albums and upload Photos enabling and limiting settings"
12619
  msgstr ""
12620
 
12621
+ #: wppa-settings-autosave.php:6106
12622
  msgid "User create Albums"
12623
  msgstr ""
12624
 
12625
+ #: wppa-settings-autosave.php:6107
12626
  msgid "Enable frontend album creation."
12627
  msgstr ""
12628
 
12629
+ #: wppa-settings-autosave.php:6108
12630
  msgid "If you check this item, frontend album creation will be enabled."
12631
  msgstr ""
12632
 
12633
+ #: wppa-settings-autosave.php:6118
12634
  msgid "User edit album"
12635
  msgstr ""
12636
 
12637
+ #: wppa-settings-autosave.php:6119
12638
  msgid "Enable frontend edit album name and description."
12639
  msgstr ""
12640
 
12641
+ #: wppa-settings-autosave.php:6129
12642
  msgid "User delete Albums"
12643
  msgstr ""
12644
 
12645
+ #: wppa-settings-autosave.php:6130
12646
  msgid "Enable frontend album deletion"
12647
  msgstr ""
12648
 
12649
+ #: wppa-settings-autosave.php:6131
12650
  msgid "If you check this item, frontend album deletion will be enabled."
12651
  msgstr ""
12652
 
12653
+ #: wppa-settings-autosave.php:6141
12654
  msgid "User create Albums login"
12655
  msgstr ""
12656
 
12657
+ #: wppa-settings-autosave.php:6142
12658
  msgid "Frontend album creation requires the user is logged in."
12659
  msgstr ""
12660
 
12661
+ #: wppa-settings-autosave.php:6153
12662
  msgid "User create Albums Captcha"
12663
  msgstr ""
12664
 
12665
+ #: wppa-settings-autosave.php:6154
12666
  msgid "Uer must answer security question."
12667
  msgstr ""
12668
 
12669
+ #: wppa-settings-autosave.php:6179
12670
  #, php-format
12671
  msgid "Upload limit %s"
12672
  msgstr ""
12673
 
12674
+ #: wppa-settings-autosave.php:6180
12675
  msgid "Limit upload capacity for logged out users."
12676
  msgstr ""
12677
 
12678
+ #: wppa-settings-autosave.php:6181
12679
  #, php-format
12680
  msgid "Limit upload capacity for the user role %s."
12681
  msgstr ""
12682
 
12683
+ #: wppa-settings-autosave.php:6182
12684
  msgid "This setting has only effect when Table VII-B2 is unchecked."
12685
  msgstr ""
12686
 
12687
+ #: wppa-settings-autosave.php:6183
12688
  msgid ""
12689
  "This limitation only applies to frontend uploads when the same userrole does "
12690
  "not have the Upload checkbox checked in Table VII-A."
12691
  msgstr ""
12692
 
12693
+ #: wppa-settings-autosave.php:6184 wppa-settings-autosave.php:6200
12694
+ #: wppa-settings-autosave.php:8017
12695
  msgid "A value of 0 means: no limit."
12696
  msgstr ""
12697
 
12698
+ #: wppa-settings-autosave.php:6197
12699
  #, php-format
12700
  msgid "Album limit %s"
12701
  msgstr ""
12702
 
12703
+ #: wppa-settings-autosave.php:6198
12704
  #, php-format
12705
  msgid "Limit number of albums for the user role %s."
12706
  msgstr ""
12707
 
12708
+ #: wppa-settings-autosave.php:6199
12709
  msgid ""
12710
  "This limitation only applies to frontend create albums when the same "
12711
  "userrole does not have the Album admin checkbox checked in Table VII-A."
12712
  msgstr ""
12713
 
12714
+ #: wppa-settings-autosave.php:6211
12715
  msgid "Upload one only"
12716
  msgstr ""
12717
 
12718
+ #: wppa-settings-autosave.php:6212
12719
  msgid "Non admin users can upload only one photo at a time."
12720
  msgstr ""
12721
 
12722
+ #: wppa-settings-autosave.php:6222
12723
  msgid "Upload moderation"
12724
  msgstr ""
12725
 
12726
+ #: wppa-settings-autosave.php:6223
12727
  msgid "Uploaded photos need moderation."
12728
  msgstr ""
12729
 
12730
+ #: wppa-settings-autosave.php:6224
12731
  msgid ""
12732
  "If checked, photos uploaded by users who do not have photo album admin "
12733
  "access rights need moderation."
12734
  msgstr ""
12735
 
12736
+ #: wppa-settings-autosave.php:6225
12737
  msgid ""
12738
  "Users who have photo album admin access rights can change the photo status "
12739
  "to publish or featured."
12740
  msgstr ""
12741
 
12742
+ #: wppa-settings-autosave.php:6226
12743
  msgid "You can set the album admin access rights in Table VII-A."
12744
  msgstr ""
12745
 
12746
+ #: wppa-settings-autosave.php:6235
12747
  msgid "Upload notify"
12748
  msgstr ""
12749
 
12750
+ #: wppa-settings-autosave.php:6236
12751
  msgid "Notify admin at frontend upload."
12752
  msgstr ""
12753
 
12754
+ #: wppa-settings-autosave.php:6237 wppa-settings-autosave.php:6248
12755
  msgid "If checked, admin will receive a notification by email."
12756
  msgstr ""
12757
 
12758
+ #: wppa-settings-autosave.php:6246
12759
  msgid "Upload backend notify"
12760
  msgstr ""
12761
 
12762
+ #: wppa-settings-autosave.php:6247
12763
  msgid "Notify admin at backend upload."
12764
  msgstr ""
12765
 
12766
+ #: wppa-settings-autosave.php:6257
12767
  msgid "Max size in pixels"
12768
  msgstr ""
12769
 
12770
+ #: wppa-settings-autosave.php:6258
12771
  msgid "Max size for height and width for front-end uploads."
12772
  msgstr ""
12773
 
12774
+ #: wppa-settings-autosave.php:6259
12775
  msgid "Enter the maximum size. 0 is unlimited"
12776
  msgstr ""
12777
 
12778
+ #: wppa-settings-autosave.php:6268
12779
  msgid "Home after Upload"
12780
  msgstr ""
12781
 
12782
+ #: wppa-settings-autosave.php:6269
12783
  msgid "After successfull front-end upload, go to the home page."
12784
  msgstr ""
12785
 
12786
+ #: wppa-settings-autosave.php:6279
12787
  msgid "Fe alert"
12788
  msgstr ""
12789
 
12790
+ #: wppa-settings-autosave.php:6280
12791
  msgid "Show alertbox on successful front-end upload/create."
12792
  msgstr ""
12793
 
12794
+ #: wppa-settings-autosave.php:6290
12795
  msgid "Admin Functionality restrictions for non administrators"
12796
  msgstr ""
12797
 
12798
+ #: wppa-settings-autosave.php:6292
12799
  msgid "Alt thumb is restricted"
12800
  msgstr ""
12801
 
12802
+ #: wppa-settings-autosave.php:6293
12803
  msgid "Using <b>alt thumbsize</b> is a restricted action."
12804
  msgstr ""
12805
 
12806
+ #: wppa-settings-autosave.php:6294
12807
  msgid ""
12808
  "If checked: alt thumbsize can not be set in album admin by users not having "
12809
  "admin rights."
12810
  msgstr ""
12811
 
12812
+ #: wppa-settings-autosave.php:6303
12813
  msgid "Link is restricted"
12814
  msgstr ""
12815
 
12816
+ #: wppa-settings-autosave.php:6304
12817
  msgid "Using <b>Link to</b> is a restricted action."
12818
  msgstr ""
12819
 
12820
+ #: wppa-settings-autosave.php:6305
12821
  msgid ""
12822
  "If checked: Link to: can not be set in album admin by users not having admin "
12823
  "rights."
12824
  msgstr ""
12825
 
12826
+ #: wppa-settings-autosave.php:6314
12827
  msgid "CoverType is restricted"
12828
  msgstr ""
12829
 
12830
+ #: wppa-settings-autosave.php:6315
12831
  msgid "Changing <b>Cover Type</b> is a restricted action."
12832
  msgstr ""
12833
 
12834
+ #: wppa-settings-autosave.php:6316
12835
  msgid ""
12836
  "If checked: Cover Type: can not be set in album admin by users not having "
12837
  "admin rights."
12838
  msgstr ""
12839
 
12840
+ #: wppa-settings-autosave.php:6325
12841
  msgid "Photo order# is restricted"
12842
  msgstr ""
12843
 
12844
+ #: wppa-settings-autosave.php:6326
12845
  msgid "Changing <b>Photo sort order #</b> is a restricted action."
12846
  msgstr ""
12847
 
12848
+ #: wppa-settings-autosave.php:6327
12849
  msgid ""
12850
  "If checked: Photo sort order #: can not be set in photo admin by users not "
12851
  "having admin rights."
12852
  msgstr ""
12853
 
12854
+ #: wppa-settings-autosave.php:6336
12855
  msgid "Change source restricted"
12856
  msgstr ""
12857
 
12858
+ #: wppa-settings-autosave.php:6337
12859
  msgid "Changing the import source dir requires admin rights."
12860
  msgstr ""
12861
 
12862
+ #: wppa-settings-autosave.php:6338
12863
  msgid ""
12864
  "If checked, the imput source for importing photos and albums is restricted "
12865
  "to user role administrator."
12866
  msgstr ""
12867
 
12868
+ #: wppa-settings-autosave.php:6347
12869
  msgid "Extended status restricted"
12870
  msgstr ""
12871
 
12872
+ #: wppa-settings-autosave.php:6348
12873
  msgid "Setting status other than pending or publish requires admin rights."
12874
  msgstr ""
12875
 
12876
+ #: wppa-settings-autosave.php:6358
12877
  msgid "Photo description restricted"
12878
  msgstr ""
12879
 
12880
+ #: wppa-settings-autosave.php:6359
12881
  msgid "Edit photo description requires admin rights."
12882
  msgstr ""
12883
 
12884
+ #: wppa-settings-autosave.php:6369
12885
  msgid "Update photofiles restricted"
12886
  msgstr ""
12887
 
12888
+ #: wppa-settings-autosave.php:6370
12889
  msgid "Re-upload files requires admin rights"
12890
  msgstr ""
12891
 
12892
+ #: wppa-settings-autosave.php:6380
12893
  msgid "Miscellaneous limiting settings"
12894
  msgstr ""
12895
 
12896
+ #: wppa-settings-autosave.php:6382
12897
  msgid "Owners only"
12898
  msgstr ""
12899
 
12900
+ #: wppa-settings-autosave.php:6383
12901
  msgid "Limit edit album access to the album owners only."
12902
  msgstr ""
12903
 
12904
+ #: wppa-settings-autosave.php:6384
12905
  msgid "If checked, non-admin users can edit their own albums only."
12906
  msgstr ""
12907
 
12908
+ #: wppa-settings-autosave.php:6393
12909
  msgid "Upload Owners only"
12910
  msgstr ""
12911
 
12912
+ #: wppa-settings-autosave.php:6394
12913
  msgid "Limit uploads to the album owners only."
12914
  msgstr ""
12915
 
12916
+ #: wppa-settings-autosave.php:6395
12917
  msgid ""
12918
  "If checked, users can upload to their own own albums and --- public --- only."
12919
  msgstr ""
12920
 
12921
+ #: wppa-settings-autosave.php:6404
12922
  msgid "Frontend Edit"
12923
  msgstr ""
12924
 
12925
+ #: wppa-settings-autosave.php:6405
12926
  msgid "Allow the uploader to edit the photo info"
12927
  msgstr ""
12928
 
12929
+ #: wppa-settings-autosave.php:6406
12930
  msgid ""
12931
  "If selected, any logged in user who meets the criteria has the capability to "
12932
  "edit the photo information."
12933
  msgstr ""
12934
 
12935
+ #: wppa-settings-autosave.php:6407
12936
  msgid "Note: This may be AFTER moderation!!"
12937
  msgstr ""
12938
 
12939
+ #: wppa-settings-autosave.php:6409
12940
  msgid "Classic"
12941
  msgstr ""
12942
 
12943
+ #: wppa-settings-autosave.php:6409
12944
  msgid "New style"
12945
  msgstr ""
12946
 
12947
+ #: wppa-settings-autosave.php:6418
12948
  msgid "Fe Edit users"
12949
  msgstr ""
12950
 
12951
+ #: wppa-settings-autosave.php:6419
12952
  msgid "The criteria the user must meet to edit photo info"
12953
  msgstr ""
12954
 
12955
+ #: wppa-settings-autosave.php:6422
12956
  msgid "Admin and superuser"
12957
  msgstr ""
12958
 
12959
+ #: wppa-settings-autosave.php:6422
12960
  msgid "Owner, admin and superuser"
12961
  msgstr ""
12962
 
12963
+ #: wppa-settings-autosave.php:6431
12964
  msgid "Fe Edit Theme CSS"
12965
  msgstr ""
12966
 
12967
+ #: wppa-settings-autosave.php:6432
12968
  msgid "The front-end edit photo dialog uses the theme CSS."
12969
  msgstr ""
12970
 
12971
+ #: wppa-settings-autosave.php:6442
12972
  msgid "Fe Edit New Items"
12973
  msgstr ""
12974
 
12975
+ #: wppa-settings-autosave.php:6443
12976
  msgid "The items that are fe editable"
12977
  msgstr ""
12978
 
12979
+ #: wppa-settings-autosave.php:6444
12980
  msgid "See also Table II-J10!"
12981
  msgstr ""
12982
 
12983
+ #: wppa-settings-autosave.php:6457
12984
  msgid "Fe Edit Button text"
12985
  msgstr ""
12986
 
12987
+ #: wppa-settings-autosave.php:6458
12988
  msgid "The text on the Edit button."
12989
  msgstr ""
12990
 
12991
+ #: wppa-settings-autosave.php:6468
12992
  msgid "Fe Edit Dialog caption"
12993
  msgstr ""
12994
 
12995
+ #: wppa-settings-autosave.php:6469
12996
  msgid "The text on the header of the popup."
12997
  msgstr ""
12998
 
12999
+ #: wppa-settings-autosave.php:6479
13000
  msgid "Frontend Delete"
13001
  msgstr ""
13002
 
13003
+ #: wppa-settings-autosave.php:6480
13004
  msgid "Allow the uploader to delete the photo"
13005
  msgstr ""
13006
 
13007
+ #: wppa-settings-autosave.php:6490
13008
  msgid "Uploader Moderate Comment"
13009
  msgstr ""
13010
 
13011
+ #: wppa-settings-autosave.php:6491
13012
  msgid "The owner of the photo can moderate the photos comments."
13013
  msgstr ""
13014
 
13015
+ #: wppa-settings-autosave.php:6492
13016
  msgid "This setting requires \"Uploader edit\" to be enabled also."
13017
  msgstr ""
13018
 
13019
+ #: wppa-settings-autosave.php:6501
13020
  msgid "Upload memory check frontend"
13021
  msgstr ""
13022
 
13023
+ #: wppa-settings-autosave.php:6502 wppa-settings-autosave.php:6513
13024
  msgid "Disable uploading photos that are too large."
13025
  msgstr ""
13026
 
13027
+ #: wppa-settings-autosave.php:6503 wppa-settings-autosave.php:6514
13028
  msgid ""
13029
  "To prevent out of memory crashes during upload and possible database "
13030
  "inconsistencies, uploads can be prevented if the photos are too big."
13031
  msgstr ""
13032
 
13033
+ #: wppa-settings-autosave.php:6512
13034
  msgid "Upload memory check admin"
13035
  msgstr ""
13036
 
13037
+ #: wppa-settings-autosave.php:6523
13038
  msgid "Comment captcha"
13039
  msgstr ""
13040
 
13041
+ #: wppa-settings-autosave.php:6524
13042
  msgid "Use a simple calculate captcha on comments form."
13043
  msgstr ""
13044
 
13045
+ #: wppa-settings-autosave.php:6537
13046
  msgid "Spam lifetime"
13047
  msgstr ""
13048
 
13049
+ #: wppa-settings-autosave.php:6538
13050
  msgid "Delete spam comments when older than."
13051
  msgstr ""
13052
 
13053
+ #: wppa-settings-autosave.php:6565
13054
  msgid "Avoid duplicates"
13055
  msgstr ""
13056
 
13057
+ #: wppa-settings-autosave.php:6566
13058
  msgid "Prevent the creation of duplicate photos."
13059
  msgstr ""
13060
 
13061
+ #: wppa-settings-autosave.php:6567
13062
  msgid ""
13063
  "If checked: uploading, importing, copying or moving photos to other albums "
13064
  "will be prevented when the desitation album already contains a photo with "
13065
  "the same filename."
13066
  msgstr ""
13067
 
13068
+ #: wppa-settings-autosave.php:6576
13069
  msgid "Blacklist user"
13070
  msgstr ""
13071
 
13072
+ #: wppa-settings-autosave.php:6577 wppa-settings-autosave.php:6578
13073
  msgid "Set the status of all the users photos to 'pending'."
13074
  msgstr ""
13075
 
13076
+ #: wppa-settings-autosave.php:6579
13077
  msgid "Also inhibits further uploads."
13078
  msgstr ""
13079
 
13080
+ #: wppa-settings-autosave.php:6585
13081
  msgid "--- select a user to blacklist ---"
13082
  msgstr ""
13083
 
13084
+ #: wppa-settings-autosave.php:6595 wppa-settings-autosave.php:6600
13085
+ #: wppa-settings-autosave.php:6621 wppa-settings-autosave.php:6659
13086
+ #: wppa-settings-autosave.php:6664 wppa-settings-autosave.php:6685
13087
+ #: wppa-settings-autosave.php:9115 wppa-settings-autosave.php:9157
13088
  msgid "The page will be reloaded after the action has taken place."
13089
  msgstr ""
13090
 
13091
+ #: wppa-settings-autosave.php:6601 wppa-settings-autosave.php:6665
13092
  msgid "User login name <b>( case sensitive! )</b>:"
13093
  msgstr ""
13094
 
13095
+ #: wppa-settings-autosave.php:6609
13096
  msgid "Unblacklist user"
13097
  msgstr ""
13098
 
13099
+ #: wppa-settings-autosave.php:6610
13100
  msgid "Set the status of all the users photos to 'publish'."
13101
  msgstr ""
13102
 
13103
+ #: wppa-settings-autosave.php:6614
13104
  msgid "--- select a user to unblacklist ---"
13105
  msgstr ""
13106
 
13107
+ #: wppa-settings-autosave.php:6629
13108
  msgid "Photo owner change"
13109
  msgstr ""
13110
 
13111
+ #: wppa-settings-autosave.php:6630
13112
  msgid "Administrators can change photo owner"
13113
  msgstr ""
13114
 
13115
+ #: wppa-settings-autosave.php:6640
13116
  msgid "Super user"
13117
  msgstr ""
13118
 
13119
+ #: wppa-settings-autosave.php:6641
13120
  msgid "Give these users all rights in wppa."
13121
  msgstr ""
13122
 
13123
+ #: wppa-settings-autosave.php:6642
13124
  msgid "This gives the user all the administrator privileges within wppa."
13125
  msgstr ""
13126
 
13127
+ #: wppa-settings-autosave.php:6643
13128
  msgid ""
13129
  "Make sure the user also has a role that has all the boxes ticked in Table "
13130
  "VII-A"
13131
  msgstr ""
13132
 
13133
+ #: wppa-settings-autosave.php:6649
13134
  msgid "--- select a user to make superuser ---"
13135
  msgstr ""
13136
 
13137
+ #: wppa-settings-autosave.php:6673
13138
  msgid "Unsuper user"
13139
  msgstr ""
13140
 
13141
+ #: wppa-settings-autosave.php:6674
13142
  msgid "Remove user from super user list."
13143
  msgstr ""
13144
 
13145
+ #: wppa-settings-autosave.php:6678
13146
  msgid "--- select a user to unmake superuser ---"
13147
  msgstr ""
13148
 
13149
+ #: wppa-settings-autosave.php:6711
13150
  msgid "Table VIII:"
13151
  msgstr ""
13152
 
13153
+ #: wppa-settings-autosave.php:6711
13154
  msgid "Actions:"
13155
  msgstr ""
13156
 
13157
+ #: wppa-settings-autosave.php:6712
13158
  msgid "This table lists all actions that can be taken to the wppa+ system"
13159
  msgstr ""
13160
 
13161
+ #: wppa-settings-autosave.php:6722 wppa-settings-autosave.php:7452
13162
  msgid "Specification"
13163
  msgstr ""
13164
 
13165
+ #: wppa-settings-autosave.php:6723 wppa-settings-autosave.php:7453
13166
+ #: wppa-settings-autosave.php:10023 wppa-settings-autosave.php:10045
13167
  msgid "Do it!"
13168
  msgstr ""
13169
 
13170
+ #: wppa-settings-autosave.php:6725 wppa-settings-autosave.php:7455
13171
  msgid "To Go"
13172
  msgstr ""
13173
 
13174
+ #: wppa-settings-autosave.php:6733
13175
  msgid "Harmless and reverseable actions"
13176
  msgstr ""
13177
 
13178
+ #: wppa-settings-autosave.php:6735
13179
  msgid "Ignore concurrency"
13180
  msgstr ""
13181
 
13182
+ #: wppa-settings-autosave.php:6736
13183
  msgid "Ignore the prevention of concurrent actions."
13184
  msgstr ""
13185
 
13186
+ #: wppa-settings-autosave.php:6737
13187
  msgid ""
13188
  "This setting is meant to recover from deadlock situations only. Use with "
13189
  "care!"
13190
  msgstr ""
13191
 
13192
+ #: wppa-settings-autosave.php:6748
13193
  msgid "Setup"
13194
  msgstr ""
13195
 
13196
+ #: wppa-settings-autosave.php:6749
13197
  msgid "Re-initialize plugin."
13198
  msgstr ""
13199
 
13200
+ #: wppa-settings-autosave.php:6750
13201
  msgid ""
13202
  "Re-initilizes the plugin, (re)creates database tables and sets up default "
13203
  "settings and directories if required."
13204
  msgstr ""
13205
 
13206
+ #: wppa-settings-autosave.php:6751
13207
  msgid ""
13208
  "This action may be required to setup blogs in a multiblog (network) site as "
13209
  "well as in rare cases to correct initilization errors."
13210
  msgstr ""
13211
 
13212
+ #: wppa-settings-autosave.php:6762
13213
  msgid "Backup settings"
13214
  msgstr ""
13215
 
13216
+ #: wppa-settings-autosave.php:6763
13217
  msgid "Save all settings into a backup file."
13218
  msgstr ""
13219
 
13220
+ #: wppa-settings-autosave.php:6764
13221
  msgid "Saves all the settings into a backup file"
13222
  msgstr ""
13223
 
13224
+ #: wppa-settings-autosave.php:6775
13225
  msgid "Load settings"
13226
  msgstr ""
13227
 
13228
+ #: wppa-settings-autosave.php:6776
13229
  msgid "Restore all settings from defaults, a backup or skin file."
13230
  msgstr ""
13231
 
13232
+ #: wppa-settings-autosave.php:6777
13233
  msgid ""
13234
  "Restores all the settings from the factory supplied defaults, the backup you "
13235
  "created or from a skin file."
13236
  msgstr ""
13237
 
13238
+ #: wppa-settings-autosave.php:6783
13239
  msgid "--- set to defaults ---"
13240
  msgstr ""
13241
 
13242
+ #: wppa-settings-autosave.php:6786
13243
  msgid "--- restore backup ---"
13244
  msgstr ""
13245
 
13246
+ #: wppa-settings-autosave.php:6808
13247
  msgid "Regenerate"
13248
  msgstr ""
13249
 
13250
+ #: wppa-settings-autosave.php:6809 wppa-settings-autosave.php:6810
13251
  msgid "Regenerate all thumbnails."
13252
  msgstr ""
13253
 
13254
+ #: wppa-settings-autosave.php:6813 wppa-settings-autosave.php:6917
13255
+ #: wppa-settings-autosave.php:6984
13256
  msgid "Skip one"
13257
  msgstr ""
13258
 
13259
+ #: wppa-settings-autosave.php:6822
13260
  msgid "Rerate"
13261
  msgstr ""
13262
 
13263
+ #: wppa-settings-autosave.php:6823
13264
  msgid "Recalculate ratings."
13265
  msgstr ""
13266
 
13267
+ #: wppa-settings-autosave.php:6824
13268
  msgid ""
13269
  "This function will recalculate all mean photo ratings from the ratings table."
13270
  msgstr ""
13271
 
13272
+ #: wppa-settings-autosave.php:6825
13273
  msgid ""
13274
  "You may need this function after the re-import of previously exported photos"
13275
  msgstr ""
13276
 
13277
+ #: wppa-settings-autosave.php:6836
13278
  msgid "Lost and found"
13279
  msgstr ""
13280
 
13281
+ #: wppa-settings-autosave.php:6837
13282
  msgid "Find \"lost\" photos."
13283
  msgstr ""
13284
 
13285
+ #: wppa-settings-autosave.php:6838
13286
  msgid "This function will attempt to find lost photos."
13287
  msgstr ""
13288
 
13289
+ #: wppa-settings-autosave.php:6849
13290
  msgid "Recuperate"
13291
  msgstr ""
13292
 
13293
+ #: wppa-settings-autosave.php:6851
13294
  msgid ""
13295
  "This action will attempt to find and register IPTC and EXIF data from photos "
13296
  "in the WPPA+ system."
13297
  msgstr ""
13298
 
13299
+ #: wppa-settings-autosave.php:6862
13300
  msgid "Remake Index Albums"
13301
  msgstr ""
13302
 
13303
+ #: wppa-settings-autosave.php:6863
13304
  msgid "Remakes the index database table for albums."
13305
  msgstr ""
13306
 
13307
+ #: wppa-settings-autosave.php:6875
13308
  msgid "Remake Index Photos"
13309
  msgstr ""
13310
 
13311
+ #: wppa-settings-autosave.php:6876
13312
  msgid "Remakes the index database table for photos."
13313
  msgstr ""
13314
 
13315
+ #: wppa-settings-autosave.php:6894
13316
  msgid "Convert to tree"
13317
  msgstr ""
13318
 
13319
+ #: wppa-settings-autosave.php:6895
13320
  msgid "Convert filesystem to tree structure."
13321
  msgstr ""
13322
 
13323
+ #: wppa-settings-autosave.php:6898
13324
  msgid "Convert to flat"
13325
  msgstr ""
13326
 
13327
+ #: wppa-settings-autosave.php:6899
13328
  msgid "Convert filesystem to flat structure."
13329
  msgstr ""
13330
 
13331
+ #: wppa-settings-autosave.php:6901
13332
  msgid ""
13333
  "If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
13334
  "to flat first."
13335
  msgstr ""
13336
 
13337
+ #: wppa-settings-autosave.php:6913
13338
  msgid "Remake the photofiles from photo sourcefiles."
13339
  msgstr ""
13340
 
13341
+ #: wppa-settings-autosave.php:6914
13342
  msgid ""
13343
  "This action will remake the fullsize images, thumbnail images, and will "
13344
  "refresh the iptc and exif data for all photos where the source is found in "
13345
  "the corresponding album sub-directory of the source directory."
13346
  msgstr ""
13347
 
13348
+ #: wppa-settings-autosave.php:6926
13349
  msgid "Orientation only"
13350
  msgstr ""
13351
 
13352
+ #: wppa-settings-autosave.php:6927
13353
  msgid "Remake non standard orientated photos only."
13354
  msgstr ""
13355
 
13356
+ #: wppa-settings-autosave.php:6940
13357
  msgid "Recalc sizes"
13358
  msgstr ""
13359
 
13360
+ #: wppa-settings-autosave.php:6941
13361
  msgid "Recalculate photosizes and save to db."
13362
  msgstr ""
13363
 
13364
+ #: wppa-settings-autosave.php:6953
13365
  msgid "Renew album crypt"
13366
  msgstr ""
13367
 
13368
+ #: wppa-settings-autosave.php:6954
13369
  msgid "Renew album encrcryption codes."
13370
  msgstr ""
13371
 
13372
+ #: wppa-settings-autosave.php:6966
13373
  msgid "Renew photo crypt"
13374
  msgstr ""
13375
 
13376
+ #: wppa-settings-autosave.php:6967
13377
  msgid "Renew photo encrcryption codes."
13378
  msgstr ""
13379
 
13380
+ #: wppa-settings-autosave.php:6979
13381
  msgid "Create orietation sources"
13382
  msgstr ""
13383
 
13384
+ #: wppa-settings-autosave.php:6980
13385
  msgid "Creates correctly oriented pseudo source file."
13386
  msgstr ""
13387
 
13388
+ #: wppa-settings-autosave.php:6993
13389
  msgid "Clearing and other irreverseable actions"
13390
  msgstr ""
13391
 
13392
+ #: wppa-settings-autosave.php:6995
13393
  msgid "Clear ratings"
13394
  msgstr ""
13395
 
13396
+ #: wppa-settings-autosave.php:6996
13397
  msgid "Reset all ratings."
13398
  msgstr ""
13399
 
13400
+ #: wppa-settings-autosave.php:6997
13401
  msgid "WARNING: If checked, this will clear all ratings in the system!"
13402
  msgstr ""
13403
 
13404
+ #: wppa-settings-autosave.php:7008
13405
  msgid "Clear viewcounts"
13406
  msgstr ""
13407
 
13408
+ #: wppa-settings-autosave.php:7009
13409
  msgid "Reset all viewcounts."
13410
  msgstr ""
13411
 
13412
+ #: wppa-settings-autosave.php:7010
13413
  msgid "WARNING: If checked, this will clear all viewcounts in the system!"
13414
  msgstr ""
13415
 
13416
+ #: wppa-settings-autosave.php:7021
13417
  msgid "Reset IPTC"
13418
  msgstr ""
13419
 
13420
+ #: wppa-settings-autosave.php:7022
13421
  msgid "Clear all IPTC data."
13422
  msgstr ""
13423
 
13424
+ #: wppa-settings-autosave.php:7023
13425
  msgid "WARNING: If checked, this will clear all IPTC data in the system!"
13426
  msgstr ""
13427
 
13428
+ #: wppa-settings-autosave.php:7034
13429
  msgid "Reset EXIF"
13430
  msgstr ""
13431
 
13432
+ #: wppa-settings-autosave.php:7035
13433
  msgid "Clear all EXIF data."
13434
  msgstr ""
13435
 
13436
+ #: wppa-settings-autosave.php:7036
13437
  msgid "WARNING: If checked, this will clear all EXIF data in the system!"
13438
  msgstr ""
13439
 
13440
+ #: wppa-settings-autosave.php:7047
13441
  msgid "Apply New Photodesc"
13442
  msgstr ""
13443
 
13444
+ #: wppa-settings-autosave.php:7048
13445
  msgid "Apply New photo description on all photos in the system."
13446
  msgstr ""
13447
 
13448
+ #: wppa-settings-autosave.php:7060
13449
  msgid "Append to photodesc"
13450
  msgstr ""
13451
 
13452
+ #: wppa-settings-autosave.php:7061
13453
  msgid "Append this text to all photo descriptions."
13454
  msgstr ""
13455
 
13456
+ #: wppa-settings-autosave.php:7075
13457
  msgid "Remove from photodesc"
13458
  msgstr ""
13459
 
13460
+ #: wppa-settings-autosave.php:7076
13461
  msgid "Remove this text from all photo descriptions."
13462
  msgstr ""
13463
 
13464
+ #: wppa-settings-autosave.php:7090
13465
  msgid "Remove empty albums"
13466
  msgstr ""
13467
 
13468
+ #: wppa-settings-autosave.php:7091
13469
  msgid "Removes albums that are not used."
13470
  msgstr ""
13471
 
13472
+ #: wppa-settings-autosave.php:7103
13473
  msgid "Remove file-ext"
13474
  msgstr ""
13475
 
13476
+ #: wppa-settings-autosave.php:7104
13477
  msgid "Remove possible file extension from photo name."
13478
  msgstr ""
13479
 
13480
+ #: wppa-settings-autosave.php:7105
13481
  msgid ""
13482
  "This may be required for old photos, uploaded when the option in Table IX-D3 "
13483
  "was not yet available/selected."
13484
  msgstr ""
13485
 
13486
+ #: wppa-settings-autosave.php:7116
13487
  msgid "Re-add file-ext"
13488
  msgstr ""
13489
 
13490
+ #: wppa-settings-autosave.php:7117
13491
  msgid "Revert the <i>Remove file-ext</i> action."
13492
  msgstr ""
13493
 
13494
+ #: wppa-settings-autosave.php:7129
13495
  msgid "Watermark all"
13496
  msgstr ""
13497
 
13498
+ #: wppa-settings-autosave.php:7130
13499
  msgid "Apply watermark according to current settings to all photos."
13500
  msgstr ""
13501
 
13502
+ #: wppa-settings-autosave.php:7131
13503
  msgid "See Table IX_F for the current watermark settings"
13504
  msgstr ""
13505
 
13506
+ #: wppa-settings-autosave.php:7142
13507
  msgid "Create all autopages"
13508
  msgstr ""
13509
 
13510
+ #: wppa-settings-autosave.php:7143
13511
  msgid "Create all the pages to display slides individually."
13512
  msgstr ""
13513
 
13514
+ #: wppa-settings-autosave.php:7144 wppa-settings-autosave.php:7158
13515
  msgid "See also Table IV-A10."
13516
  msgstr ""
13517
 
13518
+ #: wppa-settings-autosave.php:7145
13519
  msgid ""
13520
  "Make sure you have a custom menu and the \"Automatically add new top-level "
13521
  "pages to this menu\" box UNticked!!"
13522
  msgstr ""
13523
 
13524
+ #: wppa-settings-autosave.php:7156
13525
  msgid "Delete all autopages"
13526
  msgstr ""
13527
 
13528
+ #: wppa-settings-autosave.php:7157
13529
  msgid "Delete all the pages to display slides individually."
13530
  msgstr ""
13531
 
13532
+ #: wppa-settings-autosave.php:7170
13533
  msgid "Leading zeroes"
13534
  msgstr ""
13535
 
13536
+ #: wppa-settings-autosave.php:7171
13537
  msgid "If photoname numeric, add leading zeros"
13538
  msgstr ""
13539
 
13540
+ #: wppa-settings-autosave.php:7172
13541
  msgid ""
13542
  "You can extend the name with leading zeros, so alphabetic sort becomes equal "
13543
  "to numeric sort order."
13544
  msgstr ""
13545
 
13546
+ #: wppa-settings-autosave.php:7175
13547
  msgid "Total chars"
13548
  msgstr ""
13549
 
13550
+ #: wppa-settings-autosave.php:7184
13551
  msgid "Add GPX tag"
13552
  msgstr ""
13553
 
13554
+ #: wppa-settings-autosave.php:7185
13555
  msgid "Make sure photos with gpx data have a Gpx tag"
13556
  msgstr ""
13557
 
13558
+ #: wppa-settings-autosave.php:7198 wppa-settings-autosave.php:8169
13559
  msgid "Optimize files"
13560
  msgstr ""
13561
 
13562
+ #: wppa-settings-autosave.php:7199
13563
  msgid "Optimize with EWWW image optimizer"
13564
  msgstr ""
13565
 
13566
+ #: wppa-settings-autosave.php:7212
13567
  msgid "Edit tag"
13568
  msgstr ""
13569
 
13570
+ #: wppa-settings-autosave.php:7213
13571
  msgid "Globally change a tagname."
13572
  msgstr ""
13573
 
13574
+ #: wppa-settings-autosave.php:7219
13575
  msgid "-select a tag-"
13576
  msgstr ""
13577
 
13578
+ #: wppa-settings-autosave.php:7225
13579
  msgid "Tag:"
13580
  msgstr ""
13581
 
13582
+ #: wppa-settings-autosave.php:7226
13583
  msgid "Change to:"
13584
  msgstr ""
13585
 
13586
+ #: wppa-settings-autosave.php:7235
13587
  msgid "Synchronize Cloudinary"
13588
  msgstr ""
13589
 
13590
+ #: wppa-settings-autosave.php:7236
13591
  msgid "Removes/adds images in the cloud."
13592
  msgstr ""
13593
 
13594
+ #: wppa-settings-autosave.php:7237
13595
  msgid "Removes old images and verifies/adds new images to Cloudinary."
13596
  msgstr ""
13597
 
13598
+ #: wppa-settings-autosave.php:7238
13599
  msgid "See Table IX-K4.7 for the configured lifetime."
13600
  msgstr ""
13601
 
13602
+ #: wppa-settings-autosave.php:7249
13603
  msgid "Fix tags"
13604
  msgstr ""
13605
 
13606
+ #: wppa-settings-autosave.php:7250
13607
  msgid "Make sure photo tags format is uptodate"
13608
  msgstr ""
13609
 
13610
+ #: wppa-settings-autosave.php:7251
13611
  msgid "Fixes tags to be conform current database rules."
13612
  msgstr ""
13613
 
13614
+ #: wppa-settings-autosave.php:7262
13615
  msgid "Fix cats"
13616
  msgstr ""
13617
 
13618
+ #: wppa-settings-autosave.php:7263
13619
  msgid "Make sure album cats format is uptodate"
13620
  msgstr ""
13621
 
13622
+ #: wppa-settings-autosave.php:7264
13623
  msgid "Fixes cats to be conform current database rules."
13624
  msgstr ""
13625
 
13626
+ #: wppa-settings-autosave.php:7275
13627
  msgid "Set owner to name"
13628
  msgstr ""
13629
 
13630
+ #: wppa-settings-autosave.php:7276
13631
  msgid "If photoname equals user display name, set him owner."
13632
  msgstr ""
13633
 
13634
+ #: wppa-settings-autosave.php:7288
13635
  msgid "Move all photos"
13636
  msgstr ""
13637
 
13638
+ #: wppa-settings-autosave.php:7289
13639
  msgid "Move all photos from one album to another album."
13640
  msgstr ""
13641
 
13642
+ #: wppa-settings-autosave.php:7301
13643
  msgid "From"
13644
  msgstr ""
13645
 
13646
+ #: wppa-settings-autosave.php:7302
13647
  msgid "Move from album"
13648
  msgstr ""
13649
 
13650
+ #: wppa-settings-autosave.php:7328
13651
  msgid "To"
13652
  msgstr ""
13653
 
13654
+ #: wppa-settings-autosave.php:7329
13655
  msgid "Move to album"
13656
  msgstr ""
13657
 
13658
+ #: wppa-settings-autosave.php:7370
13659
  msgid "Listings"
13660
  msgstr ""
13661
 
13662
+ #: wppa-settings-autosave.php:7372
13663
  msgid "List Logfile"
13664
  msgstr ""
13665
 
13666
+ #: wppa-settings-autosave.php:7373
13667
  msgid "Show the content of wppa+ (error) log."
13668
  msgstr ""
13669
 
13670
+ #: wppa-settings-autosave.php:7377
13671
  msgid "Purge logfile"
13672
  msgstr ""
13673
 
13674
+ #: wppa-settings-autosave.php:7386
13675
  msgid "List Ratings"
13676
  msgstr ""
13677
 
13678
+ #: wppa-settings-autosave.php:7387
13679
  msgid "Show the most recent ratings."
13680
  msgstr ""
13681
 
13682
+ #: wppa-settings-autosave.php:7400
13683
  msgid "List Index"
13684
  msgstr ""
13685
 
13686
+ #: wppa-settings-autosave.php:7401
13687
  msgid "Show the content if the index table."
13688
  msgstr ""
13689
 
13690
+ #: wppa-settings-autosave.php:7405
13691
  msgid "Start at text:"
13692
  msgstr ""
13693
 
13694
+ #: wppa-settings-autosave.php:7415
13695
  msgid "List active sessions"
13696
  msgstr ""
13697
 
13698
+ #: wppa-settings-autosave.php:7416
13699
  msgid "Show the content of the sessions table."
13700
  msgstr ""
13701
 
13702
+ #: wppa-settings-autosave.php:7429
13703
  msgid "List comments"
13704
  msgstr ""
13705
 
13706
+ #: wppa-settings-autosave.php:7430
13707
  msgid "Show the content of the comments table."
13708
  msgstr ""
13709
 
13710
+ #: wppa-settings-autosave.php:7436
13711
  msgid "Order by:"
13712
  msgstr ""
13713
 
13714
+ #: wppa-settings-autosave.php:7465
13715
  msgid "Table IX:"
13716
  msgstr ""
13717
 
13718
+ #: wppa-settings-autosave.php:7465
13719
  msgid "Miscellaneous:"
13720
  msgstr ""
13721
 
13722
+ #: wppa-settings-autosave.php:7466
13723
  msgid "This table lists all settings that do not fit into an other table"
13724
  msgstr ""
13725
 
13726
+ #: wppa-settings-autosave.php:7484
13727
  msgid "Internal engine related settings"
13728
  msgstr ""
13729
 
13730
+ #: wppa-settings-autosave.php:7486
13731
  msgid "WPPA+ Filter priority"
13732
  msgstr ""
13733
 
13734
+ #: wppa-settings-autosave.php:7487
13735
  msgid "Sets the priority of the wppa+ content filter."
13736
  msgstr ""
13737
 
13738
+ #: wppa-settings-autosave.php:7488 wppa-settings-autosave.php:7497
13739
  msgid ""
13740
  "If you encounter conflicts with the theme or other plugins, increasing this "
13741
  "value sometimes helps. Use with great care!"
13742
  msgstr ""
13743
 
13744
+ #: wppa-settings-autosave.php:7495
13745
  msgid "Do_shortcode priority"
13746
  msgstr ""
13747
 
13748
+ #: wppa-settings-autosave.php:7496
13749
  msgid "Sets the priority of the do_shortcode() content filter."
13750
  msgstr ""
13751
 
13752
+ #: wppa-settings-autosave.php:7504
13753
  msgid "WPPA shortcode at Filter priority"
13754
  msgstr ""
13755
 
13756
+ #: wppa-settings-autosave.php:7505
13757
  msgid "Execute shortcode expansion on filter priority in posts and pages."
13758
  msgstr ""
13759
 
13760
+ #: wppa-settings-autosave.php:7506 wppa-settings-autosave.php:7515
13761
  msgid "Use to fix certain layout problems"
13762
  msgstr ""
13763
 
13764
+ #: wppa-settings-autosave.php:7513
13765
  msgid "WPPA shortcode at Filter priority widget"
13766
  msgstr ""
13767
 
13768
+ #: wppa-settings-autosave.php:7514
13769
  msgid "Execute shortcode expansion on filter priority in widgets."
13770
  msgstr ""
13771
 
13772
+ #: wppa-settings-autosave.php:7522
13773
  msgid "JPG image quality"
13774
  msgstr ""
13775
 
13776
+ #: wppa-settings-autosave.php:7523
13777
  msgid "The jpg quality when photos are downsized"
13778
  msgstr ""
13779
 
13780
+ #: wppa-settings-autosave.php:7524
13781
  msgid "The higher the number the better the quality but the larger the file"
13782
  msgstr ""
13783
 
13784
+ #: wppa-settings-autosave.php:7525
13785
  msgid "Possible values 20..100"
13786
  msgstr ""
13787
 
13788
+ #: wppa-settings-autosave.php:7532
13789
  msgid "Allow WPPA+ Debugging"
13790
  msgstr ""
13791
 
13792
+ #: wppa-settings-autosave.php:7533
13793
  msgid "Allow the use of &amp;debug=.. in urls to this site."
13794
  msgstr ""
13795
 
13796
+ #: wppa-settings-autosave.php:7534
13797
  msgid ""
13798
  "If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
13799
  "site will generate the display of special WPPA+ diagnostics, as well as php "
13800
  "warnings"
13801
  msgstr ""
13802
 
13803
+ #: wppa-settings-autosave.php:7541
13804
  msgid "Auto continue"
13805
  msgstr ""
13806
 
13807
+ #: wppa-settings-autosave.php:7542
13808
  msgid "Continue automatic after time out"
13809
  msgstr ""
13810
 
13811
+ #: wppa-settings-autosave.php:7543
13812
  msgid ""
13813
  "If checked, an attempt will be made to restart an admin process when the "
13814
  "time is out."
13815
  msgstr ""
13816
 
13817
+ #: wppa-settings-autosave.php:7551
13818
  msgid "Set max execution time here."
13819
  msgstr ""
13820
 
13821
+ #: wppa-settings-autosave.php:7552
13822
  msgid ""
13823
  "If your php config does not properly set the max execution time, you can set "
13824
  "it here. Seconds, 0 means do not change."
13825
  msgstr ""
13826
 
13827
+ #: wppa-settings-autosave.php:7553
13828
  msgid "A safe value is 45 in most cases"
13829
  msgstr ""
13830
 
13831
+ #: wppa-settings-autosave.php:7554
13832
  #, php-format
13833
  msgid "The PHP setting max_execution_time is set to %s."
13834
  msgstr ""
13835
 
13836
+ #: wppa-settings-autosave.php:7562
13837
  msgid "Feed use thumb"
13838
  msgstr ""
13839
 
13840
+ #: wppa-settings-autosave.php:7563
13841
  msgid "Feeds use thumbnail pictures always."
13842
  msgstr ""
13843
 
13844
+ #: wppa-settings-autosave.php:7571
13845
  msgid "Enable <i>in-line</i> settings"
13846
  msgstr ""
13847
 
13848
+ #: wppa-settings-autosave.php:7572
13849
  msgid "Activates shortcode [wppa_set][/wppa_set]."
13850
  msgstr ""
13851
 
13852
+ #: wppa-settings-autosave.php:7573
13853
  msgid ""
13854
  "Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
13855
  msgstr ""
13856
 
13857
+ #: wppa-settings-autosave.php:7574
13858
  msgid ""
13859
  "Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
13860
  "sets the thumbnail type to vertical masonry style"
13861
  msgstr ""
13862
 
13863
+ #: wppa-settings-autosave.php:7575
13864
  msgid "Do not forget to reset with [wppa_set][/wppa_set]"
13865
  msgstr ""
13866
 
13867
+ #: wppa-settings-autosave.php:7576
13868
  msgid "Use with great care! There is no check on validity of values!"
13869
  msgstr ""
13870
 
13871
+ #: wppa-settings-autosave.php:7583
13872
  msgid "Runtime modifyable settings"
13873
  msgstr ""
13874
 
13875
+ #: wppa-settings-autosave.php:7584
13876
  msgid "The setting slugs that may be altered using [wppa_set] shortcode."
13877
  msgstr ""
13878
 
13879
+ #: wppa-settings-autosave.php:7593
13880
  msgid "WPPA+ Admin related miscellaneous settings"
13881
  msgstr ""
13882
 
13883
+ #: wppa-settings-autosave.php:7595
13884
  msgid "Allow HTML"
13885
  msgstr ""
13886
 
13887
+ #: wppa-settings-autosave.php:7596
13888
  msgid "Allow HTML in album and photo descriptions."
13889
  msgstr ""
13890
 
13891
+ #: wppa-settings-autosave.php:7597 wppa-settings-autosave.php:7606
13892
  msgid ""
13893
  "If checked: html is allowed. WARNING: No checks on syntax, it is your own "
13894
  "responsability to close tags properly!"
13895
  msgstr ""
13896
 
13897
+ #: wppa-settings-autosave.php:7604
13898
  msgid "Allow HTML custom"
13899
  msgstr ""
13900
 
13901
+ #: wppa-settings-autosave.php:7605
13902
  msgid "Allow HTML in custom photo datafields."
13903
  msgstr ""
13904
 
13905
+ #: wppa-settings-autosave.php:7613
13906
  msgid "Check tag balance"
13907
  msgstr ""
13908
 
13909
+ #: wppa-settings-autosave.php:7614
13910
  msgid "Check if the HTML tags are properly closed: \"balanced\"."
13911
  msgstr ""
13912
 
13913
+ #: wppa-settings-autosave.php:7615
13914
  msgid ""
13915
  "If the HTML tags in an album or a photo description are not in balance, the "
13916
  "description is not updated, an errormessage is displayed"
13917
  msgstr ""
13918
 
13919
+ #: wppa-settings-autosave.php:7622
13920
  msgid "Use WP editor"
13921
  msgstr ""
13922
 
13923
+ #: wppa-settings-autosave.php:7623
13924
  msgid "Use the wp editor for multiline text fields."
13925
  msgstr ""
13926
 
13927
+ #: wppa-settings-autosave.php:7631
13928
  msgid "Album sel hierarchic"
13929
  msgstr ""
13930
 
13931
+ #: wppa-settings-autosave.php:7632
13932
  msgid "Show albums with (grand)parents in selection lists."
13933
  msgstr ""
13934
 
13935
+ #: wppa-settings-autosave.php:7640
13936
  msgid "Page sel hierarchic"
13937
  msgstr ""
13938
 
13939
+ #: wppa-settings-autosave.php:7641
13940
  msgid "Show pages with (grand)parents in selection lists."
13941
  msgstr ""
13942
 
13943
+ #: wppa-settings-autosave.php:7650
13944
  msgid "Photo admin page size"
13945
  msgstr ""
13946
 
13947
+ #: wppa-settings-autosave.php:7651
13948
  msgid ""
13949
  "The number of photos per page on the <br/>Edit Album -> Manage photos and "
13950
  "Edit Photos admin pages."
13951
  msgstr ""
13952
 
13953
+ #: wppa-settings-autosave.php:7661
13954
  msgid "Comment admin page size"
13955
  msgstr ""
13956
 
13957
+ #: wppa-settings-autosave.php:7662
13958
  msgid "The number of comments per page on the Comments admin pages."
13959
  msgstr ""
13960
 
13961
+ #: wppa-settings-autosave.php:7672
13962
  msgid "Geo info edit"
13963
  msgstr ""
13964
 
13965
+ #: wppa-settings-autosave.php:7673
13966
  msgid "Lattitude and longitude may be edited in photo admin."
13967
  msgstr ""
13968
 
13969
+ #: wppa-settings-autosave.php:7681
13970
  msgid "Admin bar menu admin"
13971
  msgstr ""
13972
 
13973
+ #: wppa-settings-autosave.php:7682
13974
  msgid "Show menu on admin bar on admin pages."
13975
  msgstr ""
13976
 
13977
+ #: wppa-settings-autosave.php:7690
13978
  msgid "Admin bar menu frontend"
13979
  msgstr ""
13980
 
13981
+ #: wppa-settings-autosave.php:7691
13982
  msgid "Show menu on admin bar on frontend pages."
13983
  msgstr ""
13984
 
13985
+ #: wppa-settings-autosave.php:7699
13986
  msgid "Add shortcode to posts"
13987
  msgstr ""
13988
 
13989
+ #: wppa-settings-autosave.php:7700
13990
  msgid "Add a shortcode to the end of all posts."
13991
  msgstr ""
13992
 
13993
+ #: wppa-settings-autosave.php:7708
13994
  msgid "Shortcode to add"
13995
  msgstr ""
13996
 
13997
+ #: wppa-settings-autosave.php:7709
13998
  msgid "The shortcode to be added to the posts."
13999
  msgstr ""
14000
 
14001
+ #: wppa-settings-autosave.php:7717
14002
  msgid "We use Scripts"
14003
  msgstr ""
14004
 
14005
+ #: wppa-settings-autosave.php:7718
14006
  msgid "Use scripting syntax in shortcode generator."
14007
  msgstr ""
14008
 
14009
+ #: wppa-settings-autosave.php:7719
14010
  msgid ""
14011
  "This setting defines if the shortcode generator outputs old style script "
14012
  "tags or new style shortcodes."
14013
  msgstr ""
14014
 
14015
+ #: wppa-settings-autosave.php:7727
14016
  msgid "Import page prieviews"
14017
  msgstr ""
14018
 
14019
+ #: wppa-settings-autosave.php:7728
14020
  msgid "Show thumbnail previews in import admin page."
14021
  msgstr ""
14022
 
14023
+ #: wppa-settings-autosave.php:7736
14024
  msgid "Upload audiostub"
14025
  msgstr ""
14026
 
14027
+ #: wppa-settings-autosave.php:7737
14028
  msgid "Upload a new audio stub file"
14029
  msgstr ""
14030
 
14031
+ #: wppa-settings-autosave.php:7741
14032
  msgid "Upload audio stub image"
14033
  msgstr ""
14034
 
14035
+ #: wppa-settings-autosave.php:7746
14036
  msgid "Confirm create"
14037
  msgstr ""
14038
 
14039
+ #: wppa-settings-autosave.php:7747
14040
  msgid "Display confirmation dialog before creating album."
14041
  msgstr ""
14042
 
14043
+ #: wppa-settings-autosave.php:7755
14044
  msgid "Import source root"
14045
  msgstr ""
14046
 
14047
+ #: wppa-settings-autosave.php:7756
14048
  msgid "Specify the highest level in the filesystem where to import from"
14049
  msgstr ""
14050
 
14051
+ #: wppa-settings-autosave.php:7773
14052
  msgid "Allow import from WPPA+ source folders"
14053
  msgstr ""
14054
 
14055
+ #: wppa-settings-autosave.php:7774
14056
  msgid "Only switch this on if you know what you are doing!"
14057
  msgstr ""
14058
 
14059
+ #: wppa-settings-autosave.php:7783
14060
  msgid "SEO related settings"
14061
  msgstr ""
14062
 
14063
+ #: wppa-settings-autosave.php:7785
14064
  msgid "Meta on page"
14065
  msgstr ""
14066
 
14067
+ #: wppa-settings-autosave.php:7786
14068
  msgid "Meta tags for photos on the page."
14069
  msgstr ""
14070
 
14071
+ #: wppa-settings-autosave.php:7787
14072
  msgid ""
14073
  "If checked, the header of the page will contain metatags that refer to "
14074
  "featured photos on the page in the page context."
14075
  msgstr ""
14076
 
14077
+ #: wppa-settings-autosave.php:7794
14078
  msgid "Meta all"
14079
  msgstr ""
14080
 
14081
+ #: wppa-settings-autosave.php:7795
14082
  msgid "Meta tags for all featured photos."
14083
  msgstr ""
14084
 
14085
+ #: wppa-settings-autosave.php:7796
14086
  msgid ""
14087
  "If checked, the header of the page will contain metatags that refer to all "
14088
  "featured photo files."
14089
  msgstr ""
14090
 
14091
+ #: wppa-settings-autosave.php:7797
14092
  msgid ""
14093
  "If you have many featured photos, you might wish to uncheck this item to "
14094
  "reduce the size of the page header."
14095
  msgstr ""
14096
 
14097
+ #: wppa-settings-autosave.php:7804
14098
  msgid "Add og meta tags"
14099
  msgstr ""
14100
 
14101
+ #: wppa-settings-autosave.php:7805
14102
  msgid "Add og meta tags to the page header."
14103
  msgstr ""
14104
 
14105
+ #: wppa-settings-autosave.php:7808
14106
  msgid ""
14107
  "Turning this off may affect the functionality of social media items in the "
14108
  "share box that rely on open graph tags information."
14109
  msgstr ""
14110
 
14111
+ #: wppa-settings-autosave.php:7814
14112
  msgid "Image Alt attribute type"
14113
  msgstr ""
14114
 
14115
+ #: wppa-settings-autosave.php:7815
14116
  msgid "Select kind of HTML alt=\"\" content for images."
14117
  msgstr ""
14118
 
14119
+ #: wppa-settings-autosave.php:7818
14120
  msgid "photo name"
14121
  msgstr ""
14122
 
14123
+ #: wppa-settings-autosave.php:7818
14124
  msgid "name without file-ext"
14125
  msgstr ""
14126
 
14127
+ #: wppa-settings-autosave.php:7818
14128
  msgid "set in album admin"
14129
  msgstr ""
14130
 
14131
+ #: wppa-settings-autosave.php:7825
14132
  msgid "New Album and New Photo related miscellaneous settings"
14133
  msgstr ""
14134
 
14135
+ #: wppa-settings-autosave.php:7863
14136
  msgid "Maximum time an album is indicated as New"
14137
  msgstr ""
14138
 
14139
+ #: wppa-settings-autosave.php:7871
14140
  msgid "New Photo"
14141
  msgstr ""
14142
 
14143
+ #: wppa-settings-autosave.php:7872
14144
  msgid "Maximum time a photo is indicated as New"
14145
  msgstr ""
14146
 
14147
+ #: wppa-settings-autosave.php:7880
14148
  msgid "Modified Album"
14149
  msgstr ""
14150
 
14151
+ #: wppa-settings-autosave.php:7881
14152
  msgid "Maximum time an album is indicated as Modified"
14153
  msgstr ""
14154
 
14155
+ #: wppa-settings-autosave.php:7889
14156
  msgid "Modified Photo"
14157
  msgstr ""
14158
 
14159
+ #: wppa-settings-autosave.php:7890
14160
  msgid "Maximum time a photo is indicated as Modofied"
14161
  msgstr ""
14162
 
14163
+ #: wppa-settings-autosave.php:7898
14164
  msgid "Use text labels"
14165
  msgstr ""
14166
 
14167
+ #: wppa-settings-autosave.php:7899
14168
  msgid "Use editable text for the New and Modified labels"
14169
  msgstr ""
14170
 
14171
+ #: wppa-settings-autosave.php:7900
14172
  msgid "If UNticked, you can specify the urls for custom images to be used."
14173
  msgstr ""
14174
 
14175
+ #: wppa-settings-autosave.php:7911
14176
  msgid "Orange"
14177
  msgstr ""
14178
 
14179
+ #: wppa-settings-autosave.php:7912
14180
  msgid "Yellow"
14181
  msgstr ""
14182
 
14183
+ #: wppa-settings-autosave.php:7915
14184
  msgid "Purple"
14185
  msgstr ""
14186
 
14187
+ #: wppa-settings-autosave.php:7916
14188
  msgid "Black/white"
14189
  msgstr ""
14190
 
14191
+ #: wppa-settings-autosave.php:7928 wppa-settings-autosave.php:7950
14192
  msgid "New label"
14193
  msgstr ""
14194
 
14195
+ #: wppa-settings-autosave.php:7929
14196
  msgid "Specify the \"New\" indicator details."
14197
  msgstr ""
14198
 
14199
+ #: wppa-settings-autosave.php:7930 wppa-settings-autosave.php:7941
14200
  msgid "If you use qTranslate, the text may be multilingual."
14201
  msgstr ""
14202
 
14203
+ #: wppa-settings-autosave.php:7939 wppa-settings-autosave.php:7959
14204
  msgid "Modified label"
14205
  msgstr ""
14206
 
14207
+ #: wppa-settings-autosave.php:7940
14208
  msgid "Specify the \"Modified\" indicator details."
14209
  msgstr ""
14210
 
14211
+ #: wppa-settings-autosave.php:7951
14212
  msgid "Specify the \"New\" indicator url."
14213
  msgstr ""
14214
 
14215
+ #: wppa-settings-autosave.php:7960
14216
  msgid "Specify the \"Modified\" indicator url."
14217
  msgstr ""
14218
 
14219
+ #: wppa-settings-autosave.php:7968
14220
  msgid "Limit LasTen New"
14221
  msgstr ""
14222
 
14223
+ #: wppa-settings-autosave.php:7969
14224
  msgid "Limits the LasTen photos to those that are 'New', or newly modified."
14225
  msgstr ""
14226
 
14227
+ #: wppa-settings-autosave.php:7970
14228
  msgid ""
14229
  "If you tick this box and configured the new photo time, you can even limit "
14230
  "the number by the setting in Table I-F7, or set that number to an unlikely "
14231
  "high value."
14232
  msgstr ""
14233
 
14234
+ #: wppa-settings-autosave.php:7977
14235
  msgid "LasTen use Modified"
14236
  msgstr ""
14237
 
14238
+ #: wppa-settings-autosave.php:7978
14239
  msgid ""
14240
  "Use the time modified rather than time upload for LasTen widget/shortcode."
14241
  msgstr ""
14242
 
14243
+ #: wppa-settings-autosave.php:7986
14244
  msgid "Apply Newphoto desc"
14245
  msgstr ""
14246
 
14247
+ #: wppa-settings-autosave.php:7987
14248
  msgid "Give each new photo a standard description."
14249
  msgstr ""
14250
 
14251
+ #: wppa-settings-autosave.php:7988
14252
  msgid ""
14253
  "If checked, each new photo will get the description (template) as specified "
14254
  "in the next item."
14255
  msgstr ""
14256
 
14257
+ #: wppa-settings-autosave.php:7995
14258
  msgid "New photo desc"
14259
  msgstr ""
14260
 
14261
+ #: wppa-settings-autosave.php:7996
14262
  msgid "The description (template) to add to a new photo."
14263
  msgstr ""
14264
 
14265
+ #: wppa-settings-autosave.php:7997
14266
  msgid "Enter the default description."
14267
  msgstr ""
14268
 
14269
+ #: wppa-settings-autosave.php:7998
14270
  msgid "If you use html, please check item A-1 of this table."
14271
  msgstr ""
14272
 
14273
+ #: wppa-settings-autosave.php:8005
14274
  msgid "New photo owner"
14275
  msgstr ""
14276
 
14277
+ #: wppa-settings-autosave.php:8006
14278
  msgid "The owner of a new uploaded photo."
14279
  msgstr ""
14280
 
14281
+ #: wppa-settings-autosave.php:8007
14282
  msgid "If you leave this blank, the uploader will be set as the owner"
14283
  msgstr ""
14284
 
14285
+ #: wppa-settings-autosave.php:8009
14286
  msgid "leave blank or enter login name"
14287
  msgstr ""
14288
 
14289
+ #: wppa-settings-autosave.php:8015
14290
  msgid "New albums are created with this upload limit."
14291
  msgstr ""
14292
 
14293
+ #: wppa-settings-autosave.php:8016
14294
  msgid ""
14295
  "Administrators can change the limit settings in the \"Edit Album Information"
14296
  "\" admin page."
14297
  msgstr ""
14298
 
14299
+ #: wppa-settings-autosave.php:8033
14300
  msgid "Default parent"
14301
  msgstr ""
14302
 
14303
+ #: wppa-settings-autosave.php:8034
14304
  msgid "The parent album of new albums."
14305
  msgstr ""
14306
 
14307
+ #: wppa-settings-autosave.php:8051
14308
  msgid "Default parent always"
14309
  msgstr ""
14310
 
14311
+ #: wppa-settings-autosave.php:8052
14312
  msgid ""
14313
  "The parent album of new albums is always the default, except for "
14314
  "administrators."
14315
  msgstr ""
14316
 
14317
+ #: wppa-settings-autosave.php:8060
14318
  msgid "Show album full"
14319
  msgstr ""
14320
 
14321
+ #: wppa-settings-autosave.php:8061
14322
  msgid "Show the Upload limit reached message if appropriate."
14323
  msgstr ""
14324
 
14325
+ #: wppa-settings-autosave.php:8069
14326
  msgid "Grant an album"
14327
  msgstr ""
14328
 
14329
+ #: wppa-settings-autosave.php:8070
14330
  msgid "Create an album for each user logging in."
14331
  msgstr ""
14332
 
14333
+ #: wppa-settings-autosave.php:8078
14334
  msgid "Grant album name"
14335
  msgstr ""
14336
 
14337
+ #: wppa-settings-autosave.php:8079
14338
  msgid "The name to be used for the album."
14339
  msgstr ""
14340
 
14341
+ #: wppa-settings-autosave.php:8082
14342
  msgid "Login name"
14343
  msgstr ""
14344
 
14345
+ #: wppa-settings-autosave.php:8082 wppa-upldr-widget.php:182
14346
  msgid "Display name"
14347
  msgstr ""
14348
 
14349
+ #: wppa-settings-autosave.php:8082
14350
  msgid "Id"
14351
  msgstr ""
14352
 
14353
+ #: wppa-settings-autosave.php:8082
14354
  msgid "Firstname Lastname"
14355
  msgstr ""
14356
 
14357
+ #: wppa-settings-autosave.php:8089
14358
  msgid "Grant parent"
14359
  msgstr ""
14360
 
14361
+ #: wppa-settings-autosave.php:8090
14362
  msgid "The parent album of the auto created albums."
14363
  msgstr ""
14364
 
14365
+ #: wppa-settings-autosave.php:8091
14366
  msgid ""
14367
  "You may select multiple albums. All logged in visitors will get their own "
14368
  "sub-album in each granted parent."
14369
  msgstr ""
14370
 
14371
+ #: wppa-settings-autosave.php:8107
14372
  msgid "Max user albums"
14373
  msgstr ""
14374
 
14375
+ #: wppa-settings-autosave.php:8108
14376
  msgid "The max number of albums a user can create."
14377
  msgstr ""
14378
 
14379
+ #: wppa-settings-autosave.php:8109
14380
  msgid ""
14381
  "The maximum number of albums a user can create when he is not admin and "
14382
  "owner only is active"
14383
  msgstr ""
14384
 
14385
+ #: wppa-settings-autosave.php:8110
14386
  msgid "A number of 0 means No limit"
14387
  msgstr ""
14388
 
14389
+ #: wppa-settings-autosave.php:8117
14390
  msgid "Default photo name"
14391
  msgstr ""
14392
 
14393
+ #: wppa-settings-autosave.php:8118
14394
  msgid "Select the way the name of a new uploaded photo should be determined."
14395
  msgstr ""
14396
 
14397
+ #: wppa-settings-autosave.php:8121
14398
  msgid "Filename"
14399
  msgstr ""
14400
 
14401
+ #: wppa-settings-autosave.php:8122
14402
  msgid "Filename without extension"
14403
  msgstr ""
14404
 
14405
+ #: wppa-settings-autosave.php:8123
14406
  msgid "IPTC Tag 2#005 (Graphic name)"
14407
  msgstr ""
14408
 
14409
+ #: wppa-settings-autosave.php:8124
14410
  msgid "IPTC Tag 2#120 (Caption)"
14411
  msgstr ""
14412
 
14413
+ #: wppa-settings-autosave.php:8125
14414
  msgid "No name at all"
14415
  msgstr ""
14416
 
14417
+ #: wppa-settings-autosave.php:8133
14418
  msgid "Default coverphoto"
14419
  msgstr ""
14420
 
14421
+ #: wppa-settings-autosave.php:8134
14422
  msgid "Name of photofile to become cover image"
14423
  msgstr ""
14424
 
14425
+ #: wppa-settings-autosave.php:8135
14426
  msgid ""
14427
  "If you name a photofile like this setting before upload, it will become the "
14428
  "coverimage automaticly."
14429
  msgstr ""
14430
 
14431
+ #: wppa-settings-autosave.php:8142
14432
  msgid "Copy Timestamp"
14433
  msgstr ""
14434
 
14435
+ #: wppa-settings-autosave.php:8143
14436
  msgid "Copy timestamp when copying photo."
14437
  msgstr ""
14438
 
14439
+ #: wppa-settings-autosave.php:8144
14440
  msgid "If checked, the copied photo is not \"new\""
14441
  msgstr ""
14442
 
14443
+ #: wppa-settings-autosave.php:8151
14444
  msgid "Copy Owner"
14445
  msgstr ""
14446
 
14447
+ #: wppa-settings-autosave.php:8152
14448
  msgid "Copy the owner when copying photo."
14449
  msgstr ""
14450
 
14451
+ #: wppa-settings-autosave.php:8160
14452
  msgid "FE Albums public"
14453
  msgstr ""
14454
 
14455
+ #: wppa-settings-autosave.php:8161
14456
  msgid "Frontend created albums are --- public ---"
14457
  msgstr ""
14458
 
14459
+ #: wppa-settings-autosave.php:8170
14460
  msgid "Optimize image files right after upload/import"
14461
  msgstr ""
14462
 
14463
+ #: wppa-settings-autosave.php:8171
14464
  msgid "This option requires the plugin EWWW Image Optimizer to be activated"
14465
  msgstr ""
14466
 
14467
+ #: wppa-settings-autosave.php:8178
14468
  msgid "Default album linktype"
14469
  msgstr ""
14470
 
14471
+ #: wppa-settings-autosave.php:8179
14472
  msgid "The album linktype for new albums"
14473
  msgstr ""
14474
 
14475
+ #: wppa-settings-autosave.php:8198
14476
  msgid "Search Albums and Photos related settings"
14477
  msgstr ""
14478
 
14479
+ #: wppa-settings-autosave.php:8200
14480
  msgid "Search page"
14481
  msgstr ""
14482
 
14483
+ #: wppa-settings-autosave.php:8201
14484
  msgid "Display the search results on page."
14485
  msgstr ""
14486
 
14487
+ #: wppa-settings-autosave.php:8202
14488
  msgid ""
14489
  "Select the page to be used to display search results. The page MUST contain "
14490
  "[wppa][/wppa]."
14491
  msgstr ""
14492
 
14493
+ #: wppa-settings-autosave.php:8203
14494
  msgid "You may give it the title \"Search results\" or something alike."
14495
  msgstr ""
14496
 
14497
+ #: wppa-settings-autosave.php:8204
14498
  msgid ""
14499
  "Or you ou may use the standard page on which you display the generic album."
14500
  msgstr ""
14501
 
14502
+ #: wppa-settings-autosave.php:8237
14503
  msgid "Exclude separate"
14504
  msgstr ""
14505
 
14506
+ #: wppa-settings-autosave.php:8238
14507
  msgid "Do not search 'separate' albums."
14508
  msgstr ""
14509
 
14510
+ #: wppa-settings-autosave.php:8239
14511
  msgid ""
14512
  "When checked, albums (and photos in them) that have the parent set to --- "
14513
  "separate --- will be excluded from being searched."
14514
  msgstr ""
14515
 
14516
+ #: wppa-settings-autosave.php:8240
14517
  msgid ""
14518
  "Except when you start searching in a 'saparate' album, with the \"search in "
14519
  "current section\" box ticked."
14520
  msgstr ""
14521
 
14522
+ #: wppa-settings-autosave.php:8247
14523
  msgid "Include tags"
14524
  msgstr ""
14525
 
14526
+ #: wppa-settings-autosave.php:8248
14527
  msgid "Do also search the photo tags."
14528
  msgstr ""
14529
 
14530
+ #: wppa-settings-autosave.php:8249
14531
  msgid "When checked, the tags of the photo will also be searched."
14532
  msgstr ""
14533
 
14534
+ #: wppa-settings-autosave.php:8256
14535
  msgid "Include categories"
14536
  msgstr ""
14537
 
14538
+ #: wppa-settings-autosave.php:8257
14539
  msgid "Do also search the album categories."
14540
  msgstr ""
14541
 
14542
+ #: wppa-settings-autosave.php:8258
14543
  msgid "When checked, the categories of the album will also be searched."
14544
  msgstr ""
14545
 
14546
+ #: wppa-settings-autosave.php:8265
14547
  msgid "Include comments"
14548
  msgstr ""
14549
 
14550
+ #: wppa-settings-autosave.php:8266
14551
  msgid "Do also search the comments on photos."
14552
  msgstr ""
14553
 
14554
+ #: wppa-settings-autosave.php:8267
14555
  msgid "When checked, the comments of the photos will also be searched."
14556
  msgstr ""
14557
 
14558
+ #: wppa-settings-autosave.php:8274
14559
  msgid "Photos only"
14560
  msgstr ""
14561
 
14562
+ #: wppa-settings-autosave.php:8275
14563
  msgid "Search for photos only."
14564
  msgstr ""
14565
 
14566
+ #: wppa-settings-autosave.php:8276
14567
  msgid "When checked, only photos will be searched for."
14568
  msgstr ""
14569
 
14570
+ #: wppa-settings-autosave.php:8291
14571
  msgid "Max albums found"
14572
  msgstr ""
14573
 
14574
+ #: wppa-settings-autosave.php:8292
14575
  msgid "The maximum number of albums to be displayed."
14576
  msgstr ""
14577
 
14578
+ #: wppa-settings-autosave.php:8300
14579
  msgid "Max photos found"
14580
  msgstr ""
14581
 
14582
+ #: wppa-settings-autosave.php:8301
14583
  msgid "The maximum number of photos to be displayed."
14584
  msgstr ""
14585
 
14586
+ #: wppa-settings-autosave.php:8309
14587
  msgid "Tags OR only"
14588
  msgstr ""
14589
 
14590
+ #: wppa-settings-autosave.php:8310
14591
  msgid "No and / or buttons"
14592
  msgstr ""
14593
 
14594
+ #: wppa-settings-autosave.php:8311
14595
  msgid ""
14596
  "Hide the and/or radiobuttons and do the or method in the multitag widget and "
14597
  "shortcode."
14598
  msgstr ""
14599
 
14600
+ #: wppa-settings-autosave.php:8318
14601
  msgid "Tags add Inverse"
14602
  msgstr ""
14603
 
14604
+ #: wppa-settings-autosave.php:8319
14605
  msgid "Add a checkbox to invert the selection."
14606
  msgstr ""
14607
 
14608
+ #: wppa-settings-autosave.php:8320
14609
  msgid "Adds an Invert (NOT) checkbox on the multitag widget and shortcode."
14610
  msgstr ""
14611
 
14612
+ #: wppa-settings-autosave.php:8327
14613
  msgid "Floating searchtoken"
14614
  msgstr ""
14615
 
14616
+ #: wppa-settings-autosave.php:8328
14617
  msgid "A match need not start at the first char."
14618
  msgstr ""
14619
 
14620
+ #: wppa-settings-autosave.php:8329
14621
  msgid ""
14622
  "A match is found while searching also when the entered token is somewhere in "
14623
  "the middle of a word."
14624
  msgstr ""
14625
 
14626
+ #: wppa-settings-autosave.php:8330
14627
  msgid "This works in indexed search only!"
14628
  msgstr ""
14629
 
14630
+ #: wppa-settings-autosave.php:8337
14631
  msgid "Search results display"
14632
  msgstr ""
14633
 
14634
+ #: wppa-settings-autosave.php:8338
14635
  msgid "Select the way the search results should be displayed."
14636
  msgstr ""
14637
 
14638
+ #: wppa-settings-autosave.php:8339
14639
  msgid ""
14640
  "If you select anything different from \"Albums and thumbnails\", \"Photos "
14641
  "only\" is assumed (Table IX-E6)."
14642
  msgstr ""
14643
 
14644
+ #: wppa-settings-autosave.php:8341
14645
  msgid "Albums and thumbnails"
14646
  msgstr ""
14647
 
14648
+ #: wppa-settings-autosave.php:8341
14649
  msgid "Slideonly slideshow"
14650
  msgstr ""
14651
 
14652
+ #: wppa-settings-autosave.php:8348
14653
  msgid "Name max length"
14654
  msgstr ""
14655
 
14656
+ #: wppa-settings-autosave.php:8349
14657
  msgid "Max length of displayed photonames in supersearch selectionlist"
14658
  msgstr ""
14659
 
14660
+ #: wppa-settings-autosave.php:8350 wppa-settings-autosave.php:8359
14661
  msgid ""
14662
  "To limit the length of the selectionlist, enter the number of characters to "
14663
  "show."
14664
  msgstr ""
14665
 
14666
+ #: wppa-settings-autosave.php:8357
14667
  msgid "Text max length"
14668
  msgstr ""
14669
 
14670
+ #: wppa-settings-autosave.php:8358
14671
  msgid "Max length of displayed photo text in supersearch selectionlist"
14672
  msgstr ""
14673
 
14674
+ #: wppa-settings-autosave.php:8366
14675
  msgid "Search toptext"
14676
  msgstr ""
14677
 
14678
+ #: wppa-settings-autosave.php:8367
14679
  msgid "The text at the top of the search box."
14680
  msgstr ""
14681
 
14682
+ #: wppa-settings-autosave.php:8368
14683
  msgid "May contain unfiltered HTML."
14684
  msgstr ""
14685
 
14686
+ #: wppa-settings-autosave.php:8375
14687
  msgid "Section search text"
14688
  msgstr ""
14689
 
14690
+ #: wppa-settings-autosave.php:8376 wppa-settings-autosave.php:8385
14691
  msgid "The labeltext at the checkbox."
14692
  msgstr ""
14693
 
14694
+ #: wppa-settings-autosave.php:8384
14695
  msgid "Results search text"
14696
  msgstr ""
14697
 
14698
+ #: wppa-settings-autosave.php:8394
14699
  msgid "Watermark related settings"
14700
  msgstr ""
14701
 
14702
+ #: wppa-settings-autosave.php:8397
14703
  msgid "Enable the application of watermarks."
14704
  msgstr ""
14705
 
14706
+ #: wppa-settings-autosave.php:8398
14707
  msgid "If checked, photos can be watermarked during upload / import."
14708
  msgstr ""
14709
 
14710
+ #: wppa-settings-autosave.php:8407
14711
  msgid "Watermark file"
14712
  msgstr ""
14713
 
14714
+ #: wppa-settings-autosave.php:8408
14715
  msgid "The default watermarkfile to be used."
14716
  msgstr ""
14717
 
14718
+ #: wppa-settings-autosave.php:8409
14719
  msgid "Watermark files are of type png and reside in"
14720
  msgstr ""
14721
 
14722
+ #: wppa-settings-autosave.php:8410
14723
  msgid ""
14724
  "A suitable watermarkfile typically consists of a transparent background and "
14725
  "a black text or drawing."
14726
  msgstr ""
14727
 
14728
+ #: wppa-settings-autosave.php:8412
14729
  msgid ""
14730
  "You may also select one of the textual watermark types at the bottom of the "
14731
  "selection list."
14732
  msgstr ""
14733
 
14734
+ #: wppa-settings-autosave.php:8416
14735
  msgid "position:"
14736
  msgstr ""
14737
 
14738
+ #: wppa-settings-autosave.php:8422
14739
  msgid "Upload watermark"
14740
  msgstr ""
14741
 
14742
+ #: wppa-settings-autosave.php:8423
14743
  msgid "Upload a new watermark file"
14744
  msgstr ""
14745
 
14746
+ #: wppa-settings-autosave.php:8427
14747
  msgid "Upload watermark image"
14748
  msgstr ""
14749
 
14750
+ #: wppa-settings-autosave.php:8432
14751
  msgid "Watermark opacity image"
14752
  msgstr ""
14753
 
14754
+ #: wppa-settings-autosave.php:8433
14755
  msgid "You can set the intensity of image watermarks here."
14756
  msgstr ""
14757
 
14758
+ #: wppa-settings-autosave.php:8434 wppa-settings-autosave.php:8519
14759
  msgid ""
14760
  "The higher the number, the intenser the watermark. Value must be > 0 and <= "
14761
  "100."
14762
  msgstr ""
14763
 
14764
+ #: wppa-settings-autosave.php:8441
14765
  msgid "Textual watermark style"
14766
  msgstr ""
14767
 
14768
+ #: wppa-settings-autosave.php:8442
14769
  msgid "The way the textual watermarks look like"
14770
  msgstr ""
14771
 
14772
+ #: wppa-settings-autosave.php:8446
14773
  msgid "TV subtitle style"
14774
  msgstr ""
14775
 
14776
+ #: wppa-settings-autosave.php:8446
14777
  msgid "White text on black background"
14778
  msgstr ""
14779
 
14780
+ #: wppa-settings-autosave.php:8446
14781
  msgid "Black text on white background"
14782
  msgstr ""
14783
 
14784
+ #: wppa-settings-autosave.php:8446
14785
  msgid "Reverse TV style (Utopia)"
14786
  msgstr ""
14787
 
14788
+ #: wppa-settings-autosave.php:8446
14789
  msgid "White on transparent background"
14790
  msgstr ""
14791
 
14792
+ #: wppa-settings-autosave.php:8446
14793
  msgid "Black on transparent background"
14794
  msgstr ""
14795
 
14796
+ #: wppa-settings-autosave.php:8456
14797
  msgid "Predefined watermark text"
14798
  msgstr ""
14799
 
14800
+ #: wppa-settings-autosave.php:8457
14801
  msgid "The text to use when --- pre-defined --- is selected."
14802
  msgstr ""
14803
 
14804
+ #: wppa-settings-autosave.php:8458
14805
  msgid "You may use the following keywords:"
14806
  msgstr ""
14807
 
14808
+ #: wppa-settings-autosave.php:8459
14809
  msgid ""
14810
  "w#site, w#displayname, all standard photo keywords, iptc and exif keywords"
14811
  msgstr ""
14812
 
14813
+ #: wppa-settings-autosave.php:8466
14814
  msgid "Textual watermark font"
14815
  msgstr ""
14816
 
14817
+ #: wppa-settings-autosave.php:8467
14818
  msgid "The font to use with textusl watermarks."
14819
  msgstr ""
14820
 
14821
+ #: wppa-settings-autosave.php:8468
14822
  msgid "Except for the system font, are font files of type ttf and reside in"
14823
  msgstr ""
14824
 
14825
+ #: wppa-settings-autosave.php:8496
14826
  msgid "Textual watermark font size"
14827
  msgstr ""
14828
 
14829
+ #: wppa-settings-autosave.php:8497
14830
  msgid "You can set the size of the truetype fonts only."
14831
  msgstr ""
14832
 
14833
+ #: wppa-settings-autosave.php:8498
14834
  msgid ""
14835
  "System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
14836
  "value > 5 will be treated as 5."
14837
  msgstr ""
14838
 
14839
+ #: wppa-settings-autosave.php:8499
14840
  msgid ""
14841
  "Truetype fonts can have any positive integer size, if your PHPs GD version "
14842
  "is 1, in pixels, in GD2 in points."
14843
  msgstr ""
14844
 
14845
+ #: wppa-settings-autosave.php:8500
14846
  msgid "It is unclear howmany pixels a point is..."
14847
  msgstr ""
14848
 
14849
+ #: wppa-settings-autosave.php:8507
14850
  msgid "Upload watermark font"
14851
  msgstr ""
14852
 
14853
+ #: wppa-settings-autosave.php:8508
14854
  msgid "Upload a new watermark font file"
14855
  msgstr ""
14856
 
14857
+ #: wppa-settings-autosave.php:8509
14858
  msgid ""
14859
  "Upload truetype fonts (.ttf) only, and test if they work on your server "
14860
  "platform."
14861
  msgstr ""
14862
 
14863
+ #: wppa-settings-autosave.php:8512
14864
  msgid "Upload TrueType font"
14865
  msgstr ""
14866
 
14867
+ #: wppa-settings-autosave.php:8517
14868
  msgid "Watermark opacity text"
14869
  msgstr ""
14870
 
14871
+ #: wppa-settings-autosave.php:8518
14872
  msgid "You can set the intensity of a text watermarks here."
14873
  msgstr ""
14874
 
14875
+ #: wppa-settings-autosave.php:8527
14876
  msgid "A real life preview. To update: refresh the page."
14877
  msgstr ""
14878
 
14879
+ #: wppa-settings-autosave.php:8538
14880
  msgid "Watermark thumbnails"
14881
  msgstr ""
14882
 
14883
+ #: wppa-settings-autosave.php:8539
14884
  msgid "Watermark also the thumbnail image files."
14885
  msgstr ""
14886
 
14887
+ #: wppa-settings-autosave.php:8547
14888
  msgid "Slideshow elements sequence order settings"
14889
  msgstr ""
14890
 
14891
+ #: wppa-settings-autosave.php:8553 wppa-settings-autosave.php:8599
14892
  msgid "StartStop"
14893
  msgstr ""
14894
 
14895
+ #: wppa-settings-autosave.php:8554 wppa-settings-autosave.php:8600
14896
  msgid "SlideFrame"
14897
  msgstr ""
14898
 
14899
+ #: wppa-settings-autosave.php:8556
14900
  msgid "Desc"
14901
  msgstr ""
14902
 
14903
+ #: wppa-settings-autosave.php:8559 wppa-settings-autosave.php:8604
14904
  msgid "FilmStrip"
14905
  msgstr ""
14906
 
14907
+ #: wppa-settings-autosave.php:8560 wppa-settings-autosave.php:8605
14908
  msgid "Browsebar"
14909
  msgstr ""
14910
 
14911
+ #: wppa-settings-autosave.php:8562 wppa-settings-autosave.php:8607
14912
  msgid "IPTC data"
14913
  msgstr ""
14914
 
14915
+ #: wppa-settings-autosave.php:8563 wppa-settings-autosave.php:8608
14916
  msgid "EXIF data"
14917
  msgstr ""
14918
 
14919
+ #: wppa-settings-autosave.php:8564 wppa-settings-autosave.php:8609
14920
  msgid "Share box"
14921
  msgstr ""
14922
 
14923
+ #: wppa-settings-autosave.php:8566 wppa-settings-autosave.php:8611
14924
  msgid "Enabled"
14925
  msgstr ""
14926
 
14927
+ #: wppa-settings-autosave.php:8567 wppa-settings-autosave.php:8612
14928
  msgid "Disabled"
14929
  msgstr ""
14930
 
14931
+ #: wppa-settings-autosave.php:8569 wppa-settings-autosave.php:8614
14932
  msgid "Start/Stop & Slower/Faster navigation bar"
14933
  msgstr ""
14934
 
14935
+ #: wppa-settings-autosave.php:8570 wppa-settings-autosave.php:8615
14936
  msgid "The Slide Frame"
14937
  msgstr ""
14938
 
14939
+ #: wppa-settings-autosave.php:8570 wppa-settings-autosave.php:8615
14940
  msgid "( Always )"
14941
  msgstr ""
14942
 
14943
+ #: wppa-settings-autosave.php:8571
14944
  msgid "Photo Name Box"
14945
  msgstr ""
14946
 
14947
+ #: wppa-settings-autosave.php:8572
14948
  msgid "Photo Description Box"
14949
  msgstr ""
14950
 
14951
+ #: wppa-settings-autosave.php:8573 wppa-settings-autosave.php:8617
14952
  msgid "Custom Box"
14953
  msgstr ""
14954
 
14955
+ #: wppa-settings-autosave.php:8574 wppa-settings-autosave.php:8618
14956
  msgid "Rating Bar"
14957
  msgstr ""
14958
 
14959
+ #: wppa-settings-autosave.php:8575 wppa-settings-autosave.php:8619
14960
  msgid "Film Strip with embedded Start/Stop and Goto functionality"
14961
  msgstr ""
14962
 
14963
+ #: wppa-settings-autosave.php:8576 wppa-settings-autosave.php:8620
14964
  msgid "Browse Bar with Photo X of Y counter"
14965
  msgstr ""
14966
 
14967
+ #: wppa-settings-autosave.php:8577 wppa-settings-autosave.php:8621
14968
  msgid "Comments Box"
14969
  msgstr ""
14970
 
14971
+ #: wppa-settings-autosave.php:8578 wppa-settings-autosave.php:8622
14972
  msgid "IPTC box"
14973
  msgstr ""
14974
 
14975
+ #: wppa-settings-autosave.php:8579 wppa-settings-autosave.php:8623
14976
  msgid "EXIF box"
14977
  msgstr ""
14978
 
14979
+ #: wppa-settings-autosave.php:8580 wppa-settings-autosave.php:8624
14980
  msgid "Social media share box"
14981
  msgstr ""
14982
 
14983
+ #: wppa-settings-autosave.php:8586 wppa-settings-autosave.php:8630
14984
  msgid "Move Up"
14985
  msgstr ""
14986
 
14987
+ #: wppa-settings-autosave.php:8601
14988
  msgid "NameDesc"
14989
  msgstr ""
14990
 
14991
+ #: wppa-settings-autosave.php:8616
14992
  msgid "Photo Name & Description Box"
14993
  msgstr ""
14994
 
14995
+ #: wppa-settings-autosave.php:8640
14996
  msgid "Swap Namedesc"
14997
  msgstr ""
14998
 
14999
+ #: wppa-settings-autosave.php:8641
15000
  msgid "Swap the order sequence of name and description"
15001
  msgstr ""
15002
 
15003
+ #: wppa-settings-autosave.php:8649
15004
  msgid "Split Name and Desc"
15005
  msgstr ""
15006
 
15007
+ #: wppa-settings-autosave.php:8650
15008
  msgid "Put Name and Description in separate boxes"
15009
  msgstr ""
15010
 
15011
+ #: wppa-settings-autosave.php:8653
15012
  msgid "Please reload this page after the green checkmark appears!"
15013
  msgstr ""
15014
 
15015
+ #: wppa-settings-autosave.php:8658
15016
  msgid "Source file management and other upload/import settings and actions."
15017
  msgstr ""
15018
 
15019
+ #: wppa-settings-autosave.php:8660
15020
  msgid "Keep sourcefiles admin"
15021
  msgstr ""
15022
 
15023
+ #: wppa-settings-autosave.php:8661
15024
  msgid "Keep the original uploaded and imported photo files."
15025
  msgstr ""
15026
 
15027
+ #: wppa-settings-autosave.php:8662 wppa-settings-autosave.php:8672
15028
  msgid ""
15029
  "The files will be kept in a separate directory with subdirectories for each "
15030
  "album"
15031
  msgstr ""
15032
 
15033
+ #: wppa-settings-autosave.php:8663 wppa-settings-autosave.php:8673
15034
  msgid ""
15035
  "These files can be used to update the photos used in displaying in wppa+ and "
15036
  "optionally for downloading original, un-downsized images."
15037
  msgstr ""
15038
 
15039
+ #: wppa-settings-autosave.php:8670
15040
  msgid "Keep sourcefiles frontend"
15041
  msgstr ""
15042
 
15043
+ #: wppa-settings-autosave.php:8671
15044
  msgid "Keep the original frontend uploaded photo files."
15045
  msgstr ""
15046
 
15047
+ #: wppa-settings-autosave.php:8680
15048
  msgid "Source directory"
15049
  msgstr ""
15050
 
15051
+ #: wppa-settings-autosave.php:8681
15052
  msgid "The path to the directory where the original photofiles will be saved."
15053
  msgstr ""
15054
 
15055
+ #: wppa-settings-autosave.php:8682
15056
  msgid "You may change the directory path, but it can not be an url."
15057
  msgstr ""
15058
 
15059
+ #: wppa-settings-autosave.php:8683
15060
  msgid ""
15061
  "The parent of the directory that you enter here must exist and be writable."
15062
  msgstr ""
15063
 
15064
+ #: wppa-settings-autosave.php:8684
15065
  msgid "The directory itsself will be created if it does not exist yet."
15066
  msgstr ""
15067
 
15068
+ #: wppa-settings-autosave.php:8691
15069
  msgid "Keep sync"
15070
  msgstr ""
15071
 
15072
+ #: wppa-settings-autosave.php:8692
15073
  msgid "Keep source synchronously with wppa system."
15074
  msgstr ""
15075
 
15076
+ #: wppa-settings-autosave.php:8693
15077
  msgid ""
15078
  "If checked, photos that are deleted from wppa, will also be removed from the "
15079
  "sourcefiles."
15080
  msgstr ""
15081
 
15082
+ #: wppa-settings-autosave.php:8694
15083
  msgid ""
15084
  "Also, copying or moving photos to different albums, will also copy/move the "
15085
  "sourcefiles."
15086
  msgstr ""
15087
 
15088
+ #: wppa-settings-autosave.php:8701
15089
  msgid "Remake add"
15090
  msgstr ""
15091
 
15092
+ #: wppa-settings-autosave.php:8702
15093
  msgid "Photos will be added from the source pool"
15094
  msgstr ""
15095
 
15096
+ #: wppa-settings-autosave.php:8703
15097
  msgid ""
15098
  "If checked: If photo files are found in the source directory that do not "
15099
  "exist in the corresponding album, they will be added to the album."
15100
  msgstr ""
15101
 
15102
+ #: wppa-settings-autosave.php:8710
15103
  msgid "Save IPTC data"
15104
  msgstr ""
15105
 
15106
+ #: wppa-settings-autosave.php:8711
15107
  msgid "Store the iptc data from the photo into the iptc db table"
15108
  msgstr ""
15109
 
15110
+ #: wppa-settings-autosave.php:8712
15111
  msgid ""
15112
  "You will need this if you enabled the display of iptc data in Table II-B17 "
15113
  "or if you use it in the photo descriptions."
15114
  msgstr ""
15115
 
15116
+ #: wppa-settings-autosave.php:8719
15117
  msgid "Save EXIF data"
15118
  msgstr ""
15119
 
15120
+ #: wppa-settings-autosave.php:8720
15121
  msgid "Store the exif data from the photo into the exif db table"
15122
  msgstr ""
15123
 
15124
+ #: wppa-settings-autosave.php:8721
15125
  msgid ""
15126
  "You will need this if you enabled the display of exif data in Table II-B18 "
15127
  "or if you use it in the photo descriptions."
15128
  msgstr ""
15129
 
15130
+ #: wppa-settings-autosave.php:8728
15131
  msgid "Max EXIF tag array size"
15132
  msgstr ""
15133
 
15134
+ #: wppa-settings-autosave.php:8729
15135
  msgid "Truncate array tags to ..."
15136
  msgstr ""
15137
 
15138
+ #: wppa-settings-autosave.php:8730
15139
  msgid "A value of 0 disables this feature"
15140
  msgstr ""
15141
 
15142
+ #: wppa-settings-autosave.php:8732
15143
  msgid "elements"
15144
  msgstr ""
15145
 
15146
+ #: wppa-settings-autosave.php:8737
15147
  msgid "Import Create page"
15148
  msgstr ""
15149
 
15150
+ #: wppa-settings-autosave.php:8738
15151
  msgid "Create wp page when a directory to album is imported."
15152
  msgstr ""
15153
 
15154
+ #: wppa-settings-autosave.php:8739
15155
  msgid ""
15156
  "As soon as an album is created when a directory is imported, a wp page is "
15157
  "made that displays the album content."
15158
  msgstr ""
15159
 
15160
+ #: wppa-settings-autosave.php:8747
15161
  msgid "Page content"
15162
  msgstr ""
15163
 
15164
+ #: wppa-settings-autosave.php:8748
15165
  msgid "The content of the page. Must contain <b>w#album</b>"
15166
  msgstr ""
15167
 
15168
+ #: wppa-settings-autosave.php:8749
15169
  msgid ""
15170
  "The content of the page. Note: it must contain w#album. This will be "
15171
  "replaced by the album number in the generated shortcode."
15172
  msgstr ""
15173
 
15174
+ #: wppa-settings-autosave.php:8757
15175
  msgid "Page type"
15176
  msgstr ""
15177
 
15178
+ #: wppa-settings-autosave.php:8758
15179
  msgid "Select the type of page to create."
15180
  msgstr ""
15181
 
15182
+ #: wppa-settings-autosave.php:8762
15183
  msgid "Post"
15184
  msgstr ""
15185
 
15186
+ #: wppa-settings-autosave.php:8769
15187
  msgid "Page status"
15188
  msgstr ""
15189
 
15190
+ #: wppa-settings-autosave.php:8770
15191
  msgid "Select the initial status of the page."
15192
  msgstr ""
15193
 
15194
+ #: wppa-settings-autosave.php:8774
15195
  msgid "Published"
15196
  msgstr ""
15197
 
15198
+ #: wppa-settings-autosave.php:8774
15199
  msgid "Draft"
15200
  msgstr ""
15201
 
15202
+ #: wppa-settings-autosave.php:8782
15203
  msgid "Permalink root"
15204
  msgstr ""
15205
 
15206
+ #: wppa-settings-autosave.php:8783
15207
  msgid "The name of the root for the photofile ermalink structure."
15208
  msgstr ""
15209
 
15210
+ #: wppa-settings-autosave.php:8784
15211
  msgid ""
15212
  "Choose a convenient name like \"albums\" or so; this will be the name of a "
15213
  "folder inside .../wp-content/. Make sure you choose a unique name"
15214
  msgstr ""
15215
 
15216
+ #: wppa-settings-autosave.php:8792
15217
  msgid "Import parent check"
15218
  msgstr ""
15219
 
15220
+ #: wppa-settings-autosave.php:8793
15221
  msgid "On import dirs to albums: keep dir tree as albums."
15222
  msgstr ""
15223
 
15224
+ #: wppa-settings-autosave.php:8794
15225
  msgid ""
15226
  "Untick only if all your albums have unique names. Then: additional photos "
15227
  "may be ftp'd to toplevel depot subdirs."
15228
  msgstr ""
15229
 
15230
+ #: wppa-settings-autosave.php:8801
15231
  msgid "IPTC need utf8 conversion"
15232
  msgstr ""
15233
 
15234
+ #: wppa-settings-autosave.php:8802
15235
  msgid "This setting converts iso to utf8 in iptc text."
15236
  msgstr ""
15237
 
15238
+ #: wppa-settings-autosave.php:8803
15239
  msgid "Untick if you have funny characters in iptc data"
15240
  msgstr ""
15241
 
15242
+ #: wppa-settings-autosave.php:8810
15243
  msgid "Keep dir to album files"
15244
  msgstr ""
15245
 
15246
+ #: wppa-settings-autosave.php:8811
15247
  msgid "Keep imported files after dir to album import"
15248
  msgstr ""
15249
 
15250
+ #: wppa-settings-autosave.php:8820
15251
  msgid "Other plugins related settings"
15252
  msgstr ""
15253
 
15254
+ #: wppa-settings-autosave.php:8822
15255
  msgid "Foreign shortcodes general"
15256
  msgstr ""
15257
 
15258
+ #: wppa-settings-autosave.php:8823
15259
  msgid "Enable foreign shortcodes in album names, albums desc and photo names"
15260
  msgstr ""
15261
 
15262
+ #: wppa-settings-autosave.php:8831
15263
  msgid "Foreign shortcodes fullsize"
15264
  msgstr ""
15265
 
15266
+ #: wppa-settings-autosave.php:8832
15267
  msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
15268
  msgstr ""
15269
 
15270
+ #: wppa-settings-autosave.php:8833 wppa-settings-autosave.php:8844
15271
  msgid ""
15272
  "When checked, you can use shortcodes from other plugins in the description "
15273
  "of photos."
15274
  msgstr ""
15275
 
15276
+ #: wppa-settings-autosave.php:8834
15277
  msgid "The shortcodes will be expanded in the descriptions of fullsize images."
15278
  msgstr ""
15279
 
15280
+ #: wppa-settings-autosave.php:8835 wppa-settings-autosave.php:8846
15281
  msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
15282
  msgstr ""
15283
 
15284
+ #: wppa-settings-autosave.php:8842
15285
  msgid "Foreign shortcodes thumbnails"
15286
  msgstr ""
15287
 
15288
+ #: wppa-settings-autosave.php:8843
15289
  msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
15290
  msgstr ""
15291
 
15292
+ #: wppa-settings-autosave.php:8845
15293
  msgid ""
15294
  "The shortcodes will be expanded in the descriptions of thumbnail images."
15295
  msgstr ""
15296
 
15297
+ #: wppa-settings-autosave.php:8853
15298
  msgid "Lightbox keyname"
15299
  msgstr ""
15300
 
15301
+ #: wppa-settings-autosave.php:8854
15302
  msgid "The identifier of lightbox."
15303
  msgstr ""
15304
 
15305
+ #: wppa-settings-autosave.php:8855
15306
  msgid ""
15307
  "If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
15308
  "lbox-id here."
15309
  msgstr ""
15310
 
15311
+ #: wppa-settings-autosave.php:8862
15312
  msgid "myCRED / Cube Points: Comment"
15313
  msgstr ""
15314
 
15315
+ #: wppa-settings-autosave.php:8863
15316
  msgid "Number of points for giving a comment"
15317
  msgstr ""
15318
 
15319
+ #: wppa-settings-autosave.php:8864 wppa-settings-autosave.php:8873
15320
+ #: wppa-settings-autosave.php:8882 wppa-settings-autosave.php:8891
15321
  msgid "This setting requires the plugin myCRED or Cube Points"
15322
  msgstr ""
15323
 
15324
+ #: wppa-settings-autosave.php:8866 wppa-settings-autosave.php:8875
15325
  msgid "points per comment"
15326
  msgstr ""
15327
 
15328
+ #: wppa-settings-autosave.php:8871
15329
  msgid "myCRED / Cube Points: Appr Comment"
15330
  msgstr ""
15331
 
15332
+ #: wppa-settings-autosave.php:8872
15333
  msgid "Number of points for receiving an approved comment"
15334
  msgstr ""
15335
 
15336
+ #: wppa-settings-autosave.php:8880
15337
  msgid "myCRED / Cube Points: Rating"
15338
  msgstr ""
15339
 
15340
+ #: wppa-settings-autosave.php:8881
15341
  msgid "Number of points for a rating vote"
15342
  msgstr ""
15343
 
15344
+ #: wppa-settings-autosave.php:8884
15345
  msgid "points per vote"
15346
  msgstr ""
15347
 
15348
+ #: wppa-settings-autosave.php:8889
15349
  msgid "myCRED / Cube Points: Upload"
15350
  msgstr ""
15351
 
15352
+ #: wppa-settings-autosave.php:8890
15353
  msgid "Number of points for a successfull frontend upload"
15354
  msgstr ""
15355
 
15356
+ #: wppa-settings-autosave.php:8893
15357
  msgid "points per upload"
15358
  msgstr ""
15359
 
15360
+ #: wppa-settings-autosave.php:8898
15361
  msgid "Use SCABN"
15362
  msgstr ""
15363
 
15364
+ #: wppa-settings-autosave.php:8899
15365
  msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
15366
  msgstr ""
15367
 
15368
+ #: wppa-settings-autosave.php:8900
15369
  msgid ""
15370
  "If checked, the shortcode to use for the \"add to cart\" button in photo "
15371
  "descriptions is [cart ...]"
15372
  msgstr ""
15373
 
15374
+ #: wppa-settings-autosave.php:8901
15375
  msgid ""
15376
  "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
15377
  msgstr ""
15378
 
15379
+ #: wppa-settings-autosave.php:8902
15380
  msgid "The shortcode for the check-out page is still [scabn]"
15381
  msgstr ""
15382
 
15383
+ #: wppa-settings-autosave.php:8903
15384
  msgid ""
15385
  "The arguments are the same, the defaults are: name = photoname, price = 0.01."
15386
  msgstr ""
15387
 
15388
+ #: wppa-settings-autosave.php:8904
15389
  msgid ""
15390
  "Supplying the price should be sufficient; supply a name only when it differs "
15391
  "from the photo name."
15392
  msgstr ""
15393
 
15394
+ #: wppa-settings-autosave.php:8905
15395
  msgid "This shortcode handler will also work with Ajax enabled."
15396
  msgstr ""
15397
 
15398
+ #: wppa-settings-autosave.php:8906
15399
  msgid ""
15400
  "Using this interface makes sure that the item urls and callback action urls "
15401
  "are correct."
15402
  msgstr ""
15403
 
15404
+ #: wppa-settings-autosave.php:8913
15405
  msgid "Use CM Tooltip Glossary"
15406
  msgstr ""
15407
 
15408
+ #: wppa-settings-autosave.php:8914
15409
  msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
15410
  msgstr ""
15411
 
15412
+ #: wppa-settings-autosave.php:8915
15413
  msgid ""
15414
  "You MUST set Table IV-A13: Defer javascript, also if you do not want this "
15415
  "plugin to act on album and photo descriptions!"
15416
  msgstr ""
15417
 
15418
+ #: wppa-settings-autosave.php:8923
15419
  msgid "External services related settings and actions."
15420
  msgstr ""
15421
 
15422
+ #: wppa-settings-autosave.php:8925
15423
  msgid "QR Code widget size"
15424
  msgstr ""
15425
 
15426
+ #: wppa-settings-autosave.php:8926
15427
  msgid "The size of the QR code display."
15428
  msgstr ""
15429
 
15430
+ #: wppa-settings-autosave.php:8934
15431
  msgid "QR color"
15432
  msgstr ""
15433
 
15434
+ #: wppa-settings-autosave.php:8935
15435
  msgid "The display color of the qr code (dark)"
15436
  msgstr ""
15437
 
15438
+ #: wppa-settings-autosave.php:8936
15439
  msgid "This color MUST be given in hexadecimal format!"
15440
  msgstr ""
15441
 
15442
+ #: wppa-settings-autosave.php:8943
15443
  msgid "QR background color"
15444
  msgstr ""
15445
 
15446
+ #: wppa-settings-autosave.php:8944
15447
  msgid "The background color of the qr code (light)"
15448
  msgstr ""
15449
 
15450
+ #: wppa-settings-autosave.php:8952
15451
  msgid "CDN Service"
15452
  msgstr ""
15453
 
15454
+ #: wppa-settings-autosave.php:8953
15455
  msgid "Select a CDN Service you want to use."
15456
  msgstr ""
15457
 
15458
+ #: wppa-settings-autosave.php:8956
15459
  msgid "Cloudinary in maintenance mode"
15460
  msgstr ""
15461
 
15462
+ #: wppa-settings-autosave.php:8966
15463
  msgid "Cloud name"
15464
  msgstr ""
15465
 
15466
+ #: wppa-settings-autosave.php:8975
15467
  msgid "API key"
15468
  msgstr ""
15469
 
15470
+ #: wppa-settings-autosave.php:8984
15471
  msgid "API secret"
15472
  msgstr ""
15473
 
15474
+ #: wppa-settings-autosave.php:8993
15475
  msgid "Delete all"
15476
  msgstr ""
15477
 
15478
+ #: wppa-settings-autosave.php:8994
15479
  msgid "Deletes them all !!!"
15480
  msgstr ""
15481
 
15482
+ #: wppa-settings-autosave.php:9002
15483
  msgid "Delete derived images"
15484
  msgstr ""
15485
 
15486
+ #: wppa-settings-autosave.php:9003
15487
  msgid "Deletes all derived images !!!"
15488
  msgstr ""
15489
 
15490
+ #: wppa-settings-autosave.php:9011
15491
  msgid "Max lifetime"
15492
  msgstr ""
15493
 
15494
+ #: wppa-settings-autosave.php:9012
15495
  msgid "Old images from local server, new images from Cloudinary."
15496
  msgstr ""
15497
 
15498
+ #: wppa-settings-autosave.php:9013
15499
  msgid ""
15500
  "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
15501
  msgstr ""
15502
 
15503
+ #: wppa-settings-autosave.php:9015
15504
  msgid "Forever"
15505
  msgstr ""
15506
 
15507
+ #: wppa-settings-autosave.php:9046
15508
  msgid "Cloudinary usage"
15509
  msgstr ""
15510
 
15511
+ #: wppa-settings-autosave.php:9082
15512
  msgid "Cloudinary usage data not available"
15513
  msgstr ""
15514
 
15515
+ #: wppa-settings-autosave.php:9086
15516
  msgid "Cloudinary routines not installed."
15517
  msgstr ""
15518
 
15519
+ #: wppa-settings-autosave.php:9097
15520
  msgid "Cloudinary"
15521
  msgstr ""
15522
 
15523
+ #: wppa-settings-autosave.php:9098
15524
  msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
15525
  msgstr ""
15526
 
15527
+ #: wppa-settings-autosave.php:9107
15528
  msgid "GPX Implementation"
15529
  msgstr ""
15530
 
15531
+ #: wppa-settings-autosave.php:9108
15532
  msgid "The way the maps are produced."
15533
  msgstr ""
15534
 
15535
+ #: wppa-settings-autosave.php:9109
15536
  msgid "Select the way the maps are produced."
15537
  msgstr ""
15538
 
15539
+ #: wppa-settings-autosave.php:9110
15540
  msgid ""
15541
  "When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
15542
  msgstr ""
15543
 
15544
+ #: wppa-settings-autosave.php:9111
15545
  msgid ""
15546
  "When using WPPA+ Embedded code, you can use Ajax, but there are less display "
15547
  "options."
15548
  msgstr ""
15549
 
15550
+ #: wppa-settings-autosave.php:9113
15551
  msgid "WPPA+ Embedded code"
15552
  msgstr ""
15553
 
15554
+ #: wppa-settings-autosave.php:9113
15555
  msgid "Google maps GPX viewer plugin"
15556
  msgstr ""
15557
 
15558
+ #: wppa-settings-autosave.php:9121
15559
  msgid "Map height"
15560
  msgstr ""
15561
 
15562
+ #: wppa-settings-autosave.php:9122
15563
  msgid "The height of the map display."
15564
  msgstr ""
15565
 
15566
+ #: wppa-settings-autosave.php:9130
15567
  msgid "Google maps API key"
15568
  msgstr ""
15569
 
15570
+ #: wppa-settings-autosave.php:9131
15571
  msgid "Enter your Google maps api key here if you have one."
15572
  msgstr ""
15573
 
15574
+ #: wppa-settings-autosave.php:9139
15575
  msgid "GPX Shortcode"
15576
  msgstr ""
15577
 
15578
+ #: wppa-settings-autosave.php:9140
15579
  msgid "The shortcode to be used for the gpx feature."
15580
  msgstr ""
15581
 
15582
+ #: wppa-settings-autosave.php:9141
15583
  msgid ""
15584
  "Enter / modify the shortcode to be generated for the gpx plugin. It must "
15585
  "contain w#lat and w#lon as placeholders for the lattitude and longitude."
15586
  msgstr ""
15587
 
15588
+ #: wppa-settings-autosave.php:9142
15589
  msgid "This item is required for using Google maps GPX viewer plugin only"
15590
  msgstr ""
15591
 
15592
+ #: wppa-settings-autosave.php:9149
15593
  msgid "Fotomoto"
15594
  msgstr ""
15595
 
15596
+ #: wppa-settings-autosave.php:9150
15597
  msgid "Yes, we use Fotomoto on this site. Read the help text!"
15598
  msgstr ""
15599
 
15600
+ #: wppa-settings-autosave.php:9151
15601
  msgid "In order to function properly:"
15602
  msgstr ""
15603
 
15604
+ #: wppa-settings-autosave.php:9152
15605
  msgid "1. Get yourself a Fotomoto account."
15606
  msgstr ""
15607
 
15608
+ #: wppa-settings-autosave.php:9153
15609
  msgid ""
15610
  "2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
15611
  "the \"Use API Mode:\" checkbox."
15612
  msgstr ""
15613
 
15614
+ #: wppa-settings-autosave.php:9154
15615
  msgid "Note: Do NOT Disable the Custom box in Table II-B14."
15616
  msgstr ""
15617
 
15618
+ #: wppa-settings-autosave.php:9155
15619
  msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
15620
  msgstr ""
15621
 
15622
+ #: wppa-settings-autosave.php:9163
15623
  msgid "Fotomoto fontsize"
15624
  msgstr ""
15625
 
15626
+ #: wppa-settings-autosave.php:9164
15627
  msgid "Fontsize for the Fotomoto toolbar."
15628
  msgstr ""
15629
 
15630
+ #: wppa-settings-autosave.php:9165
15631
  msgid ""
15632
  "If you set it here, it overrules a possible setting for font-size in ."
15633
  "FotomotoToolbarClass on the Fotomoto dashboard."
15634
  msgstr ""
15635
 
15636
+ #: wppa-settings-autosave.php:9173
15637
  msgid "Hide toolbar on running slideshows"
15638
  msgstr ""
15639
 
15640
+ #: wppa-settings-autosave.php:9174
15641
  msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
15642
  msgstr ""
15643
 
15644
+ #: wppa-settings-autosave.php:9181
15645
  msgid "Fotomoto minwidth"
15646
  msgstr ""
15647
 
15648
+ #: wppa-settings-autosave.php:9182
15649
  msgid "Minimum width to display Fotomoto toolbar."
15650
  msgstr ""
15651
 
15652
+ #: wppa-settings-autosave.php:9183
15653
  msgid ""
15654
  "The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
15655
  msgstr ""
15656
 
15657
+ #: wppa-settings-autosave.php:9208
15658
  msgid "Table X:"
15659
  msgstr ""
15660
 
15661
+ #: wppa-settings-autosave.php:9208
15662
  msgid "IPTC Configuration:"
15663
  msgstr ""
15664
 
15665
+ #: wppa-settings-autosave.php:9209
15666
  msgid "This table defines the IPTC configuration"
15667
  msgstr ""
15668
 
15669
+ #: wppa-settings-autosave.php:9240 wppa-settings-autosave.php:9308
15670
  msgid "Display"
15671
  msgstr ""
15672
 
15673
+ #: wppa-settings-autosave.php:9240 wppa-settings-autosave.php:9308
15674
  msgid "Hide"
15675
  msgstr ""
15676
 
15677
+ #: wppa-settings-autosave.php:9270
15678
  msgid "Table XI:"
15679
  msgstr ""
15680
 
15681
+ #: wppa-settings-autosave.php:9270
15682
  msgid "EXIF Configuration:"
15683
  msgstr ""
15684
 
15685
+ #: wppa-settings-autosave.php:9271
15686
  msgid "This table defines the EXIF configuration"
15687
  msgstr ""
15688
 
15689
+ #: wppa-settings-autosave.php:9294
15690
  msgid ""
15691
  "Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
15692
  "enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to "
15693
  "add <b>'--enable-exif'</b> to the php <b>Configure Command</b>."
15694
  msgstr ""
15695
 
15696
+ #: wppa-settings-autosave.php:9338
15697
  msgid "Table XII:"
15698
  msgstr ""
15699
 
15700
+ #: wppa-settings-autosave.php:9338
15701
  msgid "WPPA+ and PHP Configuration:"
15702
  msgstr ""
15703
 
15704
+ #: wppa-settings-autosave.php:9339
15705
  msgid ""
15706
  "This table lists all WPPA+ constants and PHP server configuration parameters "
15707
  "and is read only"
15708
  msgstr ""
15709
 
15710
+ #: wppa-settings-autosave.php:9354
15711
  msgid "Value"
15712
  msgstr ""
15713
 
15714
+ #: wppa-settings-autosave.php:9360
15715
  msgid "Albums db table name."
15716
  msgstr ""
15717
 
15718
+ #: wppa-settings-autosave.php:9372
15719
  msgid "Photos db table name."
15720
  msgstr ""
15721
 
15722
+ #: wppa-settings-autosave.php:9384
15723
  msgid "Rating db table name."
15724
  msgstr ""
15725
 
15726
+ #: wppa-settings-autosave.php:9396
15727
  msgid "Comments db table name."
15728
  msgstr ""
15729
 
15730
+ #: wppa-settings-autosave.php:9408
15731
  msgid "IPTC db table name."
15732
  msgstr ""
15733
 
15734
+ #: wppa-settings-autosave.php:9420
15735
  msgid "EXIF db table name."
15736
  msgstr ""
15737
 
15738
+ #: wppa-settings-autosave.php:9432 wppa-settings-autosave.php:9444
15739
  msgid "Index db table name."
15740
  msgstr ""
15741
 
15742
+ #: wppa-settings-autosave.php:9456
15743
  msgid "Plugins main file name."
15744
  msgstr ""
15745
 
15746
+ #: wppa-settings-autosave.php:9462
15747
  msgid "ABSPATH windows proof"
15748
  msgstr ""
15749
 
15750
+ #: wppa-settings-autosave.php:9468
15751
  msgid "Path to plugins directory."
15752
  msgstr ""
15753
 
15754
+ #: wppa-settings-autosave.php:9474
15755
  msgid "Plugins directory name."
15756
  msgstr ""
15757
 
15758
+ #: wppa-settings-autosave.php:9480
15759
  msgid "Plugins directory url."
15760
  msgstr ""
15761
 
15762
+ #: wppa-settings-autosave.php:9486
15763
  msgid "The relative upload directory."
15764
  msgstr ""
15765
 
15766
+ #: wppa-settings-autosave.php:9492
15767
  msgid "The upload directory path."
15768
  msgstr ""
15769
 
15770
+ #: wppa-settings-autosave.php:9498
15771
  msgid "The upload directory url."
15772
  msgstr ""
15773
 
15774
+ #: wppa-settings-autosave.php:9504
15775
  msgid "The relative depot directory."
15776
  msgstr ""
15777
 
15778
+ #: wppa-settings-autosave.php:9510
15779
  msgid "The depot directory path."
15780
  msgstr ""
15781
 
15782
+ #: wppa-settings-autosave.php:9516
15783
  msgid "The depot directory url."
15784
  msgstr ""
15785
 
15786
+ #: wppa-settings-autosave.php:9522
15787
  msgid "The path to wp-content."
15788
  msgstr ""
15789
 
15790
+ #: wppa-settings-autosave.php:9528
15791
  msgid "WP Content url."
15792
  msgstr ""
15793
 
15794
+ #: wppa-settings-autosave.php:9534
15795
  msgid "WP Base upload dir."
15796
  msgstr ""
15797
 
15798
+ #: wppa-settings-autosave.php:9554
15799
  #, php-format
15800
  msgid "<br />Memory used on this page: %6.2f Mb."
15801
  msgstr ""
15802
 
15803
+ #: wppa-settings-autosave.php:9555
15804
  #, php-format
15805
  msgid "<br />There are %d settings and %d runtime parameters."
15806
  msgstr ""
15807
 
15808
+ #: wppa-settings-autosave.php:9785 wppa-settings-autosave.php:9805
15809
+ #: wppa-settings-autosave.php:9826
15810
  msgid "Warning!"
15811
  msgstr ""
15812
 
15813
+ #: wppa-settings-autosave.php:9806 wppa-settings-autosave.php:9826
15814
  msgid "Please read the help"
15815
  msgstr ""
15816
 
15817
+ #: wppa-settings-autosave.php:10037
15818
  msgid "Show!"
15819
  msgstr ""
15820
 
15821
+ #: wppa-settings-autosave.php:10057
15822
  msgid "Not done yet"
15823
  msgstr ""
15824
 
15825
+ #: wppa-settings-autosave.php:10064
15826
  msgid "Start!"
15827
  msgstr ""
15828
 
15829
+ #: wppa-settings-autosave.php:10069
15830
  msgid "Locked!"
15831
  msgstr ""
15832
 
15833
+ #: wppa-settings-autosave.php:10100
15834
  msgid ""
15835
  "You can not have popup and lightbox on thumbnails at the same time. Uncheck "
15836
  "either Table IV-C8 or choose a different linktype in Table VI-2."
15837
  msgstr ""
15838
 
15839
+ #: wppa-settings-autosave.php:10103
15840
  msgid ""
15841
  "It is important that you select a page that contains at least [wppa][/wppa]."
15842
  msgstr ""
15843
 
15844
+ #: wppa-settings-autosave.php:10104
15845
  msgid ""
15846
  "If you ommit this, the link will not work at all or simply refresh the "
15847
  "(home)page."
15894
  msgid "Enter new tags:"
15895
  msgstr ""
15896
 
15897
+ #: wppa-setup.php:1115
15898
  msgid "Vote for me!"
15899
  msgstr ""
15900
 
15901
+ #: wppa-setup.php:1116
15902
  msgid "Voted for me"
15903
  msgstr ""
15904
 
15905
+ #: wppa-setup.php:1466
15906
  msgid "NEW"
15907
  msgstr ""
15908
 
15909
+ #: wppa-setup.php:1468
15910
  msgid "MODIFIED"
15911
  msgstr ""
15912
 
15913
+ #: wppa-setup.php:1518
15914
  msgid "Search in current section"
15915
  msgstr ""
15916
 
15917
+ #: wppa-setup.php:1519
15918
  msgid "Search in current results"
15919
  msgstr ""
15920
 
15921
+ #: wppa-setup.php:1592
15922
  msgid "Type your custom url here"
15923
  msgstr ""
15924
 
15925
+ #: wppa-setup.php:1593
15926
  msgid "Type the title here"
15927
  msgstr ""
15928
 
15929
+ #: wppa-setup.php:1612 wppa-topten-widget.php:13 wppa-topten-widget.php:48
15930
  #: wppa-topten-widget.php:298
15931
  msgid "Top Ten Photos"
15932
  msgstr ""
15933
 
15934
+ #: wppa-setup.php:1615 wppa-thumbnail-widget.php:13
15935
  #: wppa-thumbnail-widget.php:166
15936
  msgid "Thumbnail Photos"
15937
  msgstr ""
15938
 
15939
+ #: wppa-setup.php:1618
15940
  msgid "Search photos"
15941
  msgstr ""
15942
 
15943
+ #: wppa-setup.php:1663
15944
  msgid ""
15945
  "The uploads directory does not exist, please do a regular WP upload first."
15946
  msgstr ""
15947
 
15948
+ #: wppa-setup.php:1667
15949
  msgid "Successfully created uploads directory."
15950
  msgstr ""
15951
 
15952
+ #: wppa-setup.php:1678
15953
  msgid "Could not create the wppa directory."
15954
  msgstr ""
15955
 
15956
+ #: wppa-setup.php:1682
15957
  msgid "Successfully created wppa directory."
15958
  msgstr ""
15959
 
15960
+ #: wppa-setup.php:1692
15961
  msgid "Could not create the wppa thumbs directory."
15962
  msgstr ""
15963
 
15964
+ #: wppa-setup.php:1696
15965
  msgid "Successfully created wppa thumbs directory."
15966
  msgstr ""
15967
 
15968
+ #: wppa-setup.php:1706
15969
  msgid "Could not create the wppa watermarks directory."
15970
  msgstr ""
15971
 
15972
+ #: wppa-setup.php:1710
15973
  msgid "Successfully created wppa watermarks directory."
15974
  msgstr ""
15975
 
15976
+ #: wppa-setup.php:1720
15977
  msgid "Could not create the wppa fonts directory."
15978
  msgstr ""
15979
 
15980
+ #: wppa-setup.php:1724
15981
  msgid "Successfully created wppa fonts directory."
15982
  msgstr ""
15983
 
15984
+ #: wppa-setup.php:1736
15985
  msgid "Unable to create depot directory."
15986
  msgstr ""
15987
 
15988
+ #: wppa-setup.php:1740
15989
  msgid "Successfully created wppa depot directory."
15990
  msgstr ""
15991
 
15992
+ #: wppa-setup.php:1751
15993
  msgid "Unable to create user depot directory"
15994
  msgstr ""
15995
 
15996
+ #: wppa-setup.php:1755
15997
  msgid "Successfully created wppa user depot directory."
15998
  msgstr ""
15999
 
16000
+ #: wppa-setup.php:1765
16001
  msgid "Unable to create temp directory"
16002
  msgstr ""
16003
 
16004
+ #: wppa-setup.php:1769
16005
  msgid "Successfully created temp directory."
16006
  msgstr ""
16007
 
16008
+ #: wppa-setup.php:1777
16009
  #, php-format
16010
  msgid ""
16011
  "Ask your administrator to give you more rights, or create <b>%s</b> manually "
16012
  "using an FTP program."
16013
  msgstr ""
16014
 
16015
+ #: wppa-setup.php:1804
16016
  msgid "Default photo album for"
16017
  msgstr "Standard fotoalbum for"
16018
 
17143
  msgid "Rating: %s"
17144
  msgstr ""
17145
 
17146
+ #: wppa-utils.php:941 wppa-utils.php:952 wppa-utils.php:963
17147
  msgid "Notification of inappropriate image"
17148
  msgstr ""
17149
 
17150
+ #: wppa-utils.php:942 wppa-utils.php:953 wppa-utils.php:964
17151
  #, php-format
17152
  msgid "Photo %s has been marked as inappropriate by %s different visitors."
17153
  msgstr ""
17154
 
17155
+ #: wppa-utils.php:954
17156
  msgid "The status has been changed to 'pending'."
17157
  msgstr ""
17158
 
17159
+ #: wppa-utils.php:965
17160
  msgid "It has been deleted."
17161
  msgstr ""
17162
 
17163
+ #: wppa-utils.php:1032
17164
  msgid "Your photo has a new approved comment"
17165
  msgstr ""
17166
 
17167
+ #: wppa-utils.php:1035
17168
  msgid "From:"
17169
  msgstr ""
17170
 
17171
+ #: wppa-utils.php:1043
17172
  msgid "Approved comment on photo"
17173
  msgstr ""
17174
 
17175
+ #: wppa-utils.php:1090
17176
  #, php-format
17177
  msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
17178
  msgstr ""
17179
 
17180
+ #: wppa-utils.php:1095
17181
  #, php-format
17182
  msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
17183
  msgstr ""
17184
 
17185
+ #: wppa-utils.php:1103
17186
  #, php-format
17187
  msgid ""
17188
  "This message is automaticly generated at %s. It is useless to respond to it."
17189
  msgstr ""
17190
 
17191
+ #: wppa-utils.php:1324
17192
  #, php-format
17193
  msgid "Time out after processing %s items."
17194
  msgstr ""
17195
 
17196
+ #: wppa-utils.php:1327 wppa-utils.php:1331
17197
  #, php-format
17198
  msgid "Time out after processing %s items. Please restart this operation"
17199
  msgstr ""
17200
 
17201
+ #: wppa-utils.php:2391
17202
  msgid "There are no ratings between"
17203
  msgstr ""
17204
 
17249
  #. Author URI of the plugin/theme
17250
  msgid "http://wppa.opajaap.nl/"
17251
  msgstr "http://wppa.opajaap.nl/"
 
 
 
 
 
 
languages/wp-photo-album-plus-de_DE.mo CHANGED
Binary file
languages/wp-photo-album-plus-de_DE.po CHANGED
@@ -1,15 +1,15 @@
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"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.8\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: wppa.php\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -30,7 +30,7 @@ msgstr "Seiten:"
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
 
@@ -69,7 +69,7 @@ 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
 
@@ -212,15 +212,15 @@ msgstr "Nicht unterstützten MIME-Typ begegnet:"
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"
221
  msgstr ""
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
@@ -230,19 +230,19 @@ msgstr "Konnte Foto nicht in db einfügen."
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"
@@ -254,10 +254,10 @@ 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
@@ -265,16 +265,16 @@ 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
@@ -282,7 +282,7 @@ 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"
@@ -293,8 +293,8 @@ 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"
@@ -302,7 +302,7 @@ msgstr "Kommentare"
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"
@@ -311,44 +311,44 @@ msgstr "Documentation"
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"
335
 
336
  #: wppa-adminbar.php:110 wppa-album-navigator-widget.php:41
337
  #: wppa-album-navigator-widget.php:88 wppa-album-widget.php:47
338
  #, fuzzy
339
  msgid "Photo Albums"
340
- msgstr "Foto Alben"
341
 
342
  #: wppa-admins-choice-widget.php:13
343
  #, fuzzy
344
  msgid "Admins choice of photos"
345
- msgstr "Admins Auswahl an Fotos"
346
 
347
  #: wppa-admins-choice-widget.php:14 wppa-admins-choice-widget.php:34
348
  #: wppa-admins-choice-widget.php:73
349
  #, fuzzy
350
  msgid "Admins Choice"
351
- msgstr "Admins-Wahl"
352
 
353
  #: wppa-admins-choice-widget.php:44
354
  #, fuzzy
@@ -358,7 +358,7 @@ msgstr "Diese Funktion ist nicht aktiviert."
358
  #: wppa-admins-choice-widget.php:68
359
  #, fuzzy
360
  msgid "Please enable this feature in Table IV-A27"
361
- msgstr "Bitte aktivieren Sie diese Funktion in 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
@@ -380,14 +380,14 @@ msgid ""
380
  "#070\" >Remark</b> field keeps you informed on the actions taken at the "
381
  "background."
382
  msgstr ""
383
- "Alle Änderungen werden sofort auf dem Server aktualisiert. <b style=\"color:"
384
- "#070\">Das Bemerkungsfeld</b> informiert Sie über die Maßnahmen, die im "
385
  "Hintergrund."
386
 
387
  #: wppa-ajax.php:177
388
  #, fuzzy
389
  msgid "Exit & Refresh"
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
@@ -398,7 +398,7 @@ msgstr "Sicherheitsfehler"
398
  #: wppa-ajax.php:284 wppa-ajax.php:340
399
  #, fuzzy
400
  msgid "You do not have the rights to moderate photos this way"
401
- msgstr "Sie haben nicht die Rechte an Fotos auf diese Weise moderieren"
402
 
403
  #: wppa-ajax.php:300 wppa-ajax.php:1231 wppa-functions.php:2339
404
  #, fuzzy
@@ -408,7 +408,7 @@ msgstr "Foto Kommentar genehmigt"
408
  #: wppa-ajax.php:313
409
  #, fuzzy, php-format
410
  msgid "Failed to update stutus of photo %s"
411
- msgstr "Fehler beim Aktualisieren der Stutus Foto %s"
412
 
413
  #: wppa-ajax.php:313 wppa-ajax.php:320
414
  #, fuzzy
@@ -418,7 +418,7 @@ msgstr "Bitte aktualisieren Sie die Seite."
418
  #: wppa-ajax.php:320
419
  #, fuzzy, php-format
420
  msgid "Failed to update stutus of comment %s"
421
- msgstr "Fehler beim Aktualisieren der Stutus Kommentar %s"
422
 
423
  #: wppa-ajax.php:335 wppa-ajax.php:355
424
  #, fuzzy
@@ -428,22 +428,22 @@ msgstr "Foto entfernt"
428
  #: wppa-ajax.php:360
429
  #, fuzzy
430
  msgid "Comment removed"
431
- msgstr "Kommentar entfernt"
432
 
433
  #: wppa-ajax.php:361
434
  #, fuzzy
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"
442
 
443
  #: wppa-ajax.php:370
444
  #, fuzzy
445
  msgid "This feature is not enabled on this website"
446
- msgstr "Diese Funktion ist auf dieser Website nicht aktiviert."
447
 
448
  #: wppa-ajax.php:382
449
  #, fuzzy
@@ -458,22 +458,22 @@ msgstr "Konnte kein Archiv erstellen."
458
  #: wppa-ajax.php:403
459
  #, fuzzy, php-format
460
  msgid "Unable to create zip archive. code = %s"
461
- msgstr "Zip-Archiv erstellen nicht möglich. Code = %s"
462
 
463
  #: wppa-ajax.php:440
464
  #, fuzzy, php-format
465
  msgid "Only %s out of %s photos could be added to the zipfile"
466
- msgstr "Die ZIP-Datei kann nur %s von %s Fotos hinzugefügt werden"
467
 
468
  #: wppa-ajax.php:478
469
  #, 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"
477
 
478
  #: wppa-ajax.php:533
479
  #, fuzzy
@@ -488,7 +488,7 @@ msgstr "Leerer Dateiname"
488
  #: wppa-ajax.php:578
489
  #, fuzzy
490
  msgid "Unable to create tempdir"
491
- msgstr "Keine Tempdir erstellen"
492
 
493
  #: wppa-ajax.php:602
494
  #, fuzzy
@@ -498,18 +498,17 @@ msgstr "不明类型:"
498
  #: wppa-ajax.php:611
499
  #, fuzzy
500
  msgid "The photo does no longer exist"
501
- msgstr "Das Foto ist nicht mehr vorhanden"
502
 
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
510
  msgid "Maybe you opened the page too long ago to recognize you."
511
- msgstr ""
512
- "Vielleicht öffnete Sie vor allzu langer Zeit die Seite um Sie zu erkennen."
513
 
514
  #: wppa-ajax.php:645
515
  #, fuzzy
@@ -522,13 +521,13 @@ msgid ""
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
530
  msgid "However, this may not be reflected in the current pageview"
531
- msgstr "Jedoch kann dies nicht in der aktuellen Seitenzugriff niederschlagen"
532
 
533
  #: wppa-ajax.php:676
534
  #, fuzzy
@@ -538,7 +537,7 @@ msgstr "Foto wurde entfernt."
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
@@ -548,17 +547,17 @@ msgstr "Bitte geben Sie einen Kommentar ein."
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
@@ -575,26 +574,25 @@ msgid ""
575
  "you can refresh the page to see\n"
576
  "your vote became effective."
577
  msgstr ""
578
- "Bitte erläutern Sie Ihre Stimme in einem Kommentar.\n"
579
- "Ihre Stimme wird verworfen, wenn Sie dies nicht tun.\n"
580
- "\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
@@ -609,42 +607,42 @@ msgstr "Keine Bewertungen für dieses Foto."
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
@@ -656,27 +654,27 @@ msgstr[1] "%d Album aktualisiert"
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"
@@ -684,21 +682,21 @@ msgstr "Name"
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"
@@ -706,7 +704,7 @@ msgstr "Album Beschreibung eingeben"
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
@@ -723,7 +721,7 @@ msgstr "Titelbild"
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"
@@ -731,15 +729,15 @@ msgstr "Bildersortierung"
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"
@@ -764,7 +762,7 @@ msgstr "Benutzer \"%s\" nicht vorhanden"
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
@@ -774,32 +772,32 @@ msgstr "Hochladebegrenzung"
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
@@ -809,23 +807,22 @@ msgstr "Benutzerdefiniertes Feld aktualisiert."
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
@@ -835,57 +832,58 @@ msgstr "Fehler beim Aktualisieren der Status Kommentar #%s"
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
@@ -895,87 +893,87 @@ msgstr "Länge aktualisiert"
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
@@ -985,22 +983,22 @@ msgstr "Bildersortierung"
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
@@ -1010,9 +1008,9 @@ 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"
@@ -1030,7 +1028,7 @@ msgstr "Breite des Videos"
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
@@ -1045,18 +1043,17 @@ msgstr "<b>%s</b> von Video%s aktualisiert"
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
@@ -1071,32 +1068,33 @@ msgstr "Foto-Dateien aktualisiert."
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
@@ -1126,27 +1124,27 @@ msgstr "Thumbnail Größe"
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
@@ -1166,12 +1164,12 @@ msgstr "Anzahl der TopTen Fotos"
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
@@ -1181,28 +1179,28 @@ msgstr "Minimale Beschreibung Höhe"
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
@@ -1212,42 +1210,42 @@ msgstr "Popup-Größe"
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
@@ -1259,32 +1257,32 @@ msgstr "Deckkraft Wasserzeichen"
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"
@@ -1292,19 +1290,19 @@ msgstr "Max Durchführungszeit"
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"
@@ -1322,22 +1320,22 @@ msgstr "Slideonly max"
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
@@ -1357,7 +1355,7 @@ msgstr "Bewertungen gelöscht"
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
@@ -1367,7 +1365,7 @@ msgstr "Viewcounts gelöscht"
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
@@ -1377,12 +1375,12 @@ msgstr "IPTC-Daten gelöscht"
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
@@ -1392,17 +1390,17 @@ msgstr "EXIF-Daten gelöscht"
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
@@ -1410,55 +1408,55 @@ msgid ""
1410
  "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1411
  "#77bbff"
1412
  msgstr ""
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
@@ -1468,7 +1466,7 @@ msgstr "Benutzer \"%s\" nicht vorhanden"
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
@@ -1476,24 +1474,23 @@ msgid ""
1476
  "The content of the Custom box has been changed to display the Fotomoto "
1477
  "toolbar."
1478
  msgstr ""
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
@@ -1501,13 +1498,13 @@ msgid ""
1501
  "You must run Table VIII-A13 and VIII-A14 first before you can switch to "
1502
  "encrypted urls."
1503
  msgstr ""
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
@@ -1517,40 +1514,40 @@ msgstr "Tabelle IV-A4 wird ausgeschaltet."
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."
1541
  msgstr ""
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
@@ -1560,22 +1557,22 @@ msgstr "Ein Interner Fehler Ist Aufgetreten"
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"
1574
 
1575
  #: wppa-album-admin-autosave.php:37
1576
  #, fuzzy
1577
  msgid "Warning:"
1578
- msgstr "Achtung:"
1579
 
1580
  #: wppa-album-admin-autosave.php:37
1581
  #, fuzzy, php-format
@@ -1583,8 +1580,8 @@ msgid ""
1583
  "The uploads directory does not exist or is not writable by the server. "
1584
  "Please make sure that %s is writeable by the server."
1585
  msgstr ""
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
@@ -1595,32 +1592,32 @@ msgstr "Fotos verwalten"
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"
1611
 
1612
  #: wppa-album-admin-autosave.php:85 wppa-album-admin-autosave.php:92
1613
  #, fuzzy
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
 
@@ -1643,12 +1640,12 @@ msgstr "%s Punkte hinzugefügt"
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
@@ -1656,8 +1653,8 @@ msgid ""
1656
  "All modifications are instantly updated on the server, except for those that "
1657
  "require a button push."
1658
  msgstr ""
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
@@ -1665,18 +1662,18 @@ msgid ""
1665
  "The <b style=\"color:#070\" >Remark</b> fields keep you informed on the "
1666
  "actions taken at the background."
1667
  msgstr ""
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
@@ -1691,7 +1688,7 @@ msgstr "Album updaten"
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
@@ -1702,12 +1699,12 @@ msgstr "Album Beschreibung eingeben"
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
@@ -1729,12 +1726,12 @@ msgstr "Bearbeitet:"
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
@@ -1747,13 +1744,13 @@ msgid ""
1747
  "WARNING If you change the owner, you will no longer be able to modify this "
1748
  "album and upload or import photos to it!"
1749
  msgstr ""
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
@@ -1766,9 +1763,9 @@ msgid ""
1766
  "Album order # has only effect if you set the album sort order method to "
1767
  "<b>Order #</b> in the Photo Albums -> Settings screen.<br />"
1768
  msgstr ""
1769
- "Album bestellen # hat nur Auswirkungen, wenn Sie festlegen, dass das Album "
1770
- "sortieren Reihenfolge-Methode <b>bestellen #</b> in den Fotoalben-> "
1771
- "Bildschirm \"Einstellungen\".<br>"
1772
 
1773
  #: wppa-album-admin-autosave.php:360
1774
  #, fuzzy
@@ -1776,8 +1773,8 @@ msgid ""
1776
  "If you want to sort the albums by order #, enter / modify the order number "
1777
  "here."
1778
  msgstr ""
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
@@ -1790,8 +1787,8 @@ msgstr "Übergeordnetes Album"
1790
  msgid ""
1791
  "If this is a sub album, select the album in which this album will appear."
1792
  msgstr ""
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
@@ -1799,89 +1796,89 @@ 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
@@ -1889,13 +1886,13 @@ msgid ""
1889
  "The default setting can be changed in the <b>Photo Albums -> Settings</b> "
1890
  "page <b>Table IV-C1</b>."
1891
  msgstr ""
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
@@ -1905,17 +1902,17 @@ msgstr "Siehe Tabelle IV-D1"
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
@@ -1923,13 +1920,13 @@ msgid ""
1923
  "Specify the sequence order method to be used for the sub albums of this "
1924
  "album."
1925
  msgstr ""
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
@@ -1946,7 +1943,7 @@ msgstr "Verwenden Sie Alt dies:"
1946
  #: wppa-topten-widget.php:383 wppa-topten-widget.php:388
1947
  #, fuzzy
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
@@ -1964,7 +1961,7 @@ msgstr "nein"
1964
  #: wppa-topten-widget.php:382 wppa-topten-widget.php:387
1965
  #, fuzzy
1966
  msgid "yes"
1967
- msgstr "Ja"
1968
 
1969
  #: wppa-album-admin-autosave.php:477
1970
  #, fuzzy
@@ -1972,41 +1969,41 @@ msgid ""
1972
  "If set to <b>yes</b> The settings in <b>Table I-C1a,3a</b> and <b>4a</b> "
1973
  "apply rather than <b>I-C1,3</b> and <b>4</b>."
1974
  msgstr ""
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"
@@ -2017,8 +2014,8 @@ msgid ""
2017
  "The default cover type is the systems standard set in the <b>Photo Albums -> "
2018
  "Settings</b> page <b>Table IV-D6</b>."
2019
  msgstr ""
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
@@ -2037,46 +2034,46 @@ msgid ""
2037
  "Select the way the cover photos of this album are selected, or select a "
2038
  "single image."
2039
  msgstr ""
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"
@@ -2085,13 +2082,13 @@ msgstr "pro Jahr"
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
@@ -2106,7 +2103,7 @@ msgstr "Mehrere Kategorien mit Kommas trennen"
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 -"
@@ -2115,7 +2112,7 @@ msgstr "- Wähle -"
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
@@ -2128,8 +2125,8 @@ msgid ""
2128
  "Are you sure you want to inherit categories to all (grand)children of this "
2129
  "album?"
2130
  msgstr ""
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
@@ -2143,22 +2140,22 @@ msgstr ""
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
@@ -2170,76 +2167,76 @@ msgstr "Standardbild"
2170
  msgid ""
2171
  "Enter the tags that you want to be assigned to new photos in this album."
2172
  msgstr ""
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?"
2180
  msgstr ""
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?"
2188
  msgstr ""
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"
@@ -2250,8 +2247,8 @@ msgid ""
2250
  "If you select \"the link page with a clean url\", select an Auto Page of one "
2251
  "of the photos in this album."
2252
  msgstr ""
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
@@ -2259,8 +2256,8 @@ msgid ""
2259
  "If you select \"the link page with a clean url\", make sure you enter the "
2260
  "correct shortcode on the target page."
2261
  msgstr ""
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
@@ -2269,8 +2266,8 @@ msgstr ""
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"
@@ -2278,7 +2275,7 @@ msgstr "Dort sind keine Seiten verknüpft zu"
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
@@ -2286,8 +2283,9 @@ msgid ""
2286
  "If you want, you can link the title to a WP page in stead of the album's "
2287
  "content. If so, select the page the title links to."
2288
  msgstr ""
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
@@ -2300,8 +2298,8 @@ msgid ""
2300
  "If enabled, new photos will have their status set to the dat/time specified "
2301
  "here."
2302
  msgstr ""
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
@@ -2311,13 +2309,12 @@ msgstr "Sind Sie sicher, dass Sie alle Fotos in diesem Album planen möchten?"
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
@@ -2328,13 +2325,12 @@ msgstr "Reset-Bewertungen"
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
@@ -2344,12 +2340,12 @@ msgstr "Album ist voll"
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
@@ -2359,12 +2355,12 @@ msgstr "Hinweis:"
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
@@ -2381,8 +2377,8 @@ msgstr "Moderate Foto"
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"
@@ -2390,7 +2386,7 @@ msgstr "Album löschen"
2390
  #: wppa-album-admin-autosave.php:880 wppa-boxes-html.php:820
2391
  #: wppa-breadcrumb.php:288 wppa-breadcrumb.php:312 wppa-breadcrumb.php:342
2392
  #: wppa-breadcrumb.php:362 wppa-breadcrumb.php:456 wppa-breadcrumb.php:483
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
@@ -2411,7 +2407,7 @@ msgstr "Drücken Sie Löschen, um fortzufahren und zurück gehen Abbrechen."
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
@@ -2428,18 +2424,18 @@ msgstr "Löschen"
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"
2438
 
2439
  #: wppa-album-admin-autosave.php:927
2440
  #, fuzzy
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
@@ -2449,22 +2445,22 @@ msgstr "Alben verwalten"
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
@@ -2474,7 +2470,7 @@ msgstr "Alle ausklappen"
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
@@ -2487,25 +2483,25 @@ msgstr "ID"
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
@@ -2513,7 +2509,7 @@ msgstr "A/P/PM/S"
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
@@ -2521,14 +2517,14 @@ msgstr "Schnell-"
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
@@ -2541,22 +2537,22 @@ msgstr "Album konnte nicht erstellt werden"
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
@@ -2564,13 +2560,13 @@ msgid ""
2564
  "The following albums are ---separate--- and do not show up in the generic "
2565
  "album display"
2566
  msgstr ""
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
@@ -2578,9 +2574,9 @@ msgid ""
2578
  "Enter search words seperated by commas. Photos will meet all search words by "
2579
  "their names, descriptions, translated keywords and/or tags."
2580
  msgstr ""
2581
- "Suche Wörter getrennt durch Kommas eingeben. Fotos werden alle Suchbegriffe "
2582
- "durch ihre Namen, Beschreibungen, übersetzte Schlüsselwörter und/oder Tags "
2583
- "treffen."
2584
 
2585
  #: wppa-album-admin-autosave.php:1611
2586
  #, fuzzy
@@ -2590,7 +2586,7 @@ msgstr "Alle"
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
@@ -2598,27 +2594,28 @@ msgid ""
2598
  "There are <strong>%d</strong> albums and <strong>%d</strong> photos in the "
2599
  "system."
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
@@ -2628,12 +2625,13 @@ msgstr "Album - <strong>%s</strong> (% d)."
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
@@ -2643,27 +2641,27 @@ msgstr "Album gelöscht."
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
@@ -2673,27 +2671,27 @@ msgstr "Zufall"
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
@@ -2701,9 +2699,8 @@ msgid ""
2701
  "You can edit top-level album sequence order here when you set the album "
2702
  "order to \"Order #\" or \"Order # desc\" in Table IV-D1."
2703
  msgstr ""
2704
- "Reihenfolge der Top-Level-Album hier können bearbeitet werden, wenn Sie die "
2705
- "Album \"Order #\" oder \"Order # Desc\" in Tabelle IV-D1 Reihenfolge "
2706
- "festlegen."
2707
 
2708
  #: wppa-album-admin-autosave.php:1945
2709
  #, fuzzy
@@ -2712,31 +2709,29 @@ msgid ""
2712
  "\"Order #\" or \"Order # desc\" in the \"Sub album sort order:\" selection "
2713
  "box above."
2714
  msgstr ""
2715
- "Sie können Sub-Album Reihenfolge hier beim Festlegen der Reihenfolge Album "
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"
@@ -2754,7 +2749,7 @@ msgstr "Aktuell"
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
@@ -2765,7 +2760,7 @@ msgstr "Aktualisierung benötigt"
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
@@ -2775,17 +2770,17 @@ msgstr "Nach oben"
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
@@ -2795,7 +2790,7 @@ msgstr "ID:"
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
@@ -2819,11 +2814,12 @@ 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
 
@@ -2842,9 +2838,9 @@ msgstr "Neu!"
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
 
@@ -2862,17 +2858,17 @@ msgstr[1] "Kategorien:"
2862
  #: wppa-album-navigator-widget.php:12
2863
  #, fuzzy
2864
  msgid "WPPA+ Album navigator"
2865
- msgstr "WPPA + Album navigator"
2866
 
2867
  #: wppa-album-navigator-widget.php:13
2868
  #, fuzzy
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
@@ -2882,14 +2878,14 @@ msgstr "- Alle Alben -"
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 ---"
@@ -2897,7 +2893,7 @@ msgstr "--- Besitzer/öffentliche ---"
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
@@ -2922,27 +2918,27 @@ msgstr "Ja"
2922
  #: wppa-album-widget.php:15
2923
  #, fuzzy
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"
2931
 
2932
  #: wppa-album-widget.php:114
2933
  #, fuzzy, php-format
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
@@ -2952,8 +2948,8 @@ msgid ""
2952
  "You can set the sizes in this widget in the <b>Photo Albums -> Settings</b> "
2953
  "admin page."
2954
  msgstr ""
2955
- "Sie können die Größen in diesem Widget in der Admin-Seite <b>Fotoalben-> "
2956
- "Einstellungen</b> festlegen."
2957
 
2958
  #: wppa-audio.php:183
2959
  msgid ""
@@ -2966,23 +2962,23 @@ msgstr ""
2966
  #: wppa-bestof-widget.php:15
2967
  #, fuzzy
2968
  msgid "WPPA+ Best Of Rated Photos"
2969
- msgstr "WPPA + am besten bewerteten Fotos"
2970
 
2971
  #: wppa-bestof-widget.php:16 wppa-bestof-widget.php:49
2972
  #: wppa-bestof-widget.php:109
2973
  #, fuzzy
2974
  msgid "Best Of Photos"
2975
- msgstr "Beste Fotos"
2976
 
2977
  #: wppa-bestof-widget.php:152
2978
  #, fuzzy
2979
  msgid "Photo(s)"
2980
- msgstr "Bild(er)"
2981
 
2982
  #: wppa-bestof-widget.php:153
2983
  #, fuzzy
2984
  msgid "Owner(s)"
2985
- msgstr "Eigentümer (s)"
2986
 
2987
  #: wppa-bestof-widget.php:158
2988
  #, fuzzy
@@ -2992,17 +2988,17 @@ msgstr "Letzte Woche"
2992
  #: wppa-bestof-widget.php:159
2993
  #, fuzzy
2994
  msgid "This week"
2995
- msgstr "Diese Woche "
2996
 
2997
  #: wppa-bestof-widget.php:160
2998
  #, fuzzy
2999
  msgid "Last month"
3000
- msgstr "letzten Monat"
3001
 
3002
  #: wppa-bestof-widget.php:161
3003
  #, fuzzy
3004
  msgid "This month"
3005
- msgstr "Dieser Monat"
3006
 
3007
  #: wppa-bestof-widget.php:162
3008
  #, fuzzy
@@ -3012,7 +3008,7 @@ msgstr "Letztes Jahr"
3012
  #: wppa-bestof-widget.php:163
3013
  #, fuzzy
3014
  msgid "This year"
3015
- msgstr "Dieses Jahr "
3016
 
3017
  #: wppa-bestof-widget.php:168
3018
  #, fuzzy
@@ -3033,57 +3029,57 @@ 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
 
3063
  #: wppa-bestof-widget.php:199
3064
  #, fuzzy
3065
  msgid "The authors album(s)"
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"
@@ -3103,7 +3099,7 @@ msgid "Category"
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,9 +3113,9 @@ msgstr "STRG+Klicken, um Option hinzuzufügen/zu entfernen."
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
 
@@ -3141,7 +3137,7 @@ 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,124 +3185,129 @@ msgstr "Finde!"
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"
3196
 
3197
- #: wppa-boxes-html.php:1306 wppa-qr-widget.php:39
3198
  msgid "QR code"
3199
  msgstr "QR Code"
3200
 
3201
- #: wppa-boxes-html.php:1351
3202
  #, php-format
3203
  msgid "Tweet %s on Twitter"
3204
  msgstr "Tweet %s auf Twitter"
3205
 
3206
- #: wppa-boxes-html.php:1358
3207
  msgid "Share on Twitter"
3208
  msgstr "Teilen auf Twitter"
3209
 
3210
- #: wppa-boxes-html.php:1371
3211
  #, php-format
3212
  msgid "Share %s on Google+"
3213
  msgstr "Teilen %s auf Google+"
3214
 
3215
- #: wppa-boxes-html.php:1379
3216
  msgid "Share on Google+"
3217
  msgstr "Teilen auf Google+"
3218
 
3219
- #: wppa-boxes-html.php:1394
3220
  #, php-format
3221
  msgid "Share %s on Pinterest"
3222
  msgstr "Teilen %s auf Pinterest"
3223
 
3224
- #: wppa-boxes-html.php:1404
3225
  msgid "Share on Pinterest"
3226
  msgstr "Teilen auf Pinterest"
3227
 
3228
- #: wppa-boxes-html.php:1549
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,22 +3318,22 @@ msgstr[1] ""
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,7 +3342,7 @@ msgstr ""
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,202 +3350,202 @@ msgstr ""
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,22 +3554,22 @@ msgid_plural "%d votes"
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
 
@@ -3576,7 +3577,7 @@ msgstr "Aktualisieren"
3576
  msgid "Post:"
3577
  msgstr "Post:"
3578
 
3579
- #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:661
3580
  msgid "Page:"
3581
  msgstr "Seite:"
3582
 
@@ -3722,41 +3723,41 @@ msgstr "Miniaturansicht"
3722
  msgid "Thumbs"
3723
  msgstr "Miniaturen"
3724
 
3725
- #: wppa-breadcrumb.php:659
3726
  msgid "Unpublished"
3727
  msgstr "Unveröffentlicht"
3728
 
3729
- #: wppa-breadcrumb.php:689
3730
  msgid "Found photos will meet the search criteria as follows:"
3731
  msgstr "Gefunden Fotos werden die Suchkriterien erfüllen, wie folgt:"
3732
 
3733
- #: wppa-breadcrumb.php:692
3734
  msgid "AND"
3735
  msgstr "UND"
3736
 
3737
- #: wppa-breadcrumb.php:696
3738
  msgid "OR"
3739
  msgstr "ODER"
3740
 
3741
  #: wppa-cart.php:30
3742
  #, fuzzy
3743
  msgid "Buy now"
3744
- msgstr "IN KÜRZE"
3745
 
3746
  #: wppa-cart.php:94
3747
  #, fuzzy, php-format
3748
  msgid "Unit Price: %s each"
3749
- msgstr "Stückpreis: %s"
3750
 
3751
  #: wppa-cart.php:98
3752
  #, fuzzy
3753
  msgid "Qty:"
3754
- msgstr "Stk:"
3755
 
3756
  #: wppa-comment-admin.php:35
3757
  #, fuzzy
3758
  msgid "Photo Albums -> Edit Comment"
3759
- msgstr "Fotoalben-> Kommentar bearbeiten"
3760
 
3761
  #: wppa-comment-admin.php:61
3762
  #, fuzzy
@@ -3766,17 +3767,17 @@ msgstr "Foto"
3766
  #: wppa-comment-admin.php:72
3767
  #, fuzzy
3768
  msgid "User:"
3769
- msgstr "Benutzer:"
3770
 
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
@@ -3791,12 +3792,12 @@ msgstr "Kommentar gelöscht"
3791
  #: wppa-comment-admin.php:128 wppa-comment-admin.php:143
3792
  #, fuzzy
3793
  msgid "Could not bulk update status"
3794
- msgstr "Update-Status könnte nicht lose."
3795
 
3796
  #: wppa-comment-admin.php:151
3797
  #, fuzzy
3798
  msgid "Could not bulk delete spam"
3799
- msgstr "Konnte nicht löschen Spam bulk"
3800
 
3801
  #: wppa-comment-admin.php:157
3802
  #, fuzzy
@@ -3806,12 +3807,12 @@ msgstr "Änderungen gespeichert"
3806
  #: wppa-comment-admin.php:184
3807
  #, fuzzy
3808
  msgid "Photo Albums -> Moderate Comment"
3809
- msgstr "Fotoalben-> Moderate Kommentar"
3810
 
3811
  #: wppa-comment-admin.php:185
3812
  #, fuzzy
3813
  msgid "Photo Albums -> Comment admin"
3814
- msgstr "Fotoalben-> Kommentar admin"
3815
 
3816
  #: wppa-comment-admin.php:189
3817
  #, fuzzy
@@ -3820,14 +3821,14 @@ msgid ""
3820
  "item 18 on the <b>Photo Albums -> Settings</b> screen and press <b>Save "
3821
  "Changes</b>"
3822
  msgstr ""
3823
- "<h3>Das Kommentarsystem ist nicht aktiviert</h3><p>Aktivieren: Markieren Sie "
3824
- "Tabelle II Punkt 18 auf dem Bildschirm <b>Foto-Alben-> Einstellungen</b> und "
3825
- "<b>Änderungen speichern</b> Taste"
3826
 
3827
  #: wppa-comment-admin.php:196
3828
  #, fuzzy
3829
  msgid "Total:"
3830
- msgstr "Gesammtsumme:"
3831
 
3832
  #: wppa-comment-admin.php:200
3833
  #, fuzzy
@@ -3837,12 +3838,12 @@ msgstr "Genehmigt:"
3837
  #: wppa-comment-admin.php:204
3838
  #, fuzzy
3839
  msgid "Pending:"
3840
- msgstr "Ausstehend"
3841
 
3842
  #: wppa-comment-admin.php:208
3843
  #, fuzzy
3844
  msgid "Spam:"
3845
- msgstr "Als Spam markieren: "
3846
 
3847
  #: wppa-comment-admin.php:213
3848
  #, fuzzy
@@ -3852,10 +3853,10 @@ msgstr "Auto gelöscht Spam:"
3852
  #: wppa-comment-admin.php:228
3853
  #, 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,8 +3867,8 @@ msgid ""
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
@@ -3877,12 +3878,12 @@ msgstr "Anzeigestatus"
3877
  #: wppa-comment-admin.php:252
3878
  #, fuzzy
3879
  msgid "all"
3880
- msgstr "Alle"
3881
 
3882
  #: wppa-comment-admin.php:253
3883
  #, fuzzy
3884
  msgid "pending"
3885
- msgstr "pendent"
3886
 
3887
  #: wppa-comment-admin.php:254
3888
  #, fuzzy
@@ -3917,24 +3918,24 @@ msgstr "Stapelverarbeitung:"
3917
  #: wppa-comment-admin.php:266
3918
  #, fuzzy
3919
  msgid "Approve all pending"
3920
- msgstr "Alle ausstehenden genehmigen"
3921
 
3922
  #: wppa-comment-admin.php:267
3923
  #, fuzzy
3924
  msgid "Move all pending to spam"
3925
- msgstr "Verschieben Sie alle ausstehenden, spam"
3926
 
3927
  #: wppa-comment-admin.php:268
3928
  #, fuzzy
3929
  msgid "Delete all spam"
3930
- msgstr "Löschen Sie alle spam"
3931
 
3932
  #: wppa-comment-admin.php:270
3933
  #, 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
 
@@ -3949,51 +3950,51 @@ msgstr "Album:"
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 ]"
3962
 
3963
  #: wppa-comment-admin.php:312 wppa-comment-admin.php:399
3964
  #, fuzzy
3965
  msgid "IP"
3966
- msgstr "IP "
3967
 
3968
  #: wppa-comment-admin.php:313 wppa-comment-admin.php:400
3969
  #, fuzzy
3970
  msgid "User"
3971
- msgstr "Teilnehmer"
3972
 
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
3980
  msgid "Time since"
3981
- msgstr "Mal seit"
3982
 
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"
@@ -4005,121 +4006,121 @@ msgstr "Antwort"
4005
  #: wppa-photo-admin-autosave.php:1444 wppa-photo-admin-autosave.php:1456
4006
  #, fuzzy
4007
  msgid "Pending"
4008
- msgstr "Ausstehend"
4009
 
4010
  #: wppa-comment-admin.php:378 wppa-photo-admin-autosave.php:1037
4011
  #: wppa-photo-admin-autosave.php:1047
4012
  #, fuzzy
4013
  msgid "Approved"
4014
- msgstr "Bestätigt"
4015
 
4016
  #: wppa-comment-admin.php:379 wppa-photo-admin-autosave.php:1038
4017
  #: wppa-photo-admin-autosave.php:1048
4018
  #, fuzzy
4019
  msgid "Spam"
4020
- msgstr "Spam"
4021
 
4022
  #: wppa-comment-admin.php:388
4023
  #, fuzzy
4024
  msgid "Are you sure you want to delete this comment?"
4025
- msgstr "Sind Sie sicher, dass Sie diesen Kommentar löschen wollen?"
4026
 
4027
  #: wppa-comment-admin.php:428 wppa-comment-admin.php:434
4028
  #, fuzzy
4029
  msgid "Unable to update comment. Err ="
4030
- msgstr "Nicht in der Lage, Kommentar zu aktualisieren. Err ="
4031
 
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,39 +4129,39 @@ msgstr ""
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
 
@@ -4177,7 +4178,7 @@ msgstr "Feb"
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
@@ -4227,198 +4228,198 @@ msgstr "Dez"
4227
  #: wppa-encrypt.php:139
4228
  #, fuzzy
4229
  msgid "Invalid photo identifier:"
4230
- msgstr "Ungültige Foto-ID:"
4231
 
4232
  #: wppa-encrypt.php:195
4233
  #, fuzzy
4234
  msgid "Invalid album identifier:"
4235
- msgstr "Ungültige Album Bezeichner:"
4236
 
4237
  #: wppa-exif-iptc-common.php:82 wppa-exif-iptc-common.php:161
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
 
4418
  #: wppa-export.php:36
4419
  #, fuzzy, php-format
4420
  msgid "Photos will be exported to: <b>%s</b>."
4421
- msgstr "Fotos werden in exportiert: <b>%s</b>."
4422
 
4423
  #: wppa-export.php:37
4424
  #, fuzzy
@@ -4426,28 +4427,29 @@ msgid ""
4426
  "Export photos from album <span style=\"font-size:12px;\">(Including Album "
4427
  "information)</span>:"
4428
  msgstr ""
4429
- "Fotos aus Album <span style=\"font-size:12px;\">(einschließlich "
4430
- "Albuminformationen)</span>exportieren:"
 
4431
 
4432
  #: wppa-export.php:66
4433
  #, fuzzy
4434
  msgid "Export"
4435
- msgstr "Bestellungen exportieren"
4436
 
4437
  #: wppa-export.php:81
4438
  #, fuzzy
4439
  msgid "Exporting...<br/>"
4440
- msgstr "Exportieren...<br>"
4441
 
4442
  #: wppa-export.php:90
4443
  #, fuzzy
4444
  msgid "ok, <br/>Filling"
4445
- msgstr "Okay<br>Füllung"
4446
 
4447
  #: wppa-export.php:92
4448
  #, fuzzy
4449
  msgid "failed<br/>"
4450
- msgstr "Fehler beim<br>"
4451
 
4452
  #: wppa-export.php:98
4453
  #, fuzzy
@@ -4455,8 +4457,8 @@ msgid ""
4455
  "Can export albums and photos, but cannot make a zipfile. Your php version is "
4456
  "< 5.2.7."
4457
  msgstr ""
4458
- "Alben und Fotos exportieren kann, aber keine ZIP-Datei. Ihre Php-Version ist "
4459
- "< 5.2.7."
4460
 
4461
  #: wppa-export.php:99
4462
  #, fuzzy
@@ -4464,13 +4466,13 @@ msgid ""
4464
  "Can export albums and photos, but cannot make a zipfile. Your php version "
4465
  "does not support ZipArchive."
4466
  msgstr ""
4467
- "Alben und Fotos exportieren kann, aber keine ZIP-Datei. Ihre Php-Version "
4468
- "unterstützt keine ZipArchive."
4469
 
4470
  #: wppa-export.php:109
4471
  #, fuzzy
4472
  msgid "<br/>Processing album"
4473
- msgstr "<br>Verarbeitung-album"
4474
 
4475
  #: wppa-export.php:129
4476
  #, fuzzy
@@ -4485,7 +4487,7 @@ msgstr "Fotos verarbeitet."
4485
  #: wppa-export.php:133
4486
  #, fuzzy
4487
  msgid "<br/>Done export albums."
4488
- msgstr "<br>Export-Alben getan."
4489
 
4490
  #: wppa-export.php:136
4491
  #, fuzzy
@@ -4495,58 +4497,58 @@ msgstr "Nichts zu exportieren"
4495
  #: wppa-export.php:140
4496
  #, fuzzy
4497
  msgid "<br/>Closing zip."
4498
- msgstr "<br>Reißverschluss schließen."
4499
 
4500
  #: wppa-export.php:141
4501
  #, fuzzy
4502
  msgid "<br/>Deleting temp files."
4503
- msgstr "<br>Löschen von temporären Dateien."
4504
 
4505
  #: wppa-export.php:150
4506
  #, fuzzy
4507
  msgid "<br/>Done!"
4508
- msgstr "<br>Fertig!"
4509
 
4510
  #: wppa-export.php:196 wppa-export.php:265
4511
  #, fuzzy, php-format
4512
  msgid "Cannot write to file %s."
4513
- msgstr "Datei %s kann nicht geschrieben werden."
4514
 
4515
  #: wppa-export.php:210
4516
  #, fuzzy
4517
  msgid "Could not open album output file."
4518
- msgstr "Album-Ausgabe-Datei konnte nicht geöffnet werden."
4519
 
4520
  #: wppa-export.php:215
4521
  #, fuzzy
4522
  msgid "Could not read album data."
4523
- msgstr "Albumdaten konnten nicht gelesen werden."
4524
 
4525
  #: wppa-export.php:279
4526
  #, fuzzy
4527
  msgid "Could not open photo output file."
4528
- msgstr "Foto-Ausgabe-Datei konnte nicht geöffnet werden."
4529
 
4530
  #: wppa-export.php:284
4531
  #, fuzzy
4532
  msgid "Could not read photo data."
4533
- msgstr "Fotodaten konnten nicht gelesen werden."
4534
 
4535
  #: wppa-featen-widget.php:14
4536
  #, fuzzy
4537
  msgid "WPPA+ Featured Photos"
4538
- msgstr "WPPA + vorgestellten Fotos"
4539
 
4540
  #: wppa-featen-widget.php:15 wppa-featen-widget.php:171
4541
  #, fuzzy
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
 
@@ -4576,7 +4578,7 @@ msgstr ""
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
@@ -4609,7 +4611,7 @@ msgstr "schrieb am Foto"
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"
@@ -4653,177 +4655,176 @@ 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."
4817
 
4818
  #: wppa-gp-widget.php:15
4819
  #, fuzzy
4820
  msgid "WPPA+ General purpose widget"
4821
- msgstr "WPPA + allgemeine Zweck widget"
4822
 
4823
  #: wppa-gp-widget.php:16 wppa-gp-widget.php:31 wppa-gp-widget.php:83
4824
  #, fuzzy
4825
  msgid "WPPA+ Text"
4826
- msgstr "WPPA + Text"
4827
 
4828
  #: wppa-gp-widget.php:91
4829
  #, fuzzy
@@ -4831,13 +4832,13 @@ msgid ""
4831
  "Enter the content just like a normal text widget. This widget will "
4832
  "interprete [wppa] shortcodes."
4833
  msgstr ""
4834
- "Geben Sie den Inhalt genau wie ein normaler Text-Widget. Dieses Widget wird "
4835
- "interpretieren [Wppa] Kurzwahlnummern."
4836
 
4837
  #: wppa-gp-widget.php:92
4838
  #, fuzzy, php-format
4839
  msgid "Don't forget size=\"%s\""
4840
- msgstr "Vergessen Sie nicht, Größe = \"%s\""
4841
 
4842
  #: wppa-gp-widget.php:98
4843
  #, fuzzy
@@ -4859,12 +4860,12 @@ msgstr ""
4859
  #: wppa-help.php:16
4860
  #, fuzzy
4861
  msgid "Docs & Demos"
4862
- msgstr "Docs & Demos"
4863
 
4864
  #: wppa-help.php:18
4865
  #, fuzzy
4866
  msgid "About and credits"
4867
- msgstr "Über und Credits"
4868
 
4869
  #: wppa-help.php:20
4870
  msgid ""
@@ -4877,18 +4878,18 @@ msgstr ""
4877
  #: wppa-help.php:21
4878
  #, fuzzy
4879
  msgid "Thanx to R.J. Kaplan for WP Photo Album 1.5.1."
4880
- msgstr "Danke an r.j. Kaplan für WP Fotoalbum 1.5.1."
4881
 
4882
  #: wppa-help.php:22
4883
  #, fuzzy
4884
  msgid "Thanx to E.S. Rosenberg for programming tips on security issues."
4885
  msgstr ""
4886
- "Danke an E.S Rosenberg für die Programmierung Tipps in Fragen der Sicherheit."
4887
 
4888
  #: wppa-help.php:23
4889
  #, fuzzy
4890
  msgid "Thanx to Pavel &#352;orejs for the Numbar code."
4891
- msgstr "Danke an Pavel Šorejs für den Numbar-Code."
4892
 
4893
  #: wppa-help.php:24
4894
  #, fuzzy
@@ -4896,8 +4897,8 @@ msgid ""
4896
  "Thanx to the users who reported bugs and asked for enhancements. Without "
4897
  "them WPPA should not have been what it is now!"
4898
  msgstr ""
4899
- "Danke an die Benutzer, die Bugs gemeldet und bat um Verbesserungen. Ohne "
4900
- "diese WPPA hätte nicht was es jetzt ist!"
4901
 
4902
  #: wppa-help.php:27
4903
  #, fuzzy
@@ -4907,7 +4908,7 @@ msgstr "Lizenz"
4907
  #: wppa-help.php:29
4908
  #, fuzzy
4909
  msgid "WP Photo Album is released under the"
4910
- msgstr "WP Photo Album erscheint unter dem"
4911
 
4912
  #: wppa-help.php:29
4913
  #, fuzzy
@@ -4917,32 +4918,32 @@ msgstr "Lizenz"
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
@@ -4950,8 +4951,8 @@ 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
@@ -4959,8 +4960,8 @@ 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
@@ -4970,7 +4971,7 @@ msgstr "Importieren von Fotos aus:"
4970
  #: wppa-import.php:293
4971
  #, fuzzy
4972
  msgid "Set source directory"
4973
- msgstr "Quellenverzeichnis"
4974
 
4975
  #: wppa-import.php:306
4976
  #, fuzzy
@@ -4980,12 +4981,12 @@ msgstr "Max:"
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
@@ -4994,14 +4995,14 @@ msgid ""
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
@@ -5011,7 +5012,7 @@ msgstr "Konto erstellen."
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
@@ -5030,7 +5031,7 @@ msgstr "Alle aus-/abwählen"
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
@@ -5044,8 +5045,8 @@ msgstr[1] "Es gibt %d albumdefinitionen im Depot"
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
@@ -5071,7 +5072,7 @@ msgstr[1] "Es gibt %d möglich Fotos vorhanden Fern"
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
@@ -5084,24 +5085,24 @@ 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
@@ -5111,7 +5112,7 @@ msgstr "Das Album wird erstellt, wenn es nicht vorhanden ist"
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
@@ -5121,12 +5122,12 @@ msgstr "Aktualisieren Sie vorhandene Fotos"
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
@@ -5144,8 +5145,8 @@ msgstr "Album zu importieren:"
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
@@ -5190,17 +5191,17 @@ msgstr "Import starten"
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
@@ -5210,12 +5211,12 @@ msgstr "Sie können die folgenden Dateitypen importieren:"
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
@@ -5225,22 +5226,22 @@ msgstr "Video-Dateitypen:"
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
@@ -5250,27 +5251,27 @@ msgstr "Ihr Depot-Verzeichnis ist:"
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
@@ -5278,8 +5279,8 @@ 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
@@ -5289,7 +5290,7 @@ msgstr "here."
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
@@ -5299,109 +5300,106 @@ msgstr "Duplizieren"
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
@@ -5411,7 +5409,7 @@ msgstr "Alben erstellt."
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
@@ -5421,32 +5419,32 @@ msgstr "Insgesamt %s Fotos"
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
@@ -5456,27 +5454,26 @@ msgstr "Fotos übersprungen."
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
@@ -5486,22 +5483,22 @@ msgstr "Fehler beim Extrahieren"
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
@@ -5509,9 +5506,9 @@ 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
@@ -5519,9 +5516,9 @@ 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
@@ -5529,8 +5526,9 @@ 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
@@ -5538,8 +5536,9 @@ 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
@@ -5547,8 +5546,8 @@ 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
@@ -5556,8 +5555,8 @@ 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
@@ -5565,8 +5564,8 @@ 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
@@ -5574,8 +5573,8 @@ 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
@@ -5583,13 +5582,13 @@ 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
@@ -5602,8 +5601,8 @@ 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
@@ -5611,8 +5610,8 @@ 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
@@ -5620,19 +5619,19 @@ 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"
@@ -5673,17 +5672,17 @@ msgstr "Bronze"
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
@@ -5709,23 +5708,23 @@ msgstr "Meine und öffentliche Alben"
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
 
@@ -5735,8 +5734,8 @@ 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
@@ -5747,7 +5746,7 @@ msgstr "Fügen Unteralben:"
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
@@ -5764,7 +5763,7 @@ msgstr "Foto Name"
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
@@ -5779,17 +5778,17 @@ msgstr "Mod"
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
@@ -5809,23 +5808,23 @@ msgstr "CommentAdmin"
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"
@@ -5843,37 +5842,37 @@ msgstr "Anzeigen die Miniaturen"
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
@@ -5881,8 +5880,8 @@ 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
 
@@ -5891,41 +5890,41 @@ msgstr "Erforderlich"
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
@@ -5937,7 +5936,7 @@ msgstr "Es gibt keine aktiven Sitzungen"
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
@@ -5947,12 +5946,12 @@ msgstr "- - - Kommentar Box aktiviert- - -"
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
@@ -5962,17 +5961,17 @@ msgstr "Anzahl Spalten:"
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."
@@ -5980,104 +5979,104 @@ 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
@@ -6086,7 +6085,7 @@ 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
 
@@ -6103,27 +6102,27 @@ msgstr "Moderate Fotos"
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
@@ -6133,7 +6132,7 @@ msgstr "Keine Fotos gefunden, die deinen Suchkriterien entsprechen."
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
@@ -6188,7 +6187,7 @@ msgstr "Vorschau tags:"
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
@@ -6198,37 +6197,37 @@ msgstr "Drehen"
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
@@ -6238,7 +6237,7 @@ msgstr "Audio deaktiviert"
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
@@ -6258,17 +6257,17 @@ msgstr "Mittelwert: %4.2f."
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
@@ -6288,17 +6287,17 @@ msgstr "Bist Du sicher dass Du dieses Foto löschen möchtest?"
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
@@ -6313,17 +6312,17 @@ msgstr "Bist Du sicher dass Du dieses Foto löschen möchtest?"
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
@@ -6333,7 +6332,7 @@ msgstr "Sind Sie sicher, dass Sie dieses Video löschen möchten?"
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
@@ -6348,20 +6347,20 @@ msgstr "Foto löschen"
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"
@@ -6369,15 +6368,15 @@ msgstr "neuem Tab"
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
@@ -6399,12 +6398,12 @@ msgstr "Datei aktualisieren"
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
@@ -6414,7 +6413,7 @@ msgstr "Breite:"
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
@@ -6439,7 +6438,7 @@ msgstr "Poster"
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
@@ -6449,12 +6448,12 @@ msgstr "Quelldatei"
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
@@ -6475,32 +6474,32 @@ msgstr "Thumbnail-Datei:"
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
@@ -6528,8 +6527,8 @@ msgstr "Längengrad (Lng)"
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
@@ -6546,17 +6545,17 @@ msgstr "Foto aktualisieren"
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
@@ -6573,7 +6572,7 @@ msgstr "Status:"
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
@@ -6587,7 +6586,7 @@ msgstr "Sehen Sie die best bewertesten Fotos"
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
@@ -6602,8 +6601,8 @@ 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
@@ -6613,12 +6612,12 @@ msgstr "Wasserzeichen"
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
@@ -6628,7 +6627,7 @@ msgstr "Wende Wasserzeichen-Datei an:"
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
@@ -6638,32 +6637,32 @@ msgstr "Und ich weiß nicht, ob es bereits ein Wasserzeichen auf diesem Foto"
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
@@ -6673,7 +6672,7 @@ msgstr "URL zeigen"
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
@@ -6683,42 +6682,42 @@ msgstr "Papierkorb"
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
@@ -6728,12 +6727,12 @@ msgstr "Kopieer naar"
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 -"
@@ -6746,18 +6745,18 @@ msgstr "-Wählen Sie einen Besitzer-"
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"
@@ -6770,7 +6769,7 @@ msgstr "Bemerkung"
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
@@ -6778,8 +6777,8 @@ 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
@@ -6799,34 +6798,34 @@ msgstr "Audio"
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!"
@@ -6849,33 +6848,33 @@ msgstr "Foto des Tages (Widget) Einstellungen"
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"
@@ -6883,7 +6882,7 @@ msgstr "Hilfe"
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
@@ -6896,18 +6895,18 @@ 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
@@ -6920,26 +6919,26 @@ msgstr "0像素宽"
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
@@ -6949,18 +6948,17 @@ msgstr "Link-Titel:"
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
@@ -6972,27 +6970,27 @@ msgstr ""
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"
@@ -7005,12 +7003,12 @@ msgstr "einfaches Bild"
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
@@ -7020,12 +7018,12 @@ msgstr "physische Alben"
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
@@ -7034,17 +7032,17 @@ 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 -"
@@ -7065,12 +7063,12 @@ msgstr "- Hoch bewertete Fotos -"
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
@@ -7080,22 +7078,23 @@ msgstr "Inverse Auswahl"
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 -"
@@ -7104,7 +7103,7 @@ msgstr "- keine -"
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
@@ -7114,12 +7113,12 @@ msgstr "Displaymethode"
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
@@ -7129,17 +7128,17 @@ msgstr "Letzter Upload:"
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
@@ -7169,42 +7168,42 @@ msgstr "Rate TEUR 10."
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
@@ -7219,7 +7218,7 @@ msgstr "Uploader"
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
@@ -7246,116 +7245,116 @@ msgstr "Keine Fotos in der Auswahl"
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"
@@ -7363,7 +7362,7 @@ msgstr "Werte"
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
@@ -7376,18 +7375,18 @@ 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
@@ -7395,8 +7394,8 @@ 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
@@ -7420,13 +7419,13 @@ 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
@@ -7434,8 +7433,8 @@ 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
@@ -7443,15 +7442,15 @@ 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"
@@ -7464,7 +7463,7 @@ msgstr "Standard-Fotoalbum für"
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
@@ -7474,27 +7473,27 @@ msgstr "Schließen"
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
@@ -7505,29 +7504,29 @@ msgstr "Fehler beim Hochladen: %s"
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
@@ -7535,33 +7534,33 @@ 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
@@ -7571,27 +7570,29 @@ msgstr "WP Multisite Aktiviert"
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
@@ -7601,57 +7602,60 @@ msgid ""
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
@@ -7659,42 +7663,41 @@ 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.php:2031 wppa-settings-autosave.php:5686
7678
  #, fuzzy
7679
  msgid "Button"
7680
- msgstr "Schaltfläche"
7681
 
7682
  #: wppa-settings-autosave.php:348
7683
  #, fuzzy
7684
  msgid "action that causes page reload."
7685
- msgstr "Aktion, die bewirkt, dass die Seite neu zu laden."
7686
 
7687
- #: wppa-settings-autosave.php:350 wppa-settings-autosave.php:10010
7688
- #: wppa-settings-autosave.php:10029
7689
  #, fuzzy
7690
  msgid "Are you sure?"
7691
- msgstr ""
7692
- "Sind Sie sicher, dass Sie dieses Foto mit Ihrem ZIP-Paket hinzufügen möchten?"
7693
 
7694
  #: wppa-settings-autosave.php:351
7695
  #, fuzzy
7696
  msgid "action that does not cause page reload."
7697
- msgstr "Aktion bewirkt, dass keine Seite neu laden."
7698
 
7699
  #: wppa-settings-autosave.php:355
7700
  #, fuzzy
@@ -7704,7 +7707,7 @@ msgstr "Update wird durchgeführt…"
7704
  #: wppa-settings-autosave.php:357
7705
  #, fuzzy
7706
  msgid "Setting updated"
7707
- msgstr "Einstellung aktualisiert"
7708
 
7709
  #: wppa-settings-autosave.php:359
7710
  #, fuzzy
@@ -7719,12 +7722,12 @@ msgstr "IPTC-Daten ausblenden"
7719
  #: wppa-settings-autosave.php:367
7720
  #, fuzzy
7721
  msgid "System"
7722
- msgstr "Danke für die Installation von Support System"
7723
 
7724
  #: wppa-settings-autosave.php:368
7725
  #, fuzzy
7726
  msgid "Access"
7727
- msgstr "Zugriff"
7728
 
7729
  #: wppa-settings-autosave.php:372
7730
  #, fuzzy
@@ -7741,7 +7744,7 @@ msgstr "Abdeckungen"
7741
  msgid "Layout"
7742
  msgstr "Layout"
7743
 
7744
- #: wppa-settings-autosave.php:375 wppa-settings-autosave.php:4955
7745
  #, fuzzy
7746
  msgid "Lightbox"
7747
  msgstr "Lightbox"
@@ -7749,7 +7752,7 @@ msgstr "Lightbox"
7749
  #: wppa-settings-autosave.php:376
7750
  #, fuzzy
7751
  msgid "Links"
7752
- msgstr "Verweise"
7753
 
7754
  #: wppa-settings-autosave.php:377
7755
  #, fuzzy
@@ -7761,8 +7764,8 @@ msgstr "Metadaten"
7761
  msgid "Navigation"
7762
  msgstr "Navigation"
7763
 
7764
- #: wppa-settings-autosave.php:380 wppa-settings-autosave.php:8538
7765
- #: wppa-settings-autosave.php:8583
7766
  #, fuzzy
7767
  msgid "Rating"
7768
  msgstr "ERROR: Illegal Versuch, eine Bewertung zu gelangen."
@@ -7780,7 +7783,7 @@ msgstr "Slideshows"
7780
  #: wppa-settings-autosave.php:384
7781
  #, fuzzy
7782
  msgid "Social Media"
7783
- msgstr "Social Media"
7784
 
7785
  #: wppa-settings-autosave.php:386
7786
  #, fuzzy
@@ -7792,7 +7795,7 @@ msgstr "Uploads"
7792
  msgid "Widgets"
7793
  msgstr "Widgets"
7794
 
7795
- #: wppa-settings-autosave.php:388 wppa-settings-autosave.php:8376
7796
  #, fuzzy
7797
  msgid "Watermark"
7798
  msgstr "Wasserzeichen"
@@ -7801,17 +7804,18 @@ msgstr "Wasserzeichen"
7801
  #, fuzzy
7802
  msgid "Click on the banner of a (sub)table to open/close it, or"
7803
  msgstr ""
7804
- "Klicken Sie auf das Banner einer (Teil-) Tabelle zu öffnen/schließen, oder"
 
7805
 
7806
  #: wppa-settings-autosave.php:398
7807
  #, fuzzy
7808
  msgid "Show settings related to:"
7809
- msgstr "Zeigen Sie die Einstellungen in Bezug auf:"
7810
 
7811
  #: wppa-settings-autosave.php:404
7812
  #, fuzzy
7813
  msgid "and ( optionally ) to:"
7814
- msgstr "und (optional):"
7815
 
7816
  #: wppa-settings-autosave.php:420
7817
  #, fuzzy
@@ -7821,32 +7825,32 @@ msgstr "Schnelleinrichtung"
7821
  #: wppa-settings-autosave.php:422
7822
  #, fuzzy
7823
  msgid "Do a quick initial setup"
7824
- msgstr "Eine schnelle Ersteinrichtung zu tun"
7825
 
7826
  #: wppa-settings-autosave.php:423
7827
  #, fuzzy
7828
  msgid "Close quick setup"
7829
- msgstr "Enge Schnelleinrichtung"
7830
 
7831
  #: wppa-settings-autosave.php:463
7832
  #, fuzzy
7833
  msgid "--- The same post or page ---"
7834
- msgstr "---Die gleiche Post oder Seite---"
7835
 
7836
  #: wppa-settings-autosave.php:494
7837
  #, fuzzy
7838
  msgid "--- No page to link to (yet) ---"
7839
- msgstr "---Keine Seite verknüpfen mit (noch)---"
7840
 
7841
  #: wppa-settings-autosave.php:499
7842
  #, fuzzy
7843
  msgid "--- Will be auto created ---"
7844
- msgstr "---Auto entstehen---"
7845
 
7846
  #: wppa-settings-autosave.php:506
7847
  #, fuzzy
7848
  msgid "Table O:"
7849
- msgstr "Tabelle O:"
7850
 
7851
  #: wppa-settings-autosave.php:506
7852
  #, fuzzy
@@ -7856,8 +7860,7 @@ msgstr "Schnelleinrichtung"
7856
  #: wppa-settings-autosave.php:507
7857
  #, fuzzy
7858
  msgid "This table enables you to quickly do an inital setup."
7859
- msgstr ""
7860
- "Diese Tabelle ermöglicht es Ihnen, schnell eine Erstinstallation zu tun."
7861
 
7862
  #: wppa-settings-autosave.php:529
7863
  #, fuzzy
@@ -7865,13 +7868,13 @@ msgid ""
7865
  "To quickly setup WPPA+ please answer the following questions. You can alway "
7866
  "change any setting later. <a>Click on me!</a>"
7867
  msgstr ""
7868
- "Zu schnell Setup beantworte WPPA + bitte die folgenden Fragen. Sie können "
7869
- "sich jederzeit ändern, jede Einstellung später. <a>Klicken Sie auf mich!</a>"
7870
 
7871
  #: wppa-settings-autosave.php:531
7872
  #, fuzzy
7873
  msgid "Is your theme <i>responsive</i>?"
7874
- msgstr "Ist Ihr Thema <i>reagieren</i>?"
7875
 
7876
  #: wppa-settings-autosave.php:532
7877
  #, fuzzy
@@ -7879,8 +7882,8 @@ msgid ""
7879
  "Responsive themes have a layout that varies with the size of the browser "
7880
  "window."
7881
  msgstr ""
7882
- "Ansprechende Themen haben eine Layout, die variiert mit der Größe des "
7883
- "Browser-Fensters."
7884
 
7885
  #: wppa-settings-autosave.php:533
7886
  #, fuzzy
@@ -7888,13 +7891,13 @@ msgid ""
7888
  "WPPA+ needs to know this to automaticly adept the width of the display to "
7889
  "the available width on the page."
7890
  msgstr ""
7891
- "WPPA + muss kennen, um automatisch Adept die Breite des Displays, um die "
7892
- "verfügbare Breite auf der Seite."
7893
 
7894
  #: wppa-settings-autosave.php:540
7895
  #, fuzzy
7896
  msgid "Do you want to downsize photos during upload?"
7897
- msgstr "Möchten Sie Fotos beim Hochladen verkleinern?"
7898
 
7899
  #: wppa-settings-autosave.php:541
7900
  #, fuzzy
@@ -7902,8 +7905,8 @@ msgid ""
7902
  "Downsizing photos make them load faster to the visitor, without loosing "
7903
  "display quality"
7904
  msgstr ""
7905
- "Downsizing-Fotos machen sie für den Besucher schneller zu laden, ohne "
7906
- "Qualität zu verlieren"
7907
 
7908
  #: wppa-settings-autosave.php:542
7909
  #, fuzzy
@@ -7911,18 +7914,18 @@ msgid ""
7911
  "If you answer yes, the photos will be downsized to max 1024 x 768 pixels. "
7912
  "You can change this later, if you like"
7913
  msgstr ""
7914
- "Wenn Sie Ja Antworten, werden die Fotos auf max. 1024 x 768 Pixel "
7915
- "verkleinert werden. Sie können dies ändern, später, wenn Sie wollen"
7916
 
7917
  #: wppa-settings-autosave.php:549
7918
  #, fuzzy
7919
  msgid "Do you want to save the original photofiles?"
7920
- msgstr "Möchten Sie die ursprüngliche Photofiles speichern?"
7921
 
7922
  #: wppa-settings-autosave.php:550
7923
  #, fuzzy
7924
  msgid "This will require considerable disk space on the server."
7925
- msgstr "Dies erfordert erheblichen Speicherplatz auf dem Server."
7926
 
7927
  #: wppa-settings-autosave.php:551
7928
  #, fuzzy
@@ -7931,22 +7934,23 @@ msgid ""
7931
  "wppa+ in a later stage, redo downsizing to a larger size afterwards, and "
7932
  "supply fullsize images for download."
7933
  msgstr ""
7934
- "Wenn Sie Ja Antworten, werden Sie möglicherweise entfernen Wasserzeichen, "
7935
- "die Sie in einem späteren Stadium mit Wppa + angewendet, Downsizing auf eine "
7936
- "größere Größe danach wiederholen und Fullsize Bilder zum Download."
 
7937
 
7938
  #: wppa-settings-autosave.php:558
7939
  #, fuzzy
7940
  msgid "May visitors upload photos?"
7941
- msgstr "Können Besucher Fotos hochladen?"
7942
 
7943
  #: wppa-settings-autosave.php:559
7944
  #, fuzzy
7945
  msgid ""
7946
  "It is safe to do so, but i will have to do some settings to keep it safe!"
7947
  msgstr ""
7948
- "Es ist sicher, dies zu tun, aber ich muss tun, einige Einstellungen, um sie "
7949
- "zu schützen!"
7950
 
7951
  #: wppa-settings-autosave.php:560
7952
  #, fuzzy
@@ -7955,17 +7959,17 @@ msgid ""
7955
  "upload photos at the front-end of the website and allow them to edit their "
7956
  "photos name and descriptions."
7957
  msgstr ""
7958
- "Wenn Sie mit Ja beantworten, gehe ich davon aus, dass Sie ermöglichen "
7959
- "möchten, angemeldete Benutzer Fotos auf dem Front-End der Website hochladen "
7960
- "und es ihnen ermöglichen, ihre Fotos Namen und Beschreibungen zu bearbeiten."
7961
 
7962
  #: wppa-settings-autosave.php:561
7963
  #, fuzzy
7964
  msgid ""
7965
  "The photos will be hold for moderation, the admin will get notified by email."
7966
  msgstr ""
7967
- "Die Fotos werden Halt zur Mäßigung, der Admin erhalten Sie per e-Mail "
7968
- "benachrichtigt."
7969
 
7970
  #: wppa-settings-autosave.php:562
7971
  #, fuzzy
@@ -7973,51 +7977,50 @@ msgid ""
7973
  "Each user will get his own album to upload to. These settings can be changed "
7974
  "later."
7975
  msgstr ""
7976
- "Jeder Benutzer bekommt sein eigenes Album auf hochladen. Diese Einstellungen "
7977
- "können später geändert werden."
7978
 
7979
  #: wppa-settings-autosave.php:569
7980
  #, fuzzy
7981
  msgid "Do you want the rating system active?"
7982
- msgstr "Möchten Sie das Rating-System aktiv?"
7983
 
7984
  #: wppa-settings-autosave.php:570
7985
  #, fuzzy
7986
  msgid "Enable the rating system and show the votes in the slideshow."
7987
  msgstr ""
7988
- "Aktivieren Sie das Rating-System und zeigen Sie die Stimmen in der Diashow."
7989
 
7990
  #: wppa-settings-autosave.php:571
7991
  #, fuzzy
7992
  msgid "You can configure the details of the rating system later"
7993
- msgstr "Sie können die Details des Ratingsystems später konfigurieren."
7994
 
7995
  #: wppa-settings-autosave.php:578
7996
  #, fuzzy
7997
  msgid "Do you want the comment system active?"
7998
- msgstr "Möchten Sie das Kommentarsystem aktiv?"
7999
 
8000
  #: wppa-settings-autosave.php:579
8001
  #, fuzzy
8002
  msgid "Enable the comment system and show the comments in the slideshow."
8003
  msgstr ""
8004
- "Aktivieren Sie das Kommentarsystem und zeigen Sie die Kommentare in die "
8005
- "Diashow an."
8006
 
8007
  #: wppa-settings-autosave.php:580
8008
  #, fuzzy
8009
  msgid "You can configure the details of the comment system later"
8010
- msgstr "Sie können die Details der Kommentar-System später konfigurieren."
8011
 
8012
  #: wppa-settings-autosave.php:587
8013
  #, fuzzy
8014
  msgid "Do you want the social media share buttons displayed?"
8015
- msgstr "Möchten Sie, dass die social Media Buttons angezeigt teilen?"
8016
 
8017
  #: wppa-settings-autosave.php:588
8018
  #, fuzzy
8019
  msgid "Display the social media buttons in the slideshow"
8020
- msgstr "Die social Media Buttons in der Diashow anzeigen"
8021
 
8022
  #: wppa-settings-autosave.php:589
8023
  #, fuzzy
@@ -8025,33 +8028,33 @@ msgid ""
8025
  "These buttons share the specific photo rather than the page where it is "
8026
  "displayed on"
8027
  msgstr ""
8028
- "Diese Schaltflächen zu teilen, das besondere Foto, anstatt die Seite, wo es "
8029
- "auf angezeigt wird"
8030
 
8031
  #: wppa-settings-autosave.php:596
8032
  #, fuzzy
8033
  msgid "Are you going to use IPTC data?"
8034
- msgstr "Willst du die IPTC-Daten verwenden?"
8035
 
8036
  #: wppa-settings-autosave.php:597
8037
  #, fuzzy
8038
  msgid ""
8039
  "IPTC data is information you may have added in a photo manipulation program."
8040
  msgstr ""
8041
- "IPTC-Daten sind Informationen, die Sie möglicherweise in einem Foto-"
8042
- "Manipulation-Programm hinzugefügt."
8043
 
8044
  #: wppa-settings-autosave.php:598 wppa-settings-autosave.php:607
8045
  #, fuzzy
8046
  msgid ""
8047
  "The information can be displayed in slideshows and in photo descriptions."
8048
  msgstr ""
8049
- "Die Informationen kann in Diashows und Fotobeschreibungen angezeigt werden."
8050
 
8051
  #: wppa-settings-autosave.php:605
8052
  #, fuzzy
8053
  msgid "Are you going to use EXIF data?"
8054
- msgstr "Willst du die EXIF-Daten verwenden?"
8055
 
8056
  #: wppa-settings-autosave.php:606
8057
  #, fuzzy
@@ -8059,13 +8062,13 @@ msgid ""
8059
  "EXIF data is information from the camera like model no, focal distance and "
8060
  "aperture used."
8061
  msgstr ""
8062
- "EXIF-Daten sind Informationen aus der Kamera wie Modell Nein, Brennweite und "
8063
  "Blende verwendet."
8064
 
8065
  #: wppa-settings-autosave.php:614
8066
  #, fuzzy
8067
  msgid "Are you going to use GPX data?"
8068
- msgstr "Willst du GPX-Daten verwenden?"
8069
 
8070
  #: wppa-settings-autosave.php:615
8071
  #, fuzzy
@@ -8073,18 +8076,18 @@ msgid ""
8073
  "Some cameras and mobile devices save the geographic location where the photo "
8074
  "is taken."
8075
  msgstr ""
8076
- "Einige Kameras und mobile Geräte speichern die geografische Position, wo das "
8077
  "Foto aufgenommen wurde."
8078
 
8079
  #: wppa-settings-autosave.php:616
8080
  #, fuzzy
8081
  msgid "A Google map can be displayed in slideshows."
8082
- msgstr "Eine Google-Karte kann in Diashows angezeigt werden."
8083
 
8084
  #: wppa-settings-autosave.php:623
8085
  #, fuzzy
8086
  msgid "Are you going to use Fotomoto?"
8087
- msgstr "Willst du Fotomoto verwenden?"
8088
 
8089
  #: wppa-settings-autosave.php:624
8090
  #, fuzzy
@@ -8092,49 +8095,50 @@ msgid ""
8092
  "<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> is an "
8093
  "on-line print service."
8094
  msgstr ""
8095
- "<a href=\"http://www.fotomoto.com/\" target=\"_blank\">Fotomoto</a> ist ein "
8096
- "Online-Druckdienst."
8097
 
8098
  #: wppa-settings-autosave.php:625
8099
  #, fuzzy
8100
  msgid "If you answer Yes, you will have to open an account on Fotomoto."
8101
- msgstr "Wenn Sie Ja Antworten, musst du ein Konto auf Fotomoto eröffnen."
 
8102
 
8103
  #: wppa-settings-autosave.php:632
8104
  #, fuzzy
8105
  msgid "Are you going to add videofiles?"
8106
- msgstr "Wollen Sie Videodateien hinzufügen?"
8107
 
8108
  #: wppa-settings-autosave.php:633
8109
  #, fuzzy
8110
  msgid "You can mix videos and photos in any album."
8111
- msgstr "Sie können Videos und Fotos in ein Album mischen."
8112
 
8113
  #: wppa-settings-autosave.php:634 wppa-settings-autosave.php:643
8114
  #: wppa-settings-autosave.php:652
8115
  #, fuzzy
8116
  msgid "You can configure the details later"
8117
- msgstr "Sie können die Details später konfigurieren."
8118
 
8119
  #: wppa-settings-autosave.php:641
8120
  #, fuzzy
8121
  msgid "Are you going to add audiofiles?"
8122
- msgstr "Wollen Sie Audiofiles hinzufügen?"
8123
 
8124
  #: wppa-settings-autosave.php:642
8125
  #, fuzzy
8126
  msgid "You can add audio to photos in any album."
8127
- msgstr "Sie können Fotos in einem Album Audio hinzufügen."
8128
 
8129
  #: wppa-settings-autosave.php:650
8130
  #, fuzzy
8131
  msgid "Are you going to upload 3D stereo photos?"
8132
- msgstr "Willst du 3D Stereo-Fotos hochladen?"
8133
 
8134
  #: wppa-settings-autosave.php:651
8135
  #, fuzzy
8136
  msgid "You can add l-r and r-l stereo photo pairs."
8137
- msgstr "Sie können l-R-R-l Stereo-Foto-Paare hinzufügen."
8138
 
8139
  #: wppa-settings-autosave.php:659
8140
  #, fuzzy
@@ -8144,7 +8148,8 @@ msgstr "Erledigt?"
8144
  #: wppa-settings-autosave.php:660
8145
  #, fuzzy
8146
  msgid "If you are ready answering these questions, select <b>yes</b>"
8147
- msgstr "Bist du bereit, diese Fragen zu beantworten, wählen Sie <b>Ja</b>"
 
8148
 
8149
  #: wppa-settings-autosave.php:661
8150
  #, fuzzy
@@ -8152,9 +8157,9 @@ msgid ""
8152
  "You can change any setting later, and be more specific and add a lot of "
8153
  "settings. For now it is enough, go create albums and upload photos!"
8154
  msgstr ""
8155
- "Sie können jede Einstellung später ändern und genauer zu sein und eine Menge "
8156
- "Einstellungen hinzufügen. Für jetzt ist es genug, gehen Sie Alben erstellen "
8157
- "und Fotos hochladen!"
8158
 
8159
  #: wppa-settings-autosave.php:665
8160
  #, fuzzy
@@ -8162,9 +8167,9 @@ msgid ""
8162
  "Thank you!. The most important settings are done now. You can refine your "
8163
  "settings, the behaviour and appearance of WPPA+ in the Tables below."
8164
  msgstr ""
8165
- "Danke!. Die wichtigsten Einstellungen sind jetzt fertig. Sie können Ihre "
8166
- "Einstellungen, das Verhalten und Aussehen der WPPA + in den nachstehenden "
8167
- "Tabellen verfeinern."
8168
 
8169
  #: wppa-settings-autosave.php:690
8170
  #, fuzzy
@@ -8182,13 +8187,13 @@ msgid ""
8182
  "This table describes all the sizes and size options (except fontsizes) for "
8183
  "the generation and display of the WPPA+ elements."
8184
  msgstr ""
8185
- "Diese Tabelle beschreibt die Größen und Größenoptionen (mit Ausnahme von "
8186
- "Schriftgrößen) für die Generierung und Anzeige der WPPA + Elemente."
8187
 
8188
  #: wppa-settings-autosave.php:709
8189
  #, fuzzy
8190
  msgid "WPPA+ global system related size settings"
8191
- msgstr "WPPA + global System bezogenen Größeneinstellungen"
8192
 
8193
  #: wppa-settings-autosave.php:711
8194
  #, fuzzy
@@ -8198,12 +8203,13 @@ msgstr "Breite der Spalte"
8198
  #: wppa-settings-autosave.php:712
8199
  #, fuzzy
8200
  msgid "The width of the main column in your theme's display area."
8201
- msgstr "Die Breite der Hauptspalte im Anzeigebereich des Themas."
8202
 
8203
  #: wppa-settings-autosave.php:713
8204
  #, fuzzy
8205
  msgid "Enter the width of the main column in your theme's display area."
8206
- msgstr "Geben Sie die Breite der Hauptspalte im Anzeigebereich des Themas."
 
8207
 
8208
  #: wppa-settings-autosave.php:714
8209
  #, fuzzy
@@ -8211,21 +8217,21 @@ msgid ""
8211
  "You should set this value correctly to make sure the fullsize images are "
8212
  "properly aligned horizontally."
8213
  msgstr ""
8214
- "Sie sollten diesen Wert richtig eingestellt, um sicherzustellen, dass die "
8215
- "Fullsize-Bilder richtig horizontal ausgerichtet sind."
8216
 
8217
  #: wppa-settings-autosave.php:715
8218
  #, fuzzy
8219
  msgid ""
8220
  "You may enter 'auto' for use in themes that have a floating content column."
8221
  msgstr ""
8222
- "Geben Sie 'auto' für den Einsatz in Themen, die eine schwimmende Inhalte "
8223
- "Spalte haben."
8224
 
8225
  #: wppa-settings-autosave.php:716
8226
  #, fuzzy
8227
  msgid "The use of 'auto' is required for responsive themes."
8228
- msgstr "Die Verwendung von 'Auto' ist für reagieren Themen erforderlich."
8229
 
8230
  #: wppa-settings-autosave.php:724
8231
  #, fuzzy
@@ -8235,7 +8241,7 @@ msgstr "Ursprüngliche Breite"
8235
  #: wppa-settings-autosave.php:725
8236
  #, fuzzy
8237
  msgid "The most often displayed colun width in responsive theme"
8238
- msgstr "Die meisten oft Colun Breite in ansprechende Thema angezeigt."
8239
 
8240
  #: wppa-settings-autosave.php:726
8241
  #, fuzzy
@@ -8243,18 +8249,19 @@ msgid ""
8243
  "Change this value only if your responsive theme shows initially a wrong "
8244
  "column width."
8245
  msgstr ""
8246
- "Ändern Sie diesen Wert nur, wenn Ihre ansprechende Thema zunächst eine "
8247
  "falsche Spaltenbreite zeigt."
8248
 
8249
  #: wppa-settings-autosave.php:733
8250
  #, fuzzy
8251
  msgid "Resize on Upload"
8252
- msgstr "Beim Hochladen verkleinern"
8253
 
8254
  #: wppa-settings-autosave.php:734
8255
  #, fuzzy
8256
  msgid "Indicate if the photos should be resized during upload."
8257
- msgstr "Geben Sie an, ob die Fotos beim Hochladen verkleinert werden sollte."
 
8258
 
8259
  #: wppa-settings-autosave.php:735
8260
  #, fuzzy
@@ -8262,15 +8269,14 @@ msgid ""
8262
  "If you check this item, the size of the photos will be reduced to the "
8263
  "dimension specified in the next item during the upload/import process."
8264
  msgstr ""
8265
- "Wenn Sie diesen Artikel überprüfen, verringert sich die Größe der Fotos auf "
8266
- "die Dimension, die in der Tagesordnung beim Upload/Import angegeben."
8267
 
8268
  #: wppa-settings-autosave.php:736
8269
  #, fuzzy
8270
  msgid "The photos will never be stretched during upload if they are smaller."
8271
  msgstr ""
8272
- "Die Fotos werden nie während des Uploads gestreckt werden, wenn sie kleiner "
8273
- "sind."
8274
 
8275
  #: wppa-settings-autosave.php:744
8276
  #, fuzzy
@@ -8280,12 +8286,12 @@ msgstr "Passend skalieren"
8280
  #: wppa-settings-autosave.php:745
8281
  #, fuzzy
8282
  msgid "Resize photos to fit within a given area."
8283
- msgstr "Verkleinern Sie Fotos in einem bestimmten Gebiet passen."
8284
 
8285
  #: wppa-settings-autosave.php:746
8286
  #, fuzzy
8287
  msgid "Specify the screensize for the unscaled photos."
8288
- msgstr "Geben Sie die Screensize für die unskalierten Fotos."
8289
 
8290
  #: wppa-settings-autosave.php:747
8291
  #, fuzzy
@@ -8293,8 +8299,8 @@ msgid ""
8293
  "The use of a non-default value is particularly usefull when you make use of "
8294
  "lightbox functionality."
8295
  msgstr ""
8296
- "Die Verwendung von nicht-Standardwert ist besonders nützlich, wenn Sie "
8297
- "machen Lightbox-Funktionen nutzen."
8298
 
8299
  #: wppa-settings-autosave.php:749 wppa-settings-autosave.php:771
8300
  #: wppa-settings-autosave.php:782 wppa-settings-autosave.php:791
@@ -8313,22 +8319,24 @@ msgstr ""
8313
  #: wppa-settings-autosave.php:1364 wppa-settings-autosave.php:1373
8314
  #: wppa-settings-autosave.php:1406 wppa-settings-autosave.php:1415
8315
  #: wppa-settings-autosave.php:1427 wppa-settings-autosave.php:1436
8316
- #: wppa-settings-autosave.php:2910 wppa-settings-autosave.php:4828
8317
- #: wppa-settings-autosave.php:4845 wppa-settings-autosave.php:4862
8318
- #: wppa-settings-autosave.php:4879 wppa-settings-autosave.php:4896
8319
- #: wppa-settings-autosave.php:4913 wppa-settings-autosave.php:4930
8320
- #: wppa-settings-autosave.php:4947 wppa-settings-autosave.php:4964
8321
- #: wppa-settings-autosave.php:6241 wppa-settings-autosave.php:8909
8322
- #: wppa-settings-autosave.php:9105 wppa-settings-autosave.php:9147
8323
- #: wppa-settings-autosave.php:9165
8324
  #, fuzzy
8325
  msgid "pixels"
8326
- msgstr "Pixel"
 
 
8327
 
8328
  #: wppa-settings-autosave.php:750
8329
  #, fuzzy
8330
  msgid "Fit within rectangle as set in Table I-B1,2"
8331
- msgstr "Fit im Rechteck wie in Tabelle ich-B1, 2"
8332
 
8333
  #: wppa-settings-autosave.php:757
8334
  #, fuzzy
@@ -8338,7 +8346,7 @@ msgstr "Photocount Schwelle"
8338
  #: wppa-settings-autosave.php:758
8339
  #, fuzzy
8340
  msgid "Number of photos in an album must exceed."
8341
- msgstr "Anzahl der Fotos in einem Album überschreiten darf."
8342
 
8343
  #: wppa-settings-autosave.php:759
8344
  #, fuzzy
@@ -8348,17 +8356,16 @@ msgid ""
8348
  "contains only sub albums without seeing them in the list of sub albums. "
8349
  "Usually set to 0 (always show) or 1 (for one cover photo)."
8350
  msgstr ""
8351
- "Fotos erscheinen in das Album nicht, es sei denn es mehr als diese Anzahl "
8352
- "von Fotos in das Album gibt. Dies ermöglicht Ihnen, Cover-Fotos auf ein "
8353
- "Album zu erstellen, nur Sub Alben enthält, ohne sie zu sehen in der Liste "
8354
- "der Sub-Alben. In der Regel auf 0 gesetzt (immer einblenden) oder 1 (für ein "
8355
- "Titelbild)."
8356
 
8357
  #: wppa-settings-autosave.php:761 wppa-settings-autosave.php:800
8358
  #: wppa-settings-autosave.php:1244 wppa-settings-autosave.php:1284
8359
  #: wppa-settings-autosave.php:1304 wppa-settings-autosave.php:1344
8360
- #: wppa-settings-autosave.php:4224 wppa-settings-autosave.php:6166
8361
- #: wppa-settings-autosave.php:7999
8362
  #, fuzzy
8363
  msgid "photos"
8364
  msgstr "Fotos"
@@ -8371,7 +8378,7 @@ msgstr "Rahmendicke:"
8371
  #: wppa-settings-autosave.php:767
8372
  #, fuzzy
8373
  msgid "Thickness of wppa+ box borders."
8374
- msgstr "Die Dicke des Wppa + Box Grenzen."
8375
 
8376
  #: wppa-settings-autosave.php:768
8377
  #, fuzzy
@@ -8379,18 +8386,18 @@ msgid ""
8379
  "Enter the thickness for the border of the WPPA+ boxes. A number of 0 means: "
8380
  "no border."
8381
  msgstr ""
8382
- "Geben Sie die Dicke für die Grenze der WPPA + Boxen. Eine Reihe von 0 "
8383
  "bedeutet: keine Grenze."
8384
 
8385
  #: wppa-settings-autosave.php:769 wppa-settings-autosave.php:779
8386
  #, fuzzy
8387
  msgid "WPPA+ boxes are: the navigation bars and the filmstrip."
8388
- msgstr "WPPA + Boxen sind: die Navigationsleisten und im Filmstreifen."
8389
 
8390
  #: wppa-settings-autosave.php:777
8391
  #, fuzzy
8392
  msgid "Radius of wppa+ box borders."
8393
- msgstr "Radius des Wppa + Box Grenzen."
8394
 
8395
  #: wppa-settings-autosave.php:778
8396
  #, fuzzy
@@ -8398,30 +8405,30 @@ msgid ""
8398
  "Enter the corner radius for the border of the WPPA+ boxes. A number of 0 "
8399
  "means: no rounded corners."
8400
  msgstr ""
8401
- "Geben Sie den Eckenradius für die Grenze der WPPA + Boxen. Eine Reihe von 0 "
8402
  "bedeutet: keine abgerundeten Ecken."
8403
 
8404
  #: wppa-settings-autosave.php:780
8405
  #, fuzzy
8406
  msgid "Note that rounded corners are only supported by modern browsers."
8407
  msgstr ""
8408
- "Beachten Sie, dass die abgerundete Ecken nur von modernen Browsern "
8409
- "unterstützt werden."
8410
 
8411
  #: wppa-settings-autosave.php:788
8412
  #, fuzzy
8413
  msgid "Distance between wppa+ boxes."
8414
- msgstr "Abstand zwischen Wppa + Boxen."
8415
 
8416
  #: wppa-settings-autosave.php:796
8417
  #, fuzzy
8418
  msgid "Related count"
8419
- msgstr "Verwandte Graf"
8420
 
8421
  #: wppa-settings-autosave.php:797
8422
  #, fuzzy
8423
  msgid "The default maximum number of related photos to find."
8424
- msgstr "Die maximale Standardanzahl von verwandten Fotos zu finden."
8425
 
8426
  #: wppa-settings-autosave.php:798
8427
  #, fuzzy
@@ -8430,14 +8437,14 @@ msgid ""
8430
  "wppa], the maximum number is 23. Omitting the number gives the maximum of "
8431
  "this setting."
8432
  msgstr ""
8433
- "Bei der Verwendung von Kurzwahlnummern wie [Wppa Typ = \"Album\" Album = "
8434
- "\"#related, Desc, 23\"] [/wppa], die maximale Anzahl beträgt 23. Weglassen "
8435
- "der Zahl gibt das Maximum dieser Einstellung."
8436
 
8437
  #: wppa-settings-autosave.php:806
8438
  #, fuzzy
8439
  msgid "The maximum number of pagelinks to be displayed."
8440
- msgstr "Die maximale Anzahl von Pagelinks angezeigt werden."
8441
 
8442
  #: wppa-settings-autosave.php:809
8443
  #, fuzzy
@@ -8447,17 +8454,17 @@ msgstr "Seiten:"
8447
  #: wppa-settings-autosave.php:814
8448
  #, fuzzy
8449
  msgid "Max file name length"
8450
- msgstr "Max Datei Namenslänge"
8451
 
8452
  #: wppa-settings-autosave.php:815
8453
  #, fuzzy
8454
  msgid "The max length of a photo file name excluding the extension."
8455
- msgstr "Die maximale Länge eines Bild-Dateinamens ausgenommen die Erweiterung."
8456
 
8457
  #: wppa-settings-autosave.php:816 wppa-settings-autosave.php:825
8458
  #, fuzzy
8459
  msgid "A setting of 0 means: unlimited."
8460
- msgstr "Die Einstellung 0 bedeutet: unbegrenzt."
8461
 
8462
  #: wppa-settings-autosave.php:818 wppa-settings-autosave.php:827
8463
  #, fuzzy
@@ -8467,29 +8474,27 @@ msgstr "Zeichen"
8467
  #: wppa-settings-autosave.php:823
8468
  #, fuzzy
8469
  msgid "Max photo name length"
8470
- msgstr "Max Foto Namenslänge"
8471
 
8472
  #: wppa-settings-autosave.php:824
8473
  #, fuzzy
8474
  msgid "The max length of a photo name."
8475
- msgstr "Die maximale Länge eines Foto-namens."
8476
 
8477
  #: wppa-settings-autosave.php:833
8478
  #, fuzzy
8479
  msgid "The height of your sticky header."
8480
- msgstr "Die Höhe Ihrer klebrigen Header."
8481
 
8482
  #: wppa-settings-autosave.php:834
8483
  #, fuzzy
8484
  msgid "If your theme has a sticky header, enter its height here."
8485
- msgstr ""
8486
- "Wenn Ihr Thema einen klebrigen-Header verfügt, geben Sie hier ihren "
8487
- "Höhepunkt."
8488
 
8489
  #: wppa-settings-autosave.php:842
8490
  #, fuzzy
8491
  msgid "Slideshow related size settings"
8492
- msgstr "Diashow im Zusammenhang Größeneinstellungen"
8493
 
8494
  #: wppa-settings-autosave.php:844
8495
  #, fuzzy
@@ -8506,16 +8511,16 @@ msgstr "Die maximale Breite Fotos werden in Diashows angezeigt."
8506
  msgid ""
8507
  "Enter the largest size in pixels as how you want your photos to be displayed."
8508
  msgstr ""
8509
- "Geben Sie die maximale Bildgröße in Pixeln, wie Sie Ihre Fotos angezeigt "
8510
- "werden sollen."
8511
 
8512
  #: wppa-settings-autosave.php:847
8513
  #, fuzzy
8514
  msgid ""
8515
  "This is usually the same as the Column Width (Table I-A1), but it may differ."
8516
  msgstr ""
8517
- "Dies ist in der Regel die gleichen wie die Spaltenbreite (Tabelle i-A1), "
8518
- "aber es kann abweichen."
8519
 
8520
  #: wppa-settings-autosave.php:855
8521
  #, fuzzy
@@ -8533,8 +8538,8 @@ msgid ""
8533
  "This setting defines the height of the space reserved for photos in "
8534
  "slideshows."
8535
  msgstr ""
8536
- "Diese Einstellung definiert die Höhe des Raumes vorbehalten Fotos in "
8537
- "Diashows."
8538
 
8539
  #: wppa-settings-autosave.php:859
8540
  #, fuzzy
@@ -8543,9 +8548,9 @@ msgid ""
8543
  "this value changes proportionally to match the aspect ratio as defined by "
8544
  "this and the previous setting."
8545
  msgstr ""
8546
- "Wenn Sie die Breite eines Bildschirms, indem die Größe ändern = \"...\" "
8547
- "Shortcode Attribut dieser Wert ändert sich proportional das Seitenverhältnis "
8548
- "angepasst, wie diese und die vorherige Einstellung definiert."
8549
 
8550
  #: wppa-settings-autosave.php:861 wppa-settings-autosave.php:1034
8551
  #: wppa-settings-autosave.php:1045
@@ -8561,7 +8566,7 @@ msgstr "Passend strecken"
8561
  #: wppa-settings-autosave.php:867
8562
  #, fuzzy
8563
  msgid "Stretch photos that are too small."
8564
- msgstr "Dehnen Sie Fotos, die zu klein sind."
8565
 
8566
  #: wppa-settings-autosave.php:868
8567
  #, fuzzy
@@ -8570,19 +8575,19 @@ msgid ""
8570
  "smaller. Leaving unchecked is recommended. It is better to upload photos "
8571
  "that fit well the sizes you use!"
8572
  msgstr ""
8573
- "Bilder werden auf die Maximalgröße zum Zeitpunkt der Anzeige gestreckt "
8574
- "werden, wenn sie kleiner sind. Es empfiehlt sich unkontrolliert verlassen. "
8575
- "Es ist besser, Fotos hochladen, die gut passen die Größen, die Sie verwenden!"
8576
 
8577
  #: wppa-settings-autosave.php:875
8578
  #, fuzzy
8579
  msgid "Slideshow borderwidth"
8580
- msgstr "Diashow borderwidth"
8581
 
8582
  #: wppa-settings-autosave.php:876
8583
  #, fuzzy
8584
  msgid "The width of the border around slideshow images."
8585
- msgstr "Die Breite des Rahmens um Diashow-Bilder."
8586
 
8587
  #: wppa-settings-autosave.php:877
8588
  #, fuzzy
@@ -8590,8 +8595,8 @@ msgid ""
8590
  "The border is made by the image background being larger than the image "
8591
  "itsself (padding)."
8592
  msgstr ""
8593
- "Die Grenze wird durch den Bildhintergrund ist größer als das Bild selbst "
8594
- "(Padding) gemacht."
8595
 
8596
  #: wppa-settings-autosave.php:878
8597
  #, fuzzy
@@ -8599,18 +8604,19 @@ msgid ""
8599
  "Additionally there may be a one pixel outline of a different color. See "
8600
  "Table III-A2."
8601
  msgstr ""
8602
- "Zusätzlich kann eine Gliederung ein Pixel in einer anderen Farbe sein. Siehe "
8603
  "Tabelle III-A2."
8604
 
8605
  #: wppa-settings-autosave.php:879
8606
  #, fuzzy
8607
  msgid "The number you enter here is exclusive the one pixel outline."
8608
- msgstr "Die Anzahl, die Sie hier eingeben ist exklusiv den Umriss ein Pixel."
8609
 
8610
  #: wppa-settings-autosave.php:880
8611
  #, fuzzy
8612
  msgid "If you leave this entry empty, there will be no outline either."
8613
- msgstr "Wenn Sie diesen Eintrag leer lassen, wird es auch kein Umriss geben."
 
8614
 
8615
  #: wppa-settings-autosave.php:887
8616
  #, fuzzy
@@ -8620,7 +8626,7 @@ msgstr "Numbar Max"
8620
  #: wppa-settings-autosave.php:888
8621
  #, fuzzy
8622
  msgid "Maximum numbers to display."
8623
- msgstr "Maximale Anzahl angezeigt."
8624
 
8625
  #: wppa-settings-autosave.php:889
8626
  #, fuzzy
@@ -8629,9 +8635,9 @@ msgid ""
8629
  "- except the current - when there are more than this number of photos in a "
8630
  "slideshow."
8631
  msgstr ""
8632
- "In Ordnung, hält auf eine Zeile passen werden die Zahlen durch Punkte - mit "
8633
- "Ausnahme der Strom - ersetzt werden, wenn mehr als diese Anzahl von Fotos in "
8634
- "einer Diashow."
8635
 
8636
  #: wppa-settings-autosave.php:891
8637
  #, fuzzy
@@ -8646,7 +8652,7 @@ msgstr "\"Teilen\"-Button"
8646
  #: wppa-settings-autosave.php:897
8647
  #, fuzzy
8648
  msgid "The size of the social media icons in the Share box"
8649
- msgstr "Die Größe des social Media-Symbole in der Mitteilungsbox"
8650
 
8651
  #: wppa-settings-autosave.php:907
8652
  #, fuzzy
@@ -8656,7 +8662,7 @@ msgstr "Mini Treshold"
8656
  #: wppa-settings-autosave.php:908
8657
  #, fuzzy
8658
  msgid "Show mini text at slideshow smaller then."
8659
- msgstr "Zeigen Sie Mini-Text bei Diashow kleiner dann."
8660
 
8661
  #: wppa-settings-autosave.php:909
8662
  #, fuzzy
@@ -8664,19 +8670,19 @@ msgid ""
8664
  "Display Next and Prev. as opposed to Next photo and Previous photo when the "
8665
  "cotainer is smaller than this size."
8666
  msgstr ""
8667
- "Wenn die Cotainer kleiner als diese Größe ist weiter \"und\" Prev im "
8668
- "Gegensatz zum nächsten Foto und vorherige Foto angezeigt."
8669
 
8670
  #: wppa-settings-autosave.php:910
8671
  #, fuzzy
8672
  msgid "Special use in responsive themes."
8673
- msgstr "Besondere Verwendung in reagieren Themen."
8674
 
8675
  #: wppa-settings-autosave.php:918
8676
  #, fuzzy
8677
  msgid "The maximum number of slides in a certain view. 0 means no pagination"
8678
  msgstr ""
8679
- "Die maximale Anzahl der Folien in einer bestimmten Ansicht. 0 bedeutet keine "
8680
  "Paginierung"
8681
 
8682
  #: wppa-settings-autosave.php:921 wppa-settings-autosave.php:940
@@ -8687,7 +8693,7 @@ msgstr "Gleitschienen"
8687
  #: wppa-settings-autosave.php:926
8688
  #, fuzzy
8689
  msgid "Filmstrip Thumbnail Size"
8690
- msgstr "Filmstreifen-Miniaturansicht"
8691
 
8692
  #: wppa-settings-autosave.php:927
8693
  #, fuzzy
@@ -8699,7 +8705,8 @@ msgstr "Die Größe der Filmstreifen Bilder."
8699
  #: wppa-settings-autosave.php:1159
8700
  #, fuzzy
8701
  msgid "This size applies to the width or height, whichever is the largest."
8702
- msgstr "Diese Größe bezieht sich auf die Breite oder Höhe, welches das größte."
 
8703
 
8704
  #: wppa-settings-autosave.php:929 wppa-settings-autosave.php:950
8705
  #: wppa-settings-autosave.php:960
@@ -8708,23 +8715,23 @@ msgid ""
8708
  "Changing the thumbnail size may result in all thumbnails being regenerated. "
8709
  "this may take a while."
8710
  msgstr ""
8711
- "Ändern der Größe die Miniaturansichten führen alle Thumbnails werden "
8712
- "regeneriert. Dies kann eine Weile dauern."
8713
 
8714
  #: wppa-settings-autosave.php:937
8715
  #, fuzzy
8716
  msgid "The max number of slides in a slideonly display"
8717
- msgstr "Die maximale Anzahl von Folien in einer Slideonly-Anzeige"
8718
 
8719
  #: wppa-settings-autosave.php:945
8720
  #, fuzzy
8721
  msgid "Thumbnail photos related size settings"
8722
- msgstr "Thumbnail-Bilder im Zusammenhang mit Größeneinstellungen"
8723
 
8724
  #: wppa-settings-autosave.php:947
8725
  #, fuzzy
8726
  msgid "Thumbnail Size"
8727
- msgstr "Vorschaubild Grösse"
8728
 
8729
  #: wppa-settings-autosave.php:948
8730
  #, fuzzy
@@ -8739,104 +8746,104 @@ msgstr "Thumbnail Größe"
8739
  #: wppa-settings-autosave.php:958
8740
  #, fuzzy
8741
  msgid "The alternative size of the thumbnail images."
8742
- msgstr "Die alternative Größe der Miniaturen."
8743
 
8744
  #: wppa-settings-autosave.php:967
8745
  #, fuzzy
8746
  msgid "Thumbnail Aspect"
8747
- msgstr "Miniaturansicht Aspekt"
8748
 
8749
  #: wppa-settings-autosave.php:968
8750
  #, fuzzy
8751
  msgid "Aspect ration of thumbnail image"
8752
- msgstr "Seitenverhältnis der Miniaturansicht"
8753
 
8754
  #: wppa-settings-autosave.php:972
8755
  #, fuzzy
8756
  msgid "--- same as fullsize ---"
8757
- msgstr "---gleich als Fullsize---"
8758
 
8759
  #: wppa-settings-autosave.php:973
8760
  #, fuzzy
8761
  msgid "--- square clipped ---"
8762
- msgstr "---Platz abgeschnitten---"
8763
 
8764
  #: wppa-settings-autosave.php:974
8765
  #, fuzzy
8766
  msgid "4:5 landscape clipped"
8767
- msgstr "4:5 Landschaft abgeschnitten"
8768
 
8769
  #: wppa-settings-autosave.php:975
8770
  #, fuzzy
8771
  msgid "3:4 landscape clipped"
8772
- msgstr "3:4 Landschaft abgeschnitten"
8773
 
8774
  #: wppa-settings-autosave.php:976
8775
  #, fuzzy
8776
  msgid "2:3 landscape clipped"
8777
- msgstr "2:3 Landschaft abgeschnitten"
8778
 
8779
  #: wppa-settings-autosave.php:977
8780
  #, fuzzy
8781
  msgid "9:16 landscape clipped"
8782
- msgstr "09:16 Landschaft abgeschnitten"
8783
 
8784
  #: wppa-settings-autosave.php:978
8785
  #, fuzzy
8786
  msgid "1:2 landscape clipped"
8787
- msgstr "1:2 Landschaft abgeschnitten"
8788
 
8789
  #: wppa-settings-autosave.php:979
8790
  #, fuzzy
8791
  msgid "--- square padded ---"
8792
- msgstr "---Platz gepolstert---"
8793
 
8794
  #: wppa-settings-autosave.php:980
8795
  #, fuzzy
8796
  msgid "4:5 landscape padded"
8797
- msgstr "4:5 Landschaft gepolstert"
8798
 
8799
  #: wppa-settings-autosave.php:981
8800
  #, fuzzy
8801
  msgid "3:4 landscape padded"
8802
- msgstr "3:4 Landschaft gepolstert"
8803
 
8804
  #: wppa-settings-autosave.php:982
8805
  #, fuzzy
8806
  msgid "2:3 landscape padded"
8807
- msgstr "2:3 Landschaft gepolstert"
8808
 
8809
  #: wppa-settings-autosave.php:983
8810
  #, fuzzy
8811
  msgid "9:16 landscape padded"
8812
- msgstr "09:16 Landschaft gepolstert"
8813
 
8814
  #: wppa-settings-autosave.php:984
8815
  #, fuzzy
8816
  msgid "1:2 landscape padded"
8817
- msgstr "1:2 Landschaft gepolstert"
8818
 
8819
  #: wppa-settings-autosave.php:1006
8820
  #, fuzzy
8821
  msgid "Thumbframe width"
8822
- msgstr "Thumbframe breite"
8823
 
8824
  #: wppa-settings-autosave.php:1007
8825
  #, fuzzy
8826
  msgid "The width of the thumbnail frame."
8827
- msgstr "Die Breite des Rahmens Miniaturansicht."
8828
 
8829
  #: wppa-settings-autosave.php:1008 wppa-settings-autosave.php:1019
8830
  #, fuzzy
8831
  msgid "Set the width of the thumbnail frame."
8832
- msgstr "Legen Sie die Breite des Rahmens Miniaturansicht."
8833
 
8834
  #: wppa-settings-autosave.php:1009 wppa-settings-autosave.php:1020
8835
  #: wppa-settings-autosave.php:1031 wppa-settings-autosave.php:1042
8836
  #: wppa-settings-autosave.php:1053
8837
  #, fuzzy
8838
  msgid "Set width, height and spacing for the thumbnail frames."
8839
- msgstr "Breite, Höhe und Abstand für die Miniaturansicht Bilder eingestellt."
8840
 
8841
  #: wppa-settings-autosave.php:1010 wppa-settings-autosave.php:1021
8842
  #: wppa-settings-autosave.php:1032 wppa-settings-autosave.php:1043
@@ -8846,18 +8853,18 @@ msgid ""
8846
  "These sizes should be large enough for a thumbnail image and - optionally - "
8847
  "the text under it."
8848
  msgstr ""
8849
- "Diese Größen sollte groß genug für eine Miniaturansicht und -gegebenenfalls "
8850
- "- den Text darunter."
8851
 
8852
  #: wppa-settings-autosave.php:1017
8853
  #, fuzzy
8854
  msgid "Thumbframe width Alt"
8855
- msgstr "Thumbframe breite Alt"
8856
 
8857
  #: wppa-settings-autosave.php:1018
8858
  #, fuzzy
8859
  msgid "The width of the alternative thumbnail frame."
8860
- msgstr "Die Breite des alternativen thumbnail Rahmens."
8861
 
8862
  #: wppa-settings-autosave.php:1028
8863
  #, fuzzy
@@ -8867,12 +8874,12 @@ msgstr "Thumbframe Höhe"
8867
  #: wppa-settings-autosave.php:1029
8868
  #, fuzzy
8869
  msgid "The height of the thumbnail frame."
8870
- msgstr "Die Höhe des thumbnail Rahmens."
8871
 
8872
  #: wppa-settings-autosave.php:1030 wppa-settings-autosave.php:1041
8873
  #, fuzzy
8874
  msgid "Set the height of the thumbnail frame."
8875
- msgstr "Festlegen Sie die Höhe des thumbnail Rahmens."
8876
 
8877
  #: wppa-settings-autosave.php:1039
8878
  #, fuzzy
@@ -8882,33 +8889,33 @@ msgstr "Thumbframe Höhe Alt"
8882
  #: wppa-settings-autosave.php:1040
8883
  #, fuzzy
8884
  msgid "The height of the alternative thumbnail frame."
8885
- msgstr "Die Höhe des alternativen thumbnail Rahmens."
8886
 
8887
  #: wppa-settings-autosave.php:1050
8888
  #, fuzzy
8889
  msgid "Thumbnail spacing"
8890
- msgstr "Miniaturansicht Abstand"
8891
 
8892
  #: wppa-settings-autosave.php:1051
8893
  #, fuzzy
8894
  msgid "The spacing between adjacent thumbnail frames."
8895
- msgstr "Der Abstand zwischen angrenzenden thumbnail Frames."
8896
 
8897
  #: wppa-settings-autosave.php:1052
8898
  #, fuzzy
8899
  msgid "Set the minimal spacing between the adjacent thumbnail frames"
8900
  msgstr ""
8901
- "Festlegen Sie den minimale Abstand zwischen den benachbarten thumbnail Rahmen"
8902
 
8903
  #: wppa-settings-autosave.php:1061
8904
  #, fuzzy
8905
  msgid "Auto spacing"
8906
- msgstr "Automatische Abstände"
8907
 
8908
  #: wppa-settings-autosave.php:1062
8909
  #, fuzzy
8910
  msgid "Space the thumbnail frames automatic."
8911
- msgstr "Raum die Miniaturansicht Bilder automatisch."
8912
 
8913
  #: wppa-settings-autosave.php:1063
8914
  #, fuzzy
@@ -8916,8 +8923,8 @@ msgid ""
8916
  "If you check this box, the thumbnail images will be evenly distributed over "
8917
  "the available width."
8918
  msgstr ""
8919
- "Wenn Sie dieses Kontrollkästchen aktivieren, werden die Miniaturbilder die "
8920
- "verfügbare Breite gleichmäßig verteilt."
8921
 
8922
  #: wppa-settings-autosave.php:1064
8923
  #, fuzzy
@@ -8925,8 +8932,8 @@ msgid ""
8925
  "In this case, the thumbnail spacing value (setting I-9) will be regarded as "
8926
  "a minimum value."
8927
  msgstr ""
8928
- "In diesem Fall wird die Miniaturansicht Abstandswert (Einstellung i-9) als "
8929
- "einen Mindestwert angesehen werden."
8930
 
8931
  #: wppa-settings-autosave.php:1071 wppa-settings-autosave.php:1178
8932
  #, fuzzy
@@ -8936,7 +8943,7 @@ msgstr "Seitengröße"
8936
  #: wppa-settings-autosave.php:1072
8937
  #, fuzzy
8938
  msgid "Max number of thumbnails per page."
8939
- msgstr "Max. Anzahl der Thumbnails pro Seite."
8940
 
8941
  #: wppa-settings-autosave.php:1073
8942
  #, fuzzy
@@ -8944,13 +8951,13 @@ msgid ""
8944
  "Enter the maximum number of thumbnail images per page. A value of 0 "
8945
  "indicates no pagination."
8946
  msgstr ""
8947
- "Geben Sie die maximale Anzahl der thumbnail-Bilder pro Seite. Der Wert 0 "
8948
- "bedeutet keine Paginierung."
8949
 
8950
  #: wppa-settings-autosave.php:1081
8951
  #, fuzzy
8952
  msgid "The size of the thumbnail popup images."
8953
- msgstr "Die Größe der Miniaturansicht Popup Bilder."
8954
 
8955
  #: wppa-settings-autosave.php:1082
8956
  #, fuzzy
@@ -8958,13 +8965,13 @@ msgid ""
8958
  "Enter the size of the popup images. This size should be larger than the "
8959
  "thumbnail size."
8960
  msgstr ""
8961
- "Geben Sie die Größe der Popup-Bilder. Diese Größe sollte größer als die "
8962
- "Größe der Miniaturansichten."
8963
 
8964
  #: wppa-settings-autosave.php:1083
8965
  #, fuzzy
8966
  msgid "This size should also be at least the cover image size."
8967
- msgstr "Diese Größe sollte auch mindestens die Abdeckung Bildgröße."
8968
 
8969
  #: wppa-settings-autosave.php:1084
8970
  #, fuzzy
@@ -8972,8 +8979,8 @@ msgid ""
8972
  "Changing the popup size may result in all thumbnails being regenerated. this "
8973
  "may take a while."
8974
  msgstr ""
8975
- "Popup-Größe ändern führen alle Thumbnails werden regeneriert. Dies kann eine "
8976
- "Weile dauern."
8977
 
8978
  #: wppa-settings-autosave.php:1085
8979
  #, fuzzy
@@ -8981,8 +8988,8 @@ msgid ""
8981
  "Although this setting has only visual effect if \"Thumb popup\" (Table IV-"
8982
  "C8) is checked,"
8983
  msgstr ""
8984
- "Obwohl diese Einstellung nur optische Wirkung, hat wenn \"Daumen-Popup"
8985
- "\" (Tabelle IV-C8) aktiviert ist,"
8986
 
8987
  #: wppa-settings-autosave.php:1086
8988
  #, fuzzy
@@ -8990,23 +8997,24 @@ msgid ""
8990
  "the value must be right as it is the physical size of the thumbnail and "
8991
  "coverphoto images."
8992
  msgstr ""
8993
- "der Wert muss sein Recht, wie es die physische Größe der Miniaturansicht und "
8994
- "Titelfoto Bilder ist."
8995
 
8996
  #: wppa-settings-autosave.php:1093
8997
  #, fuzzy
8998
  msgid "Use thumbs if fit"
8999
- msgstr "Verwenden Sie Daumen, wenn passen"
9000
 
9001
  #: wppa-settings-autosave.php:1094
9002
  #, fuzzy
9003
  msgid "Use the thumbnail image files if they are large enough."
9004
- msgstr "Verwenden Sie die thumbnail-Bild-Dateien, wenn sie groß genug sind."
9005
 
9006
  #: wppa-settings-autosave.php:1095
9007
  #, fuzzy
9008
  msgid "This setting speeds up page loading for small photos."
9009
- msgstr "Diese Einstellung beschleunigt Seitenladen für kleine Fotos."
 
9010
 
9011
  #: wppa-settings-autosave.php:1096
9012
  #, fuzzy
@@ -9014,9 +9022,9 @@ msgid ""
9014
  "Do NOT use this when your thumbnails have a forced aspect ratio (when Table "
9015
  "I-C2 is set to anything different from --- same as fullsize ---)"
9016
  msgstr ""
9017
- "Verwenden Sie diese nicht bei wenn Ihre Miniaturen einen erzwungene "
9018
- "Seitenverhältnis (Tisch-C2 auf nichts anderes, als---wie Fullsize---"
9019
- "eingestellt ist)"
9020
 
9021
  #: wppa-settings-autosave.php:1103
9022
  #, fuzzy
@@ -9026,7 +9034,7 @@ msgstr "Album-Cover im Zusammenhang Größeneinstellungen"
9026
  #: wppa-settings-autosave.php:1106
9027
  #, fuzzy
9028
  msgid "Maximum width for a album cover display."
9029
- msgstr "Maximale Breite für ein Album cover Anzeige."
9030
 
9031
  #: wppa-settings-autosave.php:1107
9032
  #, fuzzy
@@ -9034,8 +9042,8 @@ msgid ""
9034
  "Display covers in 2 or more columns if the display area is wider than the "
9035
  "given width."
9036
  msgstr ""
9037
- "Anzeige deckt in 2 oder mehr Spalten, wenn der Anzeigebereich breiter als "
9038
- "die angegebene Breite ist."
9039
 
9040
  #: wppa-settings-autosave.php:1108
9041
  #, fuzzy
@@ -9043,18 +9051,18 @@ msgid ""
9043
  "This also applies for 'thumbnails as covers', and will NOT apply to single "
9044
  "items."
9045
  msgstr ""
9046
- "Dies gilt für \"Thumbnails als Cover\", und gelten nicht für einzelne "
9047
- "Artikel."
9048
 
9049
  #: wppa-settings-autosave.php:1115
9050
  #, fuzzy
9051
  msgid "Min Cover height"
9052
- msgstr "Min Deckelhöhe"
9053
 
9054
  #: wppa-settings-autosave.php:1116
9055
  #, fuzzy
9056
  msgid "Minimal height of an album cover."
9057
- msgstr "Minimale Höhe der ein Album-Cover."
9058
 
9059
  #: wppa-settings-autosave.php:1117
9060
  #, fuzzy
@@ -9062,14 +9070,14 @@ msgid ""
9062
  "If you use this setting to make the albums the same height and you are not "
9063
  "satisfied about the lay-out, try increasing the value in the next setting"
9064
  msgstr ""
9065
- "Wenn Sie diese Einstellung verwenden, um den Alben die gleiche Höhe zu "
9066
- "machen und Sie nicht zufrieden über das Lay-out sind, erhöhen Sie den Wert "
9067
- "in der nächsten Einstellung"
9068
 
9069
  #: wppa-settings-autosave.php:1124
9070
  #, fuzzy
9071
  msgid "Min Text frame height"
9072
- msgstr "Min Text Rahmenhöhe"
9073
 
9074
  #: wppa-settings-autosave.php:1125
9075
  #, fuzzy
@@ -9082,8 +9090,8 @@ msgid ""
9082
  "The height starting with the album title up to and including the view- and "
9083
  "the slideshow- links."
9084
  msgstr ""
9085
- "Die Höhe, beginnend mit dem Albumtitel bis zu und einschließlich der "
9086
- "Ansicht- und Diashow-Links."
9087
 
9088
  #: wppa-settings-autosave.php:1127
9089
  #, fuzzy
@@ -9091,28 +9099,28 @@ msgid ""
9091
  "This setting enables you to give the album covers the same height while the "
9092
  "title does not need to fit on one line."
9093
  msgstr ""
9094
- "Diese Einstellung können Sie die Album-Cover die gleiche Höhe geben, während "
9095
- "der Titel nicht in eine Zeile passen muss."
9096
 
9097
  #: wppa-settings-autosave.php:1128
9098
  #, fuzzy
9099
  msgid "This is the recommended setting to line-up your covers!"
9100
- msgstr "Dies ist die empfohlene Einstellung zum Line-up Ihrer deckt!"
9101
 
9102
  #: wppa-settings-autosave.php:1135
9103
  #, fuzzy
9104
  msgid "Min Description height"
9105
- msgstr "Min Beschreibung Höhe"
9106
 
9107
  #: wppa-settings-autosave.php:1136
9108
  #, fuzzy
9109
  msgid "The minimal height of the album description text frame."
9110
- msgstr "Die minimale Höhe des Textrahmens Album Beschreibung."
9111
 
9112
  #: wppa-settings-autosave.php:1137
9113
  #, fuzzy
9114
  msgid "The minimal height of the description field in an album cover display."
9115
- msgstr "Die minimale Höhe des Feldes in ein Album-Cover anzeigen lassen."
9116
 
9117
  #: wppa-settings-autosave.php:1138
9118
  #, fuzzy
@@ -9120,17 +9128,17 @@ msgid ""
9120
  "This setting enables you to give the album covers the same height provided "
9121
  "that the cover images are equally sized and the titles fit on one line."
9122
  msgstr ""
9123
- "Diese Einstellung ermöglicht es, die Sie für das Album eingeben die gleiche "
9124
- "Höhe erstreckt, vorausgesetzt, dass die Cover-Bilder gleich groß sind und "
9125
- "die Titel in eine Zeile passen."
9126
 
9127
  #: wppa-settings-autosave.php:1139
9128
  #, fuzzy
9129
  msgid ""
9130
  "To force the coverphotos have equal heights, tick the box in Table I-D7."
9131
  msgstr ""
9132
- "Erzwingen haben der Coverphotos gleiche Höhen, kreuzen Sie das Kästchen in "
9133
- "Tisch-D7."
9134
 
9135
  #: wppa-settings-autosave.php:1140
9136
  #, fuzzy
@@ -9138,18 +9146,18 @@ msgid ""
9138
  "You may need this setting if changing the previous setting is not sufficient "
9139
  "to line-up the covers."
9140
  msgstr ""
9141
- "Diese Einstellung eventuell ist ein Wechsel der vorherigen Einstellung nicht "
9142
- "ausreichen, um Line-up der Abdeckungen."
9143
 
9144
  #: wppa-settings-autosave.php:1147
9145
  #, fuzzy
9146
  msgid "Coverphoto size"
9147
- msgstr "Titelfoto Größe"
9148
 
9149
  #: wppa-settings-autosave.php:1148
9150
  #, fuzzy
9151
  msgid "The size of the coverphoto."
9152
- msgstr "Die Größe des dem Titelfoto."
9153
 
9154
  #: wppa-settings-autosave.php:1150 wppa-settings-autosave.php:1160
9155
  #, fuzzy
@@ -9157,28 +9165,28 @@ msgid ""
9157
  "Changing the coverphoto size may result in all thumbnails being regenerated. "
9158
  "this may take a while."
9159
  msgstr ""
9160
- "Titelfoto Größenveränderung führen alle Thumbnails werden regeneriert. Dies "
9161
- "kann eine Weile dauern."
9162
 
9163
  #: wppa-settings-autosave.php:1157
9164
  #, fuzzy
9165
  msgid "Coverphoto size multi"
9166
- msgstr "Titelfoto Größe multi"
9167
 
9168
  #: wppa-settings-autosave.php:1158
9169
  #, fuzzy
9170
  msgid "The size of coverphotos if more than one."
9171
- msgstr "Die Größe des Coverphotos, wenn mehr als eine."
9172
 
9173
  #: wppa-settings-autosave.php:1167
9174
  #, fuzzy
9175
  msgid "Size is height"
9176
- msgstr "Größe ist Höhe"
9177
 
9178
  #: wppa-settings-autosave.php:1168
9179
  #, fuzzy
9180
  msgid "The size of the coverphoto is the height of it."
9181
- msgstr "Die Größe der das Titelfoto ist die Höhe."
9182
 
9183
  #: wppa-settings-autosave.php:1169
9184
  #, fuzzy
@@ -9186,8 +9194,8 @@ msgid ""
9186
  "If set: the previous setting is the height, if unset: the largest of width "
9187
  "and height."
9188
  msgstr ""
9189
- "Wenn festgelegt: die vorherige Einstellung ist die Höhe, wenn nicht "
9190
- "festgelegt: die größte Breite und Höhe."
9191
 
9192
  #: wppa-settings-autosave.php:1170
9193
  #, fuzzy
@@ -9195,7 +9203,7 @@ msgid ""
9195
  "This setting applies for coverphoto position top or bottom only (Table IV-"
9196
  "D3)."
9197
  msgstr ""
9198
- "Diese Einstellung gilt für Titelfoto Position oben oder nur unten (Tabelle "
9199
  "IV-D3)."
9200
 
9201
  #: wppa-settings-autosave.php:1171
@@ -9206,7 +9214,7 @@ msgstr "Dies macht es easyer die Abdeckungen von gleicher Höhe zu machen."
9206
  #: wppa-settings-autosave.php:1179
9207
  #, fuzzy
9208
  msgid "Max number of covers per page."
9209
- msgstr "Maximalanzahl der Bezüge pro Seite."
9210
 
9211
  #: wppa-settings-autosave.php:1180
9212
  #, fuzzy
@@ -9214,8 +9222,8 @@ msgid ""
9214
  "Enter the maximum number of album covers per page. A value of 0 indicates no "
9215
  "pagination."
9216
  msgstr ""
9217
- "Geben Sie die maximale Anzahl von Album-Covern pro Seite. Der Wert 0 "
9218
- "bedeutet keine Paginierung."
9219
 
9220
  #: wppa-settings-autosave.php:1182
9221
  #, fuzzy
@@ -9225,12 +9233,12 @@ msgstr "Covers"
9225
  #: wppa-settings-autosave.php:1187
9226
  #, fuzzy
9227
  msgid "Rating and comment related size settings"
9228
- msgstr "Bewertung und Kommentar im Zusammenhang Größeneinstellungen"
9229
 
9230
  #: wppa-settings-autosave.php:1189
9231
  #, fuzzy
9232
  msgid "Rating size"
9233
- msgstr "Rating Größe"
9234
 
9235
  #: wppa-settings-autosave.php:1190
9236
  #, fuzzy
@@ -9245,7 +9253,7 @@ msgstr "Standard: 5 Sterne"
9245
  #: wppa-settings-autosave.php:1193
9246
  #, fuzzy
9247
  msgid "Extended: 10 stars"
9248
- msgstr "Verlängert: 10 Sterne"
9249
 
9250
  #: wppa-settings-autosave.php:1193
9251
  #, fuzzy
@@ -9270,37 +9278,37 @@ msgstr "Dezimalstellen:"
9270
  #: wppa-settings-autosave.php:1212
9271
  #, fuzzy
9272
  msgid "Size of Avatar images."
9273
- msgstr "Größe des Avatar-Bilder."
9274
 
9275
  #: wppa-settings-autosave.php:1213
9276
  #, fuzzy
9277
  msgid "The size of the square avatar; must be > 0 and < 256"
9278
- msgstr "Die Größe der quadratischen Avatar; > 0 und 256 < muss"
9279
 
9280
  #: wppa-settings-autosave.php:1220
9281
  #, fuzzy
9282
  msgid "Rating space"
9283
- msgstr "Rating-Raum"
9284
 
9285
  #: wppa-settings-autosave.php:1221
9286
  #, fuzzy
9287
  msgid "Space between avg and my rating stars"
9288
- msgstr "Abstand zwischen Avg und meine Bewertungssterne"
9289
 
9290
  #: wppa-settings-autosave.php:1229
9291
  #, fuzzy
9292
  msgid "Widget related size settings"
9293
- msgstr "Widget im Zusammenhang Größeneinstellungen"
9294
 
9295
  #: wppa-settings-autosave.php:1231
9296
  #, fuzzy
9297
  msgid "Widget width"
9298
- msgstr "Widget-breite"
9299
 
9300
  #: wppa-settings-autosave.php:1232
9301
  #, fuzzy
9302
  msgid "The useable width within widgets."
9303
- msgstr "Die nutzbare Breite innerhalb von Widgets."
9304
 
9305
  #: wppa-settings-autosave.php:1233
9306
  #, fuzzy
@@ -9308,34 +9316,34 @@ msgid ""
9308
  "Widget width for photo of the day, general purpose (default), slideshow "
9309
  "(default) and upload widgets."
9310
  msgstr ""
9311
- "Foto des Tages, Allzweck (Standard), Diashow (Standard) und Upload Widgets "
9312
- "Widget Breite."
9313
 
9314
  #: wppa-settings-autosave.php:1240
9315
  #, fuzzy
9316
  msgid "TopTen count"
9317
- msgstr "TopTen Graf"
9318
 
9319
  #: wppa-settings-autosave.php:1241
9320
  #, fuzzy
9321
  msgid "Number of photos in TopTen widget."
9322
- msgstr "Anzahl der Fotos im TopTen-Widget."
9323
 
9324
  #: wppa-settings-autosave.php:1242
9325
  #, fuzzy
9326
  msgid "Enter the maximum number of rated photos in the TopTen widget."
9327
  msgstr ""
9328
- "Geben Sie die maximale Anzahl der bewerteten Fotos in die TopTen-Widget."
9329
 
9330
  #: wppa-settings-autosave.php:1249
9331
  #, fuzzy
9332
  msgid "TopTen size"
9333
- msgstr "TopTen-Größe"
9334
 
9335
  #: wppa-settings-autosave.php:1250
9336
  #, fuzzy
9337
  msgid "Size of thumbnails in TopTen widget."
9338
- msgstr "Größe der Thumbnails in der TopTen-Widget."
9339
 
9340
  #: wppa-settings-autosave.php:1251
9341
  #, fuzzy
@@ -9347,7 +9355,7 @@ msgstr "Geben Sie die Größe für die Mini-Fotos in der TopTen-Widget."
9347
  #: wppa-settings-autosave.php:1332 wppa-settings-autosave.php:1352
9348
  #, fuzzy
9349
  msgid "The size applies to the width or height, whatever is the largest."
9350
- msgstr "Die Größe bezieht sich auf die Breite oder Höhe, was ist die größte."
9351
 
9352
  #: wppa-settings-autosave.php:1253 wppa-settings-autosave.php:1273
9353
  #: wppa-settings-autosave.php:1293 wppa-settings-autosave.php:1313
@@ -9356,7 +9364,7 @@ msgstr "Die Größe bezieht sich auf die Breite oder Höhe, was ist die größte
9356
  msgid ""
9357
  "Recommended values: 86 for a two column and 56 for a three column display."
9358
  msgstr ""
9359
- "Empfohlene Werte: 86 für zwei Spalte und 56 für die drei Spalten-Anzeige."
9360
 
9361
  #: wppa-settings-autosave.php:1260
9362
  #, fuzzy
@@ -9371,7 +9379,7 @@ msgstr "Anzahl der Einträge im Kommentar-Widget."
9371
  #: wppa-settings-autosave.php:1262
9372
  #, fuzzy
9373
  msgid "Enter the maximum number of entries in the Comment widget."
9374
- msgstr "Geben Sie die maximale Anzahl von Einträgen in der Kommentar-Widget."
9375
 
9376
  #: wppa-settings-autosave.php:1264
9377
  #, fuzzy
@@ -9381,7 +9389,7 @@ msgstr "Eintragungen"
9381
  #: wppa-settings-autosave.php:1269
9382
  #, fuzzy
9383
  msgid "Comment size"
9384
- msgstr "Kommentar-Größe"
9385
 
9386
  #: wppa-settings-autosave.php:1270
9387
  #, fuzzy
@@ -9396,84 +9404,82 @@ msgstr "Geben Sie die Größe für die Mini-Fotos in der Kommentar-Widget."
9396
  #: wppa-settings-autosave.php:1280
9397
  #, fuzzy
9398
  msgid "Thumbnail count"
9399
- msgstr "Miniaturansicht Graf"
9400
 
9401
  #: wppa-settings-autosave.php:1281
9402
  #, fuzzy
9403
  msgid "Number of photos in Thumbnail widget."
9404
- msgstr "Anzahl der Fotos in Miniatur-Widget."
9405
 
9406
  #: wppa-settings-autosave.php:1282
9407
  #, fuzzy
9408
  msgid "Enter the maximum number of rated photos in the Thumbnail widget."
9409
  msgstr ""
9410
- "Geben Sie die maximale Anzahl der bewerteten Fotos in der Miniaturansicht-"
9411
- "Widget."
9412
 
9413
  #: wppa-settings-autosave.php:1289
9414
  #, fuzzy
9415
  msgid "Thumbnail widget size"
9416
- msgstr "Miniaturansicht Widget Größe"
9417
 
9418
  #: wppa-settings-autosave.php:1290
9419
  #, fuzzy
9420
  msgid "Size of thumbnails in Thumbnail widget."
9421
- msgstr "Größe der Miniaturen im Thumbnail-Widget."
9422
 
9423
  #: wppa-settings-autosave.php:1291
9424
  #, fuzzy
9425
  msgid "Enter the size for the mini photos in the Thumbnail widget."
9426
- msgstr "Geben Sie die Größe für die Mini-Fotos in der Miniaturansicht-Widget."
9427
 
9428
  #: wppa-settings-autosave.php:1300
9429
  #, fuzzy
9430
  msgid "LasTen count"
9431
- msgstr "RT Graf"
9432
 
9433
  #: wppa-settings-autosave.php:1301
9434
  #, fuzzy
9435
  msgid "Number of photos in Last Ten widget."
9436
- msgstr "Anzahl der Fotos im letzten zehn Widget."
9437
 
9438
  #: wppa-settings-autosave.php:1302
9439
  #, fuzzy
9440
  msgid "Enter the maximum number of photos in the LasTen widget."
9441
- msgstr "Geben Sie die maximale Anzahl von Fotos in die Lastenstraße Widget."
9442
 
9443
  #: wppa-settings-autosave.php:1309
9444
  #, fuzzy
9445
  msgid "LasTen size"
9446
- msgstr "RT Größe"
9447
 
9448
  #: wppa-settings-autosave.php:1310
9449
  #, fuzzy
9450
  msgid "Size of thumbnails in Last Ten widget."
9451
- msgstr "Größe der Miniaturen im letzten zehn Widget."
9452
 
9453
  #: wppa-settings-autosave.php:1311
9454
  #, fuzzy
9455
  msgid "Enter the size for the mini photos in the LasTen widget."
9456
- msgstr "Geben Sie die Größe für die Mini-Fotos in der Lastenstraße Widget."
9457
 
9458
  #: wppa-settings-autosave.php:1320
9459
  #, fuzzy
9460
  msgid "Album widget count"
9461
- msgstr "Album-Widget-Graf"
9462
 
9463
  #: wppa-settings-autosave.php:1321
9464
  #, fuzzy
9465
  msgid "Number of albums in Album widget."
9466
- msgstr "Anzahl der Alben Album Widget."
9467
 
9468
  #: wppa-settings-autosave.php:1322
9469
  #, fuzzy
9470
  msgid ""
9471
  "Enter the maximum number of thumbnail photos of albums in the Album widget."
9472
  msgstr ""
9473
- "Geben Sie die maximale Anzahl der thumbnail-Bilder von Alben in den Album-"
9474
- "Widget."
9475
 
9476
- #: wppa-settings-autosave.php:1324 wppa-settings-autosave.php:6182
9477
  #, fuzzy
9478
  msgid "albums"
9479
  msgstr "Alben"
@@ -9486,27 +9492,27 @@ msgstr "Album-Widget Größe"
9486
  #: wppa-settings-autosave.php:1330
9487
  #, fuzzy
9488
  msgid "Size of thumbnails in Album widget."
9489
- msgstr "Größe der Miniaturen im Album Widget."
9490
 
9491
  #: wppa-settings-autosave.php:1331
9492
  #, fuzzy
9493
  msgid "Enter the size for the mini photos in the Album widget."
9494
- msgstr "Geben Sie die Größe für die Mini-Fotos in das Album Widget."
9495
 
9496
  #: wppa-settings-autosave.php:1340
9497
  #, fuzzy
9498
  msgid "FeaTen count"
9499
- msgstr "FeaTen Graf"
9500
 
9501
  #: wppa-settings-autosave.php:1341
9502
  #, fuzzy
9503
  msgid "Number of photos in Featured Ten widget."
9504
- msgstr "Anzahl der Fotos in zehn vorgestellten Widget."
9505
 
9506
  #: wppa-settings-autosave.php:1342
9507
  #, fuzzy
9508
  msgid "Enter the maximum number of photos in the FeaTen widget."
9509
- msgstr "Geben Sie die maximale Anzahl von Fotos in die FeaTen-Widget."
9510
 
9511
  #: wppa-settings-autosave.php:1349
9512
  #, fuzzy
@@ -9516,7 +9522,7 @@ msgstr "FeaTen Größe"
9516
  #: wppa-settings-autosave.php:1350
9517
  #, fuzzy
9518
  msgid "Size of thumbnails in Featured Ten widget."
9519
- msgstr "Größe der Thumbnails in zehn vorgestellten Widget."
9520
 
9521
  #: wppa-settings-autosave.php:1351
9522
  #, fuzzy
@@ -9526,12 +9532,12 @@ msgstr "Geben Sie die Größe für die Mini-Fotos im FeaTen Widget."
9526
  #: wppa-settings-autosave.php:1360
9527
  #, fuzzy
9528
  msgid "Tagcloud min size"
9529
- msgstr "Tagcloud min. Größe"
9530
 
9531
  #: wppa-settings-autosave.php:1361
9532
  #, fuzzy
9533
  msgid "Minimal fontsize in tagclouds"
9534
- msgstr "Minimale Fontsize in tagclouds"
9535
 
9536
  #: wppa-settings-autosave.php:1369
9537
  #, fuzzy
@@ -9541,7 +9547,7 @@ msgstr "Tagcloud max Größe"
9541
  #: wppa-settings-autosave.php:1370
9542
  #, fuzzy
9543
  msgid "Maximal fontsize in tagclouds"
9544
- msgstr "Maximale Fontsize in tagclouds"
9545
 
9546
  #: wppa-settings-autosave.php:1378
9547
  #, fuzzy
@@ -9549,15 +9555,16 @@ msgid ""
9549
  "Lightbox related size settings. These settings have effect only when Table "
9550
  "IX-J3 is set to wppa"
9551
  msgstr ""
9552
- "Lightbox im Zusammenhang mit Einstellungen. Diese Einstellungen wirken sich "
9553
- "nur dann, wenn Tabelle IX-J3 auf Wppa eingestellt ist"
9554
 
9555
  #: wppa-settings-autosave.php:1381
9556
  #, fuzzy
9557
  msgid ""
9558
  "Number of lines on the lightbox description area, exclusive the n/m line."
9559
  msgstr ""
9560
- "Anzahl der Zeilen auf die Lightbox Beschreibungsbereich, exklusive n/m-Linie."
 
9561
 
9562
  #: wppa-settings-autosave.php:1382
9563
  #, fuzzy
@@ -9577,7 +9584,7 @@ msgstr "Lupe Cursorgröße"
9577
  #: wppa-settings-autosave.php:1390
9578
  #, fuzzy
9579
  msgid "Select the size of the magnifier cursor."
9580
- msgstr "Wählen Sie die Größe des Cursors Lupe."
9581
 
9582
  #: wppa-settings-autosave.php:1393
9583
  #, fuzzy
@@ -9587,7 +9594,7 @@ msgstr "klein"
9587
  #: wppa-settings-autosave.php:1393
9588
  #, fuzzy
9589
  msgid "medium"
9590
- msgstr "mittel"
9591
 
9592
  #: wppa-settings-autosave.php:1393
9593
  #, fuzzy
@@ -9597,17 +9604,17 @@ msgstr "groß"
9597
  #: wppa-settings-autosave.php:1403
9598
  #, fuzzy
9599
  msgid "Border width for lightbox display."
9600
- msgstr "Rahmenbreite Lightbox angezeigt."
9601
 
9602
  #: wppa-settings-autosave.php:1412
9603
  #, fuzzy
9604
  msgid "Border radius for lightbox display."
9605
- msgstr "Border-Radius für Lightbox-Anzeige."
9606
 
9607
  #: wppa-settings-autosave.php:1421
9608
  #, fuzzy
9609
  msgid "Video related size settings"
9610
- msgstr "Video Verwandte Größeneinstellungen"
9611
 
9612
  #: wppa-settings-autosave.php:1423
9613
  #, fuzzy
@@ -9617,7 +9624,7 @@ msgstr "Default Width"
9617
  #: wppa-settings-autosave.php:1424
9618
  #, fuzzy
9619
  msgid "The width of most videos"
9620
- msgstr "Die Breite der meisten videos"
9621
 
9622
  #: wppa-settings-autosave.php:1432
9623
  #, fuzzy
@@ -9627,7 +9634,7 @@ msgstr "Standard Größe"
9627
  #: wppa-settings-autosave.php:1433
9628
  #, fuzzy
9629
  msgid "The height of most videos"
9630
- msgstr "Die Höhe der meisten videos"
9631
 
9632
  #: wppa-settings-autosave.php:1459
9633
  #, fuzzy
@@ -9637,48 +9644,47 @@ msgstr "Tabelle II:"
9637
  #: wppa-settings-autosave.php:1459
9638
  #, fuzzy
9639
  msgid "Visibility:"
9640
- msgstr "Sichtbarkeit"
9641
 
9642
  #: wppa-settings-autosave.php:1460
9643
  #, fuzzy
9644
  msgid "This table describes the visibility of certain wppa+ elements."
9645
- msgstr "Diese Tabelle beschreibt die Sichtbarkeit bestimmter Wppa + Elemente."
9646
 
9647
  #: wppa-settings-autosave.php:1478
9648
  #, fuzzy
9649
  msgid "Breadcrumb related visibility settings"
9650
- msgstr "Brotkrümel im Zusammenhang mit Einstellungen für die Sichtbarkeit"
9651
 
9652
  #: wppa-settings-autosave.php:1480
9653
  #, fuzzy
9654
  msgid "Breadcrumb on posts"
9655
- msgstr "Brotkrümel auf Beiträge"
9656
 
9657
  #: wppa-settings-autosave.php:1481 wppa-settings-autosave.php:1491
9658
  #, fuzzy
9659
  msgid "Show breadcrumb navigation bars."
9660
- msgstr "Zeigen Sie Breadcrumb Navigation Bars."
9661
 
9662
  #: wppa-settings-autosave.php:1482 wppa-settings-autosave.php:1492
9663
  #, fuzzy
9664
  msgid "Indicate whether a breadcrumb navigation should be displayed"
9665
- msgstr "Geben Sie an, ob eine Breadcrumb-Navigation angezeigt werden sollen"
9666
 
9667
  #: wppa-settings-autosave.php:1490
9668
  #, fuzzy
9669
  msgid "Breadcrumb on pages"
9670
- msgstr "Brotkrümel auf Seiten"
9671
 
9672
  #: wppa-settings-autosave.php:1500
9673
  #, fuzzy
9674
  msgid "Breadcrumb on search results"
9675
- msgstr "Brotkrümel auf Suchergebnisse"
9676
 
9677
  #: wppa-settings-autosave.php:1501
9678
  #, fuzzy
9679
  msgid "Show breadcrumb navigation bars on the search results page."
9680
- msgstr ""
9681
- "Breadcrumb-Navigationsleisten auf der Seite mit den Suchergebnissen anzeigen"
9682
 
9683
  #: wppa-settings-autosave.php:1502
9684
  #, fuzzy
@@ -9686,18 +9692,18 @@ msgid ""
9686
  "Indicate whether a breadcrumb navigation should be displayed above the "
9687
  "search results."
9688
  msgstr ""
9689
- "Geben Sie an, ob eine Breadcrumb-Navigation oberhalb der Suchergebnisse "
9690
- "angezeigt werden sollen."
9691
 
9692
  #: wppa-settings-autosave.php:1509
9693
  #, fuzzy
9694
  msgid "Breadcrumb on topten displays"
9695
- msgstr "Brotkrümel auf Topten anzeigen"
9696
 
9697
  #: wppa-settings-autosave.php:1510
9698
  #, fuzzy
9699
  msgid "Show breadcrumb navigation bars on topten displays."
9700
- msgstr "Brotkrümel Navigationsleisten auf Topten Displays anzeigen."
9701
 
9702
  #: wppa-settings-autosave.php:1511
9703
  #, fuzzy
@@ -9705,18 +9711,18 @@ msgid ""
9705
  "Indicate whether a breadcrumb navigation should be displayed above the "
9706
  "topten displays."
9707
  msgstr ""
9708
- "Geben Sie an, ob eine Breadcrumb-Navigation über die Topten-Displays "
9709
- "angezeigt werden soll."
9710
 
9711
  #: wppa-settings-autosave.php:1518
9712
  #, fuzzy
9713
  msgid "Breadcrumb on last ten displays"
9714
- msgstr "Brotkrümel auf letzten zehn anzeigen"
9715
 
9716
  #: wppa-settings-autosave.php:1519
9717
  #, fuzzy
9718
  msgid "Show breadcrumb navigation bars on last ten displays."
9719
- msgstr "Brotkrümel Navigationsleisten auf letzten zehn Displays anzeigen."
9720
 
9721
  #: wppa-settings-autosave.php:1520
9722
  #, fuzzy
@@ -9730,12 +9736,12 @@ msgstr ""
9730
  #: wppa-settings-autosave.php:1527
9731
  #, fuzzy
9732
  msgid "Breadcrumb on comment ten displays"
9733
- msgstr "Brotkrümel auf Kommentar 10 displays"
9734
 
9735
  #: wppa-settings-autosave.php:1528
9736
  #, fuzzy
9737
  msgid "Show breadcrumb navigation bars on comment ten displays."
9738
- msgstr "Breadcrumb Navigation Bars auf Kommentar 10 Displays anzeigen."
9739
 
9740
  #: wppa-settings-autosave.php:1529
9741
  #, fuzzy
@@ -9743,18 +9749,18 @@ msgid ""
9743
  "Indicate whether a breadcrumb navigation should be displayed above the "
9744
  "comment ten displays."
9745
  msgstr ""
9746
- "Geben Sie an, ob eine Breadcrumb-Navigation über den Kommentar zehn Displays "
9747
- "angezeigt werden soll."
9748
 
9749
  #: wppa-settings-autosave.php:1536
9750
  #, fuzzy
9751
  msgid "Breadcrumb on tag result displays"
9752
- msgstr "Brotkrümel auf Tag Ergebnis zeigt"
9753
 
9754
  #: wppa-settings-autosave.php:1537
9755
  #, fuzzy
9756
  msgid "Show breadcrumb navigation bars on tag result displays."
9757
- msgstr "Zeigen Sie Brotkrümel Navigationsleisten am Tag Ergebnis zeigt."
9758
 
9759
  #: wppa-settings-autosave.php:1538
9760
  #, fuzzy
@@ -9762,19 +9768,18 @@ msgid ""
9762
  "Indicate whether a breadcrumb navigation should be displayed above the tag "
9763
  "result displays."
9764
  msgstr ""
9765
- "Geben Sie an, ob eine Breadcrumb-Navigation über den Tag Ergebnis anzeigen "
9766
  "angezeigt werden sollen."
9767
 
9768
  #: wppa-settings-autosave.php:1545
9769
  #, fuzzy
9770
  msgid "Breadcrumb on featured ten displays"
9771
- msgstr "Brotkrümel auf Top 10 anzeigen"
9772
 
9773
  #: wppa-settings-autosave.php:1546
9774
  #, fuzzy
9775
  msgid "Show breadcrumb navigation bars on featured ten displays."
9776
- msgstr ""
9777
- "Brotkrümel Navigationsleisten auf vorgestellten zehn Displays anzeigen."
9778
 
9779
  #: wppa-settings-autosave.php:1547
9780
  #, fuzzy
@@ -9782,18 +9787,18 @@ msgid ""
9782
  "Indicate whether a breadcrumb navigation should be displayed above the "
9783
  "featured ten displays."
9784
  msgstr ""
9785
- "Geben Sie an, ob eine Breadcrumb-Navigation über die vorgestellten zehn "
9786
- "Displays angezeigt werden soll."
9787
 
9788
  #: wppa-settings-autosave.php:1554
9789
  #, fuzzy
9790
  msgid "Breadcrumb on related photos displays"
9791
- msgstr "Brotkrümel auf im Zusammenhang zeigt Fotos"
9792
 
9793
  #: wppa-settings-autosave.php:1555
9794
  #, fuzzy
9795
  msgid "Show breadcrumb navigation bars on related photos displays."
9796
- msgstr "Zeigen Sie Brotkrümel Navigationsleisten auf Verwandte Fotos anzeigen."
9797
 
9798
  #: wppa-settings-autosave.php:1556
9799
  #, fuzzy
@@ -9801,8 +9806,8 @@ msgid ""
9801
  "Indicate whether a breadcrumb navigation should be displayed above the "
9802
  "related photos displays."
9803
  msgstr ""
9804
- "Geben Sie an, ob eine Breadcrumb-Navigation über die zugehörigen Fotos "
9805
- "anzeigen angezeigt werden sollen."
9806
 
9807
  #: wppa-settings-autosave.php:1563 wppa-setup.php:734
9808
  #, fuzzy
@@ -9812,15 +9817,14 @@ msgstr "Startseite"
9812
  #: wppa-settings-autosave.php:1564
9813
  #, fuzzy
9814
  msgid "Show \"Home\" in breadcrumb."
9815
- msgstr "Show \"Home\" in Brotkrumen."
9816
 
9817
  #: wppa-settings-autosave.php:1565
9818
  #, fuzzy
9819
  msgid ""
9820
  "Indicate whether the breadcrumb navigation should start with a \"Home\"-link"
9821
  msgstr ""
9822
- "Geben Sie an, ob die Breadcrumb-Navigation mit einem Link \"Home\" beginnen "
9823
- "sollte"
9824
 
9825
  #: wppa-settings-autosave.php:1572
9826
  #, fuzzy
@@ -9830,20 +9834,19 @@ msgstr "Home Text"
9830
  #: wppa-settings-autosave.php:1573
9831
  #, fuzzy
9832
  msgid "The text to use as \"Home\""
9833
- msgstr "Der Text, der als \"Zuhause\" zu verwenden"
9834
 
9835
  #: wppa-settings-autosave.php:1582
9836
  #, fuzzy
9837
  msgid "Show the page(s) in breadcrumb."
9838
- msgstr "Zeigen Sie die Seite(n) in Brotkrumen."
9839
 
9840
  #: wppa-settings-autosave.php:1583
9841
  #, fuzzy
9842
  msgid ""
9843
  "Indicate whether the breadcrumb navigation should show the page(hierarchy)"
9844
  msgstr ""
9845
- "Geben Sie an, ob die page(hierarchy) die Breadcrumb-Navigation angezeigt "
9846
- "werden soll"
9847
 
9848
  #: wppa-settings-autosave.php:1590
9849
  #, fuzzy
@@ -9858,25 +9861,25 @@ msgstr "Brotkrumen-Trennzeichen."
9858
  #: wppa-settings-autosave.php:1592
9859
  #, fuzzy
9860
  msgid "Select the desired breadcrumb separator element."
9861
- msgstr "Wählen Sie das gewünschte Breadcrumb-Separator-Element."
9862
 
9863
  #: wppa-settings-autosave.php:1593
9864
  #, fuzzy
9865
  msgid "A text string may contain valid html."
9866
- msgstr "Eine Textzeichenfolge enthalten valides html."
9867
 
9868
  #: wppa-settings-autosave.php:1594
9869
  #, fuzzy
9870
  msgid ""
9871
  "An image will be scaled automatically if you set the navigation font size."
9872
  msgstr ""
9873
- "Ein Bild wird automatisch skaliert werden, wenn Sie die Navigation "
9874
- "Schriftgröße festlegen."
9875
 
9876
  #: wppa-settings-autosave.php:1596
9877
  #, fuzzy
9878
  msgid "Text (html):"
9879
- msgstr "Text / HTML"
9880
 
9881
  #: wppa-settings-autosave.php:1596
9882
  #, fuzzy
@@ -9886,7 +9889,7 @@ msgstr "Bild-URL"
9886
  #: wppa-settings-autosave.php:1604
9887
  #, fuzzy
9888
  msgid "Html"
9889
- msgstr ".html"
9890
 
9891
  #: wppa-settings-autosave.php:1605
9892
  #, fuzzy
@@ -9896,8 +9899,7 @@ msgstr "Breadcrumb Separator"
9896
  #: wppa-settings-autosave.php:1606
9897
  #, fuzzy
9898
  msgid "Enter the HTML code that produces the separator symbol you want."
9899
- msgstr ""
9900
- "Geben Sie den HTML-Code, der das Trennzeichen erzeugt, die, das Sie wollen."
9901
 
9902
  #: wppa-settings-autosave.php:1607
9903
  #, fuzzy
@@ -9905,8 +9907,8 @@ msgid ""
9905
  "It may be as simple as '-' (without the quotes) or as complex as a tag like "
9906
  "<div>..</div>."
9907
  msgstr ""
9908
- "Es kann so einfach sein \"-\" (ohne Anführungszeichen) oder so komplex wie "
9909
- "ein Tag wie<div>..</div>."
9910
 
9911
  #: wppa-settings-autosave.php:1614
9912
  #, fuzzy
@@ -9916,35 +9918,35 @@ msgstr "Bild-URL"
9916
  #: wppa-settings-autosave.php:1615
9917
  #, fuzzy
9918
  msgid "Full url to separator image."
9919
- msgstr "Vollständige Url Separator Bild."
9920
 
9921
  #: wppa-settings-autosave.php:1616
9922
  #, fuzzy
9923
  msgid ""
9924
  "Enter the full url to the image you want to use for the separator symbol."
9925
  msgstr ""
9926
- "Geben Sie die vollständige Url für das Bild, das Sie für das Trennzeichen "
9927
  "verwenden möchten."
9928
 
9929
  #: wppa-settings-autosave.php:1623
9930
  #, fuzzy
9931
  msgid "Pagelink position"
9932
- msgstr "Pagelink-position"
9933
 
9934
  #: wppa-settings-autosave.php:1624
9935
  #, fuzzy
9936
  msgid "The location for the pagelinks bar."
9937
- msgstr "Der Speicherort für die Pagelinks Bar."
9938
 
9939
- #: wppa-settings-autosave.php:1627 wppa-settings-autosave.php:4169
9940
  #, fuzzy
9941
  msgid "Top"
9942
- msgstr "Oben"
9943
 
9944
- #: wppa-settings-autosave.php:1627 wppa-settings-autosave.php:4169
9945
  #, fuzzy
9946
  msgid "Bottom"
9947
- msgstr "Boden"
9948
 
9949
  #: wppa-settings-autosave.php:1627
9950
  #, fuzzy
@@ -9959,29 +9961,29 @@ msgstr "Thumblink auf Diashow"
9959
  #: wppa-settings-autosave.php:1635
9960
  #, fuzzy
9961
  msgid "Show a thumb link on slideshow bc."
9962
- msgstr "Einen Daumen-Link auf Diashow bc anzeigen."
9963
 
9964
  #: wppa-settings-autosave.php:1636
9965
  #, fuzzy
9966
  msgid "Show a link to thumbnail display on an breadcrumb above a slideshow"
9967
  msgstr ""
9968
- "Einen Link zur Anzeige von Miniaturansichten auf eine Breadcrumb über eine "
9969
- "Diashow anzeigen"
9970
 
9971
  #: wppa-settings-autosave.php:1643
9972
  #, fuzzy
9973
  msgid "Slideshow related visibility settings"
9974
- msgstr "Diashow im Zusammenhang mit Einstellungen für die Sichtbarkeit"
9975
 
9976
  #: wppa-settings-autosave.php:1645
9977
  #, fuzzy
9978
  msgid "Start/stop"
9979
- msgstr "START/STOPP:"
9980
 
9981
  #: wppa-settings-autosave.php:1646
9982
  #, fuzzy
9983
  msgid "Show the Start/Stop slideshow bar."
9984
- msgstr "Die Start/Stopp-Diashow-Leiste anzeigen."
9985
 
9986
  #: wppa-settings-autosave.php:1647
9987
  #, fuzzy
@@ -9989,18 +9991,18 @@ msgid ""
9989
  "If checked: display the start/stop slideshow navigation bar above the full-"
9990
  "size images and slideshow"
9991
  msgstr ""
9992
- "Wenn diese Option aktiviert: zeigt die Start/Stopp Slideshow "
9993
- "Navigationsleiste oben die Bilder in voller Größe und Diashow"
9994
 
9995
  #: wppa-settings-autosave.php:1654
9996
  #, fuzzy
9997
  msgid "Browse bar"
9998
- msgstr "Durchsuchen-Bar"
9999
 
10000
  #: wppa-settings-autosave.php:1655
10001
  #, fuzzy
10002
  msgid "Show Browse photos bar."
10003
- msgstr "Browse-Fotos-Leiste anzeigen."
10004
 
10005
  #: wppa-settings-autosave.php:1656
10006
  #, fuzzy
@@ -10008,18 +10010,18 @@ msgid ""
10008
  "If checked: display the preveous/next navigation bar under the full-size "
10009
  "images and slideshow"
10010
  msgstr ""
10011
- "Wenn diese Option aktiviert: Anzeige die preveous/next Navigationsleiste "
10012
- "unter die Bilder in voller Größe und Diashow"
10013
 
10014
  #: wppa-settings-autosave.php:1663
10015
  #, fuzzy
10016
  msgid "Filmstrip"
10017
- msgstr "Diastreifen"
10018
 
10019
  #: wppa-settings-autosave.php:1664
10020
  #, fuzzy
10021
  msgid "Show Filmstrip navigation bar."
10022
- msgstr "Filmstreifen-Navigationsleiste anzeigen"
10023
 
10024
  #: wppa-settings-autosave.php:1665
10025
  #, fuzzy
@@ -10027,23 +10029,25 @@ msgid ""
10027
  "If checked: display the filmstrip navigation bar under the full_size images "
10028
  "and slideshow"
10029
  msgstr ""
10030
- "Wenn diese Option aktiviert: anzeigen die Filmstreifen-Navigationsleiste "
10031
- "unter Full_size Bilder und Diashow"
10032
 
10033
  #: wppa-settings-autosave.php:1672
10034
  #, fuzzy
10035
  msgid "Film seam"
10036
- msgstr "Film-Naht"
10037
 
10038
  #: wppa-settings-autosave.php:1673
10039
  #, fuzzy
10040
  msgid "Show seam between end and start of film."
10041
- msgstr "Naht zwischen Ende und Beginn des Films zu zeigen."
10042
 
10043
  #: wppa-settings-autosave.php:1674
10044
  #, fuzzy
10045
  msgid "If checked: display the wrap-around point in the filmstrip"
10046
- msgstr "Wenn diese Option aktiviert: den rundum-Punkt im Filmstreifen anzeigen"
 
 
10047
 
10048
  #: wppa-settings-autosave.php:1682
10049
  #, fuzzy
@@ -10054,8 +10058,8 @@ msgstr "Anzeigen von Foto Namen."
10054
  #, fuzzy
10055
  msgid "If checked: display the name of the photo under the slideshow image."
10056
  msgstr ""
10057
- "Wenn diese Option aktiviert: zeigt den Namen der das Foto unter dem Bild der "
10058
- "Diashow."
10059
 
10060
  #: wppa-settings-autosave.php:1690 wppa-settings-autosave.php:2095
10061
  #, fuzzy
@@ -10065,7 +10069,7 @@ msgstr "Gastgeber hinzufügen"
10065
  #: wppa-settings-autosave.php:1691 wppa-settings-autosave.php:2096
10066
  #, fuzzy
10067
  msgid "Add the uploaders display name in parenthesis to the name."
10068
- msgstr "Fügen Sie die Uploader Namen in Klammern um den Namen anzuzeigen."
10069
 
10070
  #: wppa-settings-autosave.php:1699
10071
  #, fuzzy
@@ -10088,12 +10092,12 @@ msgstr ""
10088
  #: wppa-settings-autosave.php:1708
10089
  #, fuzzy
10090
  msgid "Hide when empty"
10091
- msgstr "Hide empty"
10092
 
10093
  #: wppa-settings-autosave.php:1709
10094
  #, fuzzy
10095
  msgid "Hide the descriptionbox when empty."
10096
- msgstr "Ausblenden der Descriptionbox leer."
10097
 
10098
  #: wppa-settings-autosave.php:1717
10099
  #, fuzzy
@@ -10103,23 +10107,23 @@ msgstr "Bewertungssystem („Rating System“)"
10103
  #: wppa-settings-autosave.php:1718
10104
  #, fuzzy
10105
  msgid "Enable the rating system."
10106
- msgstr "Das Rating-System zu ermöglichen."
10107
 
10108
  #: wppa-settings-autosave.php:1719
10109
  #, fuzzy
10110
  msgid "If checked, the photo rating system will be enabled."
10111
  msgstr ""
10112
- "Wenn diese Option aktiviert, wird das Foto-Rating-System aktiviert werden."
10113
 
10114
  #: wppa-settings-autosave.php:1727
10115
  #, fuzzy
10116
  msgid "Comments system"
10117
- msgstr "Kommentare-system"
10118
 
10119
  #: wppa-settings-autosave.php:1728
10120
  #, fuzzy
10121
  msgid "Enable the comments system."
10122
- msgstr "Die Kommentare-System zu ermöglichen."
10123
 
10124
  #: wppa-settings-autosave.php:1729
10125
  #, fuzzy
@@ -10127,8 +10131,8 @@ msgid ""
10127
  "Display the comments box under the fullsize images and let users enter their "
10128
  "comments on individual photos."
10129
  msgstr ""
10130
- "Zeigen Sie das Kommentarfeld unter die Fullsize-Bilder und lassen Sie "
10131
- "Benutzer ihre Kommentare auf einzelne Fotos eingeben."
10132
 
10133
  #: wppa-settings-autosave.php:1737
10134
  #, fuzzy
@@ -10138,7 +10142,7 @@ msgstr "Kommentar Avatar Standard"
10138
  #: wppa-settings-autosave.php:1738
10139
  #, fuzzy
10140
  msgid "Show Avatars with the comments if not --- none ---"
10141
- msgstr "Zeigen Sie Avatare mit den Kommentaren, wenn nicht---keine---"
10142
 
10143
  #: wppa-settings-autosave.php:1743
10144
  #, fuzzy
@@ -10153,7 +10157,7 @@ msgstr "Identicon"
10153
  #: wppa-settings-autosave.php:1745
10154
  #, fuzzy
10155
  msgid "monsterid"
10156
- msgstr "MonsterID"
10157
 
10158
  #: wppa-settings-autosave.php:1746
10159
  #, fuzzy
@@ -10168,12 +10172,12 @@ msgstr "Retro"
10168
  #: wppa-settings-autosave.php:1748
10169
  #, fuzzy
10170
  msgid "--- url ---"
10171
- msgstr "Url"
10172
 
10173
  #: wppa-settings-autosave.php:1763
10174
  #, fuzzy
10175
  msgid "Comment Avatar url"
10176
- msgstr "Kommentar-Avatar-url"
10177
 
10178
  #: wppa-settings-autosave.php:1764
10179
  #, fuzzy
@@ -10183,12 +10187,12 @@ msgstr "Kommentar Avatar Standard-URL."
10183
  #: wppa-settings-autosave.php:1772
10184
  #, fuzzy
10185
  msgid "Big Browse Buttons"
10186
- msgstr "Großen Durchsuchen-Schaltflächen"
10187
 
10188
  #: wppa-settings-autosave.php:1773
10189
  #, fuzzy
10190
  msgid "Enable invisible browsing buttons."
10191
- msgstr "Aktivieren Sie invisible browsing Schaltflächen."
10192
 
10193
  #: wppa-settings-autosave.php:1774 wppa-settings-autosave.php:2363
10194
  #, fuzzy
@@ -10196,8 +10200,8 @@ msgid ""
10196
  "If checked, the fullsize image is covered by two invisible areas that act as "
10197
  "browse buttons."
10198
  msgstr ""
10199
- "Wenn diese Option aktiviert, wird das Fullsize-Bild zwei unsichtbare "
10200
- "Bereiche abgedeckt, die als Schaltflächen durchsuchen fungieren."
10201
 
10202
  #: wppa-settings-autosave.php:1775 wppa-settings-autosave.php:2364
10203
  #: wppa-settings-autosave.php:2374
@@ -10206,46 +10210,45 @@ msgid ""
10206
  "Make sure the Full height (Table I-B2) is properly configured to prevent "
10207
  "these areas to overlap unwanted space."
10208
  msgstr ""
10209
- "Stellen Sie sicher, dass die volle Höhe (Tabelle i-B2) ordnungsgemäß "
10210
- "konfiguriert ist, um diese Bereiche, um unerwünschte Abstände überlappen zu "
10211
- "verhindern."
10212
 
10213
  #: wppa-settings-autosave.php:1782
10214
  #, fuzzy
10215
  msgid "Ugly Browse Buttons"
10216
- msgstr "Hässliche Durchsuchen-Schaltflächen"
10217
 
10218
  #: wppa-settings-autosave.php:1783
10219
  #, fuzzy
10220
  msgid "Enable the ugly browsing buttons."
10221
- msgstr "Aktivieren Sie die hässlichen Browsen Schaltflächen."
10222
 
10223
  #: wppa-settings-autosave.php:1784
10224
  #, fuzzy
10225
  msgid "If checked, the fullsize image is covered by two browse buttons."
10226
  msgstr ""
10227
- "Wenn diese Option aktiviert, wird das Fullsize-Bild durch zwei Durchsuchen-"
10228
- "Schaltflächen abgedeckt."
10229
 
10230
  #: wppa-settings-autosave.php:1795
10231
  #, fuzzy
10232
  msgid "Start/stop icons"
10233
- msgstr "Start/Stopp Symbole"
10234
 
10235
  #: wppa-settings-autosave.php:1796
10236
  #, fuzzy
10237
  msgid "Show start and stop icons at the center of the slide"
10238
- msgstr "Zeigen, Start und stop Symbole in der Mitte der Folie"
10239
 
10240
  #: wppa-settings-autosave.php:1808
10241
  #, fuzzy
10242
  msgid "Show custom box"
10243
- msgstr "Benutzerdefiniertes Feld anzeigen"
10244
 
10245
  #: wppa-settings-autosave.php:1809
10246
  #, fuzzy
10247
  msgid "Display the custom box in the slideshow"
10248
- msgstr "Das benutzerdefinierte Feld in der Diashow anzeigen"
10249
 
10250
  #: wppa-settings-autosave.php:1810 wppa-settings-autosave.php:1821
10251
  #, fuzzy
@@ -10253,14 +10256,14 @@ msgid ""
10253
  "You can fill the custom box with any html you like. It will not be checked, "
10254
  "so it is your own responsability to close tags properly."
10255
  msgstr ""
10256
- "Mit HTML-Code, die Sie mögen, können Sie das benutzerdefinierte Feld "
10257
- "ausfüllen. Es wird nicht überprüft, so ist es Ihre Verantwortung, Tags "
10258
- "richtig schließen."
10259
 
10260
  #: wppa-settings-autosave.php:1811 wppa-settings-autosave.php:1822
10261
  #, fuzzy
10262
  msgid "The position of the box can be defined in Table IX-E."
10263
- msgstr "Die Position des Feldes in der Tabelle IX-E. definierbar"
10264
 
10265
  #: wppa-settings-autosave.php:1819
10266
  #, fuzzy
@@ -10270,89 +10273,87 @@ msgstr "Benutzerdefinierter Inhalt"
10270
  #: wppa-settings-autosave.php:1820
10271
  #, fuzzy
10272
  msgid "The content (html) of the custom box."
10273
- msgstr "Der Inhalt (html) des benutzerdefinierten Feldes."
10274
 
10275
  #: wppa-settings-autosave.php:1829
10276
  #, fuzzy
10277
  msgid "Slideshow/Number bar"
10278
- msgstr "Diashow/Anzahl bar"
10279
 
10280
  #: wppa-settings-autosave.php:1830
10281
  #, fuzzy
10282
  msgid "Display the Slideshow / Number bar."
10283
- msgstr "Die Diashow anzeigen / Anzahl Bar."
10284
 
10285
  #: wppa-settings-autosave.php:1831
10286
  #, fuzzy
10287
  msgid "If checked: display the number boxes on slideshow"
10288
- msgstr "Wenn diese Option aktiviert: die Zahlenfeldern auf Diashow anzeigen"
10289
 
10290
  #: wppa-settings-autosave.php:1839
10291
  #, fuzzy
10292
  msgid "IPTC system"
10293
- msgstr "IPTC-system"
10294
 
10295
  #: wppa-settings-autosave.php:1840
10296
  #, fuzzy
10297
  msgid "Enable the iptc system."
10298
- msgstr "Das Iptc-System zu ermöglichen."
10299
 
10300
  #: wppa-settings-autosave.php:1841
10301
  #, fuzzy
10302
  msgid "Display the iptc box under the fullsize images."
10303
- msgstr "Das Iptc-Feld unter die Fullsize-Bilder anzuzeigen."
10304
 
10305
  #: wppa-settings-autosave.php:1849
10306
  #, fuzzy
10307
  msgid "IPTC open"
10308
- msgstr "IPTC-offen"
10309
 
10310
  #: wppa-settings-autosave.php:1850
10311
  #, fuzzy
10312
  msgid "Display the iptc box initially opened."
10313
- msgstr "Anzeigen der Iptc-Feld zunächst eröffnet."
10314
 
10315
  #: wppa-settings-autosave.php:1851
10316
  #, fuzzy
10317
  msgid "Display the iptc box under the fullsize images initially open."
10318
- msgstr "Anzeige der Iptc-Feld unter die Fullsize-Bilder zunächst öffnen."
10319
 
10320
  #: wppa-settings-autosave.php:1859
10321
  #, fuzzy
10322
  msgid "EXIF system"
10323
- msgstr "EXIF-system"
10324
 
10325
  #: wppa-settings-autosave.php:1860
10326
  #, fuzzy
10327
  msgid "Enable the exif system."
10328
- msgstr "Aktivieren Sie die Exif-System."
10329
 
10330
  #: wppa-settings-autosave.php:1861
10331
  #, fuzzy
10332
  msgid "Display the exif box under the fullsize images."
10333
- msgstr "Anzeige der Exif-Feld unter die Fullsize-Bilder."
10334
 
10335
  #: wppa-settings-autosave.php:1869
10336
  #, fuzzy
10337
  msgid "EXIF open"
10338
- msgstr "EXIF geöffnet"
10339
 
10340
  #: wppa-settings-autosave.php:1870
10341
  #, fuzzy
10342
  msgid "Display the exif box initially opened."
10343
- msgstr "Anzeige der Exif-Box zunächst geöffnet."
10344
 
10345
  #: wppa-settings-autosave.php:1871
10346
  #, fuzzy
10347
  msgid "Display the exif box under the fullsize images initially open."
10348
- msgstr "Anzeige der Exif-Feld unter die Fullsize-Bilder zunächst öffnen."
10349
 
10350
  #: wppa-settings-autosave.php:1879
10351
  #, fuzzy
10352
  msgid "Social media share box related visibility settings"
10353
- msgstr ""
10354
- "Social-Media-Mitteilungsbox im Zusammenhang mit Einstellungen für die "
10355
- "Sichtbarkeit"
10356
 
10357
  #: wppa-settings-autosave.php:1881
10358
  #, fuzzy
@@ -10362,27 +10363,27 @@ msgstr "Teilen Box anzeigen"
10362
  #: wppa-settings-autosave.php:1882
10363
  #, fuzzy
10364
  msgid "Display the share social media buttons box."
10365
- msgstr "Die social-Media-Tasten Mitteilungsbox anzeigen"
10366
 
10367
- #: wppa-settings-autosave.php:1891 wppa-settings-autosave.php:9152
10368
  #, fuzzy
10369
  msgid "Hide when running"
10370
- msgstr "Bei der Ausführung zu verstecken"
10371
 
10372
  #: wppa-settings-autosave.php:1892
10373
  #, fuzzy
10374
  msgid "Hide the SM box when slideshow runs."
10375
- msgstr "Die SM-Box zu verstecken, wenn Diashow läuft."
10376
 
10377
  #: wppa-settings-autosave.php:1900
10378
  #, fuzzy
10379
  msgid "Show Share Box Widget"
10380
- msgstr "Aktie Box Widget anzeigen"
10381
 
10382
  #: wppa-settings-autosave.php:1901
10383
  #, fuzzy
10384
  msgid "Display the share social media buttons box in widgets."
10385
- msgstr "Die Mitteilungsbox für social-Media-Tasten in Widgets anzeigen."
10386
 
10387
  #: wppa-settings-autosave.php:1902
10388
  #, fuzzy
@@ -10390,38 +10391,38 @@ msgid ""
10390
  "This setting applies to normal slideshows in widgets, not to the "
10391
  "slideshowwidget as that is a slideonly display."
10392
  msgstr ""
10393
- "Diese Einstellung gilt für normale Diashows in Widgets nicht auf der "
10394
- "Slideshowwidget, das ist eine Slideonly Display."
10395
 
10396
  #: wppa-settings-autosave.php:1910
10397
  #, fuzzy
10398
  msgid "Show Share Buttons Thumbs"
10399
- msgstr "Share Buttons Daumen zeigen"
10400
 
10401
  #: wppa-settings-autosave.php:1911
10402
  #, fuzzy
10403
  msgid "Display the share social media buttons under thumbnails."
10404
- msgstr "Die Share-social-Media-Buttons unter Miniaturansichten anzeigen"
10405
 
10406
  #: wppa-settings-autosave.php:1920
10407
  #, fuzzy
10408
  msgid "Show Share Buttons Lightbox"
10409
- msgstr "Share Buttons Lightbox anzeigen"
10410
 
10411
  #: wppa-settings-autosave.php:1921
10412
  #, fuzzy
10413
  msgid "Display the share social media buttons on lightbox displays."
10414
- msgstr "Die Aktie social Media Buttons auf Lightbox-Displays angezeigt."
10415
 
10416
  #: wppa-settings-autosave.php:1930
10417
  #, fuzzy
10418
  msgid "Show Share Buttons Mphoto"
10419
- msgstr "Share-Tasten-Mphoto zeigen"
10420
 
10421
  #: wppa-settings-autosave.php:1931
10422
  #, fuzzy
10423
  msgid "Display the share social media buttons on mphoto displays."
10424
- msgstr "Zeigen Sie die Aktie social Media Buttons auf Mphoto zeigt."
10425
 
10426
  #: wppa-settings-autosave.php:1940
10427
  #, fuzzy
@@ -10431,19 +10432,19 @@ msgstr "Leere Seiten teilen"
10431
  #: wppa-settings-autosave.php:1941
10432
  #, fuzzy
10433
  msgid "Do not show share on these pages"
10434
- msgstr "Anteil nicht auf diesen Seiten anzeigen"
10435
 
10436
  #: wppa-settings-autosave.php:1942
10437
  #, fuzzy
10438
  msgid "Use this for pages that require the user is logged in"
10439
  msgstr ""
10440
- "Verwenden Sie diese Option für Seiten, die erfordern, dass der Benutzer "
10441
- "angemeldet ist"
10442
 
10443
  #: wppa-settings-autosave.php:1946
10444
  #, fuzzy
10445
  msgid "--- Select one or more pages ---"
10446
- msgstr "---Wählen Sie eine oder mehrere Seiten---"
10447
 
10448
  #: wppa-settings-autosave.php:1955
10449
  #, fuzzy
@@ -10453,7 +10454,7 @@ msgstr "QR-Code anzeigen"
10453
  #: wppa-settings-autosave.php:1956
10454
  #, fuzzy
10455
  msgid "Display the QR code in the share box."
10456
- msgstr "Der QR-Code in der Mitteilungsbox anzeigen"
10457
 
10458
  #: wppa-settings-autosave.php:1964
10459
  #, fuzzy
@@ -10463,17 +10464,17 @@ msgstr "Twitter Button anzeigen"
10463
  #: wppa-settings-autosave.php:1965
10464
  #, fuzzy
10465
  msgid "Display the Twitter button in the share box."
10466
- msgstr "Den Twitter-Button in der Mitteilungsbox anzeigen"
10467
 
10468
  #: wppa-settings-autosave.php:1973
10469
  #, fuzzy
10470
  msgid "The creator's Twitter account"
10471
- msgstr "Twitter-Account des Erstellers"
10472
 
10473
  #: wppa-settings-autosave.php:1974
10474
  #, fuzzy
10475
  msgid "The Twitter @username a twitter card should be attributed to."
10476
- msgstr "Die Twitter @username eine Twitter-Karte sollten zurückgeführt werden."
10477
 
10478
  #: wppa-settings-autosave.php:1975
10479
  #, fuzzy
@@ -10481,8 +10482,8 @@ msgid ""
10481
  "If you want to share the image directly - by a so called twitter card - you "
10482
  "must enter your twitter account name here"
10483
  msgstr ""
10484
- "Wenn Sie das Bild direkt durch eine so genannte Twitter-Karte möchten - "
10485
- "müssen Sie Ihren Twitter-Account-Namen hier eingeben."
10486
 
10487
  #: wppa-settings-autosave.php:1982
10488
  #, fuzzy
@@ -10492,7 +10493,7 @@ msgstr "Google Button anzeigen"
10492
  #: wppa-settings-autosave.php:1983
10493
  #, fuzzy
10494
  msgid "Display the Google+ button in the share box."
10495
- msgstr "Den Google + Button in der Mitteilungsbox anzeigen"
10496
 
10497
  #: wppa-settings-autosave.php:1991
10498
  #, fuzzy
@@ -10502,7 +10503,7 @@ msgstr "Pinterest Button anzeigen"
10502
  #: wppa-settings-autosave.php:1992
10503
  #, fuzzy
10504
  msgid "Display the Pintrest button in the share box."
10505
- msgstr "Die Schaltfläche \"Pintrest\" in der Mitteilungsbox anzeigen"
10506
 
10507
  #: wppa-settings-autosave.php:2000
10508
  #, fuzzy
@@ -10512,17 +10513,17 @@ msgstr "LinkedIn Button anzeigen"
10512
  #: wppa-settings-autosave.php:2001
10513
  #, fuzzy
10514
  msgid "Display the LinkedIn button in the share box."
10515
- msgstr "Die Schaltfläche \"LinkedIn\" in der Mitteilungsbox anzeigen"
10516
 
10517
  #: wppa-settings-autosave.php:2009
10518
  #, fuzzy
10519
  msgid "Show Facebook share button"
10520
- msgstr "Facebook-Share-Taste anzeigen"
10521
 
10522
  #: wppa-settings-autosave.php:2010 wppa-settings-autosave.php:2019
10523
  #, fuzzy
10524
  msgid "Display the Facebook button in the share box."
10525
- msgstr "Die Facebook-Schaltfläche in der Mitteilungsbox anzeigen"
10526
 
10527
  #: wppa-settings-autosave.php:2018
10528
  #, fuzzy
@@ -10537,7 +10538,7 @@ msgstr "Anzeigeart"
10537
  #: wppa-settings-autosave.php:2028
10538
  #, fuzzy
10539
  msgid "Select the Facebook button display type."
10540
- msgstr "Wählen Sie den Facebook-Taste Anzeige."
10541
 
10542
  #: wppa-settings-autosave.php:2031
10543
  #, fuzzy
@@ -10547,17 +10548,17 @@ msgstr "Button mit Zähler"
10547
  #: wppa-settings-autosave.php:2031
10548
  #, fuzzy
10549
  msgid "Box with counter"
10550
- msgstr "Box mit Zähler"
10551
 
10552
  #: wppa-settings-autosave.php:2038
10553
  #, fuzzy
10554
  msgid "Show Facebook comment box"
10555
- msgstr "Facebook-Kommentar-Box zu zeigen"
10556
 
10557
  #: wppa-settings-autosave.php:2039
10558
  #, fuzzy
10559
  msgid "Display the Facebook comment dialog box in the share box."
10560
- msgstr "Das Facebook-Kommentar-Dialogfeld in der Mitteilungsbox anzeigen"
10561
 
10562
  #: wppa-settings-autosave.php:2047
10563
  #, fuzzy
@@ -10568,29 +10569,29 @@ msgstr "Facebook Benutzer ID"
10568
  #, fuzzy
10569
  msgid "Enter your facebook user id to be able to moderate comments and sends"
10570
  msgstr ""
10571
- "Geben Sie Ihren Facebook User Id um Kommentare und sendet moderieren zu "
10572
- "können"
10573
 
10574
  #: wppa-settings-autosave.php:2056
10575
  #, fuzzy
10576
  msgid "Facebook App Id"
10577
- msgstr "Facebook App ID"
10578
 
10579
  #: wppa-settings-autosave.php:2057
10580
  #, fuzzy
10581
  msgid "Enter your facebook app id to be able to moderate comments and sends"
10582
  msgstr ""
10583
- "Geben Sie Ihre Facebook-app-Id um Kommentare und sendet moderieren zu können"
10584
 
10585
  #: wppa-settings-autosave.php:2065
10586
  #, fuzzy
10587
  msgid "Facebook js SDK"
10588
- msgstr "Facebook Js SDK"
10589
 
10590
  #: wppa-settings-autosave.php:2066
10591
  #, fuzzy
10592
  msgid "Load Facebook js SDK"
10593
- msgstr "Laden Sie Facebook Js SDK"
10594
 
10595
  #: wppa-settings-autosave.php:2067
10596
  #, fuzzy
@@ -10598,18 +10599,18 @@ msgid ""
10598
  "Uncheck this box only when there is a conflict with an other plugin that "
10599
  "also loads the Facebook js SDK."
10600
  msgstr ""
10601
- "Deaktivieren Sie diese Option nur, wenn ein Konflikt mit einem anderen "
10602
- "Plugin, die auch die Facebook-Js SDK lädt."
10603
 
10604
  #: wppa-settings-autosave.php:2074
10605
  #, fuzzy
10606
  msgid "Share single image"
10607
- msgstr "Aktie Einzelbild"
10608
 
10609
  #: wppa-settings-autosave.php:2075
10610
  #, fuzzy
10611
  msgid "Share a link to a single image, not the slideshow."
10612
- msgstr "Freigeben Sie einen Link auf ein einzelnes Bild, nicht die Diashow."
10613
 
10614
  #: wppa-settings-autosave.php:2076
10615
  #, fuzzy
@@ -10617,19 +10618,18 @@ msgid ""
10617
  "The sharelink points to a page with a single image rather than to the page "
10618
  "with the photo in the slideshow."
10619
  msgstr ""
10620
- "Die Sharelink verweist auf eine Seite mit einem einzigen Bild nicht für die "
10621
- "Seite mit dem Foto in der Diashow."
10622
 
10623
  #: wppa-settings-autosave.php:2084
10624
  #, fuzzy
10625
  msgid "Thumbnail display related visibility settings"
10626
- msgstr ""
10627
- "Thumbnail-Anzeige im Zusammenhang mit Einstellungen für die Sichtbarkeit"
10628
 
10629
  #: wppa-settings-autosave.php:2086
10630
  #, fuzzy
10631
  msgid "Thumbnail name"
10632
- msgstr "Miniaturansicht name"
10633
 
10634
  #: wppa-settings-autosave.php:2087
10635
  #, fuzzy
@@ -10639,78 +10639,77 @@ msgstr "Vorschaubild anzeigen"
10639
  #: wppa-settings-autosave.php:2088
10640
  #, fuzzy
10641
  msgid "Display photo name under thumbnail images."
10642
- msgstr "Fotoname unter Miniaturbilder angezeigt."
10643
 
10644
  #: wppa-settings-autosave.php:2104
10645
  #, fuzzy
10646
  msgid "Thumbnail desc"
10647
- msgstr "Miniaturansicht desc"
10648
 
10649
  #: wppa-settings-autosave.php:2105
10650
  #, fuzzy
10651
  msgid "Display Thumbnail description."
10652
- msgstr "Miniaturansicht Beschreibung anzuzeigen."
10653
 
10654
  #: wppa-settings-autosave.php:2106
10655
  #, fuzzy
10656
  msgid "Display description of the photo under thumbnail images."
10657
- msgstr "Beschreibung des Fotos unter thumbnail-Bilder anzuzeigen."
10658
 
10659
  #: wppa-settings-autosave.php:2113
10660
  #, fuzzy
10661
  msgid "Thumbnail rating"
10662
- msgstr "Thumbnail-rating"
10663
 
10664
  #: wppa-settings-autosave.php:2114
10665
  #, fuzzy
10666
  msgid "Display Thumbnail Rating."
10667
- msgstr "Miniaturansicht Bewertung anzeigen"
10668
 
10669
  #: wppa-settings-autosave.php:2115
10670
  #, fuzzy
10671
  msgid "Display the rating of the photo under the thumbnail image."
10672
- msgstr "Die Bewertung des Fotos unter der Miniaturansicht angezeigt."
10673
 
10674
  #: wppa-settings-autosave.php:2122
10675
  #, fuzzy
10676
  msgid "Thumbnail comcount"
10677
- msgstr "Miniatur comcount"
10678
 
10679
  #: wppa-settings-autosave.php:2123
10680
  #, fuzzy
10681
  msgid "Display Thumbnail Comment count."
10682
- msgstr "Miniatur-Kommentar-Anzahl anzeigen."
10683
 
10684
  #: wppa-settings-autosave.php:2124
10685
  #, fuzzy
10686
  msgid "Display the number of comments to the photo under the thumbnail image."
10687
- msgstr ""
10688
- "Die Anzahl der Kommentare zu dem Foto unter der Miniaturansicht angezeigt."
10689
 
10690
  #: wppa-settings-autosave.php:2131
10691
  #, fuzzy
10692
  msgid "Thumbnail viewcount"
10693
- msgstr "Miniaturansicht Aufrufstatistik"
10694
 
10695
  #: wppa-settings-autosave.php:2132
10696
  #, fuzzy
10697
  msgid "Display the number of views."
10698
- msgstr "Anzahl der Ansichten anzeigen."
10699
 
10700
  #: wppa-settings-autosave.php:2133
10701
  #, fuzzy
10702
  msgid "Display the number of views under the thumbnail image."
10703
- msgstr "Die Anzahl der Ansichten unter der Miniaturansicht angezeigt."
10704
 
10705
  #: wppa-settings-autosave.php:2140
10706
  #, fuzzy
10707
  msgid "Thumbnail virt album"
10708
- msgstr "Miniaturansicht Virt album"
10709
 
10710
  #: wppa-settings-autosave.php:2141
10711
  #, fuzzy
10712
  msgid "Display the real album name on virtual album display."
10713
- msgstr "Echtes Album auf virtuelles Album Display anzeigen."
10714
 
10715
  #: wppa-settings-autosave.php:2142
10716
  #, fuzzy
@@ -10718,8 +10717,8 @@ msgid ""
10718
  "Display the album name of the photo in parenthesis under the thumbnail on "
10719
  "virtual album displays like search results etc."
10720
  msgstr ""
10721
- "Display den Namen des Albums des Fotos in Klammern unter der Miniaturansicht "
10722
- "auf virtuelles Album wie Suche zeigt etc. ergibt."
10723
 
10724
  #: wppa-settings-autosave.php:2149
10725
  #, fuzzy
@@ -10729,7 +10728,7 @@ msgstr "<strong>Vorschaubild Video URL</strong>"
10729
  #: wppa-settings-autosave.php:2150
10730
  #, fuzzy
10731
  msgid "Show video controls on thumbnail displays."
10732
- msgstr "Zeigen Sie video-Steuerelemente auf Miniaturansicht anzeigen."
10733
 
10734
  #: wppa-settings-autosave.php:2151
10735
  #, fuzzy
@@ -10737,8 +10736,8 @@ msgid ""
10737
  "Works on default thumbnail type only. You can play the video only when the "
10738
  "link is set to no link at all."
10739
  msgstr ""
10740
- "Funktioniert auf Standard-Miniaturbild nur geben. Sie können das Video "
10741
- "wiedergeben, wenn der Link auf keine Verbindung überhaupt festgelegt ist."
10742
 
10743
  #: wppa-settings-autosave.php:2158
10744
  #, fuzzy
@@ -10748,22 +10747,22 @@ msgstr "<strong>Vorschaubild Audio URL</strong>"
10748
  #: wppa-settings-autosave.php:2159
10749
  #, fuzzy
10750
  msgid "Show audio controls on thumbnail displays."
10751
- msgstr "Zeigen Sie audio-Bedienelemente auf Miniaturansicht anzeigen."
10752
 
10753
  #: wppa-settings-autosave.php:2167
10754
  #, fuzzy
10755
  msgid "Popup name"
10756
- msgstr "Popup-name"
10757
 
10758
  #: wppa-settings-autosave.php:2168
10759
  #, fuzzy
10760
  msgid "Display Thumbnail name on popup."
10761
- msgstr "Miniaturansicht Anzeigename auf Popup."
10762
 
10763
  #: wppa-settings-autosave.php:2169
10764
  #, fuzzy
10765
  msgid "Display photo name under thumbnail images on the popup."
10766
- msgstr "Name des Fotos unter thumbnail-Bilder im Popup anzeigen"
10767
 
10768
  #: wppa-settings-autosave.php:2176
10769
  #, fuzzy
@@ -10773,37 +10772,37 @@ msgstr "Popup (Inhaber)"
10773
  #: wppa-settings-autosave.php:2177
10774
  #, fuzzy
10775
  msgid "Display owner on popup."
10776
- msgstr "Anzeige beim Popup-Besitzer."
10777
 
10778
  #: wppa-settings-autosave.php:2178
10779
  #, fuzzy
10780
  msgid "Display photo owner under thumbnail images on the popup."
10781
- msgstr "Foto-Besitzer unter thumbnail-Bilder im Popup anzeigen"
10782
 
10783
  #: wppa-settings-autosave.php:2185
10784
  #, fuzzy
10785
  msgid "Popup desc"
10786
- msgstr "Popup-desc"
10787
 
10788
  #: wppa-settings-autosave.php:2186
10789
  #, fuzzy
10790
  msgid "Display Thumbnail description on popup."
10791
- msgstr "Miniaturansicht Beschreibung auf Popup anzuzeigen."
10792
 
10793
  #: wppa-settings-autosave.php:2187
10794
  #, fuzzy
10795
  msgid "Display description of the photo under thumbnail images on the popup."
10796
- msgstr "Beschreibung des Fotos unter thumbnail-Bilder im Popup anzuzeigen."
10797
 
10798
  #: wppa-settings-autosave.php:2194
10799
  #, fuzzy
10800
  msgid "Popup desc no links"
10801
- msgstr "Popup-Desc keine Links"
10802
 
10803
  #: wppa-settings-autosave.php:2195
10804
  #, fuzzy
10805
  msgid "Strip html anchor tags from descriptions on popups"
10806
- msgstr "Streifen-html-Anker-Tags von Beschreibungen auf Pop-ups"
10807
 
10808
  #: wppa-settings-autosave.php:2196
10809
  #, fuzzy
@@ -10811,32 +10810,33 @@ msgid ""
10811
  "Use this option to prevent the display of links that cannot be activated."
10812
  msgstr ""
10813
  "Verwenden Sie diese Option, um die Anzeige von Links zu verhindern, die "
10814
- "nicht aktiviert werden kann."
10815
 
10816
  #: wppa-settings-autosave.php:2203
10817
  #, fuzzy
10818
  msgid "Popup rating"
10819
- msgstr "Popup-rating"
10820
 
10821
  #: wppa-settings-autosave.php:2204
10822
  #, fuzzy
10823
  msgid "Display Thumbnail Rating on popup."
10824
- msgstr "Popup-zeigen Sie Thumbnail Rating an."
10825
 
10826
  #: wppa-settings-autosave.php:2205
10827
  #, fuzzy
10828
  msgid "Display the rating of the photo under the thumbnail image on the popup."
10829
- msgstr "Die Bewertung des Fotos unter der Miniaturansicht im Popup anzeigen"
 
10830
 
10831
  #: wppa-settings-autosave.php:2212
10832
  #, fuzzy
10833
  msgid "Popup comcount"
10834
- msgstr "Popup-comcount"
10835
 
10836
  #: wppa-settings-autosave.php:2213
10837
  #, fuzzy
10838
  msgid "Display Thumbnail Comment count on popup."
10839
- msgstr "Anzeige Bild Kommentar rechnen Popup."
10840
 
10841
  #: wppa-settings-autosave.php:2214
10842
  #, fuzzy
@@ -10844,8 +10844,8 @@ msgid ""
10844
  "Display the number of comments of the photo under the thumbnail image on the "
10845
  "popup."
10846
  msgstr ""
10847
- "Die Anzahl der Kommentare des Fotos unter der Miniaturansicht im Popup "
10848
- "angezeigt."
10849
 
10850
  #: wppa-settings-autosave.php:2221
10851
  #, fuzzy
@@ -10856,7 +10856,8 @@ msgstr "Bewertungen"
10856
  #, fuzzy
10857
  msgid "Display the number of votes along with average ratings."
10858
  msgstr ""
10859
- "Anzahl der Stimmen zusammen mit durchschnittlichen Bewertungen anzeigen."
 
10860
 
10861
  #: wppa-settings-autosave.php:2223
10862
  #, fuzzy
@@ -10864,26 +10865,27 @@ msgid ""
10864
  "If checked, the number of votes is displayed along with average rating "
10865
  "displays on thumbnail and popup displays."
10866
  msgstr ""
10867
- "Wenn diese Option aktiviert, wird die Zahl der Stimmen zusammen mit "
10868
- "Durchschnittsnote anzeigen auf Vorschaubild angezeigt und Popup zeigt."
 
10869
 
10870
  #: wppa-settings-autosave.php:2230
10871
  #, fuzzy
10872
  msgid "Show name on thumb area"
10873
- msgstr "Name der Show im Daumenbereich"
10874
 
10875
  #: wppa-settings-autosave.php:2231
10876
  #, fuzzy
10877
  msgid "Select if and where to display the album name on the thumbnail display."
10878
  msgstr ""
10879
- "Wählen Sie, ob und wo der Name des Albums auf die Anzeige von "
10880
- "Miniaturansichten angezeigt."
10881
 
10882
  #: wppa-settings-autosave.php:2234 wppa-settings-autosave.php:2245
10883
- #: wppa-settings-autosave.php:2274 wppa-settings-autosave.php:4524
10884
  #, fuzzy
10885
  msgid "None"
10886
- msgstr "Kein/e"
10887
 
10888
  #: wppa-settings-autosave.php:2234 wppa-settings-autosave.php:2245
10889
  #: wppa-settings-autosave.php:2274 wppa-settings-autosave.php:3634
@@ -10895,12 +10897,12 @@ msgstr "Hoch bewertete Fotos"
10895
  #: wppa-settings-autosave.php:2274 wppa-settings-autosave.php:3634
10896
  #, fuzzy
10897
  msgid "At the bottom"
10898
- msgstr "An der Unterseite"
10899
 
10900
  #: wppa-settings-autosave.php:2241
10901
  #, fuzzy
10902
  msgid "Show desc on thumb area"
10903
- msgstr "Desc auf Daumenbereich anzeigen"
10904
 
10905
  #: wppa-settings-autosave.php:2242
10906
  #, fuzzy
@@ -10908,61 +10910,59 @@ msgid ""
10908
  "Select if and where to display the album description on the thumbnail "
10909
  "display."
10910
  msgstr ""
10911
- "Wählen Sie, ob und wo die Album-Beschreibung auf die Anzeige von "
10912
- "Miniaturansichten angezeigt."
10913
 
10914
  #: wppa-settings-autosave.php:2252
10915
  #, fuzzy
10916
  msgid "Show Edit/Delete links"
10917
- msgstr "Bearbeiten/löschen-Links anzeigen"
10918
 
10919
  #: wppa-settings-autosave.php:2253
10920
  #, fuzzy
10921
  msgid "Show these links under default thumbnails for owner and admin."
10922
  msgstr ""
10923
- "Zeigen Sie diese Links unter Standard-Miniaturansichten für Eigentümer und "
10924
- "Admin."
10925
 
10926
  #: wppa-settings-autosave.php:2261
10927
  #, fuzzy
10928
  msgid "Show empty thumbnail area"
10929
- msgstr "Leeren Bereich Miniaturansicht anzeigen"
10930
 
10931
  #: wppa-settings-autosave.php:2262
10932
  #, fuzzy
10933
  msgid "Display thumbnail areas with upload link only for empty albums."
10934
- msgstr ""
10935
- "Anzeigeflächen Sie Miniaturansicht mit Link nur für leere Alben hochladen."
10936
 
10937
  #: wppa-settings-autosave.php:2270
10938
  #, fuzzy
10939
  msgid "Upload/create link on thumbnail area"
10940
- msgstr "Upload/Link auf thumbnail erstellen"
10941
 
10942
  #: wppa-settings-autosave.php:2271
10943
  #, fuzzy
10944
  msgid "Select the location of the upload and crete links."
10945
- msgstr "Wählen Sie den Speicherort der Upload und Kreta."
10946
 
10947
  #: wppa-settings-autosave.php:2282
10948
  #, fuzzy
10949
  msgid "Album cover related visibility settings"
10950
- msgstr "Album-Cover im Zusammenhang mit Einstellungen für die Sichtbarkeit"
10951
 
10952
  #: wppa-settings-autosave.php:2284
10953
  #, fuzzy
10954
  msgid "Covertext"
10955
- msgstr "Covertext"
10956
 
10957
  #: wppa-settings-autosave.php:2285
10958
  #, fuzzy
10959
  msgid "Show the text on the album cover."
10960
- msgstr "Zeigen Sie den Text auf dem Albumcover."
10961
 
10962
  #: wppa-settings-autosave.php:2286
10963
  #, fuzzy
10964
  msgid "Display the album decription on the album cover"
10965
- msgstr "Das Album Decription auf das Album-Cover anzeigen"
10966
 
10967
  #: wppa-settings-autosave.php:2294
10968
  #, fuzzy
@@ -10975,26 +10975,26 @@ msgid ""
10975
  "If you do not want slideshows: uncheck this box. Browsing full size images "
10976
  "will remain possible."
10977
  msgstr ""
10978
- "Wenn Sie nicht, dass Diashows möchten: deaktivieren Sie das "
10979
- "Kontrollkästchen. Durchsuchen Bilder in voller Größe bleibt möglich."
10980
 
10981
  #: wppa-settings-autosave.php:2302
10982
  #, fuzzy
10983
  msgid "Slideshow/Browse"
10984
- msgstr "Diashow/durchsuchen"
10985
 
10986
  #: wppa-settings-autosave.php:2303
10987
  #, fuzzy
10988
  msgid "Display the Slideshow / Browse photos link on album covers"
10989
- msgstr "Die Diashow anzeigen / Browse Fotos link auf Album-Cover"
10990
 
10991
  #: wppa-settings-autosave.php:2304
10992
  #, fuzzy
10993
  msgid ""
10994
  "This setting causes the Slideshow link to be displayed on the album cover."
10995
  msgstr ""
10996
- "Diese Einstellung bewirkt, dass den Diashow-Link auf das Album-Cover "
10997
- "angezeigt werden soll."
10998
 
10999
  #: wppa-settings-autosave.php:2305
11000
  #, fuzzy
@@ -11002,25 +11002,25 @@ msgid ""
11002
  "If slideshows are disabled in item 2 in this table, you will see a browse "
11003
  "link to fullsize images."
11004
  msgstr ""
11005
- "Wenn Diashows in Punkt 2 in dieser Tabelle deaktiviert sind, werden Sie "
11006
- "sehen, sehen Sie Link zu Fullsize Bilder."
11007
 
11008
  #: wppa-settings-autosave.php:2306
11009
  #, fuzzy
11010
  msgid "If you do not want the browse link either, uncheck this item."
11011
  msgstr ""
11012
- "Wenn Sie entweder nicht den Link durchsuchen möchten, deaktivieren Sie "
11013
- "dieses Element."
11014
 
11015
  #: wppa-settings-autosave.php:2313
11016
  #, fuzzy
11017
  msgid "View ..."
11018
- msgstr "Anzeigen"
11019
 
11020
  #: wppa-settings-autosave.php:2314
11021
  #, fuzzy
11022
  msgid "Display the View xx albums and yy photos link on album covers"
11023
- msgstr "Anzeige der Ansicht Xx Alben und Yy Fotos auf Plattencover verknüpfen"
11024
 
11025
  #: wppa-settings-autosave.php:2322
11026
  #, fuzzy
@@ -11030,7 +11030,7 @@ msgstr "Treecount"
11030
  #: wppa-settings-autosave.php:2323
11031
  #, fuzzy
11032
  msgid "Disaplay the total number of (sub)albums and photos in subalbums"
11033
- msgstr "Disaplay die Gesamtzahl der (Sub) Alben und Fotos in subalbums"
11034
 
11035
  #: wppa-settings-autosave.php:2324
11036
  #, fuzzy
@@ -11038,7 +11038,7 @@ msgid ""
11038
  "Displays the total number of sub albums and photos in the entire album tree "
11039
  "in parenthesis if the numbers differ from the direct content of the album."
11040
  msgstr ""
11041
- "Zeigt die Gesamtanzahl der Sub-Alben und Fotos in das gesamte Album Baum in "
11042
  "Klammern, wenn die Zahlen aus dem direkten Inhalt des Albums unterscheiden."
11043
 
11044
  #: wppa-settings-autosave.php:2331
@@ -11049,17 +11049,17 @@ msgstr "Kategorien anzeigen"
11049
  #: wppa-settings-autosave.php:2332
11050
  #, fuzzy
11051
  msgid "Display the album categories on the covers."
11052
- msgstr "Anzeige der Albumkategorien auf den Titelseiten."
11053
 
11054
  #: wppa-settings-autosave.php:2340
11055
  #, fuzzy
11056
  msgid "Skip empty albums"
11057
- msgstr "Leere Alben überspringen"
11058
 
11059
  #: wppa-settings-autosave.php:2341
11060
  #, fuzzy
11061
  msgid "Do not show empty albums, except for admin and owner."
11062
- msgstr "Zeigen Sie keine leere Alben, mit Ausnahme von Admin und Besitzer."
11063
 
11064
  #: wppa-settings-autosave.php:2349
11065
  #, fuzzy
@@ -11069,70 +11069,68 @@ msgstr "Zählen Sie auf Titel"
11069
  #: wppa-settings-autosave.php:2350
11070
  #, fuzzy
11071
  msgid "Show photocount along with album title. "
11072
- msgstr "Zeigen Sie Photocount zusammen mit Album-Titel."
11073
 
11074
  #: wppa-settings-autosave.php:2359
11075
  #, fuzzy
11076
  msgid "Widget related visibility settings"
11077
- msgstr "Widget im Zusammenhang mit Einstellungen für die Sichtbarkeit"
11078
 
11079
  #: wppa-settings-autosave.php:2361
11080
  #, fuzzy
11081
  msgid "Big Browse Buttons in widget"
11082
- msgstr "Großen Blättern Tasten im widget"
11083
 
11084
  #: wppa-settings-autosave.php:2362
11085
  #, fuzzy
11086
  msgid "Enable invisible browsing buttons in widget slideshows."
11087
- msgstr "Aktivieren Sie unsichtbare Surfen Schaltflächen in Diashows Widget."
11088
 
11089
  #: wppa-settings-autosave.php:2371
11090
  #, fuzzy
11091
  msgid "Ugly Browse Buttons in widget"
11092
- msgstr "Hässliche durchsuchen Sie Schaltflächen im widget"
11093
 
11094
  #: wppa-settings-autosave.php:2372
11095
  #, fuzzy
11096
  msgid "Enable ugly browsing buttons in widget slideshows."
11097
- msgstr "Aktivieren Sie hässliche Browser Schaltflächen in Diashows Widget."
11098
 
11099
  #: wppa-settings-autosave.php:2373
11100
  #, fuzzy
11101
  msgid "If checked, the fullsize image is covered by browse buttons."
11102
  msgstr ""
11103
- "Wenn diese Option aktiviert ist, fällt das Fullsize-Bild durchsuchen-"
11104
- "Schaltflächen."
11105
 
11106
  #: wppa-settings-autosave.php:2381
11107
  #, fuzzy
11108
  msgid "Album widget tooltip"
11109
- msgstr "Album-Widget-tooltip"
11110
 
11111
  #: wppa-settings-autosave.php:2382
11112
  #, fuzzy
11113
  msgid "Show the album description on hoovering thumbnail in album widget"
11114
- msgstr ""
11115
- "Die Album-Beschreibung auf Staubsaugen Miniaturansicht im Album Widget "
11116
- "anzeigen"
11117
 
11118
- #: wppa-settings-autosave.php:2390 wppa-settings-autosave.php:4655
11119
  #, fuzzy
11120
  msgid ""
11121
  "Lightbox related settings. These settings have effect only when Table IX-J3 "
11122
  "is set to wppa"
11123
  msgstr ""
11124
- "Lightbox im Zusammenhang mit Einstellungen. Diese Einstellungen wirken sich "
11125
- "nur dann, wenn Tabelle IX-J3 auf Wppa eingestellt ist"
11126
 
11127
  #: wppa-settings-autosave.php:2403
11128
  #, fuzzy
11129
  msgid "Overlay theme color"
11130
- msgstr "Overlay-Designfarbe"
11131
 
11132
  #: wppa-settings-autosave.php:2404
11133
  #, fuzzy
11134
  msgid "The color of the image border and text background."
11135
- msgstr "Die Farbe der Bildhintergrund Rahmen und Text."
11136
 
11137
  #: wppa-settings-autosave.php:2407 wppa-settings-autosave.php:2418
11138
  #, fuzzy
@@ -11142,7 +11140,7 @@ msgstr "Schwarz"
11142
  #: wppa-settings-autosave.php:2407 wppa-settings-autosave.php:2418
11143
  #, fuzzy
11144
  msgid "White"
11145
- msgstr "Blanco"
11146
 
11147
  #: wppa-settings-autosave.php:2414
11148
  #, fuzzy
@@ -11157,20 +11155,20 @@ msgstr "Die Farbe des äußeren Hintergrund."
11157
  #: wppa-settings-autosave.php:2425
11158
  #, fuzzy
11159
  msgid "Overlay slide name"
11160
- msgstr "Overlay-Folie-name"
11161
 
11162
  #: wppa-settings-autosave.php:2426
11163
  #, fuzzy
11164
  msgid "Show name if from slide."
11165
- msgstr "Name der Show aus Folie."
11166
 
11167
  #: wppa-settings-autosave.php:2427
11168
  #, fuzzy
11169
  msgid ""
11170
  "Shows the photos name on a lightbox display when initiated from a slide."
11171
  msgstr ""
11172
- "Zeigt den Namen Fotos auf einer Lightbox-Anzeige, wenn von einer Folie "
11173
- "initiiert."
11174
 
11175
  #: wppa-settings-autosave.php:2428 wppa-settings-autosave.php:2438
11176
  #, fuzzy
@@ -11178,18 +11176,18 @@ msgid ""
11178
  "This setting also applies to film thumbnails if Table VI-11 is set to "
11179
  "lightbox overlay."
11180
  msgstr ""
11181
- "Diese Einstellung gilt auch für Film-Miniaturen, wenn Tabelle VI-11 auf "
11182
- "Lightbox Overlay festgelegt ist."
11183
 
11184
  #: wppa-settings-autosave.php:2435
11185
  #, fuzzy
11186
  msgid "Overlay slide desc"
11187
- msgstr "Overlay-Folie-desc"
11188
 
11189
  #: wppa-settings-autosave.php:2436
11190
  #, fuzzy
11191
  msgid "Show description if from slide."
11192
- msgstr "Beschreibung Wenn aus Folie."
11193
 
11194
  #: wppa-settings-autosave.php:2437
11195
  #, fuzzy
@@ -11197,18 +11195,18 @@ msgid ""
11197
  "Shows the photos description on a lightbox display when initiated from a "
11198
  "slide."
11199
  msgstr ""
11200
- "Zeigt die Beschreibung des Fotos auf einer Lightbox-Anzeige, wenn von einer "
11201
- "Folie initiiert."
11202
 
11203
  #: wppa-settings-autosave.php:2445
11204
  #, fuzzy
11205
  msgid "Overlay thumb name"
11206
- msgstr "Overlay-Daumen-name"
11207
 
11208
  #: wppa-settings-autosave.php:2446
11209
  #, fuzzy
11210
  msgid "Show the photos name if from thumb."
11211
- msgstr "Zeigen Sie, dass die Fotos aus dem Daumen zu nennen."
11212
 
11213
  #: wppa-settings-autosave.php:2447
11214
  #, fuzzy
@@ -11216,7 +11214,7 @@ msgid ""
11216
  "Shows the name on a lightbox display when initiated from a standard "
11217
  "thumbnail or a widget thumbnail."
11218
  msgstr ""
11219
- "Zeigt den Namen auf einer Lightbox-Anzeige wenn von einer standard "
11220
  "Miniaturansicht oder ein Widget Thumbnail initiiert."
11221
 
11222
  #: wppa-settings-autosave.php:2448 wppa-settings-autosave.php:2458
@@ -11225,18 +11223,18 @@ msgid ""
11225
  "This setting applies to standard thumbnails, thumbnail-, comment-, topten- "
11226
  "and lasten-widget."
11227
  msgstr ""
11228
- "Diese Einstellung gilt für standard Miniaturen, Miniatur, Kommentar, Topten- "
11229
- "und RT-Widget."
11230
 
11231
  #: wppa-settings-autosave.php:2455
11232
  #, fuzzy
11233
  msgid "Overlay thumb desc"
11234
- msgstr "Overlay-Daumen-desc"
11235
 
11236
  #: wppa-settings-autosave.php:2456
11237
  #, fuzzy
11238
  msgid "Show description if from thumb."
11239
- msgstr "Beschreibung von Daumen."
11240
 
11241
  #: wppa-settings-autosave.php:2457
11242
  #, fuzzy
@@ -11244,18 +11242,18 @@ msgid ""
11244
  "Shows the photos description on a lightbox display when initiated from a "
11245
  "standard thumbnail or a widget thumbnail."
11246
  msgstr ""
11247
- "Zeigt die Fotos Beschreibung auf einer Lightbox-Anzeige wenn von einer "
11248
- "standard Miniaturansicht oder ein Widget Thumbnail initiiert."
11249
 
11250
  #: wppa-settings-autosave.php:2465
11251
  #, fuzzy
11252
  msgid "Overlay potd name"
11253
- msgstr "Overlay-Potd-name"
11254
 
11255
  #: wppa-settings-autosave.php:2466
11256
  #, fuzzy
11257
  msgid "Show the photos name if from photo of the day."
11258
- msgstr "Zeigen Sie, dass die Fotos von Foto des Tages zu nennen."
11259
 
11260
  #: wppa-settings-autosave.php:2467
11261
  #, fuzzy
@@ -11263,18 +11261,18 @@ msgid ""
11263
  "Shows the name on a lightbox display when initiated from the photo of the "
11264
  "day."
11265
  msgstr ""
11266
- "Zeigt den Namen in einer Lightbox-Anzeige, wenn aus dem Foto des Tages "
11267
- "eingeleitet."
11268
 
11269
  #: wppa-settings-autosave.php:2474
11270
  #, fuzzy
11271
  msgid "Overlay potd desc"
11272
- msgstr "Overlay Potd desc"
11273
 
11274
  #: wppa-settings-autosave.php:2475
11275
  #, fuzzy
11276
  msgid "Show description if from from photo of the day."
11277
- msgstr "Beschreibung anzeigen wenn aus aus dem Foto des Tages."
11278
 
11279
  #: wppa-settings-autosave.php:2476
11280
  #, fuzzy
@@ -11282,36 +11280,36 @@ msgid ""
11282
  "Shows the photos description on a lightbox display when initiated from the "
11283
  "photo of the day."
11284
  msgstr ""
11285
- "Zeigt die Fotos Beschreibung auf eine Lightbox-Anzeige, wenn aus dem Foto "
11286
- "des Tages eingeleitet."
11287
 
11288
  #: wppa-settings-autosave.php:2483
11289
  #, fuzzy
11290
  msgid "Overlay sphoto name"
11291
- msgstr "Overlay Sphoto Namen"
11292
 
11293
  #: wppa-settings-autosave.php:2484
11294
  #, fuzzy
11295
  msgid "Show the photos name if from a single photo."
11296
- msgstr "Zeigen Sie, dass die Fotos aus einem einzigen Foto zu nennen."
11297
 
11298
  #: wppa-settings-autosave.php:2485
11299
  #, fuzzy
11300
  msgid ""
11301
  "Shows the name on a lightbox display when initiated from a single photo."
11302
  msgstr ""
11303
- "Zeigt den Namen in einer Lightbox-Anzeige, wenn aus einem einzigen Foto "
11304
- "initiiert."
11305
 
11306
  #: wppa-settings-autosave.php:2492
11307
  #, fuzzy
11308
  msgid "Overlay sphoto desc"
11309
- msgstr "Overlay Sphoto desc"
11310
 
11311
  #: wppa-settings-autosave.php:2493
11312
  #, fuzzy
11313
  msgid "Show description if from from a single photo."
11314
- msgstr "Beschreibung anzeigen wenn aus aus einem einzigen Foto."
11315
 
11316
  #: wppa-settings-autosave.php:2494
11317
  #, fuzzy
@@ -11319,20 +11317,20 @@ msgid ""
11319
  "Shows the photos description on a lightbox display when initiated from a "
11320
  "single photo."
11321
  msgstr ""
11322
- "Zeigt die Fotos Beschreibung auf einer Lightbox-Anzeige, wenn aus einem "
11323
- "einzigen Foto initiiert."
11324
 
11325
  #: wppa-settings-autosave.php:2501
11326
  #, fuzzy
11327
  msgid "Overlay mphoto name"
11328
- msgstr "Overlay Mphoto Namen"
11329
 
11330
  #: wppa-settings-autosave.php:2502
11331
  #, fuzzy
11332
  msgid "Show the photos name if from a single media style photo."
11333
  msgstr ""
11334
- "Zeigen Sie, dass die Fotos wenn von einem einzelnen Medium Stil Foto zu "
11335
- "nennen."
11336
 
11337
  #: wppa-settings-autosave.php:2503
11338
  #, fuzzy
@@ -11340,18 +11338,18 @@ msgid ""
11340
  "Shows the name on a lightbox display when initiated from a single media "
11341
  "style photo."
11342
  msgstr ""
11343
- "Zeigt den Namen in einer Lightbox-Anzeige, wenn aus einem einzelnen Medium "
11344
- "Stil Foto initiiert."
11345
 
11346
  #: wppa-settings-autosave.php:2510
11347
  #, fuzzy
11348
  msgid "Overlay mphoto desc"
11349
- msgstr "Overlay Mphoto desc"
11350
 
11351
  #: wppa-settings-autosave.php:2511
11352
  #, fuzzy
11353
  msgid "Show description if from from a media style photo."
11354
- msgstr "Beschreibung anzeigen wenn aus von einem Medien-Stil-Foto."
11355
 
11356
  #: wppa-settings-autosave.php:2512
11357
  #, fuzzy
@@ -11359,36 +11357,36 @@ msgid ""
11359
  "Shows the photos description on a lightbox display when initiated from a "
11360
  "single media style photo."
11361
  msgstr ""
11362
- "Zeigt die Fotos Beschreibung auf einer Lightbox-Anzeige, wenn von einem "
11363
- "einzelnen Medium Stil Foto initiiert."
11364
 
11365
  #: wppa-settings-autosave.php:2519
11366
  #, fuzzy
11367
  msgid "Overlay albumwidget name"
11368
- msgstr "Overlay Albumwidget Namen"
11369
 
11370
  #: wppa-settings-autosave.php:2520
11371
  #, fuzzy
11372
  msgid "Show the photos name if from the album widget."
11373
- msgstr "Zeigen Sie, dass die Fotos aus dem Album Widget zu nennen."
11374
 
11375
  #: wppa-settings-autosave.php:2521
11376
  #, fuzzy
11377
  msgid ""
11378
  "Shows the name on a lightbox display when initiated from the album widget."
11379
  msgstr ""
11380
- "Zeigt den Namen in einer Lightbox-Anzeige, wenn aus dem Album Widget "
11381
- "initiiert."
11382
 
11383
  #: wppa-settings-autosave.php:2528
11384
  #, fuzzy
11385
  msgid "Overlay albumwidget desc"
11386
- msgstr "Overlay Albumwidget desc"
11387
 
11388
  #: wppa-settings-autosave.php:2529
11389
  #, fuzzy
11390
  msgid "Show description if from from the album widget."
11391
- msgstr "Beschreibung anzeigen wenn aus aus dem Album Widget."
11392
 
11393
  #: wppa-settings-autosave.php:2530
11394
  #, fuzzy
@@ -11396,18 +11394,18 @@ msgid ""
11396
  "Shows the photos description on a lightbox display when initiated from the "
11397
  "album widget."
11398
  msgstr ""
11399
- "Zeigt die Fotos Beschreibung auf einer Lightbox-Anzeige, wenn aus dem Album "
11400
- "Widget initiiert."
11401
 
11402
  #: wppa-settings-autosave.php:2537
11403
  #, fuzzy
11404
  msgid "Overlay coverphoto name"
11405
- msgstr "Overlay Titelfoto name"
11406
 
11407
  #: wppa-settings-autosave.php:2538
11408
  #, fuzzy
11409
  msgid "Show the photos name if from the album cover."
11410
- msgstr "Zeigen Sie, dass die Fotos aus dem Album-Cover zu nennen."
11411
 
11412
  #: wppa-settings-autosave.php:2539
11413
  #, fuzzy
@@ -11415,18 +11413,18 @@ msgid ""
11415
  "Shows the name on a lightbox display when initiated from the album "
11416
  "coverphoto."
11417
  msgstr ""
11418
- "Zeigt den Namen in einer Lightbox-Anzeige, wenn aus dem Album Titelfoto "
11419
  "initiiert."
11420
 
11421
  #: wppa-settings-autosave.php:2546
11422
  #, fuzzy
11423
  msgid "Overlay coverphoto desc"
11424
- msgstr "Overlay Titelfoto desc"
11425
 
11426
  #: wppa-settings-autosave.php:2547
11427
  #, fuzzy
11428
  msgid "Show description if from from the album cover."
11429
- msgstr "Beschreibung anzeigen wenn aus aus dem Album-Cover."
11430
 
11431
  #: wppa-settings-autosave.php:2548
11432
  #, fuzzy
@@ -11434,18 +11432,18 @@ msgid ""
11434
  "Shows the photos description on a lightbox display when initiated from the "
11435
  "album coverphoto."
11436
  msgstr ""
11437
- "Zeigt die Beschreibung des Fotos auf einer Lightbox-Anzeige wenn von dem "
11438
- "Album Titelfoto initiiert."
11439
 
11440
  #: wppa-settings-autosave.php:2555
11441
  #, fuzzy
11442
  msgid "Overlay add owner"
11443
- msgstr "Folie hinzufügen Besitzer"
11444
 
11445
  #: wppa-settings-autosave.php:2556
11446
  #, fuzzy
11447
  msgid "Add the owner to the photo name on lightbox displays."
11448
- msgstr "Der Name des Fotos auf Lightbox-Displays den Besitzer hinzufügen."
11449
 
11450
  #: wppa-settings-autosave.php:2557
11451
  #, fuzzy
@@ -11453,45 +11451,47 @@ msgid ""
11453
  "This setting is independant of the show name switches and is a global "
11454
  "setting."
11455
  msgstr ""
11456
- "Diese Einstellung ist unabhängig von der Show Name Schalter und ist eine "
11457
  "globale Einstellung."
11458
 
11459
  #: wppa-settings-autosave.php:2564
11460
  #, fuzzy
11461
  msgid "Overlay show start/stop"
11462
- msgstr "Overlay zeigen, Start/Stopp"
11463
 
11464
  #: wppa-settings-autosave.php:2565
11465
  #, fuzzy
11466
  msgid "Show Start and Stop for running slideshow on lightbox."
11467
- msgstr "Zeigen Sie Start und Stopp für Diashow auf Lightbox an"
11468
 
11469
  #: wppa-settings-autosave.php:2573
11470
  #, fuzzy
11471
  msgid "Overlay show legenda"
11472
- msgstr "Overlay zeigen legenda"
11473
 
11474
  #: wppa-settings-autosave.php:2574
11475
  #, fuzzy
11476
  msgid "Show \"Press f for fullsize\" etc. on lightbox."
11477
- msgstr "Zeigen \"Presse f für Fullsize\" etc. auf Lightbox."
11478
 
11479
  #: wppa-settings-autosave.php:2575
11480
  #, fuzzy
11481
  msgid "Independant of this setting, it will not show up on mobile devices."
11482
  msgstr ""
11483
- "Independant dieser Einstellung, wird es nicht auf mobilen Geräten auftauchen."
 
11484
 
11485
  #: wppa-settings-autosave.php:2582
11486
  #, fuzzy
11487
  msgid "Show fullscreen icons"
11488
- msgstr "Fullscreen Symbole anzeigen"
11489
 
11490
  #: wppa-settings-autosave.php:2583
11491
  #, fuzzy
11492
  msgid "Shows fullscreen and back to normal icon buttons on upper right corner"
11493
  msgstr ""
11494
- "Fullscreen und zurück zum normalen Symbolschaltflächen zeigt rechts oben"
 
11495
 
11496
  #: wppa-settings-autosave.php:2591
11497
  #, fuzzy
@@ -11501,35 +11501,35 @@ msgstr "Bewertung anzeigen"
11501
  #: wppa-settings-autosave.php:2592
11502
  #, fuzzy
11503
  msgid "Shows and enables rating on lightbox."
11504
- msgstr "Shows und Bewertung am Leuchtkasten ermöglicht."
11505
 
11506
  #: wppa-settings-autosave.php:2593
11507
  #, fuzzy
11508
  msgid ""
11509
  "This works for 5 and 10 stars only, not for single votes or numerical display"
11510
  msgstr ""
11511
- "Dies funktioniert für 5 und 10 Sterne nur, nicht für einzelne Abstimmungen "
11512
- "oder numerische Anzeige"
11513
 
11514
  #: wppa-settings-autosave.php:2600
11515
  #, fuzzy
11516
  msgid "Overlay show counter"
11517
- msgstr "Overlay-Show-Zähler"
11518
 
11519
  #: wppa-settings-autosave.php:2601
11520
  #, fuzzy
11521
  msgid "Show the x/y counter below the image."
11522
- msgstr "Zeigen die X / y-Schalter unterhalb des Bildes."
11523
 
11524
  #: wppa-settings-autosave.php:2609
11525
  #, fuzzy
11526
  msgid "Show Zoom in"
11527
- msgstr "Zeigen Sie Zoom in"
11528
 
11529
  #: wppa-settings-autosave.php:2610
11530
  #, fuzzy
11531
  msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
11532
- msgstr "Tooltip \"Zoom in\" zusammen mit der Lupe-Cursor angezeigt."
11533
 
11534
  #: wppa-settings-autosave.php:2611
11535
  #, fuzzy
@@ -11537,13 +11537,13 @@ msgid ""
11537
  "If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
11538
  "contains the photo name."
11539
  msgstr ""
11540
- "Wenn Sie---keine---in Tabelle ich-G2 für Lupe Größe auswählen, enthält die "
11541
- "Tooltop der Name des Fotos."
11542
 
11543
  #: wppa-settings-autosave.php:2619
11544
  #, fuzzy
11545
  msgid "Frontend upload configuration settings"
11546
- msgstr "Frontend Upload Konfigurationseinstellungen"
11547
 
11548
  #: wppa-settings-autosave.php:2621
11549
  #, fuzzy
@@ -11553,7 +11553,7 @@ msgstr "Fotos hochladen"
11553
  #: wppa-settings-autosave.php:2622
11554
  #, fuzzy
11555
  msgid "Enable frontend upload."
11556
- msgstr "Ermöglichen Sie Frontend Upload."
11557
 
11558
  #: wppa-settings-autosave.php:2623
11559
  #, fuzzy
@@ -11561,8 +11561,8 @@ msgid ""
11561
  "If you check this item, frontend upload will be enabled according to the "
11562
  "rules set in the following items of this table."
11563
  msgstr ""
11564
- "Wenn Sie dieses Element zu überprüfen, wird Frontend Upload gemäß den Regeln "
11565
- "in dieser Tabelle die folgenden Elemente aktiviert werden."
11566
 
11567
  #: wppa-settings-autosave.php:2631
11568
  #, fuzzy
@@ -11572,12 +11572,12 @@ msgstr "Video hochladen"
11572
  #: wppa-settings-autosave.php:2632
11573
  #, fuzzy
11574
  msgid "Enable frontend upload of video."
11575
- msgstr "Frontend Upload von Videos zu ermöglichen."
11576
 
11577
  #: wppa-settings-autosave.php:2633 wppa-settings-autosave.php:2643
11578
  #, fuzzy
11579
  msgid "Requires Table II-H1 to be ticked."
11580
- msgstr "Tabelle II-H1 bis angekreuzt werden muss."
11581
 
11582
  #: wppa-settings-autosave.php:2641
11583
  #, fuzzy
@@ -11587,17 +11587,17 @@ msgstr "Audio hochladen"
11587
  #: wppa-settings-autosave.php:2642
11588
  #, fuzzy
11589
  msgid "Enable frontend upload of audio."
11590
- msgstr "Frontend Upload von Audio zu ermöglichen."
11591
 
11592
  #: wppa-settings-autosave.php:2651
11593
  #, fuzzy
11594
  msgid "User upload Photos login"
11595
- msgstr "User Login Fotos hochladen"
11596
 
11597
  #: wppa-settings-autosave.php:2652
11598
  #, fuzzy
11599
  msgid "Frontend upload requires the user is logged in."
11600
- msgstr "Frontend Upload erfordert, dass der Benutzer angemeldet ist."
11601
 
11602
  #: wppa-settings-autosave.php:2653
11603
  #, fuzzy
@@ -11606,7 +11606,7 @@ msgid ""
11606
  "VII-D1."
11607
  msgstr ""
11608
  "Wenn Sie dieses Kontrollkästchen deaktivieren, stellen Sie sicher, dass Sie "
11609
- "das Element nur in Tabelle VII-D1 Besitzer überprüfen."
11610
 
11611
  #: wppa-settings-autosave.php:2654
11612
  #, fuzzy
@@ -11614,18 +11614,18 @@ msgid ""
11614
  "Also: set the owner to ---public--- of the albums that are allowed to be "
11615
  "uploaded to."
11616
  msgstr ""
11617
- "Auch: Festlegen des Besitzers---öffentliche---der Alben, die hochgeladen "
11618
  "werden dürfen."
11619
 
11620
  #: wppa-settings-autosave.php:2661
11621
  #, fuzzy
11622
  msgid "User upload Ajax"
11623
- msgstr "User-Upload Ajax"
11624
 
11625
  #: wppa-settings-autosave.php:2662
11626
  #, fuzzy
11627
  msgid "Shows the upload progression bar."
11628
- msgstr "Der Upload Fortschrittsbalken zeigt."
11629
 
11630
  #: wppa-settings-autosave.php:2670
11631
  #, fuzzy
@@ -11635,7 +11635,7 @@ msgstr "Urheberrecht anzeigen"
11635
  #: wppa-settings-autosave.php:2671
11636
  #, fuzzy
11637
  msgid "Show a copyright warning on frontend upload locations."
11638
- msgstr "Eine copyright-Warnung auf Frontend Upload Standorte anzeigen."
11639
 
11640
  #: wppa-settings-autosave.php:2680
11641
  #, fuzzy
@@ -11650,12 +11650,12 @@ msgstr "Der Nachrichtentext der angezeigt werden soll."
11650
  #: wppa-settings-autosave.php:2689
11651
  #, fuzzy
11652
  msgid "User Watermark"
11653
- msgstr "Benutzer-Wasserzeichen"
11654
 
11655
  #: wppa-settings-autosave.php:2690
11656
  #, fuzzy
11657
  msgid "Uploading users may select watermark settings"
11658
- msgstr "Benutzer hochladen kann Wasserzeichen Einstellungen auswählen."
11659
 
11660
  #: wppa-settings-autosave.php:2691
11661
  #, fuzzy
@@ -11663,18 +11663,18 @@ msgid ""
11663
  "If checked, anyone who can upload and/or import photos can overrule the "
11664
  "default watermark settings."
11665
  msgstr ""
11666
- "Wenn diese Option aktiviert, kann wer kann/hochladen oder importieren Sie "
11667
- "Fotos Wasserzeichen Standardeinstellungen außer Kraft setzen."
11668
 
11669
  #: wppa-settings-autosave.php:2698
11670
  #, fuzzy
11671
  msgid "User name"
11672
- msgstr "Benutzername"
11673
 
11674
  #: wppa-settings-autosave.php:2699
11675
  #, fuzzy
11676
  msgid "Uploading users may overrule the default name."
11677
- msgstr "Hochladen von Benutzern kann der Standardname überstimmen."
11678
 
11679
  #: wppa-settings-autosave.php:2700
11680
  #, fuzzy
@@ -11682,18 +11682,19 @@ msgid ""
11682
  "If checked, the default photo name as defined in Table IX-D13 may be "
11683
  "overruled by the user."
11684
  msgstr ""
11685
- "Wenn diese Option aktiviert, kann der Standardname Foto wie in Tabelle IX-"
11686
- "D13 definiert durch den Benutzer überstimmt werden."
11687
 
11688
  #: wppa-settings-autosave.php:2707
11689
  #, fuzzy
11690
  msgid "Apply Newphoto desc user"
11691
- msgstr "Newphoto Desc Benutzer anwenden"
11692
 
11693
  #: wppa-settings-autosave.php:2708
11694
  #, fuzzy
11695
  msgid "Give each new frontend uploaded photo a standard description."
11696
- msgstr "Beschreiben Sie jedes neue Foto hochgeladen Frontend standard."
 
11697
 
11698
  #: wppa-settings-autosave.php:2709
11699
  #, fuzzy
@@ -11701,56 +11702,56 @@ msgid ""
11701
  "If checked, each new photo will get the description (template) as specified "
11702
  "in Table IX-D5."
11703
  msgstr ""
11704
- "Wenn diese Option aktiviert, wird jedes neue Foto die Beschreibung (Vorlage) "
11705
- "wie angegeben in Tabelle IX-D5 erhalten."
11706
 
11707
  #: wppa-settings-autosave.php:2716
11708
  #, fuzzy
11709
  msgid "User desc"
11710
- msgstr "Benutzer desc"
11711
 
11712
  #: wppa-settings-autosave.php:2717
11713
  #, fuzzy
11714
  msgid "Uploading users may overrule the default description."
11715
- msgstr "Hochladen von Benutzern kann die Standardbeschreibung überstimmen."
 
11716
 
11717
  #: wppa-settings-autosave.php:2725
11718
  #, fuzzy
11719
  msgid "User upload custom"
11720
- msgstr "Individuelle Benutzer hochladen"
11721
 
11722
  #: wppa-settings-autosave.php:2726
11723
  #, fuzzy
11724
  msgid "Frontend upload can fill in custom data fields."
11725
- msgstr "Frontend Upload kann benutzerdefinierte Datenfelder ausfüllen."
11726
 
11727
  #: wppa-settings-autosave.php:2734
11728
  #, fuzzy
11729
  msgid "User upload tags"
11730
- msgstr "User-Upload-tags"
11731
 
11732
  #: wppa-settings-autosave.php:2735
11733
  #, fuzzy
11734
  msgid "Frontend upload can add tags."
11735
- msgstr "Frontend Upload kann Tags hinzufügen."
11736
 
11737
  #: wppa-settings-autosave.php:2736
11738
  #, fuzzy
11739
  msgid "You can configure the details of tag addition in Table IX-D18.x"
11740
- msgstr ""
11741
- "Sie können die Details der Tag zusätzlich in Tabelle IX-D18.x konfigurieren."
11742
 
11743
  #: wppa-settings-autosave.php:2744 wppa-settings-autosave.php:2772
11744
  #: wppa-settings-autosave.php:2800
11745
  #, fuzzy
11746
  msgid "Tag selection box"
11747
- msgstr "Tag-Auswahl-box"
11748
 
11749
  #: wppa-settings-autosave.php:2745 wppa-settings-autosave.php:2773
11750
  #: wppa-settings-autosave.php:2801
11751
  #, fuzzy
11752
  msgid "Front-end upload tags selecion box."
11753
- msgstr "Front-End-Upload Tags Selecion Box."
11754
 
11755
  #: wppa-settings-autosave.php:2749 wppa-settings-autosave.php:2777
11756
  #: wppa-settings-autosave.php:2805
@@ -11774,13 +11775,13 @@ msgstr "Feld Beschriftung"
11774
  #: wppa-settings-autosave.php:2811
11775
  #, fuzzy
11776
  msgid "The title of the tag selection box."
11777
- msgstr "Der Titel der Tag-Auswahl-Box."
11778
 
11779
  #: wppa-settings-autosave.php:2763 wppa-settings-autosave.php:2791
11780
  #: wppa-settings-autosave.php:2819
11781
  #, fuzzy
11782
  msgid "Tags box"
11783
- msgstr "Tags Feld"
11784
 
11785
  #: wppa-settings-autosave.php:2764 wppa-settings-autosave.php:2792
11786
  #: wppa-settings-autosave.php:2820
@@ -11795,28 +11796,28 @@ msgid ""
11795
  "Enter the tags you want to appear in the selection box. Empty means: all "
11796
  "existing tags"
11797
  msgstr ""
11798
- "Geben Sie die Tags, die Sie in der Auswahlbox angezeigt werden soll. Leer "
11799
  "bedeutet: alle vorhandenen Tags"
11800
 
11801
  #: wppa-settings-autosave.php:2828
11802
  #, fuzzy
11803
  msgid "New tags"
11804
- msgstr "Neue tags"
11805
 
11806
  #: wppa-settings-autosave.php:2829
11807
  #, fuzzy
11808
  msgid "Input field for any user defined tags."
11809
- msgstr "Eingabefeld für jeden Benutzer definiert Tags."
11810
 
11811
  #: wppa-settings-autosave.php:2837
11812
  #, fuzzy
11813
  msgid "New tags caption"
11814
- msgstr "Neue Tags Beschriftung"
11815
 
11816
  #: wppa-settings-autosave.php:2838
11817
  #, fuzzy
11818
  msgid "The caption above the tags input field."
11819
- msgstr "Die Beschriftung über dem Eingabefeld Tags."
11820
 
11821
  #: wppa-settings-autosave.php:2846
11822
  #, fuzzy
@@ -11827,18 +11828,19 @@ msgstr "Vorschau tags:"
11827
  #, fuzzy
11828
  msgid "Show a preview of all tags that will be added to the photo info."
11829
  msgstr ""
11830
- "Zeigen Sie eine Vorschau aller Tags, die die Foto-Info hinzugefügt werden "
11831
- "wird."
11832
 
11833
  #: wppa-settings-autosave.php:2855
11834
  #, fuzzy
11835
  msgid "Camera connect"
11836
- msgstr "Anschließen der Kamera"
11837
 
11838
  #: wppa-settings-autosave.php:2856
11839
  #, fuzzy
11840
  msgid "Connect frontend upload to camara on mobile devices with camera"
11841
- msgstr "Verbinden Sie Frontend Upload Camara auf mobilen Geräten mit Kamera"
 
11842
 
11843
  #: wppa-settings-autosave.php:2864
11844
  #, fuzzy
@@ -11848,22 +11850,22 @@ msgstr "Blog It!"
11848
  #: wppa-settings-autosave.php:2865
11849
  #, fuzzy
11850
  msgid "Enable blogging photos."
11851
- msgstr "Blogging-Fotos zu ermöglichen."
11852
 
11853
  #: wppa-settings-autosave.php:2866
11854
  #, fuzzy
11855
  msgid "Users need the capability edit_posts to directly blog photos."
11856
- msgstr "Benutzer benötigen die Fähigkeit Edit_posts zu direkt Blog Fotos."
11857
 
11858
  #: wppa-settings-autosave.php:2873
11859
  #, fuzzy
11860
  msgid "Blog It need moderation"
11861
- msgstr "Blog It benötigen Maßen"
11862
 
11863
  #: wppa-settings-autosave.php:2874
11864
  #, fuzzy
11865
  msgid "Posts with blogged photos need moderation."
11866
- msgstr "Beiträge in Blogs Fotos benötigen Maßen."
11867
 
11868
  #: wppa-settings-autosave.php:2882
11869
  #, fuzzy
@@ -11873,33 +11875,32 @@ msgstr "Blog Sportcode"
11873
  #: wppa-settings-autosave.php:2883
11874
  #, fuzzy
11875
  msgid "Shortcode to be used on the blog post"
11876
- msgstr "Kurzwahlnummer auf den Blog-Post verwendet werden"
11877
 
11878
  #: wppa-settings-autosave.php:2884
11879
  #, fuzzy
11880
  msgid "Make sure it contains photo=\"#id\""
11881
- msgstr "Stellen Sie sicher, es enthält Foto = \"#id\""
11882
 
11883
  #: wppa-settings-autosave.php:2892
11884
  #, fuzzy
11885
  msgid "Miscellaneous visibility settings"
11886
- msgstr "Diverses Sichtbarkeits-Einstellungen"
11887
 
11888
  #: wppa-settings-autosave.php:2894
11889
  #, fuzzy
11890
  msgid "Frontend ending label"
11891
- msgstr "Frontend-Endung-label"
11892
 
11893
  #: wppa-settings-autosave.php:2895
11894
  #, fuzzy
11895
  msgid "Frontend upload / create / edit dialog closing label text."
11896
- msgstr ""
11897
- "Frontend upload / erstellen / bearbeiten Dialog schließen Beschriftungstext."
11898
 
11899
  #: wppa-settings-autosave.php:2898
11900
  #, fuzzy
11901
  msgid "Abort"
11902
- msgstr "应用"
11903
 
11904
  #: wppa-settings-autosave.php:2898
11905
  #, fuzzy
@@ -11921,12 +11922,12 @@ msgstr "Beenden"
11921
  #: wppa-settings-autosave.php:2906
11922
  #, fuzzy
11923
  msgid "Widget thumbs fontsize"
11924
- msgstr "Widget Daumen fontsize"
11925
 
11926
  #: wppa-settings-autosave.php:2907
11927
  #, fuzzy
11928
  msgid "Font size for thumbnail subtext in widgets."
11929
- msgstr "Schriftgröße für Miniaturansicht Subtext in Widgets."
11930
 
11931
  #: wppa-settings-autosave.php:2915
11932
  #, fuzzy
@@ -11936,27 +11937,27 @@ msgstr "Pfeilfarbe"
11936
  #: wppa-settings-autosave.php:2916
11937
  #, fuzzy
11938
  msgid "Left/right browsing arrow color."
11939
- msgstr "Links/rechts Pfeilfarbe durchsuchen."
11940
 
11941
  #: wppa-settings-autosave.php:2917
11942
  #, fuzzy
11943
  msgid "Enter the color of the filmstrip navigation arrows."
11944
- msgstr "Geben Sie die Farbe des Filmstreifen-Navigationspfeile."
11945
 
11946
  #: wppa-settings-autosave.php:2924
11947
  #, fuzzy
11948
  msgid "Owner on new line"
11949
- msgstr "Beim neuen Besitzer"
11950
 
11951
  #: wppa-settings-autosave.php:2925
11952
  #, fuzzy
11953
  msgid "Place the (owner) text on a new line."
11954
- msgstr "Platzieren Sie den (Besitzer) Text in einer neuen Zeile."
11955
 
11956
  #: wppa-settings-autosave.php:2933
11957
  #, fuzzy
11958
  msgid "Custom datafields albums"
11959
- msgstr "Benutzerdefinierte Datafields Alben"
11960
 
11961
  #: wppa-settings-autosave.php:2934
11962
  #, fuzzy
@@ -11966,13 +11967,13 @@ msgstr "Definieren Sie bis zu 10 benutzerdefinierte Datenfelder für Alben."
11966
  #: wppa-settings-autosave.php:2944 wppa-settings-autosave.php:2970
11967
  #, fuzzy, php-format
11968
  msgid "Name, vis, edit %s"
11969
- msgstr "Name, Vis, bearbeiten %s"
11970
 
11971
  #: wppa-settings-autosave.php:2945 wppa-settings-autosave.php:2971
11972
  #, fuzzy, php-format
11973
  msgid "The caption for field %s, visibility and editability at frontend."
11974
  msgstr ""
11975
- "Die Beschriftung für Feld %s, Transparenz und Editierbarkeit am Frontend."
11976
 
11977
  #: wppa-settings-autosave.php:2946 wppa-settings-autosave.php:2972
11978
  #, fuzzy, php-format
@@ -11980,8 +11981,8 @@ msgid ""
11980
  "If you check the first box, the value of this field is displayable in photo "
11981
  "descriptions at the frontend with keyword w#c%s"
11982
  msgstr ""
11983
- "Wenn Sie das erste Kästchen aktivieren, ist der Wert dieses Feldes "
11984
- "anzeigbare in Fotobeschreibungen am Frontend mit Stichwort w #c %s"
11985
 
11986
  #: wppa-settings-autosave.php:2947 wppa-settings-autosave.php:2973
11987
  #, fuzzy
@@ -11989,13 +11990,13 @@ msgid ""
11989
  "If you check the second box, the value of this field is editable at the "
11990
  "frontend new style dialog."
11991
  msgstr ""
11992
- "Wenn Sie das zweite Kontrollkästchen aktivieren, ist der Wert dieses Feldes "
11993
- "im neuen Stil Dialog Frontend editierbar."
11994
 
11995
  #: wppa-settings-autosave.php:2959
11996
  #, fuzzy
11997
  msgid "Custom datafields photos"
11998
- msgstr "Benutzerdefinierte Datafields Fotos"
11999
 
12000
  #: wppa-settings-autosave.php:2960
12001
  #, fuzzy
@@ -12005,86 +12006,84 @@ msgstr "Definieren Sie bis zu 10 benutzerdefinierte Datenfelder für Fotos."
12005
  #: wppa-settings-autosave.php:2985
12006
  #, fuzzy
12007
  msgid "Navigation symbols for slideshows and lighbox"
12008
- msgstr "Navigationssymbole für Diashows und lighbox"
12009
 
12010
  #: wppa-settings-autosave.php:2987
12011
  #, fuzzy
12012
  msgid "Start symbol url"
12013
- msgstr "Start-Symbol-url"
12014
 
12015
  #: wppa-settings-autosave.php:2988
12016
  #, fuzzy
12017
  msgid "Supply the url of an image for the start symbol"
12018
- msgstr "Geben Sie die Url eines Bildes für das Startsymbol"
12019
 
12020
  #: wppa-settings-autosave.php:2996
12021
  #, fuzzy
12022
  msgid "Pause symbol url"
12023
- msgstr "Pause-Symbol-url"
12024
 
12025
  #: wppa-settings-autosave.php:2997
12026
  #, fuzzy
12027
  msgid "Supply the url of an image for the pause symbol"
12028
- msgstr "Geben Sie die Url eines Bildes für das Pausensymbol"
12029
 
12030
  #: wppa-settings-autosave.php:3005
12031
  #, fuzzy
12032
  msgid "Stop symbol url"
12033
- msgstr "Symbol-Url zu stoppen"
12034
 
12035
  #: wppa-settings-autosave.php:3006
12036
  #, fuzzy
12037
  msgid "Supply the url of an image for the stop symbol"
12038
- msgstr "Geben Sie die Url eines Bildes für das Stopp-symbol"
12039
 
12040
  #: wppa-settings-autosave.php:3014
12041
  #, fuzzy
12042
  msgid "Left (prev) symbol url"
12043
- msgstr "Links (Prev) Symbol url"
12044
 
12045
  #: wppa-settings-autosave.php:3015
12046
  #, fuzzy
12047
  msgid "Supply the url of an image for the left symbol, if not default"
12048
  msgstr ""
12049
- "Liefern Sie die Url eines Bildes für das linke Symbol, wenn nicht "
12050
- "standardmäßige"
12051
 
12052
  #: wppa-settings-autosave.php:3023
12053
  #, fuzzy
12054
  msgid "Right (next) symbol url"
12055
- msgstr "Rechts (vorwärts) Symbol url"
12056
 
12057
  #: wppa-settings-autosave.php:3024
12058
  #, fuzzy
12059
  msgid "Supply the url of an image for the right symbol, if not default"
12060
  msgstr ""
12061
- "Liefern Sie die Url eines Bildes für das Rechte Symbol, wenn nicht "
12062
- "standardmäßige"
12063
 
12064
  #: wppa-settings-autosave.php:3033
12065
  #, fuzzy
12066
  msgid "The size of the start/pause symbols."
12067
- msgstr "Die Größe der Symbole Start/Pause."
12068
 
12069
  #: wppa-settings-autosave.php:3042 wppa-settings-autosave.php:3060
12070
  #, fuzzy
12071
  msgid "The border radius if the symbol is round"
12072
- msgstr "Der Grenze Radius, wenn das Symbol Runde"
12073
 
12074
  #: wppa-settings-autosave.php:3051 wppa-settings-autosave.php:3069
12075
  #, fuzzy
12076
  msgid "The size of the stop symbols."
12077
- msgstr "Die Größe der Symbole Halt."
12078
 
12079
  #: wppa-settings-autosave.php:3068
12080
  #, fuzzy
12081
  msgid "Left/right symbol size"
12082
- msgstr "Links/rechts Symbolgröße"
12083
 
12084
  #: wppa-settings-autosave.php:3077
12085
  #, fuzzy
12086
  msgid "Left/right symbol border radius"
12087
- msgstr "Links/rechts-Symbol Rahmenradius"
12088
 
12089
  #: wppa-settings-autosave.php:3078
12090
  #, fuzzy
@@ -12094,7 +12093,7 @@ msgstr "Rahmen Radius"
12094
  #: wppa-settings-autosave.php:3105
12095
  #, fuzzy
12096
  msgid "Table III:"
12097
- msgstr "Tabelle III:"
12098
 
12099
  #: wppa-settings-autosave.php:3105
12100
  #, fuzzy
@@ -12104,18 +12103,18 @@ msgstr "Hintergründe"
12104
  #: wppa-settings-autosave.php:3106
12105
  #, fuzzy
12106
  msgid "This table describes the backgrounds of wppa+ elements."
12107
- msgstr "Diese Tabelle beschreibt die Hintergründe der Wppa + Elemente."
12108
 
12109
  #: wppa-settings-autosave.php:3116 wppa-settings-autosave.php:3453
12110
  #, fuzzy
12111
  msgid "Background color"
12112
- msgstr "Hintergrundfarbe"
12113
 
12114
  #: wppa-settings-autosave.php:3117 wppa-settings-autosave.php:3119
12115
  #: wppa-settings-autosave.php:3454 wppa-settings-autosave.php:3456
12116
  #, fuzzy
12117
  msgid "Sample"
12118
- msgstr "Beispielinhalt eines Newsletters"
12119
 
12120
  #: wppa-settings-autosave.php:3118 wppa-settings-autosave.php:3455
12121
  #, fuzzy
@@ -12140,7 +12139,9 @@ msgstr "Navigationsleisten."
12140
  #: wppa-settings-autosave.php:3131
12141
  #, fuzzy
12142
  msgid "Enter valid CSS colors for navigation backgrounds and borders."
12143
- msgstr "Geben Sie gültige CSS Farben für Navigation Hintergründe und Grenzen."
 
 
12144
 
12145
  #: wppa-settings-autosave.php:3142
12146
  #, fuzzy
@@ -12150,28 +12151,28 @@ msgstr "SlideImg"
12150
  #: wppa-settings-autosave.php:3143
12151
  #, fuzzy
12152
  msgid "Fullsize Slideshow Photos."
12153
- msgstr "Fullsize-Slideshow Fotos."
12154
 
12155
  #: wppa-settings-autosave.php:3144
12156
  #, fuzzy
12157
  msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
12158
  msgstr ""
12159
- "Geben Sie gültige CSS Farben für Fullsize Fotohintergründe und Grenzen."
12160
 
12161
  #: wppa-settings-autosave.php:3145
12162
  #, fuzzy
12163
  msgid "The colors may be equal or \"transparent\""
12164
- msgstr "Die Farben können gleich oder \"transparent\" sein."
12165
 
12166
  #: wppa-settings-autosave.php:3146
12167
  #, fuzzy
12168
  msgid ""
12169
  "For more information about slideshow image borders see the help on Table I-B4"
12170
  msgstr ""
12171
- "Finden Sie für weitere Informationen zu Diashow Bildränder in der Hilfe auf "
12172
- "Tisch-B4"
12173
 
12174
- #: wppa-settings-autosave.php:3157 wppa-settings-autosave.php:4921
12175
  #, fuzzy
12176
  msgid "Numbar"
12177
  msgstr "Numbar"
@@ -12179,12 +12180,13 @@ msgstr "Numbar"
12179
  #: wppa-settings-autosave.php:3158
12180
  #, fuzzy
12181
  msgid "Number bar box background."
12182
- msgstr "Zahl bar Box Hintergrund."
12183
 
12184
  #: wppa-settings-autosave.php:3159
12185
  #, fuzzy
12186
  msgid "Enter valid CSS colors for numbar box backgrounds and borders."
12187
- msgstr "Geben Sie gültige CSS Farben für Numbar Feld Hintergründe und Grenzen."
 
12188
 
12189
  #: wppa-settings-autosave.php:3170
12190
  #, fuzzy
@@ -12194,18 +12196,18 @@ msgstr "Numbar aktiv"
12194
  #: wppa-settings-autosave.php:3171
12195
  #, fuzzy
12196
  msgid "Number bar active box background."
12197
- msgstr "Zahl bar aktive Box Hintergrund."
12198
 
12199
  #: wppa-settings-autosave.php:3172
12200
  #, fuzzy
12201
  msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
12202
  msgstr ""
12203
- "Geben Sie gültige CSS Farben für Numbar aktive Box Hintergründe und Grenzen."
12204
 
12205
  #: wppa-settings-autosave.php:3183
12206
  #, fuzzy
12207
  msgid "Name/desc"
12208
- msgstr "Name/desc"
12209
 
12210
  #: wppa-settings-autosave.php:3184
12211
  #, fuzzy
@@ -12217,25 +12219,25 @@ msgstr "Name und Beschreibung"
12217
  msgid ""
12218
  "Enter valid CSS colors for name and description box backgrounds and borders."
12219
  msgstr ""
12220
- "Geben Sie gültige CSS Farben für Name und Beschreibung Feld Hintergründe und "
12221
- "Grenzen."
12222
 
12223
  #: wppa-settings-autosave.php:3197
12224
  #, fuzzy
12225
  msgid "Comment input and display areas."
12226
- msgstr "Beiträge zu kommentieren und Anzeigeflächen."
12227
 
12228
  #: wppa-settings-autosave.php:3198
12229
  #, fuzzy
12230
  msgid "Enter valid CSS colors for comment box backgrounds and borders."
12231
  msgstr ""
12232
- "Geben Sie gültige CSS Farben für Kommentar-Box-Hintergründe und Grenzen."
12233
 
12234
- #: wppa-settings-autosave.php:3209 wppa-settings-autosave.php:8537
12235
- #: wppa-settings-autosave.php:8582
12236
  #, fuzzy
12237
  msgid "Custom"
12238
- msgstr "Spezifisch"
12239
 
12240
  #: wppa-settings-autosave.php:3210
12241
  #, fuzzy
@@ -12246,7 +12248,8 @@ msgstr "Benutzerdefinierten Hintergrund"
12246
  #, fuzzy
12247
  msgid "Enter valid CSS colors for custom box backgrounds and borders."
12248
  msgstr ""
12249
- "Geben Sie gültige CSS Farben für individuelle Box Hintergründe und Grenzen."
 
12250
 
12251
  #: wppa-settings-autosave.php:3222
12252
  #, fuzzy
@@ -12256,12 +12259,13 @@ msgstr "Iptc"
12256
  #: wppa-settings-autosave.php:3223
12257
  #, fuzzy
12258
  msgid "IPTC display box background."
12259
- msgstr "IPTC-Feld Anzeigehintergrund."
12260
 
12261
  #: wppa-settings-autosave.php:3224
12262
  #, fuzzy
12263
  msgid "Enter valid CSS colors for iptc box backgrounds and borders."
12264
- msgstr "Geben Sie gültige CSS Farben für Iptc-Feld-Hintergründe und Grenzen."
 
12265
 
12266
  #: wppa-settings-autosave.php:3235
12267
  #, fuzzy
@@ -12271,12 +12275,13 @@ msgstr "Exif"
12271
  #: wppa-settings-autosave.php:3236
12272
  #, fuzzy
12273
  msgid "EXIF display box background."
12274
- msgstr "EXIF Anzeige Box Hintergrund."
12275
 
12276
  #: wppa-settings-autosave.php:3237
12277
  #, fuzzy
12278
  msgid "Enter valid CSS colors for exif box backgrounds and borders."
12279
- msgstr "Geben Sie gültige CSS Farben für Exif-Feld-Hintergründe und Grenzen."
 
12280
 
12281
  #: wppa-settings-autosave.php:3248
12282
  #, fuzzy
@@ -12322,12 +12327,12 @@ msgstr ""
12322
  #: wppa-settings-autosave.php:3276
12323
  #, fuzzy
12324
  msgid "Odd"
12325
- msgstr "Seltsam."
12326
 
12327
  #: wppa-settings-autosave.php:3277
12328
  #, fuzzy
12329
  msgid "Odd background."
12330
- msgstr "Ungerade Hintergrund."
12331
 
12332
  #: wppa-settings-autosave.php:3278
12333
  #, fuzzy
@@ -12391,7 +12396,7 @@ msgstr ""
12391
  #: wppa-settings-autosave.php:3328
12392
  #, fuzzy
12393
  msgid "Multitag"
12394
- msgstr "Multitag"
12395
 
12396
  #: wppa-settings-autosave.php:3329
12397
  #, fuzzy
@@ -12407,7 +12412,7 @@ msgstr ""
12407
  #: wppa-settings-autosave.php:3341
12408
  #, fuzzy
12409
  msgid "Tagcloud"
12410
- msgstr "Tagcloud"
12411
 
12412
  #: wppa-settings-autosave.php:3342
12413
  #, fuzzy
@@ -12418,7 +12423,7 @@ msgstr "Schlagwortwolke Hintergrund"
12418
  #, fuzzy
12419
  msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
12420
  msgstr ""
12421
- "Geben Sie gültige CSS Farben für Tagcloud Box Hintergründe und Grenzen."
12422
 
12423
  #: wppa-settings-autosave.php:3354
12424
  #, fuzzy
@@ -12434,7 +12439,7 @@ msgstr "Superview Feld Hintergrund."
12434
  #, fuzzy
12435
  msgid "Enter valid CSS colors for superview box backgrounds and borders."
12436
  msgstr ""
12437
- "Geben Sie gültige CSS Farben für Superview Box Hintergründe und Grenzen."
12438
 
12439
  #: wppa-settings-autosave.php:3368
12440
  #, fuzzy
@@ -12444,7 +12449,8 @@ msgstr "Suchbox-Hintergrund"
12444
  #: wppa-settings-autosave.php:3369
12445
  #, fuzzy
12446
  msgid "Enter valid CSS colors for search box backgrounds and borders."
12447
- msgstr "Geben Sie gültige CSS Farben für Suche Box Hintergründe und Grenzen."
 
12448
 
12449
  #: wppa-settings-autosave.php:3380
12450
  #, fuzzy
@@ -12459,7 +12465,8 @@ msgstr "BestOf Feld Hintergrund."
12459
  #: wppa-settings-autosave.php:3382
12460
  #, fuzzy
12461
  msgid "Enter valid CSS colors for bestof box backgrounds and borders."
12462
- msgstr "Geben Sie gültige CSS Farben für Bestof Box Hintergründe und Grenzen."
 
12463
 
12464
  #: wppa-settings-autosave.php:3393
12465
  #, fuzzy
@@ -12486,7 +12493,7 @@ msgstr "Stereo"
12486
  #: wppa-settings-autosave.php:3407
12487
  #, fuzzy
12488
  msgid "Stereo mode selection box background."
12489
- msgstr "Stereo-Modus Auswahl Feld Hintergrund."
12490
 
12491
  #: wppa-settings-autosave.php:3408
12492
  #, fuzzy
@@ -12499,7 +12506,7 @@ msgstr ""
12499
  #: wppa-settings-autosave.php:3419
12500
  #, fuzzy
12501
  msgid "Admins choice"
12502
- msgstr "Admins-Wahl"
12503
 
12504
  #: wppa-settings-autosave.php:3420
12505
  #, fuzzy
@@ -12510,7 +12517,8 @@ msgstr "Admins Wahl Feld Hintergrund."
12510
  #, fuzzy
12511
  msgid "Enter valid CSS colors for admins choice box backgrounds and borders."
12512
  msgstr ""
12513
- "Geben Sie gültige CSS Farben für Admins Wahl Box Hintergründe und Grenzen."
 
12514
 
12515
  #: wppa-settings-autosave.php:3432
12516
  #, fuzzy
@@ -12520,7 +12528,7 @@ msgstr "Modal machen Feld"
12520
  #: wppa-settings-autosave.php:3433
12521
  #, fuzzy
12522
  msgid "The background for the Ajax modal rendering box."
12523
- msgstr "Der Hintergrund für die Ajax-modal Rendering-Box."
12524
 
12525
  #: wppa-settings-autosave.php:3434
12526
  #, fuzzy
@@ -12530,23 +12538,23 @@ msgstr "Empfohlene Farbe: Ihr Thema Hintergrundfarbe."
12530
  #: wppa-settings-autosave.php:3466
12531
  #, fuzzy
12532
  msgid "Table IV:"
12533
- msgstr "Tabelle IV:"
12534
 
12535
  #: wppa-settings-autosave.php:3466
12536
  #, fuzzy
12537
  msgid "Behaviour:"
12538
- msgstr "Verhalten"
12539
 
12540
  #: wppa-settings-autosave.php:3467
12541
  #, fuzzy
12542
  msgid "This table describes the dynamic behaviour of certain wppa+ elements."
12543
  msgstr ""
12544
- "Diese Tabelle beschreibt das dynamische Verhalten bestimmter Wppa + Elemente."
12545
 
12546
  #: wppa-settings-autosave.php:3485
12547
  #, fuzzy
12548
  msgid "System related settings"
12549
- msgstr "System im Zusammenhang mit Einstellungen"
12550
 
12551
  #: wppa-settings-autosave.php:3487
12552
  #, fuzzy
@@ -12601,7 +12609,7 @@ msgstr "Modal-Boxen"
12601
  #: wppa-settings-autosave.php:3508
12602
  #, fuzzy
12603
  msgid "Place Ajax rendered content in modal boxes"
12604
- msgstr "Im modalen Boxen gerendert Ort Ajax content"
12605
 
12606
  #: wppa-settings-autosave.php:3516
12607
  #, fuzzy
@@ -12616,7 +12624,7 @@ msgstr "Anzeigen von Foto Namen in Urls."
12616
  #: wppa-settings-autosave.php:3518
12617
  #, fuzzy
12618
  msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
12619
- msgstr "URLs zu Wppa + Displays wird Photonames anstelle von Zahlen enthalten."
12620
 
12621
  #: wppa-settings-autosave.php:3519
12622
  #, fuzzy
@@ -12630,17 +12638,17 @@ msgstr ""
12630
  #: wppa-settings-autosave.php:3526
12631
  #, fuzzy
12632
  msgid "Album names in urls"
12633
- msgstr "Albennamen in urls"
12634
 
12635
  #: wppa-settings-autosave.php:3527
12636
  #, fuzzy
12637
  msgid "Display album names in urls."
12638
- msgstr "Albennamen in Urls anzeigen."
12639
 
12640
  #: wppa-settings-autosave.php:3528
12641
  #, fuzzy
12642
  msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
12643
- msgstr "URLs zu Wppa + Displays wird Albumnames anstelle von Zahlen enthalten."
12644
 
12645
  #: wppa-settings-autosave.php:3529
12646
  #, fuzzy
@@ -12657,7 +12665,7 @@ msgstr "Verwenden Sie kurze Abfrage args"
12657
  #: wppa-settings-autosave.php:3537
12658
  #, fuzzy
12659
  msgid "Use &album=... &photo=..."
12660
- msgstr "Verwendung & Album... = & Foto =..."
12661
 
12662
  #: wppa-settings-autosave.php:3538
12663
  #, fuzzy
@@ -12665,8 +12673,8 @@ msgid ""
12665
  "Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
12666
  "album=... &wppa-photo=..."
12667
  msgstr ""
12668
- "URLs zu Wppa + Displays enthält & Album... = & Foto =... in anstelle von & "
12669
- "Wppa-Album =... & Wppa-Foto =..."
12670
 
12671
  #: wppa-settings-autosave.php:3539
12672
  #, fuzzy
@@ -12680,7 +12688,7 @@ msgstr ""
12680
  #: wppa-settings-autosave.php:3546
12681
  #, fuzzy
12682
  msgid "Enable pretty links"
12683
- msgstr "Aktivieren Sie ziemlich links"
12684
 
12685
  #: wppa-settings-autosave.php:3547
12686
  #, fuzzy
@@ -12710,8 +12718,8 @@ msgid ""
12710
  "It is recommended to check this box. It shortens links dramatically and "
12711
  "simplifies qr codes."
12712
  msgstr ""
12713
- "Es empfiehlt sich, dieses Kontrollkästchen aktivieren. Es Verbindungen "
12714
- "drastisch verkürzt und vereinfacht die qr-Codes."
12715
 
12716
  #: wppa-settings-autosave.php:3551
12717
  #, fuzzy
@@ -12782,8 +12790,8 @@ msgid ""
12782
  "If unchecked, refreshing the page will re-display the content of the "
12783
  "original page."
12784
  msgstr ""
12785
- "Wenn diese Option deaktiviert, wird die Seite aktualisieren den Inhalt der "
12786
- "ursprünglichen Seite erneut angezeigt."
12787
 
12788
  #: wppa-settings-autosave.php:3582
12789
  #, fuzzy
@@ -12791,8 +12799,8 @@ msgid ""
12791
  "This will only work on browsers that support history.pushState() and "
12792
  "therefor NOT in IE"
12793
  msgstr ""
12794
- "Dies funktioniert nur auf Browsern, die history.pushState() unterstützen und "
12795
- "deswegen nicht im IE"
12796
 
12797
  #: wppa-settings-autosave.php:3583
12798
  #, fuzzy
@@ -12847,7 +12855,7 @@ msgstr "Bitte laden Sie diese Seite nach dem Ändern!"
12847
  #: wppa-settings-autosave.php:3619
12848
  #, fuzzy
12849
  msgid "Auto page display"
12850
- msgstr "Auto-Seitenanzeige"
12851
 
12852
  #: wppa-settings-autosave.php:3620
12853
  #, fuzzy
@@ -12862,7 +12870,7 @@ msgstr "Einzel Foto"
12862
  #: wppa-settings-autosave.php:3623
12863
  #, fuzzy
12864
  msgid "Media type photo"
12865
- msgstr "Media Art Foto"
12866
 
12867
  #: wppa-settings-autosave.php:3623
12868
  #, fuzzy
@@ -12911,14 +12919,14 @@ msgstr "Inline Styles"
12911
  #: wppa-settings-autosave.php:3651
12912
  #, fuzzy
12913
  msgid "Set style specifications inline."
12914
- msgstr "Stil-Spezifikationen Inline gesetzt."
12915
 
12916
  #: wppa-settings-autosave.php:3652
12917
  #, fuzzy
12918
  msgid "If checked: May fix layout problems, but slows down page appearing."
12919
  msgstr ""
12920
- "Wenn diese Option aktiviert: Layout-Probleme beheben können, aber "
12921
- "verlangsamt Seite erscheinen."
12922
 
12923
  #: wppa-settings-autosave.php:3659
12924
  #, fuzzy
@@ -12928,7 +12936,7 @@ msgstr "Eigener Stil"
12928
  #: wppa-settings-autosave.php:3660
12929
  #, fuzzy
12930
  msgid "Enter custom style specs here."
12931
- msgstr "Geben Sie die benutzerdefinierte Formatvorlage Angaben hier."
12932
 
12933
  #: wppa-settings-autosave.php:3668
12934
  #, fuzzy
@@ -12938,12 +12946,12 @@ msgstr "Verwenden Sie individuelle Stil-Datei"
12938
  #: wppa-settings-autosave.php:3669 wppa-settings-autosave.php:3678
12939
  #, fuzzy
12940
  msgid "This feature is highly discouraged."
12941
- msgstr "Diese Funktion ist empfehlenswert."
12942
 
12943
  #: wppa-settings-autosave.php:3677
12944
  #, fuzzy
12945
  msgid "Use customized theme file"
12946
- msgstr "Angepasstes Design-Datei verwenden"
12947
 
12948
  #: wppa-settings-autosave.php:3686
12949
  #, fuzzy
@@ -12966,7 +12974,7 @@ msgstr "schaffen 'all access' .htaccess-Dateien"
12966
  #: wppa-settings-autosave.php:3691
12967
  #, fuzzy
12968
  msgid "remove .htaccess files"
12969
- msgstr ".htaccess-Dateien entfernen"
12970
 
12971
  #: wppa-settings-autosave.php:3692
12972
  #, fuzzy
@@ -12981,7 +12989,7 @@ msgstr "nicht ändern bestehende .htaccess-Datei (en)"
12981
  #: wppa-settings-autosave.php:3705
12982
  #, fuzzy
12983
  msgid "Lazy or HTML comp"
12984
- msgstr "Lazy oder HTML comp"
12985
 
12986
  #: wppa-settings-autosave.php:3706
12987
  #, fuzzy
@@ -13017,7 +13025,7 @@ msgstr "Login Links"
13017
  #: wppa-settings-autosave.php:3724
13018
  #, fuzzy
13019
  msgid "You must login to... links to login page."
13020
- msgstr "Sie müssen anmelden... Links zur Login-Seite."
13021
 
13022
  #: wppa-settings-autosave.php:3732
13023
  #, fuzzy
@@ -13062,7 +13070,7 @@ msgstr "Verwenden Sie nur relative URLs."
13062
  #: wppa-settings-autosave.php:3769
13063
  #, fuzzy
13064
  msgid "Capitalize tags and cats"
13065
- msgstr "Nutzen Sie Tags und Katzen"
13066
 
13067
  #: wppa-settings-autosave.php:3770
13068
  #, fuzzy
@@ -13078,7 +13086,7 @@ msgstr "Aktivieren Admins Wahl"
13078
  #: wppa-settings-autosave.php:3779
13079
  #, fuzzy
13080
  msgid "Enable the creation of zipfiles with selected photos."
13081
- msgstr "Ermöglichen Sie die Erstellung von Zipfiles mit ausgewählten Fotos."
13082
 
13083
  #: wppa-settings-autosave.php:3780
13084
  #, fuzzy
@@ -13146,13 +13154,13 @@ msgstr ""
13146
  "Wenn Sie --- keine Auswahl ---, werden die Fotos nicht horizontal entweder "
13147
  "zentriert werden."
13148
 
13149
- #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:4078
13150
  #: wppa-slideshow-widget.php:214
13151
  #, fuzzy
13152
  msgid "top"
13153
- msgstr "Oben"
13154
 
13155
- #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:4078
13156
  #: wppa-slideshow-widget.php:216
13157
  #, fuzzy
13158
  msgid "bottom"
@@ -13224,7 +13232,7 @@ msgstr ""
13224
  #: wppa-settings-autosave.php:3839
13225
  #, fuzzy
13226
  msgid "running"
13227
- msgstr "运行中"
13228
 
13229
  #: wppa-settings-autosave.php:3840
13230
  #, fuzzy
@@ -13244,9 +13252,9 @@ msgstr "Starten Sie slideonly"
13244
  #: wppa-settings-autosave.php:3853
13245
  #, fuzzy
13246
  msgid "Start slideonly slideshow running."
13247
- msgstr "Starten Sie Slideonly Diashow laufen."
13248
 
13249
- #: wppa-settings-autosave.php:3861 wppa-settings-autosave.php:4735
13250
  #, fuzzy
13251
  msgid "Video autostart"
13252
  msgstr "Video Autostart-"
@@ -13254,9 +13262,9 @@ msgstr "Video Autostart-"
13254
  #: wppa-settings-autosave.php:3862
13255
  #, fuzzy
13256
  msgid "Autoplay videos in slideshows."
13257
- msgstr "Autoplay Videos in Diashows."
13258
 
13259
- #: wppa-settings-autosave.php:3871 wppa-settings-autosave.php:4744
13260
  #, fuzzy
13261
  msgid "Audio autostart"
13262
  msgstr "Audio Autostart-"
@@ -13288,7 +13296,7 @@ msgstr ""
13288
  #: wppa-settings-autosave.php:3884
13289
  #, fuzzy
13290
  msgid "Fade out and in simultaneous"
13291
- msgstr "Fade-out und gleichzeitig"
13292
 
13293
  #: wppa-settings-autosave.php:3885
13294
  #, fuzzy
@@ -13313,7 +13321,7 @@ msgstr "Stapel aus"
13313
  #: wppa-settings-autosave.php:3889
13314
  #, fuzzy
13315
  msgid "Turn over"
13316
- msgstr "Flip"
13317
 
13318
  #: wppa-settings-autosave.php:3903
13319
  #, fuzzy
@@ -13353,10 +13361,10 @@ msgstr "Geben Sie die Animationsgeschwindigkeit in Diashows verwendet werden."
13353
  msgid "This is the time it takes a photo to fade in or out."
13354
  msgstr "Dies ist die Zeit, die ein Foto nimmt in oder out zu verblassen."
13355
 
13356
- #: wppa-settings-autosave.php:3919 wppa-settings-autosave.php:4273
13357
- #: wppa-settings-autosave.php:4681 wppa-settings-autosave.php:6521
13358
- #: wppa-settings-autosave.php:7634 wppa-settings-autosave.php:7645
13359
- #: wppa-settings-autosave.php:7807
13360
  #, fuzzy
13361
  msgid "--- off ---"
13362
  msgstr "Aus, kein Blitz, nicht erkannt und Rück"
@@ -13421,8 +13429,8 @@ msgstr "Vollständige ab align"
13421
  msgid "The alignment of the descriptions under fullsize images and slideshows."
13422
  msgstr "Die Ausrichtung der Beschreibungen unter Gross Bildern und Diashows."
13423
 
13424
- #: wppa-settings-autosave.php:3948 wppa-settings-autosave.php:4066
13425
- #: wppa-settings-autosave.php:4169
13426
  #, fuzzy
13427
  msgid "Left"
13428
  msgstr "Links"
@@ -13430,10 +13438,10 @@ msgstr "Links"
13430
  #: wppa-settings-autosave.php:3948
13431
  #, fuzzy
13432
  msgid "Center"
13433
- msgstr "Mitte"
13434
 
13435
- #: wppa-settings-autosave.php:3948 wppa-settings-autosave.php:4066
13436
- #: wppa-settings-autosave.php:4169
13437
  #, fuzzy
13438
  msgid "Right"
13439
  msgstr "Rechts"
@@ -13441,7 +13449,7 @@ msgstr "Rechts"
13441
  #: wppa-settings-autosave.php:3955
13442
  #, fuzzy
13443
  msgid "Remove redundant space"
13444
- msgstr "Entfernen Sie überflüssige Leerzeichen"
13445
 
13446
  #: wppa-settings-autosave.php:3956
13447
  #, fuzzy
@@ -13514,7 +13522,7 @@ msgstr "Slide Seite Ajax"
13514
  #: wppa-settings-autosave.php:4001
13515
  #, fuzzy
13516
  msgid "Pagelinks slideshow use Ajax"
13517
- msgstr "Pagelinks Diashow verwenden Ajax"
13518
 
13519
  #: wppa-settings-autosave.php:4002
13520
  #, fuzzy
@@ -13523,15 +13531,40 @@ msgstr "Auf einigen Systemen müssen Sie Ajax hier zu deaktivieren."
13523
 
13524
  #: wppa-settings-autosave.php:4009
13525
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13526
  msgid "Thumbnail related settings"
13527
- msgstr "Miniaturansicht Verwandte Einstellungen"
13528
 
13529
- #: wppa-settings-autosave.php:4012
13530
  #, fuzzy
13531
  msgid "Photo ordering sequence method."
13532
  msgstr "Foto-Bestellsequenzmethode."
13533
 
13534
- #: wppa-settings-autosave.php:4013
13535
  #, fuzzy
13536
  msgid ""
13537
  "Specify the way the photos should be ordered. This is the default setting. "
@@ -13541,17 +13574,17 @@ msgstr ""
13541
  "Standardeinstellung. Sie können die Standardsortierreihenfolge auf einer pro "
13542
  "Album Basis außer Kraft setzen."
13543
 
13544
- #: wppa-settings-autosave.php:4050
13545
  #, fuzzy
13546
  msgid "Thumbnail type"
13547
  msgstr "Stil des Vorschaubilds"
13548
 
13549
- #: wppa-settings-autosave.php:4051
13550
  #, fuzzy
13551
  msgid "The way the thumbnail images are displayed."
13552
  msgstr "Die Art und Weise die Miniaturbilder angezeigt werden."
13553
 
13554
- #: wppa-settings-autosave.php:4052
13555
  #, fuzzy
13556
  msgid ""
13557
  "You may select an altenative display method for thumbnails. Note that some "
@@ -13561,52 +13594,52 @@ msgstr ""
13561
  "auszuwählen. Beachten Sie, dass einige der Thumbnail-Einstellungen gelten "
13562
  "nicht für alle verfügbaren Anzeigemethoden."
13563
 
13564
- #: wppa-settings-autosave.php:4054
13565
  #, fuzzy
13566
  msgid "like album covers"
13567
  msgstr "Albumcovers"
13568
 
13569
- #: wppa-settings-autosave.php:4054
13570
  #, fuzzy
13571
  msgid "like album covers mcr"
13572
  msgstr "wie Album-Cover mcr"
13573
 
13574
- #: wppa-settings-autosave.php:4054
13575
  #, fuzzy
13576
  msgid "masonry style columns"
13577
  msgstr "Mauerwerk Artspalten"
13578
 
13579
- #: wppa-settings-autosave.php:4054
13580
  #, fuzzy
13581
  msgid "masonry style rows"
13582
  msgstr "Mauerwerk Stil Reihen"
13583
 
13584
- #: wppa-settings-autosave.php:4062 wppa-settings-autosave.php:4163
13585
  #, fuzzy
13586
  msgid "Placement"
13587
  msgstr "Platzierung"
13588
 
13589
- #: wppa-settings-autosave.php:4063
13590
  #, fuzzy
13591
  msgid "Thumbnail image left or right."
13592
  msgstr "Miniaturansicht nach links oder rechts."
13593
 
13594
- #: wppa-settings-autosave.php:4064
13595
  #, fuzzy
13596
  msgid "Indicate the placement position of the thumbnailphoto you wish."
13597
  msgstr "Geben Sie die Platzierungsposition des thumbnail Sie es wünschen."
13598
 
13599
- #: wppa-settings-autosave.php:4073
13600
  #, fuzzy
13601
  msgid "Vertical alignment"
13602
  msgstr "Vertikale Ausrichtung"
13603
 
13604
- #: wppa-settings-autosave.php:4074
13605
  #, fuzzy
13606
  msgid "Vertical alignment of thumbnails."
13607
- msgstr "Vertikale Ausrichtung von Thumbnails."
13608
 
13609
- #: wppa-settings-autosave.php:4075
13610
  #, fuzzy
13611
  msgid ""
13612
  "Specify the vertical alignment of thumbnail images. Use this setting when "
@@ -13615,7 +13648,7 @@ msgstr ""
13615
  "Geben Sie die vertikale Ausrichtung von Miniaturbildern. Verwenden Sie diese "
13616
  "Einstellung, wenn Alben jeweils Hoch- und Quer Fotos enthalten."
13617
 
13618
- #: wppa-settings-autosave.php:4076
13619
  #, fuzzy
13620
  msgid ""
13621
  "It is NOT recommended to use the value --- default ---; it will affect the "
@@ -13625,137 +13658,137 @@ msgstr ""
13625
  "auch die horizontale Ausrichtung beeinflussen und soll mit "
13626
  "benutzerdefinierten CSS verwendet werden."
13627
 
13628
- #: wppa-settings-autosave.php:4085
13629
  #, fuzzy
13630
  msgid "Thumb mouseover"
13631
  msgstr "thumb Mouseover"
13632
 
13633
- #: wppa-settings-autosave.php:4086
13634
  #, fuzzy
13635
  msgid "Apply thumbnail mouseover effect."
13636
  msgstr "Bewerben Miniaturmouseover-Effekt."
13637
 
13638
- #: wppa-settings-autosave.php:4087
13639
  #, fuzzy
13640
  msgid "Check this box to use mouseover effect on thumbnail images."
13641
  msgstr ""
13642
  "Markieren Sie dieses Feld Mouseover-Effekt auf die Miniaturbilder zu "
13643
  "verwenden."
13644
 
13645
- #: wppa-settings-autosave.php:4095
13646
  #, fuzzy
13647
  msgid "Thumb opacity"
13648
  msgstr "thumb Opazität"
13649
 
13650
- #: wppa-settings-autosave.php:4096 wppa-settings-autosave.php:4188
13651
  #, fuzzy
13652
  msgid "Initial opacity value."
13653
  msgstr "Anfangstrübungswert."
13654
 
13655
- #: wppa-settings-autosave.php:4097 wppa-settings-autosave.php:4189
13656
- #: wppa-settings-autosave.php:4319
13657
  #, fuzzy
13658
  msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
13659
  msgstr ""
13660
  "Geben Sie Prozentsatz der Undurchsichtigkeit. 100% opak ist, 0% beträgt "
13661
  "transparant"
13662
 
13663
- #: wppa-settings-autosave.php:4099 wppa-settings-autosave.php:4191
13664
- #: wppa-settings-autosave.php:4322 wppa-settings-autosave.php:4661
13665
  #, fuzzy
13666
  msgid "%"
13667
  msgstr "%"
13668
 
13669
- #: wppa-settings-autosave.php:4104
13670
  #, fuzzy
13671
  msgid "Thumb popup"
13672
  msgstr "thumb Popup"
13673
 
13674
- #: wppa-settings-autosave.php:4105
13675
  #, fuzzy
13676
  msgid "Use popup effect on thumbnail images."
13677
  msgstr "Verwenden Sie Popup-Effekt auf die Miniaturbilder."
13678
 
13679
- #: wppa-settings-autosave.php:4106
13680
  #, fuzzy
13681
  msgid "Thumbnails pop-up to a larger image when hovered."
13682
  msgstr "Thumbnails in ein größeres Bild Pop-up, wenn schwebte."
13683
 
13684
- #: wppa-settings-autosave.php:4114
13685
  #, fuzzy
13686
  msgid "Align subtext"
13687
  msgstr "Richten Sie Subtext"
13688
 
13689
- #: wppa-settings-autosave.php:4115
13690
  #, fuzzy
13691
  msgid "Set thumbnail subtext on equal height."
13692
- msgstr "Setzen Sie Miniaturansichten Subtext auf gleicher Höhe."
13693
 
13694
- #: wppa-settings-autosave.php:4123
13695
  #, fuzzy
13696
  msgid "Album and covers related settings"
13697
- msgstr "Album und Abdeckungen im Zusammenhang mit Einstellungen"
13698
 
13699
- #: wppa-settings-autosave.php:4125
13700
  #, fuzzy
13701
  msgid "Album order"
13702
  msgstr "Album bestellen"
13703
 
13704
- #: wppa-settings-autosave.php:4126
13705
  #, fuzzy
13706
  msgid "Album ordering sequence method."
13707
  msgstr "Album Bestellung Sequenzmethode."
13708
 
13709
- #: wppa-settings-autosave.php:4127
13710
  #, fuzzy
13711
  msgid "Specify the way the albums should be ordered."
13712
  msgstr "Geben Sie die Art und Weise sollten die Alben bestellt werden."
13713
 
13714
- #: wppa-settings-autosave.php:4152
13715
  #, fuzzy
13716
  msgid "Default coverphoto selection"
13717
  msgstr "Standard Coverfoto Auswahl"
13718
 
13719
- #: wppa-settings-autosave.php:4153
13720
  #, fuzzy
13721
  msgid "Default select cover photo method."
13722
  msgstr "Standardbild auswählen Methode."
13723
 
13724
- #: wppa-settings-autosave.php:4154
13725
  #, fuzzy
13726
  msgid ""
13727
  "This is the initial value on album creation only. It can be overruled on the "
13728
  "edit album page."
13729
  msgstr ""
13730
- "Dies ist der Anfangswert auf Album erstellen nur. Es kann auf der Seite "
13731
- "\"Album bearbeiten\" aufgehoben werden."
13732
 
13733
- #: wppa-settings-autosave.php:4155
13734
  #, fuzzy
13735
  msgid "Random from album"
13736
  msgstr "Zufällige von Album"
13737
 
13738
- #: wppa-settings-autosave.php:4155
13739
  #, fuzzy
13740
  msgid "Random featured from album"
13741
  msgstr "Zufällige funktions von Album"
13742
 
13743
- #: wppa-settings-autosave.php:4155
13744
  #, fuzzy
13745
  msgid "Most recently added to album"
13746
  msgstr "Zuletzt zum Album hinzugefügt"
13747
 
13748
- #: wppa-settings-autosave.php:4155
13749
  #, fuzzy
13750
  msgid "Random from album or any sub album"
13751
  msgstr "Zufällige aus dem Album oder einem Unter Album"
13752
 
13753
- #: wppa-settings-autosave.php:4164
13754
  #, fuzzy
13755
  msgid "Cover image position."
13756
  msgstr "Titelbild Position."
13757
 
13758
- #: wppa-settings-autosave.php:4165
13759
  #, fuzzy
13760
  msgid ""
13761
  "Enter the position that you want to be used for the default album cover "
@@ -13764,7 +13797,7 @@ msgstr ""
13764
  "Geben Sie die Position, die Sie in der Tabelle IV-D6 ausgewählt für die "
13765
  "Standard-Album-Cover verwendet werden soll."
13766
 
13767
- #: wppa-settings-autosave.php:4166
13768
  #, fuzzy
13769
  msgid ""
13770
  "For covertype Image Factory: left will be treated as top and right will be "
@@ -13773,7 +13806,7 @@ msgstr ""
13773
  "Für covertype Bild Factory: links wird als oben behandelt und rechts wird "
13774
  "als untere treted werden."
13775
 
13776
- #: wppa-settings-autosave.php:4167
13777
  #, fuzzy
13778
  msgid ""
13779
  "For covertype Long Descriptions: top will be treated as left and bottom will "
@@ -13782,38 +13815,38 @@ msgstr ""
13782
  "Für covertype Lange Beschreibungen: oben wird wie links behandelt und Boden "
13783
  "wird als rechts treted werden."
13784
 
13785
- #: wppa-settings-autosave.php:4177
13786
  #, fuzzy
13787
  msgid "Cover mouseover"
13788
  msgstr "Abdeckung Mouseover"
13789
 
13790
- #: wppa-settings-autosave.php:4178
13791
  #, fuzzy
13792
  msgid "Apply coverphoto mouseover effect."
13793
  msgstr "Bewerben Coverfoto Mouseover-Effekt."
13794
 
13795
- #: wppa-settings-autosave.php:4179
13796
  #, fuzzy
13797
  msgid "Check this box to use mouseover effect on cover images."
13798
  msgstr ""
13799
  "Markieren Sie dieses Feld Mouseover-Effekt auf die Cover-Bilder zu verwenden."
13800
 
13801
- #: wppa-settings-autosave.php:4187
13802
  #, fuzzy
13803
  msgid "Cover opacity"
13804
  msgstr "Titel Opazität"
13805
 
13806
- #: wppa-settings-autosave.php:4196
13807
  #, fuzzy
13808
  msgid "Cover type"
13809
  msgstr "Einband"
13810
 
13811
- #: wppa-settings-autosave.php:4197
13812
  #, fuzzy
13813
  msgid "Select the default cover type."
13814
  msgstr "Wählen Sie die Standardabdeckung Typ."
13815
 
13816
- #: wppa-settings-autosave.php:4198
13817
  #, fuzzy
13818
  msgid ""
13819
  "Types with the addition mcr are suitable for Multi Column in a Responsive "
@@ -13822,22 +13855,22 @@ msgstr ""
13822
  "Typen mit dem Zusatz mcr sind für Multi-Spalte in einem Responsive Thema "
13823
  "geeignet"
13824
 
13825
- #: wppa-settings-autosave.php:4221
13826
  #, fuzzy
13827
  msgid "The umber of coverphotos. Must be > 1 and < 25."
13828
  msgstr "Die Umbra von coverphotos. Muss> 1 und <25."
13829
 
13830
- #: wppa-settings-autosave.php:4229
13831
  #, fuzzy
13832
  msgid "Cats include subs"
13833
  msgstr "Katzen sind U-Boote"
13834
 
13835
- #: wppa-settings-autosave.php:4230
13836
  #, fuzzy
13837
  msgid "Child albums are included in Category based shortcodes."
13838
  msgstr "Kinderalben sind in Kategorie basierend Shortcodes enthalten."
13839
 
13840
- #: wppa-settings-autosave.php:4231
13841
  #, fuzzy
13842
  msgid ""
13843
  "When you use album=\"#cat,...\", in a shortcode, the child albums will be "
@@ -13846,22 +13879,22 @@ msgstr ""
13846
  "Wenn Sie das Album verwenden = \"# cat, ...\", in einer Kurzwahlnummer, wird "
13847
  "das Kind Alben aufgenommen."
13848
 
13849
- #: wppa-settings-autosave.php:4239
13850
  #, fuzzy
13851
  msgid "Rating related settings"
13852
  msgstr "Rating bezogenen Einstellungen"
13853
 
13854
- #: wppa-settings-autosave.php:4241
13855
  #, fuzzy
13856
  msgid "Rating login"
13857
  msgstr "Rating Login"
13858
 
13859
- #: wppa-settings-autosave.php:4242
13860
  #, fuzzy
13861
  msgid "Users must login to rate photos."
13862
- msgstr "Benutzer müssen melden Sie sich bei Fotos."
13863
 
13864
- #: wppa-settings-autosave.php:4243
13865
  #, fuzzy
13866
  msgid ""
13867
  "If users want to vote for a photo (rating 1..5 stars) the must login first. "
@@ -13872,20 +13905,20 @@ msgstr ""
13872
  "der ersten Anmeldung müssen. Die Durchschnittsbewertung wird immer so lange "
13873
  "angezeigt werden, da das Rating-System aktiviert ist."
13874
 
13875
- #: wppa-settings-autosave.php:4250
13876
  #, fuzzy
13877
  msgid "Rating change"
13878
  msgstr "Änderung der Bewertung"
13879
 
13880
- #: wppa-settings-autosave.php:4251 wppa-settings-autosave.php:4252
13881
  #, fuzzy
13882
  msgid "Users may change their ratings."
13883
  msgstr "Die Benutzer können ihre Ratings ändern."
13884
 
13885
- #: wppa-settings-autosave.php:4253 wppa-settings-autosave.php:4301
13886
- #: wppa-settings-autosave.php:4320 wppa-settings-autosave.php:4333
13887
- #: wppa-settings-autosave.php:4343 wppa-settings-autosave.php:4353
13888
- #: wppa-settings-autosave.php:4363 wppa-settings-autosave.php:4372
13889
  #, fuzzy
13890
  msgid ""
13891
  "If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
@@ -13893,17 +13926,17 @@ msgstr ""
13893
  "Wenn \"Ein-Knopf-Abstimmung\" in Tabelle I-E1 ausgewählt ist, hat diese "
13894
  "Einstellung keine Bedeutung"
13895
 
13896
- #: wppa-settings-autosave.php:4260
13897
  #, fuzzy
13898
  msgid "Rating multi"
13899
  msgstr "Bewertung Mehr"
13900
 
13901
- #: wppa-settings-autosave.php:4261
13902
  #, fuzzy
13903
  msgid "Users may give multiple votes."
13904
  msgstr "Benutzer können mehrere Stimmen geben."
13905
 
13906
- #: wppa-settings-autosave.php:4262
13907
  #, fuzzy
13908
  msgid ""
13909
  "Users may give multiple votes. (This has no effect when users may change "
@@ -13912,57 +13945,57 @@ msgstr ""
13912
  "Benutzer können mehrere Stimmen geben. (Dies hat keine Auswirkung, wenn die "
13913
  "Benutzer ihre Stimme ändern können.)"
13914
 
13915
- #: wppa-settings-autosave.php:4269
13916
  #, fuzzy
13917
  msgid "Rating daily"
13918
  msgstr "Bewertung täglich"
13919
 
13920
- #: wppa-settings-autosave.php:4270
13921
  #, fuzzy
13922
  msgid "Users may rate only once per period"
13923
  msgstr "Benutzer können pro Periode nur einmal bewerten"
13924
 
13925
- #: wppa-settings-autosave.php:4273
13926
  #, fuzzy
13927
  msgid "Week"
13928
  msgstr "Woche"
13929
 
13930
- #: wppa-settings-autosave.php:4273
13931
  #, fuzzy
13932
  msgid "Day"
13933
  msgstr "Tag"
13934
 
13935
- #: wppa-settings-autosave.php:4273
13936
  #, fuzzy
13937
  msgid "Hour"
13938
  msgstr "Stunde"
13939
 
13940
- #: wppa-settings-autosave.php:4280
13941
  #, fuzzy
13942
  msgid "Rate own photos"
13943
- msgstr "Bei eigenen Fotos"
13944
 
13945
- #: wppa-settings-autosave.php:4281
13946
  #, fuzzy
13947
  msgid "It is allowed to rate photos by the uploader himself."
13948
  msgstr "Es ist erlaubt, Fotos vom Uploader selbst zu bewerten."
13949
 
13950
- #: wppa-settings-autosave.php:4289
13951
  #, fuzzy
13952
  msgid "Rating requires comment"
13953
  msgstr "Bewertung erfordert Kommentar"
13954
 
13955
- #: wppa-settings-autosave.php:4290
13956
  #, fuzzy
13957
  msgid "Users must clarify their vote in a comment."
13958
  msgstr "Die Benutzer müssen ihre Stimme in einem Kommentar zu klären."
13959
 
13960
- #: wppa-settings-autosave.php:4299
13961
  #, fuzzy
13962
  msgid "This value counts dislike rating."
13963
  msgstr "Dieser Wert zählt nicht mögen Rating."
13964
 
13965
- #: wppa-settings-autosave.php:4300
13966
  #, fuzzy
13967
  msgid ""
13968
  "This value will be used for a dislike rating on calculation of avarage "
@@ -13971,22 +14004,22 @@ msgstr ""
13971
  "Dieser Wert wird für eine Abneigung Bewertung über die Berechnung des "
13972
  "Durchschnittsbewertungen verwendet werden."
13973
 
13974
- #: wppa-settings-autosave.php:4303
13975
  #, fuzzy
13976
  msgid "points"
13977
- msgstr "نکته ها"
13978
 
13979
- #: wppa-settings-autosave.php:4308
13980
  #, fuzzy
13981
  msgid "Next after vote"
13982
  msgstr "Weiter nach Abstimmung"
13983
 
13984
- #: wppa-settings-autosave.php:4309
13985
  #, fuzzy
13986
  msgid "Goto next slide after voting"
13987
  msgstr "Goto nächste Folie nach der Abstimmung"
13988
 
13989
- #: wppa-settings-autosave.php:4310
13990
  #, fuzzy
13991
  msgid ""
13992
  "If checked, the visitor goes straight to the slide following the slide he "
@@ -13995,22 +14028,22 @@ msgstr ""
13995
  "Wenn diese Option aktiviert, geht der Besucher direkt auf die Folie nach dem "
13996
  "Dia er gewählt. Dies wird Masse Abstimmung beschleunigen."
13997
 
13998
- #: wppa-settings-autosave.php:4317
13999
  #, fuzzy
14000
  msgid "Star off opacity"
14001
  msgstr "Star off Trübung"
14002
 
14003
- #: wppa-settings-autosave.php:4318
14004
  #, fuzzy
14005
  msgid "Rating star off state opacity value."
14006
  msgstr "Bewertung star off Lässigkeitswert Zustand."
14007
 
14008
- #: wppa-settings-autosave.php:4328
14009
  #, fuzzy
14010
  msgid "Notify admin every x times."
14011
  msgstr "Benachrichtigen Sie Admin alle x-mal."
14012
 
14013
- #: wppa-settings-autosave.php:4329
14014
  #, fuzzy
14015
  msgid ""
14016
  "If this number is positive, there will be a thumb down icon in the rating "
@@ -14019,7 +14052,7 @@ msgstr ""
14019
  "Wenn diese Zahl positiv ist, wird es einen Daumen nach unten Symbol in der "
14020
  "Bewertung bar betragen."
14021
 
14022
- #: wppa-settings-autosave.php:4330
14023
  #, fuzzy
14024
  msgid ""
14025
  "Cicking the icon indicates a user wants to report that an image is "
@@ -14028,90 +14061,90 @@ msgstr ""
14028
  "das Symbol Cicking zeigt ein Benutzer berichten will, dass ein Bild "
14029
  "Ungeeigneter ist."
14030
 
14031
- #: wppa-settings-autosave.php:4331
14032
  #, fuzzy
14033
  msgid "Admin will be notified by email after every x reports."
14034
  msgstr "Admin wird per E-Mail nach jedem x-Berichte informiert werden."
14035
 
14036
- #: wppa-settings-autosave.php:4332 wppa-settings-autosave.php:4342
14037
- #: wppa-settings-autosave.php:4352
14038
  #, fuzzy
14039
  msgid "A value of 0 disables this feature."
14040
  msgstr "Ein Wert von 0 deaktiviert diese Funktion."
14041
 
14042
- #: wppa-settings-autosave.php:4335 wppa-settings-autosave.php:4345
14043
- #: wppa-settings-autosave.php:4355
14044
  #, fuzzy
14045
  msgid "reports"
14046
  msgstr "Berichte"
14047
 
14048
- #: wppa-settings-autosave.php:4340
14049
  #, fuzzy
14050
  msgid "Pending after"
14051
  msgstr "Bis nach"
14052
 
14053
- #: wppa-settings-autosave.php:4341
14054
  #, fuzzy
14055
  msgid "Set status to pending after xx dislike votes."
14056
  msgstr "Status setzen nach xx Abneigung Stimmen anhängig."
14057
 
14058
- #: wppa-settings-autosave.php:4350
14059
  #, fuzzy
14060
  msgid "Delete after"
14061
- msgstr "Spam löschen nach:"
14062
 
14063
- #: wppa-settings-autosave.php:4351
14064
  #, fuzzy
14065
  msgid "Deete photo after xx dislike votes."
14066
  msgstr "Deete Foto nach xx Abneigung Stimmen."
14067
 
14068
- #: wppa-settings-autosave.php:4360
14069
  #, fuzzy
14070
  msgid "Show dislike count"
14071
  msgstr "Anzeigen Abneigung Zahl"
14072
 
14073
- #: wppa-settings-autosave.php:4361
14074
  #, fuzzy
14075
  msgid "Show the number of dislikes in the rating bar."
14076
  msgstr "Zeigt die Anzahl der Abneigungen in der Bewertung bar."
14077
 
14078
- #: wppa-settings-autosave.php:4362
14079
  #, fuzzy
14080
  msgid "Displayes the total number of dislike votes for the current photo."
14081
  msgstr "DISPLAYES die Gesamtzahl der Abneigung Stimmen für das aktuelle Foto."
14082
 
14083
- #: wppa-settings-autosave.php:4370
14084
  #, fuzzy
14085
  msgid "Rating display type"
14086
  msgstr "Bewertung Darstellungsart"
14087
 
14088
- #: wppa-settings-autosave.php:4371
14089
  #, fuzzy
14090
  msgid "Specify the type of the rating display."
14091
  msgstr "Geben Sie die Art der Bewertung Anzeige."
14092
 
14093
- #: wppa-settings-autosave.php:4374
14094
  #, fuzzy
14095
  msgid "Graphic"
14096
  msgstr "Grafik"
14097
 
14098
- #: wppa-settings-autosave.php:4374
14099
  #, fuzzy
14100
  msgid "Numeric"
14101
- msgstr "Numerische"
14102
 
14103
- #: wppa-settings-autosave.php:4381
14104
  #, fuzzy
14105
  msgid "Show average rating"
14106
  msgstr "Durchschnittliches Rating"
14107
 
14108
- #: wppa-settings-autosave.php:4382
14109
  #, fuzzy
14110
  msgid "Display the avarage rating and/or vote count on the rating bar"
14111
  msgstr ""
14112
  "Zeigen Sie die Durchschnittsbewertung und / oder Stimme auf die Rating-Bar"
14113
 
14114
- #: wppa-settings-autosave.php:4383
14115
  #, fuzzy
14116
  msgid ""
14117
  "If checked, the average rating as well as the current users rating is "
@@ -14120,14 +14153,14 @@ msgstr ""
14120
  "Wenn aktiviert, wird die durchschnittliche Bewertung sowie der aktuelle "
14121
  "Benutzer Bewertung in max 5 oder 10 Sternen angezeigt."
14122
 
14123
- #: wppa-settings-autosave.php:4384
14124
  #, fuzzy
14125
  msgid "If unchecked, only the current users rating is displayed (if any)."
14126
  msgstr ""
14127
  "Ist die Option deaktiviert, wird nur der aktuelle Benutzer Bewertung (falls "
14128
  "vorhanden) angezeigt."
14129
 
14130
- #: wppa-settings-autosave.php:4385
14131
  #, fuzzy
14132
  msgid ""
14133
  "If \"One button vote\" is selected in Table I-E1, this box checked will "
@@ -14136,42 +14169,42 @@ msgstr ""
14136
  "Wenn \"Ein-Knopf-Abstimmung\" in Tabelle I-E1 ausgewählt wird, überprüft "
14137
  "dieses Feld wird die Auszählung der Stimmen an."
14138
 
14139
- #: wppa-settings-autosave.php:4392
14140
  #, fuzzy
14141
  msgid "Single vote button text"
14142
  msgstr "Einzel Abstimmung Taste Text"
14143
 
14144
- #: wppa-settings-autosave.php:4393
14145
  #, fuzzy
14146
  msgid "The text on the voting button."
14147
  msgstr "Der Text auf der Wahltaste."
14148
 
14149
- #: wppa-settings-autosave.php:4394 wppa-settings-autosave.php:4403
14150
  #, fuzzy
14151
  msgid "This text may contain qTranslate compatible language tags."
14152
  msgstr "Dieser Text kann qTranslate kompatible Sprache-Tags enthalten."
14153
 
14154
- #: wppa-settings-autosave.php:4401
14155
  #, fuzzy
14156
  msgid "Single vote button text voted"
14157
  msgstr "Einzel Abstimmung Taste Text gestimmt"
14158
 
14159
- #: wppa-settings-autosave.php:4402
14160
  #, fuzzy
14161
  msgid "The text on the voting button when voted."
14162
  msgstr "Der Text auf der Wahltaste, wenn gewählt."
14163
 
14164
- #: wppa-settings-autosave.php:4410
14165
  #, fuzzy
14166
  msgid "Single vote button thumbnail"
14167
  msgstr "Einzel Abstimmung Taste Thumbnail"
14168
 
14169
- #: wppa-settings-autosave.php:4411
14170
  #, fuzzy
14171
  msgid "Display single vote button below thumbnails."
14172
  msgstr "Zeigen Sie einzelne Stimme Button Thumbnails."
14173
 
14174
- #: wppa-settings-autosave.php:4412
14175
  #, fuzzy
14176
  msgid ""
14177
  "This works only in single vote mode: Table I-E1 set to \"one button vote\""
@@ -14179,18 +14212,18 @@ msgstr ""
14179
  "Das funktioniert aber nur in Einzelstimme Modus: Tabelle I-E1 auf \"eine "
14180
  "Taste Abstimmung\" gesetzt"
14181
 
14182
- #: wppa-settings-autosave.php:4419
14183
  #, fuzzy
14184
  msgid "Medal bronze when"
14185
  msgstr "Medaille Bronze wenn"
14186
 
14187
- #: wppa-settings-autosave.php:4420 wppa-settings-autosave.php:4438
14188
  #, fuzzy
14189
  msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
14190
  msgstr ""
14191
  "Foto bekommt Medaille Bronze wenn die Anzahl der Top-Scores (5 oder 10)."
14192
 
14193
- #: wppa-settings-autosave.php:4421 wppa-settings-autosave.php:4439
14194
  #, fuzzy
14195
  msgid ""
14196
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
@@ -14200,24 +14233,24 @@ msgstr ""
14200
  "eine Bronzemedaille bekommen. Ein Wert von 0 bedeutet, dass Sie diese "
14201
  "Funktion nicht wollen."
14202
 
14203
- #: wppa-settings-autosave.php:4423 wppa-settings-autosave.php:4432
14204
- #: wppa-settings-autosave.php:4441
14205
  #, fuzzy
14206
  msgid "Topscores"
14207
  msgstr "Höchstpunktzahl"
14208
 
14209
- #: wppa-settings-autosave.php:4428
14210
  #, fuzzy
14211
  msgid "Medal silver when"
14212
  msgstr "Medaille in Silber, wenn"
14213
 
14214
- #: wppa-settings-autosave.php:4429
14215
  #, fuzzy
14216
  msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
14217
  msgstr ""
14218
  "Foto bekommt Medaille in Silber, wenn die Anzahl der Top-Scores (5 oder 10)."
14219
 
14220
- #: wppa-settings-autosave.php:4430
14221
  #, fuzzy
14222
  msgid ""
14223
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
@@ -14227,108 +14260,108 @@ msgstr ""
14227
  "eine Silbermedaille erhalten. Ein Wert von 0 bedeutet, dass Sie diese "
14228
  "Funktion nicht wollen."
14229
 
14230
- #: wppa-settings-autosave.php:4437
14231
  #, fuzzy
14232
  msgid "Medal gold when"
14233
  msgstr "Medal Gold, wenn"
14234
 
14235
- #: wppa-settings-autosave.php:4446
14236
  #, fuzzy
14237
  msgid "Medal tag color"
14238
  msgstr "Medal Tag Farbe"
14239
 
14240
- #: wppa-settings-autosave.php:4447
14241
  #, fuzzy
14242
  msgid "The color of the tag on the medal."
14243
  msgstr "Die Farbe des Etiketts auf der Medaille."
14244
 
14245
- #: wppa-settings-autosave.php:4450 wppa-settings-autosave.php:7890
14246
  #, fuzzy
14247
  msgid "Red"
14248
  msgstr "Rote-Augen-Reduzierung, nicht erkannt und Rück"
14249
 
14250
- #: wppa-settings-autosave.php:4450 wppa-settings-autosave.php:7893
14251
  #, fuzzy
14252
  msgid "Green"
14253
- msgstr "Verde"
14254
 
14255
- #: wppa-settings-autosave.php:4450 wppa-settings-autosave.php:7894
14256
  #, fuzzy
14257
  msgid "Blue"
14258
  msgstr "Blau"
14259
 
14260
- #: wppa-settings-autosave.php:4457
14261
  #, fuzzy
14262
  msgid "Medal position"
14263
  msgstr "Medaille Position"
14264
 
14265
- #: wppa-settings-autosave.php:4458
14266
  #, fuzzy
14267
  msgid "The position of the medal on the image."
14268
  msgstr "Die Position der Medaille auf das Bild."
14269
 
14270
- #: wppa-settings-autosave.php:4461
14271
  #, fuzzy
14272
  msgid "Top left"
14273
- msgstr "Oben links"
14274
 
14275
- #: wppa-settings-autosave.php:4461
14276
  #, fuzzy
14277
  msgid "Top right"
14278
  msgstr "Oben rechts"
14279
 
14280
- #: wppa-settings-autosave.php:4461
14281
  #, fuzzy
14282
  msgid "Bottom left"
14283
  msgstr "Unten links"
14284
 
14285
- #: wppa-settings-autosave.php:4461
14286
  #, fuzzy
14287
  msgid "Bottom right"
14288
  msgstr "Unten rechts"
14289
 
14290
- #: wppa-settings-autosave.php:4468
14291
  #, fuzzy
14292
  msgid "Top criterium"
14293
  msgstr "Top criterium"
14294
 
14295
- #: wppa-settings-autosave.php:4469
14296
  #, fuzzy
14297
  msgid "The top sort item used for topten results from shortcodes."
14298
  msgstr ""
14299
  "Die Top-Art Artikel für topten Ergebnisse von Kurzwahlnummern verwendet."
14300
 
14301
- #: wppa-settings-autosave.php:4472
14302
  #, fuzzy
14303
  msgid "Mean raiting"
14304
  msgstr "Mittlere beliebheit"
14305
 
14306
- #: wppa-settings-autosave.php:4472
14307
  #, fuzzy
14308
  msgid "Rating count"
14309
  msgstr "Bewertungen"
14310
 
14311
- #: wppa-settings-autosave.php:4472
14312
  #, fuzzy
14313
  msgid "Viewcount"
14314
  msgstr "Viewcount"
14315
 
14316
- #: wppa-settings-autosave.php:4479
14317
  #, fuzzy
14318
  msgid "Comments related settings"
14319
  msgstr "Kommentare Einstellungen"
14320
 
14321
- #: wppa-settings-autosave.php:4481
14322
  #, fuzzy
14323
  msgid "Commenting login"
14324
  msgstr "Kommentar Login"
14325
 
14326
- #: wppa-settings-autosave.php:4482
14327
  #, fuzzy
14328
  msgid "Users must be logged in to comment on photos."
14329
  msgstr "Benutzer müssen angemeldet sein, auf Fotos zu kommentieren."
14330
 
14331
- #: wppa-settings-autosave.php:4483
14332
  #, fuzzy
14333
  msgid ""
14334
  "Check this box if you want users to be logged in to be able to enter "
@@ -14337,17 +14370,17 @@ msgstr ""
14337
  "Markieren Sie dieses Feld, wenn Benutzer angemeldet sein wollen in der Lage "
14338
  "Kommentare zu den einzelnen Fotos zu gelangen."
14339
 
14340
- #: wppa-settings-autosave.php:4490
14341
  #, fuzzy
14342
  msgid "Comments view login"
14343
  msgstr "Kommentare Ansicht Login"
14344
 
14345
- #: wppa-settings-autosave.php:4491
14346
  #, fuzzy
14347
  msgid "Users must be logged in to see comments on photos."
14348
  msgstr "Benutzer müssen angemeldet sein, um Kommentare auf Fotos zu sehen."
14349
 
14350
- #: wppa-settings-autosave.php:4492
14351
  #, fuzzy
14352
  msgid ""
14353
  "Check this box if you want users to be logged in to be able to see existing "
@@ -14356,166 +14389,166 @@ msgstr ""
14356
  "Markieren Sie dieses Feld, wenn Benutzer angemeldet sein wollen in der Lage "
14357
  "bestehende Kommentare zu den einzelnen Fotos zu sehen."
14358
 
14359
- #: wppa-settings-autosave.php:4499
14360
  #, fuzzy
14361
  msgid "Last comment first"
14362
  msgstr "Neueste Kommentare zuerst"
14363
 
14364
- #: wppa-settings-autosave.php:4500
14365
  #, fuzzy
14366
  msgid "Display the newest comment on top."
14367
  msgstr "Rufen Sie den neuesten Kommentar an der Spitze."
14368
 
14369
- #: wppa-settings-autosave.php:4501
14370
  #, fuzzy
14371
  msgid "If checked: Display the newest comment on top."
14372
  msgstr ""
14373
  "Wenn diese Option aktiviert: Zeigt die neuesten Kommentare an der Spitze."
14374
 
14375
- #: wppa-settings-autosave.php:4502
14376
  #, fuzzy
14377
  msgid "If unchecked, the comments are listed in the ordere they were entered."
14378
  msgstr ""
14379
  "Ist die Option deaktiviert, werden die Kommentare in der ordere aufgeführt "
14380
  "sind sie eingegeben wurden."
14381
 
14382
- #: wppa-settings-autosave.php:4509
14383
  #, fuzzy
14384
  msgid "Comment moderation"
14385
  msgstr "Kommentar Moderation"
14386
 
14387
- #: wppa-settings-autosave.php:4510
14388
  #, fuzzy
14389
  msgid "Comments from what users need approval."
14390
  msgstr "Kommentare von dem, was Anwender brauchen Genehmigung."
14391
 
14392
- #: wppa-settings-autosave.php:4511
14393
  #, fuzzy
14394
  msgid "Select the desired users of which the comments need approval."
14395
  msgstr ""
14396
  "Wählen Sie die gewünschten Benutzer, von denen die Kommentare Genehmigung "
14397
  "benötigen."
14398
 
14399
- #: wppa-settings-autosave.php:4513 wppa-settings-autosave.php:6507
14400
  #, fuzzy
14401
  msgid "All users"
14402
  msgstr "Alle Benutzer"
14403
 
14404
- #: wppa-settings-autosave.php:4513 wppa-settings-autosave.php:6507
14405
  #, fuzzy
14406
  msgid "Logged out users"
14407
  msgstr "abgemeldete Benutzer"
14408
 
14409
- #: wppa-settings-autosave.php:4513 wppa-settings-autosave.php:6507
14410
  #, fuzzy
14411
  msgid "No users"
14412
  msgstr "Keine Teilnehmer."
14413
 
14414
- #: wppa-settings-autosave.php:4520
14415
  #, fuzzy
14416
  msgid "Comment email required"
14417
  msgstr "Kommentar E-Mail erforderlich"
14418
 
14419
- #: wppa-settings-autosave.php:4521
14420
  #, fuzzy
14421
  msgid "Commenting users must enter their email addresses."
14422
  msgstr "Kommentierte müssen die Benutzer ihre E-Mail-Adressen eingeben."
14423
 
14424
- #: wppa-settings-autosave.php:4525 wppa-settings-autosave.php:9220
14425
- #: wppa-settings-autosave.php:9288
14426
  #, fuzzy
14427
  msgid "Optional"
14428
  msgstr "Optional"
14429
 
14430
- #: wppa-settings-autosave.php:4537
14431
  #, fuzzy
14432
  msgid "Comment notify"
14433
  msgstr "Kommentar melden"
14434
 
14435
- #: wppa-settings-autosave.php:4538
14436
  #, fuzzy
14437
  msgid "Select who must receive an e-mail notification of a new comment."
14438
  msgstr ""
14439
  "Wählen Sie die E-Mail-Benachrichtigung über einen neuen Kommentar erhalten "
14440
  "muss."
14441
 
14442
- #: wppa-settings-autosave.php:4541
14443
  #, fuzzy
14444
  msgid "--- None ---"
14445
  msgstr "--- keine ---"
14446
 
14447
- #: wppa-settings-autosave.php:4542
14448
  #, fuzzy
14449
  msgid "--- Admin ---"
14450
- msgstr "Verwalten"
14451
 
14452
- #: wppa-settings-autosave.php:4543
14453
  #, fuzzy
14454
  msgid "--- Album owner ---"
14455
  msgstr "--- Album Inhaber ---"
14456
 
14457
- #: wppa-settings-autosave.php:4544
14458
  #, fuzzy
14459
  msgid "--- Admin & Owner ---"
14460
  msgstr "--- Admin & Inhaber ---"
14461
 
14462
- #: wppa-settings-autosave.php:4545
14463
  #, fuzzy
14464
  msgid "--- Uploader ---"
14465
  msgstr "--- --- Uploader"
14466
 
14467
- #: wppa-settings-autosave.php:4546
14468
  #, fuzzy
14469
  msgid "--- Up & admin ---"
14470
  msgstr "--- Up & Admin ---"
14471
 
14472
- #: wppa-settings-autosave.php:4547
14473
  #, fuzzy
14474
  msgid "--- Up & Owner ---"
14475
  msgstr "--- Up & Besitzer ---"
14476
 
14477
- #: wppa-settings-autosave.php:4570
14478
  #, fuzzy
14479
  msgid "Comment notify previous"
14480
  msgstr "Kommentar melden vorherige"
14481
 
14482
- #: wppa-settings-autosave.php:4571
14483
  #, fuzzy
14484
  msgid "Notify users who has commented this photo earlier."
14485
  msgstr "Benachrichtigen Sie die Benutzer, die dieses Foto früher geäußert hat."
14486
 
14487
- #: wppa-settings-autosave.php:4579
14488
  #, fuzzy
14489
  msgid "Comment notify approved"
14490
  msgstr "Kommentar benachrichtigen genehmigt"
14491
 
14492
- #: wppa-settings-autosave.php:4580
14493
  #, fuzzy
14494
  msgid "Notify photo owner of approved comment."
14495
  msgstr "Benachrichtigen Foto Inhaber zugelassener Kommentar."
14496
 
14497
- #: wppa-settings-autosave.php:4588
14498
  #, fuzzy
14499
  msgid "Com ntfy appr email content"
14500
  msgstr "Com NTFY ca. E-Mail-Inhalt"
14501
 
14502
- #: wppa-settings-autosave.php:4589
14503
  #, fuzzy
14504
  msgid "The content of the email."
14505
  msgstr "Der Inhalt der E-Mail."
14506
 
14507
- #: wppa-settings-autosave.php:4590
14508
  #, fuzzy
14509
  msgid "If you leave this blank, the default content will be used"
14510
  msgstr ""
14511
  "Wenn Sie dieses Feld leer lassen, wird der Standardinhalt verwendet werden"
14512
 
14513
- #: wppa-settings-autosave.php:4591
14514
  #, fuzzy
14515
  msgid "The content may contain html."
14516
  msgstr "Der Inhalt kann HTML-Code enthalten."
14517
 
14518
- #: wppa-settings-autosave.php:4592
14519
  #, fuzzy
14520
  msgid ""
14521
  "You may use the following keywords: w#comment for the comment content, "
@@ -14530,81 +14563,79 @@ msgstr ""
14530
  "amy, w # AMF, w # url, w # hrurl, w # tnurl, w # cc0..w # CC9, w # cd0..w # "
14531
  "CD9."
14532
 
14533
- #: wppa-settings-autosave.php:4599
14534
  #, fuzzy
14535
  msgid "Com ntfy appr email subject"
14536
  msgstr "Com NTFY ca. E-Mail-Betreff"
14537
 
14538
- #: wppa-settings-autosave.php:4600
14539
  #, fuzzy
14540
  msgid "The subject of the email."
14541
  msgstr "Betreff der E-Mail"
14542
 
14543
- #: wppa-settings-autosave.php:4609
14544
  #, fuzzy
14545
  msgid "Comment ntfy added"
14546
  msgstr "Kommentar hinzugefügt"
14547
 
14548
- #: wppa-settings-autosave.php:4610
14549
  #, fuzzy
14550
  msgid "Show \"Comment added\" after successfull adding a comment."
14551
  msgstr ""
14552
  "Show \"Kommentar hinzugefügt\" nach erfolgreicher Kommentar hinzufügen."
14553
 
14554
- #: wppa-settings-autosave.php:4618
14555
  #, fuzzy
14556
  msgid "ComTen alt display"
14557
  msgstr "ComTen alt Anzeige"
14558
 
14559
- #: wppa-settings-autosave.php:4619
14560
  #, fuzzy
14561
  msgid "Display comments at comten thumbnails."
14562
  msgstr "Anzeige Kommentare comten Thumbnails."
14563
 
14564
- #: wppa-settings-autosave.php:4627
14565
  #, fuzzy
14566
  msgid "Comten Thumbnail width"
14567
  msgstr "Comten Thumbnail Breite"
14568
 
14569
- #: wppa-settings-autosave.php:4628
14570
  #, fuzzy
14571
  msgid "The width of the thumbnail in the alt comment display."
14572
  msgstr "Die Breite der Miniaturansicht in der Alt-Kommentar-Anzeige."
14573
 
14574
- #: wppa-settings-autosave.php:4631
14575
  #, fuzzy
14576
  msgid "Pixels"
14577
- msgstr ""
14578
- "Geben Sie die Kartenhöhe in Pixeln an. Beispiel: 200, oder lassen dieses "
14579
- "Feld frei um eine responsive Karte zu erstellen."
14580
 
14581
- #: wppa-settings-autosave.php:4636
14582
  #, fuzzy
14583
  msgid "Show smiley picker"
14584
  msgstr "Zeigen Sie Smiley-Picker"
14585
 
14586
- #: wppa-settings-autosave.php:4637
14587
  #, fuzzy
14588
  msgid "Display a clickable row of smileys."
14589
  msgstr "Zeigen Sie eine anklickbare Reihe von Smileys."
14590
 
14591
- #: wppa-settings-autosave.php:4645
14592
  #, fuzzy
14593
  msgid "Show commenter email"
14594
  msgstr "Zeige Kommentator E-Mail"
14595
 
14596
- #: wppa-settings-autosave.php:4646
14597
  #, fuzzy
14598
  msgid "Show the commenter's email in the notify emails."
14599
  msgstr "Zeigen Sie die E-Mail der Kommentator in den E-Mails benachrichtigen."
14600
 
14601
- #: wppa-settings-autosave.php:4647
14602
  #, fuzzy
14603
  msgid "Shows the email address of the commenter in all notify emails."
14604
  msgstr ""
14605
  "Zeigt die E-Mail-Adresse des commenter in allen benachrichtigen E-Mails."
14606
 
14607
- #: wppa-settings-autosave.php:4648
14608
  #, fuzzy
14609
  msgid ""
14610
  "If switched off, admin will still receive the senders email in the "
@@ -14613,132 +14644,132 @@ msgstr ""
14613
  "Wenn ausgeschaltet, kann der Admin noch die Absender E-Mail in der "
14614
  "Benachrichtigungsmail erhalten"
14615
 
14616
- #: wppa-settings-autosave.php:4658
14617
  #, fuzzy
14618
  msgid "The opacity of the lightbox overlay background."
14619
  msgstr "Die Opazität der Leuchtkasten Overlay Hintergrund."
14620
 
14621
- #: wppa-settings-autosave.php:4666
14622
  #, fuzzy
14623
  msgid "Click on background"
14624
  msgstr "Klicken Sie auf den Hintergrund"
14625
 
14626
- #: wppa-settings-autosave.php:4667
14627
  #, fuzzy
14628
  msgid "Select the action to be taken on click on background."
14629
  msgstr "die Aktion auswählen taken on Klick auf den Hintergrund zu werden."
14630
 
14631
- #: wppa-settings-autosave.php:4670
14632
  #, fuzzy
14633
  msgid "Nothing"
14634
- msgstr "Nichts tun"
14635
 
14636
- #: wppa-settings-autosave.php:4670
14637
  #, fuzzy
14638
  msgid "Exit (close)"
14639
  msgstr "Exit (schließen)"
14640
 
14641
- #: wppa-settings-autosave.php:4670
14642
  #, fuzzy
14643
  msgid "Browse (left/right)"
14644
  msgstr "Durchsuchen (links / rechts)"
14645
 
14646
- #: wppa-settings-autosave.php:4677
14647
  #, fuzzy
14648
  msgid "Overlay animation speed"
14649
  msgstr "Overlay Animationsgeschwindigkeit"
14650
 
14651
- #: wppa-settings-autosave.php:4678
14652
  #, fuzzy
14653
  msgid "The fade-in time of the lightbox images"
14654
  msgstr "Die Fade-In der Lightbox-Bilder"
14655
 
14656
- #: wppa-settings-autosave.php:4681
14657
  #, fuzzy
14658
  msgid "very fast (100 ms.)"
14659
  msgstr "sehr schnell (100 ms.)"
14660
 
14661
- #: wppa-settings-autosave.php:4681
14662
  #, fuzzy
14663
  msgid "fast (200 ms.)"
14664
  msgstr "schnell (200 ms.)"
14665
 
14666
- #: wppa-settings-autosave.php:4681
14667
  #, fuzzy
14668
  msgid "normal (300 ms.)"
14669
  msgstr "normal (300 ms.)"
14670
 
14671
- #: wppa-settings-autosave.php:4681
14672
  #, fuzzy
14673
  msgid "slow (500 ms.)"
14674
  msgstr "langsam (500 ms.)"
14675
 
14676
- #: wppa-settings-autosave.php:4681
14677
  #, fuzzy
14678
  msgid "very slow (1 s.)"
14679
  msgstr "sehr langsam (1 s.)"
14680
 
14681
- #: wppa-settings-autosave.php:4681
14682
  #, fuzzy
14683
  msgid "extremely slow (2 s.)"
14684
  msgstr "extrem langsam (2 s.)"
14685
 
14686
- #: wppa-settings-autosave.php:4688
14687
  #, fuzzy
14688
  msgid "Overlay slideshow speed"
14689
  msgstr "Overlay Diashow Geschwindigkeit"
14690
 
14691
- #: wppa-settings-autosave.php:4689
14692
  #, fuzzy
14693
  msgid "The time the lightbox images stay"
14694
  msgstr "Die Zeit, um den Leuchtkasten Bilder bleiben"
14695
 
14696
- #: wppa-settings-autosave.php:4692
14697
  #, fuzzy
14698
  msgid "fast (3 s.)"
14699
  msgstr "schnell (3 s.)"
14700
 
14701
- #: wppa-settings-autosave.php:4692
14702
  #, fuzzy
14703
  msgid "normal (5 s.)"
14704
  msgstr "normal (5 s.)"
14705
 
14706
- #: wppa-settings-autosave.php:4692
14707
  #, fuzzy
14708
  msgid "slow (8 s.)"
14709
  msgstr "langsam (8 s.)"
14710
 
14711
- #: wppa-settings-autosave.php:4692
14712
  #, fuzzy
14713
  msgid "very slow (13 s.)"
14714
  msgstr "sehr langsam (13 s.)"
14715
 
14716
- #: wppa-settings-autosave.php:4692
14717
  #, fuzzy
14718
  msgid "extremely slow (20 s.)"
14719
  msgstr "extrem langsam (20 s.)"
14720
 
14721
- #: wppa-settings-autosave.php:4708
14722
  #, fuzzy
14723
  msgid "WPPA+ Lightbox global"
14724
  msgstr "WPPA Leuchtkasten global"
14725
 
14726
- #: wppa-settings-autosave.php:4709
14727
  #, fuzzy
14728
  msgid "Use the wppa+ lightbox also for non-wppa images."
14729
  msgstr "Verwenden Sie die WPPA Leuchtkasten auch für Nicht-WPPA Bilder."
14730
 
14731
- #: wppa-settings-autosave.php:4717
14732
  #, fuzzy
14733
  msgid "WPPA+ Lightbox global is a set"
14734
  msgstr "WPPA Leuchtkasten global ist ein Satz"
14735
 
14736
- #: wppa-settings-autosave.php:4718
14737
  #, fuzzy
14738
  msgid "Treat the other images as a set."
14739
  msgstr "Behandeln Sie die anderen Bilder als Set."
14740
 
14741
- #: wppa-settings-autosave.php:4719
14742
  #, fuzzy
14743
  msgid ""
14744
  "If checked, you can scroll through the images in the lightbox view. Requires "
@@ -14747,148 +14778,148 @@ msgstr ""
14747
  "Wenn diese Option aktiviert, können Sie die Bilder in der Lightbox-Ansicht "
14748
  "blättern. Benötigt Punkt 5 zu prüfen."
14749
 
14750
- #: wppa-settings-autosave.php:4726
14751
  #, fuzzy
14752
  msgid "Use hires files"
14753
  msgstr "Verwenden Sie heuert Dateien"
14754
 
14755
- #: wppa-settings-autosave.php:4727
14756
  #, fuzzy
14757
  msgid "Use the highest resolution available for lightbox."
14758
  msgstr "Verwenden Sie die höchste Auflösung für Leuchtkasten verfügbar."
14759
 
14760
- #: wppa-settings-autosave.php:4728
14761
  #, fuzzy
14762
  msgid "Ticking this box is recommended for lightbox fullscreen modes."
14763
  msgstr "Ticken Sie dieses Feld ist für Leuchtkasten Vollbildmodi empfohlen."
14764
 
14765
- #: wppa-settings-autosave.php:4736
14766
  #, fuzzy
14767
  msgid "Videos on lightbox start automaticly."
14768
  msgstr "Videos auf Leuchtkasten automatisch starten."
14769
 
14770
- #: wppa-settings-autosave.php:4745
14771
  #, fuzzy
14772
  msgid "Audio on lightbox start automaticly."
14773
  msgstr "Audio auf Leuchtkasten automatisch starten."
14774
 
14775
- #: wppa-settings-autosave.php:4753
14776
  #, fuzzy
14777
  msgid "Lightbox start mode"
14778
  msgstr "Lightbox Startmodus"
14779
 
14780
- #: wppa-settings-autosave.php:4754
14781
  #, fuzzy
14782
  msgid "The mode lightbox starts in."
14783
  msgstr "Der Modus Leuchtkasten beginnt in."
14784
 
14785
- #: wppa-settings-autosave.php:4757
14786
  #, fuzzy
14787
  msgid "Normal"
14788
- msgstr "Normal"
14789
 
14790
- #: wppa-settings-autosave.php:4758
14791
  #, fuzzy
14792
  msgid "Padded"
14793
  msgstr "Gepolstert"
14794
 
14795
- #: wppa-settings-autosave.php:4759
14796
  #, fuzzy
14797
  msgid "Stretched"
14798
  msgstr "Gestreckt"
14799
 
14800
- #: wppa-settings-autosave.php:4760
14801
  #, fuzzy
14802
  msgid "Clipped"
14803
  msgstr "abgehackt"
14804
 
14805
- #: wppa-settings-autosave.php:4761
14806
  #, fuzzy
14807
  msgid "Real size"
14808
  msgstr "wirkliche Größe"
14809
 
14810
- #: wppa-settings-autosave.php:4792
14811
  #, fuzzy
14812
  msgid "Table V:"
14813
- msgstr "Tabelle V:"
14814
 
14815
- #: wppa-settings-autosave.php:4792
14816
  #, fuzzy
14817
  msgid "Fonts:"
14818
  msgstr "Schriftarten:"
14819
 
14820
- #: wppa-settings-autosave.php:4793
14821
  #, fuzzy
14822
  msgid "This table describes the Fonts used for the wppa+ elements."
14823
  msgstr ""
14824
  "Diese Tabelle beschreibt die Schriftart für die WPPA Elemente verwendet."
14825
 
14826
- #: wppa-settings-autosave.php:4803 wppa-settings-autosave.php:4979
14827
  #, fuzzy
14828
  msgid "Font family"
14829
- msgstr "Schriftart"
14830
 
14831
- #: wppa-settings-autosave.php:4804 wppa-settings-autosave.php:4980
14832
  #, fuzzy
14833
  msgid "Font size"
14834
  msgstr "Schriftgröße"
14835
 
14836
- #: wppa-settings-autosave.php:4805 wppa-settings-autosave.php:4981
14837
  #, fuzzy
14838
  msgid "Font color"
14839
  msgstr "Schriftfarbe"
14840
 
14841
- #: wppa-settings-autosave.php:4806 wppa-settings-autosave.php:4982
14842
  #, fuzzy
14843
  msgid "Font weight"
14844
- msgstr "Schriftstärke"
14845
 
14846
- #: wppa-settings-autosave.php:4816
14847
  #, fuzzy
14848
  msgid "normal"
14849
  msgstr "normal"
14850
 
14851
- #: wppa-settings-autosave.php:4816
14852
  #, fuzzy
14853
  msgid "bold"
14854
  msgstr "fett"
14855
 
14856
- #: wppa-settings-autosave.php:4816
14857
  #, fuzzy
14858
  msgid "bolder"
14859
  msgstr "Dicker"
14860
 
14861
- #: wppa-settings-autosave.php:4816
14862
  #, fuzzy
14863
  msgid "lighter"
14864
  msgstr "Feuerzeug"
14865
 
14866
- #: wppa-settings-autosave.php:4819
14867
  #, fuzzy
14868
  msgid "Album titles"
14869
  msgstr "Alben-Titel"
14870
 
14871
- #: wppa-settings-autosave.php:4820
14872
  #, fuzzy
14873
  msgid "Font used for Album titles."
14874
  msgstr "Font verwendet für Album-Titel."
14875
 
14876
- #: wppa-settings-autosave.php:4821
14877
  #, fuzzy
14878
  msgid "Enter font name, size, color and weight for album cover titles."
14879
  msgstr "Geben Sie Schriftart, Größe, Farbe und Gewicht für Album-Cover-Titel."
14880
 
14881
- #: wppa-settings-autosave.php:4836
14882
  #, fuzzy
14883
  msgid "Slideshow desc"
14884
  msgstr "Diashow ab"
14885
 
14886
- #: wppa-settings-autosave.php:4837
14887
  #, fuzzy
14888
  msgid "Font for slideshow photo descriptions."
14889
  msgstr "Font für Diashow Fotobeschreibungen."
14890
 
14891
- #: wppa-settings-autosave.php:4838
14892
  #, fuzzy
14893
  msgid ""
14894
  "Enter font name, size, color and weight for slideshow photo descriptions."
@@ -14896,43 +14927,43 @@ msgstr ""
14896
  "Geben Sie Schriftart, Größe, Farbe und Gewicht für Diashow "
14897
  "Fotobeschreibungen."
14898
 
14899
- #: wppa-settings-autosave.php:4853
14900
  #, fuzzy
14901
  msgid "Slideshow name"
14902
- msgstr "Diashow Name"
14903
 
14904
- #: wppa-settings-autosave.php:4854
14905
  #, fuzzy
14906
  msgid "Font for slideshow photo names."
14907
  msgstr "Font für Diashow Foto-Namen."
14908
 
14909
- #: wppa-settings-autosave.php:4855
14910
  #, fuzzy
14911
  msgid "Enter font name, size, color and weight for slideshow photo names."
14912
  msgstr "Geben Sie Schriftart, Größe, Farbe und Gewicht für Diashow Foto-Namen."
14913
 
14914
- #: wppa-settings-autosave.php:4870
14915
  #, fuzzy
14916
  msgid "Navigations"
14917
  msgstr "Navigationen"
14918
 
14919
- #: wppa-settings-autosave.php:4871
14920
  #, fuzzy
14921
  msgid "Font for navigations."
14922
  msgstr "Schriftart für Navigations."
14923
 
14924
- #: wppa-settings-autosave.php:4872
14925
  #, fuzzy
14926
  msgid "Enter font name, size, color and weight for navigation items."
14927
  msgstr ""
14928
  "Geben Sie Schriftart, Größe, Farbe und Gewicht für Navigationselemente."
14929
 
14930
- #: wppa-settings-autosave.php:4888
14931
  #, fuzzy
14932
  msgid "Font for text under thumbnails."
14933
  msgstr "Schriftart für Text unter Thumbnails."
14934
 
14935
- #: wppa-settings-autosave.php:4889
14936
  #, fuzzy
14937
  msgid ""
14938
  "Enter font name, size, color and weight for text under thumbnail images."
@@ -14940,101 +14971,101 @@ msgstr ""
14940
  "Geben Sie Schriftart, Größe, Farbe und Gewicht für Text unter "
14941
  "Miniaturbildern."
14942
 
14943
- #: wppa-settings-autosave.php:4905
14944
  #, fuzzy
14945
  msgid "General font in wppa boxes."
14946
  msgstr "Allgemeine Schrift in WPPA Boxen."
14947
 
14948
- #: wppa-settings-autosave.php:4906
14949
  #, fuzzy
14950
  msgid "Enter font name, size, color and weight for all other items."
14951
  msgstr ""
14952
  "Geben Sie Schriftart, Größe, Farbe und Gewicht für alle anderen Elemente."
14953
 
14954
- #: wppa-settings-autosave.php:4922
14955
  #, fuzzy
14956
  msgid "Font in wppa number bars."
14957
  msgstr "Font in WPPA Anzahl Bars."
14958
 
14959
- #: wppa-settings-autosave.php:4923 wppa-settings-autosave.php:4940
14960
  #, fuzzy
14961
  msgid "Enter font name, size, color and weight for numberbar navigation."
14962
  msgstr ""
14963
  "Geben Sie Schriftart, Größe, Farbe und Gewicht für numberbar Navigation."
14964
 
14965
- #: wppa-settings-autosave.php:4938
14966
  #, fuzzy
14967
  msgid "Numbar Active"
14968
  msgstr "Numbar Aktiv"
14969
 
14970
- #: wppa-settings-autosave.php:4939
14971
  #, fuzzy
14972
  msgid "Font in wppa number bars, active item."
14973
  msgstr "Font in WPPA Anzahl Bars, aktive Element."
14974
 
14975
- #: wppa-settings-autosave.php:4956
14976
  #, fuzzy
14977
  msgid "Font in wppa lightbox overlays."
14978
  msgstr "Schriftart in WPPA Leuchtkasten Overlays."
14979
 
14980
- #: wppa-settings-autosave.php:4957
14981
  #, fuzzy
14982
  msgid "Enter font name, size, color and weight for wppa lightbox overlays."
14983
  msgstr ""
14984
  "Geben Sie Schriftart, Größe, Farbe und Gewicht für WPPA Leuchtkasten "
14985
  "Overlays."
14986
 
14987
- #: wppa-settings-autosave.php:4992
14988
  #, fuzzy
14989
  msgid "Table VI:"
14990
- msgstr "Tabelle VI:"
14991
 
14992
- #: wppa-settings-autosave.php:4992
14993
  #, fuzzy
14994
  msgid "Links:"
14995
- msgstr "Tweak - Nofollow gelten Verbindungen."
14996
 
14997
- #: wppa-settings-autosave.php:4993
14998
  #, fuzzy
14999
  msgid "This table defines the link types and pages."
15000
  msgstr "Diese Tabelle definiert die Verbindungstypen und Seiten."
15001
 
15002
- #: wppa-settings-autosave.php:5004 wppa-settings-autosave.php:6010
15003
  #, fuzzy
15004
  msgid "Link page"
15005
  msgstr "Link-Seite"
15006
 
15007
- #: wppa-settings-autosave.php:5006 wppa-settings-autosave.php:6012
15008
  #, fuzzy
15009
  msgid "Photo specific link overrules"
15010
  msgstr "Foto spezifischen Link überstimmt"
15011
 
15012
- #: wppa-settings-autosave.php:5006 wppa-settings-autosave.php:6012
15013
  #, fuzzy
15014
  msgid "PSO"
15015
  msgstr "PSO"
15016
 
15017
- #: wppa-settings-autosave.php:5051
15018
  #, fuzzy
15019
  msgid "Links from images in WPPA+ Widgets"
15020
  msgstr "Links von Bildern in WPPA Widgets"
15021
 
15022
- #: wppa-settings-autosave.php:5053
15023
  #, fuzzy
15024
  msgid "PotdWidget"
15025
  msgstr "PotdWidget"
15026
 
15027
- #: wppa-settings-autosave.php:5054
15028
  #, fuzzy
15029
  msgid "Photo Of The Day widget link."
15030
  msgstr "Foto des Tages Widget-Link."
15031
 
15032
- #: wppa-settings-autosave.php:5055
15033
  #, fuzzy
15034
  msgid "Select the type of link the photo of the day points to."
15035
  msgstr "Wählen Sie die Art der Verknüpfung das Foto des Tages zeigt."
15036
 
15037
- #: wppa-settings-autosave.php:5056
15038
  #, fuzzy
15039
  msgid ""
15040
  "If you select 'defined on widget admin page' you can manually enter a link "
@@ -15043,219 +15074,219 @@ msgstr ""
15043
  "Wenn Sie 'definiert auf Widget Admin-Seite \"Sie manuell einen Link und "
15044
  "Titel auf dem Foto des Tages Widget Admin-Seite eingeben."
15045
 
15046
- #: wppa-settings-autosave.php:5071 wppa-settings-autosave.php:5114
15047
- #: wppa-settings-autosave.php:5153 wppa-settings-autosave.php:5192
15048
- #: wppa-settings-autosave.php:5237 wppa-settings-autosave.php:5285
15049
- #: wppa-settings-autosave.php:5332 wppa-settings-autosave.php:5379
15050
- #: wppa-settings-autosave.php:5467
15051
  #, fuzzy
15052
  msgid "a plain page without a querystring."
15053
  msgstr "eine einfache Seite ohne Abfragezeichenfolgeflag."
15054
 
15055
- #: wppa-settings-autosave.php:5072 wppa-settings-autosave.php:5115
15056
- #: wppa-settings-autosave.php:5154 wppa-settings-autosave.php:5193
15057
- #: wppa-settings-autosave.php:5238 wppa-settings-autosave.php:5286
15058
- #: wppa-settings-autosave.php:5333 wppa-settings-autosave.php:5380
15059
- #: wppa-settings-autosave.php:5426 wppa-settings-autosave.php:5468
15060
- #: wppa-settings-autosave.php:5516 wppa-settings-autosave.php:5558
15061
- #: wppa-settings-autosave.php:5597
15062
  #, fuzzy
15063
  msgid "lightbox."
15064
  msgstr "Lightbox"
15065
 
15066
- #: wppa-settings-autosave.php:5097
15067
  #, fuzzy
15068
  msgid "SlideWidget"
15069
  msgstr "SlideWidget"
15070
 
15071
- #: wppa-settings-autosave.php:5098
15072
  #, fuzzy
15073
  msgid "Slideshow widget photo link."
15074
  msgstr "Diashow-Widget Foto-Link."
15075
 
15076
- #: wppa-settings-autosave.php:5099
15077
  #, fuzzy
15078
  msgid "Select the type of link the slideshow photos point to."
15079
  msgstr "Wählen Sie die Art der Verknüpfung der Diashow Fotos zu zeigen."
15080
 
15081
- #: wppa-settings-autosave.php:5140
15082
  #, fuzzy
15083
  msgid "Album widget"
15084
  msgstr "Album-Widget"
15085
 
15086
- #: wppa-settings-autosave.php:5141
15087
  #, fuzzy
15088
  msgid "Album widget thumbnail link"
15089
  msgstr "Album-Widget Thumbnail-Link"
15090
 
15091
- #: wppa-settings-autosave.php:5142
15092
  #, fuzzy
15093
  msgid "Select the type of link the album widget photos point to."
15094
  msgstr "Wählen Sie die Art der Verknüpfung der Album-Widget Fotos zu zeigen."
15095
 
15096
- #: wppa-settings-autosave.php:5151
15097
  #, fuzzy
15098
  msgid "subalbums and thumbnails."
15099
  msgstr "Unteralben und Miniaturen."
15100
 
15101
- #: wppa-settings-autosave.php:5152
15102
  #, fuzzy
15103
  msgid "slideshow."
15104
  msgstr "Diaschau"
15105
 
15106
- #: wppa-settings-autosave.php:5175
15107
  #, fuzzy
15108
  msgid "ThumbnailWidget"
15109
  msgstr "ThumbnailWidget"
15110
 
15111
- #: wppa-settings-autosave.php:5176
15112
  #, fuzzy
15113
  msgid "Thumbnail widget photo link."
15114
  msgstr "Thumbnail-Widget Foto-Link."
15115
 
15116
- #: wppa-settings-autosave.php:5177
15117
  #, fuzzy
15118
  msgid "Select the type of link the thumbnail photos point to."
15119
  msgstr "Wählen Sie die Art der Verbindung die Miniaturfotos zu zeigen."
15120
 
15121
- #: wppa-settings-autosave.php:5190 wppa-settings-autosave.php:5235
15122
- #: wppa-settings-autosave.php:5283 wppa-settings-autosave.php:5330
15123
- #: wppa-settings-autosave.php:5377 wppa-settings-autosave.php:5465
15124
  #, fuzzy
15125
  msgid "the single photo in the style of a slideshow."
15126
  msgstr "das einzige Foto im Stil einer Diashow."
15127
 
15128
- #: wppa-settings-autosave.php:5191 wppa-settings-autosave.php:5236
15129
- #: wppa-settings-autosave.php:5284 wppa-settings-autosave.php:5331
15130
- #: wppa-settings-autosave.php:5378 wppa-settings-autosave.php:5466
15131
- #: wppa-settings-autosave.php:5599
15132
  #, fuzzy
15133
  msgid "the fs photo with download and print buttons."
15134
  msgstr "die fs Foto mit Download und Drucktasten."
15135
 
15136
- #: wppa-settings-autosave.php:5218
15137
  #, fuzzy
15138
  msgid "TopTenWidget"
15139
  msgstr "TopTenWidget"
15140
 
15141
- #: wppa-settings-autosave.php:5219
15142
  #, fuzzy
15143
  msgid "TopTen widget photo link."
15144
  msgstr "TopTen-Widget Foto-Link."
15145
 
15146
- #: wppa-settings-autosave.php:5220
15147
  #, fuzzy
15148
  msgid "Select the type of link the top ten photos point to."
15149
  msgstr "Wählen Sie die Art der Verknüpfung der Top-Ten-Fotos zu zeigen."
15150
 
15151
- #: wppa-settings-autosave.php:5231
15152
  #, fuzzy
15153
  msgid "the content of the virtual topten album."
15154
  msgstr "der Inhalt des virtuellen topten album."
15155
 
15156
- #: wppa-settings-autosave.php:5232 wppa-settings-autosave.php:5280
15157
- #: wppa-settings-autosave.php:5327 wppa-settings-autosave.php:5374
15158
  #, fuzzy
15159
  msgid "the content of the thumbnails album."
15160
  msgstr "der Inhalt des Thumbnails album."
15161
 
15162
- #: wppa-settings-autosave.php:5266
15163
  #, fuzzy
15164
  msgid "LasTenWidget"
15165
  msgstr "LasTenWidget"
15166
 
15167
- #: wppa-settings-autosave.php:5267
15168
  #, fuzzy
15169
  msgid "Last Ten widget photo link."
15170
  msgstr "Last Ten-Widget Foto-Link."
15171
 
15172
- #: wppa-settings-autosave.php:5268
15173
  #, fuzzy
15174
  msgid "Select the type of link the last ten photos point to."
15175
  msgstr "Wählen Sie die Art der Verbindung in den letzten zehn Fotos zu zeigen."
15176
 
15177
- #: wppa-settings-autosave.php:5279
15178
  #, fuzzy
15179
  msgid "the content of the virtual lasten album."
15180
  msgstr "der Inhalt des virtuellen lasten album."
15181
 
15182
- #: wppa-settings-autosave.php:5313
15183
  #, fuzzy
15184
  msgid "CommentWidget"
15185
  msgstr "CommentWidget"
15186
 
15187
- #: wppa-settings-autosave.php:5314
15188
  #, fuzzy
15189
  msgid "Comment widget photo link."
15190
  msgstr "Kommentar-Widget Foto-Link."
15191
 
15192
- #: wppa-settings-autosave.php:5315
15193
  #, fuzzy
15194
  msgid "Select the type of link the comment widget photos point to."
15195
  msgstr ""
15196
  "Wählen Sie die Art der Verknüpfung der Kommentar-Widget Fotos zu zeigen."
15197
 
15198
- #: wppa-settings-autosave.php:5326
15199
  #, fuzzy
15200
  msgid "the content of the virtual comten album."
15201
  msgstr "der Inhalt des virtuellen comten album."
15202
 
15203
- #: wppa-settings-autosave.php:5360
15204
  #, fuzzy
15205
  msgid "FeaTenWidget"
15206
  msgstr "FeaTenWidget"
15207
 
15208
- #: wppa-settings-autosave.php:5361
15209
  #, fuzzy
15210
  msgid "FeaTen widget photo link."
15211
  msgstr "FeaTen Widget Foto-Link."
15212
 
15213
- #: wppa-settings-autosave.php:5362
15214
  #, fuzzy
15215
  msgid "Select the type of link the featured ten photos point to."
15216
  msgstr ""
15217
  "Wählen Sie die Art der Verbindung die mit insgesamt zehn Fotos zu zeigen."
15218
 
15219
- #: wppa-settings-autosave.php:5373
15220
  #, fuzzy
15221
  msgid "the content of the virtual featen album."
15222
  msgstr "der Inhalt des virtuellen featen album."
15223
 
15224
- #: wppa-settings-autosave.php:5406
15225
  #, fuzzy
15226
  msgid "Links from other WPPA+ images"
15227
  msgstr "Links von anderen WPPA Bilder"
15228
 
15229
- #: wppa-settings-autosave.php:5408
15230
  #, fuzzy
15231
  msgid "Cover Image"
15232
- msgstr "Titelbild"
15233
 
15234
- #: wppa-settings-autosave.php:5409
15235
  #, fuzzy
15236
  msgid "The link from the cover image of an album."
15237
  msgstr "Die Verbindung aus dem Titelbild eines Albums."
15238
 
15239
- #: wppa-settings-autosave.php:5410
15240
  #, fuzzy
15241
  msgid "Select the type of link the coverphoto points to."
15242
  msgstr "Wählen Sie die Art der Verknüpfung der Coverfoto zeigt."
15243
 
15244
- #: wppa-settings-autosave.php:5411
15245
  #, fuzzy
15246
  msgid "The link from the album title can be configured on the Edit Album page."
15247
  msgstr ""
15248
  "Der Link aus dem Albumtitel auf dem Album bearbeiten Seite konfiguriert "
15249
  "werden."
15250
 
15251
- #: wppa-settings-autosave.php:5412
15252
  #, fuzzy
15253
  msgid "This link will be used for the photo also if you select: same as title."
15254
  msgstr ""
15255
  "Dieser Link wird für das Foto verwendet werden, auch wenn Sie wählen: wie "
15256
  "Titel."
15257
 
15258
- #: wppa-settings-autosave.php:5413
15259
  #, fuzzy
15260
  msgid ""
15261
  "If you specify New Tab on this line, all links from the cover will open a "
@@ -15264,36 +15295,36 @@ msgstr ""
15264
  "Wenn Sie New Tab auf dieser Linie angeben, werden alle Links von der "
15265
  "Abdeckung wird eine neue Registerkarte öffnen,"
15266
 
15267
- #: wppa-settings-autosave.php:5414
15268
  #, fuzzy
15269
  msgid "except when Ajax is activated on Table IV-A1."
15270
  msgstr "es sei denn, Ajax auf Tabelle IV-A1 aktiviert ist."
15271
 
15272
- #: wppa-settings-autosave.php:5427
15273
  #, fuzzy
15274
  msgid "a slideshow starting at the photo"
15275
  msgstr "eine Diashow auf dem Foto beginnt"
15276
 
15277
- #: wppa-settings-autosave.php:5448
15278
  #, fuzzy
15279
  msgid "Thumbnail"
15280
  msgstr "Fehlende Miniaturansicht #%s"
15281
 
15282
- #: wppa-settings-autosave.php:5449
15283
  #, fuzzy
15284
  msgid "Thumbnail link."
15285
  msgstr "Link Vorschaubild"
15286
 
15287
- #: wppa-settings-autosave.php:5450 wppa-settings-autosave.php:5500
15288
- #: wppa-settings-autosave.php:5542
15289
  #, fuzzy
15290
  msgid "Select the type of link you want, or no link at all."
15291
  msgstr ""
15292
  "Wählen Sie die Art der Verbindung Sie wünschen, oder keine Verbindung "
15293
  "überhaupt."
15294
 
15295
- #: wppa-settings-autosave.php:5451 wppa-settings-autosave.php:5501
15296
- #: wppa-settings-autosave.php:5543
15297
  #, fuzzy
15298
  msgid ""
15299
  "If you select the fullsize photo on its own, it will be stretched to fit, "
@@ -15302,8 +15333,8 @@ msgstr ""
15302
  "Wenn Sie die Gross Foto auf seiner eigenen wählen, wird sie gedehnt werden, "
15303
  "passen, unabhängig von dieser Einstellung."
15304
 
15305
- #: wppa-settings-autosave.php:5452 wppa-settings-autosave.php:5502
15306
- #: wppa-settings-autosave.php:5544
15307
  #, fuzzy
15308
  msgid ""
15309
  "Note that a page must have at least [wppa][/wppa] in its content to show up "
@@ -15312,37 +15343,37 @@ msgstr ""
15312
  "Beachten Sie, dass eine Seite muss mindestens [WPPA] [/ WPPA] in seinem "
15313
  "Inhalt das Foto (s) zu zeigen."
15314
 
15315
- #: wppa-settings-autosave.php:5481
15316
  #, fuzzy
15317
  msgid "Auto Page"
15318
  msgstr "Auto Page"
15319
 
15320
- #: wppa-settings-autosave.php:5498
15321
  #, fuzzy
15322
  msgid "Sphoto"
15323
  msgstr "Sphoto"
15324
 
15325
- #: wppa-settings-autosave.php:5499
15326
  #, fuzzy
15327
  msgid "Single photo link."
15328
  msgstr "Einzel Foto"
15329
 
15330
- #: wppa-settings-autosave.php:5540
15331
  #, fuzzy
15332
  msgid "Mphoto"
15333
  msgstr "mphoto"
15334
 
15335
- #: wppa-settings-autosave.php:5541
15336
  #, fuzzy
15337
  msgid "Media-like photo link."
15338
  msgstr "Medien-wie Foto-Link."
15339
 
15340
- #: wppa-settings-autosave.php:5583
15341
  #, fuzzy
15342
  msgid "Slideshow fullsize link"
15343
  msgstr "Diashow Gross Link"
15344
 
15345
- #: wppa-settings-autosave.php:5584
15346
  #, fuzzy
15347
  msgid ""
15348
  "You can overrule lightbox but not big browse buttons with the photo specifc "
@@ -15351,38 +15382,38 @@ msgstr ""
15351
  "Sie können Leuchtkasten aber nicht groß Browse-Buttons mit dem Foto specifc "
15352
  "Link außer Kraft setzen."
15353
 
15354
- #: wppa-settings-autosave.php:5585
15355
  #, fuzzy
15356
  msgid "fullsize slideshow can only be set by the WPPA_SET shortcode."
15357
  msgstr ""
15358
  "Gross Diashow kann nur durch den WPPA_SET Shortcode eingestellt werden."
15359
 
15360
- #: wppa-settings-autosave.php:5598
15361
  #, fuzzy
15362
  msgid "lightbox single photos."
15363
  msgstr "einzelne Fotos Leuchtkasten."
15364
 
15365
- #: wppa-settings-autosave.php:5600
15366
  #, fuzzy
15367
  msgid "the thumbnails."
15368
  msgstr "Miniaturbilden"
15369
 
15370
- #: wppa-settings-autosave.php:5601
15371
  #, fuzzy
15372
  msgid "fullsize slideshow"
15373
  msgstr "Gross Diashow"
15374
 
15375
- #: wppa-settings-autosave.php:5626
15376
  #, fuzzy
15377
  msgid "Film linktype"
15378
  msgstr "Film Linktyp"
15379
 
15380
- #: wppa-settings-autosave.php:5627
15381
  #, fuzzy
15382
  msgid "Direct access goto image in:"
15383
  msgstr "Direkter Zugang goto Bild:"
15384
 
15385
- #: wppa-settings-autosave.php:5628
15386
  #, fuzzy
15387
  msgid ""
15388
  "Select the action to be taken when the user clicks on a filmstrip image."
@@ -15390,226 +15421,226 @@ msgstr ""
15390
  "Wählen Sie die Aktion getroffen werden, wenn der Benutzer auf einem "
15391
  "Filmstreifen Bild klickt."
15392
 
15393
- #: wppa-settings-autosave.php:5633
15394
  #, fuzzy
15395
  msgid "slideshow window"
15396
  msgstr "Diashow-Fenster"
15397
 
15398
- #: wppa-settings-autosave.php:5634
15399
  #, fuzzy
15400
  msgid "lightbox overlay"
15401
  msgstr "Leuchtkasten Overlay"
15402
 
15403
- #: wppa-settings-autosave.php:5649
15404
  #, fuzzy
15405
  msgid "Other links"
15406
  msgstr "Weitere Links"
15407
 
15408
- #: wppa-settings-autosave.php:5651
15409
  #, fuzzy
15410
  msgid "Download Link (aka Art Monkey link)"
15411
  msgstr "Download Link (auch bekannt als Kunst Affe Link)"
15412
 
15413
- #: wppa-settings-autosave.php:5652
15414
  #, fuzzy
15415
  msgid "Makes the photo name a download button."
15416
  msgstr "Macht das Foto einen Download-Button nennen."
15417
 
15418
- #: wppa-settings-autosave.php:5653
15419
  #, fuzzy
15420
  msgid "Link Photo name in slideshow to file or zip with photoname as filename."
15421
  msgstr ""
15422
  "Link Foto Name in der Diashow-Datei oder Postleitzahl mit photoname als "
15423
  "Dateinamen."
15424
 
15425
- #: wppa-settings-autosave.php:5657 wppa-settings-autosave.php:5704
15426
  #, fuzzy
15427
  msgid "image file"
15428
- msgstr "Bilddatei"
15429
 
15430
- #: wppa-settings-autosave.php:5658 wppa-settings-autosave.php:5705
15431
  #, fuzzy
15432
  msgid "zipped image"
15433
  msgstr "Reißverschluss-Bild"
15434
 
15435
- #: wppa-settings-autosave.php:5671
15436
  #, fuzzy
15437
  msgid "Art Monkey Source"
15438
  msgstr "Kunst Affe Quelle"
15439
 
15440
- #: wppa-settings-autosave.php:5672
15441
  #, fuzzy
15442
  msgid "Use Source file for art monkey link if available."
15443
  msgstr "Verwenden Sie Quelldatei für die Kunst Affe Link, falls verfügbar."
15444
 
15445
- #: wppa-settings-autosave.php:5681
15446
  #, fuzzy
15447
  msgid "Art Monkey Display"
15448
  msgstr "Kunst Affe Anzeige"
15449
 
15450
- #: wppa-settings-autosave.php:5682
15451
  #, fuzzy
15452
  msgid "Select button or link ( text )."
15453
  msgstr "Wählen Sie Button oder Link (Text)."
15454
 
15455
- #: wppa-settings-autosave.php:5687
15456
  #, fuzzy
15457
  msgid "Textlink"
15458
  msgstr "Textlink"
15459
 
15460
- #: wppa-settings-autosave.php:5699
15461
  #, fuzzy
15462
  msgid "Popup Download Link"
15463
  msgstr "Popup Download Link"
15464
 
15465
- #: wppa-settings-autosave.php:5700
15466
  #, fuzzy
15467
  msgid "Configure the download link on fullsize popups."
15468
  msgstr "Konfigurieren Sie den Download-Link auf Gross Popups."
15469
 
15470
- #: wppa-settings-autosave.php:5701
15471
  #, fuzzy
15472
  msgid "Link fullsize popup download button to either image or zip file."
15473
  msgstr "Link LISTEN Popup Download-Button entweder Bild oder ZIP-Datei."
15474
 
15475
- #: wppa-settings-autosave.php:5717
15476
  #, fuzzy
15477
  msgid "Download link on lightbox"
15478
  msgstr "Download-Link auf Leuchtkasten"
15479
 
15480
- #: wppa-settings-autosave.php:5718
15481
  #, fuzzy
15482
  msgid "Art monkey link on lightbox photo names."
15483
  msgstr "Kunst Affe Link auf Leuchtkasten Foto-Namen."
15484
 
15485
- #: wppa-settings-autosave.php:5727
15486
  #, fuzzy
15487
  msgid "Album download link"
15488
  msgstr "Album Download-Link"
15489
 
15490
- #: wppa-settings-autosave.php:5728
15491
  #, fuzzy
15492
  msgid "Place an album download link on the album covers"
15493
  msgstr "Legen Sie ein Album Download-Link auf die Album-Cover"
15494
 
15495
- #: wppa-settings-autosave.php:5729
15496
  #, fuzzy
15497
  msgid "Creates a download zipfile containing the photos of the album"
15498
  msgstr "Erstellt eine Download zipfile die Fotos des Albums enthält,"
15499
 
15500
- #: wppa-settings-autosave.php:5737
15501
  #, fuzzy
15502
  msgid "Album download Source"
15503
  msgstr "Album herunterladen Quelle"
15504
 
15505
- #: wppa-settings-autosave.php:5738
15506
  #, fuzzy
15507
  msgid "Use Source file for album download link if available."
15508
  msgstr "Verwenden Sie Quelldatei für das Album Download-Link, falls verfügbar."
15509
 
15510
- #: wppa-settings-autosave.php:5747
15511
  #, fuzzy
15512
  msgid "Tagcloud Link"
15513
  msgstr "Tagcloud Verbindung"
15514
 
15515
- #: wppa-settings-autosave.php:5748
15516
  #, fuzzy
15517
  msgid "Configure the link from the tags in the tag cloud."
15518
  msgstr "Konfigurieren Sie den Link aus den Tags in der Tag-Cloud."
15519
 
15520
- #: wppa-settings-autosave.php:5749
15521
  #, fuzzy
15522
  msgid "Link the tag words to ether the thumbnails or the slideshow."
15523
  msgstr ""
15524
  "Verknüpfen Sie die Tag-Wörter, um die Übersicht oder die Diashow zu Ether."
15525
 
15526
- #: wppa-settings-autosave.php:5773 wppa-settings-autosave.php:5806
15527
- #: wppa-settings-autosave.php:5950
15528
  #, fuzzy
15529
  msgid "Occur"
15530
- msgstr "Abweichungen."
15531
 
15532
- #: wppa-settings-autosave.php:5780
15533
  #, fuzzy
15534
  msgid "Multitag Link"
15535
  msgstr "Multitag- Verbindung"
15536
 
15537
- #: wppa-settings-autosave.php:5781
15538
  #, fuzzy
15539
  msgid "Configure the link from the multitag selection."
15540
  msgstr "Konfigurieren Sie die Verbindung von der multitag Auswahl."
15541
 
15542
- #: wppa-settings-autosave.php:5782
15543
  #, fuzzy
15544
  msgid "Link to ether the thumbnails or the slideshow."
15545
  msgstr "Link zu Äther die Thumbnails oder die Diashow."
15546
 
15547
- #: wppa-settings-autosave.php:5813
15548
  #, fuzzy
15549
  msgid "Super View Landing"
15550
  msgstr "Super View Landing"
15551
 
15552
- #: wppa-settings-autosave.php:5814
15553
  #, fuzzy
15554
  msgid "The landing page for the Super View widget."
15555
  msgstr "Die Zielseite für die Super View-Widget."
15556
 
15557
- #: wppa-settings-autosave.php:5822
15558
  #, fuzzy
15559
  msgid "Defined by the visitor"
15560
  msgstr "Definiert durch den Besucher"
15561
 
15562
- #: wppa-settings-autosave.php:5835
15563
  #, fuzzy
15564
  msgid "Uploader Landing"
15565
  msgstr "Uploader Landing"
15566
 
15567
- #: wppa-settings-autosave.php:5836
15568
  #, fuzzy
15569
  msgid "Select the landing page for the Uploader Widget"
15570
  msgstr "Wählen Sie die Zielseite für die Uploader Widget"
15571
 
15572
- #: wppa-settings-autosave.php:5856
15573
  #, fuzzy
15574
  msgid "Bestof Landing"
15575
  msgstr "Bestenliste Landing"
15576
 
15577
- #: wppa-settings-autosave.php:5857
15578
  #, fuzzy
15579
  msgid "Select the landing page for the BestOf Widget / Box"
15580
  msgstr "Wählen Sie die Zielseite für die BestOf Widget / Box"
15581
 
15582
- #: wppa-settings-autosave.php:5877
15583
  #, fuzzy
15584
  msgid "Album navigator Link"
15585
  msgstr "Album Navigator-Link"
15586
 
15587
- #: wppa-settings-autosave.php:5878
15588
  #, fuzzy
15589
  msgid "Select link type and page for the Album navigator Widget"
15590
  msgstr "Wählen Sie Verbindungstyp und Seite für das Album Navigator Widget"
15591
 
15592
- #: wppa-settings-autosave.php:5906
15593
  #, fuzzy
15594
  msgid "Supersearch Landing"
15595
  msgstr "Super Landing"
15596
 
15597
- #: wppa-settings-autosave.php:5907
15598
  #, fuzzy
15599
  msgid "Select the landing page for the Supersearch Box"
15600
  msgstr "Wählen Sie die Zielseite für die Super Box"
15601
 
15602
- #: wppa-settings-autosave.php:5927
15603
  #, fuzzy
15604
  msgid "SM widget return"
15605
  msgstr "SM-Widget Rückkehr"
15606
 
15607
- #: wppa-settings-autosave.php:5928
15608
  #, fuzzy
15609
  msgid "Select the return link for social media from widgets"
15610
  msgstr "Wählen Sie die Rückverbindung für Social Media von Widgets"
15611
 
15612
- #: wppa-settings-autosave.php:5929
15613
  #, fuzzy
15614
  msgid ""
15615
  "If you select Landing page, and it wont work, it may be required to set the "
@@ -15619,7 +15650,7 @@ msgstr ""
15619
  "erforderlich sein, um die auf die laufende Nummer der Landung Shortcode auf "
15620
  "der Seite Occur gesetzt."
15621
 
15622
- #: wppa-settings-autosave.php:5930
15623
  #, fuzzy
15624
  msgid ""
15625
  "Normally it is 1, but you can try 2 etc. Always create a new shared link to "
@@ -15628,74 +15659,74 @@ msgstr ""
15628
  "Normalerweise ist es 1, aber man kann versuchen, 2 usw. immer eine neue "
15629
  "gemeinsame Verknüpfung erstellen eine Einstellung zu testen."
15630
 
15631
- #: wppa-settings-autosave.php:5938
15632
  #, fuzzy
15633
  msgid "Home page"
15634
  msgstr "Startseite"
15635
 
15636
- #: wppa-settings-autosave.php:5959
15637
  #, fuzzy
15638
  msgid "Album cover subalbums link"
15639
  msgstr "Album-Cover Unteralben Link"
15640
 
15641
- #: wppa-settings-autosave.php:5960
15642
  #, fuzzy
15643
  msgid ""
15644
  "Select the linktype and display type for sub-albums on parent album covers."
15645
  msgstr ""
15646
  "Wählen Sie den Linktyp und Anzeigetyp für Unteralben auf Mutter Album-Cover."
15647
 
15648
- #: wppa-settings-autosave.php:5968
15649
  #, fuzzy
15650
  msgid "No link at all"
15651
  msgstr "Keine Verbindung überhaupt"
15652
 
15653
- #: wppa-settings-autosave.php:5969
15654
  #, fuzzy
15655
  msgid "Thumbnails and covers"
15656
  msgstr "Thumbnails und Abdeckungen"
15657
 
15658
- #: wppa-settings-autosave.php:5970
15659
  #, fuzzy
15660
  msgid "Slideshow or covers"
15661
  msgstr "Diashow oder Abdeckungen"
15662
 
15663
- #: wppa-settings-autosave.php:5980
15664
  #, fuzzy
15665
  msgid "No display at all"
15666
  msgstr "Keine Anzeige bei allen"
15667
 
15668
- #: wppa-settings-autosave.php:5981
15669
  #, fuzzy
15670
  msgid "A list with sub(sub) albums"
15671
  msgstr "Eine Liste mit sub (sub) Alben"
15672
 
15673
- #: wppa-settings-autosave.php:5982
15674
  #, fuzzy
15675
  msgid "A list of children only"
15676
  msgstr "nur eine Liste von Kindern"
15677
 
15678
- #: wppa-settings-autosave.php:5983
15679
  #, fuzzy
15680
  msgid "An enumeration of names"
15681
  msgstr "Eine Aufzählung von Namen"
15682
 
15683
- #: wppa-settings-autosave.php:5984
15684
  #, fuzzy
15685
  msgid "Micro thumbnails"
15686
  msgstr "Micro Thumbnails"
15687
 
15688
- #: wppa-settings-autosave.php:6022
15689
  #, fuzzy
15690
  msgid "Table VII:"
15691
- msgstr "Tabelle VII:"
15692
 
15693
- #: wppa-settings-autosave.php:6022
15694
  #, fuzzy
15695
  msgid "Permissions and Restrictions:"
15696
  msgstr "Berechtigungen und Einschränkungen:"
15697
 
15698
- #: wppa-settings-autosave.php:6023
15699
  #, fuzzy
15700
  msgid ""
15701
  "This table describes the access settings for admin and front-end activities."
@@ -15703,27 +15734,27 @@ msgstr ""
15703
  "Diese Tabelle beschreibt die Zugriffseinstellungen für Admin und Front-End-"
15704
  "Aktivitäten."
15705
 
15706
- #: wppa-settings-autosave.php:6044
15707
  #, fuzzy
15708
  msgid "Moderate P+C"
15709
  msgstr "Moderate P C"
15710
 
15711
- #: wppa-settings-autosave.php:6048
15712
  #, fuzzy
15713
  msgid "Comment&nbsp;Admin"
15714
  msgstr "Kommentar Admin"
15715
 
15716
- #: wppa-settings-autosave.php:6049
15717
  #, fuzzy
15718
  msgid "Help & Info"
15719
- msgstr "Hilfe und Information"
15720
 
15721
- #: wppa-settings-autosave.php:6051
15722
  #, fuzzy
15723
  msgid "Role"
15724
  msgstr "Rolle"
15725
 
15726
- #: wppa-settings-autosave.php:6060
15727
  #, fuzzy
15728
  msgid ""
15729
  "Admin settings per user role. Enabling these settings will overrule the "
@@ -15733,98 +15764,98 @@ msgstr ""
15733
  "die Front-End-Einstellungen für den jeweiligen Benutzerrolle außer Kraft "
15734
  "setzen"
15735
 
15736
- #: wppa-settings-autosave.php:6084
15737
  #, fuzzy
15738
  msgid "Frontend create Albums and upload Photos enabling and limiting settings"
15739
  msgstr ""
15740
  "Frontend erstellen Alben und Hochladen von Fotos ermöglicht, und die "
15741
  "Begrenzung der Einstellungen"
15742
 
15743
- #: wppa-settings-autosave.php:6086
15744
  #, fuzzy
15745
  msgid "User create Albums"
15746
  msgstr "Benutzer erstellen Alben"
15747
 
15748
- #: wppa-settings-autosave.php:6087
15749
  #, fuzzy
15750
  msgid "Enable frontend album creation."
15751
  msgstr "Aktivieren Frontend Album Schöpfung."
15752
 
15753
- #: wppa-settings-autosave.php:6088
15754
  #, fuzzy
15755
  msgid "If you check this item, frontend album creation will be enabled."
15756
  msgstr ""
15757
  "Wenn Sie diesen Artikel zu überprüfen, werden Frontend Album Erstellung "
15758
  "aktiviert werden."
15759
 
15760
- #: wppa-settings-autosave.php:6098
15761
  #, fuzzy
15762
  msgid "User edit album"
15763
  msgstr "Fotoalbum bearbeiten"
15764
 
15765
- #: wppa-settings-autosave.php:6099
15766
  msgid "Enable frontend edit album name and description."
15767
  msgstr "Aktivieren Frontend bearbeiten Albumname und Beschreibung."
15768
 
15769
- #: wppa-settings-autosave.php:6109
15770
  #, fuzzy
15771
  msgid "User delete Albums"
15772
- msgstr "Benutzer löschen Alben"
15773
 
15774
- #: wppa-settings-autosave.php:6110
15775
  #, fuzzy
15776
  msgid "Enable frontend album deletion"
15777
  msgstr "Aktivieren Frontend Album Löschen"
15778
 
15779
- #: wppa-settings-autosave.php:6111
15780
  #, fuzzy
15781
  msgid "If you check this item, frontend album deletion will be enabled."
15782
  msgstr ""
15783
  "Wenn Sie diesen Artikel zu überprüfen, werden Frontend Album Löschen "
15784
  "freigegeben werden."
15785
 
15786
- #: wppa-settings-autosave.php:6121
15787
  #, fuzzy
15788
  msgid "User create Albums login"
15789
  msgstr "Benutzer erstellen Alben Login"
15790
 
15791
- #: wppa-settings-autosave.php:6122
15792
  #, fuzzy
15793
  msgid "Frontend album creation requires the user is logged in."
15794
  msgstr "Frontend Erstellen eines Albums muss der Benutzer angemeldet ist."
15795
 
15796
- #: wppa-settings-autosave.php:6133
15797
  #, fuzzy
15798
  msgid "User create Albums Captcha"
15799
  msgstr "Benutzer erstellen Alben-Check Captcha"
15800
 
15801
- #: wppa-settings-autosave.php:6134
15802
  #, fuzzy
15803
  msgid "Uer must answer security question."
15804
  msgstr "Uer müssen Sicherheitsfrage beantworten."
15805
 
15806
- #: wppa-settings-autosave.php:6159
15807
  #, fuzzy, php-format
15808
  msgid "Upload limit %s"
15809
  msgstr "Hochladebegrenzung"
15810
 
15811
- #: wppa-settings-autosave.php:6160
15812
  #, fuzzy
15813
  msgid "Limit upload capacity for logged out users."
15814
  msgstr "Begrenzen Sie Upload-Kapazität für abgemeldet Benutzer."
15815
 
15816
- #: wppa-settings-autosave.php:6161
15817
  #, fuzzy, php-format
15818
  msgid "Limit upload capacity for the user role %s."
15819
  msgstr "Begrenzen Sie Upload-Kapazität für die Benutzerrolle%s."
15820
 
15821
- #: wppa-settings-autosave.php:6162
15822
  #, fuzzy
15823
  msgid "This setting has only effect when Table VII-B2 is unchecked."
15824
  msgstr ""
15825
  "Diese Einstellung ist nur wirksam, wenn Tabelle VII-B2 nicht aktiviert ist."
15826
 
15827
- #: wppa-settings-autosave.php:6163
15828
  #, fuzzy
15829
  msgid ""
15830
  "This limitation only applies to frontend uploads when the same userrole does "
@@ -15833,23 +15864,23 @@ msgstr ""
15833
  "Diese Einschränkung gilt nur Uploads auf das Frontend, wenn die gleichen "
15834
  "Userrole das Hochladen Checkbox muss nicht geprüft in Tabelle VII-A."
15835
 
15836
- #: wppa-settings-autosave.php:6164 wppa-settings-autosave.php:6180
15837
- #: wppa-settings-autosave.php:7997
15838
  #, fuzzy
15839
  msgid "A value of 0 means: no limit."
15840
  msgstr "Ein Wert von 0 bedeutet: keine Begrenzung."
15841
 
15842
- #: wppa-settings-autosave.php:6177
15843
  #, fuzzy, php-format
15844
  msgid "Album limit %s"
15845
  msgstr "Album Limit%s"
15846
 
15847
- #: wppa-settings-autosave.php:6178
15848
  #, fuzzy, php-format
15849
  msgid "Limit number of albums for the user role %s."
15850
  msgstr "Begrenzen Sie Anzahl der Alben für die Benutzerrolle%s."
15851
 
15852
- #: wppa-settings-autosave.php:6179
15853
  #, fuzzy
15854
  msgid ""
15855
  "This limitation only applies to frontend create albums when the same "
@@ -15858,27 +15889,27 @@ msgstr ""
15858
  "Diese Einschränkung gilt nur Alben Frontend erstellen, wenn die gleichen "
15859
  "Userrole nicht das Admin-Album Checkbox in der Tabelle VII-A geprüft hat."
15860
 
15861
- #: wppa-settings-autosave.php:6191
15862
  #, fuzzy
15863
  msgid "Upload one only"
15864
  msgstr "Nur hochladen"
15865
 
15866
- #: wppa-settings-autosave.php:6192
15867
  #, fuzzy
15868
  msgid "Non admin users can upload only one photo at a time."
15869
  msgstr "Non Admin-Benutzer kann nur ein Foto auf einmal hochladen."
15870
 
15871
- #: wppa-settings-autosave.php:6202
15872
  #, fuzzy
15873
  msgid "Upload moderation"
15874
  msgstr "laden Sie Mäßigung"
15875
 
15876
- #: wppa-settings-autosave.php:6203
15877
  #, fuzzy
15878
  msgid "Uploaded photos need moderation."
15879
  msgstr "Hochgeladene Fotos benötigen Mäßigung."
15880
 
15881
- #: wppa-settings-autosave.php:6204
15882
  #, fuzzy
15883
  msgid ""
15884
  "If checked, photos uploaded by users who do not have photo album admin "
@@ -15887,7 +15918,7 @@ msgstr ""
15887
  "Wenn diese Option aktiviert, hochgeladene Fotos werden von den Benutzern, "
15888
  "die Fotoalbum Admin-Zugriffsrechte nicht brauchen Mäßigung haben."
15889
 
15890
- #: wppa-settings-autosave.php:6205
15891
  #, fuzzy
15892
  msgid ""
15893
  "Users who have photo album admin access rights can change the photo status "
@@ -15896,90 +15927,90 @@ msgstr ""
15896
  "Benutzer, die Fotoalbum Admin-Zugriffsrechte können das Foto Status ändern "
15897
  "zu veröffentlichen oder gekennzeichnet."
15898
 
15899
- #: wppa-settings-autosave.php:6206
15900
  #, fuzzy
15901
  msgid "You can set the album admin access rights in Table VII-A."
15902
  msgstr ""
15903
  "Sie können das Album Admin-Zugriffsrechte in der Tabelle VII-A gesetzt."
15904
 
15905
- #: wppa-settings-autosave.php:6215
15906
  #, fuzzy
15907
  msgid "Upload notify"
15908
  msgstr "hochladen benachrichtigen"
15909
 
15910
- #: wppa-settings-autosave.php:6216
15911
  #, fuzzy
15912
  msgid "Notify admin at frontend upload."
15913
  msgstr "Benachrichtigen Sie Admin im Frontend-Upload."
15914
 
15915
- #: wppa-settings-autosave.php:6217 wppa-settings-autosave.php:6228
15916
  #, fuzzy
15917
  msgid "If checked, admin will receive a notification by email."
15918
  msgstr ""
15919
  "Wenn diese Option aktiviert, kann der Admin eine Benachrichtigung per E-Mail "
15920
  "erhalten."
15921
 
15922
- #: wppa-settings-autosave.php:6226
15923
  #, fuzzy
15924
  msgid "Upload backend notify"
15925
  msgstr "Hochladen Backend benachrichtigen"
15926
 
15927
- #: wppa-settings-autosave.php:6227
15928
  #, fuzzy
15929
  msgid "Notify admin at backend upload."
15930
  msgstr "Benachrichtigen Sie Admin im Backend-Upload."
15931
 
15932
- #: wppa-settings-autosave.php:6237
15933
  #, fuzzy
15934
  msgid "Max size in pixels"
15935
  msgstr "Größe in Pixel"
15936
 
15937
- #: wppa-settings-autosave.php:6238
15938
  #, fuzzy
15939
  msgid "Max size for height and width for front-end uploads."
15940
  msgstr "Max Größe für Höhe und Breite für Front-End-Uploads."
15941
 
15942
- #: wppa-settings-autosave.php:6239
15943
  #, fuzzy
15944
  msgid "Enter the maximum size. 0 is unlimited"
15945
  msgstr "Geben Sie die maximale Größe. 0 ist unbegrenzt"
15946
 
15947
- #: wppa-settings-autosave.php:6248
15948
  #, fuzzy
15949
  msgid "Home after Upload"
15950
  msgstr "Startseite nach dem Hochladen"
15951
 
15952
- #: wppa-settings-autosave.php:6249
15953
  #, fuzzy
15954
  msgid "After successfull front-end upload, go to the home page."
15955
  msgstr "Nach erfolgreicher Front-End-Upload finden Sie auf der Homepage."
15956
 
15957
- #: wppa-settings-autosave.php:6259
15958
  #, fuzzy
15959
  msgid "Fe alert"
15960
  msgstr "Fe Alarm"
15961
 
15962
- #: wppa-settings-autosave.php:6260
15963
  #, fuzzy
15964
  msgid "Show alertbox on successful front-end upload/create."
15965
  msgstr "Zeigen Alertbox auf erfolgreiche Front-End-Upload / erstellen."
15966
 
15967
- #: wppa-settings-autosave.php:6270
15968
  #, fuzzy
15969
  msgid "Admin Functionality restrictions for non administrators"
15970
  msgstr "Admin-Funktionalität Einschränkungen für Nicht-Administratoren"
15971
 
15972
- #: wppa-settings-autosave.php:6272
15973
  #, fuzzy
15974
  msgid "Alt thumb is restricted"
15975
  msgstr "Alt Daumen eingeschränkt"
15976
 
15977
- #: wppa-settings-autosave.php:6273
15978
  #, fuzzy
15979
  msgid "Using <b>alt thumbsize</b> is a restricted action."
15980
  msgstr "<b>Alt thumbsize</b> Verwendung ist eine eingeschränkte Wirkung."
15981
 
15982
- #: wppa-settings-autosave.php:6274
15983
  #, fuzzy
15984
  msgid ""
15985
  "If checked: alt thumbsize can not be set in album admin by users not having "
@@ -15988,17 +16019,17 @@ msgstr ""
15988
  "Wenn diese Option aktiviert: Alt thumbsize können von den Benutzern nicht in "
15989
  "Album Admin gesetzt werden keine Administratorrechte haben."
15990
 
15991
- #: wppa-settings-autosave.php:6283
15992
  #, fuzzy
15993
  msgid "Link is restricted"
15994
  msgstr "Link ist eingeschränkt"
15995
 
15996
- #: wppa-settings-autosave.php:6284
15997
  #, fuzzy
15998
  msgid "Using <b>Link to</b> is a restricted action."
15999
  msgstr "Mit <b>Link zu</b> ist eine eingeschränkte Wirkung."
16000
 
16001
- #: wppa-settings-autosave.php:6285
16002
  #, fuzzy
16003
  msgid ""
16004
  "If checked: Link to: can not be set in album admin by users not having admin "
@@ -16007,17 +16038,17 @@ msgstr ""
16007
  "Wenn diese Option aktiviert: Link zu: kann nicht in Album Admin von Nutzern "
16008
  "eingestellt werden keine Administratorrechte haben."
16009
 
16010
- #: wppa-settings-autosave.php:6294
16011
  #, fuzzy
16012
  msgid "CoverType is restricted"
16013
  msgstr "CoverType eingeschränkt"
16014
 
16015
- #: wppa-settings-autosave.php:6295
16016
  #, fuzzy
16017
  msgid "Changing <b>Cover Type</b> is a restricted action."
16018
  msgstr "<b>Cover</b> - <b>Typ</b> zu ändern , ist eine eingeschränkte Wirkung."
16019
 
16020
- #: wppa-settings-autosave.php:6296
16021
  #, fuzzy
16022
  msgid ""
16023
  "If checked: Cover Type: can not be set in album admin by users not having "
@@ -16026,17 +16057,17 @@ msgstr ""
16026
  "Wenn diese Option aktiviert: Deckel Typ: kann nicht in Album Admin von "
16027
  "Nutzern eingestellt werden keine Administratorrechte haben."
16028
 
16029
- #: wppa-settings-autosave.php:6305
16030
  #, fuzzy
16031
  msgid "Photo order# is restricted"
16032
  msgstr "Foto order # eingeschränkt"
16033
 
16034
- #: wppa-settings-autosave.php:6306
16035
  #, fuzzy
16036
  msgid "Changing <b>Photo sort order #</b> is a restricted action."
16037
  msgstr "<b>Foto Sortierung #</b> ändern ist eine eingeschränkte Wirkung."
16038
 
16039
- #: wppa-settings-autosave.php:6307
16040
  #, fuzzy
16041
  msgid ""
16042
  "If checked: Photo sort order #: can not be set in photo admin by users not "
@@ -16045,17 +16076,17 @@ msgstr ""
16045
  "Wenn diese Option aktiviert: Photo Sortierung #: kann nicht in Foto Admin "
16046
  "von Nutzern eingestellt werden, die keine Administratorrechte."
16047
 
16048
- #: wppa-settings-autosave.php:6316
16049
  #, fuzzy
16050
  msgid "Change source restricted"
16051
  msgstr "Quelle ändern eingeschränkt"
16052
 
16053
- #: wppa-settings-autosave.php:6317
16054
  #, fuzzy
16055
  msgid "Changing the import source dir requires admin rights."
16056
  msgstr "die Importquelle dir ändern, muss Administratorrechte."
16057
 
16058
- #: wppa-settings-autosave.php:6318
16059
  #, fuzzy
16060
  msgid ""
16061
  "If checked, the imput source for importing photos and albums is restricted "
@@ -16064,71 +16095,71 @@ msgstr ""
16064
  "Wenn diese Option aktiviert, wird die imput Quelle für Fotos und Alben zu "
16065
  "importieren, um Benutzerrolle Administrator eingeschränkt."
16066
 
16067
- #: wppa-settings-autosave.php:6327
16068
  #, fuzzy
16069
  msgid "Extended status restricted"
16070
  msgstr "Erweiterter Status eingeschränkt"
16071
 
16072
- #: wppa-settings-autosave.php:6328
16073
  #, fuzzy
16074
  msgid "Setting status other than pending or publish requires admin rights."
16075
  msgstr ""
16076
  "Einstellen anderen Status als anhängig oder veröffentlichen erfordert Admin-"
16077
  "Rechte."
16078
 
16079
- #: wppa-settings-autosave.php:6338
16080
  #, fuzzy
16081
  msgid "Photo description restricted"
16082
  msgstr "Bildbeschreibung eingeschränkt"
16083
 
16084
- #: wppa-settings-autosave.php:6339
16085
  #, fuzzy
16086
  msgid "Edit photo description requires admin rights."
16087
  msgstr "Foto bearbeiten Beschreibung erfordert Admin-Rechte."
16088
 
16089
- #: wppa-settings-autosave.php:6349
16090
  #, fuzzy
16091
  msgid "Update photofiles restricted"
16092
  msgstr "Update-Photofiles beschränkt"
16093
 
16094
- #: wppa-settings-autosave.php:6350
16095
  #, fuzzy
16096
  msgid "Re-upload files requires admin rights"
16097
  msgstr "Re-Upload-Dateien erfordert Admin-Rechte"
16098
 
16099
- #: wppa-settings-autosave.php:6360
16100
  #, fuzzy
16101
  msgid "Miscellaneous limiting settings"
16102
  msgstr "Verschiedene Begrenzung Einstellungen"
16103
 
16104
- #: wppa-settings-autosave.php:6362
16105
  #, fuzzy
16106
  msgid "Owners only"
16107
  msgstr "nur Besitzer"
16108
 
16109
- #: wppa-settings-autosave.php:6363
16110
  #, fuzzy
16111
  msgid "Limit edit album access to the album owners only."
16112
  msgstr "Begrenzen Sie bearbeiten Album Zugriff auf die Album-Inhaber nur."
16113
 
16114
- #: wppa-settings-autosave.php:6364
16115
  #, fuzzy
16116
  msgid "If checked, non-admin users can edit their own albums only."
16117
  msgstr ""
16118
  "Wenn diese Option aktiviert, Nicht-Admin-Benutzer können ihre eigenen Alben "
16119
  "nur bearbeiten."
16120
 
16121
- #: wppa-settings-autosave.php:6373
16122
  #, fuzzy
16123
  msgid "Upload Owners only"
16124
  msgstr "Hochladen nur Besitzer"
16125
 
16126
- #: wppa-settings-autosave.php:6374
16127
  #, fuzzy
16128
  msgid "Limit uploads to the album owners only."
16129
  msgstr "Begrenzen Sie Uploads auf den Album-Besitzer nur."
16130
 
16131
- #: wppa-settings-autosave.php:6375
16132
  #, fuzzy
16133
  msgid ""
16134
  "If checked, users can upload to their own own albums and --- public --- only."
@@ -16136,17 +16167,17 @@ msgstr ""
16136
  "Wenn diese Option aktiviert, können Benutzer ihre eigenen eigenen Alben "
16137
  "hochladen und --- --- öffentlich nur."
16138
 
16139
- #: wppa-settings-autosave.php:6384
16140
  #, fuzzy
16141
  msgid "Frontend Edit"
16142
  msgstr "Frontendbearbeitung"
16143
 
16144
- #: wppa-settings-autosave.php:6385
16145
  #, fuzzy
16146
  msgid "Allow the uploader to edit the photo info"
16147
  msgstr "Lassen Sie den Uploader die Foto-Info bearbeiten"
16148
 
16149
- #: wppa-settings-autosave.php:6386
16150
  #, fuzzy
16151
  msgid ""
16152
  "If selected, any logged in user who meets the criteria has the capability to "
@@ -16155,123 +16186,123 @@ msgstr ""
16155
  "Wenn ausgewählt, protokollierte in Benutzer, der die Kriterien erfüllt, die "
16156
  "Möglichkeit, die Bildinformationen zu bearbeiten hat."
16157
 
16158
- #: wppa-settings-autosave.php:6387
16159
  #, fuzzy
16160
  msgid "Note: This may be AFTER moderation!!"
16161
  msgstr "Hinweis: Diese NACH Mäßigung sein kann !!"
16162
 
16163
- #: wppa-settings-autosave.php:6389
16164
  #, fuzzy
16165
  msgid "Classic"
16166
  msgstr "Classic"
16167
 
16168
- #: wppa-settings-autosave.php:6389
16169
  #, fuzzy
16170
  msgid "New style"
16171
- msgstr "Neuen Stil hinzufügen"
16172
 
16173
- #: wppa-settings-autosave.php:6398
16174
  #, fuzzy
16175
  msgid "Fe Edit users"
16176
  msgstr "Nutzer bearbeiten"
16177
 
16178
- #: wppa-settings-autosave.php:6399
16179
  #, fuzzy
16180
  msgid "The criteria the user must meet to edit photo info"
16181
  msgstr "Die Kriterien muss der Benutzer erfüllen Foto-Info bearbeiten"
16182
 
16183
- #: wppa-settings-autosave.php:6402
16184
  #, fuzzy
16185
  msgid "Admin and superuser"
16186
  msgstr "Admin und Super-User"
16187
 
16188
- #: wppa-settings-autosave.php:6402
16189
  #, fuzzy
16190
  msgid "Owner, admin and superuser"
16191
  msgstr "Besitzer, admin und Super-User"
16192
 
16193
- #: wppa-settings-autosave.php:6411
16194
  #, fuzzy
16195
  msgid "Fe Edit Theme CSS"
16196
  msgstr "Fe bearbeiten Theme CSS"
16197
 
16198
- #: wppa-settings-autosave.php:6412
16199
  #, fuzzy
16200
  msgid "The front-end edit photo dialog uses the theme CSS."
16201
  msgstr "Die Front-End-Foto bearbeiten Dialog verwendet das Thema CSS."
16202
 
16203
- #: wppa-settings-autosave.php:6422
16204
  #, fuzzy
16205
  msgid "Fe Edit New Items"
16206
  msgstr "Fe Bearbeiten Neuzugänge"
16207
 
16208
- #: wppa-settings-autosave.php:6423
16209
  #, fuzzy
16210
  msgid "The items that are fe editable"
16211
  msgstr "Die Elemente, die fe sind editierbar"
16212
 
16213
- #: wppa-settings-autosave.php:6424
16214
  #, fuzzy
16215
  msgid "See also Table II-J10!"
16216
  msgstr "Siehe auch Tabelle II-J10!"
16217
 
16218
- #: wppa-settings-autosave.php:6437
16219
  #, fuzzy
16220
  msgid "Fe Edit Button text"
16221
  msgstr "Fe Schaltfläche bearbeiten Text"
16222
 
16223
- #: wppa-settings-autosave.php:6438
16224
  #, fuzzy
16225
  msgid "The text on the Edit button."
16226
  msgstr "Der Text auf der Schaltfläche Bearbeiten."
16227
 
16228
- #: wppa-settings-autosave.php:6448
16229
  #, fuzzy
16230
  msgid "Fe Edit Dialog caption"
16231
  msgstr "Fe Bearbeiten Dialog Beschriftung"
16232
 
16233
- #: wppa-settings-autosave.php:6449
16234
  #, fuzzy
16235
  msgid "The text on the header of the popup."
16236
  msgstr "Der Text auf der Kopfzeile des Popup."
16237
 
16238
- #: wppa-settings-autosave.php:6459
16239
  #, fuzzy
16240
  msgid "Frontend Delete"
16241
  msgstr "Frontend löschen"
16242
 
16243
- #: wppa-settings-autosave.php:6460
16244
  #, fuzzy
16245
  msgid "Allow the uploader to delete the photo"
16246
  msgstr "Lassen Sie den Uploader das Foto zu löschen"
16247
 
16248
- #: wppa-settings-autosave.php:6470
16249
  #, fuzzy
16250
  msgid "Uploader Moderate Comment"
16251
  msgstr "Uploader Moderate Kommentar"
16252
 
16253
- #: wppa-settings-autosave.php:6471
16254
  #, fuzzy
16255
  msgid "The owner of the photo can moderate the photos comments."
16256
  msgstr "Der Besitzer des Fotos können die Fotos Kommentare moderieren."
16257
 
16258
- #: wppa-settings-autosave.php:6472
16259
  #, fuzzy
16260
  msgid "This setting requires \"Uploader edit\" to be enabled also."
16261
  msgstr ""
16262
  "Diese Einstellung erfordert \"Uploader bearbeiten\" auch aktiviert werden."
16263
 
16264
- #: wppa-settings-autosave.php:6481
16265
  #, fuzzy
16266
  msgid "Upload memory check frontend"
16267
  msgstr "Laden Sie Speicherprüfung Frontend"
16268
 
16269
- #: wppa-settings-autosave.php:6482 wppa-settings-autosave.php:6493
16270
  #, fuzzy
16271
  msgid "Disable uploading photos that are too large."
16272
  msgstr "Deaktivieren Sie das Hochladen von Fotos, die zu groß sind."
16273
 
16274
- #: wppa-settings-autosave.php:6483 wppa-settings-autosave.php:6494
16275
  #, fuzzy
16276
  msgid ""
16277
  "To prevent out of memory crashes during upload and possible database "
@@ -16280,42 +16311,42 @@ msgstr ""
16280
  "out of memory Abstürze beim Upload und mögliche Datenbank-Inkonsistenzen zu "
16281
  "verhindern, können Uploads verhindert werden, wenn die Fotos zu groß sind."
16282
 
16283
- #: wppa-settings-autosave.php:6492
16284
  #, fuzzy
16285
  msgid "Upload memory check admin"
16286
  msgstr "Laden Sie Speicherprüfung Admin"
16287
 
16288
- #: wppa-settings-autosave.php:6503
16289
  #, fuzzy
16290
  msgid "Comment captcha"
16291
  msgstr "Kommentar captcha"
16292
 
16293
- #: wppa-settings-autosave.php:6504
16294
  #, fuzzy
16295
  msgid "Use a simple calculate captcha on comments form."
16296
  msgstr "Verwenden Sie ein einfaches berechnen Captcha auf Kommentare Form."
16297
 
16298
- #: wppa-settings-autosave.php:6517
16299
  #, fuzzy
16300
  msgid "Spam lifetime"
16301
  msgstr "Spam Lebensdauer"
16302
 
16303
- #: wppa-settings-autosave.php:6518
16304
  #, fuzzy
16305
  msgid "Delete spam comments when older than."
16306
  msgstr "Löschen Spam-Kommentare, wenn älter als."
16307
 
16308
- #: wppa-settings-autosave.php:6545
16309
  #, fuzzy
16310
  msgid "Avoid duplicates"
16311
- msgstr "vermeiden Sie Duplikate"
16312
 
16313
- #: wppa-settings-autosave.php:6546
16314
  #, fuzzy
16315
  msgid "Prevent the creation of duplicate photos."
16316
  msgstr "Verhindern, dass die Erstellung von doppelten Fotos."
16317
 
16318
- #: wppa-settings-autosave.php:6547
16319
  #, fuzzy
16320
  msgid ""
16321
  "If checked: uploading, importing, copying or moving photos to other albums "
@@ -16326,81 +16357,81 @@ msgstr ""
16326
  "Verschieben von Fotos auf andere Alben verhindert werden, wenn die "
16327
  "desitation Album bereits ein Foto mit dem gleichen Dateinamen enthält."
16328
 
16329
- #: wppa-settings-autosave.php:6556
16330
  #, fuzzy
16331
  msgid "Blacklist user"
16332
  msgstr "Schwarze Liste Benutzer"
16333
 
16334
- #: wppa-settings-autosave.php:6557 wppa-settings-autosave.php:6558
16335
  #, fuzzy
16336
  msgid "Set the status of all the users photos to 'pending'."
16337
  msgstr "Setzen Sie den Status aller Benutzer Fotos zu \"offen\"."
16338
 
16339
- #: wppa-settings-autosave.php:6559
16340
  #, fuzzy
16341
  msgid "Also inhibits further uploads."
16342
  msgstr "Auch verhindert eine weitere Uploads."
16343
 
16344
- #: wppa-settings-autosave.php:6565
16345
  #, fuzzy
16346
  msgid "--- select a user to blacklist ---"
16347
  msgstr "--- Wählen Sie einen Benutzer auf die schwarze Liste ---"
16348
 
16349
- #: wppa-settings-autosave.php:6575 wppa-settings-autosave.php:6580
16350
- #: wppa-settings-autosave.php:6601 wppa-settings-autosave.php:6639
16351
- #: wppa-settings-autosave.php:6644 wppa-settings-autosave.php:6665
16352
- #: wppa-settings-autosave.php:9095 wppa-settings-autosave.php:9137
16353
  #, fuzzy
16354
  msgid "The page will be reloaded after the action has taken place."
16355
  msgstr ""
16356
  "Die Seite wird neu geladen werden, nachdem die Aktion stattgefunden hat."
16357
 
16358
- #: wppa-settings-autosave.php:6581 wppa-settings-autosave.php:6645
16359
  #, fuzzy
16360
  msgid "User login name <b>( case sensitive! )</b>:"
16361
  msgstr "Benutzeranmeldenamen <b>(Groß-</b> und <b>Kleinschreibung!):</b>"
16362
 
16363
- #: wppa-settings-autosave.php:6589
16364
  #, fuzzy
16365
  msgid "Unblacklist user"
16366
  msgstr "Unblacklist Benutzer"
16367
 
16368
- #: wppa-settings-autosave.php:6590
16369
  #, fuzzy
16370
  msgid "Set the status of all the users photos to 'publish'."
16371
  msgstr "Setzen Sie den Status aller Benutzer Fotos zu \"veröffentlichen\"."
16372
 
16373
- #: wppa-settings-autosave.php:6594
16374
  #, fuzzy
16375
  msgid "--- select a user to unblacklist ---"
16376
  msgstr "--- Wählen Sie einen Benutzer zu unblacklist ---"
16377
 
16378
- #: wppa-settings-autosave.php:6609
16379
  #, fuzzy
16380
  msgid "Photo owner change"
16381
  msgstr "Foto Eigentümerwechsel"
16382
 
16383
- #: wppa-settings-autosave.php:6610
16384
  #, fuzzy
16385
  msgid "Administrators can change photo owner"
16386
  msgstr "Administratoren können Foto Besitzer ändern"
16387
 
16388
- #: wppa-settings-autosave.php:6620
16389
  #, fuzzy
16390
  msgid "Super user"
16391
- msgstr "Superuser"
16392
 
16393
- #: wppa-settings-autosave.php:6621
16394
  #, fuzzy
16395
  msgid "Give these users all rights in wppa."
16396
  msgstr "Geben Sie diese Benutzer alle Rechte in WPPA."
16397
 
16398
- #: wppa-settings-autosave.php:6622
16399
  #, fuzzy
16400
  msgid "This gives the user all the administrator privileges within wppa."
16401
  msgstr "Dies gibt dem Benutzer alle Administratorrechte innerhalb WPPA."
16402
 
16403
- #: wppa-settings-autosave.php:6623
16404
  #, fuzzy
16405
  msgid ""
16406
  "Make sure the user also has a role that has all the boxes ticked in Table "
@@ -16409,75 +16440,75 @@ msgstr ""
16409
  "Stellen Sie sicher, dass der Benutzer hat auch eine Rolle, dass die Boxen "
16410
  "alle in der Tabelle VII-A getickt hat"
16411
 
16412
- #: wppa-settings-autosave.php:6629
16413
  #, fuzzy
16414
  msgid "--- select a user to make superuser ---"
16415
  msgstr "--- Einen Benutzer auswählen, um Super-User machen ---"
16416
 
16417
- #: wppa-settings-autosave.php:6653
16418
  #, fuzzy
16419
  msgid "Unsuper user"
16420
  msgstr "Unsuper Benutzer"
16421
 
16422
- #: wppa-settings-autosave.php:6654
16423
  #, fuzzy
16424
  msgid "Remove user from super user list."
16425
  msgstr "Entfernen Sie Benutzer von Superuser-Liste."
16426
 
16427
- #: wppa-settings-autosave.php:6658
16428
  #, fuzzy
16429
  msgid "--- select a user to unmake superuser ---"
16430
  msgstr "--- Wählen Sie einen Benutzer Super-User zu unmake ---"
16431
 
16432
- #: wppa-settings-autosave.php:6691
16433
  #, fuzzy
16434
  msgid "Table VIII:"
16435
  msgstr "Tabelle VIII:"
16436
 
16437
- #: wppa-settings-autosave.php:6691
16438
  #, fuzzy
16439
  msgid "Actions:"
16440
  msgstr "Aktionen:"
16441
 
16442
- #: wppa-settings-autosave.php:6692
16443
  #, fuzzy
16444
  msgid "This table lists all actions that can be taken to the wppa+ system"
16445
  msgstr ""
16446
  "In dieser Tabelle werden alle Aktionen, die auf die WPPA System genommen "
16447
  "werden kann"
16448
 
16449
- #: wppa-settings-autosave.php:6702 wppa-settings-autosave.php:7432
16450
  #, fuzzy
16451
  msgid "Specification"
16452
  msgstr "Spezifikation"
16453
 
16454
- #: wppa-settings-autosave.php:6703 wppa-settings-autosave.php:7433
16455
- #: wppa-settings-autosave.php:10003 wppa-settings-autosave.php:10025
16456
  #, fuzzy
16457
  msgid "Do it!"
16458
- msgstr "Mach es!"
16459
 
16460
- #: wppa-settings-autosave.php:6705 wppa-settings-autosave.php:7435
16461
  #, fuzzy
16462
  msgid "To Go"
16463
- msgstr "noch"
16464
 
16465
- #: wppa-settings-autosave.php:6713
16466
  #, fuzzy
16467
  msgid "Harmless and reverseable actions"
16468
  msgstr "Harmlos und reverseable Aktionen"
16469
 
16470
- #: wppa-settings-autosave.php:6715
16471
  #, fuzzy
16472
  msgid "Ignore concurrency"
16473
  msgstr "Ignorieren Concurrency"
16474
 
16475
- #: wppa-settings-autosave.php:6716
16476
  #, fuzzy
16477
  msgid "Ignore the prevention of concurrent actions."
16478
  msgstr "Ignorieren Sie die Verhinderung von gleichzeitigen Aktionen."
16479
 
16480
- #: wppa-settings-autosave.php:6717
16481
  #, fuzzy
16482
  msgid ""
16483
  "This setting is meant to recover from deadlock situations only. Use with "
@@ -16486,17 +16517,17 @@ msgstr ""
16486
  "Diese Einstellung soll nur von Deadlock-Situationen zu erholen. Verwenden "
16487
  "Sie mit Vorsicht!"
16488
 
16489
- #: wppa-settings-autosave.php:6728
16490
  #, fuzzy
16491
  msgid "Setup"
16492
- msgstr "Einrichtung"
16493
 
16494
- #: wppa-settings-autosave.php:6729
16495
  #, fuzzy
16496
  msgid "Re-initialize plugin."
16497
  msgstr "Re-Initialisierung Plugin."
16498
 
16499
- #: wppa-settings-autosave.php:6730
16500
  #, fuzzy
16501
  msgid ""
16502
  "Re-initilizes the plugin, (re)creates database tables and sets up default "
@@ -16505,7 +16536,7 @@ msgstr ""
16505
  "das Plugin Re-initilizes, (re) erzeugt Datenbanktabellen und richtet "
16506
  "Standardeinstellungen und Verzeichnisse, falls erforderlich."
16507
 
16508
- #: wppa-settings-autosave.php:6731
16509
  #, fuzzy
16510
  msgid ""
16511
  "This action may be required to setup blogs in a multiblog (network) site as "
@@ -16514,34 +16545,34 @@ msgstr ""
16514
  "Diese Aktion kann in einem Multiblog (Netzwerk) Ort sowie in seltenen Fällen "
16515
  "zur Einrichtung Blogs erforderlich initilization Fehler zu korrigieren."
16516
 
16517
- #: wppa-settings-autosave.php:6742
16518
  #, fuzzy
16519
  msgid "Backup settings"
16520
  msgstr "Backup-Einstellungen"
16521
 
16522
- #: wppa-settings-autosave.php:6743
16523
  #, fuzzy
16524
  msgid "Save all settings into a backup file."
16525
  msgstr "Speichern Sie alle Einstellungen in einer Backup-Datei."
16526
 
16527
- #: wppa-settings-autosave.php:6744
16528
  #, fuzzy
16529
  msgid "Saves all the settings into a backup file"
16530
  msgstr "Speichert alle Einstellungen in einer Sicherungsdatei"
16531
 
16532
- #: wppa-settings-autosave.php:6755
16533
  #, fuzzy
16534
  msgid "Load settings"
16535
  msgstr "Einstellungen laden..."
16536
 
16537
- #: wppa-settings-autosave.php:6756
16538
  #, fuzzy
16539
  msgid "Restore all settings from defaults, a backup or skin file."
16540
  msgstr ""
16541
  "Stellen Sie alle Einstellungen von Default-Einstellungen, eine Sicherung "
16542
  "oder Skin-Datei."
16543
 
16544
- #: wppa-settings-autosave.php:6757
16545
  #, fuzzy
16546
  msgid ""
16547
  "Restores all the settings from the factory supplied defaults, the backup you "
@@ -16550,43 +16581,43 @@ msgstr ""
16550
  "Stellt alle Einstellungen aus den mitgelieferten Standardwerte, die "
16551
  "Sicherung, die Sie erstellt oder aus einer Skin-Datei."
16552
 
16553
- #: wppa-settings-autosave.php:6763
16554
  #, fuzzy
16555
  msgid "--- set to defaults ---"
16556
  msgstr "--- Auf die Standardwerte gesetzt ---"
16557
 
16558
- #: wppa-settings-autosave.php:6766
16559
  #, fuzzy
16560
  msgid "--- restore backup ---"
16561
  msgstr "Sicherung wiederherstellen"
16562
 
16563
- #: wppa-settings-autosave.php:6788
16564
  #, fuzzy
16565
  msgid "Regenerate"
16566
  msgstr "Neu generieren"
16567
 
16568
- #: wppa-settings-autosave.php:6789 wppa-settings-autosave.php:6790
16569
  #, fuzzy
16570
  msgid "Regenerate all thumbnails."
16571
  msgstr "Alle Thumbnails neu regenerieren"
16572
 
16573
- #: wppa-settings-autosave.php:6793 wppa-settings-autosave.php:6897
16574
- #: wppa-settings-autosave.php:6964
16575
  #, fuzzy
16576
  msgid "Skip one"
16577
  msgstr "überspringen ein"
16578
 
16579
- #: wppa-settings-autosave.php:6802
16580
  #, fuzzy
16581
  msgid "Rerate"
16582
  msgstr "Rerate"
16583
 
16584
- #: wppa-settings-autosave.php:6803
16585
  #, fuzzy
16586
  msgid "Recalculate ratings."
16587
  msgstr "Neuberechnen Bewertungen."
16588
 
16589
- #: wppa-settings-autosave.php:6804
16590
  #, fuzzy
16591
  msgid ""
16592
  "This function will recalculate all mean photo ratings from the ratings table."
@@ -16594,7 +16625,7 @@ msgstr ""
16594
  "Diese Funktion werden alle Bewertungen aus der Praxis Tabelle bedeuten Foto "
16595
  "neu berechnen."
16596
 
16597
- #: wppa-settings-autosave.php:6805
16598
  #, fuzzy
16599
  msgid ""
16600
  "You may need this function after the re-import of previously exported photos"
@@ -16602,27 +16633,27 @@ msgstr ""
16602
  "Sie können nach dem Re-Import von zuvor exportierten Fotos diese Funktion "
16603
  "benötigen"
16604
 
16605
- #: wppa-settings-autosave.php:6816
16606
  #, fuzzy
16607
  msgid "Lost and found"
16608
- msgstr "Verloren und gefunden"
16609
 
16610
- #: wppa-settings-autosave.php:6817
16611
  #, fuzzy
16612
  msgid "Find \"lost\" photos."
16613
  msgstr "Finden \"verloren\" Fotos."
16614
 
16615
- #: wppa-settings-autosave.php:6818
16616
  #, fuzzy
16617
  msgid "This function will attempt to find lost photos."
16618
  msgstr "Diese Funktion wird versuchen, verlorenen Fotos zu finden."
16619
 
16620
- #: wppa-settings-autosave.php:6829
16621
  #, fuzzy
16622
  msgid "Recuperate"
16623
- msgstr "genesen"
16624
 
16625
- #: wppa-settings-autosave.php:6831
16626
  #, fuzzy
16627
  msgid ""
16628
  "This action will attempt to find and register IPTC and EXIF data from photos "
@@ -16631,47 +16662,47 @@ msgstr ""
16631
  "Diese Aktion wird versuchen, zu finden und IPTC-und EXIF-Daten von Fotos im "
16632
  "WPPA System registrieren."
16633
 
16634
- #: wppa-settings-autosave.php:6842
16635
  #, fuzzy
16636
  msgid "Remake Index Albums"
16637
  msgstr "Remake Index Alben"
16638
 
16639
- #: wppa-settings-autosave.php:6843
16640
  #, fuzzy
16641
  msgid "Remakes the index database table for albums."
16642
  msgstr "Remakes die Indexdatenbanktabelle für Alben."
16643
 
16644
- #: wppa-settings-autosave.php:6855
16645
  #, fuzzy
16646
  msgid "Remake Index Photos"
16647
  msgstr "Remake Index Fotos"
16648
 
16649
- #: wppa-settings-autosave.php:6856
16650
  #, fuzzy
16651
  msgid "Remakes the index database table for photos."
16652
  msgstr "Remakes die Indexdatenbanktabelle für Fotos."
16653
 
16654
- #: wppa-settings-autosave.php:6874
16655
  #, fuzzy
16656
  msgid "Convert to tree"
16657
  msgstr "Konvertieren in Baum"
16658
 
16659
- #: wppa-settings-autosave.php:6875
16660
  #, fuzzy
16661
  msgid "Convert filesystem to tree structure."
16662
  msgstr "Convert-Dateisystem-Baumstruktur."
16663
 
16664
- #: wppa-settings-autosave.php:6878
16665
  #, fuzzy
16666
  msgid "Convert to flat"
16667
  msgstr "Konvertieren in flach"
16668
 
16669
- #: wppa-settings-autosave.php:6879
16670
  #, fuzzy
16671
  msgid "Convert filesystem to flat structure."
16672
  msgstr "Convert-Dateisystem zu flache Struktur."
16673
 
16674
- #: wppa-settings-autosave.php:6881
16675
  #, fuzzy
16676
  msgid ""
16677
  "If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
@@ -16680,12 +16711,12 @@ msgstr ""
16680
  "Wenn Sie zurück in eine WPPA gehen wollen Version vor 5.0.16, müssen Sie "
16681
  "flache erste konvertieren."
16682
 
16683
- #: wppa-settings-autosave.php:6893
16684
  #, fuzzy
16685
  msgid "Remake the photofiles from photo sourcefiles."
16686
  msgstr "Remake die Photofiles von Foto Quelldateien."
16687
 
16688
- #: wppa-settings-autosave.php:6894
16689
  #, fuzzy
16690
  msgid ""
16691
  "This action will remake the fullsize images, thumbnail images, and will "
@@ -16697,180 +16728,180 @@ msgstr ""
16697
  "in dem entsprechenden Album-Unterverzeichnis des Quellverzeichnis gefunden "
16698
  "wird."
16699
 
16700
- #: wppa-settings-autosave.php:6906
16701
  #, fuzzy
16702
  msgid "Orientation only"
16703
  msgstr "Orientierung nur"
16704
 
16705
- #: wppa-settings-autosave.php:6907
16706
  #, fuzzy
16707
  msgid "Remake non standard orientated photos only."
16708
  msgstr "Remake Nicht-Standard-orientierte Fotos nur."
16709
 
16710
- #: wppa-settings-autosave.php:6920
16711
  #, fuzzy
16712
  msgid "Recalc sizes"
16713
  msgstr "Recalc Größen"
16714
 
16715
- #: wppa-settings-autosave.php:6921
16716
  #, fuzzy
16717
  msgid "Recalculate photosizes and save to db."
16718
  msgstr "Neu berechnen photosizes und db speichern."
16719
 
16720
- #: wppa-settings-autosave.php:6933
16721
  #, fuzzy
16722
  msgid "Renew album crypt"
16723
  msgstr "Erneuern Album Krypta"
16724
 
16725
- #: wppa-settings-autosave.php:6934
16726
  #, fuzzy
16727
  msgid "Renew album encrcryption codes."
16728
  msgstr "Erneuern Album encrcryption Codes."
16729
 
16730
- #: wppa-settings-autosave.php:6946
16731
  #, fuzzy
16732
  msgid "Renew photo crypt"
16733
  msgstr "Erneuern Foto Krypta"
16734
 
16735
- #: wppa-settings-autosave.php:6947
16736
  #, fuzzy
16737
  msgid "Renew photo encrcryption codes."
16738
  msgstr "Erneuern Foto encrcryption Codes."
16739
 
16740
- #: wppa-settings-autosave.php:6959
16741
  #, fuzzy
16742
  msgid "Create orietation sources"
16743
  msgstr "Erstellen Sie orietation Quellen"
16744
 
16745
- #: wppa-settings-autosave.php:6960
16746
  #, fuzzy
16747
  msgid "Creates correctly oriented pseudo source file."
16748
  msgstr "Erzeugt richtig orientiert Pseudo-Quelldatei."
16749
 
16750
- #: wppa-settings-autosave.php:6973
16751
  #, fuzzy
16752
  msgid "Clearing and other irreverseable actions"
16753
  msgstr "Clearing und andere irreverseable Aktionen"
16754
 
16755
- #: wppa-settings-autosave.php:6975
16756
  #, fuzzy
16757
  msgid "Clear ratings"
16758
  msgstr "Klare Bewertungen"
16759
 
16760
- #: wppa-settings-autosave.php:6976
16761
  #, fuzzy
16762
  msgid "Reset all ratings."
16763
  msgstr "Setzen Sie alle Bewertungen."
16764
 
16765
- #: wppa-settings-autosave.php:6977
16766
  #, fuzzy
16767
  msgid "WARNING: If checked, this will clear all ratings in the system!"
16768
  msgstr ""
16769
  "WARNUNG: Wenn diese Option aktiviert, wird dies alle Bewertungen im System "
16770
  "klar!"
16771
 
16772
- #: wppa-settings-autosave.php:6988
16773
  #, fuzzy
16774
  msgid "Clear viewcounts"
16775
  msgstr "klar viewcounts"
16776
 
16777
- #: wppa-settings-autosave.php:6989
16778
  #, fuzzy
16779
  msgid "Reset all viewcounts."
16780
  msgstr "Setzen Sie alle viewcounts."
16781
 
16782
- #: wppa-settings-autosave.php:6990
16783
  #, fuzzy
16784
  msgid "WARNING: If checked, this will clear all viewcounts in the system!"
16785
  msgstr ""
16786
  "WARNUNG: Wenn diese Option aktiviert, wird dies alle viewcounts im System "
16787
  "klar!"
16788
 
16789
- #: wppa-settings-autosave.php:7001
16790
  #, fuzzy
16791
  msgid "Reset IPTC"
16792
  msgstr "zurücksetzen IPTC"
16793
 
16794
- #: wppa-settings-autosave.php:7002
16795
  #, fuzzy
16796
  msgid "Clear all IPTC data."
16797
  msgstr "Alle entfernen"
16798
 
16799
- #: wppa-settings-autosave.php:7003
16800
  #, fuzzy
16801
  msgid "WARNING: If checked, this will clear all IPTC data in the system!"
16802
  msgstr ""
16803
  "WARNUNG: Wenn diese Option aktiviert, wird dies alle IPTC-Daten in dem "
16804
  "System zu löschen!"
16805
 
16806
- #: wppa-settings-autosave.php:7014
16807
  #, fuzzy
16808
  msgid "Reset EXIF"
16809
  msgstr "Zurücksetzen EXIF"
16810
 
16811
- #: wppa-settings-autosave.php:7015
16812
  #, fuzzy
16813
  msgid "Clear all EXIF data."
16814
  msgstr "Alle entfernen"
16815
 
16816
- #: wppa-settings-autosave.php:7016
16817
  #, fuzzy
16818
  msgid "WARNING: If checked, this will clear all EXIF data in the system!"
16819
  msgstr ""
16820
  "WARNUNG: Wenn diese Option aktiviert, wird dies alle EXIF-Daten im System zu "
16821
  "löschen!"
16822
 
16823
- #: wppa-settings-autosave.php:7027
16824
  #, fuzzy
16825
  msgid "Apply New Photodesc"
16826
  msgstr "Als neuer Photodesc"
16827
 
16828
- #: wppa-settings-autosave.php:7028
16829
  #, fuzzy
16830
  msgid "Apply New photo description on all photos in the system."
16831
  msgstr "Wenden Neue Foto Beschreibung auf alle Fotos im System."
16832
 
16833
- #: wppa-settings-autosave.php:7040
16834
  #, fuzzy
16835
  msgid "Append to photodesc"
16836
  msgstr "Anhängen an photodesc"
16837
 
16838
- #: wppa-settings-autosave.php:7041
16839
  #, fuzzy
16840
  msgid "Append this text to all photo descriptions."
16841
  msgstr "Fügen Sie diesen Text auf alle Fotobeschreibungen."
16842
 
16843
- #: wppa-settings-autosave.php:7055
16844
  #, fuzzy
16845
  msgid "Remove from photodesc"
16846
  msgstr "Entfernen von photodesc"
16847
 
16848
- #: wppa-settings-autosave.php:7056
16849
  #, fuzzy
16850
  msgid "Remove this text from all photo descriptions."
16851
  msgstr "Entfernen Sie diesen Text aus allen Fotobeschreibungen."
16852
 
16853
- #: wppa-settings-autosave.php:7070
16854
  #, fuzzy
16855
  msgid "Remove empty albums"
16856
  msgstr "Entfernen Sie leere Alben"
16857
 
16858
- #: wppa-settings-autosave.php:7071
16859
  #, fuzzy
16860
  msgid "Removes albums that are not used."
16861
  msgstr "Entfernt Alben, die nicht verwendet werden."
16862
 
16863
- #: wppa-settings-autosave.php:7083
16864
  #, fuzzy
16865
  msgid "Remove file-ext"
16866
  msgstr "Entfernen Sie Datei-ext"
16867
 
16868
- #: wppa-settings-autosave.php:7084
16869
  #, fuzzy
16870
  msgid "Remove possible file extension from photo name."
16871
  msgstr "Entfernen Sie mögliche Dateierweiterung von Foto-Namen."
16872
 
16873
- #: wppa-settings-autosave.php:7085
16874
  #, fuzzy
16875
  msgid ""
16876
  "This may be required for old photos, uploaded when the option in Table IX-D3 "
@@ -16879,49 +16910,49 @@ msgstr ""
16879
  "Dies kann für alte Fotos erforderlich, hochgeladen, wenn die Option in der "
16880
  "Tabelle IX-D3 war noch nicht verfügbar / ausgewählt."
16881
 
16882
- #: wppa-settings-autosave.php:7096
16883
  #, fuzzy
16884
  msgid "Re-add file-ext"
16885
  msgstr "Re-add file-ext"
16886
 
16887
- #: wppa-settings-autosave.php:7097
16888
  #, fuzzy
16889
  msgid "Revert the <i>Remove file-ext</i> action."
16890
  msgstr "Revert die <i>Remove</i> - <i>Datei-ext</i> Aktion."
16891
 
16892
- #: wppa-settings-autosave.php:7109
16893
  #, fuzzy
16894
  msgid "Watermark all"
16895
  msgstr "Wasserzeichen alle"
16896
 
16897
- #: wppa-settings-autosave.php:7110
16898
  #, fuzzy
16899
  msgid "Apply watermark according to current settings to all photos."
16900
  msgstr ""
16901
  "Bewerben Wasserzeichen entsprechend den aktuellen Einstellungen auf alle "
16902
  "Fotos."
16903
 
16904
- #: wppa-settings-autosave.php:7111
16905
  #, fuzzy
16906
  msgid "See Table IX_F for the current watermark settings"
16907
  msgstr "Siehe Tabelle IX_F für die aktuellen Wasserzeichen-Einstellungen"
16908
 
16909
- #: wppa-settings-autosave.php:7122
16910
  #, fuzzy
16911
  msgid "Create all autopages"
16912
  msgstr "Erstellen Sie alle autopages"
16913
 
16914
- #: wppa-settings-autosave.php:7123
16915
  #, fuzzy
16916
  msgid "Create all the pages to display slides individually."
16917
  msgstr "Erstellen Sie alle Seiten Folien einzeln angezeigt werden soll."
16918
 
16919
- #: wppa-settings-autosave.php:7124 wppa-settings-autosave.php:7138
16920
  #, fuzzy
16921
  msgid "See also Table IV-A10."
16922
  msgstr "Siehe auch Tabelle IV-A10."
16923
 
16924
- #: wppa-settings-autosave.php:7125
16925
  #, fuzzy
16926
  msgid ""
16927
  "Make sure you have a custom menu and the \"Automatically add new top-level "
@@ -16931,27 +16962,27 @@ msgstr ""
16931
  "Option \"Automatisch fügen Sie neue Top-Level-Seiten zu diesem Menü\" Box "
16932
  "unticked !!"
16933
 
16934
- #: wppa-settings-autosave.php:7136
16935
  #, fuzzy
16936
  msgid "Delete all autopages"
16937
  msgstr "Löschen Sie alle autopages"
16938
 
16939
- #: wppa-settings-autosave.php:7137
16940
  #, fuzzy
16941
  msgid "Delete all the pages to display slides individually."
16942
  msgstr "Löschen Sie alle Seiten Dias einzeln angezeigt werden soll."
16943
 
16944
- #: wppa-settings-autosave.php:7150
16945
  #, fuzzy
16946
  msgid "Leading zeroes"
16947
  msgstr "Führende Nullen"
16948
 
16949
- #: wppa-settings-autosave.php:7151
16950
  #, fuzzy
16951
  msgid "If photoname numeric, add leading zeros"
16952
  msgstr "Wenn photoname numerisch, fügen führende Nullen"
16953
 
16954
- #: wppa-settings-autosave.php:7152
16955
  #, fuzzy
16956
  msgid ""
16957
  "You can extend the name with leading zeros, so alphabetic sort becomes equal "
@@ -16960,251 +16991,251 @@ msgstr ""
16960
  "Sie können den Namen mit führenden Nullen erweitern, so alphabetisch "
16961
  "sortiert wird, um numerische Reihenfolge, um gleich."
16962
 
16963
- #: wppa-settings-autosave.php:7155
16964
  #, fuzzy
16965
  msgid "Total chars"
16966
  msgstr "insgesamt Zeichen"
16967
 
16968
- #: wppa-settings-autosave.php:7164
16969
  #, fuzzy
16970
  msgid "Add GPX tag"
16971
  msgstr "In GPX-Tag"
16972
 
16973
- #: wppa-settings-autosave.php:7165
16974
  #, fuzzy
16975
  msgid "Make sure photos with gpx data have a Gpx tag"
16976
  msgstr "Stellen Sie sicher, Fotos mit GPX-Daten haben eine Gpx-Tag"
16977
 
16978
- #: wppa-settings-autosave.php:7178 wppa-settings-autosave.php:8149
16979
  #, fuzzy
16980
  msgid "Optimize files"
16981
  msgstr "Optimieren Sie Dateien"
16982
 
16983
- #: wppa-settings-autosave.php:7179
16984
  #, fuzzy
16985
  msgid "Optimize with EWWW image optimizer"
16986
  msgstr "Optimieren Sie mit EWWW Bild-Optimierer"
16987
 
16988
- #: wppa-settings-autosave.php:7192
16989
  #, fuzzy
16990
  msgid "Edit tag"
16991
- msgstr "Tag (Schlagwort) bearbeiten"
16992
 
16993
- #: wppa-settings-autosave.php:7193
16994
  #, fuzzy
16995
  msgid "Globally change a tagname."
16996
  msgstr "ändern Weltweit eine tagname."
16997
 
16998
- #: wppa-settings-autosave.php:7199
16999
  #, fuzzy
17000
  msgid "-select a tag-"
17001
- msgstr "Ein Schlagwort auswählen"
17002
 
17003
- #: wppa-settings-autosave.php:7205
17004
  #, fuzzy
17005
  msgid "Tag:"
17006
  msgstr "Tag"
17007
 
17008
- #: wppa-settings-autosave.php:7206
17009
  #, fuzzy
17010
  msgid "Change to:"
17011
  msgstr "Ändern zu:"
17012
 
17013
- #: wppa-settings-autosave.php:7215
17014
  #, fuzzy
17015
  msgid "Synchronize Cloudinary"
17016
  msgstr "Synchronisieren Sie Cloudinary"
17017
 
17018
- #: wppa-settings-autosave.php:7216
17019
  #, fuzzy
17020
  msgid "Removes/adds images in the cloud."
17021
  msgstr "Entfernt / fügt Bilder in der Cloud."
17022
 
17023
- #: wppa-settings-autosave.php:7217
17024
  #, fuzzy
17025
  msgid "Removes old images and verifies/adds new images to Cloudinary."
17026
  msgstr ""
17027
  "Entfernt alte Bilder und überprüft / neue Bilder zu Cloudinary hinzufügt."
17028
 
17029
- #: wppa-settings-autosave.php:7218
17030
  #, fuzzy
17031
  msgid "See Table IX-K4.7 for the configured lifetime."
17032
  msgstr "Siehe Tabelle IX-K4.7 für den konfigurierten Lebensdauer."
17033
 
17034
- #: wppa-settings-autosave.php:7229
17035
  #, fuzzy
17036
  msgid "Fix tags"
17037
  msgstr "Fix-Tags"
17038
 
17039
- #: wppa-settings-autosave.php:7230
17040
  #, fuzzy
17041
  msgid "Make sure photo tags format is uptodate"
17042
  msgstr "Stellen Sie sicher, Foto-Tags-Format ist uptodate"
17043
 
17044
- #: wppa-settings-autosave.php:7231
17045
  #, fuzzy
17046
  msgid "Fixes tags to be conform current database rules."
17047
  msgstr "Fixes Tags zu aktuellen Datenbank Regeln entsprechen."
17048
 
17049
- #: wppa-settings-autosave.php:7242
17050
  #, fuzzy
17051
  msgid "Fix cats"
17052
  msgstr "Fix Katzen"
17053
 
17054
- #: wppa-settings-autosave.php:7243
17055
  #, fuzzy
17056
  msgid "Make sure album cats format is uptodate"
17057
  msgstr "Stellen Sie sicher, dass das Album Katzen-Format ist uptodate"
17058
 
17059
- #: wppa-settings-autosave.php:7244
17060
  #, fuzzy
17061
  msgid "Fixes cats to be conform current database rules."
17062
  msgstr "Fixes Katzen zu aktuellen Datenbank Regeln entsprechen."
17063
 
17064
- #: wppa-settings-autosave.php:7255
17065
  #, fuzzy
17066
  msgid "Set owner to name"
17067
  msgstr "Stellen Sie Besitzer Name"
17068
 
17069
- #: wppa-settings-autosave.php:7256
17070
  #, fuzzy
17071
  msgid "If photoname equals user display name, set him owner."
17072
  msgstr ""
17073
  "Wenn photoname Benutzeranzeigenamen entspricht, setzen Sie ihn Eigentümer."
17074
 
17075
- #: wppa-settings-autosave.php:7268
17076
  #, fuzzy
17077
  msgid "Move all photos"
17078
  msgstr "Alle Fotos"
17079
 
17080
- #: wppa-settings-autosave.php:7269
17081
  #, fuzzy
17082
  msgid "Move all photos from one album to another album."
17083
  msgstr "Verschieben Sie alle Fotos aus einem Album in ein anderes Album."
17084
 
17085
- #: wppa-settings-autosave.php:7281
17086
  #, fuzzy
17087
  msgid "From"
17088
- msgstr "&nbsp;"
17089
 
17090
- #: wppa-settings-autosave.php:7282
17091
  #, fuzzy
17092
  msgid "Move from album"
17093
- msgstr "Verschieben von Album"
17094
 
17095
- #: wppa-settings-autosave.php:7308
17096
  #, fuzzy
17097
  msgid "To"
17098
- msgstr "bis"
17099
 
17100
- #: wppa-settings-autosave.php:7309
17101
  #, fuzzy
17102
  msgid "Move to album"
17103
  msgstr "In das Album verschieben"
17104
 
17105
- #: wppa-settings-autosave.php:7350
17106
  #, fuzzy
17107
  msgid "Listings"
17108
- msgstr "Kategorien"
17109
 
17110
- #: wppa-settings-autosave.php:7352
17111
  #, fuzzy
17112
  msgid "List Logfile"
17113
  msgstr "Liste Logfile"
17114
 
17115
- #: wppa-settings-autosave.php:7353
17116
  #, fuzzy
17117
  msgid "Show the content of wppa+ (error) log."
17118
  msgstr "Zeigen Sie den Inhalt des WPPA (Fehler) log."
17119
 
17120
- #: wppa-settings-autosave.php:7357
17121
  #, fuzzy
17122
  msgid "Purge logfile"
17123
  msgstr "Purge Logfile"
17124
 
17125
- #: wppa-settings-autosave.php:7366
17126
  #, fuzzy
17127
  msgid "List Ratings"
17128
  msgstr "Liste Bewertungs"
17129
 
17130
- #: wppa-settings-autosave.php:7367
17131
  #, fuzzy
17132
  msgid "Show the most recent ratings."
17133
  msgstr "Zeigen Sie die neuesten Bewertungen."
17134
 
17135
- #: wppa-settings-autosave.php:7380
17136
  #, fuzzy
17137
  msgid "List Index"
17138
- msgstr "Liste-Index"
17139
 
17140
- #: wppa-settings-autosave.php:7381
17141
  #, fuzzy
17142
  msgid "Show the content if the index table."
17143
  msgstr "Zeigen Sie den Inhalt, wenn der Indextabelle."
17144
 
17145
- #: wppa-settings-autosave.php:7385
17146
  #, fuzzy
17147
  msgid "Start at text:"
17148
  msgstr "Beginnen Sie bei Text:"
17149
 
17150
- #: wppa-settings-autosave.php:7395
17151
  #, fuzzy
17152
  msgid "List active sessions"
17153
  msgstr "Liste aktiver Sitzungen"
17154
 
17155
- #: wppa-settings-autosave.php:7396
17156
  #, fuzzy
17157
  msgid "Show the content of the sessions table."
17158
  msgstr "Zeigen Sie den Inhalt der Sitzungen Tabelle."
17159
 
17160
- #: wppa-settings-autosave.php:7409
17161
  #, fuzzy
17162
  msgid "List comments"
17163
  msgstr "Liste Kommentare"
17164
 
17165
- #: wppa-settings-autosave.php:7410
17166
  #, fuzzy
17167
  msgid "Show the content of the comments table."
17168
  msgstr "Zeigen Sie den Inhalt der Kommentare Tabelle."
17169
 
17170
- #: wppa-settings-autosave.php:7416
17171
  #, fuzzy
17172
  msgid "Order by:"
17173
- msgstr "Sortiere nach:"
17174
 
17175
- #: wppa-settings-autosave.php:7445
17176
  #, fuzzy
17177
  msgid "Table IX:"
17178
  msgstr "Tabelle IX:"
17179
 
17180
- #: wppa-settings-autosave.php:7445
17181
  #, fuzzy
17182
  msgid "Miscellaneous:"
17183
  msgstr "Sonstiges:"
17184
 
17185
- #: wppa-settings-autosave.php:7446
17186
  #, fuzzy
17187
  msgid "This table lists all settings that do not fit into an other table"
17188
  msgstr ""
17189
  "In dieser Tabelle werden alle Einstellungen, die in eine andere Tabelle "
17190
  "nicht passen"
17191
 
17192
- #: wppa-settings-autosave.php:7464
17193
  #, fuzzy
17194
  msgid "Internal engine related settings"
17195
  msgstr "Interne Motorbezogene Einstellungen"
17196
 
17197
- #: wppa-settings-autosave.php:7466
17198
  #, fuzzy
17199
  msgid "WPPA+ Filter priority"
17200
  msgstr "WPPA Filter Priorität"
17201
 
17202
- #: wppa-settings-autosave.php:7467
17203
  #, fuzzy
17204
  msgid "Sets the priority of the wppa+ content filter."
17205
  msgstr "Legt die Priorität des WPPA Content-Filter."
17206
 
17207
- #: wppa-settings-autosave.php:7468 wppa-settings-autosave.php:7477
17208
  #, fuzzy
17209
  msgid ""
17210
  "If you encounter conflicts with the theme or other plugins, increasing this "
@@ -17213,73 +17244,73 @@ msgstr ""
17213
  "Wenn Sie Konflikte mit dem Thema oder anderen Plugins begegnen, diesen Wert "
17214
  "zu erhöhen hilft manchmal. Verwenden Sie mit großer Sorgfalt!"
17215
 
17216
- #: wppa-settings-autosave.php:7475
17217
  #, fuzzy
17218
  msgid "Do_shortcode priority"
17219
  msgstr "Do_shortcode Priorität"
17220
 
17221
- #: wppa-settings-autosave.php:7476
17222
  #, fuzzy
17223
  msgid "Sets the priority of the do_shortcode() content filter."
17224
  msgstr "Legt die Priorität des do_shortcode () Content-Filter."
17225
 
17226
- #: wppa-settings-autosave.php:7484
17227
  #, fuzzy
17228
  msgid "WPPA shortcode at Filter priority"
17229
  msgstr "WPPA Short bei Filter Priorität"
17230
 
17231
- #: wppa-settings-autosave.php:7485
17232
  #, fuzzy
17233
  msgid "Execute shortcode expansion on filter priority in posts and pages."
17234
  msgstr "Führen Short Expansion auf Filter Priorität in Beiträge und Seiten."
17235
 
17236
- #: wppa-settings-autosave.php:7486 wppa-settings-autosave.php:7495
17237
  #, fuzzy
17238
  msgid "Use to fix certain layout problems"
17239
  msgstr "Verwenden Sie bestimmte Layout-Probleme zu beheben"
17240
 
17241
- #: wppa-settings-autosave.php:7493
17242
  #, fuzzy
17243
  msgid "WPPA shortcode at Filter priority widget"
17244
  msgstr "WPPA Short bei Filter Priorität Widget"
17245
 
17246
- #: wppa-settings-autosave.php:7494
17247
  #, fuzzy
17248
  msgid "Execute shortcode expansion on filter priority in widgets."
17249
  msgstr "Führen Short Expansion auf Filter Priorität in Widgets."
17250
 
17251
- #: wppa-settings-autosave.php:7502
17252
  #, fuzzy
17253
  msgid "JPG image quality"
17254
  msgstr "JPG-Bildqualität"
17255
 
17256
- #: wppa-settings-autosave.php:7503
17257
  #, fuzzy
17258
  msgid "The jpg quality when photos are downsized"
17259
  msgstr "Die jpg Qualität bei Fotos werden verkleinert"
17260
 
17261
- #: wppa-settings-autosave.php:7504
17262
  #, fuzzy
17263
  msgid "The higher the number the better the quality but the larger the file"
17264
  msgstr "Je höher die Zahl, desto besser die Qualität, aber je größer die Datei"
17265
 
17266
- #: wppa-settings-autosave.php:7505
17267
  #, fuzzy
17268
  msgid "Possible values 20..100"
17269
  msgstr "Mögliche Werte 20..100"
17270
 
17271
- #: wppa-settings-autosave.php:7512
17272
  #, fuzzy
17273
  msgid "Allow WPPA+ Debugging"
17274
  msgstr "Lassen Sie WPPA Debugging"
17275
 
17276
- #: wppa-settings-autosave.php:7513
17277
  #, fuzzy
17278
  msgid "Allow the use of &amp;debug=.. in urls to this site."
17279
  msgstr ""
17280
  "Lassen Sie die Verwendung von &amp; debug = .. in Urls auf diese Seite."
17281
 
17282
- #: wppa-settings-autosave.php:7514
17283
  #, fuzzy
17284
  msgid ""
17285
  "If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
@@ -17290,17 +17321,17 @@ msgstr ""
17290
  "<int> auf eine URL zu dieser Seite wird die Anzeige von Sonder WPPA "
17291
  "Diagnostik, sowie PHP-Warnungen generieren"
17292
 
17293
- #: wppa-settings-autosave.php:7521
17294
  #, fuzzy
17295
  msgid "Auto continue"
17296
  msgstr "Auto weiter"
17297
 
17298
- #: wppa-settings-autosave.php:7522
17299
  #, fuzzy
17300
  msgid "Continue automatic after time out"
17301
  msgstr "Weiter automatisch nach Auszeit"
17302
 
17303
- #: wppa-settings-autosave.php:7523
17304
  #, fuzzy
17305
  msgid ""
17306
  "If checked, an attempt will be made to restart an admin process when the "
@@ -17309,12 +17340,12 @@ msgstr ""
17309
  "Wenn diese Option aktiviert, wird der Versuch unternommen, ein Admin-Prozess "
17310
  "neu zu starten, wenn die Zeit aus ist."
17311
 
17312
- #: wppa-settings-autosave.php:7531
17313
  #, fuzzy
17314
  msgid "Set max execution time here."
17315
  msgstr "Legen Sie hier max Ausführungszeit."
17316
 
17317
- #: wppa-settings-autosave.php:7532
17318
  #, fuzzy
17319
  msgid ""
17320
  "If your php config does not properly set the max execution time, you can set "
@@ -17324,37 +17355,37 @@ msgstr ""
17324
  "eingestellt ist, können Sie es hier eingestellt. Sekunden, 0 bedeutet nicht "
17325
  "ändern."
17326
 
17327
- #: wppa-settings-autosave.php:7533
17328
  #, fuzzy
17329
  msgid "A safe value is 45 in most cases"
17330
  msgstr "Ein sicherer Wert ist 45 in den meisten Fällen"
17331
 
17332
- #: wppa-settings-autosave.php:7534
17333
  #, fuzzy, php-format
17334
  msgid "The PHP setting max_execution_time is set to %s."
17335
  msgstr "Die PHP-Einstellung max_execution_time wird auf%s gesetzt."
17336
 
17337
- #: wppa-settings-autosave.php:7542
17338
  #, fuzzy
17339
  msgid "Feed use thumb"
17340
  msgstr "-Feed Verwendung Daumen"
17341
 
17342
- #: wppa-settings-autosave.php:7543
17343
  #, fuzzy
17344
  msgid "Feeds use thumbnail pictures always."
17345
  msgstr "Feeds immer Miniaturbilder verwenden."
17346
 
17347
- #: wppa-settings-autosave.php:7551
17348
  #, fuzzy
17349
  msgid "Enable <i>in-line</i> settings"
17350
  msgstr "Aktivieren Sie <i>in-line</i> - Einstellungen"
17351
 
17352
- #: wppa-settings-autosave.php:7552
17353
  #, fuzzy
17354
  msgid "Activates shortcode [wppa_set][/wppa_set]."
17355
  msgstr "Aktiviert Shortcode [wppa_set] [/ wppa_set]."
17356
 
17357
- #: wppa-settings-autosave.php:7553
17358
  #, fuzzy
17359
  msgid ""
17360
  "Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
@@ -17362,7 +17393,7 @@ msgstr ""
17362
  "Syntax: [wppa_set name = \"any WPPA Einstellung\" value = \"neuer Wert\"] [/ "
17363
  "wppa_set]"
17364
 
17365
- #: wppa-settings-autosave.php:7554
17366
  #, fuzzy
17367
  msgid ""
17368
  "Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
@@ -17371,46 +17402,46 @@ msgstr ""
17371
  "Beispiel: [wppa_set name = \"wppa_thumbtype\" value = \"Mauerwerk-v\"] [/ "
17372
  "wppa_set] setzt die Miniaturtyp vertikale Mauerwerk Stil"
17373
 
17374
- #: wppa-settings-autosave.php:7555
17375
  #, fuzzy
17376
  msgid "Do not forget to reset with [wppa_set][/wppa_set]"
17377
  msgstr "Vergessen Sie nicht, mit [wppa_set] [/ wppa_set] zurücksetzen"
17378
 
17379
- #: wppa-settings-autosave.php:7556
17380
  #, fuzzy
17381
  msgid "Use with great care! There is no check on validity of values!"
17382
  msgstr ""
17383
  "Verwenden Sie mit großer Sorgfalt! Es gibt keine Prüfung auf Gültigkeit von "
17384
  "Werten!"
17385
 
17386
- #: wppa-settings-autosave.php:7563
17387
  #, fuzzy
17388
  msgid "Runtime modifyable settings"
17389
  msgstr "Runtime modifizierbaren Einstellungen"
17390
 
17391
- #: wppa-settings-autosave.php:7564
17392
  #, fuzzy
17393
  msgid "The setting slugs that may be altered using [wppa_set] shortcode."
17394
  msgstr ""
17395
  "Die Einstellung Schnecken, die verändert werden können, unter Verwendung von "
17396
  "[wppa_set] Shortcode."
17397
 
17398
- #: wppa-settings-autosave.php:7573
17399
  #, fuzzy
17400
  msgid "WPPA+ Admin related miscellaneous settings"
17401
  msgstr "WPPA Admin im Zusammenhang verschiedene Einstellungen"
17402
 
17403
- #: wppa-settings-autosave.php:7575
17404
  #, fuzzy
17405
  msgid "Allow HTML"
17406
  msgstr "HTML zulassen"
17407
 
17408
- #: wppa-settings-autosave.php:7576
17409
  #, fuzzy
17410
  msgid "Allow HTML in album and photo descriptions."
17411
  msgstr "Lassen Sie HTML in Album und Fotobeschreibungen."
17412
 
17413
- #: wppa-settings-autosave.php:7577 wppa-settings-autosave.php:7586
17414
  #, fuzzy
17415
  msgid ""
17416
  "If checked: html is allowed. WARNING: No checks on syntax, it is your own "
@@ -17419,28 +17450,28 @@ msgstr ""
17419
  "Wenn diese Option aktiviert: HTML ist erlaubt. Warnung: Keine Kontrollen auf "
17420
  "Syntax, es ist Ihre eigene Verantwortung Tags richtig zu schließen!"
17421
 
17422
- #: wppa-settings-autosave.php:7584
17423
  #, fuzzy
17424
  msgid "Allow HTML custom"
17425
  msgstr "Lassen Sie HTML benutzerdefinierte"
17426
 
17427
- #: wppa-settings-autosave.php:7585
17428
  #, fuzzy
17429
  msgid "Allow HTML in custom photo datafields."
17430
  msgstr "Lassen Sie HTML in kundenspezifischen Fotodatenfelder."
17431
 
17432
- #: wppa-settings-autosave.php:7593
17433
  #, fuzzy
17434
  msgid "Check tag balance"
17435
  msgstr "Guthaben prüfen"
17436
 
17437
- #: wppa-settings-autosave.php:7594
17438
  #, fuzzy
17439
  msgid "Check if the HTML tags are properly closed: \"balanced\"."
17440
  msgstr ""
17441
  "Überprüfen Sie, ob die HTML-Tags richtig geschlossen sind: \"ausgewogen\"."
17442
 
17443
- #: wppa-settings-autosave.php:7595
17444
  #, fuzzy
17445
  msgid ""
17446
  "If the HTML tags in an album or a photo description are not in balance, the "
@@ -17450,42 +17481,42 @@ msgstr ""
17450
  "Gleichgewicht sind, wird die Beschreibung nicht aktualisiert, wird eine "
17451
  "Fehlernachricht angezeigt"
17452
 
17453
- #: wppa-settings-autosave.php:7602
17454
  #, fuzzy
17455
  msgid "Use WP editor"
17456
  msgstr "Verwenden WP-Editor"
17457
 
17458
- #: wppa-settings-autosave.php:7603
17459
  #, fuzzy
17460
  msgid "Use the wp editor for multiline text fields."
17461
  msgstr "Verwenden Sie die wp-Editor für mehrzeilige Textfelder."
17462
 
17463
- #: wppa-settings-autosave.php:7611
17464
  #, fuzzy
17465
  msgid "Album sel hierarchic"
17466
  msgstr "Album sel hierarchischer"
17467
 
17468
- #: wppa-settings-autosave.php:7612
17469
  #, fuzzy
17470
  msgid "Show albums with (grand)parents in selection lists."
17471
  msgstr "Zeige Alben mit (Groß-) Eltern in Auswahllisten."
17472
 
17473
- #: wppa-settings-autosave.php:7620
17474
  #, fuzzy
17475
  msgid "Page sel hierarchic"
17476
  msgstr "Seite sel hierarchischer"
17477
 
17478
- #: wppa-settings-autosave.php:7621
17479
  #, fuzzy
17480
  msgid "Show pages with (grand)parents in selection lists."
17481
  msgstr "Seiten anzeigen mit (Groß-) Eltern in Auswahllisten."
17482
 
17483
- #: wppa-settings-autosave.php:7630
17484
  #, fuzzy
17485
  msgid "Photo admin page size"
17486
  msgstr "Foto Admin-Seite Größe"
17487
 
17488
- #: wppa-settings-autosave.php:7631
17489
  #, fuzzy
17490
  msgid ""
17491
  "The number of photos per page on the <br/>Edit Album -> Manage photos and "
@@ -17494,77 +17525,77 @@ msgstr ""
17494
  "Die Anzahl der Fotos pro Seite am <br/> Album bearbeiten -> Fotos verwalten "
17495
  "und bearbeiten Fotos Admin-Seiten."
17496
 
17497
- #: wppa-settings-autosave.php:7641
17498
  #, fuzzy
17499
  msgid "Comment admin page size"
17500
  msgstr "Kommentar Admin-Seite Größe"
17501
 
17502
- #: wppa-settings-autosave.php:7642
17503
  #, fuzzy
17504
  msgid "The number of comments per page on the Comments admin pages."
17505
  msgstr "Die Anzahl der Kommentare pro Seite auf den Comments Admin-Seiten."
17506
 
17507
- #: wppa-settings-autosave.php:7652
17508
  #, fuzzy
17509
  msgid "Geo info edit"
17510
  msgstr "Geo Info bearbeiten"
17511
 
17512
- #: wppa-settings-autosave.php:7653
17513
  #, fuzzy
17514
  msgid "Lattitude and longitude may be edited in photo admin."
17515
  msgstr "Lattitude und Länge kann in Foto Admin bearbeitet werden."
17516
 
17517
- #: wppa-settings-autosave.php:7661
17518
  #, fuzzy
17519
  msgid "Admin bar menu admin"
17520
  msgstr "Admin Bar-Menü Admin"
17521
 
17522
- #: wppa-settings-autosave.php:7662
17523
  #, fuzzy
17524
  msgid "Show menu on admin bar on admin pages."
17525
  msgstr "Zeigen Sie Menü auf Admin-Bar auf Admin-Seiten."
17526
 
17527
- #: wppa-settings-autosave.php:7670
17528
  #, fuzzy
17529
  msgid "Admin bar menu frontend"
17530
  msgstr "Admin Bar Menü-Frontend"
17531
 
17532
- #: wppa-settings-autosave.php:7671
17533
  #, fuzzy
17534
  msgid "Show menu on admin bar on frontend pages."
17535
  msgstr "Zeigen Sie Menü auf Admin-Bar auf Frontend-Seiten."
17536
 
17537
- #: wppa-settings-autosave.php:7679
17538
  #, fuzzy
17539
  msgid "Add shortcode to posts"
17540
  msgstr "In Kurzwahl zu Beiträge"
17541
 
17542
- #: wppa-settings-autosave.php:7680
17543
  #, fuzzy
17544
  msgid "Add a shortcode to the end of all posts."
17545
  msgstr "Fügen Sie eine Kurzwahlnummer an das Ende aller Beiträge."
17546
 
17547
- #: wppa-settings-autosave.php:7688
17548
  #, fuzzy
17549
  msgid "Shortcode to add"
17550
  msgstr "Shortcode hinzufügen"
17551
 
17552
- #: wppa-settings-autosave.php:7689
17553
  #, fuzzy
17554
  msgid "The shortcode to be added to the posts."
17555
  msgstr "Die Kurzwahlnummer zu werden, um die Beiträge hinzugefügt."
17556
 
17557
- #: wppa-settings-autosave.php:7697
17558
  #, fuzzy
17559
  msgid "We use Scripts"
17560
  msgstr "Wir verwenden Scripts"
17561
 
17562
- #: wppa-settings-autosave.php:7698
17563
  #, fuzzy
17564
  msgid "Use scripting syntax in shortcode generator."
17565
  msgstr "Verwenden Sie Skriptsyntax in Shortcode-Generator."
17566
 
17567
- #: wppa-settings-autosave.php:7699
17568
  #, fuzzy
17569
  msgid ""
17570
  "This setting defines if the shortcode generator outputs old style script "
@@ -17573,77 +17604,77 @@ msgstr ""
17573
  "Diese Einstellung legt fest, ob der Shortcode Generator alten Stil Script-"
17574
  "Tags oder neuen Stil Shortcodes ausgibt."
17575
 
17576
- #: wppa-settings-autosave.php:7707
17577
  #, fuzzy
17578
  msgid "Import page prieviews"
17579
  msgstr "Import Seite prieviews"
17580
 
17581
- #: wppa-settings-autosave.php:7708
17582
  #, fuzzy
17583
  msgid "Show thumbnail previews in import admin page."
17584
  msgstr "Zeigen Sie Miniaturansichten in Import Admin-Seite."
17585
 
17586
- #: wppa-settings-autosave.php:7716
17587
  #, fuzzy
17588
  msgid "Upload audiostub"
17589
  msgstr "laden Sie audiostub"
17590
 
17591
- #: wppa-settings-autosave.php:7717
17592
  #, fuzzy
17593
  msgid "Upload a new audio stub file"
17594
  msgstr "Laden Sie eine neue Audio-Stub-Datei"
17595
 
17596
- #: wppa-settings-autosave.php:7721
17597
  #, fuzzy
17598
  msgid "Upload audio stub image"
17599
  msgstr "Laden Sie Audio-Stub-Bild"
17600
 
17601
- #: wppa-settings-autosave.php:7726
17602
  #, fuzzy
17603
  msgid "Confirm create"
17604
  msgstr "bestätigen erstellen"
17605
 
17606
- #: wppa-settings-autosave.php:7727
17607
  #, fuzzy
17608
  msgid "Display confirmation dialog before creating album."
17609
  msgstr "Display-Bestätigungsdialog, bevor das Album zu erstellen."
17610
 
17611
- #: wppa-settings-autosave.php:7735
17612
  #, fuzzy
17613
  msgid "Import source root"
17614
  msgstr "Import Quelle Wurzel"
17615
 
17616
- #: wppa-settings-autosave.php:7736
17617
  #, fuzzy
17618
  msgid "Specify the highest level in the filesystem where to import from"
17619
  msgstr "Geben Sie die höchste Ebene im Dateisystem, wo zur Einfuhr aus"
17620
 
17621
- #: wppa-settings-autosave.php:7753
17622
  #, fuzzy
17623
  msgid "Allow import from WPPA+ source folders"
17624
  msgstr "Lassen Sie Import aus WPPA Quellordner"
17625
 
17626
- #: wppa-settings-autosave.php:7754
17627
  #, fuzzy
17628
  msgid "Only switch this on if you know what you are doing!"
17629
  msgstr "Nur diese einschalten, wenn Sie wissen, was Sie tun!"
17630
 
17631
- #: wppa-settings-autosave.php:7763
17632
  #, fuzzy
17633
  msgid "SEO related settings"
17634
  msgstr "SEO bezogenen Einstellungen"
17635
 
17636
- #: wppa-settings-autosave.php:7765
17637
  #, fuzzy
17638
  msgid "Meta on page"
17639
  msgstr "Meta auf Seite"
17640
 
17641
- #: wppa-settings-autosave.php:7766
17642
  #, fuzzy
17643
  msgid "Meta tags for photos on the page."
17644
  msgstr "Meta-Tags für Fotos auf der Seite."
17645
 
17646
- #: wppa-settings-autosave.php:7767
17647
  #, fuzzy
17648
  msgid ""
17649
  "If checked, the header of the page will contain metatags that refer to "
@@ -17652,17 +17683,17 @@ msgstr ""
17652
  "Wenn diese Option aktiviert, wird der Header der Seite Metatags enthalten, "
17653
  "die vorgestellten Fotos auf der Seite im Seitenkontext verweisen."
17654
 
17655
- #: wppa-settings-autosave.php:7774
17656
  #, fuzzy
17657
  msgid "Meta all"
17658
  msgstr "Meta alle"
17659
 
17660
- #: wppa-settings-autosave.php:7775
17661
  #, fuzzy
17662
  msgid "Meta tags for all featured photos."
17663
  msgstr "Meta-Tags für alle vorgestellten Fotos."
17664
 
17665
- #: wppa-settings-autosave.php:7776
17666
  #, fuzzy
17667
  msgid ""
17668
  "If checked, the header of the page will contain metatags that refer to all "
@@ -17671,7 +17702,7 @@ msgstr ""
17671
  "Wenn diese Option aktiviert, wird der Header der Seite Metatags enthalten, "
17672
  "die für alle vorgestellten Fotodateien verweisen."
17673
 
17674
- #: wppa-settings-autosave.php:7777
17675
  #, fuzzy
17676
  msgid ""
17677
  "If you have many featured photos, you might wish to uncheck this item to "
@@ -17680,17 +17711,17 @@ msgstr ""
17680
  "Wenn Sie viele vorgestellten Fotos haben, möchten Sie vielleicht diesen "
17681
  "Artikel zu deaktivieren Sie die Größe des Seitenkopfes zu reduzieren."
17682
 
17683
- #: wppa-settings-autosave.php:7784
17684
  #, fuzzy
17685
  msgid "Add og meta tags"
17686
  msgstr "In og Meta-Tags"
17687
 
17688
- #: wppa-settings-autosave.php:7785
17689
  #, fuzzy
17690
  msgid "Add og meta tags to the page header."
17691
  msgstr "In og Meta-Tags auf den Seitenkopf."
17692
 
17693
- #: wppa-settings-autosave.php:7788
17694
  #, fuzzy
17695
  msgid ""
17696
  "Turning this off may affect the functionality of social media items in the "
@@ -17699,158 +17730,158 @@ msgstr ""
17699
  "Dieses Ausschalten kann die Funktionalität von Social-Media-Elemente in der "
17700
  "Mitteilungsbox auswirken, die auf Open Graph-Tags Informationen verlassen."
17701
 
17702
- #: wppa-settings-autosave.php:7794
17703
  #, fuzzy
17704
  msgid "Image Alt attribute type"
17705
  msgstr "Bild Alt Attributtyp"
17706
 
17707
- #: wppa-settings-autosave.php:7795
17708
  #, fuzzy
17709
  msgid "Select kind of HTML alt=\"\" content for images."
17710
  msgstr "Wählen Sie Art von HTML alt = \"\" Inhalt für Bilder."
17711
 
17712
- #: wppa-settings-autosave.php:7798
17713
  #, fuzzy
17714
  msgid "photo name"
17715
  msgstr ""
17716
  "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 120 (Caption) wie "
17717
  "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
17718
 
17719
- #: wppa-settings-autosave.php:7798
17720
  #, fuzzy
17721
  msgid "name without file-ext"
17722
  msgstr "Name ohne Datei-ext"
17723
 
17724
- #: wppa-settings-autosave.php:7798
17725
  #, fuzzy
17726
  msgid "set in album admin"
17727
  msgstr "Album-Admin gesetzt"
17728
 
17729
- #: wppa-settings-autosave.php:7805
17730
  #, fuzzy
17731
  msgid "New Album and New Photo related miscellaneous settings"
17732
  msgstr "Neues Album und neue Foto im Zusammenhang verschiedene Einstellungen"
17733
 
17734
- #: wppa-settings-autosave.php:7843
17735
  #, fuzzy
17736
  msgid "Maximum time an album is indicated as New"
17737
  msgstr "Maximale Zeit ein Album als neu angezeigt"
17738
 
17739
- #: wppa-settings-autosave.php:7851
17740
  #, fuzzy
17741
  msgid "New Photo"
17742
  msgstr "Neues Foto"
17743
 
17744
- #: wppa-settings-autosave.php:7852
17745
  #, fuzzy
17746
  msgid "Maximum time a photo is indicated as New"
17747
  msgstr "Maximale Zeit ein Foto als neu angezeigt"
17748
 
17749
- #: wppa-settings-autosave.php:7860
17750
  #, fuzzy
17751
  msgid "Modified Album"
17752
  msgstr "Modifizierte Album"
17753
 
17754
- #: wppa-settings-autosave.php:7861
17755
  #, fuzzy
17756
  msgid "Maximum time an album is indicated as Modified"
17757
  msgstr "Maximale Zeit ein Album als Modified angezeigt"
17758
 
17759
- #: wppa-settings-autosave.php:7869
17760
  #, fuzzy
17761
  msgid "Modified Photo"
17762
  msgstr "Modifizierte Foto"
17763
 
17764
- #: wppa-settings-autosave.php:7870
17765
  #, fuzzy
17766
  msgid "Maximum time a photo is indicated as Modofied"
17767
  msgstr "Maximale Zeit ein Foto als Modofied angezeigt"
17768
 
17769
- #: wppa-settings-autosave.php:7878
17770
  #, fuzzy
17771
  msgid "Use text labels"
17772
- msgstr "Verwenden Sie Textbeschriftungen"
17773
 
17774
- #: wppa-settings-autosave.php:7879
17775
  #, fuzzy
17776
  msgid "Use editable text for the New and Modified labels"
17777
  msgstr ""
17778
  "Verwenden Sie editierbaren Text für die neuen und geänderten Beschriftungen"
17779
 
17780
- #: wppa-settings-autosave.php:7880
17781
  #, fuzzy
17782
  msgid "If UNticked, you can specify the urls for custom images to be used."
17783
  msgstr ""
17784
  "Wenn unticked, können Sie die URLs angeben, für benutzerdefinierte Bilder "
17785
  "verwendet werden."
17786
 
17787
- #: wppa-settings-autosave.php:7891
17788
  #, fuzzy
17789
  msgid "Orange"
17790
  msgstr "Orange"
17791
 
17792
- #: wppa-settings-autosave.php:7892
17793
  #, fuzzy
17794
  msgid "Yellow"
17795
- msgstr "Amarillo"
17796
 
17797
- #: wppa-settings-autosave.php:7895
17798
  #, fuzzy
17799
  msgid "Purple"
17800
  msgstr "Violett"
17801
 
17802
- #: wppa-settings-autosave.php:7896
17803
  #, fuzzy
17804
  msgid "Black/white"
17805
  msgstr "schwarz / weiß"
17806
 
17807
- #: wppa-settings-autosave.php:7908 wppa-settings-autosave.php:7930
17808
  #, fuzzy
17809
  msgid "New label"
17810
  msgstr "Neues Label hinzufügen"
17811
 
17812
- #: wppa-settings-autosave.php:7909
17813
  #, fuzzy
17814
  msgid "Specify the \"New\" indicator details."
17815
  msgstr "Geben Sie die \"Neu\" Anzeige Details."
17816
 
17817
- #: wppa-settings-autosave.php:7910 wppa-settings-autosave.php:7921
17818
  #, fuzzy
17819
  msgid "If you use qTranslate, the text may be multilingual."
17820
  msgstr "Wenn Sie qTranslate verwenden, kann der Text mehrsprachig sein."
17821
 
17822
- #: wppa-settings-autosave.php:7919 wppa-settings-autosave.php:7939
17823
  #, fuzzy
17824
  msgid "Modified label"
17825
  msgstr "Modifizierte Etikett"
17826
 
17827
- #: wppa-settings-autosave.php:7920
17828
  #, fuzzy
17829
  msgid "Specify the \"Modified\" indicator details."
17830
  msgstr "Geben Sie die \"Modified\" Anzeige Details."
17831
 
17832
- #: wppa-settings-autosave.php:7931
17833
  #, fuzzy
17834
  msgid "Specify the \"New\" indicator url."
17835
  msgstr "Geben Sie den \"Neu\" Indikator url."
17836
 
17837
- #: wppa-settings-autosave.php:7940
17838
  #, fuzzy
17839
  msgid "Specify the \"Modified\" indicator url."
17840
  msgstr "Geben Sie die \"Modified\" Indikator url."
17841
 
17842
- #: wppa-settings-autosave.php:7948
17843
  #, fuzzy
17844
  msgid "Limit LasTen New"
17845
  msgstr "Limit lasten New"
17846
 
17847
- #: wppa-settings-autosave.php:7949
17848
  #, fuzzy
17849
  msgid "Limits the LasTen photos to those that are 'New', or newly modified."
17850
  msgstr ""
17851
  "Begrenzt die lasten Fotos zu denen, die \"Neu\" oder neu modifiziert sind."
17852
 
17853
- #: wppa-settings-autosave.php:7950
17854
  #, fuzzy
17855
  msgid ""
17856
  "If you tick this box and configured the new photo time, you can even limit "
@@ -17861,12 +17892,12 @@ msgstr ""
17861
  "können Sie auch die Nummer von der Einstellung in Tabelle I-F7 begrenzen "
17862
  "oder diese Zahl auf einen unwahrscheinlich hohen Wert eingestellt."
17863
 
17864
- #: wppa-settings-autosave.php:7957
17865
  #, fuzzy
17866
  msgid "LasTen use Modified"
17867
  msgstr "Lasten Verwendung Geändert"
17868
 
17869
- #: wppa-settings-autosave.php:7958
17870
  #, fuzzy
17871
  msgid ""
17872
  "Use the time modified rather than time upload for LasTen widget/shortcode."
@@ -17874,17 +17905,17 @@ msgstr ""
17874
  "Nutzen Sie die Zeit geändert, anstatt Zeit Upload für lasten Widget / "
17875
  "Shortcode."
17876
 
17877
- #: wppa-settings-autosave.php:7966
17878
  #, fuzzy
17879
  msgid "Apply Newphoto desc"
17880
  msgstr "Bewerben Newphoto ab"
17881
 
17882
- #: wppa-settings-autosave.php:7967
17883
  #, fuzzy
17884
  msgid "Give each new photo a standard description."
17885
  msgstr "Geben Sie jedem neuen Foto, um eine Standardbeschreibung."
17886
 
17887
- #: wppa-settings-autosave.php:7968
17888
  #, fuzzy
17889
  msgid ""
17890
  "If checked, each new photo will get the description (template) as specified "
@@ -17893,54 +17924,54 @@ msgstr ""
17893
  "Wenn diese Option aktiviert, wird jedes neue Foto erhalten die Beschreibung "
17894
  "(Vorlage), wie im nächsten Punkt angegeben."
17895
 
17896
- #: wppa-settings-autosave.php:7975
17897
  #, fuzzy
17898
  msgid "New photo desc"
17899
  msgstr "Neues Foto ab"
17900
 
17901
- #: wppa-settings-autosave.php:7976
17902
  #, fuzzy
17903
  msgid "The description (template) to add to a new photo."
17904
  msgstr "Die Beschreibung (Template) in ein neues Foto hinzuzufügen."
17905
 
17906
- #: wppa-settings-autosave.php:7977
17907
  #, fuzzy
17908
  msgid "Enter the default description."
17909
  msgstr "Geben Sie die Standardbeschreibung."
17910
 
17911
- #: wppa-settings-autosave.php:7978
17912
  #, fuzzy
17913
  msgid "If you use html, please check item A-1 of this table."
17914
  msgstr "Wenn Sie HTML verwenden, bitte Artikel A-1 überprüfen dieser Tabelle."
17915
 
17916
- #: wppa-settings-autosave.php:7985
17917
  #, fuzzy
17918
  msgid "New photo owner"
17919
  msgstr "Neue Foto Besitzer"
17920
 
17921
- #: wppa-settings-autosave.php:7986
17922
  #, fuzzy
17923
  msgid "The owner of a new uploaded photo."
17924
  msgstr "Der Besitzer eines neuen geladenes Foto."
17925
 
17926
- #: wppa-settings-autosave.php:7987
17927
  #, fuzzy
17928
  msgid "If you leave this blank, the uploader will be set as the owner"
17929
  msgstr ""
17930
  "Wenn Sie dieses Feld leer lassen, wird der Uploader als Eigentümer "
17931
  "festgelegt werden"
17932
 
17933
- #: wppa-settings-autosave.php:7989
17934
  #, fuzzy
17935
  msgid "leave blank or enter login name"
17936
  msgstr "leer lassen oder Login-Namen eingeben"
17937
 
17938
- #: wppa-settings-autosave.php:7995
17939
  #, fuzzy
17940
  msgid "New albums are created with this upload limit."
17941
  msgstr "Neue Alben werden mit diesem Upload-Limit erstellt."
17942
 
17943
- #: wppa-settings-autosave.php:7996
17944
  #, fuzzy
17945
  msgid ""
17946
  "Administrators can change the limit settings in the \"Edit Album Information"
@@ -17949,22 +17980,22 @@ msgstr ""
17949
  "Administratoren können die Grenzeinstellungen im \"Album bearbeiten "
17950
  "Information\" Admin-Seite ändern."
17951
 
17952
- #: wppa-settings-autosave.php:8013
17953
  #, fuzzy
17954
  msgid "Default parent"
17955
  msgstr "Standard Mutter"
17956
 
17957
- #: wppa-settings-autosave.php:8014
17958
  #, fuzzy
17959
  msgid "The parent album of new albums."
17960
  msgstr "Die Mutter Album von neuen Alben."
17961
 
17962
- #: wppa-settings-autosave.php:8031
17963
  #, fuzzy
17964
  msgid "Default parent always"
17965
  msgstr "Standard Eltern immer"
17966
 
17967
- #: wppa-settings-autosave.php:8032
17968
  #, fuzzy
17969
  msgid ""
17970
  "The parent album of new albums is always the default, except for "
@@ -17973,67 +18004,67 @@ msgstr ""
17973
  "Die Mutter Album von neuen Alben ist immer die Standard, mit Ausnahme von "
17974
  "Administratoren."
17975
 
17976
- #: wppa-settings-autosave.php:8040
17977
  #, fuzzy
17978
  msgid "Show album full"
17979
  msgstr "Anzeigen Album voller"
17980
 
17981
- #: wppa-settings-autosave.php:8041
17982
  #, fuzzy
17983
  msgid "Show the Upload limit reached message if appropriate."
17984
  msgstr "Zeigen Sie den Upload-Limit erreicht Nachricht, wenn angemessen."
17985
 
17986
- #: wppa-settings-autosave.php:8049
17987
  #, fuzzy
17988
  msgid "Grant an album"
17989
  msgstr "Gewähren Sie ein Album"
17990
 
17991
- #: wppa-settings-autosave.php:8050
17992
  #, fuzzy
17993
  msgid "Create an album for each user logging in."
17994
  msgstr "Erstellen Sie ein Album für jeden Benutzer anmeldet."
17995
 
17996
- #: wppa-settings-autosave.php:8058
17997
  #, fuzzy
17998
  msgid "Grant album name"
17999
  msgstr "Grants Albumname"
18000
 
18001
- #: wppa-settings-autosave.php:8059
18002
  #, fuzzy
18003
  msgid "The name to be used for the album."
18004
  msgstr "Der Name, der für das Album verwendet werden."
18005
 
18006
- #: wppa-settings-autosave.php:8062
18007
  #, fuzzy
18008
  msgid "Login name"
18009
  msgstr "Login-Name"
18010
 
18011
- #: wppa-settings-autosave.php:8062 wppa-upldr-widget.php:182
18012
  #, fuzzy
18013
  msgid "Display name"
18014
  msgstr "Name anzeigen"
18015
 
18016
- #: wppa-settings-autosave.php:8062
18017
  #, fuzzy
18018
  msgid "Id"
18019
  msgstr "ID"
18020
 
18021
- #: wppa-settings-autosave.php:8062
18022
  #, fuzzy
18023
  msgid "Firstname Lastname"
18024
- msgstr "Vorname Nachname"
18025
 
18026
- #: wppa-settings-autosave.php:8069
18027
  #, fuzzy
18028
  msgid "Grant parent"
18029
  msgstr "Grants Eltern"
18030
 
18031
- #: wppa-settings-autosave.php:8070
18032
  #, fuzzy
18033
  msgid "The parent album of the auto created albums."
18034
  msgstr "Die Mutter Album der Auto bestehenden Alben."
18035
 
18036
- #: wppa-settings-autosave.php:8071
18037
  #, fuzzy
18038
  msgid ""
18039
  "You may select multiple albums. All logged in visitors will get their own "
@@ -18042,17 +18073,17 @@ msgstr ""
18042
  "Sie können mehrere Alben auswählen. Alle Angemeldete Besucher werden ihre "
18043
  "eigenen Unter Album in jedem gewährt Eltern bekommen."
18044
 
18045
- #: wppa-settings-autosave.php:8087
18046
  #, fuzzy
18047
  msgid "Max user albums"
18048
  msgstr "Max Benutzeralben"
18049
 
18050
- #: wppa-settings-autosave.php:8088
18051
  #, fuzzy
18052
  msgid "The max number of albums a user can create."
18053
  msgstr "Die maximale Anzahl von Alben ein Benutzer erstellen kann."
18054
 
18055
- #: wppa-settings-autosave.php:8089
18056
  #, fuzzy
18057
  msgid ""
18058
  "The maximum number of albums a user can create when he is not admin and "
@@ -18061,61 +18092,61 @@ msgstr ""
18061
  "Die maximale Anzahl der Alben kann ein Benutzer erstellen, wenn er nicht "
18062
  "admin und Besitzer nur aktiv"
18063
 
18064
- #: wppa-settings-autosave.php:8090
18065
  #, fuzzy
18066
  msgid "A number of 0 means No limit"
18067
  msgstr "Eine Reihe von 0 bedeutet keine Begrenzung"
18068
 
18069
- #: wppa-settings-autosave.php:8097
18070
  #, fuzzy
18071
  msgid "Default photo name"
18072
  msgstr "Standardbild"
18073
 
18074
- #: wppa-settings-autosave.php:8098
18075
  #, fuzzy
18076
  msgid "Select the way the name of a new uploaded photo should be determined."
18077
  msgstr ""
18078
  "Wählen Sie die Art und Weise der Name eines neuen hochgeladenen Foto sollte "
18079
  "bestimmt werden."
18080
 
18081
- #: wppa-settings-autosave.php:8101
18082
  #, fuzzy
18083
  msgid "Filename"
18084
  msgstr ""
18085
  "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 120 (Caption) wie "
18086
  "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
18087
 
18088
- #: wppa-settings-autosave.php:8102
18089
  #, fuzzy
18090
  msgid "Filename without extension"
18091
  msgstr "Dateiname ohne Erweiterung"
18092
 
18093
- #: wppa-settings-autosave.php:8103
18094
  #, fuzzy
18095
  msgid "IPTC Tag 2#005 (Graphic name)"
18096
  msgstr "IPTC Tag 2 # 005 (Grafikname)"
18097
 
18098
- #: wppa-settings-autosave.php:8104
18099
  #, fuzzy
18100
  msgid "IPTC Tag 2#120 (Caption)"
18101
  msgstr "IPTC Tag 2 # 120 (Caption)"
18102
 
18103
- #: wppa-settings-autosave.php:8105
18104
  #, fuzzy
18105
  msgid "No name at all"
18106
  msgstr "Kein Name überhaupt"
18107
 
18108
- #: wppa-settings-autosave.php:8113
18109
  #, fuzzy
18110
  msgid "Default coverphoto"
18111
  msgstr "Standard Coverfoto"
18112
 
18113
- #: wppa-settings-autosave.php:8114
18114
  #, fuzzy
18115
  msgid "Name of photofile to become cover image"
18116
  msgstr "Name des Photofile zu werden Cover-Bild"
18117
 
18118
- #: wppa-settings-autosave.php:8115
18119
  #, fuzzy
18120
  msgid ""
18121
  "If you name a photofile like this setting before upload, it will become the "
@@ -18124,77 +18155,77 @@ msgstr ""
18124
  "Wenn Sie eine Photofile wie diese Einstellung vor dem Hochladen nennen, wird "
18125
  "es das cover automatisch geworden."
18126
 
18127
- #: wppa-settings-autosave.php:8122
18128
  #, fuzzy
18129
  msgid "Copy Timestamp"
18130
  msgstr "Kopieren Timestamp"
18131
 
18132
- #: wppa-settings-autosave.php:8123
18133
  #, fuzzy
18134
  msgid "Copy timestamp when copying photo."
18135
  msgstr "Kopieren Sie Zeitstempel, wenn Foto kopieren."
18136
 
18137
- #: wppa-settings-autosave.php:8124
18138
  #, fuzzy
18139
  msgid "If checked, the copied photo is not \"new\""
18140
  msgstr "Wenn diese Option aktiviert, ist das kopierte Foto nicht \"neu\""
18141
 
18142
- #: wppa-settings-autosave.php:8131
18143
  #, fuzzy
18144
  msgid "Copy Owner"
18145
  msgstr "Kopieren Besitzer"
18146
 
18147
- #: wppa-settings-autosave.php:8132
18148
  #, fuzzy
18149
  msgid "Copy the owner when copying photo."
18150
  msgstr "Kopieren Sie den Besitzer, wenn Foto kopieren."
18151
 
18152
- #: wppa-settings-autosave.php:8140
18153
  #, fuzzy
18154
  msgid "FE Albums public"
18155
  msgstr "FE Alben öffentlich"
18156
 
18157
- #: wppa-settings-autosave.php:8141
18158
  #, fuzzy
18159
  msgid "Frontend created albums are --- public ---"
18160
  msgstr "Frontend erstellt Alben sind --- öffentlich ---"
18161
 
18162
- #: wppa-settings-autosave.php:8150
18163
  #, fuzzy
18164
  msgid "Optimize image files right after upload/import"
18165
  msgstr "Optimieren Sie Bilddateien direkt nach dem Upload / Import"
18166
 
18167
- #: wppa-settings-autosave.php:8151
18168
  #, fuzzy
18169
  msgid "This option requires the plugin EWWW Image Optimizer to be activated"
18170
  msgstr "Für diese Option muss das Plugin EWWW Image Optimizer aktiviert werden"
18171
 
18172
- #: wppa-settings-autosave.php:8158
18173
  #, fuzzy
18174
  msgid "Default album linktype"
18175
  msgstr "Standard Album linktype"
18176
 
18177
- #: wppa-settings-autosave.php:8159
18178
  #, fuzzy
18179
  msgid "The album linktype for new albums"
18180
  msgstr "Das Album Linktyp für neue Alben"
18181
 
18182
- #: wppa-settings-autosave.php:8178
18183
  #, fuzzy
18184
  msgid "Search Albums and Photos related settings"
18185
  msgstr "Suchen Alben und Fotos im Zusammenhang mit Einstellungen"
18186
 
18187
- #: wppa-settings-autosave.php:8180
18188
  #, fuzzy
18189
  msgid "Search page"
18190
- msgstr "Suchen"
18191
 
18192
- #: wppa-settings-autosave.php:8181
18193
  #, fuzzy
18194
  msgid "Display the search results on page."
18195
  msgstr "Zeigen Sie die Suchergebnisse zu Seite."
18196
 
18197
- #: wppa-settings-autosave.php:8182
18198
  #, fuzzy
18199
  msgid ""
18200
  "Select the page to be used to display search results. The page MUST contain "
@@ -18203,13 +18234,13 @@ msgstr ""
18203
  "Wählen Sie die Seite verwendet werden Suchergebnisse anzuzeigen. Die Seite "
18204
  "muss enthalten [WPPA] [/ WPPA]."
18205
 
18206
- #: wppa-settings-autosave.php:8183
18207
  #, fuzzy
18208
  msgid "You may give it the title \"Search results\" or something alike."
18209
  msgstr ""
18210
  "Sie können es mit dem Titel \"Suchergebnisse\" geben oder etwas ähnlich."
18211
 
18212
- #: wppa-settings-autosave.php:8184
18213
  #, fuzzy
18214
  msgid ""
18215
  "Or you ou may use the standard page on which you display the generic album."
@@ -18217,17 +18248,17 @@ msgstr ""
18217
  "Oder Sie ou kann die Standard-Seite verwenden, auf dem Sie die generische "
18218
  "Album anzuzeigen."
18219
 
18220
- #: wppa-settings-autosave.php:8217
18221
  #, fuzzy
18222
  msgid "Exclude separate"
18223
  msgstr "ausschließen getrennt"
18224
 
18225
- #: wppa-settings-autosave.php:8218
18226
  #, fuzzy
18227
  msgid "Do not search 'separate' albums."
18228
  msgstr "Nicht suchen \"separate\" Alben."
18229
 
18230
- #: wppa-settings-autosave.php:8219
18231
  #, fuzzy
18232
  msgid ""
18233
  "When checked, albums (and photos in them) that have the parent set to --- "
@@ -18236,7 +18267,7 @@ msgstr ""
18236
  "Wenn diese Option aktiviert, Alben (und Fotos in ihnen), die die Eltern "
18237
  "haben auf --- --- getrennt werden aus durchsucht ausgeschlossen."
18238
 
18239
- #: wppa-settings-autosave.php:8220
18240
  #, fuzzy
18241
  msgid ""
18242
  "Except when you start searching in a 'saparate' album, with the \"search in "
@@ -18245,102 +18276,102 @@ msgstr ""
18245
  "Außer, wenn Sie beginnen, in einem 'Saparate' Album suchen, mit dem \"im "
18246
  "aktuellen Bereich suchen\" Kästchen aktiviert."
18247
 
18248
- #: wppa-settings-autosave.php:8227
18249
  #, fuzzy
18250
  msgid "Include tags"
18251
  msgstr "Fügen Sie Tags"
18252
 
18253
- #: wppa-settings-autosave.php:8228
18254
  #, fuzzy
18255
  msgid "Do also search the photo tags."
18256
  msgstr "Sie auch die Foto-Tags zu suchen."
18257
 
18258
- #: wppa-settings-autosave.php:8229
18259
  #, fuzzy
18260
  msgid "When checked, the tags of the photo will also be searched."
18261
  msgstr ""
18262
  "Wenn diese Option aktiviert, werden auch die Tags des Fotos durchsucht "
18263
  "werden."
18264
 
18265
- #: wppa-settings-autosave.php:8236
18266
  #, fuzzy
18267
  msgid "Include categories"
18268
  msgstr "Kategorien einfügen"
18269
 
18270
- #: wppa-settings-autosave.php:8237
18271
  #, fuzzy
18272
  msgid "Do also search the album categories."
18273
  msgstr "Sie auch die Albumkategorien zu durchsuchen."
18274
 
18275
- #: wppa-settings-autosave.php:8238
18276
  #, fuzzy
18277
  msgid "When checked, the categories of the album will also be searched."
18278
  msgstr ""
18279
  "Wenn diese Option aktiviert, werden auch die Kategorien des Albums gesucht "
18280
  "werden."
18281
 
18282
- #: wppa-settings-autosave.php:8245
18283
  #, fuzzy
18284
  msgid "Include comments"
18285
  msgstr "Fügen Sie Kommentare"
18286
 
18287
- #: wppa-settings-autosave.php:8246
18288
  #, fuzzy
18289
  msgid "Do also search the comments on photos."
18290
  msgstr "Sie suchen auch die Kommentare zu Fotos."
18291
 
18292
- #: wppa-settings-autosave.php:8247
18293
  #, fuzzy
18294
  msgid "When checked, the comments of the photos will also be searched."
18295
  msgstr ""
18296
  "Wenn diese Option aktiviert, werden auch die Kommentare der Fotos durchsucht."
18297
 
18298
- #: wppa-settings-autosave.php:8254
18299
  #, fuzzy
18300
  msgid "Photos only"
18301
  msgstr "nur Fotos"
18302
 
18303
- #: wppa-settings-autosave.php:8255
18304
  #, fuzzy
18305
  msgid "Search for photos only."
18306
  msgstr "Suchen Sie nach Fotos nur."
18307
 
18308
- #: wppa-settings-autosave.php:8256
18309
  #, fuzzy
18310
  msgid "When checked, only photos will be searched for."
18311
  msgstr "Wenn diese Option aktiviert, werden nur die Fotos gesucht werden."
18312
 
18313
- #: wppa-settings-autosave.php:8271
18314
  #, fuzzy
18315
  msgid "Max albums found"
18316
  msgstr "Max Alben gefunden"
18317
 
18318
- #: wppa-settings-autosave.php:8272
18319
  #, fuzzy
18320
  msgid "The maximum number of albums to be displayed."
18321
  msgstr "Die maximale Anzahl von Alben angezeigt werden."
18322
 
18323
- #: wppa-settings-autosave.php:8280
18324
  #, fuzzy
18325
  msgid "Max photos found"
18326
  msgstr "Max Fotos gefunden"
18327
 
18328
- #: wppa-settings-autosave.php:8281
18329
  #, fuzzy
18330
  msgid "The maximum number of photos to be displayed."
18331
  msgstr "Die maximale Anzahl der Fotos, die angezeigt werden."
18332
 
18333
- #: wppa-settings-autosave.php:8289
18334
  #, fuzzy
18335
  msgid "Tags OR only"
18336
  msgstr "Tags oder nur"
18337
 
18338
- #: wppa-settings-autosave.php:8290
18339
  #, fuzzy
18340
  msgid "No and / or buttons"
18341
  msgstr "Nein, und / oder Tasten"
18342
 
18343
- #: wppa-settings-autosave.php:8291
18344
  #, fuzzy
18345
  msgid ""
18346
  "Hide the and/or radiobuttons and do the or method in the multitag widget and "
@@ -18349,33 +18380,33 @@ msgstr ""
18349
  "Blenden Sie die und / oder Radiobuttons und tun das oder Verfahren im "
18350
  "multitag Widget und Shortcode."
18351
 
18352
- #: wppa-settings-autosave.php:8298
18353
  #, fuzzy
18354
  msgid "Tags add Inverse"
18355
  msgstr "Stichworte hinzufügen Inverse"
18356
 
18357
- #: wppa-settings-autosave.php:8299
18358
  #, fuzzy
18359
  msgid "Add a checkbox to invert the selection."
18360
  msgstr "Fügen Sie eine Checkbox, um die Auswahl zu invertieren."
18361
 
18362
- #: wppa-settings-autosave.php:8300
18363
  #, fuzzy
18364
  msgid "Adds an Invert (NOT) checkbox on the multitag widget and shortcode."
18365
  msgstr ""
18366
  "Fügt ein Umkehren (NOT) Checkbox auf der multitag Widget und Shortcode."
18367
 
18368
- #: wppa-settings-autosave.php:8307
18369
  #, fuzzy
18370
  msgid "Floating searchtoken"
18371
  msgstr "Schwimmdock searchtoken"
18372
 
18373
- #: wppa-settings-autosave.php:8308
18374
  #, fuzzy
18375
  msgid "A match need not start at the first char."
18376
  msgstr "Ein Spiel muss nicht beim ersten Zeichen beginnen."
18377
 
18378
- #: wppa-settings-autosave.php:8309
18379
  #, fuzzy
18380
  msgid ""
18381
  "A match is found while searching also when the entered token is somewhere in "
@@ -18384,22 +18415,22 @@ msgstr ""
18384
  "Eine Übereinstimmung gefunden wird während der Suche auch dann, wenn der "
18385
  "eingegebene Token irgendwo in der Mitte eines Wortes ist."
18386
 
18387
- #: wppa-settings-autosave.php:8310
18388
  #, fuzzy
18389
  msgid "This works in indexed search only!"
18390
  msgstr "Dies funktioniert in nur indizierte Suche!"
18391
 
18392
- #: wppa-settings-autosave.php:8317
18393
  #, fuzzy
18394
  msgid "Search results display"
18395
  msgstr "Suchergebnisse Anzeige"
18396
 
18397
- #: wppa-settings-autosave.php:8318
18398
  #, fuzzy
18399
  msgid "Select the way the search results should be displayed."
18400
  msgstr "Wählen Sie die Art, wie die Suchergebnisse angezeigt werden sollen."
18401
 
18402
- #: wppa-settings-autosave.php:8319
18403
  #, fuzzy
18404
  msgid ""
18405
  "If you select anything different from \"Albums and thumbnails\", \"Photos "
@@ -18408,27 +18439,27 @@ msgstr ""
18408
  "Wenn Sie etwas wählen anders \"Alben und Miniaturen\", \"Fotos nur\" "
18409
  "angenommen (Tabelle IX-E6)."
18410
 
18411
- #: wppa-settings-autosave.php:8321
18412
  #, fuzzy
18413
  msgid "Albums and thumbnails"
18414
  msgstr "Alben und Miniaturen"
18415
 
18416
- #: wppa-settings-autosave.php:8321
18417
  #, fuzzy
18418
  msgid "Slideonly slideshow"
18419
  msgstr "Slideonly Diashow"
18420
 
18421
- #: wppa-settings-autosave.php:8328
18422
  #, fuzzy
18423
  msgid "Name max length"
18424
  msgstr "Maximale Länge"
18425
 
18426
- #: wppa-settings-autosave.php:8329
18427
  #, fuzzy
18428
  msgid "Max length of displayed photonames in supersearch selectionlist"
18429
  msgstr "Max Länge der angezeigten photonames in Superselection"
18430
 
18431
- #: wppa-settings-autosave.php:8330 wppa-settings-autosave.php:8339
18432
  #, fuzzy
18433
  msgid ""
18434
  "To limit the length of the selectionlist, enter the number of characters to "
@@ -18437,79 +18468,79 @@ msgstr ""
18437
  "Um die Länge des Selection begrenzen, geben Sie die Anzahl der Zeichen zu "
18438
  "zeigen."
18439
 
18440
- #: wppa-settings-autosave.php:8337
18441
  #, fuzzy
18442
  msgid "Text max length"
18443
  msgstr "Maximale Länge"
18444
 
18445
- #: wppa-settings-autosave.php:8338
18446
  #, fuzzy
18447
  msgid "Max length of displayed photo text in supersearch selectionlist"
18448
  msgstr "Max Länge der angezeigten Fotos Text in Superselection"
18449
 
18450
- #: wppa-settings-autosave.php:8346
18451
  #, fuzzy
18452
  msgid "Search toptext"
18453
  msgstr "Suchen Toptext"
18454
 
18455
- #: wppa-settings-autosave.php:8347
18456
  #, fuzzy
18457
  msgid "The text at the top of the search box."
18458
  msgstr "Der Text an der Spitze der Suchfeld ein."
18459
 
18460
- #: wppa-settings-autosave.php:8348
18461
  #, fuzzy
18462
  msgid "May contain unfiltered HTML."
18463
  msgstr "Kann ungefilterten HTML enthalten."
18464
 
18465
- #: wppa-settings-autosave.php:8355
18466
  #, fuzzy
18467
  msgid "Section search text"
18468
  msgstr "Abschnitt Suchtext"
18469
 
18470
- #: wppa-settings-autosave.php:8356 wppa-settings-autosave.php:8365
18471
  #, fuzzy
18472
  msgid "The labeltext at the checkbox."
18473
  msgstr "Der Labeltext bei der Checkbox."
18474
 
18475
- #: wppa-settings-autosave.php:8364
18476
  #, fuzzy
18477
  msgid "Results search text"
18478
  msgstr "Ergebnisse Suchtext"
18479
 
18480
- #: wppa-settings-autosave.php:8374
18481
  #, fuzzy
18482
  msgid "Watermark related settings"
18483
  msgstr "Wasserzeichen im Zusammenhang mit Einstellungen"
18484
 
18485
- #: wppa-settings-autosave.php:8377
18486
  #, fuzzy
18487
  msgid "Enable the application of watermarks."
18488
  msgstr "Aktivieren Sie die Anwendung von Wasserzeichen."
18489
 
18490
- #: wppa-settings-autosave.php:8378
18491
  #, fuzzy
18492
  msgid "If checked, photos can be watermarked during upload / import."
18493
  msgstr ""
18494
  "Wenn diese Option aktiviert, können Fotos beim Upload / Import mit "
18495
  "Wasserzeichen versehen werden."
18496
 
18497
- #: wppa-settings-autosave.php:8387
18498
  #, fuzzy
18499
  msgid "Watermark file"
18500
  msgstr "Wende Wasserzeichen-Datei an:"
18501
 
18502
- #: wppa-settings-autosave.php:8388
18503
  #, fuzzy
18504
  msgid "The default watermarkfile to be used."
18505
  msgstr "Der Standard watermarkfile verwendet werden."
18506
 
18507
- #: wppa-settings-autosave.php:8389
18508
  #, fuzzy
18509
  msgid "Watermark files are of type png and reside in"
18510
  msgstr "Wasserzeichen-Dateien sind vom Typ png und befinden sich in"
18511
 
18512
- #: wppa-settings-autosave.php:8390
18513
  #, fuzzy
18514
  msgid ""
18515
  "A suitable watermarkfile typically consists of a transparent background and "
@@ -18518,7 +18549,7 @@ msgstr ""
18518
  "Ein geeignetes watermarkfile besteht typischerweise aus einem transparenten "
18519
  "Hintergrund und einem schwarzen Text oder Zeichnung."
18520
 
18521
- #: wppa-settings-autosave.php:8392
18522
  #, fuzzy
18523
  msgid ""
18524
  "You may also select one of the textual watermark types at the bottom of the "
@@ -18527,37 +18558,37 @@ msgstr ""
18527
  "Sie können sich auch an der Unterseite der Auswahlliste eines der "
18528
  "Textwasserzeichen-Typen auswählen."
18529
 
18530
- #: wppa-settings-autosave.php:8396
18531
  #, fuzzy
18532
  msgid "position:"
18533
  msgstr "Position:"
18534
 
18535
- #: wppa-settings-autosave.php:8402
18536
  #, fuzzy
18537
  msgid "Upload watermark"
18538
  msgstr "hochladen von Wasserzeichen"
18539
 
18540
- #: wppa-settings-autosave.php:8403
18541
  #, fuzzy
18542
  msgid "Upload a new watermark file"
18543
  msgstr "Laden Sie ein neues Wasserzeichen-Datei"
18544
 
18545
- #: wppa-settings-autosave.php:8407
18546
  #, fuzzy
18547
  msgid "Upload watermark image"
18548
  msgstr "Hochladen von Wasserzeichen"
18549
 
18550
- #: wppa-settings-autosave.php:8412
18551
  #, fuzzy
18552
  msgid "Watermark opacity image"
18553
  msgstr "Wasserzeichen Opazität Bild"
18554
 
18555
- #: wppa-settings-autosave.php:8413
18556
  #, fuzzy
18557
  msgid "You can set the intensity of image watermarks here."
18558
  msgstr "Sie können die Intensität des Bildes hier eingestellten Wasserzeichen."
18559
 
18560
- #: wppa-settings-autosave.php:8414 wppa-settings-autosave.php:8499
18561
  #, fuzzy
18562
  msgid ""
18563
  "The higher the number, the intenser the watermark. Value must be > 0 and <= "
@@ -18566,62 +18597,62 @@ msgstr ""
18566
  "Je höher die Zahl, desto intenser das Wasserzeichen. Der Wert muss> 0 und <= "
18567
  "100."
18568
 
18569
- #: wppa-settings-autosave.php:8421
18570
  #, fuzzy
18571
  msgid "Textual watermark style"
18572
  msgstr "Textual Wasserzeichen Stil"
18573
 
18574
- #: wppa-settings-autosave.php:8422
18575
  #, fuzzy
18576
  msgid "The way the textual watermarks look like"
18577
  msgstr "Die Art, wie die Textwasserzeichen aussehen"
18578
 
18579
- #: wppa-settings-autosave.php:8426
18580
  #, fuzzy
18581
  msgid "TV subtitle style"
18582
  msgstr "TV Untertitel Stil"
18583
 
18584
- #: wppa-settings-autosave.php:8426
18585
  #, fuzzy
18586
  msgid "White text on black background"
18587
  msgstr "Weißer Text auf schwarzem Hintergrund"
18588
 
18589
- #: wppa-settings-autosave.php:8426
18590
  #, fuzzy
18591
  msgid "Black text on white background"
18592
  msgstr "Schwarzer Text auf weißem Hintergrund"
18593
 
18594
- #: wppa-settings-autosave.php:8426
18595
  #, fuzzy
18596
  msgid "Reverse TV style (Utopia)"
18597
  msgstr "Reverse-TV-Stil (Utopia)"
18598
 
18599
- #: wppa-settings-autosave.php:8426
18600
  #, fuzzy
18601
  msgid "White on transparent background"
18602
  msgstr "Weiß auf transparentem Hintergrund"
18603
 
18604
- #: wppa-settings-autosave.php:8426
18605
  #, fuzzy
18606
  msgid "Black on transparent background"
18607
  msgstr "Schwarz auf transparentem Hintergrund"
18608
 
18609
- #: wppa-settings-autosave.php:8436
18610
  #, fuzzy
18611
  msgid "Predefined watermark text"
18612
  msgstr "Vordefinierte Wasserzeichen Text"
18613
 
18614
- #: wppa-settings-autosave.php:8437
18615
  #, fuzzy
18616
  msgid "The text to use when --- pre-defined --- is selected."
18617
  msgstr "Der Text zu verwenden, wenn --- vordefinierte --- ausgewählt ist."
18618
 
18619
- #: wppa-settings-autosave.php:8438
18620
  #, fuzzy
18621
  msgid "You may use the following keywords:"
18622
  msgstr "Sie können folgende Schlüsselwörter verwenden:"
18623
 
18624
- #: wppa-settings-autosave.php:8439
18625
  #, fuzzy
18626
  msgid ""
18627
  "w#site, w#displayname, all standard photo keywords, iptc and exif keywords"
@@ -18629,34 +18660,34 @@ msgstr ""
18629
  "w # Ort, w # displayname, alle Standard-Foto Schlüsselwörter, IPTC- und EXIF-"
18630
  "Schlüsselwörter"
18631
 
18632
- #: wppa-settings-autosave.php:8446
18633
  #, fuzzy
18634
  msgid "Textual watermark font"
18635
  msgstr "Textual Wasserzeichen Schrift"
18636
 
18637
- #: wppa-settings-autosave.php:8447
18638
  #, fuzzy
18639
  msgid "The font to use with textusl watermarks."
18640
  msgstr "Die Schriftart mit textusl Wasserzeichen zu verwenden."
18641
 
18642
- #: wppa-settings-autosave.php:8448
18643
  #, fuzzy
18644
  msgid "Except for the system font, are font files of type ttf and reside in"
18645
  msgstr ""
18646
  "Mit Ausnahme der Systemschriftart sind Font-Dateien des Typs ttf und "
18647
  "befinden sich in"
18648
 
18649
- #: wppa-settings-autosave.php:8476
18650
  #, fuzzy
18651
  msgid "Textual watermark font size"
18652
  msgstr "Textual Wasserzeichen Schriftgröße"
18653
 
18654
- #: wppa-settings-autosave.php:8477
18655
  #, fuzzy
18656
  msgid "You can set the size of the truetype fonts only."
18657
  msgstr "Sie können nur die Größe der Truetype-Schriftarten eingestellt."
18658
 
18659
- #: wppa-settings-autosave.php:8478
18660
  #, fuzzy
18661
  msgid ""
18662
  "System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
@@ -18665,7 +18696,7 @@ msgstr ""
18665
  "Systemschriftart kann 1,2,3,4 oder 5 haben eine Größe, in einigen stoneage "
18666
  "Schriftgröße Einheiten. Jeder Wert> 5 wird als 5 behandelt werden."
18667
 
18668
- #: wppa-settings-autosave.php:8479
18669
  #, fuzzy
18670
  msgid ""
18671
  "Truetype fonts can have any positive integer size, if your PHPs GD version "
@@ -18674,22 +18705,22 @@ msgstr ""
18674
  "Truetype-Schriftarten können eine beliebige positive ganze Zahl Größe haben, "
18675
  "wenn Ihre PHPs GD Version 1 ist, in Pixel, in GD2 in Punkten."
18676
 
18677
- #: wppa-settings-autosave.php:8480
18678
  #, fuzzy
18679
  msgid "It is unclear howmany pixels a point is..."
18680
  msgstr "Es ist unklar, howmany Pixel ein Punkt ist ..."
18681
 
18682
- #: wppa-settings-autosave.php:8487
18683
  #, fuzzy
18684
  msgid "Upload watermark font"
18685
  msgstr "Hochladen von Wasserzeichen Schrift"
18686
 
18687
- #: wppa-settings-autosave.php:8488
18688
  #, fuzzy
18689
  msgid "Upload a new watermark font file"
18690
  msgstr "Laden Sie ein neues Wasserzeichen Schriftdatei"
18691
 
18692
- #: wppa-settings-autosave.php:8489
18693
  #, fuzzy
18694
  msgid ""
18695
  "Upload truetype fonts (.ttf) only, and test if they work on your server "
@@ -18698,216 +18729,216 @@ msgstr ""
18698
  "Laden Sie Truetype-Schriftarten (.ttf) nur, und testen, ob sie auf dem "
18699
  "Server-Plattform arbeiten."
18700
 
18701
- #: wppa-settings-autosave.php:8492
18702
  #, fuzzy
18703
  msgid "Upload TrueType font"
18704
  msgstr "Hochladen von Truetype-Schriftart"
18705
 
18706
- #: wppa-settings-autosave.php:8497
18707
  #, fuzzy
18708
  msgid "Watermark opacity text"
18709
  msgstr "Deckkraft Wasserzeichen"
18710
 
18711
- #: wppa-settings-autosave.php:8498
18712
  #, fuzzy
18713
  msgid "You can set the intensity of a text watermarks here."
18714
  msgstr ""
18715
  "Sie können die Intensität eines Textes hier eingestellten Wasserzeichen."
18716
 
18717
- #: wppa-settings-autosave.php:8507
18718
  #, fuzzy
18719
  msgid "A real life preview. To update: refresh the page."
18720
  msgstr ""
18721
  "Ein wirkliches Leben Vorschau. So aktualisieren Sie die Seite aktualisieren."
18722
 
18723
- #: wppa-settings-autosave.php:8518
18724
  #, fuzzy
18725
  msgid "Watermark thumbnails"
18726
  msgstr "Wasserzeichen Thumbnails"
18727
 
18728
- #: wppa-settings-autosave.php:8519
18729
  #, fuzzy
18730
  msgid "Watermark also the thumbnail image files."
18731
  msgstr "Wasserzeichen auch die Miniaturbilddateien."
18732
 
18733
- #: wppa-settings-autosave.php:8527
18734
  #, fuzzy
18735
  msgid "Slideshow elements sequence order settings"
18736
  msgstr "Diashow Sequenzelemente, um Einstellungen"
18737
 
18738
- #: wppa-settings-autosave.php:8533 wppa-settings-autosave.php:8579
18739
  #, fuzzy
18740
  msgid "StartStop"
18741
  msgstr "Start stop"
18742
 
18743
- #: wppa-settings-autosave.php:8534 wppa-settings-autosave.php:8580
18744
  #, fuzzy
18745
  msgid "SlideFrame"
18746
  msgstr "SlideFrame"
18747
 
18748
- #: wppa-settings-autosave.php:8536
18749
  #, fuzzy
18750
  msgid "Desc"
18751
- msgstr "Absteigend"
18752
 
18753
- #: wppa-settings-autosave.php:8539 wppa-settings-autosave.php:8584
18754
  #, fuzzy
18755
  msgid "FilmStrip"
18756
- msgstr "Diastreifen"
18757
 
18758
- #: wppa-settings-autosave.php:8540 wppa-settings-autosave.php:8585
18759
  #, fuzzy
18760
  msgid "Browsebar"
18761
  msgstr "Browsebar"
18762
 
18763
- #: wppa-settings-autosave.php:8542 wppa-settings-autosave.php:8587
18764
  #, fuzzy
18765
  msgid "IPTC data"
18766
  msgstr "Keine IPTC-Daten"
18767
 
18768
- #: wppa-settings-autosave.php:8543 wppa-settings-autosave.php:8588
18769
  #, fuzzy
18770
  msgid "EXIF data"
18771
  msgstr "Keine EXIF-Daten"
18772
 
18773
- #: wppa-settings-autosave.php:8544 wppa-settings-autosave.php:8589
18774
  #, fuzzy
18775
  msgid "Share box"
18776
  msgstr "Teilen Box"
18777
 
18778
- #: wppa-settings-autosave.php:8546 wppa-settings-autosave.php:8591
18779
  #, fuzzy
18780
  msgid "Enabled"
18781
- msgstr "Anschalten"
18782
 
18783
- #: wppa-settings-autosave.php:8547 wppa-settings-autosave.php:8592
18784
  #, fuzzy
18785
  msgid "Disabled"
18786
- msgstr "Ausschalten"
18787
 
18788
- #: wppa-settings-autosave.php:8549 wppa-settings-autosave.php:8594
18789
  #, fuzzy
18790
  msgid "Start/Stop & Slower/Faster navigation bar"
18791
  msgstr "Start / Stop & Langsamer / Schneller Navigationsleiste"
18792
 
18793
- #: wppa-settings-autosave.php:8550 wppa-settings-autosave.php:8595
18794
  #, fuzzy
18795
  msgid "The Slide Frame"
18796
- msgstr "Der Gleitrahmen"
18797
 
18798
- #: wppa-settings-autosave.php:8550 wppa-settings-autosave.php:8595
18799
  #, fuzzy
18800
  msgid "( Always )"
18801
  msgstr "Immer"
18802
 
18803
- #: wppa-settings-autosave.php:8551
18804
  #, fuzzy
18805
  msgid "Photo Name Box"
18806
  msgstr "Photo Box"
18807
 
18808
- #: wppa-settings-autosave.php:8552
18809
  #, fuzzy
18810
  msgid "Photo Description Box"
18811
  msgstr "Foto-Beschreibung"
18812
 
18813
- #: wppa-settings-autosave.php:8553 wppa-settings-autosave.php:8597
18814
  #, fuzzy
18815
  msgid "Custom Box"
18816
  msgstr "Custom Meta Box"
18817
 
18818
- #: wppa-settings-autosave.php:8554 wppa-settings-autosave.php:8598
18819
  #, fuzzy
18820
  msgid "Rating Bar"
18821
  msgstr "Bewertung Bar"
18822
 
18823
- #: wppa-settings-autosave.php:8555 wppa-settings-autosave.php:8599
18824
  #, fuzzy
18825
  msgid "Film Strip with embedded Start/Stop and Goto functionality"
18826
  msgstr "Film-Streifen mit eingebetteten Start / Stop und Goto-Funktionalität"
18827
 
18828
- #: wppa-settings-autosave.php:8556 wppa-settings-autosave.php:8600
18829
  #, fuzzy
18830
  msgid "Browse Bar with Photo X of Y counter"
18831
  msgstr "Durchsuchen Bar mit Foto X von Y-Zähler"
18832
 
18833
- #: wppa-settings-autosave.php:8557 wppa-settings-autosave.php:8601
18834
  #, fuzzy
18835
  msgid "Comments Box"
18836
  msgstr "Kommentarfeld"
18837
 
18838
- #: wppa-settings-autosave.php:8558 wppa-settings-autosave.php:8602
18839
  #, fuzzy
18840
  msgid "IPTC box"
18841
  msgstr "IPTC-Box"
18842
 
18843
- #: wppa-settings-autosave.php:8559 wppa-settings-autosave.php:8603
18844
  #, fuzzy
18845
  msgid "EXIF box"
18846
  msgstr "EXIF-Box"
18847
 
18848
- #: wppa-settings-autosave.php:8560 wppa-settings-autosave.php:8604
18849
  #, fuzzy
18850
  msgid "Social media share box"
18851
  msgstr "Social-Media-Aktie Box"
18852
 
18853
- #: wppa-settings-autosave.php:8566 wppa-settings-autosave.php:8610
18854
  #, fuzzy
18855
  msgid "Move Up"
18856
  msgstr "Nach oben verschieben"
18857
 
18858
- #: wppa-settings-autosave.php:8581
18859
  #, fuzzy
18860
  msgid "NameDesc"
18861
  msgstr "NameDesc"
18862
 
18863
- #: wppa-settings-autosave.php:8596
18864
  #, fuzzy
18865
  msgid "Photo Name & Description Box"
18866
  msgstr "Foto Name & Beschreibung Box"
18867
 
18868
- #: wppa-settings-autosave.php:8620
18869
  #, fuzzy
18870
  msgid "Swap Namedesc"
18871
  msgstr "Swap Namedesc"
18872
 
18873
- #: wppa-settings-autosave.php:8621
18874
  #, fuzzy
18875
  msgid "Swap the order sequence of name and description"
18876
  msgstr "Tauschen Sie die Auftragsreihenfolge der Name und die Beschreibung"
18877
 
18878
- #: wppa-settings-autosave.php:8629
18879
  #, fuzzy
18880
  msgid "Split Name and Desc"
18881
  msgstr "Split Name und Desc"
18882
 
18883
- #: wppa-settings-autosave.php:8630
18884
  #, fuzzy
18885
  msgid "Put Name and Description in separate boxes"
18886
  msgstr "Setzen Sie Name und Beschreibung in separaten Boxen"
18887
 
18888
- #: wppa-settings-autosave.php:8633
18889
  #, fuzzy
18890
  msgid "Please reload this page after the green checkmark appears!"
18891
  msgstr "Bitte laden Sie diese Seite, nachdem das grüne Häkchen angezeigt wird!"
18892
 
18893
- #: wppa-settings-autosave.php:8638
18894
  #, fuzzy
18895
  msgid "Source file management and other upload/import settings and actions."
18896
  msgstr ""
18897
  "Quelle Dateiverwaltung und andere Upload / Import von Einstellungen und "
18898
  "Aktionen."
18899
 
18900
- #: wppa-settings-autosave.php:8640
18901
  #, fuzzy
18902
  msgid "Keep sourcefiles admin"
18903
  msgstr "Halten Sie Quelldateien Admin"
18904
 
18905
- #: wppa-settings-autosave.php:8641
18906
  #, fuzzy
18907
  msgid "Keep the original uploaded and imported photo files."
18908
  msgstr "Bewahren Sie die Original hochgeladen und importiert Fotodateien."
18909
 
18910
- #: wppa-settings-autosave.php:8642 wppa-settings-autosave.php:8652
18911
  #, fuzzy
18912
  msgid ""
18913
  "The files will be kept in a separate directory with subdirectories for each "
@@ -18916,7 +18947,7 @@ msgstr ""
18916
  "Die Dateien werden in einem separaten Verzeichnis mit Unterverzeichnissen "
18917
  "für jedes Album gehalten werden"
18918
 
18919
- #: wppa-settings-autosave.php:8643 wppa-settings-autosave.php:8653
18920
  #, fuzzy
18921
  msgid ""
18922
  "These files can be used to update the photos used in displaying in wppa+ and "
@@ -18926,35 +18957,35 @@ msgstr ""
18926
  "WPPA verwendet zu aktualisieren und gegebenenfalls für das Herunterladen "
18927
  "Original, un-verkleinerte Bilder."
18928
 
18929
- #: wppa-settings-autosave.php:8650
18930
  #, fuzzy
18931
  msgid "Keep sourcefiles frontend"
18932
  msgstr "Halten Sie Quelldateien Frontend"
18933
 
18934
- #: wppa-settings-autosave.php:8651
18935
  #, fuzzy
18936
  msgid "Keep the original frontend uploaded photo files."
18937
  msgstr "Halten Sie die Original-Frontend hochgeladen Fotodateien."
18938
 
18939
- #: wppa-settings-autosave.php:8660
18940
  #, fuzzy
18941
  msgid "Source directory"
18942
- msgstr "Quellenverzeichnis"
18943
 
18944
- #: wppa-settings-autosave.php:8661
18945
  #, fuzzy
18946
  msgid "The path to the directory where the original photofiles will be saved."
18947
  msgstr ""
18948
  "Der Pfad zu dem Verzeichnis, in dem die ursprünglichen Photofiles "
18949
  "gespeichert werden."
18950
 
18951
- #: wppa-settings-autosave.php:8662
18952
  #, fuzzy
18953
  msgid "You may change the directory path, but it can not be an url."
18954
  msgstr ""
18955
  "Sie können den Verzeichnispfad zu ändern, aber es kann nicht eine URL sein."
18956
 
18957
- #: wppa-settings-autosave.php:8663
18958
  #, fuzzy
18959
  msgid ""
18960
  "The parent of the directory that you enter here must exist and be writable."
@@ -18962,22 +18993,22 @@ msgstr ""
18962
  "Die Eltern des Verzeichnisses, das Sie hier eingeben, muss existieren und "
18963
  "beschreibbar sein."
18964
 
18965
- #: wppa-settings-autosave.php:8664
18966
  #, fuzzy
18967
  msgid "The directory itsself will be created if it does not exist yet."
18968
  msgstr "Das Verzeichnis itsself wird erstellt, wenn es noch nicht existiert."
18969
 
18970
- #: wppa-settings-autosave.php:8671
18971
  #, fuzzy
18972
  msgid "Keep sync"
18973
  msgstr "Halten Sie Sync"
18974
 
18975
- #: wppa-settings-autosave.php:8672
18976
  #, fuzzy
18977
  msgid "Keep source synchronously with wppa system."
18978
  msgstr "Halten Sie Quelle synchron mit WPPA System."
18979
 
18980
- #: wppa-settings-autosave.php:8673
18981
  #, fuzzy
18982
  msgid ""
18983
  "If checked, photos that are deleted from wppa, will also be removed from the "
@@ -18986,7 +19017,7 @@ msgstr ""
18986
  "Wenn diese Option aktiviert, Fotos, die von WPPA gelöscht werden, werden "
18987
  "auch von den Quelldateien entfernt werden."
18988
 
18989
- #: wppa-settings-autosave.php:8674
18990
  #, fuzzy
18991
  msgid ""
18992
  "Also, copying or moving photos to different albums, will also copy/move the "
@@ -18995,17 +19026,17 @@ msgstr ""
18995
  "Auch das Kopieren oder Fotos zu verschiedenen Alben bewegt, wird kopieren / "
18996
  "verschieben auch die Quelldateien."
18997
 
18998
- #: wppa-settings-autosave.php:8681
18999
  #, fuzzy
19000
  msgid "Remake add"
19001
  msgstr "Remake add"
19002
 
19003
- #: wppa-settings-autosave.php:8682
19004
  #, fuzzy
19005
  msgid "Photos will be added from the source pool"
19006
  msgstr "Die Fotos werden von der Quelle Pool hinzugefügt werden"
19007
 
19008
- #: wppa-settings-autosave.php:8683
19009
  #, fuzzy
19010
  msgid ""
19011
  "If checked: If photo files are found in the source directory that do not "
@@ -19015,17 +19046,17 @@ msgstr ""
19015
  "werden, die in dem entsprechenden Album nicht existieren, werden sie auf dem "
19016
  "Album hinzugefügt werden."
19017
 
19018
- #: wppa-settings-autosave.php:8690
19019
  #, fuzzy
19020
  msgid "Save IPTC data"
19021
  msgstr "Speichern IPTC-Daten"
19022
 
19023
- #: wppa-settings-autosave.php:8691
19024
  #, fuzzy
19025
  msgid "Store the iptc data from the photo into the iptc db table"
19026
  msgstr "Speichern Sie die IPTC-Daten aus dem Foto in den IPTC-db-Tabelle"
19027
 
19028
- #: wppa-settings-autosave.php:8692
19029
  #, fuzzy
19030
  msgid ""
19031
  "You will need this if you enabled the display of iptc data in Table II-B17 "
@@ -19034,17 +19065,17 @@ msgstr ""
19034
  "Sie werden diese benötigen, wenn Sie die Anzeige von IPTC-Daten in Tabelle "
19035
  "II-B17 aktiviert oder, wenn Sie es in den Fotobeschreibungen verwenden."
19036
 
19037
- #: wppa-settings-autosave.php:8699
19038
  #, fuzzy
19039
  msgid "Save EXIF data"
19040
  msgstr "Speichern EXIF-Daten"
19041
 
19042
- #: wppa-settings-autosave.php:8700
19043
  #, fuzzy
19044
  msgid "Store the exif data from the photo into the exif db table"
19045
  msgstr "Speichern Sie die EXIF-Daten aus dem Foto in den Exif-db-Tabelle"
19046
 
19047
- #: wppa-settings-autosave.php:8701
19048
  #, fuzzy
19049
  msgid ""
19050
  "You will need this if you enabled the display of exif data in Table II-B18 "
@@ -19053,37 +19084,37 @@ msgstr ""
19053
  "Sie werden diese benötigen, wenn Sie die Anzeige der EXIF-Daten in Tabelle "
19054
  "II-B18 aktiviert oder, wenn Sie es in den Fotobeschreibungen verwenden."
19055
 
19056
- #: wppa-settings-autosave.php:8708
19057
  #, fuzzy
19058
  msgid "Max EXIF tag array size"
19059
  msgstr "Max EXIF-Tag-Array Größe"
19060
 
19061
- #: wppa-settings-autosave.php:8709
19062
  #, fuzzy
19063
  msgid "Truncate array tags to ..."
19064
  msgstr "Kürzt Array-Tags ..."
19065
 
19066
- #: wppa-settings-autosave.php:8710
19067
  #, fuzzy
19068
  msgid "A value of 0 disables this feature"
19069
  msgstr "Ein Wert von 0 deaktiviert diese Funktion"
19070
 
19071
- #: wppa-settings-autosave.php:8712
19072
  #, fuzzy
19073
  msgid "elements"
19074
  msgstr "tungselementen"
19075
 
19076
- #: wppa-settings-autosave.php:8717
19077
  #, fuzzy
19078
  msgid "Import Create page"
19079
  msgstr "Import Seite erstellen"
19080
 
19081
- #: wppa-settings-autosave.php:8718
19082
  #, fuzzy
19083
  msgid "Create wp page when a directory to album is imported."
19084
  msgstr "Erstellen Sie wp Seite, wenn ein Verzeichnis Album importiert wird."
19085
 
19086
- #: wppa-settings-autosave.php:8719
19087
  #, fuzzy
19088
  msgid ""
19089
  "As soon as an album is created when a directory is imported, a wp page is "
@@ -19092,17 +19123,17 @@ msgstr ""
19092
  "Sobald ein Album erstellt wird, wenn ein Verzeichnis importiert wird, wird "
19093
  "eine wp Seite gemacht, dass das Album Inhalt anzeigt."
19094
 
19095
- #: wppa-settings-autosave.php:8727
19096
  #, fuzzy
19097
  msgid "Page content"
19098
  msgstr "Seiteninhalt"
19099
 
19100
- #: wppa-settings-autosave.php:8728
19101
  #, fuzzy
19102
  msgid "The content of the page. Must contain <b>w#album</b>"
19103
  msgstr "Der Inhalt der Seite. Muss <b>w # Album</b> enthalten"
19104
 
19105
- #: wppa-settings-autosave.php:8729
19106
  #, fuzzy
19107
  msgid ""
19108
  "The content of the page. Note: it must contain w#album. This will be "
@@ -19111,52 +19142,52 @@ msgstr ""
19111
  "Der Inhalt der Seite. Hinweis: es w # Album enthalten. Dies wird durch die "
19112
  "Albumnummer in der generierten Shortcode ersetzt werden."
19113
 
19114
- #: wppa-settings-autosave.php:8737
19115
  #, fuzzy
19116
  msgid "Page type"
19117
  msgstr "Seitentyp"
19118
 
19119
- #: wppa-settings-autosave.php:8738
19120
  #, fuzzy
19121
  msgid "Select the type of page to create."
19122
  msgstr "Wählen Sie die gewünschte Seite zu erstellen."
19123
 
19124
- #: wppa-settings-autosave.php:8742
19125
  #, fuzzy
19126
  msgid "Post"
19127
  msgstr "Post:"
19128
 
19129
- #: wppa-settings-autosave.php:8749
19130
  #, fuzzy
19131
  msgid "Page status"
19132
  msgstr "Seitenstatus"
19133
 
19134
- #: wppa-settings-autosave.php:8750
19135
  #, fuzzy
19136
  msgid "Select the initial status of the page."
19137
  msgstr "Wählen Sie den Anfangsstatus der Seite."
19138
 
19139
- #: wppa-settings-autosave.php:8754
19140
  #, fuzzy
19141
  msgid "Published"
19142
  msgstr "Veröffentlicht"
19143
 
19144
- #: wppa-settings-autosave.php:8754
19145
  #, fuzzy
19146
  msgid "Draft"
19147
  msgstr "Entwurf"
19148
 
19149
- #: wppa-settings-autosave.php:8762
19150
  #, fuzzy
19151
  msgid "Permalink root"
19152
  msgstr "Permalink Wurzel"
19153
 
19154
- #: wppa-settings-autosave.php:8763
19155
  #, fuzzy
19156
  msgid "The name of the root for the photofile ermalink structure."
19157
  msgstr "Der Name der Wurzel für die Photofile ermalink Struktur."
19158
 
19159
- #: wppa-settings-autosave.php:8764
19160
  #, fuzzy
19161
  msgid ""
19162
  "Choose a convenient name like \"albums\" or so; this will be the name of a "
@@ -19166,17 +19197,17 @@ msgstr ""
19166
  "eines Ordners innerhalb ... / wp-content / sein. Stellen Sie sicher, dass "
19167
  "Sie einen eindeutigen Namen wählen"
19168
 
19169
- #: wppa-settings-autosave.php:8772
19170
  #, fuzzy
19171
  msgid "Import parent check"
19172
  msgstr "Import Mutterprüfung"
19173
 
19174
- #: wppa-settings-autosave.php:8773
19175
  #, fuzzy
19176
  msgid "On import dirs to albums: keep dir tree as albums."
19177
  msgstr "Beim Import dirs zum Album: halten dir Baum als Alben."
19178
 
19179
- #: wppa-settings-autosave.php:8774
19180
  #, fuzzy
19181
  msgid ""
19182
  "Untick only if all your albums have unique names. Then: additional photos "
@@ -19185,60 +19216,60 @@ msgstr ""
19185
  "Deaktivieren Sie nur, wenn Sie alle Ihre Alben haben eindeutige Namen. Dann: "
19186
  "zusätzliche Fotos können auf Toplevel Depot subdirs ftp'd werden."
19187
 
19188
- #: wppa-settings-autosave.php:8781
19189
  #, fuzzy
19190
  msgid "IPTC need utf8 conversion"
19191
  msgstr "IPTC müssen UTF-8-Umwandlung"
19192
 
19193
- #: wppa-settings-autosave.php:8782
19194
  #, fuzzy
19195
  msgid "This setting converts iso to utf8 in iptc text."
19196
  msgstr "Diese Einstellung wandelt iso auf UTF8 in IPTC Text."
19197
 
19198
- #: wppa-settings-autosave.php:8783
19199
  #, fuzzy
19200
  msgid "Untick if you have funny characters in iptc data"
19201
  msgstr "Deaktivieren Sie, wenn Sie die lustigen Charaktere in IPTC-Daten haben"
19202
 
19203
- #: wppa-settings-autosave.php:8790
19204
  #, fuzzy
19205
  msgid "Keep dir to album files"
19206
  msgstr "Halten Sie dir auf Albumdateien"
19207
 
19208
- #: wppa-settings-autosave.php:8791
19209
  #, fuzzy
19210
  msgid "Keep imported files after dir to album import"
19211
  msgstr "Halten Sie importierte Dateien nach dir zum Album Import"
19212
 
19213
- #: wppa-settings-autosave.php:8800
19214
  #, fuzzy
19215
  msgid "Other plugins related settings"
19216
  msgstr "Andere Plugins bezogene Einstellungen"
19217
 
19218
- #: wppa-settings-autosave.php:8802
19219
  #, fuzzy
19220
  msgid "Foreign shortcodes general"
19221
  msgstr "Foreign Shortcodes allgemein"
19222
 
19223
- #: wppa-settings-autosave.php:8803
19224
  #, fuzzy
19225
  msgid "Enable foreign shortcodes in album names, albums desc and photo names"
19226
  msgstr ""
19227
  "Aktivieren ausländische Shortcodes in Albumnamen, Alben ab und Foto-Namen"
19228
 
19229
- #: wppa-settings-autosave.php:8811
19230
  #, fuzzy
19231
  msgid "Foreign shortcodes fullsize"
19232
  msgstr "Foreign Shortgross"
19233
 
19234
- #: wppa-settings-autosave.php:8812
19235
  #, fuzzy
19236
  msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
19237
  msgstr ""
19238
  "Aktivieren Sie die Verwendung von nicht-WPPA Shortcodes in "
19239
  "Grossfotobeschreibungen."
19240
 
19241
- #: wppa-settings-autosave.php:8813 wppa-settings-autosave.php:8824
19242
  #, fuzzy
19243
  msgid ""
19244
  "When checked, you can use shortcodes from other plugins in the description "
@@ -19247,33 +19278,33 @@ msgstr ""
19247
  "Wenn diese Option aktiviert, können Sie Kurzwahlnummern von anderen Plugins "
19248
  "in der Beschreibung von Fotos verwenden."
19249
 
19250
- #: wppa-settings-autosave.php:8814
19251
  #, fuzzy
19252
  msgid "The shortcodes will be expanded in the descriptions of fullsize images."
19253
  msgstr ""
19254
  "Die Kurzwahlnummern werden in den Beschreibungen der LISTEN Bilder erweitert "
19255
  "werden."
19256
 
19257
- #: wppa-settings-autosave.php:8815 wppa-settings-autosave.php:8826
19258
  #, fuzzy
19259
  msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
19260
  msgstr ""
19261
  "Sie werden wahrscheinlich brauchen auch Tabelle IX-A1 (Erlaube HTML) zu "
19262
  "überprüfen."
19263
 
19264
- #: wppa-settings-autosave.php:8822
19265
  #, fuzzy
19266
  msgid "Foreign shortcodes thumbnails"
19267
  msgstr "Foreign Short Thumbnails"
19268
 
19269
- #: wppa-settings-autosave.php:8823
19270
  #, fuzzy
19271
  msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
19272
  msgstr ""
19273
  "Aktivieren Sie die Verwendung von nicht-WPPA Shortcodes in "
19274
  "Miniaturfotobeschreibungen."
19275
 
19276
- #: wppa-settings-autosave.php:8825
19277
  #, fuzzy
19278
  msgid ""
19279
  "The shortcodes will be expanded in the descriptions of thumbnail images."
@@ -19281,17 +19312,17 @@ msgstr ""
19281
  "Die Kurzwahlnummern werden in den Beschreibungen von Miniaturbildern "
19282
  "erweitert werden."
19283
 
19284
- #: wppa-settings-autosave.php:8833
19285
  #, fuzzy
19286
  msgid "Lightbox keyname"
19287
  msgstr "Lightbox keyname"
19288
 
19289
- #: wppa-settings-autosave.php:8834
19290
  #, fuzzy
19291
  msgid "The identifier of lightbox."
19292
  msgstr "Die Kennung Leuchtkasten."
19293
 
19294
- #: wppa-settings-autosave.php:8835
19295
  #, fuzzy
19296
  msgid ""
19297
  "If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
@@ -19300,78 +19331,78 @@ msgstr ""
19300
  "Wenn Sie Leuchtkasten Plugin verwenden, das rel = \"lbox-id\" verwendet, "
19301
  "kann man die lbox-ID eingeben."
19302
 
19303
- #: wppa-settings-autosave.php:8842
19304
  #, fuzzy
19305
  msgid "myCRED / Cube Points: Comment"
19306
  msgstr "myCRED / Cube Punkte: Kommentar"
19307
 
19308
- #: wppa-settings-autosave.php:8843
19309
  #, fuzzy
19310
  msgid "Number of points for giving a comment"
19311
  msgstr "Punkte für das Geben einen Kommentar"
19312
 
19313
- #: wppa-settings-autosave.php:8844 wppa-settings-autosave.php:8853
19314
- #: wppa-settings-autosave.php:8862 wppa-settings-autosave.php:8871
19315
  #, fuzzy
19316
  msgid "This setting requires the plugin myCRED or Cube Points"
19317
  msgstr "Für diese Einstellung muss das Plugin myCRED oder Cube-Punkte"
19318
 
19319
- #: wppa-settings-autosave.php:8846 wppa-settings-autosave.php:8855
19320
  #, fuzzy
19321
  msgid "points per comment"
19322
  msgstr "Punkte pro Kommentar"
19323
 
19324
- #: wppa-settings-autosave.php:8851
19325
  #, fuzzy
19326
  msgid "myCRED / Cube Points: Appr Comment"
19327
  msgstr "myCRED / Cube Punkte: Appr Kommentar"
19328
 
19329
- #: wppa-settings-autosave.php:8852
19330
  #, fuzzy
19331
  msgid "Number of points for receiving an approved comment"
19332
  msgstr "Punkte für die Aufnahme eines genehmigten Kommentar"
19333
 
19334
- #: wppa-settings-autosave.php:8860
19335
  #, fuzzy
19336
  msgid "myCRED / Cube Points: Rating"
19337
  msgstr "myCRED / Cube Punkte: Bewertung"
19338
 
19339
- #: wppa-settings-autosave.php:8861
19340
  #, fuzzy
19341
  msgid "Number of points for a rating vote"
19342
  msgstr "Punkte für eine Bewertung Stimme"
19343
 
19344
- #: wppa-settings-autosave.php:8864
19345
  #, fuzzy
19346
  msgid "points per vote"
19347
  msgstr "Punkte pro Stimme"
19348
 
19349
- #: wppa-settings-autosave.php:8869
19350
  #, fuzzy
19351
  msgid "myCRED / Cube Points: Upload"
19352
  msgstr "myCRED / Cube Punkte: Upload"
19353
 
19354
- #: wppa-settings-autosave.php:8870
19355
  #, fuzzy
19356
  msgid "Number of points for a successfull frontend upload"
19357
  msgstr "Punkte für eine erfolgreiche Frontend-Upload"
19358
 
19359
- #: wppa-settings-autosave.php:8873
19360
  #, fuzzy
19361
  msgid "points per upload"
19362
  msgstr "Punkte pro Upload"
19363
 
19364
- #: wppa-settings-autosave.php:8878
19365
  #, fuzzy
19366
  msgid "Use SCABN"
19367
  msgstr "Verwenden Sie SCABN"
19368
 
19369
- #: wppa-settings-autosave.php:8879
19370
  #, fuzzy
19371
  msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
19372
  msgstr "Verwenden Sie die WPPA Schnittstelle Einfache Wagen & Buy Now Plugin."
19373
 
19374
- #: wppa-settings-autosave.php:8880
19375
  #, fuzzy
19376
  msgid ""
19377
  "If checked, the shortcode to use for the \"add to cart\" button in photo "
@@ -19380,7 +19411,7 @@ msgstr ""
19380
  "Wenn diese Option aktiviert, um die Kurzwahlnummer für die \"in den Warenkorb"
19381
  "\", um die Option in Fotobeschreibungen ist [Warenkorb ...]"
19382
 
19383
- #: wppa-settings-autosave.php:8881
19384
  #, fuzzy
19385
  msgid ""
19386
  "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
@@ -19388,12 +19419,12 @@ msgstr ""
19388
  "im Gegensatz zu [scabn ...] für die ursprüngliche scabn Button \"in den "
19389
  "Warenkorb\"."
19390
 
19391
- #: wppa-settings-autosave.php:8882
19392
  #, fuzzy
19393
  msgid "The shortcode for the check-out page is still [scabn]"
19394
  msgstr "Die Shortcode für den Check-out-Seite ist immer noch [scabn]"
19395
 
19396
- #: wppa-settings-autosave.php:8883
19397
  #, fuzzy
19398
  msgid ""
19399
  "The arguments are the same, the defaults are: name = photoname, price = 0.01."
@@ -19401,7 +19432,7 @@ msgstr ""
19401
  "Die Argumente sind die gleichen, die Standardeinstellungen sind: name = "
19402
  "photoname, Preis = 0,01."
19403
 
19404
- #: wppa-settings-autosave.php:8884
19405
  #, fuzzy
19406
  msgid ""
19407
  "Supplying the price should be sufficient; supply a name only when it differs "
@@ -19410,12 +19441,12 @@ msgstr ""
19410
  "den Preis Die Versorgung sollte ausreichend sein; liefern nur einen Namen, "
19411
  "wenn es aus dem Foto Name unterscheidet."
19412
 
19413
- #: wppa-settings-autosave.php:8885
19414
  #, fuzzy
19415
  msgid "This shortcode handler will also work with Ajax enabled."
19416
  msgstr "Dieser Shortcode-Handler wird auch mit Ajax arbeiten aktiviert."
19417
 
19418
- #: wppa-settings-autosave.php:8886
19419
  #, fuzzy
19420
  msgid ""
19421
  "Using this interface makes sure that the item urls and callback action urls "
@@ -19424,17 +19455,17 @@ msgstr ""
19424
  "Diese Schnittstelle stellt sicher, dass die Artikel Urls und Callback-Aktion "
19425
  "Urls korrekt sind."
19426
 
19427
- #: wppa-settings-autosave.php:8893
19428
  #, fuzzy
19429
  msgid "Use CM Tooltip Glossary"
19430
  msgstr "Verwenden CM Tooltip Glossar"
19431
 
19432
- #: wppa-settings-autosave.php:8894
19433
  #, fuzzy
19434
  msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
19435
  msgstr "Verwenden Plugin CM Tooltip Glossar auf Foto und Album-Beschreibungen."
19436
 
19437
- #: wppa-settings-autosave.php:8895
19438
  #, fuzzy
19439
  msgid ""
19440
  "You MUST set Table IV-A13: Defer javascript, also if you do not want this "
@@ -19443,108 +19474,108 @@ msgstr ""
19443
  "Sie MÜSSEN Tabelle IV-A13 gesetzt: javascript Aufschieben, auch wenn Sie "
19444
  "dieses Plugin auf Album und Fotobeschreibungen handeln nicht wollen!"
19445
 
19446
- #: wppa-settings-autosave.php:8903
19447
  #, fuzzy
19448
  msgid "External services related settings and actions."
19449
  msgstr ""
19450
  "Externe Dienstleistungen im Zusammenhang mit Einstellungen und Aktionen."
19451
 
19452
- #: wppa-settings-autosave.php:8905
19453
  #, fuzzy
19454
  msgid "QR Code widget size"
19455
  msgstr "QR Code Widget Größe"
19456
 
19457
- #: wppa-settings-autosave.php:8906
19458
  #, fuzzy
19459
  msgid "The size of the QR code display."
19460
  msgstr "Die Größe des QR-Code-Anzeige."
19461
 
19462
- #: wppa-settings-autosave.php:8914
19463
  #, fuzzy
19464
  msgid "QR color"
19465
  msgstr "QR Farbe"
19466
 
19467
- #: wppa-settings-autosave.php:8915
19468
  #, fuzzy
19469
  msgid "The display color of the qr code (dark)"
19470
  msgstr "Die Anzeigefarbe des QR-Codes (dunkel)"
19471
 
19472
- #: wppa-settings-autosave.php:8916
19473
  #, fuzzy
19474
  msgid "This color MUST be given in hexadecimal format!"
19475
  msgstr "Diese Farbe muss im hexadezimalen Format angegeben werden!"
19476
 
19477
- #: wppa-settings-autosave.php:8923
19478
  #, fuzzy
19479
  msgid "QR background color"
19480
- msgstr "Hintergrundfarbe"
19481
 
19482
- #: wppa-settings-autosave.php:8924
19483
  #, fuzzy
19484
  msgid "The background color of the qr code (light)"
19485
  msgstr "Die Hintergrundfarbe des QR-Codes (Licht)"
19486
 
19487
- #: wppa-settings-autosave.php:8932
19488
  #, fuzzy
19489
  msgid "CDN Service"
19490
  msgstr "CDN-Service"
19491
 
19492
- #: wppa-settings-autosave.php:8933
19493
  #, fuzzy
19494
  msgid "Select a CDN Service you want to use."
19495
  msgstr "Wählen Sie einen CDN-Service Sie verwenden möchten."
19496
 
19497
- #: wppa-settings-autosave.php:8936
19498
  #, fuzzy
19499
  msgid "Cloudinary in maintenance mode"
19500
  msgstr "Cloudinary im Wartungsmodus"
19501
 
19502
- #: wppa-settings-autosave.php:8946
19503
  #, fuzzy
19504
  msgid "Cloud name"
19505
  msgstr "Wolke Name"
19506
 
19507
- #: wppa-settings-autosave.php:8955
19508
  #, fuzzy
19509
  msgid "API key"
19510
- msgstr "API Schlüssel"
19511
 
19512
- #: wppa-settings-autosave.php:8964
19513
  #, fuzzy
19514
  msgid "API secret"
19515
  msgstr "API Geheimnis"
19516
 
19517
- #: wppa-settings-autosave.php:8973
19518
  #, fuzzy
19519
  msgid "Delete all"
19520
- msgstr "alles löschen"
19521
 
19522
- #: wppa-settings-autosave.php:8974
19523
  #, fuzzy
19524
  msgid "Deletes them all !!!"
19525
  msgstr "Löscht sie alle !!!"
19526
 
19527
- #: wppa-settings-autosave.php:8982
19528
  #, fuzzy
19529
  msgid "Delete derived images"
19530
  msgstr "Löschen abgeleitet Bilder"
19531
 
19532
- #: wppa-settings-autosave.php:8983
19533
  #, fuzzy
19534
  msgid "Deletes all derived images !!!"
19535
  msgstr "Löscht alle abgeleiteten Bilder !!!"
19536
 
19537
- #: wppa-settings-autosave.php:8991
19538
  #, fuzzy
19539
  msgid "Max lifetime"
19540
  msgstr "Max Lebensdauer"
19541
 
19542
- #: wppa-settings-autosave.php:8992
19543
  #, fuzzy
19544
  msgid "Old images from local server, new images from Cloudinary."
19545
  msgstr "Alte Bilder von lokalen Server, neue Bilder von Cloudinary."
19546
 
19547
- #: wppa-settings-autosave.php:8993
19548
  #, fuzzy
19549
  msgid ""
19550
  "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
@@ -19552,54 +19583,54 @@ msgstr ""
19552
  "Wenn nicht auf für immer: Sie müssen Tabelle VIII-B15 auf einer regelmäßigen "
19553
  "Basis zu laufen."
19554
 
19555
- #: wppa-settings-autosave.php:8995
19556
  #, fuzzy
19557
  msgid "Forever"
19558
- msgstr "Für immer"
19559
 
19560
- #: wppa-settings-autosave.php:9026
19561
  #, fuzzy
19562
  msgid "Cloudinary usage"
19563
  msgstr "Cloudinary Nutzung"
19564
 
19565
- #: wppa-settings-autosave.php:9062
19566
  #, fuzzy
19567
  msgid "Cloudinary usage data not available"
19568
  msgstr "Cloudinary Nutzungsdaten nicht verfügbar"
19569
 
19570
- #: wppa-settings-autosave.php:9066
19571
  #, fuzzy
19572
  msgid "Cloudinary routines not installed."
19573
  msgstr "Cloudinary Routinen nicht installiert."
19574
 
19575
- #: wppa-settings-autosave.php:9077
19576
  #, fuzzy
19577
  msgid "Cloudinary"
19578
  msgstr "Cloudinary"
19579
 
19580
- #: wppa-settings-autosave.php:9078
19581
  #, fuzzy
19582
  msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
19583
  msgstr ""
19584
  "<span style=\"color:red;\">Benötigt mindestens PHP</span> - <span style="
19585
  "\"color:red;\">Version 5.3</span>"
19586
 
19587
- #: wppa-settings-autosave.php:9087
19588
  #, fuzzy
19589
  msgid "GPX Implementation"
19590
  msgstr "GPX Umsetzung"
19591
 
19592
- #: wppa-settings-autosave.php:9088
19593
  #, fuzzy
19594
  msgid "The way the maps are produced."
19595
  msgstr "Die Art und Weise die Karten produziert werden."
19596
 
19597
- #: wppa-settings-autosave.php:9089
19598
  #, fuzzy
19599
  msgid "Select the way the maps are produced."
19600
  msgstr "Wählen Sie die Art, wie die Karten produziert werden."
19601
 
19602
- #: wppa-settings-autosave.php:9090
19603
  #, fuzzy
19604
  msgid ""
19605
  "When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
@@ -19607,7 +19638,7 @@ msgstr ""
19607
  "Bei der Verwendung von Google Maps GPX-Viewer-Plugin, können Sie nicht Ajax "
19608
  "verwenden (Tabelle IV-A1)"
19609
 
19610
- #: wppa-settings-autosave.php:9091
19611
  #, fuzzy
19612
  msgid ""
19613
  "When using WPPA+ Embedded code, you can use Ajax, but there are less display "
@@ -19616,47 +19647,47 @@ msgstr ""
19616
  "Wenn WPPA mit Embedded-Code können Sie Ajax verwenden, aber es gibt "
19617
  "weniger Anzeigeoptionen."
19618
 
19619
- #: wppa-settings-autosave.php:9093
19620
  #, fuzzy
19621
  msgid "WPPA+ Embedded code"
19622
  msgstr "WPPA Embedded Code"
19623
 
19624
- #: wppa-settings-autosave.php:9093
19625
  #, fuzzy
19626
  msgid "Google maps GPX viewer plugin"
19627
  msgstr "Google Maps GPX-Viewer-Plugin"
19628
 
19629
- #: wppa-settings-autosave.php:9101
19630
  #, fuzzy
19631
  msgid "Map height"
19632
- msgstr "Kartenhöhe"
19633
 
19634
- #: wppa-settings-autosave.php:9102
19635
  #, fuzzy
19636
  msgid "The height of the map display."
19637
  msgstr "Die Höhe der Kartendarstellung."
19638
 
19639
- #: wppa-settings-autosave.php:9110
19640
  #, fuzzy
19641
  msgid "Google maps API key"
19642
- msgstr "Google Maps API Schlüssel"
19643
 
19644
- #: wppa-settings-autosave.php:9111
19645
  #, fuzzy
19646
  msgid "Enter your Google maps api key here if you have one."
19647
  msgstr "Geben Sie Ihre Google Maps API-Schlüssel hier, wenn Sie eine haben."
19648
 
19649
- #: wppa-settings-autosave.php:9119
19650
  #, fuzzy
19651
  msgid "GPX Shortcode"
19652
  msgstr "GPX Short"
19653
 
19654
- #: wppa-settings-autosave.php:9120
19655
  #, fuzzy
19656
  msgid "The shortcode to be used for the gpx feature."
19657
  msgstr "Die Kurzwahlnummer, die für die gpx-Funktion verwendet werden."
19658
 
19659
- #: wppa-settings-autosave.php:9121
19660
  #, fuzzy
19661
  msgid ""
19662
  "Enter / modify the shortcode to be generated for the gpx plugin. It must "
@@ -19666,35 +19697,35 @@ msgstr ""
19666
  "Es muss w # lat und w # lon als Platzhalter für die lattitude und Länge "
19667
  "enthalten."
19668
 
19669
- #: wppa-settings-autosave.php:9122
19670
  #, fuzzy
19671
  msgid "This item is required for using Google maps GPX viewer plugin only"
19672
  msgstr ""
19673
  "Dieser Artikel ist erforderlich für die Verwendung von nur Google Maps GPX-"
19674
  "Viewer-Plugin"
19675
 
19676
- #: wppa-settings-autosave.php:9129
19677
  #, fuzzy
19678
  msgid "Fotomoto"
19679
  msgstr "Fotomoto"
19680
 
19681
- #: wppa-settings-autosave.php:9130
19682
  #, fuzzy
19683
  msgid "Yes, we use Fotomoto on this site. Read the help text!"
19684
  msgstr ""
19685
  "Ja, verwenden wir Fotomoto auf dieser Website. Lesen Sie den Hilfetext!"
19686
 
19687
- #: wppa-settings-autosave.php:9131
19688
  #, fuzzy
19689
  msgid "In order to function properly:"
19690
  msgstr "Um richtig zu funktionieren:"
19691
 
19692
- #: wppa-settings-autosave.php:9132
19693
  #, fuzzy
19694
  msgid "1. Get yourself a Fotomoto account."
19695
  msgstr "1. Holen Sie sich ein Fotomoto Konto."
19696
 
19697
- #: wppa-settings-autosave.php:9133
19698
  #, fuzzy
19699
  msgid ""
19700
  "2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
@@ -19703,30 +19734,30 @@ msgstr ""
19703
  "2. Installieren Sie das Fotomoto Plugin, geben Sie das \"Fotomoto Site-Key:"
19704
  "\" und überprüfen Sie die \"Use API-Modus:\" aktivieren."
19705
 
19706
- #: wppa-settings-autosave.php:9134
19707
  #, fuzzy
19708
  msgid "Note: Do NOT Disable the Custom box in Table II-B14."
19709
  msgstr ""
19710
  "Hinweis: Verwenden Sie nicht das gleichnamige Feld in der Tabelle II-B14 "
19711
  "deaktivieren."
19712
 
19713
- #: wppa-settings-autosave.php:9135
19714
  #, fuzzy
19715
  msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
19716
  msgstr ""
19717
  "Entfernen Sie nicht den Text w # fotomoto vom Custombox (Tabelle II-B15)."
19718
 
19719
- #: wppa-settings-autosave.php:9143
19720
  #, fuzzy
19721
  msgid "Fotomoto fontsize"
19722
  msgstr "Fotomoto Schriftgröße"
19723
 
19724
- #: wppa-settings-autosave.php:9144
19725
  #, fuzzy
19726
  msgid "Fontsize for the Fotomoto toolbar."
19727
  msgstr "Fontsize für die Fotomoto Symbolleiste."
19728
 
19729
- #: wppa-settings-autosave.php:9145
19730
  #, fuzzy
19731
  msgid ""
19732
  "If you set it here, it overrules a possible setting for font-size in ."
@@ -19735,75 +19766,75 @@ msgstr ""
19735
  "Wenn Sie es hier einstellen, überschreibt es eine mögliche Einstellung für "
19736
  "font-size in .FotomotoToolbarClass auf dem Fotomoto Armaturenbrett."
19737
 
19738
- #: wppa-settings-autosave.php:9153
19739
  #, fuzzy
19740
  msgid "Hide toolbar on running slideshows"
19741
  msgstr "Ausblenden Symbolleiste auf das Abspielen von Diashows"
19742
 
19743
- #: wppa-settings-autosave.php:9154
19744
  #, fuzzy
19745
  msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
19746
  msgstr ""
19747
  "Die Fotomoto Symbolleiste wird wieder angezeigt, wenn die slidshow stoppt."
19748
 
19749
- #: wppa-settings-autosave.php:9161
19750
  #, fuzzy
19751
  msgid "Fotomoto minwidth"
19752
  msgstr "Fotomoto minwidth"
19753
 
19754
- #: wppa-settings-autosave.php:9162
19755
  #, fuzzy
19756
  msgid "Minimum width to display Fotomoto toolbar."
19757
  msgstr "Die Mindestbreite Fotomoto Symbolleiste angezeigt werden soll."
19758
 
19759
- #: wppa-settings-autosave.php:9163
19760
  #, fuzzy
19761
  msgid ""
19762
  "The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
19763
  msgstr ""
19764
  "Die Anzeige der Fotomoto Toolbar wird auf kleineren Show unterdrückt werden."
19765
 
19766
- #: wppa-settings-autosave.php:9188
19767
  #, fuzzy
19768
  msgid "Table X:"
19769
  msgstr "Tabelle x."
19770
 
19771
- #: wppa-settings-autosave.php:9188
19772
  #, fuzzy
19773
  msgid "IPTC Configuration:"
19774
  msgstr "IPTC-Konfiguration:"
19775
 
19776
- #: wppa-settings-autosave.php:9189
19777
  #, fuzzy
19778
  msgid "This table defines the IPTC configuration"
19779
  msgstr "Diese Tabelle definiert die IPTC-Konfiguration"
19780
 
19781
- #: wppa-settings-autosave.php:9220 wppa-settings-autosave.php:9288
19782
  #, fuzzy
19783
  msgid "Display"
19784
- msgstr "Display"
19785
 
19786
- #: wppa-settings-autosave.php:9220 wppa-settings-autosave.php:9288
19787
  #, fuzzy
19788
  msgid "Hide"
19789
  msgstr "Verstecken"
19790
 
19791
- #: wppa-settings-autosave.php:9250
19792
  #, fuzzy
19793
  msgid "Table XI:"
19794
  msgstr "Tabelle XI:"
19795
 
19796
- #: wppa-settings-autosave.php:9250
19797
  #, fuzzy
19798
  msgid "EXIF Configuration:"
19799
  msgstr "EXIF-Konfiguration:"
19800
 
19801
- #: wppa-settings-autosave.php:9251
19802
  #, fuzzy
19803
  msgid "This table defines the EXIF configuration"
19804
  msgstr "Diese Tabelle definiert die EXIF-Konfiguration"
19805
 
19806
- #: wppa-settings-autosave.php:9274
19807
  #, fuzzy
19808
  msgid ""
19809
  "Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
@@ -19815,17 +19846,17 @@ msgstr ""
19815
  "fragen Sie Ihren Hosting - Anbieter <b>\"--enable-exif 'an</b> die PHP - "
19816
  "<b>Konfiguration Befehl</b> hinzuzufügen."
19817
 
19818
- #: wppa-settings-autosave.php:9318
19819
  #, fuzzy
19820
  msgid "Table XII:"
19821
  msgstr "Tabelle XII:"
19822
 
19823
- #: wppa-settings-autosave.php:9318
19824
  #, fuzzy
19825
  msgid "WPPA+ and PHP Configuration:"
19826
  msgstr "WPPA und PHP-Konfiguration:"
19827
 
19828
- #: wppa-settings-autosave.php:9319
19829
  #, fuzzy
19830
  msgid ""
19831
  "This table lists all WPPA+ constants and PHP server configuration parameters "
@@ -19834,158 +19865,158 @@ msgstr ""
19834
  "Diese Tabelle listet alle WPPA Konstanten und PHP-Server-"
19835
  "Konfigurationsparameter und wird nur gelesen"
19836
 
19837
- #: wppa-settings-autosave.php:9334
19838
  #, fuzzy
19839
  msgid "Value"
19840
  msgstr "Wert ="
19841
 
19842
- #: wppa-settings-autosave.php:9340
19843
  #, fuzzy
19844
  msgid "Albums db table name."
19845
  msgstr "Alben db Tabellennamen."
19846
 
19847
- #: wppa-settings-autosave.php:9352
19848
  #, fuzzy
19849
  msgid "Photos db table name."
19850
  msgstr "Fotos db Tabellennamen."
19851
 
19852
- #: wppa-settings-autosave.php:9364
19853
  #, fuzzy
19854
  msgid "Rating db table name."
19855
  msgstr "Rating db Tabellennamen."
19856
 
19857
- #: wppa-settings-autosave.php:9376
19858
  #, fuzzy
19859
  msgid "Comments db table name."
19860
  msgstr "Kommentare db Tabellennamen."
19861
 
19862
- #: wppa-settings-autosave.php:9388
19863
  #, fuzzy
19864
  msgid "IPTC db table name."
19865
  msgstr "IPTC db Tabellennamen."
19866
 
19867
- #: wppa-settings-autosave.php:9400
19868
  #, fuzzy
19869
  msgid "EXIF db table name."
19870
  msgstr "EXIF db Tabellennamen."
19871
 
19872
- #: wppa-settings-autosave.php:9412 wppa-settings-autosave.php:9424
19873
  #, fuzzy
19874
  msgid "Index db table name."
19875
  msgstr "Index db Tabellennamen."
19876
 
19877
- #: wppa-settings-autosave.php:9436
19878
  #, fuzzy
19879
  msgid "Plugins main file name."
19880
  msgstr "Plugins Haupt-Dateinamen."
19881
 
19882
- #: wppa-settings-autosave.php:9442
19883
  #, fuzzy
19884
  msgid "ABSPATH windows proof"
19885
  msgstr "ABSPATH Fenster Beweis"
19886
 
19887
- #: wppa-settings-autosave.php:9448
19888
  #, fuzzy
19889
  msgid "Path to plugins directory."
19890
  msgstr "Pfad zum Plugin-Verzeichnis."
19891
 
19892
- #: wppa-settings-autosave.php:9454
19893
  #, fuzzy
19894
  msgid "Plugins directory name."
19895
  msgstr "Plugins Verzeichnisnamen."
19896
 
19897
- #: wppa-settings-autosave.php:9460
19898
  #, fuzzy
19899
  msgid "Plugins directory url."
19900
  msgstr "Plugins Verzeichnis url."
19901
 
19902
- #: wppa-settings-autosave.php:9466
19903
  #, fuzzy
19904
  msgid "The relative upload directory."
19905
  msgstr "Die relative Upload-Verzeichnis."
19906
 
19907
- #: wppa-settings-autosave.php:9472
19908
  #, fuzzy
19909
  msgid "The upload directory path."
19910
  msgstr "Der Upload-Verzeichnispfad."
19911
 
19912
- #: wppa-settings-autosave.php:9478
19913
  #, fuzzy
19914
  msgid "The upload directory url."
19915
  msgstr "Die Upload-Verzeichnis url."
19916
 
19917
- #: wppa-settings-autosave.php:9484
19918
  #, fuzzy
19919
  msgid "The relative depot directory."
19920
  msgstr "Die relative Depotverzeichnis."
19921
 
19922
- #: wppa-settings-autosave.php:9490
19923
  #, fuzzy
19924
  msgid "The depot directory path."
19925
  msgstr "Das Depot Verzeichnispfad."
19926
 
19927
- #: wppa-settings-autosave.php:9496
19928
  #, fuzzy
19929
  msgid "The depot directory url."
19930
  msgstr "Das Depotverzeichnis url."
19931
 
19932
- #: wppa-settings-autosave.php:9502
19933
  #, fuzzy
19934
  msgid "The path to wp-content."
19935
  msgstr "Der Weg zum wp-content."
19936
 
19937
- #: wppa-settings-autosave.php:9508
19938
  #, fuzzy
19939
  msgid "WP Content url."
19940
  msgstr "Wordpress Inhalt-URL"
19941
 
19942
- #: wppa-settings-autosave.php:9514
19943
  #, fuzzy
19944
  msgid "WP Base upload dir."
19945
  msgstr "WP Base-Upload-Richt."
19946
 
19947
- #: wppa-settings-autosave.php:9534
19948
  #, fuzzy, php-format
19949
  msgid "<br />Memory used on this page: %6.2f Mb."
19950
  msgstr "<br /> Speicher verwendet auf dieser Seite:% 6.2f Mb."
19951
 
19952
- #: wppa-settings-autosave.php:9535
19953
  #, fuzzy, php-format
19954
  msgid "<br />There are %d settings and %d runtime parameters."
19955
  msgstr "<br /> Es gibt% d Einstellungen und% d Laufzeitparameter."
19956
 
19957
- #: wppa-settings-autosave.php:9765 wppa-settings-autosave.php:9785
19958
- #: wppa-settings-autosave.php:9806
19959
  #, fuzzy
19960
  msgid "Warning!"
19961
  msgstr "Warnung!"
19962
 
19963
- #: wppa-settings-autosave.php:9786 wppa-settings-autosave.php:9806
19964
  #, fuzzy
19965
  msgid "Please read the help"
19966
  msgstr "Bitte lesen Sie die Hilfe"
19967
 
19968
- #: wppa-settings-autosave.php:10017
19969
  #, fuzzy
19970
  msgid "Show!"
19971
  msgstr "Anzeigen"
19972
 
19973
- #: wppa-settings-autosave.php:10037
19974
  #, fuzzy
19975
  msgid "Not done yet"
19976
  msgstr "Noch nicht fertig"
19977
 
19978
- #: wppa-settings-autosave.php:10044
19979
  #, fuzzy
19980
  msgid "Start!"
19981
  msgstr "Starte"
19982
 
19983
- #: wppa-settings-autosave.php:10049
19984
  #, fuzzy
19985
  msgid "Locked!"
19986
  msgstr "Gesperrt"
19987
 
19988
- #: wppa-settings-autosave.php:10080
19989
  #, fuzzy
19990
  msgid ""
19991
  "You can not have popup and lightbox on thumbnails at the same time. Uncheck "
@@ -19995,7 +20026,7 @@ msgstr ""
19995
  "gleichen Zeit haben. Deaktivieren Sie entweder Tabelle IV-C8 oder eine "
19996
  "andere Linktyp in Tabelle VI-2 wählen."
19997
 
19998
- #: wppa-settings-autosave.php:10083
19999
  #, fuzzy
20000
  msgid ""
20001
  "It is important that you select a page that contains at least [wppa][/wppa]."
@@ -20003,7 +20034,7 @@ msgstr ""
20003
  "Es ist wichtig, dass Sie eine Seite auswählen, die mindestens enthält [WPPA] "
20004
  "[/ WPPA]."
20005
 
20006
- #: wppa-settings-autosave.php:10084
20007
  #, fuzzy
20008
  msgid ""
20009
  "If you ommit this, the link will not work at all or simply refresh the "
@@ -20076,64 +20107,64 @@ msgstr "Wähle Schlagwörter:"
20076
  msgid "Enter new tags:"
20077
  msgstr "Eingabe neuer Tags:"
20078
 
20079
- #: wppa-setup.php:1114
20080
  #, fuzzy
20081
  msgid "Vote for me!"
20082
  msgstr "Wähle mich!"
20083
 
20084
- #: wppa-setup.php:1115
20085
  #, fuzzy
20086
  msgid "Voted for me"
20087
  msgstr "für mich gestimmt haben"
20088
 
20089
- #: wppa-setup.php:1465
20090
  #, fuzzy
20091
  msgid "NEW"
20092
  msgstr "Neu"
20093
 
20094
- #: wppa-setup.php:1467
20095
  #, fuzzy
20096
  msgid "MODIFIED"
20097
  msgstr "Geändert am"
20098
 
20099
- #: wppa-setup.php:1517
20100
  #, fuzzy
20101
  msgid "Search in current section"
20102
  msgstr "Suche im aktuellen Bereich"
20103
 
20104
- #: wppa-setup.php:1518
20105
  #, fuzzy
20106
  msgid "Search in current results"
20107
  msgstr "Suchen Sie in den aktuellen Ergebnissen"
20108
 
20109
- #: wppa-setup.php:1591
20110
  #, fuzzy
20111
  msgid "Type your custom url here"
20112
  msgstr "Geben Sie Ihre benutzerdefinierte URL hier"
20113
 
20114
- #: wppa-setup.php:1592
20115
  #, fuzzy
20116
  msgid "Type the title here"
20117
  msgstr "Geben Sie den Titel hier"
20118
 
20119
- #: wppa-setup.php:1611 wppa-topten-widget.php:13 wppa-topten-widget.php:48
20120
  #: wppa-topten-widget.php:298
20121
  #, fuzzy
20122
  msgid "Top Ten Photos"
20123
  msgstr "Top-Ten-Fotos"
20124
 
20125
- #: wppa-setup.php:1614 wppa-thumbnail-widget.php:13
20126
  #: wppa-thumbnail-widget.php:166
20127
  #, fuzzy
20128
  msgid "Thumbnail Photos"
20129
  msgstr "Zeige Vorschaubilder"
20130
 
20131
- #: wppa-setup.php:1617
20132
  #, fuzzy
20133
  msgid "Search photos"
20134
  msgstr "Foto suchen"
20135
 
20136
- #: wppa-setup.php:1662
20137
  #, fuzzy
20138
  msgid ""
20139
  "The uploads directory does not exist, please do a regular WP upload first."
@@ -20141,82 +20172,82 @@ msgstr ""
20141
  "Das Upload-Verzeichnis nicht vorhanden ist, wenden Sie sich bitte zunächst "
20142
  "eine regelmäßige WP-Upload tun."
20143
 
20144
- #: wppa-setup.php:1666
20145
  #, fuzzy
20146
  msgid "Successfully created uploads directory."
20147
  msgstr "Erfolgreich Upload-Verzeichnis erstellt."
20148
 
20149
- #: wppa-setup.php:1677
20150
  #, fuzzy
20151
  msgid "Could not create the wppa directory."
20152
  msgstr "Konnte das WPPA Verzeichnis erstellen."
20153
 
20154
- #: wppa-setup.php:1681
20155
  #, fuzzy
20156
  msgid "Successfully created wppa directory."
20157
  msgstr "Erfolgreich WPPA Verzeichnis erstellt."
20158
 
20159
- #: wppa-setup.php:1691
20160
  #, fuzzy
20161
  msgid "Could not create the wppa thumbs directory."
20162
  msgstr "Konnte das WPPA Daumen Verzeichnis erstellen."
20163
 
20164
- #: wppa-setup.php:1695
20165
  #, fuzzy
20166
  msgid "Successfully created wppa thumbs directory."
20167
  msgstr "Erfolgreich WPPA Daumen Verzeichnis erstellt."
20168
 
20169
- #: wppa-setup.php:1705
20170
  #, fuzzy
20171
  msgid "Could not create the wppa watermarks directory."
20172
  msgstr "Konnte das WPPA Wasserzeichen-Verzeichnis erstellen."
20173
 
20174
- #: wppa-setup.php:1709
20175
  #, fuzzy
20176
  msgid "Successfully created wppa watermarks directory."
20177
  msgstr "Erfolgreich WPPA Wasserzeichen-Verzeichnis erstellt."
20178
 
20179
- #: wppa-setup.php:1719
20180
  #, fuzzy
20181
  msgid "Could not create the wppa fonts directory."
20182
  msgstr "Konnte das WPPA Fonts-Verzeichnis erstellen."
20183
 
20184
- #: wppa-setup.php:1723
20185
  #, fuzzy
20186
  msgid "Successfully created wppa fonts directory."
20187
  msgstr "Erfolgreich WPPA Fonts-Verzeichnis erstellt."
20188
 
20189
- #: wppa-setup.php:1735
20190
  #, fuzzy
20191
  msgid "Unable to create depot directory."
20192
  msgstr "Das Verzeichnis kann nicht erstellt werden."
20193
 
20194
- #: wppa-setup.php:1739
20195
  #, fuzzy
20196
  msgid "Successfully created wppa depot directory."
20197
  msgstr "Erfolgreich WPPA Depot-Verzeichnis erstellt."
20198
 
20199
- #: wppa-setup.php:1750
20200
  #, fuzzy
20201
  msgid "Unable to create user depot directory"
20202
  msgstr "Benutzer konnte nicht Depot-Verzeichnis erstellen"
20203
 
20204
- #: wppa-setup.php:1754
20205
  #, fuzzy
20206
  msgid "Successfully created wppa user depot directory."
20207
  msgstr "Erfolgreich WPPA Benutzer Depotverzeichnis erstellt."
20208
 
20209
- #: wppa-setup.php:1764
20210
  #, fuzzy
20211
  msgid "Unable to create temp directory"
20212
  msgstr "Kann das Verzeichnis nicht erstellen"
20213
 
20214
- #: wppa-setup.php:1768
20215
  #, fuzzy
20216
  msgid "Successfully created temp directory."
20217
  msgstr "Erfolgreich Temp-Verzeichnis erstellt."
20218
 
20219
- #: wppa-setup.php:1776
20220
  #, fuzzy, php-format
20221
  msgid ""
20222
  "Ask your administrator to give you more rights, or create <b>%s</b> manually "
@@ -20225,7 +20256,7 @@ msgstr ""
20225
  "Fragen Sie Ihren Administrator Sie mehr Rechte zu geben, oder <b>erstellen"
20226
  "%s</b> manuell ein FTP - Programm."
20227
 
20228
- #: wppa-setup.php:1803
20229
  msgid "Default photo album for"
20230
  msgstr "Standard-Fotoalbum für"
20231
 
@@ -20289,7 +20320,7 @@ msgstr ""
20289
  #: wppa-slideshow-widget.php:212
20290
  #, fuzzy
20291
  msgid "Vertical alignment:"
20292
- msgstr "Vertikale Ausrichtung"
20293
 
20294
  #: wppa-slideshow-widget.php:218
20295
  #, fuzzy
@@ -20504,7 +20535,7 @@ msgstr "Optimiert"
20504
  #: wppa-stereo.php:36
20505
  #, fuzzy
20506
  msgid "Flat"
20507
- msgstr "Flat"
20508
 
20509
  #: wppa-stereo.php:38
20510
  #, fuzzy
@@ -20570,7 +20601,7 @@ msgstr "Sortieren nach:"
20570
  #: wppa-thumbnail-widget.php:211
20571
  #, fuzzy
20572
  msgid "Max number:"
20573
- msgstr "Max-Nummer:"
20574
 
20575
  #: wppa-thumbnail-widget.php:225
20576
  #, fuzzy
@@ -20589,7 +20620,7 @@ msgstr "Fehlende Miniaturansicht #%s"
20589
  #: wppa-tinymce-scripts.php:64 wppa-tinymce-shortcodes.php:59
20590
  #, fuzzy
20591
  msgid "No Preview available"
20592
- msgstr "Keine Vorschau vorhanden"
20593
 
20594
  #: wppa-tinymce-scripts.php:80
20595
  #, fuzzy
@@ -21187,7 +21218,7 @@ msgstr "Das Album Katze (n):"
21187
  #: wppa-tinymce-shortcodes.php:414
21188
  #, fuzzy
21189
  msgid "--- please select category ---"
21190
- msgstr "Bitte eine Kategorie ausw&auml;hlen"
21191
 
21192
  #: wppa-tinymce-shortcodes.php:432 wppa-tinymce-shortcodes.php:446
21193
  #, fuzzy
@@ -21227,7 +21258,7 @@ msgstr "Treffen Sie alle"
21227
  #: wppa-tinymce-shortcodes.php:493 wppa-tinymce-shortcodes.php:541
21228
  #, fuzzy
21229
  msgid "Additional features:"
21230
- msgstr "Zusatz-Ausstattung"
21231
 
21232
  #: wppa-tinymce-shortcodes.php:495
21233
  #, fuzzy
@@ -21335,7 +21366,7 @@ msgstr "Top-Ten-Fotoalbum"
21335
  #: wppa-topten-widget.php:346
21336
  #, fuzzy
21337
  msgid "Number of views"
21338
- msgstr "# Aufrufe"
21339
 
21340
  #: wppa-topten-widget.php:350
21341
  #, fuzzy
@@ -21350,7 +21381,7 @@ msgstr "Nur mit Medaillen:"
21350
  #: wppa-topten-widget.php:365
21351
  #, fuzzy
21352
  msgid "Show owner:"
21353
- msgstr "Eigentümer anzeigen:"
21354
 
21355
  #: wppa-topten-widget.php:370
21356
  #, fuzzy
@@ -21494,12 +21525,12 @@ msgstr ""
21494
  #: wppa-upload.php:248 wppa-upload.php:257 wppa-upload.php:370
21495
  #, fuzzy
21496
  msgid "Selected Files:"
21497
- msgstr "Ausgesuchte Dateien hinzufügen"
21498
 
21499
  #: wppa-upload.php:260
21500
  #, fuzzy
21501
  msgid "Size"
21502
- msgstr "Das Bild ist zu groß. Max Fotogröße: %d x %d (% 2.1f MegaPixel)"
21503
 
21504
  #: wppa-upload.php:261
21505
  #, fuzzy
@@ -21519,12 +21550,12 @@ msgstr "Zu groß"
21519
  #: wppa-upload.php:290
21520
  #, fuzzy
21521
  msgid "Try again!"
21522
- msgstr "Versuchs nochmal!"
21523
 
21524
  #: wppa-upload.php:292
21525
  #, fuzzy
21526
  msgid "Total"
21527
- msgstr "Gesamtsumme"
21528
 
21529
  #: wppa-upload.php:326
21530
  #, fuzzy
@@ -21565,7 +21596,7 @@ msgstr "Laden Einzel Fotos"
21565
  #: wppa-upload.php:436
21566
  #, fuzzy
21567
  msgid "Box C:"
21568
- msgstr "Box C:"
21569
 
21570
  #: wppa-upload.php:436
21571
  #, fuzzy
@@ -21633,55 +21664,55 @@ msgstr "Fehler beim Hochladen"
21633
  msgid "Rating: %s"
21634
  msgstr "Bewertung - %s"
21635
 
21636
- #: wppa-utils.php:940 wppa-utils.php:951 wppa-utils.php:962
21637
  #, fuzzy
21638
  msgid "Notification of inappropriate image"
21639
  msgstr "Mitteilung über unangemessenen Bild"
21640
 
21641
- #: wppa-utils.php:941 wppa-utils.php:952 wppa-utils.php:963
21642
  #, fuzzy, php-format
21643
  msgid "Photo %s has been marked as inappropriate by %s different visitors."
21644
  msgstr ""
21645
  "Foto%s wurde als unangemessen durch%s unterschiedliche Besucher markiert."
21646
 
21647
- #: wppa-utils.php:953
21648
  #, fuzzy
21649
  msgid "The status has been changed to 'pending'."
21650
  msgstr "Der Status wurde geändert, um \"offen\"."
21651
 
21652
- #: wppa-utils.php:964
21653
  #, fuzzy
21654
  msgid "It has been deleted."
21655
  msgstr "Empresa não cadastrada ou a espera da aprovação do administrador."
21656
 
21657
- #: wppa-utils.php:1031
21658
  #, fuzzy
21659
  msgid "Your photo has a new approved comment"
21660
  msgstr "Ihr Foto hat einen neuen genehmigten Kommentar"
21661
 
21662
- #: wppa-utils.php:1034
21663
  #, fuzzy
21664
  msgid "From:"
21665
- msgstr "Ab:"
21666
 
21667
- #: wppa-utils.php:1042
21668
  #, fuzzy
21669
  msgid "Approved comment on photo"
21670
  msgstr "Genehmigt Kommentar auf Foto"
21671
 
21672
- #: wppa-utils.php:1089
21673
  #, fuzzy, php-format
21674
  msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
21675
  msgstr "Die Besucher Email - Adresse lautet: <a href=\"mailto:%s\">%s</a>"
21676
 
21677
- #: wppa-utils.php:1094
21678
  #, fuzzy, php-format
21679
  msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
21680
  msgstr ""
21681
  "Der Besucher sagt , seine E - Mail - Adresse lautet: <a href=\"mailto:%s\">"
21682
  "%s</a>"
21683
 
21684
- #: wppa-utils.php:1102
21685
  #, fuzzy, php-format
21686
  msgid ""
21687
  "This message is automaticly generated at %s. It is useless to respond to it."
@@ -21689,18 +21720,18 @@ msgstr ""
21689
  "Diese Meldung wird automatisch in%s erzeugt. Es ist sinnlos, darauf zu "
21690
  "reagieren."
21691
 
21692
- #: wppa-utils.php:1323
21693
  #, fuzzy, php-format
21694
  msgid "Time out after processing %s items."
21695
  msgstr "Time out nach s Produkte Verarbeitung%."
21696
 
21697
- #: wppa-utils.php:1326 wppa-utils.php:1330
21698
  #, fuzzy, php-format
21699
  msgid "Time out after processing %s items. Please restart this operation"
21700
  msgstr ""
21701
  "Time out nach s Produkte Verarbeitung%. Bitte starten Sie diesen Vorgang"
21702
 
21703
- #: wppa-utils.php:2390
21704
  #, fuzzy
21705
  msgid "There are no ratings between"
21706
  msgstr "Es liegen noch keine Bewertungen zwischen"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-09-15 10:15+0200\n"
5
+ "PO-Revision-Date: 2016-09-15 11:57+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"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.9\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: wppa.php\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
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:1314 wppa-thumbnails.php:641
34
  msgid "Edit"
35
  msgstr "Bearbeiten"
36
 
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:8762
73
  msgid "Page"
74
  msgstr "Seite"
75
 
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"
221
  msgstr ""
222
+ "Album%s existiert nicht oder ist nicht erreichbar beim Versuch, ein Foto "
223
+ "hinzufügen"
224
 
225
  #: wppa-admin-functions.php:898
226
  #, fuzzy
230
  #: wppa-admin-functions.php:934
231
  #, fuzzy
232
  msgid "ERROR: Unknown file or album."
233
+ msgstr "ERROR: Unbekannt Datei oder Album."
234
 
235
  #: wppa-admin.php:56
236
  #, fuzzy
237
  msgid "Photo&thinsp;Albums"
238
+ msgstr "Fotoalben"
239
 
240
+ #: wppa-admin.php:59 wppa-adminbar.php:40 wppa-settings-autosave.php:6061
241
  #, fuzzy
242
  msgid "Album Admin"
243
+ msgstr "Album Admin"
244
 
245
+ #: wppa-admin.php:60 wppa-adminbar.php:47 wppa-settings-autosave.php:6062
246
  #: wppa-upload-widget.php:79 wppa-upload.php:119
247
  #, fuzzy
248
  msgid "Upload Photos"
254
  msgstr "Fotos bearbeiten"
255
 
256
  #: wppa-admin.php:65 wppa-adminbar.php:61 wppa-import.php:168
257
+ #: wppa-settings-autosave.php:6063
258
  #, fuzzy
259
  msgid "Import Photos"
260
+ msgstr "Fotos importieren"
261
 
262
  #: wppa-admin.php:66 wppa-adminbar.php:68
263
  #, fuzzy
265
  msgstr "Moderate Fotos"
266
 
267
  #: wppa-admin.php:67 wppa-adminbar.php:75 wppa-export.php:32
268
+ #: wppa-settings-autosave.php:6065
269
  #, fuzzy
270
  msgid "Export Photos"
271
+ msgstr "Fotos exportieren"
272
 
273
  #: wppa-admin.php:68 wppa-adminbar.php:82 wppa-comment-admin.php:223
274
+ #: wppa-settings-autosave.php:6066
275
  #, fuzzy
276
  msgid "Settings"
277
+ msgstr "Fehler beim Schreiben in Einstellungen-backup-Datei"
278
 
279
  #: wppa-admin.php:69
280
  #, fuzzy
282
  msgstr "Foto des Tages Widget"
283
 
284
  #: wppa-admin.php:69 wppa-adminbar.php:89 wppa-potd-widget.php:60
285
+ #: wppa-settings-autosave.php:6067 wppa-setup.php:1589
286
  #, fuzzy
287
  msgid "Photo of the day"
288
  msgstr "Foto des Tages"
293
  msgstr "Kommentare verwalten"
294
 
295
  #: wppa-admin.php:70 wppa-adminbar.php:96 wppa-settings-autosave.php:371
296
+ #: wppa-settings-autosave.php:3196 wppa-settings-autosave.php:8561
297
+ #: wppa-settings-autosave.php:8606
298
  #, fuzzy
299
  msgid "Comments"
300
  msgstr "Kommentare"
302
  #: wppa-admin.php:71
303
  #, fuzzy
304
  msgid "Help &amp; Info"
305
+ msgstr "Hilfe und Information"
306
 
307
  #: wppa-admin.php:71 wppa-adminbar.php:103
308
  msgid "Documentation"
311
  #: wppa-admin.php:111
312
  #, fuzzy
313
  msgid "Uploading is temporary diabled for you"
314
+ msgstr "Das Hochladen ist vorübergehend diabled für Sie"
315
 
316
  #: wppa-admin.php:118
317
  #, fuzzy
318
  msgid "Editing is temporary diabled for you"
319
+ msgstr "Die Bearbeitung ist vorübergehend diabled für Sie"
320
 
321
  #: wppa-admin.php:125
322
  #, fuzzy
323
  msgid "Importing is temporary diabled for you"
324
+ msgstr "Der Import ist nur vorübergehend diabled für Sie"
325
 
326
  #: wppa-admin.php:128 wppa-import.php:1226
327
  #, fuzzy
328
  msgid "Import"
329
  msgstr "Importieren"
330
 
331
+ #: wppa-admin.php:128 wppa-settings-autosave.php:9739
332
  #, fuzzy
333
  msgid "Update"
334
+ msgstr "Aktualisierung"
335
 
336
  #: wppa-adminbar.php:110 wppa-album-navigator-widget.php:41
337
  #: wppa-album-navigator-widget.php:88 wppa-album-widget.php:47
338
  #, fuzzy
339
  msgid "Photo Albums"
340
+ msgstr "Fotoalben"
341
 
342
  #: wppa-admins-choice-widget.php:13
343
  #, fuzzy
344
  msgid "Admins choice of photos"
345
+ msgstr "Admins Wahl von Fotos"
346
 
347
  #: wppa-admins-choice-widget.php:14 wppa-admins-choice-widget.php:34
348
  #: wppa-admins-choice-widget.php:73
349
  #, fuzzy
350
  msgid "Admins Choice"
351
+ msgstr "Admins Wahl"
352
 
353
  #: wppa-admins-choice-widget.php:44
354
  #, fuzzy
358
  #: wppa-admins-choice-widget.php:68
359
  #, fuzzy
360
  msgid "Please enable this feature in Table IV-A27"
361
+ msgstr "Bitte aktivieren Sie diese Funktion in der Tabelle IV-A27"
362
 
363
  #: wppa-admins-choice-widget.php:78 wppa-album-navigator-widget.php:95
364
  #: wppa-album-widget.php:324 wppa-bestof-widget.php:131
380
  "#070\" >Remark</b> field keeps you informed on the actions taken at the "
381
  "background."
382
  msgstr ""
383
+ "Alle Änderungen werden auf dem Server sofort aktualisiert. Die <b style="
384
+ "\"color:#070\" >Bemerkung</b> Feld informiert Sie über die Aktionen im "
385
  "Hintergrund."
386
 
387
  #: wppa-ajax.php:177
388
  #, fuzzy
389
  msgid "Exit & Refresh"
390
+ msgstr "Exit & Refresh"
391
 
392
  #: wppa-ajax.php:250 wppa-ajax.php:316 wppa-ajax.php:351 wppa-ajax.php:629
393
  #: wppa-ajax.php:927 wppa-ajax.php:2666
398
  #: wppa-ajax.php:284 wppa-ajax.php:340
399
  #, fuzzy
400
  msgid "You do not have the rights to moderate photos this way"
401
+ msgstr "Sie haben nicht die Rechte Fotos auf diese Weise zu moderieren"
402
 
403
  #: wppa-ajax.php:300 wppa-ajax.php:1231 wppa-functions.php:2339
404
  #, fuzzy
408
  #: wppa-ajax.php:313
409
  #, fuzzy, php-format
410
  msgid "Failed to update stutus of photo %s"
411
+ msgstr "Fehlgeschlagen stutus von Foto zu aktualisieren%s"
412
 
413
  #: wppa-ajax.php:313 wppa-ajax.php:320
414
  #, fuzzy
418
  #: wppa-ajax.php:320
419
  #, fuzzy, php-format
420
  msgid "Failed to update stutus of comment %s"
421
+ msgstr "Fehlgeschlagen stutus von Kommentar zu aktualisieren%s"
422
 
423
  #: wppa-ajax.php:335 wppa-ajax.php:355
424
  #, fuzzy
428
  #: wppa-ajax.php:360
429
  #, fuzzy
430
  msgid "Comment removed"
431
+ msgstr "Kommentar wurde entfernt"
432
 
433
  #: wppa-ajax.php:361
434
  #, fuzzy
435
  msgid "Could not remove comment"
436
+ msgstr "Konnte nicht entfernen Kommentar"
437
 
438
  #: wppa-ajax.php:364 wppa-ajax.php:795
439
  #, fuzzy
440
  msgid "Unexpected error"
441
+ msgstr "Unerwarteter Fehler:"
442
 
443
  #: wppa-ajax.php:370
444
  #, fuzzy
445
  msgid "This feature is not enabled on this website"
446
+ msgstr "Diese Funktion ist nicht auf dieser Website aktiviert"
447
 
448
  #: wppa-ajax.php:382
449
  #, fuzzy
458
  #: wppa-ajax.php:403
459
  #, fuzzy, php-format
460
  msgid "Unable to create zip archive. code = %s"
461
+ msgstr "Kann nicht Zip-Archiv zu erstellen. Code =%s"
462
 
463
  #: wppa-ajax.php:440
464
  #, fuzzy, php-format
465
  msgid "Only %s out of %s photos could be added to the zipfile"
466
+ msgstr "Nur%s Fotos aus%s auf die ZIP-Datei hinzugefügt werden könnten"
467
 
468
  #: wppa-ajax.php:478
469
  #, fuzzy
470
  msgid "Unable to create zipsdir"
471
+ msgstr "Unfähig zipsdir erstellen"
472
 
473
  #: wppa-ajax.php:503 wppa-functions.php:2137 wppa-thumbnails.php:616
474
  #, fuzzy
475
  msgid "Selected"
476
+ msgstr "Ausgewählt"
477
 
478
  #: wppa-ajax.php:533
479
  #, fuzzy
488
  #: wppa-ajax.php:578
489
  #, fuzzy
490
  msgid "Unable to create tempdir"
491
+ msgstr "Unfähig tempdir erstellen"
492
 
493
  #: wppa-ajax.php:602
494
  #, fuzzy
498
  #: wppa-ajax.php:611
499
  #, fuzzy
500
  msgid "The photo does no longer exist"
501
+ msgstr "Das Foto existiert nicht mehr"
502
 
503
  #: wppa-ajax.php:643
504
  #, fuzzy
505
  msgid "An error occurred while processing you rating request."
506
+ msgstr "Fehler beim Verarbeiten Sie Anfrage Bewertung."
507
 
508
  #: wppa-ajax.php:644
509
  #, fuzzy
510
  msgid "Maybe you opened the page too long ago to recognize you."
511
+ msgstr "Vielleicht eröffnet Ihnen die Seite zu lange her, Sie zu erkennen."
 
512
 
513
  #: wppa-ajax.php:645
514
  #, fuzzy
521
  "Althoug an error occurred while processing your rating, your vote has been "
522
  "registered."
523
  msgstr ""
524
+ "Althoug ein Fehler aufgetreten ist, während die Bewertung der Verarbeitung, "
525
  "Ihre Stimme registriert wurde."
526
 
527
  #: wppa-ajax.php:647
528
  #, fuzzy
529
  msgid "However, this may not be reflected in the current pageview"
530
+ msgstr "Dies kann jedoch nicht in der aktuellen Seitenzugriff widerspiegeln"
531
 
532
  #: wppa-ajax.php:676
533
  #, fuzzy
537
  #: wppa-ajax.php:688 wppa-slideshow.php:743
538
  #, fuzzy
539
  msgid "Sorry, you can not rate your own photos"
540
+ msgstr "Sorry, Sie können Ihre eigenen Fotos nicht bewertet werden"
541
 
542
  #: wppa-ajax.php:700
543
  #, fuzzy
547
  #: wppa-ajax.php:727
548
  #, fuzzy
549
  msgid "You can not change your vote"
550
+ msgstr "Sie können nicht Ihre Stimme ändern"
551
 
552
  #: wppa-ajax.php:733
553
  #, fuzzy
554
  msgid "You can not change a dislike"
555
+ msgstr "Sie können nicht eine Abneigung ändern"
556
 
557
  #: wppa-ajax.php:739
558
  #, fuzzy
559
  msgid "You can not change your vote into a dislike"
560
+ msgstr "Sie können nicht Ihre Stimme in eine Abneigung ändern"
561
 
562
  #: wppa-ajax.php:755 wppa-ajax.php:776
563
  #, fuzzy
574
  "you can refresh the page to see\n"
575
  "your vote became effective."
576
  msgstr ""
577
+ "Bitte erläutern Sie Ihre Stimme in einem Kommentar. Ihre Stimme wird "
578
+ "verworfen, wenn Sie dies nicht tun. Nachdem Sie Ihren Kommentar "
579
+ "abgeschlossen haben, können Sie die Seite aktualisieren Ihre Stimme wurde "
580
+ "wirksam zu sehen."
 
581
 
582
  #: wppa-ajax.php:923
583
  #, fuzzy
584
  msgid "You do not have the rights to delete a photo"
585
+ msgstr "Sie haben nicht die Rechte, ein Foto zu löschen"
586
 
587
  #: wppa-ajax.php:933
588
  #, fuzzy, php-format
589
  msgid "Photo %s has been deleted"
590
+ msgstr "Foto%s wurde gelöscht"
591
 
592
  #: wppa-ajax.php:949
593
  #, fuzzy
594
  msgid "You do not have the rights to update album information"
595
+ msgstr "Sie haben nicht die Rechte Album-Informationen zu aktualisieren"
596
 
597
  #: wppa-ajax.php:961
598
  #, fuzzy
607
  #: wppa-ajax.php:964
608
  #, fuzzy
609
  msgid "An error occurred while clearing ratings"
610
+ msgstr "Ein Fehler ist aufgetreten, während Bewertungen Clearing"
611
 
612
  #: wppa-ajax.php:967 wppa-ajax.php:988 wppa-ajax.php:1010
613
  #, fuzzy
614
  msgid "<b>No photos in this album</b>"
615
+ msgstr "<b>Keine Fotos in diesem Album</b>"
616
 
617
  #: wppa-ajax.php:982
618
  #, fuzzy
619
  msgid "<b>Tags set to defaults</b> (reload)"
620
+ msgstr "<b>Stichworte auf Standardwerte</b> (neu laden)"
621
 
622
  #: wppa-ajax.php:985
623
  #, fuzzy
624
  msgid "An error occurred while setting tags"
625
+ msgstr "Ein Fehler ist aufgetreten, während Tags Einstellung"
626
 
627
  #: wppa-ajax.php:1004
628
  #, fuzzy
629
  msgid "<b>Tags added width defaults</b> (reload)"
630
+ msgstr "<b>Tags hinzugefügt Breite defaults</b> (neu laden)"
631
 
632
  #: wppa-ajax.php:1007
633
  #, fuzzy
634
  msgid "An error occurred while adding tags"
635
+ msgstr "Fehler beim Hinzufügen von Tags"
636
 
637
  #: wppa-ajax.php:1033
638
  #, fuzzy
639
  msgid "No subalbums found to process"
640
+ msgstr "Keine Unteralben zu verarbeiten gefunden"
641
 
642
  #: wppa-ajax.php:1038
643
  #, fuzzy
644
  msgid "No categories found to process"
645
+ msgstr "Keine Kategorien zu verarbeiten gefunden"
646
 
647
  #: wppa-ajax.php:1042
648
  #, php-format
654
  #: wppa-ajax.php:1049
655
  #, fuzzy, php-format
656
  msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
657
+ msgstr "Name des Albums darf nicht leer sein. <br /> Reset <b>to%s</b>"
658
 
659
  #: wppa-ajax.php:1051 wppa-ajax.php:1491 wppa-album-admin-autosave.php:393
660
  #: wppa-album-admin-autosave.php:450 wppa-album-admin-autosave.php:1099
661
  #: wppa-album-admin-autosave.php:1236 wppa-album-admin-autosave.php:1408
662
  #: wppa-album-admin-autosave.php:1503 wppa-boxes-html.php:415
663
  #: wppa-boxes-html.php:529 wppa-photo-admin-autosave.php:1363
664
+ #: wppa-photo-admin-autosave.php:1482 wppa-photo-admin-autosave.php:1899
665
  #: wppa-potd-admin.php:71 wppa-potd-admin.php:358
666
  #: wppa-settings-autosave.php:515 wppa-settings-autosave.php:677
667
  #: wppa-settings-autosave.php:699 wppa-settings-autosave.php:1447
668
  #: wppa-settings-autosave.php:1468 wppa-settings-autosave.php:3093
669
  #: wppa-settings-autosave.php:3114 wppa-settings-autosave.php:3451
670
+ #: wppa-settings-autosave.php:3475 wppa-settings-autosave.php:4037
671
+ #: wppa-settings-autosave.php:4151 wppa-settings-autosave.php:4800
672
+ #: wppa-settings-autosave.php:4821 wppa-settings-autosave.php:4997
673
+ #: wppa-settings-autosave.php:5021 wppa-settings-autosave.php:6027
674
+ #: wppa-settings-autosave.php:6448 wppa-settings-autosave.php:6698
675
+ #: wppa-settings-autosave.php:6720 wppa-settings-autosave.php:7450
676
+ #: wppa-settings-autosave.php:7474 wppa-settings-autosave.php:8555
677
+ #: wppa-settings-autosave.php:9196 wppa-settings-autosave.php:9352
678
  #: wppa-thumbnail-widget.php:202 wppa-upload.php:259
679
  msgid "Name"
680
  msgstr "Name"
682
  #: wppa-ajax.php:1054 wppa-ajax.php:1494 wppa-album-admin-autosave.php:1109
683
  #: wppa-album-admin-autosave.php:1246 wppa-album-admin-autosave.php:1418
684
  #: wppa-album-admin-autosave.php:1513 wppa-photo-admin-autosave.php:1364
685
+ #: wppa-photo-admin-autosave.php:1483 wppa-photo-admin-autosave.php:1900
686
  #: wppa-potd-admin.php:72 wppa-potd-admin.php:138 wppa-potd-admin.php:359
687
  #: wppa-settings-autosave.php:516 wppa-settings-autosave.php:678
688
  #: wppa-settings-autosave.php:700 wppa-settings-autosave.php:1448
689
  #: wppa-settings-autosave.php:1469 wppa-settings-autosave.php:3094
690
  #: wppa-settings-autosave.php:3115 wppa-settings-autosave.php:3452
691
+ #: wppa-settings-autosave.php:3476 wppa-settings-autosave.php:4801
692
+ #: wppa-settings-autosave.php:4822 wppa-settings-autosave.php:4998
693
+ #: wppa-settings-autosave.php:5022 wppa-settings-autosave.php:6028
694
+ #: wppa-settings-autosave.php:6449 wppa-settings-autosave.php:6699
695
+ #: wppa-settings-autosave.php:6721 wppa-settings-autosave.php:7451
696
+ #: wppa-settings-autosave.php:7475 wppa-settings-autosave.php:9197
697
+ #: wppa-settings-autosave.php:9219 wppa-settings-autosave.php:9259
698
+ #: wppa-settings-autosave.php:9281 wppa-settings-autosave.php:9327
699
+ #: wppa-settings-autosave.php:9353
700
  #, fuzzy
701
  msgid "Description"
702
  msgstr "Album Beschreibung eingeben"
704
  #: wppa-ajax.php:1058
705
  #, fuzzy
706
  msgid "Unbalanced tags in album description!"
707
+ msgstr "Unsymmetrische Tags in Albumbeschreibung!"
708
 
709
  #: wppa-ajax.php:1065
710
  #, fuzzy
721
  msgid "Parent album"
722
  msgstr "Übergeordnetes Album"
723
 
724
+ #: wppa-ajax.php:1076 wppa-settings-autosave.php:4031
725
  #, fuzzy
726
  msgid "Photo order"
727
  msgstr "Bildersortierung"
729
  #: wppa-ajax.php:1079
730
  #, fuzzy
731
  msgid "Use Alt thumbsize"
732
+ msgstr "Mit Alt thumbsize"
733
 
734
  #: wppa-ajax.php:1082
735
  #, fuzzy
736
  msgid "Cover Type"
737
  msgstr "Cover-Typ"
738
 
739
+ #: wppa-ajax.php:1085 wppa-settings-autosave.php:5023
740
+ #: wppa-settings-autosave.php:6029
741
  #, fuzzy
742
  msgid "Link type"
743
  msgstr "Verknüpfungstyp"
762
  #: wppa-ajax.php:1098 wppa-ajax.php:1104
763
  #, fuzzy
764
  msgid "Upload limit count"
765
+ msgstr "Upload-Limit Zahl"
766
 
767
  #: wppa-ajax.php:1111
768
  #, fuzzy
772
  #: wppa-ajax.php:1115
773
  #, fuzzy
774
  msgid "Default tags"
775
+ msgstr "Default-Tags"
776
 
777
  #: wppa-ajax.php:1120
778
  #, fuzzy
779
  msgid "Categories"
780
+ msgstr "Kategorien"
781
 
782
  #: wppa-ajax.php:1123
783
  #, fuzzy
784
  msgid "Sub albums sort order"
785
+ msgstr "Unteralben sortieren bestellen"
786
 
787
  #: wppa-ajax.php:1131 wppa-ajax.php:1585
788
  #, fuzzy
789
  msgid "Schedule date/time"
790
+ msgstr "Geplantes Datum / Zeit"
791
 
792
  #: wppa-ajax.php:1144 wppa-ajax.php:1196
793
  #, fuzzy, php-format
794
  msgid "<b>%s</b> of album %s updated"
795
+ msgstr "<b>%s</b> Album%s aktualisiert"
796
 
797
  #: wppa-ajax.php:1152
798
  #, fuzzy
799
  msgid "All photos set to scheduled per date"
800
+ msgstr "Alle Fotos auf pro Tag geplant"
801
 
802
  #: wppa-ajax.php:1179
803
  #, fuzzy, php-format
807
  #: wppa-ajax.php:1205
808
  #, fuzzy, php-format
809
  msgid "An error occurred while trying to update <b>%s</b> of album %s"
810
+ msgstr "Ein Fehler beim Versuch , <b>%s</b> Album%s zu aktualisieren"
 
811
 
812
  #: wppa-ajax.php:1206 wppa-ajax.php:1469 wppa-ajax.php:1575
813
  #, fuzzy
814
  msgid "Press CTRL+F5 and try again."
815
+ msgstr "Drücken Sie STRG F5 und versuchen Sie es erneut."
816
 
817
  #: wppa-ajax.php:1220
818
  #, fuzzy
819
  msgid "You do not have the rights to update comment status"
820
+ msgstr "Sie haben nicht die Rechte Kommentar Status zu aktualisieren"
821
 
822
  #: wppa-ajax.php:1237
823
  #, fuzzy, php-format
824
  msgid "Status of comment #%s updated"
825
+ msgstr "Status Kommentar #%s aktualisiert"
826
 
827
  #: wppa-ajax.php:1240
828
  #, fuzzy, php-format
832
  #: wppa-ajax.php:1251
833
  #, fuzzy
834
  msgid "You do not have the rights to change photos"
835
+ msgstr "Sie haben nicht die Rechte Fotos zu ändern"
836
 
837
  #: wppa-ajax.php:1260
838
  #, fuzzy
839
  msgid "Watermark applied"
840
+ msgstr "Wasserzeichen eingefügt werden"
841
 
842
  #: wppa-ajax.php:1264
843
  #, fuzzy
844
  msgid "An error occured while trying to apply a watermark"
845
+ msgstr ""
846
+ "Ein Fehler ist aufgetreten bei dem Versuch, ein Wasserzeichen zu beantragen"
847
 
848
  #: wppa-ajax.php:1283
849
  #, fuzzy
850
  msgid "You do not have the rights to update photo information"
851
+ msgstr "Sie haben nicht die Rechte Foto Informationen zu aktualisieren"
852
 
853
  #: wppa-ajax.php:1289
854
  #, fuzzy, php-format
855
  msgid "%s updated to %s."
856
+ msgstr "%s%s aktualisiert."
857
 
858
  #: wppa-ajax.php:1339
859
  #, fuzzy, php-format
860
  msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
861
+ msgstr "Formatfehler%s. Müssen jjjj: mm: tt hh: mm: ss"
862
 
863
  #: wppa-ajax.php:1343
864
  #, fuzzy
865
  msgid "Exif date/time updated"
866
+ msgstr "Exif Datum / Uhrzeit aktualisiert"
867
 
868
  #: wppa-ajax.php:1349
869
  #, fuzzy
870
  msgid "Enter a value > -90 and < 90"
871
+ msgstr "Geben Sie einen Wert> -90 und <90"
872
 
873
  #: wppa-ajax.php:1357
874
  #, fuzzy
875
  msgid "Lattitude updated"
876
+ msgstr "Lattitude aktualisiert"
877
 
878
  #: wppa-ajax.php:1359
879
  #, fuzzy
880
  msgid "Could not update lattitude"
881
+ msgstr "Konnte nicht aktualisiert werden lattitude"
882
 
883
  #: wppa-ajax.php:1365
884
  #, fuzzy
885
  msgid "Enter a value > -180 and < 180"
886
+ msgstr "Geben Sie einen Wert> -180 und <180"
887
 
888
  #: wppa-ajax.php:1373
889
  #, fuzzy
893
  #: wppa-ajax.php:1375
894
  #, fuzzy
895
  msgid "Could not update longitude"
896
+ msgstr "Konnte nicht aktualisieren Länge"
897
 
898
  #: wppa-ajax.php:1383
899
  #, fuzzy
900
  msgid "Photo files remade"
901
+ msgstr "Fotodateien neu gemacht"
902
 
903
  #: wppa-ajax.php:1386
904
  #, fuzzy
905
  msgid "Could not remake files"
906
+ msgstr "Konnte nicht Dateien Remake"
907
 
908
  #: wppa-ajax.php:1392
909
  #, fuzzy
910
  msgid "Thumbnail remade"
911
+ msgstr "Thumbnail neu gemacht"
912
 
913
  #: wppa-ajax.php:1395
914
  #, fuzzy
915
  msgid "Could not remake thumbnail"
916
+ msgstr "Konnte nicht Thumbnail Remake"
917
 
918
  #: wppa-ajax.php:1405 wppa-photo-admin-autosave.php:184 wppa-potd-admin.php:100
919
  #: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:288
920
  #: wppa-tinymce-shortcodes.php:617
921
  #, fuzzy
922
  msgid "left"
923
+ msgstr "links"
924
 
925
  #: wppa-ajax.php:1409 wppa-photo-admin-autosave.php:186
926
  #, fuzzy
927
  msgid "180&deg;"
928
+ msgstr "180 °"
929
 
930
  #: wppa-ajax.php:1413 wppa-photo-admin-autosave.php:188 wppa-potd-admin.php:100
931
  #: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:290
932
  #: wppa-tinymce-shortcodes.php:619
933
  #, fuzzy
934
  msgid "right"
935
+ msgstr "rechts"
936
 
937
  #: wppa-ajax.php:1421
938
  #, fuzzy, php-format
939
  msgid "Photo %s rotated %s"
940
+ msgstr "Foto%s gedreht%s"
941
 
942
  #: wppa-ajax.php:1424
943
  #, fuzzy, php-format
944
  msgid "An error occurred while trying to rotate photo %s"
945
+ msgstr "Ein Fehler beim Versuch, das Foto zu drehen%s"
946
 
947
  #: wppa-ajax.php:1434 wppa-ajax.php:1457 wppa-photo-admin-autosave.php:1100
948
  #: wppa-photo-admin-autosave.php:1118
949
  #, fuzzy, php-format
950
  msgid "A photo with filename %s already exists in album %s."
951
+ msgstr "Ein Foto mit dem Dateinamen%s existiert bereits in Album%s."
952
 
953
  #: wppa-ajax.php:1444
954
  #, fuzzy, php-format
955
  msgid "Photo %s has been moved to album %s (%s)"
956
+ msgstr "Foto%s wurde auf Album%s (%s) bewegt"
957
 
958
  #: wppa-ajax.php:1447
959
  #, fuzzy, php-format
960
  msgid "An error occurred while trying to move photo %s"
961
+ msgstr "Ein Fehler beim Versuch, das Foto zu bewegen%s"
962
 
963
  #: wppa-ajax.php:1465
964
  #, fuzzy, php-format
965
  msgid "Photo %s copied to album %s (%s)"
966
+ msgstr "Foto%s kopiert Album%s (%s)"
967
 
968
  #: wppa-ajax.php:1468
969
  #, fuzzy, php-format
970
  msgid "An error occurred while trying to copy photo %s"
971
+ msgstr "Ein Fehler beim Versuch, das Foto zu kopieren%s"
972
 
973
  #: wppa-ajax.php:1498 wppa-ajax.php:2140
974
  #, fuzzy
975
  msgid "Unbalanced tags in photo description!"
976
+ msgstr "Unsymmetrische Tags in fotobeschreibung!"
977
 
978
  #: wppa-ajax.php:1504
979
  #, fuzzy
983
  #: wppa-ajax.php:1509
984
  #, fuzzy, php-format
985
  msgid "User %s does not exists"
986
+ msgstr "Benutzer%s existiert nicht"
987
 
988
  #: wppa-ajax.php:1518
989
  #, fuzzy
990
  msgid "Link url"
991
+ msgstr "Link URL"
992
 
993
  #: wppa-ajax.php:1521
994
  #, fuzzy
995
  msgid "Link title"
996
+ msgstr "Link Titel"
997
 
998
  #: wppa-ajax.php:1524
999
  #, fuzzy
1000
  msgid "Link target"
1001
+ msgstr "Link-Ziel"
1002
 
1003
  #: wppa-ajax.php:1530 wppa-multitag-widget.php:34 wppa-multitag-widget.php:66
1004
  #: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
1008
 
1009
  #: wppa-ajax.php:1535 wppa-comment-admin.php:317 wppa-comment-admin.php:404
1010
  #: wppa-photo-admin-autosave.php:1365 wppa-photo-admin-autosave.php:1484
1011
+ #: wppa-settings-autosave.php:6724 wppa-settings-autosave.php:7454
1012
+ #: wppa-settings-autosave.php:9220 wppa-settings-autosave.php:9260
1013
+ #: wppa-settings-autosave.php:9282 wppa-settings-autosave.php:9328
1014
  #, fuzzy
1015
  msgid "Status"
1016
  msgstr "Status"
1028
  #: wppa-ajax.php:1544 wppa-ajax.php:1551
1029
  #, fuzzy
1030
  msgid "Please enter an integer value >= 0"
1031
+ msgstr "Bitte geben Sie einen ganzzahligen Wert =%1 ein."
1032
 
1033
  #: wppa-ajax.php:1549
1034
  #, fuzzy
1043
  #: wppa-ajax.php:1570 wppa-ajax.php:1604
1044
  #, fuzzy, php-format
1045
  msgid "<b>%s</b> of photo %s updated"
1046
+ msgstr "<b>%s</b> von Foto%s aktualisiert"
1047
 
1048
  #: wppa-ajax.php:1574
1049
  #, fuzzy, php-format
1050
  msgid "An error occurred while trying to update <b>%s</b> of photo %s"
1051
+ msgstr "Ein Fehler beim Versuch , <b>%s</b> Foto%s zu aktualisieren"
 
1052
 
1053
  #: wppa-ajax.php:1630
1054
  #, fuzzy, php-format
1055
  msgid "<b>Custom field %s</b> of photo %s updated"
1056
+ msgstr "<b>Benutzerdefinierte Feld%s</b> von Foto%s aktualisiert"
1057
 
1058
  #: wppa-ajax.php:1637
1059
  #, fuzzy
1068
  #: wppa-ajax.php:1676
1069
  #, fuzzy
1070
  msgid "Could not update files."
1071
+ msgstr "Konnte nicht Dateien aktualisieren."
1072
 
1073
  #: wppa-ajax.php:1687
1074
  #, fuzzy, php-format
1075
  msgid "Stereo mode updated in %d milliseconds"
1076
+ msgstr "Stereo-Modus in% d Millisekunden aktualisiert"
1077
 
1078
  #: wppa-ajax.php:1704 wppa-ajax.php:1746
1079
  #, fuzzy
1080
  msgid "You do not have the rights to update settings"
1081
+ msgstr "Sie haben nicht die Rechte-Einstellungen aktualisieren"
1082
 
1083
  #: wppa-ajax.php:1740
1084
  #, fuzzy
1085
  msgid "You do not have the rights to update photo of the day settings"
1086
+ msgstr ""
1087
+ "Sie haben nicht die Rechte Foto des Tages Einstellungen zu aktualisieren"
1088
 
1089
  #: wppa-ajax.php:1818
1090
  #, fuzzy
1091
  msgid "Capability granted"
1092
+ msgstr "Capability gewährt"
1093
 
1094
  #: wppa-ajax.php:1823
1095
  #, fuzzy
1096
  msgid "Capability withdrawn"
1097
+ msgstr "Capability zurückgezogen"
1098
 
1099
  #: wppa-ajax.php:1854
1100
  #, fuzzy
1124
  #: wppa-ajax.php:1872
1125
  #, fuzzy
1126
  msgid "Thumbnail frame width"
1127
+ msgstr "Rahmenbreite des Minibildes:"
1128
 
1129
  #: wppa-ajax.php:1876
1130
  #, fuzzy
1131
  msgid "Thumbnail frame height"
1132
+ msgstr "Miniaturrahmenhöhe"
1133
 
1134
  #: wppa-ajax.php:1879
1135
  #, fuzzy
1136
  msgid "Thumbnail Spacing"
1137
+ msgstr "Thumbnail-Abstand"
1138
 
1139
  #: wppa-ajax.php:1882
1140
  #, fuzzy
1141
  msgid "Photocount treshold."
1142
+ msgstr "Photocount treshold."
1143
 
1144
  #: wppa-ajax.php:1885
1145
  #, fuzzy
1146
  msgid "Thumb page size."
1147
+ msgstr "Thumb Seitengröße."
1148
 
1149
  #: wppa-ajax.php:1888
1150
  #, fuzzy
1164
  #: wppa-ajax.php:1897
1165
  #, fuzzy
1166
  msgid "Widget image thumbnail size"
1167
+ msgstr "Widget Bild Miniaturgröße"
1168
 
1169
  #: wppa-ajax.php:1900 wppa-settings-autosave.php:1105
1170
  #, fuzzy
1171
  msgid "Max Cover width"
1172
+ msgstr "Max Deckbreite"
1173
 
1174
  #: wppa-ajax.php:1903
1175
  #, fuzzy
1179
  #: wppa-ajax.php:1906
1180
  #, fuzzy
1181
  msgid "Minimal cover height"
1182
+ msgstr "Minimale Abdeckung Höhe"
1183
 
1184
  #: wppa-ajax.php:1909
1185
  #, fuzzy
1186
  msgid "Minimal text frame height"
1187
+ msgstr "Minimale Rahmenhöhe"
1188
 
1189
  #: wppa-ajax.php:1912 wppa-settings-autosave.php:1402
1190
  #, fuzzy
1191
  msgid "Border width"
1192
+ msgstr "Rahmenbreite"
1193
 
1194
  #: wppa-ajax.php:1915 wppa-settings-autosave.php:776
1195
  #: wppa-settings-autosave.php:1411
1196
  #, fuzzy
1197
  msgid "Border radius"
1198
+ msgstr "Rahmen Radius"
1199
 
1200
  #: wppa-ajax.php:1918 wppa-settings-autosave.php:787
1201
  #, fuzzy
1202
  msgid "Box spacing"
1203
+ msgstr "Box Abstand"
1204
 
1205
  #: wppa-ajax.php:1924 wppa-settings-autosave.php:1080
1206
  #, fuzzy
1210
  #: wppa-ajax.php:1927
1211
  #, fuzzy
1212
  msgid "Fullsize border width"
1213
+ msgstr "Fullsize Randbreite"
1214
 
1215
  #: wppa-ajax.php:1930
1216
  #, fuzzy
1217
  msgid "Lightbox Bordersize"
1218
+ msgstr "Lightbox Bordersize"
1219
 
1220
  #: wppa-ajax.php:1933
1221
  #, fuzzy
1222
  msgid "Lightbox Borderwidth"
1223
+ msgstr "Lightbox Border"
1224
 
1225
  #: wppa-ajax.php:1936
1226
  #, fuzzy
1227
  msgid "Lightbox Borderradius"
1228
+ msgstr "Lightbox Borderradius"
1229
 
1230
  #: wppa-ajax.php:1939
1231
  #, fuzzy
1232
  msgid "Number of Comment widget entries"
1233
+ msgstr "Anzahl der Kommentar-Widget Einträge"
1234
 
1235
  #: wppa-ajax.php:1942
1236
  #, fuzzy
1237
  msgid "Comment Widget image thumbnail size"
1238
+ msgstr "Kommentar Widget Bild Miniaturgröße"
1239
 
1240
  #: wppa-ajax.php:1945 wppa-ajax.php:1948 wppa-ajax.php:1951
1241
  #, fuzzy
1242
  msgid "Opacity."
1243
+ msgstr "Deckkraft"
1244
 
1245
  #: wppa-ajax.php:1960 wppa-settings-autosave.php:1211
1246
  #, fuzzy
1247
  msgid "Avatar size"
1248
+ msgstr "Avatar-Grösse"
1249
 
1250
  #: wppa-ajax.php:1963 wppa-ajax.php:1966
1251
  #, fuzzy
1257
  msgid "Number of text lines"
1258
  msgstr "Anzahl der Textzeilen"
1259
 
1260
+ #: wppa-ajax.php:1972 wppa-settings-autosave.php:4677
1261
  #, fuzzy
1262
  msgid "Overlay opacity"
1263
  msgstr "Überlagerungsdeckkraft"
1264
 
1265
+ #: wppa-ajax.php:1975 wppa-settings-autosave.php:8014
1266
  #, fuzzy
1267
  msgid "Upload limit"
1268
  msgstr "Hochladebegrenzung"
1269
 
1270
+ #: wppa-ajax.php:1978 wppa-settings-autosave.php:4347
1271
  #, fuzzy
1272
  msgid "Notify inappropriate"
1273
+ msgstr "Benachrichtigen Sie ungeeignet"
1274
 
1275
  #: wppa-ajax.php:1981
1276
  #, fuzzy
1277
  msgid "Dislike pending"
1278
+ msgstr "Dislike angemeldet"
1279
 
1280
  #: wppa-ajax.php:1984
1281
  #, fuzzy
1282
  msgid "Dislike delete"
1283
+ msgstr "Dislike löschen"
1284
 
1285
+ #: wppa-ajax.php:1987 wppa-settings-autosave.php:7550
1286
  #, fuzzy
1287
  msgid "Max execution time"
1288
  msgstr "Max Durchführungszeit"
1290
  #: wppa-ajax.php:1993
1291
  #, fuzzy
1292
  msgid "myCRED / Cube Points"
1293
+ msgstr "myCRED / Cube-Punkte"
1294
 
1295
  #: wppa-ajax.php:1996
1296
  #, fuzzy
1297
  msgid "JPG Image quality"
1298
+ msgstr "JPG Bildqualität"
1299
 
1300
+ #: wppa-ajax.php:2002 wppa-settings-autosave.php:4240
1301
  #, fuzzy
1302
  msgid "Number of coverphotos"
1303
  msgstr "Anzahl der coverphotos"
1304
 
1305
+ #: wppa-ajax.php:2005 wppa-settings-autosave.php:4318
1306
  #, fuzzy
1307
  msgid "Dislike value"
1308
  msgstr "Dislike Wert"
1320
  #: wppa-ajax.php:2014 wppa-settings-autosave.php:805
1321
  #, fuzzy
1322
  msgid "Max Pagelinks"
1323
+ msgstr "Max pagelinks"
1324
 
1325
  #: wppa-ajax.php:2017 wppa-settings-autosave.php:3032
1326
  #, fuzzy
1327
  msgid "Start/pause symbol size"
1328
+ msgstr "Start / Pause Symbolgröße"
1329
 
1330
  #: wppa-ajax.php:2020 wppa-settings-autosave.php:3041
1331
  #, fuzzy
1332
  msgid "Start/pause symbol border radius"
1333
+ msgstr "Start / Pause Symbol Grenzradius"
1334
 
1335
  #: wppa-ajax.php:2023 wppa-settings-autosave.php:3050
1336
  #, fuzzy
1337
  msgid "Stop symbol size"
1338
+ msgstr "Symbolgröße"
1339
 
1340
  #: wppa-ajax.php:2026 wppa-settings-autosave.php:3059
1341
  #, fuzzy
1355
  #: wppa-ajax.php:2040
1356
  #, fuzzy
1357
  msgid "Could not clear ratings"
1358
+ msgstr "Könnte nicht klar Bewertungen"
1359
 
1360
  #: wppa-ajax.php:2049
1361
  #, fuzzy
1365
  #: wppa-ajax.php:2052
1366
  #, fuzzy
1367
  msgid "Could not clear viewcounts"
1368
+ msgstr "Könnte nicht klar viewcounts"
1369
 
1370
  #: wppa-ajax.php:2062
1371
  #, fuzzy
1375
  #: wppa-ajax.php:2063
1376
  #, fuzzy
1377
  msgid "Refresh this page to clear table X"
1378
+ msgstr "Seite aktualisieren Tabelle X zu löschen"
1379
 
1380
  #: wppa-ajax.php:2067
1381
  #, fuzzy
1382
  msgid "Could not clear IPTC data"
1383
+ msgstr "Könnte nicht klar, IPTC-Daten"
1384
 
1385
  #: wppa-ajax.php:2077
1386
  #, fuzzy
1390
  #: wppa-ajax.php:2078
1391
  #, fuzzy
1392
  msgid "Refresh this page to clear table XI"
1393
+ msgstr "Seite aktualisieren Tabelle XI zu löschen"
1394
 
1395
  #: wppa-ajax.php:2082
1396
  #, fuzzy
1397
  msgid "Could not clear EXIF data"
1398
+ msgstr "Könnte nicht klar, EXIF-Daten"
1399
 
1400
  #: wppa-ajax.php:2090
1401
  #, fuzzy
1402
  msgid "Recuperation performed"
1403
+ msgstr "Rekuperation ausgeführt"
1404
 
1405
  #: wppa-ajax.php:2105
1406
  #, fuzzy
1408
  "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1409
  "#77bbff"
1410
  msgstr ""
1411
+ "Illegal Format. Bitte geben Sie eine 6-stellige hexadezimale Farbwert. "
1412
+ "Beispiel: # 77bbff"
1413
 
1414
  #: wppa-ajax.php:2131
1415
  #, fuzzy
1416
  msgid "You just changed a setting that requires the recalculation of ratings."
1417
  msgstr ""
1418
+ "Sie verändert nur eine Einstellung, die Neuberechnung der Bewertungen "
1419
+ "erfordert."
1420
 
1421
  #: wppa-ajax.php:2132 wppa-ajax.php:2580
1422
  #, fuzzy
1423
  msgid "Please run the appropriate action in Table VIII."
1424
+ msgstr "Bitte führen Sie die entsprechende Aktion in der Tabelle VIII."
1425
 
1426
  #: wppa-ajax.php:2156 wppa-ajax.php:2172
1427
  #, fuzzy, php-format
1428
  msgid "Unable to create or write to %s"
1429
+ msgstr "Kann nicht erstellt oder schreiben zu%s"
1430
 
1431
  #: wppa-ajax.php:2165
1432
  #, fuzzy
1433
  msgid "Source can not be inside the wppa folder."
1434
+ msgstr "Quelle kann nicht innerhalb des WPPA Ordner sein."
1435
 
1436
  #: wppa-ajax.php:2182
1437
  #, fuzzy
1438
  msgid "The content must contain w#album"
1439
+ msgstr "Der Inhalt muss w # Album enthalten"
1440
 
1441
  #: wppa-ajax.php:2189
1442
  #, fuzzy
1443
  msgid "The content must contain w#lat and w#lon"
1444
+ msgstr "Der Inhalt muss enthalten w # lat und w # lon"
1445
 
1446
  #: wppa-ajax.php:2237 wppa-ajax.php:2243
1447
  #, fuzzy
1448
  msgid "Members"
1449
+ msgstr "Mitglieder"
1450
 
1451
  #: wppa-ajax.php:2237
1452
  #, fuzzy
1453
  msgid "Parent of the member albums"
1454
+ msgstr "Eltern der Mitglieds Alben"
1455
 
1456
  #: wppa-ajax.php:2381
1457
  #, fuzzy, php-format
1458
  msgid "User %s has been blacklisted."
1459
+ msgstr "Benutzer%s hat die schwarze Liste gesetzt worden."
1460
 
1461
  #: wppa-ajax.php:2384 wppa-ajax.php:2414
1462
  #, fuzzy, php-format
1466
  #: wppa-ajax.php:2411
1467
  #, fuzzy, php-format
1468
  msgid "User %s is now superuser."
1469
+ msgstr "Benutzer%s ist jetzt Super-User."
1470
 
1471
  #: wppa-ajax.php:2436
1472
  #, fuzzy
1474
  "The content of the Custom box has been changed to display the Fotomoto "
1475
  "toolbar."
1476
  msgstr ""
1477
+ "Der Inhalt des Custom-Box wurde geändert, um die Fotomoto Symbolleiste "
1478
+ "angezeigt werden soll."
1479
 
1480
  #: wppa-ajax.php:2440 wppa-ajax.php:2455
1481
  #, fuzzy
1482
  msgid "The display of the custom box has been enabled"
1483
+ msgstr "Die Anzeige der Anwender-Box aktiviert wurde"
1484
 
1485
  #: wppa-ajax.php:2451
1486
  #, fuzzy
1487
  msgid "The content of the Custom box has been changed to display maps."
1488
+ msgstr "Der Inhalt des Custom-Box wurde geändert Karten anzuzeigen."
 
1489
 
1490
  #: wppa-ajax.php:2489
1491
  #, fuzzy
1492
  msgid "This value can not be empty"
1493
+ msgstr "Dieser Wert darf nicht leer sein"
1494
 
1495
  #: wppa-ajax.php:2518
1496
  #, fuzzy
1498
  "You must run Table VIII-A13 and VIII-A14 first before you can switch to "
1499
  "encrypted urls."
1500
  msgstr ""
1501
+ "Sie müssen Tabelle VIII-A13 und VIII-A14 laufen, bevor Sie auf die "
1502
+ "verschlüsselten URLs wechseln."
1503
 
1504
  #: wppa-ajax.php:2521
1505
  #, fuzzy
1506
  msgid "Table IV-A3 will be switched off."
1507
+ msgstr "Tabelle IV-A3 wird ausgeschaltet."
1508
 
1509
  #: wppa-ajax.php:2525
1510
  #, fuzzy
1514
  #: wppa-ajax.php:2535
1515
  #, fuzzy
1516
  msgid "Not allowed when cryptic links is active"
1517
+ msgstr "Nicht erlaubt, wenn kryptischen Links aktiv"
1518
 
1519
  #: wppa-ajax.php:2547
1520
  #, fuzzy
1521
  msgid "A Twitter account name must start with an at sign: @"
1522
+ msgstr "Ein Twitter-Account-Name muss mit einem at-Zeichen beginnen: @"
1523
 
1524
  #: wppa-ajax.php:2558
1525
  #, fuzzy, php-format
1526
  msgid "Failed to set %s to %s"
1527
+ msgstr "Fehlgeschlagen% einzustellen s zu%s"
1528
 
1529
  #: wppa-ajax.php:2563
1530
  #, fuzzy, php-format
1531
  msgid "Setting %s updated to %s"
1532
+ msgstr "Einstellung%s aktualisiert% auf s"
1533
 
1534
  #: wppa-ajax.php:2579
1535
  #, fuzzy
1536
  msgid ""
1537
  "You just changed a setting that requires the regeneration of thumbnails."
1538
  msgstr ""
1539
+ "Sie verändert nur eine Einstellung, die die Regeneration von Thumbnails "
1540
+ "erfordert."
1541
 
1542
  #: wppa-ajax.php:2634
1543
  #, fuzzy
1544
  msgid "Missing album id"
1545
+ msgstr "Fehlende Album-ID"
1546
 
1547
  #: wppa-ajax.php:2654
1548
  #, fuzzy
1549
  msgid "You do not have the rights to delete this album"
1550
+ msgstr "Sie haben nicht die Rechte dieses Album löschen"
1551
 
1552
  #: wppa-ajax.php:2675
1553
  #, fuzzy
1557
  #: wppa-ajax.php:2711 wppa-ajax.php:2718
1558
  #, fuzzy
1559
  msgid "You may also enter:"
1560
+ msgstr "Sie können auch ein:"
1561
 
1562
  #: wppa-ajax.php:2712 wppa-ajax.php:2719
1563
  #, fuzzy
1564
  msgid "You may also leave/set this blank"
1565
+ msgstr "Sie können auch dieses Feld leer lassen / set"
1566
 
1567
  #: wppa-album-admin-autosave.php:23 wppa-album-admin-autosave.php:774
1568
  #, fuzzy
1569
  msgid "Upload to this album"
1570
+ msgstr "Laden Sie zu diesem Album"
1571
 
1572
  #: wppa-album-admin-autosave.php:37
1573
  #, fuzzy
1574
  msgid "Warning:"
1575
+ msgstr "Warnhinweis:"
1576
 
1577
  #: wppa-album-admin-autosave.php:37
1578
  #, fuzzy, php-format
1580
  "The uploads directory does not exist or is not writable by the server. "
1581
  "Please make sure that %s is writeable by the server."
1582
  msgstr ""
1583
+ "Das Upload-Verzeichnis existiert nicht oder ist durch den Server nicht "
1584
+ "beschreibbar. Bitte stellen Sie sicher, dass%s vom Server beschreibbar ist."
1585
 
1586
  #: wppa-album-admin-autosave.php:79 wppa-album-admin-autosave.php:818
1587
  #, fuzzy
1592
  #, fuzzy
1593
  msgid "Copy / move / delete / edit name / edit description / change status"
1594
  msgstr ""
1595
+ "Kopieren / Verschieben / Löschen / Bearbeiten Name / Beschreibung "
1596
+ "bearbeiten / ändern Status"
1597
 
1598
  #: wppa-album-admin-autosave.php:81 wppa-album-admin-autosave.php:821
1599
  #, fuzzy
1600
  msgid "Edit photo information except copy and move"
1601
+ msgstr "Foto bearbeiten Informationen außer Kopieren und Verschieben"
1602
 
1603
  #: wppa-album-admin-autosave.php:82 wppa-album-admin-autosave.php:822
1604
+ #: wppa-setup.php:1315
1605
  #, fuzzy
1606
  msgid "Edit photo information"
1607
+ msgstr "Fotohinweis:"
1608
 
1609
  #: wppa-album-admin-autosave.php:85 wppa-album-admin-autosave.php:92
1610
  #, fuzzy
1611
  msgid "Back to album table"
1612
+ msgstr "Zurück zum Album Tisch"
1613
 
1614
  #: wppa-album-admin-autosave.php:91 wppa-album-admin-autosave.php:829
1615
  #, fuzzy
1616
  msgid "Top of page"
1617
  msgstr "Am Anfang der Seite"
1618
 
1619
+ #: wppa-album-admin-autosave.php:118 wppa-functions.php:3989
1620
+ #: wppa-settings-autosave.php:7862 wppa-wpdb-insert.php:338
1621
  msgid "New Album"
1622
  msgstr "Neues Fotoalbum"
1623
 
1640
  #: wppa-album-admin-autosave.php:177
1641
  #, fuzzy
1642
  msgid "Edit Album Information"
1643
+ msgstr "Albuminformationen bearbeiten"
1644
 
1645
  #: wppa-album-admin-autosave.php:177 wppa-settings-autosave.php:277
1646
  #, fuzzy
1647
  msgid "Auto Save"
1648
+ msgstr "AUTO-SAVE"
1649
 
1650
  #: wppa-album-admin-autosave.php:179
1651
  #, fuzzy
1653
  "All modifications are instantly updated on the server, except for those that "
1654
  "require a button push."
1655
  msgstr ""
1656
+ "Alle Änderungen werden auf dem Server sofort aktualisiert, mit Ausnahme "
1657
+ "derjenigen, die einen Tastendruck erfordern."
1658
 
1659
  #: wppa-album-admin-autosave.php:180
1660
  #, fuzzy
1662
  "The <b style=\"color:#070\" >Remark</b> fields keep you informed on the "
1663
  "actions taken at the background."
1664
  msgstr ""
1665
+ "Die <b style=\"color:#070\" >Bemerkung</b> Felder halten Sie auf dem "
1666
+ "Laufenden über die Aktionen im Hintergrund."
1667
 
1668
  #: wppa-album-admin-autosave.php:184
1669
  #, fuzzy
1670
  msgid "Album number:"
1671
+ msgstr "Foto %s existiert bereits im Album Nummer %s. Entfernt vom Depot."
1672
 
1673
  #: wppa-album-admin-autosave.php:184 wppa-photo-admin-autosave.php:179
1674
  #, fuzzy
1675
  msgid "Crypt"
1676
+ msgstr "Krypta"
1677
 
1678
  #: wppa-album-admin-autosave.php:193
1679
  #, fuzzy
1688
  #: wppa-album-admin-autosave.php:208
1689
  #, fuzzy
1690
  msgid "Type the name of the album. Do not leave this empty."
1691
+ msgstr "Geben Sie den Namen des Albums. Verpassen Sie nicht diese leer lassen."
1692
 
1693
  #: wppa-album-admin-autosave.php:216 wppa-photo-admin-autosave.php:753
1694
  #: wppa-photo-admin-autosave.php:778
1699
  #: wppa-album-admin-autosave.php:227
1700
  #, fuzzy
1701
  msgid "Update Album description"
1702
+ msgstr "Album aktualisieren Beschreibung"
1703
 
1704
  #: wppa-album-admin-autosave.php:237
1705
  #, fuzzy
1706
  msgid "Enter / modify the description for this album."
1707
+ msgstr "Geben Sie / ändern Sie die Beschreibung für dieses Album."
1708
 
1709
  #: wppa-album-admin-autosave.php:281
1710
  #, fuzzy
1726
  #: wppa-photo-admin-autosave.php:1472
1727
  #, fuzzy
1728
  msgid "Not modified"
1729
+ msgstr "Nicht modifiziert"
1730
 
1731
  #: wppa-album-admin-autosave.php:307
1732
  #, fuzzy
1733
  msgid "Views:"
1734
+ msgstr "Angesehen:"
1735
 
1736
  #: wppa-album-admin-autosave.php:320 wppa-photo-admin-autosave.php:261
1737
  #, fuzzy
1744
  "WARNING If you change the owner, you will no longer be able to modify this "
1745
  "album and upload or import photos to it!"
1746
  msgstr ""
1747
+ "Wenn Sie den Besitzer WARNUNG ändern, werden Sie nicht mehr in der Lage "
1748
+ "sein, dieses Album zu ändern und laden oder Fotos importieren, um es!"
1749
 
1750
  #: wppa-album-admin-autosave.php:340
1751
  #, fuzzy
1752
  msgid "Enter user login name or <b>--- public ---</b>"
1753
+ msgstr "Geben Sie Benutzer - Login - Namen oder <b>--- öffentlich ---</b>"
1754
 
1755
  #: wppa-album-admin-autosave.php:349
1756
  #, fuzzy
1763
  "Album order # has only effect if you set the album sort order method to "
1764
  "<b>Order #</b> in the Photo Albums -> Settings screen.<br />"
1765
  msgstr ""
1766
+ "Album order # ist nur wirksam , wenn Sie das Album Sortierreihenfolge "
1767
+ "Methode set <b>#</b> in den Fotoalben zu <b>bestellen</b> -> Einstellungen. "
1768
+ "<br />"
1769
 
1770
  #: wppa-album-admin-autosave.php:360
1771
  #, fuzzy
1773
  "If you want to sort the albums by order #, enter / modify the order number "
1774
  "here."
1775
  msgstr ""
1776
+ "Wenn Sie die Alben, um # sortieren möchten, geben Sie / ändern hier die "
1777
+ "Bestellnummer."
1778
 
1779
  #: wppa-album-admin-autosave.php:367 wppa-tinymce-shortcodes.php:346
1780
  #: wppa-tinymce-shortcodes.php:372 wppa-tinymce-shortcodes.php:560
1787
  msgid ""
1788
  "If this is a sub album, select the album in which this album will appear."
1789
  msgstr ""
1790
+ "Wenn dies ein Unter Album ist, wählen Sie das Album, in dem das Album "
1791
+ "erscheinen wird."
1792
 
1793
  #: wppa-album-admin-autosave.php:387
1794
  #, fuzzy
1796
  msgstr "Bildersortierung"
1797
 
1798
  #: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:492
1799
+ #: wppa-settings-autosave.php:4074 wppa-settings-autosave.php:4098
1800
  #: wppa-tinymce-shortcodes.php:505 wppa-tinymce-shortcodes.php:524
1801
  #, fuzzy
1802
  msgid "--- default ---"
1803
  msgstr "Standard-Fotoalbum für"
1804
 
1805
  #: wppa-album-admin-autosave.php:392 wppa-album-admin-autosave.php:448
1806
+ #: wppa-settings-autosave.php:4036 wppa-settings-autosave.php:4150
1807
  #: wppa-thumbnail-widget.php:201
1808
  #, fuzzy
1809
  msgid "Order #"
1810
+ msgstr "Auftrag #"
1811
 
1812
  #: wppa-album-admin-autosave.php:394 wppa-album-admin-autosave.php:447
1813
+ #: wppa-potd-admin.php:249 wppa-settings-autosave.php:4038
1814
+ #: wppa-settings-autosave.php:4152 wppa-thumbnail-widget.php:203
1815
  #, fuzzy
1816
  msgid "Random"
1817
  msgstr "Zufall"
1818
 
1819
+ #: wppa-album-admin-autosave.php:395 wppa-settings-autosave.php:4039
1820
  #, fuzzy
1821
  msgid "Rating mean value"
1822
  msgstr "Bewertungswerte"
1823
 
1824
  #: wppa-album-admin-autosave.php:396 wppa-bestof-widget.php:170
1825
+ #: wppa-settings-autosave.php:4040 wppa-topten-widget.php:345
1826
  #, fuzzy
1827
  msgid "Number of votes"
1828
  msgstr "Anzahl der Stimmen"
1829
 
1830
  #: wppa-album-admin-autosave.php:397 wppa-album-admin-autosave.php:452
1831
+ #: wppa-settings-autosave.php:4041 wppa-settings-autosave.php:4153
1832
  #, fuzzy
1833
  msgid "Timestamp"
1834
  msgstr "Zeitstempel"
1835
 
1836
  #: wppa-album-admin-autosave.php:398 wppa-photo-admin-autosave.php:292
1837
+ #: wppa-settings-autosave.php:4042
1838
  #, fuzzy
1839
  msgid "EXIF Date"
1840
  msgstr "EXIF-Datum"
1841
 
1842
+ #: wppa-album-admin-autosave.php:399 wppa-settings-autosave.php:4043
1843
+ #: wppa-settings-autosave.php:4154
1844
  #, fuzzy
1845
  msgid "Order # desc"
1846
+ msgstr "Order # desc"
1847
 
1848
+ #: wppa-album-admin-autosave.php:400 wppa-settings-autosave.php:4044
1849
+ #: wppa-settings-autosave.php:4155
1850
  #, fuzzy
1851
  msgid "Name desc"
1852
  msgstr "Name absteigend"
1853
 
1854
+ #: wppa-album-admin-autosave.php:401 wppa-settings-autosave.php:4045
1855
  #: wppa-thumbnail-widget.php:204
1856
  #, fuzzy
1857
  msgid "Rating mean value desc"
1858
+ msgstr "Bewertung Mittelwert ab"
1859
 
1860
+ #: wppa-album-admin-autosave.php:402 wppa-settings-autosave.php:4046
1861
  #: wppa-thumbnail-widget.php:205
1862
  #, fuzzy
1863
  msgid "Number of votes desc"
1864
  msgstr "Anzahl der Stimmen"
1865
 
1866
+ #: wppa-album-admin-autosave.php:403 wppa-settings-autosave.php:4047
1867
+ #: wppa-settings-autosave.php:4156 wppa-thumbnail-widget.php:206
1868
  #, fuzzy
1869
  msgid "Timestamp desc"
1870
  msgstr "Zeitstempel ab"
1871
 
1872
+ #: wppa-album-admin-autosave.php:404 wppa-settings-autosave.php:4048
1873
  #, fuzzy
1874
  msgid "EXIF Date desc"
1875
+ msgstr "EXIF-Datum ab"
1876
 
1877
  #: wppa-album-admin-autosave.php:433
1878
  #, fuzzy
1879
  msgid "Specify the way the photos should be ordered in this album."
1880
  msgstr ""
1881
+ "Geben Sie die Art und Weise sollen die Fotos in diesem Album bestellt werden."
1882
 
1883
  #: wppa-album-admin-autosave.php:434
1884
  #, fuzzy
1886
  "The default setting can be changed in the <b>Photo Albums -> Settings</b> "
1887
  "page <b>Table IV-C1</b>."
1888
  msgstr ""
1889
+ "Die Standardeinstellung kann in den <b>Fotoalben</b> geändert werden <b>-> "
1890
+ "Einstellungen</b> Seite <b>Tabelle IV-C1.</b>"
1891
 
1892
  #: wppa-album-admin-autosave.php:442
1893
  #, fuzzy
1894
  msgid "Sub album sort order:"
1895
+ msgstr "Sub Album Sortierreihenfolge:"
1896
 
1897
  #: wppa-album-admin-autosave.php:446
1898
  #, fuzzy
1902
  #: wppa-album-admin-autosave.php:449
1903
  #, fuzzy
1904
  msgid "Order # reverse"
1905
+ msgstr "Order # Rückwärts"
1906
 
1907
  #: wppa-album-admin-autosave.php:451
1908
  #, fuzzy
1909
  msgid "Name reverse"
1910
+ msgstr "Name des Rückwärts"
1911
 
1912
  #: wppa-album-admin-autosave.php:453
1913
  #, fuzzy
1914
  msgid "Timestamp reverse"
1915
+ msgstr "Timestamp Rückwärts"
1916
 
1917
  #: wppa-album-admin-autosave.php:458
1918
  #, fuzzy
1920
  "Specify the sequence order method to be used for the sub albums of this "
1921
  "album."
1922
  msgstr ""
1923
+ "Geben Sie die Reihenfolge, um Verfahren, die für den Unteralben dieses Album "
1924
  "verwendet werden."
1925
 
1926
  #: wppa-album-admin-autosave.php:467
1927
  #, fuzzy
1928
  msgid "Use alt thumbsize:"
1929
+ msgstr "Verwenden alt thumbsize:"
1930
 
1931
  #: wppa-album-admin-autosave.php:471 wppa-bestof-widget.php:182
1932
  #: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
1943
  #: wppa-topten-widget.php:383 wppa-topten-widget.php:388
1944
  #, fuzzy
1945
  msgid "no"
1946
+ msgstr "Nein"
1947
 
1948
  #: wppa-album-admin-autosave.php:472 wppa-bestof-widget.php:181
1949
  #: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
1961
  #: wppa-topten-widget.php:382 wppa-topten-widget.php:387
1962
  #, fuzzy
1963
  msgid "yes"
1964
+ msgstr "ja"
1965
 
1966
  #: wppa-album-admin-autosave.php:477
1967
  #, fuzzy
1969
  "If set to <b>yes</b> The settings in <b>Table I-C1a,3a</b> and <b>4a</b> "
1970
  "apply rather than <b>I-C1,3</b> and <b>4</b>."
1971
  msgstr ""
1972
+ "Wenn auf <b>Ja</b> , um die Einstellungen in <b>Tabelle I-C1a, 3a</b> und "
1973
+ "<b>4a</b> gelten eher als <b>I-C1,3</b> und <b>4.</b>"
1974
 
1975
  #: wppa-album-admin-autosave.php:487
1976
  #, fuzzy
1977
  msgid "Cover Type:"
1978
+ msgstr "Einband:"
1979
 
1980
  #: wppa-album-admin-autosave.php:493 wppa-settings-autosave.php:2031
1981
+ #: wppa-settings-autosave.php:4220
1982
  #, fuzzy
1983
  msgid "Standard"
1984
+ msgstr "Standard"
1985
 
1986
+ #: wppa-album-admin-autosave.php:494 wppa-settings-autosave.php:4221
1987
  #, fuzzy
1988
  msgid "Long Descriptions"
1989
  msgstr "Lange Beschreibungen"
1990
 
1991
+ #: wppa-album-admin-autosave.php:495 wppa-settings-autosave.php:4222
1992
  #, fuzzy
1993
  msgid "Image Factory"
1994
+ msgstr "Bildfabrik"
1995
 
1996
+ #: wppa-album-admin-autosave.php:496 wppa-settings-autosave.php:4223
1997
  #, fuzzy
1998
  msgid "Standard mcr"
1999
  msgstr "Standard-mcr"
2000
 
2001
+ #: wppa-album-admin-autosave.php:497 wppa-settings-autosave.php:4224
2002
  #, fuzzy
2003
  msgid "Long Descriptions mcr"
2004
  msgstr "Lange Beschreibungen mcr"
2005
 
2006
+ #: wppa-album-admin-autosave.php:498 wppa-settings-autosave.php:4225
2007
  #, fuzzy
2008
  msgid "Image Factory mcr"
2009
  msgstr "Bild Fabrik mcr"
2014
  "The default cover type is the systems standard set in the <b>Photo Albums -> "
2015
  "Settings</b> page <b>Table IV-D6</b>."
2016
  msgstr ""
2017
+ "Die Standard - Cover - Typ ist die System - Norm in den <b>Fotoalben</b> "
2018
+ "gesetzt <b>-> Einstellungen</b> Seite <b>Tabelle IV-D6.</b>"
2019
 
2020
  #: wppa-album-admin-autosave.php:514
2021
  #, fuzzy
2034
  "Select the way the cover photos of this album are selected, or select a "
2035
  "single image."
2036
  msgstr ""
2037
+ "Wählen Sie die Art, wie die Abdeckung Fotos von diesem Album ausgewählt "
2038
+ "werden, oder ein einzelnes Bild auswählen."
2039
 
2040
  #: wppa-album-admin-autosave.php:532
2041
  #, fuzzy
2042
  msgid "Upload limit:"
2043
  msgstr "Hochladebegrenzung"
2044
 
2045
+ #: wppa-album-admin-autosave.php:543 wppa-settings-autosave.php:6165
2046
+ #: wppa-settings-autosave.php:8021
2047
  #, fuzzy
2048
  msgid "for ever"
2049
+ msgstr "Für immer!"
2050
 
2051
  #: wppa-album-admin-autosave.php:544 wppa-album-admin-autosave.php:561
2052
+ #: wppa-settings-autosave.php:6166 wppa-settings-autosave.php:8022
2053
  #, fuzzy
2054
  msgid "per hour"
2055
+ msgstr "pro Stunde"
2056
 
2057
  #: wppa-album-admin-autosave.php:545 wppa-album-admin-autosave.php:562
2058
+ #: wppa-settings-autosave.php:6167 wppa-settings-autosave.php:8023
2059
  #, fuzzy
2060
  msgid "per day"
2061
+ msgstr "pro Tag"
2062
 
2063
  #: wppa-album-admin-autosave.php:546 wppa-album-admin-autosave.php:563
2064
+ #: wppa-settings-autosave.php:6168 wppa-settings-autosave.php:8024
2065
  #, fuzzy
2066
  msgid "per week"
2067
  msgstr "pro Woche"
2068
 
2069
  #: wppa-album-admin-autosave.php:547 wppa-album-admin-autosave.php:564
2070
+ #: wppa-settings-autosave.php:6169 wppa-settings-autosave.php:8025
2071
  #, fuzzy
2072
  msgid "per month"
2073
  msgstr "pro Monat"
2074
 
2075
  #: wppa-album-admin-autosave.php:548 wppa-album-admin-autosave.php:565
2076
+ #: wppa-settings-autosave.php:6170 wppa-settings-autosave.php:8026
2077
  #, fuzzy
2078
  msgid "per year"
2079
  msgstr "pro Jahr"
2082
  #, fuzzy
2083
  msgid "Set the upload limit (0 means unlimited) and the upload limit period."
2084
  msgstr ""
2085
+ "Stellen Sie den Upload-Limit (0 bedeutet unbegrenzt) und den Upload-Limit "
2086
+ "Periode."
2087
 
2088
  #: wppa-album-admin-autosave.php:557
2089
  #, fuzzy
2090
  msgid "Unlimited"
2091
+ msgstr "Unbegrenzt"
2092
 
2093
  #: wppa-album-admin-autosave.php:576
2094
  #, fuzzy
2103
  #: wppa-album-admin-autosave.php:587 wppa-photo-admin-autosave.php:832
2104
  #, fuzzy
2105
  msgid "Examples:"
2106
+ msgstr "Beispiele:"
2107
 
2108
  #: wppa-album-admin-autosave.php:593 wppa-photo-admin-autosave.php:836
2109
  msgid "- select -"
2112
  #: wppa-album-admin-autosave.php:599
2113
  #, fuzzy
2114
  msgid "No categories yet"
2115
+ msgstr "Keine Kategorien vorhanden"
2116
 
2117
  #: wppa-album-admin-autosave.php:603 wppa-photo-admin-autosave.php:846
2118
  #, fuzzy
2125
  "Are you sure you want to inherit categories to all (grand)children of this "
2126
  "album?"
2127
  msgstr ""
2128
+ "Sind Sie sicher, dass Sie Kategorien für alle (Enkel-) Kinder dieses Albums "
2129
+ "zu erben?"
2130
 
2131
  #: wppa-album-admin-autosave.php:610
2132
  #, fuzzy
2140
  #: wppa-album-admin-autosave.php:613
2141
  #, fuzzy
2142
  msgid "Inherit Cats"
2143
+ msgstr "Vererben Katzen"
2144
 
2145
  #: wppa-album-admin-autosave.php:618
2146
  #, fuzzy
2147
  msgid "Apply categories to all (grand)children."
2148
+ msgstr "Bewerben Kategorien für alle (Enkel-) Kinder."
2149
 
2150
  #: wppa-album-admin-autosave.php:623
2151
  #, fuzzy
2152
  msgid "Add Inherit Cats"
2153
+ msgstr "In Inherit Katzen"
2154
 
2155
  #: wppa-album-admin-autosave.php:628
2156
  #, fuzzy
2157
  msgid "Add categories to all (grand)children."
2158
+ msgstr "In Kategorien für alle (Enkel-) Kinder."
2159
 
2160
  #: wppa-album-admin-autosave.php:635
2161
  #, fuzzy
2167
  msgid ""
2168
  "Enter the tags that you want to be assigned to new photos in this album."
2169
  msgstr ""
2170
+ "Geben Sie die Tags, die Sie neue Fotos in diesem Album zugewiesen werden "
2171
+ "soll."
2172
 
2173
  #: wppa-album-admin-autosave.php:646
2174
  #, fuzzy
2175
  msgid ""
2176
  "Are you sure you want to set the default tags to all photos in this album?"
2177
  msgstr ""
2178
+ "Sind Sie sicher, dass Sie die Standard-Tags für alle Fotos in diesem Album "
2179
+ "setzen?"
2180
 
2181
  #: wppa-album-admin-autosave.php:647
2182
  #, fuzzy
2183
  msgid ""
2184
  "Are you sure you want to add the default tags to all photos in this album?"
2185
  msgstr ""
2186
+ "Sind Sie sicher, dass Sie die Standard-Tags für alle Fotos in diesem Album "
2187
+ "hinzufügen?"
2188
 
2189
  #: wppa-album-admin-autosave.php:650
2190
  #, fuzzy
2191
  msgid "Apply default tags"
2192
+ msgstr "Bewerben Standard-Tags"
2193
 
2194
  #: wppa-album-admin-autosave.php:655
2195
  #, fuzzy
2196
  msgid "Tag all photos in this album with the default tags."
2197
+ msgstr "Kennzeichnen Sie alle Fotos in diesem Album mit den Standard-Tags."
2198
 
2199
  #: wppa-album-admin-autosave.php:660
2200
  #, fuzzy
2201
  msgid "Add default tags"
2202
+ msgstr "In Standard-Tags"
2203
 
2204
  #: wppa-album-admin-autosave.php:665
2205
  #, fuzzy
2206
  msgid "Add the default tags to all photos in this album."
2207
+ msgstr "Fügen Sie die Standard-Tags für alle Fotos in diesem Album."
2208
 
2209
  #: wppa-album-admin-autosave.php:672
2210
  #, fuzzy
2211
  msgid "Link type:"
2212
+ msgstr "Link-Typ:"
2213
 
2214
+ #: wppa-album-admin-autosave.php:679 wppa-settings-autosave.php:8182
2215
  #, fuzzy
2216
  msgid "the sub-albums and thumbnails"
2217
  msgstr "die Unteralben und Miniaturen"
2218
 
2219
+ #: wppa-album-admin-autosave.php:680 wppa-settings-autosave.php:8183
2220
  #, fuzzy
2221
  msgid "the sub-albums"
2222
+ msgstr "die Unteralben"
2223
 
2224
+ #: wppa-album-admin-autosave.php:681 wppa-settings-autosave.php:8184
2225
  #, fuzzy
2226
  msgid "the thumbnails"
2227
  msgstr "Miniaturbilden"
2228
 
2229
+ #: wppa-album-admin-autosave.php:682 wppa-settings-autosave.php:8185
2230
  #, fuzzy
2231
  msgid "the album photos as slideshow"
2232
+ msgstr "Albumfotos als Diashow"
2233
 
2234
  #: wppa-album-admin-autosave.php:683
2235
  #, fuzzy
2236
  msgid "the link page with a clean url"
2237
+ msgstr "die Link-Seite mit einem sauberen url"
2238
 
2239
+ #: wppa-album-admin-autosave.php:684 wppa-settings-autosave.php:8186
2240
  #, fuzzy
2241
  msgid "no link at all"
2242
  msgstr "keine Verbindung überhaupt"
2247
  "If you select \"the link page with a clean url\", select an Auto Page of one "
2248
  "of the photos in this album."
2249
  msgstr ""
2250
+ "Wenn Sie \"der Link-Seite mit einem sauberen url\" wählen, wählen Sie ein "
2251
+ "Auto Seite von einem der Fotos in diesem Album."
2252
 
2253
  #: wppa-album-admin-autosave.php:690
2254
  #, fuzzy
2256
  "If you select \"the link page with a clean url\", make sure you enter the "
2257
  "correct shortcode on the target page."
2258
  msgstr ""
2259
+ "Wenn Sie \"der Link-Seite mit einem sauberen url\" auswählen, stellen Sie "
2260
+ "sicher, dass Sie die richtige Shortcode auf der Zielseite ein."
2261
 
2262
  #: wppa-album-admin-autosave.php:699 wppa-bestof-widget.php:196
2263
  #: wppa-potd-admin.php:108 wppa-potd-admin.php:124 wppa-potd-admin.php:152
2266
  msgid "Link to:"
2267
  msgstr "Link zu"
2268
 
2269
+ #: wppa-album-admin-autosave.php:705 wppa-settings-autosave.php:9865
2270
+ #: wppa-settings-autosave.php:9907 wppa-settings-autosave.php:9959
2271
  #, fuzzy
2272
  msgid "There are no pages (yet) to link to."
2273
  msgstr "Dort sind keine Seiten verknüpft zu"
2275
  #: wppa-album-admin-autosave.php:710
2276
  #, fuzzy
2277
  msgid "--- the same page or post ---"
2278
+ msgstr "--- Die gleiche Seite oder per Post ---"
2279
 
2280
  #: wppa-album-admin-autosave.php:718
2281
  #, fuzzy
2283
  "If you want, you can link the title to a WP page in stead of the album's "
2284
  "content. If so, select the page the title links to."
2285
  msgstr ""
2286
+ "Wenn Sie möchten, können Sie den Titel auf eine WP-Seite anstelle des "
2287
+ "Inhalts von Alben verknüpfen. Wenn ja, wählen Sie die Seite, um die Titel-"
2288
+ "Links zu."
2289
 
2290
  #: wppa-album-admin-autosave.php:728
2291
  #, fuzzy
2298
  "If enabled, new photos will have their status set to the dat/time specified "
2299
  "here."
2300
  msgstr ""
2301
+ "Wenn aktiviert, wird neue Fotos ihren Status hier angegebenen an die dat / "
2302
+ "Zeit einstellen."
2303
 
2304
  #: wppa-album-admin-autosave.php:745
2305
  #, fuzzy
2309
  #: wppa-album-admin-autosave.php:745
2310
  #, fuzzy
2311
  msgid "Schedule all"
2312
+ msgstr "Zeitplan alle"
2313
 
2314
  #: wppa-album-admin-autosave.php:753
2315
  #, fuzzy
2316
  msgid "Are you sure you want to clear the ratings in this album?"
2317
+ msgstr "Sind Sie sicher, dass Sie die Bewertungen in diesem Album löschen?"
 
2318
 
2319
  #: wppa-album-admin-autosave.php:753
2320
  #, fuzzy
2325
  #, fuzzy
2326
  msgid "Change the upload limit or remove photos to enable new uploads."
2327
  msgstr ""
2328
+ "Ändern Sie den Upload-Limit oder Fotos entfernen, um neue Uploads aktivieren."
 
2329
 
2330
  #: wppa-album-admin-autosave.php:774
2331
  #, fuzzy, php-format
2332
  msgid "(max %d)"
2333
+ msgstr "(Max% d)"
2334
 
2335
  #: wppa-album-admin-autosave.php:775
2336
  #, fuzzy
2340
  #: wppa-album-admin-autosave.php:786
2341
  #, fuzzy
2342
  msgid "Apply new photo desc"
2343
+ msgstr "Bewerben neues Foto ab"
2344
 
2345
  #: wppa-album-admin-autosave.php:797
2346
  #, fuzzy
2347
  msgid "Remake all"
2348
+ msgstr "remake alle"
2349
 
2350
  #: wppa-album-admin-autosave.php:805 wppa-photo-admin-autosave.php:946
2351
  #, fuzzy
2355
  #: wppa-album-admin-autosave.php:808
2356
  #, fuzzy, php-format
2357
  msgid "Album %s is not modified yet"
2358
+ msgstr "Album%s ist noch nicht geändert"
2359
 
2360
  #: wppa-album-admin-autosave.php:820
2361
  #, fuzzy
2362
  msgid "Change sequence order by drag and drop"
2363
+ msgstr "Reihenfolge ändern, um per Drag & Drop"
2364
 
2365
  #: wppa-album-admin-autosave.php:840
2366
  #, fuzzy
2377
  msgid "Edit photo"
2378
  msgstr "Foto bearbeiten"
2379
 
2380
+ #: wppa-album-admin-autosave.php:878 wppa-boxes-html.php:1855
2381
+ #: wppa-boxes-html.php:1858
2382
  #, fuzzy
2383
  msgid "Delete Album"
2384
  msgstr "Album löschen"
2386
  #: wppa-album-admin-autosave.php:880 wppa-boxes-html.php:820
2387
  #: wppa-breadcrumb.php:288 wppa-breadcrumb.php:312 wppa-breadcrumb.php:342
2388
  #: wppa-breadcrumb.php:362 wppa-breadcrumb.php:456 wppa-breadcrumb.php:483
2389
+ #: wppa-breadcrumb.php:643 wppa-comment-admin.php:65 wppa-featen-widget.php:179
2390
  #: wppa-lasten-widget.php:203 wppa-slideshow-widget.php:199
2391
  #: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:326
2392
  #: wppa-upload-widget.php:85 wppa-upload.php:158 wppa-upload.php:299
2407
  #: wppa-album-admin-autosave.php:887
2408
  #, fuzzy
2409
  msgid "What would you like to do with photos currently in the album?"
2410
+ msgstr "Was würden Sie aktuell im Album mit Fotos zu tun?"
2411
 
2412
  #: wppa-album-admin-autosave.php:888 wppa-album-admin-autosave.php:897
2413
  #: wppa-album-admin-autosave.php:1156 wppa-album-admin-autosave.php:1196
2424
  #: wppa-album-admin-autosave.php:889
2425
  #, fuzzy
2426
  msgid "Move to:"
2427
+ msgstr "Verschieben nach:"
2428
 
2429
+ #: wppa-album-admin-autosave.php:896 wppa-photo-admin-autosave.php:2030
2430
  #: wppa-settings-autosave.php:2898
2431
  #, fuzzy
2432
  msgid "Cancel"
2433
+ msgstr "Abbrechen"
2434
 
2435
  #: wppa-album-admin-autosave.php:927
2436
  #, fuzzy
2437
  msgid "Unable to move photos. Album not deleted."
2438
+ msgstr "Fotos können nicht bewegen. Album nicht gelöscht."
2439
 
2440
  #: wppa-album-admin-autosave.php:945
2441
  #, fuzzy
2445
  #: wppa-album-admin-autosave.php:951
2446
  #, fuzzy
2447
  msgid "Are you sure you want to create a new album?"
2448
+ msgstr "Sind Sie sicher, dass Sie ein neues Album zu erstellen?"
2449
 
2450
  #: wppa-album-admin-autosave.php:956
2451
  #, fuzzy
2452
  msgid "Create New Empty Album"
2453
+ msgstr "Create New leeres Album"
2454
 
2455
  #: wppa-album-admin-autosave.php:962
2456
  #, fuzzy
2457
  msgid "Switch to Collapsable table"
2458
+ msgstr "Wechseln Sie zu Collapsable Tisch"
2459
 
2460
  #: wppa-album-admin-autosave.php:965
2461
  #, fuzzy
2462
  msgid "Switch to Flat table"
2463
+ msgstr "Wechseln Sie zu Tisch Flat"
2464
 
2465
  #: wppa-album-admin-autosave.php:977
2466
  #, fuzzy
2470
  #: wppa-album-admin-autosave.php:990
2471
  #, fuzzy
2472
  msgid "Close all"
2473
+ msgstr "Alle einklappen"
2474
 
2475
  #: wppa-album-admin-autosave.php:1089 wppa-album-admin-autosave.php:1226
2476
  #: wppa-album-admin-autosave.php:1397 wppa-album-admin-autosave.php:1492
2483
  #: wppa-album-admin-autosave.php:1440 wppa-album-admin-autosave.php:1535
2484
  #, fuzzy
2485
  msgid "Order"
2486
+ msgstr "Reihenfolge"
2487
 
2488
  #: wppa-album-admin-autosave.php:1141 wppa-album-admin-autosave.php:1278
2489
  #: wppa-album-admin-autosave.php:1450 wppa-album-admin-autosave.php:1545
2490
  #, fuzzy
2491
  msgid "Parent"
2492
+ msgstr "Übergeordnet"
2493
 
2494
  #: wppa-album-admin-autosave.php:1149 wppa-album-admin-autosave.php:1286
2495
  #: wppa-album-admin-autosave.php:1458 wppa-album-admin-autosave.php:1553
2496
  #, fuzzy
2497
  msgid "Albums/Photos/Moderation required/Scheduled"
2498
+ msgstr "Alben / Fotos / Moderation erforderlich / Planmäßig"
2499
 
2500
  #: wppa-album-admin-autosave.php:1150 wppa-album-admin-autosave.php:1287
2501
  #: wppa-album-admin-autosave.php:1459 wppa-album-admin-autosave.php:1554
2502
  #, fuzzy
2503
  msgid "A/P/PM/S"
2504
+ msgstr "A / P / PM / S"
2505
 
2506
  #: wppa-album-admin-autosave.php:1153 wppa-album-admin-autosave.php:1191
2507
  #: wppa-album-admin-autosave.php:1290 wppa-album-admin-autosave.php:1462
2509
  #: wppa-album-admin-autosave.php:1742
2510
  #, fuzzy
2511
  msgid "Quick"
2512
+ msgstr "Schnell"
2513
 
2514
  #: wppa-album-admin-autosave.php:1154 wppa-album-admin-autosave.php:1192
2515
  #: wppa-album-admin-autosave.php:1291 wppa-album-admin-autosave.php:1463
2517
  #: wppa-album-admin-autosave.php:1743
2518
  #, fuzzy
2519
  msgid "Bulk"
2520
+ msgstr "Verpackungseinheiten"
2521
 
2522
  #: wppa-album-admin-autosave.php:1155 wppa-album-admin-autosave.php:1193
2523
  #: wppa-album-admin-autosave.php:1292 wppa-album-admin-autosave.php:1464
2524
  #: wppa-album-admin-autosave.php:1559 wppa-album-admin-autosave.php:1744
2525
  #, fuzzy
2526
  msgid "Seq"
2527
+ msgstr "Seq"
2528
 
2529
  #: wppa-album-admin-autosave.php:1157 wppa-album-admin-autosave.php:1201
2530
  #: wppa-album-admin-autosave.php:1204 wppa-album-admin-autosave.php:1294
2537
  #: wppa-album-admin-autosave.php:1200 wppa-album-admin-autosave.php:1751
2538
  #, fuzzy
2539
  msgid "Are you sure you want to create a subalbum?"
2540
+ msgstr "Sind Sie sicher, dass Sie eine subalbum zu schaffen?"
2541
 
2542
  #: wppa-album-admin-autosave.php:1307 wppa-album-admin-autosave.php:1588
2543
  #, fuzzy
2544
  msgid "No albums yet."
2545
+ msgstr "Keine Alben vorhanden."
2546
 
2547
  #: wppa-album-admin-autosave.php:1391 wppa-album-admin-autosave.php:1715
2548
  #, fuzzy
2549
  msgid "Collapse subalbums"
2550
+ msgstr "Collapse Unteralben"
2551
 
2552
  #: wppa-album-admin-autosave.php:1392 wppa-album-admin-autosave.php:1716
2553
  #, fuzzy
2554
  msgid "Expand subalbums"
2555
+ msgstr "Expand Unteralben"
2556
 
2557
  #: wppa-album-admin-autosave.php:1474
2558
  #, fuzzy
2560
  "The following albums are ---separate--- and do not show up in the generic "
2561
  "album display"
2562
  msgstr ""
2563
+ "Die folgenden Alben sind --- --- getrennt und zeigen nicht in der "
2564
+ "generischen Album Display"
2565
 
2566
  #: wppa-album-admin-autosave.php:1604
2567
  #, fuzzy
2568
  msgid "Search for photos to edit"
2569
+ msgstr "Suchen Sie nach Fotos zu bearbeiten"
2570
 
2571
  #: wppa-album-admin-autosave.php:1605
2572
  #, fuzzy
2574
  "Enter search words seperated by commas. Photos will meet all search words by "
2575
  "their names, descriptions, translated keywords and/or tags."
2576
  msgstr ""
2577
+ "Geben Sie Ihren Suchbegriff getrennt durch Kommas. Die Fotos werden alle "
2578
+ "Suchwörter mit ihren Namen, Beschreibungen, Schlüsselwörter übersetzt und / "
2579
+ "oder Tags entsprechen."
2580
 
2581
  #: wppa-album-admin-autosave.php:1611
2582
  #, fuzzy
2586
  #: wppa-album-admin-autosave.php:1615
2587
  #, fuzzy
2588
  msgid "Search for"
2589
+ msgstr "Suche nach"
2590
 
2591
  #: wppa-album-admin-autosave.php:1657
2592
  #, fuzzy, php-format
2594
  "There are <strong>%d</strong> albums and <strong>%d</strong> photos in the "
2595
  "system."
2596
  msgstr ""
2597
+ "Es <strong>gibt% d</strong> Alben <strong>und% d</strong> Fotos in das "
2598
+ "System ein ."
2599
 
2600
  #: wppa-album-admin-autosave.php:1658
2601
  #, fuzzy, php-format
2602
  msgid "<strong>%d</strong> photos are pending moderation."
2603
+ msgstr "<strong>% d</strong> Fotos anhängig Mäßigung."
2604
 
2605
  #: wppa-album-admin-autosave.php:1659
2606
  #, fuzzy, php-format
2607
  msgid "<strong>%d</strong> photos are scheduled for later publishing."
2608
+ msgstr "<strong>% d</strong> Fotos werden für die spätere Verlags geplant."
2609
 
2610
  #: wppa-album-admin-autosave.php:1662
2611
  #, fuzzy, php-format
2612
  msgid "The most recently added album is <strong>%s</strong> (%d)."
2613
+ msgstr "Die zuletzt hinzugefügten Album <strong>ist%s</strong> (% d)."
2614
 
2615
  #: wppa-album-admin-autosave.php:1666
2616
  #, fuzzy, php-format
2617
  msgid "The most recently added photo is <strong>%s</strong> (%d)"
2618
+ msgstr "Die zuletzt hinzugefügten Foto <strong>ist%s</strong> (% d)"
2619
 
2620
  #: wppa-album-admin-autosave.php:1667
2621
  #, fuzzy, php-format
2625
  #: wppa-album-admin-autosave.php:1789
2626
  #, fuzzy, php-format
2627
  msgid "Unable to move photos to album %s. Album not deleted."
2628
+ msgstr "Fotos können nicht Album%s zu bewegen. Album nicht gelöscht."
2629
 
2630
  #: wppa-album-admin-autosave.php:1810
2631
  #, fuzzy, php-format
2632
  msgid "Time is out after %d photo deletes. Please redo this operation"
2633
+ msgstr ""
2634
+ "Die Zeit ist aus nach% d Foto löscht. Bitte wiederholen Sie diesen Vorgang"
2635
 
2636
  #: wppa-album-admin-autosave.php:1845
2637
  #, fuzzy
2641
  #: wppa-album-admin-autosave.php:1867
2642
  #, fuzzy, php-format
2643
  msgid "auto select max %s random"
2644
+ msgstr "auto select max%s Zufalls"
2645
 
2646
  #: wppa-album-admin-autosave.php:1869
2647
  #, fuzzy, php-format
2648
  msgid "auto select max %s featured"
2649
+ msgstr "Auto wählen Sie maximal%s gekennzeichnet"
2650
 
2651
  #: wppa-album-admin-autosave.php:1871
2652
  #, fuzzy, php-format
2653
  msgid "max %s most recent added"
2654
+ msgstr "max%s jüngsten hinzugefügt"
2655
 
2656
  #: wppa-album-admin-autosave.php:1873
2657
  #, fuzzy, php-format
2658
  msgid "max %s from (grand)child albums"
2659
+ msgstr "max%s von (Groß-) Kind Alben"
2660
 
2661
  #: wppa-album-admin-autosave.php:1875
2662
  #, fuzzy, php-format
2663
  msgid "max %s most recent from (grand)child albums"
2664
+ msgstr "max%s jüngste von (Groß-) Kind Alben"
2665
 
2666
  #: wppa-album-admin-autosave.php:1879
2667
  #, fuzzy
2671
  #: wppa-album-admin-autosave.php:1881
2672
  #, fuzzy
2673
  msgid "--- random featured ---"
2674
+ msgstr "--- Zufällig funktions ---"
2675
 
2676
  #: wppa-album-admin-autosave.php:1883
2677
  #, fuzzy
2678
  msgid "--- most recent added ---"
2679
+ msgstr "--- Neuesten hinzugefügt ---"
2680
 
2681
  #: wppa-album-admin-autosave.php:1885
2682
  #, fuzzy
2683
  msgid "--- random from (grand)children ---"
2684
+ msgstr "--- Zufällig aus (Enkel-) Kinder ---"
2685
 
2686
  #: wppa-album-admin-autosave.php:1887
2687
  #, fuzzy
2688
  msgid "--- most recent from (grand)children ---"
2689
+ msgstr "--- Jüngste von (Groß-) Kinder ---"
2690
 
2691
  #: wppa-album-admin-autosave.php:1899
2692
  #, fuzzy
2693
  msgid "Nameless, filename = "
2694
+ msgstr "Nameless, filename ="
2695
 
2696
  #: wppa-album-admin-autosave.php:1942
2697
  #, fuzzy
2699
  "You can edit top-level album sequence order here when you set the album "
2700
  "order to \"Order #\" or \"Order # desc\" in Table IV-D1."
2701
  msgstr ""
2702
+ "Sie können hier Top-Level-Album Reihenfolge Reihenfolge bearbeiten, wenn Sie "
2703
+ "das Album um \"Order #\" oder \"Order # desc\" in Tabelle IV-D1 gesetzt."
 
2704
 
2705
  #: wppa-album-admin-autosave.php:1945
2706
  #, fuzzy
2709
  "\"Order #\" or \"Order # desc\" in the \"Sub album sort order:\" selection "
2710
  "box above."
2711
  msgstr ""
2712
+ "Sie können Unter Album-Sequenz, um hier zu bearbeiten, wenn Sie das Album um "
2713
+ "\"Order #\" oder \"Order # desc\" wie in \"Sub-Album Sortierreihenfolge:\" "
2714
  "Auswahlfeld oben."
2715
 
2716
  #: wppa-album-admin-autosave.php:1954
2717
  #, fuzzy
2718
  msgid "Manage album order"
2719
+ msgstr "Verwalten Album bestellen"
2720
 
2721
  #: wppa-album-admin-autosave.php:1958
2722
  #, fuzzy
2723
  msgid "Change sequence order by drag and drop, or use the up/down arrows."
2724
  msgstr ""
2725
+ "Reihenfolge ändern, um per Drag & Drop oder verwenden Sie die Auf- / Ab-"
2726
+ "Pfeile."
2727
 
2728
  #: wppa-album-admin-autosave.php:1961
2729
  #, fuzzy
2730
  msgid "Do not leave this page unless the bar is entirely green."
2731
+ msgstr "Diese Seite nicht verlassen, es sei denn die Bar ganz grün ist."
 
 
2732
 
2733
+ #: wppa-album-admin-autosave.php:1970 wppa-settings-autosave.php:7934
2734
+ #: wppa-settings-autosave.php:7945 wppa-stereo.php:31
2735
  #, fuzzy
2736
  msgid "Color"
2737
  msgstr "Farbe"
2749
  #: wppa-album-admin-autosave.php:1991
2750
  #, fuzzy
2751
  msgid "Updating"
2752
+ msgstr "Aktualisieren"
2753
 
2754
  #: wppa-album-admin-autosave.php:1999
2755
  #, fuzzy
2760
  #: wppa-upload.php:595
2761
  #, fuzzy
2762
  msgid "Error"
2763
+ msgstr "ERROR: kann keine Dateien hochladen."
2764
 
2765
  #: wppa-album-admin-autosave.php:2213
2766
  #, fuzzy
2770
  #: wppa-album-admin-autosave.php:2224
2771
  #, fuzzy
2772
  msgid "One up"
2773
+ msgstr "Ein nach oben"
2774
 
2775
  #: wppa-album-admin-autosave.php:2235
2776
  #, fuzzy
2777
  msgid "One down"
2778
+ msgstr "Eine nach unten"
2779
 
2780
  #: wppa-album-admin-autosave.php:2246
2781
  #, fuzzy
2782
  msgid "To bottom"
2783
+ msgstr "Nach unten"
2784
 
2785
  #: wppa-album-admin-autosave.php:2257
2786
  #, fuzzy
2790
  #: wppa-album-admin-autosave.php:2258
2791
  #, fuzzy
2792
  msgid "Ord:"
2793
+ msgstr "ORD"
2794
 
2795
  #: wppa-album-covers.php:1335 wppa-album-covers.php:1411
2796
  #: wppa-album-covers.php:1419 wppa-album-covers.php:1643
2814
  msgstr[0] "%d Alben"
2815
  msgstr[1] "%d Album"
2816
 
2817
+ #: wppa-album-covers.php:1437 wppa-boxes-html.php:1282 wppa-boxes-html.php:1596
2818
+ #: wppa-breadcrumb.php:155 wppa-breadcrumb.php:161 wppa-breadcrumb.php:168
2819
+ #: wppa-breadcrumb.php:392 wppa-breadcrumb.php:394 wppa-breadcrumb.php:400
2820
+ #: wppa-breadcrumb.php:402 wppa-breadcrumb.php:410 wppa-breadcrumb.php:426
2821
+ #: wppa-breadcrumb.php:439 wppa-breadcrumb.php:445 wppa-utils.php:1739
2822
+ #: wppa-utils.php:2394
2823
  msgid "and"
2824
  msgstr "und"
2825
 
2838
  msgid "New"
2839
  msgstr "Neu"
2840
 
2841
+ #: wppa-album-covers.php:1752 wppa-boxes-html.php:844 wppa-non-admin.php:754
2842
+ #: wppa-settings-autosave.php:2293 wppa-settings-autosave.php:5602
2843
+ #: wppa-settings-autosave.php:8341
2844
  msgid "Slideshow"
2845
  msgstr "Diaschau"
2846
 
2858
  #: wppa-album-navigator-widget.php:12
2859
  #, fuzzy
2860
  msgid "WPPA+ Album navigator"
2861
+ msgstr "WPPA Album Navigator"
2862
 
2863
  #: wppa-album-navigator-widget.php:13
2864
  #, fuzzy
2865
  msgid "Album navigator"
2866
+ msgstr "Album-Navigator"
2867
 
2868
  #: wppa-album-navigator-widget.php:96 wppa-album-widget.php:325
2869
  #, fuzzy
2870
  msgid "Album selection or Parent album:"
2871
+ msgstr "Album Auswahl oder Eltern Album:"
2872
 
2873
  #: wppa-album-navigator-widget.php:99 wppa-album-widget.php:328
2874
  #, fuzzy
2878
  #: wppa-album-navigator-widget.php:100 wppa-album-widget.php:329
2879
  #, fuzzy
2880
  msgid "--- all generic albums ---"
2881
+ msgstr "--- Alle generischen Alben ---"
2882
 
2883
  #: wppa-album-navigator-widget.php:101 wppa-album-widget.php:330
2884
  #, fuzzy
2885
  msgid "--- all separate albums ---"
2886
  msgstr "- Alle -separate- Alben -"
2887
 
2888
+ #: wppa-album-navigator-widget.php:102 wppa-common-functions.php:1701
2889
  #: wppa-items.php:436
2890
  msgid "--- owner/public ---"
2891
  msgstr "--- Besitzer/öffentliche ---"
2893
  #: wppa-album-navigator-widget.php:114 wppa-album-widget.php:350
2894
  #, fuzzy
2895
  msgid "Skip \"empty\" albums:"
2896
+ msgstr "Skip \"leer\" Alben:"
2897
 
2898
  #: wppa-album-navigator-widget.php:116 wppa-album-widget.php:345
2899
  #: wppa-album-widget.php:352 wppa-lasten-widget.php:236
2918
  #: wppa-album-widget.php:15
2919
  #, fuzzy
2920
  msgid "WPPA+ Albums"
2921
+ msgstr "WPPA Alben"
2922
 
2923
  #: wppa-album-widget.php:16 wppa-album-widget.php:315
2924
  #, fuzzy
2925
  msgid "Thumbnail Albums"
2926
+ msgstr "Thumbnail Alben"
2927
 
2928
  #: wppa-album-widget.php:114
2929
  #, fuzzy, php-format
2930
  msgid "Upload at least %d photos to this album!"
2931
+ msgstr "Laden Sie mindestens% d Fotos zu diesem Album!"
2932
 
2933
  #: wppa-album-widget.php:331
2934
  #, fuzzy
2935
  msgid "--- most recently added albums ---"
2936
+ msgstr "--- Zuletzt hinzugefügten Alben ---"
2937
 
2938
  #: wppa-album-widget.php:343
2939
  #, fuzzy
2940
  msgid "Show album names:"
2941
+ msgstr "Zeigen der Albumname:"
2942
 
2943
  #: wppa-album-widget.php:357 wppa-comment-widget.php:120
2944
  #: wppa-featen-widget.php:187 wppa-lasten-widget.php:241
2948
  "You can set the sizes in this widget in the <b>Photo Albums -> Settings</b> "
2949
  "admin page."
2950
  msgstr ""
2951
+ "Sie können die Größe dieses Widget in den <b>Fotoalben</b> Set <b>-> "
2952
+ "Einstellungen</b> Admin - Seite."
2953
 
2954
  #: wppa-audio.php:183
2955
  msgid ""
2962
  #: wppa-bestof-widget.php:15
2963
  #, fuzzy
2964
  msgid "WPPA+ Best Of Rated Photos"
2965
+ msgstr "WPPA Best Of bewertete Fotos"
2966
 
2967
  #: wppa-bestof-widget.php:16 wppa-bestof-widget.php:49
2968
  #: wppa-bestof-widget.php:109
2969
  #, fuzzy
2970
  msgid "Best Of Photos"
2971
+ msgstr "Best Of Fotos"
2972
 
2973
  #: wppa-bestof-widget.php:152
2974
  #, fuzzy
2975
  msgid "Photo(s)"
2976
+ msgstr "Foto %s existiert bereits im Albumnummer %s."
2977
 
2978
  #: wppa-bestof-widget.php:153
2979
  #, fuzzy
2980
  msgid "Owner(s)"
2981
+ msgstr "Owner (s)"
2982
 
2983
  #: wppa-bestof-widget.php:158
2984
  #, fuzzy
2988
  #: wppa-bestof-widget.php:159
2989
  #, fuzzy
2990
  msgid "This week"
2991
+ msgstr "Diese Woche"
2992
 
2993
  #: wppa-bestof-widget.php:160
2994
  #, fuzzy
2995
  msgid "Last month"
2996
+ msgstr "Letzter Monat"
2997
 
2998
  #: wppa-bestof-widget.php:161
2999
  #, fuzzy
3000
  msgid "This month"
3001
+ msgstr "Diesen Monat"
3002
 
3003
  #: wppa-bestof-widget.php:162
3004
  #, fuzzy
3008
  #: wppa-bestof-widget.php:163
3009
  #, fuzzy
3010
  msgid "This year"
3011
+ msgstr "Dieses Jahr"
3012
 
3013
  #: wppa-bestof-widget.php:168
3014
  #, fuzzy
3029
  #: wppa-bestof-widget.php:179
3030
  #, fuzzy
3031
  msgid "No of max ratings:"
3032
+ msgstr "Keine von max Bewertungen:"
3033
 
3034
  #: wppa-bestof-widget.php:184 wppa-topten-widget.php:375
3035
  #, fuzzy
3036
  msgid "Mean rating:"
3037
+ msgstr "Die durchschnittliche Bewertung:"
3038
 
3039
  #: wppa-bestof-widget.php:189 wppa-topten-widget.php:380
3040
  #, fuzzy
3041
  msgid "Rating count:"
3042
  msgstr "Bewertungen"
3043
 
3044
+ #: wppa-bestof-widget.php:198 wppa-common-functions.php:1683
3045
  #: wppa-import.php:1604 wppa-items.php:424 wppa-potd-admin.php:100
3046
  #: wppa-potd-admin.php:136 wppa-settings-autosave.php:1393
3047
  #: wppa-settings-autosave.php:1742 wppa-settings-autosave.php:1947
3048
  #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:3827
3049
+ #: wppa-settings-autosave.php:4013 wppa-settings-autosave.php:4035
3050
+ #: wppa-settings-autosave.php:4149 wppa-settings-autosave.php:5676
3051
+ #: wppa-settings-autosave.php:6409 wppa-settings-autosave.php:7818
3052
+ #: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
3053
+ #: wppa-settings-autosave.php:8956 wppa-settings-autosave.php:9113
3054
+ #: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
3055
+ #: wppa-tinymce-shortcodes.php:616 wppa-watermark.php:519
3056
  msgid "--- none ---"
3057
  msgstr "--- keine ---"
3058
 
3059
  #: wppa-bestof-widget.php:199
3060
  #, fuzzy
3061
  msgid "The authors album(s)"
3062
+ msgstr "Die Autoren Album (n)"
3063
 
3064
  #: wppa-bestof-widget.php:200
3065
  #, fuzzy
3066
  msgid "The photos in the authors album(s), thumbnails"
3067
+ msgstr "Die Fotos in der Autoren-Album (n), Vorschauen"
3068
 
3069
  #: wppa-bestof-widget.php:201
3070
  #, fuzzy
3071
  msgid "The photos in the authors album(s), slideshow"
3072
+ msgstr "Die Fotos in der Autoren-Album (s), Diashow"
3073
 
3074
  #: wppa-bestof-widget.php:202
3075
  #, fuzzy
3076
  msgid "All the authors photos, thumbnails"
3077
+ msgstr "Alle Autoren Fotos, Thumbnails"
3078
 
3079
  #: wppa-bestof-widget.php:203
3080
  #, fuzzy
3081
  msgid "All the authors photos, slideshow"
3082
+ msgstr "Alle Autoren Fotos, Diashow"
3083
 
3084
  #: wppa-boxes-html.php:139 wppa-boxes-html.php:251
3085
  msgid "Photo search results"
3099
  msgstr "Kategorie"
3100
 
3101
  #: wppa-boxes-html.php:421 wppa-boxes-html.php:554
3102
+ #: wppa-settings-autosave.php:7933 wppa-settings-autosave.php:7944
3103
  msgid "Text"
3104
  msgstr "Text"
3105
 
3113
  msgid "Items must meet all selected options."
3114
  msgstr "Einzelteile müssen alle ausgewählten Optionen zu treffen."
3115
 
3116
+ #: wppa-boxes-html.php:546 wppa-settings-autosave.php:9217
3117
+ #: wppa-settings-autosave.php:9257 wppa-settings-autosave.php:9279
3118
+ #: wppa-settings-autosave.php:9325
3119
  msgid "Tag"
3120
  msgstr "Tag"
3121
 
3137
  msgstr "Super View Fotos"
3138
 
3139
  #: wppa-boxes-html.php:836 wppa-settings-autosave.php:385
3140
+ #: wppa-settings-autosave.php:4907
3141
  msgid "Thumbnails"
3142
  msgstr "Miniaturbilden"
3143
 
3185
  msgid "Social media landing page"
3186
  msgstr "Social-Media-Zielseite"
3187
 
3188
+ #: wppa-boxes-html.php:1283 wppa-utils.php:1739
3189
  #, php-format
3190
  msgid "See this image on %s"
3191
  msgstr "Schau Dir das Bild an auf %s"
3192
 
3193
+ #: wppa-boxes-html.php:1310 wppa-boxes-html.php:1614 wppa-qr-widget.php:39
3194
  msgid "QR code"
3195
  msgstr "QR Code"
3196
 
3197
+ #: wppa-boxes-html.php:1355 wppa-boxes-html.php:1646
3198
  #, php-format
3199
  msgid "Tweet %s on Twitter"
3200
  msgstr "Tweet %s auf Twitter"
3201
 
3202
+ #: wppa-boxes-html.php:1362 wppa-boxes-html.php:1653
3203
  msgid "Share on Twitter"
3204
  msgstr "Teilen auf Twitter"
3205
 
3206
+ #: wppa-boxes-html.php:1375 wppa-boxes-html.php:1666
3207
  #, php-format
3208
  msgid "Share %s on Google+"
3209
  msgstr "Teilen %s auf Google+"
3210
 
3211
+ #: wppa-boxes-html.php:1383 wppa-boxes-html.php:1674
3212
  msgid "Share on Google+"
3213
  msgstr "Teilen auf Google+"
3214
 
3215
+ #: wppa-boxes-html.php:1398
3216
  #, php-format
3217
  msgid "Share %s on Pinterest"
3218
  msgstr "Teilen %s auf Pinterest"
3219
 
3220
+ #: wppa-boxes-html.php:1408
3221
  msgid "Share on Pinterest"
3222
  msgstr "Teilen auf Pinterest"
3223
 
3224
+ #: wppa-boxes-html.php:1553 wppa-boxes-html.php:1750
3225
  msgid "Comment on Facebook:"
3226
  msgstr "Kommentar auf Facebook:"
3227
 
3228
+ #: wppa-boxes-html.php:1597
3229
+ #, fuzzy, php-format
3230
+ msgid "See this article on %s"
3231
+ msgstr "Lesen Sie diesen Artikel auf%s"
3232
+
3233
+ #: wppa-boxes-html.php:1853 wppa-import.php:1305
3234
  msgid "Working..."
3235
  msgstr "Arbeiten..."
3236
 
3237
+ #: wppa-boxes-html.php:1950
3238
  #, fuzzy
3239
  msgid "Create Sub Album"
3240
  msgstr "Album Erstellen"
3241
 
3242
+ #: wppa-boxes-html.php:1950
3243
  msgid "Create Album"
3244
  msgstr "Album Erstellen"
3245
 
3246
+ #: wppa-boxes-html.php:1997
3247
  msgid "Enter album name."
3248
  msgstr "Albumnamen eingeben."
3249
 
3250
+ #: wppa-boxes-html.php:1999 wppa-boxes-html.php:2861
3251
  msgid "Don't leave this blank!"
3252
  msgstr "Hinterlasse einen Kommentar"
3253
 
3254
+ #: wppa-boxes-html.php:2020
3255
  msgid "Enter album description"
3256
  msgstr "Album Beschreibung eingeben"
3257
 
3258
+ #: wppa-boxes-html.php:2048
3259
  msgid "Create album"
3260
  msgstr "Album Erstellen"
3261
 
3262
+ #: wppa-boxes-html.php:2151 wppa-boxes-html.php:2165 wppa-functions.php:4208
3263
  msgid "Max uploads reached"
3264
  msgstr "Max Uploads erreicht"
3265
 
3266
+ #: wppa-boxes-html.php:2230 wppa-upload.php:181
3267
  msgid "Upload Photo"
3268
  msgstr "Upload Foto"
3269
 
3270
+ #: wppa-boxes-html.php:2312
3271
  #, fuzzy
3272
  msgid "Select Photo / Video / Camera"
3273
  msgstr "Wählen Sie Foto / Video / Kamera"
3274
 
3275
+ #: wppa-boxes-html.php:2315
3276
  #, fuzzy
3277
  msgid "Select Photo / Camera"
3278
  msgstr "Wählen Sie Foto / Kamera"
3279
 
3280
+ #: wppa-boxes-html.php:2320
3281
  #, fuzzy
3282
  msgid "Select Photo / Video"
3283
  msgstr "Wählen Sie Foto / Video"
3284
 
3285
+ #: wppa-boxes-html.php:2323
3286
  #, fuzzy
3287
  msgid "Select Photo"
3288
  msgstr "Foto auswählen"
3289
 
3290
+ #: wppa-boxes-html.php:2330
3291
  #, fuzzy
3292
  msgid "Select Photos / Video / Camera"
3293
  msgstr "Wählen Sie Fotos / Video / Kamera"
3294
 
3295
+ #: wppa-boxes-html.php:2333
3296
  #, fuzzy
3297
  msgid "Select Photos / Camera"
3298
  msgstr "Wählen Sie Fotos / Kamera"
3299
 
3300
+ #: wppa-boxes-html.php:2338
3301
  #, fuzzy
3302
  msgid "Select Photos / Video"
3303
  msgstr "Wählen Sie Fotos / Video"
3304
 
3305
+ #: wppa-boxes-html.php:2341
3306
  #, fuzzy
3307
  msgid "Select Photos"
3308
  msgstr "Fotos auswählen"
3309
 
3310
+ #: wppa-boxes-html.php:2379
3311
  #, php-format
3312
  msgid "You may upload %d photo"
3313
  msgid_plural ""
3318
  "Sie können bis zu %d Fotos gleichzeitig Hochladen wenn ihr browser HTML-5 "
3319
  "multiple file upload unterstützt"
3320
 
3321
+ #: wppa-boxes-html.php:2387
3322
  #, php-format
3323
  msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
3324
  msgstr "Max Fotogröße: %d x %d (% 2.1f MegaPixel)"
3325
 
3326
+ #: wppa-boxes-html.php:2416 wppa-import.php:561 wppa-upload.php:167
3327
  #: wppa-upload.php:309 wppa-upload.php:383
3328
  msgid "Apply watermark file:"
3329
  msgstr "Wende Wasserzeichen-Datei an:"
3330
 
3331
+ #: wppa-boxes-html.php:2438 wppa-import.php:565 wppa-upload.php:171
3332
  #: wppa-upload.php:313 wppa-upload.php:387
3333
  msgid "Position:"
3334
  msgstr "Position:"
3335
 
3336
+ #: wppa-boxes-html.php:2466
3337
  msgid ""
3338
  "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
3339
  "photoname if available, else the original filename will be used as photo "
3342
  "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 005 (Graphic Name) wie "
3343
  "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
3344
 
3345
+ #: wppa-boxes-html.php:2471
3346
  msgid ""
3347
  "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
3348
  "available, else the original filename will be used as photo name."
3350
  "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 120 (Caption) wie "
3351
  "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
3352
 
3353
+ #: wppa-boxes-html.php:2476
3354
  msgid ""
3355
  "If you leave this blank, the original filename will be used as photo name."
3356
  msgstr ""
3357
  "Wenn das leer gelassen wird, wird der Originalname der Datei als Fotoname "
3358
  "verwendet."
3359
 
3360
+ #: wppa-boxes-html.php:2481 wppa-settings-autosave.php:1681
3361
  #, fuzzy
3362
  msgid "Photo name"
3363
  msgstr ""
3364
  "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 120 (Caption) wie "
3365
  "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
3366
 
3367
+ #: wppa-boxes-html.php:2499
3368
  #, fuzzy
3369
  msgid "Photo description"
3370
  msgstr "Foto-Beschreibung"
3371
 
3372
+ #: wppa-boxes-html.php:2527
3373
  msgid "hidden"
3374
  msgstr "verborgen"
3375
 
3376
+ #: wppa-boxes-html.php:2597
3377
  msgid "Preview tags:"
3378
  msgstr "Vorschau tags:"
3379
 
3380
+ #: wppa-boxes-html.php:2614
3381
  #, fuzzy
3382
  msgid "Blog it?"
3383
+ msgstr "Im Blog?"
3384
 
3385
+ #: wppa-boxes-html.php:2624
3386
  #, fuzzy
3387
  msgid "Upload and blog"
3388
+ msgstr "Laden und Blog"
3389
 
3390
+ #: wppa-boxes-html.php:2628 wppa-boxes-html.php:2691
3391
  msgid "Upload photo"
3392
  msgstr "Foto hochladen"
3393
 
3394
+ #: wppa-boxes-html.php:2636
3395
  #, fuzzy
3396
  msgid "Post title:"
3397
+ msgstr "Titel des Post:"
3398
 
3399
+ #: wppa-boxes-html.php:2646
3400
  #, fuzzy
3401
  msgid "Text BEFORE the image:"
3402
  msgstr "Text vor dem Bild:"
3403
 
3404
+ #: wppa-boxes-html.php:2656
3405
  #, fuzzy
3406
  msgid "Text AFTER the image:"
3407
  msgstr "Text nach dem Bild:"
3408
 
3409
+ #: wppa-boxes-html.php:2676
3410
  msgid "Please select an album and try again"
3411
  msgstr "Bitte wählen Sie ein Album aus und versuchen Sie es erneut"
3412
 
3413
+ #: wppa-boxes-html.php:2747
3414
  msgid "ERROR: unable to upload files."
3415
  msgstr "ERROR: kann keine Dateien hochladen."
3416
 
3417
+ #: wppa-boxes-html.php:2801
3418
  #, fuzzy
3419
  msgid "Edit Album Info"
3420
  msgstr "Fotoalbum bearbeiten"
3421
 
3422
+ #: wppa-boxes-html.php:2859
3423
  msgid "Enter album name"
3424
  msgstr "Albumnamen eingeben"
3425
 
3426
+ #: wppa-boxes-html.php:2881
3427
  msgid "Album description:"
3428
  msgstr "Album Beschreibung:"
3429
 
3430
+ #: wppa-boxes-html.php:2935
3431
  msgid "Update album"
3432
  msgstr "Album updaten"
3433
 
3434
+ #: wppa-boxes-html.php:3004
3435
  msgid "wrote:"
3436
  msgstr "schrieb:"
3437
 
3438
+ #: wppa-boxes-html.php:3066
3439
  msgid "Avatar"
3440
  msgstr "Profilbild"
3441
 
3442
+ #: wppa-boxes-html.php:3109 wppa-links.php:826
3443
  msgid "Awaiting moderation"
3444
  msgstr "Warten auf Moderation"
3445
 
3446
+ #: wppa-boxes-html.php:3112
3447
  msgid "Marked as spam"
3448
  msgstr "Als Spam markiert"
3449
 
3450
+ #: wppa-boxes-html.php:3136
3451
  msgid "Edit!"
3452
  msgstr "Bearbeiten!"
3453
 
3454
+ #: wppa-boxes-html.php:3140
3455
  msgid "Send!"
3456
  msgstr "Absenden!"
3457
 
3458
+ #: wppa-boxes-html.php:3201
3459
  msgid "Your name:"
3460
  msgstr "Dein Name:"
3461
 
3462
+ #: wppa-boxes-html.php:3216
3463
  msgid "Your email:"
3464
  msgstr "Deine E-mail:"
3465
 
3466
+ #: wppa-boxes-html.php:3232
3467
  msgid "Your comment:"
3468
  msgstr "Dein Kommentar:"
3469
 
3470
+ #: wppa-boxes-html.php:3276
3471
  #, php-format
3472
  msgid "You must <a href=\"%s\">login</a> to enter a comment"
3473
  msgstr ""
3474
  "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
3475
  "hinterlassen."
3476
 
3477
+ #: wppa-boxes-html.php:3279
3478
  msgid "You must login to enter a comment"
3479
  msgstr "Sie müssen sich anmelden, um einen Kommentar ein zu geben"
3480
 
3481
+ #: wppa-boxes-html.php:3291 wppa-functions.php:2568 wppa-thumbnails.php:682
3482
  #, php-format
3483
  msgid "%d comment"
3484
  msgid_plural "%d comments"
3485
  msgstr[0] "%d Kommentar"
3486
  msgstr[1] "%d Kommentare"
3487
 
3488
+ #: wppa-boxes-html.php:3295
3489
  msgid "Leave a comment"
3490
  msgstr "Hinterlasse einen Kommentar"
3491
 
3492
+ #: wppa-boxes-html.php:3392
3493
  msgid "Show IPTC data"
3494
  msgstr "IPTC-Daten anzeigen"
3495
 
3496
+ #: wppa-boxes-html.php:3403
3497
  msgid "Hide IPTC data"
3498
  msgstr "IPTC-Daten ausblenden"
3499
 
3500
+ #: wppa-boxes-html.php:3451
3501
  msgid "No IPTC data"
3502
  msgstr "Keine IPTC-Daten"
3503
 
3504
+ #: wppa-boxes-html.php:3503
3505
  msgid "Show EXIF data"
3506
  msgstr "EXIF-Daten anzeigen"
3507
 
3508
+ #: wppa-boxes-html.php:3514
3509
  msgid "Hide EXIF data"
3510
  msgstr "EXIF-Daten ausblenden"
3511
 
3512
+ #: wppa-boxes-html.php:3566
3513
  msgid "No EXIF data"
3514
  msgstr "Keine EXIF-Daten"
3515
 
3516
+ #: wppa-boxes-html.php:3680 wppa-boxes-html.php:3685
3517
  msgid "< Previous"
3518
  msgstr "< Vorherige"
3519
 
3520
+ #: wppa-boxes-html.php:3691 wppa-boxes-html.php:3696
3521
  msgid "Next >"
3522
  msgstr "Nächstes >"
3523
 
3524
+ #: wppa-boxes-html.php:3798 wppa-boxes-html.php:3877
3525
  msgid "See the authors albums"
3526
  msgstr "Siehe die Autoren Alben"
3527
 
3528
+ #: wppa-boxes-html.php:3802 wppa-boxes-html.php:3810 wppa-boxes-html.php:3881
3529
  msgid "See the authors photos"
3530
  msgstr "Siehe die Autoren Fotos"
3531
 
3532
+ #: wppa-boxes-html.php:3806 wppa-boxes-html.php:3814 wppa-boxes-html.php:3885
3533
  msgid "See all the authors photos"
3534
  msgstr "Siehe Alle Autoren Fotos"
3535
 
3536
+ #: wppa-boxes-html.php:3840
3537
  #, php-format
3538
  msgid "Photo by: %s"
3539
  msgstr "Foto von: %s"
3540
 
3541
+ #: wppa-boxes-html.php:3843 wppa-boxes-html.php:3906
3542
  #, php-format
3543
  msgid "%d max rating"
3544
  msgid_plural "%d max ratings"
3545
  msgstr[0] "%d max Bewertung"
3546
  msgstr[1] "%d max Bewertungen"
3547
 
3548
+ #: wppa-boxes-html.php:3847 wppa-boxes-html.php:3910 wppa-non-admin.php:924
3549
  #: wppa-topten-widget.php:196 wppa-topten-widget.php:213
3550
  #: wppa-topten-widget.php:249
3551
  #, php-format
3554
  msgstr[0] "%d Stimme"
3555
  msgstr[1] "%d Stimmen"
3556
 
3557
+ #: wppa-boxes-html.php:3851
3558
  #, php-format
3559
  msgid "Rating: %4.2f."
3560
  msgstr "Bewertung: %4.2f."
3561
 
3562
+ #: wppa-boxes-html.php:3859
3563
  #, php-format
3564
  msgid "Photo %s not found."
3565
  msgstr "Foto %s nicht gefunden."
3566
 
3567
+ #: wppa-boxes-html.php:3914
3568
  #, php-format
3569
  msgid "Mean value: %4.2f."
3570
  msgstr "Mittelwert: %4.2f."
3571
 
3572
+ #: wppa-boxes-html.php:4261 wppa-photo-admin-autosave.php:196
3573
  msgid "Refresh"
3574
  msgstr "Aktualisieren"
3575
 
3577
  msgid "Post:"
3578
  msgstr "Post:"
3579
 
3580
+ #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:668
3581
  msgid "Page:"
3582
  msgstr "Seite:"
3583
 
3723
  msgid "Thumbs"
3724
  msgstr "Miniaturen"
3725
 
3726
+ #: wppa-breadcrumb.php:666
3727
  msgid "Unpublished"
3728
  msgstr "Unveröffentlicht"
3729
 
3730
+ #: wppa-breadcrumb.php:696
3731
  msgid "Found photos will meet the search criteria as follows:"
3732
  msgstr "Gefunden Fotos werden die Suchkriterien erfüllen, wie folgt:"
3733
 
3734
+ #: wppa-breadcrumb.php:699
3735
  msgid "AND"
3736
  msgstr "UND"
3737
 
3738
+ #: wppa-breadcrumb.php:703
3739
  msgid "OR"
3740
  msgstr "ODER"
3741
 
3742
  #: wppa-cart.php:30
3743
  #, fuzzy
3744
  msgid "Buy now"
3745
+ msgstr "Jetzt Kaufen"
3746
 
3747
  #: wppa-cart.php:94
3748
  #, fuzzy, php-format
3749
  msgid "Unit Price: %s each"
3750
+ msgstr "Stückpreis:%s je"
3751
 
3752
  #: wppa-cart.php:98
3753
  #, fuzzy
3754
  msgid "Qty:"
3755
+ msgstr "Menge:"
3756
 
3757
  #: wppa-comment-admin.php:35
3758
  #, fuzzy
3759
  msgid "Photo Albums -> Edit Comment"
3760
+ msgstr "Fotoalben -> Kommentar bearbeiten"
3761
 
3762
  #: wppa-comment-admin.php:61
3763
  #, fuzzy
3767
  #: wppa-comment-admin.php:72
3768
  #, fuzzy
3769
  msgid "User:"
3770
+ msgstr "Nutzer:"
3771
 
3772
  #: wppa-comment-admin.php:76
3773
  #, fuzzy
3774
  msgid "Email:"
3775
+ msgstr "Sie erhalten diese E-Mail als Administrator der Website"
3776
 
3777
+ #: wppa-comment-admin.php:80 wppa-utils.php:1038
3778
  #, fuzzy
3779
  msgid "Comment:"
3780
+ msgstr "Moderiere Kommentare"
3781
 
3782
  #: wppa-comment-admin.php:86
3783
  #, fuzzy
3792
  #: wppa-comment-admin.php:128 wppa-comment-admin.php:143
3793
  #, fuzzy
3794
  msgid "Could not bulk update status"
3795
+ msgstr "Kann nicht Massen Update-Status"
3796
 
3797
  #: wppa-comment-admin.php:151
3798
  #, fuzzy
3799
  msgid "Could not bulk delete spam"
3800
+ msgstr "Löschen nicht möglich Masse Spam"
3801
 
3802
  #: wppa-comment-admin.php:157
3803
  #, fuzzy
3807
  #: wppa-comment-admin.php:184
3808
  #, fuzzy
3809
  msgid "Photo Albums -> Moderate Comment"
3810
+ msgstr "Fotoalben -> Moderate Kommentar"
3811
 
3812
  #: wppa-comment-admin.php:185
3813
  #, fuzzy
3814
  msgid "Photo Albums -> Comment admin"
3815
+ msgstr "Fotoalben -> Kommentar Admin"
3816
 
3817
  #: wppa-comment-admin.php:189
3818
  #, fuzzy
3821
  "item 18 on the <b>Photo Albums -> Settings</b> screen and press <b>Save "
3822
  "Changes</b>"
3823
  msgstr ""
3824
+ "<h3> Das Kommentarsystem ist nicht aktiviert </h3><p> Zur Aktivierung: Check "
3825
+ "Tabelle II Artikel 18 auf den <b>Fotoalben -> Einstellungen</b> Bildschirm "
3826
+ "und drücken <b>Sie</b> auf <b>Änderungen speichern</b>"
3827
 
3828
  #: wppa-comment-admin.php:196
3829
  #, fuzzy
3830
  msgid "Total:"
3831
+ msgstr "Gesamt:"
3832
 
3833
  #: wppa-comment-admin.php:200
3834
  #, fuzzy
3838
  #: wppa-comment-admin.php:204
3839
  #, fuzzy
3840
  msgid "Pending:"
3841
+ msgstr "Offene:"
3842
 
3843
  #: wppa-comment-admin.php:208
3844
  #, fuzzy
3845
  msgid "Spam:"
3846
+ msgstr "Spam:"
3847
 
3848
  #: wppa-comment-admin.php:213
3849
  #, fuzzy
3853
  #: wppa-comment-admin.php:228
3854
  #, fuzzy
3855
  msgid "Linkpage:"
3856
+ msgstr "Linkseite:"
3857
 
3858
  #: wppa-comment-admin.php:231 wppa-settings-autosave.php:465
3859
+ #: wppa-settings-autosave.php:8211
3860
  #, fuzzy
3861
  msgid "--- Please select a page ---"
3862
  msgstr "Bitte wählen Sie eine Seite…"
3867
  "You can see the photo and all its comments on the selected page by clicking "
3868
  "on the thumbnail image"
3869
  msgstr ""
3870
+ "Sie können durch einen Klick auf das Thumbnail-Bild das Foto und alle seine "
3871
+ "Kommentare auf der ausgewählten Seite zu sehen"
3872
 
3873
  #: wppa-comment-admin.php:250
3874
  #, fuzzy
3878
  #: wppa-comment-admin.php:252
3879
  #, fuzzy
3880
  msgid "all"
3881
+ msgstr "alle"
3882
 
3883
  #: wppa-comment-admin.php:253
3884
  #, fuzzy
3885
  msgid "pending"
3886
+ msgstr "ausstehend"
3887
 
3888
  #: wppa-comment-admin.php:254
3889
  #, fuzzy
3918
  #: wppa-comment-admin.php:266
3919
  #, fuzzy
3920
  msgid "Approve all pending"
3921
+ msgstr "Genehmigen alle anstehenden"
3922
 
3923
  #: wppa-comment-admin.php:267
3924
  #, fuzzy
3925
  msgid "Move all pending to spam"
3926
+ msgstr "Verschieben Sie alle anstehenden Spam"
3927
 
3928
  #: wppa-comment-admin.php:268
3929
  #, fuzzy
3930
  msgid "Delete all spam"
3931
+ msgstr "Löschen aller Spam"
3932
 
3933
  #: wppa-comment-admin.php:270
3934
  #, fuzzy
3935
  msgid "Save Settings / Perform bulk action"
3936
+ msgstr "Save Settings / Perform Bulk-Aktion"
3937
 
3938
+ #: wppa-comment-admin.php:309 wppa-comment-admin.php:396 wppa-non-admin.php:759
3939
  msgid "Photo"
3940
  msgstr "Foto"
3941
 
3950
  #: wppa-settings-autosave.php:1446 wppa-settings-autosave.php:1467
3951
  #: wppa-settings-autosave.php:3092 wppa-settings-autosave.php:3113
3952
  #: wppa-settings-autosave.php:3450 wppa-settings-autosave.php:3474
3953
+ #: wppa-settings-autosave.php:4799 wppa-settings-autosave.php:4820
3954
+ #: wppa-settings-autosave.php:4996 wppa-settings-autosave.php:5020
3955
+ #: wppa-settings-autosave.php:6026 wppa-settings-autosave.php:6697
3956
+ #: wppa-settings-autosave.php:6719 wppa-settings-autosave.php:7449
3957
+ #: wppa-settings-autosave.php:7473 wppa-settings-autosave.php:9195
3958
+ #: wppa-settings-autosave.php:9216 wppa-settings-autosave.php:9256
3959
+ #: wppa-settings-autosave.php:9278 wppa-settings-autosave.php:9324
3960
  #, fuzzy
3961
  msgid "#"
3962
+ msgstr "#"
3963
 
3964
  #: wppa-comment-admin.php:312 wppa-comment-admin.php:399
3965
  #, fuzzy
3966
  msgid "IP"
3967
+ msgstr "IP"
3968
 
3969
  #: wppa-comment-admin.php:313 wppa-comment-admin.php:400
3970
  #, fuzzy
3971
  msgid "User"
3972
+ msgstr "Benutzer"
3973
 
3974
  #: wppa-comment-admin.php:314 wppa-comment-admin.php:401
3975
  #, fuzzy
3976
  msgid "Email"
3977
+ msgstr "Sie erhalten diese E-Mail als Administrator der Website"
3978
 
3979
  #: wppa-comment-admin.php:315 wppa-comment-admin.php:402
3980
  #, fuzzy
3981
  msgid "Time since"
3982
+ msgstr "Zeit seit"
3983
 
3984
  #: wppa-comment-admin.php:316 wppa-comment-admin.php:403
3985
  #, fuzzy
3986
  msgid "Comment"
3987
+ msgstr "Moderiere Kommentare"
3988
 
3989
  #: wppa-comment-admin.php:354
3990
  #, fuzzy
3991
  msgid "Click to see the fullsize photo and all comments"
3992
+ msgstr "Klicken Sie auf das Foto und Gross alle Kommentare zu sehen"
3993
 
3994
  #: wppa-comment-admin.php:365
3995
  #, fuzzy, php-format
3996
  msgid "Reply to your comment on photo: %s on %s"
3997
+ msgstr "Antwort auf deinen Kommentar zu Foto:%s auf%s"
3998
 
3999
  #: wppa-comment-admin.php:366 wppa-functions.php:2361
4000
  msgid "Reply"
4006
  #: wppa-photo-admin-autosave.php:1444 wppa-photo-admin-autosave.php:1456
4007
  #, fuzzy
4008
  msgid "Pending"
4009
+ msgstr "Wartend"
4010
 
4011
  #: wppa-comment-admin.php:378 wppa-photo-admin-autosave.php:1037
4012
  #: wppa-photo-admin-autosave.php:1047
4013
  #, fuzzy
4014
  msgid "Approved"
4015
+ msgstr "Interessant"
4016
 
4017
  #: wppa-comment-admin.php:379 wppa-photo-admin-autosave.php:1038
4018
  #: wppa-photo-admin-autosave.php:1048
4019
  #, fuzzy
4020
  msgid "Spam"
4021
+ msgstr "Spam [ Topic ]"
4022
 
4023
  #: wppa-comment-admin.php:388
4024
  #, fuzzy
4025
  msgid "Are you sure you want to delete this comment?"
4026
+ msgstr "Bist du dir sicher, dass du diesen Kommentar löschen willst?"
4027
 
4028
  #: wppa-comment-admin.php:428 wppa-comment-admin.php:434
4029
  #, fuzzy
4030
  msgid "Unable to update comment. Err ="
4031
+ msgstr "Unfähig Kommentar zu aktualisieren. Err ="
4032
 
4033
  #: wppa-comment-widget.php:14
4034
  #, fuzzy
4035
  msgid "WPPA+ Comments on Photos"
4036
+ msgstr "WPPA Kommentare zu den Fotos"
4037
 
4038
  #: wppa-comment-widget.php:15 wppa-comment-widget.php:116
4039
  #, fuzzy
4040
  msgid "Comments on Photos"
4041
+ msgstr "Kommentare zu den Fotos"
4042
 
4043
+ #: wppa-comment-widget.php:73 wppa-non-admin.php:894 wppa-thumbnails.php:500
4044
  msgid "wrote"
4045
  msgstr "schrieb"
4046
 
4047
  #: wppa-comment-widget.php:87 wppa-featen-widget.php:137
4048
+ #: wppa-lasten-widget.php:148 wppa-non-admin.php:895 wppa-non-admin.php:900
4049
+ #: wppa-non-admin.php:905 wppa-non-admin.php:909 wppa-non-admin.php:916
4050
+ #: wppa-non-admin.php:926 wppa-potd-widget.php:159
4051
  #: wppa-thumbnail-widget.php:114 wppa-topten-widget.php:257
4052
  msgid "Photo not found"
4053
  msgstr "Foto nicht gefunden"
4054
 
4055
+ #: wppa-comment-widget.php:93 wppa-non-admin.php:896
4056
  msgid "There are no commented photos (yet)"
4057
  msgstr "Es sind (noch) keine kommentierte Fotos"
4058
 
4059
+ #: wppa-common-functions.php:653 wppa-functions.php:4626
4060
  #, php-format
4061
  msgid "%d second"
4062
  msgid_plural "%d seconds"
4063
  msgstr[0] "%d Sekunde"
4064
  msgstr[1] "%d Sekunden"
4065
 
4066
+ #: wppa-common-functions.php:657 wppa-functions.php:4622
4067
+ #: wppa-settings-autosave.php:6542 wppa-settings-autosave.php:6543
4068
  #, php-format
4069
  msgid "%d minute"
4070
  msgid_plural "%d minutes"
4071
  msgstr[0] "%d Minute"
4072
  msgstr[1] "%d Minuten"
4073
 
4074
+ #: wppa-common-functions.php:661 wppa-functions.php:4618
4075
+ #: wppa-settings-autosave.php:6544 wppa-settings-autosave.php:7828
4076
  #, php-format
4077
  msgid "%d hour"
4078
  msgid_plural "%d hours"
4079
  msgstr[0] "%d Stunde"
4080
  msgstr[1] "%d Stunden"
4081
 
4082
+ #: wppa-common-functions.php:665 wppa-functions.php:4614
4083
+ #: wppa-settings-autosave.php:6545 wppa-settings-autosave.php:7829
4084
+ #: wppa-settings-autosave.php:7830 wppa-settings-autosave.php:7831
4085
+ #: wppa-settings-autosave.php:7832 wppa-settings-autosave.php:7833
4086
+ #: wppa-settings-autosave.php:7834 wppa-settings-autosave.php:7836
4087
+ #: wppa-settings-autosave.php:7837 wppa-settings-autosave.php:7838
4088
+ #: wppa-settings-autosave.php:9016
4089
  #, php-format
4090
  msgid "%d day"
4091
  msgid_plural "%d days"
4092
  msgstr[0] "%d Tag"
4093
  msgstr[1] "%d Tage"
4094
 
4095
+ #: wppa-common-functions.php:669 wppa-functions.php:4610
4096
+ #: wppa-settings-autosave.php:6546 wppa-settings-autosave.php:7835
4097
+ #: wppa-settings-autosave.php:7839 wppa-settings-autosave.php:7840
4098
+ #: wppa-settings-autosave.php:7841 wppa-settings-autosave.php:9017
4099
  #, php-format
4100
  msgid "%d week"
4101
  msgid_plural "%d weeks"
4102
  msgstr[0] "%d Woche"
4103
  msgstr[1] "%d Wochen"
4104
 
4105
+ #: wppa-common-functions.php:673 wppa-settings-autosave.php:7842
4106
+ #: wppa-settings-autosave.php:9018 wppa-settings-autosave.php:9019
4107
+ #: wppa-settings-autosave.php:9020 wppa-settings-autosave.php:9021
4108
+ #: wppa-settings-autosave.php:9022 wppa-settings-autosave.php:9024
4109
  #, php-format
4110
  msgid "%d month"
4111
  msgid_plural "%d months"
4112
  msgstr[0] "%d Monat"
4113
  msgstr[1] "%d Monate"
4114
 
4115
+ #: wppa-common-functions.php:676 wppa-settings-autosave.php:9023
4116
+ #: wppa-settings-autosave.php:9025
4117
  #, php-format
4118
  msgid "%d year"
4119
  msgid_plural "%d years"
4120
  msgstr[0] "%d Jahr"
4121
  msgstr[1] "%d Jahre"
4122
 
4123
+ #: wppa-common-functions.php:1399
4124
  #, php-format
4125
  msgid ""
4126
  "Based on your server memory limit you should not upload images larger then "
4129
  "Basierend auf Ihrem Server Speichergrenze sollten Sie keine Bilder hochladen "
4130
  "größer <strong>dann %d x %d (% 2.1f MP)</strong>"
4131
 
4132
+ #: wppa-common-functions.php:1677
4133
  msgid "- select an album -"
4134
  msgstr "- wählen Sie ein Album -"
4135
 
4136
+ #: wppa-common-functions.php:1689 wppa-items.php:432
4137
  #: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
4138
  #: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
4139
  #: wppa-tagcloud-widget.php:79
4140
  msgid "--- all ---"
4141
  msgstr "--- alle ---"
4142
 
4143
+ #: wppa-common-functions.php:1695
4144
  msgid "--- generic ---"
4145
  msgstr "--- generikum ---"
4146
 
4147
+ #: wppa-common-functions.php:1712
4148
  msgid "--- multiple see below ---"
4149
  msgstr "--- Mehrere siehe unten ---"
4150
 
4151
+ #: wppa-common-functions.php:1718
4152
  msgid "--- a selection box ---"
4153
  msgstr "--- eine Auswahlbox ---"
4154
 
4155
+ #: wppa-common-functions.php:1765 wppa-import.php:1605 wppa-items.php:428
4156
+ #: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
4157
  msgid "--- separate ---"
4158
  msgstr "--- separat ---"
4159
 
4160
+ #: wppa-common-functions.php:1871
4161
  msgid "Photo id ="
4162
  msgstr "Foto id ="
4163
 
4164
+ #: wppa-common-functions.php:1871
4165
  msgid "Value ="
4166
  msgstr "Wert ="
4167
 
4178
  #: wppa-date-time.php:85 wppa-date-time.php:210
4179
  #, fuzzy
4180
  msgid "Mar"
4181
+ msgstr "Mrz"
4182
 
4183
  #: wppa-date-time.php:85 wppa-date-time.php:210
4184
  #, fuzzy
4228
  #: wppa-encrypt.php:139
4229
  #, fuzzy
4230
  msgid "Invalid photo identifier:"
4231
+ msgstr "Ungültige Foto-Kennung:"
4232
 
4233
  #: wppa-encrypt.php:195
4234
  #, fuzzy
4235
  msgid "Invalid album identifier:"
4236
+ msgstr "Ungültige Album-Kennung:"
4237
 
4238
  #: wppa-exif-iptc-common.php:82 wppa-exif-iptc-common.php:161
4239
  msgid "n.a."
4240
  msgstr "n. z."
4241
 
4242
+ #: wppa-exif-iptc-common.php:239 wppa-utils.php:2626
4243
  msgid "Not Defined"
4244
  msgstr "Nicht definiert"
4245
 
4246
+ #: wppa-exif-iptc-common.php:240 wppa-utils.php:2627
4247
  msgid "Manual"
4248
  msgstr "Manuell"
4249
 
4250
+ #: wppa-exif-iptc-common.php:241 wppa-utils.php:2628
4251
  msgid "Program AE"
4252
  msgstr "Program AE"
4253
 
4254
+ #: wppa-exif-iptc-common.php:242 wppa-utils.php:2629
4255
  msgid "Aperture-priority AE"
4256
  msgstr "Aperture-priority AE"
4257
 
4258
+ #: wppa-exif-iptc-common.php:243 wppa-utils.php:2630
4259
  msgid "Shutter speed priority AE"
4260
  msgstr "Verschlusszeitvorrang bei AE"
4261
 
4262
+ #: wppa-exif-iptc-common.php:244 wppa-utils.php:2631
4263
  msgid "Creative (Slow speed)"
4264
  msgstr "Creative (Slow-Speed)"
4265
 
4266
+ #: wppa-exif-iptc-common.php:245 wppa-utils.php:2632
4267
  msgid "Action (High speed)"
4268
  msgstr "Aktion (High-Speed)"
4269
 
4270
+ #: wppa-exif-iptc-common.php:246 wppa-utils.php:2633
4271
  msgid "Portrait"
4272
  msgstr "Portrait"
4273
 
4274
+ #: wppa-exif-iptc-common.php:247 wppa-utils.php:2634
4275
  msgid "Landscape"
4276
  msgstr "Querformat"
4277
 
4278
+ #: wppa-exif-iptc-common.php:248 wppa-utils.php:2635
4279
  msgid "Bulb"
4280
  msgstr "Birne"
4281
 
4282
+ #: wppa-exif-iptc-common.php:270 wppa-utils.php:2636
4283
  msgid "Average"
4284
  msgstr "Durchschnitt"
4285
 
4286
+ #: wppa-exif-iptc-common.php:271 wppa-utils.php:2637
4287
  msgid "Center-weighted average"
4288
  msgstr "Mittenbetont"
4289
 
4290
+ #: wppa-exif-iptc-common.php:272 wppa-utils.php:2638
4291
  msgid "Spot"
4292
  msgstr "Spot"
4293
 
4294
+ #: wppa-exif-iptc-common.php:273 wppa-utils.php:2639
4295
  msgid "Multi-spot"
4296
  msgstr "Multi-spot"
4297
 
4298
+ #: wppa-exif-iptc-common.php:274 wppa-utils.php:2640
4299
  msgid "Multi-segment"
4300
  msgstr "Multi-segment"
4301
 
4302
+ #: wppa-exif-iptc-common.php:275 wppa-utils.php:2641
4303
  msgid "Partial"
4304
  msgstr "Partiell"
4305
 
4306
+ #: wppa-exif-iptc-common.php:276 wppa-settings-autosave.php:4924
4307
+ #: wppa-utils.php:2642
4308
  msgid "Other"
4309
  msgstr "Sonstiges"
4310
 
4311
+ #: wppa-exif-iptc-common.php:312 wppa-utils.php:2643
4312
  msgid "No Flash"
4313
  msgstr "Kein Blitz"
4314
 
4315
+ #: wppa-exif-iptc-common.php:314 wppa-utils.php:2644
4316
  msgid "Fired"
4317
  msgstr "Fired"
4318
 
4319
+ #: wppa-exif-iptc-common.php:316 wppa-utils.php:2645
4320
  msgid "Fired, Return not detected"
4321
  msgstr "Fired, Return not detected"
4322
 
4323
+ #: wppa-exif-iptc-common.php:318 wppa-utils.php:2646
4324
  msgid "Fired, Return detected"
4325
  msgstr "Fired, Return detected"
4326
 
4327
+ #: wppa-exif-iptc-common.php:320 wppa-utils.php:2647
4328
  msgid "On, Did not fire"
4329
  msgstr "An, kein Blitz"
4330
 
4331
+ #: wppa-exif-iptc-common.php:322 wppa-utils.php:2648
4332
  msgid "On, Fired"
4333
  msgstr "An, Fired"
4334
 
4335
+ #: wppa-exif-iptc-common.php:324 wppa-utils.php:2649
4336
  msgid "On, Return not detected"
4337
  msgstr "An, Return not detected"
4338
 
4339
+ #: wppa-exif-iptc-common.php:326 wppa-utils.php:2650
4340
  msgid "On, Return detected"
4341
  msgstr "An, Return detected"
4342
 
4343
+ #: wppa-exif-iptc-common.php:328 wppa-utils.php:2651
4344
  msgid "Off, Did not fire"
4345
  msgstr "Aus, kein Blitz"
4346
 
4347
+ #: wppa-exif-iptc-common.php:330 wppa-utils.php:2652
4348
  msgid "Off, Did not fire, Return not detected"
4349
  msgstr "Aus, kein Blitz, nicht erkannt und Rück"
4350
 
4351
+ #: wppa-exif-iptc-common.php:332 wppa-utils.php:2653
4352
  msgid "Auto, Did not fire"
4353
  msgstr "Auto, kein Blitz"
4354
 
4355
+ #: wppa-exif-iptc-common.php:334 wppa-utils.php:2654
4356
  msgid "Auto, Fired"
4357
  msgstr "Auto, Blitz"
4358
 
4359
+ #: wppa-exif-iptc-common.php:336 wppa-utils.php:2655
4360
  msgid "Auto, Fired, Return not detected"
4361
  msgstr "Auto, Blitz, nicht erkannt und Rück"
4362
 
4363
+ #: wppa-exif-iptc-common.php:338 wppa-utils.php:2656
4364
  msgid "Auto, Fired, Return detected"
4365
  msgstr "Auto, Blitz, erkannt und Rück"
4366
 
4367
+ #: wppa-exif-iptc-common.php:340 wppa-utils.php:2657
4368
  msgid "No flash function"
4369
  msgstr "Keine Blitzfunktion"
4370
 
4371
+ #: wppa-exif-iptc-common.php:342 wppa-utils.php:2658
4372
  msgid "Off, No flash function"
4373
  msgstr "Aus, Keine Blitzfunktion"
4374
 
4375
+ #: wppa-exif-iptc-common.php:344 wppa-utils.php:2659
4376
  msgid "Fired, Red-eye reduction"
4377
  msgstr "Blitz, Rote-Augen-Reduzierung"
4378
 
4379
+ #: wppa-exif-iptc-common.php:346 wppa-utils.php:2660
4380
  msgid "Fired, Red-eye reduction, Return not detected"
4381
  msgstr "Blitz, Rote-Augen-Reduzierung, nicht erkannt und Rück"
4382
 
4383
+ #: wppa-exif-iptc-common.php:348 wppa-utils.php:2661
4384
  msgid "Fired, Red-eye reduction, Return detected"
4385
  msgstr "Blitz, Rote-Augen-Reduzierung, erkannt und Rück"
4386
 
4387
+ #: wppa-exif-iptc-common.php:350 wppa-utils.php:2662
4388
  msgid "On, Red-eye reduction"
4389
  msgstr "An, Rote-Augen-Reduzierung"
4390
 
4391
+ #: wppa-exif-iptc-common.php:352 wppa-utils.php:2663
4392
  msgid "Red-eye reduction, Return not detected"
4393
  msgstr "Rote-Augen-Reduzierung, nicht erkannt und Rück"
4394
 
4395
+ #: wppa-exif-iptc-common.php:354 wppa-utils.php:2664
4396
  msgid "On, Red-eye reduction, Return detected"
4397
  msgstr "An, Rote-Augen-Reduzierung, erkannt und Rück"
4398
 
4399
+ #: wppa-exif-iptc-common.php:356 wppa-utils.php:2665
4400
  msgid "Off, Red-eye reduction"
4401
  msgstr "Aus, Rote-Augen-Reduzierung"
4402
 
4403
+ #: wppa-exif-iptc-common.php:358 wppa-utils.php:2666
4404
  msgid "Auto, Did not fire, Red-eye reduction"
4405
  msgstr "Auto, kein Blitz, Rote-Augen-Reduzierung"
4406
 
4407
+ #: wppa-exif-iptc-common.php:360 wppa-utils.php:2667
4408
  msgid "Auto, Fired, Red-eye reduction"
4409
  msgstr "Auto, Blitz, Rote-Augen-Reduzierung"
4410
 
4411
+ #: wppa-exif-iptc-common.php:362 wppa-utils.php:2668
4412
  msgid "Auto, Fired, Red-eye reduction, Return not detected"
4413
  msgstr "Auto, Blitz, Rote-Augen-Reduzierung, nicht erkannt und Rück"
4414
 
4415
+ #: wppa-exif-iptc-common.php:364 wppa-utils.php:2669
4416
  msgid "Auto, Fired, Red-eye reduction, Return detected"
4417
  msgstr "Auto, Blitz, Rote-Augen-Reduzierung, erkannt und Rück"
4418
 
4419
  #: wppa-export.php:36
4420
  #, fuzzy, php-format
4421
  msgid "Photos will be exported to: <b>%s</b>."
4422
+ msgstr "<b>%s:</b> Die Fotos werden zu exportieren."
4423
 
4424
  #: wppa-export.php:37
4425
  #, fuzzy
4427
  "Export photos from album <span style=\"font-size:12px;\">(Including Album "
4428
  "information)</span>:"
4429
  msgstr ""
4430
+ "Exportieren von Fotos aus dem Album <span style=\"font-size:12px;"
4431
+ "\">(einschließlich Informationen</span> über das <span style=\"font-"
4432
+ "size:12px;\">Album):</span>"
4433
 
4434
  #: wppa-export.php:66
4435
  #, fuzzy
4436
  msgid "Export"
4437
+ msgstr "Exportieren"
4438
 
4439
  #: wppa-export.php:81
4440
  #, fuzzy
4441
  msgid "Exporting...<br/>"
4442
+ msgstr "Exportieren ... <br/>"
4443
 
4444
  #: wppa-export.php:90
4445
  #, fuzzy
4446
  msgid "ok, <br/>Filling"
4447
+ msgstr "OK, <br/> Füllung"
4448
 
4449
  #: wppa-export.php:92
4450
  #, fuzzy
4451
  msgid "failed<br/>"
4452
+ msgstr "gescheitert <br/>"
4453
 
4454
  #: wppa-export.php:98
4455
  #, fuzzy
4457
  "Can export albums and photos, but cannot make a zipfile. Your php version is "
4458
  "< 5.2.7."
4459
  msgstr ""
4460
+ "Kann Alben und Fotos zu exportieren, aber keine zipfile machen. Ihre PHP-"
4461
+ "Version ist <5.2.7."
4462
 
4463
  #: wppa-export.php:99
4464
  #, fuzzy
4466
  "Can export albums and photos, but cannot make a zipfile. Your php version "
4467
  "does not support ZipArchive."
4468
  msgstr ""
4469
+ "Kann Alben und Fotos zu exportieren, aber keine zipfile machen. Ihre PHP-"
4470
+ "Version unterstützen ZipArchive nicht."
4471
 
4472
  #: wppa-export.php:109
4473
  #, fuzzy
4474
  msgid "<br/>Processing album"
4475
+ msgstr "<br/> Die Verarbeitung Album"
4476
 
4477
  #: wppa-export.php:129
4478
  #, fuzzy
4487
  #: wppa-export.php:133
4488
  #, fuzzy
4489
  msgid "<br/>Done export albums."
4490
+ msgstr "<br/> Fertig Export-Alben."
4491
 
4492
  #: wppa-export.php:136
4493
  #, fuzzy
4497
  #: wppa-export.php:140
4498
  #, fuzzy
4499
  msgid "<br/>Closing zip."
4500
+ msgstr "<br/> Schließen Reißverschluss."
4501
 
4502
  #: wppa-export.php:141
4503
  #, fuzzy
4504
  msgid "<br/>Deleting temp files."
4505
+ msgstr "Löschen"
4506
 
4507
  #: wppa-export.php:150
4508
  #, fuzzy
4509
  msgid "<br/>Done!"
4510
+ msgstr "<br/> Erledigt!"
4511
 
4512
  #: wppa-export.php:196 wppa-export.php:265
4513
  #, fuzzy, php-format
4514
  msgid "Cannot write to file %s."
4515
+ msgstr "Kann nicht schreiben%s Datei."
4516
 
4517
  #: wppa-export.php:210
4518
  #, fuzzy
4519
  msgid "Could not open album output file."
4520
+ msgstr "Konnte nicht Album Ausgabedatei öffnen."
4521
 
4522
  #: wppa-export.php:215
4523
  #, fuzzy
4524
  msgid "Could not read album data."
4525
+ msgstr "Konnte nicht Albumdaten lesen."
4526
 
4527
  #: wppa-export.php:279
4528
  #, fuzzy
4529
  msgid "Could not open photo output file."
4530
+ msgstr "Foto konnte nicht Ausgabedatei öffnen."
4531
 
4532
  #: wppa-export.php:284
4533
  #, fuzzy
4534
  msgid "Could not read photo data."
4535
+ msgstr "Foto konnte nicht Daten gelesen."
4536
 
4537
  #: wppa-featen-widget.php:14
4538
  #, fuzzy
4539
  msgid "WPPA+ Featured Photos"
4540
+ msgstr "WPPA Ausgewählte Fotos"
4541
 
4542
  #: wppa-featen-widget.php:15 wppa-featen-widget.php:171
4543
  #, fuzzy
4544
  msgid "Featured Photos"
4545
  msgstr "Beliebte Fotos"
4546
 
4547
+ #: wppa-featen-widget.php:115 wppa-non-admin.php:899
4548
  msgid "View the featured photos"
4549
  msgstr "Sehen Sie die best bewertesten Fotos"
4550
 
4551
+ #: wppa-featen-widget.php:146 wppa-non-admin.php:901
4552
  msgid "There are no featured photos (yet)"
4553
  msgstr "Es sind (noch) keine vorgestellten Fotos"
4554
 
4578
  #: wppa-functions.php:2133 wppa-thumbnails.php:612
4579
  #, fuzzy
4580
  msgid "MyChoice"
4581
+ msgstr "Meine Wahl"
4582
 
4583
  #: wppa-functions.php:2225
4584
  #, php-format
4611
  msgid "Moderate comment admin"
4612
  msgstr "Moderiere Kommentare"
4613
 
4614
+ #: wppa-functions.php:2366 wppa-functions.php:4423 wppa-import.php:1524
4615
  #: wppa-upload.php:570
4616
  msgid "Moderate manage photo"
4617
  msgstr "Moderiere Fotos"
4655
  "Konnte Kommentar nicht werarbeiten. \n"
4656
  "Warscheinlich Zeitüberschreitung."
4657
 
4658
+ #: wppa-functions.php:2604 wppa-links.php:1514
4659
  msgid "A video can not be printed or downloaded"
4660
  msgstr "Ein Video kann nicht gedruckt oder heruntergeladen werden"
4661
 
4662
+ #: wppa-functions.php:3073
4663
  msgid "ERROR: Illegal attempt to enter a rating."
4664
  msgstr "ERROR: Illegal Versuch, eine Bewertung zu gelangen."
4665
 
4666
+ #: wppa-functions.php:3086
4667
  msgid "ERROR: Illegal attempt to enter a comment."
4668
  msgstr "ERROR: Illegal Versuch, einen Kommentar eingeben."
4669
 
4670
+ #: wppa-functions.php:3992
4671
  msgid "ERROR: Illegal attempt to create an album."
4672
  msgstr "ERROR: Illegal Versuch, ein Album zu erstellen."
4673
 
4674
+ #: wppa-functions.php:4000
4675
  msgid "Wrong captcha, please try again"
4676
  msgstr "Falsche Captcha, versuchen Sie es erneut"
4677
 
4678
+ #: wppa-functions.php:4016
4679
  #, php-format
4680
  msgid "Album #%s created"
4681
  msgstr "Album #%s erstellt"
4682
 
4683
+ #: wppa-functions.php:4022
4684
  msgid "Could not create album"
4685
  msgstr "Album konnte nicht erstellt werden"
4686
 
4687
+ #: wppa-functions.php:4034
4688
  msgid "ERROR: Illegal attempt to upload a file."
4689
  msgstr "ERROR: Illegal Versuch, eine Datei hochzuladen."
4690
 
4691
+ #: wppa-functions.php:4107
4692
  msgid "Photo upload"
4693
  msgstr "Fotos hochgeladen"
4694
 
4695
+ #: wppa-functions.php:4108
4696
  #, php-format
4697
  msgid "%d photo successfully uploaded"
4698
  msgid_plural "%d photos successfully uploaded"
4699
  msgstr[0] "%d Foto erfolgreich hochgeladen"
4700
  msgstr[1] "%d Fotos erfolgreich hochgeladen"
4701
 
4702
+ #: wppa-functions.php:4109
4703
  #, php-format
4704
  msgid "%s points added"
4705
  msgstr "%s Punkte hinzugefügt"
4706
 
4707
+ #: wppa-functions.php:4121
4708
  #, fuzzy
4709
  msgid "Your post is awaiting moderation."
4710
  msgstr "Dein Eintrag wartet auf Moderation."
4711
 
4712
+ #: wppa-functions.php:4130
4713
  msgid "Upload failed"
4714
  msgstr "Upload fehlgeschlagen"
4715
 
4716
+ #: wppa-functions.php:4133
4717
  #, php-format
4718
  msgid "%d upload failed"
4719
  msgid_plural "%d uploads failed"
4720
  msgstr[0] "%d Hochladung fehlgeschlagen"
4721
  msgstr[1] "%d Hochladungen fehlgeschlagen"
4722
 
4723
+ #: wppa-functions.php:4214
4724
  msgid "Error during upload"
4725
  msgstr "Fehler beim Hochladen"
4726
 
4727
+ #: wppa-functions.php:4270
4728
  #, fuzzy
4729
  msgid "Could not insert media into db."
4730
+ msgstr "Konnte nicht Medien in db einfügen."
4731
 
4732
+ #: wppa-functions.php:4310
4733
  msgid "Uploaded file is not an image"
4734
  msgstr "Hochgeladenen datei ist kein Bild"
4735
 
4736
+ #: wppa-functions.php:4316
4737
  #, php-format
4738
  msgid ""
4739
  "Only gif, jpg and png image files are supported. Returned filetype = %d."
4740
  msgstr ""
4741
  "Nur gif, jpg und png Bild-Dateien werden unterstützt. Kehrte filetype =% d."
4742
 
4743
+ #: wppa-functions.php:4324
4744
  #, php-format
4745
  msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
4746
  msgstr ""
4747
  "Hochgeladene Datei ist größer als das erlaubte Maximum von %d x %d Pixel."
4748
 
4749
+ #: wppa-functions.php:4332
4750
  #, php-format
4751
  msgid "Uploaded file %s already exists in this album."
4752
  msgstr "Hochgeladene Datei %s existiert bereits in diesem Album."
4753
 
4754
+ #: wppa-functions.php:4342
4755
  #, php-format
4756
  msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
4757
  msgstr "Das Bild ist zu groß. Max Fotogröße: %d x %d (% 2.1f MegaPixel)"
4758
 
4759
+ #: wppa-functions.php:4382
4760
  msgid "Could not insert photo into db."
4761
  msgstr "Konnte Foto nicht in db einfügen."
4762
 
4763
+ #: wppa-functions.php:4419 wppa-import.php:1520 wppa-upload.php:566
4764
  #, php-format
4765
  msgid "New photo uploaded: %s"
4766
  msgstr "Neues Foto hochgeladen: %s"
4767
 
4768
+ #: wppa-functions.php:4420 wppa-import.php:1521 wppa-upload.php:567
4769
  #, php-format
4770
  msgid "User %1$s uploaded photo %2$s into album %3$s"
4771
  msgstr "Benutzer %1$s hat Foto %2$s in album %3$s hochgeladen "
4772
 
4773
+ #: wppa-functions.php:4422 wppa-import.php:1523 wppa-upload.php:569
4774
  msgid "This upload requires moderation"
4775
  msgstr "Dieser Upload erfordert Moderation"
4776
 
4777
+ #: wppa-functions.php:4426 wppa-import.php:1527 wppa-upload.php:573
4778
  msgid "Details:"
4779
  msgstr "Details:"
4780
 
4781
+ #: wppa-functions.php:4427 wppa-import.php:1528 wppa-upload.php:574
4782
+ #: wppa-utils.php:943 wppa-utils.php:955
4783
  msgid "Manage photo"
4784
  msgstr "Fotos verwalten"
4785
 
4786
+ #: wppa-functions.php:4607
4787
  msgid "You can upload after"
4788
  msgstr "Sie können Hochladen nach"
4789
 
4790
+ #: wppa-functions.php:4650 wppa-functions.php:4654 wppa-functions.php:4661
4791
+ #: wppa-functions.php:4665 wppa-links.php:1106 wppa-non-admin.php:813
4792
+ #: wppa-settings-autosave.php:9364 wppa-settings-autosave.php:9376
4793
+ #: wppa-settings-autosave.php:9388 wppa-settings-autosave.php:9400
4794
+ #: wppa-settings-autosave.php:9412 wppa-settings-autosave.php:9424
4795
+ #: wppa-settings-autosave.php:9436 wppa-settings-autosave.php:9448
4796
  msgid "Download"
4797
  msgstr "Herunterladen"
4798
 
4799
+ #: wppa-functions.php:4709
4800
  msgid "Zoom in"
4801
  msgstr "Hineinzoomen"
4802
 
4803
+ #: wppa-functions.php:4740
4804
  #, fuzzy, php-format
4805
  msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
4806
  msgstr ""
4807
+ "Sie können wieder stimmen nach%s Tage,%s Stunden,%s Minuten und%s Sekunden"
 
4808
 
4809
+ #: wppa-functions.php:4743
4810
  #, fuzzy, php-format
4811
  msgid "You can vote again after %s hours, %s minutes and %s seconds"
4812
+ msgstr "Sie können wieder stimmen nach%s Stunden,%s Minuten und%s Sekunden"
4813
 
4814
+ #: wppa-functions.php:4746
4815
  #, fuzzy, php-format
4816
  msgid "You can vote again after %s minutes and %s seconds"
4817
+ msgstr "Sie können wieder stimmen nach%s Minuten und%s Sekunden"
4818
 
4819
  #: wppa-gp-widget.php:15
4820
  #, fuzzy
4821
  msgid "WPPA+ General purpose widget"
4822
+ msgstr "WPPA Allzweck-Widget"
4823
 
4824
  #: wppa-gp-widget.php:16 wppa-gp-widget.php:31 wppa-gp-widget.php:83
4825
  #, fuzzy
4826
  msgid "WPPA+ Text"
4827
+ msgstr "WPPA Text"
4828
 
4829
  #: wppa-gp-widget.php:91
4830
  #, fuzzy
4832
  "Enter the content just like a normal text widget. This widget will "
4833
  "interprete [wppa] shortcodes."
4834
  msgstr ""
4835
+ "Geben Sie den Inhalt wie ein normaler Text-Widget. Das Widget wird "
4836
+ "interprete [WPPA] Kurzwahlnummern."
4837
 
4838
  #: wppa-gp-widget.php:92
4839
  #, fuzzy, php-format
4840
  msgid "Don't forget size=\"%s\""
4841
+ msgstr "Vergessen Sie nicht, size = \"%s\""
4842
 
4843
  #: wppa-gp-widget.php:98
4844
  #, fuzzy
4860
  #: wppa-help.php:16
4861
  #, fuzzy
4862
  msgid "Docs & Demos"
4863
+ msgstr "Text & Demos"
4864
 
4865
  #: wppa-help.php:18
4866
  #, fuzzy
4867
  msgid "About and credits"
4868
+ msgstr "Über und Kredite"
4869
 
4870
  #: wppa-help.php:20
4871
  msgid ""
4878
  #: wppa-help.php:21
4879
  #, fuzzy
4880
  msgid "Thanx to R.J. Kaplan for WP Photo Album 1.5.1."
4881
+ msgstr "Thanx RJ Kaplan für WP Photo Album 1.5.1."
4882
 
4883
  #: wppa-help.php:22
4884
  #, fuzzy
4885
  msgid "Thanx to E.S. Rosenberg for programming tips on security issues."
4886
  msgstr ""
4887
+ "Thanx zu ES Rosenberg für die Programmierung Tipps zu Sicherheitsfragen."
4888
 
4889
  #: wppa-help.php:23
4890
  #, fuzzy
4891
  msgid "Thanx to Pavel &#352;orejs for the Numbar code."
4892
+ msgstr "Thanx zu Pavel Šorejs für den Numbar Code."
4893
 
4894
  #: wppa-help.php:24
4895
  #, fuzzy
4897
  "Thanx to the users who reported bugs and asked for enhancements. Without "
4898
  "them WPPA should not have been what it is now!"
4899
  msgstr ""
4900
+ "Thanx für die Benutzer, die Fehler und bat um Verbesserungen berichtet. Ohne "
4901
+ "sie sollten WPPA haben nicht das, was es jetzt ist!"
4902
 
4903
  #: wppa-help.php:27
4904
  #, fuzzy
4908
  #: wppa-help.php:29
4909
  #, fuzzy
4910
  msgid "WP Photo Album is released under the"
4911
+ msgstr "WP-Foto-Album wird unter der frei"
4912
 
4913
  #: wppa-help.php:29
4914
  #, fuzzy
4918
  #: wppa-import.php:153
4919
  #, fuzzy
4920
  msgid "Done!"
4921
+ msgstr "Fertig!"
4922
 
4923
  #: wppa-import.php:159
4924
  #, fuzzy
4925
  msgid "Failed!"
4926
+ msgstr "Fehlgeschlagen!"
4927
 
4928
  #: wppa-import.php:251
4929
  #, fuzzy
4930
  msgid "Select Local or Remote"
4931
+ msgstr "Wählen Sie Lokal oder Fern"
4932
 
4933
  #: wppa-import.php:254
4934
  #, fuzzy
4935
  msgid "Local"
4936
+ msgstr "Lokal"
4937
 
4938
  #: wppa-import.php:255
4939
  #, fuzzy
4940
  msgid "Remote"
4941
+ msgstr "Remote"
4942
 
4943
  #: wppa-import.php:263
4944
  #, fuzzy
4945
  msgid "Set Local/Remote"
4946
+ msgstr "Set Local / Remote"
4947
 
4948
  #: wppa-import.php:268
4949
  #, fuzzy
4951
  "The server does not allow you to import from remote locations. ( The php "
4952
  "directive allow_url_fopen is not set to 1 )"
4953
  msgstr ""
4954
+ "Der Server ermöglicht es Ihnen nicht von entfernten Standorten aus zu "
4955
+ "importieren. (Die PHP-Direktive allow_url_fopen ist nicht auf 1 gesetzt)"
4956
 
4957
  #: wppa-import.php:271
4958
  #, fuzzy
4960
  "The server does not allow you to import from remote locations. ( The curl "
4961
  "functions are not set up )"
4962
  msgstr ""
4963
+ "Der Server ermöglicht es Ihnen nicht von entfernten Standorten aus zu "
4964
+ "importieren. (Die Curl-Funktionen werden nicht eingerichtet)"
4965
 
4966
  #: wppa-import.php:281
4967
  #, fuzzy
4971
  #: wppa-import.php:293
4972
  #, fuzzy
4973
  msgid "Set source directory"
4974
+ msgstr "Quellverzeichnis"
4975
 
4976
  #: wppa-import.php:306
4977
  #, fuzzy
4981
  #: wppa-import.php:318
4982
  #, fuzzy
4983
  msgid "Find remote photos"
4984
+ msgstr "Finden Remote-Fotos"
4985
 
4986
  #: wppa-import.php:321
4987
  #, fuzzy
4988
  msgid "Working, please wait..."
4989
+ msgstr "Arbeiten, bitte warten ..."
4990
 
4991
  #: wppa-import.php:324
4992
  #, fuzzy
4995
  "i> or a full url to an image file like <i>http://mysite.com/wp-content/"
4996
  "uploads/wppa/4711.jpg</i>"
4997
  msgstr ""
4998
+ "Sie können entweder eine Web - Seite Adresse wie <i>http://mysite.com/mypage/"
4999
+ "</i> oder eine vollständige URL zu einer Bilddatei wie <i>http://mysite.com/"
5000
+ "wp-content/uploads/wppa/4711.jpg</i> eingeben"
5001
 
5002
  #: wppa-import.php:337 wppa-upload.php:137
5003
  #, fuzzy
5004
  msgid "No albums exist. You must"
5005
+ msgstr "Keine Alben vorhanden sind. Sie müssen"
5006
 
5007
  #: wppa-import.php:339 wppa-upload.php:139
5008
  #, fuzzy
5012
  #: wppa-import.php:341
5013
  #, fuzzy
5014
  msgid "beofre you can upload your photos."
5015
+ msgstr "beofre können Sie Ihre Fotos hochladen."
5016
 
5017
  #: wppa-import.php:362
5018
  #, php-format
5031
  #: wppa-import.php:388
5032
  #, fuzzy
5033
  msgid "Delete after successful extraction."
5034
+ msgstr "Löschen nach erfolgreicher Extraktion."
5035
 
5036
  #: wppa-import.php:439
5037
  #, php-format
5045
  msgid ""
5046
  "Remove from depot after successful import, or if the album already exists."
5047
  msgstr ""
5048
+ "Entfernen von Depot nach erfolgreichem Import, oder wenn das Album ist "
5049
+ "bereits vorhanden."
5050
 
5051
  #: wppa-import.php:522
5052
  #, php-format
5072
  #: wppa-import.php:536
5073
  #, fuzzy
5074
  msgid "Photos will be downsized during import."
5075
+ msgstr "Die Fotos werden beim Import verkleinert werden."
5076
 
5077
  #: wppa-import.php:545
5078
  #, fuzzy
5085
  "Photos that have (<em>name</em>)[<em>album</em>] will be imported by that "
5086
  "<em>name</em> in that <em>album</em>."
5087
  msgstr ""
5088
+ "Fotos , die haben <em>(Name)</em> <em>[Album]</em> wird mit diesem "
5089
+ "<em>Namen</em> in diesem <em>Album</em> importiert werden."
5090
 
5091
  #: wppa-import.php:602 wppa-import.php:854 wppa-import.php:963
5092
  #: wppa-import.php:1133
5093
  #, fuzzy
5094
  msgid "Remove from depot after successful import."
5095
+ msgstr "Entfernen von Depot nach dem erfolgreichen Import."
5096
 
5097
  #: wppa-import.php:613
5098
  #, fuzzy
5099
  msgid "Remove from depot after failed import."
5100
+ msgstr "Entfernen von Depot nach gescheiterter Import."
5101
 
5102
  #: wppa-import.php:631
5103
  #, fuzzy
5104
  msgid "Import into album"
5105
+ msgstr "Import in Album"
5106
 
5107
  #: wppa-import.php:634
5108
  #, fuzzy
5112
  #: wppa-import.php:646
5113
  #, fuzzy
5114
  msgid "Use backup if available"
5115
+ msgstr "Verwenden Sie Backup, falls verfügbar"
5116
 
5117
  #: wppa-import.php:662
5118
  #, fuzzy
5122
  #: wppa-import.php:687
5123
  #, fuzzy
5124
  msgid "Do not create duplicates"
5125
+ msgstr "Erstellen Sie keine Duplikate"
5126
 
5127
  #: wppa-import.php:703
5128
  #, fuzzy
5129
  msgid "Zoom previews"
5130
+ msgstr "Zoom-Vorschau"
5131
 
5132
  #: wppa-import.php:809
5133
  #, php-format
5145
  #, fuzzy
5146
  msgid "Files largenr than 64MB will always be removed after successful import."
5147
  msgstr ""
5148
+ "Dateien largenr als 64 MB wird immer nach dem erfolgreichen Import entfernt "
5149
+ "werden."
5150
 
5151
  #: wppa-import.php:916
5152
  #, php-format
5191
  #: wppa-import.php:1317
5192
  #, fuzzy
5193
  msgid "Stop Ajax Import"
5194
+ msgstr "Stoppen Ajax Import"
5195
 
5196
  #: wppa-import.php:1325
5197
  #, fuzzy
5198
  msgid "There are no importable files found in directory:"
5199
+ msgstr "Es gibt keine importierbaren Dateien im Verzeichnis gefunden:"
5200
 
5201
  #: wppa-import.php:1328
5202
  #, fuzzy
5203
  msgid "There are no photos found or left to process at url:"
5204
+ msgstr "Es gibt keine Fotos gefunden oder links unter der URL zu verarbeiten:"
5205
 
5206
  #: wppa-import.php:1332
5207
  #, fuzzy
5211
  #: wppa-import.php:1336
5212
  #, fuzzy
5213
  msgid "Compressed file types: .zip"
5214
+ msgstr "Komprimierte Dateitypen: .zip"
5215
 
5216
  #: wppa-import.php:1340
5217
  #, fuzzy
5218
  msgid "Photo file types:"
5219
+ msgstr "Fotodateitypen:"
5220
 
5221
  #: wppa-import.php:1347
5222
  #, fuzzy
5226
  #: wppa-import.php:1354
5227
  #, fuzzy
5228
  msgid "Audio file types:"
5229
+ msgstr "Audio-Dateitypen:"
5230
 
5231
  #: wppa-import.php:1360
5232
  #, fuzzy
5233
  msgid "WPPA+ file types: .amf .pmf"
5234
+ msgstr "WPPA Dateitypen: .amf .pmf"
5235
 
5236
  #: wppa-import.php:1362
5237
  #, fuzzy
5238
  msgid "Directories with optional subdirs containig photos"
5239
+ msgstr "Verzeichnisse mit optionaler subdirs containig Fotos"
5240
 
5241
  #: wppa-import.php:1364
5242
  #, fuzzy
5243
  msgid "Custom data files of type .csv"
5244
+ msgstr "Benutzerdefinierte Datendateien vom Typ CSV"
5245
 
5246
  #: wppa-import.php:1366
5247
  #, fuzzy
5251
  #: wppa-import.php:1370
5252
  #, fuzzy
5253
  msgid "Trying to continue..."
5254
+ msgstr "Der Versuch, um fortzufahren ..."
5255
 
5256
  #: wppa-import.php:1613
5257
  #, fuzzy
5258
  msgid "Unknown parent album:"
5259
+ msgstr "Unbekannt Mutter Album:"
5260
 
5261
  #: wppa-import.php:1613
5262
  #, fuzzy
5263
  msgid "--- none --- used."
5264
+ msgstr "--- Keine --- verwendet."
5265
 
5266
  #: wppa-import.php:1673
5267
  #, fuzzy, php-format
5268
  msgid "This album has been converted from ngg gallery %s"
5269
+ msgstr "Dieses Album wurde von NGG Galerie%s umgewandelt"
5270
 
5271
  #: wppa-import.php:1691
5272
  #, fuzzy
5273
  msgid "Processing files, please wait..."
5274
+ msgstr "Die Verarbeitung von Dateien, bitte warten ..."
5275
 
5276
  #: wppa-import.php:1691
5277
  #, fuzzy
5279
  "If the line of dots stops growing or your browser reports Ready, your server "
5280
  "has given up. In that case: try again"
5281
  msgstr ""
5282
+ "Wenn die Linie von Punkten aufhört zu wachsen oder Ihr Browser meldet Ready, "
5283
+ "hat Ihr Server aufgegeben. In diesem Fall: versuchen Sie es erneut"
5284
 
5285
  #: wppa-import.php:1691
5286
  #, fuzzy
5290
  #: wppa-import.php:1818
5291
  #, fuzzy, php-format
5292
  msgid "Photo %s already exists in album %s. (1)"
5293
+ msgstr "Foto%s existiert bereits in Album%s. (1)"
5294
 
5295
  #: wppa-import.php:1819
5296
  #, fuzzy
5300
  #: wppa-import.php:1838 wppa-upload.php:512 wppa-upload.php:546
5301
  #, fuzzy
5302
  msgid "Error inserting photo"
5303
+ msgstr "Fehler beim Einfügen Foto"
5304
 
5305
  #: wppa-import.php:1846
5306
  #, fuzzy, php-format
5307
  msgid "Error inserting photo %s, unknown or non existent album."
5308
+ msgstr "Fehler beim Einfügen Foto%s, unbekannten 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 "Auszeit. %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 "Fehler beim Einfügen Video%s, unbekannten oder nicht existent Album."
 
5324
 
5325
  #: wppa-import.php:2011
5326
  #, fuzzy, php-format
5327
  msgid "Error inserting audio %s, unknown or non existent album."
5328
+ msgstr "Fehler beim Einfügen Audio%s, unbekannten oder nicht existent Album."
 
5329
 
5330
  #: wppa-import.php:2027
5331
  #, fuzzy
5332
  msgid "Custom datafields enabled"
5333
+ msgstr "Benutzerdefinierte Datenfelder aktiviert"
5334
 
5335
  #: wppa-import.php:2058 wppa-import.php:2059
5336
  #, fuzzy
5337
  msgid "Processing"
5338
+ msgstr "Bearbeitung läuft"
5339
 
5340
  #: wppa-import.php:2068
5341
  #, fuzzy
5342
  msgid "Can not open file. Can not continue. (1)"
5343
+ msgstr "Kann Datei nicht öffnen. Kann nicht fortgesetzt werden. (1)"
5344
 
5345
  #: wppa-import.php:2073
5346
  #, fuzzy
5347
  msgid "Can not open file. Can not continue. (2)"
5348
+ msgstr "Kann Datei nicht öffnen. Kann nicht fortgesetzt werden. (2)"
5349
 
5350
  #: wppa-import.php:2080
5351
  #, fuzzy
5352
  msgid "Can not read header. Can not continue."
5353
+ msgstr "Kann nicht Header lesen. Kann nicht fortgesetzt werden."
5354
 
5355
  #: wppa-import.php:2085
5356
  #, fuzzy
5357
  msgid "Read header:"
5358
+ msgstr "Lesen Header:"
5359
 
5360
  #: wppa-import.php:2090
5361
  #, fuzzy
5362
  msgid "Invalid header. Can not continue."
5363
+ msgstr "Ungültige Header. Kann nicht fortgesetzt werden."
5364
 
5365
  #: wppa-import.php:2097
5366
  #, fuzzy
5367
  msgid "Invalid header. First item must be 'name', 'photoname' or 'filename'"
5368
  msgstr ""
5369
+ "Ungültige Header. Erster Punkt muss 'Name', 'photoname \"oder\" Dateiname "
5370
+ "\"sein"
5371
 
5372
  #: wppa-import.php:2104
5373
  #, fuzzy
5374
  msgid "All available custom data fields are in use. There is no space for"
5375
  msgstr ""
5376
  "Alle verfügbaren benutzerdefinierte Datenfelder sind im Einsatz. Es gibt "
5377
+ "keinen Raum für"
5378
 
5379
  #: wppa-import.php:2115
5380
  #, fuzzy, php-format
5381
  msgid "New caption %s added."
5382
+ msgstr "Neue Beschriftung%s hinzugefügt."
5383
 
5384
  #: wppa-import.php:2133
5385
  #, fuzzy
5386
  msgid "Read data:"
5387
+ msgstr "Daten lesen"
5388
 
5389
  #: wppa-import.php:2202
5390
  #, fuzzy
5391
  msgid "Done processing files."
5392
+ msgstr "Fertig-Dateien zu verarbeiten."
5393
 
5394
  #: wppa-import.php:2205
5395
  #, fuzzy
5396
  msgid "No files to import."
5397
+ msgstr "Keine Dateien zu importieren."
5398
 
5399
  #: wppa-import.php:2209
5400
  #, fuzzy
5401
  msgid "Zipfiles extracted."
5402
+ msgstr "ZipFiles extrahiert."
5403
 
5404
  #: wppa-import.php:2210
5405
  #, fuzzy
5409
  #: wppa-import.php:2211
5410
  #, fuzzy
5411
  msgid "Directory to album imports."
5412
+ msgstr "Directory Album Importe."
5413
 
5414
  #: wppa-import.php:2212
5415
  #, fuzzy, php-format
5419
  #: wppa-import.php:2215
5420
  #, fuzzy
5421
  msgid "Photos updated"
5422
+ msgstr "Fotos aktualisiert"
5423
 
5424
  #: wppa-import.php:2217
5425
  #, fuzzy, php-format
5426
  msgid "to %s locations"
5427
+ msgstr "zu%s Standorten"
5428
 
5429
  #: wppa-import.php:2221
5430
  #, fuzzy
5431
  msgid "single photos imported."
5432
+ msgstr "einzelne Fotos importiert."
5433
 
5434
  #: wppa-import.php:2224
5435
  #, fuzzy
5436
  msgid "Videos imported."
5437
+ msgstr "Videos importiert."
5438
 
5439
  #: wppa-import.php:2227
5440
  #, fuzzy
5441
  msgid "Audios imported."
5442
+ msgstr "Audios importiert."
5443
 
5444
  #: wppa-import.php:2230
5445
  #, fuzzy
5446
  msgid "CSVs imported,"
5447
+ msgstr "CSVs importiert,"
5448
 
5449
  #: wppa-import.php:2232
5450
  #, fuzzy
5454
  #: wppa-import.php:2362
5455
  #, fuzzy
5456
  msgid "Error: unexpected fgets() fail in wppa_get_meta_data()."
5457
+ msgstr "Fehler: unerwartete fgets () nicht in wppa_get_meta_data ()."
5458
 
5459
  #: wppa-import.php:2383
5460
  #, fuzzy
5461
  msgid "Class ZipArchive does not exist! Check your php configuration"
5462
  msgstr ""
5463
+ "Klasse ZipArchive existiert nicht! Überprüfen Sie Ihre PHP-Konfiguration"
5464
 
5465
  #: wppa-import.php:2413
5466
  #, fuzzy, php-format
5467
  msgid ""
5468
  "File %s is of an unsupported filetype and has been ignored during extraction."
5469
  msgstr ""
5470
+ "Die Datei%s ist von einem nicht unterstützten Dateityp und hat während der "
5471
+ "Extraktion ignoriert."
5472
 
5473
  #: wppa-import.php:2419
5474
  #, fuzzy, php-format
5475
  msgid "Zipfile %s processed. %s files extracted, %s files skipped."
5476
+ msgstr "Zipfile%s verarbeitet. %s Dateien extrahiert,%s Dateien übersprungen."
 
5477
 
5478
  #: wppa-import.php:2422
5479
  #, fuzzy
5483
  #: wppa-import.php:2488
5484
  #, fuzzy, php-format
5485
  msgid "Page <a href=\"%s\" target=\"_blank\" >%s</a> created."
5486
+ msgstr "Seite <a href=\"%s\" target=\"_blank\" >%s</a> erstellt."
5487
 
5488
  #: wppa-import.php:2492
5489
  #, fuzzy
5490
  msgid "Could not create page."
5491
+ msgstr "Konnte Seite erstellen."
5492
 
5493
  #: wppa-import.php:2607
5494
  #, fuzzy
5495
  msgid "--- My depot --- "
5496
+ msgstr "--- Mein Depot ---"
5497
 
5498
  #: wppa-import.php:2616
5499
  #, fuzzy
5500
  msgid "--- Ngg Galleries --- "
5501
+ msgstr "--- NGG Galerien ---"
5502
 
5503
  #: wppa-init.php:195
5504
  #, fuzzy
5506
  "</strong><h3>WP Photo ALbum Plus Error message</h3>This is a multi site "
5507
  "installation. One of the following 3 lines must be entered in wp-config.php:"
5508
  msgstr ""
5509
+ "<h3> WP Fotoalbum Plus-Fehlermeldung </h3> Dies ist ein Multi-Site-"
5510
+ "Installation. Eine der folgenden drei Zeilen müssen in wp-config.php "
5511
+ "eingetragen werden:"
5512
 
5513
  #: wppa-init.php:196
5514
  #, fuzzy
5516
  "<br /><br /><b>define( 'WPPA_MULTISITE_INDIVIDUAL', true );</b> <small>// "
5517
  "Multisite WP 3.5 or later with every site its own albums and photos</small>"
5518
  msgstr ""
5519
+ "<br /><br /> <b>define ( 'WPPA_MULTISITE_INDIVIDUAL', true);</b> <small>//</"
5520
+ "small> auf <small>mehreren Systemen WP 3.5 oder höher mit jedem Standort "
5521
+ "seine eigenen Alben und Fotos</small>"
5522
 
5523
  #: wppa-init.php:197
5524
  #, fuzzy
5526
  "<br /><b>define( 'WPPA_MULTISITE_BLOGSDIR', true );</b> <small>// Multisite "
5527
  "prior to WP 3.5 with every site its own albums and photos</small>"
5528
  msgstr ""
5529
+ "<br /> <b>define ( 'WPPA_MULTISITE_BLOGSDIR', true);</b> <small>//</small> "
5530
+ "auf <small>mehreren Systemen vor WP 3.5 mit jeder Standort seine eigenen "
5531
+ "Alben und Fotos</small>"
5532
 
5533
  #: wppa-init.php:198
5534
  #, fuzzy
5536
  "<br /><b>define( 'WPPA_MULTISITE_GLOBAL', true );</b> <small>// Multisite "
5537
  "with one common set of albums and photos</small>"
5538
  msgstr ""
5539
+ "<br /> <b>define ( 'WPPA_MULTISITE_GLOBAL', true);</b> <small>//</small> auf "
5540
+ "<small>mehreren Systemen mit einem gemeinsamen Satz von Alben und Fotos</"
5541
+ "small>"
5542
 
5543
  #: wppa-init.php:199
5544
  #, fuzzy
5546
  "<br /><br />For more information see: <a href=\"https://wordpress.org/"
5547
  "plugins/wp-photo-album-plus/faq/\">the faq</a>"
5548
  msgstr ""
5549
+ "<br /><br /> Weitere Informationen finden Sie unter : <a href=\"https://"
5550
+ "wordpress.org/plugins/wp-photo-album-plus/faq/\">die FAQ</a>"
5551
 
5552
  #: wppa-init.php:200
5553
  #, fuzzy
5555
  "<br /><br /><em>If you upload photos, they will be placed in the wrong "
5556
  "location and will not be visible for visitors!</em><strong>"
5557
  msgstr ""
5558
+ "<br /><br /> <em>Wenn Sie Fotos hochladen, werden sie an der falschen Stelle "
5559
+ "platziert werden und wird nicht für</em> die <em>Besucher sichtbar sein!</em>"
5560
 
5561
  #: wppa-init.php:232
5562
  #, fuzzy
5564
  "The photo index table needs to be rebuilt. Please run <i>Photo Albums -> "
5565
  "Settings</i> admin page <i>Table VIII-A9</i>"
5566
  msgstr ""
5567
+ "Der Foto-Index muss Tabelle neu aufgebaut werden. Bitte führen Sie ein "
5568
+ "<i>Fotoalbum -> Einstellungen</i> Admin - Seite <i>Tabelle VIII-A9</i>"
5569
 
5570
  #: wppa-init.php:236
5571
  #, fuzzy
5573
  "The album index table needs to be rebuilt. Please run <i>Photo Albums -> "
5574
  "Settings</i> admin page <i>Table VIII-A8</i>"
5575
  msgstr ""
5576
+ "Das Album Indextabelle muss neu aufgebaut werden. Bitte führen Sie ein "
5577
+ "<i>Fotoalbum -> Einstellungen</i> Admin - Seite <i>Tabelle VIII-A8</i>"
5578
 
5579
  #: wppa-init.php:240
5580
  #, fuzzy
5582
  "The avarage ratings need to be recalculated. Please run <i>Photo Albums -> "
5583
  "Settings</i> admin page <i>Table VIII-A5</i>"
5584
  msgstr ""
5585
+ "Die Durchschnittsbewertungen müssen neu berechnet werden. Bitte führen Sie "
5586
+ "ein <i>Fotoalbum -> Einstellungen</i> Admin - Seite <i>Tabelle VIII-A5</i>"
5587
 
5588
  #: wppa-init.php:243
5589
  #, fuzzy
5590
  msgid "Please finish setting up WP Photo ALbum Plus on"
5591
+ msgstr "Bitte beenden Sie WP Fotoalbum einrichten Plus auf"
5592
 
5593
  #: wppa-init.php:243
5594
  #, fuzzy
5601
  "</strong>The tags system needs to be converted. Please run <b>Photo Albums -"
5602
  "> Settings</b> admin page <b>Table VIII-B16</b><strong>"
5603
  msgstr ""
5604
+ "Die Markierungen System muss umgewandelt werden. Bitte führen Sie ein "
5605
+ "<b>Fotoalbum -> Einstellungen</b> Admin - Seite <b>Tabelle VIII-B16</b>"
5606
 
5607
  #: wppa-init.php:278
5608
  #, fuzzy
5610
  "</strong>The cats system needs to be converted. Please run <b>Photo Albums -"
5611
  "> Settings</b> admin page <b>Table VIII-B17</b><strong>"
5612
  msgstr ""
5613
+ "Die Katzen System muss umgewandelt werden. Bitte führen Sie ein <b>Fotoalbum "
5614
+ "-> Einstellungen</b> Admin - Seite <b>Tabelle VIII-B17</b>"
5615
 
5616
  #: wppa-init.php:304
5617
  #, fuzzy, php-format
5619
  "WPPA scripts will no longer be supported in version 6.6. Please convert the "
5620
  "%%wppa%% scripts to [wppa][/wppa] shortcodes before upgrading to version 6.6."
5621
  msgstr ""
5622
+ "WPPA Skripte werden nicht mehr in der Version 6.6 unterstützt werden. Bitte "
5623
+ "konvertieren Sie die %% WPPA %%skripte [WPPA] [/ WPPA] Kurzwahlnummern vor "
5624
+ "6.6 auf die Version aktualisieren."
5625
 
5626
  #: wppa-init.php:306
5627
  #, fuzzy
5628
  msgid "WPPA scripts found in the following Pages / Posts"
5629
+ msgstr "WPPA Skripte in den folgenden Seiten / Beiträge gefunden"
5630
 
5631
  #: wppa-init.php:325
5632
  #, fuzzy, php-format
5633
  msgid "For more information see the %s documentation page"
5634
+ msgstr "Weitere Informationen finden Sie in der Dokumentation Seite s%"
5635
 
5636
  #: wppa-items.php:259 wppa-thumbnails.php:1906
5637
  msgid "Gold medal"
5672
  #: wppa-items.php:336 wppa-items.php:535 wppa-settings-autosave.php:3634
5673
  #, fuzzy
5674
  msgid "none"
5675
+ msgstr "keiner"
5676
 
5677
  #: wppa-items.php:352
5678
  #, fuzzy
5679
  msgid "Nomen Nescio"
5680
+ msgstr "nomen Nominandum"
5681
 
5682
  #: wppa-items.php:355
5683
  #, fuzzy
5684
  msgid "Anonymus"
5685
+ msgstr "Namenlos"
5686
 
5687
  #: wppa-items.php:381 wppa-items.php:546 wppa-upload.php:125
5688
  #: wppa-upload.php:130
5708
  #: wppa-lasten-widget.php:12
5709
  #, fuzzy
5710
  msgid "WPPA+ Last Ten Uploaded Photos"
5711
+ msgstr "WPPA Last Ten Fotos hochgeladen"
5712
 
5713
  #: wppa-lasten-widget.php:13 wppa-lasten-widget.php:186
5714
  #, fuzzy
5715
  msgid "Last Ten Photos"
5716
+ msgstr "Last Ten Fotos"
5717
 
5718
  #: wppa-lasten-widget.php:45
5719
  #, fuzzy
5720
  msgid "Last Ten Uploaded Photos"
5721
+ msgstr "Last Ten Fotos hochgeladen"
5722
 
5723
+ #: wppa-lasten-widget.php:131 wppa-non-admin.php:904
5724
  msgid "View the most recent uploaded photos"
5725
  msgstr "Sehen Sie die neuesten hochgeladenen Fotos"
5726
 
5727
+ #: wppa-lasten-widget.php:155 wppa-non-admin.php:906
5728
  msgid "There are no uploaded photos (yet)"
5729
  msgstr "Es sind (noch) keine hochgeladene Fotos"
5730
 
5734
  "Select --- multiple see below --- in the Album selection box. Then enter "
5735
  "album numbers seperated by commas"
5736
  msgstr ""
5737
+ "Wählen Sie --- mehrere unten sehen --- im Album Auswahlbox. Dann durch Komma "
5738
+ "getrennt Album Nummern eingeben"
5739
 
5740
  #: wppa-lasten-widget.php:217
5741
  #, fuzzy
5746
  #: wppa-topten-widget.php:334
5747
  #, fuzzy
5748
  msgid "Display:"
5749
+ msgstr "Anzahl:"
5750
 
5751
  #: wppa-lasten-widget.php:227 wppa-thumbnail-widget.php:218
5752
  #: wppa-topten-widget.php:336
5763
  #: wppa-lasten-widget.php:234
5764
  #, fuzzy
5765
  msgid "Show time since:"
5766
+ msgstr "Zeit seit:"
5767
 
5768
  #: wppa-links.php:763
5769
  #, fuzzy
5778
  #: wppa-links.php:765
5779
  #, fuzzy
5780
  msgid "Del"
5781
+ msgstr "Entf."
5782
 
5783
  #: wppa-links.php:769 wppa-links.php:786
5784
  #, fuzzy
5785
  msgid "Are you sure you want to publish this photo?"
5786
+ msgstr "Sind Sie sicher, dass Sie dieses Foto zu veröffentlichen?"
5787
 
5788
  #: wppa-links.php:780 wppa-links.php:797
5789
  #, fuzzy
5790
  msgid "Approve"
5791
+ msgstr "Interessant"
5792
 
5793
  #: wppa-links.php:781
5794
  #, fuzzy
5808
  #: wppa-links.php:803
5809
  #, fuzzy
5810
  msgid "Are you sure you want to publish this comment?"
5811
+ msgstr "Sind Sie sicher, dass Sie diesen Kommentar zu veröffentlichen?"
5812
 
5813
  #: wppa-links.php:815
5814
  #, fuzzy
5815
  msgid "Are you sure you want to remove this comment?"
5816
+ msgstr "Bist Du sicher, dass Du diesen Kommentar entfernen möchtest?"
5817
 
5818
  #: wppa-links.php:829
5819
  #, fuzzy, php-format
5820
  msgid "Scheduled for %s"
5821
+ msgstr "Geplant für%s"
5822
 
5823
  #: wppa-links.php:1042 wppa-links.php:1045 wppa-slideshow.php:1123
5824
  msgid "Previous"
5825
  msgstr "Vorheriges"
5826
 
5827
+ #: wppa-links.php:1052 wppa-links.php:1055 wppa-non-admin.php:764
5828
  #: wppa-slideshow.php:1137
5829
  msgid "Next"
5830
  msgstr "Nächstes"
5842
  #: wppa-links.php:1265
5843
  #, fuzzy
5844
  msgid "View fullsize slideshow"
5845
+ msgstr "Vollbild ansehen Diashow"
5846
 
5847
  #: wppa-maintenance.php:66
5848
  #, fuzzy
5849
  msgid "You can run only one maintenance procedure at a time"
5850
+ msgstr "Sie können nur eine Wartungsprozedur zu einem Zeitpunkt ausgeführt"
5851
 
5852
  #: wppa-maintenance.php:126
5853
  #, fuzzy
5854
  msgid "Orphan photos"
5855
+ msgstr "Orphan Fotos"
5856
 
5857
  #: wppa-maintenance.php:126
5858
  #, fuzzy
5859
  msgid "This album contains refound lost photos"
5860
+ msgstr "Dieses Album enthält refound verloren Fotos"
5861
 
5862
  #: wppa-maintenance.php:154
5863
  #, fuzzy
5864
  msgid "Feature must be enabled in Table IV-A28 first"
5865
+ msgstr "Funktion muss zuerst in der Tabelle IV-A28 aktiviert sein"
5866
 
5867
  #: wppa-maintenance.php:161
5868
  #, fuzzy, php-format
5869
  msgid "From album %d does not exist"
5870
+ msgstr "Aus dem Album ist% d nicht existieren"
5871
 
5872
  #: wppa-maintenance.php:166
5873
  #, fuzzy, php-format
5874
  msgid "To album %d does not exist"
5875
+ msgstr "Zum Album ist% d nicht existieren"
5876
 
5877
  #: wppa-maintenance.php:170
5878
  #, fuzzy
5880
  msgstr "Von und zu den Alben sind identisch"
5881
 
5882
  #: wppa-maintenance.php:756 wppa-maintenance.php:772
5883
+ #: wppa-photo-admin-autosave.php:1762 wppa-photo-admin-autosave.php:1783
5884
+ #: wppa-settings-autosave.php:4546 wppa-setup.php:352
5885
  msgid "Required"
5886
  msgstr "Erforderlich"
5887
 
5890
  msgid ""
5891
  "List of Searcheable words <small>( Max 1000 entries of total %d )</small>"
5892
  msgstr ""
5893
+ "Liste der searcheable Wörter <small>(Max 1000 Einträge von insgesamt% d)</"
5894
  "small>"
5895
 
5896
  #: wppa-maintenance.php:865
5897
  #, fuzzy
5898
  msgid "There are no index items."
5899
+ msgstr "Es gibt keine Indexelemente."
5900
 
5901
  #: wppa-maintenance.php:875
5902
  #, fuzzy
5903
  msgid "List of WPPA+ log messages"
5904
+ msgstr "Liste der WPPA Log-Meldungen"
5905
 
5906
  #: wppa-maintenance.php:880
5907
  #, fuzzy
5908
  msgid "There are no error log messages"
5909
+ msgstr "Es gibt keine Fehlerprotokollmeldungen"
5910
 
5911
  #: wppa-maintenance.php:901
5912
  #, fuzzy, php-format
5913
  msgid "List of recent ratings <small>( Max 1000 entries of total %d )</small>"
5914
  msgstr ""
5915
+ "Liste der bisherigen Bewertungen <small>(Max 1000 Einträge von insgesamt"
5916
+ "% d)</small>"
5917
 
5918
  #: wppa-maintenance.php:951
5919
  #, fuzzy
5920
  msgid "There are no ratings"
5921
+ msgstr "Es liegen noch keine Bewertungen"
5922
 
5923
  #: wppa-maintenance.php:962
5924
  #, fuzzy, php-format
5925
  msgid "List of active sessions <small>( Max 1000 entries of total %d )</small>"
5926
  msgstr ""
5927
+ "Liste der aktiven Sitzungen <small>(Max 1000 Einträge von insgesamt% d)</"
5928
  "small>"
5929
 
5930
  #: wppa-maintenance.php:1022
5936
  #, fuzzy, php-format
5937
  msgid "List of comments <small>( Max 1000 entries of total %d )</small>"
5938
  msgstr ""
5939
+ "Liste der Kommentare <small>(Max 1000 Einträge von insgesamt% d)</small>"
5940
 
5941
  #: wppa-maintenance.php:1084
5942
  #, fuzzy
5946
  #: wppa-multitag-widget.php:13 wppa-tagcloud-widget.php:13
5947
  #, fuzzy
5948
  msgid "WPPA+ Photo Tags"
5949
+ msgstr "WPPA Foto-Tags"
5950
 
5951
  #: wppa-multitag-widget.php:14
5952
  #, fuzzy
5953
  msgid "Photo Tags Filter"
5954
+ msgstr "Foto-Tags filtern"
5955
 
5956
  #: wppa-multitag-widget.php:73
5957
  #, fuzzy
5961
  #: wppa-multitag-widget.php:74 wppa-tagcloud-widget.php:69
5962
  #, fuzzy
5963
  msgid "Select multiple tags or --- all ---:"
5964
+ msgstr "Wählen Sie mehrere Tags oder --- alle ---:"
5965
 
5966
+ #: wppa-non-admin.php:419
5967
  msgid "Press f for fullscreen."
5968
  msgstr "Drücken Sie f für Vollbild."
5969
 
5970
+ #: wppa-non-admin.php:429 wppa-non-admin.php:500
5971
  msgid "Toggle fullscreen"
5972
  msgstr "Wechsel zwischen Vollbild"
5973
 
5974
+ #: wppa-non-admin.php:494
5975
  msgid ""
5976
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
5977
  "dismiss this notice."
5979
  "Tasten: f = nächsten Modus; q,x = verlassen; p = vorheriges, n = nächstes, s "
5980
  "= Start / Stop, d = entlassen diesen Hinweis."
5981
 
5982
+ #: wppa-non-admin.php:495
5983
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
5984
  msgstr ""
5985
  "Tasten: f = nächsten Modus; q,x = verlassen; d = entlassen diesen Hinweis."
5986
 
5987
+ #: wppa-non-admin.php:755 wppa-settings-autosave.php:3834
5988
  #: wppa-slideshow.php:241
5989
  msgid "Start"
5990
  msgstr "Starte"
5991
 
5992
+ #: wppa-non-admin.php:756
5993
  msgid "Stop"
5994
  msgstr "Stop"
5995
 
5996
+ #: wppa-non-admin.php:757 wppa-slideshow.php:233
5997
  msgid "Slower"
5998
  msgstr "Langsamer"
5999
 
6000
+ #: wppa-non-admin.php:758 wppa-slideshow.php:249
6001
  msgid "Faster"
6002
  msgstr "Schneller"
6003
 
6004
+ #: wppa-non-admin.php:760
6005
  msgid "of"
6006
  msgstr "von"
6007
 
6008
+ #: wppa-non-admin.php:761
6009
  msgid "Previous photo"
6010
  msgstr "Vorheriges Foto"
6011
 
6012
+ #: wppa-non-admin.php:762
6013
  msgid "Next photo"
6014
  msgstr "Nächstes Foto"
6015
 
6016
+ #: wppa-non-admin.php:763
6017
  msgid "Prev."
6018
  msgstr "Vorheriges"
6019
 
6020
+ #: wppa-non-admin.php:765 wppa-slideshow.php:814 wppa-slideshow.php:828
6021
  #: wppa-slideshow.php:967
6022
  msgid "Average&nbsp;rating"
6023
  msgstr "Durchschnittliche Bewertung"
6024
 
6025
+ #: wppa-non-admin.php:766 wppa-slideshow.php:893 wppa-slideshow.php:926
6026
  #: wppa-slideshow.php:948
6027
  msgid "My&nbsp;rating"
6028
  msgstr "Meine&nbsp;Bewertung"
6029
 
6030
+ #: wppa-non-admin.php:767
6031
  msgid "Avg."
6032
  msgstr "Durchs."
6033
 
6034
+ #: wppa-non-admin.php:768
6035
  msgid "Mine"
6036
  msgstr "Meine"
6037
 
6038
+ #: wppa-non-admin.php:769
6039
  msgid "You marked this image as inappropriate."
6040
  msgstr "Sie markiert das Bild als unangemessen."
6041
 
6042
+ #: wppa-non-admin.php:772
6043
  msgid "Please enter your name"
6044
  msgstr "Bitte geben Sie Ihren Namen ein"
6045
 
6046
+ #: wppa-non-admin.php:773
6047
  msgid "Please enter a valid email address"
6048
  msgstr "Bitte geben Sie eine gültige eMail-Adresse ein"
6049
 
6050
+ #: wppa-non-admin.php:774
6051
  msgid "Please enter a comment"
6052
  msgstr "Bitte geben Sie einen Kommentar ein."
6053
 
6054
+ #: wppa-non-admin.php:808
6055
  msgid "Double click to start/stop slideshow running"
6056
  msgstr "Doppelklicken Sie zum Starten / Stoppen Diashow Lauf"
6057
 
6058
+ #: wppa-non-admin.php:910 wppa-photo-admin-autosave.php:265
6059
  #: wppa-potd-widget.php:178
6060
  msgid "By:"
6061
  msgstr "Durch:"
6062
 
6063
+ #: wppa-non-admin.php:913 wppa-slideshow-widget.php:124
6064
  msgid "No album defined (yet)"
6065
  msgstr "Noch kein Album definiert"
6066
 
6067
+ #: wppa-non-admin.php:917 wppa-thumbnail-widget.php:121
6068
  msgid "There are no photos (yet)"
6069
  msgstr "Es sind (noch) keine Fotos"
6070
 
6071
+ #: wppa-non-admin.php:920 wppa-upldr-widget.php:90
6072
  msgid "There are too many registered users in the system for this widget"
6073
  msgstr "Es gibt zu viele registrierte Benutzer im System für dieses Widget"
6074
 
6075
+ #: wppa-non-admin.php:921 wppa-upldr-widget.php:125 wppa-upldr-widget.php:132
6076
  msgid "Photos uploaded by"
6077
  msgstr "Fotos hochgeladen durch"
6078
 
6079
+ #: wppa-non-admin.php:925 wppa-thumbnails.php:692 wppa-thumbnails.php:1480
6080
  #: wppa-topten-widget.php:203 wppa-topten-widget.php:226
6081
  #: wppa-topten-widget.php:236
6082
  #, php-format
6085
  msgstr[0] "%d Ansicht"
6086
  msgstr[1] "%d Ansichte"
6087
 
6088
+ #: wppa-non-admin.php:927 wppa-topten-widget.php:261
6089
  msgid "There are no rated photos (yet)"
6090
  msgstr "Es sind (noch) keine bewertesten Fotos"
6091
 
6102
  #: wppa-photo-admin-autosave.php:96
6103
  #, fuzzy
6104
  msgid "You do not have the rights to do this"
6105
+ msgstr "Sie haben nicht die Rechte, dies zu tun"
6106
 
6107
  #: wppa-photo-admin-autosave.php:118
6108
  #, fuzzy
6109
  msgid "This photo is no longer awaiting moderation."
6110
+ msgstr "Dieses Foto wird nicht erwartet mehr Mäßigung."
6111
 
6112
  #: wppa-photo-admin-autosave.php:119
6113
  #, fuzzy
6114
  msgid "There are no photos awaiting moderation at this time."
6115
+ msgstr "Es gibt keine Fotos Mäßigung zu diesem Zeitpunkt erwarten."
6116
 
6117
  #: wppa-photo-admin-autosave.php:121
6118
  #, fuzzy
6119
  msgid "Manage all photos by timestamp"
6120
+ msgstr "Verwalten Sie alle Fotos durch Zeitstempel"
6121
 
6122
  #: wppa-photo-admin-autosave.php:138
6123
  #, fuzzy, php-format
6124
  msgid "Photo %s has been removed."
6125
+ msgstr "Foto%s wurde entfernt."
6126
 
6127
  #: wppa-photo-admin-autosave.php:143 wppa-photo-admin-autosave.php:1496
6128
  #, fuzzy
6132
  #: wppa-photo-admin-autosave.php:146 wppa-photo-admin-autosave.php:1499
6133
  #, fuzzy
6134
  msgid "No photos yet in this album."
6135
+ msgstr "Noch keine Fotos in diesem Album."
6136
 
6137
  #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:543
6138
  #, fuzzy
6187
  #: wppa-photo-admin-autosave.php:180
6188
  #, fuzzy, php-format
6189
  msgid "Album: %d<br />(%s)"
6190
+ msgstr "Album:% d <br /> (%s)"
6191
 
6192
  #: wppa-photo-admin-autosave.php:183
6193
  #, fuzzy
6197
  #: wppa-photo-admin-autosave.php:184
6198
  #, fuzzy
6199
  msgid "Are you sure you want to rotate this photo left?"
6200
+ msgstr "Sind Sie sicher, dass Sie dieses Foto links drehen möchten?"
6201
 
6202
  #: wppa-photo-admin-autosave.php:186
6203
  #, fuzzy
6204
  msgid "Are you sure you want to rotate this photo 180&deg;?"
6205
+ msgstr "Sind Sie sicher, dass Sie dieses Foto 180 ° gedreht werden soll?"
6206
 
6207
  #: wppa-photo-admin-autosave.php:188
6208
  #, fuzzy
6209
  msgid "Are you sure you want to rotate this photo right?"
6210
+ msgstr "Sind Sie sicher, dass Sie dieses Foto rechts drehen möchten?"
6211
 
6212
  #: wppa-photo-admin-autosave.php:193
6213
  #, fuzzy
6214
  msgid "If it says 'Photo rotated', the photo is rotated."
6215
+ msgstr "Wenn sie sagt 'Photo' gedreht, wird das Foto gedreht."
6216
 
6217
  #: wppa-photo-admin-autosave.php:197
6218
  #, fuzzy, php-format
6219
  msgid "If it says 'Photo rotated', the photo is rotated. %s the page."
6220
+ msgstr "Wenn sie sagt 'Photo' gedreht, wird das Foto gedreht. %s die Seite."
6221
 
6222
  #: wppa-photo-admin-autosave.php:211
6223
  #, fuzzy
6224
  msgid "Preview fullsize video"
6225
+ msgstr "Vorschau Vollbild-Video"
6226
 
6227
  #: wppa-photo-admin-autosave.php:226
6228
  #, fuzzy
6229
  msgid "Preview fullsize photo"
6230
+ msgstr "Vorschau Vollbild Foto"
6231
 
6232
  #: wppa-photo-admin-autosave.php:241
6233
  #, fuzzy
6237
  #: wppa-photo-admin-autosave.php:251
6238
  #, fuzzy
6239
  msgid "Upload:"
6240
+ msgstr "ERROR: kann keine Dateien hochladen."
6241
 
6242
  #: wppa-photo-admin-autosave.php:309
6243
  #, fuzzy
6257
  #: wppa-photo-admin-autosave.php:322
6258
  #, fuzzy, php-format
6259
  msgid "Disliked by %d visitors"
6260
+ msgstr "Unzufrieden um% d Besucher"
6261
 
6262
  #: wppa-photo-admin-autosave.php:326
6263
  #, fuzzy, php-format
6264
  msgid "%d pending votes."
6265
+ msgstr "% D anhängig Stimmen."
6266
 
6267
  #: wppa-photo-admin-autosave.php:336
6268
  #, fuzzy
6269
  msgid "Views"
6270
+ msgstr "Angesehen"
6271
 
6272
  #: wppa-photo-admin-autosave.php:347
6273
  #, fuzzy
6287
  #: wppa-photo-admin-autosave.php:364
6288
  #, fuzzy
6289
  msgid "Please select an album to move to first."
6290
+ msgstr "Bitte wählen Sie ein Album zum ersten zu bewegen."
6291
 
6292
  #: wppa-photo-admin-autosave.php:367
6293
  #, fuzzy
6294
  msgid "Move video to"
6295
+ msgstr "Bewegen Video"
6296
 
6297
  #: wppa-photo-admin-autosave.php:368
6298
  #, fuzzy
6299
  msgid "Move photo to"
6300
+ msgstr "Bewegen Sie das Foto zu"
6301
 
6302
  #: wppa-photo-admin-autosave.php:380
6303
  #, fuzzy
6312
  #: wppa-photo-admin-autosave.php:381
6313
  #, fuzzy
6314
  msgid "Please select an album to copy to first."
6315
+ msgstr "Bitte wählen Sie ein Album zum ersten zu kopieren."
6316
 
6317
  #: wppa-photo-admin-autosave.php:384
6318
  #, fuzzy
6319
  msgid "Copy video to"
6320
+ msgstr "Kopieren Video"
6321
 
6322
  #: wppa-photo-admin-autosave.php:385
6323
  #, fuzzy
6324
  msgid "Copy photo to"
6325
+ msgstr "Kopieren Foto"
6326
 
6327
  #: wppa-photo-admin-autosave.php:403
6328
  #, fuzzy
6332
  #: wppa-photo-admin-autosave.php:404 wppa-photo-admin-autosave.php:1380
6333
  #, fuzzy
6334
  msgid "Are you sure you want to delete this photo?"
6335
+ msgstr "Bist `Du sicher, dass Du dieses Foto löschen möchtest?"
6336
 
6337
  #: wppa-photo-admin-autosave.php:406
6338
  #, fuzzy
6347
  #: wppa-photo-admin-autosave.php:417
6348
  #, fuzzy
6349
  msgid "Autopage Permalink:"
6350
+ msgstr "Autopage Permalink:"
6351
 
6352
  #: wppa-photo-admin-autosave.php:430
6353
  #, fuzzy
6354
  msgid "Link url:"
6355
+ msgstr "Link URL:"
6356
 
6357
  #: wppa-photo-admin-autosave.php:435
6358
  #, fuzzy
6359
  msgid "Same tab"
6360
  msgstr "gleichem Tab"
6361
 
6362
+ #: wppa-photo-admin-autosave.php:436 wppa-settings-autosave.php:5025
6363
+ #: wppa-settings-autosave.php:6031
6364
  #, fuzzy
6365
  msgid "New tab"
6366
  msgstr "neuem Tab"
6368
  #: wppa-photo-admin-autosave.php:444
6369
  #, fuzzy
6370
  msgid "Link title:"
6371
+ msgstr "Linküberschrift:"
6372
 
6373
  #: wppa-photo-admin-autosave.php:453
6374
  #, fuzzy
6375
  msgid ""
6376
  "If you want this link to be used, check 'PS Overrule' checkbox in table VI."
6377
  msgstr ""
6378
+ "Wenn Sie diesen Link wollen verwendet werden, überprüfen 'PS Overrule' "
6379
+ "Checkbox in Tabelle VI."
6380
 
6381
  #: wppa-photo-admin-autosave.php:464
6382
  #, fuzzy
6398
  #: wppa-photo-admin-autosave.php:501 wppa-settings-autosave.php:3315
6399
  #, fuzzy
6400
  msgid "Upload"
6401
+ msgstr "ERROR: kann keine Dateien hochladen."
6402
 
6403
  #: wppa-photo-admin-autosave.php:511
6404
  #, fuzzy
6405
  msgid "Video size:"
6406
+ msgstr "Auflösung des Videos in Pixeln (Breite x Höhe)"
6407
 
6408
  #: wppa-photo-admin-autosave.php:517 wppa-slideshow-widget.php:201
6409
  #, fuzzy
6413
  #: wppa-photo-admin-autosave.php:520 wppa-photo-admin-autosave.php:528
6414
  #, fuzzy, php-format
6415
  msgid "pix, (0=default:%s)"
6416
+ msgstr "pix, (0 = default:%s)"
6417
 
6418
  #: wppa-photo-admin-autosave.php:525 wppa-slideshow-widget.php:202
6419
  #, fuzzy
6438
  #: wppa-photo-admin-autosave.php:579
6439
  #, fuzzy
6440
  msgid "Photo sizes:"
6441
+ msgstr "Foto Größen:"
6442
 
6443
  #: wppa-photo-admin-autosave.php:585
6444
  #, fuzzy
6448
  #: wppa-photo-admin-autosave.php:598
6449
  #, fuzzy
6450
  msgid "Remake display file and thumbnail file"
6451
+ msgstr "Remake Anzeigedatei und Thumbnail-Datei"
6452
 
6453
  #: wppa-photo-admin-autosave.php:598
6454
  #, fuzzy
6455
  msgid "Remake files"
6456
+ msgstr "Remake Dateien"
6457
 
6458
  #: wppa-photo-admin-autosave.php:603 wppa-photo-admin-autosave.php:628
6459
  #: wppa-photo-admin-autosave.php:651
6474
  #: wppa-photo-admin-autosave.php:658
6475
  #, fuzzy
6476
  msgid "Remake thumbnail file"
6477
+ msgstr "Remake Thumbnail-Datei"
6478
 
6479
+ #: wppa-photo-admin-autosave.php:658 wppa-settings-autosave.php:6912
6480
  #, fuzzy
6481
  msgid "Remake"
6482
+ msgstr "Neugestaltung"
6483
 
6484
  #: wppa-photo-admin-autosave.php:670
6485
  #, fuzzy
6486
  msgid "Stereophoto:"
6487
+ msgstr "Das Stereo:"
6488
 
6489
  #: wppa-photo-admin-autosave.php:674
6490
  #, fuzzy
6491
  msgid "no stereo image or ready anaglyph"
6492
+ msgstr "kein Stereobild oder fertig Anaglyphen"
6493
 
6494
  #: wppa-photo-admin-autosave.php:675
6495
  #, fuzzy
6496
  msgid "Left - right stereo image"
6497
+ msgstr "Links - rechts Stereobild"
6498
 
6499
  #: wppa-photo-admin-autosave.php:676
6500
  #, fuzzy
6501
  msgid "Right - left stereo image"
6502
+ msgstr "Rechts - links Stereobild"
6503
 
6504
  #: wppa-photo-admin-autosave.php:682
6505
  #, fuzzy
6527
  #, fuzzy
6528
  msgid "Refresh the page after changing to see the degrees being updated"
6529
  msgstr ""
6530
+ "Aktualisieren Sie die Seite nach dem Ändern der Grad wird aktualisiert, um "
6531
+ "zu sehen"
6532
 
6533
  #: wppa-photo-admin-autosave.php:733
6534
  #, fuzzy
6545
  #: wppa-photo-admin-autosave.php:765
6546
  #, fuzzy
6547
  msgid "Update Photo description"
6548
+ msgstr "Update-Fotobeschreibung"
6549
 
6550
  #: wppa-photo-admin-autosave.php:823
6551
  #, fuzzy
6552
  msgid "Tags:"
6553
+ msgstr "Schlagworte:"
6554
 
6555
  #: wppa-photo-admin-autosave.php:831
6556
  #, fuzzy
6557
  msgid "Separate tags with commas."
6558
+ msgstr "Schlagwörter mit Komma trennen"
6559
 
6560
  #: wppa-photo-admin-autosave.php:842
6561
  #, fuzzy
6572
  #: wppa-photo-admin-autosave.php:1457 wppa-potd-admin.php:226
6573
  #, fuzzy
6574
  msgid "Publish"
6575
+ msgstr "Veröffentlichen"
6576
 
6577
  #: wppa-photo-admin-autosave.php:865 wppa-photo-admin-autosave.php:887
6578
  #: wppa-photo-admin-autosave.php:1330 wppa-photo-admin-autosave.php:1447
6586
  #: wppa-photo-admin-autosave.php:1462
6587
  #, fuzzy
6588
  msgid "Scheduled"
6589
+ msgstr "Geplante Angebote"
6590
 
6591
  #: wppa-photo-admin-autosave.php:870 wppa-photo-admin-autosave.php:892
6592
  #: wppa-photo-admin-autosave.php:1335 wppa-photo-admin-autosave.php:1452
6601
  "Note: Featured photos should have a descriptive name; a name a search engine "
6602
  "will look for!"
6603
  msgstr ""
6604
+ "Hinweis: Bevorzugte Fotos sollten Sie einen beschreibenden Namen haben; "
6605
+ "einen Namen, eine Suchmaschine sucht nach!"
6606
 
6607
  #: wppa-photo-admin-autosave.php:911
6608
  #, fuzzy
6612
  #: wppa-photo-admin-autosave.php:918 wppa-photo-admin-autosave.php:931
6613
  #, fuzzy
6614
  msgid "File:"
6615
+ msgstr "Einstellungsdatei nicht gefunden"
6616
 
6617
  #: wppa-photo-admin-autosave.php:923 wppa-photo-admin-autosave.php:932
6618
  #, fuzzy
6619
  msgid "Pos:"
6620
+ msgstr "POS :"
6621
 
6622
  #: wppa-photo-admin-autosave.php:927
6623
  #, fuzzy
6627
  #: wppa-photo-admin-autosave.php:927
6628
  #, fuzzy
6629
  msgid "Are you sure? Once applied it can not be removed!"
6630
+ msgstr "Bist du sicher? Einmal aufgetragen es kann nicht entfernt werden!"
6631
 
6632
  #: wppa-photo-admin-autosave.php:927
6633
  #, fuzzy
6637
  #: wppa-photo-admin-autosave.php:937
6638
  #, fuzzy
6639
  msgid "Not configured"
6640
+ msgstr "Nicht konfiguriert"
6641
 
6642
  #: wppa-photo-admin-autosave.php:951
6643
  #, fuzzy, php-format
6644
  msgid "Video %s is not modified yet"
6645
+ msgstr "Video%s ist noch nicht modifizierte"
6646
 
6647
  #: wppa-photo-admin-autosave.php:954
6648
  #, fuzzy, php-format
6649
  msgid "Photo %s is not modified yet"
6650
+ msgstr "Photo%s ist noch nicht modifizierte"
6651
 
6652
  #: wppa-photo-admin-autosave.php:973
6653
  #, fuzzy
6654
  msgid "Single image shortcode"
6655
+ msgstr "Einzelbilder Short"
6656
 
6657
  #: wppa-photo-admin-autosave.php:979
6658
  #, fuzzy
6659
  msgid "Permalink"
6660
+ msgstr "Link"
6661
 
6662
  #: wppa-photo-admin-autosave.php:984
6663
  #, fuzzy
6664
  msgid "Hi resolution url"
6665
+ msgstr "Hallo Auflösung url"
6666
 
6667
  #: wppa-photo-admin-autosave.php:989
6668
  #, fuzzy
6672
  #: wppa-photo-admin-autosave.php:995
6673
  #, fuzzy
6674
  msgid "Thumbnail file url"
6675
+ msgstr "Thumbnail-Datei url"
6676
 
6677
  #: wppa-photo-admin-autosave.php:1039 wppa-photo-admin-autosave.php:1049
6678
  #, fuzzy
6682
  #: wppa-photo-admin-autosave.php:1165
6683
  #, fuzzy, php-format
6684
  msgid "Time is out after processing %d out of %d items."
6685
+ msgstr "Die Zeit ist aus nach der Verarbeitung% d aus% d Elemente."
6686
 
6687
  #: wppa-photo-admin-autosave.php:1178
6688
  #, fuzzy, php-format
6689
  msgid "%d photos deleted."
6690
+ msgstr "% D Fotos gelöscht."
6691
 
6692
  #: wppa-photo-admin-autosave.php:1181
6693
  #, fuzzy, php-format
6694
  msgid "%1$s photos moved to album %2$s."
6695
+ msgstr "%1$s Fotos bewegt Album%2$s."
6696
 
6697
  #: wppa-photo-admin-autosave.php:1184
6698
  #, fuzzy, php-format
6699
  msgid "%1$s photos copied to album %2$s."
6700
+ msgstr "%1$s Fotos zum Album%2$s kopiert."
6701
 
6702
  #: wppa-photo-admin-autosave.php:1187
6703
  #, fuzzy, php-format
6704
  msgid "Changed status to %1$s on %2$s photos."
6705
+ msgstr "Status geändert zu%1$s auf%2$s Fotos."
6706
 
6707
  #: wppa-photo-admin-autosave.php:1190
6708
  #, fuzzy, php-format
6709
  msgid "Changed owner to %1$s on %2$s photos."
6710
+ msgstr "Geänderte Besitzer%1$s auf%2$s Fotos."
6711
 
6712
  #: wppa-photo-admin-autosave.php:1193
6713
  #, fuzzy, php-format
6714
  msgid "%d photos processed."
6715
+ msgstr "% D Fotos verarbeitet."
6716
 
6717
  #: wppa-photo-admin-autosave.php:1313
6718
  #, fuzzy
6719
  msgid "Move to"
6720
+ msgstr "Gehe zu"
6721
 
6722
  #: wppa-photo-admin-autosave.php:1314
6723
  #, fuzzy
6727
  #: wppa-photo-admin-autosave.php:1316
6728
  #, fuzzy
6729
  msgid "Set status to"
6730
+ msgstr "Status auf"
6731
 
6732
  #: wppa-photo-admin-autosave.php:1319
6733
  #, fuzzy
6734
  msgid "Set owner to"
6735
+ msgstr "Set Besitzer"
6736
 
6737
  #: wppa-photo-admin-autosave.php:1326
6738
  msgid "- select a status -"
6745
  #: wppa-photo-admin-autosave.php:1353
6746
  #, fuzzy
6747
  msgid "Doit!"
6748
+ msgstr "TU es!"
6749
 
6750
  #: wppa-photo-admin-autosave.php:1355
6751
  #, fuzzy
6752
  msgid ""
6753
  "Pressing this button will reload the page after executing the selected action"
6754
  msgstr ""
6755
+ "Durch Drücken dieser Taste wird die Seite nach dem Ausführen der "
6756
+ "ausgewählten Aktion neu zu laden"
6757
 
6758
  #: wppa-photo-admin-autosave.php:1362 wppa-photo-admin-autosave.php:1481
6759
+ #: wppa-potd-admin.php:321 wppa-settings-autosave.php:8526
6760
  #, fuzzy
6761
  msgid "Preview"
6762
  msgstr "Vorschau"
6769
  #: wppa-photo-admin-autosave.php:1504
6770
  #, fuzzy, php-format
6771
  msgid "Page %d is empty, try <a href=\"%s\" >page %d</a>."
6772
+ msgstr "Seite% d leer ist , versuchen <a href=\"%s\" >Seite% d</a> ."
6773
 
6774
  #: wppa-photo-admin-autosave.php:1629
6775
  #, fuzzy
6777
  "Setting photo sequence order has only effect if the photo order method is "
6778
  "set to <b>Order#</b>"
6779
  msgstr ""
6780
+ "Einstellen Fotosequenz , um nur wirksam , wenn das Foto , um Verfahren "
6781
+ "eingestellt <b># Bestell</b>"
6782
 
6783
  #: wppa-photo-admin-autosave.php:1688
6784
  #, fuzzy
6798
  #: wppa-photo-admin-autosave.php:1691
6799
  #, fuzzy
6800
  msgid "Ord: "
6801
+ msgstr "ORD"
6802
 
6803
  #: wppa-photo-admin-autosave.php:1704
6804
  #, fuzzy
6805
  msgid "The album is empty."
6806
+ msgstr "Das Album ist leer."
6807
 
6808
+ #: wppa-photo-admin-autosave.php:1809
6809
  #, fuzzy
6810
  msgid "Combined"
6811
  msgstr "Kombiniert"
6812
 
6813
+ #: wppa-photo-admin-autosave.php:1846
6814
  #, fuzzy
6815
  msgid "Word"
6816
  msgstr "Word"
6817
 
6818
+ #: wppa-photo-admin-autosave.php:1849
6819
  #, fuzzy
6820
  msgid "Count"
6821
+ msgstr "Anzahl"
6822
 
6823
+ #: wppa-photo-admin-autosave.php:1901 wppa-settings-autosave.php:6450
6824
  #, fuzzy
6825
  msgid "Tags"
6826
+ msgstr "Schlagwort"
6827
 
6828
+ #: wppa-photo-admin-autosave.php:2021
6829
  #, fuzzy
6830
  msgid "Send"
6831
  msgstr "Absenden!"
6848
  #, fuzzy
6849
  msgid "Changes are updated immediately. The page will reload if required."
6850
  msgstr ""
6851
+ "Die Änderungen werden sofort aktualisiert. Die Seite wird neu geladen, falls "
6852
  "erforderlich."
6853
 
6854
  #: wppa-potd-admin.php:73 wppa-potd-admin.php:360
6855
  #: wppa-settings-autosave.php:517 wppa-settings-autosave.php:679
6856
  #: wppa-settings-autosave.php:701 wppa-settings-autosave.php:1449
6857
  #: wppa-settings-autosave.php:1470 wppa-settings-autosave.php:3095
6858
+ #: wppa-settings-autosave.php:3477 wppa-settings-autosave.php:4802
6859
+ #: wppa-settings-autosave.php:6700 wppa-settings-autosave.php:7476
6860
+ #: wppa-settings-autosave.php:9198
6861
  #, fuzzy
6862
  msgid "Setting"
6863
+ msgstr "Einstellungen"
6864
 
6865
  #: wppa-potd-admin.php:74 wppa-potd-admin.php:361
6866
  #: wppa-settings-autosave.php:518 wppa-settings-autosave.php:680
6867
  #: wppa-settings-autosave.php:702 wppa-settings-autosave.php:1450
6868
  #: wppa-settings-autosave.php:1471 wppa-settings-autosave.php:3096
6869
  #: wppa-settings-autosave.php:3120 wppa-settings-autosave.php:3457
6870
+ #: wppa-settings-autosave.php:3478 wppa-settings-autosave.php:4803
6871
+ #: wppa-settings-autosave.php:4827 wppa-settings-autosave.php:5003
6872
+ #: wppa-settings-autosave.php:5027 wppa-settings-autosave.php:6033
6873
+ #: wppa-settings-autosave.php:6702 wppa-settings-autosave.php:6726
6874
+ #: wppa-settings-autosave.php:7456 wppa-settings-autosave.php:7477
6875
+ #: wppa-settings-autosave.php:9199 wppa-settings-autosave.php:9221
6876
+ #: wppa-settings-autosave.php:9261 wppa-settings-autosave.php:9283
6877
+ #: wppa-settings-autosave.php:9329
6878
  #, fuzzy
6879
  msgid "Help"
6880
  msgstr "Hilfe"
6882
  #: wppa-potd-admin.php:82
6883
  #, fuzzy
6884
  msgid "Widget Title:"
6885
+ msgstr "Widget Titel:"
6886
 
6887
  #: wppa-potd-admin.php:83
6888
  #, fuzzy
6895
  "Enter/modify the title for the widget. This is a default and can be "
6896
  "overriden at widget activation."
6897
  msgstr ""
6898
+ "Geben Sie / ändern den Titel für das Widget. Dies ist ein Standard und kann "
6899
+ "bei Widget-Aktivierung nicht außer Kraft gesetzt werden."
6900
 
6901
  #: wppa-potd-admin.php:89
6902
  #, fuzzy
6903
  msgid "Widget Photo Width:"
6904
+ msgstr "Widget Foto Breite:"
6905
 
6906
  #: wppa-potd-admin.php:90
6907
  #, fuzzy
6908
  msgid "Enter the desired display width of the photo in the sidebar."
6909
+ msgstr "Geben Sie die gewünschte Anzeigebreite des Fotos in der Seitenleiste."
6910
 
6911
  #: wppa-potd-admin.php:93 wppa-settings-autosave.php:719
6912
  #: wppa-settings-autosave.php:728 wppa-settings-autosave.php:850
6919
  #: wppa-tinymce-shortcodes.php:613
6920
  #, fuzzy
6921
  msgid "Horizontal alignment:"
6922
+ msgstr "horizontale Ausrichtung"
6923
 
6924
  #: wppa-potd-admin.php:97
6925
  #, fuzzy
6926
  msgid "Enter the desired display alignment of the photo in the sidebar."
6927
  msgstr ""
6928
+ "Geben Sie die gewünschte Anzeige Ausrichtung des Fotos in der Seitenleiste."
6929
 
6930
  #: wppa-potd-admin.php:100 wppa-settings-autosave.php:3813
6931
+ #: wppa-settings-autosave.php:3827 wppa-settings-autosave.php:4098
6932
  #: wppa-slideshow-widget.php:215 wppa-tinymce-scripts.php:289
6933
  #: wppa-tinymce-shortcodes.php:618
6934
  #, fuzzy
6935
  msgid "center"
6936
+ msgstr "mittig"
6937
 
6938
  #: wppa-potd-admin.php:109
6939
  #, fuzzy
6940
  msgid "Enter the url. Do'nt forget the HTTP://"
6941
+ msgstr "Geben Sie die URL. Do'nt die HTTP vergessen: //"
6942
 
6943
  #: wppa-potd-admin.php:115
6944
  #, fuzzy
6948
  #: wppa-potd-admin.php:116
6949
  #, fuzzy
6950
  msgid "The balloon text when hovering over the photo."
6951
+ msgstr "Der Ballon Text, wenn die Maus über das Foto."
6952
 
6953
  #: wppa-potd-admin.php:125
6954
  #, fuzzy
6955
  msgid "Links are set on the <b>Photo Albums -> Settings</b> screen."
6956
+ msgstr "Links sind auf den <b>Fotoalben</b> gesetzt <b>-> Einstellungen.</b>"
 
6957
 
6958
  #: wppa-potd-admin.php:133
6959
  #, fuzzy
6960
  msgid "Select the content of the subtitle."
6961
+ msgstr "Wählen Sie den Inhalt der Untertitel."
6962
 
6963
  #: wppa-potd-admin.php:137
6964
  #, fuzzy
6970
  #: wppa-potd-admin.php:145
6971
  #, fuzzy
6972
  msgid "Counter:"
6973
+ msgstr "Zaehler:"
6974
 
6975
  #: wppa-potd-admin.php:146
6976
  #, fuzzy
6977
  msgid "Display a counter of other photos in the album."
6978
+ msgstr "Zeigen Sie einen Zähler von anderen Fotos im Album."
6979
 
6980
  #: wppa-potd-admin.php:153
6981
  #, fuzzy
6982
  msgid "The counter links to."
6983
+ msgstr "Die Zähler Links zu."
6984
 
6985
  #: wppa-potd-admin.php:156 wppa-settings-autosave.php:1075
6986
+ #: wppa-settings-autosave.php:5777 wppa-settings-autosave.php:5810
6987
+ #: wppa-settings-autosave.php:5907
6988
  #, fuzzy
6989
  msgid "thumbnails"
6990
  msgstr "Miniaturbilden"
6991
 
6992
+ #: wppa-potd-admin.php:156 wppa-settings-autosave.php:5778
6993
+ #: wppa-settings-autosave.php:5811 wppa-settings-autosave.php:5908
6994
  #, fuzzy
6995
  msgid "slideshow"
6996
  msgstr "Diaschau"
7003
  #: wppa-potd-admin.php:161
7004
  #, fuzzy
7005
  msgid "Type of album(s) to use:"
7006
+ msgstr "Typ album (s) zu verwenden:"
7007
 
7008
  #: wppa-potd-admin.php:162
7009
  #, fuzzy
7010
  msgid "Select physical or virtual."
7011
+ msgstr "Wählen Sie physischen oder virtuellen."
7012
 
7013
  #: wppa-potd-admin.php:165
7014
  #, fuzzy
7018
  #: wppa-potd-admin.php:165
7019
  #, fuzzy
7020
  msgid "virtual albums"
7021
+ msgstr "virtuellen Alben"
7022
 
7023
  #: wppa-potd-admin.php:170
7024
  #, fuzzy
7025
  msgid "Albums to use:"
7026
+ msgstr "Alben zu verwenden:"
7027
 
7028
  #: wppa-potd-admin.php:171 wppa-potd-admin.php:194
7029
  #, fuzzy
7032
 
7033
  #: wppa-potd-admin.php:190 wppa-potd-admin.php:644 wppa-potd-admin.php:669
7034
  #: wppa-potd-admin.php:707 wppa-settings-autosave.php:353
7035
+ #: wppa-settings-autosave.php:7320 wppa-settings-autosave.php:7347
7036
+ #: wppa-settings-autosave.php:8415 wppa-settings-autosave.php:8417
7037
+ #: wppa-settings-autosave.php:9706 wppa-settings-autosave.php:9723
7038
+ #: wppa-settings-autosave.php:9752 wppa-settings-autosave.php:9770
7039
+ #: wppa-settings-autosave.php:9794 wppa-settings-autosave.php:9815
7040
+ #: wppa-settings-autosave.php:9835 wppa-settings-autosave.php:9852
7041
+ #: wppa-settings-autosave.php:9896 wppa-settings-autosave.php:9949
7042
+ #: wppa-settings-autosave.php:9981
7043
  #, fuzzy
7044
  msgid "Setting unmodified"
7045
+ msgstr "Einstellen unmodifizierten"
7046
 
7047
  #: wppa-potd-admin.php:195
7048
  msgid "- all albums -"
7063
  #: wppa-potd-admin.php:206
7064
  #, fuzzy
7065
  msgid "Include (grand)children:"
7066
+ msgstr "Include (Enkel-) Kinder:"
7067
 
7068
  #: wppa-potd-admin.php:207
7069
  #, fuzzy
7070
  msgid "Include the photos of all sub albums?"
7071
+ msgstr "Fügen Sie die Fotos aller Unteralben?"
7072
 
7073
  #: wppa-potd-admin.php:213
7074
  #, fuzzy
7078
  #: wppa-potd-admin.php:214
7079
  #, fuzzy
7080
  msgid "Use any album, except the selection made above."
7081
+ msgstr ""
7082
+ "Verwenden Sie ein beliebiges Album, mit Ausnahme der Auswahl oben gemacht."
7083
 
7084
  #: wppa-potd-admin.php:221
7085
  #, fuzzy
7086
  msgid "Status filter:"
7087
+ msgstr "Der Status Filter:"
7088
 
7089
  #: wppa-potd-admin.php:222
7090
  #, fuzzy
7091
  msgid "Use only photos with a certain status."
7092
+ msgstr "Verwenden Sie nur die Fotos mit einem bestimmten Status."
7093
 
7094
  #: wppa-potd-admin.php:223
7095
  #, fuzzy
7096
  msgid "Select - none - if you want no filtering on status."
7097
+ msgstr "Wählen Sie - keine - wenn Sie keine Filterung auf Status wollen."
7098
 
7099
  #: wppa-potd-admin.php:225
7100
  msgid "- none -"
7103
  #: wppa-potd-admin.php:231
7104
  #, fuzzy
7105
  msgid "Any medal"
7106
+ msgstr "jede Medaille"
7107
 
7108
  #: wppa-potd-admin.php:244
7109
  #, fuzzy
7113
  #: wppa-potd-admin.php:245
7114
  #, fuzzy
7115
  msgid "Select the way a photo will be selected."
7116
+ msgstr "Wählen Sie die Art und Weise ein Foto ausgewählt."
7117
 
7118
  #: wppa-potd-admin.php:248
7119
  #, fuzzy
7120
  msgid "Fixed photo"
7121
+ msgstr "Feste Foto"
7122
 
7123
  #: wppa-potd-admin.php:250
7124
  #, fuzzy
7128
  #: wppa-potd-admin.php:251
7129
  #, fuzzy
7130
  msgid "Change every"
7131
+ msgstr "Öl-Wechsel alle"
7132
 
7133
  #: wppa-potd-admin.php:258
7134
  #, fuzzy
7135
  msgid "Change every period:"
7136
+ msgstr "Ändern Sie in jeder Periode:"
7137
 
7138
  #: wppa-potd-admin.php:259
7139
  #, fuzzy
7140
  msgid "The time period a certain photo is used."
7141
+ msgstr "Die Zeitspanne, ein bestimmtes Foto verwendet wird."
7142
 
7143
  #: wppa-potd-admin.php:262
7144
  #, fuzzy
7168
  #: wppa-potd-admin.php:267
7169
  #, fuzzy
7170
  msgid "day of week is order#"
7171
+ msgstr "Tag der Woche ist um #"
7172
 
7173
  #: wppa-potd-admin.php:268
7174
  #, fuzzy
7175
  msgid "day of month is order#"
7176
+ msgstr "Tag des Monats ist, um #"
7177
 
7178
  #: wppa-potd-admin.php:269
7179
  #, fuzzy
7180
  msgid "day of year is order#"
7181
+ msgstr "Tag des Jahres ist, um #"
7182
 
7183
  #: wppa-potd-admin.php:294
7184
  #, fuzzy
7185
  msgid "Day offset:"
7186
+ msgstr "Tag-Offset:"
7187
 
7188
  #: wppa-potd-admin.php:295
7189
  #, fuzzy
7190
  msgid "The difference between daynumber and photo order number."
7191
+ msgstr "Der Unterschied zwischen daynumber und Fotoauftragsnummer."
7192
 
7193
  #: wppa-potd-admin.php:306
7194
  #, fuzzy, php-format
7195
  msgid "Current day# = %s, offset ="
7196
+ msgstr "Aktueller Tag # =%s, offset ="
7197
 
7198
  #: wppa-potd-admin.php:315
7199
  #, fuzzy, php-format
7200
  msgid "Todays photo order# = %s."
7201
+ msgstr "Todays Foto order # =%s."
7202
 
7203
  #: wppa-potd-admin.php:322
7204
  #, fuzzy
7205
  msgid "Current \"photo of the day\":"
7206
+ msgstr "Aktuelle \"Foto des Tages\":"
7207
 
7208
  #: wppa-potd-admin.php:331
7209
  #, fuzzy
7218
  #: wppa-potd-admin.php:338
7219
  #, fuzzy
7220
  msgid "Not found."
7221
+ msgstr "Einstellungsdatei nicht gefunden"
7222
 
7223
  #: wppa-potd-admin.php:342
7224
  #, fuzzy
7245
  msgid "There are too many photos in the selection to show a preview ( %d )"
7246
  msgstr "Es gibt zu viele Fotos in der Auswahl eine Vorschau (% d) zu zeigen,"
7247
 
7248
+ #: wppa-potd-admin.php:573 wppa-settings-autosave.php:9634
7249
  #, fuzzy
7250
  msgid "The default for this setting is:"
7251
  msgstr "Der Standardwert für diese Einstellung ist:"
7252
 
7253
+ #: wppa-potd-admin.php:590 wppa-settings-autosave.php:9651
7254
  #, fuzzy
7255
  msgid "Click for help"
7256
+ msgstr "Für Hilfe hier klicken."
7257
 
7258
+ #: wppa-potd-admin.php:614 wppa-settings-autosave.php:9997
7259
  #, fuzzy
7260
  msgid "Checked"
7261
+ msgstr "Ausgewählt"
7262
 
7263
+ #: wppa-potd-admin.php:615 wppa-settings-autosave.php:9998
7264
  #, fuzzy
7265
  msgid "Unchecked"
7266
  msgstr "Nicht ausgewählt"
7267
 
7268
+ #: wppa-potd-admin.php:616 wppa-settings-autosave.php:5085
7269
+ #: wppa-settings-autosave.php:5128 wppa-settings-autosave.php:5206
7270
+ #: wppa-settings-autosave.php:5249 wppa-settings-autosave.php:5297
7271
+ #: wppa-settings-autosave.php:5344 wppa-settings-autosave.php:5391
7272
+ #: wppa-settings-autosave.php:5443 wppa-settings-autosave.php:5481
7273
+ #: wppa-settings-autosave.php:5531 wppa-settings-autosave.php:5573
7274
+ #: wppa-settings-autosave.php:5614 wppa-settings-autosave.php:9999
7275
  #, fuzzy
7276
  msgid "no link at all."
7277
  msgstr "keine Verbindung überhaupt."
7278
 
7279
+ #: wppa-potd-admin.php:617 wppa-settings-autosave.php:5086
7280
+ #: wppa-settings-autosave.php:5129 wppa-settings-autosave.php:5207
7281
+ #: wppa-settings-autosave.php:5250 wppa-settings-autosave.php:5298
7282
+ #: wppa-settings-autosave.php:5345 wppa-settings-autosave.php:5392
7283
+ #: wppa-settings-autosave.php:5444 wppa-settings-autosave.php:5482
7284
+ #: wppa-settings-autosave.php:5532 wppa-settings-autosave.php:5574
7285
+ #: wppa-settings-autosave.php:5615 wppa-settings-autosave.php:10000
7286
  #, fuzzy
7287
  msgid "the plain photo (file)."
7288
+ msgstr "die Ebene Foto (Datei)."
7289
 
7290
+ #: wppa-potd-admin.php:618 wppa-settings-autosave.php:5089
7291
+ #: wppa-settings-autosave.php:5132 wppa-settings-autosave.php:5208
7292
+ #: wppa-settings-autosave.php:5253 wppa-settings-autosave.php:5301
7293
+ #: wppa-settings-autosave.php:5348 wppa-settings-autosave.php:5395
7294
+ #: wppa-settings-autosave.php:5483 wppa-settings-autosave.php:5534
7295
+ #: wppa-settings-autosave.php:5576 wppa-settings-autosave.php:10001
7296
  #, fuzzy
7297
  msgid "the full size photo in a slideshow."
7298
+ msgstr "die in voller Größe Foto in einer Diashow."
7299
 
7300
+ #: wppa-potd-admin.php:619 wppa-settings-autosave.php:5090
7301
+ #: wppa-settings-autosave.php:5133 wppa-settings-autosave.php:5209
7302
+ #: wppa-settings-autosave.php:5254 wppa-settings-autosave.php:5302
7303
+ #: wppa-settings-autosave.php:5349 wppa-settings-autosave.php:5396
7304
+ #: wppa-settings-autosave.php:5484 wppa-settings-autosave.php:5535
7305
+ #: wppa-settings-autosave.php:5577 wppa-settings-autosave.php:5616
7306
+ #: wppa-settings-autosave.php:10002
7307
  #, fuzzy
7308
  msgid "the fullsize photo on its own."
7309
+ msgstr "die Gross Foto auf seine eigene."
7310
 
7311
+ #: wppa-potd-admin.php:620 wppa-settings-autosave.php:10003
7312
  #, fuzzy
7313
  msgid "the photo specific link."
7314
+ msgstr "das Foto speziellen Link."
7315
 
7316
+ #: wppa-potd-admin.php:621 wppa-settings-autosave.php:5088
7317
+ #: wppa-settings-autosave.php:5131 wppa-settings-autosave.php:5533
7318
+ #: wppa-settings-autosave.php:5575 wppa-settings-autosave.php:10004
7319
  #, fuzzy
7320
  msgid "the content of the album."
7321
  msgstr "der Inhalt des Albums."
7322
 
7323
+ #: wppa-potd-admin.php:622 wppa-settings-autosave.php:5130
7324
+ #: wppa-settings-autosave.php:10005
7325
  #, fuzzy
7326
  msgid "defined at widget activation."
7327
+ msgstr "bei Widget-Aktivierung definiert."
7328
 
7329
+ #: wppa-potd-admin.php:623 wppa-settings-autosave.php:5087
7330
+ #: wppa-settings-autosave.php:10006
7331
  #, fuzzy
7332
  msgid "defined on widget admin page."
7333
+ msgstr "definiert auf Widget Admin-Seite."
7334
 
7335
+ #: wppa-potd-admin.php:624 wppa-settings-autosave.php:5445
7336
+ #: wppa-settings-autosave.php:10007
7337
  #, fuzzy
7338
  msgid "same as title."
7339
+ msgstr "gleiche wie Titel."
7340
 
7341
  #: wppa-potd-admin.php:636 wppa-potd-admin.php:659 wppa-potd-admin.php:680
7342
+ #: wppa-settings-autosave.php:9696 wppa-settings-autosave.php:9715
7343
+ #: wppa-settings-autosave.php:9745 wppa-settings-autosave.php:9762
7344
+ #: wppa-settings-autosave.php:9786 wppa-settings-autosave.php:9807
7345
+ #: wppa-settings-autosave.php:9827 wppa-settings-autosave.php:9869
7346
  #, fuzzy
7347
  msgid "Slug ="
7348
  msgstr "Slug"
7349
 
7350
+ #: wppa-potd-admin.php:636 wppa-settings-autosave.php:9762
7351
+ #: wppa-settings-autosave.php:9786 wppa-settings-autosave.php:9807
7352
+ #: wppa-settings-autosave.php:9827
7353
  #, fuzzy
7354
  msgid "Values = yes, no"
7355
+ msgstr "Werte = yes, no"
7356
 
7357
+ #: wppa-potd-admin.php:680 wppa-settings-autosave.php:9869
7358
  #, fuzzy
7359
  msgid "Values = "
7360
  msgstr "Werte"
7362
  #: wppa-potd-widget.php:14
7363
  #, fuzzy
7364
  msgid "WPPA+ Photo Of The Day"
7365
+ msgstr "WPPA Foto des Tages"
7366
 
7367
  #: wppa-potd-widget.php:15
7368
  #, fuzzy
7375
  "You can set the content and the sizes in this widget in the <b>Photo Albums -"
7376
  "> Photo of the day</b> admin page."
7377
  msgstr ""
7378
+ "Sie können den Inhalt und die Größen in diesem Widget in den <b>Fotoalben</"
7379
+ "b> Set <b>-> Foto des Tages</b> Admin - Seite."
7380
 
7381
  #: wppa-qr-widget.php:13
7382
  #, fuzzy
7383
  msgid "WPPA+ QR Widget"
7384
+ msgstr "WPPA QR Widget"
7385
 
7386
  #: wppa-qr-widget.php:14 wppa-qr-widget.php:32
7387
  #, fuzzy
7388
  msgid "QR Widget"
7389
+ msgstr "QR Widget"
7390
 
7391
  #: wppa-qr-widget.php:95
7392
  #, fuzzy
7394
  "You can set the sizes and colors in this widget in the <b>Photo Albums -> "
7395
  "Settings</b> admin page."
7396
  msgstr ""
7397
+ "Sie können die Größen und Farben in diesem Widget in den <b>Fotoalben</b> "
7398
+ "Set <b>-> Einstellungen</b> Admin - Seite."
7399
 
7400
  #: wppa-search-widget.php:13
7401
  #, fuzzy
7419
  "Enter optional text that will appear before the input box. This may contain "
7420
  "HTML so you can change font size and color."
7421
  msgstr ""
7422
+ "Geben Sie optional Text, der vor dem Eingabefeld angezeigt. Dies kann HTML-"
7423
+ "Code enthalten, so dass Sie die Schriftgröße und die Farbe ändern kann."
7424
 
7425
  #: wppa-search-widget.php:108
7426
  #, fuzzy
7427
  msgid "Enable rootsearch"
7428
+ msgstr "Aktivieren Sie rootsearch"
7429
 
7430
  #: wppa-search-widget.php:113
7431
  #, fuzzy
7433
  "If you want the search to be limited to a specific album and its "
7434
  "(grand)children, select the album here."
7435
  msgstr ""
7436
+ "Wenn Sie die Suche wollen ein bestimmtes Album zu beschränken und ihre "
7437
+ "(Gross-) Kinder, wählen Sie hier das Album."
7438
 
7439
  #: wppa-search-widget.php:115
7440
  #, fuzzy
7442
  "If you select an album here, it will overrule the previous checkbox using "
7443
  "the album as a 'fixed' root."
7444
  msgstr ""
7445
+ "Wenn Sie ein Album hier wählen, wird die vorherige Checkbox mit dem Album "
7446
+ "als \"feste\" Wurzel außer Kraft setzen."
7447
 
7448
  #: wppa-search-widget.php:129
7449
  #, fuzzy
7450
  msgid "Enable subsearch"
7451
+ msgstr "Aktivieren Sie subsearch"
7452
 
7453
+ #: wppa-search-widget.php:134 wppa-settings-autosave.php:5959
7454
  #, fuzzy
7455
  msgid "Landing page"
7456
  msgstr "Landing Seite"
7463
  #: wppa-search-widget.php:186
7464
  #, fuzzy
7465
  msgid "The default page will be created automaticly"
7466
+ msgstr "Die Standard-Seite wird automatisch erstellt werden"
7467
 
7468
  #: wppa-settings-autosave.php:55
7469
  #, fuzzy
7473
  #: wppa-settings-autosave.php:103
7474
  #, fuzzy
7475
  msgid "Saved settings restored"
7476
+ msgstr "Die gespeicherten Einstellungen wiederhergestellt"
7477
 
7478
  #: wppa-settings-autosave.php:106
7479
  #, fuzzy
7480
  msgid "Unable to restore saved settings"
7481
+ msgstr "Kann nicht gespeicherte Einstellungen wiederherstellen"
7482
 
7483
  #: wppa-settings-autosave.php:112
7484
  #, fuzzy
7485
  msgid "Reset to default settings"
7486
+ msgstr "Zurücksetzen auf Standardeinstellungen"
7487
 
7488
  #: wppa-settings-autosave.php:115
7489
  #, fuzzy
7490
  msgid "Unable to set defaults"
7491
+ msgstr "Kann nicht Standardwerte"
7492
 
7493
  #: wppa-settings-autosave.php:120
7494
  #, fuzzy, php-format
7495
  msgid "Skinfile %s loaded"
7496
+ msgstr "Skinfile%s geladen"
7497
 
7498
  #: wppa-settings-autosave.php:131 wppa-settings-autosave.php:153
7499
  #: wppa-settings-autosave.php:174
7504
  #: wppa-settings-autosave.php:136
7505
  #, fuzzy, php-format
7506
  msgid "Uploaded file %s is not a .png file"
7507
+ msgstr "Die hochgeladene Datei%s ist kein .png-Datei"
7508
 
7509
  #: wppa-settings-autosave.php:140 wppa-settings-autosave.php:161
7510
  #: wppa-settings-autosave.php:197
7511
  #, fuzzy, php-format
7512
  msgid "Upload of %s done"
7513
+ msgstr "Hochladen von%s getan"
7514
 
7515
  #: wppa-settings-autosave.php:145 wppa-settings-autosave.php:166
7516
  #: wppa-settings-autosave.php:202
7517
  #, fuzzy
7518
  msgid "No file selected or error on upload"
7519
+ msgstr "Keine Datei ausgewählt oder Fehler beim Upload"
7520
 
7521
  #: wppa-settings-autosave.php:157
7522
  #, fuzzy, php-format
7523
  msgid "Uploaded file %s is not a .ttf file"
7524
+ msgstr "Die hochgeladene Datei%s ist kein .ttf-Datei"
7525
 
7526
  #: wppa-settings-autosave.php:179
7527
  #, fuzzy, php-format
7528
  msgid "Uploaded file %s is not a valid image file"
7529
+ msgstr "Die hochgeladene Datei%s ist keine gültige Bilddatei"
7530
 
7531
  #: wppa-settings-autosave.php:258
7532
  #, fuzzy, php-format
7534
  "%s invalid ratings removed. Please run Table VIII-A5: Rerate to fix the "
7535
  "averages."
7536
  msgstr ""
7537
+ "%s ungültig Bewertungen entfernt. Bitte führen Sie Tabelle VIII-A5: Rerate "
7538
+ "die Mittelwerte zu beheben."
7539
 
7540
  #: wppa-settings-autosave.php:269
7541
  #, fuzzy, php-format
7542
  msgid "%s last album used settings removed."
7543
+ msgstr "letzte Album s% verwendeten Einstellungen entfernt."
7544
 
7545
  #: wppa-settings-autosave.php:277
7546
  #, fuzzy
7547
  msgid "WP Photo Album Plus Settings"
7548
+ msgstr "WP-Foto-Album Plus-Einstellungen"
7549
 
7550
  #: wppa-settings-autosave.php:278
7551
  #, fuzzy
7552
  msgid "Database revision:"
7553
+ msgstr "Datenbank Revision:"
7554
 
7555
  #: wppa-settings-autosave.php:278
7556
  #, fuzzy
7557
  msgid "WP Charset:"
7558
+ msgstr "WP Charset:"
7559
 
7560
  #: wppa-settings-autosave.php:281
7561
  #, fuzzy
7562
  msgid "Multisite in singlesite mode."
7563
+ msgstr "Multisite in singlesite Modus."
7564
 
7565
  #: wppa-settings-autosave.php:284
7566
  #, fuzzy
7570
  #: wppa-settings-autosave.php:286
7571
  #, fuzzy
7572
  msgid "Blogid ="
7573
+ msgstr "blogid ="
7574
 
7575
  #: wppa-settings-autosave.php:303
7576
  #, fuzzy
7577
  msgid "Please de-activate plugin <i style=\"font-size:14px;\">"
7578
+ msgstr "Bitte de-aktivieren Plugin"
7579
 
7580
  #: wppa-settings-autosave.php:303
7581
  #, fuzzy
7582
  msgid ". </i>This plugin will cause wppa+ to function not properly."
7583
+ msgstr "Dieses Plugin. Verursacht WPPA nicht richtig funktionieren."
7584
 
7585
  #: wppa-settings-autosave.php:313
7586
  #, fuzzy
7587
  msgid "Please note that plugin <i style=\"font-size:14px;\">"
7588
+ msgstr "Bitte beachten Sie, dass Plugin"
7589
 
7590
  #: wppa-settings-autosave.php:313
7591
  #, fuzzy
7592
  msgid "</i> can cause wppa+ to function not properly if it is misconfigured."
7593
+ msgstr ""
7594
+ "kann WPPA verursachen nicht richtig funktionieren, wenn es falsch "
7595
+ "konfiguriert ist."
7596
 
7597
  #: wppa-settings-autosave.php:318
7598
  #, fuzzy
7602
  "uploading photos and not be able to generate thumbnail images. Ask your "
7603
  "hosting provider to add GD support with a minimal version 1.8."
7604
  msgstr ""
7605
+ "Es ist eine schwere Fehlkonfiguration in Ihrer Server PHP-Konfiguration. "
7606
+ "Funktion wppa_imagecreatefromjpeg () nicht vorhanden ist. Sie werden "
7607
+ "Probleme auftreten, wenn das Hochladen von Fotos und nicht die Thumbnail-"
7608
+ "Bilder erzeugen können. Fragen Sie Ihren Hosting-Provider GD-Unterstützung "
7609
+ "mit einer minimalen Version 1.8 hinzufügen."
7610
 
7611
  #: wppa-settings-autosave.php:323
7612
  #, fuzzy
7613
  msgid "Rebuilding the Album index needs completion. See Table VIII"
7614
+ msgstr ""
7615
+ "Der Wiederaufbau der Album-Index Bedürfnisse der Fertigstellung. Siehe "
7616
+ "Tabelle VIII"
7617
 
7618
  #: wppa-settings-autosave.php:324
7619
  #, fuzzy
7620
  msgid "Rebuilding the Photo index needs completion. See Table VIII"
7621
+ msgstr ""
7622
+ "das Photo Index Wiederaufbau braucht Fertigstellung. Siehe Tabelle VIII"
7623
 
7624
  #: wppa-settings-autosave.php:326
7625
  #, fuzzy
7626
  msgid "Remove empty albums needs completion. See Table VIII"
7627
+ msgstr "Entfernen Sie leere Alben braucht Fertigstellung. Siehe Tabelle VIII"
7628
 
7629
  #: wppa-settings-autosave.php:327
7630
  #, fuzzy
7631
  msgid "Applying new photo description needs completion. See Table VIII"
7632
+ msgstr ""
7633
+ "Neues Foto Beschreibung Anwendung benötigt Abschluss. Siehe Tabelle VIII"
7634
 
7635
  #: wppa-settings-autosave.php:328
7636
  #, fuzzy
7637
  msgid "Appending to photo description needs completion. See Table VIII"
7638
+ msgstr "Anfügen zum Foto Beschreibung braucht Abschluss. Siehe Tabelle VIII"
7639
 
7640
  #: wppa-settings-autosave.php:329
7641
  #, fuzzy
7642
  msgid "Removing from photo description needs completion. See Table VIII"
7643
+ msgstr "Entfernen von fotobeschreibung braucht Abschluss. Siehe Tabelle VIII"
7644
 
7645
  #: wppa-settings-autosave.php:330
7646
  #, fuzzy
7647
  msgid "Removing file extensions needs completion. See Table VIII"
7648
+ msgstr "Dateierweiterungen entfernen muss Fertigstellung. Siehe Tabelle VIII"
 
7649
 
7650
  #: wppa-settings-autosave.php:331
7651
  #, fuzzy
7652
  msgid "Regenerating the Thumbnails needs completion. See Table VIII"
7653
+ msgstr "die Thumbnails Regenerieren benötigt Abschluss. Siehe Tabelle VIII"
7654
 
7655
  #: wppa-settings-autosave.php:332
7656
  #, fuzzy
7657
  msgid "Rerating needs completion. See Table VIII"
7658
+ msgstr "Neubewertung braucht Fertigstellung. Siehe Tabelle VIII"
7659
 
7660
  #: wppa-settings-autosave.php:340
7661
  #, fuzzy
7663
  "A thumbframe width or height should not be smaller than a thumbnail size. "
7664
  "Please correct the corresponding setting(s) in Table I-C"
7665
  msgstr ""
7666
+ "Eine thumbframe Breite oder Höhe sollte nicht kleiner als eine "
7667
+ "Miniaturgröße. Bitte korrigieren Sie die entsprechende Einstellung (n) in "
7668
+ "der Tabelle IC"
7669
 
7670
  #: wppa-settings-autosave.php:345
7671
  #, fuzzy
7672
  msgid "Show legenda"
7673
+ msgstr "anzeigen Legenda"
7674
 
7675
  #: wppa-settings-autosave.php:347
7676
  #, fuzzy
7677
  msgid "Legenda:"
7678
+ msgstr "Legenda"
7679
 
7680
  #: wppa-settings-autosave.php:348 wppa-settings-autosave.php:350
7681
+ #: wppa-settings-autosave.php:2031 wppa-settings-autosave.php:5706
7682
  #, fuzzy
7683
  msgid "Button"
7684
+ msgstr "Button"
7685
 
7686
  #: wppa-settings-autosave.php:348
7687
  #, fuzzy
7688
  msgid "action that causes page reload."
7689
+ msgstr "Aktion, die Seite neu geladen verursacht."
7690
 
7691
+ #: wppa-settings-autosave.php:350 wppa-settings-autosave.php:10030
7692
+ #: wppa-settings-autosave.php:10049
7693
  #, fuzzy
7694
  msgid "Are you sure?"
7695
+ msgstr "Bist Du sicher, dass Du diese Foto löschen möchtest?"
 
7696
 
7697
  #: wppa-settings-autosave.php:351
7698
  #, fuzzy
7699
  msgid "action that does not cause page reload."
7700
+ msgstr "Aktion, die nicht Neuladen der Seite verursacht."
7701
 
7702
  #: wppa-settings-autosave.php:355
7703
  #, fuzzy
7707
  #: wppa-settings-autosave.php:357
7708
  #, fuzzy
7709
  msgid "Setting updated"
7710
+ msgstr "Einstellung aktualisiert."
7711
 
7712
  #: wppa-settings-autosave.php:359
7713
  #, fuzzy
7722
  #: wppa-settings-autosave.php:367
7723
  #, fuzzy
7724
  msgid "System"
7725
+ msgstr "System"
7726
 
7727
  #: wppa-settings-autosave.php:368
7728
  #, fuzzy
7729
  msgid "Access"
7730
+ msgstr "Zugang"
7731
 
7732
  #: wppa-settings-autosave.php:372
7733
  #, fuzzy
7744
  msgid "Layout"
7745
  msgstr "Layout"
7746
 
7747
+ #: wppa-settings-autosave.php:375 wppa-settings-autosave.php:4975
7748
  #, fuzzy
7749
  msgid "Lightbox"
7750
  msgstr "Lightbox"
7752
  #: wppa-settings-autosave.php:376
7753
  #, fuzzy
7754
  msgid "Links"
7755
+ msgstr "Links"
7756
 
7757
  #: wppa-settings-autosave.php:377
7758
  #, fuzzy
7764
  msgid "Navigation"
7765
  msgstr "Navigation"
7766
 
7767
+ #: wppa-settings-autosave.php:380 wppa-settings-autosave.php:8558
7768
+ #: wppa-settings-autosave.php:8603
7769
  #, fuzzy
7770
  msgid "Rating"
7771
  msgstr "ERROR: Illegal Versuch, eine Bewertung zu gelangen."
7783
  #: wppa-settings-autosave.php:384
7784
  #, fuzzy
7785
  msgid "Social Media"
7786
+ msgstr "Soziale Netzwerke"
7787
 
7788
  #: wppa-settings-autosave.php:386
7789
  #, fuzzy
7795
  msgid "Widgets"
7796
  msgstr "Widgets"
7797
 
7798
+ #: wppa-settings-autosave.php:388 wppa-settings-autosave.php:8396
7799
  #, fuzzy
7800
  msgid "Watermark"
7801
  msgstr "Wasserzeichen"
7804
  #, fuzzy
7805
  msgid "Click on the banner of a (sub)table to open/close it, or"
7806
  msgstr ""
7807
+ "Klicken Sie auf das Banner eines (Teil-) Tabelle zu öffnen / schließen Sie "
7808
+ "es, oder"
7809
 
7810
  #: wppa-settings-autosave.php:398
7811
  #, fuzzy
7812
  msgid "Show settings related to:"
7813
+ msgstr "Anzeigen Einstellungen in Bezug auf:"
7814
 
7815
  #: wppa-settings-autosave.php:404
7816
  #, fuzzy
7817
  msgid "and ( optionally ) to:"
7818
+ msgstr "und (optional) an:"
7819
 
7820
  #: wppa-settings-autosave.php:420
7821
  #, fuzzy
7825
  #: wppa-settings-autosave.php:422
7826
  #, fuzzy
7827
  msgid "Do a quick initial setup"
7828
+ msgstr "Führen Sie eine schnelle Ersteinrichtung"
7829
 
7830
  #: wppa-settings-autosave.php:423
7831
  #, fuzzy
7832
  msgid "Close quick setup"
7833
+ msgstr "Schließen Quick-Setup"
7834
 
7835
  #: wppa-settings-autosave.php:463
7836
  #, fuzzy
7837
  msgid "--- The same post or page ---"
7838
+ msgstr "--- Das gleiche Beitrag oder eine Seite ---"
7839
 
7840
  #: wppa-settings-autosave.php:494
7841
  #, fuzzy
7842
  msgid "--- No page to link to (yet) ---"
7843
+ msgstr "--- Keine Seite verlinkt auf (noch) ---"
7844
 
7845
  #: wppa-settings-autosave.php:499
7846
  #, fuzzy
7847
  msgid "--- Will be auto created ---"
7848
+ msgstr "--- Werden automatisch erstellt ---"
7849
 
7850
  #: wppa-settings-autosave.php:506
7851
  #, fuzzy
7852
  msgid "Table O:"
7853
+ msgstr "Tabelle A:"
7854
 
7855
  #: wppa-settings-autosave.php:506
7856
  #, fuzzy
7860
  #: wppa-settings-autosave.php:507
7861
  #, fuzzy
7862
  msgid "This table enables you to quickly do an inital setup."
7863
+ msgstr "Diese Tabelle ermöglicht es Ihnen, schnell eine inital Setup tun."
 
7864
 
7865
  #: wppa-settings-autosave.php:529
7866
  #, fuzzy
7868
  "To quickly setup WPPA+ please answer the following questions. You can alway "
7869
  "change any setting later. <a>Click on me!</a>"
7870
  msgstr ""
7871
+ "Um schnell Setup WPPA Sie bitte die folgenden Fragen zu beantworten. Sie "
7872
+ "können alle Tage später eine Einstellung ändern. <a>Klicken Sie auf mich!</a>"
7873
 
7874
  #: wppa-settings-autosave.php:531
7875
  #, fuzzy
7876
  msgid "Is your theme <i>responsive</i>?"
7877
+ msgstr "Ist Ihr Thema <i>anspricht?</i>"
7878
 
7879
  #: wppa-settings-autosave.php:532
7880
  #, fuzzy
7882
  "Responsive themes have a layout that varies with the size of the browser "
7883
  "window."
7884
  msgstr ""
7885
+ "Responsive Themen haben ein Layout, das mit der Größe des Browserfensters "
7886
+ "variiert."
7887
 
7888
  #: wppa-settings-autosave.php:533
7889
  #, fuzzy
7891
  "WPPA+ needs to know this to automaticly adept the width of the display to "
7892
  "the available width on the page."
7893
  msgstr ""
7894
+ "WPPA muss wissen, diese automatisch auf die Breite der Anzeige zur "
7895
+ "Verfügung stehende Breite auf der Seite adept."
7896
 
7897
  #: wppa-settings-autosave.php:540
7898
  #, fuzzy
7899
  msgid "Do you want to downsize photos during upload?"
7900
+ msgstr "Wollen Sie sich die Fotos beim Hochladen zu verkleinern?"
7901
 
7902
  #: wppa-settings-autosave.php:541
7903
  #, fuzzy
7905
  "Downsizing photos make them load faster to the visitor, without loosing "
7906
  "display quality"
7907
  msgstr ""
7908
+ "Downsizing Fotos machen laden sie schneller auf die Besucher, ohne die "
7909
+ "Anzeigequalität zu verlieren"
7910
 
7911
  #: wppa-settings-autosave.php:542
7912
  #, fuzzy
7914
  "If you answer yes, the photos will be downsized to max 1024 x 768 pixels. "
7915
  "You can change this later, if you like"
7916
  msgstr ""
7917
+ "Wenn Sie mit Ja antworten, werden die Fotos auf max 1024 x 768 Pixel "
7918
+ "verkleinert werden. Sie können dies später ändern, wenn Sie mögen"
7919
 
7920
  #: wppa-settings-autosave.php:549
7921
  #, fuzzy
7922
  msgid "Do you want to save the original photofiles?"
7923
+ msgstr "Wollen Sie die Original-Photofiles zu speichern?"
7924
 
7925
  #: wppa-settings-autosave.php:550
7926
  #, fuzzy
7927
  msgid "This will require considerable disk space on the server."
7928
+ msgstr "Dies wird viel Speicherplatz auf dem Server."
7929
 
7930
  #: wppa-settings-autosave.php:551
7931
  #, fuzzy
7934
  "wppa+ in a later stage, redo downsizing to a larger size afterwards, and "
7935
  "supply fullsize images for download."
7936
  msgstr ""
7937
+ "Wenn Sie mit Ja beantworten, werden Sie in der Lage sein, Wasserzeichen zu "
7938
+ "entfernen Sie mit WPPA angewendet in einem späteren Stadium, Redo zu einer "
7939
+ "größeren Größe Downsizing danach, und Versorgung Gross Bilder zum Download "
7940
+ "bereit."
7941
 
7942
  #: wppa-settings-autosave.php:558
7943
  #, fuzzy
7944
  msgid "May visitors upload photos?"
7945
+ msgstr "Können die Besucher Fotos hochladen?"
7946
 
7947
  #: wppa-settings-autosave.php:559
7948
  #, fuzzy
7949
  msgid ""
7950
  "It is safe to do so, but i will have to do some settings to keep it safe!"
7951
  msgstr ""
7952
+ "Es ist sicher, dies zu tun, aber ich werde müssen einige Einstellungen "
7953
+ "vorgenommen werden, damit es sicher!"
7954
 
7955
  #: wppa-settings-autosave.php:560
7956
  #, fuzzy
7959
  "upload photos at the front-end of the website and allow them to edit their "
7960
  "photos name and descriptions."
7961
  msgstr ""
7962
+ "Wenn Sie mit Ja antworten, wird nehme ich Sie angemeldete Benutzer "
7963
+ "aktivieren möchten Fotos auf dem Front-End der Website hochladen und es "
7964
+ "ihnen ermöglichen, ihre Fotos Namen und Beschreibungen zu bearbeiten."
7965
 
7966
  #: wppa-settings-autosave.php:561
7967
  #, fuzzy
7968
  msgid ""
7969
  "The photos will be hold for moderation, the admin will get notified by email."
7970
  msgstr ""
7971
+ "Die Fotos werden für die Moderation sein halten, wird der Administrator per "
7972
+ "E-Mail benachrichtigt werden."
7973
 
7974
  #: wppa-settings-autosave.php:562
7975
  #, fuzzy
7977
  "Each user will get his own album to upload to. These settings can be changed "
7978
  "later."
7979
  msgstr ""
7980
+ "Jeder Benutzer hat sein eigenes Album bekommen hochladen zu. Diese "
7981
+ "Einstellungen können später geändert werden."
7982
 
7983
  #: wppa-settings-autosave.php:569
7984
  #, fuzzy
7985
  msgid "Do you want the rating system active?"
7986
+ msgstr "Haben Sie das Rating-System aktiv werden?"
7987
 
7988
  #: wppa-settings-autosave.php:570
7989
  #, fuzzy
7990
  msgid "Enable the rating system and show the votes in the slideshow."
7991
  msgstr ""
7992
+ "Aktivieren Sie das Rating-System und zeigen die Stimmen in der Diashow."
7993
 
7994
  #: wppa-settings-autosave.php:571
7995
  #, fuzzy
7996
  msgid "You can configure the details of the rating system later"
7997
+ msgstr "Sie können die Details des Ratingsystems konfigurieren später"
7998
 
7999
  #: wppa-settings-autosave.php:578
8000
  #, fuzzy
8001
  msgid "Do you want the comment system active?"
8002
+ msgstr "Wollen Sie das Kommentarsystem aktiv?"
8003
 
8004
  #: wppa-settings-autosave.php:579
8005
  #, fuzzy
8006
  msgid "Enable the comment system and show the comments in the slideshow."
8007
  msgstr ""
8008
+ "Aktivieren Sie das Kommentarsystem und zeigen die Kommentare in der Diashow."
 
8009
 
8010
  #: wppa-settings-autosave.php:580
8011
  #, fuzzy
8012
  msgid "You can configure the details of the comment system later"
8013
+ msgstr "Sie können die Details des Kommentarsystem konfigurieren später"
8014
 
8015
  #: wppa-settings-autosave.php:587
8016
  #, fuzzy
8017
  msgid "Do you want the social media share buttons displayed?"
8018
+ msgstr "Wollen Sie die Social-Media-Aktie Schaltflächen angezeigt?"
8019
 
8020
  #: wppa-settings-autosave.php:588
8021
  #, fuzzy
8022
  msgid "Display the social media buttons in the slideshow"
8023
+ msgstr "Zeigen Sie die Social-Media-Tasten in der Diashow"
8024
 
8025
  #: wppa-settings-autosave.php:589
8026
  #, fuzzy
8028
  "These buttons share the specific photo rather than the page where it is "
8029
  "displayed on"
8030
  msgstr ""
8031
+ "Diese Tasten teilen sich die spezifische Foto anstelle der Seite, wo es "
8032
+ "angezeigt wird auf"
8033
 
8034
  #: wppa-settings-autosave.php:596
8035
  #, fuzzy
8036
  msgid "Are you going to use IPTC data?"
8037
+ msgstr "Werden Sie IPTC-Daten zu benutzen?"
8038
 
8039
  #: wppa-settings-autosave.php:597
8040
  #, fuzzy
8041
  msgid ""
8042
  "IPTC data is information you may have added in a photo manipulation program."
8043
  msgstr ""
8044
+ "IPTC-Daten sind Informationen, die Sie in einem Fotobearbeitungsprogramm "
8045
+ "hinzugefügt haben."
8046
 
8047
  #: wppa-settings-autosave.php:598 wppa-settings-autosave.php:607
8048
  #, fuzzy
8049
  msgid ""
8050
  "The information can be displayed in slideshows and in photo descriptions."
8051
  msgstr ""
8052
+ "Die Informationen können in Diashows und in Fotobeschreibungen angezeigt."
8053
 
8054
  #: wppa-settings-autosave.php:605
8055
  #, fuzzy
8056
  msgid "Are you going to use EXIF data?"
8057
+ msgstr "Werden Sie EXIF-Daten zu benutzen?"
8058
 
8059
  #: wppa-settings-autosave.php:606
8060
  #, fuzzy
8062
  "EXIF data is information from the camera like model no, focal distance and "
8063
  "aperture used."
8064
  msgstr ""
8065
+ "EXIF-Daten sind Informationen von der Kamera wie Modell-Nr, Brennweite und "
8066
  "Blende verwendet."
8067
 
8068
  #: wppa-settings-autosave.php:614
8069
  #, fuzzy
8070
  msgid "Are you going to use GPX data?"
8071
+ msgstr "Gehst du GPX-Daten zu benutzen?"
8072
 
8073
  #: wppa-settings-autosave.php:615
8074
  #, fuzzy
8076
  "Some cameras and mobile devices save the geographic location where the photo "
8077
  "is taken."
8078
  msgstr ""
8079
+ "Einige Kameras und mobile Geräte speichern die geographische Lage, wo das "
8080
  "Foto aufgenommen wurde."
8081
 
8082
  #: wppa-settings-autosave.php:616
8083
  #, fuzzy
8084
  msgid "A Google map can be displayed in slideshows."
8085
+ msgstr "Eine Google-Karte kann in Diashows angezeigt."
8086
 
8087
  #: wppa-settings-autosave.php:623
8088
  #, fuzzy
8089
  msgid "Are you going to use Fotomoto?"
8090
+ msgstr "Werden Sie Fotomoto zu benutzen?"
8091
 
8092
  #: wppa-settings-autosave.php:624
8093
  #, fuzzy
8095
  "<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> is an "
8096
  "on-line print service."
8097
  msgstr ""
8098
+ "<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> ist ein "
8099
+ "Druckdienst on-line."
8100
 
8101
  #: wppa-settings-autosave.php:625
8102
  #, fuzzy
8103
  msgid "If you answer Yes, you will have to open an account on Fotomoto."
8104
+ msgstr ""
8105
+ "Wenn Sie auf Ja beantworten, werden Sie ein Konto auf Fotomoto öffnen müssen."
8106
 
8107
  #: wppa-settings-autosave.php:632
8108
  #, fuzzy
8109
  msgid "Are you going to add videofiles?"
8110
+ msgstr "Werden Sie Videodateien hinzufügen?"
8111
 
8112
  #: wppa-settings-autosave.php:633
8113
  #, fuzzy
8114
  msgid "You can mix videos and photos in any album."
8115
+ msgstr "Sie können Videos und Fotos in jedem Album mischen."
8116
 
8117
  #: wppa-settings-autosave.php:634 wppa-settings-autosave.php:643
8118
  #: wppa-settings-autosave.php:652
8119
  #, fuzzy
8120
  msgid "You can configure the details later"
8121
+ msgstr "Sie können die Details später konfigurieren"
8122
 
8123
  #: wppa-settings-autosave.php:641
8124
  #, fuzzy
8125
  msgid "Are you going to add audiofiles?"
8126
+ msgstr "Werden Sie Audiodateien hinzufügen?"
8127
 
8128
  #: wppa-settings-autosave.php:642
8129
  #, fuzzy
8130
  msgid "You can add audio to photos in any album."
8131
+ msgstr "Sie können Audio-Fotos in jedem Album hinzufügen."
8132
 
8133
  #: wppa-settings-autosave.php:650
8134
  #, fuzzy
8135
  msgid "Are you going to upload 3D stereo photos?"
8136
+ msgstr "Werden Sie 3D-Stereo-Fotos hochladen?"
8137
 
8138
  #: wppa-settings-autosave.php:651
8139
  #, fuzzy
8140
  msgid "You can add l-r and r-l stereo photo pairs."
8141
+ msgstr "Sie können lr und rl Stereo-Foto-Paare hinzufügen."
8142
 
8143
  #: wppa-settings-autosave.php:659
8144
  #, fuzzy
8148
  #: wppa-settings-autosave.php:660
8149
  #, fuzzy
8150
  msgid "If you are ready answering these questions, select <b>yes</b>"
8151
+ msgstr ""
8152
+ "Wenn Sie bereit sind diese Fragen zu beantworten sind, wählen Sie <b>ja</b>"
8153
 
8154
  #: wppa-settings-autosave.php:661
8155
  #, fuzzy
8157
  "You can change any setting later, and be more specific and add a lot of "
8158
  "settings. For now it is enough, go create albums and upload photos!"
8159
  msgstr ""
8160
+ "Sie können später eine Einstellung ändern, und sein spezifischer und viele "
8161
+ "Einstellungen hinzufügen. gehen Denn jetzt ist es genug, Alben erstellen und "
8162
+ "Fotos hochladen!"
8163
 
8164
  #: wppa-settings-autosave.php:665
8165
  #, fuzzy
8167
  "Thank you!. The most important settings are done now. You can refine your "
8168
  "settings, the behaviour and appearance of WPPA+ in the Tables below."
8169
  msgstr ""
8170
+ "Vielen Dank!. Die wichtigsten Einstellungen sind jetzt fertig. Sie können "
8171
+ "Ihre Einstellungen, um das Verhalten und Aussehen von WPPA in den "
8172
+ "nachstehenden Tabellen zu verfeinern."
8173
 
8174
  #: wppa-settings-autosave.php:690
8175
  #, fuzzy
8187
  "This table describes all the sizes and size options (except fontsizes) for "
8188
  "the generation and display of the WPPA+ elements."
8189
  msgstr ""
8190
+ "In dieser Tabelle werden alle Größen und Größenoptionen (außer "
8191
+ "Schriftgrößen) zur Erzeugung und Anzeige der WPPA Elemente."
8192
 
8193
  #: wppa-settings-autosave.php:709
8194
  #, fuzzy
8195
  msgid "WPPA+ global system related size settings"
8196
+ msgstr "WPPA global systembezogenen Größeneinstellungen"
8197
 
8198
  #: wppa-settings-autosave.php:711
8199
  #, fuzzy
8203
  #: wppa-settings-autosave.php:712
8204
  #, fuzzy
8205
  msgid "The width of the main column in your theme's display area."
8206
+ msgstr "Die Breite der Hauptspalte in Ihrem Thema der Anzeigebereich."
8207
 
8208
  #: wppa-settings-autosave.php:713
8209
  #, fuzzy
8210
  msgid "Enter the width of the main column in your theme's display area."
8211
+ msgstr ""
8212
+ "Geben Sie die Breite der Hauptspalte in Ihrem Thema der Anzeigebereich."
8213
 
8214
  #: wppa-settings-autosave.php:714
8215
  #, fuzzy
8217
  "You should set this value correctly to make sure the fullsize images are "
8218
  "properly aligned horizontally."
8219
  msgstr ""
8220
+ "Sie sollten diesen Wert richtig eingestellt, dass die Gross Bilder zu machen "
8221
+ "sind horizontal korrekt ausgerichtet."
8222
 
8223
  #: wppa-settings-autosave.php:715
8224
  #, fuzzy
8225
  msgid ""
8226
  "You may enter 'auto' for use in themes that have a floating content column."
8227
  msgstr ""
8228
+ "Sie können \"Auto\" für den Einsatz in Themen ein, die einen schwebenden "
8229
+ "Inhaltsspalte haben."
8230
 
8231
  #: wppa-settings-autosave.php:716
8232
  #, fuzzy
8233
  msgid "The use of 'auto' is required for responsive themes."
8234
+ msgstr "Die Verwendung von 'auto' ist für ansprechende Themen erforderlich."
8235
 
8236
  #: wppa-settings-autosave.php:724
8237
  #, fuzzy
8241
  #: wppa-settings-autosave.php:725
8242
  #, fuzzy
8243
  msgid "The most often displayed colun width in responsive theme"
8244
+ msgstr "Die am häufigsten angezeigt Colun Breite in ansprechenden Thema"
8245
 
8246
  #: wppa-settings-autosave.php:726
8247
  #, fuzzy
8249
  "Change this value only if your responsive theme shows initially a wrong "
8250
  "column width."
8251
  msgstr ""
8252
+ "Ändern Sie diesen Wert nur dann, wenn Sie den Responsive Thema zunächst eine "
8253
  "falsche Spaltenbreite zeigt."
8254
 
8255
  #: wppa-settings-autosave.php:733
8256
  #, fuzzy
8257
  msgid "Resize on Upload"
8258
+ msgstr "Ändern Sie die Größe auf Upload"
8259
 
8260
  #: wppa-settings-autosave.php:734
8261
  #, fuzzy
8262
  msgid "Indicate if the photos should be resized during upload."
8263
+ msgstr ""
8264
+ "Geben Sie, wenn die Fotos beim Hochladen der Größe verändert werden soll."
8265
 
8266
  #: wppa-settings-autosave.php:735
8267
  #, fuzzy
8269
  "If you check this item, the size of the photos will be reduced to the "
8270
  "dimension specified in the next item during the upload/import process."
8271
  msgstr ""
8272
+ "Wenn Sie diese Option markieren, wird die Größe der Fotos, um die Dimension "
8273
+ "im nächsten Punkt beim Upload / Import-Prozess angegeben reduziert werden."
8274
 
8275
  #: wppa-settings-autosave.php:736
8276
  #, fuzzy
8277
  msgid "The photos will never be stretched during upload if they are smaller."
8278
  msgstr ""
8279
+ "Die Fotos werden nie beim Upload gestreckt werden, wenn sie kleiner sind."
 
8280
 
8281
  #: wppa-settings-autosave.php:744
8282
  #, fuzzy
8286
  #: wppa-settings-autosave.php:745
8287
  #, fuzzy
8288
  msgid "Resize photos to fit within a given area."
8289
+ msgstr "Resize Fotos in einem bestimmten Bereich zu passen."
8290
 
8291
  #: wppa-settings-autosave.php:746
8292
  #, fuzzy
8293
  msgid "Specify the screensize for the unscaled photos."
8294
+ msgstr "Geben Sie die Bildschirmgröße für die unscaled Fotos."
8295
 
8296
  #: wppa-settings-autosave.php:747
8297
  #, fuzzy
8299
  "The use of a non-default value is particularly usefull when you make use of "
8300
  "lightbox functionality."
8301
  msgstr ""
8302
+ "Die Verwendung eines nicht-Standardwert ist besonders nützlich, wenn Sie die "
8303
+ "Verwendung von Leuchtkasten Funktionalität zu machen."
8304
 
8305
  #: wppa-settings-autosave.php:749 wppa-settings-autosave.php:771
8306
  #: wppa-settings-autosave.php:782 wppa-settings-autosave.php:791
8319
  #: wppa-settings-autosave.php:1364 wppa-settings-autosave.php:1373
8320
  #: wppa-settings-autosave.php:1406 wppa-settings-autosave.php:1415
8321
  #: wppa-settings-autosave.php:1427 wppa-settings-autosave.php:1436
8322
+ #: wppa-settings-autosave.php:2910 wppa-settings-autosave.php:4848
8323
+ #: wppa-settings-autosave.php:4865 wppa-settings-autosave.php:4882
8324
+ #: wppa-settings-autosave.php:4899 wppa-settings-autosave.php:4916
8325
+ #: wppa-settings-autosave.php:4933 wppa-settings-autosave.php:4950
8326
+ #: wppa-settings-autosave.php:4967 wppa-settings-autosave.php:4984
8327
+ #: wppa-settings-autosave.php:6261 wppa-settings-autosave.php:8929
8328
+ #: wppa-settings-autosave.php:9125 wppa-settings-autosave.php:9167
8329
+ #: wppa-settings-autosave.php:9185
8330
  #, fuzzy
8331
  msgid "pixels"
8332
+ msgstr ""
8333
+ "Geben Sie die Kartenhöhe in Pixeln an. Beispiel: 200, oder lassen dieses "
8334
+ "Feld frei um eine responsive Karte zu erstellen."
8335
 
8336
  #: wppa-settings-autosave.php:750
8337
  #, fuzzy
8338
  msgid "Fit within rectangle as set in Table I-B1,2"
8339
+ msgstr "Fit innerhalb des Rechtecks ​​nach in Tabelle I-B1,2"
8340
 
8341
  #: wppa-settings-autosave.php:757
8342
  #, fuzzy
8346
  #: wppa-settings-autosave.php:758
8347
  #, fuzzy
8348
  msgid "Number of photos in an album must exceed."
8349
+ msgstr "Anzahl der Fotos in einem Album muss nicht überschreiten."
8350
 
8351
  #: wppa-settings-autosave.php:759
8352
  #, fuzzy
8356
  "contains only sub albums without seeing them in the list of sub albums. "
8357
  "Usually set to 0 (always show) or 1 (for one cover photo)."
8358
  msgstr ""
8359
+ "Fotos zeigen nicht in dem Album, es sei denn es mehr als diese Anzahl von "
8360
+ "Fotos in dem Album sind. Auf diese Weise können Sie Titelfotos auf einem "
8361
+ "Album zu haben, die nur Teil Alben enthält, ohne sie in der Liste der Unter "
8362
+ "Alben zu sehen. Normalerweise auf 0 (immer an) oder 1 (für ein Titelbild)."
 
8363
 
8364
  #: wppa-settings-autosave.php:761 wppa-settings-autosave.php:800
8365
  #: wppa-settings-autosave.php:1244 wppa-settings-autosave.php:1284
8366
  #: wppa-settings-autosave.php:1304 wppa-settings-autosave.php:1344
8367
+ #: wppa-settings-autosave.php:4244 wppa-settings-autosave.php:6186
8368
+ #: wppa-settings-autosave.php:8019
8369
  #, fuzzy
8370
  msgid "photos"
8371
  msgstr "Fotos"
8378
  #: wppa-settings-autosave.php:767
8379
  #, fuzzy
8380
  msgid "Thickness of wppa+ box borders."
8381
+ msgstr "Die Dicke der WPPA box Grenzen."
8382
 
8383
  #: wppa-settings-autosave.php:768
8384
  #, fuzzy
8386
  "Enter the thickness for the border of the WPPA+ boxes. A number of 0 means: "
8387
  "no border."
8388
  msgstr ""
8389
+ "Geben Sie die Dicke für die Grenze der WPPA Boxen. Eine Reihe von 0 "
8390
  "bedeutet: keine Grenze."
8391
 
8392
  #: wppa-settings-autosave.php:769 wppa-settings-autosave.php:779
8393
  #, fuzzy
8394
  msgid "WPPA+ boxes are: the navigation bars and the filmstrip."
8395
+ msgstr "WPPA Boxen sind: die Navigationsleisten und der Filmstreifen."
8396
 
8397
  #: wppa-settings-autosave.php:777
8398
  #, fuzzy
8399
  msgid "Radius of wppa+ box borders."
8400
+ msgstr "Radius von WPPA box Grenzen."
8401
 
8402
  #: wppa-settings-autosave.php:778
8403
  #, fuzzy
8405
  "Enter the corner radius for the border of the WPPA+ boxes. A number of 0 "
8406
  "means: no rounded corners."
8407
  msgstr ""
8408
+ "Geben Sie den Eckenradius für die Grenze der WPPA Boxen. Eine Reihe von 0 "
8409
  "bedeutet: keine abgerundeten Ecken."
8410
 
8411
  #: wppa-settings-autosave.php:780
8412
  #, fuzzy
8413
  msgid "Note that rounded corners are only supported by modern browsers."
8414
  msgstr ""
8415
+ "Beachten Sie, dass Ecken gerundet werden nur von modernen Browsern "
8416
+ "unterstützt."
8417
 
8418
  #: wppa-settings-autosave.php:788
8419
  #, fuzzy
8420
  msgid "Distance between wppa+ boxes."
8421
+ msgstr "Die Entfernung zwischen WPPA Boxen."
8422
 
8423
  #: wppa-settings-autosave.php:796
8424
  #, fuzzy
8425
  msgid "Related count"
8426
+ msgstr "Verwandte Zählung"
8427
 
8428
  #: wppa-settings-autosave.php:797
8429
  #, fuzzy
8430
  msgid "The default maximum number of related photos to find."
8431
+ msgstr "Die standardmäßige maximale Anzahl verwandter Fotos zu finden."
8432
 
8433
  #: wppa-settings-autosave.php:798
8434
  #, fuzzy
8437
  "wppa], the maximum number is 23. Omitting the number gives the maximum of "
8438
  "this setting."
8439
  msgstr ""
8440
+ "Wenn Kurzwahlnummern wie mit [WPPA type = \"Album\" Album = \"# bezogen, ab, "
8441
+ "23\"] [/ WPPA], ist die maximale Anzahl 23, die Zahl Weglassen des Maximum "
8442
+ "dieser Einstellung gibt."
8443
 
8444
  #: wppa-settings-autosave.php:806
8445
  #, fuzzy
8446
  msgid "The maximum number of pagelinks to be displayed."
8447
+ msgstr "Die maximale Anzahl der pagelinks angezeigt werden."
8448
 
8449
  #: wppa-settings-autosave.php:809
8450
  #, fuzzy
8454
  #: wppa-settings-autosave.php:814
8455
  #, fuzzy
8456
  msgid "Max file name length"
8457
+ msgstr "Max Länge des Dateinamens"
8458
 
8459
  #: wppa-settings-autosave.php:815
8460
  #, fuzzy
8461
  msgid "The max length of a photo file name excluding the extension."
8462
+ msgstr "Die maximale Länge eines Fotodateinamen ohne die Erweiterung."
8463
 
8464
  #: wppa-settings-autosave.php:816 wppa-settings-autosave.php:825
8465
  #, fuzzy
8466
  msgid "A setting of 0 means: unlimited."
8467
+ msgstr "Eine Einstellung von 0 bedeutet: unbegrenzt."
8468
 
8469
  #: wppa-settings-autosave.php:818 wppa-settings-autosave.php:827
8470
  #, fuzzy
8474
  #: wppa-settings-autosave.php:823
8475
  #, fuzzy
8476
  msgid "Max photo name length"
8477
+ msgstr "Max Foto Name Länge"
8478
 
8479
  #: wppa-settings-autosave.php:824
8480
  #, fuzzy
8481
  msgid "The max length of a photo name."
8482
+ msgstr "Die maximale Länge eines Fotos Namen."
8483
 
8484
  #: wppa-settings-autosave.php:833
8485
  #, fuzzy
8486
  msgid "The height of your sticky header."
8487
+ msgstr "Die Höhe des klebrigen Header."
8488
 
8489
  #: wppa-settings-autosave.php:834
8490
  #, fuzzy
8491
  msgid "If your theme has a sticky header, enter its height here."
8492
+ msgstr "Wenn Ihr Thema eine klebrige Header hat, geben Sie dessen Höhe hier."
 
 
8493
 
8494
  #: wppa-settings-autosave.php:842
8495
  #, fuzzy
8496
  msgid "Slideshow related size settings"
8497
+ msgstr "Diashow bezogenen Größeneinstellungen"
8498
 
8499
  #: wppa-settings-autosave.php:844
8500
  #, fuzzy
8511
  msgid ""
8512
  "Enter the largest size in pixels as how you want your photos to be displayed."
8513
  msgstr ""
8514
+ "Geben Sie die größte Größe in Pixeln, wie, wie Sie möchten, dass Ihre Fotos "
8515
+ "angezeigt werden."
8516
 
8517
  #: wppa-settings-autosave.php:847
8518
  #, fuzzy
8519
  msgid ""
8520
  "This is usually the same as the Column Width (Table I-A1), but it may differ."
8521
  msgstr ""
8522
+ "Dies ist normalerweise die gleiche wie die Spaltenbreite (Tabelle I-A1), "
8523
+ "aber es kann davon abweichen."
8524
 
8525
  #: wppa-settings-autosave.php:855
8526
  #, fuzzy
8538
  "This setting defines the height of the space reserved for photos in "
8539
  "slideshows."
8540
  msgstr ""
8541
+ "Diese Einstellung definiert die Höhe des Raumes für Fotos in Diashows "
8542
+ "vorbehalten."
8543
 
8544
  #: wppa-settings-autosave.php:859
8545
  #, fuzzy
8548
  "this value changes proportionally to match the aspect ratio as defined by "
8549
  "this and the previous setting."
8550
  msgstr ""
8551
+ "Wenn Sie die Breite einer Anzeige durch die Größe ändern = \"..\" Short "
8552
+ "Attribut ändert sich dieser Wert proportional das Seitenverhältnis zu "
8553
+ "entsprechen, wie durch diese und die vorherige Einstellung definiert."
8554
 
8555
  #: wppa-settings-autosave.php:861 wppa-settings-autosave.php:1034
8556
  #: wppa-settings-autosave.php:1045
8566
  #: wppa-settings-autosave.php:867
8567
  #, fuzzy
8568
  msgid "Stretch photos that are too small."
8569
+ msgstr "Strecken Sie Fotos, die zu klein sind."
8570
 
8571
  #: wppa-settings-autosave.php:868
8572
  #, fuzzy
8575
  "smaller. Leaving unchecked is recommended. It is better to upload photos "
8576
  "that fit well the sizes you use!"
8577
  msgstr ""
8578
+ "Die Bilder werden auf die maximale Größe bei Anzeigezeit gedehnt werden, "
8579
+ "wenn sie kleiner sind. Verlassen nicht markiert wird empfohlen. Es ist "
8580
+ "besser, um Fotos hochzuladen, die die Größen passen gut Sie verwenden!"
8581
 
8582
  #: wppa-settings-autosave.php:875
8583
  #, fuzzy
8584
  msgid "Slideshow borderwidth"
8585
+ msgstr "Diashow Border"
8586
 
8587
  #: wppa-settings-autosave.php:876
8588
  #, fuzzy
8589
  msgid "The width of the border around slideshow images."
8590
+ msgstr "Die Breite des Rahmens um Diashow Bilder."
8591
 
8592
  #: wppa-settings-autosave.php:877
8593
  #, fuzzy
8595
  "The border is made by the image background being larger than the image "
8596
  "itsself (padding)."
8597
  msgstr ""
8598
+ "Die Grenze wird durch den Hintergrund des Bildes größer ist als die Bild "
8599
+ "itsself (padding) hergestellt."
8600
 
8601
  #: wppa-settings-autosave.php:878
8602
  #, fuzzy
8604
  "Additionally there may be a one pixel outline of a different color. See "
8605
  "Table III-A2."
8606
  msgstr ""
8607
+ "Zusätzlich kann es eine ein Pixel Umriß einer anderen Farbe sein. Siehe "
8608
  "Tabelle III-A2."
8609
 
8610
  #: wppa-settings-autosave.php:879
8611
  #, fuzzy
8612
  msgid "The number you enter here is exclusive the one pixel outline."
8613
+ msgstr "Die Zahl, die Sie hier eingeben, ist exklusiv die eine Pixel Kontur."
8614
 
8615
  #: wppa-settings-autosave.php:880
8616
  #, fuzzy
8617
  msgid "If you leave this entry empty, there will be no outline either."
8618
+ msgstr ""
8619
+ "Wenn Sie diesen Eintrag leer lassen, wird es entweder keine Umrisse sein."
8620
 
8621
  #: wppa-settings-autosave.php:887
8622
  #, fuzzy
8626
  #: wppa-settings-autosave.php:888
8627
  #, fuzzy
8628
  msgid "Maximum numbers to display."
8629
+ msgstr "Maximale Zahlen angezeigt werden soll."
8630
 
8631
  #: wppa-settings-autosave.php:889
8632
  #, fuzzy
8635
  "- except the current - when there are more than this number of photos in a "
8636
  "slideshow."
8637
  msgstr ""
8638
+ "Um auf einer Linie zu Versuch für passen, werden die Zahlen durch Punkte "
8639
+ "ersetzt werden - mit Ausnahme der aktuellen - wenn es mehr als diese Anzahl "
8640
+ "von Fotos in einer Diashow sind."
8641
 
8642
  #: wppa-settings-autosave.php:891
8643
  #, fuzzy
8652
  #: wppa-settings-autosave.php:897
8653
  #, fuzzy
8654
  msgid "The size of the social media icons in the Share box"
8655
+ msgstr "Die Größe der Social-Media-Symbole in der Box Teilen"
8656
 
8657
  #: wppa-settings-autosave.php:907
8658
  #, fuzzy
8662
  #: wppa-settings-autosave.php:908
8663
  #, fuzzy
8664
  msgid "Show mini text at slideshow smaller then."
8665
+ msgstr "Zeigen Mini Text Diashow dann kleiner."
8666
 
8667
  #: wppa-settings-autosave.php:909
8668
  #, fuzzy
8670
  "Display Next and Prev. as opposed to Next photo and Previous photo when the "
8671
  "cotainer is smaller than this size."
8672
  msgstr ""
8673
+ "Anzeige Next und Prev. im Gegensatz zu Nächstes Foto und Vorheriges Foto, "
8674
+ "wenn die cotainer kleiner als diese Größe."
8675
 
8676
  #: wppa-settings-autosave.php:910
8677
  #, fuzzy
8678
  msgid "Special use in responsive themes."
8679
+ msgstr "Besondere Verwendung in ansprechenden Themen."
8680
 
8681
  #: wppa-settings-autosave.php:918
8682
  #, fuzzy
8683
  msgid "The maximum number of slides in a certain view. 0 means no pagination"
8684
  msgstr ""
8685
+ "Die maximale Anzahl von Dias in einer bestimmten Ansicht. 0 bedeutet keine "
8686
  "Paginierung"
8687
 
8688
  #: wppa-settings-autosave.php:921 wppa-settings-autosave.php:940
8693
  #: wppa-settings-autosave.php:926
8694
  #, fuzzy
8695
  msgid "Filmstrip Thumbnail Size"
8696
+ msgstr "Diastreifen Miniaturgröße"
8697
 
8698
  #: wppa-settings-autosave.php:927
8699
  #, fuzzy
8705
  #: wppa-settings-autosave.php:1159
8706
  #, fuzzy
8707
  msgid "This size applies to the width or height, whichever is the largest."
8708
+ msgstr ""
8709
+ "Diese Größe gilt für die Breite oder Höhe, je nachdem, was der größte ist."
8710
 
8711
  #: wppa-settings-autosave.php:929 wppa-settings-autosave.php:950
8712
  #: wppa-settings-autosave.php:960
8715
  "Changing the thumbnail size may result in all thumbnails being regenerated. "
8716
  "this may take a while."
8717
  msgstr ""
8718
+ "Ändern der Miniaturgröße in allen Thumbnails führen kann regeneriert werden. "
8719
+ "das kann eine Weile dauern."
8720
 
8721
  #: wppa-settings-autosave.php:937
8722
  #, fuzzy
8723
  msgid "The max number of slides in a slideonly display"
8724
+ msgstr "Die maximale Anzahl der Folien in einer slideonly Anzeige"
8725
 
8726
  #: wppa-settings-autosave.php:945
8727
  #, fuzzy
8728
  msgid "Thumbnail photos related size settings"
8729
+ msgstr "Thumbnail Fotos zu ähnlichen Größeneinstellungen"
8730
 
8731
  #: wppa-settings-autosave.php:947
8732
  #, fuzzy
8733
  msgid "Thumbnail Size"
8734
+ msgstr "Vorschaugröße"
8735
 
8736
  #: wppa-settings-autosave.php:948
8737
  #, fuzzy
8746
  #: wppa-settings-autosave.php:958
8747
  #, fuzzy
8748
  msgid "The alternative size of the thumbnail images."
8749
+ msgstr "Die alternative Größe der Miniaturbilder."
8750
 
8751
  #: wppa-settings-autosave.php:967
8752
  #, fuzzy
8753
  msgid "Thumbnail Aspect"
8754
+ msgstr "Thumbnail Aspect"
8755
 
8756
  #: wppa-settings-autosave.php:968
8757
  #, fuzzy
8758
  msgid "Aspect ration of thumbnail image"
8759
+ msgstr "Aspect Ration thumbnail image"
8760
 
8761
  #: wppa-settings-autosave.php:972
8762
  #, fuzzy
8763
  msgid "--- same as fullsize ---"
8764
+ msgstr "--- Gleiche wie Gross ---"
8765
 
8766
  #: wppa-settings-autosave.php:973
8767
  #, fuzzy
8768
  msgid "--- square clipped ---"
8769
+ msgstr "--- Quadrat geschnitten ---"
8770
 
8771
  #: wppa-settings-autosave.php:974
8772
  #, fuzzy
8773
  msgid "4:5 landscape clipped"
8774
+ msgstr "4: 5 Landschaft abgeschnitten"
8775
 
8776
  #: wppa-settings-autosave.php:975
8777
  #, fuzzy
8778
  msgid "3:4 landscape clipped"
8779
+ msgstr "3: 4 Landschaft abgeschnitten"
8780
 
8781
  #: wppa-settings-autosave.php:976
8782
  #, fuzzy
8783
  msgid "2:3 landscape clipped"
8784
+ msgstr "2: 3 Landschaft abgeschnitten"
8785
 
8786
  #: wppa-settings-autosave.php:977
8787
  #, fuzzy
8788
  msgid "9:16 landscape clipped"
8789
+ msgstr "09.16 Landschaft abgeschnitten"
8790
 
8791
  #: wppa-settings-autosave.php:978
8792
  #, fuzzy
8793
  msgid "1:2 landscape clipped"
8794
+ msgstr "1: 2 Landschaft abgeschnitten"
8795
 
8796
  #: wppa-settings-autosave.php:979
8797
  #, fuzzy
8798
  msgid "--- square padded ---"
8799
+ msgstr "--- Quadrat gepolsterte ---"
8800
 
8801
  #: wppa-settings-autosave.php:980
8802
  #, fuzzy
8803
  msgid "4:5 landscape padded"
8804
+ msgstr "4: 5 Landschaft gepolstert"
8805
 
8806
  #: wppa-settings-autosave.php:981
8807
  #, fuzzy
8808
  msgid "3:4 landscape padded"
8809
+ msgstr "3: 4 Landschaft gepolstert"
8810
 
8811
  #: wppa-settings-autosave.php:982
8812
  #, fuzzy
8813
  msgid "2:3 landscape padded"
8814
+ msgstr "2: 3 Landschaft gepolstert"
8815
 
8816
  #: wppa-settings-autosave.php:983
8817
  #, fuzzy
8818
  msgid "9:16 landscape padded"
8819
+ msgstr "09.16 Landschaft gepolstert"
8820
 
8821
  #: wppa-settings-autosave.php:984
8822
  #, fuzzy
8823
  msgid "1:2 landscape padded"
8824
+ msgstr "1: 2 Landschaft gepolstert"
8825
 
8826
  #: wppa-settings-autosave.php:1006
8827
  #, fuzzy
8828
  msgid "Thumbframe width"
8829
+ msgstr "Thumbframe Breite"
8830
 
8831
  #: wppa-settings-autosave.php:1007
8832
  #, fuzzy
8833
  msgid "The width of the thumbnail frame."
8834
+ msgstr "Die Breite des Miniaturbildrahmens."
8835
 
8836
  #: wppa-settings-autosave.php:1008 wppa-settings-autosave.php:1019
8837
  #, fuzzy
8838
  msgid "Set the width of the thumbnail frame."
8839
+ msgstr "Legen Sie die Breite des Miniaturbildrahmens."
8840
 
8841
  #: wppa-settings-autosave.php:1009 wppa-settings-autosave.php:1020
8842
  #: wppa-settings-autosave.php:1031 wppa-settings-autosave.php:1042
8843
  #: wppa-settings-autosave.php:1053
8844
  #, fuzzy
8845
  msgid "Set width, height and spacing for the thumbnail frames."
8846
+ msgstr "Stellen Sie Breite, Höhe und Abstand für die Thumbnail-Frames."
8847
 
8848
  #: wppa-settings-autosave.php:1010 wppa-settings-autosave.php:1021
8849
  #: wppa-settings-autosave.php:1032 wppa-settings-autosave.php:1043
8853
  "These sizes should be large enough for a thumbnail image and - optionally - "
8854
  "the text under it."
8855
  msgstr ""
8856
+ "Diese Größen sollte groß genug für ein Miniaturbild und - optional - den "
8857
+ "Text darunter."
8858
 
8859
  #: wppa-settings-autosave.php:1017
8860
  #, fuzzy
8861
  msgid "Thumbframe width Alt"
8862
+ msgstr "Thumbframe Breite Alt"
8863
 
8864
  #: wppa-settings-autosave.php:1018
8865
  #, fuzzy
8866
  msgid "The width of the alternative thumbnail frame."
8867
+ msgstr "Die Breite des alternativen Thumbnail-Rahmen."
8868
 
8869
  #: wppa-settings-autosave.php:1028
8870
  #, fuzzy
8874
  #: wppa-settings-autosave.php:1029
8875
  #, fuzzy
8876
  msgid "The height of the thumbnail frame."
8877
+ msgstr "Die Höhe des Miniaturbildrahmens."
8878
 
8879
  #: wppa-settings-autosave.php:1030 wppa-settings-autosave.php:1041
8880
  #, fuzzy
8881
  msgid "Set the height of the thumbnail frame."
8882
+ msgstr "Stellen Sie die Höhe des Miniaturbildrahmens."
8883
 
8884
  #: wppa-settings-autosave.php:1039
8885
  #, fuzzy
8889
  #: wppa-settings-autosave.php:1040
8890
  #, fuzzy
8891
  msgid "The height of the alternative thumbnail frame."
8892
+ msgstr "Die Höhe des alternativen Thumbnail-Rahmen."
8893
 
8894
  #: wppa-settings-autosave.php:1050
8895
  #, fuzzy
8896
  msgid "Thumbnail spacing"
8897
+ msgstr "Thumbnail Abstand"
8898
 
8899
  #: wppa-settings-autosave.php:1051
8900
  #, fuzzy
8901
  msgid "The spacing between adjacent thumbnail frames."
8902
+ msgstr "Der Abstand zwischen benachbarten Miniaturrahmen."
8903
 
8904
  #: wppa-settings-autosave.php:1052
8905
  #, fuzzy
8906
  msgid "Set the minimal spacing between the adjacent thumbnail frames"
8907
  msgstr ""
8908
+ "Stellen Sie den minimalen Abstand zwischen den benachbarten Miniaturrahmen"
8909
 
8910
  #: wppa-settings-autosave.php:1061
8911
  #, fuzzy
8912
  msgid "Auto spacing"
8913
+ msgstr "Auto Abstand"
8914
 
8915
  #: wppa-settings-autosave.php:1062
8916
  #, fuzzy
8917
  msgid "Space the thumbnail frames automatic."
8918
+ msgstr "Raum der Miniaturrahmen automatisch."
8919
 
8920
  #: wppa-settings-autosave.php:1063
8921
  #, fuzzy
8923
  "If you check this box, the thumbnail images will be evenly distributed over "
8924
  "the available width."
8925
  msgstr ""
8926
+ "Wenn Sie diese Option aktivieren, werden die Miniaturbilder gleichmäßig über "
8927
+ "die zur Verfügung stehende Breite verteilt werden."
8928
 
8929
  #: wppa-settings-autosave.php:1064
8930
  #, fuzzy
8932
  "In this case, the thumbnail spacing value (setting I-9) will be regarded as "
8933
  "a minimum value."
8934
  msgstr ""
8935
+ "In diesem Fall wird die Miniaturabstandswert (Einstellung I-9) als "
8936
+ "Minimalwert angesehen werden."
8937
 
8938
  #: wppa-settings-autosave.php:1071 wppa-settings-autosave.php:1178
8939
  #, fuzzy
8943
  #: wppa-settings-autosave.php:1072
8944
  #, fuzzy
8945
  msgid "Max number of thumbnails per page."
8946
+ msgstr "Maximale Anzahl der Bilder pro Seite."
8947
 
8948
  #: wppa-settings-autosave.php:1073
8949
  #, fuzzy
8951
  "Enter the maximum number of thumbnail images per page. A value of 0 "
8952
  "indicates no pagination."
8953
  msgstr ""
8954
+ "Geben Sie die maximale Anzahl von Miniaturbildern pro Seite. Ein Wert von 0 "
8955
+ "bedeutet, dass keine Paginierung."
8956
 
8957
  #: wppa-settings-autosave.php:1081
8958
  #, fuzzy
8959
  msgid "The size of the thumbnail popup images."
8960
+ msgstr "Die Größe der Miniatur Popup-Bilder."
8961
 
8962
  #: wppa-settings-autosave.php:1082
8963
  #, fuzzy
8965
  "Enter the size of the popup images. This size should be larger than the "
8966
  "thumbnail size."
8967
  msgstr ""
8968
+ "Geben Sie die Größe der Pop-up-Bilder. Diese Größe sollte größer sein als "
8969
+ "die Thumbnail-Größe sein."
8970
 
8971
  #: wppa-settings-autosave.php:1083
8972
  #, fuzzy
8973
  msgid "This size should also be at least the cover image size."
8974
+ msgstr "Diese Größe sollte auch zumindest die Abdeckung Bildgröße sein."
8975
 
8976
  #: wppa-settings-autosave.php:1084
8977
  #, fuzzy
8979
  "Changing the popup size may result in all thumbnails being regenerated. this "
8980
  "may take a while."
8981
  msgstr ""
8982
+ "Ändern des Popup-Größe in allen Thumbnails führen kann regeneriert werden. "
8983
+ "das kann eine Weile dauern."
8984
 
8985
  #: wppa-settings-autosave.php:1085
8986
  #, fuzzy
8988
  "Although this setting has only visual effect if \"Thumb popup\" (Table IV-"
8989
  "C8) is checked,"
8990
  msgstr ""
8991
+ "Obwohl diese Einstellung nur visuelle Effekt hat, wenn \"Thumb up\" (Tabelle "
8992
+ "IV-C8) geprüft,"
8993
 
8994
  #: wppa-settings-autosave.php:1086
8995
  #, fuzzy
8997
  "the value must be right as it is the physical size of the thumbnail and "
8998
  "coverphoto images."
8999
  msgstr ""
9000
+ "der Wert muss richtig sein, wie es die physikalische Größe der Miniatur und "
9001
+ "Coverfoto Bildern."
9002
 
9003
  #: wppa-settings-autosave.php:1093
9004
  #, fuzzy
9005
  msgid "Use thumbs if fit"
9006
+ msgstr "Verwenden Sie den Daumen, wenn fit"
9007
 
9008
  #: wppa-settings-autosave.php:1094
9009
  #, fuzzy
9010
  msgid "Use the thumbnail image files if they are large enough."
9011
+ msgstr "Verwenden Sie die Thumbnail-Image-Dateien, wenn sie groß genug sind."
9012
 
9013
  #: wppa-settings-autosave.php:1095
9014
  #, fuzzy
9015
  msgid "This setting speeds up page loading for small photos."
9016
+ msgstr ""
9017
+ "Diese Einstellung beschleunigt das Laden der Seite für kleine Fotos auf."
9018
 
9019
  #: wppa-settings-autosave.php:1096
9020
  #, fuzzy
9022
  "Do NOT use this when your thumbnails have a forced aspect ratio (when Table "
9023
  "I-C2 is set to anything different from --- same as fullsize ---)"
9024
  msgstr ""
9025
+ "Sie NICHT diese verwenden, wenn die Thumbnails einen erzwungenen "
9026
+ "Seitenverhältnis haben (wenn Tabelle I-C2 ist auf etwas anderes aus --- "
9027
+ "gleichen wie Gross ---)"
9028
 
9029
  #: wppa-settings-autosave.php:1103
9030
  #, fuzzy
9034
  #: wppa-settings-autosave.php:1106
9035
  #, fuzzy
9036
  msgid "Maximum width for a album cover display."
9037
+ msgstr "Die maximale Breite für ein Album-Cover-Anzeige."
9038
 
9039
  #: wppa-settings-autosave.php:1107
9040
  #, fuzzy
9042
  "Display covers in 2 or more columns if the display area is wider than the "
9043
  "given width."
9044
  msgstr ""
9045
+ "Display umfasst in 2 oder mehr Spalten, wenn die Anzeigefläche ist breiter "
9046
+ "als die vorgegebene Breite."
9047
 
9048
  #: wppa-settings-autosave.php:1108
9049
  #, fuzzy
9051
  "This also applies for 'thumbnails as covers', and will NOT apply to single "
9052
  "items."
9053
  msgstr ""
9054
+ "Dies gilt auch für 'Thumbnails als Abdeckungen' und wird nicht auf einzelne "
9055
+ "Elemente anwenden."
9056
 
9057
  #: wppa-settings-autosave.php:1115
9058
  #, fuzzy
9059
  msgid "Min Cover height"
9060
+ msgstr "Cover Höhe"
9061
 
9062
  #: wppa-settings-autosave.php:1116
9063
  #, fuzzy
9064
  msgid "Minimal height of an album cover."
9065
+ msgstr "Minimale Höhe eines Album-Cover."
9066
 
9067
  #: wppa-settings-autosave.php:1117
9068
  #, fuzzy
9070
  "If you use this setting to make the albums the same height and you are not "
9071
  "satisfied about the lay-out, try increasing the value in the next setting"
9072
  msgstr ""
9073
+ "Wenn Sie diese Einstellung verwenden, um die Alben die gleiche Höhe zu "
9074
+ "machen, und Sie sind nicht zufrieden über das Lay-out, versuchen, den Wert "
9075
+ "in die nächste Einstellung zu erhöhen"
9076
 
9077
  #: wppa-settings-autosave.php:1124
9078
  #, fuzzy
9079
  msgid "Min Text frame height"
9080
+ msgstr "Minimale Rahmenhöhe"
9081
 
9082
  #: wppa-settings-autosave.php:1125
9083
  #, fuzzy
9090
  "The height starting with the album title up to and including the view- and "
9091
  "the slideshow- links."
9092
  msgstr ""
9093
+ "Die Höhe mit dem Albumtitel beginnend bis einschließlich der View- und die "
9094
+ "slideshow- Links."
9095
 
9096
  #: wppa-settings-autosave.php:1127
9097
  #, fuzzy
9099
  "This setting enables you to give the album covers the same height while the "
9100
  "title does not need to fit on one line."
9101
  msgstr ""
9102
+ "Mit dieser Einstellung können Sie das Album-Cover die gleiche Höhe zu geben, "
9103
+ "während der Titel passen müssen auf einer Linie nicht."
9104
 
9105
  #: wppa-settings-autosave.php:1128
9106
  #, fuzzy
9107
  msgid "This is the recommended setting to line-up your covers!"
9108
+ msgstr "Dies ist die empfohlene Einstellung Ihre Abdeckungen auf Line-up!"
9109
 
9110
  #: wppa-settings-autosave.php:1135
9111
  #, fuzzy
9112
  msgid "Min Description height"
9113
+ msgstr "Min Höhe"
9114
 
9115
  #: wppa-settings-autosave.php:1136
9116
  #, fuzzy
9117
  msgid "The minimal height of the album description text frame."
9118
+ msgstr "Die minimale Höhe des Textrahmens Albumbeschreibung."
9119
 
9120
  #: wppa-settings-autosave.php:1137
9121
  #, fuzzy
9122
  msgid "The minimal height of the description field in an album cover display."
9123
+ msgstr "Die minimale Höhe des Beschreibungsfeld in einem Album-Cover-Anzeige."
9124
 
9125
  #: wppa-settings-autosave.php:1138
9126
  #, fuzzy
9128
  "This setting enables you to give the album covers the same height provided "
9129
  "that the cover images are equally sized and the titles fit on one line."
9130
  msgstr ""
9131
+ "Mit dieser Einstellung können Sie das Album-Cover die gleiche Höhe zur "
9132
+ "Verfügung gestellt zu geben, dass die Cover-Bilder gleich groß sind und die "
9133
+ "Titel passen auf einer Linie."
9134
 
9135
  #: wppa-settings-autosave.php:1139
9136
  #, fuzzy
9137
  msgid ""
9138
  "To force the coverphotos have equal heights, tick the box in Table I-D7."
9139
  msgstr ""
9140
+ "Um zu erzwingen, die coverphotos gleichen Höhen haben, markieren Sie das "
9141
+ "Kästchen in Tabelle I-D7."
9142
 
9143
  #: wppa-settings-autosave.php:1140
9144
  #, fuzzy
9146
  "You may need this setting if changing the previous setting is not sufficient "
9147
  "to line-up the covers."
9148
  msgstr ""
9149
+ "Sie können diese Einstellung brauchen, wenn die vorherige Einstellung ändert "
9150
+ "sich nicht ausreichend ist, damit die Cover Line-up."
9151
 
9152
  #: wppa-settings-autosave.php:1147
9153
  #, fuzzy
9154
  msgid "Coverphoto size"
9155
+ msgstr "Titelbild Größe"
9156
 
9157
  #: wppa-settings-autosave.php:1148
9158
  #, fuzzy
9159
  msgid "The size of the coverphoto."
9160
+ msgstr "Die Größe des Titelbild."
9161
 
9162
  #: wppa-settings-autosave.php:1150 wppa-settings-autosave.php:1160
9163
  #, fuzzy
9165
  "Changing the coverphoto size may result in all thumbnails being regenerated. "
9166
  "this may take a while."
9167
  msgstr ""
9168
+ "Ändern der Größe in allen Coverfoto Thumbnails führen kann regeneriert "
9169
+ "werden. das kann eine Weile dauern."
9170
 
9171
  #: wppa-settings-autosave.php:1157
9172
  #, fuzzy
9173
  msgid "Coverphoto size multi"
9174
+ msgstr "Titelbild Größe Mehr"
9175
 
9176
  #: wppa-settings-autosave.php:1158
9177
  #, fuzzy
9178
  msgid "The size of coverphotos if more than one."
9179
+ msgstr "Die Größe der coverphotos wenn mehr als ein."
9180
 
9181
  #: wppa-settings-autosave.php:1167
9182
  #, fuzzy
9183
  msgid "Size is height"
9184
+ msgstr "Größe ist in der Höhe"
9185
 
9186
  #: wppa-settings-autosave.php:1168
9187
  #, fuzzy
9188
  msgid "The size of the coverphoto is the height of it."
9189
+ msgstr "Die Größe des Titelbild ist die Höhe davon."
9190
 
9191
  #: wppa-settings-autosave.php:1169
9192
  #, fuzzy
9194
  "If set: the previous setting is the height, if unset: the largest of width "
9195
  "and height."
9196
  msgstr ""
9197
+ "Wenn gesetzt: die vorherige Einstellung ist die Höhe, wenn nicht gesetzt: "
9198
+ "die größte Breite und Höhe."
9199
 
9200
  #: wppa-settings-autosave.php:1170
9201
  #, fuzzy
9203
  "This setting applies for coverphoto position top or bottom only (Table IV-"
9204
  "D3)."
9205
  msgstr ""
9206
+ "Diese Einstellung gilt für Coverfoto Position oben oder unten nur (Tabelle "
9207
  "IV-D3)."
9208
 
9209
  #: wppa-settings-autosave.php:1171
9214
  #: wppa-settings-autosave.php:1179
9215
  #, fuzzy
9216
  msgid "Max number of covers per page."
9217
+ msgstr "Max Anzahl der Sitzplätze pro Seite."
9218
 
9219
  #: wppa-settings-autosave.php:1180
9220
  #, fuzzy
9222
  "Enter the maximum number of album covers per page. A value of 0 indicates no "
9223
  "pagination."
9224
  msgstr ""
9225
+ "Geben Sie die maximale Anzahl der Album pro Seite abdeckt. Ein Wert von 0 "
9226
+ "bedeutet, dass keine Paginierung."
9227
 
9228
  #: wppa-settings-autosave.php:1182
9229
  #, fuzzy
9233
  #: wppa-settings-autosave.php:1187
9234
  #, fuzzy
9235
  msgid "Rating and comment related size settings"
9236
+ msgstr "Bewertung und Kommentar im Zusammenhang mit Größeneinstellungen"
9237
 
9238
  #: wppa-settings-autosave.php:1189
9239
  #, fuzzy
9240
  msgid "Rating size"
9241
+ msgstr "Bewertung Größe"
9242
 
9243
  #: wppa-settings-autosave.php:1190
9244
  #, fuzzy
9253
  #: wppa-settings-autosave.php:1193
9254
  #, fuzzy
9255
  msgid "Extended: 10 stars"
9256
+ msgstr "Erweitert: 10 Sterne"
9257
 
9258
  #: wppa-settings-autosave.php:1193
9259
  #, fuzzy
9278
  #: wppa-settings-autosave.php:1212
9279
  #, fuzzy
9280
  msgid "Size of Avatar images."
9281
+ msgstr "Größe von Avatar-Bilder."
9282
 
9283
  #: wppa-settings-autosave.php:1213
9284
  #, fuzzy
9285
  msgid "The size of the square avatar; must be > 0 and < 256"
9286
+ msgstr "Die Größe des Platzes avatar; muss> 0 und <256"
9287
 
9288
  #: wppa-settings-autosave.php:1220
9289
  #, fuzzy
9290
  msgid "Rating space"
9291
+ msgstr "Bewertung Platz"
9292
 
9293
  #: wppa-settings-autosave.php:1221
9294
  #, fuzzy
9295
  msgid "Space between avg and my rating stars"
9296
+ msgstr "Der Raum zwischen avg und meine Bewertung Sterne"
9297
 
9298
  #: wppa-settings-autosave.php:1229
9299
  #, fuzzy
9300
  msgid "Widget related size settings"
9301
+ msgstr "Widget bezogenen Größeneinstellungen"
9302
 
9303
  #: wppa-settings-autosave.php:1231
9304
  #, fuzzy
9305
  msgid "Widget width"
9306
+ msgstr "Widget Breite"
9307
 
9308
  #: wppa-settings-autosave.php:1232
9309
  #, fuzzy
9310
  msgid "The useable width within widgets."
9311
+ msgstr "Die nutzbare Breite innerhalb Widgets."
9312
 
9313
  #: wppa-settings-autosave.php:1233
9314
  #, fuzzy
9316
  "Widget width for photo of the day, general purpose (default), slideshow "
9317
  "(default) and upload widgets."
9318
  msgstr ""
9319
+ "Widget Breite für Foto des Tages, für allgemeine Zwecke (Standard), Diashow "
9320
+ "(Standard) und Widgets laden."
9321
 
9322
  #: wppa-settings-autosave.php:1240
9323
  #, fuzzy
9324
  msgid "TopTen count"
9325
+ msgstr "TopTen Zahl"
9326
 
9327
  #: wppa-settings-autosave.php:1241
9328
  #, fuzzy
9329
  msgid "Number of photos in TopTen widget."
9330
+ msgstr "Anzahl der Fotos in TopTen-Widget."
9331
 
9332
  #: wppa-settings-autosave.php:1242
9333
  #, fuzzy
9334
  msgid "Enter the maximum number of rated photos in the TopTen widget."
9335
  msgstr ""
9336
+ "Geben Sie die maximale Anzahl der bewerteten Fotos in der TopTen-Widget."
9337
 
9338
  #: wppa-settings-autosave.php:1249
9339
  #, fuzzy
9340
  msgid "TopTen size"
9341
+ msgstr "TopTen Größe"
9342
 
9343
  #: wppa-settings-autosave.php:1250
9344
  #, fuzzy
9345
  msgid "Size of thumbnails in TopTen widget."
9346
+ msgstr "Größe der Thumbnails in TopTen-Widget."
9347
 
9348
  #: wppa-settings-autosave.php:1251
9349
  #, fuzzy
9355
  #: wppa-settings-autosave.php:1332 wppa-settings-autosave.php:1352
9356
  #, fuzzy
9357
  msgid "The size applies to the width or height, whatever is the largest."
9358
+ msgstr "Die Größe bezieht sich auf die Breite oder Höhe, was die größte ist."
9359
 
9360
  #: wppa-settings-autosave.php:1253 wppa-settings-autosave.php:1273
9361
  #: wppa-settings-autosave.php:1293 wppa-settings-autosave.php:1313
9364
  msgid ""
9365
  "Recommended values: 86 for a two column and 56 for a three column display."
9366
  msgstr ""
9367
+ "Empfohlene Werte: 86 für eine Zwei-Säule und 56 für eine Dreispaltenanzeige."
9368
 
9369
  #: wppa-settings-autosave.php:1260
9370
  #, fuzzy
9379
  #: wppa-settings-autosave.php:1262
9380
  #, fuzzy
9381
  msgid "Enter the maximum number of entries in the Comment widget."
9382
+ msgstr "Geben Sie die maximale Anzahl der Einträge in den Kommentar-Widget."
9383
 
9384
  #: wppa-settings-autosave.php:1264
9385
  #, fuzzy
9389
  #: wppa-settings-autosave.php:1269
9390
  #, fuzzy
9391
  msgid "Comment size"
9392
+ msgstr "Kommentar Größe"
9393
 
9394
  #: wppa-settings-autosave.php:1270
9395
  #, fuzzy
9404
  #: wppa-settings-autosave.php:1280
9405
  #, fuzzy
9406
  msgid "Thumbnail count"
9407
+ msgstr "Thumbnail Zahl"
9408
 
9409
  #: wppa-settings-autosave.php:1281
9410
  #, fuzzy
9411
  msgid "Number of photos in Thumbnail widget."
9412
+ msgstr "Anzahl der Fotos in Thumbnail-Widget."
9413
 
9414
  #: wppa-settings-autosave.php:1282
9415
  #, fuzzy
9416
  msgid "Enter the maximum number of rated photos in the Thumbnail widget."
9417
  msgstr ""
9418
+ "Geben Sie die maximale Anzahl der bewerteten Fotos in der Thumbnail-Widget."
 
9419
 
9420
  #: wppa-settings-autosave.php:1289
9421
  #, fuzzy
9422
  msgid "Thumbnail widget size"
9423
+ msgstr "Thumbnail-Widget Größe"
9424
 
9425
  #: wppa-settings-autosave.php:1290
9426
  #, fuzzy
9427
  msgid "Size of thumbnails in Thumbnail widget."
9428
+ msgstr "Größe der Thumbnails in Thumbnail-Widget."
9429
 
9430
  #: wppa-settings-autosave.php:1291
9431
  #, fuzzy
9432
  msgid "Enter the size for the mini photos in the Thumbnail widget."
9433
+ msgstr "Geben Sie die Größe für die Mini-Fotos in der Thumbnail-Widget."
9434
 
9435
  #: wppa-settings-autosave.php:1300
9436
  #, fuzzy
9437
  msgid "LasTen count"
9438
+ msgstr "lasten Zahl"
9439
 
9440
  #: wppa-settings-autosave.php:1301
9441
  #, fuzzy
9442
  msgid "Number of photos in Last Ten widget."
9443
+ msgstr "Anzahl Fotos in letzten zehn Widget."
9444
 
9445
  #: wppa-settings-autosave.php:1302
9446
  #, fuzzy
9447
  msgid "Enter the maximum number of photos in the LasTen widget."
9448
+ msgstr "Geben Sie die maximale Anzahl der Fotos im lasten Widget."
9449
 
9450
  #: wppa-settings-autosave.php:1309
9451
  #, fuzzy
9452
  msgid "LasTen size"
9453
+ msgstr "lasten Größe"
9454
 
9455
  #: wppa-settings-autosave.php:1310
9456
  #, fuzzy
9457
  msgid "Size of thumbnails in Last Ten widget."
9458
+ msgstr "Größe der Thumbnails in letzten zehn Widget."
9459
 
9460
  #: wppa-settings-autosave.php:1311
9461
  #, fuzzy
9462
  msgid "Enter the size for the mini photos in the LasTen widget."
9463
+ msgstr "Geben Sie die Größe für die Mini-Fotos im lasten Widget."
9464
 
9465
  #: wppa-settings-autosave.php:1320
9466
  #, fuzzy
9467
  msgid "Album widget count"
9468
+ msgstr "Album-Widget Zählung"
9469
 
9470
  #: wppa-settings-autosave.php:1321
9471
  #, fuzzy
9472
  msgid "Number of albums in Album widget."
9473
+ msgstr "Anzahl der Alben in Album-Widget."
9474
 
9475
  #: wppa-settings-autosave.php:1322
9476
  #, fuzzy
9477
  msgid ""
9478
  "Enter the maximum number of thumbnail photos of albums in the Album widget."
9479
  msgstr ""
9480
+ "Geben Sie die maximale Anzahl der Miniatur Fotos von Alben im Album-Widget."
 
9481
 
9482
+ #: wppa-settings-autosave.php:1324 wppa-settings-autosave.php:6202
9483
  #, fuzzy
9484
  msgid "albums"
9485
  msgstr "Alben"
9492
  #: wppa-settings-autosave.php:1330
9493
  #, fuzzy
9494
  msgid "Size of thumbnails in Album widget."
9495
+ msgstr "Größe der Thumbnails in Album-Widget."
9496
 
9497
  #: wppa-settings-autosave.php:1331
9498
  #, fuzzy
9499
  msgid "Enter the size for the mini photos in the Album widget."
9500
+ msgstr "Geben Sie die Größe für die Mini-Fotos im Album-Widget."
9501
 
9502
  #: wppa-settings-autosave.php:1340
9503
  #, fuzzy
9504
  msgid "FeaTen count"
9505
+ msgstr "FeaTen Zahl"
9506
 
9507
  #: wppa-settings-autosave.php:1341
9508
  #, fuzzy
9509
  msgid "Number of photos in Featured Ten widget."
9510
+ msgstr "Anzahl Fotos in Hervorgehoben Ten-Widget."
9511
 
9512
  #: wppa-settings-autosave.php:1342
9513
  #, fuzzy
9514
  msgid "Enter the maximum number of photos in the FeaTen widget."
9515
+ msgstr "Geben Sie die maximale Anzahl der Fotos im FeaTen Widget."
9516
 
9517
  #: wppa-settings-autosave.php:1349
9518
  #, fuzzy
9522
  #: wppa-settings-autosave.php:1350
9523
  #, fuzzy
9524
  msgid "Size of thumbnails in Featured Ten widget."
9525
+ msgstr "Größe der Thumbnails in Hervorgehoben Ten-Widget."
9526
 
9527
  #: wppa-settings-autosave.php:1351
9528
  #, fuzzy
9532
  #: wppa-settings-autosave.php:1360
9533
  #, fuzzy
9534
  msgid "Tagcloud min size"
9535
+ msgstr "Tagcloud min Größe"
9536
 
9537
  #: wppa-settings-autosave.php:1361
9538
  #, fuzzy
9539
  msgid "Minimal fontsize in tagclouds"
9540
+ msgstr "Minimale Schriftgröße in Tagclouds"
9541
 
9542
  #: wppa-settings-autosave.php:1369
9543
  #, fuzzy
9547
  #: wppa-settings-autosave.php:1370
9548
  #, fuzzy
9549
  msgid "Maximal fontsize in tagclouds"
9550
+ msgstr "Maximal Größe in Tagclouds"
9551
 
9552
  #: wppa-settings-autosave.php:1378
9553
  #, fuzzy
9555
  "Lightbox related size settings. These settings have effect only when Table "
9556
  "IX-J3 is set to wppa"
9557
  msgstr ""
9558
+ "Lightbox bezogenen Größeneinstellungen. Diese Einstellungen haben nur "
9559
+ "wirksam, wenn der Tabelle IX-J3 ist auf WPPA"
9560
 
9561
  #: wppa-settings-autosave.php:1381
9562
  #, fuzzy
9563
  msgid ""
9564
  "Number of lines on the lightbox description area, exclusive the n/m line."
9565
  msgstr ""
9566
+ "Anzahl der Linien auf dem Leuchtkasten Beschreibung Bereich, exklusive der "
9567
+ "n / m Linie."
9568
 
9569
  #: wppa-settings-autosave.php:1382
9570
  #, fuzzy
9584
  #: wppa-settings-autosave.php:1390
9585
  #, fuzzy
9586
  msgid "Select the size of the magnifier cursor."
9587
+ msgstr "Wählen Sie die Größe der Lupe Cursor."
9588
 
9589
  #: wppa-settings-autosave.php:1393
9590
  #, fuzzy
9594
  #: wppa-settings-autosave.php:1393
9595
  #, fuzzy
9596
  msgid "medium"
9597
+ msgstr "Mittelmäßig"
9598
 
9599
  #: wppa-settings-autosave.php:1393
9600
  #, fuzzy
9604
  #: wppa-settings-autosave.php:1403
9605
  #, fuzzy
9606
  msgid "Border width for lightbox display."
9607
+ msgstr "Randbreite für Leuchtkasten Anzeige."
9608
 
9609
  #: wppa-settings-autosave.php:1412
9610
  #, fuzzy
9611
  msgid "Border radius for lightbox display."
9612
+ msgstr "Border Radius für Leuchtkasten Anzeige."
9613
 
9614
  #: wppa-settings-autosave.php:1421
9615
  #, fuzzy
9616
  msgid "Video related size settings"
9617
+ msgstr "Video bezogenen Größeneinstellungen"
9618
 
9619
  #: wppa-settings-autosave.php:1423
9620
  #, fuzzy
9624
  #: wppa-settings-autosave.php:1424
9625
  #, fuzzy
9626
  msgid "The width of most videos"
9627
+ msgstr "Die Breite der meisten Videos"
9628
 
9629
  #: wppa-settings-autosave.php:1432
9630
  #, fuzzy
9634
  #: wppa-settings-autosave.php:1433
9635
  #, fuzzy
9636
  msgid "The height of most videos"
9637
+ msgstr "Die Höhe der meisten Videos"
9638
 
9639
  #: wppa-settings-autosave.php:1459
9640
  #, fuzzy
9644
  #: wppa-settings-autosave.php:1459
9645
  #, fuzzy
9646
  msgid "Visibility:"
9647
+ msgstr "Sichtbarkeit:"
9648
 
9649
  #: wppa-settings-autosave.php:1460
9650
  #, fuzzy
9651
  msgid "This table describes the visibility of certain wppa+ elements."
9652
+ msgstr "Diese Tabelle beschreibt die Sichtbarkeit bestimmter WPPA Elemente."
9653
 
9654
  #: wppa-settings-autosave.php:1478
9655
  #, fuzzy
9656
  msgid "Breadcrumb related visibility settings"
9657
+ msgstr "Brotkrumen im Zusammenhang mit Sichtbarkeitseinstellungen"
9658
 
9659
  #: wppa-settings-autosave.php:1480
9660
  #, fuzzy
9661
  msgid "Breadcrumb on posts"
9662
+ msgstr "Brotkrumen auf Pfählen"
9663
 
9664
  #: wppa-settings-autosave.php:1481 wppa-settings-autosave.php:1491
9665
  #, fuzzy
9666
  msgid "Show breadcrumb navigation bars."
9667
+ msgstr "Zeigen Brotkrumennavigation Bars."
9668
 
9669
  #: wppa-settings-autosave.php:1482 wppa-settings-autosave.php:1492
9670
  #, fuzzy
9671
  msgid "Indicate whether a breadcrumb navigation should be displayed"
9672
+ msgstr "Gibt an, ob ein Brotkrumen-Navigation angezeigt werden soll"
9673
 
9674
  #: wppa-settings-autosave.php:1490
9675
  #, fuzzy
9676
  msgid "Breadcrumb on pages"
9677
+ msgstr "Brotkrumen auf den Seiten"
9678
 
9679
  #: wppa-settings-autosave.php:1500
9680
  #, fuzzy
9681
  msgid "Breadcrumb on search results"
9682
+ msgstr "Brotkrumen auf die Suchergebnisse"
9683
 
9684
  #: wppa-settings-autosave.php:1501
9685
  #, fuzzy
9686
  msgid "Show breadcrumb navigation bars on the search results page."
9687
+ msgstr "Zeigen Brotkrumennavigation Balken auf der Suchergebnisseite."
 
9688
 
9689
  #: wppa-settings-autosave.php:1502
9690
  #, fuzzy
9692
  "Indicate whether a breadcrumb navigation should be displayed above the "
9693
  "search results."
9694
  msgstr ""
9695
+ "Gibt an, ob ein Brotkrumen-Navigation über den Suchergebnissen angezeigt "
9696
+ "werden sollen."
9697
 
9698
  #: wppa-settings-autosave.php:1509
9699
  #, fuzzy
9700
  msgid "Breadcrumb on topten displays"
9701
+ msgstr "Brotkrumen auf topten Displays"
9702
 
9703
  #: wppa-settings-autosave.php:1510
9704
  #, fuzzy
9705
  msgid "Show breadcrumb navigation bars on topten displays."
9706
+ msgstr "Zeigen Brotkrumennavigation Bars auf topten angezeigt."
9707
 
9708
  #: wppa-settings-autosave.php:1511
9709
  #, fuzzy
9711
  "Indicate whether a breadcrumb navigation should be displayed above the "
9712
  "topten displays."
9713
  msgstr ""
9714
+ "Gibt an, ob ein Brotkrumen-Navigation über den TopTen-Displays angezeigt "
9715
+ "werden sollen."
9716
 
9717
  #: wppa-settings-autosave.php:1518
9718
  #, fuzzy
9719
  msgid "Breadcrumb on last ten displays"
9720
+ msgstr "Brotkrumen auf den letzten zehn Displays"
9721
 
9722
  #: wppa-settings-autosave.php:1519
9723
  #, fuzzy
9724
  msgid "Show breadcrumb navigation bars on last ten displays."
9725
+ msgstr "Zeigen Brotkrumennavigation Balken letzten zehn Displays."
9726
 
9727
  #: wppa-settings-autosave.php:1520
9728
  #, fuzzy
9736
  #: wppa-settings-autosave.php:1527
9737
  #, fuzzy
9738
  msgid "Breadcrumb on comment ten displays"
9739
+ msgstr "Brotkrumen auf Kommentar zehn Displays"
9740
 
9741
  #: wppa-settings-autosave.php:1528
9742
  #, fuzzy
9743
  msgid "Show breadcrumb navigation bars on comment ten displays."
9744
+ msgstr "Zeigen Brotkrumennavigation Balken Kommentar zehn angezeigt."
9745
 
9746
  #: wppa-settings-autosave.php:1529
9747
  #, fuzzy
9749
  "Indicate whether a breadcrumb navigation should be displayed above the "
9750
  "comment ten displays."
9751
  msgstr ""
9752
+ "Gibt an, ob ein Brotkrumen-Navigation über dem Kommentar zehn Displays "
9753
+ "angezeigt werden sollen."
9754
 
9755
  #: wppa-settings-autosave.php:1536
9756
  #, fuzzy
9757
  msgid "Breadcrumb on tag result displays"
9758
+ msgstr "Brotkrumen auf Tag Ergebnisanzeigen"
9759
 
9760
  #: wppa-settings-autosave.php:1537
9761
  #, fuzzy
9762
  msgid "Show breadcrumb navigation bars on tag result displays."
9763
+ msgstr "Zeigen Brotkrumennavigation Balken Tag Ergebnisanzeigen."
9764
 
9765
  #: wppa-settings-autosave.php:1538
9766
  #, fuzzy
9768
  "Indicate whether a breadcrumb navigation should be displayed above the tag "
9769
  "result displays."
9770
  msgstr ""
9771
+ "Gibt an, ob ein Brotkrumen-Navigation über den Tag Ergebnisanzeigen "
9772
  "angezeigt werden sollen."
9773
 
9774
  #: wppa-settings-autosave.php:1545
9775
  #, fuzzy
9776
  msgid "Breadcrumb on featured ten displays"
9777
+ msgstr "Brotkrumen auf zehn vorgestellten Displays"
9778
 
9779
  #: wppa-settings-autosave.php:1546
9780
  #, fuzzy
9781
  msgid "Show breadcrumb navigation bars on featured ten displays."
9782
+ msgstr "Zeigen Brotkrumennavigation Balken mit insgesamt zehn Anzeigen."
 
9783
 
9784
  #: wppa-settings-autosave.php:1547
9785
  #, fuzzy
9787
  "Indicate whether a breadcrumb navigation should be displayed above the "
9788
  "featured ten displays."
9789
  msgstr ""
9790
+ "Gibt an, ob ein Brotkrumen-Navigation über den vorgestellten zehn Displays "
9791
+ "angezeigt werden sollen."
9792
 
9793
  #: wppa-settings-autosave.php:1554
9794
  #, fuzzy
9795
  msgid "Breadcrumb on related photos displays"
9796
+ msgstr "Brotkrumen auf ähnliche Fotos Displays"
9797
 
9798
  #: wppa-settings-autosave.php:1555
9799
  #, fuzzy
9800
  msgid "Show breadcrumb navigation bars on related photos displays."
9801
+ msgstr "Zeigen Brotkrumennavigation Bars auf ähnliche Fotos angezeigt."
9802
 
9803
  #: wppa-settings-autosave.php:1556
9804
  #, fuzzy
9806
  "Indicate whether a breadcrumb navigation should be displayed above the "
9807
  "related photos displays."
9808
  msgstr ""
9809
+ "Gibt an, ob ein Brotkrumen-Navigation über den dazugehörigen Fotos Displays "
9810
+ "angezeigt werden sollen."
9811
 
9812
  #: wppa-settings-autosave.php:1563 wppa-setup.php:734
9813
  #, fuzzy
9817
  #: wppa-settings-autosave.php:1564
9818
  #, fuzzy
9819
  msgid "Show \"Home\" in breadcrumb."
9820
+ msgstr "Zeigen Sie \"Home\" in Brotkrumen."
9821
 
9822
  #: wppa-settings-autosave.php:1565
9823
  #, fuzzy
9824
  msgid ""
9825
  "Indicate whether the breadcrumb navigation should start with a \"Home\"-link"
9826
  msgstr ""
9827
+ "Gibt an, ob die Brotkrumen-Navigation mit einem \"Home\" -Link beginnen soll"
 
9828
 
9829
  #: wppa-settings-autosave.php:1572
9830
  #, fuzzy
9834
  #: wppa-settings-autosave.php:1573
9835
  #, fuzzy
9836
  msgid "The text to use as \"Home\""
9837
+ msgstr "Der Text zu verwenden, wie \"Home\""
9838
 
9839
  #: wppa-settings-autosave.php:1582
9840
  #, fuzzy
9841
  msgid "Show the page(s) in breadcrumb."
9842
+ msgstr "Zeigen Sie die Seite (n) in Brotkrumen."
9843
 
9844
  #: wppa-settings-autosave.php:1583
9845
  #, fuzzy
9846
  msgid ""
9847
  "Indicate whether the breadcrumb navigation should show the page(hierarchy)"
9848
  msgstr ""
9849
+ "Gibt an, ob die Brotkrumen-Navigation die Seite (Hierarchie) zeigen sollte"
 
9850
 
9851
  #: wppa-settings-autosave.php:1590
9852
  #, fuzzy
9861
  #: wppa-settings-autosave.php:1592
9862
  #, fuzzy
9863
  msgid "Select the desired breadcrumb separator element."
9864
+ msgstr "Wählen Sie die gewünschte Brotkrumen Trennelement."
9865
 
9866
  #: wppa-settings-autosave.php:1593
9867
  #, fuzzy
9868
  msgid "A text string may contain valid html."
9869
+ msgstr "Eine Textzeichenfolge kann gültigen HTML enthalten."
9870
 
9871
  #: wppa-settings-autosave.php:1594
9872
  #, fuzzy
9873
  msgid ""
9874
  "An image will be scaled automatically if you set the navigation font size."
9875
  msgstr ""
9876
+ "Ein Bild wird automatisch skaliert, wenn Sie die Navigation Schriftgröße "
9877
+ "einstellen."
9878
 
9879
  #: wppa-settings-autosave.php:1596
9880
  #, fuzzy
9881
  msgid "Text (html):"
9882
+ msgstr "Text HTML"
9883
 
9884
  #: wppa-settings-autosave.php:1596
9885
  #, fuzzy
9889
  #: wppa-settings-autosave.php:1604
9890
  #, fuzzy
9891
  msgid "Html"
9892
+ msgstr "Html"
9893
 
9894
  #: wppa-settings-autosave.php:1605
9895
  #, fuzzy
9899
  #: wppa-settings-autosave.php:1606
9900
  #, fuzzy
9901
  msgid "Enter the HTML code that produces the separator symbol you want."
9902
+ msgstr "Geben Sie den HTML-Code, der das Trennzeichen erzeugt Sie wollen."
 
9903
 
9904
  #: wppa-settings-autosave.php:1607
9905
  #, fuzzy
9907
  "It may be as simple as '-' (without the quotes) or as complex as a tag like "
9908
  "<div>..</div>."
9909
  msgstr ""
9910
+ "Es kann so einfach sein wie \"-\" (ohne Anführungszeichen), oder so komplex "
9911
+ "wie ein Tag wie <div> .. </div> ."
9912
 
9913
  #: wppa-settings-autosave.php:1614
9914
  #, fuzzy
9918
  #: wppa-settings-autosave.php:1615
9919
  #, fuzzy
9920
  msgid "Full url to separator image."
9921
+ msgstr "Vollständige URL Separator Bild."
9922
 
9923
  #: wppa-settings-autosave.php:1616
9924
  #, fuzzy
9925
  msgid ""
9926
  "Enter the full url to the image you want to use for the separator symbol."
9927
  msgstr ""
9928
+ "Geben Sie die vollständige URL zum Bild, das Sie für das Trennzeichen "
9929
  "verwenden möchten."
9930
 
9931
  #: wppa-settings-autosave.php:1623
9932
  #, fuzzy
9933
  msgid "Pagelink position"
9934
+ msgstr "Pagelink Position"
9935
 
9936
  #: wppa-settings-autosave.php:1624
9937
  #, fuzzy
9938
  msgid "The location for the pagelinks bar."
9939
+ msgstr "Die Lage für die pagelinks bar."
9940
 
9941
+ #: wppa-settings-autosave.php:1627 wppa-settings-autosave.php:4189
9942
  #, fuzzy
9943
  msgid "Top"
9944
+ msgstr "Top"
9945
 
9946
+ #: wppa-settings-autosave.php:1627 wppa-settings-autosave.php:4189
9947
  #, fuzzy
9948
  msgid "Bottom"
9949
+ msgstr "Unten"
9950
 
9951
  #: wppa-settings-autosave.php:1627
9952
  #, fuzzy
9961
  #: wppa-settings-autosave.php:1635
9962
  #, fuzzy
9963
  msgid "Show a thumb link on slideshow bc."
9964
+ msgstr "Zeigen Sie mit dem Daumen Link auf Diashow bc."
9965
 
9966
  #: wppa-settings-autosave.php:1636
9967
  #, fuzzy
9968
  msgid "Show a link to thumbnail display on an breadcrumb above a slideshow"
9969
  msgstr ""
9970
+ "Zeigen Sie einen Link auf die Miniaturansicht auf einem Brotkrumen über "
9971
+ "einer Diashow"
9972
 
9973
  #: wppa-settings-autosave.php:1643
9974
  #, fuzzy
9975
  msgid "Slideshow related visibility settings"
9976
+ msgstr "Diashow bezogenen Einstellungen für die Sichtbarkeit"
9977
 
9978
  #: wppa-settings-autosave.php:1645
9979
  #, fuzzy
9980
  msgid "Start/stop"
9981
+ msgstr "Start-Stopp-System"
9982
 
9983
  #: wppa-settings-autosave.php:1646
9984
  #, fuzzy
9985
  msgid "Show the Start/Stop slideshow bar."
9986
+ msgstr "Zeigen Sie die Start / Stop Diashow bar."
9987
 
9988
  #: wppa-settings-autosave.php:1647
9989
  #, fuzzy
9991
  "If checked: display the start/stop slideshow navigation bar above the full-"
9992
  "size images and slideshow"
9993
  msgstr ""
9994
+ "Wenn diese Option aktiviert: die Startanzeige / Diashow Navigationsleiste "
9995
+ "über die Bilder in voller Größe und Diashow zu stoppen"
9996
 
9997
  #: wppa-settings-autosave.php:1654
9998
  #, fuzzy
9999
  msgid "Browse bar"
10000
+ msgstr "Durchsuchen Bar"
10001
 
10002
  #: wppa-settings-autosave.php:1655
10003
  #, fuzzy
10004
  msgid "Show Browse photos bar."
10005
+ msgstr "Zeigen Suche Fotos bar."
10006
 
10007
  #: wppa-settings-autosave.php:1656
10008
  #, fuzzy
10010
  "If checked: display the preveous/next navigation bar under the full-size "
10011
  "images and slideshow"
10012
  msgstr ""
10013
+ "Wenn diese Option aktiviert: Zeigt die preveous / nächste Navigationsleiste "
10014
+ "unter den Bildern in voller Größe und Diashow"
10015
 
10016
  #: wppa-settings-autosave.php:1663
10017
  #, fuzzy
10018
  msgid "Filmstrip"
10019
+ msgstr "Bildband"
10020
 
10021
  #: wppa-settings-autosave.php:1664
10022
  #, fuzzy
10023
  msgid "Show Filmstrip navigation bar."
10024
+ msgstr "Zeigen Diastreifen Navigationsleiste."
10025
 
10026
  #: wppa-settings-autosave.php:1665
10027
  #, fuzzy
10029
  "If checked: display the filmstrip navigation bar under the full_size images "
10030
  "and slideshow"
10031
  msgstr ""
10032
+ "Wenn diese Option aktiviert: Anzeige des Filmstreifens Navigationsleiste "
10033
+ "unter den full_size Bilder und Diashow"
10034
 
10035
  #: wppa-settings-autosave.php:1672
10036
  #, fuzzy
10037
  msgid "Film seam"
10038
+ msgstr "Film Naht"
10039
 
10040
  #: wppa-settings-autosave.php:1673
10041
  #, fuzzy
10042
  msgid "Show seam between end and start of film."
10043
+ msgstr "Zeigen Naht zwischen Ende und Anfang des Films."
10044
 
10045
  #: wppa-settings-autosave.php:1674
10046
  #, fuzzy
10047
  msgid "If checked: display the wrap-around point in the filmstrip"
10048
+ msgstr ""
10049
+ "Wenn diese Option aktiviert: Anzeige der Wrap-around-Punkt in dem "
10050
+ "Filmstreifen"
10051
 
10052
  #: wppa-settings-autosave.php:1682
10053
  #, fuzzy
10058
  #, fuzzy
10059
  msgid "If checked: display the name of the photo under the slideshow image."
10060
  msgstr ""
10061
+ "Wenn diese Option aktiviert: den Namen des Fotos unter der Diashow Bild "
10062
+ "anzuzeigen."
10063
 
10064
  #: wppa-settings-autosave.php:1690 wppa-settings-autosave.php:2095
10065
  #, fuzzy
10069
  #: wppa-settings-autosave.php:1691 wppa-settings-autosave.php:2096
10070
  #, fuzzy
10071
  msgid "Add the uploaders display name in parenthesis to the name."
10072
+ msgstr "Fügen Sie den Uploader Anzeigenamen in Klammern auf den Namen."
10073
 
10074
  #: wppa-settings-autosave.php:1699
10075
  #, fuzzy
10092
  #: wppa-settings-autosave.php:1708
10093
  #, fuzzy
10094
  msgid "Hide when empty"
10095
+ msgstr "Leere nicht anzeigen"
10096
 
10097
  #: wppa-settings-autosave.php:1709
10098
  #, fuzzy
10099
  msgid "Hide the descriptionbox when empty."
10100
+ msgstr "Ausblenden der descriptionbox wenn sie leer sind."
10101
 
10102
  #: wppa-settings-autosave.php:1717
10103
  #, fuzzy
10107
  #: wppa-settings-autosave.php:1718
10108
  #, fuzzy
10109
  msgid "Enable the rating system."
10110
+ msgstr "Aktivieren Sie das Rating-System."
10111
 
10112
  #: wppa-settings-autosave.php:1719
10113
  #, fuzzy
10114
  msgid "If checked, the photo rating system will be enabled."
10115
  msgstr ""
10116
+ "Wenn diese Option aktiviert, wird das Foto Rating-System aktiviert werden."
10117
 
10118
  #: wppa-settings-autosave.php:1727
10119
  #, fuzzy
10120
  msgid "Comments system"
10121
+ msgstr "Kommentare System"
10122
 
10123
  #: wppa-settings-autosave.php:1728
10124
  #, fuzzy
10125
  msgid "Enable the comments system."
10126
+ msgstr "Aktivieren Sie die Kommentarsystem."
10127
 
10128
  #: wppa-settings-autosave.php:1729
10129
  #, fuzzy
10131
  "Display the comments box under the fullsize images and let users enter their "
10132
  "comments on individual photos."
10133
  msgstr ""
10134
+ "Rufen Sie das Kommentarfeld unter den Gross Bilder und lassen Sie Benutzer "
10135
+ "geben die Kommentare zu den einzelnen Fotos."
10136
 
10137
  #: wppa-settings-autosave.php:1737
10138
  #, fuzzy
10142
  #: wppa-settings-autosave.php:1738
10143
  #, fuzzy
10144
  msgid "Show Avatars with the comments if not --- none ---"
10145
+ msgstr "Zeigen Avatare mit den Kommentaren, wenn nicht --- keine ---"
10146
 
10147
  #: wppa-settings-autosave.php:1743
10148
  #, fuzzy
10157
  #: wppa-settings-autosave.php:1745
10158
  #, fuzzy
10159
  msgid "monsterid"
10160
+ msgstr "monsterid"
10161
 
10162
  #: wppa-settings-autosave.php:1746
10163
  #, fuzzy
10172
  #: wppa-settings-autosave.php:1748
10173
  #, fuzzy
10174
  msgid "--- url ---"
10175
+ msgstr "URL"
10176
 
10177
  #: wppa-settings-autosave.php:1763
10178
  #, fuzzy
10179
  msgid "Comment Avatar url"
10180
+ msgstr "Kommentar Avatar url"
10181
 
10182
  #: wppa-settings-autosave.php:1764
10183
  #, fuzzy
10187
  #: wppa-settings-autosave.php:1772
10188
  #, fuzzy
10189
  msgid "Big Browse Buttons"
10190
+ msgstr "Big durchsuchen Anstecker"
10191
 
10192
  #: wppa-settings-autosave.php:1773
10193
  #, fuzzy
10194
  msgid "Enable invisible browsing buttons."
10195
+ msgstr "Aktivieren unsichtbar Browsing Tasten."
10196
 
10197
  #: wppa-settings-autosave.php:1774 wppa-settings-autosave.php:2363
10198
  #, fuzzy
10200
  "If checked, the fullsize image is covered by two invisible areas that act as "
10201
  "browse buttons."
10202
  msgstr ""
10203
+ "Wenn diese Option aktiviert, wird das großes Bild von zwei unsichtbare "
10204
+ "Bereiche abgedeckt, die als Browse-Tasten fungieren."
10205
 
10206
  #: wppa-settings-autosave.php:1775 wppa-settings-autosave.php:2364
10207
  #: wppa-settings-autosave.php:2374
10210
  "Make sure the Full height (Table I-B2) is properly configured to prevent "
10211
  "these areas to overlap unwanted space."
10212
  msgstr ""
10213
+ "Achten Sie darauf, die volle Höhe (Tabelle I-B2) richtig, diese Bereiche zu "
10214
+ "verhindern konfiguriert unerwünschte Raum zu überlappen."
 
10215
 
10216
  #: wppa-settings-autosave.php:1782
10217
  #, fuzzy
10218
  msgid "Ugly Browse Buttons"
10219
+ msgstr "Hässliche durchsuchen Anstecker"
10220
 
10221
  #: wppa-settings-autosave.php:1783
10222
  #, fuzzy
10223
  msgid "Enable the ugly browsing buttons."
10224
+ msgstr "Aktivieren Sie die hässlichen Browsing Tasten."
10225
 
10226
  #: wppa-settings-autosave.php:1784
10227
  #, fuzzy
10228
  msgid "If checked, the fullsize image is covered by two browse buttons."
10229
  msgstr ""
10230
+ "Wenn diese Option aktiviert, wird das großes Bild von zwei Schaltflächen "
10231
+ "Durchsuchen abgedeckt."
10232
 
10233
  #: wppa-settings-autosave.php:1795
10234
  #, fuzzy
10235
  msgid "Start/stop icons"
10236
+ msgstr "Start / Stopp-Symbole"
10237
 
10238
  #: wppa-settings-autosave.php:1796
10239
  #, fuzzy
10240
  msgid "Show start and stop icons at the center of the slide"
10241
+ msgstr "Zeigen Sie Start- und Stopp-Symbole in der Mitte des Schiebers"
10242
 
10243
  #: wppa-settings-autosave.php:1808
10244
  #, fuzzy
10245
  msgid "Show custom box"
10246
+ msgstr "Zeige eigene Box"
10247
 
10248
  #: wppa-settings-autosave.php:1809
10249
  #, fuzzy
10250
  msgid "Display the custom box in the slideshow"
10251
+ msgstr "Zeigen Sie das benutzerdefinierte Feld in der Diashow"
10252
 
10253
  #: wppa-settings-autosave.php:1810 wppa-settings-autosave.php:1821
10254
  #, fuzzy
10256
  "You can fill the custom box with any html you like. It will not be checked, "
10257
  "so it is your own responsability to close tags properly."
10258
  msgstr ""
10259
+ "Sie können die benutzerdefinierte Feld mit einem beliebigen HTML füllen Sie "
10260
+ "möchten. Es wird nicht überprüft werden, es ist also Ihre eigene "
10261
+ "Verantwortung Tags richtig zu schließen."
10262
 
10263
  #: wppa-settings-autosave.php:1811 wppa-settings-autosave.php:1822
10264
  #, fuzzy
10265
  msgid "The position of the box can be defined in Table IX-E."
10266
+ msgstr "Die Position der Box kann in Tabelle IX-E definiert werden."
10267
 
10268
  #: wppa-settings-autosave.php:1819
10269
  #, fuzzy
10273
  #: wppa-settings-autosave.php:1820
10274
  #, fuzzy
10275
  msgid "The content (html) of the custom box."
10276
+ msgstr "Der Inhalt (html) des benutzerdefinierten Feld."
10277
 
10278
  #: wppa-settings-autosave.php:1829
10279
  #, fuzzy
10280
  msgid "Slideshow/Number bar"
10281
+ msgstr "Diashow / Anzahl bar"
10282
 
10283
  #: wppa-settings-autosave.php:1830
10284
  #, fuzzy
10285
  msgid "Display the Slideshow / Number bar."
10286
+ msgstr "Mit der Diaschau / Anzahl bar."
10287
 
10288
  #: wppa-settings-autosave.php:1831
10289
  #, fuzzy
10290
  msgid "If checked: display the number boxes on slideshow"
10291
+ msgstr "Wenn diese Option aktiviert: Zeigt die Nummernfelder auf Diashow"
10292
 
10293
  #: wppa-settings-autosave.php:1839
10294
  #, fuzzy
10295
  msgid "IPTC system"
10296
+ msgstr "IPTC-System"
10297
 
10298
  #: wppa-settings-autosave.php:1840
10299
  #, fuzzy
10300
  msgid "Enable the iptc system."
10301
+ msgstr "Aktivieren Sie die IPTC-System."
10302
 
10303
  #: wppa-settings-autosave.php:1841
10304
  #, fuzzy
10305
  msgid "Display the iptc box under the fullsize images."
10306
+ msgstr "Rufen Sie das IPTC-Box unter den Gross Bilder."
10307
 
10308
  #: wppa-settings-autosave.php:1849
10309
  #, fuzzy
10310
  msgid "IPTC open"
10311
+ msgstr "IPTC offen"
10312
 
10313
  #: wppa-settings-autosave.php:1850
10314
  #, fuzzy
10315
  msgid "Display the iptc box initially opened."
10316
+ msgstr "Anzeige der IPTC-Feld zunächst geöffnet."
10317
 
10318
  #: wppa-settings-autosave.php:1851
10319
  #, fuzzy
10320
  msgid "Display the iptc box under the fullsize images initially open."
10321
+ msgstr "Rufen Sie das IPTC-Box unter den Gross Bilder zunächst offen."
10322
 
10323
  #: wppa-settings-autosave.php:1859
10324
  #, fuzzy
10325
  msgid "EXIF system"
10326
+ msgstr "EXIF-System"
10327
 
10328
  #: wppa-settings-autosave.php:1860
10329
  #, fuzzy
10330
  msgid "Enable the exif system."
10331
+ msgstr "Aktivieren Sie die EXIF-System."
10332
 
10333
  #: wppa-settings-autosave.php:1861
10334
  #, fuzzy
10335
  msgid "Display the exif box under the fullsize images."
10336
+ msgstr "Zeigen Sie die exif Box unter den Gross Bilder."
10337
 
10338
  #: wppa-settings-autosave.php:1869
10339
  #, fuzzy
10340
  msgid "EXIF open"
10341
+ msgstr "EXIF offen"
10342
 
10343
  #: wppa-settings-autosave.php:1870
10344
  #, fuzzy
10345
  msgid "Display the exif box initially opened."
10346
+ msgstr "Anzeige der EXIF-Feld zunächst geöffnet."
10347
 
10348
  #: wppa-settings-autosave.php:1871
10349
  #, fuzzy
10350
  msgid "Display the exif box under the fullsize images initially open."
10351
+ msgstr "Zeigen Sie die exif Box unter den Gross Bilder zunächst offen."
10352
 
10353
  #: wppa-settings-autosave.php:1879
10354
  #, fuzzy
10355
  msgid "Social media share box related visibility settings"
10356
+ msgstr "Social-Media-Aktie boxen Sichtbarkeitseinstellungen"
 
 
10357
 
10358
  #: wppa-settings-autosave.php:1881
10359
  #, fuzzy
10363
  #: wppa-settings-autosave.php:1882
10364
  #, fuzzy
10365
  msgid "Display the share social media buttons box."
10366
+ msgstr "Zeigen Sie den Anteil Social-Media-Tasten-Box."
10367
 
10368
+ #: wppa-settings-autosave.php:1891 wppa-settings-autosave.php:9172
10369
  #, fuzzy
10370
  msgid "Hide when running"
10371
+ msgstr "Ausblenden beim Laufen"
10372
 
10373
  #: wppa-settings-autosave.php:1892
10374
  #, fuzzy
10375
  msgid "Hide the SM box when slideshow runs."
10376
+ msgstr "Ausblenden der SM-Box als Diashow läuft."
10377
 
10378
  #: wppa-settings-autosave.php:1900
10379
  #, fuzzy
10380
  msgid "Show Share Box Widget"
10381
+ msgstr "Anzeigen Teilen Box Widget"
10382
 
10383
  #: wppa-settings-autosave.php:1901
10384
  #, fuzzy
10385
  msgid "Display the share social media buttons box in widgets."
10386
+ msgstr "Zeigen Sie den Anteil Social-Media-Tasten-Box in Widgets."
10387
 
10388
  #: wppa-settings-autosave.php:1902
10389
  #, fuzzy
10391
  "This setting applies to normal slideshows in widgets, not to the "
10392
  "slideshowwidget as that is a slideonly display."
10393
  msgstr ""
10394
+ "Diese Einstellung gilt für normale Diashows in Widgets, nicht auf die "
10395
+ "slideshowwidget wie ein slideonly Display ist."
10396
 
10397
  #: wppa-settings-autosave.php:1910
10398
  #, fuzzy
10399
  msgid "Show Share Buttons Thumbs"
10400
+ msgstr "Daumen zeigen Teilen Buttons"
10401
 
10402
  #: wppa-settings-autosave.php:1911
10403
  #, fuzzy
10404
  msgid "Display the share social media buttons under thumbnails."
10405
+ msgstr "Zeigen Sie die Aktie Social-Media-Tasten unter Thumbnails."
10406
 
10407
  #: wppa-settings-autosave.php:1920
10408
  #, fuzzy
10409
  msgid "Show Share Buttons Lightbox"
10410
+ msgstr "Anzeigen Teilen Buttons Lightbox"
10411
 
10412
  #: wppa-settings-autosave.php:1921
10413
  #, fuzzy
10414
  msgid "Display the share social media buttons on lightbox displays."
10415
+ msgstr "Zeigen Sie die Aktie Social-Media-Tasten Leuchtkasten-Displays."
10416
 
10417
  #: wppa-settings-autosave.php:1930
10418
  #, fuzzy
10419
  msgid "Show Share Buttons Mphoto"
10420
+ msgstr "Anzeigen Teilen Buttons mphoto"
10421
 
10422
  #: wppa-settings-autosave.php:1931
10423
  #, fuzzy
10424
  msgid "Display the share social media buttons on mphoto displays."
10425
+ msgstr "Zeigen Sie die Aktie Social-Media-Tasten auf mphoto angezeigt."
10426
 
10427
  #: wppa-settings-autosave.php:1940
10428
  #, fuzzy
10432
  #: wppa-settings-autosave.php:1941
10433
  #, fuzzy
10434
  msgid "Do not show share on these pages"
10435
+ msgstr "zeigen Sie nicht teilen auf diesen Seiten"
10436
 
10437
  #: wppa-settings-autosave.php:1942
10438
  #, fuzzy
10439
  msgid "Use this for pages that require the user is logged in"
10440
  msgstr ""
10441
+ "Verwenden Sie diese Option für Seiten, die der Benutzer benötigt wird "
10442
+ "angemeldet"
10443
 
10444
  #: wppa-settings-autosave.php:1946
10445
  #, fuzzy
10446
  msgid "--- Select one or more pages ---"
10447
+ msgstr "--- Wählen Sie eine oder mehrere Seiten ---"
10448
 
10449
  #: wppa-settings-autosave.php:1955
10450
  #, fuzzy
10454
  #: wppa-settings-autosave.php:1956
10455
  #, fuzzy
10456
  msgid "Display the QR code in the share box."
10457
+ msgstr "Zeigen Sie den QR-Code in der Aktie Feld."
10458
 
10459
  #: wppa-settings-autosave.php:1964
10460
  #, fuzzy
10464
  #: wppa-settings-autosave.php:1965
10465
  #, fuzzy
10466
  msgid "Display the Twitter button in the share box."
10467
+ msgstr "Zeigen Sie den Twitter-Button in der Box Aktie."
10468
 
10469
  #: wppa-settings-autosave.php:1973
10470
  #, fuzzy
10471
  msgid "The creator's Twitter account"
10472
+ msgstr "Die Twitter-Erfinder Konto"
10473
 
10474
  #: wppa-settings-autosave.php:1974
10475
  #, fuzzy
10476
  msgid "The Twitter @username a twitter card should be attributed to."
10477
+ msgstr "Die Twitter @UserName eine twitter-Karte sollte zugeschrieben werden."
10478
 
10479
  #: wppa-settings-autosave.php:1975
10480
  #, fuzzy
10482
  "If you want to share the image directly - by a so called twitter card - you "
10483
  "must enter your twitter account name here"
10484
  msgstr ""
10485
+ "Wenn Sie das Bild teilen möchten direkt - durch eine so twitter Karte "
10486
+ "genannt - müssen Sie Ihre Twitter-Accountnamen hier eingeben"
10487
 
10488
  #: wppa-settings-autosave.php:1982
10489
  #, fuzzy
10493
  #: wppa-settings-autosave.php:1983
10494
  #, fuzzy
10495
  msgid "Display the Google+ button in the share box."
10496
+ msgstr "Zeigen Sie die Google Button in der Aktie Feld."
10497
 
10498
  #: wppa-settings-autosave.php:1991
10499
  #, fuzzy
10503
  #: wppa-settings-autosave.php:1992
10504
  #, fuzzy
10505
  msgid "Display the Pintrest button in the share box."
10506
+ msgstr "Zeigen Sie die Pintrest Taste im Aktien Feld."
10507
 
10508
  #: wppa-settings-autosave.php:2000
10509
  #, fuzzy
10513
  #: wppa-settings-autosave.php:2001
10514
  #, fuzzy
10515
  msgid "Display the LinkedIn button in the share box."
10516
+ msgstr "Zeigen Sie die LinkedIn-Button in der Aktie Box."
10517
 
10518
  #: wppa-settings-autosave.php:2009
10519
  #, fuzzy
10520
  msgid "Show Facebook share button"
10521
+ msgstr "Zeigen Sie Facebook Share-Taste"
10522
 
10523
  #: wppa-settings-autosave.php:2010 wppa-settings-autosave.php:2019
10524
  #, fuzzy
10525
  msgid "Display the Facebook button in the share box."
10526
+ msgstr "Zeigen Sie den Facebook-Button in der Aktie Feld."
10527
 
10528
  #: wppa-settings-autosave.php:2018
10529
  #, fuzzy
10538
  #: wppa-settings-autosave.php:2028
10539
  #, fuzzy
10540
  msgid "Select the Facebook button display type."
10541
+ msgstr "Wählen Sie den Anzeigetyp Facebook-Taste."
10542
 
10543
  #: wppa-settings-autosave.php:2031
10544
  #, fuzzy
10548
  #: wppa-settings-autosave.php:2031
10549
  #, fuzzy
10550
  msgid "Box with counter"
10551
+ msgstr "Box mit Gegen"
10552
 
10553
  #: wppa-settings-autosave.php:2038
10554
  #, fuzzy
10555
  msgid "Show Facebook comment box"
10556
+ msgstr "Anzeigen Facebook Kommentarfeld"
10557
 
10558
  #: wppa-settings-autosave.php:2039
10559
  #, fuzzy
10560
  msgid "Display the Facebook comment dialog box in the share box."
10561
+ msgstr "Rufen Sie den Facebook Kommentar Dialogfeld im Aktienfeld."
10562
 
10563
  #: wppa-settings-autosave.php:2047
10564
  #, fuzzy
10569
  #, fuzzy
10570
  msgid "Enter your facebook user id to be able to moderate comments and sends"
10571
  msgstr ""
10572
+ "Geben Sie Ihre Facebook-Benutzer-ID zu können Kommentare zu moderieren und "
10573
+ "sendet"
10574
 
10575
  #: wppa-settings-autosave.php:2056
10576
  #, fuzzy
10577
  msgid "Facebook App Id"
10578
+ msgstr "Facebook App-ID"
10579
 
10580
  #: wppa-settings-autosave.php:2057
10581
  #, fuzzy
10582
  msgid "Enter your facebook app id to be able to moderate comments and sends"
10583
  msgstr ""
10584
+ "Geben Sie Ihre Facebook-App-ID zu können Kommentare zu moderieren und sendet"
10585
 
10586
  #: wppa-settings-autosave.php:2065
10587
  #, fuzzy
10588
  msgid "Facebook js SDK"
10589
+ msgstr "Facebook js SDK"
10590
 
10591
  #: wppa-settings-autosave.php:2066
10592
  #, fuzzy
10593
  msgid "Load Facebook js SDK"
10594
+ msgstr "Laden Sie Facebook js SDK"
10595
 
10596
  #: wppa-settings-autosave.php:2067
10597
  #, fuzzy
10599
  "Uncheck this box only when there is a conflict with an other plugin that "
10600
  "also loads the Facebook js SDK."
10601
  msgstr ""
10602
+ "Deaktivieren Sie nur diese Box, wenn es einen Konflikt mit einem anderen "
10603
+ "Plugin ist, dass auch die Facebook js SDK lädt."
10604
 
10605
  #: wppa-settings-autosave.php:2074
10606
  #, fuzzy
10607
  msgid "Share single image"
10608
+ msgstr "Teilen einzelnes Bild"
10609
 
10610
  #: wppa-settings-autosave.php:2075
10611
  #, fuzzy
10612
  msgid "Share a link to a single image, not the slideshow."
10613
+ msgstr "Die Zeiger auf einem einzigen Bild, nicht die Diashow."
10614
 
10615
  #: wppa-settings-autosave.php:2076
10616
  #, fuzzy
10618
  "The sharelink points to a page with a single image rather than to the page "
10619
  "with the photo in the slideshow."
10620
  msgstr ""
10621
+ "Die sharelink Punkte auf einer Seite mit einem einzigen Bild und nicht auf "
10622
+ "der Seite mit dem Foto in der Diashow."
10623
 
10624
  #: wppa-settings-autosave.php:2084
10625
  #, fuzzy
10626
  msgid "Thumbnail display related visibility settings"
10627
+ msgstr "Thumbnail-Anzeige im Zusammenhang mit Sichtbarkeitseinstellungen"
 
10628
 
10629
  #: wppa-settings-autosave.php:2086
10630
  #, fuzzy
10631
  msgid "Thumbnail name"
10632
+ msgstr "Thumbnail Name"
10633
 
10634
  #: wppa-settings-autosave.php:2087
10635
  #, fuzzy
10639
  #: wppa-settings-autosave.php:2088
10640
  #, fuzzy
10641
  msgid "Display photo name under thumbnail images."
10642
+ msgstr "Anzeigen von Fotoname unter Miniaturbildern."
10643
 
10644
  #: wppa-settings-autosave.php:2104
10645
  #, fuzzy
10646
  msgid "Thumbnail desc"
10647
+ msgstr "Thumbnail ab"
10648
 
10649
  #: wppa-settings-autosave.php:2105
10650
  #, fuzzy
10651
  msgid "Display Thumbnail description."
10652
+ msgstr "Anzeige Thumbnail Beschreibung."
10653
 
10654
  #: wppa-settings-autosave.php:2106
10655
  #, fuzzy
10656
  msgid "Display description of the photo under thumbnail images."
10657
+ msgstr "Anzeige Beschreibung des Fotos unter Miniaturbildern."
10658
 
10659
  #: wppa-settings-autosave.php:2113
10660
  #, fuzzy
10661
  msgid "Thumbnail rating"
10662
+ msgstr "Thumbnail Bewertung"
10663
 
10664
  #: wppa-settings-autosave.php:2114
10665
  #, fuzzy
10666
  msgid "Display Thumbnail Rating."
10667
+ msgstr "Anzeige Thumbnail Bewertung."
10668
 
10669
  #: wppa-settings-autosave.php:2115
10670
  #, fuzzy
10671
  msgid "Display the rating of the photo under the thumbnail image."
10672
+ msgstr "Zeigen Sie die Bewertung des Fotos unter dem Miniaturbild."
10673
 
10674
  #: wppa-settings-autosave.php:2122
10675
  #, fuzzy
10676
  msgid "Thumbnail comcount"
10677
+ msgstr "Thumbnail comcount"
10678
 
10679
  #: wppa-settings-autosave.php:2123
10680
  #, fuzzy
10681
  msgid "Display Thumbnail Comment count."
10682
+ msgstr "Anzeige Thumbnail Anzahl an Kommentaren."
10683
 
10684
  #: wppa-settings-autosave.php:2124
10685
  #, fuzzy
10686
  msgid "Display the number of comments to the photo under the thumbnail image."
10687
+ msgstr "Anzeige der Anzahl der Kommentare zu dem Foto unter dem Miniaturbild."
 
10688
 
10689
  #: wppa-settings-autosave.php:2131
10690
  #, fuzzy
10691
  msgid "Thumbnail viewcount"
10692
+ msgstr "Thumbnail Anzahl der Aufrufe"
10693
 
10694
  #: wppa-settings-autosave.php:2132
10695
  #, fuzzy
10696
  msgid "Display the number of views."
10697
+ msgstr "Anzeige der Anzahl der Ansichten."
10698
 
10699
  #: wppa-settings-autosave.php:2133
10700
  #, fuzzy
10701
  msgid "Display the number of views under the thumbnail image."
10702
+ msgstr "Anzeige der Anzahl der Ansichten unter dem Miniaturbild."
10703
 
10704
  #: wppa-settings-autosave.php:2140
10705
  #, fuzzy
10706
  msgid "Thumbnail virt album"
10707
+ msgstr "Thumbnail virt Album"
10708
 
10709
  #: wppa-settings-autosave.php:2141
10710
  #, fuzzy
10711
  msgid "Display the real album name on virtual album display."
10712
+ msgstr "Rufen Sie den echten Namen des Albums auf virtuellen Album-Display."
10713
 
10714
  #: wppa-settings-autosave.php:2142
10715
  #, fuzzy
10717
  "Display the album name of the photo in parenthesis under the thumbnail on "
10718
  "virtual album displays like search results etc."
10719
  msgstr ""
10720
+ "Zeigen Sie den Albumnamen des Fotos in Klammern unter der Miniatur auf "
10721
+ "virtuellen Album zeigt, wie die Suchergebnisse usw."
10722
 
10723
  #: wppa-settings-autosave.php:2149
10724
  #, fuzzy
10728
  #: wppa-settings-autosave.php:2150
10729
  #, fuzzy
10730
  msgid "Show video controls on thumbnail displays."
10731
+ msgstr "Zeigen Sie Video-Steuerelemente auf das Vorschaubild angezeigt."
10732
 
10733
  #: wppa-settings-autosave.php:2151
10734
  #, fuzzy
10736
  "Works on default thumbnail type only. You can play the video only when the "
10737
  "link is set to no link at all."
10738
  msgstr ""
10739
+ "Arbeiten auf Standard-Miniaturbild nur eingeben. Sie können das Video nur "
10740
+ "spielen, wenn der Link zu keinem Link überhaupt eingestellt."
10741
 
10742
  #: wppa-settings-autosave.php:2158
10743
  #, fuzzy
10747
  #: wppa-settings-autosave.php:2159
10748
  #, fuzzy
10749
  msgid "Show audio controls on thumbnail displays."
10750
+ msgstr "Zeigen Sie Audio-Steuerelemente auf das Vorschaubild angezeigt."
10751
 
10752
  #: wppa-settings-autosave.php:2167
10753
  #, fuzzy
10754
  msgid "Popup name"
10755
+ msgstr "Popup Name"
10756
 
10757
  #: wppa-settings-autosave.php:2168
10758
  #, fuzzy
10759
  msgid "Display Thumbnail name on popup."
10760
+ msgstr "Anzeige Thumbnail Namen auf Popup."
10761
 
10762
  #: wppa-settings-autosave.php:2169
10763
  #, fuzzy
10764
  msgid "Display photo name under thumbnail images on the popup."
10765
+ msgstr "Anzeigen von Fotoname unter Miniaturbilder auf dem Pop-up."
10766
 
10767
  #: wppa-settings-autosave.php:2176
10768
  #, fuzzy
10772
  #: wppa-settings-autosave.php:2177
10773
  #, fuzzy
10774
  msgid "Display owner on popup."
10775
+ msgstr "Display-Besitzer auf Popup."
10776
 
10777
  #: wppa-settings-autosave.php:2178
10778
  #, fuzzy
10779
  msgid "Display photo owner under thumbnail images on the popup."
10780
+ msgstr "Anzeigen von Foto Besitzer unter Miniaturbilder auf dem Pop-up."
10781
 
10782
  #: wppa-settings-autosave.php:2185
10783
  #, fuzzy
10784
  msgid "Popup desc"
10785
+ msgstr "Popup ab"
10786
 
10787
  #: wppa-settings-autosave.php:2186
10788
  #, fuzzy
10789
  msgid "Display Thumbnail description on popup."
10790
+ msgstr "Anzeige Thumbnail Beschreibung auf Popup."
10791
 
10792
  #: wppa-settings-autosave.php:2187
10793
  #, fuzzy
10794
  msgid "Display description of the photo under thumbnail images on the popup."
10795
+ msgstr "Anzeige Beschreibung des Fotos unter Miniaturbilder auf dem Pop-up."
10796
 
10797
  #: wppa-settings-autosave.php:2194
10798
  #, fuzzy
10799
  msgid "Popup desc no links"
10800
+ msgstr "Popup desc keine Links"
10801
 
10802
  #: wppa-settings-autosave.php:2195
10803
  #, fuzzy
10804
  msgid "Strip html anchor tags from descriptions on popups"
10805
+ msgstr "Streifen HTML-Anker-Tags aus Beschreibungen auf Pop-ups"
10806
 
10807
  #: wppa-settings-autosave.php:2196
10808
  #, fuzzy
10810
  "Use this option to prevent the display of links that cannot be activated."
10811
  msgstr ""
10812
  "Verwenden Sie diese Option, um die Anzeige von Links zu verhindern, die "
10813
+ "nicht aktiviert werden können."
10814
 
10815
  #: wppa-settings-autosave.php:2203
10816
  #, fuzzy
10817
  msgid "Popup rating"
10818
+ msgstr "Popup-Bewertung"
10819
 
10820
  #: wppa-settings-autosave.php:2204
10821
  #, fuzzy
10822
  msgid "Display Thumbnail Rating on popup."
10823
+ msgstr "Anzeige Thumbnail Rating auf Popup."
10824
 
10825
  #: wppa-settings-autosave.php:2205
10826
  #, fuzzy
10827
  msgid "Display the rating of the photo under the thumbnail image on the popup."
10828
+ msgstr ""
10829
+ "Zeigen Sie die Bewertung des Fotos unter dem Miniaturbild auf dem Popup."
10830
 
10831
  #: wppa-settings-autosave.php:2212
10832
  #, fuzzy
10833
  msgid "Popup comcount"
10834
+ msgstr "Popup comcount"
10835
 
10836
  #: wppa-settings-autosave.php:2213
10837
  #, fuzzy
10838
  msgid "Display Thumbnail Comment count on popup."
10839
+ msgstr "Anzeige Thumbnail Anzahl an Kommentaren auf Popup."
10840
 
10841
  #: wppa-settings-autosave.php:2214
10842
  #, fuzzy
10844
  "Display the number of comments of the photo under the thumbnail image on the "
10845
  "popup."
10846
  msgstr ""
10847
+ "Anzeige der Anzahl der Kommentare des Fotos unter dem Thumbnail-Bild auf dem "
10848
+ "Pop-up."
10849
 
10850
  #: wppa-settings-autosave.php:2221
10851
  #, fuzzy
10856
  #, fuzzy
10857
  msgid "Display the number of votes along with average ratings."
10858
  msgstr ""
10859
+ "Zeigen Sie die Anzahl der Stimmen, zusammen mit durchschnittlichen "
10860
+ "Bewertungen."
10861
 
10862
  #: wppa-settings-autosave.php:2223
10863
  #, fuzzy
10865
  "If checked, the number of votes is displayed along with average rating "
10866
  "displays on thumbnail and popup displays."
10867
  msgstr ""
10868
+ "Wenn diese Option aktiviert, wird die Anzahl der Stimmen mit einer "
10869
+ "durchschnittlichen Bewertung zeigt auf das Vorschaubild und Popup-Displays "
10870
+ "angezeigt entlang."
10871
 
10872
  #: wppa-settings-autosave.php:2230
10873
  #, fuzzy
10874
  msgid "Show name on thumb area"
10875
+ msgstr "Zeigen Sie Namen auf Daumenbereich"
10876
 
10877
  #: wppa-settings-autosave.php:2231
10878
  #, fuzzy
10879
  msgid "Select if and where to display the album name on the thumbnail display."
10880
  msgstr ""
10881
+ "Wählen Sie, ob und wo der Name des Albums auf der Miniaturbildanzeige "
10882
+ "angezeigt werden soll."
10883
 
10884
  #: wppa-settings-autosave.php:2234 wppa-settings-autosave.php:2245
10885
+ #: wppa-settings-autosave.php:2274 wppa-settings-autosave.php:4544
10886
  #, fuzzy
10887
  msgid "None"
10888
+ msgstr "auswählen"
10889
 
10890
  #: wppa-settings-autosave.php:2234 wppa-settings-autosave.php:2245
10891
  #: wppa-settings-autosave.php:2274 wppa-settings-autosave.php:3634
10897
  #: wppa-settings-autosave.php:2274 wppa-settings-autosave.php:3634
10898
  #, fuzzy
10899
  msgid "At the bottom"
10900
+ msgstr "am unteren"
10901
 
10902
  #: wppa-settings-autosave.php:2241
10903
  #, fuzzy
10904
  msgid "Show desc on thumb area"
10905
+ msgstr "Zeigen Sie ab auf Daumenbereich"
10906
 
10907
  #: wppa-settings-autosave.php:2242
10908
  #, fuzzy
10910
  "Select if and where to display the album description on the thumbnail "
10911
  "display."
10912
  msgstr ""
10913
+ "auf der Miniaturansicht auswählen, ob und wo das Album Beschreibung "
10914
+ "anzuzeigen."
10915
 
10916
  #: wppa-settings-autosave.php:2252
10917
  #, fuzzy
10918
  msgid "Show Edit/Delete links"
10919
+ msgstr "Anzeigen Bearbeiten / Löschen Links"
10920
 
10921
  #: wppa-settings-autosave.php:2253
10922
  #, fuzzy
10923
  msgid "Show these links under default thumbnails for owner and admin."
10924
  msgstr ""
10925
+ "Zeigen Sie diese Links unter Standard-Miniaturansicht für Inhaber und admin."
 
10926
 
10927
  #: wppa-settings-autosave.php:2261
10928
  #, fuzzy
10929
  msgid "Show empty thumbnail area"
10930
+ msgstr "Anzeigen leer Miniaturansichtsbeeich"
10931
 
10932
  #: wppa-settings-autosave.php:2262
10933
  #, fuzzy
10934
  msgid "Display thumbnail areas with upload link only for empty albums."
10935
+ msgstr "Anzeige Miniaturbereiche mit Upload-Link nur für leere Alben."
 
10936
 
10937
  #: wppa-settings-autosave.php:2270
10938
  #, fuzzy
10939
  msgid "Upload/create link on thumbnail area"
10940
+ msgstr "Laden / erstellen Link auf Miniaturansichtsbeeich"
10941
 
10942
  #: wppa-settings-autosave.php:2271
10943
  #, fuzzy
10944
  msgid "Select the location of the upload and crete links."
10945
+ msgstr "Wählen Sie den Speicherort des Upload und Kreta Links."
10946
 
10947
  #: wppa-settings-autosave.php:2282
10948
  #, fuzzy
10949
  msgid "Album cover related visibility settings"
10950
+ msgstr "Album-Cover im Zusammenhang mit Sichtbarkeitseinstellungen"
10951
 
10952
  #: wppa-settings-autosave.php:2284
10953
  #, fuzzy
10954
  msgid "Covertext"
10955
+ msgstr "cover~~POS=TRUNC"
10956
 
10957
  #: wppa-settings-autosave.php:2285
10958
  #, fuzzy
10959
  msgid "Show the text on the album cover."
10960
+ msgstr "Zeigen Sie den Text auf dem Album-Cover."
10961
 
10962
  #: wppa-settings-autosave.php:2286
10963
  #, fuzzy
10964
  msgid "Display the album decription on the album cover"
10965
+ msgstr "Zeigen Sie das Album decription auf dem Album-Cover"
10966
 
10967
  #: wppa-settings-autosave.php:2294
10968
  #, fuzzy
10975
  "If you do not want slideshows: uncheck this box. Browsing full size images "
10976
  "will remain possible."
10977
  msgstr ""
10978
+ "Wenn Sie nicht wollen, Diashows: dieses Kontrollkästchen deaktivieren. "
10979
+ "Bilder in voller Größe surfen bleiben möglich."
10980
 
10981
  #: wppa-settings-autosave.php:2302
10982
  #, fuzzy
10983
  msgid "Slideshow/Browse"
10984
+ msgstr "Diashow / Browse"
10985
 
10986
  #: wppa-settings-autosave.php:2303
10987
  #, fuzzy
10988
  msgid "Display the Slideshow / Browse photos link on album covers"
10989
+ msgstr "Mit der Diaschau / Durchsuchen von Fotos auf Album-Cover verlinken"
10990
 
10991
  #: wppa-settings-autosave.php:2304
10992
  #, fuzzy
10993
  msgid ""
10994
  "This setting causes the Slideshow link to be displayed on the album cover."
10995
  msgstr ""
10996
+ "Diese Einstellung bewirkt, dass die Diashow-Link auf dem Albumcover "
10997
+ "angezeigt werden."
10998
 
10999
  #: wppa-settings-autosave.php:2305
11000
  #, fuzzy
11002
  "If slideshows are disabled in item 2 in this table, you will see a browse "
11003
  "link to fullsize images."
11004
  msgstr ""
11005
+ "Wenn Diashows in Artikel 2 in dieser Tabelle deaktiviert sind, erhalten Sie "
11006
+ "einen Link Durchsuchen zu LISTEN Bilder zu sehen."
11007
 
11008
  #: wppa-settings-autosave.php:2306
11009
  #, fuzzy
11010
  msgid "If you do not want the browse link either, uncheck this item."
11011
  msgstr ""
11012
+ "Wenn Sie auf den Link Durchsuchen wollen nicht entweder, deaktivieren Sie "
11013
+ "diese Artikel."
11014
 
11015
  #: wppa-settings-autosave.php:2313
11016
  #, fuzzy
11017
  msgid "View ..."
11018
+ msgstr "Ansicht"
11019
 
11020
  #: wppa-settings-autosave.php:2314
11021
  #, fuzzy
11022
  msgid "Display the View xx albums and yy photos link on album covers"
11023
+ msgstr "Zeigen Sie die Ansicht xx Alben und yy Fotos Link auf Album-Cover"
11024
 
11025
  #: wppa-settings-autosave.php:2322
11026
  #, fuzzy
11030
  #: wppa-settings-autosave.php:2323
11031
  #, fuzzy
11032
  msgid "Disaplay the total number of (sub)albums and photos in subalbums"
11033
+ msgstr "Disaplay die Gesamtzahl der (sub) Alben und Fotos in Unteralben"
11034
 
11035
  #: wppa-settings-autosave.php:2324
11036
  #, fuzzy
11038
  "Displays the total number of sub albums and photos in the entire album tree "
11039
  "in parenthesis if the numbers differ from the direct content of the album."
11040
  msgstr ""
11041
+ "Zeigt die Gesamtzahl der Unter Alben und Fotos im gesamten Album Baum in "
11042
  "Klammern, wenn die Zahlen aus dem direkten Inhalt des Albums unterscheiden."
11043
 
11044
  #: wppa-settings-autosave.php:2331
11049
  #: wppa-settings-autosave.php:2332
11050
  #, fuzzy
11051
  msgid "Display the album categories on the covers."
11052
+ msgstr "Zeigen Sie die Albumkategorien auf den Titelseiten."
11053
 
11054
  #: wppa-settings-autosave.php:2340
11055
  #, fuzzy
11056
  msgid "Skip empty albums"
11057
+ msgstr "Weiter leer Alben"
11058
 
11059
  #: wppa-settings-autosave.php:2341
11060
  #, fuzzy
11061
  msgid "Do not show empty albums, except for admin and owner."
11062
+ msgstr "Sie zeigen nicht leer Alben, mit Ausnahme von admin und Besitzer."
11063
 
11064
  #: wppa-settings-autosave.php:2349
11065
  #, fuzzy
11069
  #: wppa-settings-autosave.php:2350
11070
  #, fuzzy
11071
  msgid "Show photocount along with album title. "
11072
+ msgstr "Zeigen photocount zusammen mit Albumtitel."
11073
 
11074
  #: wppa-settings-autosave.php:2359
11075
  #, fuzzy
11076
  msgid "Widget related visibility settings"
11077
+ msgstr "Widget im Zusammenhang mit Sichtbarkeitseinstellungen"
11078
 
11079
  #: wppa-settings-autosave.php:2361
11080
  #, fuzzy
11081
  msgid "Big Browse Buttons in widget"
11082
+ msgstr "Big durchsuchen Anstecker in Widget"
11083
 
11084
  #: wppa-settings-autosave.php:2362
11085
  #, fuzzy
11086
  msgid "Enable invisible browsing buttons in widget slideshows."
11087
+ msgstr "Aktivieren unsichtbar Browsing Tasten in Widget-Diashows."
11088
 
11089
  #: wppa-settings-autosave.php:2371
11090
  #, fuzzy
11091
  msgid "Ugly Browse Buttons in widget"
11092
+ msgstr "Hässliche durchsuchen Anstecker in Widget"
11093
 
11094
  #: wppa-settings-autosave.php:2372
11095
  #, fuzzy
11096
  msgid "Enable ugly browsing buttons in widget slideshows."
11097
+ msgstr "Aktivieren hässliche Browsing Tasten in Widget-Diashows."
11098
 
11099
  #: wppa-settings-autosave.php:2373
11100
  #, fuzzy
11101
  msgid "If checked, the fullsize image is covered by browse buttons."
11102
  msgstr ""
11103
+ "Wenn diese Option aktiviert, wird das großes Bild durch Durchsuchen Tasten "
11104
+ "abgedeckt."
11105
 
11106
  #: wppa-settings-autosave.php:2381
11107
  #, fuzzy
11108
  msgid "Album widget tooltip"
11109
+ msgstr "Album-Widget Tooltip"
11110
 
11111
  #: wppa-settings-autosave.php:2382
11112
  #, fuzzy
11113
  msgid "Show the album description on hoovering thumbnail in album widget"
11114
+ msgstr "Zeigen Sie der Albumbeschreibung auf Staubs Thumbnail in Album-Widget"
 
 
11115
 
11116
+ #: wppa-settings-autosave.php:2390 wppa-settings-autosave.php:4675
11117
  #, fuzzy
11118
  msgid ""
11119
  "Lightbox related settings. These settings have effect only when Table IX-J3 "
11120
  "is set to wppa"
11121
  msgstr ""
11122
+ "Lightbox bezogenen Einstellungen. Diese Einstellungen haben nur wirksam, "
11123
+ "wenn der Tabelle IX-J3 ist auf WPPA"
11124
 
11125
  #: wppa-settings-autosave.php:2403
11126
  #, fuzzy
11127
  msgid "Overlay theme color"
11128
+ msgstr "Overlay Thema Farbe"
11129
 
11130
  #: wppa-settings-autosave.php:2404
11131
  #, fuzzy
11132
  msgid "The color of the image border and text background."
11133
+ msgstr "Die Farbe des Bildrand und Texthintergrund."
11134
 
11135
  #: wppa-settings-autosave.php:2407 wppa-settings-autosave.php:2418
11136
  #, fuzzy
11140
  #: wppa-settings-autosave.php:2407 wppa-settings-autosave.php:2418
11141
  #, fuzzy
11142
  msgid "White"
11143
+ msgstr "Weiss"
11144
 
11145
  #: wppa-settings-autosave.php:2414
11146
  #, fuzzy
11155
  #: wppa-settings-autosave.php:2425
11156
  #, fuzzy
11157
  msgid "Overlay slide name"
11158
+ msgstr "Overlay Foliennamen"
11159
 
11160
  #: wppa-settings-autosave.php:2426
11161
  #, fuzzy
11162
  msgid "Show name if from slide."
11163
+ msgstr "Zeigen Sie Name, wenn aus Folie."
11164
 
11165
  #: wppa-settings-autosave.php:2427
11166
  #, fuzzy
11167
  msgid ""
11168
  "Shows the photos name on a lightbox display when initiated from a slide."
11169
  msgstr ""
11170
+ "Zeigt die Fotos Namen auf einem Leuchtkasten Display, wenn von einem Dia "
11171
+ "eingeleitet."
11172
 
11173
  #: wppa-settings-autosave.php:2428 wppa-settings-autosave.php:2438
11174
  #, fuzzy
11176
  "This setting also applies to film thumbnails if Table VI-11 is set to "
11177
  "lightbox overlay."
11178
  msgstr ""
11179
+ "Diese Einstellung gilt auch Thumbnails zu filmen, wenn Tabelle VI-11 In den "
11180
+ "Leuchtkasten Overlay eingestellt ist."
11181
 
11182
  #: wppa-settings-autosave.php:2435
11183
  #, fuzzy
11184
  msgid "Overlay slide desc"
11185
+ msgstr "Overlay Rutsche ab"
11186
 
11187
  #: wppa-settings-autosave.php:2436
11188
  #, fuzzy
11189
  msgid "Show description if from slide."
11190
+ msgstr "Eine Beschreibung sehen, wenn aus Folie."
11191
 
11192
  #: wppa-settings-autosave.php:2437
11193
  #, fuzzy
11195
  "Shows the photos description on a lightbox display when initiated from a "
11196
  "slide."
11197
  msgstr ""
11198
+ "Zeigt die Fotos Beschreibung auf einem Leuchtkasten Display, wenn von einem "
11199
+ "Dia eingeleitet."
11200
 
11201
  #: wppa-settings-autosave.php:2445
11202
  #, fuzzy
11203
  msgid "Overlay thumb name"
11204
+ msgstr "Overlay Daumen Name"
11205
 
11206
  #: wppa-settings-autosave.php:2446
11207
  #, fuzzy
11208
  msgid "Show the photos name if from thumb."
11209
+ msgstr "Lassen Sie sich die Fotos von Namen, wenn von dem Daumen."
11210
 
11211
  #: wppa-settings-autosave.php:2447
11212
  #, fuzzy
11214
  "Shows the name on a lightbox display when initiated from a standard "
11215
  "thumbnail or a widget thumbnail."
11216
  msgstr ""
11217
+ "Zeigt den Namen auf einem Leuchtkasten Display, wenn von einem Standard-"
11218
  "Miniaturansicht oder ein Widget Thumbnail initiiert."
11219
 
11220
  #: wppa-settings-autosave.php:2448 wppa-settings-autosave.php:2458
11223
  "This setting applies to standard thumbnails, thumbnail-, comment-, topten- "
11224
  "and lasten-widget."
11225
  msgstr ""
11226
+ "Diese Einstellung gilt für Standard-Thumbnails, thumbnail-, Kommentar-, "
11227
+ "topten- und lasten-Widget."
11228
 
11229
  #: wppa-settings-autosave.php:2455
11230
  #, fuzzy
11231
  msgid "Overlay thumb desc"
11232
+ msgstr "Overlay Daumen ab"
11233
 
11234
  #: wppa-settings-autosave.php:2456
11235
  #, fuzzy
11236
  msgid "Show description if from thumb."
11237
+ msgstr "Eine Beschreibung sehen, wenn aus dem Daumen."
11238
 
11239
  #: wppa-settings-autosave.php:2457
11240
  #, fuzzy
11242
  "Shows the photos description on a lightbox display when initiated from a "
11243
  "standard thumbnail or a widget thumbnail."
11244
  msgstr ""
11245
+ "Zeigt die Fotos Beschreibung auf einem Leuchtkasten Display, wenn von einem "
11246
+ "Standard-Miniaturansicht oder ein Widget Thumbnail initiiert."
11247
 
11248
  #: wppa-settings-autosave.php:2465
11249
  #, fuzzy
11250
  msgid "Overlay potd name"
11251
+ msgstr "Overlay POTD Name"
11252
 
11253
  #: wppa-settings-autosave.php:2466
11254
  #, fuzzy
11255
  msgid "Show the photos name if from photo of the day."
11256
+ msgstr "Lassen Sie sich die Fotos von Namen, wenn von Foto des Tages."
11257
 
11258
  #: wppa-settings-autosave.php:2467
11259
  #, fuzzy
11261
  "Shows the name on a lightbox display when initiated from the photo of the "
11262
  "day."
11263
  msgstr ""
11264
+ "Zeigt den Namen auf einem Leuchtkasten Anzeige beim Wechsel vom Foto des "
11265
+ "Tages eingeleitet."
11266
 
11267
  #: wppa-settings-autosave.php:2474
11268
  #, fuzzy
11269
  msgid "Overlay potd desc"
11270
+ msgstr "Overlay POTD ab"
11271
 
11272
  #: wppa-settings-autosave.php:2475
11273
  #, fuzzy
11274
  msgid "Show description if from from photo of the day."
11275
+ msgstr "Eine Beschreibung sehen, wenn aus vom Foto des Tages."
11276
 
11277
  #: wppa-settings-autosave.php:2476
11278
  #, fuzzy
11280
  "Shows the photos description on a lightbox display when initiated from the "
11281
  "photo of the day."
11282
  msgstr ""
11283
+ "Zeigt die Fotos Beschreibung auf einem Leuchtkasten Anzeige beim Wechsel vom "
11284
+ "Foto des Tages eingeleitet."
11285
 
11286
  #: wppa-settings-autosave.php:2483
11287
  #, fuzzy
11288
  msgid "Overlay sphoto name"
11289
+ msgstr "Overlay sphoto Name"
11290
 
11291
  #: wppa-settings-autosave.php:2484
11292
  #, fuzzy
11293
  msgid "Show the photos name if from a single photo."
11294
+ msgstr "Lassen Sie sich die Fotos von Namen, wenn ein einziges Foto."
11295
 
11296
  #: wppa-settings-autosave.php:2485
11297
  #, fuzzy
11298
  msgid ""
11299
  "Shows the name on a lightbox display when initiated from a single photo."
11300
  msgstr ""
11301
+ "Zeigt den Namen auf einem Leuchtkasten Anzeige, wenn sie von einem einzigen "
11302
+ "Foto eingeleitet."
11303
 
11304
  #: wppa-settings-autosave.php:2492
11305
  #, fuzzy
11306
  msgid "Overlay sphoto desc"
11307
+ msgstr "Overlay sphoto ab"
11308
 
11309
  #: wppa-settings-autosave.php:2493
11310
  #, fuzzy
11311
  msgid "Show description if from from a single photo."
11312
+ msgstr "Eine Beschreibung sehen, wenn aus von einem einzigen Foto."
11313
 
11314
  #: wppa-settings-autosave.php:2494
11315
  #, fuzzy
11317
  "Shows the photos description on a lightbox display when initiated from a "
11318
  "single photo."
11319
  msgstr ""
11320
+ "Zeigt die Fotos Beschreibung auf einem Leuchtkasten Display, wenn ein "
11321
+ "einziges Foto eingeleitet."
11322
 
11323
  #: wppa-settings-autosave.php:2501
11324
  #, fuzzy
11325
  msgid "Overlay mphoto name"
11326
+ msgstr "Overlay mphoto Name"
11327
 
11328
  #: wppa-settings-autosave.php:2502
11329
  #, fuzzy
11330
  msgid "Show the photos name if from a single media style photo."
11331
  msgstr ""
11332
+ "Lassen Sie sich die Fotos von Namen, wenn von einem einzelnen Medien-Stil "
11333
+ "Foto."
11334
 
11335
  #: wppa-settings-autosave.php:2503
11336
  #, fuzzy
11338
  "Shows the name on a lightbox display when initiated from a single media "
11339
  "style photo."
11340
  msgstr ""
11341
+ "Zeigt den Namen auf einem Leuchtkasten Display, wenn von einem einzelnen "
11342
+ "Medien-Stil Foto initiiert."
11343
 
11344
  #: wppa-settings-autosave.php:2510
11345
  #, fuzzy
11346
  msgid "Overlay mphoto desc"
11347
+ msgstr "Overlay mphoto ab"
11348
 
11349
  #: wppa-settings-autosave.php:2511
11350
  #, fuzzy
11351
  msgid "Show description if from from a media style photo."
11352
+ msgstr "Beschreibung anzeigen, wenn aus von einem Foto Medien-Stil."
11353
 
11354
  #: wppa-settings-autosave.php:2512
11355
  #, fuzzy
11357
  "Shows the photos description on a lightbox display when initiated from a "
11358
  "single media style photo."
11359
  msgstr ""
11360
+ "Zeigt die Fotos Beschreibung auf einem Leuchtkasten Display, wenn von einem "
11361
+ "einzelnen Medien-Stil Foto initiiert."
11362
 
11363
  #: wppa-settings-autosave.php:2519
11364
  #, fuzzy
11365
  msgid "Overlay albumwidget name"
11366
+ msgstr "Overlay albumwidget Name"
11367
 
11368
  #: wppa-settings-autosave.php:2520
11369
  #, fuzzy
11370
  msgid "Show the photos name if from the album widget."
11371
+ msgstr "Lassen Sie sich die Fotos von Namen, wenn aus dem Album-Widget."
11372
 
11373
  #: wppa-settings-autosave.php:2521
11374
  #, fuzzy
11375
  msgid ""
11376
  "Shows the name on a lightbox display when initiated from the album widget."
11377
  msgstr ""
11378
+ "Zeigt den Namen auf einem Leuchtkasten Anzeige beim Wechsel vom Album-Widget "
11379
+ "gestartet."
11380
 
11381
  #: wppa-settings-autosave.php:2528
11382
  #, fuzzy
11383
  msgid "Overlay albumwidget desc"
11384
+ msgstr "Overlay albumwidget ab"
11385
 
11386
  #: wppa-settings-autosave.php:2529
11387
  #, fuzzy
11388
  msgid "Show description if from from the album widget."
11389
+ msgstr "Eine Beschreibung sehen, wenn von aus dem Album-Widget."
11390
 
11391
  #: wppa-settings-autosave.php:2530
11392
  #, fuzzy
11394
  "Shows the photos description on a lightbox display when initiated from the "
11395
  "album widget."
11396
  msgstr ""
11397
+ "Zeigt die Fotos Beschreibung auf einem Leuchtkasten Anzeige beim Wechsel vom "
11398
+ "Album-Widget gestartet."
11399
 
11400
  #: wppa-settings-autosave.php:2537
11401
  #, fuzzy
11402
  msgid "Overlay coverphoto name"
11403
+ msgstr "Overlay Coverfoto Name"
11404
 
11405
  #: wppa-settings-autosave.php:2538
11406
  #, fuzzy
11407
  msgid "Show the photos name if from the album cover."
11408
+ msgstr "Lassen Sie sich die Fotos von Namen, wenn aus dem Album-Cover."
11409
 
11410
  #: wppa-settings-autosave.php:2539
11411
  #, fuzzy
11413
  "Shows the name on a lightbox display when initiated from the album "
11414
  "coverphoto."
11415
  msgstr ""
11416
+ "Zeigt den Namen auf einem Leuchtkasten Display, wenn aus dem Album Coverfoto "
11417
  "initiiert."
11418
 
11419
  #: wppa-settings-autosave.php:2546
11420
  #, fuzzy
11421
  msgid "Overlay coverphoto desc"
11422
+ msgstr "Overlay Coverfoto ab"
11423
 
11424
  #: wppa-settings-autosave.php:2547
11425
  #, fuzzy
11426
  msgid "Show description if from from the album cover."
11427
+ msgstr "Eine Beschreibung sehen, wenn aus der Album-Cover."
11428
 
11429
  #: wppa-settings-autosave.php:2548
11430
  #, fuzzy
11432
  "Shows the photos description on a lightbox display when initiated from the "
11433
  "album coverphoto."
11434
  msgstr ""
11435
+ "Zeigt die Fotos Beschreibung auf einem Leuchtkasten Display, wenn aus dem "
11436
+ "Album Coverfoto initiiert."
11437
 
11438
  #: wppa-settings-autosave.php:2555
11439
  #, fuzzy
11440
  msgid "Overlay add owner"
11441
+ msgstr "Overlay hinzufügen Besitzer"
11442
 
11443
  #: wppa-settings-autosave.php:2556
11444
  #, fuzzy
11445
  msgid "Add the owner to the photo name on lightbox displays."
11446
+ msgstr "Fügen Sie den Besitzer des Fotos Name auf Leuchtkasten-Displays."
11447
 
11448
  #: wppa-settings-autosave.php:2557
11449
  #, fuzzy
11451
  "This setting is independant of the show name switches and is a global "
11452
  "setting."
11453
  msgstr ""
11454
+ "Diese Einstellung ist unabhängig von der Show Name Switches und ist eine "
11455
  "globale Einstellung."
11456
 
11457
  #: wppa-settings-autosave.php:2564
11458
  #, fuzzy
11459
  msgid "Overlay show start/stop"
11460
+ msgstr "Overlay zeigen Start / Stopp"
11461
 
11462
  #: wppa-settings-autosave.php:2565
11463
  #, fuzzy
11464
  msgid "Show Start and Stop for running slideshow on lightbox."
11465
+ msgstr "Show Start und Stopp für Diashow auf Leuchtkasten läuft."
11466
 
11467
  #: wppa-settings-autosave.php:2573
11468
  #, fuzzy
11469
  msgid "Overlay show legenda"
11470
+ msgstr "Overlay zeigen Legenda"
11471
 
11472
  #: wppa-settings-autosave.php:2574
11473
  #, fuzzy
11474
  msgid "Show \"Press f for fullsize\" etc. on lightbox."
11475
+ msgstr "Show \"Drücken Sie f für Grossansicht\" usw. auf Leuchtkasten."
11476
 
11477
  #: wppa-settings-autosave.php:2575
11478
  #, fuzzy
11479
  msgid "Independant of this setting, it will not show up on mobile devices."
11480
  msgstr ""
11481
+ "Unabhängig von dieser Einstellung, es wird nicht angezeigt, auf mobilen "
11482
+ "Geräten auf."
11483
 
11484
  #: wppa-settings-autosave.php:2582
11485
  #, fuzzy
11486
  msgid "Show fullscreen icons"
11487
+ msgstr "Vollbild-Anzeige-Icons"
11488
 
11489
  #: wppa-settings-autosave.php:2583
11490
  #, fuzzy
11491
  msgid "Shows fullscreen and back to normal icon buttons on upper right corner"
11492
  msgstr ""
11493
+ "Zeigt Vollbild und zurück zum normalen Symbol-Tasten auf der oberen rechten "
11494
+ "Ecke"
11495
 
11496
  #: wppa-settings-autosave.php:2591
11497
  #, fuzzy
11501
  #: wppa-settings-autosave.php:2592
11502
  #, fuzzy
11503
  msgid "Shows and enables rating on lightbox."
11504
+ msgstr "Zeigt und ermöglicht Bewertung auf Leuchtkasten."
11505
 
11506
  #: wppa-settings-autosave.php:2593
11507
  #, fuzzy
11508
  msgid ""
11509
  "This works for 5 and 10 stars only, not for single votes or numerical display"
11510
  msgstr ""
11511
+ "Dies funktioniert für 5 und 10 Sternen, nicht für einzelne Stimmen oder "
11512
+ "numerische Anzeige"
11513
 
11514
  #: wppa-settings-autosave.php:2600
11515
  #, fuzzy
11516
  msgid "Overlay show counter"
11517
+ msgstr "Overlay zeigen Zähler"
11518
 
11519
  #: wppa-settings-autosave.php:2601
11520
  #, fuzzy
11521
  msgid "Show the x/y counter below the image."
11522
+ msgstr "Zeigen Sie die x / y-Zähler unterhalb des Bildes."
11523
 
11524
  #: wppa-settings-autosave.php:2609
11525
  #, fuzzy
11526
  msgid "Show Zoom in"
11527
+ msgstr "Anzeigen Zoom"
11528
 
11529
  #: wppa-settings-autosave.php:2610
11530
  #, fuzzy
11531
  msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
11532
+ msgstr "Anzeige Tooltip \"Zoom in\" zusammen mit der Lupe Cursor."
11533
 
11534
  #: wppa-settings-autosave.php:2611
11535
  #, fuzzy
11537
  "If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
11538
  "contains the photo name."
11539
  msgstr ""
11540
+ "Wenn Sie wählen --- --- keine in Tabelle I-G2 für Lupe Größe enthält die "
11541
+ "tooltop den Namen des Fotos."
11542
 
11543
  #: wppa-settings-autosave.php:2619
11544
  #, fuzzy
11545
  msgid "Frontend upload configuration settings"
11546
+ msgstr "Frontend-Upload-Konfigurationseinstellungen"
11547
 
11548
  #: wppa-settings-autosave.php:2621
11549
  #, fuzzy
11553
  #: wppa-settings-autosave.php:2622
11554
  #, fuzzy
11555
  msgid "Enable frontend upload."
11556
+ msgstr "Aktivieren Sie Frontend-Upload."
11557
 
11558
  #: wppa-settings-autosave.php:2623
11559
  #, fuzzy
11561
  "If you check this item, frontend upload will be enabled according to the "
11562
  "rules set in the following items of this table."
11563
  msgstr ""
11564
+ "Wenn Sie diese Option markieren, Frontend-Upload wird nach den Regeln in den "
11565
+ "folgenden Artikeln dieser Tabelle aktiviert werden."
11566
 
11567
  #: wppa-settings-autosave.php:2631
11568
  #, fuzzy
11572
  #: wppa-settings-autosave.php:2632
11573
  #, fuzzy
11574
  msgid "Enable frontend upload of video."
11575
+ msgstr "Aktivieren Frontend Upload von Videos."
11576
 
11577
  #: wppa-settings-autosave.php:2633 wppa-settings-autosave.php:2643
11578
  #, fuzzy
11579
  msgid "Requires Table II-H1 to be ticked."
11580
+ msgstr "Benötigt Tabelle II-H1 abgehakt werden."
11581
 
11582
  #: wppa-settings-autosave.php:2641
11583
  #, fuzzy
11587
  #: wppa-settings-autosave.php:2642
11588
  #, fuzzy
11589
  msgid "Enable frontend upload of audio."
11590
+ msgstr "Aktivieren Frontend Upload von Audio."
11591
 
11592
  #: wppa-settings-autosave.php:2651
11593
  #, fuzzy
11594
  msgid "User upload Photos login"
11595
+ msgstr "User-Upload Fotos Login"
11596
 
11597
  #: wppa-settings-autosave.php:2652
11598
  #, fuzzy
11599
  msgid "Frontend upload requires the user is logged in."
11600
+ msgstr "Frontend-Upload muss der Benutzer angemeldet ist."
11601
 
11602
  #: wppa-settings-autosave.php:2653
11603
  #, fuzzy
11606
  "VII-D1."
11607
  msgstr ""
11608
  "Wenn Sie dieses Kontrollkästchen deaktivieren, stellen Sie sicher, dass Sie "
11609
+ "die Artikel nur Besitzer in der Tabelle VII-D1 überprüfen."
11610
 
11611
  #: wppa-settings-autosave.php:2654
11612
  #, fuzzy
11614
  "Also: set the owner to ---public--- of the albums that are allowed to be "
11615
  "uploaded to."
11616
  msgstr ""
11617
+ "Auch: Setzt den Besitzer --- --- öffentlich der Alben, die hochgeladen "
11618
  "werden dürfen."
11619
 
11620
  #: wppa-settings-autosave.php:2661
11621
  #, fuzzy
11622
  msgid "User upload Ajax"
11623
+ msgstr "Benutzer laden Ajax"
11624
 
11625
  #: wppa-settings-autosave.php:2662
11626
  #, fuzzy
11627
  msgid "Shows the upload progression bar."
11628
+ msgstr "Zeigt die Upload-Fortschrittsbalken."
11629
 
11630
  #: wppa-settings-autosave.php:2670
11631
  #, fuzzy
11635
  #: wppa-settings-autosave.php:2671
11636
  #, fuzzy
11637
  msgid "Show a copyright warning on frontend upload locations."
11638
+ msgstr "Zeigen Sie ein Copyright-Warnung am Frontend-Upload-Standorten."
11639
 
11640
  #: wppa-settings-autosave.php:2680
11641
  #, fuzzy
11650
  #: wppa-settings-autosave.php:2689
11651
  #, fuzzy
11652
  msgid "User Watermark"
11653
+ msgstr "Benutzerwasserzeichen"
11654
 
11655
  #: wppa-settings-autosave.php:2690
11656
  #, fuzzy
11657
  msgid "Uploading users may select watermark settings"
11658
+ msgstr "Das Hochladen Benutzer können Wasserzeichen-Einstellungen wählen"
11659
 
11660
  #: wppa-settings-autosave.php:2691
11661
  #, fuzzy
11663
  "If checked, anyone who can upload and/or import photos can overrule the "
11664
  "default watermark settings."
11665
  msgstr ""
11666
+ "Wenn diese Option aktiviert, wer kann hoch- und / oder Fotos importieren die "
11667
+ "Standardwasserzeichen-Einstellungen außer Kraft setzen können."
11668
 
11669
  #: wppa-settings-autosave.php:2698
11670
  #, fuzzy
11671
  msgid "User name"
11672
+ msgstr "User Name"
11673
 
11674
  #: wppa-settings-autosave.php:2699
11675
  #, fuzzy
11676
  msgid "Uploading users may overrule the default name."
11677
+ msgstr "Das Hochladen Benutzer können den Standardnamen außer Kraft setzen."
11678
 
11679
  #: wppa-settings-autosave.php:2700
11680
  #, fuzzy
11682
  "If checked, the default photo name as defined in Table IX-D13 may be "
11683
  "overruled by the user."
11684
  msgstr ""
11685
+ "Wenn diese Option aktiviert, als die Standard-Fotoname definiert in Tabelle "
11686
+ "IX-D13 kann durch den Benutzer außer Kraft gesetzt werden."
11687
 
11688
  #: wppa-settings-autosave.php:2707
11689
  #, fuzzy
11690
  msgid "Apply Newphoto desc user"
11691
+ msgstr "Bewerben Newphoto DESC Nutzer"
11692
 
11693
  #: wppa-settings-autosave.php:2708
11694
  #, fuzzy
11695
  msgid "Give each new frontend uploaded photo a standard description."
11696
+ msgstr ""
11697
+ "Geben Sie jedem neuen Frontend-Foto hochgeladen eine Standardbeschreibung."
11698
 
11699
  #: wppa-settings-autosave.php:2709
11700
  #, fuzzy
11702
  "If checked, each new photo will get the description (template) as specified "
11703
  "in Table IX-D5."
11704
  msgstr ""
11705
+ "Wenn diese Option aktiviert, wird jedes neue Foto erhalten die Beschreibung "
11706
+ "(Vorlage), wie in Tabelle IX-D5 angegeben."
11707
 
11708
  #: wppa-settings-autosave.php:2716
11709
  #, fuzzy
11710
  msgid "User desc"
11711
+ msgstr "Benutzer ab"
11712
 
11713
  #: wppa-settings-autosave.php:2717
11714
  #, fuzzy
11715
  msgid "Uploading users may overrule the default description."
11716
+ msgstr ""
11717
+ "Das Hochladen Benutzer kann die Standardbeschreibung außer Kraft setzen."
11718
 
11719
  #: wppa-settings-autosave.php:2725
11720
  #, fuzzy
11721
  msgid "User upload custom"
11722
+ msgstr "User-Upload benutzerdefinierte"
11723
 
11724
  #: wppa-settings-autosave.php:2726
11725
  #, fuzzy
11726
  msgid "Frontend upload can fill in custom data fields."
11727
+ msgstr "Frontend-Upload können in benutzerdefinierten Datenfelder ausfüllen."
11728
 
11729
  #: wppa-settings-autosave.php:2734
11730
  #, fuzzy
11731
  msgid "User upload tags"
11732
+ msgstr "Benutzer Upload-Tags"
11733
 
11734
  #: wppa-settings-autosave.php:2735
11735
  #, fuzzy
11736
  msgid "Frontend upload can add tags."
11737
+ msgstr "Frontend-Upload können Tags hinzufügen."
11738
 
11739
  #: wppa-settings-autosave.php:2736
11740
  #, fuzzy
11741
  msgid "You can configure the details of tag addition in Table IX-D18.x"
11742
+ msgstr "Sie können die Details von Tags in der Tabelle IX-D18.x konfigurieren"
 
11743
 
11744
  #: wppa-settings-autosave.php:2744 wppa-settings-autosave.php:2772
11745
  #: wppa-settings-autosave.php:2800
11746
  #, fuzzy
11747
  msgid "Tag selection box"
11748
+ msgstr "Tag Auswahlbox"
11749
 
11750
  #: wppa-settings-autosave.php:2745 wppa-settings-autosave.php:2773
11751
  #: wppa-settings-autosave.php:2801
11752
  #, fuzzy
11753
  msgid "Front-end upload tags selecion box."
11754
+ msgstr "Front-end-Upload-Tags selecion Box."
11755
 
11756
  #: wppa-settings-autosave.php:2749 wppa-settings-autosave.php:2777
11757
  #: wppa-settings-autosave.php:2805
11775
  #: wppa-settings-autosave.php:2811
11776
  #, fuzzy
11777
  msgid "The title of the tag selection box."
11778
+ msgstr "Der Titel des Tags Auswahlfeld."
11779
 
11780
  #: wppa-settings-autosave.php:2763 wppa-settings-autosave.php:2791
11781
  #: wppa-settings-autosave.php:2819
11782
  #, fuzzy
11783
  msgid "Tags box"
11784
+ msgstr "Etiketten box"
11785
 
11786
  #: wppa-settings-autosave.php:2764 wppa-settings-autosave.php:2792
11787
  #: wppa-settings-autosave.php:2820
11796
  "Enter the tags you want to appear in the selection box. Empty means: all "
11797
  "existing tags"
11798
  msgstr ""
11799
+ "Geben Sie die Tags, die Sie im Auswahlfeld angezeigt werden soll. Leere "
11800
  "bedeutet: alle vorhandenen Tags"
11801
 
11802
  #: wppa-settings-autosave.php:2828
11803
  #, fuzzy
11804
  msgid "New tags"
11805
+ msgstr "Neue Tags"
11806
 
11807
  #: wppa-settings-autosave.php:2829
11808
  #, fuzzy
11809
  msgid "Input field for any user defined tags."
11810
+ msgstr "Eingabefeld für beliebige benutzerdefinierte Tags."
11811
 
11812
  #: wppa-settings-autosave.php:2837
11813
  #, fuzzy
11814
  msgid "New tags caption"
11815
+ msgstr "Neue Tags caption"
11816
 
11817
  #: wppa-settings-autosave.php:2838
11818
  #, fuzzy
11819
  msgid "The caption above the tags input field."
11820
+ msgstr "Die Beschriftung über dem Tags Eingabefeld."
11821
 
11822
  #: wppa-settings-autosave.php:2846
11823
  #, fuzzy
11828
  #, fuzzy
11829
  msgid "Show a preview of all tags that will be added to the photo info."
11830
  msgstr ""
11831
+ "Zeigen Sie eine Vorschau aller Tags, die mit dem Foto-Info hinzugefügt "
11832
+ "werden."
11833
 
11834
  #: wppa-settings-autosave.php:2855
11835
  #, fuzzy
11836
  msgid "Camera connect"
11837
+ msgstr "Kamera anschließen"
11838
 
11839
  #: wppa-settings-autosave.php:2856
11840
  #, fuzzy
11841
  msgid "Connect frontend upload to camara on mobile devices with camera"
11842
+ msgstr ""
11843
+ "Schließen Sie Frontend-Upload auf Röschen auf mobilen Geräten mit Kamera"
11844
 
11845
  #: wppa-settings-autosave.php:2864
11846
  #, fuzzy
11850
  #: wppa-settings-autosave.php:2865
11851
  #, fuzzy
11852
  msgid "Enable blogging photos."
11853
+ msgstr "Aktivieren Sie Fotos bloggen."
11854
 
11855
  #: wppa-settings-autosave.php:2866
11856
  #, fuzzy
11857
  msgid "Users need the capability edit_posts to directly blog photos."
11858
+ msgstr "Die Benutzer müssen die Fähigkeit edit_posts direkt Fotos Blog."
11859
 
11860
  #: wppa-settings-autosave.php:2873
11861
  #, fuzzy
11862
  msgid "Blog It need moderation"
11863
+ msgstr "Im Blog Mäßigung brauchen"
11864
 
11865
  #: wppa-settings-autosave.php:2874
11866
  #, fuzzy
11867
  msgid "Posts with blogged photos need moderation."
11868
+ msgstr "Beiträge mit gebloggt Fotos benötigen Mäßigung."
11869
 
11870
  #: wppa-settings-autosave.php:2882
11871
  #, fuzzy
11875
  #: wppa-settings-autosave.php:2883
11876
  #, fuzzy
11877
  msgid "Shortcode to be used on the blog post"
11878
+ msgstr "Shortcode zu auf dem Blog-Post verwendet werden"
11879
 
11880
  #: wppa-settings-autosave.php:2884
11881
  #, fuzzy
11882
  msgid "Make sure it contains photo=\"#id\""
11883
+ msgstr "Stellen Sie sicher, es enthält Foto = \"# id\""
11884
 
11885
  #: wppa-settings-autosave.php:2892
11886
  #, fuzzy
11887
  msgid "Miscellaneous visibility settings"
11888
+ msgstr "Verschiedene Einstellungen für die Sichtbarkeit"
11889
 
11890
  #: wppa-settings-autosave.php:2894
11891
  #, fuzzy
11892
  msgid "Frontend ending label"
11893
+ msgstr "Frontend Endung Label"
11894
 
11895
  #: wppa-settings-autosave.php:2895
11896
  #, fuzzy
11897
  msgid "Frontend upload / create / edit dialog closing label text."
11898
+ msgstr "Frontend-Upload / erstellen / bearbeiten Textdialog Schließen Label."
 
11899
 
11900
  #: wppa-settings-autosave.php:2898
11901
  #, fuzzy
11902
  msgid "Abort"
11903
+ msgstr "流产"
11904
 
11905
  #: wppa-settings-autosave.php:2898
11906
  #, fuzzy
11922
  #: wppa-settings-autosave.php:2906
11923
  #, fuzzy
11924
  msgid "Widget thumbs fontsize"
11925
+ msgstr "Widget Daumen Schriftgröße"
11926
 
11927
  #: wppa-settings-autosave.php:2907
11928
  #, fuzzy
11929
  msgid "Font size for thumbnail subtext in widgets."
11930
+ msgstr "Schriftgröße für Miniatur Subtext in Widgets."
11931
 
11932
  #: wppa-settings-autosave.php:2915
11933
  #, fuzzy
11937
  #: wppa-settings-autosave.php:2916
11938
  #, fuzzy
11939
  msgid "Left/right browsing arrow color."
11940
+ msgstr "Links / rechts-Browsing Pfeil Farbe."
11941
 
11942
  #: wppa-settings-autosave.php:2917
11943
  #, fuzzy
11944
  msgid "Enter the color of the filmstrip navigation arrows."
11945
+ msgstr "Geben Sie die Farbe des Filmstreifens Navigationspfeile."
11946
 
11947
  #: wppa-settings-autosave.php:2924
11948
  #, fuzzy
11949
  msgid "Owner on new line"
11950
+ msgstr "Besitzer auf neue Linie"
11951
 
11952
  #: wppa-settings-autosave.php:2925
11953
  #, fuzzy
11954
  msgid "Place the (owner) text on a new line."
11955
+ msgstr "Setzen Sie den (Inhaber) Text auf einer neuen Zeile."
11956
 
11957
  #: wppa-settings-autosave.php:2933
11958
  #, fuzzy
11959
  msgid "Custom datafields albums"
11960
+ msgstr "Benutzerdefinierte Datenfelder Alben"
11961
 
11962
  #: wppa-settings-autosave.php:2934
11963
  #, fuzzy
11967
  #: wppa-settings-autosave.php:2944 wppa-settings-autosave.php:2970
11968
  #, fuzzy, php-format
11969
  msgid "Name, vis, edit %s"
11970
+ msgstr "Name, vis, bearbeiten%s"
11971
 
11972
  #: wppa-settings-autosave.php:2945 wppa-settings-autosave.php:2971
11973
  #, fuzzy, php-format
11974
  msgid "The caption for field %s, visibility and editability at frontend."
11975
  msgstr ""
11976
+ "Die Beschriftung für das Feld%s, Sichtbarkeit und Editierbarkeit am Frontend."
11977
 
11978
  #: wppa-settings-autosave.php:2946 wppa-settings-autosave.php:2972
11979
  #, fuzzy, php-format
11981
  "If you check the first box, the value of this field is displayable in photo "
11982
  "descriptions at the frontend with keyword w#c%s"
11983
  msgstr ""
11984
+ "Wenn Sie das erste Kontrollkästchen ist der Wert dieses Feldes darstellbaren "
11985
+ "in Fotobeschreibungen auf dem Frontend mit Stichwort w # c%s"
11986
 
11987
  #: wppa-settings-autosave.php:2947 wppa-settings-autosave.php:2973
11988
  #, fuzzy
11990
  "If you check the second box, the value of this field is editable at the "
11991
  "frontend new style dialog."
11992
  msgstr ""
11993
+ "Wenn Sie das zweite Kontrollkästchen, wird der Wert dieses Feldes auf dem "
11994
+ "Frontend neuen Stil Dialog bearbeitet werden."
11995
 
11996
  #: wppa-settings-autosave.php:2959
11997
  #, fuzzy
11998
  msgid "Custom datafields photos"
11999
+ msgstr "Benutzerdefinierte Datenfelder Fotos"
12000
 
12001
  #: wppa-settings-autosave.php:2960
12002
  #, fuzzy
12006
  #: wppa-settings-autosave.php:2985
12007
  #, fuzzy
12008
  msgid "Navigation symbols for slideshows and lighbox"
12009
+ msgstr "Navigation Symbole für Diashows und Lighbox"
12010
 
12011
  #: wppa-settings-autosave.php:2987
12012
  #, fuzzy
12013
  msgid "Start symbol url"
12014
+ msgstr "Start-Symbol url"
12015
 
12016
  #: wppa-settings-autosave.php:2988
12017
  #, fuzzy
12018
  msgid "Supply the url of an image for the start symbol"
12019
+ msgstr "Geben Sie die URL eines Bildes für das Startsymbol"
12020
 
12021
  #: wppa-settings-autosave.php:2996
12022
  #, fuzzy
12023
  msgid "Pause symbol url"
12024
+ msgstr "Pause Symbol url"
12025
 
12026
  #: wppa-settings-autosave.php:2997
12027
  #, fuzzy
12028
  msgid "Supply the url of an image for the pause symbol"
12029
+ msgstr "Geben Sie die URL eines Bildes für das Pausensymbol"
12030
 
12031
  #: wppa-settings-autosave.php:3005
12032
  #, fuzzy
12033
  msgid "Stop symbol url"
12034
+ msgstr "Stop-Symbol url"
12035
 
12036
  #: wppa-settings-autosave.php:3006
12037
  #, fuzzy
12038
  msgid "Supply the url of an image for the stop symbol"
12039
+ msgstr "Geben Sie die URL eines Bildes für das Stopp-Symbol"
12040
 
12041
  #: wppa-settings-autosave.php:3014
12042
  #, fuzzy
12043
  msgid "Left (prev) symbol url"
12044
+ msgstr "Linke (i) Symbol url"
12045
 
12046
  #: wppa-settings-autosave.php:3015
12047
  #, fuzzy
12048
  msgid "Supply the url of an image for the left symbol, if not default"
12049
  msgstr ""
12050
+ "Geben Sie die URL eines Bildes für das linke Symbol, wenn nicht die Standard"
 
12051
 
12052
  #: wppa-settings-autosave.php:3023
12053
  #, fuzzy
12054
  msgid "Right (next) symbol url"
12055
+ msgstr "(Rechts) Symbol-URL"
12056
 
12057
  #: wppa-settings-autosave.php:3024
12058
  #, fuzzy
12059
  msgid "Supply the url of an image for the right symbol, if not default"
12060
  msgstr ""
12061
+ "Geben Sie die URL eines Bildes für das rechte Symbol, wenn nicht die Standard"
 
12062
 
12063
  #: wppa-settings-autosave.php:3033
12064
  #, fuzzy
12065
  msgid "The size of the start/pause symbols."
12066
+ msgstr "Die Größe der Start / Pause-Symbole."
12067
 
12068
  #: wppa-settings-autosave.php:3042 wppa-settings-autosave.php:3060
12069
  #, fuzzy
12070
  msgid "The border radius if the symbol is round"
12071
+ msgstr "Der Grenzradius, wenn das Symbol rund ist"
12072
 
12073
  #: wppa-settings-autosave.php:3051 wppa-settings-autosave.php:3069
12074
  #, fuzzy
12075
  msgid "The size of the stop symbols."
12076
+ msgstr "Die Größe der Stoppsymbole."
12077
 
12078
  #: wppa-settings-autosave.php:3068
12079
  #, fuzzy
12080
  msgid "Left/right symbol size"
12081
+ msgstr "Links / rechts Symbolgröße"
12082
 
12083
  #: wppa-settings-autosave.php:3077
12084
  #, fuzzy
12085
  msgid "Left/right symbol border radius"
12086
+ msgstr "Links / rechts Symbol Grenze Radius"
12087
 
12088
  #: wppa-settings-autosave.php:3078
12089
  #, fuzzy
12093
  #: wppa-settings-autosave.php:3105
12094
  #, fuzzy
12095
  msgid "Table III:"
12096
+ msgstr "Tabelle III"
12097
 
12098
  #: wppa-settings-autosave.php:3105
12099
  #, fuzzy
12103
  #: wppa-settings-autosave.php:3106
12104
  #, fuzzy
12105
  msgid "This table describes the backgrounds of wppa+ elements."
12106
+ msgstr "Diese Tabelle beschreibt die Hintergründe von WPPA Elemente."
12107
 
12108
  #: wppa-settings-autosave.php:3116 wppa-settings-autosave.php:3453
12109
  #, fuzzy
12110
  msgid "Background color"
12111
+ msgstr "Hintergrund Farbe"
12112
 
12113
  #: wppa-settings-autosave.php:3117 wppa-settings-autosave.php:3119
12114
  #: wppa-settings-autosave.php:3454 wppa-settings-autosave.php:3456
12115
  #, fuzzy
12116
  msgid "Sample"
12117
+ msgstr "Muster"
12118
 
12119
  #: wppa-settings-autosave.php:3118 wppa-settings-autosave.php:3455
12120
  #, fuzzy
12139
  #: wppa-settings-autosave.php:3131
12140
  #, fuzzy
12141
  msgid "Enter valid CSS colors for navigation backgrounds and borders."
12142
+ msgstr ""
12143
+ "Geben Sie eine gültige CSS Farben für die Navigation Hintergründe und "
12144
+ "Grenzen."
12145
 
12146
  #: wppa-settings-autosave.php:3142
12147
  #, fuzzy
12151
  #: wppa-settings-autosave.php:3143
12152
  #, fuzzy
12153
  msgid "Fullsize Slideshow Photos."
12154
+ msgstr "Fullsize Diashow Fotos."
12155
 
12156
  #: wppa-settings-autosave.php:3144
12157
  #, fuzzy
12158
  msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
12159
  msgstr ""
12160
+ "Geben Sie eine gültige CSS Farben für Grossfotohintergründe und Grenzen."
12161
 
12162
  #: wppa-settings-autosave.php:3145
12163
  #, fuzzy
12164
  msgid "The colors may be equal or \"transparent\""
12165
+ msgstr "Die Farben sein kann gleich oder \"transparent\""
12166
 
12167
  #: wppa-settings-autosave.php:3146
12168
  #, fuzzy
12169
  msgid ""
12170
  "For more information about slideshow image borders see the help on Table I-B4"
12171
  msgstr ""
12172
+ "Weitere Informationen über die Diashow Bildrändern finden Sie in der Hilfe "
12173
+ "auf Tabelle I-B4"
12174
 
12175
+ #: wppa-settings-autosave.php:3157 wppa-settings-autosave.php:4941
12176
  #, fuzzy
12177
  msgid "Numbar"
12178
  msgstr "Numbar"
12180
  #: wppa-settings-autosave.php:3158
12181
  #, fuzzy
12182
  msgid "Number bar box background."
12183
+ msgstr "Anzahl bar Feld Hintergrund."
12184
 
12185
  #: wppa-settings-autosave.php:3159
12186
  #, fuzzy
12187
  msgid "Enter valid CSS colors for numbar box backgrounds and borders."
12188
+ msgstr ""
12189
+ "Geben Sie eine gültige CSS Farben für numbar Box Hintergründe und Grenzen."
12190
 
12191
  #: wppa-settings-autosave.php:3170
12192
  #, fuzzy
12196
  #: wppa-settings-autosave.php:3171
12197
  #, fuzzy
12198
  msgid "Number bar active box background."
12199
+ msgstr "Anzahl Leiste aktiv Feld Hintergrund."
12200
 
12201
  #: wppa-settings-autosave.php:3172
12202
  #, fuzzy
12203
  msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
12204
  msgstr ""
12205
+ "Geben Sie gültige CSS Farben für numbar aktive Box Hintergründe und Grenzen."
12206
 
12207
  #: wppa-settings-autosave.php:3183
12208
  #, fuzzy
12209
  msgid "Name/desc"
12210
+ msgstr "Name / ab"
12211
 
12212
  #: wppa-settings-autosave.php:3184
12213
  #, fuzzy
12219
  msgid ""
12220
  "Enter valid CSS colors for name and description box backgrounds and borders."
12221
  msgstr ""
12222
+ "Geben Sie gültige CSS Farben für Namen und eine Beschreibung Box "
12223
+ "Hintergründe und Grenzen."
12224
 
12225
  #: wppa-settings-autosave.php:3197
12226
  #, fuzzy
12227
  msgid "Comment input and display areas."
12228
+ msgstr "Kommentar Eingabe- und Anzeigebereiche."
12229
 
12230
  #: wppa-settings-autosave.php:3198
12231
  #, fuzzy
12232
  msgid "Enter valid CSS colors for comment box backgrounds and borders."
12233
  msgstr ""
12234
+ "Geben Sie eine gültige CSS Farben für Kommentarfeld Hintergründe und Grenzen."
12235
 
12236
+ #: wppa-settings-autosave.php:3209 wppa-settings-autosave.php:8557
12237
+ #: wppa-settings-autosave.php:8602
12238
  #, fuzzy
12239
  msgid "Custom"
12240
+ msgstr "Benutzerdefiniert"
12241
 
12242
  #: wppa-settings-autosave.php:3210
12243
  #, fuzzy
12248
  #, fuzzy
12249
  msgid "Enter valid CSS colors for custom box backgrounds and borders."
12250
  msgstr ""
12251
+ "Geben Sie eine gültige CSS Farben für individuelle Box Hintergründe und "
12252
+ "Grenzen."
12253
 
12254
  #: wppa-settings-autosave.php:3222
12255
  #, fuzzy
12259
  #: wppa-settings-autosave.php:3223
12260
  #, fuzzy
12261
  msgid "IPTC display box background."
12262
+ msgstr "IPTC-Display-Box Hintergrund."
12263
 
12264
  #: wppa-settings-autosave.php:3224
12265
  #, fuzzy
12266
  msgid "Enter valid CSS colors for iptc box backgrounds and borders."
12267
+ msgstr ""
12268
+ "Geben Sie eine gültige CSS Farben für IPTC-Box Hintergründe und Grenzen."
12269
 
12270
  #: wppa-settings-autosave.php:3235
12271
  #, fuzzy
12275
  #: wppa-settings-autosave.php:3236
12276
  #, fuzzy
12277
  msgid "EXIF display box background."
12278
+ msgstr "EXIF-Display-Box Hintergrund."
12279
 
12280
  #: wppa-settings-autosave.php:3237
12281
  #, fuzzy
12282
  msgid "Enter valid CSS colors for exif box backgrounds and borders."
12283
+ msgstr ""
12284
+ "Geben Sie eine gültige CSS Farben für exif Box Hintergründe und Grenzen."
12285
 
12286
  #: wppa-settings-autosave.php:3248
12287
  #, fuzzy
12327
  #: wppa-settings-autosave.php:3276
12328
  #, fuzzy
12329
  msgid "Odd"
12330
+ msgstr "Quote"
12331
 
12332
  #: wppa-settings-autosave.php:3277
12333
  #, fuzzy
12334
  msgid "Odd background."
12335
+ msgstr "Odd Hintergrund."
12336
 
12337
  #: wppa-settings-autosave.php:3278
12338
  #, fuzzy
12396
  #: wppa-settings-autosave.php:3328
12397
  #, fuzzy
12398
  msgid "Multitag"
12399
+ msgstr "Multitag-"
12400
 
12401
  #: wppa-settings-autosave.php:3329
12402
  #, fuzzy
12412
  #: wppa-settings-autosave.php:3341
12413
  #, fuzzy
12414
  msgid "Tagcloud"
12415
+ msgstr "Schlagwortwolke"
12416
 
12417
  #: wppa-settings-autosave.php:3342
12418
  #, fuzzy
12423
  #, fuzzy
12424
  msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
12425
  msgstr ""
12426
+ "Geben Sie eine gültige CSS Farben für tagcloud Box Hintergründe und Grenzen."
12427
 
12428
  #: wppa-settings-autosave.php:3354
12429
  #, fuzzy
12439
  #, fuzzy
12440
  msgid "Enter valid CSS colors for superview box backgrounds and borders."
12441
  msgstr ""
12442
+ "Geben Sie eine gültige CSS Farben für Super Box Hintergründe und Grenzen."
12443
 
12444
  #: wppa-settings-autosave.php:3368
12445
  #, fuzzy
12449
  #: wppa-settings-autosave.php:3369
12450
  #, fuzzy
12451
  msgid "Enter valid CSS colors for search box backgrounds and borders."
12452
+ msgstr ""
12453
+ "Geben Sie eine gültige CSS Farben für Suchfeld Hintergründe und Grenzen."
12454
 
12455
  #: wppa-settings-autosave.php:3380
12456
  #, fuzzy
12465
  #: wppa-settings-autosave.php:3382
12466
  #, fuzzy
12467
  msgid "Enter valid CSS colors for bestof box backgrounds and borders."
12468
+ msgstr ""
12469
+ "Geben Sie eine gültige CSS Farben für bestof Box Hintergründe und Grenzen."
12470
 
12471
  #: wppa-settings-autosave.php:3393
12472
  #, fuzzy
12493
  #: wppa-settings-autosave.php:3407
12494
  #, fuzzy
12495
  msgid "Stereo mode selection box background."
12496
+ msgstr "Stereo-Modus Auswahlfeld Hintergrund."
12497
 
12498
  #: wppa-settings-autosave.php:3408
12499
  #, fuzzy
12506
  #: wppa-settings-autosave.php:3419
12507
  #, fuzzy
12508
  msgid "Admins choice"
12509
+ msgstr "Admins Wahl"
12510
 
12511
  #: wppa-settings-autosave.php:3420
12512
  #, fuzzy
12517
  #, fuzzy
12518
  msgid "Enter valid CSS colors for admins choice box backgrounds and borders."
12519
  msgstr ""
12520
+ "Geben Sie gültige CSS Farben für Administratoren Wahl Box Hintergründe und "
12521
+ "Grenzen."
12522
 
12523
  #: wppa-settings-autosave.php:3432
12524
  #, fuzzy
12528
  #: wppa-settings-autosave.php:3433
12529
  #, fuzzy
12530
  msgid "The background for the Ajax modal rendering box."
12531
+ msgstr "Der Hintergrund für die Ajax modalen Renderingbox."
12532
 
12533
  #: wppa-settings-autosave.php:3434
12534
  #, fuzzy
12538
  #: wppa-settings-autosave.php:3466
12539
  #, fuzzy
12540
  msgid "Table IV:"
12541
+ msgstr "Tabelle IV"
12542
 
12543
  #: wppa-settings-autosave.php:3466
12544
  #, fuzzy
12545
  msgid "Behaviour:"
12546
+ msgstr "VERHALTEN"
12547
 
12548
  #: wppa-settings-autosave.php:3467
12549
  #, fuzzy
12550
  msgid "This table describes the dynamic behaviour of certain wppa+ elements."
12551
  msgstr ""
12552
+ "Diese Tabelle beschreibt das dynamische Verhalten bestimmter WPPA Elemente."
12553
 
12554
  #: wppa-settings-autosave.php:3485
12555
  #, fuzzy
12556
  msgid "System related settings"
12557
+ msgstr "System-bezogenen Einstellungen"
12558
 
12559
  #: wppa-settings-autosave.php:3487
12560
  #, fuzzy
12609
  #: wppa-settings-autosave.php:3508
12610
  #, fuzzy
12611
  msgid "Place Ajax rendered content in modal boxes"
12612
+ msgstr "Platzieren Sie Ajax wiedergegebenen Inhalt in modal-Boxen"
12613
 
12614
  #: wppa-settings-autosave.php:3516
12615
  #, fuzzy
12624
  #: wppa-settings-autosave.php:3518
12625
  #, fuzzy
12626
  msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
12627
+ msgstr "Urls zu WPPA Displays photonames anstelle von Zahlen enthalten."
12628
 
12629
  #: wppa-settings-autosave.php:3519
12630
  #, fuzzy
12638
  #: wppa-settings-autosave.php:3526
12639
  #, fuzzy
12640
  msgid "Album names in urls"
12641
+ msgstr "Album-Namen in Urls"
12642
 
12643
  #: wppa-settings-autosave.php:3527
12644
  #, fuzzy
12645
  msgid "Display album names in urls."
12646
+ msgstr "Anzeige Albumnamen in Urls."
12647
 
12648
  #: wppa-settings-autosave.php:3528
12649
  #, fuzzy
12650
  msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
12651
+ msgstr "Urls zu WPPA Displays albumnames anstelle von Zahlen enthalten."
12652
 
12653
  #: wppa-settings-autosave.php:3529
12654
  #, fuzzy
12665
  #: wppa-settings-autosave.php:3537
12666
  #, fuzzy
12667
  msgid "Use &album=... &photo=..."
12668
+ msgstr "Verwenden & album = ... & Foto = ..."
12669
 
12670
  #: wppa-settings-autosave.php:3538
12671
  #, fuzzy
12673
  "Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
12674
  "album=... &wppa-photo=..."
12675
  msgstr ""
12676
+ "Urls zu WPPA Displays befinden sich & album = ... & Foto = ... anstelle "
12677
+ "von & WPPA-album = ... & WPPA-photo = ..."
12678
 
12679
  #: wppa-settings-autosave.php:3539
12680
  #, fuzzy
12688
  #: wppa-settings-autosave.php:3546
12689
  #, fuzzy
12690
  msgid "Enable pretty links"
12691
+ msgstr "Aktivieren ziemlich Links"
12692
 
12693
  #: wppa-settings-autosave.php:3547
12694
  #, fuzzy
12718
  "It is recommended to check this box. It shortens links dramatically and "
12719
  "simplifies qr codes."
12720
  msgstr ""
12721
+ "Es wird empfohlen, dieses Feld zu überprüfen. Es verkürzt Links dramatisch "
12722
+ "und vereinfacht die QR-Codes."
12723
 
12724
  #: wppa-settings-autosave.php:3551
12725
  #, fuzzy
12790
  "If unchecked, refreshing the page will re-display the content of the "
12791
  "original page."
12792
  msgstr ""
12793
+ "Wenn deaktiviert, die Seite zu aktualisieren den Inhalt der ursprünglichen "
12794
+ "Seite wieder anzuzeigen."
12795
 
12796
  #: wppa-settings-autosave.php:3582
12797
  #, fuzzy
12799
  "This will only work on browsers that support history.pushState() and "
12800
  "therefor NOT in IE"
12801
  msgstr ""
12802
+ "Dies wird nur auf Browsern, die history.pushState () und daher nicht in IE "
12803
+ "unterstützen"
12804
 
12805
  #: wppa-settings-autosave.php:3583
12806
  #, fuzzy
12855
  #: wppa-settings-autosave.php:3619
12856
  #, fuzzy
12857
  msgid "Auto page display"
12858
+ msgstr "Auto Seitenanzeige"
12859
 
12860
  #: wppa-settings-autosave.php:3620
12861
  #, fuzzy
12870
  #: wppa-settings-autosave.php:3623
12871
  #, fuzzy
12872
  msgid "Media type photo"
12873
+ msgstr "Medientyp Foto"
12874
 
12875
  #: wppa-settings-autosave.php:3623
12876
  #, fuzzy
12919
  #: wppa-settings-autosave.php:3651
12920
  #, fuzzy
12921
  msgid "Set style specifications inline."
12922
+ msgstr "Set Stil Spezifikationen Inline."
12923
 
12924
  #: wppa-settings-autosave.php:3652
12925
  #, fuzzy
12926
  msgid "If checked: May fix layout problems, but slows down page appearing."
12927
  msgstr ""
12928
+ "Wenn diese Option aktiviert: Kann Layout-Probleme beheben, aber verlangsamt "
12929
+ "Seite erscheinen."
12930
 
12931
  #: wppa-settings-autosave.php:3659
12932
  #, fuzzy
12936
  #: wppa-settings-autosave.php:3660
12937
  #, fuzzy
12938
  msgid "Enter custom style specs here."
12939
+ msgstr "Geben Sie benutzerdefinierten Stil specs hier."
12940
 
12941
  #: wppa-settings-autosave.php:3668
12942
  #, fuzzy
12946
  #: wppa-settings-autosave.php:3669 wppa-settings-autosave.php:3678
12947
  #, fuzzy
12948
  msgid "This feature is highly discouraged."
12949
+ msgstr "Diese Funktion wird dringend abgeraten."
12950
 
12951
  #: wppa-settings-autosave.php:3677
12952
  #, fuzzy
12953
  msgid "Use customized theme file"
12954
+ msgstr "Verwenden Sie maßgeschneiderte Design-Datei"
12955
 
12956
  #: wppa-settings-autosave.php:3686
12957
  #, fuzzy
12974
  #: wppa-settings-autosave.php:3691
12975
  #, fuzzy
12976
  msgid "remove .htaccess files"
12977
+ msgstr "entfernen .htaccess-Dateien"
12978
 
12979
  #: wppa-settings-autosave.php:3692
12980
  #, fuzzy
12989
  #: wppa-settings-autosave.php:3705
12990
  #, fuzzy
12991
  msgid "Lazy or HTML comp"
12992
+ msgstr "Faul oder HTML-Layout-Datei"
12993
 
12994
  #: wppa-settings-autosave.php:3706
12995
  #, fuzzy
13025
  #: wppa-settings-autosave.php:3724
13026
  #, fuzzy
13027
  msgid "You must login to... links to login page."
13028
+ msgstr "Sie müssen ... Links Login-Seite anmelden."
13029
 
13030
  #: wppa-settings-autosave.php:3732
13031
  #, fuzzy
13070
  #: wppa-settings-autosave.php:3769
13071
  #, fuzzy
13072
  msgid "Capitalize tags and cats"
13073
+ msgstr "Capitalize Tags und Katzen"
13074
 
13075
  #: wppa-settings-autosave.php:3770
13076
  #, fuzzy
13086
  #: wppa-settings-autosave.php:3779
13087
  #, fuzzy
13088
  msgid "Enable the creation of zipfiles with selected photos."
13089
+ msgstr "Aktivieren Sie die Erstellung von ZipFiles mit ausgewählten Fotos."
13090
 
13091
  #: wppa-settings-autosave.php:3780
13092
  #, fuzzy
13154
  "Wenn Sie --- keine Auswahl ---, werden die Fotos nicht horizontal entweder "
13155
  "zentriert werden."
13156
 
13157
+ #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:4098
13158
  #: wppa-slideshow-widget.php:214
13159
  #, fuzzy
13160
  msgid "top"
13161
+ msgstr "Top"
13162
 
13163
+ #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:4098
13164
  #: wppa-slideshow-widget.php:216
13165
  #, fuzzy
13166
  msgid "bottom"
13232
  #: wppa-settings-autosave.php:3839
13233
  #, fuzzy
13234
  msgid "running"
13235
+ msgstr "运行"
13236
 
13237
  #: wppa-settings-autosave.php:3840
13238
  #, fuzzy
13252
  #: wppa-settings-autosave.php:3853
13253
  #, fuzzy
13254
  msgid "Start slideonly slideshow running."
13255
+ msgstr "Starten Sie slideonly Diashow läuft."
13256
 
13257
+ #: wppa-settings-autosave.php:3861 wppa-settings-autosave.php:4755
13258
  #, fuzzy
13259
  msgid "Video autostart"
13260
  msgstr "Video Autostart-"
13262
  #: wppa-settings-autosave.php:3862
13263
  #, fuzzy
13264
  msgid "Autoplay videos in slideshows."
13265
+ msgstr "Automatische Wiedergabe von Videos in Diashows."
13266
 
13267
+ #: wppa-settings-autosave.php:3871 wppa-settings-autosave.php:4764
13268
  #, fuzzy
13269
  msgid "Audio autostart"
13270
  msgstr "Audio Autostart-"
13296
  #: wppa-settings-autosave.php:3884
13297
  #, fuzzy
13298
  msgid "Fade out and in simultaneous"
13299
+ msgstr "Ausblenden und in gleichzeitiger"
13300
 
13301
  #: wppa-settings-autosave.php:3885
13302
  #, fuzzy
13321
  #: wppa-settings-autosave.php:3889
13322
  #, fuzzy
13323
  msgid "Turn over"
13324
+ msgstr "Umsatz"
13325
 
13326
  #: wppa-settings-autosave.php:3903
13327
  #, fuzzy
13361
  msgid "This is the time it takes a photo to fade in or out."
13362
  msgstr "Dies ist die Zeit, die ein Foto nimmt in oder out zu verblassen."
13363
 
13364
+ #: wppa-settings-autosave.php:3919 wppa-settings-autosave.php:4293
13365
+ #: wppa-settings-autosave.php:4701 wppa-settings-autosave.php:6541
13366
+ #: wppa-settings-autosave.php:7654 wppa-settings-autosave.php:7665
13367
+ #: wppa-settings-autosave.php:7827
13368
  #, fuzzy
13369
  msgid "--- off ---"
13370
  msgstr "Aus, kein Blitz, nicht erkannt und Rück"
13429
  msgid "The alignment of the descriptions under fullsize images and slideshows."
13430
  msgstr "Die Ausrichtung der Beschreibungen unter Gross Bildern und Diashows."
13431
 
13432
+ #: wppa-settings-autosave.php:3948 wppa-settings-autosave.php:4086
13433
+ #: wppa-settings-autosave.php:4189
13434
  #, fuzzy
13435
  msgid "Left"
13436
  msgstr "Links"
13438
  #: wppa-settings-autosave.php:3948
13439
  #, fuzzy
13440
  msgid "Center"
13441
+ msgstr "Center"
13442
 
13443
+ #: wppa-settings-autosave.php:3948 wppa-settings-autosave.php:4086
13444
+ #: wppa-settings-autosave.php:4189
13445
  #, fuzzy
13446
  msgid "Right"
13447
  msgstr "Rechts"
13449
  #: wppa-settings-autosave.php:3955
13450
  #, fuzzy
13451
  msgid "Remove redundant space"
13452
+ msgstr "Entfernen redundanter Raum"
13453
 
13454
  #: wppa-settings-autosave.php:3956
13455
  #, fuzzy
13522
  #: wppa-settings-autosave.php:4001
13523
  #, fuzzy
13524
  msgid "Pagelinks slideshow use Ajax"
13525
+ msgstr "Pagelinks Diashow Ajax verwenden"
13526
 
13527
  #: wppa-settings-autosave.php:4002
13528
  #, fuzzy
13531
 
13532
  #: wppa-settings-autosave.php:4009
13533
  #, fuzzy
13534
+ msgid "Sutcliffe style"
13535
+ msgstr "Sutcliffe Stil"
13536
+
13537
+ #: wppa-settings-autosave.php:4010
13538
+ #, fuzzy
13539
+ msgid "Show description with counter at limited size."
13540
+ msgstr "Eine Beschreibung sehen mit Zähler bei begrenzter Größe."
13541
+
13542
+ #: wppa-settings-autosave.php:4014
13543
+ #, fuzzy
13544
+ msgid "available width"
13545
+ msgstr "verfügbare Breite"
13546
+
13547
+ #: wppa-settings-autosave.php:4015
13548
+ #, fuzzy
13549
+ msgid "width of image"
13550
+ msgstr "Breite des Himmelsbildes"
13551
+
13552
+ #: wppa-settings-autosave.php:4016
13553
+ #, fuzzy
13554
+ msgid "width of portrait image"
13555
+ msgstr "Breite Porträtbild"
13556
+
13557
+ #: wppa-settings-autosave.php:4029
13558
+ #, fuzzy
13559
  msgid "Thumbnail related settings"
13560
+ msgstr "Thumbnail bezogene Einstellungen"
13561
 
13562
+ #: wppa-settings-autosave.php:4032
13563
  #, fuzzy
13564
  msgid "Photo ordering sequence method."
13565
  msgstr "Foto-Bestellsequenzmethode."
13566
 
13567
+ #: wppa-settings-autosave.php:4033
13568
  #, fuzzy
13569
  msgid ""
13570
  "Specify the way the photos should be ordered. This is the default setting. "
13574
  "Standardeinstellung. Sie können die Standardsortierreihenfolge auf einer pro "
13575
  "Album Basis außer Kraft setzen."
13576
 
13577
+ #: wppa-settings-autosave.php:4070
13578
  #, fuzzy
13579
  msgid "Thumbnail type"
13580
  msgstr "Stil des Vorschaubilds"
13581
 
13582
+ #: wppa-settings-autosave.php:4071
13583
  #, fuzzy
13584
  msgid "The way the thumbnail images are displayed."
13585
  msgstr "Die Art und Weise die Miniaturbilder angezeigt werden."
13586
 
13587
+ #: wppa-settings-autosave.php:4072
13588
  #, fuzzy
13589
  msgid ""
13590
  "You may select an altenative display method for thumbnails. Note that some "
13594
  "auszuwählen. Beachten Sie, dass einige der Thumbnail-Einstellungen gelten "
13595
  "nicht für alle verfügbaren Anzeigemethoden."
13596
 
13597
+ #: wppa-settings-autosave.php:4074
13598
  #, fuzzy
13599
  msgid "like album covers"
13600
  msgstr "Albumcovers"
13601
 
13602
+ #: wppa-settings-autosave.php:4074
13603
  #, fuzzy
13604
  msgid "like album covers mcr"
13605
  msgstr "wie Album-Cover mcr"
13606
 
13607
+ #: wppa-settings-autosave.php:4074
13608
  #, fuzzy
13609
  msgid "masonry style columns"
13610
  msgstr "Mauerwerk Artspalten"
13611
 
13612
+ #: wppa-settings-autosave.php:4074
13613
  #, fuzzy
13614
  msgid "masonry style rows"
13615
  msgstr "Mauerwerk Stil Reihen"
13616
 
13617
+ #: wppa-settings-autosave.php:4082 wppa-settings-autosave.php:4183
13618
  #, fuzzy
13619
  msgid "Placement"
13620
  msgstr "Platzierung"
13621
 
13622
+ #: wppa-settings-autosave.php:4083
13623
  #, fuzzy
13624
  msgid "Thumbnail image left or right."
13625
  msgstr "Miniaturansicht nach links oder rechts."
13626
 
13627
+ #: wppa-settings-autosave.php:4084
13628
  #, fuzzy
13629
  msgid "Indicate the placement position of the thumbnailphoto you wish."
13630
  msgstr "Geben Sie die Platzierungsposition des thumbnail Sie es wünschen."
13631
 
13632
+ #: wppa-settings-autosave.php:4093
13633
  #, fuzzy
13634
  msgid "Vertical alignment"
13635
  msgstr "Vertikale Ausrichtung"
13636
 
13637
+ #: wppa-settings-autosave.php:4094
13638
  #, fuzzy
13639
  msgid "Vertical alignment of thumbnails."
13640
+ msgstr "Die vertikale Ausrichtung der Thumbnails."
13641
 
13642
+ #: wppa-settings-autosave.php:4095
13643
  #, fuzzy
13644
  msgid ""
13645
  "Specify the vertical alignment of thumbnail images. Use this setting when "
13648
  "Geben Sie die vertikale Ausrichtung von Miniaturbildern. Verwenden Sie diese "
13649
  "Einstellung, wenn Alben jeweils Hoch- und Quer Fotos enthalten."
13650
 
13651
+ #: wppa-settings-autosave.php:4096
13652
  #, fuzzy
13653
  msgid ""
13654
  "It is NOT recommended to use the value --- default ---; it will affect the "
13658
  "auch die horizontale Ausrichtung beeinflussen und soll mit "
13659
  "benutzerdefinierten CSS verwendet werden."
13660
 
13661
+ #: wppa-settings-autosave.php:4105
13662
  #, fuzzy
13663
  msgid "Thumb mouseover"
13664
  msgstr "thumb Mouseover"
13665
 
13666
+ #: wppa-settings-autosave.php:4106
13667
  #, fuzzy
13668
  msgid "Apply thumbnail mouseover effect."
13669
  msgstr "Bewerben Miniaturmouseover-Effekt."
13670
 
13671
+ #: wppa-settings-autosave.php:4107
13672
  #, fuzzy
13673
  msgid "Check this box to use mouseover effect on thumbnail images."
13674
  msgstr ""
13675
  "Markieren Sie dieses Feld Mouseover-Effekt auf die Miniaturbilder zu "
13676
  "verwenden."
13677
 
13678
+ #: wppa-settings-autosave.php:4115
13679
  #, fuzzy
13680
  msgid "Thumb opacity"
13681
  msgstr "thumb Opazität"
13682
 
13683
+ #: wppa-settings-autosave.php:4116 wppa-settings-autosave.php:4208
13684
  #, fuzzy
13685
  msgid "Initial opacity value."
13686
  msgstr "Anfangstrübungswert."
13687
 
13688
+ #: wppa-settings-autosave.php:4117 wppa-settings-autosave.php:4209
13689
+ #: wppa-settings-autosave.php:4339
13690
  #, fuzzy
13691
  msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
13692
  msgstr ""
13693
  "Geben Sie Prozentsatz der Undurchsichtigkeit. 100% opak ist, 0% beträgt "
13694
  "transparant"
13695
 
13696
+ #: wppa-settings-autosave.php:4119 wppa-settings-autosave.php:4211
13697
+ #: wppa-settings-autosave.php:4342 wppa-settings-autosave.php:4681
13698
  #, fuzzy
13699
  msgid "%"
13700
  msgstr "%"
13701
 
13702
+ #: wppa-settings-autosave.php:4124
13703
  #, fuzzy
13704
  msgid "Thumb popup"
13705
  msgstr "thumb Popup"
13706
 
13707
+ #: wppa-settings-autosave.php:4125
13708
  #, fuzzy
13709
  msgid "Use popup effect on thumbnail images."
13710
  msgstr "Verwenden Sie Popup-Effekt auf die Miniaturbilder."
13711
 
13712
+ #: wppa-settings-autosave.php:4126
13713
  #, fuzzy
13714
  msgid "Thumbnails pop-up to a larger image when hovered."
13715
  msgstr "Thumbnails in ein größeres Bild Pop-up, wenn schwebte."
13716
 
13717
+ #: wppa-settings-autosave.php:4134
13718
  #, fuzzy
13719
  msgid "Align subtext"
13720
  msgstr "Richten Sie Subtext"
13721
 
13722
+ #: wppa-settings-autosave.php:4135
13723
  #, fuzzy
13724
  msgid "Set thumbnail subtext on equal height."
13725
+ msgstr "Set Thumbnail Subtext auf gleicher Höhe."
13726
 
13727
+ #: wppa-settings-autosave.php:4143
13728
  #, fuzzy
13729
  msgid "Album and covers related settings"
13730
+ msgstr "Album und deckt damit verbundene Einstellungen"
13731
 
13732
+ #: wppa-settings-autosave.php:4145
13733
  #, fuzzy
13734
  msgid "Album order"
13735
  msgstr "Album bestellen"
13736
 
13737
+ #: wppa-settings-autosave.php:4146
13738
  #, fuzzy
13739
  msgid "Album ordering sequence method."
13740
  msgstr "Album Bestellung Sequenzmethode."
13741
 
13742
+ #: wppa-settings-autosave.php:4147
13743
  #, fuzzy
13744
  msgid "Specify the way the albums should be ordered."
13745
  msgstr "Geben Sie die Art und Weise sollten die Alben bestellt werden."
13746
 
13747
+ #: wppa-settings-autosave.php:4172
13748
  #, fuzzy
13749
  msgid "Default coverphoto selection"
13750
  msgstr "Standard Coverfoto Auswahl"
13751
 
13752
+ #: wppa-settings-autosave.php:4173
13753
  #, fuzzy
13754
  msgid "Default select cover photo method."
13755
  msgstr "Standardbild auswählen Methode."
13756
 
13757
+ #: wppa-settings-autosave.php:4174
13758
  #, fuzzy
13759
  msgid ""
13760
  "This is the initial value on album creation only. It can be overruled on the "
13761
  "edit album page."
13762
  msgstr ""
13763
+ "Dies ist der Anfangswert auf nur Album Schöpfung. Es kann auf dem Album "
13764
+ "bearbeiten Seite außer Kraft gesetzt werden."
13765
 
13766
+ #: wppa-settings-autosave.php:4175
13767
  #, fuzzy
13768
  msgid "Random from album"
13769
  msgstr "Zufällige von Album"
13770
 
13771
+ #: wppa-settings-autosave.php:4175
13772
  #, fuzzy
13773
  msgid "Random featured from album"
13774
  msgstr "Zufällige funktions von Album"
13775
 
13776
+ #: wppa-settings-autosave.php:4175
13777
  #, fuzzy
13778
  msgid "Most recently added to album"
13779
  msgstr "Zuletzt zum Album hinzugefügt"
13780
 
13781
+ #: wppa-settings-autosave.php:4175
13782
  #, fuzzy
13783
  msgid "Random from album or any sub album"
13784
  msgstr "Zufällige aus dem Album oder einem Unter Album"
13785
 
13786
+ #: wppa-settings-autosave.php:4184
13787
  #, fuzzy
13788
  msgid "Cover image position."
13789
  msgstr "Titelbild Position."
13790
 
13791
+ #: wppa-settings-autosave.php:4185
13792
  #, fuzzy
13793
  msgid ""
13794
  "Enter the position that you want to be used for the default album cover "
13797
  "Geben Sie die Position, die Sie in der Tabelle IV-D6 ausgewählt für die "
13798
  "Standard-Album-Cover verwendet werden soll."
13799
 
13800
+ #: wppa-settings-autosave.php:4186
13801
  #, fuzzy
13802
  msgid ""
13803
  "For covertype Image Factory: left will be treated as top and right will be "
13806
  "Für covertype Bild Factory: links wird als oben behandelt und rechts wird "
13807
  "als untere treted werden."
13808
 
13809
+ #: wppa-settings-autosave.php:4187
13810
  #, fuzzy
13811
  msgid ""
13812
  "For covertype Long Descriptions: top will be treated as left and bottom will "
13815
  "Für covertype Lange Beschreibungen: oben wird wie links behandelt und Boden "
13816
  "wird als rechts treted werden."
13817
 
13818
+ #: wppa-settings-autosave.php:4197
13819
  #, fuzzy
13820
  msgid "Cover mouseover"
13821
  msgstr "Abdeckung Mouseover"
13822
 
13823
+ #: wppa-settings-autosave.php:4198
13824
  #, fuzzy
13825
  msgid "Apply coverphoto mouseover effect."
13826
  msgstr "Bewerben Coverfoto Mouseover-Effekt."
13827
 
13828
+ #: wppa-settings-autosave.php:4199
13829
  #, fuzzy
13830
  msgid "Check this box to use mouseover effect on cover images."
13831
  msgstr ""
13832
  "Markieren Sie dieses Feld Mouseover-Effekt auf die Cover-Bilder zu verwenden."
13833
 
13834
+ #: wppa-settings-autosave.php:4207
13835
  #, fuzzy
13836
  msgid "Cover opacity"
13837
  msgstr "Titel Opazität"
13838
 
13839
+ #: wppa-settings-autosave.php:4216
13840
  #, fuzzy
13841
  msgid "Cover type"
13842
  msgstr "Einband"
13843
 
13844
+ #: wppa-settings-autosave.php:4217
13845
  #, fuzzy
13846
  msgid "Select the default cover type."
13847
  msgstr "Wählen Sie die Standardabdeckung Typ."
13848
 
13849
+ #: wppa-settings-autosave.php:4218
13850
  #, fuzzy
13851
  msgid ""
13852
  "Types with the addition mcr are suitable for Multi Column in a Responsive "
13855
  "Typen mit dem Zusatz mcr sind für Multi-Spalte in einem Responsive Thema "
13856
  "geeignet"
13857
 
13858
+ #: wppa-settings-autosave.php:4241
13859
  #, fuzzy
13860
  msgid "The umber of coverphotos. Must be > 1 and < 25."
13861
  msgstr "Die Umbra von coverphotos. Muss> 1 und <25."
13862
 
13863
+ #: wppa-settings-autosave.php:4249
13864
  #, fuzzy
13865
  msgid "Cats include subs"
13866
  msgstr "Katzen sind U-Boote"
13867
 
13868
+ #: wppa-settings-autosave.php:4250
13869
  #, fuzzy
13870
  msgid "Child albums are included in Category based shortcodes."
13871
  msgstr "Kinderalben sind in Kategorie basierend Shortcodes enthalten."
13872
 
13873
+ #: wppa-settings-autosave.php:4251
13874
  #, fuzzy
13875
  msgid ""
13876
  "When you use album=\"#cat,...\", in a shortcode, the child albums will be "
13879
  "Wenn Sie das Album verwenden = \"# cat, ...\", in einer Kurzwahlnummer, wird "
13880
  "das Kind Alben aufgenommen."
13881
 
13882
+ #: wppa-settings-autosave.php:4259
13883
  #, fuzzy
13884
  msgid "Rating related settings"
13885
  msgstr "Rating bezogenen Einstellungen"
13886
 
13887
+ #: wppa-settings-autosave.php:4261
13888
  #, fuzzy
13889
  msgid "Rating login"
13890
  msgstr "Rating Login"
13891
 
13892
+ #: wppa-settings-autosave.php:4262
13893
  #, fuzzy
13894
  msgid "Users must login to rate photos."
13895
+ msgstr "Benutzer müssen sich anmelden, Fotos bewerten."
13896
 
13897
+ #: wppa-settings-autosave.php:4263
13898
  #, fuzzy
13899
  msgid ""
13900
  "If users want to vote for a photo (rating 1..5 stars) the must login first. "
13905
  "der ersten Anmeldung müssen. Die Durchschnittsbewertung wird immer so lange "
13906
  "angezeigt werden, da das Rating-System aktiviert ist."
13907
 
13908
+ #: wppa-settings-autosave.php:4270
13909
  #, fuzzy
13910
  msgid "Rating change"
13911
  msgstr "Änderung der Bewertung"
13912
 
13913
+ #: wppa-settings-autosave.php:4271 wppa-settings-autosave.php:4272
13914
  #, fuzzy
13915
  msgid "Users may change their ratings."
13916
  msgstr "Die Benutzer können ihre Ratings ändern."
13917
 
13918
+ #: wppa-settings-autosave.php:4273 wppa-settings-autosave.php:4321
13919
+ #: wppa-settings-autosave.php:4340 wppa-settings-autosave.php:4353
13920
+ #: wppa-settings-autosave.php:4363 wppa-settings-autosave.php:4373
13921
+ #: wppa-settings-autosave.php:4383 wppa-settings-autosave.php:4392
13922
  #, fuzzy
13923
  msgid ""
13924
  "If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
13926
  "Wenn \"Ein-Knopf-Abstimmung\" in Tabelle I-E1 ausgewählt ist, hat diese "
13927
  "Einstellung keine Bedeutung"
13928
 
13929
+ #: wppa-settings-autosave.php:4280
13930
  #, fuzzy
13931
  msgid "Rating multi"
13932
  msgstr "Bewertung Mehr"
13933
 
13934
+ #: wppa-settings-autosave.php:4281
13935
  #, fuzzy
13936
  msgid "Users may give multiple votes."
13937
  msgstr "Benutzer können mehrere Stimmen geben."
13938
 
13939
+ #: wppa-settings-autosave.php:4282
13940
  #, fuzzy
13941
  msgid ""
13942
  "Users may give multiple votes. (This has no effect when users may change "
13945
  "Benutzer können mehrere Stimmen geben. (Dies hat keine Auswirkung, wenn die "
13946
  "Benutzer ihre Stimme ändern können.)"
13947
 
13948
+ #: wppa-settings-autosave.php:4289
13949
  #, fuzzy
13950
  msgid "Rating daily"
13951
  msgstr "Bewertung täglich"
13952
 
13953
+ #: wppa-settings-autosave.php:4290
13954
  #, fuzzy
13955
  msgid "Users may rate only once per period"
13956
  msgstr "Benutzer können pro Periode nur einmal bewerten"
13957
 
13958
+ #: wppa-settings-autosave.php:4293
13959
  #, fuzzy
13960
  msgid "Week"
13961
  msgstr "Woche"
13962
 
13963
+ #: wppa-settings-autosave.php:4293
13964
  #, fuzzy
13965
  msgid "Day"
13966
  msgstr "Tag"
13967
 
13968
+ #: wppa-settings-autosave.php:4293
13969
  #, fuzzy
13970
  msgid "Hour"
13971
  msgstr "Stunde"
13972
 
13973
+ #: wppa-settings-autosave.php:4300
13974
  #, fuzzy
13975
  msgid "Rate own photos"
13976
+ msgstr "Bewerten Sie Ihre Fotos"
13977
 
13978
+ #: wppa-settings-autosave.php:4301
13979
  #, fuzzy
13980
  msgid "It is allowed to rate photos by the uploader himself."
13981
  msgstr "Es ist erlaubt, Fotos vom Uploader selbst zu bewerten."
13982
 
13983
+ #: wppa-settings-autosave.php:4309
13984
  #, fuzzy
13985
  msgid "Rating requires comment"
13986
  msgstr "Bewertung erfordert Kommentar"
13987
 
13988
+ #: wppa-settings-autosave.php:4310
13989
  #, fuzzy
13990
  msgid "Users must clarify their vote in a comment."
13991
  msgstr "Die Benutzer müssen ihre Stimme in einem Kommentar zu klären."
13992
 
13993
+ #: wppa-settings-autosave.php:4319
13994
  #, fuzzy
13995
  msgid "This value counts dislike rating."
13996
  msgstr "Dieser Wert zählt nicht mögen Rating."
13997
 
13998
+ #: wppa-settings-autosave.php:4320
13999
  #, fuzzy
14000
  msgid ""
14001
  "This value will be used for a dislike rating on calculation of avarage "
14004
  "Dieser Wert wird für eine Abneigung Bewertung über die Berechnung des "
14005
  "Durchschnittsbewertungen verwendet werden."
14006
 
14007
+ #: wppa-settings-autosave.php:4323
14008
  #, fuzzy
14009
  msgid "points"
14010
+ msgstr "Punkte"
14011
 
14012
+ #: wppa-settings-autosave.php:4328
14013
  #, fuzzy
14014
  msgid "Next after vote"
14015
  msgstr "Weiter nach Abstimmung"
14016
 
14017
+ #: wppa-settings-autosave.php:4329
14018
  #, fuzzy
14019
  msgid "Goto next slide after voting"
14020
  msgstr "Goto nächste Folie nach der Abstimmung"
14021
 
14022
+ #: wppa-settings-autosave.php:4330
14023
  #, fuzzy
14024
  msgid ""
14025
  "If checked, the visitor goes straight to the slide following the slide he "
14028
  "Wenn diese Option aktiviert, geht der Besucher direkt auf die Folie nach dem "
14029
  "Dia er gewählt. Dies wird Masse Abstimmung beschleunigen."
14030
 
14031
+ #: wppa-settings-autosave.php:4337
14032
  #, fuzzy
14033
  msgid "Star off opacity"
14034
  msgstr "Star off Trübung"
14035
 
14036
+ #: wppa-settings-autosave.php:4338
14037
  #, fuzzy
14038
  msgid "Rating star off state opacity value."
14039
  msgstr "Bewertung star off Lässigkeitswert Zustand."
14040
 
14041
+ #: wppa-settings-autosave.php:4348
14042
  #, fuzzy
14043
  msgid "Notify admin every x times."
14044
  msgstr "Benachrichtigen Sie Admin alle x-mal."
14045
 
14046
+ #: wppa-settings-autosave.php:4349
14047
  #, fuzzy
14048
  msgid ""
14049
  "If this number is positive, there will be a thumb down icon in the rating "
14052
  "Wenn diese Zahl positiv ist, wird es einen Daumen nach unten Symbol in der "
14053
  "Bewertung bar betragen."
14054
 
14055
+ #: wppa-settings-autosave.php:4350
14056
  #, fuzzy
14057
  msgid ""
14058
  "Cicking the icon indicates a user wants to report that an image is "
14061
  "das Symbol Cicking zeigt ein Benutzer berichten will, dass ein Bild "
14062
  "Ungeeigneter ist."
14063
 
14064
+ #: wppa-settings-autosave.php:4351
14065
  #, fuzzy
14066
  msgid "Admin will be notified by email after every x reports."
14067
  msgstr "Admin wird per E-Mail nach jedem x-Berichte informiert werden."
14068
 
14069
+ #: wppa-settings-autosave.php:4352 wppa-settings-autosave.php:4362
14070
+ #: wppa-settings-autosave.php:4372
14071
  #, fuzzy
14072
  msgid "A value of 0 disables this feature."
14073
  msgstr "Ein Wert von 0 deaktiviert diese Funktion."
14074
 
14075
+ #: wppa-settings-autosave.php:4355 wppa-settings-autosave.php:4365
14076
+ #: wppa-settings-autosave.php:4375
14077
  #, fuzzy
14078
  msgid "reports"
14079
  msgstr "Berichte"
14080
 
14081
+ #: wppa-settings-autosave.php:4360
14082
  #, fuzzy
14083
  msgid "Pending after"
14084
  msgstr "Bis nach"
14085
 
14086
+ #: wppa-settings-autosave.php:4361
14087
  #, fuzzy
14088
  msgid "Set status to pending after xx dislike votes."
14089
  msgstr "Status setzen nach xx Abneigung Stimmen anhängig."
14090
 
14091
+ #: wppa-settings-autosave.php:4370
14092
  #, fuzzy
14093
  msgid "Delete after"
14094
+ msgstr "Löschen nach"
14095
 
14096
+ #: wppa-settings-autosave.php:4371
14097
  #, fuzzy
14098
  msgid "Deete photo after xx dislike votes."
14099
  msgstr "Deete Foto nach xx Abneigung Stimmen."
14100
 
14101
+ #: wppa-settings-autosave.php:4380
14102
  #, fuzzy
14103
  msgid "Show dislike count"
14104
  msgstr "Anzeigen Abneigung Zahl"
14105
 
14106
+ #: wppa-settings-autosave.php:4381
14107
  #, fuzzy
14108
  msgid "Show the number of dislikes in the rating bar."
14109
  msgstr "Zeigt die Anzahl der Abneigungen in der Bewertung bar."
14110
 
14111
+ #: wppa-settings-autosave.php:4382
14112
  #, fuzzy
14113
  msgid "Displayes the total number of dislike votes for the current photo."
14114
  msgstr "DISPLAYES die Gesamtzahl der Abneigung Stimmen für das aktuelle Foto."
14115
 
14116
+ #: wppa-settings-autosave.php:4390
14117
  #, fuzzy
14118
  msgid "Rating display type"
14119
  msgstr "Bewertung Darstellungsart"
14120
 
14121
+ #: wppa-settings-autosave.php:4391
14122
  #, fuzzy
14123
  msgid "Specify the type of the rating display."
14124
  msgstr "Geben Sie die Art der Bewertung Anzeige."
14125
 
14126
+ #: wppa-settings-autosave.php:4394
14127
  #, fuzzy
14128
  msgid "Graphic"
14129
  msgstr "Grafik"
14130
 
14131
+ #: wppa-settings-autosave.php:4394
14132
  #, fuzzy
14133
  msgid "Numeric"
14134
+ msgstr "Numerisch"
14135
 
14136
+ #: wppa-settings-autosave.php:4401
14137
  #, fuzzy
14138
  msgid "Show average rating"
14139
  msgstr "Durchschnittliches Rating"
14140
 
14141
+ #: wppa-settings-autosave.php:4402
14142
  #, fuzzy
14143
  msgid "Display the avarage rating and/or vote count on the rating bar"
14144
  msgstr ""
14145
  "Zeigen Sie die Durchschnittsbewertung und / oder Stimme auf die Rating-Bar"
14146
 
14147
+ #: wppa-settings-autosave.php:4403
14148
  #, fuzzy
14149
  msgid ""
14150
  "If checked, the average rating as well as the current users rating is "
14153
  "Wenn aktiviert, wird die durchschnittliche Bewertung sowie der aktuelle "
14154
  "Benutzer Bewertung in max 5 oder 10 Sternen angezeigt."
14155
 
14156
+ #: wppa-settings-autosave.php:4404
14157
  #, fuzzy
14158
  msgid "If unchecked, only the current users rating is displayed (if any)."
14159
  msgstr ""
14160
  "Ist die Option deaktiviert, wird nur der aktuelle Benutzer Bewertung (falls "
14161
  "vorhanden) angezeigt."
14162
 
14163
+ #: wppa-settings-autosave.php:4405
14164
  #, fuzzy
14165
  msgid ""
14166
  "If \"One button vote\" is selected in Table I-E1, this box checked will "
14169
  "Wenn \"Ein-Knopf-Abstimmung\" in Tabelle I-E1 ausgewählt wird, überprüft "
14170
  "dieses Feld wird die Auszählung der Stimmen an."
14171
 
14172
+ #: wppa-settings-autosave.php:4412
14173
  #, fuzzy
14174
  msgid "Single vote button text"
14175
  msgstr "Einzel Abstimmung Taste Text"
14176
 
14177
+ #: wppa-settings-autosave.php:4413
14178
  #, fuzzy
14179
  msgid "The text on the voting button."
14180
  msgstr "Der Text auf der Wahltaste."
14181
 
14182
+ #: wppa-settings-autosave.php:4414 wppa-settings-autosave.php:4423
14183
  #, fuzzy
14184
  msgid "This text may contain qTranslate compatible language tags."
14185
  msgstr "Dieser Text kann qTranslate kompatible Sprache-Tags enthalten."
14186
 
14187
+ #: wppa-settings-autosave.php:4421
14188
  #, fuzzy
14189
  msgid "Single vote button text voted"
14190
  msgstr "Einzel Abstimmung Taste Text gestimmt"
14191
 
14192
+ #: wppa-settings-autosave.php:4422
14193
  #, fuzzy
14194
  msgid "The text on the voting button when voted."
14195
  msgstr "Der Text auf der Wahltaste, wenn gewählt."
14196
 
14197
+ #: wppa-settings-autosave.php:4430
14198
  #, fuzzy
14199
  msgid "Single vote button thumbnail"
14200
  msgstr "Einzel Abstimmung Taste Thumbnail"
14201
 
14202
+ #: wppa-settings-autosave.php:4431
14203
  #, fuzzy
14204
  msgid "Display single vote button below thumbnails."
14205
  msgstr "Zeigen Sie einzelne Stimme Button Thumbnails."
14206
 
14207
+ #: wppa-settings-autosave.php:4432
14208
  #, fuzzy
14209
  msgid ""
14210
  "This works only in single vote mode: Table I-E1 set to \"one button vote\""
14212
  "Das funktioniert aber nur in Einzelstimme Modus: Tabelle I-E1 auf \"eine "
14213
  "Taste Abstimmung\" gesetzt"
14214
 
14215
+ #: wppa-settings-autosave.php:4439
14216
  #, fuzzy
14217
  msgid "Medal bronze when"
14218
  msgstr "Medaille Bronze wenn"
14219
 
14220
+ #: wppa-settings-autosave.php:4440 wppa-settings-autosave.php:4458
14221
  #, fuzzy
14222
  msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
14223
  msgstr ""
14224
  "Foto bekommt Medaille Bronze wenn die Anzahl der Top-Scores (5 oder 10)."
14225
 
14226
+ #: wppa-settings-autosave.php:4441 wppa-settings-autosave.php:4459
14227
  #, fuzzy
14228
  msgid ""
14229
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
14233
  "eine Bronzemedaille bekommen. Ein Wert von 0 bedeutet, dass Sie diese "
14234
  "Funktion nicht wollen."
14235
 
14236
+ #: wppa-settings-autosave.php:4443 wppa-settings-autosave.php:4452
14237
+ #: wppa-settings-autosave.php:4461
14238
  #, fuzzy
14239
  msgid "Topscores"
14240
  msgstr "Höchstpunktzahl"
14241
 
14242
+ #: wppa-settings-autosave.php:4448
14243
  #, fuzzy
14244
  msgid "Medal silver when"
14245
  msgstr "Medaille in Silber, wenn"
14246
 
14247
+ #: wppa-settings-autosave.php:4449
14248
  #, fuzzy
14249
  msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
14250
  msgstr ""
14251
  "Foto bekommt Medaille in Silber, wenn die Anzahl der Top-Scores (5 oder 10)."
14252
 
14253
+ #: wppa-settings-autosave.php:4450
14254
  #, fuzzy
14255
  msgid ""
14256
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
14260
  "eine Silbermedaille erhalten. Ein Wert von 0 bedeutet, dass Sie diese "
14261
  "Funktion nicht wollen."
14262
 
14263
+ #: wppa-settings-autosave.php:4457
14264
  #, fuzzy
14265
  msgid "Medal gold when"
14266
  msgstr "Medal Gold, wenn"
14267
 
14268
+ #: wppa-settings-autosave.php:4466
14269
  #, fuzzy
14270
  msgid "Medal tag color"
14271
  msgstr "Medal Tag Farbe"
14272
 
14273
+ #: wppa-settings-autosave.php:4467
14274
  #, fuzzy
14275
  msgid "The color of the tag on the medal."
14276
  msgstr "Die Farbe des Etiketts auf der Medaille."
14277
 
14278
+ #: wppa-settings-autosave.php:4470 wppa-settings-autosave.php:7910
14279
  #, fuzzy
14280
  msgid "Red"
14281
  msgstr "Rote-Augen-Reduzierung, nicht erkannt und Rück"
14282
 
14283
+ #: wppa-settings-autosave.php:4470 wppa-settings-autosave.php:7913
14284
  #, fuzzy
14285
  msgid "Green"
14286
+ msgstr "Grün"
14287
 
14288
+ #: wppa-settings-autosave.php:4470 wppa-settings-autosave.php:7914
14289
  #, fuzzy
14290
  msgid "Blue"
14291
  msgstr "Blau"
14292
 
14293
+ #: wppa-settings-autosave.php:4477
14294
  #, fuzzy
14295
  msgid "Medal position"
14296
  msgstr "Medaille Position"
14297
 
14298
+ #: wppa-settings-autosave.php:4478
14299
  #, fuzzy
14300
  msgid "The position of the medal on the image."
14301
  msgstr "Die Position der Medaille auf das Bild."
14302
 
14303
+ #: wppa-settings-autosave.php:4481
14304
  #, fuzzy
14305
  msgid "Top left"
14306
+ msgstr "Open links"
14307
 
14308
+ #: wppa-settings-autosave.php:4481
14309
  #, fuzzy
14310
  msgid "Top right"
14311
  msgstr "Oben rechts"
14312
 
14313
+ #: wppa-settings-autosave.php:4481
14314
  #, fuzzy
14315
  msgid "Bottom left"
14316
  msgstr "Unten links"
14317
 
14318
+ #: wppa-settings-autosave.php:4481
14319
  #, fuzzy
14320
  msgid "Bottom right"
14321
  msgstr "Unten rechts"
14322
 
14323
+ #: wppa-settings-autosave.php:4488
14324
  #, fuzzy
14325
  msgid "Top criterium"
14326
  msgstr "Top criterium"
14327
 
14328
+ #: wppa-settings-autosave.php:4489
14329
  #, fuzzy
14330
  msgid "The top sort item used for topten results from shortcodes."
14331
  msgstr ""
14332
  "Die Top-Art Artikel für topten Ergebnisse von Kurzwahlnummern verwendet."
14333
 
14334
+ #: wppa-settings-autosave.php:4492
14335
  #, fuzzy
14336
  msgid "Mean raiting"
14337
  msgstr "Mittlere beliebheit"
14338
 
14339
+ #: wppa-settings-autosave.php:4492
14340
  #, fuzzy
14341
  msgid "Rating count"
14342
  msgstr "Bewertungen"
14343
 
14344
+ #: wppa-settings-autosave.php:4492
14345
  #, fuzzy
14346
  msgid "Viewcount"
14347
  msgstr "Viewcount"
14348
 
14349
+ #: wppa-settings-autosave.php:4499
14350
  #, fuzzy
14351
  msgid "Comments related settings"
14352
  msgstr "Kommentare Einstellungen"
14353
 
14354
+ #: wppa-settings-autosave.php:4501
14355
  #, fuzzy
14356
  msgid "Commenting login"
14357
  msgstr "Kommentar Login"
14358
 
14359
+ #: wppa-settings-autosave.php:4502
14360
  #, fuzzy
14361
  msgid "Users must be logged in to comment on photos."
14362
  msgstr "Benutzer müssen angemeldet sein, auf Fotos zu kommentieren."
14363
 
14364
+ #: wppa-settings-autosave.php:4503
14365
  #, fuzzy
14366
  msgid ""
14367
  "Check this box if you want users to be logged in to be able to enter "
14370
  "Markieren Sie dieses Feld, wenn Benutzer angemeldet sein wollen in der Lage "
14371
  "Kommentare zu den einzelnen Fotos zu gelangen."
14372
 
14373
+ #: wppa-settings-autosave.php:4510
14374
  #, fuzzy
14375
  msgid "Comments view login"
14376
  msgstr "Kommentare Ansicht Login"
14377
 
14378
+ #: wppa-settings-autosave.php:4511
14379
  #, fuzzy
14380
  msgid "Users must be logged in to see comments on photos."
14381
  msgstr "Benutzer müssen angemeldet sein, um Kommentare auf Fotos zu sehen."
14382
 
14383
+ #: wppa-settings-autosave.php:4512
14384
  #, fuzzy
14385
  msgid ""
14386
  "Check this box if you want users to be logged in to be able to see existing "
14389
  "Markieren Sie dieses Feld, wenn Benutzer angemeldet sein wollen in der Lage "
14390
  "bestehende Kommentare zu den einzelnen Fotos zu sehen."
14391
 
14392
+ #: wppa-settings-autosave.php:4519
14393
  #, fuzzy
14394
  msgid "Last comment first"
14395
  msgstr "Neueste Kommentare zuerst"
14396
 
14397
+ #: wppa-settings-autosave.php:4520
14398
  #, fuzzy
14399
  msgid "Display the newest comment on top."
14400
  msgstr "Rufen Sie den neuesten Kommentar an der Spitze."
14401
 
14402
+ #: wppa-settings-autosave.php:4521
14403
  #, fuzzy
14404
  msgid "If checked: Display the newest comment on top."
14405
  msgstr ""
14406
  "Wenn diese Option aktiviert: Zeigt die neuesten Kommentare an der Spitze."
14407
 
14408
+ #: wppa-settings-autosave.php:4522
14409
  #, fuzzy
14410
  msgid "If unchecked, the comments are listed in the ordere they were entered."
14411
  msgstr ""
14412
  "Ist die Option deaktiviert, werden die Kommentare in der ordere aufgeführt "
14413
  "sind sie eingegeben wurden."
14414
 
14415
+ #: wppa-settings-autosave.php:4529
14416
  #, fuzzy
14417
  msgid "Comment moderation"
14418
  msgstr "Kommentar Moderation"
14419
 
14420
+ #: wppa-settings-autosave.php:4530
14421
  #, fuzzy
14422
  msgid "Comments from what users need approval."
14423
  msgstr "Kommentare von dem, was Anwender brauchen Genehmigung."
14424
 
14425
+ #: wppa-settings-autosave.php:4531
14426
  #, fuzzy
14427
  msgid "Select the desired users of which the comments need approval."
14428
  msgstr ""
14429
  "Wählen Sie die gewünschten Benutzer, von denen die Kommentare Genehmigung "
14430
  "benötigen."
14431
 
14432
+ #: wppa-settings-autosave.php:4533 wppa-settings-autosave.php:6527
14433
  #, fuzzy
14434
  msgid "All users"
14435
  msgstr "Alle Benutzer"
14436
 
14437
+ #: wppa-settings-autosave.php:4533 wppa-settings-autosave.php:6527
14438
  #, fuzzy
14439
  msgid "Logged out users"
14440
  msgstr "abgemeldete Benutzer"
14441
 
14442
+ #: wppa-settings-autosave.php:4533 wppa-settings-autosave.php:6527
14443
  #, fuzzy
14444
  msgid "No users"
14445
  msgstr "Keine Teilnehmer."
14446
 
14447
+ #: wppa-settings-autosave.php:4540
14448
  #, fuzzy
14449
  msgid "Comment email required"
14450
  msgstr "Kommentar E-Mail erforderlich"
14451
 
14452
+ #: wppa-settings-autosave.php:4541
14453
  #, fuzzy
14454
  msgid "Commenting users must enter their email addresses."
14455
  msgstr "Kommentierte müssen die Benutzer ihre E-Mail-Adressen eingeben."
14456
 
14457
+ #: wppa-settings-autosave.php:4545 wppa-settings-autosave.php:9240
14458
+ #: wppa-settings-autosave.php:9308
14459
  #, fuzzy
14460
  msgid "Optional"
14461
  msgstr "Optional"
14462
 
14463
+ #: wppa-settings-autosave.php:4557
14464
  #, fuzzy
14465
  msgid "Comment notify"
14466
  msgstr "Kommentar melden"
14467
 
14468
+ #: wppa-settings-autosave.php:4558
14469
  #, fuzzy
14470
  msgid "Select who must receive an e-mail notification of a new comment."
14471
  msgstr ""
14472
  "Wählen Sie die E-Mail-Benachrichtigung über einen neuen Kommentar erhalten "
14473
  "muss."
14474
 
14475
+ #: wppa-settings-autosave.php:4561
14476
  #, fuzzy
14477
  msgid "--- None ---"
14478
  msgstr "--- keine ---"
14479
 
14480
+ #: wppa-settings-autosave.php:4562
14481
  #, fuzzy
14482
  msgid "--- Admin ---"
14483
+ msgstr "Admin"
14484
 
14485
+ #: wppa-settings-autosave.php:4563
14486
  #, fuzzy
14487
  msgid "--- Album owner ---"
14488
  msgstr "--- Album Inhaber ---"
14489
 
14490
+ #: wppa-settings-autosave.php:4564
14491
  #, fuzzy
14492
  msgid "--- Admin & Owner ---"
14493
  msgstr "--- Admin & Inhaber ---"
14494
 
14495
+ #: wppa-settings-autosave.php:4565
14496
  #, fuzzy
14497
  msgid "--- Uploader ---"
14498
  msgstr "--- --- Uploader"
14499
 
14500
+ #: wppa-settings-autosave.php:4566
14501
  #, fuzzy
14502
  msgid "--- Up & admin ---"
14503
  msgstr "--- Up & Admin ---"
14504
 
14505
+ #: wppa-settings-autosave.php:4567
14506
  #, fuzzy
14507
  msgid "--- Up & Owner ---"
14508
  msgstr "--- Up & Besitzer ---"
14509
 
14510
+ #: wppa-settings-autosave.php:4590
14511
  #, fuzzy
14512
  msgid "Comment notify previous"
14513
  msgstr "Kommentar melden vorherige"
14514
 
14515
+ #: wppa-settings-autosave.php:4591
14516
  #, fuzzy
14517
  msgid "Notify users who has commented this photo earlier."
14518
  msgstr "Benachrichtigen Sie die Benutzer, die dieses Foto früher geäußert hat."
14519
 
14520
+ #: wppa-settings-autosave.php:4599
14521
  #, fuzzy
14522
  msgid "Comment notify approved"
14523
  msgstr "Kommentar benachrichtigen genehmigt"
14524
 
14525
+ #: wppa-settings-autosave.php:4600
14526
  #, fuzzy
14527
  msgid "Notify photo owner of approved comment."
14528
  msgstr "Benachrichtigen Foto Inhaber zugelassener Kommentar."
14529
 
14530
+ #: wppa-settings-autosave.php:4608
14531
  #, fuzzy
14532
  msgid "Com ntfy appr email content"
14533
  msgstr "Com NTFY ca. E-Mail-Inhalt"
14534
 
14535
+ #: wppa-settings-autosave.php:4609
14536
  #, fuzzy
14537
  msgid "The content of the email."
14538
  msgstr "Der Inhalt der E-Mail."
14539
 
14540
+ #: wppa-settings-autosave.php:4610
14541
  #, fuzzy
14542
  msgid "If you leave this blank, the default content will be used"
14543
  msgstr ""
14544
  "Wenn Sie dieses Feld leer lassen, wird der Standardinhalt verwendet werden"
14545
 
14546
+ #: wppa-settings-autosave.php:4611
14547
  #, fuzzy
14548
  msgid "The content may contain html."
14549
  msgstr "Der Inhalt kann HTML-Code enthalten."
14550
 
14551
+ #: wppa-settings-autosave.php:4612
14552
  #, fuzzy
14553
  msgid ""
14554
  "You may use the following keywords: w#comment for the comment content, "
14563
  "amy, w # AMF, w # url, w # hrurl, w # tnurl, w # cc0..w # CC9, w # cd0..w # "
14564
  "CD9."
14565
 
14566
+ #: wppa-settings-autosave.php:4619
14567
  #, fuzzy
14568
  msgid "Com ntfy appr email subject"
14569
  msgstr "Com NTFY ca. E-Mail-Betreff"
14570
 
14571
+ #: wppa-settings-autosave.php:4620
14572
  #, fuzzy
14573
  msgid "The subject of the email."
14574
  msgstr "Betreff der E-Mail"
14575
 
14576
+ #: wppa-settings-autosave.php:4629
14577
  #, fuzzy
14578
  msgid "Comment ntfy added"
14579
  msgstr "Kommentar hinzugefügt"
14580
 
14581
+ #: wppa-settings-autosave.php:4630
14582
  #, fuzzy
14583
  msgid "Show \"Comment added\" after successfull adding a comment."
14584
  msgstr ""
14585
  "Show \"Kommentar hinzugefügt\" nach erfolgreicher Kommentar hinzufügen."
14586
 
14587
+ #: wppa-settings-autosave.php:4638
14588
  #, fuzzy
14589
  msgid "ComTen alt display"
14590
  msgstr "ComTen alt Anzeige"
14591
 
14592
+ #: wppa-settings-autosave.php:4639
14593
  #, fuzzy
14594
  msgid "Display comments at comten thumbnails."
14595
  msgstr "Anzeige Kommentare comten Thumbnails."
14596
 
14597
+ #: wppa-settings-autosave.php:4647
14598
  #, fuzzy
14599
  msgid "Comten Thumbnail width"
14600
  msgstr "Comten Thumbnail Breite"
14601
 
14602
+ #: wppa-settings-autosave.php:4648
14603
  #, fuzzy
14604
  msgid "The width of the thumbnail in the alt comment display."
14605
  msgstr "Die Breite der Miniaturansicht in der Alt-Kommentar-Anzeige."
14606
 
14607
+ #: wppa-settings-autosave.php:4651
14608
  #, fuzzy
14609
  msgid "Pixels"
14610
+ msgstr "Pixel"
 
 
14611
 
14612
+ #: wppa-settings-autosave.php:4656
14613
  #, fuzzy
14614
  msgid "Show smiley picker"
14615
  msgstr "Zeigen Sie Smiley-Picker"
14616
 
14617
+ #: wppa-settings-autosave.php:4657
14618
  #, fuzzy
14619
  msgid "Display a clickable row of smileys."
14620
  msgstr "Zeigen Sie eine anklickbare Reihe von Smileys."
14621
 
14622
+ #: wppa-settings-autosave.php:4665
14623
  #, fuzzy
14624
  msgid "Show commenter email"
14625
  msgstr "Zeige Kommentator E-Mail"
14626
 
14627
+ #: wppa-settings-autosave.php:4666
14628
  #, fuzzy
14629
  msgid "Show the commenter's email in the notify emails."
14630
  msgstr "Zeigen Sie die E-Mail der Kommentator in den E-Mails benachrichtigen."
14631
 
14632
+ #: wppa-settings-autosave.php:4667
14633
  #, fuzzy
14634
  msgid "Shows the email address of the commenter in all notify emails."
14635
  msgstr ""
14636
  "Zeigt die E-Mail-Adresse des commenter in allen benachrichtigen E-Mails."
14637
 
14638
+ #: wppa-settings-autosave.php:4668
14639
  #, fuzzy
14640
  msgid ""
14641
  "If switched off, admin will still receive the senders email in the "
14644
  "Wenn ausgeschaltet, kann der Admin noch die Absender E-Mail in der "
14645
  "Benachrichtigungsmail erhalten"
14646
 
14647
+ #: wppa-settings-autosave.php:4678
14648
  #, fuzzy
14649
  msgid "The opacity of the lightbox overlay background."
14650
  msgstr "Die Opazität der Leuchtkasten Overlay Hintergrund."
14651
 
14652
+ #: wppa-settings-autosave.php:4686
14653
  #, fuzzy
14654
  msgid "Click on background"
14655
  msgstr "Klicken Sie auf den Hintergrund"
14656
 
14657
+ #: wppa-settings-autosave.php:4687
14658
  #, fuzzy
14659
  msgid "Select the action to be taken on click on background."
14660
  msgstr "die Aktion auswählen taken on Klick auf den Hintergrund zu werden."
14661
 
14662
+ #: wppa-settings-autosave.php:4690
14663
  #, fuzzy
14664
  msgid "Nothing"
14665
+ msgstr "Nichts"
14666
 
14667
+ #: wppa-settings-autosave.php:4690
14668
  #, fuzzy
14669
  msgid "Exit (close)"
14670
  msgstr "Exit (schließen)"
14671
 
14672
+ #: wppa-settings-autosave.php:4690
14673
  #, fuzzy
14674
  msgid "Browse (left/right)"
14675
  msgstr "Durchsuchen (links / rechts)"
14676
 
14677
+ #: wppa-settings-autosave.php:4697
14678
  #, fuzzy
14679
  msgid "Overlay animation speed"
14680
  msgstr "Overlay Animationsgeschwindigkeit"
14681
 
14682
+ #: wppa-settings-autosave.php:4698
14683
  #, fuzzy
14684
  msgid "The fade-in time of the lightbox images"
14685
  msgstr "Die Fade-In der Lightbox-Bilder"
14686
 
14687
+ #: wppa-settings-autosave.php:4701
14688
  #, fuzzy
14689
  msgid "very fast (100 ms.)"
14690
  msgstr "sehr schnell (100 ms.)"
14691
 
14692
+ #: wppa-settings-autosave.php:4701
14693
  #, fuzzy
14694
  msgid "fast (200 ms.)"
14695
  msgstr "schnell (200 ms.)"
14696
 
14697
+ #: wppa-settings-autosave.php:4701
14698
  #, fuzzy
14699
  msgid "normal (300 ms.)"
14700
  msgstr "normal (300 ms.)"
14701
 
14702
+ #: wppa-settings-autosave.php:4701
14703
  #, fuzzy
14704
  msgid "slow (500 ms.)"
14705
  msgstr "langsam (500 ms.)"
14706
 
14707
+ #: wppa-settings-autosave.php:4701
14708
  #, fuzzy
14709
  msgid "very slow (1 s.)"
14710
  msgstr "sehr langsam (1 s.)"
14711
 
14712
+ #: wppa-settings-autosave.php:4701
14713
  #, fuzzy
14714
  msgid "extremely slow (2 s.)"
14715
  msgstr "extrem langsam (2 s.)"
14716
 
14717
+ #: wppa-settings-autosave.php:4708
14718
  #, fuzzy
14719
  msgid "Overlay slideshow speed"
14720
  msgstr "Overlay Diashow Geschwindigkeit"
14721
 
14722
+ #: wppa-settings-autosave.php:4709
14723
  #, fuzzy
14724
  msgid "The time the lightbox images stay"
14725
  msgstr "Die Zeit, um den Leuchtkasten Bilder bleiben"
14726
 
14727
+ #: wppa-settings-autosave.php:4712
14728
  #, fuzzy
14729
  msgid "fast (3 s.)"
14730
  msgstr "schnell (3 s.)"
14731
 
14732
+ #: wppa-settings-autosave.php:4712
14733
  #, fuzzy
14734
  msgid "normal (5 s.)"
14735
  msgstr "normal (5 s.)"
14736
 
14737
+ #: wppa-settings-autosave.php:4712
14738
  #, fuzzy
14739
  msgid "slow (8 s.)"
14740
  msgstr "langsam (8 s.)"
14741
 
14742
+ #: wppa-settings-autosave.php:4712
14743
  #, fuzzy
14744
  msgid "very slow (13 s.)"
14745
  msgstr "sehr langsam (13 s.)"
14746
 
14747
+ #: wppa-settings-autosave.php:4712
14748
  #, fuzzy
14749
  msgid "extremely slow (20 s.)"
14750
  msgstr "extrem langsam (20 s.)"
14751
 
14752
+ #: wppa-settings-autosave.php:4728
14753
  #, fuzzy
14754
  msgid "WPPA+ Lightbox global"
14755
  msgstr "WPPA Leuchtkasten global"
14756
 
14757
+ #: wppa-settings-autosave.php:4729
14758
  #, fuzzy
14759
  msgid "Use the wppa+ lightbox also for non-wppa images."
14760
  msgstr "Verwenden Sie die WPPA Leuchtkasten auch für Nicht-WPPA Bilder."
14761
 
14762
+ #: wppa-settings-autosave.php:4737
14763
  #, fuzzy
14764
  msgid "WPPA+ Lightbox global is a set"
14765
  msgstr "WPPA Leuchtkasten global ist ein Satz"
14766
 
14767
+ #: wppa-settings-autosave.php:4738
14768
  #, fuzzy
14769
  msgid "Treat the other images as a set."
14770
  msgstr "Behandeln Sie die anderen Bilder als Set."
14771
 
14772
+ #: wppa-settings-autosave.php:4739
14773
  #, fuzzy
14774
  msgid ""
14775
  "If checked, you can scroll through the images in the lightbox view. Requires "
14778
  "Wenn diese Option aktiviert, können Sie die Bilder in der Lightbox-Ansicht "
14779
  "blättern. Benötigt Punkt 5 zu prüfen."
14780
 
14781
+ #: wppa-settings-autosave.php:4746
14782
  #, fuzzy
14783
  msgid "Use hires files"
14784
  msgstr "Verwenden Sie heuert Dateien"
14785
 
14786
+ #: wppa-settings-autosave.php:4747
14787
  #, fuzzy
14788
  msgid "Use the highest resolution available for lightbox."
14789
  msgstr "Verwenden Sie die höchste Auflösung für Leuchtkasten verfügbar."
14790
 
14791
+ #: wppa-settings-autosave.php:4748
14792
  #, fuzzy
14793
  msgid "Ticking this box is recommended for lightbox fullscreen modes."
14794
  msgstr "Ticken Sie dieses Feld ist für Leuchtkasten Vollbildmodi empfohlen."
14795
 
14796
+ #: wppa-settings-autosave.php:4756
14797
  #, fuzzy
14798
  msgid "Videos on lightbox start automaticly."
14799
  msgstr "Videos auf Leuchtkasten automatisch starten."
14800
 
14801
+ #: wppa-settings-autosave.php:4765
14802
  #, fuzzy
14803
  msgid "Audio on lightbox start automaticly."
14804
  msgstr "Audio auf Leuchtkasten automatisch starten."
14805
 
14806
+ #: wppa-settings-autosave.php:4773
14807
  #, fuzzy
14808
  msgid "Lightbox start mode"
14809
  msgstr "Lightbox Startmodus"
14810
 
14811
+ #: wppa-settings-autosave.php:4774
14812
  #, fuzzy
14813
  msgid "The mode lightbox starts in."
14814
  msgstr "Der Modus Leuchtkasten beginnt in."
14815
 
14816
+ #: wppa-settings-autosave.php:4777
14817
  #, fuzzy
14818
  msgid "Normal"
14819
+ msgstr "Normale"
14820
 
14821
+ #: wppa-settings-autosave.php:4778
14822
  #, fuzzy
14823
  msgid "Padded"
14824
  msgstr "Gepolstert"
14825
 
14826
+ #: wppa-settings-autosave.php:4779
14827
  #, fuzzy
14828
  msgid "Stretched"
14829
  msgstr "Gestreckt"
14830
 
14831
+ #: wppa-settings-autosave.php:4780
14832
  #, fuzzy
14833
  msgid "Clipped"
14834
  msgstr "abgehackt"
14835
 
14836
+ #: wppa-settings-autosave.php:4781
14837
  #, fuzzy
14838
  msgid "Real size"
14839
  msgstr "wirkliche Größe"
14840
 
14841
+ #: wppa-settings-autosave.php:4812
14842
  #, fuzzy
14843
  msgid "Table V:"
14844
+ msgstr "Tabelle V"
14845
 
14846
+ #: wppa-settings-autosave.php:4812
14847
  #, fuzzy
14848
  msgid "Fonts:"
14849
  msgstr "Schriftarten:"
14850
 
14851
+ #: wppa-settings-autosave.php:4813
14852
  #, fuzzy
14853
  msgid "This table describes the Fonts used for the wppa+ elements."
14854
  msgstr ""
14855
  "Diese Tabelle beschreibt die Schriftart für die WPPA Elemente verwendet."
14856
 
14857
+ #: wppa-settings-autosave.php:4823 wppa-settings-autosave.php:4999
14858
  #, fuzzy
14859
  msgid "Font family"
14860
+ msgstr "Schriftfamilie"
14861
 
14862
+ #: wppa-settings-autosave.php:4824 wppa-settings-autosave.php:5000
14863
  #, fuzzy
14864
  msgid "Font size"
14865
  msgstr "Schriftgröße"
14866
 
14867
+ #: wppa-settings-autosave.php:4825 wppa-settings-autosave.php:5001
14868
  #, fuzzy
14869
  msgid "Font color"
14870
  msgstr "Schriftfarbe"
14871
 
14872
+ #: wppa-settings-autosave.php:4826 wppa-settings-autosave.php:5002
14873
  #, fuzzy
14874
  msgid "Font weight"
14875
+ msgstr "Schriftgewicht"
14876
 
14877
+ #: wppa-settings-autosave.php:4836
14878
  #, fuzzy
14879
  msgid "normal"
14880
  msgstr "normal"
14881
 
14882
+ #: wppa-settings-autosave.php:4836
14883
  #, fuzzy
14884
  msgid "bold"
14885
  msgstr "fett"
14886
 
14887
+ #: wppa-settings-autosave.php:4836
14888
  #, fuzzy
14889
  msgid "bolder"
14890
  msgstr "Dicker"
14891
 
14892
+ #: wppa-settings-autosave.php:4836
14893
  #, fuzzy
14894
  msgid "lighter"
14895
  msgstr "Feuerzeug"
14896
 
14897
+ #: wppa-settings-autosave.php:4839
14898
  #, fuzzy
14899
  msgid "Album titles"
14900
  msgstr "Alben-Titel"
14901
 
14902
+ #: wppa-settings-autosave.php:4840
14903
  #, fuzzy
14904
  msgid "Font used for Album titles."
14905
  msgstr "Font verwendet für Album-Titel."
14906
 
14907
+ #: wppa-settings-autosave.php:4841
14908
  #, fuzzy
14909
  msgid "Enter font name, size, color and weight for album cover titles."
14910
  msgstr "Geben Sie Schriftart, Größe, Farbe und Gewicht für Album-Cover-Titel."
14911
 
14912
+ #: wppa-settings-autosave.php:4856
14913
  #, fuzzy
14914
  msgid "Slideshow desc"
14915
  msgstr "Diashow ab"
14916
 
14917
+ #: wppa-settings-autosave.php:4857
14918
  #, fuzzy
14919
  msgid "Font for slideshow photo descriptions."
14920
  msgstr "Font für Diashow Fotobeschreibungen."
14921
 
14922
+ #: wppa-settings-autosave.php:4858
14923
  #, fuzzy
14924
  msgid ""
14925
  "Enter font name, size, color and weight for slideshow photo descriptions."
14927
  "Geben Sie Schriftart, Größe, Farbe und Gewicht für Diashow "
14928
  "Fotobeschreibungen."
14929
 
14930
+ #: wppa-settings-autosave.php:4873
14931
  #, fuzzy
14932
  msgid "Slideshow name"
14933
+ msgstr "Name der Diaschau"
14934
 
14935
+ #: wppa-settings-autosave.php:4874
14936
  #, fuzzy
14937
  msgid "Font for slideshow photo names."
14938
  msgstr "Font für Diashow Foto-Namen."
14939
 
14940
+ #: wppa-settings-autosave.php:4875
14941
  #, fuzzy
14942
  msgid "Enter font name, size, color and weight for slideshow photo names."
14943
  msgstr "Geben Sie Schriftart, Größe, Farbe und Gewicht für Diashow Foto-Namen."
14944
 
14945
+ #: wppa-settings-autosave.php:4890
14946
  #, fuzzy
14947
  msgid "Navigations"
14948
  msgstr "Navigationen"
14949
 
14950
+ #: wppa-settings-autosave.php:4891
14951
  #, fuzzy
14952
  msgid "Font for navigations."
14953
  msgstr "Schriftart für Navigations."
14954
 
14955
+ #: wppa-settings-autosave.php:4892
14956
  #, fuzzy
14957
  msgid "Enter font name, size, color and weight for navigation items."
14958
  msgstr ""
14959
  "Geben Sie Schriftart, Größe, Farbe und Gewicht für Navigationselemente."
14960
 
14961
+ #: wppa-settings-autosave.php:4908
14962
  #, fuzzy
14963
  msgid "Font for text under thumbnails."
14964
  msgstr "Schriftart für Text unter Thumbnails."
14965
 
14966
+ #: wppa-settings-autosave.php:4909
14967
  #, fuzzy
14968
  msgid ""
14969
  "Enter font name, size, color and weight for text under thumbnail images."
14971
  "Geben Sie Schriftart, Größe, Farbe und Gewicht für Text unter "
14972
  "Miniaturbildern."
14973
 
14974
+ #: wppa-settings-autosave.php:4925
14975
  #, fuzzy
14976
  msgid "General font in wppa boxes."
14977
  msgstr "Allgemeine Schrift in WPPA Boxen."
14978
 
14979
+ #: wppa-settings-autosave.php:4926
14980
  #, fuzzy
14981
  msgid "Enter font name, size, color and weight for all other items."
14982
  msgstr ""
14983
  "Geben Sie Schriftart, Größe, Farbe und Gewicht für alle anderen Elemente."
14984
 
14985
+ #: wppa-settings-autosave.php:4942
14986
  #, fuzzy
14987
  msgid "Font in wppa number bars."
14988
  msgstr "Font in WPPA Anzahl Bars."
14989
 
14990
+ #: wppa-settings-autosave.php:4943 wppa-settings-autosave.php:4960
14991
  #, fuzzy
14992
  msgid "Enter font name, size, color and weight for numberbar navigation."
14993
  msgstr ""
14994
  "Geben Sie Schriftart, Größe, Farbe und Gewicht für numberbar Navigation."
14995
 
14996
+ #: wppa-settings-autosave.php:4958
14997
  #, fuzzy
14998
  msgid "Numbar Active"
14999
  msgstr "Numbar Aktiv"
15000
 
15001
+ #: wppa-settings-autosave.php:4959
15002
  #, fuzzy
15003
  msgid "Font in wppa number bars, active item."
15004
  msgstr "Font in WPPA Anzahl Bars, aktive Element."
15005
 
15006
+ #: wppa-settings-autosave.php:4976
15007
  #, fuzzy
15008
  msgid "Font in wppa lightbox overlays."
15009
  msgstr "Schriftart in WPPA Leuchtkasten Overlays."
15010
 
15011
+ #: wppa-settings-autosave.php:4977
15012
  #, fuzzy
15013
  msgid "Enter font name, size, color and weight for wppa lightbox overlays."
15014
  msgstr ""
15015
  "Geben Sie Schriftart, Größe, Farbe und Gewicht für WPPA Leuchtkasten "
15016
  "Overlays."
15017
 
15018
+ #: wppa-settings-autosave.php:5012
15019
  #, fuzzy
15020
  msgid "Table VI:"
15021
+ msgstr "Tabelle VI"
15022
 
15023
+ #: wppa-settings-autosave.php:5012
15024
  #, fuzzy
15025
  msgid "Links:"
15026
+ msgstr "Links:"
15027
 
15028
+ #: wppa-settings-autosave.php:5013
15029
  #, fuzzy
15030
  msgid "This table defines the link types and pages."
15031
  msgstr "Diese Tabelle definiert die Verbindungstypen und Seiten."
15032
 
15033
+ #: wppa-settings-autosave.php:5024 wppa-settings-autosave.php:6030
15034
  #, fuzzy
15035
  msgid "Link page"
15036
  msgstr "Link-Seite"
15037
 
15038
+ #: wppa-settings-autosave.php:5026 wppa-settings-autosave.php:6032
15039
  #, fuzzy
15040
  msgid "Photo specific link overrules"
15041
  msgstr "Foto spezifischen Link überstimmt"
15042
 
15043
+ #: wppa-settings-autosave.php:5026 wppa-settings-autosave.php:6032
15044
  #, fuzzy
15045
  msgid "PSO"
15046
  msgstr "PSO"
15047
 
15048
+ #: wppa-settings-autosave.php:5071
15049
  #, fuzzy
15050
  msgid "Links from images in WPPA+ Widgets"
15051
  msgstr "Links von Bildern in WPPA Widgets"
15052
 
15053
+ #: wppa-settings-autosave.php:5073
15054
  #, fuzzy
15055
  msgid "PotdWidget"
15056
  msgstr "PotdWidget"
15057
 
15058
+ #: wppa-settings-autosave.php:5074
15059
  #, fuzzy
15060
  msgid "Photo Of The Day widget link."
15061
  msgstr "Foto des Tages Widget-Link."
15062
 
15063
+ #: wppa-settings-autosave.php:5075
15064
  #, fuzzy
15065
  msgid "Select the type of link the photo of the day points to."
15066
  msgstr "Wählen Sie die Art der Verknüpfung das Foto des Tages zeigt."
15067
 
15068
+ #: wppa-settings-autosave.php:5076
15069
  #, fuzzy
15070
  msgid ""
15071
  "If you select 'defined on widget admin page' you can manually enter a link "
15074
  "Wenn Sie 'definiert auf Widget Admin-Seite \"Sie manuell einen Link und "
15075
  "Titel auf dem Foto des Tages Widget Admin-Seite eingeben."
15076
 
15077
+ #: wppa-settings-autosave.php:5091 wppa-settings-autosave.php:5134
15078
+ #: wppa-settings-autosave.php:5173 wppa-settings-autosave.php:5212
15079
+ #: wppa-settings-autosave.php:5257 wppa-settings-autosave.php:5305
15080
+ #: wppa-settings-autosave.php:5352 wppa-settings-autosave.php:5399
15081
+ #: wppa-settings-autosave.php:5487
15082
  #, fuzzy
15083
  msgid "a plain page without a querystring."
15084
  msgstr "eine einfache Seite ohne Abfragezeichenfolgeflag."
15085
 
15086
+ #: wppa-settings-autosave.php:5092 wppa-settings-autosave.php:5135
15087
+ #: wppa-settings-autosave.php:5174 wppa-settings-autosave.php:5213
15088
+ #: wppa-settings-autosave.php:5258 wppa-settings-autosave.php:5306
15089
+ #: wppa-settings-autosave.php:5353 wppa-settings-autosave.php:5400
15090
+ #: wppa-settings-autosave.php:5446 wppa-settings-autosave.php:5488
15091
+ #: wppa-settings-autosave.php:5536 wppa-settings-autosave.php:5578
15092
+ #: wppa-settings-autosave.php:5617
15093
  #, fuzzy
15094
  msgid "lightbox."
15095
  msgstr "Lightbox"
15096
 
15097
+ #: wppa-settings-autosave.php:5117
15098
  #, fuzzy
15099
  msgid "SlideWidget"
15100
  msgstr "SlideWidget"
15101
 
15102
+ #: wppa-settings-autosave.php:5118
15103
  #, fuzzy
15104
  msgid "Slideshow widget photo link."
15105
  msgstr "Diashow-Widget Foto-Link."
15106
 
15107
+ #: wppa-settings-autosave.php:5119
15108
  #, fuzzy
15109
  msgid "Select the type of link the slideshow photos point to."
15110
  msgstr "Wählen Sie die Art der Verknüpfung der Diashow Fotos zu zeigen."
15111
 
15112
+ #: wppa-settings-autosave.php:5160
15113
  #, fuzzy
15114
  msgid "Album widget"
15115
  msgstr "Album-Widget"
15116
 
15117
+ #: wppa-settings-autosave.php:5161
15118
  #, fuzzy
15119
  msgid "Album widget thumbnail link"
15120
  msgstr "Album-Widget Thumbnail-Link"
15121
 
15122
+ #: wppa-settings-autosave.php:5162
15123
  #, fuzzy
15124
  msgid "Select the type of link the album widget photos point to."
15125
  msgstr "Wählen Sie die Art der Verknüpfung der Album-Widget Fotos zu zeigen."
15126
 
15127
+ #: wppa-settings-autosave.php:5171
15128
  #, fuzzy
15129
  msgid "subalbums and thumbnails."
15130
  msgstr "Unteralben und Miniaturen."
15131
 
15132
+ #: wppa-settings-autosave.php:5172
15133
  #, fuzzy
15134
  msgid "slideshow."
15135
  msgstr "Diaschau"
15136
 
15137
+ #: wppa-settings-autosave.php:5195
15138
  #, fuzzy
15139
  msgid "ThumbnailWidget"
15140
  msgstr "ThumbnailWidget"
15141
 
15142
+ #: wppa-settings-autosave.php:5196
15143
  #, fuzzy
15144
  msgid "Thumbnail widget photo link."
15145
  msgstr "Thumbnail-Widget Foto-Link."
15146
 
15147
+ #: wppa-settings-autosave.php:5197
15148
  #, fuzzy
15149
  msgid "Select the type of link the thumbnail photos point to."
15150
  msgstr "Wählen Sie die Art der Verbindung die Miniaturfotos zu zeigen."
15151
 
15152
+ #: wppa-settings-autosave.php:5210 wppa-settings-autosave.php:5255
15153
+ #: wppa-settings-autosave.php:5303 wppa-settings-autosave.php:5350
15154
+ #: wppa-settings-autosave.php:5397 wppa-settings-autosave.php:5485
15155
  #, fuzzy
15156
  msgid "the single photo in the style of a slideshow."
15157
  msgstr "das einzige Foto im Stil einer Diashow."
15158
 
15159
+ #: wppa-settings-autosave.php:5211 wppa-settings-autosave.php:5256
15160
+ #: wppa-settings-autosave.php:5304 wppa-settings-autosave.php:5351
15161
+ #: wppa-settings-autosave.php:5398 wppa-settings-autosave.php:5486
15162
+ #: wppa-settings-autosave.php:5619
15163
  #, fuzzy
15164
  msgid "the fs photo with download and print buttons."
15165
  msgstr "die fs Foto mit Download und Drucktasten."
15166
 
15167
+ #: wppa-settings-autosave.php:5238
15168
  #, fuzzy
15169
  msgid "TopTenWidget"
15170
  msgstr "TopTenWidget"
15171
 
15172
+ #: wppa-settings-autosave.php:5239
15173
  #, fuzzy
15174
  msgid "TopTen widget photo link."
15175
  msgstr "TopTen-Widget Foto-Link."
15176
 
15177
+ #: wppa-settings-autosave.php:5240
15178
  #, fuzzy
15179
  msgid "Select the type of link the top ten photos point to."
15180
  msgstr "Wählen Sie die Art der Verknüpfung der Top-Ten-Fotos zu zeigen."
15181
 
15182
+ #: wppa-settings-autosave.php:5251
15183
  #, fuzzy
15184
  msgid "the content of the virtual topten album."
15185
  msgstr "der Inhalt des virtuellen topten album."
15186
 
15187
+ #: wppa-settings-autosave.php:5252 wppa-settings-autosave.php:5300
15188
+ #: wppa-settings-autosave.php:5347 wppa-settings-autosave.php:5394
15189
  #, fuzzy
15190
  msgid "the content of the thumbnails album."
15191
  msgstr "der Inhalt des Thumbnails album."
15192
 
15193
+ #: wppa-settings-autosave.php:5286
15194
  #, fuzzy
15195
  msgid "LasTenWidget"
15196
  msgstr "LasTenWidget"
15197
 
15198
+ #: wppa-settings-autosave.php:5287
15199
  #, fuzzy
15200
  msgid "Last Ten widget photo link."
15201
  msgstr "Last Ten-Widget Foto-Link."
15202
 
15203
+ #: wppa-settings-autosave.php:5288
15204
  #, fuzzy
15205
  msgid "Select the type of link the last ten photos point to."
15206
  msgstr "Wählen Sie die Art der Verbindung in den letzten zehn Fotos zu zeigen."
15207
 
15208
+ #: wppa-settings-autosave.php:5299
15209
  #, fuzzy
15210
  msgid "the content of the virtual lasten album."
15211
  msgstr "der Inhalt des virtuellen lasten album."
15212
 
15213
+ #: wppa-settings-autosave.php:5333
15214
  #, fuzzy
15215
  msgid "CommentWidget"
15216
  msgstr "CommentWidget"
15217
 
15218
+ #: wppa-settings-autosave.php:5334
15219
  #, fuzzy
15220
  msgid "Comment widget photo link."
15221
  msgstr "Kommentar-Widget Foto-Link."
15222
 
15223
+ #: wppa-settings-autosave.php:5335
15224
  #, fuzzy
15225
  msgid "Select the type of link the comment widget photos point to."
15226
  msgstr ""
15227
  "Wählen Sie die Art der Verknüpfung der Kommentar-Widget Fotos zu zeigen."
15228
 
15229
+ #: wppa-settings-autosave.php:5346
15230
  #, fuzzy
15231
  msgid "the content of the virtual comten album."
15232
  msgstr "der Inhalt des virtuellen comten album."
15233
 
15234
+ #: wppa-settings-autosave.php:5380
15235
  #, fuzzy
15236
  msgid "FeaTenWidget"
15237
  msgstr "FeaTenWidget"
15238
 
15239
+ #: wppa-settings-autosave.php:5381
15240
  #, fuzzy
15241
  msgid "FeaTen widget photo link."
15242
  msgstr "FeaTen Widget Foto-Link."
15243
 
15244
+ #: wppa-settings-autosave.php:5382
15245
  #, fuzzy
15246
  msgid "Select the type of link the featured ten photos point to."
15247
  msgstr ""
15248
  "Wählen Sie die Art der Verbindung die mit insgesamt zehn Fotos zu zeigen."
15249
 
15250
+ #: wppa-settings-autosave.php:5393
15251
  #, fuzzy
15252
  msgid "the content of the virtual featen album."
15253
  msgstr "der Inhalt des virtuellen featen album."
15254
 
15255
+ #: wppa-settings-autosave.php:5426
15256
  #, fuzzy
15257
  msgid "Links from other WPPA+ images"
15258
  msgstr "Links von anderen WPPA Bilder"
15259
 
15260
+ #: wppa-settings-autosave.php:5428
15261
  #, fuzzy
15262
  msgid "Cover Image"
15263
+ msgstr "Bild für das Anschreiben"
15264
 
15265
+ #: wppa-settings-autosave.php:5429
15266
  #, fuzzy
15267
  msgid "The link from the cover image of an album."
15268
  msgstr "Die Verbindung aus dem Titelbild eines Albums."
15269
 
15270
+ #: wppa-settings-autosave.php:5430
15271
  #, fuzzy
15272
  msgid "Select the type of link the coverphoto points to."
15273
  msgstr "Wählen Sie die Art der Verknüpfung der Coverfoto zeigt."
15274
 
15275
+ #: wppa-settings-autosave.php:5431
15276
  #, fuzzy
15277
  msgid "The link from the album title can be configured on the Edit Album page."
15278
  msgstr ""
15279
  "Der Link aus dem Albumtitel auf dem Album bearbeiten Seite konfiguriert "
15280
  "werden."
15281
 
15282
+ #: wppa-settings-autosave.php:5432
15283
  #, fuzzy
15284
  msgid "This link will be used for the photo also if you select: same as title."
15285
  msgstr ""
15286
  "Dieser Link wird für das Foto verwendet werden, auch wenn Sie wählen: wie "
15287
  "Titel."
15288
 
15289
+ #: wppa-settings-autosave.php:5433
15290
  #, fuzzy
15291
  msgid ""
15292
  "If you specify New Tab on this line, all links from the cover will open a "
15295
  "Wenn Sie New Tab auf dieser Linie angeben, werden alle Links von der "
15296
  "Abdeckung wird eine neue Registerkarte öffnen,"
15297
 
15298
+ #: wppa-settings-autosave.php:5434
15299
  #, fuzzy
15300
  msgid "except when Ajax is activated on Table IV-A1."
15301
  msgstr "es sei denn, Ajax auf Tabelle IV-A1 aktiviert ist."
15302
 
15303
+ #: wppa-settings-autosave.php:5447
15304
  #, fuzzy
15305
  msgid "a slideshow starting at the photo"
15306
  msgstr "eine Diashow auf dem Foto beginnt"
15307
 
15308
+ #: wppa-settings-autosave.php:5468
15309
  #, fuzzy
15310
  msgid "Thumbnail"
15311
  msgstr "Fehlende Miniaturansicht #%s"
15312
 
15313
+ #: wppa-settings-autosave.php:5469
15314
  #, fuzzy
15315
  msgid "Thumbnail link."
15316
  msgstr "Link Vorschaubild"
15317
 
15318
+ #: wppa-settings-autosave.php:5470 wppa-settings-autosave.php:5520
15319
+ #: wppa-settings-autosave.php:5562
15320
  #, fuzzy
15321
  msgid "Select the type of link you want, or no link at all."
15322
  msgstr ""
15323
  "Wählen Sie die Art der Verbindung Sie wünschen, oder keine Verbindung "
15324
  "überhaupt."
15325
 
15326
+ #: wppa-settings-autosave.php:5471 wppa-settings-autosave.php:5521
15327
+ #: wppa-settings-autosave.php:5563
15328
  #, fuzzy
15329
  msgid ""
15330
  "If you select the fullsize photo on its own, it will be stretched to fit, "
15333
  "Wenn Sie die Gross Foto auf seiner eigenen wählen, wird sie gedehnt werden, "
15334
  "passen, unabhängig von dieser Einstellung."
15335
 
15336
+ #: wppa-settings-autosave.php:5472 wppa-settings-autosave.php:5522
15337
+ #: wppa-settings-autosave.php:5564
15338
  #, fuzzy
15339
  msgid ""
15340
  "Note that a page must have at least [wppa][/wppa] in its content to show up "
15343
  "Beachten Sie, dass eine Seite muss mindestens [WPPA] [/ WPPA] in seinem "
15344
  "Inhalt das Foto (s) zu zeigen."
15345
 
15346
+ #: wppa-settings-autosave.php:5501
15347
  #, fuzzy
15348
  msgid "Auto Page"
15349
  msgstr "Auto Page"
15350
 
15351
+ #: wppa-settings-autosave.php:5518
15352
  #, fuzzy
15353
  msgid "Sphoto"
15354
  msgstr "Sphoto"
15355
 
15356
+ #: wppa-settings-autosave.php:5519
15357
  #, fuzzy
15358
  msgid "Single photo link."
15359
  msgstr "Einzel Foto"
15360
 
15361
+ #: wppa-settings-autosave.php:5560
15362
  #, fuzzy
15363
  msgid "Mphoto"
15364
  msgstr "mphoto"
15365
 
15366
+ #: wppa-settings-autosave.php:5561
15367
  #, fuzzy
15368
  msgid "Media-like photo link."
15369
  msgstr "Medien-wie Foto-Link."
15370
 
15371
+ #: wppa-settings-autosave.php:5603
15372
  #, fuzzy
15373
  msgid "Slideshow fullsize link"
15374
  msgstr "Diashow Gross Link"
15375
 
15376
+ #: wppa-settings-autosave.php:5604
15377
  #, fuzzy
15378
  msgid ""
15379
  "You can overrule lightbox but not big browse buttons with the photo specifc "
15382
  "Sie können Leuchtkasten aber nicht groß Browse-Buttons mit dem Foto specifc "
15383
  "Link außer Kraft setzen."
15384
 
15385
+ #: wppa-settings-autosave.php:5605
15386
  #, fuzzy
15387
  msgid "fullsize slideshow can only be set by the WPPA_SET shortcode."
15388
  msgstr ""
15389
  "Gross Diashow kann nur durch den WPPA_SET Shortcode eingestellt werden."
15390
 
15391
+ #: wppa-settings-autosave.php:5618
15392
  #, fuzzy
15393
  msgid "lightbox single photos."
15394
  msgstr "einzelne Fotos Leuchtkasten."
15395
 
15396
+ #: wppa-settings-autosave.php:5620
15397
  #, fuzzy
15398
  msgid "the thumbnails."
15399
  msgstr "Miniaturbilden"
15400
 
15401
+ #: wppa-settings-autosave.php:5621
15402
  #, fuzzy
15403
  msgid "fullsize slideshow"
15404
  msgstr "Gross Diashow"
15405
 
15406
+ #: wppa-settings-autosave.php:5646
15407
  #, fuzzy
15408
  msgid "Film linktype"
15409
  msgstr "Film Linktyp"
15410
 
15411
+ #: wppa-settings-autosave.php:5647
15412
  #, fuzzy
15413
  msgid "Direct access goto image in:"
15414
  msgstr "Direkter Zugang goto Bild:"
15415
 
15416
+ #: wppa-settings-autosave.php:5648
15417
  #, fuzzy
15418
  msgid ""
15419
  "Select the action to be taken when the user clicks on a filmstrip image."
15421
  "Wählen Sie die Aktion getroffen werden, wenn der Benutzer auf einem "
15422
  "Filmstreifen Bild klickt."
15423
 
15424
+ #: wppa-settings-autosave.php:5653
15425
  #, fuzzy
15426
  msgid "slideshow window"
15427
  msgstr "Diashow-Fenster"
15428
 
15429
+ #: wppa-settings-autosave.php:5654
15430
  #, fuzzy
15431
  msgid "lightbox overlay"
15432
  msgstr "Leuchtkasten Overlay"
15433
 
15434
+ #: wppa-settings-autosave.php:5669
15435
  #, fuzzy
15436
  msgid "Other links"
15437
  msgstr "Weitere Links"
15438
 
15439
+ #: wppa-settings-autosave.php:5671
15440
  #, fuzzy
15441
  msgid "Download Link (aka Art Monkey link)"
15442
  msgstr "Download Link (auch bekannt als Kunst Affe Link)"
15443
 
15444
+ #: wppa-settings-autosave.php:5672
15445
  #, fuzzy
15446
  msgid "Makes the photo name a download button."
15447
  msgstr "Macht das Foto einen Download-Button nennen."
15448
 
15449
+ #: wppa-settings-autosave.php:5673
15450
  #, fuzzy
15451
  msgid "Link Photo name in slideshow to file or zip with photoname as filename."
15452
  msgstr ""
15453
  "Link Foto Name in der Diashow-Datei oder Postleitzahl mit photoname als "
15454
  "Dateinamen."
15455
 
15456
+ #: wppa-settings-autosave.php:5677 wppa-settings-autosave.php:5724
15457
  #, fuzzy
15458
  msgid "image file"
15459
+ msgstr "Bild-Datei"
15460
 
15461
+ #: wppa-settings-autosave.php:5678 wppa-settings-autosave.php:5725
15462
  #, fuzzy
15463
  msgid "zipped image"
15464
  msgstr "Reißverschluss-Bild"
15465
 
15466
+ #: wppa-settings-autosave.php:5691
15467
  #, fuzzy
15468
  msgid "Art Monkey Source"
15469
  msgstr "Kunst Affe Quelle"
15470
 
15471
+ #: wppa-settings-autosave.php:5692
15472
  #, fuzzy
15473
  msgid "Use Source file for art monkey link if available."
15474
  msgstr "Verwenden Sie Quelldatei für die Kunst Affe Link, falls verfügbar."
15475
 
15476
+ #: wppa-settings-autosave.php:5701
15477
  #, fuzzy
15478
  msgid "Art Monkey Display"
15479
  msgstr "Kunst Affe Anzeige"
15480
 
15481
+ #: wppa-settings-autosave.php:5702
15482
  #, fuzzy
15483
  msgid "Select button or link ( text )."
15484
  msgstr "Wählen Sie Button oder Link (Text)."
15485
 
15486
+ #: wppa-settings-autosave.php:5707
15487
  #, fuzzy
15488
  msgid "Textlink"
15489
  msgstr "Textlink"
15490
 
15491
+ #: wppa-settings-autosave.php:5719
15492
  #, fuzzy
15493
  msgid "Popup Download Link"
15494
  msgstr "Popup Download Link"
15495
 
15496
+ #: wppa-settings-autosave.php:5720
15497
  #, fuzzy
15498
  msgid "Configure the download link on fullsize popups."
15499
  msgstr "Konfigurieren Sie den Download-Link auf Gross Popups."
15500
 
15501
+ #: wppa-settings-autosave.php:5721
15502
  #, fuzzy
15503
  msgid "Link fullsize popup download button to either image or zip file."
15504
  msgstr "Link LISTEN Popup Download-Button entweder Bild oder ZIP-Datei."
15505
 
15506
+ #: wppa-settings-autosave.php:5737
15507
  #, fuzzy
15508
  msgid "Download link on lightbox"
15509
  msgstr "Download-Link auf Leuchtkasten"
15510
 
15511
+ #: wppa-settings-autosave.php:5738
15512
  #, fuzzy
15513
  msgid "Art monkey link on lightbox photo names."
15514
  msgstr "Kunst Affe Link auf Leuchtkasten Foto-Namen."
15515
 
15516
+ #: wppa-settings-autosave.php:5747
15517
  #, fuzzy
15518
  msgid "Album download link"
15519
  msgstr "Album Download-Link"
15520
 
15521
+ #: wppa-settings-autosave.php:5748
15522
  #, fuzzy
15523
  msgid "Place an album download link on the album covers"
15524
  msgstr "Legen Sie ein Album Download-Link auf die Album-Cover"
15525
 
15526
+ #: wppa-settings-autosave.php:5749
15527
  #, fuzzy
15528
  msgid "Creates a download zipfile containing the photos of the album"
15529
  msgstr "Erstellt eine Download zipfile die Fotos des Albums enthält,"
15530
 
15531
+ #: wppa-settings-autosave.php:5757
15532
  #, fuzzy
15533
  msgid "Album download Source"
15534
  msgstr "Album herunterladen Quelle"
15535
 
15536
+ #: wppa-settings-autosave.php:5758
15537
  #, fuzzy
15538
  msgid "Use Source file for album download link if available."
15539
  msgstr "Verwenden Sie Quelldatei für das Album Download-Link, falls verfügbar."
15540
 
15541
+ #: wppa-settings-autosave.php:5767
15542
  #, fuzzy
15543
  msgid "Tagcloud Link"
15544
  msgstr "Tagcloud Verbindung"
15545
 
15546
+ #: wppa-settings-autosave.php:5768
15547
  #, fuzzy
15548
  msgid "Configure the link from the tags in the tag cloud."
15549
  msgstr "Konfigurieren Sie den Link aus den Tags in der Tag-Cloud."
15550
 
15551
+ #: wppa-settings-autosave.php:5769
15552
  #, fuzzy
15553
  msgid "Link the tag words to ether the thumbnails or the slideshow."
15554
  msgstr ""
15555
  "Verknüpfen Sie die Tag-Wörter, um die Übersicht oder die Diashow zu Ether."
15556
 
15557
+ #: wppa-settings-autosave.php:5793 wppa-settings-autosave.php:5826
15558
+ #: wppa-settings-autosave.php:5970
15559
  #, fuzzy
15560
  msgid "Occur"
15561
+ msgstr "kommen."
15562
 
15563
+ #: wppa-settings-autosave.php:5800
15564
  #, fuzzy
15565
  msgid "Multitag Link"
15566
  msgstr "Multitag- Verbindung"
15567
 
15568
+ #: wppa-settings-autosave.php:5801
15569
  #, fuzzy
15570
  msgid "Configure the link from the multitag selection."
15571
  msgstr "Konfigurieren Sie die Verbindung von der multitag Auswahl."
15572
 
15573
+ #: wppa-settings-autosave.php:5802
15574
  #, fuzzy
15575
  msgid "Link to ether the thumbnails or the slideshow."
15576
  msgstr "Link zu Äther die Thumbnails oder die Diashow."
15577
 
15578
+ #: wppa-settings-autosave.php:5833
15579
  #, fuzzy
15580
  msgid "Super View Landing"
15581
  msgstr "Super View Landing"
15582
 
15583
+ #: wppa-settings-autosave.php:5834
15584
  #, fuzzy
15585
  msgid "The landing page for the Super View widget."
15586
  msgstr "Die Zielseite für die Super View-Widget."
15587
 
15588
+ #: wppa-settings-autosave.php:5842
15589
  #, fuzzy
15590
  msgid "Defined by the visitor"
15591
  msgstr "Definiert durch den Besucher"
15592
 
15593
+ #: wppa-settings-autosave.php:5855
15594
  #, fuzzy
15595
  msgid "Uploader Landing"
15596
  msgstr "Uploader Landing"
15597
 
15598
+ #: wppa-settings-autosave.php:5856
15599
  #, fuzzy
15600
  msgid "Select the landing page for the Uploader Widget"
15601
  msgstr "Wählen Sie die Zielseite für die Uploader Widget"
15602
 
15603
+ #: wppa-settings-autosave.php:5876
15604
  #, fuzzy
15605
  msgid "Bestof Landing"
15606
  msgstr "Bestenliste Landing"
15607
 
15608
+ #: wppa-settings-autosave.php:5877
15609
  #, fuzzy
15610
  msgid "Select the landing page for the BestOf Widget / Box"
15611
  msgstr "Wählen Sie die Zielseite für die BestOf Widget / Box"
15612
 
15613
+ #: wppa-settings-autosave.php:5897
15614
  #, fuzzy
15615
  msgid "Album navigator Link"
15616
  msgstr "Album Navigator-Link"
15617
 
15618
+ #: wppa-settings-autosave.php:5898
15619
  #, fuzzy
15620
  msgid "Select link type and page for the Album navigator Widget"
15621
  msgstr "Wählen Sie Verbindungstyp und Seite für das Album Navigator Widget"
15622
 
15623
+ #: wppa-settings-autosave.php:5926
15624
  #, fuzzy
15625
  msgid "Supersearch Landing"
15626
  msgstr "Super Landing"
15627
 
15628
+ #: wppa-settings-autosave.php:5927
15629
  #, fuzzy
15630
  msgid "Select the landing page for the Supersearch Box"
15631
  msgstr "Wählen Sie die Zielseite für die Super Box"
15632
 
15633
+ #: wppa-settings-autosave.php:5947
15634
  #, fuzzy
15635
  msgid "SM widget return"
15636
  msgstr "SM-Widget Rückkehr"
15637
 
15638
+ #: wppa-settings-autosave.php:5948
15639
  #, fuzzy
15640
  msgid "Select the return link for social media from widgets"
15641
  msgstr "Wählen Sie die Rückverbindung für Social Media von Widgets"
15642
 
15643
+ #: wppa-settings-autosave.php:5949
15644
  #, fuzzy
15645
  msgid ""
15646
  "If you select Landing page, and it wont work, it may be required to set the "
15650
  "erforderlich sein, um die auf die laufende Nummer der Landung Shortcode auf "
15651
  "der Seite Occur gesetzt."
15652
 
15653
+ #: wppa-settings-autosave.php:5950
15654
  #, fuzzy
15655
  msgid ""
15656
  "Normally it is 1, but you can try 2 etc. Always create a new shared link to "
15659
  "Normalerweise ist es 1, aber man kann versuchen, 2 usw. immer eine neue "
15660
  "gemeinsame Verknüpfung erstellen eine Einstellung zu testen."
15661
 
15662
+ #: wppa-settings-autosave.php:5958
15663
  #, fuzzy
15664
  msgid "Home page"
15665
  msgstr "Startseite"
15666
 
15667
+ #: wppa-settings-autosave.php:5979
15668
  #, fuzzy
15669
  msgid "Album cover subalbums link"
15670
  msgstr "Album-Cover Unteralben Link"
15671
 
15672
+ #: wppa-settings-autosave.php:5980
15673
  #, fuzzy
15674
  msgid ""
15675
  "Select the linktype and display type for sub-albums on parent album covers."
15676
  msgstr ""
15677
  "Wählen Sie den Linktyp und Anzeigetyp für Unteralben auf Mutter Album-Cover."
15678
 
15679
+ #: wppa-settings-autosave.php:5988
15680
  #, fuzzy
15681
  msgid "No link at all"
15682
  msgstr "Keine Verbindung überhaupt"
15683
 
15684
+ #: wppa-settings-autosave.php:5989
15685
  #, fuzzy
15686
  msgid "Thumbnails and covers"
15687
  msgstr "Thumbnails und Abdeckungen"
15688
 
15689
+ #: wppa-settings-autosave.php:5990
15690
  #, fuzzy
15691
  msgid "Slideshow or covers"
15692
  msgstr "Diashow oder Abdeckungen"
15693
 
15694
+ #: wppa-settings-autosave.php:6000
15695
  #, fuzzy
15696
  msgid "No display at all"
15697
  msgstr "Keine Anzeige bei allen"
15698
 
15699
+ #: wppa-settings-autosave.php:6001
15700
  #, fuzzy
15701
  msgid "A list with sub(sub) albums"
15702
  msgstr "Eine Liste mit sub (sub) Alben"
15703
 
15704
+ #: wppa-settings-autosave.php:6002
15705
  #, fuzzy
15706
  msgid "A list of children only"
15707
  msgstr "nur eine Liste von Kindern"
15708
 
15709
+ #: wppa-settings-autosave.php:6003
15710
  #, fuzzy
15711
  msgid "An enumeration of names"
15712
  msgstr "Eine Aufzählung von Namen"
15713
 
15714
+ #: wppa-settings-autosave.php:6004
15715
  #, fuzzy
15716
  msgid "Micro thumbnails"
15717
  msgstr "Micro Thumbnails"
15718
 
15719
+ #: wppa-settings-autosave.php:6042
15720
  #, fuzzy
15721
  msgid "Table VII:"
15722
+ msgstr "Tabelle VII"
15723
 
15724
+ #: wppa-settings-autosave.php:6042
15725
  #, fuzzy
15726
  msgid "Permissions and Restrictions:"
15727
  msgstr "Berechtigungen und Einschränkungen:"
15728
 
15729
+ #: wppa-settings-autosave.php:6043
15730
  #, fuzzy
15731
  msgid ""
15732
  "This table describes the access settings for admin and front-end activities."
15734
  "Diese Tabelle beschreibt die Zugriffseinstellungen für Admin und Front-End-"
15735
  "Aktivitäten."
15736
 
15737
+ #: wppa-settings-autosave.php:6064
15738
  #, fuzzy
15739
  msgid "Moderate P+C"
15740
  msgstr "Moderate P C"
15741
 
15742
+ #: wppa-settings-autosave.php:6068
15743
  #, fuzzy
15744
  msgid "Comment&nbsp;Admin"
15745
  msgstr "Kommentar Admin"
15746
 
15747
+ #: wppa-settings-autosave.php:6069
15748
  #, fuzzy
15749
  msgid "Help & Info"
15750
+ msgstr "Hilfe Info"
15751
 
15752
+ #: wppa-settings-autosave.php:6071
15753
  #, fuzzy
15754
  msgid "Role"
15755
  msgstr "Rolle"
15756
 
15757
+ #: wppa-settings-autosave.php:6080
15758
  #, fuzzy
15759
  msgid ""
15760
  "Admin settings per user role. Enabling these settings will overrule the "
15764
  "die Front-End-Einstellungen für den jeweiligen Benutzerrolle außer Kraft "
15765
  "setzen"
15766
 
15767
+ #: wppa-settings-autosave.php:6104
15768
  #, fuzzy
15769
  msgid "Frontend create Albums and upload Photos enabling and limiting settings"
15770
  msgstr ""
15771
  "Frontend erstellen Alben und Hochladen von Fotos ermöglicht, und die "
15772
  "Begrenzung der Einstellungen"
15773
 
15774
+ #: wppa-settings-autosave.php:6106
15775
  #, fuzzy
15776
  msgid "User create Albums"
15777
  msgstr "Benutzer erstellen Alben"
15778
 
15779
+ #: wppa-settings-autosave.php:6107
15780
  #, fuzzy
15781
  msgid "Enable frontend album creation."
15782
  msgstr "Aktivieren Frontend Album Schöpfung."
15783
 
15784
+ #: wppa-settings-autosave.php:6108
15785
  #, fuzzy
15786
  msgid "If you check this item, frontend album creation will be enabled."
15787
  msgstr ""
15788
  "Wenn Sie diesen Artikel zu überprüfen, werden Frontend Album Erstellung "
15789
  "aktiviert werden."
15790
 
15791
+ #: wppa-settings-autosave.php:6118
15792
  #, fuzzy
15793
  msgid "User edit album"
15794
  msgstr "Fotoalbum bearbeiten"
15795
 
15796
+ #: wppa-settings-autosave.php:6119
15797
  msgid "Enable frontend edit album name and description."
15798
  msgstr "Aktivieren Frontend bearbeiten Albumname und Beschreibung."
15799
 
15800
+ #: wppa-settings-autosave.php:6129
15801
  #, fuzzy
15802
  msgid "User delete Albums"
15803
+ msgstr "Alben löschen"
15804
 
15805
+ #: wppa-settings-autosave.php:6130
15806
  #, fuzzy
15807
  msgid "Enable frontend album deletion"
15808
  msgstr "Aktivieren Frontend Album Löschen"
15809
 
15810
+ #: wppa-settings-autosave.php:6131
15811
  #, fuzzy
15812
  msgid "If you check this item, frontend album deletion will be enabled."
15813
  msgstr ""
15814
  "Wenn Sie diesen Artikel zu überprüfen, werden Frontend Album Löschen "
15815
  "freigegeben werden."
15816
 
15817
+ #: wppa-settings-autosave.php:6141
15818
  #, fuzzy
15819
  msgid "User create Albums login"
15820
  msgstr "Benutzer erstellen Alben Login"
15821
 
15822
+ #: wppa-settings-autosave.php:6142
15823
  #, fuzzy
15824
  msgid "Frontend album creation requires the user is logged in."
15825
  msgstr "Frontend Erstellen eines Albums muss der Benutzer angemeldet ist."
15826
 
15827
+ #: wppa-settings-autosave.php:6153
15828
  #, fuzzy
15829
  msgid "User create Albums Captcha"
15830
  msgstr "Benutzer erstellen Alben-Check Captcha"
15831
 
15832
+ #: wppa-settings-autosave.php:6154
15833
  #, fuzzy
15834
  msgid "Uer must answer security question."
15835
  msgstr "Uer müssen Sicherheitsfrage beantworten."
15836
 
15837
+ #: wppa-settings-autosave.php:6179
15838
  #, fuzzy, php-format
15839
  msgid "Upload limit %s"
15840
  msgstr "Hochladebegrenzung"
15841
 
15842
+ #: wppa-settings-autosave.php:6180
15843
  #, fuzzy
15844
  msgid "Limit upload capacity for logged out users."
15845
  msgstr "Begrenzen Sie Upload-Kapazität für abgemeldet Benutzer."
15846
 
15847
+ #: wppa-settings-autosave.php:6181
15848
  #, fuzzy, php-format
15849
  msgid "Limit upload capacity for the user role %s."
15850
  msgstr "Begrenzen Sie Upload-Kapazität für die Benutzerrolle%s."
15851
 
15852
+ #: wppa-settings-autosave.php:6182
15853
  #, fuzzy
15854
  msgid "This setting has only effect when Table VII-B2 is unchecked."
15855
  msgstr ""
15856
  "Diese Einstellung ist nur wirksam, wenn Tabelle VII-B2 nicht aktiviert ist."
15857
 
15858
+ #: wppa-settings-autosave.php:6183
15859
  #, fuzzy
15860
  msgid ""
15861
  "This limitation only applies to frontend uploads when the same userrole does "
15864
  "Diese Einschränkung gilt nur Uploads auf das Frontend, wenn die gleichen "
15865
  "Userrole das Hochladen Checkbox muss nicht geprüft in Tabelle VII-A."
15866
 
15867
+ #: wppa-settings-autosave.php:6184 wppa-settings-autosave.php:6200
15868
+ #: wppa-settings-autosave.php:8017
15869
  #, fuzzy
15870
  msgid "A value of 0 means: no limit."
15871
  msgstr "Ein Wert von 0 bedeutet: keine Begrenzung."
15872
 
15873
+ #: wppa-settings-autosave.php:6197
15874
  #, fuzzy, php-format
15875
  msgid "Album limit %s"
15876
  msgstr "Album Limit%s"
15877
 
15878
+ #: wppa-settings-autosave.php:6198
15879
  #, fuzzy, php-format
15880
  msgid "Limit number of albums for the user role %s."
15881
  msgstr "Begrenzen Sie Anzahl der Alben für die Benutzerrolle%s."
15882
 
15883
+ #: wppa-settings-autosave.php:6199
15884
  #, fuzzy
15885
  msgid ""
15886
  "This limitation only applies to frontend create albums when the same "
15889
  "Diese Einschränkung gilt nur Alben Frontend erstellen, wenn die gleichen "
15890
  "Userrole nicht das Admin-Album Checkbox in der Tabelle VII-A geprüft hat."
15891
 
15892
+ #: wppa-settings-autosave.php:6211
15893
  #, fuzzy
15894
  msgid "Upload one only"
15895
  msgstr "Nur hochladen"
15896
 
15897
+ #: wppa-settings-autosave.php:6212
15898
  #, fuzzy
15899
  msgid "Non admin users can upload only one photo at a time."
15900
  msgstr "Non Admin-Benutzer kann nur ein Foto auf einmal hochladen."
15901
 
15902
+ #: wppa-settings-autosave.php:6222
15903
  #, fuzzy
15904
  msgid "Upload moderation"
15905
  msgstr "laden Sie Mäßigung"
15906
 
15907
+ #: wppa-settings-autosave.php:6223
15908
  #, fuzzy
15909
  msgid "Uploaded photos need moderation."
15910
  msgstr "Hochgeladene Fotos benötigen Mäßigung."
15911
 
15912
+ #: wppa-settings-autosave.php:6224
15913
  #, fuzzy
15914
  msgid ""
15915
  "If checked, photos uploaded by users who do not have photo album admin "
15918
  "Wenn diese Option aktiviert, hochgeladene Fotos werden von den Benutzern, "
15919
  "die Fotoalbum Admin-Zugriffsrechte nicht brauchen Mäßigung haben."
15920
 
15921
+ #: wppa-settings-autosave.php:6225
15922
  #, fuzzy
15923
  msgid ""
15924
  "Users who have photo album admin access rights can change the photo status "
15927
  "Benutzer, die Fotoalbum Admin-Zugriffsrechte können das Foto Status ändern "
15928
  "zu veröffentlichen oder gekennzeichnet."
15929
 
15930
+ #: wppa-settings-autosave.php:6226
15931
  #, fuzzy
15932
  msgid "You can set the album admin access rights in Table VII-A."
15933
  msgstr ""
15934
  "Sie können das Album Admin-Zugriffsrechte in der Tabelle VII-A gesetzt."
15935
 
15936
+ #: wppa-settings-autosave.php:6235
15937
  #, fuzzy
15938
  msgid "Upload notify"
15939
  msgstr "hochladen benachrichtigen"
15940
 
15941
+ #: wppa-settings-autosave.php:6236
15942
  #, fuzzy
15943
  msgid "Notify admin at frontend upload."
15944
  msgstr "Benachrichtigen Sie Admin im Frontend-Upload."
15945
 
15946
+ #: wppa-settings-autosave.php:6237 wppa-settings-autosave.php:6248
15947
  #, fuzzy
15948
  msgid "If checked, admin will receive a notification by email."
15949
  msgstr ""
15950
  "Wenn diese Option aktiviert, kann der Admin eine Benachrichtigung per E-Mail "
15951
  "erhalten."
15952
 
15953
+ #: wppa-settings-autosave.php:6246
15954
  #, fuzzy
15955
  msgid "Upload backend notify"
15956
  msgstr "Hochladen Backend benachrichtigen"
15957
 
15958
+ #: wppa-settings-autosave.php:6247
15959
  #, fuzzy
15960
  msgid "Notify admin at backend upload."
15961
  msgstr "Benachrichtigen Sie Admin im Backend-Upload."
15962
 
15963
+ #: wppa-settings-autosave.php:6257
15964
  #, fuzzy
15965
  msgid "Max size in pixels"
15966
  msgstr "Größe in Pixel"
15967
 
15968
+ #: wppa-settings-autosave.php:6258
15969
  #, fuzzy
15970
  msgid "Max size for height and width for front-end uploads."
15971
  msgstr "Max Größe für Höhe und Breite für Front-End-Uploads."
15972
 
15973
+ #: wppa-settings-autosave.php:6259
15974
  #, fuzzy
15975
  msgid "Enter the maximum size. 0 is unlimited"
15976
  msgstr "Geben Sie die maximale Größe. 0 ist unbegrenzt"
15977
 
15978
+ #: wppa-settings-autosave.php:6268
15979
  #, fuzzy
15980
  msgid "Home after Upload"
15981
  msgstr "Startseite nach dem Hochladen"
15982
 
15983
+ #: wppa-settings-autosave.php:6269
15984
  #, fuzzy
15985
  msgid "After successfull front-end upload, go to the home page."
15986
  msgstr "Nach erfolgreicher Front-End-Upload finden Sie auf der Homepage."
15987
 
15988
+ #: wppa-settings-autosave.php:6279
15989
  #, fuzzy
15990
  msgid "Fe alert"
15991
  msgstr "Fe Alarm"
15992
 
15993
+ #: wppa-settings-autosave.php:6280
15994
  #, fuzzy
15995
  msgid "Show alertbox on successful front-end upload/create."
15996
  msgstr "Zeigen Alertbox auf erfolgreiche Front-End-Upload / erstellen."
15997
 
15998
+ #: wppa-settings-autosave.php:6290
15999
  #, fuzzy
16000
  msgid "Admin Functionality restrictions for non administrators"
16001
  msgstr "Admin-Funktionalität Einschränkungen für Nicht-Administratoren"
16002
 
16003
+ #: wppa-settings-autosave.php:6292
16004
  #, fuzzy
16005
  msgid "Alt thumb is restricted"
16006
  msgstr "Alt Daumen eingeschränkt"
16007
 
16008
+ #: wppa-settings-autosave.php:6293
16009
  #, fuzzy
16010
  msgid "Using <b>alt thumbsize</b> is a restricted action."
16011
  msgstr "<b>Alt thumbsize</b> Verwendung ist eine eingeschränkte Wirkung."
16012
 
16013
+ #: wppa-settings-autosave.php:6294
16014
  #, fuzzy
16015
  msgid ""
16016
  "If checked: alt thumbsize can not be set in album admin by users not having "
16019
  "Wenn diese Option aktiviert: Alt thumbsize können von den Benutzern nicht in "
16020
  "Album Admin gesetzt werden keine Administratorrechte haben."
16021
 
16022
+ #: wppa-settings-autosave.php:6303
16023
  #, fuzzy
16024
  msgid "Link is restricted"
16025
  msgstr "Link ist eingeschränkt"
16026
 
16027
+ #: wppa-settings-autosave.php:6304
16028
  #, fuzzy
16029
  msgid "Using <b>Link to</b> is a restricted action."
16030
  msgstr "Mit <b>Link zu</b> ist eine eingeschränkte Wirkung."
16031
 
16032
+ #: wppa-settings-autosave.php:6305
16033
  #, fuzzy
16034
  msgid ""
16035
  "If checked: Link to: can not be set in album admin by users not having admin "
16038
  "Wenn diese Option aktiviert: Link zu: kann nicht in Album Admin von Nutzern "
16039
  "eingestellt werden keine Administratorrechte haben."
16040
 
16041
+ #: wppa-settings-autosave.php:6314
16042
  #, fuzzy
16043
  msgid "CoverType is restricted"
16044
  msgstr "CoverType eingeschränkt"
16045
 
16046
+ #: wppa-settings-autosave.php:6315
16047
  #, fuzzy
16048
  msgid "Changing <b>Cover Type</b> is a restricted action."
16049
  msgstr "<b>Cover</b> - <b>Typ</b> zu ändern , ist eine eingeschränkte Wirkung."
16050
 
16051
+ #: wppa-settings-autosave.php:6316
16052
  #, fuzzy
16053
  msgid ""
16054
  "If checked: Cover Type: can not be set in album admin by users not having "
16057
  "Wenn diese Option aktiviert: Deckel Typ: kann nicht in Album Admin von "
16058
  "Nutzern eingestellt werden keine Administratorrechte haben."
16059
 
16060
+ #: wppa-settings-autosave.php:6325
16061
  #, fuzzy
16062
  msgid "Photo order# is restricted"
16063
  msgstr "Foto order # eingeschränkt"
16064
 
16065
+ #: wppa-settings-autosave.php:6326
16066
  #, fuzzy
16067
  msgid "Changing <b>Photo sort order #</b> is a restricted action."
16068
  msgstr "<b>Foto Sortierung #</b> ändern ist eine eingeschränkte Wirkung."
16069
 
16070
+ #: wppa-settings-autosave.php:6327
16071
  #, fuzzy
16072
  msgid ""
16073
  "If checked: Photo sort order #: can not be set in photo admin by users not "
16076
  "Wenn diese Option aktiviert: Photo Sortierung #: kann nicht in Foto Admin "
16077
  "von Nutzern eingestellt werden, die keine Administratorrechte."
16078
 
16079
+ #: wppa-settings-autosave.php:6336
16080
  #, fuzzy
16081
  msgid "Change source restricted"
16082
  msgstr "Quelle ändern eingeschränkt"
16083
 
16084
+ #: wppa-settings-autosave.php:6337
16085
  #, fuzzy
16086
  msgid "Changing the import source dir requires admin rights."
16087
  msgstr "die Importquelle dir ändern, muss Administratorrechte."
16088
 
16089
+ #: wppa-settings-autosave.php:6338
16090
  #, fuzzy
16091
  msgid ""
16092
  "If checked, the imput source for importing photos and albums is restricted "
16095
  "Wenn diese Option aktiviert, wird die imput Quelle für Fotos und Alben zu "
16096
  "importieren, um Benutzerrolle Administrator eingeschränkt."
16097
 
16098
+ #: wppa-settings-autosave.php:6347
16099
  #, fuzzy
16100
  msgid "Extended status restricted"
16101
  msgstr "Erweiterter Status eingeschränkt"
16102
 
16103
+ #: wppa-settings-autosave.php:6348
16104
  #, fuzzy
16105
  msgid "Setting status other than pending or publish requires admin rights."
16106
  msgstr ""
16107
  "Einstellen anderen Status als anhängig oder veröffentlichen erfordert Admin-"
16108
  "Rechte."
16109
 
16110
+ #: wppa-settings-autosave.php:6358
16111
  #, fuzzy
16112
  msgid "Photo description restricted"
16113
  msgstr "Bildbeschreibung eingeschränkt"
16114
 
16115
+ #: wppa-settings-autosave.php:6359
16116
  #, fuzzy
16117
  msgid "Edit photo description requires admin rights."
16118
  msgstr "Foto bearbeiten Beschreibung erfordert Admin-Rechte."
16119
 
16120
+ #: wppa-settings-autosave.php:6369
16121
  #, fuzzy
16122
  msgid "Update photofiles restricted"
16123
  msgstr "Update-Photofiles beschränkt"
16124
 
16125
+ #: wppa-settings-autosave.php:6370
16126
  #, fuzzy
16127
  msgid "Re-upload files requires admin rights"
16128
  msgstr "Re-Upload-Dateien erfordert Admin-Rechte"
16129
 
16130
+ #: wppa-settings-autosave.php:6380
16131
  #, fuzzy
16132
  msgid "Miscellaneous limiting settings"
16133
  msgstr "Verschiedene Begrenzung Einstellungen"
16134
 
16135
+ #: wppa-settings-autosave.php:6382
16136
  #, fuzzy
16137
  msgid "Owners only"
16138
  msgstr "nur Besitzer"
16139
 
16140
+ #: wppa-settings-autosave.php:6383
16141
  #, fuzzy
16142
  msgid "Limit edit album access to the album owners only."
16143
  msgstr "Begrenzen Sie bearbeiten Album Zugriff auf die Album-Inhaber nur."
16144
 
16145
+ #: wppa-settings-autosave.php:6384
16146
  #, fuzzy
16147
  msgid "If checked, non-admin users can edit their own albums only."
16148
  msgstr ""
16149
  "Wenn diese Option aktiviert, Nicht-Admin-Benutzer können ihre eigenen Alben "
16150
  "nur bearbeiten."
16151
 
16152
+ #: wppa-settings-autosave.php:6393
16153
  #, fuzzy
16154
  msgid "Upload Owners only"
16155
  msgstr "Hochladen nur Besitzer"
16156
 
16157
+ #: wppa-settings-autosave.php:6394
16158
  #, fuzzy
16159
  msgid "Limit uploads to the album owners only."
16160
  msgstr "Begrenzen Sie Uploads auf den Album-Besitzer nur."
16161
 
16162
+ #: wppa-settings-autosave.php:6395
16163
  #, fuzzy
16164
  msgid ""
16165
  "If checked, users can upload to their own own albums and --- public --- only."
16167
  "Wenn diese Option aktiviert, können Benutzer ihre eigenen eigenen Alben "
16168
  "hochladen und --- --- öffentlich nur."
16169
 
16170
+ #: wppa-settings-autosave.php:6404
16171
  #, fuzzy
16172
  msgid "Frontend Edit"
16173
  msgstr "Frontendbearbeitung"
16174
 
16175
+ #: wppa-settings-autosave.php:6405
16176
  #, fuzzy
16177
  msgid "Allow the uploader to edit the photo info"
16178
  msgstr "Lassen Sie den Uploader die Foto-Info bearbeiten"
16179
 
16180
+ #: wppa-settings-autosave.php:6406
16181
  #, fuzzy
16182
  msgid ""
16183
  "If selected, any logged in user who meets the criteria has the capability to "
16186
  "Wenn ausgewählt, protokollierte in Benutzer, der die Kriterien erfüllt, die "
16187
  "Möglichkeit, die Bildinformationen zu bearbeiten hat."
16188
 
16189
+ #: wppa-settings-autosave.php:6407
16190
  #, fuzzy
16191
  msgid "Note: This may be AFTER moderation!!"
16192
  msgstr "Hinweis: Diese NACH Mäßigung sein kann !!"
16193
 
16194
+ #: wppa-settings-autosave.php:6409
16195
  #, fuzzy
16196
  msgid "Classic"
16197
  msgstr "Classic"
16198
 
16199
+ #: wppa-settings-autosave.php:6409
16200
  #, fuzzy
16201
  msgid "New style"
16202
+ msgstr "Neuer Stil"
16203
 
16204
+ #: wppa-settings-autosave.php:6418
16205
  #, fuzzy
16206
  msgid "Fe Edit users"
16207
  msgstr "Nutzer bearbeiten"
16208
 
16209
+ #: wppa-settings-autosave.php:6419
16210
  #, fuzzy
16211
  msgid "The criteria the user must meet to edit photo info"
16212
  msgstr "Die Kriterien muss der Benutzer erfüllen Foto-Info bearbeiten"
16213
 
16214
+ #: wppa-settings-autosave.php:6422
16215
  #, fuzzy
16216
  msgid "Admin and superuser"
16217
  msgstr "Admin und Super-User"
16218
 
16219
+ #: wppa-settings-autosave.php:6422
16220
  #, fuzzy
16221
  msgid "Owner, admin and superuser"
16222
  msgstr "Besitzer, admin und Super-User"
16223
 
16224
+ #: wppa-settings-autosave.php:6431
16225
  #, fuzzy
16226
  msgid "Fe Edit Theme CSS"
16227
  msgstr "Fe bearbeiten Theme CSS"
16228
 
16229
+ #: wppa-settings-autosave.php:6432
16230
  #, fuzzy
16231
  msgid "The front-end edit photo dialog uses the theme CSS."
16232
  msgstr "Die Front-End-Foto bearbeiten Dialog verwendet das Thema CSS."
16233
 
16234
+ #: wppa-settings-autosave.php:6442
16235
  #, fuzzy
16236
  msgid "Fe Edit New Items"
16237
  msgstr "Fe Bearbeiten Neuzugänge"
16238
 
16239
+ #: wppa-settings-autosave.php:6443
16240
  #, fuzzy
16241
  msgid "The items that are fe editable"
16242
  msgstr "Die Elemente, die fe sind editierbar"
16243
 
16244
+ #: wppa-settings-autosave.php:6444
16245
  #, fuzzy
16246
  msgid "See also Table II-J10!"
16247
  msgstr "Siehe auch Tabelle II-J10!"
16248
 
16249
+ #: wppa-settings-autosave.php:6457
16250
  #, fuzzy
16251
  msgid "Fe Edit Button text"
16252
  msgstr "Fe Schaltfläche bearbeiten Text"
16253
 
16254
+ #: wppa-settings-autosave.php:6458
16255
  #, fuzzy
16256
  msgid "The text on the Edit button."
16257
  msgstr "Der Text auf der Schaltfläche Bearbeiten."
16258
 
16259
+ #: wppa-settings-autosave.php:6468
16260
  #, fuzzy
16261
  msgid "Fe Edit Dialog caption"
16262
  msgstr "Fe Bearbeiten Dialog Beschriftung"
16263
 
16264
+ #: wppa-settings-autosave.php:6469
16265
  #, fuzzy
16266
  msgid "The text on the header of the popup."
16267
  msgstr "Der Text auf der Kopfzeile des Popup."
16268
 
16269
+ #: wppa-settings-autosave.php:6479
16270
  #, fuzzy
16271
  msgid "Frontend Delete"
16272
  msgstr "Frontend löschen"
16273
 
16274
+ #: wppa-settings-autosave.php:6480
16275
  #, fuzzy
16276
  msgid "Allow the uploader to delete the photo"
16277
  msgstr "Lassen Sie den Uploader das Foto zu löschen"
16278
 
16279
+ #: wppa-settings-autosave.php:6490
16280
  #, fuzzy
16281
  msgid "Uploader Moderate Comment"
16282
  msgstr "Uploader Moderate Kommentar"
16283
 
16284
+ #: wppa-settings-autosave.php:6491
16285
  #, fuzzy
16286
  msgid "The owner of the photo can moderate the photos comments."
16287
  msgstr "Der Besitzer des Fotos können die Fotos Kommentare moderieren."
16288
 
16289
+ #: wppa-settings-autosave.php:6492
16290
  #, fuzzy
16291
  msgid "This setting requires \"Uploader edit\" to be enabled also."
16292
  msgstr ""
16293
  "Diese Einstellung erfordert \"Uploader bearbeiten\" auch aktiviert werden."
16294
 
16295
+ #: wppa-settings-autosave.php:6501
16296
  #, fuzzy
16297
  msgid "Upload memory check frontend"
16298
  msgstr "Laden Sie Speicherprüfung Frontend"
16299
 
16300
+ #: wppa-settings-autosave.php:6502 wppa-settings-autosave.php:6513
16301
  #, fuzzy
16302
  msgid "Disable uploading photos that are too large."
16303
  msgstr "Deaktivieren Sie das Hochladen von Fotos, die zu groß sind."
16304
 
16305
+ #: wppa-settings-autosave.php:6503 wppa-settings-autosave.php:6514
16306
  #, fuzzy
16307
  msgid ""
16308
  "To prevent out of memory crashes during upload and possible database "
16311
  "out of memory Abstürze beim Upload und mögliche Datenbank-Inkonsistenzen zu "
16312
  "verhindern, können Uploads verhindert werden, wenn die Fotos zu groß sind."
16313
 
16314
+ #: wppa-settings-autosave.php:6512
16315
  #, fuzzy
16316
  msgid "Upload memory check admin"
16317
  msgstr "Laden Sie Speicherprüfung Admin"
16318
 
16319
+ #: wppa-settings-autosave.php:6523
16320
  #, fuzzy
16321
  msgid "Comment captcha"
16322
  msgstr "Kommentar captcha"
16323
 
16324
+ #: wppa-settings-autosave.php:6524
16325
  #, fuzzy
16326
  msgid "Use a simple calculate captcha on comments form."
16327
  msgstr "Verwenden Sie ein einfaches berechnen Captcha auf Kommentare Form."
16328
 
16329
+ #: wppa-settings-autosave.php:6537
16330
  #, fuzzy
16331
  msgid "Spam lifetime"
16332
  msgstr "Spam Lebensdauer"
16333
 
16334
+ #: wppa-settings-autosave.php:6538
16335
  #, fuzzy
16336
  msgid "Delete spam comments when older than."
16337
  msgstr "Löschen Spam-Kommentare, wenn älter als."
16338
 
16339
+ #: wppa-settings-autosave.php:6565
16340
  #, fuzzy
16341
  msgid "Avoid duplicates"
16342
+ msgstr "Duplizitäten vermeiden"
16343
 
16344
+ #: wppa-settings-autosave.php:6566
16345
  #, fuzzy
16346
  msgid "Prevent the creation of duplicate photos."
16347
  msgstr "Verhindern, dass die Erstellung von doppelten Fotos."
16348
 
16349
+ #: wppa-settings-autosave.php:6567
16350
  #, fuzzy
16351
  msgid ""
16352
  "If checked: uploading, importing, copying or moving photos to other albums "
16357
  "Verschieben von Fotos auf andere Alben verhindert werden, wenn die "
16358
  "desitation Album bereits ein Foto mit dem gleichen Dateinamen enthält."
16359
 
16360
+ #: wppa-settings-autosave.php:6576
16361
  #, fuzzy
16362
  msgid "Blacklist user"
16363
  msgstr "Schwarze Liste Benutzer"
16364
 
16365
+ #: wppa-settings-autosave.php:6577 wppa-settings-autosave.php:6578
16366
  #, fuzzy
16367
  msgid "Set the status of all the users photos to 'pending'."
16368
  msgstr "Setzen Sie den Status aller Benutzer Fotos zu \"offen\"."
16369
 
16370
+ #: wppa-settings-autosave.php:6579
16371
  #, fuzzy
16372
  msgid "Also inhibits further uploads."
16373
  msgstr "Auch verhindert eine weitere Uploads."
16374
 
16375
+ #: wppa-settings-autosave.php:6585
16376
  #, fuzzy
16377
  msgid "--- select a user to blacklist ---"
16378
  msgstr "--- Wählen Sie einen Benutzer auf die schwarze Liste ---"
16379
 
16380
+ #: wppa-settings-autosave.php:6595 wppa-settings-autosave.php:6600
16381
+ #: wppa-settings-autosave.php:6621 wppa-settings-autosave.php:6659
16382
+ #: wppa-settings-autosave.php:6664 wppa-settings-autosave.php:6685
16383
+ #: wppa-settings-autosave.php:9115 wppa-settings-autosave.php:9157
16384
  #, fuzzy
16385
  msgid "The page will be reloaded after the action has taken place."
16386
  msgstr ""
16387
  "Die Seite wird neu geladen werden, nachdem die Aktion stattgefunden hat."
16388
 
16389
+ #: wppa-settings-autosave.php:6601 wppa-settings-autosave.php:6665
16390
  #, fuzzy
16391
  msgid "User login name <b>( case sensitive! )</b>:"
16392
  msgstr "Benutzeranmeldenamen <b>(Groß-</b> und <b>Kleinschreibung!):</b>"
16393
 
16394
+ #: wppa-settings-autosave.php:6609
16395
  #, fuzzy
16396
  msgid "Unblacklist user"
16397
  msgstr "Unblacklist Benutzer"
16398
 
16399
+ #: wppa-settings-autosave.php:6610
16400
  #, fuzzy
16401
  msgid "Set the status of all the users photos to 'publish'."
16402
  msgstr "Setzen Sie den Status aller Benutzer Fotos zu \"veröffentlichen\"."
16403
 
16404
+ #: wppa-settings-autosave.php:6614
16405
  #, fuzzy
16406
  msgid "--- select a user to unblacklist ---"
16407
  msgstr "--- Wählen Sie einen Benutzer zu unblacklist ---"
16408
 
16409
+ #: wppa-settings-autosave.php:6629
16410
  #, fuzzy
16411
  msgid "Photo owner change"
16412
  msgstr "Foto Eigentümerwechsel"
16413
 
16414
+ #: wppa-settings-autosave.php:6630
16415
  #, fuzzy
16416
  msgid "Administrators can change photo owner"
16417
  msgstr "Administratoren können Foto Besitzer ändern"
16418
 
16419
+ #: wppa-settings-autosave.php:6640
16420
  #, fuzzy
16421
  msgid "Super user"
16422
+ msgstr "Root-Konto"
16423
 
16424
+ #: wppa-settings-autosave.php:6641
16425
  #, fuzzy
16426
  msgid "Give these users all rights in wppa."
16427
  msgstr "Geben Sie diese Benutzer alle Rechte in WPPA."
16428
 
16429
+ #: wppa-settings-autosave.php:6642
16430
  #, fuzzy
16431
  msgid "This gives the user all the administrator privileges within wppa."
16432
  msgstr "Dies gibt dem Benutzer alle Administratorrechte innerhalb WPPA."
16433
 
16434
+ #: wppa-settings-autosave.php:6643
16435
  #, fuzzy
16436
  msgid ""
16437
  "Make sure the user also has a role that has all the boxes ticked in Table "
16440
  "Stellen Sie sicher, dass der Benutzer hat auch eine Rolle, dass die Boxen "
16441
  "alle in der Tabelle VII-A getickt hat"
16442
 
16443
+ #: wppa-settings-autosave.php:6649
16444
  #, fuzzy
16445
  msgid "--- select a user to make superuser ---"
16446
  msgstr "--- Einen Benutzer auswählen, um Super-User machen ---"
16447
 
16448
+ #: wppa-settings-autosave.php:6673
16449
  #, fuzzy
16450
  msgid "Unsuper user"
16451
  msgstr "Unsuper Benutzer"
16452
 
16453
+ #: wppa-settings-autosave.php:6674
16454
  #, fuzzy
16455
  msgid "Remove user from super user list."
16456
  msgstr "Entfernen Sie Benutzer von Superuser-Liste."
16457
 
16458
+ #: wppa-settings-autosave.php:6678
16459
  #, fuzzy
16460
  msgid "--- select a user to unmake superuser ---"
16461
  msgstr "--- Wählen Sie einen Benutzer Super-User zu unmake ---"
16462
 
16463
+ #: wppa-settings-autosave.php:6711
16464
  #, fuzzy
16465
  msgid "Table VIII:"
16466
  msgstr "Tabelle VIII:"
16467
 
16468
+ #: wppa-settings-autosave.php:6711
16469
  #, fuzzy
16470
  msgid "Actions:"
16471
  msgstr "Aktionen:"
16472
 
16473
+ #: wppa-settings-autosave.php:6712
16474
  #, fuzzy
16475
  msgid "This table lists all actions that can be taken to the wppa+ system"
16476
  msgstr ""
16477
  "In dieser Tabelle werden alle Aktionen, die auf die WPPA System genommen "
16478
  "werden kann"
16479
 
16480
+ #: wppa-settings-autosave.php:6722 wppa-settings-autosave.php:7452
16481
  #, fuzzy
16482
  msgid "Specification"
16483
  msgstr "Spezifikation"
16484
 
16485
+ #: wppa-settings-autosave.php:6723 wppa-settings-autosave.php:7453
16486
+ #: wppa-settings-autosave.php:10023 wppa-settings-autosave.php:10045
16487
  #, fuzzy
16488
  msgid "Do it!"
16489
+ msgstr "Tu es! Legen Sie los!*"
16490
 
16491
+ #: wppa-settings-autosave.php:6725 wppa-settings-autosave.php:7455
16492
  #, fuzzy
16493
  msgid "To Go"
16494
+ msgstr "Auch unterwegs."
16495
 
16496
+ #: wppa-settings-autosave.php:6733
16497
  #, fuzzy
16498
  msgid "Harmless and reverseable actions"
16499
  msgstr "Harmlos und reverseable Aktionen"
16500
 
16501
+ #: wppa-settings-autosave.php:6735
16502
  #, fuzzy
16503
  msgid "Ignore concurrency"
16504
  msgstr "Ignorieren Concurrency"
16505
 
16506
+ #: wppa-settings-autosave.php:6736
16507
  #, fuzzy
16508
  msgid "Ignore the prevention of concurrent actions."
16509
  msgstr "Ignorieren Sie die Verhinderung von gleichzeitigen Aktionen."
16510
 
16511
+ #: wppa-settings-autosave.php:6737
16512
  #, fuzzy
16513
  msgid ""
16514
  "This setting is meant to recover from deadlock situations only. Use with "
16517
  "Diese Einstellung soll nur von Deadlock-Situationen zu erholen. Verwenden "
16518
  "Sie mit Vorsicht!"
16519
 
16520
+ #: wppa-settings-autosave.php:6748
16521
  #, fuzzy
16522
  msgid "Setup"
16523
+ msgstr "Einstellungen"
16524
 
16525
+ #: wppa-settings-autosave.php:6749
16526
  #, fuzzy
16527
  msgid "Re-initialize plugin."
16528
  msgstr "Re-Initialisierung Plugin."
16529
 
16530
+ #: wppa-settings-autosave.php:6750
16531
  #, fuzzy
16532
  msgid ""
16533
  "Re-initilizes the plugin, (re)creates database tables and sets up default "
16536
  "das Plugin Re-initilizes, (re) erzeugt Datenbanktabellen und richtet "
16537
  "Standardeinstellungen und Verzeichnisse, falls erforderlich."
16538
 
16539
+ #: wppa-settings-autosave.php:6751
16540
  #, fuzzy
16541
  msgid ""
16542
  "This action may be required to setup blogs in a multiblog (network) site as "
16545
  "Diese Aktion kann in einem Multiblog (Netzwerk) Ort sowie in seltenen Fällen "
16546
  "zur Einrichtung Blogs erforderlich initilization Fehler zu korrigieren."
16547
 
16548
+ #: wppa-settings-autosave.php:6762
16549
  #, fuzzy
16550
  msgid "Backup settings"
16551
  msgstr "Backup-Einstellungen"
16552
 
16553
+ #: wppa-settings-autosave.php:6763
16554
  #, fuzzy
16555
  msgid "Save all settings into a backup file."
16556
  msgstr "Speichern Sie alle Einstellungen in einer Backup-Datei."
16557
 
16558
+ #: wppa-settings-autosave.php:6764
16559
  #, fuzzy
16560
  msgid "Saves all the settings into a backup file"
16561
  msgstr "Speichert alle Einstellungen in einer Sicherungsdatei"
16562
 
16563
+ #: wppa-settings-autosave.php:6775
16564
  #, fuzzy
16565
  msgid "Load settings"
16566
  msgstr "Einstellungen laden..."
16567
 
16568
+ #: wppa-settings-autosave.php:6776
16569
  #, fuzzy
16570
  msgid "Restore all settings from defaults, a backup or skin file."
16571
  msgstr ""
16572
  "Stellen Sie alle Einstellungen von Default-Einstellungen, eine Sicherung "
16573
  "oder Skin-Datei."
16574
 
16575
+ #: wppa-settings-autosave.php:6777
16576
  #, fuzzy
16577
  msgid ""
16578
  "Restores all the settings from the factory supplied defaults, the backup you "
16581
  "Stellt alle Einstellungen aus den mitgelieferten Standardwerte, die "
16582
  "Sicherung, die Sie erstellt oder aus einer Skin-Datei."
16583
 
16584
+ #: wppa-settings-autosave.php:6783
16585
  #, fuzzy
16586
  msgid "--- set to defaults ---"
16587
  msgstr "--- Auf die Standardwerte gesetzt ---"
16588
 
16589
+ #: wppa-settings-autosave.php:6786
16590
  #, fuzzy
16591
  msgid "--- restore backup ---"
16592
  msgstr "Sicherung wiederherstellen"
16593
 
16594
+ #: wppa-settings-autosave.php:6808
16595
  #, fuzzy
16596
  msgid "Regenerate"
16597
  msgstr "Neu generieren"
16598
 
16599
+ #: wppa-settings-autosave.php:6809 wppa-settings-autosave.php:6810
16600
  #, fuzzy
16601
  msgid "Regenerate all thumbnails."
16602
  msgstr "Alle Thumbnails neu regenerieren"
16603
 
16604
+ #: wppa-settings-autosave.php:6813 wppa-settings-autosave.php:6917
16605
+ #: wppa-settings-autosave.php:6984
16606
  #, fuzzy
16607
  msgid "Skip one"
16608
  msgstr "überspringen ein"
16609
 
16610
+ #: wppa-settings-autosave.php:6822
16611
  #, fuzzy
16612
  msgid "Rerate"
16613
  msgstr "Rerate"
16614
 
16615
+ #: wppa-settings-autosave.php:6823
16616
  #, fuzzy
16617
  msgid "Recalculate ratings."
16618
  msgstr "Neuberechnen Bewertungen."
16619
 
16620
+ #: wppa-settings-autosave.php:6824
16621
  #, fuzzy
16622
  msgid ""
16623
  "This function will recalculate all mean photo ratings from the ratings table."
16625
  "Diese Funktion werden alle Bewertungen aus der Praxis Tabelle bedeuten Foto "
16626
  "neu berechnen."
16627
 
16628
+ #: wppa-settings-autosave.php:6825
16629
  #, fuzzy
16630
  msgid ""
16631
  "You may need this function after the re-import of previously exported photos"
16633
  "Sie können nach dem Re-Import von zuvor exportierten Fotos diese Funktion "
16634
  "benötigen"
16635
 
16636
+ #: wppa-settings-autosave.php:6836
16637
  #, fuzzy
16638
  msgid "Lost and found"
16639
+ msgstr "Fundbüro"
16640
 
16641
+ #: wppa-settings-autosave.php:6837
16642
  #, fuzzy
16643
  msgid "Find \"lost\" photos."
16644
  msgstr "Finden \"verloren\" Fotos."
16645
 
16646
+ #: wppa-settings-autosave.php:6838
16647
  #, fuzzy
16648
  msgid "This function will attempt to find lost photos."
16649
  msgstr "Diese Funktion wird versuchen, verlorenen Fotos zu finden."
16650
 
16651
+ #: wppa-settings-autosave.php:6849
16652
  #, fuzzy
16653
  msgid "Recuperate"
16654
+ msgstr "Rekuperation"
16655
 
16656
+ #: wppa-settings-autosave.php:6851
16657
  #, fuzzy
16658
  msgid ""
16659
  "This action will attempt to find and register IPTC and EXIF data from photos "
16662
  "Diese Aktion wird versuchen, zu finden und IPTC-und EXIF-Daten von Fotos im "
16663
  "WPPA System registrieren."
16664
 
16665
+ #: wppa-settings-autosave.php:6862
16666
  #, fuzzy
16667
  msgid "Remake Index Albums"
16668
  msgstr "Remake Index Alben"
16669
 
16670
+ #: wppa-settings-autosave.php:6863
16671
  #, fuzzy
16672
  msgid "Remakes the index database table for albums."
16673
  msgstr "Remakes die Indexdatenbanktabelle für Alben."
16674
 
16675
+ #: wppa-settings-autosave.php:6875
16676
  #, fuzzy
16677
  msgid "Remake Index Photos"
16678
  msgstr "Remake Index Fotos"
16679
 
16680
+ #: wppa-settings-autosave.php:6876
16681
  #, fuzzy
16682
  msgid "Remakes the index database table for photos."
16683
  msgstr "Remakes die Indexdatenbanktabelle für Fotos."
16684
 
16685
+ #: wppa-settings-autosave.php:6894
16686
  #, fuzzy
16687
  msgid "Convert to tree"
16688
  msgstr "Konvertieren in Baum"
16689
 
16690
+ #: wppa-settings-autosave.php:6895
16691
  #, fuzzy
16692
  msgid "Convert filesystem to tree structure."
16693
  msgstr "Convert-Dateisystem-Baumstruktur."
16694
 
16695
+ #: wppa-settings-autosave.php:6898
16696
  #, fuzzy
16697
  msgid "Convert to flat"
16698
  msgstr "Konvertieren in flach"
16699
 
16700
+ #: wppa-settings-autosave.php:6899
16701
  #, fuzzy
16702
  msgid "Convert filesystem to flat structure."
16703
  msgstr "Convert-Dateisystem zu flache Struktur."
16704
 
16705
+ #: wppa-settings-autosave.php:6901
16706
  #, fuzzy
16707
  msgid ""
16708
  "If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
16711
  "Wenn Sie zurück in eine WPPA gehen wollen Version vor 5.0.16, müssen Sie "
16712
  "flache erste konvertieren."
16713
 
16714
+ #: wppa-settings-autosave.php:6913
16715
  #, fuzzy
16716
  msgid "Remake the photofiles from photo sourcefiles."
16717
  msgstr "Remake die Photofiles von Foto Quelldateien."
16718
 
16719
+ #: wppa-settings-autosave.php:6914
16720
  #, fuzzy
16721
  msgid ""
16722
  "This action will remake the fullsize images, thumbnail images, and will "
16728
  "in dem entsprechenden Album-Unterverzeichnis des Quellverzeichnis gefunden "
16729
  "wird."
16730
 
16731
+ #: wppa-settings-autosave.php:6926
16732
  #, fuzzy
16733
  msgid "Orientation only"
16734
  msgstr "Orientierung nur"
16735
 
16736
+ #: wppa-settings-autosave.php:6927
16737
  #, fuzzy
16738
  msgid "Remake non standard orientated photos only."
16739
  msgstr "Remake Nicht-Standard-orientierte Fotos nur."
16740
 
16741
+ #: wppa-settings-autosave.php:6940
16742
  #, fuzzy
16743
  msgid "Recalc sizes"
16744
  msgstr "Recalc Größen"
16745
 
16746
+ #: wppa-settings-autosave.php:6941
16747
  #, fuzzy
16748
  msgid "Recalculate photosizes and save to db."
16749
  msgstr "Neu berechnen photosizes und db speichern."
16750
 
16751
+ #: wppa-settings-autosave.php:6953
16752
  #, fuzzy
16753
  msgid "Renew album crypt"
16754
  msgstr "Erneuern Album Krypta"
16755
 
16756
+ #: wppa-settings-autosave.php:6954
16757
  #, fuzzy
16758
  msgid "Renew album encrcryption codes."
16759
  msgstr "Erneuern Album encrcryption Codes."
16760
 
16761
+ #: wppa-settings-autosave.php:6966
16762
  #, fuzzy
16763
  msgid "Renew photo crypt"
16764
  msgstr "Erneuern Foto Krypta"
16765
 
16766
+ #: wppa-settings-autosave.php:6967
16767
  #, fuzzy
16768
  msgid "Renew photo encrcryption codes."
16769
  msgstr "Erneuern Foto encrcryption Codes."
16770
 
16771
+ #: wppa-settings-autosave.php:6979
16772
  #, fuzzy
16773
  msgid "Create orietation sources"
16774
  msgstr "Erstellen Sie orietation Quellen"
16775
 
16776
+ #: wppa-settings-autosave.php:6980
16777
  #, fuzzy
16778
  msgid "Creates correctly oriented pseudo source file."
16779
  msgstr "Erzeugt richtig orientiert Pseudo-Quelldatei."
16780
 
16781
+ #: wppa-settings-autosave.php:6993
16782
  #, fuzzy
16783
  msgid "Clearing and other irreverseable actions"
16784
  msgstr "Clearing und andere irreverseable Aktionen"
16785
 
16786
+ #: wppa-settings-autosave.php:6995
16787
  #, fuzzy
16788
  msgid "Clear ratings"
16789
  msgstr "Klare Bewertungen"
16790
 
16791
+ #: wppa-settings-autosave.php:6996
16792
  #, fuzzy
16793
  msgid "Reset all ratings."
16794
  msgstr "Setzen Sie alle Bewertungen."
16795
 
16796
+ #: wppa-settings-autosave.php:6997
16797
  #, fuzzy
16798
  msgid "WARNING: If checked, this will clear all ratings in the system!"
16799
  msgstr ""
16800
  "WARNUNG: Wenn diese Option aktiviert, wird dies alle Bewertungen im System "
16801
  "klar!"
16802
 
16803
+ #: wppa-settings-autosave.php:7008
16804
  #, fuzzy
16805
  msgid "Clear viewcounts"
16806
  msgstr "klar viewcounts"
16807
 
16808
+ #: wppa-settings-autosave.php:7009
16809
  #, fuzzy
16810
  msgid "Reset all viewcounts."
16811
  msgstr "Setzen Sie alle viewcounts."
16812
 
16813
+ #: wppa-settings-autosave.php:7010
16814
  #, fuzzy
16815
  msgid "WARNING: If checked, this will clear all viewcounts in the system!"
16816
  msgstr ""
16817
  "WARNUNG: Wenn diese Option aktiviert, wird dies alle viewcounts im System "
16818
  "klar!"
16819
 
16820
+ #: wppa-settings-autosave.php:7021
16821
  #, fuzzy
16822
  msgid "Reset IPTC"
16823
  msgstr "zurücksetzen IPTC"
16824
 
16825
+ #: wppa-settings-autosave.php:7022
16826
  #, fuzzy
16827
  msgid "Clear all IPTC data."
16828
  msgstr "Alle entfernen"
16829
 
16830
+ #: wppa-settings-autosave.php:7023
16831
  #, fuzzy
16832
  msgid "WARNING: If checked, this will clear all IPTC data in the system!"
16833
  msgstr ""
16834
  "WARNUNG: Wenn diese Option aktiviert, wird dies alle IPTC-Daten in dem "
16835
  "System zu löschen!"
16836
 
16837
+ #: wppa-settings-autosave.php:7034
16838
  #, fuzzy
16839
  msgid "Reset EXIF"
16840
  msgstr "Zurücksetzen EXIF"
16841
 
16842
+ #: wppa-settings-autosave.php:7035
16843
  #, fuzzy
16844
  msgid "Clear all EXIF data."
16845
  msgstr "Alle entfernen"
16846
 
16847
+ #: wppa-settings-autosave.php:7036
16848
  #, fuzzy
16849
  msgid "WARNING: If checked, this will clear all EXIF data in the system!"
16850
  msgstr ""
16851
  "WARNUNG: Wenn diese Option aktiviert, wird dies alle EXIF-Daten im System zu "
16852
  "löschen!"
16853
 
16854
+ #: wppa-settings-autosave.php:7047
16855
  #, fuzzy
16856
  msgid "Apply New Photodesc"
16857
  msgstr "Als neuer Photodesc"
16858
 
16859
+ #: wppa-settings-autosave.php:7048
16860
  #, fuzzy
16861
  msgid "Apply New photo description on all photos in the system."
16862
  msgstr "Wenden Neue Foto Beschreibung auf alle Fotos im System."
16863
 
16864
+ #: wppa-settings-autosave.php:7060
16865
  #, fuzzy
16866
  msgid "Append to photodesc"
16867
  msgstr "Anhängen an photodesc"
16868
 
16869
+ #: wppa-settings-autosave.php:7061
16870
  #, fuzzy
16871
  msgid "Append this text to all photo descriptions."
16872
  msgstr "Fügen Sie diesen Text auf alle Fotobeschreibungen."
16873
 
16874
+ #: wppa-settings-autosave.php:7075
16875
  #, fuzzy
16876
  msgid "Remove from photodesc"
16877
  msgstr "Entfernen von photodesc"
16878
 
16879
+ #: wppa-settings-autosave.php:7076
16880
  #, fuzzy
16881
  msgid "Remove this text from all photo descriptions."
16882
  msgstr "Entfernen Sie diesen Text aus allen Fotobeschreibungen."
16883
 
16884
+ #: wppa-settings-autosave.php:7090
16885
  #, fuzzy
16886
  msgid "Remove empty albums"
16887
  msgstr "Entfernen Sie leere Alben"
16888
 
16889
+ #: wppa-settings-autosave.php:7091
16890
  #, fuzzy
16891
  msgid "Removes albums that are not used."
16892
  msgstr "Entfernt Alben, die nicht verwendet werden."
16893
 
16894
+ #: wppa-settings-autosave.php:7103
16895
  #, fuzzy
16896
  msgid "Remove file-ext"
16897
  msgstr "Entfernen Sie Datei-ext"
16898
 
16899
+ #: wppa-settings-autosave.php:7104
16900
  #, fuzzy
16901
  msgid "Remove possible file extension from photo name."
16902
  msgstr "Entfernen Sie mögliche Dateierweiterung von Foto-Namen."
16903
 
16904
+ #: wppa-settings-autosave.php:7105
16905
  #, fuzzy
16906
  msgid ""
16907
  "This may be required for old photos, uploaded when the option in Table IX-D3 "
16910
  "Dies kann für alte Fotos erforderlich, hochgeladen, wenn die Option in der "
16911
  "Tabelle IX-D3 war noch nicht verfügbar / ausgewählt."
16912
 
16913
+ #: wppa-settings-autosave.php:7116
16914
  #, fuzzy
16915
  msgid "Re-add file-ext"
16916
  msgstr "Re-add file-ext"
16917
 
16918
+ #: wppa-settings-autosave.php:7117
16919
  #, fuzzy
16920
  msgid "Revert the <i>Remove file-ext</i> action."
16921
  msgstr "Revert die <i>Remove</i> - <i>Datei-ext</i> Aktion."
16922
 
16923
+ #: wppa-settings-autosave.php:7129
16924
  #, fuzzy
16925
  msgid "Watermark all"
16926
  msgstr "Wasserzeichen alle"
16927
 
16928
+ #: wppa-settings-autosave.php:7130
16929
  #, fuzzy
16930
  msgid "Apply watermark according to current settings to all photos."
16931
  msgstr ""
16932
  "Bewerben Wasserzeichen entsprechend den aktuellen Einstellungen auf alle "
16933
  "Fotos."
16934
 
16935
+ #: wppa-settings-autosave.php:7131
16936
  #, fuzzy
16937
  msgid "See Table IX_F for the current watermark settings"
16938
  msgstr "Siehe Tabelle IX_F für die aktuellen Wasserzeichen-Einstellungen"
16939
 
16940
+ #: wppa-settings-autosave.php:7142
16941
  #, fuzzy
16942
  msgid "Create all autopages"
16943
  msgstr "Erstellen Sie alle autopages"
16944
 
16945
+ #: wppa-settings-autosave.php:7143
16946
  #, fuzzy
16947
  msgid "Create all the pages to display slides individually."
16948
  msgstr "Erstellen Sie alle Seiten Folien einzeln angezeigt werden soll."
16949
 
16950
+ #: wppa-settings-autosave.php:7144 wppa-settings-autosave.php:7158
16951
  #, fuzzy
16952
  msgid "See also Table IV-A10."
16953
  msgstr "Siehe auch Tabelle IV-A10."
16954
 
16955
+ #: wppa-settings-autosave.php:7145
16956
  #, fuzzy
16957
  msgid ""
16958
  "Make sure you have a custom menu and the \"Automatically add new top-level "
16962
  "Option \"Automatisch fügen Sie neue Top-Level-Seiten zu diesem Menü\" Box "
16963
  "unticked !!"
16964
 
16965
+ #: wppa-settings-autosave.php:7156
16966
  #, fuzzy
16967
  msgid "Delete all autopages"
16968
  msgstr "Löschen Sie alle autopages"
16969
 
16970
+ #: wppa-settings-autosave.php:7157
16971
  #, fuzzy
16972
  msgid "Delete all the pages to display slides individually."
16973
  msgstr "Löschen Sie alle Seiten Dias einzeln angezeigt werden soll."
16974
 
16975
+ #: wppa-settings-autosave.php:7170
16976
  #, fuzzy
16977
  msgid "Leading zeroes"
16978
  msgstr "Führende Nullen"
16979
 
16980
+ #: wppa-settings-autosave.php:7171
16981
  #, fuzzy
16982
  msgid "If photoname numeric, add leading zeros"
16983
  msgstr "Wenn photoname numerisch, fügen führende Nullen"
16984
 
16985
+ #: wppa-settings-autosave.php:7172
16986
  #, fuzzy
16987
  msgid ""
16988
  "You can extend the name with leading zeros, so alphabetic sort becomes equal "
16991
  "Sie können den Namen mit führenden Nullen erweitern, so alphabetisch "
16992
  "sortiert wird, um numerische Reihenfolge, um gleich."
16993
 
16994
+ #: wppa-settings-autosave.php:7175
16995
  #, fuzzy
16996
  msgid "Total chars"
16997
  msgstr "insgesamt Zeichen"
16998
 
16999
+ #: wppa-settings-autosave.php:7184
17000
  #, fuzzy
17001
  msgid "Add GPX tag"
17002
  msgstr "In GPX-Tag"
17003
 
17004
+ #: wppa-settings-autosave.php:7185
17005
  #, fuzzy
17006
  msgid "Make sure photos with gpx data have a Gpx tag"
17007
  msgstr "Stellen Sie sicher, Fotos mit GPX-Daten haben eine Gpx-Tag"
17008
 
17009
+ #: wppa-settings-autosave.php:7198 wppa-settings-autosave.php:8169
17010
  #, fuzzy
17011
  msgid "Optimize files"
17012
  msgstr "Optimieren Sie Dateien"
17013
 
17014
+ #: wppa-settings-autosave.php:7199
17015
  #, fuzzy
17016
  msgid "Optimize with EWWW image optimizer"
17017
  msgstr "Optimieren Sie mit EWWW Bild-Optimierer"
17018
 
17019
+ #: wppa-settings-autosave.php:7212
17020
  #, fuzzy
17021
  msgid "Edit tag"
17022
+ msgstr "Schlagworte bearbeiten"
17023
 
17024
+ #: wppa-settings-autosave.php:7213
17025
  #, fuzzy
17026
  msgid "Globally change a tagname."
17027
  msgstr "ändern Weltweit eine tagname."
17028
 
17029
+ #: wppa-settings-autosave.php:7219
17030
  #, fuzzy
17031
  msgid "-select a tag-"
17032
+ msgstr "Wähle ein Schlagwort"
17033
 
17034
+ #: wppa-settings-autosave.php:7225
17035
  #, fuzzy
17036
  msgid "Tag:"
17037
  msgstr "Tag"
17038
 
17039
+ #: wppa-settings-autosave.php:7226
17040
  #, fuzzy
17041
  msgid "Change to:"
17042
  msgstr "Ändern zu:"
17043
 
17044
+ #: wppa-settings-autosave.php:7235
17045
  #, fuzzy
17046
  msgid "Synchronize Cloudinary"
17047
  msgstr "Synchronisieren Sie Cloudinary"
17048
 
17049
+ #: wppa-settings-autosave.php:7236
17050
  #, fuzzy
17051
  msgid "Removes/adds images in the cloud."
17052
  msgstr "Entfernt / fügt Bilder in der Cloud."
17053
 
17054
+ #: wppa-settings-autosave.php:7237
17055
  #, fuzzy
17056
  msgid "Removes old images and verifies/adds new images to Cloudinary."
17057
  msgstr ""
17058
  "Entfernt alte Bilder und überprüft / neue Bilder zu Cloudinary hinzufügt."
17059
 
17060
+ #: wppa-settings-autosave.php:7238
17061
  #, fuzzy
17062
  msgid "See Table IX-K4.7 for the configured lifetime."
17063
  msgstr "Siehe Tabelle IX-K4.7 für den konfigurierten Lebensdauer."
17064
 
17065
+ #: wppa-settings-autosave.php:7249
17066
  #, fuzzy
17067
  msgid "Fix tags"
17068
  msgstr "Fix-Tags"
17069
 
17070
+ #: wppa-settings-autosave.php:7250
17071
  #, fuzzy
17072
  msgid "Make sure photo tags format is uptodate"
17073
  msgstr "Stellen Sie sicher, Foto-Tags-Format ist uptodate"
17074
 
17075
+ #: wppa-settings-autosave.php:7251
17076
  #, fuzzy
17077
  msgid "Fixes tags to be conform current database rules."
17078
  msgstr "Fixes Tags zu aktuellen Datenbank Regeln entsprechen."
17079
 
17080
+ #: wppa-settings-autosave.php:7262
17081
  #, fuzzy
17082
  msgid "Fix cats"
17083
  msgstr "Fix Katzen"
17084
 
17085
+ #: wppa-settings-autosave.php:7263
17086
  #, fuzzy
17087
  msgid "Make sure album cats format is uptodate"
17088
  msgstr "Stellen Sie sicher, dass das Album Katzen-Format ist uptodate"
17089
 
17090
+ #: wppa-settings-autosave.php:7264
17091
  #, fuzzy
17092
  msgid "Fixes cats to be conform current database rules."
17093
  msgstr "Fixes Katzen zu aktuellen Datenbank Regeln entsprechen."
17094
 
17095
+ #: wppa-settings-autosave.php:7275
17096
  #, fuzzy
17097
  msgid "Set owner to name"
17098
  msgstr "Stellen Sie Besitzer Name"
17099
 
17100
+ #: wppa-settings-autosave.php:7276
17101
  #, fuzzy
17102
  msgid "If photoname equals user display name, set him owner."
17103
  msgstr ""
17104
  "Wenn photoname Benutzeranzeigenamen entspricht, setzen Sie ihn Eigentümer."
17105
 
17106
+ #: wppa-settings-autosave.php:7288
17107
  #, fuzzy
17108
  msgid "Move all photos"
17109
  msgstr "Alle Fotos"
17110
 
17111
+ #: wppa-settings-autosave.php:7289
17112
  #, fuzzy
17113
  msgid "Move all photos from one album to another album."
17114
  msgstr "Verschieben Sie alle Fotos aus einem Album in ein anderes Album."
17115
 
17116
+ #: wppa-settings-autosave.php:7301
17117
  #, fuzzy
17118
  msgid "From"
17119
+ msgstr "Foto %s existiert bereits im Album Nummer %s. Entfernt vom Depot."
17120
 
17121
+ #: wppa-settings-autosave.php:7302
17122
  #, fuzzy
17123
  msgid "Move from album"
17124
+ msgstr "Aus dem Album"
17125
 
17126
+ #: wppa-settings-autosave.php:7328
17127
  #, fuzzy
17128
  msgid "To"
17129
+ msgstr "Bis"
17130
 
17131
+ #: wppa-settings-autosave.php:7329
17132
  #, fuzzy
17133
  msgid "Move to album"
17134
  msgstr "In das Album verschieben"
17135
 
17136
+ #: wppa-settings-autosave.php:7370
17137
  #, fuzzy
17138
  msgid "Listings"
17139
+ msgstr "Profile"
17140
 
17141
+ #: wppa-settings-autosave.php:7372
17142
  #, fuzzy
17143
  msgid "List Logfile"
17144
  msgstr "Liste Logfile"
17145
 
17146
+ #: wppa-settings-autosave.php:7373
17147
  #, fuzzy
17148
  msgid "Show the content of wppa+ (error) log."
17149
  msgstr "Zeigen Sie den Inhalt des WPPA (Fehler) log."
17150
 
17151
+ #: wppa-settings-autosave.php:7377
17152
  #, fuzzy
17153
  msgid "Purge logfile"
17154
  msgstr "Purge Logfile"
17155
 
17156
+ #: wppa-settings-autosave.php:7386
17157
  #, fuzzy
17158
  msgid "List Ratings"
17159
  msgstr "Liste Bewertungs"
17160
 
17161
+ #: wppa-settings-autosave.php:7387
17162
  #, fuzzy
17163
  msgid "Show the most recent ratings."
17164
  msgstr "Zeigen Sie die neuesten Bewertungen."
17165
 
17166
+ #: wppa-settings-autosave.php:7400
17167
  #, fuzzy
17168
  msgid "List Index"
17169
+ msgstr "Listenindex"
17170
 
17171
+ #: wppa-settings-autosave.php:7401
17172
  #, fuzzy
17173
  msgid "Show the content if the index table."
17174
  msgstr "Zeigen Sie den Inhalt, wenn der Indextabelle."
17175
 
17176
+ #: wppa-settings-autosave.php:7405
17177
  #, fuzzy
17178
  msgid "Start at text:"
17179
  msgstr "Beginnen Sie bei Text:"
17180
 
17181
+ #: wppa-settings-autosave.php:7415
17182
  #, fuzzy
17183
  msgid "List active sessions"
17184
  msgstr "Liste aktiver Sitzungen"
17185
 
17186
+ #: wppa-settings-autosave.php:7416
17187
  #, fuzzy
17188
  msgid "Show the content of the sessions table."
17189
  msgstr "Zeigen Sie den Inhalt der Sitzungen Tabelle."
17190
 
17191
+ #: wppa-settings-autosave.php:7429
17192
  #, fuzzy
17193
  msgid "List comments"
17194
  msgstr "Liste Kommentare"
17195
 
17196
+ #: wppa-settings-autosave.php:7430
17197
  #, fuzzy
17198
  msgid "Show the content of the comments table."
17199
  msgstr "Zeigen Sie den Inhalt der Kommentare Tabelle."
17200
 
17201
+ #: wppa-settings-autosave.php:7436
17202
  #, fuzzy
17203
  msgid "Order by:"
17204
+ msgstr "Sortieren nach"
17205
 
17206
+ #: wppa-settings-autosave.php:7465
17207
  #, fuzzy
17208
  msgid "Table IX:"
17209
  msgstr "Tabelle IX:"
17210
 
17211
+ #: wppa-settings-autosave.php:7465
17212
  #, fuzzy
17213
  msgid "Miscellaneous:"
17214
  msgstr "Sonstiges:"
17215
 
17216
+ #: wppa-settings-autosave.php:7466
17217
  #, fuzzy
17218
  msgid "This table lists all settings that do not fit into an other table"
17219
  msgstr ""
17220
  "In dieser Tabelle werden alle Einstellungen, die in eine andere Tabelle "
17221
  "nicht passen"
17222
 
17223
+ #: wppa-settings-autosave.php:7484
17224
  #, fuzzy
17225
  msgid "Internal engine related settings"
17226
  msgstr "Interne Motorbezogene Einstellungen"
17227
 
17228
+ #: wppa-settings-autosave.php:7486
17229
  #, fuzzy
17230
  msgid "WPPA+ Filter priority"
17231
  msgstr "WPPA Filter Priorität"
17232
 
17233
+ #: wppa-settings-autosave.php:7487
17234
  #, fuzzy
17235
  msgid "Sets the priority of the wppa+ content filter."
17236
  msgstr "Legt die Priorität des WPPA Content-Filter."
17237
 
17238
+ #: wppa-settings-autosave.php:7488 wppa-settings-autosave.php:7497
17239
  #, fuzzy
17240
  msgid ""
17241
  "If you encounter conflicts with the theme or other plugins, increasing this "
17244
  "Wenn Sie Konflikte mit dem Thema oder anderen Plugins begegnen, diesen Wert "
17245
  "zu erhöhen hilft manchmal. Verwenden Sie mit großer Sorgfalt!"
17246
 
17247
+ #: wppa-settings-autosave.php:7495
17248
  #, fuzzy
17249
  msgid "Do_shortcode priority"
17250
  msgstr "Do_shortcode Priorität"
17251
 
17252
+ #: wppa-settings-autosave.php:7496
17253
  #, fuzzy
17254
  msgid "Sets the priority of the do_shortcode() content filter."
17255
  msgstr "Legt die Priorität des do_shortcode () Content-Filter."
17256
 
17257
+ #: wppa-settings-autosave.php:7504
17258
  #, fuzzy
17259
  msgid "WPPA shortcode at Filter priority"
17260
  msgstr "WPPA Short bei Filter Priorität"
17261
 
17262
+ #: wppa-settings-autosave.php:7505
17263
  #, fuzzy
17264
  msgid "Execute shortcode expansion on filter priority in posts and pages."
17265
  msgstr "Führen Short Expansion auf Filter Priorität in Beiträge und Seiten."
17266
 
17267
+ #: wppa-settings-autosave.php:7506 wppa-settings-autosave.php:7515
17268
  #, fuzzy
17269
  msgid "Use to fix certain layout problems"
17270
  msgstr "Verwenden Sie bestimmte Layout-Probleme zu beheben"
17271
 
17272
+ #: wppa-settings-autosave.php:7513
17273
  #, fuzzy
17274
  msgid "WPPA shortcode at Filter priority widget"
17275
  msgstr "WPPA Short bei Filter Priorität Widget"
17276
 
17277
+ #: wppa-settings-autosave.php:7514
17278
  #, fuzzy
17279
  msgid "Execute shortcode expansion on filter priority in widgets."
17280
  msgstr "Führen Short Expansion auf Filter Priorität in Widgets."
17281
 
17282
+ #: wppa-settings-autosave.php:7522
17283
  #, fuzzy
17284
  msgid "JPG image quality"
17285
  msgstr "JPG-Bildqualität"
17286
 
17287
+ #: wppa-settings-autosave.php:7523
17288
  #, fuzzy
17289
  msgid "The jpg quality when photos are downsized"
17290
  msgstr "Die jpg Qualität bei Fotos werden verkleinert"
17291
 
17292
+ #: wppa-settings-autosave.php:7524
17293
  #, fuzzy
17294
  msgid "The higher the number the better the quality but the larger the file"
17295
  msgstr "Je höher die Zahl, desto besser die Qualität, aber je größer die Datei"
17296
 
17297
+ #: wppa-settings-autosave.php:7525
17298
  #, fuzzy
17299
  msgid "Possible values 20..100"
17300
  msgstr "Mögliche Werte 20..100"
17301
 
17302
+ #: wppa-settings-autosave.php:7532
17303
  #, fuzzy
17304
  msgid "Allow WPPA+ Debugging"
17305
  msgstr "Lassen Sie WPPA Debugging"
17306
 
17307
+ #: wppa-settings-autosave.php:7533
17308
  #, fuzzy
17309
  msgid "Allow the use of &amp;debug=.. in urls to this site."
17310
  msgstr ""
17311
  "Lassen Sie die Verwendung von &amp; debug = .. in Urls auf diese Seite."
17312
 
17313
+ #: wppa-settings-autosave.php:7534
17314
  #, fuzzy
17315
  msgid ""
17316
  "If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
17321
  "<int> auf eine URL zu dieser Seite wird die Anzeige von Sonder WPPA "
17322
  "Diagnostik, sowie PHP-Warnungen generieren"
17323
 
17324
+ #: wppa-settings-autosave.php:7541
17325
  #, fuzzy
17326
  msgid "Auto continue"
17327
  msgstr "Auto weiter"
17328
 
17329
+ #: wppa-settings-autosave.php:7542
17330
  #, fuzzy
17331
  msgid "Continue automatic after time out"
17332
  msgstr "Weiter automatisch nach Auszeit"
17333
 
17334
+ #: wppa-settings-autosave.php:7543
17335
  #, fuzzy
17336
  msgid ""
17337
  "If checked, an attempt will be made to restart an admin process when the "
17340
  "Wenn diese Option aktiviert, wird der Versuch unternommen, ein Admin-Prozess "
17341
  "neu zu starten, wenn die Zeit aus ist."
17342
 
17343
+ #: wppa-settings-autosave.php:7551
17344
  #, fuzzy
17345
  msgid "Set max execution time here."
17346
  msgstr "Legen Sie hier max Ausführungszeit."
17347
 
17348
+ #: wppa-settings-autosave.php:7552
17349
  #, fuzzy
17350
  msgid ""
17351
  "If your php config does not properly set the max execution time, you can set "
17355
  "eingestellt ist, können Sie es hier eingestellt. Sekunden, 0 bedeutet nicht "
17356
  "ändern."
17357
 
17358
+ #: wppa-settings-autosave.php:7553
17359
  #, fuzzy
17360
  msgid "A safe value is 45 in most cases"
17361
  msgstr "Ein sicherer Wert ist 45 in den meisten Fällen"
17362
 
17363
+ #: wppa-settings-autosave.php:7554
17364
  #, fuzzy, php-format
17365
  msgid "The PHP setting max_execution_time is set to %s."
17366
  msgstr "Die PHP-Einstellung max_execution_time wird auf%s gesetzt."
17367
 
17368
+ #: wppa-settings-autosave.php:7562
17369
  #, fuzzy
17370
  msgid "Feed use thumb"
17371
  msgstr "-Feed Verwendung Daumen"
17372
 
17373
+ #: wppa-settings-autosave.php:7563
17374
  #, fuzzy
17375
  msgid "Feeds use thumbnail pictures always."
17376
  msgstr "Feeds immer Miniaturbilder verwenden."
17377
 
17378
+ #: wppa-settings-autosave.php:7571
17379
  #, fuzzy
17380
  msgid "Enable <i>in-line</i> settings"
17381
  msgstr "Aktivieren Sie <i>in-line</i> - Einstellungen"
17382
 
17383
+ #: wppa-settings-autosave.php:7572
17384
  #, fuzzy
17385
  msgid "Activates shortcode [wppa_set][/wppa_set]."
17386
  msgstr "Aktiviert Shortcode [wppa_set] [/ wppa_set]."
17387
 
17388
+ #: wppa-settings-autosave.php:7573
17389
  #, fuzzy
17390
  msgid ""
17391
  "Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
17393
  "Syntax: [wppa_set name = \"any WPPA Einstellung\" value = \"neuer Wert\"] [/ "
17394
  "wppa_set]"
17395
 
17396
+ #: wppa-settings-autosave.php:7574
17397
  #, fuzzy
17398
  msgid ""
17399
  "Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
17402
  "Beispiel: [wppa_set name = \"wppa_thumbtype\" value = \"Mauerwerk-v\"] [/ "
17403
  "wppa_set] setzt die Miniaturtyp vertikale Mauerwerk Stil"
17404
 
17405
+ #: wppa-settings-autosave.php:7575
17406
  #, fuzzy
17407
  msgid "Do not forget to reset with [wppa_set][/wppa_set]"
17408
  msgstr "Vergessen Sie nicht, mit [wppa_set] [/ wppa_set] zurücksetzen"
17409
 
17410
+ #: wppa-settings-autosave.php:7576
17411
  #, fuzzy
17412
  msgid "Use with great care! There is no check on validity of values!"
17413
  msgstr ""
17414
  "Verwenden Sie mit großer Sorgfalt! Es gibt keine Prüfung auf Gültigkeit von "
17415
  "Werten!"
17416
 
17417
+ #: wppa-settings-autosave.php:7583
17418
  #, fuzzy
17419
  msgid "Runtime modifyable settings"
17420
  msgstr "Runtime modifizierbaren Einstellungen"
17421
 
17422
+ #: wppa-settings-autosave.php:7584
17423
  #, fuzzy
17424
  msgid "The setting slugs that may be altered using [wppa_set] shortcode."
17425
  msgstr ""
17426
  "Die Einstellung Schnecken, die verändert werden können, unter Verwendung von "
17427
  "[wppa_set] Shortcode."
17428
 
17429
+ #: wppa-settings-autosave.php:7593
17430
  #, fuzzy
17431
  msgid "WPPA+ Admin related miscellaneous settings"
17432
  msgstr "WPPA Admin im Zusammenhang verschiedene Einstellungen"
17433
 
17434
+ #: wppa-settings-autosave.php:7595
17435
  #, fuzzy
17436
  msgid "Allow HTML"
17437
  msgstr "HTML zulassen"
17438
 
17439
+ #: wppa-settings-autosave.php:7596
17440
  #, fuzzy
17441
  msgid "Allow HTML in album and photo descriptions."
17442
  msgstr "Lassen Sie HTML in Album und Fotobeschreibungen."
17443
 
17444
+ #: wppa-settings-autosave.php:7597 wppa-settings-autosave.php:7606
17445
  #, fuzzy
17446
  msgid ""
17447
  "If checked: html is allowed. WARNING: No checks on syntax, it is your own "
17450
  "Wenn diese Option aktiviert: HTML ist erlaubt. Warnung: Keine Kontrollen auf "
17451
  "Syntax, es ist Ihre eigene Verantwortung Tags richtig zu schließen!"
17452
 
17453
+ #: wppa-settings-autosave.php:7604
17454
  #, fuzzy
17455
  msgid "Allow HTML custom"
17456
  msgstr "Lassen Sie HTML benutzerdefinierte"
17457
 
17458
+ #: wppa-settings-autosave.php:7605
17459
  #, fuzzy
17460
  msgid "Allow HTML in custom photo datafields."
17461
  msgstr "Lassen Sie HTML in kundenspezifischen Fotodatenfelder."
17462
 
17463
+ #: wppa-settings-autosave.php:7613
17464
  #, fuzzy
17465
  msgid "Check tag balance"
17466
  msgstr "Guthaben prüfen"
17467
 
17468
+ #: wppa-settings-autosave.php:7614
17469
  #, fuzzy
17470
  msgid "Check if the HTML tags are properly closed: \"balanced\"."
17471
  msgstr ""
17472
  "Überprüfen Sie, ob die HTML-Tags richtig geschlossen sind: \"ausgewogen\"."
17473
 
17474
+ #: wppa-settings-autosave.php:7615
17475
  #, fuzzy
17476
  msgid ""
17477
  "If the HTML tags in an album or a photo description are not in balance, the "
17481
  "Gleichgewicht sind, wird die Beschreibung nicht aktualisiert, wird eine "
17482
  "Fehlernachricht angezeigt"
17483
 
17484
+ #: wppa-settings-autosave.php:7622
17485
  #, fuzzy
17486
  msgid "Use WP editor"
17487
  msgstr "Verwenden WP-Editor"
17488
 
17489
+ #: wppa-settings-autosave.php:7623
17490
  #, fuzzy
17491
  msgid "Use the wp editor for multiline text fields."
17492
  msgstr "Verwenden Sie die wp-Editor für mehrzeilige Textfelder."
17493
 
17494
+ #: wppa-settings-autosave.php:7631
17495
  #, fuzzy
17496
  msgid "Album sel hierarchic"
17497
  msgstr "Album sel hierarchischer"
17498
 
17499
+ #: wppa-settings-autosave.php:7632
17500
  #, fuzzy
17501
  msgid "Show albums with (grand)parents in selection lists."
17502
  msgstr "Zeige Alben mit (Groß-) Eltern in Auswahllisten."
17503
 
17504
+ #: wppa-settings-autosave.php:7640
17505
  #, fuzzy
17506
  msgid "Page sel hierarchic"
17507
  msgstr "Seite sel hierarchischer"
17508
 
17509
+ #: wppa-settings-autosave.php:7641
17510
  #, fuzzy
17511
  msgid "Show pages with (grand)parents in selection lists."
17512
  msgstr "Seiten anzeigen mit (Groß-) Eltern in Auswahllisten."
17513
 
17514
+ #: wppa-settings-autosave.php:7650
17515
  #, fuzzy
17516
  msgid "Photo admin page size"
17517
  msgstr "Foto Admin-Seite Größe"
17518
 
17519
+ #: wppa-settings-autosave.php:7651
17520
  #, fuzzy
17521
  msgid ""
17522
  "The number of photos per page on the <br/>Edit Album -> Manage photos and "
17525
  "Die Anzahl der Fotos pro Seite am <br/> Album bearbeiten -> Fotos verwalten "
17526
  "und bearbeiten Fotos Admin-Seiten."
17527
 
17528
+ #: wppa-settings-autosave.php:7661
17529
  #, fuzzy
17530
  msgid "Comment admin page size"
17531
  msgstr "Kommentar Admin-Seite Größe"
17532
 
17533
+ #: wppa-settings-autosave.php:7662
17534
  #, fuzzy
17535
  msgid "The number of comments per page on the Comments admin pages."
17536
  msgstr "Die Anzahl der Kommentare pro Seite auf den Comments Admin-Seiten."
17537
 
17538
+ #: wppa-settings-autosave.php:7672
17539
  #, fuzzy
17540
  msgid "Geo info edit"
17541
  msgstr "Geo Info bearbeiten"
17542
 
17543
+ #: wppa-settings-autosave.php:7673
17544
  #, fuzzy
17545
  msgid "Lattitude and longitude may be edited in photo admin."
17546
  msgstr "Lattitude und Länge kann in Foto Admin bearbeitet werden."
17547
 
17548
+ #: wppa-settings-autosave.php:7681
17549
  #, fuzzy
17550
  msgid "Admin bar menu admin"
17551
  msgstr "Admin Bar-Menü Admin"
17552
 
17553
+ #: wppa-settings-autosave.php:7682
17554
  #, fuzzy
17555
  msgid "Show menu on admin bar on admin pages."
17556
  msgstr "Zeigen Sie Menü auf Admin-Bar auf Admin-Seiten."
17557
 
17558
+ #: wppa-settings-autosave.php:7690
17559
  #, fuzzy
17560
  msgid "Admin bar menu frontend"
17561
  msgstr "Admin Bar Menü-Frontend"
17562
 
17563
+ #: wppa-settings-autosave.php:7691
17564
  #, fuzzy
17565
  msgid "Show menu on admin bar on frontend pages."
17566
  msgstr "Zeigen Sie Menü auf Admin-Bar auf Frontend-Seiten."
17567
 
17568
+ #: wppa-settings-autosave.php:7699
17569
  #, fuzzy
17570
  msgid "Add shortcode to posts"
17571
  msgstr "In Kurzwahl zu Beiträge"
17572
 
17573
+ #: wppa-settings-autosave.php:7700
17574
  #, fuzzy
17575
  msgid "Add a shortcode to the end of all posts."
17576
  msgstr "Fügen Sie eine Kurzwahlnummer an das Ende aller Beiträge."
17577
 
17578
+ #: wppa-settings-autosave.php:7708
17579
  #, fuzzy
17580
  msgid "Shortcode to add"
17581
  msgstr "Shortcode hinzufügen"
17582
 
17583
+ #: wppa-settings-autosave.php:7709
17584
  #, fuzzy
17585
  msgid "The shortcode to be added to the posts."
17586
  msgstr "Die Kurzwahlnummer zu werden, um die Beiträge hinzugefügt."
17587
 
17588
+ #: wppa-settings-autosave.php:7717
17589
  #, fuzzy
17590
  msgid "We use Scripts"
17591
  msgstr "Wir verwenden Scripts"
17592
 
17593
+ #: wppa-settings-autosave.php:7718
17594
  #, fuzzy
17595
  msgid "Use scripting syntax in shortcode generator."
17596
  msgstr "Verwenden Sie Skriptsyntax in Shortcode-Generator."
17597
 
17598
+ #: wppa-settings-autosave.php:7719
17599
  #, fuzzy
17600
  msgid ""
17601
  "This setting defines if the shortcode generator outputs old style script "
17604
  "Diese Einstellung legt fest, ob der Shortcode Generator alten Stil Script-"
17605
  "Tags oder neuen Stil Shortcodes ausgibt."
17606
 
17607
+ #: wppa-settings-autosave.php:7727
17608
  #, fuzzy
17609
  msgid "Import page prieviews"
17610
  msgstr "Import Seite prieviews"
17611
 
17612
+ #: wppa-settings-autosave.php:7728
17613
  #, fuzzy
17614
  msgid "Show thumbnail previews in import admin page."
17615
  msgstr "Zeigen Sie Miniaturansichten in Import Admin-Seite."
17616
 
17617
+ #: wppa-settings-autosave.php:7736
17618
  #, fuzzy
17619
  msgid "Upload audiostub"
17620
  msgstr "laden Sie audiostub"
17621
 
17622
+ #: wppa-settings-autosave.php:7737
17623
  #, fuzzy
17624
  msgid "Upload a new audio stub file"
17625
  msgstr "Laden Sie eine neue Audio-Stub-Datei"
17626
 
17627
+ #: wppa-settings-autosave.php:7741
17628
  #, fuzzy
17629
  msgid "Upload audio stub image"
17630
  msgstr "Laden Sie Audio-Stub-Bild"
17631
 
17632
+ #: wppa-settings-autosave.php:7746
17633
  #, fuzzy
17634
  msgid "Confirm create"
17635
  msgstr "bestätigen erstellen"
17636
 
17637
+ #: wppa-settings-autosave.php:7747
17638
  #, fuzzy
17639
  msgid "Display confirmation dialog before creating album."
17640
  msgstr "Display-Bestätigungsdialog, bevor das Album zu erstellen."
17641
 
17642
+ #: wppa-settings-autosave.php:7755
17643
  #, fuzzy
17644
  msgid "Import source root"
17645
  msgstr "Import Quelle Wurzel"
17646
 
17647
+ #: wppa-settings-autosave.php:7756
17648
  #, fuzzy
17649
  msgid "Specify the highest level in the filesystem where to import from"
17650
  msgstr "Geben Sie die höchste Ebene im Dateisystem, wo zur Einfuhr aus"
17651
 
17652
+ #: wppa-settings-autosave.php:7773
17653
  #, fuzzy
17654
  msgid "Allow import from WPPA+ source folders"
17655
  msgstr "Lassen Sie Import aus WPPA Quellordner"
17656
 
17657
+ #: wppa-settings-autosave.php:7774
17658
  #, fuzzy
17659
  msgid "Only switch this on if you know what you are doing!"
17660
  msgstr "Nur diese einschalten, wenn Sie wissen, was Sie tun!"
17661
 
17662
+ #: wppa-settings-autosave.php:7783
17663
  #, fuzzy
17664
  msgid "SEO related settings"
17665
  msgstr "SEO bezogenen Einstellungen"
17666
 
17667
+ #: wppa-settings-autosave.php:7785
17668
  #, fuzzy
17669
  msgid "Meta on page"
17670
  msgstr "Meta auf Seite"
17671
 
17672
+ #: wppa-settings-autosave.php:7786
17673
  #, fuzzy
17674
  msgid "Meta tags for photos on the page."
17675
  msgstr "Meta-Tags für Fotos auf der Seite."
17676
 
17677
+ #: wppa-settings-autosave.php:7787
17678
  #, fuzzy
17679
  msgid ""
17680
  "If checked, the header of the page will contain metatags that refer to "
17683
  "Wenn diese Option aktiviert, wird der Header der Seite Metatags enthalten, "
17684
  "die vorgestellten Fotos auf der Seite im Seitenkontext verweisen."
17685
 
17686
+ #: wppa-settings-autosave.php:7794
17687
  #, fuzzy
17688
  msgid "Meta all"
17689
  msgstr "Meta alle"
17690
 
17691
+ #: wppa-settings-autosave.php:7795
17692
  #, fuzzy
17693
  msgid "Meta tags for all featured photos."
17694
  msgstr "Meta-Tags für alle vorgestellten Fotos."
17695
 
17696
+ #: wppa-settings-autosave.php:7796
17697
  #, fuzzy
17698
  msgid ""
17699
  "If checked, the header of the page will contain metatags that refer to all "
17702
  "Wenn diese Option aktiviert, wird der Header der Seite Metatags enthalten, "
17703
  "die für alle vorgestellten Fotodateien verweisen."
17704
 
17705
+ #: wppa-settings-autosave.php:7797
17706
  #, fuzzy
17707
  msgid ""
17708
  "If you have many featured photos, you might wish to uncheck this item to "
17711
  "Wenn Sie viele vorgestellten Fotos haben, möchten Sie vielleicht diesen "
17712
  "Artikel zu deaktivieren Sie die Größe des Seitenkopfes zu reduzieren."
17713
 
17714
+ #: wppa-settings-autosave.php:7804
17715
  #, fuzzy
17716
  msgid "Add og meta tags"
17717
  msgstr "In og Meta-Tags"
17718
 
17719
+ #: wppa-settings-autosave.php:7805
17720
  #, fuzzy
17721
  msgid "Add og meta tags to the page header."
17722
  msgstr "In og Meta-Tags auf den Seitenkopf."
17723
 
17724
+ #: wppa-settings-autosave.php:7808
17725
  #, fuzzy
17726
  msgid ""
17727
  "Turning this off may affect the functionality of social media items in the "
17730
  "Dieses Ausschalten kann die Funktionalität von Social-Media-Elemente in der "
17731
  "Mitteilungsbox auswirken, die auf Open Graph-Tags Informationen verlassen."
17732
 
17733
+ #: wppa-settings-autosave.php:7814
17734
  #, fuzzy
17735
  msgid "Image Alt attribute type"
17736
  msgstr "Bild Alt Attributtyp"
17737
 
17738
+ #: wppa-settings-autosave.php:7815
17739
  #, fuzzy
17740
  msgid "Select kind of HTML alt=\"\" content for images."
17741
  msgstr "Wählen Sie Art von HTML alt = \"\" Inhalt für Bilder."
17742
 
17743
+ #: wppa-settings-autosave.php:7818
17744
  #, fuzzy
17745
  msgid "photo name"
17746
  msgstr ""
17747
  "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 120 (Caption) wie "
17748
  "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
17749
 
17750
+ #: wppa-settings-autosave.php:7818
17751
  #, fuzzy
17752
  msgid "name without file-ext"
17753
  msgstr "Name ohne Datei-ext"
17754
 
17755
+ #: wppa-settings-autosave.php:7818
17756
  #, fuzzy
17757
  msgid "set in album admin"
17758
  msgstr "Album-Admin gesetzt"
17759
 
17760
+ #: wppa-settings-autosave.php:7825
17761
  #, fuzzy
17762
  msgid "New Album and New Photo related miscellaneous settings"
17763
  msgstr "Neues Album und neue Foto im Zusammenhang verschiedene Einstellungen"
17764
 
17765
+ #: wppa-settings-autosave.php:7863
17766
  #, fuzzy
17767
  msgid "Maximum time an album is indicated as New"
17768
  msgstr "Maximale Zeit ein Album als neu angezeigt"
17769
 
17770
+ #: wppa-settings-autosave.php:7871
17771
  #, fuzzy
17772
  msgid "New Photo"
17773
  msgstr "Neues Foto"
17774
 
17775
+ #: wppa-settings-autosave.php:7872
17776
  #, fuzzy
17777
  msgid "Maximum time a photo is indicated as New"
17778
  msgstr "Maximale Zeit ein Foto als neu angezeigt"
17779
 
17780
+ #: wppa-settings-autosave.php:7880
17781
  #, fuzzy
17782
  msgid "Modified Album"
17783
  msgstr "Modifizierte Album"
17784
 
17785
+ #: wppa-settings-autosave.php:7881
17786
  #, fuzzy
17787
  msgid "Maximum time an album is indicated as Modified"
17788
  msgstr "Maximale Zeit ein Album als Modified angezeigt"
17789
 
17790
+ #: wppa-settings-autosave.php:7889
17791
  #, fuzzy
17792
  msgid "Modified Photo"
17793
  msgstr "Modifizierte Foto"
17794
 
17795
+ #: wppa-settings-autosave.php:7890
17796
  #, fuzzy
17797
  msgid "Maximum time a photo is indicated as Modofied"
17798
  msgstr "Maximale Zeit ein Foto als Modofied angezeigt"
17799
 
17800
+ #: wppa-settings-autosave.php:7898
17801
  #, fuzzy
17802
  msgid "Use text labels"
17803
+ msgstr "Textbeschriftungen"
17804
 
17805
+ #: wppa-settings-autosave.php:7899
17806
  #, fuzzy
17807
  msgid "Use editable text for the New and Modified labels"
17808
  msgstr ""
17809
  "Verwenden Sie editierbaren Text für die neuen und geänderten Beschriftungen"
17810
 
17811
+ #: wppa-settings-autosave.php:7900
17812
  #, fuzzy
17813
  msgid "If UNticked, you can specify the urls for custom images to be used."
17814
  msgstr ""
17815
  "Wenn unticked, können Sie die URLs angeben, für benutzerdefinierte Bilder "
17816
  "verwendet werden."
17817
 
17818
+ #: wppa-settings-autosave.php:7911
17819
  #, fuzzy
17820
  msgid "Orange"
17821
  msgstr "Orange"
17822
 
17823
+ #: wppa-settings-autosave.php:7912
17824
  #, fuzzy
17825
  msgid "Yellow"
17826
+ msgstr "Gelb"
17827
 
17828
+ #: wppa-settings-autosave.php:7915
17829
  #, fuzzy
17830
  msgid "Purple"
17831
  msgstr "Violett"
17832
 
17833
+ #: wppa-settings-autosave.php:7916
17834
  #, fuzzy
17835
  msgid "Black/white"
17836
  msgstr "schwarz / weiß"
17837
 
17838
+ #: wppa-settings-autosave.php:7928 wppa-settings-autosave.php:7950
17839
  #, fuzzy
17840
  msgid "New label"
17841
  msgstr "Neues Label hinzufügen"
17842
 
17843
+ #: wppa-settings-autosave.php:7929
17844
  #, fuzzy
17845
  msgid "Specify the \"New\" indicator details."
17846
  msgstr "Geben Sie die \"Neu\" Anzeige Details."
17847
 
17848
+ #: wppa-settings-autosave.php:7930 wppa-settings-autosave.php:7941
17849
  #, fuzzy
17850
  msgid "If you use qTranslate, the text may be multilingual."
17851
  msgstr "Wenn Sie qTranslate verwenden, kann der Text mehrsprachig sein."
17852
 
17853
+ #: wppa-settings-autosave.php:7939 wppa-settings-autosave.php:7959
17854
  #, fuzzy
17855
  msgid "Modified label"
17856
  msgstr "Modifizierte Etikett"
17857
 
17858
+ #: wppa-settings-autosave.php:7940
17859
  #, fuzzy
17860
  msgid "Specify the \"Modified\" indicator details."
17861
  msgstr "Geben Sie die \"Modified\" Anzeige Details."
17862
 
17863
+ #: wppa-settings-autosave.php:7951
17864
  #, fuzzy
17865
  msgid "Specify the \"New\" indicator url."
17866
  msgstr "Geben Sie den \"Neu\" Indikator url."
17867
 
17868
+ #: wppa-settings-autosave.php:7960
17869
  #, fuzzy
17870
  msgid "Specify the \"Modified\" indicator url."
17871
  msgstr "Geben Sie die \"Modified\" Indikator url."
17872
 
17873
+ #: wppa-settings-autosave.php:7968
17874
  #, fuzzy
17875
  msgid "Limit LasTen New"
17876
  msgstr "Limit lasten New"
17877
 
17878
+ #: wppa-settings-autosave.php:7969
17879
  #, fuzzy
17880
  msgid "Limits the LasTen photos to those that are 'New', or newly modified."
17881
  msgstr ""
17882
  "Begrenzt die lasten Fotos zu denen, die \"Neu\" oder neu modifiziert sind."
17883
 
17884
+ #: wppa-settings-autosave.php:7970
17885
  #, fuzzy
17886
  msgid ""
17887
  "If you tick this box and configured the new photo time, you can even limit "
17892
  "können Sie auch die Nummer von der Einstellung in Tabelle I-F7 begrenzen "
17893
  "oder diese Zahl auf einen unwahrscheinlich hohen Wert eingestellt."
17894
 
17895
+ #: wppa-settings-autosave.php:7977
17896
  #, fuzzy
17897
  msgid "LasTen use Modified"
17898
  msgstr "Lasten Verwendung Geändert"
17899
 
17900
+ #: wppa-settings-autosave.php:7978
17901
  #, fuzzy
17902
  msgid ""
17903
  "Use the time modified rather than time upload for LasTen widget/shortcode."
17905
  "Nutzen Sie die Zeit geändert, anstatt Zeit Upload für lasten Widget / "
17906
  "Shortcode."
17907
 
17908
+ #: wppa-settings-autosave.php:7986
17909
  #, fuzzy
17910
  msgid "Apply Newphoto desc"
17911
  msgstr "Bewerben Newphoto ab"
17912
 
17913
+ #: wppa-settings-autosave.php:7987
17914
  #, fuzzy
17915
  msgid "Give each new photo a standard description."
17916
  msgstr "Geben Sie jedem neuen Foto, um eine Standardbeschreibung."
17917
 
17918
+ #: wppa-settings-autosave.php:7988
17919
  #, fuzzy
17920
  msgid ""
17921
  "If checked, each new photo will get the description (template) as specified "
17924
  "Wenn diese Option aktiviert, wird jedes neue Foto erhalten die Beschreibung "
17925
  "(Vorlage), wie im nächsten Punkt angegeben."
17926
 
17927
+ #: wppa-settings-autosave.php:7995
17928
  #, fuzzy
17929
  msgid "New photo desc"
17930
  msgstr "Neues Foto ab"
17931
 
17932
+ #: wppa-settings-autosave.php:7996
17933
  #, fuzzy
17934
  msgid "The description (template) to add to a new photo."
17935
  msgstr "Die Beschreibung (Template) in ein neues Foto hinzuzufügen."
17936
 
17937
+ #: wppa-settings-autosave.php:7997
17938
  #, fuzzy
17939
  msgid "Enter the default description."
17940
  msgstr "Geben Sie die Standardbeschreibung."
17941
 
17942
+ #: wppa-settings-autosave.php:7998
17943
  #, fuzzy
17944
  msgid "If you use html, please check item A-1 of this table."
17945
  msgstr "Wenn Sie HTML verwenden, bitte Artikel A-1 überprüfen dieser Tabelle."
17946
 
17947
+ #: wppa-settings-autosave.php:8005
17948
  #, fuzzy
17949
  msgid "New photo owner"
17950
  msgstr "Neue Foto Besitzer"
17951
 
17952
+ #: wppa-settings-autosave.php:8006
17953
  #, fuzzy
17954
  msgid "The owner of a new uploaded photo."
17955
  msgstr "Der Besitzer eines neuen geladenes Foto."
17956
 
17957
+ #: wppa-settings-autosave.php:8007
17958
  #, fuzzy
17959
  msgid "If you leave this blank, the uploader will be set as the owner"
17960
  msgstr ""
17961
  "Wenn Sie dieses Feld leer lassen, wird der Uploader als Eigentümer "
17962
  "festgelegt werden"
17963
 
17964
+ #: wppa-settings-autosave.php:8009
17965
  #, fuzzy
17966
  msgid "leave blank or enter login name"
17967
  msgstr "leer lassen oder Login-Namen eingeben"
17968
 
17969
+ #: wppa-settings-autosave.php:8015
17970
  #, fuzzy
17971
  msgid "New albums are created with this upload limit."
17972
  msgstr "Neue Alben werden mit diesem Upload-Limit erstellt."
17973
 
17974
+ #: wppa-settings-autosave.php:8016
17975
  #, fuzzy
17976
  msgid ""
17977
  "Administrators can change the limit settings in the \"Edit Album Information"
17980
  "Administratoren können die Grenzeinstellungen im \"Album bearbeiten "
17981
  "Information\" Admin-Seite ändern."
17982
 
17983
+ #: wppa-settings-autosave.php:8033
17984
  #, fuzzy
17985
  msgid "Default parent"
17986
  msgstr "Standard Mutter"
17987
 
17988
+ #: wppa-settings-autosave.php:8034
17989
  #, fuzzy
17990
  msgid "The parent album of new albums."
17991
  msgstr "Die Mutter Album von neuen Alben."
17992
 
17993
+ #: wppa-settings-autosave.php:8051
17994
  #, fuzzy
17995
  msgid "Default parent always"
17996
  msgstr "Standard Eltern immer"
17997
 
17998
+ #: wppa-settings-autosave.php:8052
17999
  #, fuzzy
18000
  msgid ""
18001
  "The parent album of new albums is always the default, except for "
18004
  "Die Mutter Album von neuen Alben ist immer die Standard, mit Ausnahme von "
18005
  "Administratoren."
18006
 
18007
+ #: wppa-settings-autosave.php:8060
18008
  #, fuzzy
18009
  msgid "Show album full"
18010
  msgstr "Anzeigen Album voller"
18011
 
18012
+ #: wppa-settings-autosave.php:8061
18013
  #, fuzzy
18014
  msgid "Show the Upload limit reached message if appropriate."
18015
  msgstr "Zeigen Sie den Upload-Limit erreicht Nachricht, wenn angemessen."
18016
 
18017
+ #: wppa-settings-autosave.php:8069
18018
  #, fuzzy
18019
  msgid "Grant an album"
18020
  msgstr "Gewähren Sie ein Album"
18021
 
18022
+ #: wppa-settings-autosave.php:8070
18023
  #, fuzzy
18024
  msgid "Create an album for each user logging in."
18025
  msgstr "Erstellen Sie ein Album für jeden Benutzer anmeldet."
18026
 
18027
+ #: wppa-settings-autosave.php:8078
18028
  #, fuzzy
18029
  msgid "Grant album name"
18030
  msgstr "Grants Albumname"
18031
 
18032
+ #: wppa-settings-autosave.php:8079
18033
  #, fuzzy
18034
  msgid "The name to be used for the album."
18035
  msgstr "Der Name, der für das Album verwendet werden."
18036
 
18037
+ #: wppa-settings-autosave.php:8082
18038
  #, fuzzy
18039
  msgid "Login name"
18040
  msgstr "Login-Name"
18041
 
18042
+ #: wppa-settings-autosave.php:8082 wppa-upldr-widget.php:182
18043
  #, fuzzy
18044
  msgid "Display name"
18045
  msgstr "Name anzeigen"
18046
 
18047
+ #: wppa-settings-autosave.php:8082
18048
  #, fuzzy
18049
  msgid "Id"
18050
  msgstr "ID"
18051
 
18052
+ #: wppa-settings-autosave.php:8082
18053
  #, fuzzy
18054
  msgid "Firstname Lastname"
18055
+ msgstr "Vorname Nachnamesample attendee email name"
18056
 
18057
+ #: wppa-settings-autosave.php:8089
18058
  #, fuzzy
18059
  msgid "Grant parent"
18060
  msgstr "Grants Eltern"
18061
 
18062
+ #: wppa-settings-autosave.php:8090
18063
  #, fuzzy
18064
  msgid "The parent album of the auto created albums."
18065
  msgstr "Die Mutter Album der Auto bestehenden Alben."
18066
 
18067
+ #: wppa-settings-autosave.php:8091
18068
  #, fuzzy
18069
  msgid ""
18070
  "You may select multiple albums. All logged in visitors will get their own "
18073
  "Sie können mehrere Alben auswählen. Alle Angemeldete Besucher werden ihre "
18074
  "eigenen Unter Album in jedem gewährt Eltern bekommen."
18075
 
18076
+ #: wppa-settings-autosave.php:8107
18077
  #, fuzzy
18078
  msgid "Max user albums"
18079
  msgstr "Max Benutzeralben"
18080
 
18081
+ #: wppa-settings-autosave.php:8108
18082
  #, fuzzy
18083
  msgid "The max number of albums a user can create."
18084
  msgstr "Die maximale Anzahl von Alben ein Benutzer erstellen kann."
18085
 
18086
+ #: wppa-settings-autosave.php:8109
18087
  #, fuzzy
18088
  msgid ""
18089
  "The maximum number of albums a user can create when he is not admin and "
18092
  "Die maximale Anzahl der Alben kann ein Benutzer erstellen, wenn er nicht "
18093
  "admin und Besitzer nur aktiv"
18094
 
18095
+ #: wppa-settings-autosave.php:8110
18096
  #, fuzzy
18097
  msgid "A number of 0 means No limit"
18098
  msgstr "Eine Reihe von 0 bedeutet keine Begrenzung"
18099
 
18100
+ #: wppa-settings-autosave.php:8117
18101
  #, fuzzy
18102
  msgid "Default photo name"
18103
  msgstr "Standardbild"
18104
 
18105
+ #: wppa-settings-autosave.php:8118
18106
  #, fuzzy
18107
  msgid "Select the way the name of a new uploaded photo should be determined."
18108
  msgstr ""
18109
  "Wählen Sie die Art und Weise der Name eines neuen hochgeladenen Foto sollte "
18110
  "bestimmt werden."
18111
 
18112
+ #: wppa-settings-autosave.php:8121
18113
  #, fuzzy
18114
  msgid "Filename"
18115
  msgstr ""
18116
  "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 120 (Caption) wie "
18117
  "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
18118
 
18119
+ #: wppa-settings-autosave.php:8122
18120
  #, fuzzy
18121
  msgid "Filename without extension"
18122
  msgstr "Dateiname ohne Erweiterung"
18123
 
18124
+ #: wppa-settings-autosave.php:8123
18125
  #, fuzzy
18126
  msgid "IPTC Tag 2#005 (Graphic name)"
18127
  msgstr "IPTC Tag 2 # 005 (Grafikname)"
18128
 
18129
+ #: wppa-settings-autosave.php:8124
18130
  #, fuzzy
18131
  msgid "IPTC Tag 2#120 (Caption)"
18132
  msgstr "IPTC Tag 2 # 120 (Caption)"
18133
 
18134
+ #: wppa-settings-autosave.php:8125
18135
  #, fuzzy
18136
  msgid "No name at all"
18137
  msgstr "Kein Name überhaupt"
18138
 
18139
+ #: wppa-settings-autosave.php:8133
18140
  #, fuzzy
18141
  msgid "Default coverphoto"
18142
  msgstr "Standard Coverfoto"
18143
 
18144
+ #: wppa-settings-autosave.php:8134
18145
  #, fuzzy
18146
  msgid "Name of photofile to become cover image"
18147
  msgstr "Name des Photofile zu werden Cover-Bild"
18148
 
18149
+ #: wppa-settings-autosave.php:8135
18150
  #, fuzzy
18151
  msgid ""
18152
  "If you name a photofile like this setting before upload, it will become the "
18155
  "Wenn Sie eine Photofile wie diese Einstellung vor dem Hochladen nennen, wird "
18156
  "es das cover automatisch geworden."
18157
 
18158
+ #: wppa-settings-autosave.php:8142
18159
  #, fuzzy
18160
  msgid "Copy Timestamp"
18161
  msgstr "Kopieren Timestamp"
18162
 
18163
+ #: wppa-settings-autosave.php:8143
18164
  #, fuzzy
18165
  msgid "Copy timestamp when copying photo."
18166
  msgstr "Kopieren Sie Zeitstempel, wenn Foto kopieren."
18167
 
18168
+ #: wppa-settings-autosave.php:8144
18169
  #, fuzzy
18170
  msgid "If checked, the copied photo is not \"new\""
18171
  msgstr "Wenn diese Option aktiviert, ist das kopierte Foto nicht \"neu\""
18172
 
18173
+ #: wppa-settings-autosave.php:8151
18174
  #, fuzzy
18175
  msgid "Copy Owner"
18176
  msgstr "Kopieren Besitzer"
18177
 
18178
+ #: wppa-settings-autosave.php:8152
18179
  #, fuzzy
18180
  msgid "Copy the owner when copying photo."
18181
  msgstr "Kopieren Sie den Besitzer, wenn Foto kopieren."
18182
 
18183
+ #: wppa-settings-autosave.php:8160
18184
  #, fuzzy
18185
  msgid "FE Albums public"
18186
  msgstr "FE Alben öffentlich"
18187
 
18188
+ #: wppa-settings-autosave.php:8161
18189
  #, fuzzy
18190
  msgid "Frontend created albums are --- public ---"
18191
  msgstr "Frontend erstellt Alben sind --- öffentlich ---"
18192
 
18193
+ #: wppa-settings-autosave.php:8170
18194
  #, fuzzy
18195
  msgid "Optimize image files right after upload/import"
18196
  msgstr "Optimieren Sie Bilddateien direkt nach dem Upload / Import"
18197
 
18198
+ #: wppa-settings-autosave.php:8171
18199
  #, fuzzy
18200
  msgid "This option requires the plugin EWWW Image Optimizer to be activated"
18201
  msgstr "Für diese Option muss das Plugin EWWW Image Optimizer aktiviert werden"
18202
 
18203
+ #: wppa-settings-autosave.php:8178
18204
  #, fuzzy
18205
  msgid "Default album linktype"
18206
  msgstr "Standard Album linktype"
18207
 
18208
+ #: wppa-settings-autosave.php:8179
18209
  #, fuzzy
18210
  msgid "The album linktype for new albums"
18211
  msgstr "Das Album Linktyp für neue Alben"
18212
 
18213
+ #: wppa-settings-autosave.php:8198
18214
  #, fuzzy
18215
  msgid "Search Albums and Photos related settings"
18216
  msgstr "Suchen Alben und Fotos im Zusammenhang mit Einstellungen"
18217
 
18218
+ #: wppa-settings-autosave.php:8200
18219
  #, fuzzy
18220
  msgid "Search page"
18221
+ msgstr "Suchseite"
18222
 
18223
+ #: wppa-settings-autosave.php:8201
18224
  #, fuzzy
18225
  msgid "Display the search results on page."
18226
  msgstr "Zeigen Sie die Suchergebnisse zu Seite."
18227
 
18228
+ #: wppa-settings-autosave.php:8202
18229
  #, fuzzy
18230
  msgid ""
18231
  "Select the page to be used to display search results. The page MUST contain "
18234
  "Wählen Sie die Seite verwendet werden Suchergebnisse anzuzeigen. Die Seite "
18235
  "muss enthalten [WPPA] [/ WPPA]."
18236
 
18237
+ #: wppa-settings-autosave.php:8203
18238
  #, fuzzy
18239
  msgid "You may give it the title \"Search results\" or something alike."
18240
  msgstr ""
18241
  "Sie können es mit dem Titel \"Suchergebnisse\" geben oder etwas ähnlich."
18242
 
18243
+ #: wppa-settings-autosave.php:8204
18244
  #, fuzzy
18245
  msgid ""
18246
  "Or you ou may use the standard page on which you display the generic album."
18248
  "Oder Sie ou kann die Standard-Seite verwenden, auf dem Sie die generische "
18249
  "Album anzuzeigen."
18250
 
18251
+ #: wppa-settings-autosave.php:8237
18252
  #, fuzzy
18253
  msgid "Exclude separate"
18254
  msgstr "ausschließen getrennt"
18255
 
18256
+ #: wppa-settings-autosave.php:8238
18257
  #, fuzzy
18258
  msgid "Do not search 'separate' albums."
18259
  msgstr "Nicht suchen \"separate\" Alben."
18260
 
18261
+ #: wppa-settings-autosave.php:8239
18262
  #, fuzzy
18263
  msgid ""
18264
  "When checked, albums (and photos in them) that have the parent set to --- "
18267
  "Wenn diese Option aktiviert, Alben (und Fotos in ihnen), die die Eltern "
18268
  "haben auf --- --- getrennt werden aus durchsucht ausgeschlossen."
18269
 
18270
+ #: wppa-settings-autosave.php:8240
18271
  #, fuzzy
18272
  msgid ""
18273
  "Except when you start searching in a 'saparate' album, with the \"search in "
18276
  "Außer, wenn Sie beginnen, in einem 'Saparate' Album suchen, mit dem \"im "
18277
  "aktuellen Bereich suchen\" Kästchen aktiviert."
18278
 
18279
+ #: wppa-settings-autosave.php:8247
18280
  #, fuzzy
18281
  msgid "Include tags"
18282
  msgstr "Fügen Sie Tags"
18283
 
18284
+ #: wppa-settings-autosave.php:8248
18285
  #, fuzzy
18286
  msgid "Do also search the photo tags."
18287
  msgstr "Sie auch die Foto-Tags zu suchen."
18288
 
18289
+ #: wppa-settings-autosave.php:8249
18290
  #, fuzzy
18291
  msgid "When checked, the tags of the photo will also be searched."
18292
  msgstr ""
18293
  "Wenn diese Option aktiviert, werden auch die Tags des Fotos durchsucht "
18294
  "werden."
18295
 
18296
+ #: wppa-settings-autosave.php:8256
18297
  #, fuzzy
18298
  msgid "Include categories"
18299
  msgstr "Kategorien einfügen"
18300
 
18301
+ #: wppa-settings-autosave.php:8257
18302
  #, fuzzy
18303
  msgid "Do also search the album categories."
18304
  msgstr "Sie auch die Albumkategorien zu durchsuchen."
18305
 
18306
+ #: wppa-settings-autosave.php:8258
18307
  #, fuzzy
18308
  msgid "When checked, the categories of the album will also be searched."
18309
  msgstr ""
18310
  "Wenn diese Option aktiviert, werden auch die Kategorien des Albums gesucht "
18311
  "werden."
18312
 
18313
+ #: wppa-settings-autosave.php:8265
18314
  #, fuzzy
18315
  msgid "Include comments"
18316
  msgstr "Fügen Sie Kommentare"
18317
 
18318
+ #: wppa-settings-autosave.php:8266
18319
  #, fuzzy
18320
  msgid "Do also search the comments on photos."
18321
  msgstr "Sie suchen auch die Kommentare zu Fotos."
18322
 
18323
+ #: wppa-settings-autosave.php:8267
18324
  #, fuzzy
18325
  msgid "When checked, the comments of the photos will also be searched."
18326
  msgstr ""
18327
  "Wenn diese Option aktiviert, werden auch die Kommentare der Fotos durchsucht."
18328
 
18329
+ #: wppa-settings-autosave.php:8274
18330
  #, fuzzy
18331
  msgid "Photos only"
18332
  msgstr "nur Fotos"
18333
 
18334
+ #: wppa-settings-autosave.php:8275
18335
  #, fuzzy
18336
  msgid "Search for photos only."
18337
  msgstr "Suchen Sie nach Fotos nur."
18338
 
18339
+ #: wppa-settings-autosave.php:8276
18340
  #, fuzzy
18341
  msgid "When checked, only photos will be searched for."
18342
  msgstr "Wenn diese Option aktiviert, werden nur die Fotos gesucht werden."
18343
 
18344
+ #: wppa-settings-autosave.php:8291
18345
  #, fuzzy
18346
  msgid "Max albums found"
18347
  msgstr "Max Alben gefunden"
18348
 
18349
+ #: wppa-settings-autosave.php:8292
18350
  #, fuzzy
18351
  msgid "The maximum number of albums to be displayed."
18352
  msgstr "Die maximale Anzahl von Alben angezeigt werden."
18353
 
18354
+ #: wppa-settings-autosave.php:8300
18355
  #, fuzzy
18356
  msgid "Max photos found"
18357
  msgstr "Max Fotos gefunden"
18358
 
18359
+ #: wppa-settings-autosave.php:8301
18360
  #, fuzzy
18361
  msgid "The maximum number of photos to be displayed."
18362
  msgstr "Die maximale Anzahl der Fotos, die angezeigt werden."
18363
 
18364
+ #: wppa-settings-autosave.php:8309
18365
  #, fuzzy
18366
  msgid "Tags OR only"
18367
  msgstr "Tags oder nur"
18368
 
18369
+ #: wppa-settings-autosave.php:8310
18370
  #, fuzzy
18371
  msgid "No and / or buttons"
18372
  msgstr "Nein, und / oder Tasten"
18373
 
18374
+ #: wppa-settings-autosave.php:8311
18375
  #, fuzzy
18376
  msgid ""
18377
  "Hide the and/or radiobuttons and do the or method in the multitag widget and "
18380
  "Blenden Sie die und / oder Radiobuttons und tun das oder Verfahren im "
18381
  "multitag Widget und Shortcode."
18382
 
18383
+ #: wppa-settings-autosave.php:8318
18384
  #, fuzzy
18385
  msgid "Tags add Inverse"
18386
  msgstr "Stichworte hinzufügen Inverse"
18387
 
18388
+ #: wppa-settings-autosave.php:8319
18389
  #, fuzzy
18390
  msgid "Add a checkbox to invert the selection."
18391
  msgstr "Fügen Sie eine Checkbox, um die Auswahl zu invertieren."
18392
 
18393
+ #: wppa-settings-autosave.php:8320
18394
  #, fuzzy
18395
  msgid "Adds an Invert (NOT) checkbox on the multitag widget and shortcode."
18396
  msgstr ""
18397
  "Fügt ein Umkehren (NOT) Checkbox auf der multitag Widget und Shortcode."
18398
 
18399
+ #: wppa-settings-autosave.php:8327
18400
  #, fuzzy
18401
  msgid "Floating searchtoken"
18402
  msgstr "Schwimmdock searchtoken"
18403
 
18404
+ #: wppa-settings-autosave.php:8328
18405
  #, fuzzy
18406
  msgid "A match need not start at the first char."
18407
  msgstr "Ein Spiel muss nicht beim ersten Zeichen beginnen."
18408
 
18409
+ #: wppa-settings-autosave.php:8329
18410
  #, fuzzy
18411
  msgid ""
18412
  "A match is found while searching also when the entered token is somewhere in "
18415
  "Eine Übereinstimmung gefunden wird während der Suche auch dann, wenn der "
18416
  "eingegebene Token irgendwo in der Mitte eines Wortes ist."
18417
 
18418
+ #: wppa-settings-autosave.php:8330
18419
  #, fuzzy
18420
  msgid "This works in indexed search only!"
18421
  msgstr "Dies funktioniert in nur indizierte Suche!"
18422
 
18423
+ #: wppa-settings-autosave.php:8337
18424
  #, fuzzy
18425
  msgid "Search results display"
18426
  msgstr "Suchergebnisse Anzeige"
18427
 
18428
+ #: wppa-settings-autosave.php:8338
18429
  #, fuzzy
18430
  msgid "Select the way the search results should be displayed."
18431
  msgstr "Wählen Sie die Art, wie die Suchergebnisse angezeigt werden sollen."
18432
 
18433
+ #: wppa-settings-autosave.php:8339
18434
  #, fuzzy
18435
  msgid ""
18436
  "If you select anything different from \"Albums and thumbnails\", \"Photos "
18439
  "Wenn Sie etwas wählen anders \"Alben und Miniaturen\", \"Fotos nur\" "
18440
  "angenommen (Tabelle IX-E6)."
18441
 
18442
+ #: wppa-settings-autosave.php:8341
18443
  #, fuzzy
18444
  msgid "Albums and thumbnails"
18445
  msgstr "Alben und Miniaturen"
18446
 
18447
+ #: wppa-settings-autosave.php:8341
18448
  #, fuzzy
18449
  msgid "Slideonly slideshow"
18450
  msgstr "Slideonly Diashow"
18451
 
18452
+ #: wppa-settings-autosave.php:8348
18453
  #, fuzzy
18454
  msgid "Name max length"
18455
  msgstr "Maximale Länge"
18456
 
18457
+ #: wppa-settings-autosave.php:8349
18458
  #, fuzzy
18459
  msgid "Max length of displayed photonames in supersearch selectionlist"
18460
  msgstr "Max Länge der angezeigten photonames in Superselection"
18461
 
18462
+ #: wppa-settings-autosave.php:8350 wppa-settings-autosave.php:8359
18463
  #, fuzzy
18464
  msgid ""
18465
  "To limit the length of the selectionlist, enter the number of characters to "
18468
  "Um die Länge des Selection begrenzen, geben Sie die Anzahl der Zeichen zu "
18469
  "zeigen."
18470
 
18471
+ #: wppa-settings-autosave.php:8357
18472
  #, fuzzy
18473
  msgid "Text max length"
18474
  msgstr "Maximale Länge"
18475
 
18476
+ #: wppa-settings-autosave.php:8358
18477
  #, fuzzy
18478
  msgid "Max length of displayed photo text in supersearch selectionlist"
18479
  msgstr "Max Länge der angezeigten Fotos Text in Superselection"
18480
 
18481
+ #: wppa-settings-autosave.php:8366
18482
  #, fuzzy
18483
  msgid "Search toptext"
18484
  msgstr "Suchen Toptext"
18485
 
18486
+ #: wppa-settings-autosave.php:8367
18487
  #, fuzzy
18488
  msgid "The text at the top of the search box."
18489
  msgstr "Der Text an der Spitze der Suchfeld ein."
18490
 
18491
+ #: wppa-settings-autosave.php:8368
18492
  #, fuzzy
18493
  msgid "May contain unfiltered HTML."
18494
  msgstr "Kann ungefilterten HTML enthalten."
18495
 
18496
+ #: wppa-settings-autosave.php:8375
18497
  #, fuzzy
18498
  msgid "Section search text"
18499
  msgstr "Abschnitt Suchtext"
18500
 
18501
+ #: wppa-settings-autosave.php:8376 wppa-settings-autosave.php:8385
18502
  #, fuzzy
18503
  msgid "The labeltext at the checkbox."
18504
  msgstr "Der Labeltext bei der Checkbox."
18505
 
18506
+ #: wppa-settings-autosave.php:8384
18507
  #, fuzzy
18508
  msgid "Results search text"
18509
  msgstr "Ergebnisse Suchtext"
18510
 
18511
+ #: wppa-settings-autosave.php:8394
18512
  #, fuzzy
18513
  msgid "Watermark related settings"
18514
  msgstr "Wasserzeichen im Zusammenhang mit Einstellungen"
18515
 
18516
+ #: wppa-settings-autosave.php:8397
18517
  #, fuzzy
18518
  msgid "Enable the application of watermarks."
18519
  msgstr "Aktivieren Sie die Anwendung von Wasserzeichen."
18520
 
18521
+ #: wppa-settings-autosave.php:8398
18522
  #, fuzzy
18523
  msgid "If checked, photos can be watermarked during upload / import."
18524
  msgstr ""
18525
  "Wenn diese Option aktiviert, können Fotos beim Upload / Import mit "
18526
  "Wasserzeichen versehen werden."
18527
 
18528
+ #: wppa-settings-autosave.php:8407
18529
  #, fuzzy
18530
  msgid "Watermark file"
18531
  msgstr "Wende Wasserzeichen-Datei an:"
18532
 
18533
+ #: wppa-settings-autosave.php:8408
18534
  #, fuzzy
18535
  msgid "The default watermarkfile to be used."
18536
  msgstr "Der Standard watermarkfile verwendet werden."
18537
 
18538
+ #: wppa-settings-autosave.php:8409
18539
  #, fuzzy
18540
  msgid "Watermark files are of type png and reside in"
18541
  msgstr "Wasserzeichen-Dateien sind vom Typ png und befinden sich in"
18542
 
18543
+ #: wppa-settings-autosave.php:8410
18544
  #, fuzzy
18545
  msgid ""
18546
  "A suitable watermarkfile typically consists of a transparent background and "
18549
  "Ein geeignetes watermarkfile besteht typischerweise aus einem transparenten "
18550
  "Hintergrund und einem schwarzen Text oder Zeichnung."
18551
 
18552
+ #: wppa-settings-autosave.php:8412
18553
  #, fuzzy
18554
  msgid ""
18555
  "You may also select one of the textual watermark types at the bottom of the "
18558
  "Sie können sich auch an der Unterseite der Auswahlliste eines der "
18559
  "Textwasserzeichen-Typen auswählen."
18560
 
18561
+ #: wppa-settings-autosave.php:8416
18562
  #, fuzzy
18563
  msgid "position:"
18564
  msgstr "Position:"
18565
 
18566
+ #: wppa-settings-autosave.php:8422
18567
  #, fuzzy
18568
  msgid "Upload watermark"
18569
  msgstr "hochladen von Wasserzeichen"
18570
 
18571
+ #: wppa-settings-autosave.php:8423
18572
  #, fuzzy
18573
  msgid "Upload a new watermark file"
18574
  msgstr "Laden Sie ein neues Wasserzeichen-Datei"
18575
 
18576
+ #: wppa-settings-autosave.php:8427
18577
  #, fuzzy
18578
  msgid "Upload watermark image"
18579
  msgstr "Hochladen von Wasserzeichen"
18580
 
18581
+ #: wppa-settings-autosave.php:8432
18582
  #, fuzzy
18583
  msgid "Watermark opacity image"
18584
  msgstr "Wasserzeichen Opazität Bild"
18585
 
18586
+ #: wppa-settings-autosave.php:8433
18587
  #, fuzzy
18588
  msgid "You can set the intensity of image watermarks here."
18589
  msgstr "Sie können die Intensität des Bildes hier eingestellten Wasserzeichen."
18590
 
18591
+ #: wppa-settings-autosave.php:8434 wppa-settings-autosave.php:8519
18592
  #, fuzzy
18593
  msgid ""
18594
  "The higher the number, the intenser the watermark. Value must be > 0 and <= "
18597
  "Je höher die Zahl, desto intenser das Wasserzeichen. Der Wert muss> 0 und <= "
18598
  "100."
18599
 
18600
+ #: wppa-settings-autosave.php:8441
18601
  #, fuzzy
18602
  msgid "Textual watermark style"
18603
  msgstr "Textual Wasserzeichen Stil"
18604
 
18605
+ #: wppa-settings-autosave.php:8442
18606
  #, fuzzy
18607
  msgid "The way the textual watermarks look like"
18608
  msgstr "Die Art, wie die Textwasserzeichen aussehen"
18609
 
18610
+ #: wppa-settings-autosave.php:8446
18611
  #, fuzzy
18612
  msgid "TV subtitle style"
18613
  msgstr "TV Untertitel Stil"
18614
 
18615
+ #: wppa-settings-autosave.php:8446
18616
  #, fuzzy
18617
  msgid "White text on black background"
18618
  msgstr "Weißer Text auf schwarzem Hintergrund"
18619
 
18620
+ #: wppa-settings-autosave.php:8446
18621
  #, fuzzy
18622
  msgid "Black text on white background"
18623
  msgstr "Schwarzer Text auf weißem Hintergrund"
18624
 
18625
+ #: wppa-settings-autosave.php:8446
18626
  #, fuzzy
18627
  msgid "Reverse TV style (Utopia)"
18628
  msgstr "Reverse-TV-Stil (Utopia)"
18629
 
18630
+ #: wppa-settings-autosave.php:8446
18631
  #, fuzzy
18632
  msgid "White on transparent background"
18633
  msgstr "Weiß auf transparentem Hintergrund"
18634
 
18635
+ #: wppa-settings-autosave.php:8446
18636
  #, fuzzy
18637
  msgid "Black on transparent background"
18638
  msgstr "Schwarz auf transparentem Hintergrund"
18639
 
18640
+ #: wppa-settings-autosave.php:8456
18641
  #, fuzzy
18642
  msgid "Predefined watermark text"
18643
  msgstr "Vordefinierte Wasserzeichen Text"
18644
 
18645
+ #: wppa-settings-autosave.php:8457
18646
  #, fuzzy
18647
  msgid "The text to use when --- pre-defined --- is selected."
18648
  msgstr "Der Text zu verwenden, wenn --- vordefinierte --- ausgewählt ist."
18649
 
18650
+ #: wppa-settings-autosave.php:8458
18651
  #, fuzzy
18652
  msgid "You may use the following keywords:"
18653
  msgstr "Sie können folgende Schlüsselwörter verwenden:"
18654
 
18655
+ #: wppa-settings-autosave.php:8459
18656
  #, fuzzy
18657
  msgid ""
18658
  "w#site, w#displayname, all standard photo keywords, iptc and exif keywords"
18660
  "w # Ort, w # displayname, alle Standard-Foto Schlüsselwörter, IPTC- und EXIF-"
18661
  "Schlüsselwörter"
18662
 
18663
+ #: wppa-settings-autosave.php:8466
18664
  #, fuzzy
18665
  msgid "Textual watermark font"
18666
  msgstr "Textual Wasserzeichen Schrift"
18667
 
18668
+ #: wppa-settings-autosave.php:8467
18669
  #, fuzzy
18670
  msgid "The font to use with textusl watermarks."
18671
  msgstr "Die Schriftart mit textusl Wasserzeichen zu verwenden."
18672
 
18673
+ #: wppa-settings-autosave.php:8468
18674
  #, fuzzy
18675
  msgid "Except for the system font, are font files of type ttf and reside in"
18676
  msgstr ""
18677
  "Mit Ausnahme der Systemschriftart sind Font-Dateien des Typs ttf und "
18678
  "befinden sich in"
18679
 
18680
+ #: wppa-settings-autosave.php:8496
18681
  #, fuzzy
18682
  msgid "Textual watermark font size"
18683
  msgstr "Textual Wasserzeichen Schriftgröße"
18684
 
18685
+ #: wppa-settings-autosave.php:8497
18686
  #, fuzzy
18687
  msgid "You can set the size of the truetype fonts only."
18688
  msgstr "Sie können nur die Größe der Truetype-Schriftarten eingestellt."
18689
 
18690
+ #: wppa-settings-autosave.php:8498
18691
  #, fuzzy
18692
  msgid ""
18693
  "System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
18696
  "Systemschriftart kann 1,2,3,4 oder 5 haben eine Größe, in einigen stoneage "
18697
  "Schriftgröße Einheiten. Jeder Wert> 5 wird als 5 behandelt werden."
18698
 
18699
+ #: wppa-settings-autosave.php:8499
18700
  #, fuzzy
18701
  msgid ""
18702
  "Truetype fonts can have any positive integer size, if your PHPs GD version "
18705
  "Truetype-Schriftarten können eine beliebige positive ganze Zahl Größe haben, "
18706
  "wenn Ihre PHPs GD Version 1 ist, in Pixel, in GD2 in Punkten."
18707
 
18708
+ #: wppa-settings-autosave.php:8500
18709
  #, fuzzy
18710
  msgid "It is unclear howmany pixels a point is..."
18711
  msgstr "Es ist unklar, howmany Pixel ein Punkt ist ..."
18712
 
18713
+ #: wppa-settings-autosave.php:8507
18714
  #, fuzzy
18715
  msgid "Upload watermark font"
18716
  msgstr "Hochladen von Wasserzeichen Schrift"
18717
 
18718
+ #: wppa-settings-autosave.php:8508
18719
  #, fuzzy
18720
  msgid "Upload a new watermark font file"
18721
  msgstr "Laden Sie ein neues Wasserzeichen Schriftdatei"
18722
 
18723
+ #: wppa-settings-autosave.php:8509
18724
  #, fuzzy
18725
  msgid ""
18726
  "Upload truetype fonts (.ttf) only, and test if they work on your server "
18729
  "Laden Sie Truetype-Schriftarten (.ttf) nur, und testen, ob sie auf dem "
18730
  "Server-Plattform arbeiten."
18731
 
18732
+ #: wppa-settings-autosave.php:8512
18733
  #, fuzzy
18734
  msgid "Upload TrueType font"
18735
  msgstr "Hochladen von Truetype-Schriftart"
18736
 
18737
+ #: wppa-settings-autosave.php:8517
18738
  #, fuzzy
18739
  msgid "Watermark opacity text"
18740
  msgstr "Deckkraft Wasserzeichen"
18741
 
18742
+ #: wppa-settings-autosave.php:8518
18743
  #, fuzzy
18744
  msgid "You can set the intensity of a text watermarks here."
18745
  msgstr ""
18746
  "Sie können die Intensität eines Textes hier eingestellten Wasserzeichen."
18747
 
18748
+ #: wppa-settings-autosave.php:8527
18749
  #, fuzzy
18750
  msgid "A real life preview. To update: refresh the page."
18751
  msgstr ""
18752
  "Ein wirkliches Leben Vorschau. So aktualisieren Sie die Seite aktualisieren."
18753
 
18754
+ #: wppa-settings-autosave.php:8538
18755
  #, fuzzy
18756
  msgid "Watermark thumbnails"
18757
  msgstr "Wasserzeichen Thumbnails"
18758
 
18759
+ #: wppa-settings-autosave.php:8539
18760
  #, fuzzy
18761
  msgid "Watermark also the thumbnail image files."
18762
  msgstr "Wasserzeichen auch die Miniaturbilddateien."
18763
 
18764
+ #: wppa-settings-autosave.php:8547
18765
  #, fuzzy
18766
  msgid "Slideshow elements sequence order settings"
18767
  msgstr "Diashow Sequenzelemente, um Einstellungen"
18768
 
18769
+ #: wppa-settings-autosave.php:8553 wppa-settings-autosave.php:8599
18770
  #, fuzzy
18771
  msgid "StartStop"
18772
  msgstr "Start stop"
18773
 
18774
+ #: wppa-settings-autosave.php:8554 wppa-settings-autosave.php:8600
18775
  #, fuzzy
18776
  msgid "SlideFrame"
18777
  msgstr "SlideFrame"
18778
 
18779
+ #: wppa-settings-autosave.php:8556
18780
  #, fuzzy
18781
  msgid "Desc"
18782
+ msgstr "absteigend"
18783
 
18784
+ #: wppa-settings-autosave.php:8559 wppa-settings-autosave.php:8604
18785
  #, fuzzy
18786
  msgid "FilmStrip"
18787
+ msgstr "Bildband"
18788
 
18789
+ #: wppa-settings-autosave.php:8560 wppa-settings-autosave.php:8605
18790
  #, fuzzy
18791
  msgid "Browsebar"
18792
  msgstr "Browsebar"
18793
 
18794
+ #: wppa-settings-autosave.php:8562 wppa-settings-autosave.php:8607
18795
  #, fuzzy
18796
  msgid "IPTC data"
18797
  msgstr "Keine IPTC-Daten"
18798
 
18799
+ #: wppa-settings-autosave.php:8563 wppa-settings-autosave.php:8608
18800
  #, fuzzy
18801
  msgid "EXIF data"
18802
  msgstr "Keine EXIF-Daten"
18803
 
18804
+ #: wppa-settings-autosave.php:8564 wppa-settings-autosave.php:8609
18805
  #, fuzzy
18806
  msgid "Share box"
18807
  msgstr "Teilen Box"
18808
 
18809
+ #: wppa-settings-autosave.php:8566 wppa-settings-autosave.php:8611
18810
  #, fuzzy
18811
  msgid "Enabled"
18812
+ msgstr "Aktiviert"
18813
 
18814
+ #: wppa-settings-autosave.php:8567 wppa-settings-autosave.php:8612
18815
  #, fuzzy
18816
  msgid "Disabled"
18817
+ msgstr "Deaktiviert"
18818
 
18819
+ #: wppa-settings-autosave.php:8569 wppa-settings-autosave.php:8614
18820
  #, fuzzy
18821
  msgid "Start/Stop & Slower/Faster navigation bar"
18822
  msgstr "Start / Stop & Langsamer / Schneller Navigationsleiste"
18823
 
18824
+ #: wppa-settings-autosave.php:8570 wppa-settings-autosave.php:8615
18825
  #, fuzzy
18826
  msgid "The Slide Frame"
18827
+ msgstr "Diarahmen."
18828
 
18829
+ #: wppa-settings-autosave.php:8570 wppa-settings-autosave.php:8615
18830
  #, fuzzy
18831
  msgid "( Always )"
18832
  msgstr "Immer"
18833
 
18834
+ #: wppa-settings-autosave.php:8571
18835
  #, fuzzy
18836
  msgid "Photo Name Box"
18837
  msgstr "Photo Box"
18838
 
18839
+ #: wppa-settings-autosave.php:8572
18840
  #, fuzzy
18841
  msgid "Photo Description Box"
18842
  msgstr "Foto-Beschreibung"
18843
 
18844
+ #: wppa-settings-autosave.php:8573 wppa-settings-autosave.php:8617
18845
  #, fuzzy
18846
  msgid "Custom Box"
18847
  msgstr "Custom Meta Box"
18848
 
18849
+ #: wppa-settings-autosave.php:8574 wppa-settings-autosave.php:8618
18850
  #, fuzzy
18851
  msgid "Rating Bar"
18852
  msgstr "Bewertung Bar"
18853
 
18854
+ #: wppa-settings-autosave.php:8575 wppa-settings-autosave.php:8619
18855
  #, fuzzy
18856
  msgid "Film Strip with embedded Start/Stop and Goto functionality"
18857
  msgstr "Film-Streifen mit eingebetteten Start / Stop und Goto-Funktionalität"
18858
 
18859
+ #: wppa-settings-autosave.php:8576 wppa-settings-autosave.php:8620
18860
  #, fuzzy
18861
  msgid "Browse Bar with Photo X of Y counter"
18862
  msgstr "Durchsuchen Bar mit Foto X von Y-Zähler"
18863
 
18864
+ #: wppa-settings-autosave.php:8577 wppa-settings-autosave.php:8621
18865
  #, fuzzy
18866
  msgid "Comments Box"
18867
  msgstr "Kommentarfeld"
18868
 
18869
+ #: wppa-settings-autosave.php:8578 wppa-settings-autosave.php:8622
18870
  #, fuzzy
18871
  msgid "IPTC box"
18872
  msgstr "IPTC-Box"
18873
 
18874
+ #: wppa-settings-autosave.php:8579 wppa-settings-autosave.php:8623
18875
  #, fuzzy
18876
  msgid "EXIF box"
18877
  msgstr "EXIF-Box"
18878
 
18879
+ #: wppa-settings-autosave.php:8580 wppa-settings-autosave.php:8624
18880
  #, fuzzy
18881
  msgid "Social media share box"
18882
  msgstr "Social-Media-Aktie Box"
18883
 
18884
+ #: wppa-settings-autosave.php:8586 wppa-settings-autosave.php:8630
18885
  #, fuzzy
18886
  msgid "Move Up"
18887
  msgstr "Nach oben verschieben"
18888
 
18889
+ #: wppa-settings-autosave.php:8601
18890
  #, fuzzy
18891
  msgid "NameDesc"
18892
  msgstr "NameDesc"
18893
 
18894
+ #: wppa-settings-autosave.php:8616
18895
  #, fuzzy
18896
  msgid "Photo Name & Description Box"
18897
  msgstr "Foto Name & Beschreibung Box"
18898
 
18899
+ #: wppa-settings-autosave.php:8640
18900
  #, fuzzy
18901
  msgid "Swap Namedesc"
18902
  msgstr "Swap Namedesc"
18903
 
18904
+ #: wppa-settings-autosave.php:8641
18905
  #, fuzzy
18906
  msgid "Swap the order sequence of name and description"
18907
  msgstr "Tauschen Sie die Auftragsreihenfolge der Name und die Beschreibung"
18908
 
18909
+ #: wppa-settings-autosave.php:8649
18910
  #, fuzzy
18911
  msgid "Split Name and Desc"
18912
  msgstr "Split Name und Desc"
18913
 
18914
+ #: wppa-settings-autosave.php:8650
18915
  #, fuzzy
18916
  msgid "Put Name and Description in separate boxes"
18917
  msgstr "Setzen Sie Name und Beschreibung in separaten Boxen"
18918
 
18919
+ #: wppa-settings-autosave.php:8653
18920
  #, fuzzy
18921
  msgid "Please reload this page after the green checkmark appears!"
18922
  msgstr "Bitte laden Sie diese Seite, nachdem das grüne Häkchen angezeigt wird!"
18923
 
18924
+ #: wppa-settings-autosave.php:8658
18925
  #, fuzzy
18926
  msgid "Source file management and other upload/import settings and actions."
18927
  msgstr ""
18928
  "Quelle Dateiverwaltung und andere Upload / Import von Einstellungen und "
18929
  "Aktionen."
18930
 
18931
+ #: wppa-settings-autosave.php:8660
18932
  #, fuzzy
18933
  msgid "Keep sourcefiles admin"
18934
  msgstr "Halten Sie Quelldateien Admin"
18935
 
18936
+ #: wppa-settings-autosave.php:8661
18937
  #, fuzzy
18938
  msgid "Keep the original uploaded and imported photo files."
18939
  msgstr "Bewahren Sie die Original hochgeladen und importiert Fotodateien."
18940
 
18941
+ #: wppa-settings-autosave.php:8662 wppa-settings-autosave.php:8672
18942
  #, fuzzy
18943
  msgid ""
18944
  "The files will be kept in a separate directory with subdirectories for each "
18947
  "Die Dateien werden in einem separaten Verzeichnis mit Unterverzeichnissen "
18948
  "für jedes Album gehalten werden"
18949
 
18950
+ #: wppa-settings-autosave.php:8663 wppa-settings-autosave.php:8673
18951
  #, fuzzy
18952
  msgid ""
18953
  "These files can be used to update the photos used in displaying in wppa+ and "
18957
  "WPPA verwendet zu aktualisieren und gegebenenfalls für das Herunterladen "
18958
  "Original, un-verkleinerte Bilder."
18959
 
18960
+ #: wppa-settings-autosave.php:8670
18961
  #, fuzzy
18962
  msgid "Keep sourcefiles frontend"
18963
  msgstr "Halten Sie Quelldateien Frontend"
18964
 
18965
+ #: wppa-settings-autosave.php:8671
18966
  #, fuzzy
18967
  msgid "Keep the original frontend uploaded photo files."
18968
  msgstr "Halten Sie die Original-Frontend hochgeladen Fotodateien."
18969
 
18970
+ #: wppa-settings-autosave.php:8680
18971
  #, fuzzy
18972
  msgid "Source directory"
18973
+ msgstr "Quellverzeichnis"
18974
 
18975
+ #: wppa-settings-autosave.php:8681
18976
  #, fuzzy
18977
  msgid "The path to the directory where the original photofiles will be saved."
18978
  msgstr ""
18979
  "Der Pfad zu dem Verzeichnis, in dem die ursprünglichen Photofiles "
18980
  "gespeichert werden."
18981
 
18982
+ #: wppa-settings-autosave.php:8682
18983
  #, fuzzy
18984
  msgid "You may change the directory path, but it can not be an url."
18985
  msgstr ""
18986
  "Sie können den Verzeichnispfad zu ändern, aber es kann nicht eine URL sein."
18987
 
18988
+ #: wppa-settings-autosave.php:8683
18989
  #, fuzzy
18990
  msgid ""
18991
  "The parent of the directory that you enter here must exist and be writable."
18993
  "Die Eltern des Verzeichnisses, das Sie hier eingeben, muss existieren und "
18994
  "beschreibbar sein."
18995
 
18996
+ #: wppa-settings-autosave.php:8684
18997
  #, fuzzy
18998
  msgid "The directory itsself will be created if it does not exist yet."
18999
  msgstr "Das Verzeichnis itsself wird erstellt, wenn es noch nicht existiert."
19000
 
19001
+ #: wppa-settings-autosave.php:8691
19002
  #, fuzzy
19003
  msgid "Keep sync"
19004
  msgstr "Halten Sie Sync"
19005
 
19006
+ #: wppa-settings-autosave.php:8692
19007
  #, fuzzy
19008
  msgid "Keep source synchronously with wppa system."
19009
  msgstr "Halten Sie Quelle synchron mit WPPA System."
19010
 
19011
+ #: wppa-settings-autosave.php:8693
19012
  #, fuzzy
19013
  msgid ""
19014
  "If checked, photos that are deleted from wppa, will also be removed from the "
19017
  "Wenn diese Option aktiviert, Fotos, die von WPPA gelöscht werden, werden "
19018
  "auch von den Quelldateien entfernt werden."
19019
 
19020
+ #: wppa-settings-autosave.php:8694
19021
  #, fuzzy
19022
  msgid ""
19023
  "Also, copying or moving photos to different albums, will also copy/move the "
19026
  "Auch das Kopieren oder Fotos zu verschiedenen Alben bewegt, wird kopieren / "
19027
  "verschieben auch die Quelldateien."
19028
 
19029
+ #: wppa-settings-autosave.php:8701
19030
  #, fuzzy
19031
  msgid "Remake add"
19032
  msgstr "Remake add"
19033
 
19034
+ #: wppa-settings-autosave.php:8702
19035
  #, fuzzy
19036
  msgid "Photos will be added from the source pool"
19037
  msgstr "Die Fotos werden von der Quelle Pool hinzugefügt werden"
19038
 
19039
+ #: wppa-settings-autosave.php:8703
19040
  #, fuzzy
19041
  msgid ""
19042
  "If checked: If photo files are found in the source directory that do not "
19046
  "werden, die in dem entsprechenden Album nicht existieren, werden sie auf dem "
19047
  "Album hinzugefügt werden."
19048
 
19049
+ #: wppa-settings-autosave.php:8710
19050
  #, fuzzy
19051
  msgid "Save IPTC data"
19052
  msgstr "Speichern IPTC-Daten"
19053
 
19054
+ #: wppa-settings-autosave.php:8711
19055
  #, fuzzy
19056
  msgid "Store the iptc data from the photo into the iptc db table"
19057
  msgstr "Speichern Sie die IPTC-Daten aus dem Foto in den IPTC-db-Tabelle"
19058
 
19059
+ #: wppa-settings-autosave.php:8712
19060
  #, fuzzy
19061
  msgid ""
19062
  "You will need this if you enabled the display of iptc data in Table II-B17 "
19065
  "Sie werden diese benötigen, wenn Sie die Anzeige von IPTC-Daten in Tabelle "
19066
  "II-B17 aktiviert oder, wenn Sie es in den Fotobeschreibungen verwenden."
19067
 
19068
+ #: wppa-settings-autosave.php:8719
19069
  #, fuzzy
19070
  msgid "Save EXIF data"
19071
  msgstr "Speichern EXIF-Daten"
19072
 
19073
+ #: wppa-settings-autosave.php:8720
19074
  #, fuzzy
19075
  msgid "Store the exif data from the photo into the exif db table"
19076
  msgstr "Speichern Sie die EXIF-Daten aus dem Foto in den Exif-db-Tabelle"
19077
 
19078
+ #: wppa-settings-autosave.php:8721
19079
  #, fuzzy
19080
  msgid ""
19081
  "You will need this if you enabled the display of exif data in Table II-B18 "
19084
  "Sie werden diese benötigen, wenn Sie die Anzeige der EXIF-Daten in Tabelle "
19085
  "II-B18 aktiviert oder, wenn Sie es in den Fotobeschreibungen verwenden."
19086
 
19087
+ #: wppa-settings-autosave.php:8728
19088
  #, fuzzy
19089
  msgid "Max EXIF tag array size"
19090
  msgstr "Max EXIF-Tag-Array Größe"
19091
 
19092
+ #: wppa-settings-autosave.php:8729
19093
  #, fuzzy
19094
  msgid "Truncate array tags to ..."
19095
  msgstr "Kürzt Array-Tags ..."
19096
 
19097
+ #: wppa-settings-autosave.php:8730
19098
  #, fuzzy
19099
  msgid "A value of 0 disables this feature"
19100
  msgstr "Ein Wert von 0 deaktiviert diese Funktion"
19101
 
19102
+ #: wppa-settings-autosave.php:8732
19103
  #, fuzzy
19104
  msgid "elements"
19105
  msgstr "tungselementen"
19106
 
19107
+ #: wppa-settings-autosave.php:8737
19108
  #, fuzzy
19109
  msgid "Import Create page"
19110
  msgstr "Import Seite erstellen"
19111
 
19112
+ #: wppa-settings-autosave.php:8738
19113
  #, fuzzy
19114
  msgid "Create wp page when a directory to album is imported."
19115
  msgstr "Erstellen Sie wp Seite, wenn ein Verzeichnis Album importiert wird."
19116
 
19117
+ #: wppa-settings-autosave.php:8739
19118
  #, fuzzy
19119
  msgid ""
19120
  "As soon as an album is created when a directory is imported, a wp page is "
19123
  "Sobald ein Album erstellt wird, wenn ein Verzeichnis importiert wird, wird "
19124
  "eine wp Seite gemacht, dass das Album Inhalt anzeigt."
19125
 
19126
+ #: wppa-settings-autosave.php:8747
19127
  #, fuzzy
19128
  msgid "Page content"
19129
  msgstr "Seiteninhalt"
19130
 
19131
+ #: wppa-settings-autosave.php:8748
19132
  #, fuzzy
19133
  msgid "The content of the page. Must contain <b>w#album</b>"
19134
  msgstr "Der Inhalt der Seite. Muss <b>w # Album</b> enthalten"
19135
 
19136
+ #: wppa-settings-autosave.php:8749
19137
  #, fuzzy
19138
  msgid ""
19139
  "The content of the page. Note: it must contain w#album. This will be "
19142
  "Der Inhalt der Seite. Hinweis: es w # Album enthalten. Dies wird durch die "
19143
  "Albumnummer in der generierten Shortcode ersetzt werden."
19144
 
19145
+ #: wppa-settings-autosave.php:8757
19146
  #, fuzzy
19147
  msgid "Page type"
19148
  msgstr "Seitentyp"
19149
 
19150
+ #: wppa-settings-autosave.php:8758
19151
  #, fuzzy
19152
  msgid "Select the type of page to create."
19153
  msgstr "Wählen Sie die gewünschte Seite zu erstellen."
19154
 
19155
+ #: wppa-settings-autosave.php:8762
19156
  #, fuzzy
19157
  msgid "Post"
19158
  msgstr "Post:"
19159
 
19160
+ #: wppa-settings-autosave.php:8769
19161
  #, fuzzy
19162
  msgid "Page status"
19163
  msgstr "Seitenstatus"
19164
 
19165
+ #: wppa-settings-autosave.php:8770
19166
  #, fuzzy
19167
  msgid "Select the initial status of the page."
19168
  msgstr "Wählen Sie den Anfangsstatus der Seite."
19169
 
19170
+ #: wppa-settings-autosave.php:8774
19171
  #, fuzzy
19172
  msgid "Published"
19173
  msgstr "Veröffentlicht"
19174
 
19175
+ #: wppa-settings-autosave.php:8774
19176
  #, fuzzy
19177
  msgid "Draft"
19178
  msgstr "Entwurf"
19179
 
19180
+ #: wppa-settings-autosave.php:8782
19181
  #, fuzzy
19182
  msgid "Permalink root"
19183
  msgstr "Permalink Wurzel"
19184
 
19185
+ #: wppa-settings-autosave.php:8783
19186
  #, fuzzy
19187
  msgid "The name of the root for the photofile ermalink structure."
19188
  msgstr "Der Name der Wurzel für die Photofile ermalink Struktur."
19189
 
19190
+ #: wppa-settings-autosave.php:8784
19191
  #, fuzzy
19192
  msgid ""
19193
  "Choose a convenient name like \"albums\" or so; this will be the name of a "
19197
  "eines Ordners innerhalb ... / wp-content / sein. Stellen Sie sicher, dass "
19198
  "Sie einen eindeutigen Namen wählen"
19199
 
19200
+ #: wppa-settings-autosave.php:8792
19201
  #, fuzzy
19202
  msgid "Import parent check"
19203
  msgstr "Import Mutterprüfung"
19204
 
19205
+ #: wppa-settings-autosave.php:8793
19206
  #, fuzzy
19207
  msgid "On import dirs to albums: keep dir tree as albums."
19208
  msgstr "Beim Import dirs zum Album: halten dir Baum als Alben."
19209
 
19210
+ #: wppa-settings-autosave.php:8794
19211
  #, fuzzy
19212
  msgid ""
19213
  "Untick only if all your albums have unique names. Then: additional photos "
19216
  "Deaktivieren Sie nur, wenn Sie alle Ihre Alben haben eindeutige Namen. Dann: "
19217
  "zusätzliche Fotos können auf Toplevel Depot subdirs ftp'd werden."
19218
 
19219
+ #: wppa-settings-autosave.php:8801
19220
  #, fuzzy
19221
  msgid "IPTC need utf8 conversion"
19222
  msgstr "IPTC müssen UTF-8-Umwandlung"
19223
 
19224
+ #: wppa-settings-autosave.php:8802
19225
  #, fuzzy
19226
  msgid "This setting converts iso to utf8 in iptc text."
19227
  msgstr "Diese Einstellung wandelt iso auf UTF8 in IPTC Text."
19228
 
19229
+ #: wppa-settings-autosave.php:8803
19230
  #, fuzzy
19231
  msgid "Untick if you have funny characters in iptc data"
19232
  msgstr "Deaktivieren Sie, wenn Sie die lustigen Charaktere in IPTC-Daten haben"
19233
 
19234
+ #: wppa-settings-autosave.php:8810
19235
  #, fuzzy
19236
  msgid "Keep dir to album files"
19237
  msgstr "Halten Sie dir auf Albumdateien"
19238
 
19239
+ #: wppa-settings-autosave.php:8811
19240
  #, fuzzy
19241
  msgid "Keep imported files after dir to album import"
19242
  msgstr "Halten Sie importierte Dateien nach dir zum Album Import"
19243
 
19244
+ #: wppa-settings-autosave.php:8820
19245
  #, fuzzy
19246
  msgid "Other plugins related settings"
19247
  msgstr "Andere Plugins bezogene Einstellungen"
19248
 
19249
+ #: wppa-settings-autosave.php:8822
19250
  #, fuzzy
19251
  msgid "Foreign shortcodes general"
19252
  msgstr "Foreign Shortcodes allgemein"
19253
 
19254
+ #: wppa-settings-autosave.php:8823
19255
  #, fuzzy
19256
  msgid "Enable foreign shortcodes in album names, albums desc and photo names"
19257
  msgstr ""
19258
  "Aktivieren ausländische Shortcodes in Albumnamen, Alben ab und Foto-Namen"
19259
 
19260
+ #: wppa-settings-autosave.php:8831
19261
  #, fuzzy
19262
  msgid "Foreign shortcodes fullsize"
19263
  msgstr "Foreign Shortgross"
19264
 
19265
+ #: wppa-settings-autosave.php:8832
19266
  #, fuzzy
19267
  msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
19268
  msgstr ""
19269
  "Aktivieren Sie die Verwendung von nicht-WPPA Shortcodes in "
19270
  "Grossfotobeschreibungen."
19271
 
19272
+ #: wppa-settings-autosave.php:8833 wppa-settings-autosave.php:8844
19273
  #, fuzzy
19274
  msgid ""
19275
  "When checked, you can use shortcodes from other plugins in the description "
19278
  "Wenn diese Option aktiviert, können Sie Kurzwahlnummern von anderen Plugins "
19279
  "in der Beschreibung von Fotos verwenden."
19280
 
19281
+ #: wppa-settings-autosave.php:8834
19282
  #, fuzzy
19283
  msgid "The shortcodes will be expanded in the descriptions of fullsize images."
19284
  msgstr ""
19285
  "Die Kurzwahlnummern werden in den Beschreibungen der LISTEN Bilder erweitert "
19286
  "werden."
19287
 
19288
+ #: wppa-settings-autosave.php:8835 wppa-settings-autosave.php:8846
19289
  #, fuzzy
19290
  msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
19291
  msgstr ""
19292
  "Sie werden wahrscheinlich brauchen auch Tabelle IX-A1 (Erlaube HTML) zu "
19293
  "überprüfen."
19294
 
19295
+ #: wppa-settings-autosave.php:8842
19296
  #, fuzzy
19297
  msgid "Foreign shortcodes thumbnails"
19298
  msgstr "Foreign Short Thumbnails"
19299
 
19300
+ #: wppa-settings-autosave.php:8843
19301
  #, fuzzy
19302
  msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
19303
  msgstr ""
19304
  "Aktivieren Sie die Verwendung von nicht-WPPA Shortcodes in "
19305
  "Miniaturfotobeschreibungen."
19306
 
19307
+ #: wppa-settings-autosave.php:8845
19308
  #, fuzzy
19309
  msgid ""
19310
  "The shortcodes will be expanded in the descriptions of thumbnail images."
19312
  "Die Kurzwahlnummern werden in den Beschreibungen von Miniaturbildern "
19313
  "erweitert werden."
19314
 
19315
+ #: wppa-settings-autosave.php:8853
19316
  #, fuzzy
19317
  msgid "Lightbox keyname"
19318
  msgstr "Lightbox keyname"
19319
 
19320
+ #: wppa-settings-autosave.php:8854
19321
  #, fuzzy
19322
  msgid "The identifier of lightbox."
19323
  msgstr "Die Kennung Leuchtkasten."
19324
 
19325
+ #: wppa-settings-autosave.php:8855
19326
  #, fuzzy
19327
  msgid ""
19328
  "If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
19331
  "Wenn Sie Leuchtkasten Plugin verwenden, das rel = \"lbox-id\" verwendet, "
19332
  "kann man die lbox-ID eingeben."
19333
 
19334
+ #: wppa-settings-autosave.php:8862
19335
  #, fuzzy
19336
  msgid "myCRED / Cube Points: Comment"
19337
  msgstr "myCRED / Cube Punkte: Kommentar"
19338
 
19339
+ #: wppa-settings-autosave.php:8863
19340
  #, fuzzy
19341
  msgid "Number of points for giving a comment"
19342
  msgstr "Punkte für das Geben einen Kommentar"
19343
 
19344
+ #: wppa-settings-autosave.php:8864 wppa-settings-autosave.php:8873
19345
+ #: wppa-settings-autosave.php:8882 wppa-settings-autosave.php:8891
19346
  #, fuzzy
19347
  msgid "This setting requires the plugin myCRED or Cube Points"
19348
  msgstr "Für diese Einstellung muss das Plugin myCRED oder Cube-Punkte"
19349
 
19350
+ #: wppa-settings-autosave.php:8866 wppa-settings-autosave.php:8875
19351
  #, fuzzy
19352
  msgid "points per comment"
19353
  msgstr "Punkte pro Kommentar"
19354
 
19355
+ #: wppa-settings-autosave.php:8871
19356
  #, fuzzy
19357
  msgid "myCRED / Cube Points: Appr Comment"
19358
  msgstr "myCRED / Cube Punkte: Appr Kommentar"
19359
 
19360
+ #: wppa-settings-autosave.php:8872
19361
  #, fuzzy
19362
  msgid "Number of points for receiving an approved comment"
19363
  msgstr "Punkte für die Aufnahme eines genehmigten Kommentar"
19364
 
19365
+ #: wppa-settings-autosave.php:8880
19366
  #, fuzzy
19367
  msgid "myCRED / Cube Points: Rating"
19368
  msgstr "myCRED / Cube Punkte: Bewertung"
19369
 
19370
+ #: wppa-settings-autosave.php:8881
19371
  #, fuzzy
19372
  msgid "Number of points for a rating vote"
19373
  msgstr "Punkte für eine Bewertung Stimme"
19374
 
19375
+ #: wppa-settings-autosave.php:8884
19376
  #, fuzzy
19377
  msgid "points per vote"
19378
  msgstr "Punkte pro Stimme"
19379
 
19380
+ #: wppa-settings-autosave.php:8889
19381
  #, fuzzy
19382
  msgid "myCRED / Cube Points: Upload"
19383
  msgstr "myCRED / Cube Punkte: Upload"
19384
 
19385
+ #: wppa-settings-autosave.php:8890
19386
  #, fuzzy
19387
  msgid "Number of points for a successfull frontend upload"
19388
  msgstr "Punkte für eine erfolgreiche Frontend-Upload"
19389
 
19390
+ #: wppa-settings-autosave.php:8893
19391
  #, fuzzy
19392
  msgid "points per upload"
19393
  msgstr "Punkte pro Upload"
19394
 
19395
+ #: wppa-settings-autosave.php:8898
19396
  #, fuzzy
19397
  msgid "Use SCABN"
19398
  msgstr "Verwenden Sie SCABN"
19399
 
19400
+ #: wppa-settings-autosave.php:8899
19401
  #, fuzzy
19402
  msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
19403
  msgstr "Verwenden Sie die WPPA Schnittstelle Einfache Wagen & Buy Now Plugin."
19404
 
19405
+ #: wppa-settings-autosave.php:8900
19406
  #, fuzzy
19407
  msgid ""
19408
  "If checked, the shortcode to use for the \"add to cart\" button in photo "
19411
  "Wenn diese Option aktiviert, um die Kurzwahlnummer für die \"in den Warenkorb"
19412
  "\", um die Option in Fotobeschreibungen ist [Warenkorb ...]"
19413
 
19414
+ #: wppa-settings-autosave.php:8901
19415
  #, fuzzy
19416
  msgid ""
19417
  "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
19419
  "im Gegensatz zu [scabn ...] für die ursprüngliche scabn Button \"in den "
19420
  "Warenkorb\"."
19421
 
19422
+ #: wppa-settings-autosave.php:8902
19423
  #, fuzzy
19424
  msgid "The shortcode for the check-out page is still [scabn]"
19425
  msgstr "Die Shortcode für den Check-out-Seite ist immer noch [scabn]"
19426
 
19427
+ #: wppa-settings-autosave.php:8903
19428
  #, fuzzy
19429
  msgid ""
19430
  "The arguments are the same, the defaults are: name = photoname, price = 0.01."
19432
  "Die Argumente sind die gleichen, die Standardeinstellungen sind: name = "
19433
  "photoname, Preis = 0,01."
19434
 
19435
+ #: wppa-settings-autosave.php:8904
19436
  #, fuzzy
19437
  msgid ""
19438
  "Supplying the price should be sufficient; supply a name only when it differs "
19441
  "den Preis Die Versorgung sollte ausreichend sein; liefern nur einen Namen, "
19442
  "wenn es aus dem Foto Name unterscheidet."
19443
 
19444
+ #: wppa-settings-autosave.php:8905
19445
  #, fuzzy
19446
  msgid "This shortcode handler will also work with Ajax enabled."
19447
  msgstr "Dieser Shortcode-Handler wird auch mit Ajax arbeiten aktiviert."
19448
 
19449
+ #: wppa-settings-autosave.php:8906
19450
  #, fuzzy
19451
  msgid ""
19452
  "Using this interface makes sure that the item urls and callback action urls "
19455
  "Diese Schnittstelle stellt sicher, dass die Artikel Urls und Callback-Aktion "
19456
  "Urls korrekt sind."
19457
 
19458
+ #: wppa-settings-autosave.php:8913
19459
  #, fuzzy
19460
  msgid "Use CM Tooltip Glossary"
19461
  msgstr "Verwenden CM Tooltip Glossar"
19462
 
19463
+ #: wppa-settings-autosave.php:8914
19464
  #, fuzzy
19465
  msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
19466
  msgstr "Verwenden Plugin CM Tooltip Glossar auf Foto und Album-Beschreibungen."
19467
 
19468
+ #: wppa-settings-autosave.php:8915
19469
  #, fuzzy
19470
  msgid ""
19471
  "You MUST set Table IV-A13: Defer javascript, also if you do not want this "
19474
  "Sie MÜSSEN Tabelle IV-A13 gesetzt: javascript Aufschieben, auch wenn Sie "
19475
  "dieses Plugin auf Album und Fotobeschreibungen handeln nicht wollen!"
19476
 
19477
+ #: wppa-settings-autosave.php:8923
19478
  #, fuzzy
19479
  msgid "External services related settings and actions."
19480
  msgstr ""
19481
  "Externe Dienstleistungen im Zusammenhang mit Einstellungen und Aktionen."
19482
 
19483
+ #: wppa-settings-autosave.php:8925
19484
  #, fuzzy
19485
  msgid "QR Code widget size"
19486
  msgstr "QR Code Widget Größe"
19487
 
19488
+ #: wppa-settings-autosave.php:8926
19489
  #, fuzzy
19490
  msgid "The size of the QR code display."
19491
  msgstr "Die Größe des QR-Code-Anzeige."
19492
 
19493
+ #: wppa-settings-autosave.php:8934
19494
  #, fuzzy
19495
  msgid "QR color"
19496
  msgstr "QR Farbe"
19497
 
19498
+ #: wppa-settings-autosave.php:8935
19499
  #, fuzzy
19500
  msgid "The display color of the qr code (dark)"
19501
  msgstr "Die Anzeigefarbe des QR-Codes (dunkel)"
19502
 
19503
+ #: wppa-settings-autosave.php:8936
19504
  #, fuzzy
19505
  msgid "This color MUST be given in hexadecimal format!"
19506
  msgstr "Diese Farbe muss im hexadezimalen Format angegeben werden!"
19507
 
19508
+ #: wppa-settings-autosave.php:8943
19509
  #, fuzzy
19510
  msgid "QR background color"
19511
+ msgstr "Hintergrund Farbe"
19512
 
19513
+ #: wppa-settings-autosave.php:8944
19514
  #, fuzzy
19515
  msgid "The background color of the qr code (light)"
19516
  msgstr "Die Hintergrundfarbe des QR-Codes (Licht)"
19517
 
19518
+ #: wppa-settings-autosave.php:8952
19519
  #, fuzzy
19520
  msgid "CDN Service"
19521
  msgstr "CDN-Service"
19522
 
19523
+ #: wppa-settings-autosave.php:8953
19524
  #, fuzzy
19525
  msgid "Select a CDN Service you want to use."
19526
  msgstr "Wählen Sie einen CDN-Service Sie verwenden möchten."
19527
 
19528
+ #: wppa-settings-autosave.php:8956
19529
  #, fuzzy
19530
  msgid "Cloudinary in maintenance mode"
19531
  msgstr "Cloudinary im Wartungsmodus"
19532
 
19533
+ #: wppa-settings-autosave.php:8966
19534
  #, fuzzy
19535
  msgid "Cloud name"
19536
  msgstr "Wolke Name"
19537
 
19538
+ #: wppa-settings-autosave.php:8975
19539
  #, fuzzy
19540
  msgid "API key"
19541
+ msgstr "API-Schlüssel"
19542
 
19543
+ #: wppa-settings-autosave.php:8984
19544
  #, fuzzy
19545
  msgid "API secret"
19546
  msgstr "API Geheimnis"
19547
 
19548
+ #: wppa-settings-autosave.php:8993
19549
  #, fuzzy
19550
  msgid "Delete all"
19551
+ msgstr "Alle Löschen"
19552
 
19553
+ #: wppa-settings-autosave.php:8994
19554
  #, fuzzy
19555
  msgid "Deletes them all !!!"
19556
  msgstr "Löscht sie alle !!!"
19557
 
19558
+ #: wppa-settings-autosave.php:9002
19559
  #, fuzzy
19560
  msgid "Delete derived images"
19561
  msgstr "Löschen abgeleitet Bilder"
19562
 
19563
+ #: wppa-settings-autosave.php:9003
19564
  #, fuzzy
19565
  msgid "Deletes all derived images !!!"
19566
  msgstr "Löscht alle abgeleiteten Bilder !!!"
19567
 
19568
+ #: wppa-settings-autosave.php:9011
19569
  #, fuzzy
19570
  msgid "Max lifetime"
19571
  msgstr "Max Lebensdauer"
19572
 
19573
+ #: wppa-settings-autosave.php:9012
19574
  #, fuzzy
19575
  msgid "Old images from local server, new images from Cloudinary."
19576
  msgstr "Alte Bilder von lokalen Server, neue Bilder von Cloudinary."
19577
 
19578
+ #: wppa-settings-autosave.php:9013
19579
  #, fuzzy
19580
  msgid ""
19581
  "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
19583
  "Wenn nicht auf für immer: Sie müssen Tabelle VIII-B15 auf einer regelmäßigen "
19584
  "Basis zu laufen."
19585
 
19586
+ #: wppa-settings-autosave.php:9015
19587
  #, fuzzy
19588
  msgid "Forever"
19589
+ msgstr "Immer"
19590
 
19591
+ #: wppa-settings-autosave.php:9046
19592
  #, fuzzy
19593
  msgid "Cloudinary usage"
19594
  msgstr "Cloudinary Nutzung"
19595
 
19596
+ #: wppa-settings-autosave.php:9082
19597
  #, fuzzy
19598
  msgid "Cloudinary usage data not available"
19599
  msgstr "Cloudinary Nutzungsdaten nicht verfügbar"
19600
 
19601
+ #: wppa-settings-autosave.php:9086
19602
  #, fuzzy
19603
  msgid "Cloudinary routines not installed."
19604
  msgstr "Cloudinary Routinen nicht installiert."
19605
 
19606
+ #: wppa-settings-autosave.php:9097
19607
  #, fuzzy
19608
  msgid "Cloudinary"
19609
  msgstr "Cloudinary"
19610
 
19611
+ #: wppa-settings-autosave.php:9098
19612
  #, fuzzy
19613
  msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
19614
  msgstr ""
19615
  "<span style=\"color:red;\">Benötigt mindestens PHP</span> - <span style="
19616
  "\"color:red;\">Version 5.3</span>"
19617
 
19618
+ #: wppa-settings-autosave.php:9107
19619
  #, fuzzy
19620
  msgid "GPX Implementation"
19621
  msgstr "GPX Umsetzung"
19622
 
19623
+ #: wppa-settings-autosave.php:9108
19624
  #, fuzzy
19625
  msgid "The way the maps are produced."
19626
  msgstr "Die Art und Weise die Karten produziert werden."
19627
 
19628
+ #: wppa-settings-autosave.php:9109
19629
  #, fuzzy
19630
  msgid "Select the way the maps are produced."
19631
  msgstr "Wählen Sie die Art, wie die Karten produziert werden."
19632
 
19633
+ #: wppa-settings-autosave.php:9110
19634
  #, fuzzy
19635
  msgid ""
19636
  "When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
19638
  "Bei der Verwendung von Google Maps GPX-Viewer-Plugin, können Sie nicht Ajax "
19639
  "verwenden (Tabelle IV-A1)"
19640
 
19641
+ #: wppa-settings-autosave.php:9111
19642
  #, fuzzy
19643
  msgid ""
19644
  "When using WPPA+ Embedded code, you can use Ajax, but there are less display "
19647
  "Wenn WPPA mit Embedded-Code können Sie Ajax verwenden, aber es gibt "
19648
  "weniger Anzeigeoptionen."
19649
 
19650
+ #: wppa-settings-autosave.php:9113
19651
  #, fuzzy
19652
  msgid "WPPA+ Embedded code"
19653
  msgstr "WPPA Embedded Code"
19654
 
19655
+ #: wppa-settings-autosave.php:9113
19656
  #, fuzzy
19657
  msgid "Google maps GPX viewer plugin"
19658
  msgstr "Google Maps GPX-Viewer-Plugin"
19659
 
19660
+ #: wppa-settings-autosave.php:9121
19661
  #, fuzzy
19662
  msgid "Map height"
19663
+ msgstr "Karten Höhe"
19664
 
19665
+ #: wppa-settings-autosave.php:9122
19666
  #, fuzzy
19667
  msgid "The height of the map display."
19668
  msgstr "Die Höhe der Kartendarstellung."
19669
 
19670
+ #: wppa-settings-autosave.php:9130
19671
  #, fuzzy
19672
  msgid "Google maps API key"
19673
+ msgstr "Google Maps API-Schlüssel"
19674
 
19675
+ #: wppa-settings-autosave.php:9131
19676
  #, fuzzy
19677
  msgid "Enter your Google maps api key here if you have one."
19678
  msgstr "Geben Sie Ihre Google Maps API-Schlüssel hier, wenn Sie eine haben."
19679
 
19680
+ #: wppa-settings-autosave.php:9139
19681
  #, fuzzy
19682
  msgid "GPX Shortcode"
19683
  msgstr "GPX Short"
19684
 
19685
+ #: wppa-settings-autosave.php:9140
19686
  #, fuzzy
19687
  msgid "The shortcode to be used for the gpx feature."
19688
  msgstr "Die Kurzwahlnummer, die für die gpx-Funktion verwendet werden."
19689
 
19690
+ #: wppa-settings-autosave.php:9141
19691
  #, fuzzy
19692
  msgid ""
19693
  "Enter / modify the shortcode to be generated for the gpx plugin. It must "
19697
  "Es muss w # lat und w # lon als Platzhalter für die lattitude und Länge "
19698
  "enthalten."
19699
 
19700
+ #: wppa-settings-autosave.php:9142
19701
  #, fuzzy
19702
  msgid "This item is required for using Google maps GPX viewer plugin only"
19703
  msgstr ""
19704
  "Dieser Artikel ist erforderlich für die Verwendung von nur Google Maps GPX-"
19705
  "Viewer-Plugin"
19706
 
19707
+ #: wppa-settings-autosave.php:9149
19708
  #, fuzzy
19709
  msgid "Fotomoto"
19710
  msgstr "Fotomoto"
19711
 
19712
+ #: wppa-settings-autosave.php:9150
19713
  #, fuzzy
19714
  msgid "Yes, we use Fotomoto on this site. Read the help text!"
19715
  msgstr ""
19716
  "Ja, verwenden wir Fotomoto auf dieser Website. Lesen Sie den Hilfetext!"
19717
 
19718
+ #: wppa-settings-autosave.php:9151
19719
  #, fuzzy
19720
  msgid "In order to function properly:"
19721
  msgstr "Um richtig zu funktionieren:"
19722
 
19723
+ #: wppa-settings-autosave.php:9152
19724
  #, fuzzy
19725
  msgid "1. Get yourself a Fotomoto account."
19726
  msgstr "1. Holen Sie sich ein Fotomoto Konto."
19727
 
19728
+ #: wppa-settings-autosave.php:9153
19729
  #, fuzzy
19730
  msgid ""
19731
  "2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
19734
  "2. Installieren Sie das Fotomoto Plugin, geben Sie das \"Fotomoto Site-Key:"
19735
  "\" und überprüfen Sie die \"Use API-Modus:\" aktivieren."
19736
 
19737
+ #: wppa-settings-autosave.php:9154
19738
  #, fuzzy
19739
  msgid "Note: Do NOT Disable the Custom box in Table II-B14."
19740
  msgstr ""
19741
  "Hinweis: Verwenden Sie nicht das gleichnamige Feld in der Tabelle II-B14 "
19742
  "deaktivieren."
19743
 
19744
+ #: wppa-settings-autosave.php:9155
19745
  #, fuzzy
19746
  msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
19747
  msgstr ""
19748
  "Entfernen Sie nicht den Text w # fotomoto vom Custombox (Tabelle II-B15)."
19749
 
19750
+ #: wppa-settings-autosave.php:9163
19751
  #, fuzzy
19752
  msgid "Fotomoto fontsize"
19753
  msgstr "Fotomoto Schriftgröße"
19754
 
19755
+ #: wppa-settings-autosave.php:9164
19756
  #, fuzzy
19757
  msgid "Fontsize for the Fotomoto toolbar."
19758
  msgstr "Fontsize für die Fotomoto Symbolleiste."
19759
 
19760
+ #: wppa-settings-autosave.php:9165
19761
  #, fuzzy
19762
  msgid ""
19763
  "If you set it here, it overrules a possible setting for font-size in ."
19766
  "Wenn Sie es hier einstellen, überschreibt es eine mögliche Einstellung für "
19767
  "font-size in .FotomotoToolbarClass auf dem Fotomoto Armaturenbrett."
19768
 
19769
+ #: wppa-settings-autosave.php:9173
19770
  #, fuzzy
19771
  msgid "Hide toolbar on running slideshows"
19772
  msgstr "Ausblenden Symbolleiste auf das Abspielen von Diashows"
19773
 
19774
+ #: wppa-settings-autosave.php:9174
19775
  #, fuzzy
19776
  msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
19777
  msgstr ""
19778
  "Die Fotomoto Symbolleiste wird wieder angezeigt, wenn die slidshow stoppt."
19779
 
19780
+ #: wppa-settings-autosave.php:9181
19781
  #, fuzzy
19782
  msgid "Fotomoto minwidth"
19783
  msgstr "Fotomoto minwidth"
19784
 
19785
+ #: wppa-settings-autosave.php:9182
19786
  #, fuzzy
19787
  msgid "Minimum width to display Fotomoto toolbar."
19788
  msgstr "Die Mindestbreite Fotomoto Symbolleiste angezeigt werden soll."
19789
 
19790
+ #: wppa-settings-autosave.php:9183
19791
  #, fuzzy
19792
  msgid ""
19793
  "The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
19794
  msgstr ""
19795
  "Die Anzeige der Fotomoto Toolbar wird auf kleineren Show unterdrückt werden."
19796
 
19797
+ #: wppa-settings-autosave.php:9208
19798
  #, fuzzy
19799
  msgid "Table X:"
19800
  msgstr "Tabelle x."
19801
 
19802
+ #: wppa-settings-autosave.php:9208
19803
  #, fuzzy
19804
  msgid "IPTC Configuration:"
19805
  msgstr "IPTC-Konfiguration:"
19806
 
19807
+ #: wppa-settings-autosave.php:9209
19808
  #, fuzzy
19809
  msgid "This table defines the IPTC configuration"
19810
  msgstr "Diese Tabelle definiert die IPTC-Konfiguration"
19811
 
19812
+ #: wppa-settings-autosave.php:9240 wppa-settings-autosave.php:9308
19813
  #, fuzzy
19814
  msgid "Display"
19815
+ msgstr "Anzeige"
19816
 
19817
+ #: wppa-settings-autosave.php:9240 wppa-settings-autosave.php:9308
19818
  #, fuzzy
19819
  msgid "Hide"
19820
  msgstr "Verstecken"
19821
 
19822
+ #: wppa-settings-autosave.php:9270
19823
  #, fuzzy
19824
  msgid "Table XI:"
19825
  msgstr "Tabelle XI:"
19826
 
19827
+ #: wppa-settings-autosave.php:9270
19828
  #, fuzzy
19829
  msgid "EXIF Configuration:"
19830
  msgstr "EXIF-Konfiguration:"
19831
 
19832
+ #: wppa-settings-autosave.php:9271
19833
  #, fuzzy
19834
  msgid "This table defines the EXIF configuration"
19835
  msgstr "Diese Tabelle definiert die EXIF-Konfiguration"
19836
 
19837
+ #: wppa-settings-autosave.php:9294
19838
  #, fuzzy
19839
  msgid ""
19840
  "Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
19846
  "fragen Sie Ihren Hosting - Anbieter <b>\"--enable-exif 'an</b> die PHP - "
19847
  "<b>Konfiguration Befehl</b> hinzuzufügen."
19848
 
19849
+ #: wppa-settings-autosave.php:9338
19850
  #, fuzzy
19851
  msgid "Table XII:"
19852
  msgstr "Tabelle XII:"
19853
 
19854
+ #: wppa-settings-autosave.php:9338
19855
  #, fuzzy
19856
  msgid "WPPA+ and PHP Configuration:"
19857
  msgstr "WPPA und PHP-Konfiguration:"
19858
 
19859
+ #: wppa-settings-autosave.php:9339
19860
  #, fuzzy
19861
  msgid ""
19862
  "This table lists all WPPA+ constants and PHP server configuration parameters "
19865
  "Diese Tabelle listet alle WPPA Konstanten und PHP-Server-"
19866
  "Konfigurationsparameter und wird nur gelesen"
19867
 
19868
+ #: wppa-settings-autosave.php:9354
19869
  #, fuzzy
19870
  msgid "Value"
19871
  msgstr "Wert ="
19872
 
19873
+ #: wppa-settings-autosave.php:9360
19874
  #, fuzzy
19875
  msgid "Albums db table name."
19876
  msgstr "Alben db Tabellennamen."
19877
 
19878
+ #: wppa-settings-autosave.php:9372
19879
  #, fuzzy
19880
  msgid "Photos db table name."
19881
  msgstr "Fotos db Tabellennamen."
19882
 
19883
+ #: wppa-settings-autosave.php:9384
19884
  #, fuzzy
19885
  msgid "Rating db table name."
19886
  msgstr "Rating db Tabellennamen."
19887
 
19888
+ #: wppa-settings-autosave.php:9396
19889
  #, fuzzy
19890
  msgid "Comments db table name."
19891
  msgstr "Kommentare db Tabellennamen."
19892
 
19893
+ #: wppa-settings-autosave.php:9408
19894
  #, fuzzy
19895
  msgid "IPTC db table name."
19896
  msgstr "IPTC db Tabellennamen."
19897
 
19898
+ #: wppa-settings-autosave.php:9420
19899
  #, fuzzy
19900
  msgid "EXIF db table name."
19901
  msgstr "EXIF db Tabellennamen."
19902
 
19903
+ #: wppa-settings-autosave.php:9432 wppa-settings-autosave.php:9444
19904
  #, fuzzy
19905
  msgid "Index db table name."
19906
  msgstr "Index db Tabellennamen."
19907
 
19908
+ #: wppa-settings-autosave.php:9456
19909
  #, fuzzy
19910
  msgid "Plugins main file name."
19911
  msgstr "Plugins Haupt-Dateinamen."
19912
 
19913
+ #: wppa-settings-autosave.php:9462
19914
  #, fuzzy
19915
  msgid "ABSPATH windows proof"
19916
  msgstr "ABSPATH Fenster Beweis"
19917
 
19918
+ #: wppa-settings-autosave.php:9468
19919
  #, fuzzy
19920
  msgid "Path to plugins directory."
19921
  msgstr "Pfad zum Plugin-Verzeichnis."
19922
 
19923
+ #: wppa-settings-autosave.php:9474
19924
  #, fuzzy
19925
  msgid "Plugins directory name."
19926
  msgstr "Plugins Verzeichnisnamen."
19927
 
19928
+ #: wppa-settings-autosave.php:9480
19929
  #, fuzzy
19930
  msgid "Plugins directory url."
19931
  msgstr "Plugins Verzeichnis url."
19932
 
19933
+ #: wppa-settings-autosave.php:9486
19934
  #, fuzzy
19935
  msgid "The relative upload directory."
19936
  msgstr "Die relative Upload-Verzeichnis."
19937
 
19938
+ #: wppa-settings-autosave.php:9492
19939
  #, fuzzy
19940
  msgid "The upload directory path."
19941
  msgstr "Der Upload-Verzeichnispfad."
19942
 
19943
+ #: wppa-settings-autosave.php:9498
19944
  #, fuzzy
19945
  msgid "The upload directory url."
19946
  msgstr "Die Upload-Verzeichnis url."
19947
 
19948
+ #: wppa-settings-autosave.php:9504
19949
  #, fuzzy
19950
  msgid "The relative depot directory."
19951
  msgstr "Die relative Depotverzeichnis."
19952
 
19953
+ #: wppa-settings-autosave.php:9510
19954
  #, fuzzy
19955
  msgid "The depot directory path."
19956
  msgstr "Das Depot Verzeichnispfad."
19957
 
19958
+ #: wppa-settings-autosave.php:9516
19959
  #, fuzzy
19960
  msgid "The depot directory url."
19961
  msgstr "Das Depotverzeichnis url."
19962
 
19963
+ #: wppa-settings-autosave.php:9522
19964
  #, fuzzy
19965
  msgid "The path to wp-content."
19966
  msgstr "Der Weg zum wp-content."
19967
 
19968
+ #: wppa-settings-autosave.php:9528
19969
  #, fuzzy
19970
  msgid "WP Content url."
19971
  msgstr "Wordpress Inhalt-URL"
19972
 
19973
+ #: wppa-settings-autosave.php:9534
19974
  #, fuzzy
19975
  msgid "WP Base upload dir."
19976
  msgstr "WP Base-Upload-Richt."
19977
 
19978
+ #: wppa-settings-autosave.php:9554
19979
  #, fuzzy, php-format
19980
  msgid "<br />Memory used on this page: %6.2f Mb."
19981
  msgstr "<br /> Speicher verwendet auf dieser Seite:% 6.2f Mb."
19982
 
19983
+ #: wppa-settings-autosave.php:9555
19984
  #, fuzzy, php-format
19985
  msgid "<br />There are %d settings and %d runtime parameters."
19986
  msgstr "<br /> Es gibt% d Einstellungen und% d Laufzeitparameter."
19987
 
19988
+ #: wppa-settings-autosave.php:9785 wppa-settings-autosave.php:9805
19989
+ #: wppa-settings-autosave.php:9826
19990
  #, fuzzy
19991
  msgid "Warning!"
19992
  msgstr "Warnung!"
19993
 
19994
+ #: wppa-settings-autosave.php:9806 wppa-settings-autosave.php:9826
19995
  #, fuzzy
19996
  msgid "Please read the help"
19997
  msgstr "Bitte lesen Sie die Hilfe"
19998
 
19999
+ #: wppa-settings-autosave.php:10037
20000
  #, fuzzy
20001
  msgid "Show!"
20002
  msgstr "Anzeigen"
20003
 
20004
+ #: wppa-settings-autosave.php:10057
20005
  #, fuzzy
20006
  msgid "Not done yet"
20007
  msgstr "Noch nicht fertig"
20008
 
20009
+ #: wppa-settings-autosave.php:10064
20010
  #, fuzzy
20011
  msgid "Start!"
20012
  msgstr "Starte"
20013
 
20014
+ #: wppa-settings-autosave.php:10069
20015
  #, fuzzy
20016
  msgid "Locked!"
20017
  msgstr "Gesperrt"
20018
 
20019
+ #: wppa-settings-autosave.php:10100
20020
  #, fuzzy
20021
  msgid ""
20022
  "You can not have popup and lightbox on thumbnails at the same time. Uncheck "
20026
  "gleichen Zeit haben. Deaktivieren Sie entweder Tabelle IV-C8 oder eine "
20027
  "andere Linktyp in Tabelle VI-2 wählen."
20028
 
20029
+ #: wppa-settings-autosave.php:10103
20030
  #, fuzzy
20031
  msgid ""
20032
  "It is important that you select a page that contains at least [wppa][/wppa]."
20034
  "Es ist wichtig, dass Sie eine Seite auswählen, die mindestens enthält [WPPA] "
20035
  "[/ WPPA]."
20036
 
20037
+ #: wppa-settings-autosave.php:10104
20038
  #, fuzzy
20039
  msgid ""
20040
  "If you ommit this, the link will not work at all or simply refresh the "
20107
  msgid "Enter new tags:"
20108
  msgstr "Eingabe neuer Tags:"
20109
 
20110
+ #: wppa-setup.php:1115
20111
  #, fuzzy
20112
  msgid "Vote for me!"
20113
  msgstr "Wähle mich!"
20114
 
20115
+ #: wppa-setup.php:1116
20116
  #, fuzzy
20117
  msgid "Voted for me"
20118
  msgstr "für mich gestimmt haben"
20119
 
20120
+ #: wppa-setup.php:1466
20121
  #, fuzzy
20122
  msgid "NEW"
20123
  msgstr "Neu"
20124
 
20125
+ #: wppa-setup.php:1468
20126
  #, fuzzy
20127
  msgid "MODIFIED"
20128
  msgstr "Geändert am"
20129
 
20130
+ #: wppa-setup.php:1518
20131
  #, fuzzy
20132
  msgid "Search in current section"
20133
  msgstr "Suche im aktuellen Bereich"
20134
 
20135
+ #: wppa-setup.php:1519
20136
  #, fuzzy
20137
  msgid "Search in current results"
20138
  msgstr "Suchen Sie in den aktuellen Ergebnissen"
20139
 
20140
+ #: wppa-setup.php:1592
20141
  #, fuzzy
20142
  msgid "Type your custom url here"
20143
  msgstr "Geben Sie Ihre benutzerdefinierte URL hier"
20144
 
20145
+ #: wppa-setup.php:1593
20146
  #, fuzzy
20147
  msgid "Type the title here"
20148
  msgstr "Geben Sie den Titel hier"
20149
 
20150
+ #: wppa-setup.php:1612 wppa-topten-widget.php:13 wppa-topten-widget.php:48
20151
  #: wppa-topten-widget.php:298
20152
  #, fuzzy
20153
  msgid "Top Ten Photos"
20154
  msgstr "Top-Ten-Fotos"
20155
 
20156
+ #: wppa-setup.php:1615 wppa-thumbnail-widget.php:13
20157
  #: wppa-thumbnail-widget.php:166
20158
  #, fuzzy
20159
  msgid "Thumbnail Photos"
20160
  msgstr "Zeige Vorschaubilder"
20161
 
20162
+ #: wppa-setup.php:1618
20163
  #, fuzzy
20164
  msgid "Search photos"
20165
  msgstr "Foto suchen"
20166
 
20167
+ #: wppa-setup.php:1663
20168
  #, fuzzy
20169
  msgid ""
20170
  "The uploads directory does not exist, please do a regular WP upload first."
20172
  "Das Upload-Verzeichnis nicht vorhanden ist, wenden Sie sich bitte zunächst "
20173
  "eine regelmäßige WP-Upload tun."
20174
 
20175
+ #: wppa-setup.php:1667
20176
  #, fuzzy
20177
  msgid "Successfully created uploads directory."
20178
  msgstr "Erfolgreich Upload-Verzeichnis erstellt."
20179
 
20180
+ #: wppa-setup.php:1678
20181
  #, fuzzy
20182
  msgid "Could not create the wppa directory."
20183
  msgstr "Konnte das WPPA Verzeichnis erstellen."
20184
 
20185
+ #: wppa-setup.php:1682
20186
  #, fuzzy
20187
  msgid "Successfully created wppa directory."
20188
  msgstr "Erfolgreich WPPA Verzeichnis erstellt."
20189
 
20190
+ #: wppa-setup.php:1692
20191
  #, fuzzy
20192
  msgid "Could not create the wppa thumbs directory."
20193
  msgstr "Konnte das WPPA Daumen Verzeichnis erstellen."
20194
 
20195
+ #: wppa-setup.php:1696
20196
  #, fuzzy
20197
  msgid "Successfully created wppa thumbs directory."
20198
  msgstr "Erfolgreich WPPA Daumen Verzeichnis erstellt."
20199
 
20200
+ #: wppa-setup.php:1706
20201
  #, fuzzy
20202
  msgid "Could not create the wppa watermarks directory."
20203
  msgstr "Konnte das WPPA Wasserzeichen-Verzeichnis erstellen."
20204
 
20205
+ #: wppa-setup.php:1710
20206
  #, fuzzy
20207
  msgid "Successfully created wppa watermarks directory."
20208
  msgstr "Erfolgreich WPPA Wasserzeichen-Verzeichnis erstellt."
20209
 
20210
+ #: wppa-setup.php:1720
20211
  #, fuzzy
20212
  msgid "Could not create the wppa fonts directory."
20213
  msgstr "Konnte das WPPA Fonts-Verzeichnis erstellen."
20214
 
20215
+ #: wppa-setup.php:1724
20216
  #, fuzzy
20217
  msgid "Successfully created wppa fonts directory."
20218
  msgstr "Erfolgreich WPPA Fonts-Verzeichnis erstellt."
20219
 
20220
+ #: wppa-setup.php:1736
20221
  #, fuzzy
20222
  msgid "Unable to create depot directory."
20223
  msgstr "Das Verzeichnis kann nicht erstellt werden."
20224
 
20225
+ #: wppa-setup.php:1740
20226
  #, fuzzy
20227
  msgid "Successfully created wppa depot directory."
20228
  msgstr "Erfolgreich WPPA Depot-Verzeichnis erstellt."
20229
 
20230
+ #: wppa-setup.php:1751
20231
  #, fuzzy
20232
  msgid "Unable to create user depot directory"
20233
  msgstr "Benutzer konnte nicht Depot-Verzeichnis erstellen"
20234
 
20235
+ #: wppa-setup.php:1755
20236
  #, fuzzy
20237
  msgid "Successfully created wppa user depot directory."
20238
  msgstr "Erfolgreich WPPA Benutzer Depotverzeichnis erstellt."
20239
 
20240
+ #: wppa-setup.php:1765
20241
  #, fuzzy
20242
  msgid "Unable to create temp directory"
20243
  msgstr "Kann das Verzeichnis nicht erstellen"
20244
 
20245
+ #: wppa-setup.php:1769
20246
  #, fuzzy
20247
  msgid "Successfully created temp directory."
20248
  msgstr "Erfolgreich Temp-Verzeichnis erstellt."
20249
 
20250
+ #: wppa-setup.php:1777
20251
  #, fuzzy, php-format
20252
  msgid ""
20253
  "Ask your administrator to give you more rights, or create <b>%s</b> manually "
20256
  "Fragen Sie Ihren Administrator Sie mehr Rechte zu geben, oder <b>erstellen"
20257
  "%s</b> manuell ein FTP - Programm."
20258
 
20259
+ #: wppa-setup.php:1804
20260
  msgid "Default photo album for"
20261
  msgstr "Standard-Fotoalbum für"
20262
 
20320
  #: wppa-slideshow-widget.php:212
20321
  #, fuzzy
20322
  msgid "Vertical alignment:"
20323
+ msgstr "Senkrecht zentrieren"
20324
 
20325
  #: wppa-slideshow-widget.php:218
20326
  #, fuzzy
20535
  #: wppa-stereo.php:36
20536
  #, fuzzy
20537
  msgid "Flat"
20538
+ msgstr "Fixer Geldbetrag je Verkauf <br>"
20539
 
20540
  #: wppa-stereo.php:38
20541
  #, fuzzy
20601
  #: wppa-thumbnail-widget.php:211
20602
  #, fuzzy
20603
  msgid "Max number:"
20604
+ msgstr "Maximale Anzahl:"
20605
 
20606
  #: wppa-thumbnail-widget.php:225
20607
  #, fuzzy
20620
  #: wppa-tinymce-scripts.php:64 wppa-tinymce-shortcodes.php:59
20621
  #, fuzzy
20622
  msgid "No Preview available"
20623
+ msgstr "Keine Vorschau verfügbar"
20624
 
20625
  #: wppa-tinymce-scripts.php:80
20626
  #, fuzzy
21218
  #: wppa-tinymce-shortcodes.php:414
21219
  #, fuzzy
21220
  msgid "--- please select category ---"
21221
+ msgstr "Bitte eine Kategorie auswählen"
21222
 
21223
  #: wppa-tinymce-shortcodes.php:432 wppa-tinymce-shortcodes.php:446
21224
  #, fuzzy
21258
  #: wppa-tinymce-shortcodes.php:493 wppa-tinymce-shortcodes.php:541
21259
  #, fuzzy
21260
  msgid "Additional features:"
21261
+ msgstr "Weitere Features:"
21262
 
21263
  #: wppa-tinymce-shortcodes.php:495
21264
  #, fuzzy
21366
  #: wppa-topten-widget.php:346
21367
  #, fuzzy
21368
  msgid "Number of views"
21369
+ msgstr "Aufrufe insgesamt"
21370
 
21371
  #: wppa-topten-widget.php:350
21372
  #, fuzzy
21381
  #: wppa-topten-widget.php:365
21382
  #, fuzzy
21383
  msgid "Show owner:"
21384
+ msgstr "Nur einmal anzeigen"
21385
 
21386
  #: wppa-topten-widget.php:370
21387
  #, fuzzy
21525
  #: wppa-upload.php:248 wppa-upload.php:257 wppa-upload.php:370
21526
  #, fuzzy
21527
  msgid "Selected Files:"
21528
+ msgstr "Ausgewählte Dateien"
21529
 
21530
  #: wppa-upload.php:260
21531
  #, fuzzy
21532
  msgid "Size"
21533
+ msgstr "Max Fotogröße: %d x %d (% 2.1f MegaPixel)"
21534
 
21535
  #: wppa-upload.php:261
21536
  #, fuzzy
21550
  #: wppa-upload.php:290
21551
  #, fuzzy
21552
  msgid "Try again!"
21553
+ msgstr "Bitte versuchen Sie es erneut!"
21554
 
21555
  #: wppa-upload.php:292
21556
  #, fuzzy
21557
  msgid "Total"
21558
+ msgstr "Summe"
21559
 
21560
  #: wppa-upload.php:326
21561
  #, fuzzy
21596
  #: wppa-upload.php:436
21597
  #, fuzzy
21598
  msgid "Box C:"
21599
+ msgstr "Feld C"
21600
 
21601
  #: wppa-upload.php:436
21602
  #, fuzzy
21664
  msgid "Rating: %s"
21665
  msgstr "Bewertung - %s"
21666
 
21667
+ #: wppa-utils.php:941 wppa-utils.php:952 wppa-utils.php:963
21668
  #, fuzzy
21669
  msgid "Notification of inappropriate image"
21670
  msgstr "Mitteilung über unangemessenen Bild"
21671
 
21672
+ #: wppa-utils.php:942 wppa-utils.php:953 wppa-utils.php:964
21673
  #, fuzzy, php-format
21674
  msgid "Photo %s has been marked as inappropriate by %s different visitors."
21675
  msgstr ""
21676
  "Foto%s wurde als unangemessen durch%s unterschiedliche Besucher markiert."
21677
 
21678
+ #: wppa-utils.php:954
21679
  #, fuzzy
21680
  msgid "The status has been changed to 'pending'."
21681
  msgstr "Der Status wurde geändert, um \"offen\"."
21682
 
21683
+ #: wppa-utils.php:965
21684
  #, fuzzy
21685
  msgid "It has been deleted."
21686
  msgstr "Empresa não cadastrada ou a espera da aprovação do administrador."
21687
 
21688
+ #: wppa-utils.php:1032
21689
  #, fuzzy
21690
  msgid "Your photo has a new approved comment"
21691
  msgstr "Ihr Foto hat einen neuen genehmigten Kommentar"
21692
 
21693
+ #: wppa-utils.php:1035
21694
  #, fuzzy
21695
  msgid "From:"
21696
+ msgstr "Foto %s existiert bereits im Album Nummer %s. Entfernt vom Depot."
21697
 
21698
+ #: wppa-utils.php:1043
21699
  #, fuzzy
21700
  msgid "Approved comment on photo"
21701
  msgstr "Genehmigt Kommentar auf Foto"
21702
 
21703
+ #: wppa-utils.php:1090
21704
  #, fuzzy, php-format
21705
  msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
21706
  msgstr "Die Besucher Email - Adresse lautet: <a href=\"mailto:%s\">%s</a>"
21707
 
21708
+ #: wppa-utils.php:1095
21709
  #, fuzzy, php-format
21710
  msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
21711
  msgstr ""
21712
  "Der Besucher sagt , seine E - Mail - Adresse lautet: <a href=\"mailto:%s\">"
21713
  "%s</a>"
21714
 
21715
+ #: wppa-utils.php:1103
21716
  #, fuzzy, php-format
21717
  msgid ""
21718
  "This message is automaticly generated at %s. It is useless to respond to it."
21720
  "Diese Meldung wird automatisch in%s erzeugt. Es ist sinnlos, darauf zu "
21721
  "reagieren."
21722
 
21723
+ #: wppa-utils.php:1324
21724
  #, fuzzy, php-format
21725
  msgid "Time out after processing %s items."
21726
  msgstr "Time out nach s Produkte Verarbeitung%."
21727
 
21728
+ #: wppa-utils.php:1327 wppa-utils.php:1331
21729
  #, fuzzy, php-format
21730
  msgid "Time out after processing %s items. Please restart this operation"
21731
  msgstr ""
21732
  "Time out nach s Produkte Verarbeitung%. Bitte starten Sie diesen Vorgang"
21733
 
21734
+ #: wppa-utils.php:2391
21735
  #, fuzzy
21736
  msgid "There are no ratings between"
21737
  msgstr "Es liegen noch keine Bewertungen zwischen"
languages/wp-photo-album-plus-es_CA.mo CHANGED
Binary file
languages/wp-photo-album-plus-es_CA.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2016-08-27 08:17+0200\n"
5
- "PO-Revision-Date: 2016-08-27 08:17+0200\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: es_CA\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.8\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: wppa.php\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -30,7 +30,7 @@ msgstr ""
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 "Editar"
36
 
@@ -67,7 +67,7 @@ msgid "Next page"
67
  msgstr ""
68
 
69
  #: theme/search-2016.php:48 wppa-settings-autosave.php:379
70
- #: wppa-settings-autosave.php:1581 wppa-settings-autosave.php:8742
71
  msgid "Page"
72
  msgstr ""
73
 
@@ -225,11 +225,11 @@ msgstr ""
225
  msgid "Photo&thinsp;Albums"
226
  msgstr ""
227
 
228
- #: wppa-admin.php:59 wppa-adminbar.php:40 wppa-settings-autosave.php:6041
229
  msgid "Album Admin"
230
  msgstr ""
231
 
232
- #: wppa-admin.php:60 wppa-adminbar.php:47 wppa-settings-autosave.php:6042
233
  #: wppa-upload-widget.php:79 wppa-upload.php:119
234
  msgid "Upload Photos"
235
  msgstr ""
@@ -239,7 +239,7 @@ msgid "Edit Photos"
239
  msgstr ""
240
 
241
  #: wppa-admin.php:65 wppa-adminbar.php:61 wppa-import.php:168
242
- #: wppa-settings-autosave.php:6043
243
  msgid "Import Photos"
244
  msgstr ""
245
 
@@ -248,12 +248,12 @@ msgid "Moderate Photos"
248
  msgstr ""
249
 
250
  #: wppa-admin.php:67 wppa-adminbar.php:75 wppa-export.php:32
251
- #: wppa-settings-autosave.php:6045
252
  msgid "Export Photos"
253
  msgstr ""
254
 
255
  #: wppa-admin.php:68 wppa-adminbar.php:82 wppa-comment-admin.php:223
256
- #: wppa-settings-autosave.php:6046
257
  msgid "Settings"
258
  msgstr ""
259
 
@@ -262,7 +262,7 @@ msgid "Photo of the day Widget"
262
  msgstr ""
263
 
264
  #: wppa-admin.php:69 wppa-adminbar.php:89 wppa-potd-widget.php:60
265
- #: wppa-settings-autosave.php:6047 wppa-setup.php:1588
266
  msgid "Photo of the day"
267
  msgstr ""
268
 
@@ -271,8 +271,8 @@ msgid "Manage comments"
271
  msgstr ""
272
 
273
  #: wppa-admin.php:70 wppa-adminbar.php:96 wppa-settings-autosave.php:371
274
- #: wppa-settings-autosave.php:3196 wppa-settings-autosave.php:8541
275
- #: wppa-settings-autosave.php:8586
276
  msgid "Comments"
277
  msgstr ""
278
 
@@ -300,7 +300,7 @@ msgstr ""
300
  msgid "Import"
301
  msgstr ""
302
 
303
- #: wppa-admin.php:128 wppa-settings-autosave.php:9719
304
  msgid "Update"
305
  msgstr ""
306
 
@@ -572,20 +572,20 @@ msgstr ""
572
  #: wppa-album-admin-autosave.php:1236 wppa-album-admin-autosave.php:1408
573
  #: wppa-album-admin-autosave.php:1503 wppa-boxes-html.php:415
574
  #: wppa-boxes-html.php:529 wppa-photo-admin-autosave.php:1363
575
- #: wppa-photo-admin-autosave.php:1482 wppa-photo-admin-autosave.php:1894
576
  #: wppa-potd-admin.php:71 wppa-potd-admin.php:358
577
  #: wppa-settings-autosave.php:515 wppa-settings-autosave.php:677
578
  #: wppa-settings-autosave.php:699 wppa-settings-autosave.php:1447
579
  #: wppa-settings-autosave.php:1468 wppa-settings-autosave.php:3093
580
  #: wppa-settings-autosave.php:3114 wppa-settings-autosave.php:3451
581
- #: wppa-settings-autosave.php:3475 wppa-settings-autosave.php:4017
582
- #: wppa-settings-autosave.php:4131 wppa-settings-autosave.php:4780
583
- #: wppa-settings-autosave.php:4801 wppa-settings-autosave.php:4977
584
- #: wppa-settings-autosave.php:5001 wppa-settings-autosave.php:6007
585
- #: wppa-settings-autosave.php:6428 wppa-settings-autosave.php:6678
586
- #: wppa-settings-autosave.php:6700 wppa-settings-autosave.php:7430
587
- #: wppa-settings-autosave.php:7454 wppa-settings-autosave.php:8535
588
- #: wppa-settings-autosave.php:9176 wppa-settings-autosave.php:9332
589
  #: wppa-thumbnail-widget.php:202 wppa-upload.php:259
590
  msgid "Name"
591
  msgstr ""
@@ -593,21 +593,21 @@ msgstr ""
593
  #: wppa-ajax.php:1054 wppa-ajax.php:1494 wppa-album-admin-autosave.php:1109
594
  #: wppa-album-admin-autosave.php:1246 wppa-album-admin-autosave.php:1418
595
  #: wppa-album-admin-autosave.php:1513 wppa-photo-admin-autosave.php:1364
596
- #: wppa-photo-admin-autosave.php:1483 wppa-photo-admin-autosave.php:1895
597
  #: wppa-potd-admin.php:72 wppa-potd-admin.php:138 wppa-potd-admin.php:359
598
  #: wppa-settings-autosave.php:516 wppa-settings-autosave.php:678
599
  #: wppa-settings-autosave.php:700 wppa-settings-autosave.php:1448
600
  #: wppa-settings-autosave.php:1469 wppa-settings-autosave.php:3094
601
  #: wppa-settings-autosave.php:3115 wppa-settings-autosave.php:3452
602
- #: wppa-settings-autosave.php:3476 wppa-settings-autosave.php:4781
603
- #: wppa-settings-autosave.php:4802 wppa-settings-autosave.php:4978
604
- #: wppa-settings-autosave.php:5002 wppa-settings-autosave.php:6008
605
- #: wppa-settings-autosave.php:6429 wppa-settings-autosave.php:6679
606
- #: wppa-settings-autosave.php:6701 wppa-settings-autosave.php:7431
607
- #: wppa-settings-autosave.php:7455 wppa-settings-autosave.php:9177
608
- #: wppa-settings-autosave.php:9199 wppa-settings-autosave.php:9239
609
- #: wppa-settings-autosave.php:9261 wppa-settings-autosave.php:9307
610
- #: wppa-settings-autosave.php:9333
611
  msgid "Description"
612
  msgstr ""
613
 
@@ -627,7 +627,7 @@ msgstr ""
627
  msgid "Parent album"
628
  msgstr ""
629
 
630
- #: wppa-ajax.php:1076 wppa-settings-autosave.php:4011
631
  msgid "Photo order"
632
  msgstr ""
633
 
@@ -639,8 +639,8 @@ msgstr ""
639
  msgid "Cover Type"
640
  msgstr ""
641
 
642
- #: wppa-ajax.php:1085 wppa-settings-autosave.php:5003
643
- #: wppa-settings-autosave.php:6009
644
  msgid "Link type"
645
  msgstr ""
646
 
@@ -876,9 +876,9 @@ msgstr ""
876
 
877
  #: wppa-ajax.php:1535 wppa-comment-admin.php:317 wppa-comment-admin.php:404
878
  #: wppa-photo-admin-autosave.php:1365 wppa-photo-admin-autosave.php:1484
879
- #: wppa-settings-autosave.php:6704 wppa-settings-autosave.php:7434
880
- #: wppa-settings-autosave.php:9200 wppa-settings-autosave.php:9240
881
- #: wppa-settings-autosave.php:9262 wppa-settings-autosave.php:9308
882
  msgid "Status"
883
  msgstr ""
884
 
@@ -1080,15 +1080,15 @@ msgstr ""
1080
  msgid "Number of text lines"
1081
  msgstr ""
1082
 
1083
- #: wppa-ajax.php:1972 wppa-settings-autosave.php:4657
1084
  msgid "Overlay opacity"
1085
  msgstr ""
1086
 
1087
- #: wppa-ajax.php:1975 wppa-settings-autosave.php:7994
1088
  msgid "Upload limit"
1089
  msgstr ""
1090
 
1091
- #: wppa-ajax.php:1978 wppa-settings-autosave.php:4327
1092
  msgid "Notify inappropriate"
1093
  msgstr ""
1094
 
@@ -1100,7 +1100,7 @@ msgstr ""
1100
  msgid "Dislike delete"
1101
  msgstr ""
1102
 
1103
- #: wppa-ajax.php:1987 wppa-settings-autosave.php:7530
1104
  msgid "Max execution time"
1105
  msgstr ""
1106
 
@@ -1112,11 +1112,11 @@ msgstr ""
1112
  msgid "JPG Image quality"
1113
  msgstr ""
1114
 
1115
- #: wppa-ajax.php:2002 wppa-settings-autosave.php:4220
1116
  msgid "Number of coverphotos"
1117
  msgstr ""
1118
 
1119
- #: wppa-ajax.php:2005 wppa-settings-autosave.php:4298
1120
  msgid "Dislike value"
1121
  msgstr ""
1122
 
@@ -1353,7 +1353,7 @@ msgid "Edit photo information except copy and move"
1353
  msgstr ""
1354
 
1355
  #: wppa-album-admin-autosave.php:82 wppa-album-admin-autosave.php:822
1356
- #: wppa-setup.php:1314
1357
  msgid "Edit photo information"
1358
  msgstr ""
1359
 
@@ -1365,8 +1365,8 @@ msgstr ""
1365
  msgid "Top of page"
1366
  msgstr ""
1367
 
1368
- #: wppa-album-admin-autosave.php:118 wppa-functions.php:4293
1369
- #: wppa-settings-autosave.php:7842 wppa-wpdb-insert.php:338
1370
  msgid "New Album"
1371
  msgstr ""
1372
 
@@ -1503,68 +1503,68 @@ msgid "Photo order:"
1503
  msgstr ""
1504
 
1505
  #: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:492
1506
- #: wppa-settings-autosave.php:4054 wppa-settings-autosave.php:4078
1507
  #: wppa-tinymce-shortcodes.php:505 wppa-tinymce-shortcodes.php:524
1508
  msgid "--- default ---"
1509
  msgstr ""
1510
 
1511
  #: wppa-album-admin-autosave.php:392 wppa-album-admin-autosave.php:448
1512
- #: wppa-settings-autosave.php:4016 wppa-settings-autosave.php:4130
1513
  #: wppa-thumbnail-widget.php:201
1514
  msgid "Order #"
1515
  msgstr ""
1516
 
1517
  #: wppa-album-admin-autosave.php:394 wppa-album-admin-autosave.php:447
1518
- #: wppa-potd-admin.php:249 wppa-settings-autosave.php:4018
1519
- #: wppa-settings-autosave.php:4132 wppa-thumbnail-widget.php:203
1520
  msgid "Random"
1521
  msgstr ""
1522
 
1523
- #: wppa-album-admin-autosave.php:395 wppa-settings-autosave.php:4019
1524
  msgid "Rating mean value"
1525
  msgstr ""
1526
 
1527
  #: wppa-album-admin-autosave.php:396 wppa-bestof-widget.php:170
1528
- #: wppa-settings-autosave.php:4020 wppa-topten-widget.php:345
1529
  msgid "Number of votes"
1530
  msgstr ""
1531
 
1532
  #: wppa-album-admin-autosave.php:397 wppa-album-admin-autosave.php:452
1533
- #: wppa-settings-autosave.php:4021 wppa-settings-autosave.php:4133
1534
  msgid "Timestamp"
1535
  msgstr ""
1536
 
1537
  #: wppa-album-admin-autosave.php:398 wppa-photo-admin-autosave.php:292
1538
- #: wppa-settings-autosave.php:4022
1539
  msgid "EXIF Date"
1540
  msgstr ""
1541
 
1542
- #: wppa-album-admin-autosave.php:399 wppa-settings-autosave.php:4023
1543
- #: wppa-settings-autosave.php:4134
1544
  msgid "Order # desc"
1545
  msgstr ""
1546
 
1547
- #: wppa-album-admin-autosave.php:400 wppa-settings-autosave.php:4024
1548
- #: wppa-settings-autosave.php:4135
1549
  msgid "Name desc"
1550
  msgstr ""
1551
 
1552
- #: wppa-album-admin-autosave.php:401 wppa-settings-autosave.php:4025
1553
  #: wppa-thumbnail-widget.php:204
1554
  msgid "Rating mean value desc"
1555
  msgstr ""
1556
 
1557
- #: wppa-album-admin-autosave.php:402 wppa-settings-autosave.php:4026
1558
  #: wppa-thumbnail-widget.php:205
1559
  msgid "Number of votes desc"
1560
  msgstr ""
1561
 
1562
- #: wppa-album-admin-autosave.php:403 wppa-settings-autosave.php:4027
1563
- #: wppa-settings-autosave.php:4136 wppa-thumbnail-widget.php:206
1564
  msgid "Timestamp desc"
1565
  msgstr ""
1566
 
1567
- #: wppa-album-admin-autosave.php:404 wppa-settings-autosave.php:4028
1568
  msgid "EXIF Date desc"
1569
  msgstr ""
1570
 
@@ -1652,27 +1652,27 @@ msgid "Cover Type:"
1652
  msgstr ""
1653
 
1654
  #: wppa-album-admin-autosave.php:493 wppa-settings-autosave.php:2031
1655
- #: wppa-settings-autosave.php:4200
1656
  msgid "Standard"
1657
  msgstr ""
1658
 
1659
- #: wppa-album-admin-autosave.php:494 wppa-settings-autosave.php:4201
1660
  msgid "Long Descriptions"
1661
  msgstr ""
1662
 
1663
- #: wppa-album-admin-autosave.php:495 wppa-settings-autosave.php:4202
1664
  msgid "Image Factory"
1665
  msgstr ""
1666
 
1667
- #: wppa-album-admin-autosave.php:496 wppa-settings-autosave.php:4203
1668
  msgid "Standard mcr"
1669
  msgstr ""
1670
 
1671
- #: wppa-album-admin-autosave.php:497 wppa-settings-autosave.php:4204
1672
  msgid "Long Descriptions mcr"
1673
  msgstr ""
1674
 
1675
- #: wppa-album-admin-autosave.php:498 wppa-settings-autosave.php:4205
1676
  msgid "Image Factory mcr"
1677
  msgstr ""
1678
 
@@ -1700,33 +1700,33 @@ msgstr ""
1700
  msgid "Upload limit:"
1701
  msgstr ""
1702
 
1703
- #: wppa-album-admin-autosave.php:543 wppa-settings-autosave.php:6145
1704
- #: wppa-settings-autosave.php:8001
1705
  msgid "for ever"
1706
  msgstr ""
1707
 
1708
  #: wppa-album-admin-autosave.php:544 wppa-album-admin-autosave.php:561
1709
- #: wppa-settings-autosave.php:6146 wppa-settings-autosave.php:8002
1710
  msgid "per hour"
1711
  msgstr ""
1712
 
1713
  #: wppa-album-admin-autosave.php:545 wppa-album-admin-autosave.php:562
1714
- #: wppa-settings-autosave.php:6147 wppa-settings-autosave.php:8003
1715
  msgid "per day"
1716
  msgstr ""
1717
 
1718
  #: wppa-album-admin-autosave.php:546 wppa-album-admin-autosave.php:563
1719
- #: wppa-settings-autosave.php:6148 wppa-settings-autosave.php:8004
1720
  msgid "per week"
1721
  msgstr ""
1722
 
1723
  #: wppa-album-admin-autosave.php:547 wppa-album-admin-autosave.php:564
1724
- #: wppa-settings-autosave.php:6149 wppa-settings-autosave.php:8005
1725
  msgid "per month"
1726
  msgstr ""
1727
 
1728
  #: wppa-album-admin-autosave.php:548 wppa-album-admin-autosave.php:565
1729
- #: wppa-settings-autosave.php:6150 wppa-settings-autosave.php:8006
1730
  msgid "per year"
1731
  msgstr ""
1732
 
@@ -1829,19 +1829,19 @@ msgstr ""
1829
  msgid "Link type:"
1830
  msgstr ""
1831
 
1832
- #: wppa-album-admin-autosave.php:679 wppa-settings-autosave.php:8162
1833
  msgid "the sub-albums and thumbnails"
1834
  msgstr ""
1835
 
1836
- #: wppa-album-admin-autosave.php:680 wppa-settings-autosave.php:8163
1837
  msgid "the sub-albums"
1838
  msgstr ""
1839
 
1840
- #: wppa-album-admin-autosave.php:681 wppa-settings-autosave.php:8164
1841
  msgid "the thumbnails"
1842
  msgstr ""
1843
 
1844
- #: wppa-album-admin-autosave.php:682 wppa-settings-autosave.php:8165
1845
  msgid "the album photos as slideshow"
1846
  msgstr ""
1847
 
@@ -1849,7 +1849,7 @@ msgstr ""
1849
  msgid "the link page with a clean url"
1850
  msgstr ""
1851
 
1852
- #: wppa-album-admin-autosave.php:684 wppa-settings-autosave.php:8166
1853
  msgid "no link at all"
1854
  msgstr ""
1855
 
@@ -1871,8 +1871,8 @@ msgstr ""
1871
  msgid "Link to:"
1872
  msgstr ""
1873
 
1874
- #: wppa-album-admin-autosave.php:705 wppa-settings-autosave.php:9845
1875
- #: wppa-settings-autosave.php:9887 wppa-settings-autosave.php:9939
1876
  msgid "There are no pages (yet) to link to."
1877
  msgstr ""
1878
 
@@ -1959,15 +1959,15 @@ msgstr ""
1959
  msgid "Edit photo"
1960
  msgstr "Editar la foto"
1961
 
1962
- #: wppa-album-admin-autosave.php:878 wppa-boxes-html.php:1655
1963
- #: wppa-boxes-html.php:1658
1964
  msgid "Delete Album"
1965
  msgstr ""
1966
 
1967
  #: wppa-album-admin-autosave.php:880 wppa-boxes-html.php:820
1968
  #: wppa-breadcrumb.php:288 wppa-breadcrumb.php:312 wppa-breadcrumb.php:342
1969
  #: wppa-breadcrumb.php:362 wppa-breadcrumb.php:456 wppa-breadcrumb.php:483
1970
- #: wppa-breadcrumb.php:636 wppa-comment-admin.php:65 wppa-featen-widget.php:179
1971
  #: wppa-lasten-widget.php:203 wppa-slideshow-widget.php:199
1972
  #: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:326
1973
  #: wppa-upload-widget.php:85 wppa-upload.php:158 wppa-upload.php:299
@@ -2003,7 +2003,7 @@ msgstr "Elimina"
2003
  msgid "Move to:"
2004
  msgstr ""
2005
 
2006
- #: wppa-album-admin-autosave.php:896 wppa-photo-admin-autosave.php:2025
2007
  #: wppa-settings-autosave.php:2898
2008
  msgid "Cancel"
2009
  msgstr ""
@@ -2253,8 +2253,8 @@ msgstr ""
2253
  msgid "Do not leave this page unless the bar is entirely green."
2254
  msgstr ""
2255
 
2256
- #: wppa-album-admin-autosave.php:1970 wppa-settings-autosave.php:7914
2257
- #: wppa-settings-autosave.php:7925 wppa-stereo.php:31
2258
  msgid "Color"
2259
  msgstr ""
2260
 
@@ -2325,11 +2325,12 @@ msgid_plural "%d albums"
2325
  msgstr[0] ""
2326
  msgstr[1] ""
2327
 
2328
- #: wppa-album-covers.php:1437 wppa-boxes-html.php:1278 wppa-breadcrumb.php:155
2329
- #: wppa-breadcrumb.php:161 wppa-breadcrumb.php:168 wppa-breadcrumb.php:392
2330
- #: wppa-breadcrumb.php:394 wppa-breadcrumb.php:400 wppa-breadcrumb.php:402
2331
- #: wppa-breadcrumb.php:410 wppa-breadcrumb.php:426 wppa-breadcrumb.php:439
2332
- #: wppa-breadcrumb.php:445 wppa-utils.php:1738 wppa-utils.php:2393
 
2333
  msgid "and"
2334
  msgstr "i"
2335
 
@@ -2348,9 +2349,9 @@ msgstr ""
2348
  msgid "New"
2349
  msgstr ""
2350
 
2351
- #: wppa-album-covers.php:1752 wppa-boxes-html.php:844 wppa-non-admin.php:753
2352
- #: wppa-settings-autosave.php:2293 wppa-settings-autosave.php:5582
2353
- #: wppa-settings-autosave.php:8321
2354
  msgid "Slideshow"
2355
  msgstr "Presentació"
2356
 
@@ -2389,7 +2390,7 @@ msgstr ""
2389
  msgid "--- all separate albums ---"
2390
  msgstr ""
2391
 
2392
- #: wppa-album-navigator-widget.php:102 wppa-common-functions.php:1683
2393
  #: wppa-items.php:436
2394
  msgid "--- owner/public ---"
2395
  msgstr ""
@@ -2517,18 +2518,18 @@ msgstr ""
2517
  msgid "Rating count:"
2518
  msgstr ""
2519
 
2520
- #: wppa-bestof-widget.php:198 wppa-common-functions.php:1665
2521
  #: wppa-import.php:1604 wppa-items.php:424 wppa-potd-admin.php:100
2522
  #: wppa-potd-admin.php:136 wppa-settings-autosave.php:1393
2523
  #: wppa-settings-autosave.php:1742 wppa-settings-autosave.php:1947
2524
  #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:3827
2525
- #: wppa-settings-autosave.php:4015 wppa-settings-autosave.php:4129
2526
- #: wppa-settings-autosave.php:5656 wppa-settings-autosave.php:6389
2527
- #: wppa-settings-autosave.php:7798 wppa-settings-autosave.php:8017
2528
- #: wppa-settings-autosave.php:8073 wppa-settings-autosave.php:8936
2529
- #: wppa-settings-autosave.php:9093 wppa-thumbnail-widget.php:200
2530
- #: wppa-tinymce-scripts.php:287 wppa-tinymce-shortcodes.php:616
2531
- #: wppa-watermark.php:519
2532
  msgid "--- none ---"
2533
  msgstr "--- cap ---"
2534
 
@@ -2570,7 +2571,7 @@ msgid "Category"
2570
  msgstr ""
2571
 
2572
  #: wppa-boxes-html.php:421 wppa-boxes-html.php:554
2573
- #: wppa-settings-autosave.php:7913 wppa-settings-autosave.php:7924
2574
  msgid "Text"
2575
  msgstr ""
2576
 
@@ -2584,9 +2585,9 @@ msgstr ""
2584
  msgid "Items must meet all selected options."
2585
  msgstr ""
2586
 
2587
- #: wppa-boxes-html.php:546 wppa-settings-autosave.php:9197
2588
- #: wppa-settings-autosave.php:9237 wppa-settings-autosave.php:9259
2589
- #: wppa-settings-autosave.php:9305
2590
  msgid "Tag"
2591
  msgstr ""
2592
 
@@ -2608,7 +2609,7 @@ msgid "Super View Photos"
2608
  msgstr ""
2609
 
2610
  #: wppa-boxes-html.php:836 wppa-settings-autosave.php:385
2611
- #: wppa-settings-autosave.php:4887
2612
  msgid "Thumbnails"
2613
  msgstr ""
2614
 
@@ -2660,115 +2661,120 @@ msgstr "Troba!"
2660
  msgid "Social media landing page"
2661
  msgstr "Página de inicio de los medios de comunicación social"
2662
 
2663
- #: wppa-boxes-html.php:1279 wppa-utils.php:1738
2664
  #, php-format
2665
  msgid "See this image on %s"
2666
  msgstr "Veure aquesta imatga a %s"
2667
 
2668
- #: wppa-boxes-html.php:1306 wppa-qr-widget.php:39
2669
  msgid "QR code"
2670
  msgstr "Código QR"
2671
 
2672
- #: wppa-boxes-html.php:1351
2673
  #, php-format
2674
  msgid "Tweet %s on Twitter"
2675
  msgstr "Piula %s a Twitter"
2676
 
2677
- #: wppa-boxes-html.php:1358
2678
  msgid "Share on Twitter"
2679
  msgstr "Compartir en Twitter"
2680
 
2681
- #: wppa-boxes-html.php:1371
2682
  #, php-format
2683
  msgid "Share %s on Google+"
2684
  msgstr "Comparteix %s a Google+"
2685
 
2686
- #: wppa-boxes-html.php:1379
2687
  msgid "Share on Google+"
2688
  msgstr "Compartir en Google+"
2689
 
2690
- #: wppa-boxes-html.php:1394
2691
  #, php-format
2692
  msgid "Share %s on Pinterest"
2693
  msgstr "Comparteix %s a Pinterest"
2694
 
2695
- #: wppa-boxes-html.php:1404
2696
  msgid "Share on Pinterest"
2697
  msgstr "Compartir en Pinterest"
2698
 
2699
- #: wppa-boxes-html.php:1549
2700
  msgid "Comment on Facebook:"
2701
  msgstr "Comentario en Facebook:"
2702
 
2703
- #: wppa-boxes-html.php:1653 wppa-import.php:1305
 
 
 
 
 
2704
  msgid "Working..."
2705
  msgstr "Trabajando..."
2706
 
2707
- #: wppa-boxes-html.php:1750
2708
  msgid "Create Sub Album"
2709
  msgstr ""
2710
 
2711
- #: wppa-boxes-html.php:1750
2712
  msgid "Create Album"
2713
  msgstr "Crear Album"
2714
 
2715
- #: wppa-boxes-html.php:1797
2716
  msgid "Enter album name."
2717
  msgstr "Introduzca el nombre del álbum."
2718
 
2719
- #: wppa-boxes-html.php:1799 wppa-boxes-html.php:2661
2720
  msgid "Don't leave this blank!"
2721
  msgstr "No deje el campo vacío!"
2722
 
2723
- #: wppa-boxes-html.php:1820
2724
  msgid "Enter album description"
2725
  msgstr "Escriba Descripción del álbum"
2726
 
2727
- #: wppa-boxes-html.php:1848
2728
  msgid "Create album"
2729
  msgstr "Crear Album"
2730
 
2731
- #: wppa-boxes-html.php:1951 wppa-boxes-html.php:1965 wppa-functions.php:4512
2732
  msgid "Max uploads reached"
2733
  msgstr "Màxim de pujades assolit"
2734
 
2735
- #: wppa-boxes-html.php:2030 wppa-upload.php:181
2736
  msgid "Upload Photo"
2737
  msgstr "Pujar una foto"
2738
 
2739
- #: wppa-boxes-html.php:2112
2740
  msgid "Select Photo / Video / Camera"
2741
  msgstr ""
2742
 
2743
- #: wppa-boxes-html.php:2115
2744
  msgid "Select Photo / Camera"
2745
  msgstr ""
2746
 
2747
- #: wppa-boxes-html.php:2120
2748
  msgid "Select Photo / Video"
2749
  msgstr ""
2750
 
2751
- #: wppa-boxes-html.php:2123
2752
  msgid "Select Photo"
2753
  msgstr ""
2754
 
2755
- #: wppa-boxes-html.php:2130
2756
  msgid "Select Photos / Video / Camera"
2757
  msgstr ""
2758
 
2759
- #: wppa-boxes-html.php:2133
2760
  msgid "Select Photos / Camera"
2761
  msgstr ""
2762
 
2763
- #: wppa-boxes-html.php:2138
2764
  msgid "Select Photos / Video"
2765
  msgstr ""
2766
 
2767
- #: wppa-boxes-html.php:2141
2768
  msgid "Select Photos"
2769
  msgstr ""
2770
 
2771
- #: wppa-boxes-html.php:2179
2772
  #, php-format
2773
  msgid "You may upload %d photo"
2774
  msgid_plural ""
@@ -2777,218 +2783,218 @@ msgid_plural ""
2777
  msgstr[0] ""
2778
  msgstr[1] ""
2779
 
2780
- #: wppa-boxes-html.php:2187
2781
  #, php-format
2782
  msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
2783
  msgstr "Mida màxima de la foto: %d x %d (%2.1f MegaPixel)"
2784
 
2785
- #: wppa-boxes-html.php:2216 wppa-import.php:561 wppa-upload.php:167
2786
  #: wppa-upload.php:309 wppa-upload.php:383
2787
  msgid "Apply watermark file:"
2788
  msgstr "Aplicar el titxer de marca d'aigua:"
2789
 
2790
- #: wppa-boxes-html.php:2238 wppa-import.php:565 wppa-upload.php:171
2791
  #: wppa-upload.php:313 wppa-upload.php:387
2792
  msgid "Position:"
2793
  msgstr "Posició:"
2794
 
2795
- #: wppa-boxes-html.php:2266
2796
  msgid ""
2797
  "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
2798
  "photoname if available, else the original filename will be used as photo "
2799
  "name."
2800
  msgstr ""
2801
 
2802
- #: wppa-boxes-html.php:2271
2803
  msgid ""
2804
  "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
2805
  "available, else the original filename will be used as photo name."
2806
  msgstr ""
2807
 
2808
- #: wppa-boxes-html.php:2276
2809
  msgid ""
2810
  "If you leave this blank, the original filename will be used as photo name."
2811
  msgstr ""
2812
  "Si deixeu aquest text en blanc, el nom del fitxer original s'utilitzarà com "
2813
  "a nom de la foto."
2814
 
2815
- #: wppa-boxes-html.php:2281 wppa-settings-autosave.php:1681
2816
  msgid "Photo name"
2817
  msgstr ""
2818
 
2819
- #: wppa-boxes-html.php:2299
2820
  msgid "Photo description"
2821
  msgstr ""
2822
 
2823
- #: wppa-boxes-html.php:2327
2824
  msgid "hidden"
2825
  msgstr ""
2826
 
2827
- #: wppa-boxes-html.php:2397
2828
  msgid "Preview tags:"
2829
  msgstr ""
2830
 
2831
- #: wppa-boxes-html.php:2414
2832
  msgid "Blog it?"
2833
  msgstr ""
2834
 
2835
- #: wppa-boxes-html.php:2424
2836
  msgid "Upload and blog"
2837
  msgstr ""
2838
 
2839
- #: wppa-boxes-html.php:2428 wppa-boxes-html.php:2491
2840
  msgid "Upload photo"
2841
  msgstr ""
2842
 
2843
- #: wppa-boxes-html.php:2436
2844
  msgid "Post title:"
2845
  msgstr ""
2846
 
2847
- #: wppa-boxes-html.php:2446
2848
  msgid "Text BEFORE the image:"
2849
  msgstr ""
2850
 
2851
- #: wppa-boxes-html.php:2456
2852
  msgid "Text AFTER the image:"
2853
  msgstr ""
2854
 
2855
- #: wppa-boxes-html.php:2476
2856
  msgid "Please select an album and try again"
2857
  msgstr "Per favor, trieu un àlbum i intenteu-ho de nou"
2858
 
2859
- #: wppa-boxes-html.php:2547
2860
  msgid "ERROR: unable to upload files."
2861
  msgstr ""
2862
 
2863
- #: wppa-boxes-html.php:2601
2864
  msgid "Edit Album Info"
2865
  msgstr ""
2866
 
2867
- #: wppa-boxes-html.php:2659
2868
  msgid "Enter album name"
2869
  msgstr ""
2870
 
2871
- #: wppa-boxes-html.php:2681
2872
  msgid "Album description:"
2873
  msgstr ""
2874
 
2875
- #: wppa-boxes-html.php:2735
2876
  msgid "Update album"
2877
  msgstr ""
2878
 
2879
- #: wppa-boxes-html.php:2804
2880
  msgid "wrote:"
2881
  msgstr "va escriure:"
2882
 
2883
- #: wppa-boxes-html.php:2866
2884
  msgid "Avatar"
2885
  msgstr ""
2886
 
2887
- #: wppa-boxes-html.php:2909 wppa-links.php:826
2888
  msgid "Awaiting moderation"
2889
  msgstr "Esperant moderació"
2890
 
2891
- #: wppa-boxes-html.php:2912
2892
  msgid "Marked as spam"
2893
  msgstr "Marcat com a spam"
2894
 
2895
- #: wppa-boxes-html.php:2936
2896
  msgid "Edit!"
2897
  msgstr "Edita!"
2898
 
2899
- #: wppa-boxes-html.php:2940
2900
  msgid "Send!"
2901
  msgstr "Envia!"
2902
 
2903
- #: wppa-boxes-html.php:3001
2904
  msgid "Your name:"
2905
  msgstr "El vostre nom:"
2906
 
2907
- #: wppa-boxes-html.php:3016
2908
  msgid "Your email:"
2909
  msgstr "El vostre email:"
2910
 
2911
- #: wppa-boxes-html.php:3032
2912
  msgid "Your comment:"
2913
  msgstr "El vostre comentari: "
2914
 
2915
- #: wppa-boxes-html.php:3076
2916
  #, php-format
2917
  msgid "You must <a href=\"%s\">login</a> to enter a comment"
2918
  msgstr "Heu <a href=\"%s\">d'identificar-vos</a> per a introduïr un comentari"
2919
 
2920
- #: wppa-boxes-html.php:3079
2921
  msgid "You must login to enter a comment"
2922
  msgstr ""
2923
 
2924
- #: wppa-boxes-html.php:3091 wppa-functions.php:2568 wppa-thumbnails.php:682
2925
  #, php-format
2926
  msgid "%d comment"
2927
  msgid_plural "%d comments"
2928
  msgstr[0] ""
2929
  msgstr[1] ""
2930
 
2931
- #: wppa-boxes-html.php:3095
2932
  msgid "Leave a comment"
2933
  msgstr "Deixeu un comentari"
2934
 
2935
- #: wppa-boxes-html.php:3192
2936
  msgid "Show IPTC data"
2937
  msgstr "Mostra les dades IPTC"
2938
 
2939
- #: wppa-boxes-html.php:3203
2940
  msgid "Hide IPTC data"
2941
  msgstr "Oculta les dades IPTC"
2942
 
2943
- #: wppa-boxes-html.php:3251
2944
  msgid "No IPTC data"
2945
  msgstr "No hi ha dades IPTC"
2946
 
2947
- #: wppa-boxes-html.php:3303
2948
  msgid "Show EXIF data"
2949
  msgstr "Mostra les dades EXIF"
2950
 
2951
- #: wppa-boxes-html.php:3314
2952
  msgid "Hide EXIF data"
2953
  msgstr "Oculta les dades EXIF"
2954
 
2955
- #: wppa-boxes-html.php:3366
2956
  msgid "No EXIF data"
2957
  msgstr "No hi ha dades EXIF"
2958
 
2959
- #: wppa-boxes-html.php:3480 wppa-boxes-html.php:3485
2960
  msgid "< Previous"
2961
  msgstr "< Atrás"
2962
 
2963
- #: wppa-boxes-html.php:3491 wppa-boxes-html.php:3496
2964
  msgid "Next >"
2965
  msgstr "Siguiente >"
2966
 
2967
- #: wppa-boxes-html.php:3598 wppa-boxes-html.php:3677
2968
  msgid "See the authors albums"
2969
  msgstr ""
2970
 
2971
- #: wppa-boxes-html.php:3602 wppa-boxes-html.php:3610 wppa-boxes-html.php:3681
2972
  msgid "See the authors photos"
2973
  msgstr ""
2974
 
2975
- #: wppa-boxes-html.php:3606 wppa-boxes-html.php:3614 wppa-boxes-html.php:3685
2976
  msgid "See all the authors photos"
2977
  msgstr ""
2978
 
2979
- #: wppa-boxes-html.php:3640
2980
  #, php-format
2981
  msgid "Photo by: %s"
2982
  msgstr ""
2983
 
2984
- #: wppa-boxes-html.php:3643 wppa-boxes-html.php:3706
2985
  #, php-format
2986
  msgid "%d max rating"
2987
  msgid_plural "%d max ratings"
2988
  msgstr[0] ""
2989
  msgstr[1] ""
2990
 
2991
- #: wppa-boxes-html.php:3647 wppa-boxes-html.php:3710 wppa-non-admin.php:922
2992
  #: wppa-topten-widget.php:196 wppa-topten-widget.php:213
2993
  #: wppa-topten-widget.php:249
2994
  #, php-format
@@ -2997,22 +3003,22 @@ msgid_plural "%d votes"
2997
  msgstr[0] ""
2998
  msgstr[1] ""
2999
 
3000
- #: wppa-boxes-html.php:3651
3001
  #, php-format
3002
  msgid "Rating: %4.2f."
3003
  msgstr ""
3004
 
3005
- #: wppa-boxes-html.php:3659
3006
  #, php-format
3007
  msgid "Photo %s not found."
3008
  msgstr ""
3009
 
3010
- #: wppa-boxes-html.php:3714
3011
  #, php-format
3012
  msgid "Mean value: %4.2f."
3013
  msgstr ""
3014
 
3015
- #: wppa-boxes-html.php:4061 wppa-photo-admin-autosave.php:196
3016
  msgid "Refresh"
3017
  msgstr ""
3018
 
@@ -3020,7 +3026,7 @@ msgstr ""
3020
  msgid "Post:"
3021
  msgstr ""
3022
 
3023
- #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:661
3024
  msgid "Page:"
3025
  msgstr ""
3026
 
@@ -3164,19 +3170,19 @@ msgstr "Vista de miniatures."
3164
  msgid "Thumbs"
3165
  msgstr "Miniatures"
3166
 
3167
- #: wppa-breadcrumb.php:659
3168
  msgid "Unpublished"
3169
  msgstr ""
3170
 
3171
- #: wppa-breadcrumb.php:689
3172
  msgid "Found photos will meet the search criteria as follows:"
3173
  msgstr ""
3174
 
3175
- #: wppa-breadcrumb.php:692
3176
  msgid "AND"
3177
  msgstr ""
3178
 
3179
- #: wppa-breadcrumb.php:696
3180
  msgid "OR"
3181
  msgstr ""
3182
 
@@ -3209,7 +3215,7 @@ msgstr ""
3209
  msgid "Email:"
3210
  msgstr ""
3211
 
3212
- #: wppa-comment-admin.php:80 wppa-utils.php:1037
3213
  msgid "Comment:"
3214
  msgstr ""
3215
 
@@ -3273,7 +3279,7 @@ msgid "Linkpage:"
3273
  msgstr ""
3274
 
3275
  #: wppa-comment-admin.php:231 wppa-settings-autosave.php:465
3276
- #: wppa-settings-autosave.php:8191
3277
  msgid "--- Please select a page ---"
3278
  msgstr ""
3279
 
@@ -3335,7 +3341,7 @@ msgstr ""
3335
  msgid "Save Settings / Perform bulk action"
3336
  msgstr ""
3337
 
3338
- #: wppa-comment-admin.php:309 wppa-comment-admin.php:396 wppa-non-admin.php:758
3339
  msgid "Photo"
3340
  msgstr ""
3341
 
@@ -3349,13 +3355,13 @@ msgstr ""
3349
  #: wppa-settings-autosave.php:1446 wppa-settings-autosave.php:1467
3350
  #: wppa-settings-autosave.php:3092 wppa-settings-autosave.php:3113
3351
  #: wppa-settings-autosave.php:3450 wppa-settings-autosave.php:3474
3352
- #: wppa-settings-autosave.php:4779 wppa-settings-autosave.php:4800
3353
- #: wppa-settings-autosave.php:4976 wppa-settings-autosave.php:5000
3354
- #: wppa-settings-autosave.php:6006 wppa-settings-autosave.php:6677
3355
- #: wppa-settings-autosave.php:6699 wppa-settings-autosave.php:7429
3356
- #: wppa-settings-autosave.php:7453 wppa-settings-autosave.php:9175
3357
- #: wppa-settings-autosave.php:9196 wppa-settings-autosave.php:9236
3358
- #: wppa-settings-autosave.php:9258 wppa-settings-autosave.php:9304
3359
  msgid "#"
3360
  msgstr ""
3361
 
@@ -3425,126 +3431,126 @@ msgstr ""
3425
  msgid "Comments on Photos"
3426
  msgstr ""
3427
 
3428
- #: wppa-comment-widget.php:73 wppa-non-admin.php:892 wppa-thumbnails.php:500
3429
  msgid "wrote"
3430
  msgstr ""
3431
 
3432
  #: wppa-comment-widget.php:87 wppa-featen-widget.php:137
3433
- #: wppa-lasten-widget.php:148 wppa-non-admin.php:893 wppa-non-admin.php:898
3434
- #: wppa-non-admin.php:903 wppa-non-admin.php:907 wppa-non-admin.php:914
3435
- #: wppa-non-admin.php:924 wppa-potd-widget.php:159
3436
  #: wppa-thumbnail-widget.php:114 wppa-topten-widget.php:257
3437
  msgid "Photo not found"
3438
  msgstr ""
3439
 
3440
- #: wppa-comment-widget.php:93 wppa-non-admin.php:894
3441
  msgid "There are no commented photos (yet)"
3442
  msgstr ""
3443
 
3444
- #: wppa-common-functions.php:635 wppa-functions.php:4930
3445
  #, php-format
3446
  msgid "%d second"
3447
  msgid_plural "%d seconds"
3448
  msgstr[0] ""
3449
  msgstr[1] ""
3450
 
3451
- #: wppa-common-functions.php:639 wppa-functions.php:4926
3452
- #: wppa-settings-autosave.php:6522 wppa-settings-autosave.php:6523
3453
  #, php-format
3454
  msgid "%d minute"
3455
  msgid_plural "%d minutes"
3456
  msgstr[0] ""
3457
  msgstr[1] ""
3458
 
3459
- #: wppa-common-functions.php:643 wppa-functions.php:4922
3460
- #: wppa-settings-autosave.php:6524 wppa-settings-autosave.php:7808
3461
  #, php-format
3462
  msgid "%d hour"
3463
  msgid_plural "%d hours"
3464
  msgstr[0] ""
3465
  msgstr[1] ""
3466
 
3467
- #: wppa-common-functions.php:647 wppa-functions.php:4918
3468
- #: wppa-settings-autosave.php:6525 wppa-settings-autosave.php:7809
3469
- #: wppa-settings-autosave.php:7810 wppa-settings-autosave.php:7811
3470
- #: wppa-settings-autosave.php:7812 wppa-settings-autosave.php:7813
3471
- #: wppa-settings-autosave.php:7814 wppa-settings-autosave.php:7816
3472
- #: wppa-settings-autosave.php:7817 wppa-settings-autosave.php:7818
3473
- #: wppa-settings-autosave.php:8996
3474
  #, php-format
3475
  msgid "%d day"
3476
  msgid_plural "%d days"
3477
  msgstr[0] ""
3478
  msgstr[1] ""
3479
 
3480
- #: wppa-common-functions.php:651 wppa-functions.php:4914
3481
- #: wppa-settings-autosave.php:6526 wppa-settings-autosave.php:7815
3482
- #: wppa-settings-autosave.php:7819 wppa-settings-autosave.php:7820
3483
- #: wppa-settings-autosave.php:7821 wppa-settings-autosave.php:8997
3484
  #, php-format
3485
  msgid "%d week"
3486
  msgid_plural "%d weeks"
3487
  msgstr[0] ""
3488
  msgstr[1] ""
3489
 
3490
- #: wppa-common-functions.php:655 wppa-settings-autosave.php:7822
3491
- #: wppa-settings-autosave.php:8998 wppa-settings-autosave.php:8999
3492
- #: wppa-settings-autosave.php:9000 wppa-settings-autosave.php:9001
3493
- #: wppa-settings-autosave.php:9002 wppa-settings-autosave.php:9004
3494
  #, php-format
3495
  msgid "%d month"
3496
  msgid_plural "%d months"
3497
  msgstr[0] ""
3498
  msgstr[1] ""
3499
 
3500
- #: wppa-common-functions.php:658 wppa-settings-autosave.php:9003
3501
- #: wppa-settings-autosave.php:9005
3502
  #, php-format
3503
  msgid "%d year"
3504
  msgid_plural "%d years"
3505
  msgstr[0] ""
3506
  msgstr[1] ""
3507
 
3508
- #: wppa-common-functions.php:1381
3509
  #, php-format
3510
  msgid ""
3511
  "Based on your server memory limit you should not upload images larger then "
3512
  "<strong>%d x %d (%2.1f MP)</strong>"
3513
  msgstr ""
3514
 
3515
- #: wppa-common-functions.php:1659
3516
  msgid "- select an album -"
3517
  msgstr ""
3518
 
3519
- #: wppa-common-functions.php:1671 wppa-items.php:432
3520
  #: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
3521
  #: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
3522
  #: wppa-tagcloud-widget.php:79
3523
  msgid "--- all ---"
3524
  msgstr "--- tot ---"
3525
 
3526
- #: wppa-common-functions.php:1677
3527
  msgid "--- generic ---"
3528
  msgstr ""
3529
 
3530
- #: wppa-common-functions.php:1694
3531
  msgid "--- multiple see below ---"
3532
  msgstr ""
3533
 
3534
- #: wppa-common-functions.php:1700
3535
  msgid "--- a selection box ---"
3536
  msgstr ""
3537
 
3538
- #: wppa-common-functions.php:1747 wppa-import.php:1605 wppa-items.php:428
3539
- #: wppa-settings-autosave.php:8017 wppa-settings-autosave.php:8073
3540
  msgid "--- separate ---"
3541
  msgstr "--- separar ---"
3542
 
3543
- #: wppa-common-functions.php:1853
3544
  msgid "Photo id ="
3545
  msgstr ""
3546
 
3547
- #: wppa-common-functions.php:1853
3548
  msgid "Value ="
3549
  msgstr ""
3550
 
@@ -3608,180 +3614,180 @@ msgstr ""
3608
  msgid "n.a."
3609
  msgstr "n.a."
3610
 
3611
- #: wppa-exif-iptc-common.php:239 wppa-utils.php:2625
3612
  msgid "Not Defined"
3613
  msgstr "No definit"
3614
 
3615
- #: wppa-exif-iptc-common.php:240 wppa-utils.php:2626
3616
  msgid "Manual"
3617
  msgstr "Manual"
3618
 
3619
- #: wppa-exif-iptc-common.php:241 wppa-utils.php:2627
3620
  msgid "Program AE"
3621
  msgstr ""
3622
 
3623
- #: wppa-exif-iptc-common.php:242 wppa-utils.php:2628
3624
  msgid "Aperture-priority AE"
3625
  msgstr ""
3626
 
3627
- #: wppa-exif-iptc-common.php:243 wppa-utils.php:2629
3628
  msgid "Shutter speed priority AE"
3629
  msgstr ""
3630
 
3631
- #: wppa-exif-iptc-common.php:244 wppa-utils.php:2630
3632
  msgid "Creative (Slow speed)"
3633
  msgstr ""
3634
 
3635
- #: wppa-exif-iptc-common.php:245 wppa-utils.php:2631
3636
  msgid "Action (High speed)"
3637
  msgstr ""
3638
 
3639
- #: wppa-exif-iptc-common.php:246 wppa-utils.php:2632
3640
  msgid "Portrait"
3641
  msgstr ""
3642
 
3643
- #: wppa-exif-iptc-common.php:247 wppa-utils.php:2633
3644
  msgid "Landscape"
3645
  msgstr ""
3646
 
3647
- #: wppa-exif-iptc-common.php:248 wppa-utils.php:2634
3648
  msgid "Bulb"
3649
  msgstr ""
3650
 
3651
- #: wppa-exif-iptc-common.php:270 wppa-utils.php:2635
3652
  msgid "Average"
3653
  msgstr "Mitjana"
3654
 
3655
- #: wppa-exif-iptc-common.php:271 wppa-utils.php:2636
3656
  msgid "Center-weighted average"
3657
  msgstr ""
3658
 
3659
- #: wppa-exif-iptc-common.php:272 wppa-utils.php:2637
3660
  msgid "Spot"
3661
  msgstr ""
3662
 
3663
- #: wppa-exif-iptc-common.php:273 wppa-utils.php:2638
3664
  msgid "Multi-spot"
3665
  msgstr ""
3666
 
3667
- #: wppa-exif-iptc-common.php:274 wppa-utils.php:2639
3668
  msgid "Multi-segment"
3669
  msgstr ""
3670
 
3671
- #: wppa-exif-iptc-common.php:275 wppa-utils.php:2640
3672
  msgid "Partial"
3673
  msgstr ""
3674
 
3675
- #: wppa-exif-iptc-common.php:276 wppa-settings-autosave.php:4904
3676
- #: wppa-utils.php:2641
3677
  msgid "Other"
3678
  msgstr ""
3679
 
3680
- #: wppa-exif-iptc-common.php:312 wppa-utils.php:2642
3681
  msgid "No Flash"
3682
  msgstr ""
3683
 
3684
- #: wppa-exif-iptc-common.php:314 wppa-utils.php:2643
3685
  msgid "Fired"
3686
  msgstr ""
3687
 
3688
- #: wppa-exif-iptc-common.php:316 wppa-utils.php:2644
3689
  msgid "Fired, Return not detected"
3690
  msgstr ""
3691
 
3692
- #: wppa-exif-iptc-common.php:318 wppa-utils.php:2645
3693
  msgid "Fired, Return detected"
3694
  msgstr ""
3695
 
3696
- #: wppa-exif-iptc-common.php:320 wppa-utils.php:2646
3697
  msgid "On, Did not fire"
3698
  msgstr ""
3699
 
3700
- #: wppa-exif-iptc-common.php:322 wppa-utils.php:2647
3701
  msgid "On, Fired"
3702
  msgstr ""
3703
 
3704
- #: wppa-exif-iptc-common.php:324 wppa-utils.php:2648
3705
  msgid "On, Return not detected"
3706
  msgstr ""
3707
 
3708
- #: wppa-exif-iptc-common.php:326 wppa-utils.php:2649
3709
  msgid "On, Return detected"
3710
  msgstr ""
3711
 
3712
- #: wppa-exif-iptc-common.php:328 wppa-utils.php:2650
3713
  msgid "Off, Did not fire"
3714
  msgstr ""
3715
 
3716
- #: wppa-exif-iptc-common.php:330 wppa-utils.php:2651
3717
  msgid "Off, Did not fire, Return not detected"
3718
  msgstr ""
3719
 
3720
- #: wppa-exif-iptc-common.php:332 wppa-utils.php:2652
3721
  msgid "Auto, Did not fire"
3722
  msgstr ""
3723
 
3724
- #: wppa-exif-iptc-common.php:334 wppa-utils.php:2653
3725
  msgid "Auto, Fired"
3726
  msgstr ""
3727
 
3728
- #: wppa-exif-iptc-common.php:336 wppa-utils.php:2654
3729
  msgid "Auto, Fired, Return not detected"
3730
  msgstr ""
3731
 
3732
- #: wppa-exif-iptc-common.php:338 wppa-utils.php:2655
3733
  msgid "Auto, Fired, Return detected"
3734
  msgstr ""
3735
 
3736
- #: wppa-exif-iptc-common.php:340 wppa-utils.php:2656
3737
  msgid "No flash function"
3738
  msgstr ""
3739
 
3740
- #: wppa-exif-iptc-common.php:342 wppa-utils.php:2657
3741
  msgid "Off, No flash function"
3742
  msgstr ""
3743
 
3744
- #: wppa-exif-iptc-common.php:344 wppa-utils.php:2658
3745
  msgid "Fired, Red-eye reduction"
3746
  msgstr ""
3747
 
3748
- #: wppa-exif-iptc-common.php:346 wppa-utils.php:2659
3749
  msgid "Fired, Red-eye reduction, Return not detected"
3750
  msgstr ""
3751
 
3752
- #: wppa-exif-iptc-common.php:348 wppa-utils.php:2660
3753
  msgid "Fired, Red-eye reduction, Return detected"
3754
  msgstr ""
3755
 
3756
- #: wppa-exif-iptc-common.php:350 wppa-utils.php:2661
3757
  msgid "On, Red-eye reduction"
3758
  msgstr ""
3759
 
3760
- #: wppa-exif-iptc-common.php:352 wppa-utils.php:2662
3761
  msgid "Red-eye reduction, Return not detected"
3762
  msgstr ""
3763
 
3764
- #: wppa-exif-iptc-common.php:354 wppa-utils.php:2663
3765
  msgid "On, Red-eye reduction, Return detected"
3766
  msgstr ""
3767
 
3768
- #: wppa-exif-iptc-common.php:356 wppa-utils.php:2664
3769
  msgid "Off, Red-eye reduction"
3770
  msgstr ""
3771
 
3772
- #: wppa-exif-iptc-common.php:358 wppa-utils.php:2665
3773
  msgid "Auto, Did not fire, Red-eye reduction"
3774
  msgstr ""
3775
 
3776
- #: wppa-exif-iptc-common.php:360 wppa-utils.php:2666
3777
  msgid "Auto, Fired, Red-eye reduction"
3778
  msgstr ""
3779
 
3780
- #: wppa-exif-iptc-common.php:362 wppa-utils.php:2667
3781
  msgid "Auto, Fired, Red-eye reduction, Return not detected"
3782
  msgstr ""
3783
 
3784
- #: wppa-exif-iptc-common.php:364 wppa-utils.php:2668
3785
  msgid "Auto, Fired, Red-eye reduction, Return detected"
3786
  msgstr ""
3787
 
@@ -3885,11 +3891,11 @@ msgstr ""
3885
  msgid "Featured Photos"
3886
  msgstr ""
3887
 
3888
- #: wppa-featen-widget.php:115 wppa-non-admin.php:897
3889
  msgid "View the featured photos"
3890
  msgstr ""
3891
 
3892
- #: wppa-featen-widget.php:146 wppa-non-admin.php:899
3893
  msgid "There are no featured photos (yet)"
3894
  msgstr ""
3895
 
@@ -3948,7 +3954,7 @@ msgstr "Va escriure sobre la foto"
3948
  msgid "Moderate comment admin"
3949
  msgstr "Comentari moderat per admin"
3950
 
3951
- #: wppa-functions.php:2366 wppa-functions.php:4727 wppa-import.php:1524
3952
  #: wppa-upload.php:570
3953
  msgid "Moderate manage photo"
3954
  msgstr "Moderar fotos"
@@ -3990,161 +3996,161 @@ msgid "Could not process comment.\\nProbably timed out."
3990
  msgstr ""
3991
  "No s'ha pogut processar el comentari.\\nProbablement s'hagi esgotat el temps."
3992
 
3993
- #: wppa-functions.php:2604 wppa-links.php:1513
3994
  msgid "A video can not be printed or downloaded"
3995
  msgstr ""
3996
 
3997
- #: wppa-functions.php:3059
3998
  msgid "ERROR: Illegal attempt to enter a rating."
3999
  msgstr ""
4000
 
4001
- #: wppa-functions.php:3072
4002
  msgid "ERROR: Illegal attempt to enter a comment."
4003
  msgstr ""
4004
 
4005
- #: wppa-functions.php:4296
4006
  msgid "ERROR: Illegal attempt to create an album."
4007
  msgstr ""
4008
 
4009
- #: wppa-functions.php:4304
4010
  msgid "Wrong captcha, please try again"
4011
  msgstr ""
4012
 
4013
- #: wppa-functions.php:4320
4014
  #, php-format
4015
  msgid "Album #%s created"
4016
  msgstr ""
4017
 
4018
- #: wppa-functions.php:4326
4019
  msgid "Could not create album"
4020
  msgstr ""
4021
 
4022
- #: wppa-functions.php:4338
4023
  msgid "ERROR: Illegal attempt to upload a file."
4024
  msgstr ""
4025
 
4026
- #: wppa-functions.php:4411
4027
  msgid "Photo upload"
4028
  msgstr ""
4029
 
4030
- #: wppa-functions.php:4412
4031
  #, php-format
4032
  msgid "%d photo successfully uploaded"
4033
  msgid_plural "%d photos successfully uploaded"
4034
  msgstr[0] ""
4035
  msgstr[1] ""
4036
 
4037
- #: wppa-functions.php:4413
4038
  #, php-format
4039
  msgid "%s points added"
4040
  msgstr ""
4041
 
4042
- #: wppa-functions.php:4425
4043
  msgid "Your post is awaiting moderation."
4044
  msgstr ""
4045
 
4046
- #: wppa-functions.php:4434
4047
  msgid "Upload failed"
4048
  msgstr "La pujada ha fallat."
4049
 
4050
- #: wppa-functions.php:4437
4051
  #, php-format
4052
  msgid "%d upload failed"
4053
  msgid_plural "%d uploads failed"
4054
  msgstr[0] ""
4055
  msgstr[1] ""
4056
 
4057
- #: wppa-functions.php:4518
4058
  msgid "Error during upload"
4059
  msgstr "Error al pujar la foto"
4060
 
4061
- #: wppa-functions.php:4574
4062
  msgid "Could not insert media into db."
4063
  msgstr ""
4064
 
4065
- #: wppa-functions.php:4614
4066
  msgid "Uploaded file is not an image"
4067
  msgstr "El arxiu pujat no es una imatge"
4068
 
4069
- #: wppa-functions.php:4620
4070
  #, php-format
4071
  msgid ""
4072
  "Only gif, jpg and png image files are supported. Returned filetype = %d."
4073
  msgstr ""
4074
  "Només es suporten imatges gif, jpg i png. Tipus de fitxer retornat = %d."
4075
 
4076
- #: wppa-functions.php:4628
4077
  #, php-format
4078
  msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
4079
  msgstr ""
4080
 
4081
- #: wppa-functions.php:4636
4082
  #, php-format
4083
  msgid "Uploaded file %s already exists in this album."
4084
  msgstr ""
4085
 
4086
- #: wppa-functions.php:4646
4087
  #, php-format
4088
  msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
4089
  msgstr ""
4090
  "Aquesta imatge és massa gran. Mida màxima de la foto: %d x %d (%2.1f "
4091
  "MegaPixel)"
4092
 
4093
- #: wppa-functions.php:4686
4094
  msgid "Could not insert photo into db."
4095
  msgstr "No es pot inserir la foto en la base de dades."
4096
 
4097
- #: wppa-functions.php:4723 wppa-import.php:1520 wppa-upload.php:566
4098
  #, php-format
4099
  msgid "New photo uploaded: %s"
4100
  msgstr "Nova foto pujada: %s"
4101
 
4102
- #: wppa-functions.php:4724 wppa-import.php:1521 wppa-upload.php:567
4103
  #, php-format
4104
  msgid "User %1$s uploaded photo %2$s into album %3$s"
4105
  msgstr ""
4106
 
4107
- #: wppa-functions.php:4726 wppa-import.php:1523 wppa-upload.php:569
4108
  msgid "This upload requires moderation"
4109
  msgstr "Aquesta pujada requereix moderació."
4110
 
4111
- #: wppa-functions.php:4730 wppa-import.php:1527 wppa-upload.php:573
4112
  msgid "Details:"
4113
  msgstr "Detalls:"
4114
 
4115
- #: wppa-functions.php:4731 wppa-import.php:1528 wppa-upload.php:574
4116
- #: wppa-utils.php:942 wppa-utils.php:954
4117
  msgid "Manage photo"
4118
  msgstr "Administrar fotos"
4119
 
4120
- #: wppa-functions.php:4911
4121
  msgid "You can upload after"
4122
  msgstr "Podeu pujar fins a"
4123
 
4124
- #: wppa-functions.php:4954 wppa-functions.php:4958 wppa-functions.php:4965
4125
- #: wppa-functions.php:4969 wppa-links.php:1106 wppa-non-admin.php:812
4126
- #: wppa-settings-autosave.php:9344 wppa-settings-autosave.php:9356
4127
- #: wppa-settings-autosave.php:9368 wppa-settings-autosave.php:9380
4128
- #: wppa-settings-autosave.php:9392 wppa-settings-autosave.php:9404
4129
- #: wppa-settings-autosave.php:9416 wppa-settings-autosave.php:9428
4130
  msgid "Download"
4131
  msgstr ""
4132
 
4133
- #: wppa-functions.php:5013
4134
  msgid "Zoom in"
4135
  msgstr "Augmenta"
4136
 
4137
- #: wppa-functions.php:5044
4138
  #, php-format
4139
  msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
4140
  msgstr ""
4141
 
4142
- #: wppa-functions.php:5047
4143
  #, php-format
4144
  msgid "You can vote again after %s hours, %s minutes and %s seconds"
4145
  msgstr ""
4146
 
4147
- #: wppa-functions.php:5050
4148
  #, php-format
4149
  msgid "You can vote again after %s minutes and %s seconds"
4150
  msgstr ""
@@ -4870,11 +4876,11 @@ msgstr ""
4870
  msgid "Last Ten Uploaded Photos"
4871
  msgstr ""
4872
 
4873
- #: wppa-lasten-widget.php:131 wppa-non-admin.php:902
4874
  msgid "View the most recent uploaded photos"
4875
  msgstr ""
4876
 
4877
- #: wppa-lasten-widget.php:155 wppa-non-admin.php:904
4878
  msgid "There are no uploaded photos (yet)"
4879
  msgstr ""
4880
 
@@ -4956,7 +4962,7 @@ msgstr ""
4956
  msgid "Previous"
4957
  msgstr "Anterior"
4958
 
4959
- #: wppa-links.php:1052 wppa-links.php:1055 wppa-non-admin.php:763
4960
  #: wppa-slideshow.php:1137
4961
  msgid "Next"
4962
  msgstr "Seg."
@@ -5004,8 +5010,8 @@ msgid "From and To albums are identical"
5004
  msgstr ""
5005
 
5006
  #: wppa-maintenance.php:756 wppa-maintenance.php:772
5007
- #: wppa-photo-admin-autosave.php:1757 wppa-photo-admin-autosave.php:1778
5008
- #: wppa-settings-autosave.php:4526 wppa-setup.php:352
5009
  msgid "Required"
5010
  msgstr ""
5011
 
@@ -5070,117 +5076,117 @@ msgstr ""
5070
  msgid "Select multiple tags or --- all ---:"
5071
  msgstr ""
5072
 
5073
- #: wppa-non-admin.php:418
5074
  msgid "Press f for fullscreen."
5075
  msgstr ""
5076
 
5077
- #: wppa-non-admin.php:428 wppa-non-admin.php:499
5078
  msgid "Toggle fullscreen"
5079
  msgstr ""
5080
 
5081
- #: wppa-non-admin.php:493
5082
  msgid ""
5083
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
5084
  "dismiss this notice."
5085
  msgstr ""
5086
 
5087
- #: wppa-non-admin.php:494
5088
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
5089
  msgstr ""
5090
 
5091
- #: wppa-non-admin.php:754 wppa-settings-autosave.php:3834
5092
  #: wppa-slideshow.php:241
5093
  msgid "Start"
5094
  msgstr "Inicia"
5095
 
5096
- #: wppa-non-admin.php:755
5097
  msgid "Stop"
5098
  msgstr ""
5099
 
5100
- #: wppa-non-admin.php:756 wppa-slideshow.php:233
5101
  msgid "Slower"
5102
  msgstr "Més lent"
5103
 
5104
- #: wppa-non-admin.php:757 wppa-slideshow.php:249
5105
  msgid "Faster"
5106
  msgstr "Més ràpid"
5107
 
5108
- #: wppa-non-admin.php:759
5109
  msgid "of"
5110
  msgstr ""
5111
 
5112
- #: wppa-non-admin.php:760
5113
  msgid "Previous photo"
5114
  msgstr ""
5115
 
5116
- #: wppa-non-admin.php:761
5117
  msgid "Next photo"
5118
  msgstr ""
5119
 
5120
- #: wppa-non-admin.php:762
5121
  msgid "Prev."
5122
  msgstr ""
5123
 
5124
- #: wppa-non-admin.php:764 wppa-slideshow.php:814 wppa-slideshow.php:828
5125
  #: wppa-slideshow.php:967
5126
  msgid "Average&nbsp;rating"
5127
  msgstr "Valoració mitjana"
5128
 
5129
- #: wppa-non-admin.php:765 wppa-slideshow.php:893 wppa-slideshow.php:926
5130
  #: wppa-slideshow.php:948
5131
  msgid "My&nbsp;rating"
5132
  msgstr "La meva valoració"
5133
 
5134
- #: wppa-non-admin.php:766
5135
  msgid "Avg."
5136
  msgstr ""
5137
 
5138
- #: wppa-non-admin.php:767
5139
  msgid "Mine"
5140
  msgstr ""
5141
 
5142
- #: wppa-non-admin.php:768
5143
  msgid "You marked this image as inappropriate."
5144
  msgstr ""
5145
 
5146
- #: wppa-non-admin.php:771
5147
  msgid "Please enter your name"
5148
  msgstr ""
5149
 
5150
- #: wppa-non-admin.php:772
5151
  msgid "Please enter a valid email address"
5152
  msgstr ""
5153
 
5154
- #: wppa-non-admin.php:773
5155
  msgid "Please enter a comment"
5156
  msgstr ""
5157
 
5158
- #: wppa-non-admin.php:807
5159
  msgid "Double click to start/stop slideshow running"
5160
  msgstr ""
5161
 
5162
- #: wppa-non-admin.php:908 wppa-photo-admin-autosave.php:265
5163
  #: wppa-potd-widget.php:178
5164
  msgid "By:"
5165
  msgstr ""
5166
 
5167
- #: wppa-non-admin.php:911 wppa-slideshow-widget.php:124
5168
  msgid "No album defined (yet)"
5169
  msgstr ""
5170
 
5171
- #: wppa-non-admin.php:915 wppa-thumbnail-widget.php:121
5172
  msgid "There are no photos (yet)"
5173
  msgstr ""
5174
 
5175
- #: wppa-non-admin.php:918 wppa-upldr-widget.php:90
5176
  msgid "There are too many registered users in the system for this widget"
5177
  msgstr ""
5178
 
5179
- #: wppa-non-admin.php:919 wppa-upldr-widget.php:125 wppa-upldr-widget.php:132
5180
  msgid "Photos uploaded by"
5181
  msgstr ""
5182
 
5183
- #: wppa-non-admin.php:923 wppa-thumbnails.php:692 wppa-thumbnails.php:1480
5184
  #: wppa-topten-widget.php:203 wppa-topten-widget.php:226
5185
  #: wppa-topten-widget.php:236
5186
  #, php-format
@@ -5189,7 +5195,7 @@ msgid_plural "%d views"
5189
  msgstr[0] ""
5190
  msgstr[1] ""
5191
 
5192
- #: wppa-non-admin.php:925 wppa-topten-widget.php:261
5193
  msgid "There are no rated photos (yet)"
5194
  msgstr ""
5195
 
@@ -5414,8 +5420,8 @@ msgstr ""
5414
  msgid "Same tab"
5415
  msgstr ""
5416
 
5417
- #: wppa-photo-admin-autosave.php:436 wppa-settings-autosave.php:5005
5418
- #: wppa-settings-autosave.php:6011
5419
  msgid "New tab"
5420
  msgstr ""
5421
 
@@ -5506,7 +5512,7 @@ msgstr ""
5506
  msgid "Remake thumbnail file"
5507
  msgstr ""
5508
 
5509
- #: wppa-photo-admin-autosave.php:658 wppa-settings-autosave.php:6892
5510
  msgid "Remake"
5511
  msgstr ""
5512
 
@@ -5735,7 +5741,7 @@ msgid ""
5735
  msgstr ""
5736
 
5737
  #: wppa-photo-admin-autosave.php:1362 wppa-photo-admin-autosave.php:1481
5738
- #: wppa-potd-admin.php:321 wppa-settings-autosave.php:8506
5739
  msgid "Preview"
5740
  msgstr ""
5741
 
@@ -5774,23 +5780,23 @@ msgstr ""
5774
  msgid "The album is empty."
5775
  msgstr ""
5776
 
5777
- #: wppa-photo-admin-autosave.php:1804
5778
  msgid "Combined"
5779
  msgstr ""
5780
 
5781
- #: wppa-photo-admin-autosave.php:1841
5782
  msgid "Word"
5783
  msgstr ""
5784
 
5785
- #: wppa-photo-admin-autosave.php:1844
5786
  msgid "Count"
5787
  msgstr ""
5788
 
5789
- #: wppa-photo-admin-autosave.php:1896 wppa-settings-autosave.php:6430
5790
  msgid "Tags"
5791
  msgstr ""
5792
 
5793
- #: wppa-photo-admin-autosave.php:2016
5794
  msgid "Send"
5795
  msgstr ""
5796
 
@@ -5815,9 +5821,9 @@ msgstr ""
5815
  #: wppa-settings-autosave.php:517 wppa-settings-autosave.php:679
5816
  #: wppa-settings-autosave.php:701 wppa-settings-autosave.php:1449
5817
  #: wppa-settings-autosave.php:1470 wppa-settings-autosave.php:3095
5818
- #: wppa-settings-autosave.php:3477 wppa-settings-autosave.php:4782
5819
- #: wppa-settings-autosave.php:6680 wppa-settings-autosave.php:7456
5820
- #: wppa-settings-autosave.php:9178
5821
  msgid "Setting"
5822
  msgstr ""
5823
 
@@ -5826,14 +5832,14 @@ msgstr ""
5826
  #: wppa-settings-autosave.php:702 wppa-settings-autosave.php:1450
5827
  #: wppa-settings-autosave.php:1471 wppa-settings-autosave.php:3096
5828
  #: wppa-settings-autosave.php:3120 wppa-settings-autosave.php:3457
5829
- #: wppa-settings-autosave.php:3478 wppa-settings-autosave.php:4783
5830
- #: wppa-settings-autosave.php:4807 wppa-settings-autosave.php:4983
5831
- #: wppa-settings-autosave.php:5007 wppa-settings-autosave.php:6013
5832
- #: wppa-settings-autosave.php:6682 wppa-settings-autosave.php:6706
5833
- #: wppa-settings-autosave.php:7436 wppa-settings-autosave.php:7457
5834
- #: wppa-settings-autosave.php:9179 wppa-settings-autosave.php:9201
5835
- #: wppa-settings-autosave.php:9241 wppa-settings-autosave.php:9263
5836
- #: wppa-settings-autosave.php:9309
5837
  msgid "Help"
5838
  msgstr ""
5839
 
@@ -5875,7 +5881,7 @@ msgid "Enter the desired display alignment of the photo in the sidebar."
5875
  msgstr ""
5876
 
5877
  #: wppa-potd-admin.php:100 wppa-settings-autosave.php:3813
5878
- #: wppa-settings-autosave.php:3827 wppa-settings-autosave.php:4078
5879
  #: wppa-slideshow-widget.php:215 wppa-tinymce-scripts.php:289
5880
  #: wppa-tinymce-shortcodes.php:618
5881
  msgid "center"
@@ -5918,13 +5924,13 @@ msgid "The counter links to."
5918
  msgstr ""
5919
 
5920
  #: wppa-potd-admin.php:156 wppa-settings-autosave.php:1075
5921
- #: wppa-settings-autosave.php:5757 wppa-settings-autosave.php:5790
5922
- #: wppa-settings-autosave.php:5887
5923
  msgid "thumbnails"
5924
  msgstr ""
5925
 
5926
- #: wppa-potd-admin.php:156 wppa-settings-autosave.php:5758
5927
- #: wppa-settings-autosave.php:5791 wppa-settings-autosave.php:5888
5928
  msgid "slideshow"
5929
  msgstr ""
5930
 
@@ -5958,14 +5964,14 @@ msgstr ""
5958
 
5959
  #: wppa-potd-admin.php:190 wppa-potd-admin.php:644 wppa-potd-admin.php:669
5960
  #: wppa-potd-admin.php:707 wppa-settings-autosave.php:353
5961
- #: wppa-settings-autosave.php:7300 wppa-settings-autosave.php:7327
5962
- #: wppa-settings-autosave.php:8395 wppa-settings-autosave.php:8397
5963
- #: wppa-settings-autosave.php:9686 wppa-settings-autosave.php:9703
5964
- #: wppa-settings-autosave.php:9732 wppa-settings-autosave.php:9750
5965
- #: wppa-settings-autosave.php:9774 wppa-settings-autosave.php:9795
5966
- #: wppa-settings-autosave.php:9815 wppa-settings-autosave.php:9832
5967
- #: wppa-settings-autosave.php:9876 wppa-settings-autosave.php:9929
5968
- #: wppa-settings-autosave.php:9961
5969
  msgid "Setting unmodified"
5970
  msgstr ""
5971
 
@@ -6136,101 +6142,101 @@ msgstr ""
6136
  msgid "There are too many photos in the selection to show a preview ( %d )"
6137
  msgstr ""
6138
 
6139
- #: wppa-potd-admin.php:573 wppa-settings-autosave.php:9614
6140
  msgid "The default for this setting is:"
6141
  msgstr ""
6142
 
6143
- #: wppa-potd-admin.php:590 wppa-settings-autosave.php:9631
6144
  msgid "Click for help"
6145
  msgstr ""
6146
 
6147
- #: wppa-potd-admin.php:614 wppa-settings-autosave.php:9977
6148
  msgid "Checked"
6149
  msgstr ""
6150
 
6151
- #: wppa-potd-admin.php:615 wppa-settings-autosave.php:9978
6152
  msgid "Unchecked"
6153
  msgstr ""
6154
 
6155
- #: wppa-potd-admin.php:616 wppa-settings-autosave.php:5065
6156
- #: wppa-settings-autosave.php:5108 wppa-settings-autosave.php:5186
6157
- #: wppa-settings-autosave.php:5229 wppa-settings-autosave.php:5277
6158
- #: wppa-settings-autosave.php:5324 wppa-settings-autosave.php:5371
6159
- #: wppa-settings-autosave.php:5423 wppa-settings-autosave.php:5461
6160
- #: wppa-settings-autosave.php:5511 wppa-settings-autosave.php:5553
6161
- #: wppa-settings-autosave.php:5594 wppa-settings-autosave.php:9979
6162
  msgid "no link at all."
6163
  msgstr ""
6164
 
6165
- #: wppa-potd-admin.php:617 wppa-settings-autosave.php:5066
6166
- #: wppa-settings-autosave.php:5109 wppa-settings-autosave.php:5187
6167
- #: wppa-settings-autosave.php:5230 wppa-settings-autosave.php:5278
6168
- #: wppa-settings-autosave.php:5325 wppa-settings-autosave.php:5372
6169
- #: wppa-settings-autosave.php:5424 wppa-settings-autosave.php:5462
6170
- #: wppa-settings-autosave.php:5512 wppa-settings-autosave.php:5554
6171
- #: wppa-settings-autosave.php:5595 wppa-settings-autosave.php:9980
6172
  msgid "the plain photo (file)."
6173
  msgstr ""
6174
 
6175
- #: wppa-potd-admin.php:618 wppa-settings-autosave.php:5069
6176
- #: wppa-settings-autosave.php:5112 wppa-settings-autosave.php:5188
6177
- #: wppa-settings-autosave.php:5233 wppa-settings-autosave.php:5281
6178
- #: wppa-settings-autosave.php:5328 wppa-settings-autosave.php:5375
6179
- #: wppa-settings-autosave.php:5463 wppa-settings-autosave.php:5514
6180
- #: wppa-settings-autosave.php:5556 wppa-settings-autosave.php:9981
6181
  msgid "the full size photo in a slideshow."
6182
  msgstr ""
6183
 
6184
- #: wppa-potd-admin.php:619 wppa-settings-autosave.php:5070
6185
- #: wppa-settings-autosave.php:5113 wppa-settings-autosave.php:5189
6186
- #: wppa-settings-autosave.php:5234 wppa-settings-autosave.php:5282
6187
- #: wppa-settings-autosave.php:5329 wppa-settings-autosave.php:5376
6188
- #: wppa-settings-autosave.php:5464 wppa-settings-autosave.php:5515
6189
- #: wppa-settings-autosave.php:5557 wppa-settings-autosave.php:5596
6190
- #: wppa-settings-autosave.php:9982
6191
  msgid "the fullsize photo on its own."
6192
  msgstr ""
6193
 
6194
- #: wppa-potd-admin.php:620 wppa-settings-autosave.php:9983
6195
  msgid "the photo specific link."
6196
  msgstr ""
6197
 
6198
- #: wppa-potd-admin.php:621 wppa-settings-autosave.php:5068
6199
- #: wppa-settings-autosave.php:5111 wppa-settings-autosave.php:5513
6200
- #: wppa-settings-autosave.php:5555 wppa-settings-autosave.php:9984
6201
  msgid "the content of the album."
6202
  msgstr ""
6203
 
6204
- #: wppa-potd-admin.php:622 wppa-settings-autosave.php:5110
6205
- #: wppa-settings-autosave.php:9985
6206
  msgid "defined at widget activation."
6207
  msgstr ""
6208
 
6209
- #: wppa-potd-admin.php:623 wppa-settings-autosave.php:5067
6210
- #: wppa-settings-autosave.php:9986
6211
  msgid "defined on widget admin page."
6212
  msgstr ""
6213
 
6214
- #: wppa-potd-admin.php:624 wppa-settings-autosave.php:5425
6215
- #: wppa-settings-autosave.php:9987
6216
  msgid "same as title."
6217
  msgstr ""
6218
 
6219
  #: wppa-potd-admin.php:636 wppa-potd-admin.php:659 wppa-potd-admin.php:680
6220
- #: wppa-settings-autosave.php:9676 wppa-settings-autosave.php:9695
6221
- #: wppa-settings-autosave.php:9725 wppa-settings-autosave.php:9742
6222
- #: wppa-settings-autosave.php:9766 wppa-settings-autosave.php:9787
6223
- #: wppa-settings-autosave.php:9807 wppa-settings-autosave.php:9849
6224
  msgid "Slug ="
6225
  msgstr ""
6226
 
6227
- #: wppa-potd-admin.php:636 wppa-settings-autosave.php:9742
6228
- #: wppa-settings-autosave.php:9766 wppa-settings-autosave.php:9787
6229
- #: wppa-settings-autosave.php:9807
6230
  msgid "Values = yes, no"
6231
  msgstr ""
6232
 
6233
- #: wppa-potd-admin.php:680 wppa-settings-autosave.php:9849
6234
  msgid "Values = "
6235
  msgstr ""
6236
 
@@ -6301,7 +6307,7 @@ msgstr ""
6301
  msgid "Enable subsearch"
6302
  msgstr ""
6303
 
6304
- #: wppa-search-widget.php:134 wppa-settings-autosave.php:5939
6305
  msgid "Landing page"
6306
  msgstr ""
6307
 
@@ -6481,7 +6487,7 @@ msgid "Legenda:"
6481
  msgstr ""
6482
 
6483
  #: wppa-settings-autosave.php:348 wppa-settings-autosave.php:350
6484
- #: wppa-settings-autosave.php:2031 wppa-settings-autosave.php:5686
6485
  msgid "Button"
6486
  msgstr ""
6487
 
@@ -6489,8 +6495,8 @@ msgstr ""
6489
  msgid "action that causes page reload."
6490
  msgstr ""
6491
 
6492
- #: wppa-settings-autosave.php:350 wppa-settings-autosave.php:10010
6493
- #: wppa-settings-autosave.php:10029
6494
  msgid "Are you sure?"
6495
  msgstr ""
6496
 
@@ -6534,7 +6540,7 @@ msgstr ""
6534
  msgid "Layout"
6535
  msgstr ""
6536
 
6537
- #: wppa-settings-autosave.php:375 wppa-settings-autosave.php:4955
6538
  msgid "Lightbox"
6539
  msgstr ""
6540
 
@@ -6550,8 +6556,8 @@ msgstr ""
6550
  msgid "Navigation"
6551
  msgstr ""
6552
 
6553
- #: wppa-settings-autosave.php:380 wppa-settings-autosave.php:8538
6554
- #: wppa-settings-autosave.php:8583
6555
  msgid "Rating"
6556
  msgstr ""
6557
 
@@ -6575,7 +6581,7 @@ msgstr ""
6575
  msgid "Widgets"
6576
  msgstr ""
6577
 
6578
- #: wppa-settings-autosave.php:388 wppa-settings-autosave.php:8376
6579
  msgid "Watermark"
6580
  msgstr ""
6581
 
@@ -6958,14 +6964,14 @@ msgstr ""
6958
  #: wppa-settings-autosave.php:1364 wppa-settings-autosave.php:1373
6959
  #: wppa-settings-autosave.php:1406 wppa-settings-autosave.php:1415
6960
  #: wppa-settings-autosave.php:1427 wppa-settings-autosave.php:1436
6961
- #: wppa-settings-autosave.php:2910 wppa-settings-autosave.php:4828
6962
- #: wppa-settings-autosave.php:4845 wppa-settings-autosave.php:4862
6963
- #: wppa-settings-autosave.php:4879 wppa-settings-autosave.php:4896
6964
- #: wppa-settings-autosave.php:4913 wppa-settings-autosave.php:4930
6965
- #: wppa-settings-autosave.php:4947 wppa-settings-autosave.php:4964
6966
- #: wppa-settings-autosave.php:6241 wppa-settings-autosave.php:8909
6967
- #: wppa-settings-autosave.php:9105 wppa-settings-autosave.php:9147
6968
- #: wppa-settings-autosave.php:9165
6969
  msgid "pixels"
6970
  msgstr ""
6971
 
@@ -6992,8 +6998,8 @@ msgstr ""
6992
  #: wppa-settings-autosave.php:761 wppa-settings-autosave.php:800
6993
  #: wppa-settings-autosave.php:1244 wppa-settings-autosave.php:1284
6994
  #: wppa-settings-autosave.php:1304 wppa-settings-autosave.php:1344
6995
- #: wppa-settings-autosave.php:4224 wppa-settings-autosave.php:6166
6996
- #: wppa-settings-autosave.php:7999
6997
  msgid "photos"
6998
  msgstr "fotos"
6999
 
@@ -7830,7 +7836,7 @@ msgid ""
7830
  "Enter the maximum number of thumbnail photos of albums in the Album widget."
7831
  msgstr ""
7832
 
7833
- #: wppa-settings-autosave.php:1324 wppa-settings-autosave.php:6182
7834
  msgid "albums"
7835
  msgstr "àlbums"
7836
 
@@ -8181,11 +8187,11 @@ msgstr ""
8181
  msgid "The location for the pagelinks bar."
8182
  msgstr ""
8183
 
8184
- #: wppa-settings-autosave.php:1627 wppa-settings-autosave.php:4169
8185
  msgid "Top"
8186
  msgstr ""
8187
 
8188
- #: wppa-settings-autosave.php:1627 wppa-settings-autosave.php:4169
8189
  msgid "Bottom"
8190
  msgstr ""
8191
 
@@ -8505,7 +8511,7 @@ msgstr ""
8505
  msgid "Display the share social media buttons box."
8506
  msgstr ""
8507
 
8508
- #: wppa-settings-autosave.php:1891 wppa-settings-autosave.php:9152
8509
  msgid "Hide when running"
8510
  msgstr ""
8511
 
@@ -8899,7 +8905,7 @@ msgid "Select if and where to display the album name on the thumbnail display."
8899
  msgstr ""
8900
 
8901
  #: wppa-settings-autosave.php:2234 wppa-settings-autosave.php:2245
8902
- #: wppa-settings-autosave.php:2274 wppa-settings-autosave.php:4524
8903
  msgid "None"
8904
  msgstr ""
8905
 
@@ -9074,7 +9080,7 @@ msgstr ""
9074
  msgid "Show the album description on hoovering thumbnail in album widget"
9075
  msgstr ""
9076
 
9077
- #: wppa-settings-autosave.php:2390 wppa-settings-autosave.php:4655
9078
  msgid ""
9079
  "Lightbox related settings. These settings have effect only when Table IX-J3 "
9080
  "is set to wppa"
@@ -9874,7 +9880,7 @@ msgid ""
9874
  "For more information about slideshow image borders see the help on Table I-B4"
9875
  msgstr ""
9876
 
9877
- #: wppa-settings-autosave.php:3157 wppa-settings-autosave.php:4921
9878
  msgid "Numbar"
9879
  msgstr ""
9880
 
@@ -9919,8 +9925,8 @@ msgstr ""
9919
  msgid "Enter valid CSS colors for comment box backgrounds and borders."
9920
  msgstr ""
9921
 
9922
- #: wppa-settings-autosave.php:3209 wppa-settings-autosave.php:8537
9923
- #: wppa-settings-autosave.php:8582
9924
  msgid "Custom"
9925
  msgstr ""
9926
 
@@ -10600,12 +10606,12 @@ msgid ""
10600
  "either."
10601
  msgstr ""
10602
 
10603
- #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:4078
10604
  #: wppa-slideshow-widget.php:214
10605
  msgid "top"
10606
  msgstr ""
10607
 
10608
- #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:4078
10609
  #: wppa-slideshow-widget.php:216
10610
  msgid "bottom"
10611
  msgstr ""
@@ -10675,7 +10681,7 @@ msgstr ""
10675
  msgid "Start slideonly slideshow running."
10676
  msgstr ""
10677
 
10678
- #: wppa-settings-autosave.php:3861 wppa-settings-autosave.php:4735
10679
  msgid "Video autostart"
10680
  msgstr ""
10681
 
@@ -10683,7 +10689,7 @@ msgstr ""
10683
  msgid "Autoplay videos in slideshows."
10684
  msgstr ""
10685
 
10686
- #: wppa-settings-autosave.php:3871 wppa-settings-autosave.php:4744
10687
  msgid "Audio autostart"
10688
  msgstr ""
10689
 
@@ -10758,10 +10764,10 @@ msgstr ""
10758
  msgid "This is the time it takes a photo to fade in or out."
10759
  msgstr ""
10760
 
10761
- #: wppa-settings-autosave.php:3919 wppa-settings-autosave.php:4273
10762
- #: wppa-settings-autosave.php:4681 wppa-settings-autosave.php:6521
10763
- #: wppa-settings-autosave.php:7634 wppa-settings-autosave.php:7645
10764
- #: wppa-settings-autosave.php:7807
10765
  msgid "--- off ---"
10766
  msgstr ""
10767
 
@@ -10813,8 +10819,8 @@ msgstr ""
10813
  msgid "The alignment of the descriptions under fullsize images and slideshows."
10814
  msgstr ""
10815
 
10816
- #: wppa-settings-autosave.php:3948 wppa-settings-autosave.php:4066
10817
- #: wppa-settings-autosave.php:4169
10818
  msgid "Left"
10819
  msgstr ""
10820
 
@@ -10822,8 +10828,8 @@ msgstr ""
10822
  msgid "Center"
10823
  msgstr ""
10824
 
10825
- #: wppa-settings-autosave.php:3948 wppa-settings-autosave.php:4066
10826
- #: wppa-settings-autosave.php:4169
10827
  msgid "Right"
10828
  msgstr ""
10829
 
@@ -10890,754 +10896,774 @@ msgid "On some systems you need to disable ajax here."
10890
  msgstr ""
10891
 
10892
  #: wppa-settings-autosave.php:4009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10893
  msgid "Thumbnail related settings"
10894
  msgstr ""
10895
 
10896
- #: wppa-settings-autosave.php:4012
10897
  msgid "Photo ordering sequence method."
10898
  msgstr ""
10899
 
10900
- #: wppa-settings-autosave.php:4013
10901
  msgid ""
10902
  "Specify the way the photos should be ordered. This is the default setting. "
10903
  "You can overrule the default sorting order on a per album basis."
10904
  msgstr ""
10905
 
10906
- #: wppa-settings-autosave.php:4050
10907
  msgid "Thumbnail type"
10908
  msgstr ""
10909
 
10910
- #: wppa-settings-autosave.php:4051
10911
  msgid "The way the thumbnail images are displayed."
10912
  msgstr ""
10913
 
10914
- #: wppa-settings-autosave.php:4052
10915
  msgid ""
10916
  "You may select an altenative display method for thumbnails. Note that some "
10917
  "of the thumbnail settings do not apply to all available display methods."
10918
  msgstr ""
10919
 
10920
- #: wppa-settings-autosave.php:4054
10921
  msgid "like album covers"
10922
  msgstr ""
10923
 
10924
- #: wppa-settings-autosave.php:4054
10925
  msgid "like album covers mcr"
10926
  msgstr ""
10927
 
10928
- #: wppa-settings-autosave.php:4054
10929
  msgid "masonry style columns"
10930
  msgstr ""
10931
 
10932
- #: wppa-settings-autosave.php:4054
10933
  msgid "masonry style rows"
10934
  msgstr ""
10935
 
10936
- #: wppa-settings-autosave.php:4062 wppa-settings-autosave.php:4163
10937
  msgid "Placement"
10938
  msgstr ""
10939
 
10940
- #: wpp
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-09-15 10:15+0200\n"
5
+ "PO-Revision-Date: 2016-09-15 10: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: es_CA\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.9\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: wppa.php\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
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:1314 wppa-thumbnails.php:641
34
  msgid "Edit"
35
  msgstr "Editar"
36
 
67
  msgstr ""
68
 
69
  #: theme/search-2016.php:48 wppa-settings-autosave.php:379
70
+ #: wppa-settings-autosave.php:1581 wppa-settings-autosave.php:8762
71
  msgid "Page"
72
  msgstr ""
73
 
225
  msgid "Photo&thinsp;Albums"
226
  msgstr ""
227
 
228
+ #: wppa-admin.php:59 wppa-adminbar.php:40 wppa-settings-autosave.php:6061
229
  msgid "Album Admin"
230
  msgstr ""
231
 
232
+ #: wppa-admin.php:60 wppa-adminbar.php:47 wppa-settings-autosave.php:6062
233
  #: wppa-upload-widget.php:79 wppa-upload.php:119
234
  msgid "Upload Photos"
235
  msgstr ""
239
  msgstr ""
240
 
241
  #: wppa-admin.php:65 wppa-adminbar.php:61 wppa-import.php:168
242
+ #: wppa-settings-autosave.php:6063
243
  msgid "Import Photos"
244
  msgstr ""
245
 
248
  msgstr ""
249
 
250
  #: wppa-admin.php:67 wppa-adminbar.php:75 wppa-export.php:32
251
+ #: wppa-settings-autosave.php:6065
252
  msgid "Export Photos"
253
  msgstr ""
254
 
255
  #: wppa-admin.php:68 wppa-adminbar.php:82 wppa-comment-admin.php:223
256
+ #: wppa-settings-autosave.php:6066
257
  msgid "Settings"
258
  msgstr ""
259
 
262
  msgstr ""
263
 
264
  #: wppa-admin.php:69 wppa-adminbar.php:89 wppa-potd-widget.php:60
265
+ #: wppa-settings-autosave.php:6067 wppa-setup.php:1589
266
  msgid "Photo of the day"
267
  msgstr ""
268
 
271
  msgstr ""
272
 
273
  #: wppa-admin.php:70 wppa-adminbar.php:96 wppa-settings-autosave.php:371
274
+ #: wppa-settings-autosave.php:3196 wppa-settings-autosave.php:8561
275
+ #: wppa-settings-autosave.php:8606
276
  msgid "Comments"
277
  msgstr ""
278
 
300
  msgid "Import"
301
  msgstr ""
302
 
303
+ #: wppa-admin.php:128 wppa-settings-autosave.php:9739
304
  msgid "Update"
305
  msgstr ""
306
 
572
  #: wppa-album-admin-autosave.php:1236 wppa-album-admin-autosave.php:1408
573
  #: wppa-album-admin-autosave.php:1503 wppa-boxes-html.php:415
574
  #: wppa-boxes-html.php:529 wppa-photo-admin-autosave.php:1363
575
+ #: wppa-photo-admin-autosave.php:1482 wppa-photo-admin-autosave.php:1899
576
  #: wppa-potd-admin.php:71 wppa-potd-admin.php:358
577
  #: wppa-settings-autosave.php:515 wppa-settings-autosave.php:677
578
  #: wppa-settings-autosave.php:699 wppa-settings-autosave.php:1447
579
  #: wppa-settings-autosave.php:1468 wppa-settings-autosave.php:3093
580
  #: wppa-settings-autosave.php:3114 wppa-settings-autosave.php:3451
581
+ #: wppa-settings-autosave.php:3475 wppa-settings-autosave.php:4037
582
+ #: wppa-settings-autosave.php:4151 wppa-settings-autosave.php:4800
583
+ #: wppa-settings-autosave.php:4821 wppa-settings-autosave.php:4997
584
+ #: wppa-settings-autosave.php:5021 wppa-settings-autosave.php:6027
585
+ #: wppa-settings-autosave.php:6448 wppa-settings-autosave.php:6698
586
+ #: wppa-settings-autosave.php:6720 wppa-settings-autosave.php:7450
587
+ #: wppa-settings-autosave.php:7474 wppa-settings-autosave.php:8555
588
+ #: wppa-settings-autosave.php:9196 wppa-settings-autosave.php:9352
589
  #: wppa-thumbnail-widget.php:202 wppa-upload.php:259
590
  msgid "Name"
591
  msgstr ""
593
  #: wppa-ajax.php:1054 wppa-ajax.php:1494 wppa-album-admin-autosave.php:1109
594
  #: wppa-album-admin-autosave.php:1246 wppa-album-admin-autosave.php:1418
595
  #: wppa-album-admin-autosave.php:1513 wppa-photo-admin-autosave.php:1364
596
+ #: wppa-photo-admin-autosave.php:1483 wppa-photo-admin-autosave.php:1900
597
  #: wppa-potd-admin.php:72 wppa-potd-admin.php:138 wppa-potd-admin.php:359
598
  #: wppa-settings-autosave.php:516 wppa-settings-autosave.php:678
599
  #: wppa-settings-autosave.php:700 wppa-settings-autosave.php:1448
600
  #: wppa-settings-autosave.php:1469 wppa-settings-autosave.php:3094
601
  #: wppa-settings-autosave.php:3115 wppa-settings-autosave.php:3452
602
+ #: wppa-settings-autosave.php:3476 wppa-settings-autosave.php:4801
603
+ #: wppa-settings-autosave.php:4822 wppa-settings-autosave.php:4998
604
+ #: wppa-settings-autosave.php:5022 wppa-settings-autosave.php:6028
605
+ #: wppa-settings-autosave.php:6449 wppa-settings-autosave.php:6699
606
+ #: wppa-settings-autosave.php:6721 wppa-settings-autosave.php:7451
607
+ #: wppa-settings-autosave.php:7475 wppa-settings-autosave.php:9197
608
+ #: wppa-settings-autosave.php:9219 wppa-settings-autosave.php:9259
609
+ #: wppa-settings-autosave.php:9281 wppa-settings-autosave.php:9327
610
+ #: wppa-settings-autosave.php:9353
611
  msgid "Description"
612
  msgstr ""
613
 
627
  msgid "Parent album"
628
  msgstr ""
629
 
630
+ #: wppa-ajax.php:1076 wppa-settings-autosave.php:4031
631
  msgid "Photo order"
632
  msgstr ""
633
 
639
  msgid "Cover Type"
640
  msgstr ""
641
 
642
+ #: wppa-ajax.php:1085 wppa-settings-autosave.php:5023
643
+ #: wppa-settings-autosave.php:6029
644
  msgid "Link type"
645
  msgstr ""
646
 
876
 
877
  #: wppa-ajax.php:1535 wppa-comment-admin.php:317 wppa-comment-admin.php:404
878
  #: wppa-photo-admin-autosave.php:1365 wppa-photo-admin-autosave.php:1484
879
+ #: wppa-settings-autosave.php:6724 wppa-settings-autosave.php:7454
880
+ #: wppa-settings-autosave.php:9220 wppa-settings-autosave.php:9260
881
+ #: wppa-settings-autosave.php:9282 wppa-settings-autosave.php:9328
882
  msgid "Status"
883
  msgstr ""
884
 
1080
  msgid "Number of text lines"
1081
  msgstr ""
1082
 
1083
+ #: wppa-ajax.php:1972 wppa-settings-autosave.php:4677
1084
  msgid "Overlay opacity"
1085
  msgstr ""
1086
 
1087
+ #: wppa-ajax.php:1975 wppa-settings-autosave.php:8014
1088
  msgid "Upload limit"
1089
  msgstr ""
1090
 
1091
+ #: wppa-ajax.php:1978 wppa-settings-autosave.php:4347
1092
  msgid "Notify inappropriate"
1093
  msgstr ""
1094
 
1100
  msgid "Dislike delete"
1101
  msgstr ""
1102
 
1103
+ #: wppa-ajax.php:1987 wppa-settings-autosave.php:7550
1104
  msgid "Max execution time"
1105
  msgstr ""
1106
 
1112
  msgid "JPG Image quality"
1113
  msgstr ""
1114
 
1115
+ #: wppa-ajax.php:2002 wppa-settings-autosave.php:4240
1116
  msgid "Number of coverphotos"
1117
  msgstr ""
1118
 
1119
+ #: wppa-ajax.php:2005 wppa-settings-autosave.php:4318
1120
  msgid "Dislike value"
1121
  msgstr ""
1122
 
1353
  msgstr ""
1354
 
1355
  #: wppa-album-admin-autosave.php:82 wppa-album-admin-autosave.php:822
1356
+ #: wppa-setup.php:1315
1357
  msgid "Edit photo information"
1358
  msgstr ""
1359
 
1365
  msgid "Top of page"
1366
  msgstr ""
1367
 
1368
+ #: wppa-album-admin-autosave.php:118 wppa-functions.php:3989
1369
+ #: wppa-settings-autosave.php:7862 wppa-wpdb-insert.php:338
1370
  msgid "New Album"
1371
  msgstr ""
1372
 
1503
  msgstr ""
1504
 
1505
  #: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:492
1506
+ #: wppa-settings-autosave.php:4074 wppa-settings-autosave.php:4098
1507
  #: wppa-tinymce-shortcodes.php:505 wppa-tinymce-shortcodes.php:524
1508
  msgid "--- default ---"
1509
  msgstr ""
1510
 
1511
  #: wppa-album-admin-autosave.php:392 wppa-album-admin-autosave.php:448
1512
+ #: wppa-settings-autosave.php:4036 wppa-settings-autosave.php:4150
1513
  #: wppa-thumbnail-widget.php:201
1514
  msgid "Order #"
1515
  msgstr ""
1516
 
1517
  #: wppa-album-admin-autosave.php:394 wppa-album-admin-autosave.php:447
1518
+ #: wppa-potd-admin.php:249 wppa-settings-autosave.php:4038
1519
+ #: wppa-settings-autosave.php:4152 wppa-thumbnail-widget.php:203
1520
  msgid "Random"
1521
  msgstr ""
1522
 
1523
+ #: wppa-album-admin-autosave.php:395 wppa-settings-autosave.php:4039
1524
  msgid "Rating mean value"
1525
  msgstr ""
1526
 
1527
  #: wppa-album-admin-autosave.php:396 wppa-bestof-widget.php:170
1528
+ #: wppa-settings-autosave.php:4040 wppa-topten-widget.php:345
1529
  msgid "Number of votes"
1530
  msgstr ""
1531
 
1532
  #: wppa-album-admin-autosave.php:397 wppa-album-admin-autosave.php:452
1533
+ #: wppa-settings-autosave.php:4041 wppa-settings-autosave.php:4153
1534
  msgid "Timestamp"
1535
  msgstr ""
1536
 
1537
  #: wppa-album-admin-autosave.php:398 wppa-photo-admin-autosave.php:292
1538
+ #: wppa-settings-autosave.php:4042
1539
  msgid "EXIF Date"
1540
  msgstr ""
1541
 
1542
+ #: wppa-album-admin-autosave.php:399 wppa-settings-autosave.php:4043
1543
+ #: wppa-settings-autosave.php:4154
1544
  msgid "Order # desc"
1545
  msgstr ""
1546
 
1547
+ #: wppa-album-admin-autosave.php:400 wppa-settings-autosave.php:4044
1548
+ #: wppa-settings-autosave.php:4155
1549
  msgid "Name desc"
1550
  msgstr ""
1551
 
1552
+ #: wppa-album-admin-autosave.php:401 wppa-settings-autosave.php:4045
1553
  #: wppa-thumbnail-widget.php:204
1554
  msgid "Rating mean value desc"
1555
  msgstr ""
1556
 
1557
+ #: wppa-album-admin-autosave.php:402 wppa-settings-autosave.php:4046
1558
  #: wppa-thumbnail-widget.php:205
1559
  msgid "Number of votes desc"
1560
  msgstr ""
1561
 
1562
+ #: wppa-album-admin-autosave.php:403 wppa-settings-autosave.php:4047
1563
+ #: wppa-settings-autosave.php:4156 wppa-thumbnail-widget.php:206
1564
  msgid "Timestamp desc"
1565
  msgstr ""
1566
 
1567
+ #: wppa-album-admin-autosave.php:404 wppa-settings-autosave.php:4048
1568
  msgid "EXIF Date desc"
1569
  msgstr ""
1570
 
1652
  msgstr ""
1653
 
1654
  #: wppa-album-admin-autosave.php:493 wppa-settings-autosave.php:2031
1655
+ #: wppa-settings-autosave.php:4220
1656
  msgid "Standard"
1657
  msgstr ""
1658
 
1659
+ #: wppa-album-admin-autosave.php:494 wppa-settings-autosave.php:4221
1660
  msgid "Long Descriptions"
1661
  msgstr ""
1662
 
1663
+ #: wppa-album-admin-autosave.php:495 wppa-settings-autosave.php:4222
1664
  msgid "Image Factory"
1665
  msgstr ""
1666
 
1667
+ #: wppa-album-admin-autosave.php:496 wppa-settings-autosave.php:4223
1668
  msgid "Standard mcr"
1669
  msgstr ""
1670
 
1671
+ #: wppa-album-admin-autosave.php:497 wppa-settings-autosave.php:4224
1672
  msgid "Long Descriptions mcr"
1673
  msgstr ""
1674
 
1675
+ #: wppa-album-admin-autosave.php:498 wppa-settings-autosave.php:4225
1676
  msgid "Image Factory mcr"
1677
  msgstr ""
1678
 
1700
  msgid "Upload limit:"
1701
  msgstr ""
1702
 
1703
+ #: wppa-album-admin-autosave.php:543 wppa-settings-autosave.php:6165
1704
+ #: wppa-settings-autosave.php:8021
1705
  msgid "for ever"
1706
  msgstr ""
1707
 
1708
  #: wppa-album-admin-autosave.php:544 wppa-album-admin-autosave.php:561
1709
+ #: wppa-settings-autosave.php:6166 wppa-settings-autosave.php:8022
1710
  msgid "per hour"
1711
  msgstr ""
1712
 
1713
  #: wppa-album-admin-autosave.php:545 wppa-album-admin-autosave.php:562
1714
+ #: wppa-settings-autosave.php:6167 wppa-settings-autosave.php:8023
1715
  msgid "per day"
1716
  msgstr ""
1717
 
1718
  #: wppa-album-admin-autosave.php:546 wppa-album-admin-autosave.php:563
1719
+ #: wppa-settings-autosave.php:6168 wppa-settings-autosave.php:8024
1720
  msgid "per week"
1721
  msgstr ""
1722
 
1723
  #: wppa-album-admin-autosave.php:547 wppa-album-admin-autosave.php:564
1724
+ #: wppa-settings-autosave.php:6169 wppa-settings-autosave.php:8025
1725
  msgid "per month"
1726
  msgstr ""
1727
 
1728
  #: wppa-album-admin-autosave.php:548 wppa-album-admin-autosave.php:565
1729
+ #: wppa-settings-autosave.php:6170 wppa-settings-autosave.php:8026
1730
  msgid "per year"
1731
  msgstr ""
1732
 
1829
  msgid "Link type:"
1830
  msgstr ""
1831
 
1832
+ #: wppa-album-admin-autosave.php:679 wppa-settings-autosave.php:8182
1833
  msgid "the sub-albums and thumbnails"
1834
  msgstr ""
1835
 
1836
+ #: wppa-album-admin-autosave.php:680 wppa-settings-autosave.php:8183
1837
  msgid "the sub-albums"
1838
  msgstr ""
1839
 
1840
+ #: wppa-album-admin-autosave.php:681 wppa-settings-autosave.php:8184
1841
  msgid "the thumbnails"
1842
  msgstr ""
1843
 
1844
+ #: wppa-album-admin-autosave.php:682 wppa-settings-autosave.php:8185
1845
  msgid "the album photos as slideshow"
1846
  msgstr ""
1847
 
1849
  msgid "the link page with a clean url"
1850
  msgstr ""
1851
 
1852
+ #: wppa-album-admin-autosave.php:684 wppa-settings-autosave.php:8186
1853
  msgid "no link at all"
1854
  msgstr ""
1855
 
1871
  msgid "Link to:"
1872
  msgstr ""
1873
 
1874
+ #: wppa-album-admin-autosave.php:705 wppa-settings-autosave.php:9865
1875
+ #: wppa-settings-autosave.php:9907 wppa-settings-autosave.php:9959
1876
  msgid "There are no pages (yet) to link to."
1877
  msgstr ""
1878
 
1959
  msgid "Edit photo"
1960
  msgstr "Editar la foto"
1961
 
1962
+ #: wppa-album-admin-autosave.php:878 wppa-boxes-html.php:1855
1963
+ #: wppa-boxes-html.php:1858
1964
  msgid "Delete Album"
1965
  msgstr ""
1966
 
1967
  #: wppa-album-admin-autosave.php:880 wppa-boxes-html.php:820
1968
  #: wppa-breadcrumb.php:288 wppa-breadcrumb.php:312 wppa-breadcrumb.php:342
1969
  #: wppa-breadcrumb.php:362 wppa-breadcrumb.php:456 wppa-breadcrumb.php:483
1970
+ #: wppa-breadcrumb.php:643 wppa-comment-admin.php:65 wppa-featen-widget.php:179
1971
  #: wppa-lasten-widget.php:203 wppa-slideshow-widget.php:199
1972
  #: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:326
1973
  #: wppa-upload-widget.php:85 wppa-upload.php:158 wppa-upload.php:299
2003
  msgid "Move to:"
2004
  msgstr ""
2005
 
2006
+ #: wppa-album-admin-autosave.php:896 wppa-photo-admin-autosave.php:2030
2007
  #: wppa-settings-autosave.php:2898
2008
  msgid "Cancel"
2009
  msgstr ""
2253
  msgid "Do not leave this page unless the bar is entirely green."
2254
  msgstr ""
2255
 
2256
+ #: wppa-album-admin-autosave.php:1970 wppa-settings-autosave.php:7934
2257
+ #: wppa-settings-autosave.php:7945 wppa-stereo.php:31
2258
  msgid "Color"
2259
  msgstr ""
2260
 
2325
  msgstr[0] ""
2326
  msgstr[1] ""
2327
 
2328
+ #: wppa-album-covers.php:1437 wppa-boxes-html.php:1282 wppa-boxes-html.php:1596
2329
+ #: wppa-breadcrumb.php:155 wppa-breadcrumb.php:161 wppa-breadcrumb.php:168
2330
+ #: wppa-breadcrumb.php:392 wppa-breadcrumb.php:394 wppa-breadcrumb.php:400
2331
+ #: wppa-breadcrumb.php:402 wppa-breadcrumb.php:410 wppa-breadcrumb.php:426
2332
+ #: wppa-breadcrumb.php:439 wppa-breadcrumb.php:445 wppa-utils.php:1739
2333
+ #: wppa-utils.php:2394
2334
  msgid "and"
2335
  msgstr "i"
2336
 
2349
  msgid "New"
2350
  msgstr ""
2351
 
2352
+ #: wppa-album-covers.php:1752 wppa-boxes-html.php:844 wppa-non-admin.php:754
2353
+ #: wppa-settings-autosave.php:2293 wppa-settings-autosave.php:5602
2354
+ #: wppa-settings-autosave.php:8341
2355
  msgid "Slideshow"
2356
  msgstr "Presentació"
2357
 
2390
  msgid "--- all separate albums ---"
2391
  msgstr ""
2392
 
2393
+ #: wppa-album-navigator-widget.php:102 wppa-common-functions.php:1701
2394
  #: wppa-items.php:436
2395
  msgid "--- owner/public ---"
2396
  msgstr ""
2518
  msgid "Rating count:"
2519
  msgstr ""
2520
 
2521
+ #: wppa-bestof-widget.php:198 wppa-common-functions.php:1683
2522
  #: wppa-import.php:1604 wppa-items.php:424 wppa-potd-admin.php:100
2523
  #: wppa-potd-admin.php:136 wppa-settings-autosave.php:1393
2524
  #: wppa-settings-autosave.php:1742 wppa-settings-autosave.php:1947
2525
  #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:3827
2526
+ #: wppa-settings-autosave.php:4013 wppa-settings-autosave.php:4035
2527
+ #: wppa-settings-autosave.php:4149 wppa-settings-autosave.php:5676
2528
+ #: wppa-settings-autosave.php:6409 wppa-settings-autosave.php:7818
2529
+ #: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
2530
+ #: wppa-settings-autosave.php:8956 wppa-settings-autosave.php:9113
2531
+ #: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
2532
+ #: wppa-tinymce-shortcodes.php:616 wppa-watermark.php:519
2533
  msgid "--- none ---"
2534
  msgstr "--- cap ---"
2535
 
2571
  msgstr ""
2572
 
2573
  #: wppa-boxes-html.php:421 wppa-boxes-html.php:554
2574
+ #: wppa-settings-autosave.php:7933 wppa-settings-autosave.php:7944
2575
  msgid "Text"
2576
  msgstr ""
2577
 
2585
  msgid "Items must meet all selected options."
2586
  msgstr ""
2587
 
2588
+ #: wppa-boxes-html.php:546 wppa-settings-autosave.php:9217
2589
+ #: wppa-settings-autosave.php:9257 wppa-settings-autosave.php:9279
2590
+ #: wppa-settings-autosave.php:9325
2591
  msgid "Tag"
2592
  msgstr ""
2593
 
2609
  msgstr ""
2610
 
2611
  #: wppa-boxes-html.php:836 wppa-settings-autosave.php:385
2612
+ #: wppa-settings-autosave.php:4907
2613
  msgid "Thumbnails"
2614
  msgstr ""
2615
 
2661
  msgid "Social media landing page"
2662
  msgstr "Página de inicio de los medios de comunicación social"
2663
 
2664
+ #: wppa-boxes-html.php:1283 wppa-utils.php:1739
2665
  #, php-format
2666
  msgid "See this image on %s"
2667
  msgstr "Veure aquesta imatga a %s"
2668
 
2669
+ #: wppa-boxes-html.php:1310 wppa-boxes-html.php:1614 wppa-qr-widget.php:39
2670
  msgid "QR code"
2671
  msgstr "Código QR"
2672
 
2673
+ #: wppa-boxes-html.php:1355 wppa-boxes-html.php:1646
2674
  #, php-format
2675
  msgid "Tweet %s on Twitter"
2676
  msgstr "Piula %s a Twitter"
2677
 
2678
+ #: wppa-boxes-html.php:1362 wppa-boxes-html.php:1653
2679
  msgid "Share on Twitter"
2680
  msgstr "Compartir en Twitter"
2681
 
2682
+ #: wppa-boxes-html.php:1375 wppa-boxes-html.php:1666
2683
  #, php-format
2684
  msgid "Share %s on Google+"
2685
  msgstr "Comparteix %s a Google+"
2686
 
2687
+ #: wppa-boxes-html.php:1383 wppa-boxes-html.php:1674
2688
  msgid "Share on Google+"
2689
  msgstr "Compartir en Google+"
2690
 
2691
+ #: wppa-boxes-html.php:1398
2692
  #, php-format
2693
  msgid "Share %s on Pinterest"
2694
  msgstr "Comparteix %s a Pinterest"
2695
 
2696
+ #: wppa-boxes-html.php:1408
2697
  msgid "Share on Pinterest"
2698
  msgstr "Compartir en Pinterest"
2699
 
2700
+ #: wppa-boxes-html.php:1553 wppa-boxes-html.php:1750
2701
  msgid "Comment on Facebook:"
2702
  msgstr "Comentario en Facebook:"
2703
 
2704
+ #: wppa-boxes-html.php:1597
2705
+ #, php-format
2706
+ msgid "See this article on %s"
2707
+ msgstr ""
2708
+
2709
+ #: wppa-boxes-html.php:1853 wppa-import.php:1305
2710
  msgid "Working..."
2711
  msgstr "Trabajando..."
2712
 
2713
+ #: wppa-boxes-html.php:1950
2714
  msgid "Create Sub Album"
2715
  msgstr ""
2716
 
2717
+ #: wppa-boxes-html.php:1950
2718
  msgid "Create Album"
2719
  msgstr "Crear Album"
2720
 
2721
+ #: wppa-boxes-html.php:1997
2722
  msgid "Enter album name."
2723
  msgstr "Introduzca el nombre del álbum."
2724
 
2725
+ #: wppa-boxes-html.php:1999 wppa-boxes-html.php:2861
2726
  msgid "Don't leave this blank!"
2727
  msgstr "No deje el campo vacío!"
2728
 
2729
+ #: wppa-boxes-html.php:2020
2730
  msgid "Enter album description"
2731
  msgstr "Escriba Descripción del álbum"
2732
 
2733
+ #: wppa-boxes-html.php:2048
2734
  msgid "Create album"
2735
  msgstr "Crear Album"
2736
 
2737
+ #: wppa-boxes-html.php:2151 wppa-boxes-html.php:2165 wppa-functions.php:4208
2738
  msgid "Max uploads reached"
2739
  msgstr "Màxim de pujades assolit"
2740
 
2741
+ #: wppa-boxes-html.php:2230 wppa-upload.php:181
2742
  msgid "Upload Photo"
2743
  msgstr "Pujar una foto"
2744
 
2745
+ #: wppa-boxes-html.php:2312
2746
  msgid "Select Photo / Video / Camera"
2747
  msgstr ""
2748
 
2749
+ #: wppa-boxes-html.php:2315
2750
  msgid "Select Photo / Camera"
2751
  msgstr ""
2752
 
2753
+ #: wppa-boxes-html.php:2320
2754
  msgid "Select Photo / Video"
2755
  msgstr ""
2756
 
2757
+ #: wppa-boxes-html.php:2323
2758
  msgid "Select Photo"
2759
  msgstr ""
2760
 
2761
+ #: wppa-boxes-html.php:2330
2762
  msgid "Select Photos / Video / Camera"
2763
  msgstr ""
2764
 
2765
+ #: wppa-boxes-html.php:2333
2766
  msgid "Select Photos / Camera"
2767
  msgstr ""
2768
 
2769
+ #: wppa-boxes-html.php:2338
2770
  msgid "Select Photos / Video"
2771
  msgstr ""
2772
 
2773
+ #: wppa-boxes-html.php:2341
2774
  msgid "Select Photos"
2775
  msgstr ""
2776
 
2777
+ #: wppa-boxes-html.php:2379
2778
  #, php-format
2779
  msgid "You may upload %d photo"
2780
  msgid_plural ""
2783
  msgstr[0] ""
2784
  msgstr[1] ""
2785
 
2786
+ #: wppa-boxes-html.php:2387
2787
  #, php-format
2788
  msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
2789
  msgstr "Mida màxima de la foto: %d x %d (%2.1f MegaPixel)"
2790
 
2791
+ #: wppa-boxes-html.php:2416 wppa-import.php:561 wppa-upload.php:167
2792
  #: wppa-upload.php:309 wppa-upload.php:383
2793
  msgid "Apply watermark file:"
2794
  msgstr "Aplicar el titxer de marca d'aigua:"
2795
 
2796
+ #: wppa-boxes-html.php:2438 wppa-import.php:565 wppa-upload.php:171
2797
  #: wppa-upload.php:313 wppa-upload.php:387
2798
  msgid "Position:"
2799
  msgstr "Posició:"
2800
 
2801
+ #: wppa-boxes-html.php:2466
2802
  msgid ""
2803
  "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
2804
  "photoname if available, else the original filename will be used as photo "
2805
  "name."
2806
  msgstr ""
2807
 
2808
+ #: wppa-boxes-html.php:2471
2809
  msgid ""
2810
  "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
2811
  "available, else the original filename will be used as photo name."
2812
  msgstr ""
2813
 
2814
+ #: wppa-boxes-html.php:2476
2815
  msgid ""
2816
  "If you leave this blank, the original filename will be used as photo name."
2817
  msgstr ""
2818
  "Si deixeu aquest text en blanc, el nom del fitxer original s'utilitzarà com "
2819
  "a nom de la foto."
2820
 
2821
+ #: wppa-boxes-html.php:2481 wppa-settings-autosave.php:1681
2822
  msgid "Photo name"
2823
  msgstr ""
2824
 
2825
+ #: wppa-boxes-html.php:2499
2826
  msgid "Photo description"
2827
  msgstr ""
2828
 
2829
+ #: wppa-boxes-html.php:2527
2830
  msgid "hidden"
2831
  msgstr ""
2832
 
2833
+ #: wppa-boxes-html.php:2597
2834
  msgid "Preview tags:"
2835
  msgstr ""
2836
 
2837
+ #: wppa-boxes-html.php:2614
2838
  msgid "Blog it?"
2839
  msgstr ""
2840
 
2841
+ #: wppa-boxes-html.php:2624
2842
  msgid "Upload and blog"
2843
  msgstr ""
2844
 
2845
+ #: wppa-boxes-html.php:2628 wppa-boxes-html.php:2691
2846
  msgid "Upload photo"
2847
  msgstr ""
2848
 
2849
+ #: wppa-boxes-html.php:2636
2850
  msgid "Post title:"
2851
  msgstr ""
2852
 
2853
+ #: wppa-boxes-html.php:2646
2854
  msgid "Text BEFORE the image:"
2855
  msgstr ""
2856
 
2857
+ #: wppa-boxes-html.php:2656
2858
  msgid "Text AFTER the image:"
2859
  msgstr ""
2860
 
2861
+ #: wppa-boxes-html.php:2676
2862
  msgid "Please select an album and try again"
2863
  msgstr "Per favor, trieu un àlbum i intenteu-ho de nou"
2864
 
2865
+ #: wppa-boxes-html.php:2747
2866
  msgid "ERROR: unable to upload files."
2867
  msgstr ""
2868
 
2869
+ #: wppa-boxes-html.php:2801
2870
  msgid "Edit Album Info"
2871
  msgstr ""
2872
 
2873
+ #: wppa-boxes-html.php:2859
2874
  msgid "Enter album name"
2875
  msgstr ""
2876
 
2877
+ #: wppa-boxes-html.php:2881
2878
  msgid "Album description:"
2879
  msgstr ""
2880
 
2881
+ #: wppa-boxes-html.php:2935
2882
  msgid "Update album"
2883
  msgstr ""
2884
 
2885
+ #: wppa-boxes-html.php:3004
2886
  msgid "wrote:"
2887
  msgstr "va escriure:"
2888
 
2889
+ #: wppa-boxes-html.php:3066
2890
  msgid "Avatar"
2891
  msgstr ""
2892
 
2893
+ #: wppa-boxes-html.php:3109 wppa-links.php:826
2894
  msgid "Awaiting moderation"
2895
  msgstr "Esperant moderació"
2896
 
2897
+ #: wppa-boxes-html.php:3112
2898
  msgid "Marked as spam"
2899
  msgstr "Marcat com a spam"
2900
 
2901
+ #: wppa-boxes-html.php:3136
2902
  msgid "Edit!"
2903
  msgstr "Edita!"
2904
 
2905
+ #: wppa-boxes-html.php:3140
2906
  msgid "Send!"
2907
  msgstr "Envia!"
2908
 
2909
+ #: wppa-boxes-html.php:3201
2910
  msgid "Your name:"
2911
  msgstr "El vostre nom:"
2912
 
2913
+ #: wppa-boxes-html.php:3216
2914
  msgid "Your email:"
2915
  msgstr "El vostre email:"
2916
 
2917
+ #: wppa-boxes-html.php:3232
2918
  msgid "Your comment:"
2919
  msgstr "El vostre comentari: "
2920
 
2921
+ #: wppa-boxes-html.php:3276
2922
  #, php-format
2923
  msgid "You must <a href=\"%s\">login</a> to enter a comment"
2924
  msgstr "Heu <a href=\"%s\">d'identificar-vos</a> per a introduïr un comentari"
2925
 
2926
+ #: wppa-boxes-html.php:3279
2927
  msgid "You must login to enter a comment"
2928
  msgstr ""
2929
 
2930
+ #: wppa-boxes-html.php:3291 wppa-functions.php:2568 wppa-thumbnails.php:682
2931
  #, php-format
2932
  msgid "%d comment"
2933
  msgid_plural "%d comments"
2934
  msgstr[0] ""
2935
  msgstr[1] ""
2936
 
2937
+ #: wppa-boxes-html.php:3295
2938
  msgid "Leave a comment"
2939
  msgstr "Deixeu un comentari"
2940
 
2941
+ #: wppa-boxes-html.php:3392
2942
  msgid "Show IPTC data"
2943
  msgstr "Mostra les dades IPTC"
2944
 
2945
+ #: wppa-boxes-html.php:3403
2946
  msgid "Hide IPTC data"
2947
  msgstr "Oculta les dades IPTC"
2948
 
2949
+ #: wppa-boxes-html.php:3451
2950
  msgid "No IPTC data"
2951
  msgstr "No hi ha dades IPTC"
2952
 
2953
+ #: wppa-boxes-html.php:3503
2954
  msgid "Show EXIF data"
2955
  msgstr "Mostra les dades EXIF"
2956
 
2957
+ #: wppa-boxes-html.php:3514
2958
  msgid "Hide EXIF data"
2959
  msgstr "Oculta les dades EXIF"
2960
 
2961
+ #: wppa-boxes-html.php:3566
2962
  msgid "No EXIF data"
2963
  msgstr "No hi ha dades EXIF"
2964
 
2965
+ #: wppa-boxes-html.php:3680 wppa-boxes-html.php:3685
2966
  msgid "< Previous"
2967
  msgstr "< Atrás"
2968
 
2969
+ #: wppa-boxes-html.php:3691 wppa-boxes-html.php:3696
2970
  msgid "Next >"
2971
  msgstr "Siguiente >"
2972
 
2973
+ #: wppa-boxes-html.php:3798 wppa-boxes-html.php:3877
2974
  msgid "See the authors albums"
2975
  msgstr ""
2976
 
2977
+ #: wppa-boxes-html.php:3802 wppa-boxes-html.php:3810 wppa-boxes-html.php:3881
2978
  msgid "See the authors photos"
2979
  msgstr ""
2980
 
2981
+ #: wppa-boxes-html.php:3806 wppa-boxes-html.php:3814 wppa-boxes-html.php:3885
2982
  msgid "See all the authors photos"
2983
  msgstr ""
2984
 
2985
+ #: wppa-boxes-html.php:3840
2986
  #, php-format
2987
  msgid "Photo by: %s"
2988
  msgstr ""
2989
 
2990
+ #: wppa-boxes-html.php:3843 wppa-boxes-html.php:3906
2991
  #, php-format
2992
  msgid "%d max rating"
2993
  msgid_plural "%d max ratings"
2994
  msgstr[0] ""
2995
  msgstr[1] ""
2996
 
2997
+ #: wppa-boxes-html.php:3847 wppa-boxes-html.php:3910 wppa-non-admin.php:924
2998
  #: wppa-topten-widget.php:196 wppa-topten-widget.php:213
2999
  #: wppa-topten-widget.php:249
3000
  #, php-format
3003
  msgstr[0] ""
3004
  msgstr[1] ""
3005
 
3006
+ #: wppa-boxes-html.php:3851
3007
  #, php-format
3008
  msgid "Rating: %4.2f."
3009
  msgstr ""
3010
 
3011
+ #: wppa-boxes-html.php:3859
3012
  #, php-format
3013
  msgid "Photo %s not found."
3014
  msgstr ""
3015
 
3016
+ #: wppa-boxes-html.php:3914
3017
  #, php-format
3018
  msgid "Mean value: %4.2f."
3019
  msgstr ""
3020
 
3021
+ #: wppa-boxes-html.php:4261 wppa-photo-admin-autosave.php:196
3022
  msgid "Refresh"
3023
  msgstr ""
3024
 
3026
  msgid "Post:"
3027
  msgstr ""
3028
 
3029
+ #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:668
3030
  msgid "Page:"
3031
  msgstr ""
3032
 
3170
  msgid "Thumbs"
3171
  msgstr "Miniatures"
3172
 
3173
+ #: wppa-breadcrumb.php:666
3174
  msgid "Unpublished"
3175
  msgstr ""
3176
 
3177
+ #: wppa-breadcrumb.php:696
3178
  msgid "Found photos will meet the search criteria as follows:"
3179
  msgstr ""
3180
 
3181
+ #: wppa-breadcrumb.php:699
3182
  msgid "AND"
3183
  msgstr ""
3184
 
3185
+ #: wppa-breadcrumb.php:703
3186
  msgid "OR"
3187
  msgstr ""
3188
 
3215
  msgid "Email:"
3216
  msgstr ""
3217
 
3218
+ #: wppa-comment-admin.php:80 wppa-utils.php:1038
3219
  msgid "Comment:"
3220
  msgstr ""
3221
 
3279
  msgstr ""
3280
 
3281
  #: wppa-comment-admin.php:231 wppa-settings-autosave.php:465
3282
+ #: wppa-settings-autosave.php:8211
3283
  msgid "--- Please select a page ---"
3284
  msgstr ""
3285
 
3341
  msgid "Save Settings / Perform bulk action"
3342
  msgstr ""
3343
 
3344
+ #: wppa-comment-admin.php:309 wppa-comment-admin.php:396 wppa-non-admin.php:759
3345
  msgid "Photo"
3346
  msgstr ""
3347
 
3355
  #: wppa-settings-autosave.php:1446 wppa-settings-autosave.php:1467
3356
  #: wppa-settings-autosave.php:3092 wppa-settings-autosave.php:3113
3357
  #: wppa-settings-autosave.php:3450 wppa-settings-autosave.php:3474
3358
+ #: wppa-settings-autosave.php:4799 wppa-settings-autosave.php:4820
3359
+ #: wppa-settings-autosave.php:4996 wppa-settings-autosave.php:5020
3360
+ #: wppa-settings-autosave.php:6026 wppa-settings-autosave.php:6697
3361
+ #: wppa-settings-autosave.php:6719 wppa-settings-autosave.php:7449
3362
+ #: wppa-settings-autosave.php:7473 wppa-settings-autosave.php:9195
3363
+ #: wppa-settings-autosave.php:9216 wppa-settings-autosave.php:9256
3364
+ #: wppa-settings-autosave.php:9278 wppa-settings-autosave.php:9324
3365
  msgid "#"
3366
  msgstr ""
3367
 
3431
  msgid "Comments on Photos"
3432
  msgstr ""
3433
 
3434
+ #: wppa-comment-widget.php:73 wppa-non-admin.php:894 wppa-thumbnails.php:500
3435
  msgid "wrote"
3436
  msgstr ""
3437
 
3438
  #: wppa-comment-widget.php:87 wppa-featen-widget.php:137
3439
+ #: wppa-lasten-widget.php:148 wppa-non-admin.php:895 wppa-non-admin.php:900
3440
+ #: wppa-non-admin.php:905 wppa-non-admin.php:909 wppa-non-admin.php:916
3441
+ #: wppa-non-admin.php:926 wppa-potd-widget.php:159
3442
  #: wppa-thumbnail-widget.php:114 wppa-topten-widget.php:257
3443
  msgid "Photo not found"
3444
  msgstr ""
3445
 
3446
+ #: wppa-comment-widget.php:93 wppa-non-admin.php:896
3447
  msgid "There are no commented photos (yet)"
3448
  msgstr ""
3449
 
3450
+ #: wppa-common-functions.php:653 wppa-functions.php:4626
3451
  #, php-format
3452
  msgid "%d second"
3453
  msgid_plural "%d seconds"
3454
  msgstr[0] ""
3455
  msgstr[1] ""
3456
 
3457
+ #: wppa-common-functions.php:657 wppa-functions.php:4622
3458
+ #: wppa-settings-autosave.php:6542 wppa-settings-autosave.php:6543
3459
  #, php-format
3460
  msgid "%d minute"
3461
  msgid_plural "%d minutes"
3462
  msgstr[0] ""
3463
  msgstr[1] ""
3464
 
3465
+ #: wppa-common-functions.php:661 wppa-functions.php:4618
3466
+ #: wppa-settings-autosave.php:6544 wppa-settings-autosave.php:7828
3467
  #, php-format
3468
  msgid "%d hour"
3469
  msgid_plural "%d hours"
3470
  msgstr[0] ""
3471
  msgstr[1] ""
3472
 
3473
+ #: wppa-common-functions.php:665 wppa-functions.php:4614
3474
+ #: wppa-settings-autosave.php:6545 wppa-settings-autosave.php:7829
3475
+ #: wppa-settings-autosave.php:7830 wppa-settings-autosave.php:7831
3476
+ #: wppa-settings-autosave.php:7832 wppa-settings-autosave.php:7833
3477
+ #: wppa-settings-autosave.php:7834 wppa-settings-autosave.php:7836
3478
+ #: wppa-settings-autosave.php:7837 wppa-settings-autosave.php:7838
3479
+ #: wppa-settings-autosave.php:9016
3480
  #, php-format
3481
  msgid "%d day"
3482
  msgid_plural "%d days"
3483
  msgstr[0] ""
3484
  msgstr[1] ""
3485
 
3486
+ #: wppa-common-functions.php:669 wppa-functions.php:4610
3487
+ #: wppa-settings-autosave.php:6546 wppa-settings-autosave.php:7835
3488
+ #: wppa-settings-autosave.php:7839 wppa-settings-autosave.php:7840
3489
+ #: wppa-settings-autosave.php:7841 wppa-settings-autosave.php:9017
3490
  #, php-format
3491
  msgid "%d week"
3492
  msgid_plural "%d weeks"
3493
  msgstr[0] ""
3494
  msgstr[1] ""
3495
 
3496
+ #: wppa-common-functions.php:673 wppa-settings-autosave.php:7842
3497
+ #: wppa-settings-autosave.php:9018 wppa-settings-autosave.php:9019
3498
+ #: wppa-settings-autosave.php:9020 wppa-settings-autosave.php:9021
3499
+ #: wppa-settings-autosave.php:9022 wppa-settings-autosave.php:9024
3500
  #, php-format
3501
  msgid "%d month"
3502
  msgid_plural "%d months"
3503
  msgstr[0] ""
3504
  msgstr[1] ""
3505
 
3506
+ #: wppa-common-functions.php:676 wppa-settings-autosave.php:9023
3507
+ #: wppa-settings-autosave.php:9025
3508
  #, php-format
3509
  msgid "%d year"
3510
  msgid_plural "%d years"
3511
  msgstr[0] ""
3512
  msgstr[1] ""
3513
 
3514
+ #: wppa-common-functions.php:1399
3515
  #, php-format
3516
  msgid ""
3517
  "Based on your server memory limit you should not upload images larger then "
3518
  "<strong>%d x %d (%2.1f MP)</strong>"
3519
  msgstr ""
3520
 
3521
+ #: wppa-common-functions.php:1677
3522
  msgid "- select an album -"
3523
  msgstr ""
3524
 
3525
+ #: wppa-common-functions.php:1689 wppa-items.php:432
3526
  #: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
3527
  #: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
3528
  #: wppa-tagcloud-widget.php:79
3529
  msgid "--- all ---"
3530
  msgstr "--- tot ---"
3531
 
3532
+ #: wppa-common-functions.php:1695
3533
  msgid "--- generic ---"
3534
  msgstr ""
3535
 
3536
+ #: wppa-common-functions.php:1712
3537
  msgid "--- multiple see below ---"
3538
  msgstr ""
3539
 
3540
+ #: wppa-common-functions.php:1718
3541
  msgid "--- a selection box ---"
3542
  msgstr ""
3543
 
3544
+ #: wppa-common-functions.php:1765 wppa-import.php:1605 wppa-items.php:428
3545
+ #: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
3546
  msgid "--- separate ---"
3547
  msgstr "--- separar ---"
3548
 
3549
+ #: wppa-common-functions.php:1871
3550
  msgid "Photo id ="
3551
  msgstr ""
3552
 
3553
+ #: wppa-common-functions.php:1871
3554
  msgid "Value ="
3555
  msgstr ""
3556
 
3614
  msgid "n.a."
3615
  msgstr "n.a."
3616
 
3617
+ #: wppa-exif-iptc-common.php:239 wppa-utils.php:2626
3618
  msgid "Not Defined"
3619
  msgstr "No definit"
3620
 
3621
+ #: wppa-exif-iptc-common.php:240 wppa-utils.php:2627
3622
  msgid "Manual"
3623
  msgstr "Manual"
3624
 
3625
+ #: wppa-exif-iptc-common.php:241 wppa-utils.php:2628
3626
  msgid "Program AE"
3627
  msgstr ""
3628
 
3629
+ #: wppa-exif-iptc-common.php:242 wppa-utils.php:2629
3630
  msgid "Aperture-priority AE"
3631
  msgstr ""
3632
 
3633
+ #: wppa-exif-iptc-common.php:243 wppa-utils.php:2630
3634
  msgid "Shutter speed priority AE"
3635
  msgstr ""
3636
 
3637
+ #: wppa-exif-iptc-common.php:244 wppa-utils.php:2631
3638
  msgid "Creative (Slow speed)"
3639
  msgstr ""
3640
 
3641
+ #: wppa-exif-iptc-common.php:245 wppa-utils.php:2632
3642
  msgid "Action (High speed)"
3643
  msgstr ""
3644
 
3645
+ #: wppa-exif-iptc-common.php:246 wppa-utils.php:2633
3646
  msgid "Portrait"
3647
  msgstr ""
3648
 
3649
+ #: wppa-exif-iptc-common.php:247 wppa-utils.php:2634
3650
  msgid "Landscape"
3651
  msgstr ""
3652
 
3653
+ #: wppa-exif-iptc-common.php:248 wppa-utils.php:2635
3654
  msgid "Bulb"
3655
  msgstr ""
3656
 
3657
+ #: wppa-exif-iptc-common.php:270 wppa-utils.php:2636
3658
  msgid "Average"
3659
  msgstr "Mitjana"
3660
 
3661
+ #: wppa-exif-iptc-common.php:271 wppa-utils.php:2637
3662
  msgid "Center-weighted average"
3663
  msgstr ""
3664
 
3665
+ #: wppa-exif-iptc-common.php:272 wppa-utils.php:2638
3666
  msgid "Spot"
3667
  msgstr ""
3668
 
3669
+ #: wppa-exif-iptc-common.php:273 wppa-utils.php:2639
3670
  msgid "Multi-spot"
3671
  msgstr ""
3672
 
3673
+ #: wppa-exif-iptc-common.php:274 wppa-utils.php:2640
3674
  msgid "Multi-segment"
3675
  msgstr ""
3676
 
3677
+ #: wppa-exif-iptc-common.php:275 wppa-utils.php:2641
3678
  msgid "Partial"
3679
  msgstr ""
3680
 
3681
+ #: wppa-exif-iptc-common.php:276 wppa-settings-autosave.php:4924
3682
+ #: wppa-utils.php:2642
3683
  msgid "Other"
3684
  msgstr ""
3685
 
3686
+ #: wppa-exif-iptc-common.php:312 wppa-utils.php:2643
3687
  msgid "No Flash"
3688
  msgstr ""
3689
 
3690
+ #: wppa-exif-iptc-common.php:314 wppa-utils.php:2644
3691
  msgid "Fired"
3692
  msgstr ""
3693
 
3694
+ #: wppa-exif-iptc-common.php:316 wppa-utils.php:2645
3695
  msgid "Fired, Return not detected"
3696
  msgstr ""
3697
 
3698
+ #: wppa-exif-iptc-common.php:318 wppa-utils.php:2646
3699
  msgid "Fired, Return detected"
3700
  msgstr ""
3701
 
3702
+ #: wppa-exif-iptc-common.php:320 wppa-utils.php:2647
3703
  msgid "On, Did not fire"
3704
  msgstr ""
3705
 
3706
+ #: wppa-exif-iptc-common.php:322 wppa-utils.php:2648
3707
  msgid "On, Fired"
3708
  msgstr ""
3709
 
3710
+ #: wppa-exif-iptc-common.php:324 wppa-utils.php:2649
3711
  msgid "On, Return not detected"
3712
  msgstr ""
3713
 
3714
+ #: wppa-exif-iptc-common.php:326 wppa-utils.php:2650
3715
  msgid "On, Return detected"
3716
  msgstr ""
3717
 
3718
+ #: wppa-exif-iptc-common.php:328 wppa-utils.php:2651
3719
  msgid "Off, Did not fire"
3720
  msgstr ""
3721
 
3722
+ #: wppa-exif-iptc-common.php:330 wppa-utils.php:2652
3723
  msgid "Off, Did not fire, Return not detected"
3724
  msgstr ""
3725
 
3726
+ #: wppa-exif-iptc-common.php:332 wppa-utils.php:2653
3727
  msgid "Auto, Did not fire"
3728
  msgstr ""
3729
 
3730
+ #: wppa-exif-iptc-common.php:334 wppa-utils.php:2654
3731
  msgid "Auto, Fired"
3732
  msgstr ""
3733
 
3734
+ #: wppa-exif-iptc-common.php:336 wppa-utils.php:2655
3735
  msgid "Auto, Fired, Return not detected"
3736
  msgstr ""
3737
 
3738
+ #: wppa-exif-iptc-common.php:338 wppa-utils.php:2656
3739
  msgid "Auto, Fired, Return detected"
3740
  msgstr ""
3741
 
3742
+ #: wppa-exif-iptc-common.php:340 wppa-utils.php:2657
3743
  msgid "No flash function"
3744
  msgstr ""
3745
 
3746
+ #: wppa-exif-iptc-common.php:342 wppa-utils.php:2658
3747
  msgid "Off, No flash function"
3748
  msgstr ""
3749
 
3750
+ #: wppa-exif-iptc-common.php:344 wppa-utils.php:2659
3751
  msgid "Fired, Red-eye reduction"
3752
  msgstr ""
3753
 
3754
+ #: wppa-exif-iptc-common.php:346 wppa-utils.php:2660
3755
  msgid "Fired, Red-eye reduction, Return not detected"
3756
  msgstr ""
3757
 
3758
+ #: wppa-exif-iptc-common.php:348 wppa-utils.php:2661
3759
  msgid "Fired, Red-eye reduction, Return detected"
3760
  msgstr ""
3761
 
3762
+ #: wppa-exif-iptc-common.php:350 wppa-utils.php:2662
3763
  msgid "On, Red-eye reduction"
3764
  msgstr ""
3765
 
3766
+ #: wppa-exif-iptc-common.php:352 wppa-utils.php:2663
3767
  msgid "Red-eye reduction, Return not detected"
3768
  msgstr ""
3769
 
3770
+ #: wppa-exif-iptc-common.php:354 wppa-utils.php:2664
3771
  msgid "On, Red-eye reduction, Return detected"
3772
  msgstr ""
3773
 
3774
+ #: wppa-exif-iptc-common.php:356 wppa-utils.php:2665
3775
  msgid "Off, Red-eye reduction"
3776
  msgstr ""
3777
 
3778
+ #: wppa-exif-iptc-common.php:358 wppa-utils.php:2666
3779
  msgid "Auto, Did not fire, Red-eye reduction"
3780
  msgstr ""
3781
 
3782
+ #: wppa-exif-iptc-common.php:360 wppa-utils.php:2667
3783
  msgid "Auto, Fired, Red-eye reduction"
3784
  msgstr ""
3785
 
3786
+ #: wppa-exif-iptc-common.php:362 wppa-utils.php:2668
3787
  msgid "Auto, Fired, Red-eye reduction, Return not detected"
3788
  msgstr ""
3789
 
3790
+ #: wppa-exif-iptc-common.php:364 wppa-utils.php:2669
3791
  msgid "Auto, Fired, Red-eye reduction, Return detected"
3792
  msgstr ""
3793
 
3891
  msgid "Featured Photos"
3892
  msgstr ""
3893
 
3894
+ #: wppa-featen-widget.php:115 wppa-non-admin.php:899
3895
  msgid "View the featured photos"
3896
  msgstr ""
3897
 
3898
+ #: wppa-featen-widget.php:146 wppa-non-admin.php:901
3899
  msgid "There are no featured photos (yet)"
3900
  msgstr ""
3901
 
3954
  msgid "Moderate comment admin"
3955
  msgstr "Comentari moderat per admin"
3956
 
3957
+ #: wppa-functions.php:2366 wppa-functions.php:4423 wppa-import.php:1524
3958
  #: wppa-upload.php:570
3959
  msgid "Moderate manage photo"
3960
  msgstr "Moderar fotos"
3996
  msgstr ""
3997
  "No s'ha pogut processar el comentari.\\nProbablement s'hagi esgotat el temps."
3998
 
3999
+ #: wppa-functions.php:2604 wppa-links.php:1514
4000
  msgid "A video can not be printed or downloaded"
4001
  msgstr ""
4002
 
4003
+ #: wppa-functions.php:3073
4004
  msgid "ERROR: Illegal attempt to enter a rating."
4005
  msgstr ""
4006
 
4007
+ #: wppa-functions.php:3086
4008
  msgid "ERROR: Illegal attempt to enter a comment."
4009
  msgstr ""
4010
 
4011
+ #: wppa-functions.php:3992
4012
  msgid "ERROR: Illegal attempt to create an album."
4013
  msgstr ""
4014
 
4015
+ #: wppa-functions.php:4000
4016
  msgid "Wrong captcha, please try again"
4017
  msgstr ""
4018
 
4019
+ #: wppa-functions.php:4016
4020
  #, php-format
4021
  msgid "Album #%s created"
4022
  msgstr ""
4023
 
4024
+ #: wppa-functions.php:4022
4025
  msgid "Could not create album"
4026
  msgstr ""
4027
 
4028
+ #: wppa-functions.php:4034
4029
  msgid "ERROR: Illegal attempt to upload a file."
4030
  msgstr ""
4031
 
4032
+ #: wppa-functions.php:4107
4033
  msgid "Photo upload"
4034
  msgstr ""
4035
 
4036
+ #: wppa-functions.php:4108
4037
  #, php-format
4038
  msgid "%d photo successfully uploaded"
4039
  msgid_plural "%d photos successfully uploaded"
4040
  msgstr[0] ""
4041
  msgstr[1] ""
4042
 
4043
+ #: wppa-functions.php:4109
4044
  #, php-format
4045
  msgid "%s points added"
4046
  msgstr ""
4047
 
4048
+ #: wppa-functions.php:4121
4049
  msgid "Your post is awaiting moderation."
4050
  msgstr ""
4051
 
4052
+ #: wppa-functions.php:4130
4053
  msgid "Upload failed"
4054
  msgstr "La pujada ha fallat."
4055
 
4056
+ #: wppa-functions.php:4133
4057
  #, php-format
4058
  msgid "%d upload failed"
4059
  msgid_plural "%d uploads failed"
4060
  msgstr[0] ""
4061
  msgstr[1] ""
4062
 
4063
+ #: wppa-functions.php:4214
4064
  msgid "Error during upload"
4065
  msgstr "Error al pujar la foto"
4066
 
4067
+ #: wppa-functions.php:4270
4068
  msgid "Could not insert media into db."
4069
  msgstr ""
4070
 
4071
+ #: wppa-functions.php:4310
4072
  msgid "Uploaded file is not an image"
4073
  msgstr "El arxiu pujat no es una imatge"
4074
 
4075
+ #: wppa-functions.php:4316
4076
  #, php-format
4077
  msgid ""
4078
  "Only gif, jpg and png image files are supported. Returned filetype = %d."
4079
  msgstr ""
4080
  "Només es suporten imatges gif, jpg i png. Tipus de fitxer retornat = %d."
4081
 
4082
+ #: wppa-functions.php:4324
4083
  #, php-format
4084
  msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
4085
  msgstr ""
4086
 
4087
+ #: wppa-functions.php:4332
4088
  #, php-format
4089
  msgid "Uploaded file %s already exists in this album."
4090
  msgstr ""
4091
 
4092
+ #: wppa-functions.php:4342
4093
  #, php-format
4094
  msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
4095
  msgstr ""
4096
  "Aquesta imatge és massa gran. Mida màxima de la foto: %d x %d (%2.1f "
4097
  "MegaPixel)"
4098
 
4099
+ #: wppa-functions.php:4382
4100
  msgid "Could not insert photo into db."
4101
  msgstr "No es pot inserir la foto en la base de dades."
4102
 
4103
+ #: wppa-functions.php:4419 wppa-import.php:1520 wppa-upload.php:566
4104
  #, php-format
4105
  msgid "New photo uploaded: %s"
4106
  msgstr "Nova foto pujada: %s"
4107
 
4108
+ #: wppa-functions.php:4420 wppa-import.php:1521 wppa-upload.php:567
4109
  #, php-format
4110
  msgid "User %1$s uploaded photo %2$s into album %3$s"
4111
  msgstr ""
4112
 
4113
+ #: wppa-functions.php:4422 wppa-import.php:1523 wppa-upload.php:569
4114
  msgid "This upload requires moderation"
4115
  msgstr "Aquesta pujada requereix moderació."
4116
 
4117
+ #: wppa-functions.php:4426 wppa-import.php:1527 wppa-upload.php:573
4118
  msgid "Details:"
4119
  msgstr "Detalls:"
4120
 
4121
+ #: wppa-functions.php:4427 wppa-import.php:1528 wppa-upload.php:574
4122
+ #: wppa-utils.php:943 wppa-utils.php:955
4123
  msgid "Manage photo"
4124
  msgstr "Administrar fotos"
4125
 
4126
+ #: wppa-functions.php:4607
4127
  msgid "You can upload after"
4128
  msgstr "Podeu pujar fins a"
4129
 
4130
+ #: wppa-functions.php:4650 wppa-functions.php:4654 wppa-functions.php:4661
4131
+ #: wppa-functions.php:4665 wppa-links.php:1106 wppa-non-admin.php:813
4132
+ #: wppa-settings-autosave.php:9364 wppa-settings-autosave.php:9376
4133
+ #: wppa-settings-autosave.php:9388 wppa-settings-autosave.php:9400
4134
+ #: wppa-settings-autosave.php:9412 wppa-settings-autosave.php:9424
4135
+ #: wppa-settings-autosave.php:9436 wppa-settings-autosave.php:9448
4136
  msgid "Download"
4137
  msgstr ""
4138
 
4139
+ #: wppa-functions.php:4709
4140
  msgid "Zoom in"
4141
  msgstr "Augmenta"
4142
 
4143
+ #: wppa-functions.php:4740
4144
  #, php-format
4145
  msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
4146
  msgstr ""
4147
 
4148
+ #: wppa-functions.php:4743
4149
  #, php-format
4150
  msgid "You can vote again after %s hours, %s minutes and %s seconds"
4151
  msgstr ""
4152
 
4153
+ #: wppa-functions.php:4746
4154
  #, php-format
4155
  msgid "You can vote again after %s minutes and %s seconds"
4156
  msgstr ""
4876
  msgid "Last Ten Uploaded Photos"
4877
  msgstr ""
4878
 
4879
+ #: wppa-lasten-widget.php:131 wppa-non-admin.php:904
4880
  msgid "View the most recent uploaded photos"
4881
  msgstr ""
4882
 
4883
+ #: wppa-lasten-widget.php:155 wppa-non-admin.php:906
4884
  msgid "There are no uploaded photos (yet)"
4885
  msgstr ""
4886
 
4962
  msgid "Previous"
4963
  msgstr "Anterior"
4964
 
4965
+ #: wppa-links.php:1052 wppa-links.php:1055 wppa-non-admin.php:764
4966
  #: wppa-slideshow.php:1137
4967
  msgid "Next"
4968
  msgstr "Seg."
5010
  msgstr ""
5011
 
5012
  #: wppa-maintenance.php:756 wppa-maintenance.php:772
5013
+ #: wppa-photo-admin-autosave.php:1762 wppa-photo-admin-autosave.php:1783
5014
+ #: wppa-settings-autosave.php:4546 wppa-setup.php:352
5015
  msgid "Required"
5016
  msgstr ""
5017
 
5076
  msgid "Select multiple tags or --- all ---:"
5077
  msgstr ""
5078
 
5079
+ #: wppa-non-admin.php:419
5080
  msgid "Press f for fullscreen."
5081
  msgstr ""
5082
 
5083
+ #: wppa-non-admin.php:429 wppa-non-admin.php:500
5084
  msgid "Toggle fullscreen"
5085
  msgstr ""
5086
 
5087
+ #: wppa-non-admin.php:494
5088
  msgid ""
5089
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
5090
  "dismiss this notice."
5091
  msgstr ""
5092
 
5093
+ #: wppa-non-admin.php:495
5094
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
5095
  msgstr ""
5096
 
5097
+ #: wppa-non-admin.php:755 wppa-settings-autosave.php:3834
5098
  #: wppa-slideshow.php:241
5099
  msgid "Start"
5100
  msgstr "Inicia"
5101
 
5102
+ #: wppa-non-admin.php:756
5103
  msgid "Stop"
5104
  msgstr ""
5105
 
5106
+ #: wppa-non-admin.php:757 wppa-slideshow.php:233
5107
  msgid "Slower"
5108
  msgstr "Més lent"
5109
 
5110
+ #: wppa-non-admin.php:758 wppa-slideshow.php:249
5111
  msgid "Faster"
5112
  msgstr "Més ràpid"
5113
 
5114
+ #: wppa-non-admin.php:760
5115
  msgid "of"
5116
  msgstr ""
5117
 
5118
+ #: wppa-non-admin.php:761
5119
  msgid "Previous photo"
5120
  msgstr ""
5121
 
5122
+ #: wppa-non-admin.php:762
5123
  msgid "Next photo"
5124
  msgstr ""
5125
 
5126
+ #: wppa-non-admin.php:763
5127
  msgid "Prev."
5128
  msgstr ""
5129
 
5130
+ #: wppa-non-admin.php:765 wppa-slideshow.php:814 wppa-slideshow.php:828
5131
  #: wppa-slideshow.php:967
5132
  msgid "Average&nbsp;rating"
5133
  msgstr "Valoració mitjana"
5134
 
5135
+ #: wppa-non-admin.php:766 wppa-slideshow.php:893 wppa-slideshow.php:926
5136
  #: wppa-slideshow.php:948
5137
  msgid "My&nbsp;rating"
5138
  msgstr "La meva valoració"
5139
 
5140
+ #: wppa-non-admin.php:767
5141
  msgid "Avg."
5142
  msgstr ""
5143
 
5144
+ #: wppa-non-admin.php:768
5145
  msgid "Mine"
5146
  msgstr ""
5147
 
5148
+ #: wppa-non-admin.php:769
5149
  msgid "You marked this image as inappropriate."
5150
  msgstr ""
5151
 
5152
+ #: wppa-non-admin.php:772
5153
  msgid "Please enter your name"
5154
  msgstr ""
5155
 
5156
+ #: wppa-non-admin.php:773
5157
  msgid "Please enter a valid email address"
5158
  msgstr ""
5159
 
5160
+ #: wppa-non-admin.php:774
5161
  msgid "Please enter a comment"
5162
  msgstr ""
5163
 
5164
+ #: wppa-non-admin.php:808
5165
  msgid "Double click to start/stop slideshow running"
5166
  msgstr ""
5167
 
5168
+ #: wppa-non-admin.php:910 wppa-photo-admin-autosave.php:265
5169
  #: wppa-potd-widget.php:178
5170
  msgid "By:"
5171
  msgstr ""
5172
 
5173
+ #: wppa-non-admin.php:913 wppa-slideshow-widget.php:124
5174
  msgid "No album defined (yet)"
5175
  msgstr ""
5176
 
5177
+ #: wppa-non-admin.php:917 wppa-thumbnail-widget.php:121
5178
  msgid "There are no photos (yet)"
5179
  msgstr ""
5180
 
5181
+ #: wppa-non-admin.php:920 wppa-upldr-widget.php:90
5182
  msgid "There are too many registered users in the system for this widget"
5183
  msgstr ""
5184
 
5185
+ #: wppa-non-admin.php:921 wppa-upldr-widget.php:125 wppa-upldr-widget.php:132
5186
  msgid "Photos uploaded by"
5187
  msgstr ""
5188
 
5189
+ #: wppa-non-admin.php:925 wppa-thumbnails.php:692 wppa-thumbnails.php:1480
5190
  #: wppa-topten-widget.php:203 wppa-topten-widget.php:226
5191
  #: wppa-topten-widget.php:236
5192
  #, php-format
5195
  msgstr[0] ""
5196
  msgstr[1] ""
5197
 
5198
+ #: wppa-non-admin.php:927 wppa-topten-widget.php:261
5199
  msgid "There are no rated photos (yet)"
5200
  msgstr ""
5201
 
5420
  msgid "Same tab"
5421
  msgstr ""
5422
 
5423
+ #: wppa-photo-admin-autosave.php:436 wppa-settings-autosave.php:5025
5424
+ #: wppa-settings-autosave.php:6031
5425
  msgid "New tab"
5426
  msgstr ""
5427
 
5512
  msgid "Remake thumbnail file"
5513
  msgstr ""
5514
 
5515
+ #: wppa-photo-admin-autosave.php:658 wppa-settings-autosave.php:6912
5516
  msgid "Remake"
5517
  msgstr ""
5518
 
5741
  msgstr ""
5742
 
5743
  #: wppa-photo-admin-autosave.php:1362 wppa-photo-admin-autosave.php:1481
5744
+ #: wppa-potd-admin.php:321 wppa-settings-autosave.php:8526
5745
  msgid "Preview"
5746
  msgstr ""
5747
 
5780
  msgid "The album is empty."
5781
  msgstr ""
5782
 
5783
+ #: wppa-photo-admin-autosave.php:1809
5784
  msgid "Combined"
5785
  msgstr ""
5786
 
5787
+ #: wppa-photo-admin-autosave.php:1846
5788
  msgid "Word"
5789
  msgstr ""
5790
 
5791
+ #: wppa-photo-admin-autosave.php:1849
5792
  msgid "Count"
5793
  msgstr ""
5794
 
5795
+ #: wppa-photo-admin-autosave.php:1901 wppa-settings-autosave.php:6450
5796
  msgid "Tags"
5797
  msgstr ""
5798
 
5799
+ #: wppa-photo-admin-autosave.php:2021
5800
  msgid "Send"
5801
  msgstr ""
5802
 
5821
  #: wppa-settings-autosave.php:517 wppa-settings-autosave.php:679
5822
  #: wppa-settings-autosave.php:701 wppa-settings-autosave.php:1449
5823
  #: wppa-settings-autosave.php:1470 wppa-settings-autosave.php:3095
5824
+ #: wppa-settings-autosave.php:3477 wppa-settings-autosave.php:4802
5825
+ #: wppa-settings-autosave.php:6700 wppa-settings-autosave.php:7476
5826
+ #: wppa-settings-autosave.php:9198
5827
  msgid "Setting"
5828
  msgstr ""
5829
 
5832
  #: wppa-settings-autosave.php:702 wppa-settings-autosave.php:1450
5833
  #: wppa-settings-autosave.php:1471 wppa-settings-autosave.php:3096
5834
  #: wppa-settings-autosave.php:3120 wppa-settings-autosave.php:3457
5835
+ #: wppa-settings-autosave.php:3478 wppa-settings-autosave.php:4803
5836
+ #: wppa-settings-autosave.php:4827 wppa-settings-autosave.php:5003
5837
+ #: wppa-settings-autosave.php:5027 wppa-settings-autosave.php:6033
5838
+ #: wppa-settings-autosave.php:6702 wppa-settings-autosave.php:6726
5839
+ #: wppa-settings-autosave.php:7456 wppa-settings-autosave.php:7477
5840
+ #: wppa-settings-autosave.php:9199 wppa-settings-autosave.php:9221
5841
+ #: wppa-settings-autosave.php:9261 wppa-settings-autosave.php:9283
5842
+ #: wppa-settings-autosave.php:9329
5843
  msgid "Help"
5844
  msgstr ""
5845
 
5881
  msgstr ""
5882
 
5883
  #: wppa-potd-admin.php:100 wppa-settings-autosave.php:3813
5884
+ #: wppa-settings-autosave.php:3827 wppa-settings-autosave.php:4098
5885
  #: wppa-slideshow-widget.php:215 wppa-tinymce-scripts.php:289
5886
  #: wppa-tinymce-shortcodes.php:618
5887
  msgid "center"
5924
  msgstr ""
5925
 
5926
  #: wppa-potd-admin.php:156 wppa-settings-autosave.php:1075
5927
+ #: wppa-settings-autosave.php:5777 wppa-settings-autosave.php:5810
5928
+ #: wppa-settings-autosave.php:5907
5929
  msgid "thumbnails"
5930
  msgstr ""
5931
 
5932
+ #: wppa-potd-admin.php:156 wppa-settings-autosave.php:5778
5933
+ #: wppa-settings-autosave.php:5811 wppa-settings-autosave.php:5908
5934
  msgid "slideshow"
5935
  msgstr ""
5936
 
5964
 
5965
  #: wppa-potd-admin.php:190 wppa-potd-admin.php:644 wppa-potd-admin.php:669
5966
  #: wppa-potd-admin.php:707 wppa-settings-autosave.php:353
5967
+ #: wppa-settings-autosave.php:7320 wppa-settings-autosave.php:7347
5968
+ #: wppa-settings-autosave.php:8415 wppa-settings-autosave.php:8417
5969
+ #: wppa-settings-autosave.php:9706 wppa-settings-autosave.php:9723
5970
+ #: wppa-settings-autosave.php:9752 wppa-settings-autosave.php:9770
5971
+ #: wppa-settings-autosave.php:9794 wppa-settings-autosave.php:9815
5972
+ #: wppa-settings-autosave.php:9835 wppa-settings-autosave.php:9852
5973
+ #: wppa-settings-autosave.php:9896 wppa-settings-autosave.php:9949
5974
+ #: wppa-settings-autosave.php:9981
5975
  msgid "Setting unmodified"
5976
  msgstr ""
5977
 
6142
  msgid "There are too many photos in the selection to show a preview ( %d )"
6143
  msgstr ""
6144
 
6145
+ #: wppa-potd-admin.php:573 wppa-settings-autosave.php:9634
6146
  msgid "The default for this setting is:"
6147
  msgstr ""
6148
 
6149
+ #: wppa-potd-admin.php:590 wppa-settings-autosave.php:9651
6150
  msgid "Click for help"
6151
  msgstr ""
6152
 
6153
+ #: wppa-potd-admin.php:614 wppa-settings-autosave.php:9997
6154
  msgid "Checked"
6155
  msgstr ""
6156
 
6157
+ #: wppa-potd-admin.php:615 wppa-settings-autosave.php:9998
6158
  msgid "Unchecked"
6159
  msgstr ""
6160
 
6161
+ #: wppa-potd-admin.php:616 wppa-settings-autosave.php:5085
6162
+ #: wppa-settings-autosave.php:5128 wppa-settings-autosave.php:5206
6163
+ #: wppa-settings-autosave.php:5249 wppa-settings-autosave.php:5297
6164
+ #: wppa-settings-autosave.php:5344 wppa-settings-autosave.php:5391
6165
+ #: wppa-settings-autosave.php:5443 wppa-settings-autosave.php:5481
6166
+ #: wppa-settings-autosave.php:5531 wppa-settings-autosave.php:5573
6167
+ #: wppa-settings-autosave.php:5614 wppa-settings-autosave.php:9999
6168
  msgid "no link at all."
6169
  msgstr ""
6170
 
6171
+ #: wppa-potd-admin.php:617 wppa-settings-autosave.php:5086
6172
+ #: wppa-settings-autosave.php:5129 wppa-settings-autosave.php:5207
6173
+ #: wppa-settings-autosave.php:5250 wppa-settings-autosave.php:5298
6174
+ #: wppa-settings-autosave.php:5345 wppa-settings-autosave.php:5392
6175
+ #: wppa-settings-autosave.php:5444 wppa-settings-autosave.php:5482
6176
+ #: wppa-settings-autosave.php:5532 wppa-settings-autosave.php:5574
6177
+ #: wppa-settings-autosave.php:5615 wppa-settings-autosave.php:10000
6178
  msgid "the plain photo (file)."
6179
  msgstr ""
6180
 
6181
+ #: wppa-potd-admin.php:618 wppa-settings-autosave.php:5089
6182
+ #: wppa-settings-autosave.php:5132 wppa-settings-autosave.php:5208
6183
+ #: wppa-settings-autosave.php:5253 wppa-settings-autosave.php:5301
6184
+ #: wppa-settings-autosave.php:5348 wppa-settings-autosave.php:5395
6185
+ #: wppa-settings-autosave.php:5483 wppa-settings-autosave.php:5534
6186
+ #: wppa-settings-autosave.php:5576 wppa-settings-autosave.php:10001
6187
  msgid "the full size photo in a slideshow."
6188
  msgstr ""
6189
 
6190
+ #: wppa-potd-admin.php:619 wppa-settings-autosave.php:5090
6191
+ #: wppa-settings-autosave.php:5133 wppa-settings-autosave.php:5209
6192
+ #: wppa-settings-autosave.php:5254 wppa-settings-autosave.php:5302
6193
+ #: wppa-settings-autosave.php:5349 wppa-settings-autosave.php:5396
6194
+ #: wppa-settings-autosave.php:5484 wppa-settings-autosave.php:5535
6195
+ #: wppa-settings-autosave.php:5577 wppa-settings-autosave.php:5616
6196
+ #: wppa-settings-autosave.php:10002
6197
  msgid "the fullsize photo on its own."
6198
  msgstr ""
6199
 
6200
+ #: wppa-potd-admin.php:620 wppa-settings-autosave.php:10003
6201
  msgid "the photo specific link."
6202
  msgstr ""
6203
 
6204
+ #: wppa-potd-admin.php:621 wppa-settings-autosave.php:5088
6205
+ #: wppa-settings-autosave.php:5131 wppa-settings-autosave.php:5533
6206
+ #: wppa-settings-autosave.php:5575 wppa-settings-autosave.php:10004
6207
  msgid "the content of the album."
6208
  msgstr ""
6209
 
6210
+ #: wppa-potd-admin.php:622 wppa-settings-autosave.php:5130
6211
+ #: wppa-settings-autosave.php:10005
6212
  msgid "defined at widget activation."
6213
  msgstr ""
6214
 
6215
+ #: wppa-potd-admin.php:623 wppa-settings-autosave.php:5087
6216
+ #: wppa-settings-autosave.php:10006
6217
  msgid "defined on widget admin page."
6218
  msgstr ""
6219
 
6220
+ #: wppa-potd-admin.php:624 wppa-settings-autosave.php:5445
6221
+ #: wppa-settings-autosave.php:10007
6222
  msgid "same as title."
6223
  msgstr ""
6224
 
6225
  #: wppa-potd-admin.php:636 wppa-potd-admin.php:659 wppa-potd-admin.php:680
6226
+ #: wppa-settings-autosave.php:9696 wppa-settings-autosave.php:9715
6227
+ #: wppa-settings-autosave.php:9745 wppa-settings-autosave.php:9762
6228
+ #: wppa-settings-autosave.php:9786 wppa-settings-autosave.php:9807
6229
+ #: wppa-settings-autosave.php:9827 wppa-settings-autosave.php:9869
6230
  msgid "Slug ="
6231
  msgstr ""
6232
 
6233
+ #: wppa-potd-admin.php:636 wppa-settings-autosave.php:9762
6234
+ #: wppa-settings-autosave.php:9786 wppa-settings-autosave.php:9807
6235
+ #: wppa-settings-autosave.php:9827
6236
  msgid "Values = yes, no"
6237
  msgstr ""
6238
 
6239
+ #: wppa-potd-admin.php:680 wppa-settings-autosave.php:9869
6240
  msgid "Values = "
6241
  msgstr ""
6242
 
6307
  msgid "Enable subsearch"
6308
  msgstr ""
6309
 
6310
+ #: wppa-search-widget.php:134 wppa-settings-autosave.php:5959
6311
  msgid "Landing page"
6312
  msgstr ""
6313
 
6487
  msgstr ""
6488
 
6489
  #: wppa-settings-autosave.php:348 wppa-settings-autosave.php:350
6490
+ #: wppa-settings-autosave.php:2031 wppa-settings-autosave.php:5706
6491
  msgid "Button"
6492
  msgstr ""
6493
 
6495
  msgid "action that causes page reload."
6496
  msgstr ""
6497
 
6498
+ #: wppa-settings-autosave.php:350 wppa-settings-autosave.php:10030
6499
+ #: wppa-settings-autosave.php:10049
6500
  msgid "Are you sure?"
6501
  msgstr ""
6502
 
6540
  msgid "Layout"
6541
  msgstr ""
6542
 
6543
+ #: wppa-settings-autosave.php:375 wppa-settings-autosave.php:4975
6544
  msgid "Lightbox"
6545
  msgstr ""
6546
 
6556
  msgid "Navigation"
6557
  msgstr ""
6558
 
6559
+ #: wppa-settings-autosave.php:380 wppa-settings-autosave.php:8558
6560
+ #: wppa-settings-autosave.php:8603
6561
  msgid "Rating"
6562
  msgstr ""
6563
 
6581
  msgid "Widgets"
6582
  msgstr ""
6583
 
6584
+ #: wppa-settings-autosave.php:388 wppa-settings-autosave.php:8396
6585
  msgid "Watermark"
6586
  msgstr ""
6587
 
6964
  #: wppa-settings-autosave.php:1364 wppa-settings-autosave.php:1373
6965
  #: wppa-settings-autosave.php:1406 wppa-settings-autosave.php:1415
6966
  #: wppa-settings-autosave.php:1427 wppa-settings-autosave.php:1436
6967
+ #: wppa-settings-autosave.php:2910 wppa-settings-autosave.php:4848
6968
+ #: wppa-settings-autosave.php:4865 wppa-settings-autosave.php:4882
6969
+ #: wppa-settings-autosave.php:4899 wppa-settings-autosave.php:4916
6970
+ #: wppa-settings-autosave.php:4933 wppa-settings-autosave.php:4950
6971
+ #: wppa-settings-autosave.php:4967 wppa-settings-autosave.php:4984
6972
+ #: wppa-settings-autosave.php:6261 wppa-settings-autosave.php:8929
6973
+ #: wppa-settings-autosave.php:9125 wppa-settings-autosave.php:9167
6974
+ #: wppa-settings-autosave.php:9185
6975
  msgid "pixels"
6976
  msgstr ""
6977
 
6998
  #: wppa-settings-autosave.php:761 wppa-settings-autosave.php:800
6999
  #: wppa-settings-autosave.php:1244 wppa-settings-autosave.php:1284
7000
  #: wppa-settings-autosave.php:1304 wppa-settings-autosave.php:1344
7001
+ #: wppa-settings-autosave.php:4244 wppa-settings-autosave.php:6186
7002
+ #: wppa-settings-autosave.php:8019
7003
  msgid "photos"
7004
  msgstr "fotos"
7005
 
7836
  "Enter the maximum number of thumbnail photos of albums in the Album widget."
7837
  msgstr ""
7838
 
7839
+ #: wppa-settings-autosave.php:1324 wppa-settings-autosave.php:6202
7840
  msgid "albums"
7841
  msgstr "àlbums"
7842
 
8187
  msgid "The location for the pagelinks bar."
8188
  msgstr ""
8189
 
8190
+ #: wppa-settings-autosave.php:1627 wppa-settings-autosave.php:4189
8191
  msgid "Top"
8192
  msgstr ""
8193
 
8194
+ #: wppa-settings-autosave.php:1627 wppa-settings-autosave.php:4189
8195
  msgid "Bottom"
8196
  msgstr ""
8197
 
8511
  msgid "Display the share social media buttons box."
8512
  msgstr ""
8513
 
8514
+ #: wppa-settings-autosave.php:1891 wppa-settings-autosave.php:9172
8515
  msgid "Hide when running"
8516
  msgstr ""
8517
 
8905
  msgstr ""
8906
 
8907
  #: wppa-settings-autosave.php:2234 wppa-settings-autosave.php:2245
8908
+ #: wppa-settings-autosave.php:2274 wppa-settings-autosave.php:4544
8909
  msgid "None"
8910
  msgstr ""
8911
 
9080
  msgid "Show the album description on hoovering thumbnail in album widget"
9081
  msgstr ""
9082
 
9083
+ #: wppa-settings-autosave.php:2390 wppa-settings-autosave.php:4675
9084
  msgid ""
9085
  "Lightbox related settings. These settings have effect only when Table IX-J3 "
9086
  "is set to wppa"
9880
  "For more information about slideshow image borders see the help on Table I-B4"
9881
  msgstr ""
9882
 
9883
+ #: wppa-settings-autosave.php:3157 wppa-settings-autosave.php:4941
9884
  msgid "Numbar"
9885
  msgstr ""
9886
 
9925
  msgid "Enter valid CSS colors for comment box backgrounds and borders."
9926
  msgstr ""
9927
 
9928
+ #: wppa-settings-autosave.php:3209 wppa-settings-autosave.php:8557
9929
+ #: wppa-settings-autosave.php:8602
9930
  msgid "Custom"
9931
  msgstr ""
9932
 
10606
  "either."
10607
  msgstr ""
10608
 
10609
+ #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:4098
10610
  #: wppa-slideshow-widget.php:214
10611
  msgid "top"
10612
  msgstr ""
10613
 
10614
+ #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:4098
10615
  #: wppa-slideshow-widget.php:216
10616
  msgid "bottom"
10617
  msgstr ""
10681
  msgid "Start slideonly slideshow running."
10682
  msgstr ""
10683
 
10684
+ #: wppa-settings-autosave.php:3861 wppa-settings-autosave.php:4755
10685
  msgid "Video autostart"
10686
  msgstr ""
10687
 
10689
  msgid "Autoplay videos in slideshows."
10690
  msgstr ""
10691
 
10692
+ #: wppa-settings-autosave.php:3871 wppa-settings-autosave.php:4764
10693
  msgid "Audio autostart"
10694
  msgstr ""
10695
 
10764
  msgid "This is the time it takes a photo to fade in or out."
10765
  msgstr ""
10766
 
10767
+ #: wppa-settings-autosave.php:3919 wppa-settings-autosave.php:4293
10768
+ #: wppa-settings-autosave.php:4701 wppa-settings-autosave.php:6541
10769
+ #: wppa-settings-autosave.php:7654 wppa-settings-autosave.php:7665
10770
+ #: wppa-settings-autosave.php:7827
10771
  msgid "--- off ---"
10772
  msgstr ""
10773
 
10819
  msgid "The alignment of the descriptions under fullsize images and slideshows."
10820
  msgstr ""
10821
 
10822
+ #: wppa-settings-autosave.php:3948 wppa-settings-autosave.php:4086
10823
+ #: wppa-settings-autosave.php:4189
10824
  msgid "Left"
10825
  msgstr ""
10826
 
10828
  msgid "Center"
10829
  msgstr ""
10830
 
10831
+ #: wppa-settings-autosave.php:3948 wppa-settings-autosave.php:4086
10832
+ #: wppa-settings-autosave.php:4189
10833
  msgid "Right"
10834
  msgstr ""
10835
 
10896
  msgstr ""
10897
 
10898
  #: wppa-settings-autosave.php:4009
10899
+ msgid "Sutcliffe style"
10900
+ msgstr ""
10901
+
10902
+ #: wppa-settings-autosave.php:4010
10903
+ msgid "Show description with counter at limited size."
10904
+ msgstr ""
10905
+
10906
+ #: wppa-settings-autosave.php:4014
10907
+ msgid "available width"
10908
+ msgstr ""
10909
+
10910
+ #: wppa-settings-autosave.php:4015
10911
+ msgid "width of image"
10912
+ msgstr ""
10913
+
10914
+ #: wppa-settings-autosave.php:4016
10915
+ msgid "width of portrait image"
10916
+ msgstr ""
10917
+
10918
+ #: wppa-settings-autosave.php:4029
10919
  msgid "Thumbnail related settings"
10920
  msgstr ""
10921
 
10922
+ #: wppa-settings-autosave.php:4032
10923
  msgid "Photo ordering sequence method."
10924
  msgstr ""
10925
 
10926
+ #: wppa-settings-autosave.php:4033
10927
  msgid ""
10928
  "Specify the way the photos should be ordered. This is the default setting. "
10929
  "You can overrule the default sorting order on a per album basis."
10930
  msgstr ""
10931
 
10932
+ #: wppa-settings-autosave.php:4070
10933
  msgid "Thumbnail type"
10934
  msgstr ""
10935
 
10936
+ #: wppa-settings-autosave.php:4071
10937
  msgid "The way the thumbnail images are displayed."
10938
  msgstr ""
10939
 
10940
+ #: wppa-settings-autosave.php:4072
10941
  msgid ""
10942
  "You may select an altenative display method for thumbnails. Note that some "
10943
  "of the thumbnail settings do not apply to all available display methods."
10944
  msgstr ""
10945
 
10946
+ #: wppa-settings-autosave.php:4074
10947
  msgid "like album covers"
10948
  msgstr ""
10949
 
10950
+ #: wppa-settings-autosave.php:4074
10951
  msgid "like album covers mcr"
10952
  msgstr ""
10953
 
10954
+ #: wppa-settings-autosave.php:4074
10955
  msgid "masonry style columns"
10956
  msgstr ""
10957
 
10958
+ #: wppa-settings-autosave.php:4074
10959
  msgid "masonry style rows"
10960
  msgstr ""
10961
 
10962
+ #: wppa-settings-autosave.php:4082 wppa-settings-autosave.php:4183
10963
  msgid "Placement"
10964
  msgstr ""
10965