WP Photo Album Plus - Version 6.3.8

Version Description

Download this release

Release Info

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

Code changes from version 6.3.7 to 6.3.8

js/wppa-tinymce-shortcodes.js CHANGED
@@ -2,7 +2,7 @@
2
  * Pachkage: wp-photo-album-plus
3
  *
4
  *
5
- * Version 6.2.5
6
  *
7
  */
8
 
@@ -248,6 +248,7 @@ function wppaGalleryEvaluate() {
248
  case 'generic':
249
  case 'upload':
250
  case 'landing':
 
251
  miscType = type;
252
  break;
253
  default:
2
  * Pachkage: wp-photo-album-plus
3
  *
4
  *
5
+ * Version 6.3.8
6
  *
7
  */
8
 
248
  case 'generic':
249
  case 'upload':
250
  case 'landing':
251
+ case 'stereo':
252
  miscType = type;
253
  break;
254
  default:
js/wppa.js CHANGED
@@ -1,8 +1,8 @@
1
  // wppa.js
2
  //
3
  // conatins common vars and functions
4
- //
5
- var wppaJsVersion = '6.3.2';
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!!
@@ -107,7 +107,7 @@ var wppaDownLoad = 'Download';
107
  var wppaSiteUrl = '';
108
  var wppaWppaUrl = '';
109
  var wppaIncludeUrl = '';
110
- var wppaSlideToFullpopup = false;
111
  var wppaComAltSize = 75;
112
  var wppaBumpViewCount = true;
113
  var wppaFotomoto = false;
@@ -204,7 +204,7 @@ var wppaOvlVideoHtml;
204
  var wppaOvlAudioHtmls;
205
  var wppaOvlAudioHtml;
206
  var wppaOvlVideoNaturalWidths;
207
- var wppaOvlVideoNaturalWidth;
208
  var wppaOvlVideoNaturalHeights;
209
  var wppaOvlVideoNaturalHeight;
210
  var wppaOvlMode = 'normal';
@@ -250,12 +250,12 @@ jQuery( document ).ready(function() {
250
  _wppaDoAutocol( mocc );
251
  anyAutocol = true;
252
  }
253
- }
254
-
255
  // Misc. init
256
  _wppaTextDelay = wppaAnimationSpeed;
257
  if ( wppaFadeInAfterFadeOut ) _wppaTextDelay *= 2;
258
-
259
  // Install resize handler
260
  if ( anyAutocol ) {
261
  jQuery( window ).resize(function() {
@@ -265,7 +265,7 @@ jQuery( document ).ready(function() {
265
  _wppaDoAutocol( mocc );
266
  }
267
  }
268
- });
269
  }
270
  });
271
 
@@ -276,10 +276,10 @@ jQuery( document ).ready( function( e ) {
276
  if ( wppaAllowAjax && jQuery.ajax() ) {
277
  wppaCanAjaxRender = true;
278
  }
279
-
280
  // Can we do history.pushState ?
281
- if ( typeof( history.pushState ) != 'undefined' ) {
282
-
283
  // Save entire initial page content ( I do not know which container is going to be modified first )
284
  var i=1;
285
  while ( i <= wppaMaxOccur ) {
@@ -298,17 +298,17 @@ function wppaUpdateLightboxes() {
298
  if ( typeof( wppaInitOverlay ) == 'function' ) {
299
  wppaInitOverlay();
300
  }
301
-
302
  // Lightbox-3
303
  if ( typeof( myLightbox ) != 'undefined' ) {
304
  if ( typeof( myLightbox.updateImageList ) == 'function' ) {
305
- myLightbox.updateImageList();
306
  }
307
  }
308
-
309
  // PrettyPhoto
310
  if ( jQuery().prettyPhoto ) {
311
- jQuery( "a[rel^='prettyPhoto']" ).prettyPhoto( {
312
  deeplinking: false,
313
  });
314
  }
@@ -317,14 +317,14 @@ function wppaUpdateLightboxes() {
317
  // Stop video of a given occurrency
318
  function wppaStopVideo( mocc ) {
319
  var id = [];
320
- var video;
321
  var i;
322
-
323
  id[1] = 'wppa-overlay-img';
324
  id[2] = 'theimg0-'+mocc;
325
  id[3] = 'theimg1-'+mocc;
326
  i = 0;
327
-
328
  while ( i < 3 ) {
329
  i++;
330
  video = document.getElementById( id[i] );
@@ -341,7 +341,7 @@ function wppaStopVideo( mocc ) {
341
  function wppaStopAudio() {
342
 
343
  var items = jQuery( 'audio' );
344
-
345
  if ( items.length > 0 ) {
346
  var i = 0;
347
  while ( i < items.length ) {
@@ -386,9 +386,9 @@ var temp2;
386
  function wppaGetContainerWidth( mocc ) {
387
  var elm = document.getElementById( 'wppa-container-'+mocc );
388
  var w = 0;
389
-
390
  if ( ! wppaAutoColumnWidth[mocc] ) return elm.clientWidth;
391
-
392
  while ( w == 0 ) {
393
  elm = elm.parentNode;
394
  w = jQuery( elm ).width();
@@ -399,14 +399,14 @@ function wppaGetContainerWidth( mocc ) {
399
 
400
  // Do the responsive size adjustment
401
  function _wppaDoAutocol( mocc ) {
402
-
403
  wppaConsoleLog( 'Doing autocol '+mocc );
404
-
405
  if ( ! wppaAutoColumnWidth[mocc] ) return; // Not auto
406
 
407
  var w;
408
  var h;
409
-
410
  // Container
411
  w = wppaGetContainerWidth( mocc );//document.getElementById( 'wppa-container-'+mocc ).parentNode.clientWidth;
412
  wppaColWidth[mocc] = w;
@@ -415,7 +415,7 @@ function _wppaDoAutocol( mocc ) {
415
  // Covers
416
  jQuery( ".wppa-asym-text-frame-"+mocc ).css( 'width',w - wppaTextFrameDelta );
417
  jQuery( ".wppa-cover-box-"+mocc ).css( 'width',w - wppaBoxDelta );
418
-
419
  // Multi Column Responsive covers
420
  var exists = jQuery( ".wppa-cover-box-mcr-"+mocc );
421
  var MCRWidth;
@@ -437,7 +437,7 @@ function _wppaDoAutocol( mocc ) {
437
  jQuery( exists[idx] ).css( {'marginLeft': '8px', 'clear': 'none', 'float': 'left'});
438
  }
439
  idx++;
440
- }
441
  jQuery( ".wppa-asym-text-frame-mcr-"+mocc ).css( 'width',MCRWidth - wppaTextFrameDelta );
442
  jQuery( ".wppa-cover-box-mcr-"+mocc ).css( 'width',MCRWidth - wppaBoxDelta );
443
  }
@@ -448,7 +448,7 @@ function _wppaDoAutocol( mocc ) {
448
 
449
  // Thumbnail area
450
  jQuery( ".wppa-thumb-area-"+mocc ).css( 'width',w - wppaThumbnailAreaDelta );
451
-
452
  // Thumbframes default
453
  if ( wppaThumbSpaceAuto ) {
454
  var tfw = parseInt( jQuery( ".thumbnail-frame-"+mocc ).css( 'width' ) );
@@ -457,16 +457,16 @@ function _wppaDoAutocol( mocc ) {
457
  var weff = w - wppaThumbnailAreaDelta - 7;
458
  var nthumbs = parseInt( weff / ( tfw + minspc ) );
459
  var availsp = weff - nthumbs * tfw;
460
- var newspc = parseInt( 0.5 + availsp / ( nthumbs+1 ) );
461
-
462
  jQuery( ".thumbnail-frame-"+mocc ).css( {marginLeft:newspc});
463
  }
464
  }
465
-
466
  // Comalt thumbmails
467
  jQuery( ".thumbnail-frame-comalt-"+mocc ).css( 'width', w - wppaThumbnailAreaDelta );
468
  jQuery( ".wppa-com-alt-"+mocc ).css( 'width', w - wppaThumbnailAreaDelta - wppaComAltSize - 20 );
469
-
470
  // Masonry thumbnails horizontal
471
  var row = 1;
472
  var rowHeightPix;
@@ -477,30 +477,30 @@ function _wppaDoAutocol( mocc ) {
477
  row++;
478
  rowHeightPerc = jQuery( '#wppa-mas-h-'+row+'-'+mocc ).attr( 'data-height-perc' );
479
  }
480
-
481
  // Fix bug in ie and chrome
482
  wppaSetMasHorFrameWidthsForIeAndChrome(mocc);
483
 
484
  // User upload
485
- jQuery( ".wppa-file-"+mocc ).css( 'width',w - 16 );
486
-
487
  // User upload responsive covers
488
  jQuery( ".wppa-file-mcr-"+mocc ).css( 'width', MCRWidth - wppaBoxDelta - 6 );
489
-
490
  // Slide
491
  wppaFormatSlide( mocc );
492
-
493
  // Audio on slide
494
  jQuery( "#audio-slide-"+mocc ).css( 'width', w - wppaBoxDelta - 6 );
495
-
496
  // Comments
497
  jQuery( ".wppa-comment-textarea-"+mocc ).css( 'width',w * 0.7 );
498
-
499
  // Filmstrip
500
  wppaFilmStripLength[mocc] = w - wppaFilmStripAreaDelta[mocc];
501
  jQuery( "#filmwindow-"+mocc ).css( 'width',wppaFilmStripLength[mocc] );
502
  _wppaAdjustFilmstrip( mocc ); // reposition content
503
-
504
  // Texts in slideshow and browsebar
505
  if ( ! wppaIsMini[mocc] && typeof( _wppaSlides[mocc] ) != 'undefined' ) { // Mini is properly initialized
506
  if ( wppaColWidth[mocc] < wppaMiniTreshold ) {
@@ -520,12 +520,12 @@ function _wppaDoAutocol( mocc ) {
520
  jQuery( '#counter-'+mocc ).html( wppaPhoto+' '+( _wppaCurIdx[mocc]+1 )+' '+wppaOf+' '+_wppaSlides[mocc].length );
521
  }
522
  }
523
-
524
  // Single photo
525
  jQuery( ".wppa-sphoto-"+mocc ).css( 'width',w );
526
  jQuery( ".wppa-simg-"+mocc ).css( 'width',w - 2*wppaSlideBorderWidth );
527
  jQuery( ".wppa-simg-"+mocc ).css( 'height', '' );
528
-
529
  // Mphoto
530
  jQuery( ".wppa-mphoto-"+mocc ).css( 'width',w + 10 );
531
  jQuery( ".wppa-mimg-"+mocc ).css( 'width',w );
@@ -535,8 +535,8 @@ function _wppaDoAutocol( mocc ) {
535
 
536
  // Fix bug in IE and Chrome
537
  function wppaSetMasHorFrameWidthsForIeAndChrome(mocc) {
538
- // For IE and Chrome there is the class .wppa-mas-h-{mocc}
539
- // Set widths of frames for IE and Chrome. These browsers interprete width:auto
540
  // sometimes not in relation to the specified height, but to the available space.
541
  var frames = jQuery( '.wppa-mas-h-'+mocc );
542
  var tnm = wppaMinThumbSpace;
@@ -611,10 +611,10 @@ function wppaFotomotoHide( mocc ) {
611
 
612
  // Compute fullsize ( slideshow ) url with current photo
613
  function wppaGetCurrentFullUrl( mocc, idx ) {
614
-
615
  var xurl = document.location.href;
616
  var url;
617
-
618
  // Remove &wppa-photo=... if present.
619
  var temp1 = xurl.split( "?" );
620
  var temp2 = 'nil';
@@ -622,7 +622,7 @@ var url;
622
  var i = 0;
623
  var first = true;
624
  var pfx;
625
-
626
  if ( ! wppaShortQargs ) pfx = 'wppa-';
627
  else pfx = '';
628
 
@@ -646,7 +646,7 @@ var url;
646
  }
647
  }
648
  if ( ! albumSeen ) return '';
649
-
650
  // Append new &wppa-photo=...
651
  if ( first ) url += "?";
652
  else url += "&";
@@ -675,7 +675,7 @@ var i=0;
675
  }
676
 
677
  // Setup an event handler for popstate events
678
- window.onpopstate = function( event ) {
679
  var occ = 0;
680
  if ( wppaCanPushState ) {
681
  if ( event.state ) {
@@ -688,7 +688,7 @@ window.onpopstate = function( event ) {
688
  case 'slide':
689
  // Go to specified slide without the didgoto switch to avoid a stackpush here
690
  _wppaGoto( occ, event.state.slide );
691
- break;
692
  }
693
  }
694
  else if ( wppaUpdateAddressLine ) {
@@ -702,7 +702,7 @@ window.onpopstate = function( event ) {
702
  if ( occ == 0 ) { // Find current occur if not yet known
703
  var url = document.location.href;
704
  var urls = url.split( "&wppa-occur=" );
705
- occ = parseInt( urls[1] );
706
  }
707
  var url = document.location.href;
708
  var urls = url.split( "&wppa-photo=" );
@@ -724,7 +724,7 @@ window.onpopstate = function( event ) {
724
  }
725
  if ( typeof( wppaQRUpdate ) != 'undefined' ) wppaQRUpdate( document.location.href );
726
  // wppaQRData = document.location.href; //????
727
- };
728
 
729
  // Push history stack for a slideshow
730
  function wppaPushStateSlide( mocc, slide, url ) {
@@ -751,10 +751,10 @@ var newtext;
751
 
752
  // Just to be sure we do not run into undefined error
753
  if ( typeof( text ) == 'undefined' ) return '';
754
-
755
  temp = text.split( '[script' );
756
  if ( temp.length == 1 ) return text;
757
-
758
  newtext = temp[0];
759
  var idx = 0;
760
  while ( temp.length > idx ) {
@@ -762,9 +762,9 @@ var newtext;
762
  idx++;
763
  newtext += temp[idx];
764
  }
765
-
766
  temp = newtext.split( '[/script' );
767
-
768
  newtext = temp[0];
769
  idx = 0;
770
  while ( temp.length > idx ) {
@@ -772,7 +772,7 @@ var newtext;
772
  idx++;
773
  newtext += temp[idx];
774
  }
775
-
776
  return newtext;
777
  }
778
 
@@ -782,18 +782,18 @@ var newtext;
782
 
783
  // Just to be sure we do not run into undefined error
784
  if ( typeof(text) == 'undefined' ) return '';
785
-
786
  newtext = text.replace( '[br /]', '<br />' );
787
  return newtext;
788
  }
789
 
790
- // Replace text that is too long by ellipses
791
  function wppaTrimAlt( text ) {
792
  var newtext;
793
 
794
  // Just to be sure we do not run into undefined error
795
  if ( typeof(text) == 'undefined' ) return '';
796
-
797
  if ( text.length > 13 ) {
798
  newtext = text.substr( 0,10 ) + '...';
799
  }
@@ -855,7 +855,7 @@ function wppaGeoInit( mocc, lat, lon ) {
855
  mapTypeControl: true,
856
  scaleControl: true,
857
  streetViewControl: true,
858
- overviewMapControl: true,
859
  zoom: 10,
860
  center: myLatLng,
861
  // mapTypeId: google.maps.MapTypeId.TERRAIN,
@@ -870,7 +870,7 @@ function wppaGeoInit( mocc, lat, lon ) {
870
  map: map,
871
  title:""
872
  });
873
-
874
  google.maps.event.addListener( map, "center_changed", function() {
875
  // 1 second after the center of the map has changed, pan back to the
876
  // marker.
@@ -883,9 +883,9 @@ function wppaGeoInit( mocc, lat, lon ) {
883
  // Encode funny chars
884
  function wppaEncode( xtext ) {
885
  var text, result;
886
-
887
  if ( typeof( xtext )=='undefined' ) return;
888
-
889
  text = xtext;
890
  result = text.replace( /#/g, '||HASH||' );
891
  text = result;
@@ -907,7 +907,7 @@ function wppaEncode( xtext ) {
907
  // Compute photo id out of an url
908
  function wppaUrlToId( url ) {
909
  var temp = url.split( '/wppa/' ); // if '/wppa/' found, a wppa image
910
- if ( temp.length == 1 ) {
911
  temp = url.split( '/upload/' ); // if '/upload/' found, a cloudinary image
912
  }
913
  if ( temp.length == 1 ) {
@@ -921,7 +921,7 @@ function wppaUrlToId( url ) {
921
  temp = temp.replace( '/', '' );
922
  temp = temp.replace( '/', '' );
923
  temp = temp.replace( '/', '' );
924
-
925
  return temp;
926
  }
927
 
@@ -945,7 +945,7 @@ function wppaSuperSearchSelect( mocc, go ) {
945
 
946
  jQuery( '#wppa-ss-spinner-'+mocc ).css('display', 'none');
947
  jQuery( '#wppa-ss-button-'+mocc ).css('display', 'none');
948
-
949
  var s1 = jQuery( '#wppa-ss-pa-'+mocc ).val();
950
  var s2 = '';
951
  var s3 = '';
@@ -996,7 +996,7 @@ function wppaSuperSearchSelect( mocc, go ) {
996
  break;
997
  }
998
  break;
999
-
1000
  case 'p':
1001
  jQuery( '#wppa-ss-photoopt-'+mocc ).css('display', '');
1002
  s2 = jQuery( '#wppa-ss-photoopt-'+mocc ).val();
@@ -1026,7 +1026,7 @@ function wppaSuperSearchSelect( mocc, go ) {
1026
  }
1027
  }
1028
  data = data.substr( 1 );
1029
-
1030
  if ( data != '' ) {
1031
  jQuery( '#wppa-ss-button-'+mocc ).css('display', '');
1032
  }
@@ -1094,13 +1094,13 @@ function wppaSuperSearchSelect( mocc, go ) {
1094
  }
1095
  break;
1096
  }
1097
-
1098
  // Find results
1099
  if ( go ) {
1100
  var url = jQuery( '#wppa-ss-pageurl-'+mocc ).val();
1101
  if ( url.indexOf( '?' ) == -1 ) {
1102
  url += '?';
1103
- }
1104
  else {
1105
  url += '&';
1106
  }
@@ -1113,7 +1113,7 @@ function wppaSuperSearchSelect( mocc, go ) {
1113
  // These functions may not be moved to wppa-ajax-front.js because they MUST be loaded in the header!
1114
  function wppaAjaxGetSsIptcList( mocc, s3, selid ) {
1115
 
1116
- jQuery.ajax( { url: wppaAjaxUrl,
1117
  data: 'action=wppa' +
1118
  '&wppa-action=getssiptclist' +
1119
  '&tag=' + s3 +
@@ -1143,7 +1143,7 @@ function wppaAjaxGetSsIptcList( mocc, s3, selid ) {
1143
  // Supersearch function get exif list
1144
  function wppaAjaxGetSsExifList( mocc, s3, selid ) {
1145
 
1146
- jQuery.ajax( { url: wppaAjaxUrl,
1147
  data: 'action=wppa' +
1148
  '&wppa-action=getssexiflist' +
1149
  '&tag=' + s3 +
@@ -1179,5 +1179,68 @@ function wppaSetIptcExifSize( clas, selid ) {
1179
  jQuery( selid ).attr( 'size', n );
1180
  }
1181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1182
  // Say we're in
1183
  wppaConsoleLog( 'wppa.js version '+wppaJsVersion+' loaded.', 'force' );
1
  // wppa.js
2
  //
3
  // conatins common vars and functions
4
+ //
5
+ var wppaJsVersion = '6.3.8';
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!!
107
  var wppaSiteUrl = '';
108
  var wppaWppaUrl = '';
109
  var wppaIncludeUrl = '';
110
+ var wppaSlideToFullpopup = false;
111
  var wppaComAltSize = 75;
112
  var wppaBumpViewCount = true;
113
  var wppaFotomoto = false;
204
  var wppaOvlAudioHtmls;
205
  var wppaOvlAudioHtml;
206
  var wppaOvlVideoNaturalWidths;
207
+ var wppaOvlVideoNaturalWidth;
208
  var wppaOvlVideoNaturalHeights;
209
  var wppaOvlVideoNaturalHeight;
210
  var wppaOvlMode = 'normal';
250
  _wppaDoAutocol( mocc );
251
  anyAutocol = true;
252
  }
253
+ }
254
+
255
  // Misc. init
256
  _wppaTextDelay = wppaAnimationSpeed;
257
  if ( wppaFadeInAfterFadeOut ) _wppaTextDelay *= 2;
258
+
259
  // Install resize handler
260
  if ( anyAutocol ) {
261
  jQuery( window ).resize(function() {
265
  _wppaDoAutocol( mocc );
266
  }
267
  }
268
+ });
269
  }
270
  });
271
 
276
  if ( wppaAllowAjax && jQuery.ajax() ) {
277
  wppaCanAjaxRender = true;
278
  }
279
+
280
  // Can we do history.pushState ?
281
+ if ( typeof( history.pushState ) != 'undefined' ) {
282
+
283
  // Save entire initial page content ( I do not know which container is going to be modified first )
284
  var i=1;
285
  while ( i <= wppaMaxOccur ) {
298
  if ( typeof( wppaInitOverlay ) == 'function' ) {
299
  wppaInitOverlay();
300
  }
301
+
302
  // Lightbox-3
303
  if ( typeof( myLightbox ) != 'undefined' ) {
304
  if ( typeof( myLightbox.updateImageList ) == 'function' ) {
305
+ myLightbox.updateImageList();
306
  }
307
  }
308
+
309
  // PrettyPhoto
310
  if ( jQuery().prettyPhoto ) {
311
+ jQuery( "a[rel^='prettyPhoto']" ).prettyPhoto( {
312
  deeplinking: false,
313
  });
314
  }
317
  // Stop video of a given occurrency
318
  function wppaStopVideo( mocc ) {
319
  var id = [];
320
+ var video;
321
  var i;
322
+
323
  id[1] = 'wppa-overlay-img';
324
  id[2] = 'theimg0-'+mocc;
325
  id[3] = 'theimg1-'+mocc;
326
  i = 0;
327
+
328
  while ( i < 3 ) {
329
  i++;
330
  video = document.getElementById( id[i] );
341
  function wppaStopAudio() {
342
 
343
  var items = jQuery( 'audio' );
344
+
345
  if ( items.length > 0 ) {
346
  var i = 0;
347
  while ( i < items.length ) {
386
  function wppaGetContainerWidth( mocc ) {
387
  var elm = document.getElementById( 'wppa-container-'+mocc );
388
  var w = 0;
389
+
390
  if ( ! wppaAutoColumnWidth[mocc] ) return elm.clientWidth;
391
+
392
  while ( w == 0 ) {
393
  elm = elm.parentNode;
394
  w = jQuery( elm ).width();
399
 
400
  // Do the responsive size adjustment
401
  function _wppaDoAutocol( mocc ) {
402
+
403
  wppaConsoleLog( 'Doing autocol '+mocc );
404
+
405
  if ( ! wppaAutoColumnWidth[mocc] ) return; // Not auto
406
 
407
  var w;
408
  var h;
409
+
410
  // Container
411
  w = wppaGetContainerWidth( mocc );//document.getElementById( 'wppa-container-'+mocc ).parentNode.clientWidth;
412
  wppaColWidth[mocc] = w;
415
  // Covers
416
  jQuery( ".wppa-asym-text-frame-"+mocc ).css( 'width',w - wppaTextFrameDelta );
417
  jQuery( ".wppa-cover-box-"+mocc ).css( 'width',w - wppaBoxDelta );
418
+
419
  // Multi Column Responsive covers
420
  var exists = jQuery( ".wppa-cover-box-mcr-"+mocc );
421
  var MCRWidth;
437
  jQuery( exists[idx] ).css( {'marginLeft': '8px', 'clear': 'none', 'float': 'left'});
438
  }
439
  idx++;
440
+ }
441
  jQuery( ".wppa-asym-text-frame-mcr-"+mocc ).css( 'width',MCRWidth - wppaTextFrameDelta );
442
  jQuery( ".wppa-cover-box-mcr-"+mocc ).css( 'width',MCRWidth - wppaBoxDelta );
443
  }
448
 
449
  // Thumbnail area
450
  jQuery( ".wppa-thumb-area-"+mocc ).css( 'width',w - wppaThumbnailAreaDelta );
451
+
452
  // Thumbframes default
453
  if ( wppaThumbSpaceAuto ) {
454
  var tfw = parseInt( jQuery( ".thumbnail-frame-"+mocc ).css( 'width' ) );
457
  var weff = w - wppaThumbnailAreaDelta - 7;
458
  var nthumbs = parseInt( weff / ( tfw + minspc ) );
459
  var availsp = weff - nthumbs * tfw;
460
+ var newspc = parseInt( 0.5 + availsp / ( nthumbs+1 ) );
461
+
462
  jQuery( ".thumbnail-frame-"+mocc ).css( {marginLeft:newspc});
463
  }
464
  }
465
+
466
  // Comalt thumbmails
467
  jQuery( ".thumbnail-frame-comalt-"+mocc ).css( 'width', w - wppaThumbnailAreaDelta );
468
  jQuery( ".wppa-com-alt-"+mocc ).css( 'width', w - wppaThumbnailAreaDelta - wppaComAltSize - 20 );
469
+
470
  // Masonry thumbnails horizontal
471
  var row = 1;
472
  var rowHeightPix;
477
  row++;
478
  rowHeightPerc = jQuery( '#wppa-mas-h-'+row+'-'+mocc ).attr( 'data-height-perc' );
479
  }
480
+
481
  // Fix bug in ie and chrome
482
  wppaSetMasHorFrameWidthsForIeAndChrome(mocc);
483
 
484
  // User upload
485
+ jQuery( ".wppa-file-"+mocc ).css( 'width',w - 16 );
486
+
487
  // User upload responsive covers
488
  jQuery( ".wppa-file-mcr-"+mocc ).css( 'width', MCRWidth - wppaBoxDelta - 6 );
489
+
490
  // Slide
491
  wppaFormatSlide( mocc );
492
+
493
  // Audio on slide
494
  jQuery( "#audio-slide-"+mocc ).css( 'width', w - wppaBoxDelta - 6 );
495
+
496
  // Comments
497
  jQuery( ".wppa-comment-textarea-"+mocc ).css( 'width',w * 0.7 );
498
+
499
  // Filmstrip
500
  wppaFilmStripLength[mocc] = w - wppaFilmStripAreaDelta[mocc];
501
  jQuery( "#filmwindow-"+mocc ).css( 'width',wppaFilmStripLength[mocc] );
502
  _wppaAdjustFilmstrip( mocc ); // reposition content
503
+
504
  // Texts in slideshow and browsebar
505
  if ( ! wppaIsMini[mocc] && typeof( _wppaSlides[mocc] ) != 'undefined' ) { // Mini is properly initialized
506
  if ( wppaColWidth[mocc] < wppaMiniTreshold ) {
520
  jQuery( '#counter-'+mocc ).html( wppaPhoto+' '+( _wppaCurIdx[mocc]+1 )+' '+wppaOf+' '+_wppaSlides[mocc].length );
521
  }
522
  }
523
+
524
  // Single photo
525
  jQuery( ".wppa-sphoto-"+mocc ).css( 'width',w );
526
  jQuery( ".wppa-simg-"+mocc ).css( 'width',w - 2*wppaSlideBorderWidth );
527
  jQuery( ".wppa-simg-"+mocc ).css( 'height', '' );
528
+
529
  // Mphoto
530
  jQuery( ".wppa-mphoto-"+mocc ).css( 'width',w + 10 );
531
  jQuery( ".wppa-mimg-"+mocc ).css( 'width',w );
535
 
536
  // Fix bug in IE and Chrome
537
  function wppaSetMasHorFrameWidthsForIeAndChrome(mocc) {
538
+ // For IE and Chrome there is the class .wppa-mas-h-{mocc}
539
+ // Set widths of frames for IE and Chrome. These browsers interprete width:auto
540
  // sometimes not in relation to the specified height, but to the available space.
541
  var frames = jQuery( '.wppa-mas-h-'+mocc );
542
  var tnm = wppaMinThumbSpace;
611
 
612
  // Compute fullsize ( slideshow ) url with current photo
613
  function wppaGetCurrentFullUrl( mocc, idx ) {
614
+
615
  var xurl = document.location.href;
616
  var url;
617
+
618
  // Remove &wppa-photo=... if present.
619
  var temp1 = xurl.split( "?" );
620
  var temp2 = 'nil';
622
  var i = 0;
623
  var first = true;
624
  var pfx;
625
+
626
  if ( ! wppaShortQargs ) pfx = 'wppa-';
627
  else pfx = '';
628
 
646
  }
647
  }
648
  if ( ! albumSeen ) return '';
649
+
650
  // Append new &wppa-photo=...
651
  if ( first ) url += "?";
652
  else url += "&";
675
  }
676
 
677
  // Setup an event handler for popstate events
678
+ window.onpopstate = function( event ) {
679
  var occ = 0;
680
  if ( wppaCanPushState ) {
681
  if ( event.state ) {
688
  case 'slide':
689
  // Go to specified slide without the didgoto switch to avoid a stackpush here
690
  _wppaGoto( occ, event.state.slide );
691
+ break;
692
  }
693
  }
694
  else if ( wppaUpdateAddressLine ) {
702
  if ( occ == 0 ) { // Find current occur if not yet known
703
  var url = document.location.href;
704
  var urls = url.split( "&wppa-occur=" );
705
+ occ = parseInt( urls[1] );
706
  }
707
  var url = document.location.href;
708
  var urls = url.split( "&wppa-photo=" );
724
  }
725
  if ( typeof( wppaQRUpdate ) != 'undefined' ) wppaQRUpdate( document.location.href );
726
  // wppaQRData = document.location.href; //????
727
+ };
728
 
729
  // Push history stack for a slideshow
730
  function wppaPushStateSlide( mocc, slide, url ) {
751
 
752
  // Just to be sure we do not run into undefined error
753
  if ( typeof( text ) == 'undefined' ) return '';
754
+
755
  temp = text.split( '[script' );
756
  if ( temp.length == 1 ) return text;
757
+
758
  newtext = temp[0];
759
  var idx = 0;
760
  while ( temp.length > idx ) {
762
  idx++;
763
  newtext += temp[idx];
764
  }
765
+
766
  temp = newtext.split( '[/script' );
767
+
768
  newtext = temp[0];
769
  idx = 0;
770
  while ( temp.length > idx ) {
772
  idx++;
773
  newtext += temp[idx];
774
  }
775
+
776
  return newtext;
777
  }
778
 
782
 
783
  // Just to be sure we do not run into undefined error
784
  if ( typeof(text) == 'undefined' ) return '';
785
+
786
  newtext = text.replace( '[br /]', '<br />' );
787
  return newtext;
788
  }
789
 
790
+ // Replace text that is too long by ellipses
791
  function wppaTrimAlt( text ) {
792
  var newtext;
793
 
794
  // Just to be sure we do not run into undefined error
795
  if ( typeof(text) == 'undefined' ) return '';
796
+
797
  if ( text.length > 13 ) {
798
  newtext = text.substr( 0,10 ) + '...';
799
  }
855
  mapTypeControl: true,
856
  scaleControl: true,
857
  streetViewControl: true,
858
+ overviewMapControl: true,
859
  zoom: 10,
860
  center: myLatLng,
861
  // mapTypeId: google.maps.MapTypeId.TERRAIN,
870
  map: map,
871
  title:""
872
  });
873
+
874
  google.maps.event.addListener( map, "center_changed", function() {
875
  // 1 second after the center of the map has changed, pan back to the
876
  // marker.
883
  // Encode funny chars
884
  function wppaEncode( xtext ) {
885
  var text, result;
886
+
887
  if ( typeof( xtext )=='undefined' ) return;
888
+
889
  text = xtext;
890
  result = text.replace( /#/g, '||HASH||' );
891
  text = result;
907
  // Compute photo id out of an url
908
  function wppaUrlToId( url ) {
909
  var temp = url.split( '/wppa/' ); // if '/wppa/' found, a wppa image
910
+ if ( temp.length == 1 ) {
911
  temp = url.split( '/upload/' ); // if '/upload/' found, a cloudinary image
912
  }
913
  if ( temp.length == 1 ) {
921
  temp = temp.replace( '/', '' );
922
  temp = temp.replace( '/', '' );
923
  temp = temp.replace( '/', '' );
924
+
925
  return temp;
926
  }
927
 
945
 
946
  jQuery( '#wppa-ss-spinner-'+mocc ).css('display', 'none');
947
  jQuery( '#wppa-ss-button-'+mocc ).css('display', 'none');
948
+
949
  var s1 = jQuery( '#wppa-ss-pa-'+mocc ).val();
950
  var s2 = '';
951
  var s3 = '';
996
  break;
997
  }
998
  break;
999
+
1000
  case 'p':
1001
  jQuery( '#wppa-ss-photoopt-'+mocc ).css('display', '');
1002
  s2 = jQuery( '#wppa-ss-photoopt-'+mocc ).val();
1026
  }
1027
  }
1028
  data = data.substr( 1 );
1029
+
1030
  if ( data != '' ) {
1031
  jQuery( '#wppa-ss-button-'+mocc ).css('display', '');
1032
  }
1094
  }
1095
  break;
1096
  }
1097
+
1098
  // Find results
1099
  if ( go ) {
1100
  var url = jQuery( '#wppa-ss-pageurl-'+mocc ).val();
1101
  if ( url.indexOf( '?' ) == -1 ) {
1102
  url += '?';
1103
+ }
1104
  else {
1105
  url += '&';
1106
  }
1113
  // These functions may not be moved to wppa-ajax-front.js because they MUST be loaded in the header!
1114
  function wppaAjaxGetSsIptcList( mocc, s3, selid ) {
1115
 
1116
+ jQuery.ajax( { url: wppaAjaxUrl,
1117
  data: 'action=wppa' +
1118
  '&wppa-action=getssiptclist' +
1119
  '&tag=' + s3 +
1143
  // Supersearch function get exif list
1144
  function wppaAjaxGetSsExifList( mocc, s3, selid ) {
1145
 
1146
+ jQuery.ajax( { url: wppaAjaxUrl,
1147
  data: 'action=wppa' +
1148
  '&wppa-action=getssexiflist' +
1149
  '&tag=' + s3 +
1179
  jQuery( selid ).attr( 'size', n );
1180
  }
1181
 
1182
+ function wppaUpdateSearchRoot( text, root ) {
1183
+ var items = jQuery( ".wppa-search-root" );
1184
+ var i = 0;
1185
+ while ( i < items.length ) {
1186
+ jQuery( items[i] ).html( text );
1187
+ i++;
1188
+ }
1189
+ items = jQuery( ".wppa-rootbox" );
1190
+ i = 0;
1191
+ while ( i < items.length ) {
1192
+ if ( root ) {
1193
+ jQuery( items[i] ).removeAttr( 'checked' );
1194
+ jQuery( items[i] ).removeAttr( 'disabled' );
1195
+ }
1196
+ else {
1197
+ jQuery( items[i] ).attr( 'checked', 'checked' );
1198
+ jQuery( items[i] ).attr( 'disabled', 'disabled' );
1199
+ }
1200
+ i++;
1201
+ }
1202
+ items = jQuery( ".wppa-search-root-id" );
1203
+ i = 0;
1204
+ while ( i < items.length ) {
1205
+ jQuery( items[i] ).attr( 'value', root );
1206
+ i++;
1207
+ }
1208
+ }
1209
+
1210
+ function wppaSubboxChange( elm ) {
1211
+ if ( jQuery( elm ).attr( 'checked' ) == 'checked' ) {
1212
+ var items = jQuery( ".wppa-rootbox" );
1213
+ var i = 0;
1214
+ while ( i < items.length ) {
1215
+ jQuery( items[i] ).attr( 'checked', 'checked' );
1216
+ i++;
1217
+ }
1218
+ }
1219
+ }
1220
+
1221
+ function wppaClearSubsearch() {
1222
+ var items = jQuery( ".wppa-display-searchstring" );
1223
+ var i = 0;
1224
+ while ( i < items.length ) {
1225
+ jQuery( items[i] ).html( '' );
1226
+ i++;
1227
+ }
1228
+ items = jQuery( ".wppa-search-sub-box" );
1229
+ i = 0;
1230
+ while ( i < items.length ) {
1231
+ jQuery( items[i] ).attr( 'disabled', 'disabled' );
1232
+ i++;
1233
+ }
1234
+ }
1235
+
1236
+ function wppaEnableSubsearch() {
1237
+ var items = jQuery( ".wppa-search-sub-box" );
1238
+ var i = 0;
1239
+ while ( i < items.length ) {
1240
+ jQuery( items[i] ).removeAttr( 'disabled' );
1241
+ i++;
1242
+ }
1243
+ }
1244
+
1245
  // Say we're in
1246
  wppaConsoleLog( 'wppa.js version '+wppaJsVersion+' loaded.', 'force' );
js/wppa.min.js CHANGED
@@ -1,9 +1,9 @@
1
  // wppa.js
2
  //
3
  // conatins common vars and functions
4
- //
5
 
6
- var wppaJsVersion='6.3.2';var wppaVersion='0';var wppaDebug=false;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 wppaShowDislikeCount=false;var wppaNoDislikes='no dislikes';var wppa1Dislike='1 dislike';var wppaDislikes='dislikes';var wppaIncludingMine='including mine';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=true;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 wppaSsIconType='.jpg';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 __wppaOverruleRun=false;var wppaOvlUrls;var wppaOvlUrl;var wppaOvlTitles;var wppaOvlTitle;var wppaOvlIdx=-1;var wppaOvlFirst=true;var wppaOvlKbHandler='';var wppaOvlSizeHandler='';var wppaOvlPadTop=5;var wppaOvlIsSingle;var wppaOvlRunning=false;var wppaOvlVideoHtmls;var wppaOvlVideoHtml;var wppaOvlAudioHtmls;var wppaOvlAudioHtml;var wppaOvlVideoNaturalWidths;var wppaOvlVideoNaturalWidth;var wppaOvlVideoNaturalHeights;var wppaOvlVideoNaturalHeight;var wppaOvlMode='normal';var wppaOvlVideoPlaying=false;var wppaOvlAudioPlaying=false;var wppaOvlShowLegenda=true;var wppaOvlShowStartStop=true;var wppaOvlCloseTxt='CLOSE';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='';jQuery(document).ready(function(){var anyAutocol=false;for(mocc=1;mocc<=wppaTopMoc;mocc++){if(wppaAutoColumnWidth[mocc]){wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);anyAutocol=true;}}
7
  _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);}}});}});jQuery(document).ready(function(e){if(wppaAllowAjax&&jQuery.ajax()){wppaCanAjaxRender=true;}
8
  if(typeof(history.pushState)!='undefined'){var i=1;while(i<=wppaMaxOccur){wppaStartHtml[i]=jQuery('#wppa-container-'+i).html();i++;}
9
  wppaCanPushState=true;}});function wppaUpdateLightboxes(){if(typeof(wppaInitOverlay)=='function'){wppaInitOverlay();}
@@ -100,4 +100,13 @@ url+='occur=1&wppa-supersearch='+s1+','+s2+','+s3+','+data;document.location.hre
100
  function wppaAjaxGetSsIptcList(mocc,s3,selid){jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=getssiptclist'+'&tag='+s3+'&moccur='+mocc,async:true,type:'GET',timeout:10000,beforeSend:function(xhr){jQuery('#wppa-ss-spinner-'+mocc).css('display','');},success:function(result,status,xhr){jQuery('#'+selid).html(result);jQuery('#wppa-ss-iptcopts-'+mocc).css('display','');wppaSuperSearchSelect(mocc);setTimeout('wppaSetIptcExifSize( ".wppa-iptclist-'+mocc+'", "#'+selid+'" )',10);},error:function(xhr,status,error){wppaConsoleLog('wppaAjaxGetSsIptcList failed. Error = '+error+', status = '+status,'force');},complete:function(xhr,status,newurl){jQuery('#wppa-ss-spinner-'+mocc).css('display','none');}});}
101
  function wppaAjaxGetSsExifList(mocc,s3,selid){jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=getssexiflist'+'&tag='+s3+'&moccur='+mocc,async:true,type:'GET',timeout:10000,beforeSend:function(xhr){jQuery('#wppa-ss-spinner-'+mocc).css('display','');},success:function(result,status,xhr){jQuery('#'+selid).html(result);jQuery('#wppa-ss-exifopts-'+mocc).css('display','');wppaSuperSearchSelect(mocc);setTimeout('wppaSetIptcExifSize( ".wppa-exiflist-'+mocc+'", "#'+selid+'" )',10);},error:function(xhr,status,error){wppaConsoleLog('wppaAjaxGetSsExifList failed. Error = '+error+', status = '+status,'force');},complete:function(xhr,status,newurl){jQuery('#wppa-ss-spinner-'+mocc).css('display','none');}});}
102
  function wppaSetIptcExifSize(clas,selid){var t=jQuery(clas);var n=t.length;if(n>6)n=6;if(n<2)n=2;jQuery(selid).attr('size',n);}
 
 
 
 
 
 
 
 
 
103
  wppaConsoleLog('wppa.js version '+wppaJsVersion+' loaded.','force');
1
  // wppa.js
2
  //
3
  // conatins common vars and functions
4
+ //
5
 
6
+ var wppaJsVersion='6.3.8';var wppaVersion='0';var wppaDebug=false;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 wppaShowDislikeCount=false;var wppaNoDislikes='no dislikes';var wppa1Dislike='1 dislike';var wppaDislikes='dislikes';var wppaIncludingMine='including mine';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=true;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 wppaSsIconType='.jpg';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 __wppaOverruleRun=false;var wppaOvlUrls;var wppaOvlUrl;var wppaOvlTitles;var wppaOvlTitle;var wppaOvlIdx=-1;var wppaOvlFirst=true;var wppaOvlKbHandler='';var wppaOvlSizeHandler='';var wppaOvlPadTop=5;var wppaOvlIsSingle;var wppaOvlRunning=false;var wppaOvlVideoHtmls;var wppaOvlVideoHtml;var wppaOvlAudioHtmls;var wppaOvlAudioHtml;var wppaOvlVideoNaturalWidths;var wppaOvlVideoNaturalWidth;var wppaOvlVideoNaturalHeights;var wppaOvlVideoNaturalHeight;var wppaOvlMode='normal';var wppaOvlVideoPlaying=false;var wppaOvlAudioPlaying=false;var wppaOvlShowLegenda=true;var wppaOvlShowStartStop=true;var wppaOvlCloseTxt='CLOSE';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='';jQuery(document).ready(function(){var anyAutocol=false;for(mocc=1;mocc<=wppaTopMoc;mocc++){if(wppaAutoColumnWidth[mocc]){wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);anyAutocol=true;}}
7
  _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);}}});}});jQuery(document).ready(function(e){if(wppaAllowAjax&&jQuery.ajax()){wppaCanAjaxRender=true;}
8
  if(typeof(history.pushState)!='undefined'){var i=1;while(i<=wppaMaxOccur){wppaStartHtml[i]=jQuery('#wppa-container-'+i).html();i++;}
9
  wppaCanPushState=true;}});function wppaUpdateLightboxes(){if(typeof(wppaInitOverlay)=='function'){wppaInitOverlay();}
100
  function wppaAjaxGetSsIptcList(mocc,s3,selid){jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=getssiptclist'+'&tag='+s3+'&moccur='+mocc,async:true,type:'GET',timeout:10000,beforeSend:function(xhr){jQuery('#wppa-ss-spinner-'+mocc).css('display','');},success:function(result,status,xhr){jQuery('#'+selid).html(result);jQuery('#wppa-ss-iptcopts-'+mocc).css('display','');wppaSuperSearchSelect(mocc);setTimeout('wppaSetIptcExifSize( ".wppa-iptclist-'+mocc+'", "#'+selid+'" )',10);},error:function(xhr,status,error){wppaConsoleLog('wppaAjaxGetSsIptcList failed. Error = '+error+', status = '+status,'force');},complete:function(xhr,status,newurl){jQuery('#wppa-ss-spinner-'+mocc).css('display','none');}});}
101
  function wppaAjaxGetSsExifList(mocc,s3,selid){jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=getssexiflist'+'&tag='+s3+'&moccur='+mocc,async:true,type:'GET',timeout:10000,beforeSend:function(xhr){jQuery('#wppa-ss-spinner-'+mocc).css('display','');},success:function(result,status,xhr){jQuery('#'+selid).html(result);jQuery('#wppa-ss-exifopts-'+mocc).css('display','');wppaSuperSearchSelect(mocc);setTimeout('wppaSetIptcExifSize( ".wppa-exiflist-'+mocc+'", "#'+selid+'" )',10);},error:function(xhr,status,error){wppaConsoleLog('wppaAjaxGetSsExifList failed. Error = '+error+', status = '+status,'force');},complete:function(xhr,status,newurl){jQuery('#wppa-ss-spinner-'+mocc).css('display','none');}});}
102
  function wppaSetIptcExifSize(clas,selid){var t=jQuery(clas);var n=t.length;if(n>6)n=6;if(n<2)n=2;jQuery(selid).attr('size',n);}
103
+ function wppaUpdateSearchRoot(text,root){var items=jQuery(".wppa-search-root");var i=0;while(i<items.length){jQuery(items[i]).html(text);i++;}
104
+ items=jQuery(".wppa-rootbox");i=0;while(i<items.length){if(root){jQuery(items[i]).removeAttr('checked');jQuery(items[i]).removeAttr('disabled');}
105
+ else{jQuery(items[i]).attr('checked','checked');jQuery(items[i]).attr('disabled','disabled');}
106
+ i++;}
107
+ items=jQuery(".wppa-search-root-id");i=0;while(i<items.length){jQuery(items[i]).attr('value',root);i++;}}
108
+ function wppaSubboxChange(elm){if(jQuery(elm).attr('checked')=='checked'){var items=jQuery(".wppa-rootbox");var i=0;while(i<items.length){jQuery(items[i]).attr('checked','checked');i++;}}}
109
+ function wppaClearSubsearch(){var items=jQuery(".wppa-display-searchstring");var i=0;while(i<items.length){jQuery(items[i]).html('');i++;}
110
+ items=jQuery(".wppa-search-sub-box");i=0;while(i<items.length){jQuery(items[i]).attr('disabled','disabled');i++;}}
111
+ function wppaEnableSubsearch(){var items=jQuery(".wppa-search-sub-box");var i=0;while(i<items.length){jQuery(items[i]).removeAttr('disabled');i++;}}
112
  wppaConsoleLog('wppa.js version '+wppaJsVersion+' loaded.','force');
languages/wp-photo-album-plus-cs_CZ.mo CHANGED
Binary file
languages/wp-photo-album-plus-cs_CZ.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-09-25 13:51+0200\n"
5
- "PO-Revision-Date: 2015-09-25 13:51+0200\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: cs_CZ\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.4\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: wppa.php\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -31,7 +31,7 @@ msgstr "Strana:"
31
  #: wppa-album-admin-autosave.php:1445 wppa-album-admin-autosave.php:1519
32
  #: wppa-album-admin-autosave.php:1629 wppa-comment-admin.php:311
33
  #: wppa-comment-admin.php:380 wppa-comment-admin.php:398
34
- #: wppa-functions.php:1910 wppa-thumbnails.php:596
35
  msgid "Edit"
36
  msgstr "Upravit"
37
 
@@ -39,8 +39,8 @@ msgstr "Upravit"
39
  msgid "Warning. No page defined for search results!"
40
  msgstr ""
41
 
42
- #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:175
43
- #: wppa-settings-autosave.php:399 wppa-settings-autosave.php:2990
44
  #, fuzzy
45
  msgid "Search"
46
  msgstr "Výsledek vyhledávání fotek"
@@ -89,18 +89,18 @@ msgstr ""
89
  msgid "Settings file not found"
90
  msgstr ""
91
 
92
- #: wppa-admin-functions.php:206 wppa-admin-functions.php:210 wppa-ajax.php:2228
93
- #: wppa-ajax.php:2235
94
  msgid "Please supply a numeric value greater than or equal to"
95
  msgstr ""
96
 
97
- #: wppa-admin-functions.php:206 wppa-admin-functions.php:210 wppa-ajax.php:2228
98
- #: wppa-ajax.php:2235
99
  #, fuzzy
100
  msgid "for"
101
  msgstr "nebo"
102
 
103
- #: wppa-admin-functions.php:210 wppa-ajax.php:2235
104
  msgid "and less than or equal to"
105
  msgstr ""
106
 
@@ -240,7 +240,7 @@ msgstr "Fotoalba"
240
  msgid "Album Admin"
241
  msgstr "Administrace alb"
242
 
243
- #: wppa-admin.php:58 wppa-adminbar.php:47 wppa-upload-widget.php:75
244
  #: wppa-upload.php:88
245
  msgid "Upload Photos"
246
  msgstr "Nahrát fotky"
@@ -271,7 +271,7 @@ msgid "Photo of the day Widget"
271
  msgstr "Foto dne"
272
 
273
  #: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:61
274
- #: wppa-setup.php:1349
275
  msgid "Photo of the day"
276
  msgstr "Foto dne"
277
 
@@ -280,9 +280,9 @@ msgstr "Foto dne"
280
  msgid "Manage comments"
281
  msgstr "%d komentáře/ů"
282
 
283
- #: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:389
284
- #: wppa-settings-autosave.php:2819 wppa-settings-autosave.php:7489
285
- #: wppa-settings-autosave.php:7534
286
  msgid "Comments"
287
  msgstr "Komentáře"
288
 
@@ -308,7 +308,7 @@ msgstr ""
308
  msgid "Import"
309
  msgstr "Importovat fotky"
310
 
311
- #: wppa-admin.php:121 wppa-settings-autosave.php:8528
312
  #, fuzzy
313
  msgid "Update"
314
  msgstr "Album:"
@@ -339,8 +339,8 @@ msgstr ""
339
  msgid "Exit & Refresh"
340
  msgstr "Ukončit a obnovit"
341
 
342
- #: wppa-ajax.php:171 wppa-ajax.php:228 wppa-ajax.php:251 wppa-ajax.php:456
343
- #: wppa-ajax.php:717
344
  msgid "Security check failure"
345
  msgstr ""
346
 
@@ -377,7 +377,7 @@ msgstr "Komentář upraven"
377
  msgid "Could not remove comment"
378
  msgstr "Nelze vložit do databáze."
379
 
380
- #: wppa-ajax.php:264 wppa-ajax.php:589
381
  msgid "Unexpected error"
382
  msgstr ""
383
 
@@ -389,7 +389,7 @@ msgstr ""
389
  msgid "The album is empty"
390
  msgstr ""
391
 
392
- #: wppa-ajax.php:291 wppa-ajax.php:419
393
  msgid "Unable to create zip archive"
394
  msgstr ""
395
 
@@ -398,78 +398,78 @@ msgstr ""
398
  msgid "Unable to create zip archive. code = %s"
399
  msgstr ""
400
 
401
- #: wppa-ajax.php:331
402
  #, php-format
403
  msgid "Only %s out of %s photos could be added to the zipfile"
404
  msgstr ""
405
 
406
- #: wppa-ajax.php:360
407
  msgid "Unknown source of request"
408
  msgstr ""
409
 
410
- #: wppa-ajax.php:378
411
  msgid "Empty filename"
412
  msgstr ""
413
 
414
- #: wppa-ajax.php:405
415
  msgid "Unable to create tempdir"
416
  msgstr ""
417
 
418
- #: wppa-ajax.php:429
419
  #, fuzzy
420
  msgid "Unknown type"
421
  msgstr "neznámý/á"
422
 
423
- #: wppa-ajax.php:438
424
  msgid "The photo does no longer exist"
425
  msgstr ""
426
 
427
- #: wppa-ajax.php:470
428
  msgid "An error occurred while processing you rating request."
429
  msgstr ""
430
 
431
- #: wppa-ajax.php:471
432
  msgid "Maybe you opened the page too long ago to recognize you."
433
  msgstr ""
434
 
435
- #: wppa-ajax.php:472
436
  msgid "You may refresh the page and try again."
437
  msgstr ""
438
 
439
- #: wppa-ajax.php:473
440
  msgid ""
441
  "Althoug an error occurred while processing your rating, your vote has been "
442
  "registered."
443
  msgstr ""
444
 
445
- #: wppa-ajax.php:474
446
  msgid "However, this may not be reflected in the current pageview"
447
  msgstr ""
448
 
449
- #: wppa-ajax.php:496
450
  #, fuzzy
451
  msgid "Photo has been removed."
452
  msgstr "Fotka %s byla odebrána."
453
 
454
- #: wppa-ajax.php:505
455
  msgid "Sorry, you can not rate your own photos"
456
  msgstr ""
457
 
458
- #: wppa-ajax.php:517
459
  #, fuzzy
460
  msgid "Please enter a comment."
461
  msgstr "Zadejte komentář"
462
 
463
- #: wppa-ajax.php:542
464
  msgid "Security check failure."
465
  msgstr ""
466
 
467
- #: wppa-ajax.php:554 wppa-ajax.php:570
468
  #, fuzzy
469
  msgid "Photo rated"
470
  msgstr "Foto dne"
471
 
472
- #: wppa-ajax.php:669
473
  msgid ""
474
  "Please explain your vote in a comment.\n"
475
  "Your vote will be discarded if you don't.\n"
@@ -479,784 +479,779 @@ msgid ""
479
  "your vote became effective."
480
  msgstr ""
481
 
482
- #: wppa-ajax.php:713
483
  msgid "You do not have the rights to delete a photo"
484
  msgstr ""
485
 
486
- #: wppa-ajax.php:723
487
  #, fuzzy, php-format
488
  msgid "Photo %s has been deleted"
489
  msgstr "Fotka %s byla odebrána."
490
 
491
- #: wppa-ajax.php:739
492
  msgid "You do not have the rights to update album information"
493
  msgstr ""
494
 
495
- #: wppa-ajax.php:751
496
  msgid "<b>Ratings cleared</b>"
497
  msgstr ""
498
 
499
- #: wppa-ajax.php:751 wppa-ajax.php:757 wppa-photo-admin-autosave.php:310
500
  msgid "No ratings for this photo."
501
  msgstr ""
502
 
503
- #: wppa-ajax.php:754
504
  msgid "An error occurred while clearing ratings"
505
  msgstr ""
506
 
507
- #: wppa-ajax.php:757 wppa-ajax.php:778 wppa-ajax.php:800
508
  msgid "<b>No photos in this album</b>"
509
  msgstr ""
510
 
511
- #: wppa-ajax.php:772
512
  msgid "<b>Tags set to defaults</b> (reload)"
513
  msgstr ""
514
 
515
- #: wppa-ajax.php:775
516
  msgid "An error occurred while setting tags"
517
  msgstr ""
518
 
519
- #: wppa-ajax.php:794
520
  msgid "<b>Tags added width defaults</b> (reload)"
521
  msgstr ""
522
 
523
- #: wppa-ajax.php:797
524
  msgid "An error occurred while adding tags"
525
  msgstr ""
526
 
527
- #: wppa-ajax.php:809
528
  #, php-format
529
  msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
530
  msgstr ""
531
 
532
- #: wppa-ajax.php:811 wppa-ajax.php:1211 wppa-album-admin-autosave.php:335
533
  #: wppa-album-admin-autosave.php:392 wppa-album-admin-autosave.php:988
534
  #: wppa-album-admin-autosave.php:1125 wppa-album-admin-autosave.php:1297
535
- #: wppa-album-admin-autosave.php:1392 wppa-boxes-html.php:393
536
- #: wppa-boxes-html.php:507 wppa-photo-admin-autosave.php:1295
537
- #: wppa-photo-admin-autosave.php:1414 wppa-settings-autosave.php:455
538
- #: wppa-settings-autosave.php:608 wppa-settings-autosave.php:630
539
- #: wppa-settings-autosave.php:1330 wppa-settings-autosave.php:1351
540
- #: wppa-settings-autosave.php:2716 wppa-settings-autosave.php:2737
541
- #: wppa-settings-autosave.php:3035 wppa-settings-autosave.php:3059
542
- #: wppa-settings-autosave.php:3519 wppa-settings-autosave.php:3633
543
- #: wppa-settings-autosave.php:4201 wppa-settings-autosave.php:4222
544
- #: wppa-settings-autosave.php:4398 wppa-settings-autosave.php:4422
545
- #: wppa-settings-autosave.php:5421 wppa-settings-autosave.php:5929
546
- #: wppa-settings-autosave.php:5951 wppa-settings-autosave.php:6531
547
- #: wppa-settings-autosave.php:6555 wppa-settings-autosave.php:7483
548
- #: wppa-settings-autosave.php:8086 wppa-settings-autosave.php:8242
549
  #: wppa-thumbnail-widget.php:204 wppa-upload.php:166
550
  msgid "Name"
551
  msgstr ""
552
 
553
- #: wppa-ajax.php:814 wppa-ajax.php:1214 wppa-album-admin-autosave.php:998
554
  #: wppa-album-admin-autosave.php:1135 wppa-album-admin-autosave.php:1307
555
- #: wppa-album-admin-autosave.php:1402 wppa-photo-admin-autosave.php:1296
556
- #: wppa-photo-admin-autosave.php:1415 wppa-settings-autosave.php:456
557
- #: wppa-settings-autosave.php:609 wppa-settings-autosave.php:631
558
- #: wppa-settings-autosave.php:1331 wppa-settings-autosave.php:1352
559
- #: wppa-settings-autosave.php:2717 wppa-settings-autosave.php:2738
560
- #: wppa-settings-autosave.php:3036 wppa-settings-autosave.php:3060
561
- #: wppa-settings-autosave.php:4202 wppa-settings-autosave.php:4223
562
- #: wppa-settings-autosave.php:4399 wppa-settings-autosave.php:4423
563
- #: wppa-settings-autosave.php:5422 wppa-settings-autosave.php:5930
564
- #: wppa-settings-autosave.php:5952 wppa-settings-autosave.php:6532
565
- #: wppa-settings-autosave.php:6556 wppa-settings-autosave.php:8087
566
- #: wppa-settings-autosave.php:8109 wppa-settings-autosave.php:8149
567
- #: wppa-settings-autosave.php:8171 wppa-settings-autosave.php:8217
568
- #: wppa-settings-autosave.php:8243 wppa-widget-admin.php:195
569
  #, fuzzy
570
  msgid "Description"
571
  msgstr "Zadat/upravit popis fotky"
572
 
573
- #: wppa-ajax.php:818
574
  #, fuzzy
575
  msgid "Unbalanced tags in album description!"
576
  msgstr "Zadat/upravit popis fotky"
577
 
578
- #: wppa-ajax.php:825
579
  msgid "Album order #"
580
  msgstr ""
581
 
582
- #: wppa-ajax.php:828
583
  #, fuzzy
584
  msgid "Cover photo"
585
  msgstr "Prohlédnout fotky"
586
 
587
- #: wppa-ajax.php:831
588
  #, fuzzy
589
  msgid "Parent album"
590
  msgstr "Album:"
591
 
592
- #: wppa-ajax.php:836 wppa-settings-autosave.php:3513
593
  #, fuzzy
594
  msgid "Photo order"
595
  msgstr "Foto dne"
596
 
597
- #: wppa-ajax.php:839
598
  msgid "Use Alt thumbsize"
599
  msgstr ""
600
 
601
- #: wppa-ajax.php:842
602
  msgid "Cover Type"
603
  msgstr ""
604
 
605
- #: wppa-ajax.php:845 wppa-settings-autosave.php:4424
606
- #: wppa-settings-autosave.php:5423
607
  #, fuzzy
608
  msgid "Link type"
609
  msgstr "Odkaz na"
610
 
611
- #: wppa-ajax.php:848 wppa-album-covers.php:1098
612
  msgid "Link to"
613
  msgstr "Odkaz na"
614
 
615
- #: wppa-ajax.php:851 wppa-ajax.php:1235 wppa-album-admin-autosave.php:1009
616
  #: wppa-album-admin-autosave.php:1146 wppa-album-admin-autosave.php:1318
617
- #: wppa-album-admin-autosave.php:1413 wppa-boxes-html.php:515
618
- #: wppa-photo-admin-autosave.php:1298 wppa-photo-admin-autosave.php:1417
619
  #: wppa-widget-admin.php:196
620
  msgid "Owner"
621
  msgstr ""
622
 
623
- #: wppa-ajax.php:853
624
  #, php-format
625
  msgid "User %s does not exist"
626
  msgstr ""
627
 
628
- #: wppa-ajax.php:858 wppa-ajax.php:864
629
  #, fuzzy
630
  msgid "Upload limit count"
631
  msgstr "Nahrát fotku"
632
 
633
- #: wppa-ajax.php:871
634
  #, fuzzy
635
  msgid "Upload limit time"
636
  msgstr "Nahraný súbor nie je obraz"
637
 
638
- #: wppa-ajax.php:875
639
  msgid "Default tags"
640
  msgstr ""
641
 
642
- #: wppa-ajax.php:880
643
  msgid "Categories"
644
  msgstr ""
645
 
646
- #: wppa-ajax.php:883
647
  msgid "Sub albums sort order"
648
  msgstr ""
649
 
650
- #: wppa-ajax.php:891 wppa-ajax.php:1304
651
  msgid "Schedule date/time"
652
  msgstr ""
653
 
654
- #: wppa-ajax.php:904 wppa-ajax.php:930
655
  #, php-format
656
  msgid "<b>%s</b> of album %s updated"
657
  msgstr ""
658
 
659
- #: wppa-ajax.php:912
660
  msgid "All photos set to scheduled per date"
661
  msgstr ""
662
 
663
- #: wppa-ajax.php:939
664
  #, php-format
665
  msgid "An error occurred while trying to update <b>%s</b> of album %s"
666
  msgstr ""
667
 
668
- #: wppa-ajax.php:940 wppa-ajax.php:1189 wppa-ajax.php:1294
669
  msgid "Press CTRL+F5 and try again."
670
  msgstr ""
671
 
672
- #: wppa-ajax.php:954
673
  msgid "You do not have the rights to update comment status"
674
  msgstr ""
675
 
676
- #: wppa-ajax.php:963
677
  #, php-format
678
  msgid "Status of comment #%s updated"
679
  msgstr ""
680
 
681
- #: wppa-ajax.php:966
682
  #, php-format
683
  msgid "Error updating status comment #%s"
684
  msgstr ""
685
 
686
- #: wppa-ajax.php:977
687
  msgid "You do not have the rights to change photos"
688
  msgstr ""
689
 
690
- #: wppa-ajax.php:986
691
  msgid "Watermark applied"
692
  msgstr ""
693
 
694
- #: wppa-ajax.php:990
695
  msgid "An error occured while trying to apply a watermark"
696
  msgstr ""
697
 
698
- #: wppa-ajax.php:1003
699
  msgid "You do not have the rights to update photo information"
700
  msgstr ""
701
 
702
- #: wppa-ajax.php:1009
703
  #, php-format
704
  msgid "%s updated to %s."
705
  msgstr ""
706
 
707
- #: wppa-ajax.php:1059
708
  #, php-format
709
  msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
710
  msgstr ""
711
 
712
- #: wppa-ajax.php:1063
713
  msgid "Exif date/time updated"
714
  msgstr ""
715
 
716
- #: wppa-ajax.php:1069
717
  msgid "Enter a value > -90 and < 90"
718
  msgstr ""
719
 
720
- #: wppa-ajax.php:1077
721
  msgid "Lattitude updated"
722
  msgstr ""
723
 
724
- #: wppa-ajax.php:1079
725
  #, fuzzy
726
  msgid "Could not update lattitude"
727
  msgstr "Nelze vložit do databáze."
728
 
729
- #: wppa-ajax.php:1085
730
  msgid "Enter a value > -180 and < 180"
731
  msgstr ""
732
 
733
- #: wppa-ajax.php:1093
734
  msgid "Longitude updated"
735
  msgstr ""
736
 
737
- #: wppa-ajax.php:1095
738
  #, fuzzy
739
  msgid "Could not update longitude"
740
  msgstr "Nelze vložit do databáze."
741
 
742
- #: wppa-ajax.php:1103
743
  #, fuzzy
744
  msgid "Photo files remade"
745
  msgstr "Foto dne"
746
 
747
- #: wppa-ajax.php:1106
748
  #, fuzzy
749
  msgid "Could not remake files"
750
  msgstr "Nelze vložit do databáze."
751
 
752
- #: wppa-ajax.php:1112
753
  #, fuzzy
754
  msgid "Thumbnail remade"
755
  msgstr "Stránka s náhledy"
756
 
757
- #: wppa-ajax.php:1115
758
  #, fuzzy
759
  msgid "Could not remake thumbnail"
760
  msgstr "Nelze vložit do databáze."
761
 
762
- #: wppa-ajax.php:1125 wppa-photo-admin-autosave.php:182
763
- #: wppa-settings-autosave.php:3329 wppa-tinymce-scripts.php:289
764
- #: wppa-tinymce-shortcodes.php:518 wppa-widget-admin.php:77
765
  msgid "left"
766
  msgstr ""
767
 
768
- #: wppa-ajax.php:1129 wppa-photo-admin-autosave.php:184
769
  msgid "180&deg;"
770
  msgstr ""
771
 
772
- #: wppa-ajax.php:1133 wppa-photo-admin-autosave.php:186
773
- #: wppa-settings-autosave.php:3329 wppa-tinymce-scripts.php:291
774
- #: wppa-tinymce-shortcodes.php:520 wppa-widget-admin.php:79
775
  msgid "right"
776
  msgstr ""
777
 
778
- #: wppa-ajax.php:1141
779
  #, fuzzy, php-format
780
  msgid "Photo %s rotated %s"
781
  msgstr "Fotka %s %s"
782
 
783
- #: wppa-ajax.php:1144
784
  #, php-format
785
  msgid "An error occurred while trying to rotate photo %s"
786
  msgstr ""
787
 
788
- #: wppa-ajax.php:1154 wppa-ajax.php:1177 wppa-photo-admin-autosave.php:1032
789
- #: wppa-photo-admin-autosave.php:1050
790
  #, fuzzy, php-format
791
  msgid "A photo with filename %s already exists in album %s."
792
  msgstr "Uživatel %s nahrál fotku %s do alba %s"
793
 
794
- #: wppa-ajax.php:1164
795
  #, fuzzy, php-format
796
  msgid "Photo %s has been moved to album %s (%s)"
797
  msgstr "Fotka %s byla odebrána."
798
 
799
- #: wppa-ajax.php:1167
800
  #, php-format
801
  msgid "An error occurred while trying to move photo %s"
802
  msgstr ""
803
 
804
- #: wppa-ajax.php:1185
805
  #, php-format
806
  msgid "Photo %s copied to album %s (%s)"
807
  msgstr ""
808
 
809
- #: wppa-ajax.php:1188
810
  #, php-format
811
  msgid "An error occurred while trying to copy photo %s"
812
  msgstr ""
813
 
814
- #: wppa-ajax.php:1218 wppa-ajax.php:1756
815
  #, fuzzy
816
  msgid "Unbalanced tags in photo description!"
817
  msgstr "Zadat/upravit popis fotky"
818
 
819
- #: wppa-ajax.php:1224
820
  #, fuzzy
821
  msgid "Photo order #"
822
  msgstr "Foto dne"
823
 
824
- #: wppa-ajax.php:1229
825
  #, php-format
826
  msgid "User %s does not exists"
827
  msgstr ""
828
 
829
- #: wppa-ajax.php:1238
830
  #, fuzzy
831
  msgid "Link url"
832
  msgstr "Odkaz na"
833
 
834
- #: wppa-ajax.php:1241
835
  #, fuzzy
836
  msgid "Link title"
837
  msgstr "Odkaz na"
838
 
839
- #: wppa-ajax.php:1244
840
  #, fuzzy
841
  msgid "Link target"
842
  msgstr "Odkaz na"
843
 
844
- #: wppa-ajax.php:1250 wppa-multitag-widget.php:35 wppa-multitag-widget.php:65
845
- #: wppa-tagcloud-widget.php:35 wppa-tagcloud-widget.php:62
846
  #, fuzzy
847
  msgid "Photo Tags"
848
  msgstr "Foto"
849
 
850
- #: wppa-ajax.php:1255 wppa-comment-admin.php:310 wppa-comment-admin.php:397
851
- #: wppa-photo-admin-autosave.php:1297 wppa-photo-admin-autosave.php:1416
852
- #: wppa-settings-autosave.php:5955 wppa-settings-autosave.php:6535
853
- #: wppa-settings-autosave.php:8110 wppa-settings-autosave.php:8150
854
- #: wppa-settings-autosave.php:8172 wppa-settings-autosave.php:8218
855
  msgid "Status"
856
  msgstr ""
857
 
858
- #: wppa-ajax.php:1258
859
  msgid "HTML Alt"
860
  msgstr ""
861
 
862
- #: wppa-ajax.php:1262
863
  msgid "Video width"
864
  msgstr ""
865
 
866
- #: wppa-ajax.php:1264 wppa-ajax.php:1271
867
  #, fuzzy
868
  msgid "Please enter an integer value >= 0"
869
  msgstr "Zadejte komentář"
870
 
871
- #: wppa-ajax.php:1269
872
  msgid "Video height"
873
  msgstr ""
874
 
875
- #: wppa-ajax.php:1286 wppa-ajax.php:1320
876
  #, php-format
877
  msgid "<b>%s</b> of video %s updated"
878
  msgstr ""
879
 
880
- #: wppa-ajax.php:1289 wppa-ajax.php:1323
881
  #, php-format
882
  msgid "<b>%s</b> of photo %s updated"
883
  msgstr ""
884
 
885
- #: wppa-ajax.php:1293
886
  #, php-format
887
  msgid "An error occurred while trying to update <b>%s</b> of photo %s"
888
  msgstr ""
889
 
890
- #: wppa-ajax.php:1349
891
  #, php-format
892
  msgid "<b>Custom field %s</b> of photo %s updated"
893
  msgstr ""
894
 
895
- #: wppa-ajax.php:1356
896
  #, fuzzy
897
  msgid "<b>Error during upload.</b>"
898
  msgstr "Chyba počas upload"
899
 
900
- #: wppa-ajax.php:1381
901
  #, fuzzy
902
  msgid "Photo files updated."
903
  msgstr "Foto dne"
904
 
905
- #: wppa-ajax.php:1386
906
  #, fuzzy
907
  msgid "Could not update files."
908
  msgstr "Nelze vložit do databáze."
909
 
910
- #: wppa-ajax.php:1403
 
 
 
 
 
911
  msgid "You do not have the rights to update settings"
912
  msgstr ""
913
 
914
- #: wppa-ajax.php:1484
915
  msgid "Capability granted"
916
  msgstr ""
917
 
918
- #: wppa-ajax.php:1489
919
  msgid "Capability withdrawn"
920
  msgstr ""
921
 
922
- #: wppa-ajax.php:1500
923
  msgid "Column width."
924
  msgstr ""
925
 
926
- #: wppa-ajax.php:1503
927
  msgid "Initial width."
928
  msgstr ""
929
 
930
- #: wppa-ajax.php:1506
931
  msgid "Full size."
932
  msgstr ""
933
 
934
- #: wppa-ajax.php:1509
935
  msgid "Max height."
936
  msgstr ""
937
 
938
- #: wppa-ajax.php:1512
939
  #, fuzzy
940
  msgid "Thumbnail size."
941
  msgstr "Stránka s náhledy"
942
 
943
- #: wppa-ajax.php:1515
944
  #, fuzzy
945
  msgid "Thumbnail frame width"
946
  msgstr "Stránka s náhledy"
947
 
948
- #: wppa-ajax.php:1518
949
  #, fuzzy
950
  msgid "Thumbnail frame height"
951
  msgstr "Označkované fotografie"
952
 
953
- #: wppa-ajax.php:1521
954
  #, fuzzy
955
  msgid "Thumbnail Spacing"
956
  msgstr "Stránka s náhledy"
957
 
958
- #: wppa-ajax.php:1524
959
  #, fuzzy
960
  msgid "Photocount treshold."
961
  msgstr "Fotky nenalezeny."
962
 
963
- #: wppa-ajax.php:1527
964
  #, fuzzy
965
  msgid "Thumb page size."
966
  msgstr "Stránka s náhledy"
967
 
968
- #: wppa-ajax.php:1530
969
  #, fuzzy
970
  msgid "Cover photo size."
971
  msgstr "Zadejte název fotky"
972
 
973
- #: wppa-ajax.php:1533
974
  msgid "Album page size."
975
  msgstr ""
976
 
977
- #: wppa-ajax.php:1536
978
  #, fuzzy
979
  msgid "Number of TopTen photos"
980
  msgstr "Nejlépe hodnocené fotografie"
981
 
982
- #: wppa-ajax.php:1539
983
  #, fuzzy
984
  msgid "Widget image thumbnail size"
985
  msgstr "Prohlédnout náhledy"
986
 
987
- #: wppa-ajax.php:1542 wppa-settings-autosave.php:1007
988
  msgid "Max Cover width"
989
  msgstr ""
990
 
991
- #: wppa-ajax.php:1545
992
  #, fuzzy
993
  msgid "Minimal description height"
994
  msgstr "Zadat/upravit popis fotky"
995
 
996
- #: wppa-ajax.php:1548
997
  msgid "Minimal cover height"
998
  msgstr ""
999
 
1000
- #: wppa-ajax.php:1551
1001
  msgid "Minimal text frame height"
1002
  msgstr ""
1003
 
1004
- #: wppa-ajax.php:1554
1005
  msgid "Border width"
1006
  msgstr ""
1007
 
1008
- #: wppa-ajax.php:1557 wppa-settings-autosave.php:707
1009
  msgid "Border radius"
1010
  msgstr ""
1011
 
1012
- #: wppa-ajax.php:1560 wppa-settings-autosave.php:718
1013
  msgid "Box spacing"
1014
  msgstr ""
1015
 
1016
- #: wppa-ajax.php:1566 wppa-settings-autosave.php:982
1017
  msgid "Popup size"
1018
  msgstr ""
1019
 
1020
- #: wppa-ajax.php:1569
1021
  msgid "Fullsize border width"
1022
  msgstr ""
1023
 
1024
- #: wppa-ajax.php:1572
1025
  msgid "Lightbox Bordersize"
1026
  msgstr ""
1027
 
1028
- #: wppa-ajax.php:1575
1029
  msgid "Number of Comment widget entries"
1030
  msgstr ""
1031
 
1032
- #: wppa-ajax.php:1578
1033
  msgid "Comment Widget image thumbnail size"
1034
  msgstr ""
1035
 
1036
- #: wppa-ajax.php:1581 wppa-ajax.php:1584 wppa-ajax.php:1587
1037
  msgid "Opacity."
1038
  msgstr ""
1039
 
1040
- #: wppa-ajax.php:1590
1041
- #, fuzzy
1042
- msgid "Filter priority"
1043
- msgstr "Priorita závěrky rychlosti AE"
1044
-
1045
- #: wppa-ajax.php:1593
1046
- #, fuzzy
1047
- msgid "Shortcode_priority"
1048
- msgstr "Priorita závěrky rychlosti AE"
1049
-
1050
- #: wppa-ajax.php:1596 wppa-settings-autosave.php:1113
1051
  msgid "Avatar size"
1052
  msgstr ""
1053
 
1054
- #: wppa-ajax.php:1599 wppa-ajax.php:1602
1055
  msgid "Watermark opacity"
1056
  msgstr ""
1057
 
1058
- #: wppa-ajax.php:1605 wppa-settings-autosave.php:1282
1059
  msgid "Number of text lines"
1060
  msgstr ""
1061
 
1062
- #: wppa-ajax.php:1608 wppa-settings-autosave.php:4100
1063
  msgid "Overlay opacity"
1064
  msgstr ""
1065
 
1066
- #: wppa-ajax.php:1611 wppa-settings-autosave.php:6980
1067
  #, fuzzy
1068
  msgid "Upload limit"
1069
  msgstr "Nahrát fotku"
1070
 
1071
- #: wppa-ajax.php:1614 wppa-settings-autosave.php:3808
1072
  msgid "Notify inappropriate"
1073
  msgstr ""
1074
 
1075
- #: wppa-ajax.php:1617
1076
  msgid "Dislike pending"
1077
  msgstr ""
1078
 
1079
- #: wppa-ajax.php:1620
1080
  #, fuzzy
1081
  msgid "Dislike delete"
1082
  msgstr "Smazat"
1083
 
1084
- #: wppa-ajax.php:1623 wppa-settings-autosave.php:6631
1085
  msgid "Max execution time"
1086
  msgstr ""
1087
 
1088
- #: wppa-ajax.php:1628
1089
  msgid "Cube Points points"
1090
  msgstr ""
1091
 
1092
- #: wppa-ajax.php:1631
1093
  msgid "JPG Image quality"
1094
  msgstr ""
1095
 
1096
- #: wppa-ajax.php:1637 wppa-settings-autosave.php:3722
1097
  #, fuzzy
1098
  msgid "Number of coverphotos"
1099
  msgstr "Zobrazit úvodní fotky"
1100
 
1101
- #: wppa-ajax.php:1640 wppa-settings-autosave.php:3779
1102
  msgid "Dislike value"
1103
  msgstr ""
1104
 
1105
- #: wppa-ajax.php:1643 wppa-settings-autosave.php:838
1106
  #, fuzzy
1107
  msgid "Slideshow pagesize"
1108
  msgstr "Slideshow"
1109
 
1110
- #: wppa-ajax.php:1646 wppa-settings-autosave.php:736
1111
  msgid "Max Pagelinks"
1112
  msgstr ""
1113
 
1114
- #: wppa-ajax.php:1653
1115
  msgid "Ratings cleared"
1116
  msgstr ""
1117
 
1118
- #: wppa-ajax.php:1656
1119
  #, fuzzy
1120
  msgid "Could not clear ratings"
1121
  msgstr "Nelze vložit do databáze."
1122
 
1123
- #: wppa-ajax.php:1665
1124
  msgid "Viewcounts cleared"
1125
  msgstr ""
1126
 
1127
- #: wppa-ajax.php:1668
1128
  #, fuzzy
1129
  msgid "Could not clear viewcounts"
1130
  msgstr "Nelze vložit do databáze."
1131
 
1132
- #: wppa-ajax.php:1678
1133
  #, fuzzy
1134
  msgid "IPTC data cleared"
1135
  msgstr "Žádná IPTC data"
1136
 
1137
- #: wppa-ajax.php:1679
1138
  msgid "Refresh this page to clear table X"
1139
  msgstr ""
1140
 
1141
- #: wppa-ajax.php:1683
1142
  #, fuzzy
1143
  msgid "Could not clear IPTC data"
1144
  msgstr "Nelze vložit do databáze."
1145
 
1146
- #: wppa-ajax.php:1693
1147
  #, fuzzy
1148
  msgid "EXIF data cleared"
1149
  msgstr "Žádná EXIF data"
1150
 
1151
- #: wppa-ajax.php:1694
1152
  msgid "Refresh this page to clear table XI"
1153
  msgstr ""
1154
 
1155
- #: wppa-ajax.php:1698
1156
  #, fuzzy
1157
  msgid "Could not clear EXIF data"
1158
  msgstr "Nelze vložit do databáze."
1159
 
1160
- #: wppa-ajax.php:1706
1161
  msgid "Recuperation performed"
1162
  msgstr ""
1163
 
1164
- #: wppa-ajax.php:1721
1165
  msgid ""
1166
  "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1167
  "#77bbff"
1168
  msgstr ""
1169
 
1170
- #: wppa-ajax.php:1747
1171
  msgid "You just changed a setting that requires the recalculation of ratings."
1172
  msgstr ""
1173
 
1174
- #: wppa-ajax.php:1748 wppa-ajax.php:2115
1175
  msgid "Please run the appropriate action in Table VIII."
1176
  msgstr ""
1177
 
1178
- #: wppa-ajax.php:1772 wppa-ajax.php:1788
1179
  #, php-format
1180
  msgid "Unable to create or write to %s"
1181
  msgstr ""
1182
 
1183
- #: wppa-ajax.php:1781
1184
  msgid "Source can not be inside the wppa folder."
1185
  msgstr ""
1186
 
1187
- #: wppa-ajax.php:1798
1188
  msgid "The content must contain w#album"
1189
  msgstr ""
1190
 
1191
- #: wppa-ajax.php:1805
1192
  msgid "The content must contain w#lat and w#lon"
1193
  msgstr ""
1194
 
1195
- #: wppa-ajax.php:1847 wppa-ajax.php:1853
1196
  msgid "Members"
1197
  msgstr ""
1198
 
1199
- #: wppa-ajax.php:1847
1200
  msgid "Parent of the member albums"
1201
  msgstr ""
1202
 
1203
- #: wppa-ajax.php:1991
1204
  #, php-format
1205
  msgid "User %s has been blacklisted."
1206
  msgstr ""
1207
 
1208
- #: wppa-ajax.php:1994
1209
  #, php-format
1210
  msgid "User %s does not exist."
1211
  msgstr ""
1212
 
1213
- #: wppa-ajax.php:2017
1214
  msgid ""
1215
  "The content of the Custom box has been changed to display the Fotomoto "
1216
  "toolbar."
1217
  msgstr ""
1218
 
1219
- #: wppa-ajax.php:2021 wppa-ajax.php:2036
1220
  msgid "The display of the custom box has been enabled"
1221
  msgstr ""
1222
 
1223
- #: wppa-ajax.php:2032
1224
  msgid "The content of the Custom box has been changed to display maps."
1225
  msgstr ""
1226
 
1227
- #: wppa-ajax.php:2062
1228
  msgid "This value can not be empty"
1229
  msgstr ""
1230
 
1231
- #: wppa-ajax.php:2094
1232
  #, php-format
1233
  msgid "Failed to set %s to %s"
1234
  msgstr ""
1235
 
1236
- #: wppa-ajax.php:2099
1237
  #, php-format
1238
  msgid "Setting %s updated to %s"
1239
  msgstr ""
1240
 
1241
- #: wppa-ajax.php:2114
1242
  msgid ""
1243
  "You just changed a setting that requires the regeneration of thumbnails."
1244
  msgstr ""
1245
 
1246
- #: wppa-ajax.php:2169
1247
  msgid "Missing album id"
1248
  msgstr ""
1249
 
1250
- #: wppa-ajax.php:2189
1251
  msgid "You do not have the rights to delete this album"
1252
  msgstr ""
1253
 
1254
- #: wppa-ajax.php:2230 wppa-ajax.php:2237
1255
  #, fuzzy
1256
  msgid "You may also enter:"
1257
  msgstr "Můžete nahrát po"
1258
 
1259
- #: wppa-ajax.php:2231 wppa-ajax.php:2238
1260
  #, fuzzy
1261
  msgid "You may also leave/set this blank"
1262
  msgstr ""
@@ -1304,8 +1299,8 @@ msgstr ""
1304
  msgid "Top of page"
1305
  msgstr ""
1306
 
1307
- #: wppa-album-admin-autosave.php:114 wppa-functions.php:3848
1308
- #: wppa-settings-autosave.php:6870 wppa-wpdb-insert.php:329
1309
  #, fuzzy
1310
  msgid "New Album"
1311
  msgstr "Album:"
@@ -1330,7 +1325,7 @@ msgstr ""
1330
  msgid "Edit Album Information"
1331
  msgstr "Upravit!"
1332
 
1333
- #: wppa-album-admin-autosave.php:172 wppa-settings-autosave.php:295
1334
  #, fuzzy
1335
  msgid "Auto Save"
1336
  msgstr "Automatika, záblesk"
@@ -1371,8 +1366,8 @@ msgstr "Album:"
1371
  msgid "Type the name of the album. Do not leave this empty."
1372
  msgstr ""
1373
 
1374
- #: wppa-album-admin-autosave.php:211 wppa-photo-admin-autosave.php:685
1375
- #: wppa-photo-admin-autosave.php:710
1376
  #, fuzzy
1377
  msgid "Description:"
1378
  msgstr "Zadat/upravit popis fotky"
@@ -1387,17 +1382,17 @@ msgstr "Zadat/upravit popis fotky"
1387
  msgid "Enter / modify the description for this album."
1388
  msgstr "Zadat/upravit popis fotky"
1389
 
1390
- #: wppa-album-admin-autosave.php:240 wppa-photo-admin-autosave.php:273
1391
  msgid "Modified:"
1392
  msgstr ""
1393
 
1394
- #: wppa-album-admin-autosave.php:249 wppa-thumbnails.php:644
1395
- #: wppa-thumbnails.php:1419
1396
  #, fuzzy
1397
  msgid "Views:"
1398
  msgstr "Ukázat: "
1399
 
1400
- #: wppa-album-admin-autosave.php:262 wppa-photo-admin-autosave.php:259
1401
  msgid "Owned by:"
1402
  msgstr ""
1403
 
@@ -1427,8 +1422,8 @@ msgid ""
1427
  "here."
1428
  msgstr ""
1429
 
1430
- #: wppa-album-admin-autosave.php:309 wppa-tinymce-shortcodes.php:298
1431
- #: wppa-tinymce-shortcodes.php:324 wppa-tinymce-shortcodes.php:463
1432
  #, fuzzy
1433
  msgid "Parent album:"
1434
  msgstr "Album:"
@@ -1444,69 +1439,69 @@ msgid "Photo order:"
1444
  msgstr "Foto dne"
1445
 
1446
  #: wppa-album-admin-autosave.php:333 wppa-album-admin-autosave.php:434
1447
- #: wppa-settings-autosave.php:3556 wppa-settings-autosave.php:3580
1448
  #, fuzzy
1449
  msgid "--- default ---"
1450
  msgstr "--- smazáno ---"
1451
 
1452
  #: wppa-album-admin-autosave.php:334 wppa-album-admin-autosave.php:390
1453
- #: wppa-settings-autosave.php:3518 wppa-settings-autosave.php:3632
1454
  #: wppa-thumbnail-widget.php:203
1455
  msgid "Order #"
1456
  msgstr ""
1457
 
1458
  #: wppa-album-admin-autosave.php:336 wppa-album-admin-autosave.php:389
1459
- #: wppa-settings-autosave.php:3520 wppa-settings-autosave.php:3634
1460
  #: wppa-thumbnail-widget.php:205 wppa-widget-admin.php:142
1461
  msgid "Random"
1462
  msgstr ""
1463
 
1464
- #: wppa-album-admin-autosave.php:337 wppa-settings-autosave.php:3521
1465
  msgid "Rating mean value"
1466
  msgstr ""
1467
 
1468
- #: wppa-album-admin-autosave.php:338 wppa-bestof-widget.php:169
1469
- #: wppa-settings-autosave.php:3522 wppa-topten-widget.php:236
1470
  msgid "Number of votes"
1471
  msgstr ""
1472
 
1473
  #: wppa-album-admin-autosave.php:339 wppa-album-admin-autosave.php:394
1474
- #: wppa-settings-autosave.php:3523 wppa-settings-autosave.php:3635
1475
  msgid "Timestamp"
1476
  msgstr ""
1477
 
1478
- #: wppa-album-admin-autosave.php:340 wppa-photo-admin-autosave.php:284
1479
- #: wppa-settings-autosave.php:3524
1480
  #, fuzzy
1481
  msgid "EXIF Date"
1482
  msgstr "Žádná EXIF data"
1483
 
1484
- #: wppa-album-admin-autosave.php:341 wppa-settings-autosave.php:3525
1485
- #: wppa-settings-autosave.php:3636
1486
  msgid "Order # desc"
1487
  msgstr ""
1488
 
1489
- #: wppa-album-admin-autosave.php:342 wppa-settings-autosave.php:3526
1490
- #: wppa-settings-autosave.php:3637
1491
  msgid "Name desc"
1492
  msgstr ""
1493
 
1494
- #: wppa-album-admin-autosave.php:343 wppa-settings-autosave.php:3527
1495
  #: wppa-thumbnail-widget.php:206
1496
  msgid "Rating mean value desc"
1497
  msgstr ""
1498
 
1499
- #: wppa-album-admin-autosave.php:344 wppa-settings-autosave.php:3528
1500
  #: wppa-thumbnail-widget.php:207
1501
  msgid "Number of votes desc"
1502
  msgstr ""
1503
 
1504
- #: wppa-album-admin-autosave.php:345 wppa-settings-autosave.php:3529
1505
- #: wppa-settings-autosave.php:3638 wppa-thumbnail-widget.php:208
1506
  msgid "Timestamp desc"
1507
  msgstr ""
1508
 
1509
- #: wppa-album-admin-autosave.php:346 wppa-settings-autosave.php:3530
1510
  msgid "EXIF Date desc"
1511
  msgstr ""
1512
 
@@ -1550,21 +1545,21 @@ msgstr ""
1550
  msgid "Use alt thumbsize:"
1551
  msgstr ""
1552
 
1553
- #: wppa-album-admin-autosave.php:413 wppa-bestof-widget.php:181
1554
- #: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
1555
- #: wppa-topten-widget.php:244 wppa-topten-widget.php:252
1556
- #: wppa-topten-widget.php:257 wppa-topten-widget.php:262
1557
- #: wppa-topten-widget.php:267 wppa-topten-widget.php:272
1558
  #, fuzzy
1559
  msgid "no"
1560
  msgstr "žádný/á"
1561
 
1562
- #: wppa-album-admin-autosave.php:414 wppa-bestof-widget.php:180
1563
- #: wppa-bestof-widget.php:185 wppa-bestof-widget.php:190
1564
- #: wppa-super-view-widget.php:87 wppa-topten-widget.php:243
1565
- #: wppa-topten-widget.php:251 wppa-topten-widget.php:256
1566
- #: wppa-topten-widget.php:261 wppa-topten-widget.php:266
1567
- #: wppa-topten-widget.php:271
1568
  #, fuzzy
1569
  msgid "yes"
1570
  msgstr "let"
@@ -1579,29 +1574,29 @@ msgstr ""
1579
  msgid "Cover Type:"
1580
  msgstr ""
1581
 
1582
- #: wppa-album-admin-autosave.php:435 wppa-settings-autosave.php:1881
1583
- #: wppa-settings-autosave.php:3702
1584
  msgid "Standard"
1585
  msgstr ""
1586
 
1587
- #: wppa-album-admin-autosave.php:436 wppa-settings-autosave.php:3703
1588
  #, fuzzy
1589
  msgid "Long Descriptions"
1590
  msgstr "Zadat/upravit popis fotky"
1591
 
1592
- #: wppa-album-admin-autosave.php:437 wppa-settings-autosave.php:3704
1593
  msgid "Image Factory"
1594
  msgstr ""
1595
 
1596
- #: wppa-album-admin-autosave.php:438 wppa-settings-autosave.php:3705
1597
  msgid "Standard mcr"
1598
  msgstr ""
1599
 
1600
- #: wppa-album-admin-autosave.php:439 wppa-settings-autosave.php:3706
1601
  msgid "Long Descriptions mcr"
1602
  msgstr ""
1603
 
1604
- #: wppa-album-admin-autosave.php:440 wppa-settings-autosave.php:3707
1605
  msgid "Image Factory mcr"
1606
  msgstr ""
1607
 
@@ -1631,37 +1626,37 @@ msgstr ""
1631
  msgid "Upload limit:"
1632
  msgstr "Nahrát fotku"
1633
 
1634
- #: wppa-album-admin-autosave.php:482 wppa-settings-autosave.php:5548
1635
- #: wppa-settings-autosave.php:6987
1636
  msgid "for ever"
1637
  msgstr ""
1638
 
1639
  #: wppa-album-admin-autosave.php:483 wppa-album-admin-autosave.php:500
1640
- #: wppa-settings-autosave.php:5549 wppa-settings-autosave.php:6988
1641
  #, fuzzy
1642
  msgid "per hour"
1643
  msgstr "1 hodina"
1644
 
1645
  #: wppa-album-admin-autosave.php:484 wppa-album-admin-autosave.php:501
1646
- #: wppa-settings-autosave.php:5550 wppa-settings-autosave.php:6989
1647
  #, fuzzy
1648
  msgid "per day"
1649
  msgstr "1 den"
1650
 
1651
  #: wppa-album-admin-autosave.php:485 wppa-album-admin-autosave.php:502
1652
- #: wppa-settings-autosave.php:5551 wppa-settings-autosave.php:6990
1653
  #, fuzzy
1654
  msgid "per week"
1655
  msgstr "1 týden"
1656
 
1657
  #: wppa-album-admin-autosave.php:486 wppa-album-admin-autosave.php:503
1658
- #: wppa-settings-autosave.php:5552 wppa-settings-autosave.php:6991
1659
  #, fuzzy
1660
  msgid "per month"
1661
  msgstr "1 měsíc"
1662
 
1663
  #: wppa-album-admin-autosave.php:487 wppa-album-admin-autosave.php:504
1664
- #: wppa-settings-autosave.php:5553 wppa-settings-autosave.php:6992
1665
  #, fuzzy
1666
  msgid "per year"
1667
  msgstr "1 rok"
@@ -1682,11 +1677,11 @@ msgstr ""
1682
  msgid "Separate categories with commas."
1683
  msgstr ""
1684
 
1685
- #: wppa-album-admin-autosave.php:526 wppa-photo-admin-autosave.php:764
1686
  msgid "Examples:"
1687
  msgstr ""
1688
 
1689
- #: wppa-album-admin-autosave.php:532 wppa-photo-admin-autosave.php:768
1690
  #, fuzzy
1691
  msgid "- select -"
1692
  msgstr "Vyberte prosím album a opakujte akci"
@@ -1696,7 +1691,7 @@ msgstr "Vyberte prosím album a opakujte akci"
1696
  msgid "No categories yet"
1697
  msgstr "Zatím nebylo založeno žádné album"
1698
 
1699
- #: wppa-album-admin-autosave.php:542 wppa-photo-admin-autosave.php:778
1700
  msgid "Select to add"
1701
  msgstr ""
1702
 
@@ -1744,21 +1739,21 @@ msgstr "Nahrát alespoň %d fotek do tohoto alba!"
1744
  msgid "Link type:"
1745
  msgstr "Odkaz na"
1746
 
1747
- #: wppa-album-admin-autosave.php:594 wppa-settings-autosave.php:7148
1748
  msgid "the sub-albums and thumbnails"
1749
  msgstr ""
1750
 
1751
- #: wppa-album-admin-autosave.php:595 wppa-settings-autosave.php:7149
1752
  #, fuzzy
1753
  msgid "the sub-albums"
1754
  msgstr "Prohlédnout album"
1755
 
1756
- #: wppa-album-admin-autosave.php:596 wppa-settings-autosave.php:7150
1757
  #, fuzzy
1758
  msgid "the thumbnails"
1759
  msgstr "Prohlédnout náhledy"
1760
 
1761
- #: wppa-album-admin-autosave.php:597 wppa-settings-autosave.php:7151
1762
  msgid "the album photos as slideshow"
1763
  msgstr ""
1764
 
@@ -1766,7 +1761,7 @@ msgstr ""
1766
  msgid "the link page with a clean url"
1767
  msgstr ""
1768
 
1769
- #: wppa-album-admin-autosave.php:599 wppa-settings-autosave.php:7152
1770
  msgid "no link at all"
1771
  msgstr ""
1772
 
@@ -1782,15 +1777,15 @@ msgid ""
1782
  "correct shortcode on the target page."
1783
  msgstr ""
1784
 
1785
- #: wppa-album-admin-autosave.php:614 wppa-bestof-widget.php:195
1786
  #: wppa-slideshow-widget.php:223 wppa-widget-admin.php:164
1787
  #: wppa-widget-admin.php:174
1788
  #, fuzzy
1789
  msgid "Link to:"
1790
  msgstr "Odkaz na"
1791
 
1792
- #: wppa-album-admin-autosave.php:620 wppa-settings-autosave.php:8676
1793
- #: wppa-settings-autosave.php:8725
1794
  msgid "There are no pages (yet) to link to."
1795
  msgstr ""
1796
 
@@ -1856,7 +1851,7 @@ msgstr ""
1856
  msgid "Remake all"
1857
  msgstr ""
1858
 
1859
- #: wppa-album-admin-autosave.php:720 wppa-photo-admin-autosave.php:878
1860
  msgid "Remark:"
1861
  msgstr ""
1862
 
@@ -1879,7 +1874,7 @@ msgstr "Administrace moderování komentářů"
1879
  msgid "Moderate photo"
1880
  msgstr "Spravovat fotografie"
1881
 
1882
- #: wppa-album-admin-autosave.php:767 wppa-functions.php:2110
1883
  #: wppa-photo-admin-autosave.php:24
1884
  msgid "Edit photo"
1885
  msgstr "Upravit fotku"
@@ -1889,13 +1884,13 @@ msgstr "Upravit fotku"
1889
  msgid "Delete Album"
1890
  msgstr "Album:"
1891
 
1892
- #: wppa-album-admin-autosave.php:793 wppa-boxes-html.php:804
1893
- #: wppa-breadcrumb.php:284 wppa-breadcrumb.php:302 wppa-breadcrumb.php:320
1894
- #: wppa-breadcrumb.php:338 wppa-breadcrumb.php:393 wppa-breadcrumb.php:418
1895
- #: wppa-breadcrumb.php:539 wppa-comment-admin.php:66 wppa-featen-widget.php:136
1896
  #: wppa-lasten-widget.php:172 wppa-slideshow-widget.php:201
1897
- #: wppa-thumbnail-widget.php:191 wppa-topten-widget.php:217
1898
- #: wppa-upload-widget.php:81 wppa-upload.php:116 wppa-upload.php:204
1899
  #: wppa-upload.php:251
1900
  msgid "Album:"
1901
  msgstr "Album:"
@@ -1918,9 +1913,9 @@ msgstr ""
1918
  #: wppa-album-admin-autosave.php:1182 wppa-album-admin-autosave.php:1354
1919
  #: wppa-album-admin-autosave.php:1449 wppa-album-admin-autosave.php:1635
1920
  #: wppa-comment-admin.php:312 wppa-comment-admin.php:381
1921
- #: wppa-comment-admin.php:399 wppa-functions.php:1922 wppa-links.php:724
1922
- #: wppa-links.php:742 wppa-photo-admin-autosave.php:1244
1923
- #: wppa-photo-admin-autosave.php:1312 wppa-thumbnails.php:589
1924
  msgid "Delete"
1925
  msgstr "Smazat"
1926
 
@@ -1928,7 +1923,7 @@ msgstr "Smazat"
1928
  msgid "Move to:"
1929
  msgstr ""
1930
 
1931
- #: wppa-album-admin-autosave.php:809 wppa-settings-autosave.php:2650
1932
  msgid "Cancel"
1933
  msgstr ""
1934
 
@@ -1961,7 +1956,7 @@ msgstr ""
1961
 
1962
  #: wppa-album-admin-autosave.php:978 wppa-album-admin-autosave.php:1115
1963
  #: wppa-album-admin-autosave.php:1286 wppa-album-admin-autosave.php:1381
1964
- #: wppa-photo-admin-autosave.php:1293 wppa-photo-admin-autosave.php:1412
1965
  msgid "ID"
1966
  msgstr ""
1967
 
@@ -2169,14 +2164,14 @@ msgstr "Ukázat: "
2169
  msgid "album"
2170
  msgstr "album"
2171
 
2172
- #: wppa-album-covers.php:1207 wppa-settings-autosave.php:1226
2173
- #: wppa-settings-autosave.php:5585
2174
  msgid "albums"
2175
  msgstr "albumy"
2176
 
2177
- #: wppa-album-covers.php:1216 wppa-boxes-html.php:1131 wppa-breadcrumb.php:152
2178
- #: wppa-breadcrumb.php:158 wppa-breadcrumb.php:165 wppa-breadcrumb.php:366
2179
- #: wppa-breadcrumb.php:371 wppa-functions.php:4249 wppa-utils.php:1476
2180
  msgid "and"
2181
  msgstr "a"
2182
 
@@ -2185,11 +2180,11 @@ msgid "photo"
2185
  msgstr "fotka"
2186
 
2187
  #: wppa-album-covers.php:1224 wppa-album-covers.php:1228
2188
- #: wppa-settings-autosave.php:692 wppa-settings-autosave.php:731
2189
- #: wppa-settings-autosave.php:1146 wppa-settings-autosave.php:1186
2190
- #: wppa-settings-autosave.php:1206 wppa-settings-autosave.php:1246
2191
- #: wppa-settings-autosave.php:3726 wppa-settings-autosave.php:5569
2192
- #: wppa-settings-autosave.php:6985
2193
  msgid "photos"
2194
  msgstr "fotek"
2195
 
@@ -2198,14 +2193,14 @@ msgstr "fotek"
2198
  msgid "New!"
2199
  msgstr "Nová fotka nahrána: %s"
2200
 
2201
- #: wppa-album-covers.php:1273 wppa-thumbnails.php:1875 wppa-thumbnails.php:1876
2202
  #, fuzzy
2203
  msgid "New"
2204
  msgstr "Nová fotka nahrána: %s"
2205
 
2206
- #: wppa-album-covers.php:1295 wppa-boxes-html.php:828 wppa-non-admin.php:580
2207
- #: wppa-settings-autosave.php:2122 wppa-settings-autosave.php:5046
2208
- #: wppa-settings-autosave.php:7297
2209
  msgid "Slideshow"
2210
  msgstr "Slideshow"
2211
 
@@ -2217,7 +2212,7 @@ msgstr "Prohlédnout fotky"
2217
  msgid "Categories:"
2218
  msgstr ""
2219
 
2220
- #: wppa-album-covers.php:1333 wppa-breadcrumb.php:378 wppa-breadcrumb.php:383
2221
  msgid "Category:"
2222
  msgstr ""
2223
 
@@ -2230,14 +2225,14 @@ msgid "Album navigator"
2230
  msgstr ""
2231
 
2232
  #: wppa-album-navigator-widget.php:92 wppa-album-widget.php:318
2233
- #: wppa-bestof-widget.php:130 wppa-comment-widget.php:118
2234
- #: wppa-featen-widget.php:133 wppa-gp-widget.php:89 wppa-lasten-widget.php:169
2235
- #: wppa-multitag-widget.php:71 wppa-potd-widget.php:185 wppa-qr-widget.php:89
2236
- #: wppa-search-widget.php:71 wppa-slideshow-widget.php:200
2237
- #: wppa-super-view-widget.php:75 wppa-tagcloud-widget.php:67
2238
- #: wppa-thumbnail-widget.php:186 wppa-topten-widget.php:214
2239
- #: wppa-upldr-widget.php:175 wppa-upload-widget.php:79
2240
- #: wppa-widget-admin.php:177
2241
  msgid "Title:"
2242
  msgstr ""
2243
 
@@ -2308,9 +2303,9 @@ msgstr "Nedávno nahrané fotky"
2308
  msgid "Show album names:"
2309
  msgstr "Zadejte název fotky"
2310
 
2311
- #: wppa-album-widget.php:351 wppa-comment-widget.php:119
2312
- #: wppa-featen-widget.php:144 wppa-lasten-widget.php:202
2313
- #: wppa-thumbnail-widget.php:234 wppa-topten-widget.php:276
2314
  msgid ""
2315
  "You can set the sizes in this widget in the <b>Photo Albums -> Settings</b> "
2316
  "admin page."
@@ -2328,299 +2323,289 @@ msgid "WPPA+ Best Of Rated Photos"
2328
  msgstr "fotek"
2329
 
2330
  #: wppa-bestof-widget.php:16 wppa-bestof-widget.php:50
2331
- #: wppa-bestof-widget.php:108
2332
  #, fuzzy
2333
  msgid "Best Of Photos"
2334
  msgstr "fotek"
2335
 
2336
- #: wppa-bestof-widget.php:151
2337
  #, fuzzy
2338
  msgid "Photo(s)"
2339
  msgstr "Foto"
2340
 
2341
- #: wppa-bestof-widget.php:152
2342
  msgid "Owner(s)"
2343
  msgstr ""
2344
 
2345
- #: wppa-bestof-widget.php:157
2346
  #, fuzzy
2347
  msgid "Last week"
2348
  msgstr "1 týden"
2349
 
2350
- #: wppa-bestof-widget.php:158
2351
  #, fuzzy
2352
  msgid "This week"
2353
  msgstr "1 týden"
2354
 
2355
- #: wppa-bestof-widget.php:159
2356
  #, fuzzy
2357
  msgid "Last month"
2358
  msgstr "1 měsíc"
2359
 
2360
- #: wppa-bestof-widget.php:160
2361
  #, fuzzy
2362
  msgid "This month"
2363
  msgstr "1 měsíc"
2364
 
2365
- #: wppa-bestof-widget.php:161
2366
  #, fuzzy
2367
  msgid "Last year"
2368
  msgstr "1 rok"
2369
 
2370
- #: wppa-bestof-widget.php:162
2371
  #, fuzzy
2372
  msgid "This year"
2373
  msgstr "1 rok"
2374
 
2375
- #: wppa-bestof-widget.php:167
2376
  msgid "Number of max ratings"
2377
  msgstr ""
2378
 
2379
- #: wppa-bestof-widget.php:168 wppa-topten-widget.php:235
2380
  msgid "Mean value"
2381
  msgstr ""
2382
 
2383
- #: wppa-bestof-widget.php:177 wppa-topten-widget.php:248
2384
  #: wppa-widget-admin.php:188
2385
  msgid "Subtitle:"
2386
  msgstr ""
2387
 
2388
- #: wppa-bestof-widget.php:178
2389
  #, fuzzy
2390
  msgid "No of max ratings:"
2391
  msgstr "Max uploads dosiahol"
2392
 
2393
- #: wppa-bestof-widget.php:183 wppa-topten-widget.php:259
2394
  #, fuzzy
2395
  msgid "Mean rating:"
2396
  msgstr "Moje hodnocení"
2397
 
2398
- #: wppa-bestof-widget.php:188 wppa-topten-widget.php:264
2399
  #, fuzzy
2400
  msgid "Rating count:"
2401
  msgstr "Hlasování: %s"
2402
 
2403
- #: wppa-bestof-widget.php:197 wppa-common-functions.php:1939 wppa-items.php:362
2404
- #: wppa-settings-autosave.php:1295 wppa-settings-autosave.php:1616
2405
- #: wppa-settings-autosave.php:3315 wppa-settings-autosave.php:3329
2406
- #: wppa-settings-autosave.php:3517 wppa-settings-autosave.php:3631
2407
- #: wppa-settings-autosave.php:5117 wppa-settings-autosave.php:6861
2408
- #: wppa-settings-autosave.php:7003 wppa-settings-autosave.php:7059
2409
- #: wppa-settings-autosave.php:7847 wppa-settings-autosave.php:8003
2410
  #: wppa-thumbnail-widget.php:202 wppa-tinymce-scripts.php:288
2411
- #: wppa-tinymce-shortcodes.php:517 wppa-upload.php:1528 wppa-watermark.php:520
2412
  #: wppa-widget-admin.php:76 wppa-widget-admin.php:193
2413
  msgid "--- none ---"
2414
  msgstr "--- žádné ---"
2415
 
2416
- #: wppa-bestof-widget.php:198
2417
  #, fuzzy
2418
  msgid "The authors album(s)"
2419
  msgstr "Koukni na tuto fotku na %s"
2420
 
2421
- #: wppa-bestof-widget.php:199
2422
  #, fuzzy
2423
  msgid "The photos in the authors album(s)"
2424
  msgstr "Koukni na tuto fotku na %s"
2425
 
2426
- #: wppa-bestof-widget.php:200
2427
  #, fuzzy
2428
  msgid "All the authors photos"
2429
  msgstr "--- vše ---"
2430
 
2431
- #: wppa-boxes-html.php:130 wppa-boxes-html.php:227
2432
  msgid "Photo search results"
2433
  msgstr "Výsledek vyhledávání fotek"
2434
 
2435
- #: wppa-boxes-html.php:186
2436
- #, fuzzy
2437
- msgid "Search in current section"
2438
- msgstr "Výsledek vyhledávání fotek"
2439
-
2440
- #: wppa-boxes-html.php:191
2441
- #, fuzzy
2442
- msgid "Search in current results"
2443
- msgstr "Výsledek vyhledávání fotek"
2444
-
2445
- #: wppa-boxes-html.php:361 wppa-breadcrumb.php:140
2446
- #: wppa-settings-autosave.php:387
2447
  #, fuzzy
2448
  msgid "Albums"
2449
  msgstr "Alba:"
2450
 
2451
- #: wppa-boxes-html.php:367 wppa-breadcrumb.php:155
2452
  #, fuzzy
2453
  msgid "Photos"
2454
  msgstr "Foto"
2455
 
2456
- #: wppa-boxes-html.php:386
2457
  msgid "Category"
2458
  msgstr ""
2459
 
2460
- #: wppa-boxes-html.php:399 wppa-boxes-html.php:532
2461
  msgid "Text"
2462
  msgstr ""
2463
 
2464
- #: wppa-boxes-html.php:415 wppa-boxes-html.php:469 wppa-boxes-html.php:615
2465
- #: wppa-boxes-html.php:645
2466
  msgid "CTRL+Click to add/remove option."
2467
  msgstr ""
2468
 
2469
- #: wppa-boxes-html.php:416 wppa-boxes-html.php:470 wppa-boxes-html.php:616
2470
- #: wppa-boxes-html.php:646
2471
  msgid "Items must meet all selected options."
2472
  msgstr ""
2473
 
2474
- #: wppa-boxes-html.php:524 wppa-settings-autosave.php:8107
2475
- #: wppa-settings-autosave.php:8147 wppa-settings-autosave.php:8169
2476
- #: wppa-settings-autosave.php:8215
2477
  msgid "Tag"
2478
  msgstr ""
2479
 
2480
- #: wppa-boxes-html.php:540
2481
  msgid "Iptc"
2482
  msgstr ""
2483
 
2484
- #: wppa-boxes-html.php:549
2485
  msgid "Exif"
2486
  msgstr ""
2487
 
2488
- #: wppa-boxes-html.php:747 wppa-boxes-html.php:832
2489
  msgid "Submit"
2490
  msgstr ""
2491
 
2492
- #: wppa-boxes-html.php:789 wppa-super-view-widget.php:14
2493
  #: wppa-super-view-widget.php:66
2494
  msgid "Super View Photos"
2495
  msgstr "Super View fotky"
2496
 
2497
- #: wppa-boxes-html.php:820 wppa-settings-autosave.php:403
2498
- #: wppa-settings-autosave.php:4308
2499
  #, fuzzy
2500
  msgid "Thumbnails"
2501
  msgstr "Označkované fotografie"
2502
 
2503
- #: wppa-boxes-html.php:866
2504
  msgid "Tagged photos"
2505
  msgstr "Označkované fotografie"
2506
 
2507
- #: wppa-boxes-html.php:880
2508
  msgid "Please select a tagcloud landing page in Table VI-C3b"
2509
  msgstr "Vyberte prosím cílovou stránku pro tagcloud v Table VI-C3b"
2510
 
2511
- #: wppa-boxes-html.php:938
2512
  msgid "Multi Tagged photos"
2513
  msgstr "Multioznačkované fotografie"
2514
 
2515
- #: wppa-boxes-html.php:952
2516
  msgid "Please select a multitag landing page in Table VI-C4b"
2517
  msgstr "Prosím vyberte multitag cílovou stránku v Table VI-C4b"
2518
 
2519
- #: wppa-boxes-html.php:990
2520
  msgid "Please check the tag(s) that the photos must have"
2521
  msgstr "Zkontrolujte prosím tag(y), které fotky musí mít"
2522
 
2523
- #: wppa-boxes-html.php:1019
2524
  msgid "And"
2525
  msgstr "a"
2526
 
2527
- #: wppa-boxes-html.php:1030
2528
  msgid "Or"
2529
  msgstr "nebo"
2530
 
2531
- #: wppa-boxes-html.php:1080
2532
  msgid "Find!"
2533
  msgstr "Najít!"
2534
 
2535
- #: wppa-boxes-html.php:1107
2536
  #, fuzzy
2537
  msgid "Social media landing page"
2538
  msgstr "Vyberte prosím cílovou stránku pro super view widget v Table VI-C"
2539
 
2540
- #: wppa-boxes-html.php:1132 wppa-utils.php:1476
2541
  #, php-format
2542
  msgid "See this image on %s"
2543
  msgstr "Koukni na tuto fotku na %s"
2544
 
2545
- #: wppa-boxes-html.php:1157 wppa-qr-widget.php:40
2546
  msgid "QR code"
2547
  msgstr ""
2548
 
2549
- #: wppa-boxes-html.php:1202
2550
  #, php-format
2551
  msgid "Tweet %s on Twitter"
2552
  msgstr "Tweet %s on Twitter"
2553
 
2554
- #: wppa-boxes-html.php:1209
2555
  msgid "Share on Twitter"
2556
  msgstr "Sdílet %s na Pinterest"
2557
 
2558
- #: wppa-boxes-html.php:1222
2559
  #, php-format
2560
  msgid "Share %s on Google+"
2561
  msgstr "Sdílet %s na Google +"
2562
 
2563
- #: wppa-boxes-html.php:1230
2564
  msgid "Share on Google+"
2565
  msgstr "Sdílet %s na Google +"
2566
 
2567
- #: wppa-boxes-html.php:1245
2568
  #, php-format
2569
  msgid "Share %s on Pinterest"
2570
  msgstr "Sdílet %s na Pinterest"
2571
 
2572
- #: wppa-boxes-html.php:1254
2573
  msgid "Share on Pinterest"
2574
  msgstr "Sdílet %s na Pinterest"
2575
 
2576
- #: wppa-boxes-html.php:1389
2577
  msgid "Comment on Facebook:"
2578
  msgstr "Komentovat na Facebooku:"
2579
 
2580
- #: wppa-boxes-html.php:1490 wppa-upload.php:1135
2581
  msgid "Working..."
2582
  msgstr ""
2583
 
2584
- #: wppa-boxes-html.php:1492 wppa-boxes-html.php:1495
2585
  #, fuzzy
2586
  msgid "Delete album"
2587
  msgstr "Album:"
2588
 
2589
- #: wppa-boxes-html.php:1582
2590
  #, fuzzy
2591
  msgid "Create Album"
2592
  msgstr "Album:"
2593
 
2594
- #: wppa-boxes-html.php:1627 wppa-boxes-html.php:2370
2595
  #, fuzzy
2596
  msgid "Enter album name."
2597
  msgstr "Zadejte název fotky"
2598
 
2599
- #: wppa-boxes-html.php:1629 wppa-boxes-html.php:2372
2600
  #, fuzzy
2601
  msgid "Don't leave this blank!"
2602
  msgstr ""
2603
  "Necháte-li prázdné, původní název souboru(ů) se použije jako název fotky(ek)."
2604
 
2605
- #: wppa-boxes-html.php:1648
2606
  #, fuzzy
2607
  msgid "Enter album description"
2608
  msgstr "Zadat/upravit popis fotky"
2609
 
2610
- #: wppa-boxes-html.php:1670
2611
  #, fuzzy
2612
  msgid "Create album"
2613
  msgstr "Album:"
2614
 
2615
- #: wppa-boxes-html.php:1726 wppa-boxes-html.php:1739 wppa-functions.php:3966
2616
  msgid "Max uploads reached"
2617
  msgstr "Max uploads dosiahol"
2618
 
2619
- #: wppa-boxes-html.php:1801 wppa-upload.php:134
2620
  msgid "Upload Photo"
2621
  msgstr "Nahrát fotku"
2622
 
2623
- #: wppa-boxes-html.php:1948
2624
  #, php-format
2625
  msgid ""
2626
  "You may upload up to %s photos at once if your browser supports HTML-5 "
@@ -2629,22 +2614,22 @@ msgstr ""
2629
  "Můžete nahrát až %s fotek najednou, pokud váš prohlížeč podporuje hromadné "
2630
  "nahrávání souborů HTML5"
2631
 
2632
- #: wppa-boxes-html.php:1956
2633
  #, php-format
2634
  msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
2635
  msgstr "Max. velikost fotek: %d %d (%2.1f megapixelů)"
2636
 
2637
- #: wppa-boxes-html.php:1985 wppa-upload.php:123 wppa-upload.php:211
2638
  #: wppa-upload.php:258 wppa-upload.php:704
2639
  msgid "Apply watermark file:"
2640
  msgstr "Použít soubor s vodoznakem:"
2641
 
2642
- #: wppa-boxes-html.php:2007 wppa-upload.php:128 wppa-upload.php:216
2643
  #: wppa-upload.php:263 wppa-upload.php:708
2644
  msgid "Position:"
2645
  msgstr "Pozice:"
2646
 
2647
- #: wppa-boxes-html.php:2035
2648
  #, fuzzy
2649
  msgid ""
2650
  "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
@@ -2653,7 +2638,7 @@ msgid ""
2653
  msgstr ""
2654
  "Necháte-li prázdné, původní název souboru(ů) se použije jako název fotky(ek)."
2655
 
2656
- #: wppa-boxes-html.php:2040
2657
  #, fuzzy
2658
  msgid ""
2659
  "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
@@ -2661,331 +2646,348 @@ msgid ""
2661
  msgstr ""
2662
  "Necháte-li prázdné, původní název souboru(ů) se použije jako název fotky(ek)."
2663
 
2664
- #: wppa-boxes-html.php:2045
2665
  msgid ""
2666
  "If you leave this blank, the original filename will be used as photo name."
2667
  msgstr ""
2668
  "Necháte-li prázdné, původní název souboru(ů) se použije jako název fotky(ek)."
2669
 
2670
- #: wppa-boxes-html.php:2059
2671
  msgid "Enter photo name."
2672
  msgstr "Zadejte název fotky"
2673
 
2674
- #: wppa-boxes-html.php:2080
2675
  msgid "Enter/modify photo description"
2676
  msgstr "Zadat/upravit popis fotky"
2677
 
2678
- #: wppa-boxes-html.php:2111
2679
  msgid "hidden"
2680
  msgstr ""
2681
 
2682
- #: wppa-boxes-html.php:2180
2683
  msgid "Preview tags:"
2684
  msgstr ""
2685
 
2686
- #: wppa-boxes-html.php:2193
2687
  msgid "Please select an album and try again"
2688
  msgstr "Vyberte prosím album a opakujte akci"
2689
 
2690
- #: wppa-boxes-html.php:2207
2691
  #, fuzzy
2692
  msgid "Upload photo"
2693
  msgstr "Nahrát fotku"
2694
 
2695
- #: wppa-boxes-html.php:2263
2696
  #, fuzzy
2697
  msgid "ERROR: unable to upload files."
2698
  msgstr "<b>Chyba: Neplatný pokus o nahrání souboru.</b>"
2699
 
2700
- #: wppa-boxes-html.php:2312
2701
  #, fuzzy
2702
  msgid "Edit albuminfo"
2703
  msgstr "Upravit!"
2704
 
2705
- #: wppa-boxes-html.php:2392
2706
  #, fuzzy
2707
  msgid "Album description:"
2708
  msgstr "Zadat/upravit popis fotky"
2709
 
2710
- #: wppa-boxes-html.php:2411
2711
  #, fuzzy
2712
  msgid "Update album"
2713
  msgstr "Album:"
2714
 
2715
- #: wppa-boxes-html.php:2485
2716
  msgid "wrote:"
2717
  msgstr "napsal:"
2718
 
2719
- #: wppa-boxes-html.php:2539
2720
  msgid "Avatar"
2721
  msgstr ""
2722
 
2723
- #: wppa-boxes-html.php:2582 wppa-links.php:768
2724
  msgid "Awaiting moderation"
2725
  msgstr "Čeká na moderování"
2726
 
2727
- #: wppa-boxes-html.php:2585
2728
  msgid "Marked as spam"
2729
  msgstr "Označený jako spam"
2730
 
2731
- #: wppa-boxes-html.php:2609
2732
  msgid "Edit!"
2733
  msgstr "Upravit!"
2734
 
2735
- #: wppa-boxes-html.php:2613
2736
  msgid "Send!"
2737
  msgstr "Odeslat!"
2738
 
2739
- #: wppa-boxes-html.php:2674
2740
  msgid "Your name:"
2741
  msgstr "Vaše jméno:"
2742
 
2743
- #: wppa-boxes-html.php:2689
2744
  msgid "Your email:"
2745
  msgstr "Váš e-mail:"
2746
 
2747
- #: wppa-boxes-html.php:2705
2748
  msgid "Your comment:"
2749
  msgstr "Váš komentář:"
2750
 
2751
- #: wppa-boxes-html.php:2750
2752
  #, php-format
2753
  msgid "You must <a href=\"%s\">login</a> to enter a comment"
2754
  msgstr "Musíte se <a href=&quot;\"%s\"&quot;>přihlásit</a> k napsání komentáře"
2755
 
2756
- #: wppa-boxes-html.php:2753
2757
  #, fuzzy
2758
  msgid "You must login to enter a comment"
2759
  msgstr "Musíte se <a href=&quot;\"%s\"&quot;>přihlásit</a> k napsání komentáře"
2760
 
2761
- #: wppa-boxes-html.php:2765
2762
  #, fuzzy, php-format
2763
  msgid "%d comments"
2764
  msgstr "%d komentáře/ů"
2765
 
2766
- #: wppa-boxes-html.php:2769
2767
  msgid "Leave a comment"
2768
  msgstr "Napsat komentář"
2769
 
2770
- #: wppa-boxes-html.php:2810
2771
  msgid "Smilies are not available"
2772
  msgstr ""
2773
 
2774
- #: wppa-boxes-html.php:2860
2775
  msgid "Show IPTC data"
2776
  msgstr "Zobrazit IPTC data"
2777
 
2778
- #: wppa-boxes-html.php:2871
2779
  msgid "Hide IPTC data"
2780
  msgstr "Skrýt IPTC data"
2781
 
2782
- #: wppa-boxes-html.php:2911
2783
  msgid "No IPTC data"
2784
  msgstr "Žádná IPTC data"
2785
 
2786
- #: wppa-boxes-html.php:2958
2787
  msgid "Show EXIF data"
2788
  msgstr "Zobrazit EXIF data"
2789
 
2790
- #: wppa-boxes-html.php:2969
2791
  msgid "Hide EXIF data"
2792
  msgstr "Skrýt EXIF data"
2793
 
2794
- #: wppa-boxes-html.php:3011
2795
  msgid "No EXIF data"
2796
  msgstr "Žádná EXIF data"
2797
 
2798
- #: wppa-boxes-html.php:3126 wppa-boxes-html.php:3131
2799
  #, fuzzy
2800
  msgid "< Previous"
2801
  msgstr "Predcházející"
2802
 
2803
- #: wppa-boxes-html.php:3137 wppa-boxes-html.php:3142
2804
  #, fuzzy
2805
  msgid "Next >"
2806
  msgstr "Další"
2807
 
2808
- #: wppa-boxes-html.php:3239 wppa-boxes-html.php:3298
2809
  #, fuzzy
2810
  msgid "See the authors albums"
2811
  msgstr "Koukni na tuto fotku na %s"
2812
 
2813
- #: wppa-boxes-html.php:3243 wppa-boxes-html.php:3302
2814
  #, fuzzy
2815
  msgid "See the authors photos"
2816
  msgstr "Koukni na tuto fotku na %s"
2817
 
2818
- #: wppa-boxes-html.php:3247 wppa-boxes-html.php:3306
2819
  #, fuzzy
2820
  msgid "See all the authors photos"
2821
  msgstr "--- vše ---"
2822
 
2823
- #: wppa-boxes-html.php:3270
2824
  #, fuzzy, php-format
2825
  msgid "Photo by: %s"
2826
  msgstr "Fotka %s %s"
2827
 
2828
- #: wppa-boxes-html.php:3271 wppa-boxes-html.php:3325
2829
  #, fuzzy, php-format
2830
  msgid "Max ratings: %s."
2831
  msgstr "Max uploads dosiahol"
2832
 
2833
- #: wppa-boxes-html.php:3272 wppa-boxes-html.php:3326
2834
  #, fuzzy, php-format
2835
  msgid "Votes: %s."
2836
  msgstr "%s hodnocení"
2837
 
2838
- #: wppa-boxes-html.php:3273 wppa-boxes-html.php:3327
2839
  #, php-format
2840
  msgid "Mean value: %4.2f."
2841
  msgstr ""
2842
 
2843
- #: wppa-boxes-html.php:3280
2844
  #, fuzzy, php-format
2845
  msgid "Photo %s not found."
2846
  msgstr "Fotky nenalezeny."
2847
 
2848
- #: wppa-breadcrumb.php:102 wppa-settings-autosave.php:1446
 
 
 
 
 
2849
  msgid "Home"
2850
  msgstr "Domů"
2851
 
2852
- #: wppa-breadcrumb.php:123
2853
  msgid "Post:"
2854
  msgstr "Příspěvek:"
2855
 
2856
- #: wppa-breadcrumb.php:123 wppa-breadcrumb.php:567
2857
  msgid "Page:"
2858
  msgstr "Strana:"
2859
 
2860
- #: wppa-breadcrumb.php:143
2861
  msgid "with category:"
2862
  msgstr ""
2863
 
2864
- #: wppa-breadcrumb.php:146 wppa-breadcrumb.php:161
2865
  #, fuzzy
2866
  msgid "with name:"
2867
  msgstr "Vaše jméno:"
2868
 
2869
- #: wppa-breadcrumb.php:149 wppa-breadcrumb.php:165
2870
  msgid "with words:"
2871
  msgstr ""
2872
 
2873
- #: wppa-breadcrumb.php:158
2874
  msgid "with tag:"
2875
  msgstr ""
2876
 
2877
- #: wppa-breadcrumb.php:169
2878
  msgid "of owner:"
2879
  msgstr ""
2880
 
2881
- #: wppa-breadcrumb.php:174
2882
  msgid "with iptc tag:"
2883
  msgstr ""
2884
 
2885
- #: wppa-breadcrumb.php:174 wppa-breadcrumb.php:179
2886
  #, fuzzy
2887
  msgid "with content:"
2888
  msgstr "Vaše jméno:"
2889
 
2890
- #: wppa-breadcrumb.php:179
2891
  msgid "with exif tag:"
2892
  msgstr ""
2893
 
2894
- #: wppa-breadcrumb.php:187 wppa-breadcrumb.php:215 wppa-breadcrumb.php:272
2895
- #: wppa-breadcrumb.php:290 wppa-breadcrumb.php:308 wppa-breadcrumb.php:326
2896
- #: wppa-breadcrumb.php:344 wppa-breadcrumb.php:356 wppa-breadcrumb.php:368
2897
- #: wppa-breadcrumb.php:380 wppa-breadcrumb.php:399
2898
  msgid "View the thumbnails"
2899
  msgstr "Prohlédnout náhledy"
2900
 
2901
- #: wppa-breadcrumb.php:209
2902
  #, fuzzy, php-format
2903
  msgid "Searchresults from album %s and its subalbums"
2904
  msgstr "Uživatel %s nahrál fotku %s do alba %s"
2905
 
2906
- #: wppa-breadcrumb.php:213 wppa-breadcrumb.php:218
2907
  msgid "Searchstring:"
2908
  msgstr "Hledat:"
2909
 
2910
- #: wppa-breadcrumb.php:227 wppa-breadcrumb.php:245
2911
  #, fuzzy
2912
  msgid "Photos by EXIF date"
2913
  msgstr "Zobrazit EXIF data"
2914
 
2915
- #: wppa-breadcrumb.php:231 wppa-breadcrumb.php:249
2916
  #, fuzzy
2917
  msgid "Photos by date of upload"
2918
  msgstr "Fotky nahrány "
2919
 
2920
- #: wppa-breadcrumb.php:235 wppa-breadcrumb.php:253
2921
  msgid "Photos by date last modified"
2922
  msgstr ""
2923
 
2924
- #: wppa-breadcrumb.php:265 wppa-breadcrumb.php:275
2925
  #, php-format
2926
  msgid "Photos by %s"
2927
  msgstr "Foto od %s"
2928
 
2929
- #: wppa-breadcrumb.php:282 wppa-breadcrumb.php:300 wppa-breadcrumb.php:318
2930
- #: wppa-breadcrumb.php:336 wppa-breadcrumb.php:414
2931
  msgid "Various albums"
2932
  msgstr "Různá alba"
2933
 
2934
- #: wppa-breadcrumb.php:284 wppa-breadcrumb.php:302 wppa-breadcrumb.php:320
2935
- #: wppa-breadcrumb.php:338 wppa-breadcrumb.php:418 wppa-lasten-widget.php:180
2936
  msgid "Albums:"
2937
  msgstr "Alba:"
2938
 
2939
- #: wppa-breadcrumb.php:288 wppa-breadcrumb.php:293
2940
  msgid "Top rated photos"
2941
  msgstr "Najlepšie hodnotené fotografie"
2942
 
2943
- #: wppa-breadcrumb.php:306 wppa-breadcrumb.php:311
2944
  msgid "Recently uploaded photos"
2945
  msgstr "Nedávno nahrané fotografie"
2946
 
2947
- #: wppa-breadcrumb.php:324 wppa-breadcrumb.php:329 wppa-comment-widget.php:41
2948
  msgid "Recently commented photos"
2949
  msgstr "Nedávno komentované fotografie"
2950
 
2951
- #: wppa-breadcrumb.php:342 wppa-breadcrumb.php:347 wppa-featen-widget.php:37
2952
  msgid "Featured photos"
2953
  msgstr "Nejlépe hodnocené fotky"
2954
 
2955
- #: wppa-breadcrumb.php:354 wppa-breadcrumb.php:359
2956
  msgid "Related photos"
2957
  msgstr "Podobné fotky"
2958
 
2959
- #: wppa-breadcrumb.php:366 wppa-breadcrumb.php:371
2960
  msgid "Tagged photos:"
2961
  msgstr "Otagované fotky:"
2962
 
2963
- #: wppa-breadcrumb.php:366 wppa-breadcrumb.php:371
2964
  msgid "or"
2965
  msgstr "nebo"
2966
 
2967
- #: wppa-breadcrumb.php:397 wppa-breadcrumb.php:402
2968
  msgid "Recently updated albums"
2969
  msgstr "Nedávno nahrané fotky"
2970
 
2971
- #: wppa-breadcrumb.php:412
2972
  #, php-format
2973
  msgid "Various albums by %s"
2974
  msgstr "Další alba od %s"
2975
 
2976
- #: wppa-breadcrumb.php:439 wppa-breadcrumb.php:454
2977
  msgid "Thumbnail view"
2978
  msgstr "Stránka s náhledy"
2979
 
2980
- #: wppa-breadcrumb.php:443 wppa-breadcrumb.php:444 wppa-breadcrumb.php:459
2981
- #: wppa-breadcrumb.php:460
2982
  msgid "Thumbs"
2983
  msgstr "Náhledy"
2984
 
2985
- #: wppa-breadcrumb.php:565
2986
  msgid "Unpublished"
2987
  msgstr "Nepublikováno"
2988
 
 
 
 
 
 
 
 
 
 
 
 
 
2989
  #: wppa-cart.php:26
2990
  msgid "Buy now"
2991
  msgstr "Koupit nyní"
@@ -3086,8 +3088,8 @@ msgstr ""
3086
  msgid "Linkpage:"
3087
  msgstr ""
3088
 
3089
- #: wppa-comment-admin.php:224 wppa-settings-autosave.php:4479
3090
- #: wppa-settings-autosave.php:7177
3091
  #, fuzzy
3092
  msgid "--- Please select a page ---"
3093
  msgstr "--- smazáno ---"
@@ -3127,7 +3129,7 @@ msgstr ""
3127
  msgid "timestamp"
3128
  msgstr ""
3129
 
3130
- #: wppa-comment-admin.php:256 wppa-photo-admin-autosave.php:1241
3131
  msgid "Bulk action:"
3132
  msgstr ""
3133
 
@@ -3158,18 +3160,18 @@ msgid "(Album)"
3158
  msgstr "Alba:"
3159
 
3160
  #: wppa-comment-admin.php:304 wppa-comment-admin.php:391
3161
- #: wppa-settings-autosave.php:454 wppa-settings-autosave.php:607
3162
- #: wppa-settings-autosave.php:629 wppa-settings-autosave.php:1329
3163
- #: wppa-settings-autosave.php:1350 wppa-settings-autosave.php:2715
3164
- #: wppa-settings-autosave.php:2736 wppa-settings-autosave.php:3034
3165
- #: wppa-settings-autosave.php:3058 wppa-settings-autosave.php:4200
3166
- #: wppa-settings-autosave.php:4221 wppa-settings-autosave.php:4397
3167
- #: wppa-settings-autosave.php:4421 wppa-settings-autosave.php:5420
3168
- #: wppa-settings-autosave.php:5928 wppa-settings-autosave.php:5950
3169
- #: wppa-settings-autosave.php:6530 wppa-settings-autosave.php:6554
3170
- #: wppa-settings-autosave.php:8085 wppa-settings-autosave.php:8106
3171
- #: wppa-settings-autosave.php:8146 wppa-settings-autosave.php:8168
3172
- #: wppa-settings-autosave.php:8214
3173
  msgid "#"
3174
  msgstr ""
3175
 
@@ -3203,25 +3205,25 @@ msgstr ""
3203
  msgid "Reply to your comment on photo: %s on %s"
3204
  msgstr ""
3205
 
3206
- #: wppa-comment-admin.php:359 wppa-functions.php:2102
3207
  msgid "Reply"
3208
  msgstr ""
3209
 
3210
- #: wppa-comment-admin.php:370 wppa-photo-admin-autosave.php:794
3211
- #: wppa-photo-admin-autosave.php:817 wppa-photo-admin-autosave.php:968
3212
- #: wppa-photo-admin-autosave.php:978 wppa-photo-admin-autosave.php:1259
3213
- #: wppa-photo-admin-autosave.php:1376 wppa-photo-admin-autosave.php:1388
3214
  msgid "Pending"
3215
  msgstr ""
3216
 
3217
- #: wppa-comment-admin.php:371 wppa-photo-admin-autosave.php:969
3218
- #: wppa-photo-admin-autosave.php:979
3219
  #, fuzzy
3220
  msgid "Approved"
3221
  msgstr "Potvrdit"
3222
 
3223
- #: wppa-comment-admin.php:372 wppa-photo-admin-autosave.php:970
3224
- #: wppa-photo-admin-autosave.php:980
3225
  msgid "Spam"
3226
  msgstr ""
3227
 
@@ -3239,7 +3241,7 @@ msgstr ""
3239
  msgid "WPPA+ Comments on Photos"
3240
  msgstr "Komentovat fotky:"
3241
 
3242
- #: wppa-comment-widget.php:15 wppa-comment-widget.php:115
3243
  #, fuzzy
3244
  msgid "Comments on Photos"
3245
  msgstr "Komentovat fotky:"
@@ -3249,131 +3251,131 @@ msgstr "Komentovat fotky:"
3249
  msgid "wrote"
3250
  msgstr "napsal:"
3251
 
3252
- #: wppa-comment-widget.php:88 wppa-featen-widget.php:96
3253
  #: wppa-lasten-widget.php:120 wppa-potd-widget.php:134
3254
- #: wppa-thumbnail-widget.php:116 wppa-topten-widget.php:154
3255
  msgid "Photo not found."
3256
  msgstr "Fotky nenalezeny."
3257
 
3258
- #: wppa-common-functions.php:189 wppa-common-functions.php:192
3259
  msgid "Default photo album for"
3260
  msgstr "Přednastavené fotoalbum pro"
3261
 
3262
- #: wppa-common-functions.php:537 wppa-common-functions.php:573
3263
  msgid "1 second"
3264
  msgstr "1 sekundu"
3265
 
3266
- #: wppa-common-functions.php:538 wppa-common-functions.php:574
3267
- #: wppa-functions.php:4250
3268
  msgid "seconds"
3269
  msgstr "sekund"
3270
 
3271
- #: wppa-common-functions.php:542 wppa-common-functions.php:578
3272
  msgid "1 minute"
3273
  msgstr "1 minuta"
3274
 
3275
- #: wppa-common-functions.php:543 wppa-common-functions.php:579
3276
- #: wppa-functions.php:4249
3277
  msgid "minutes"
3278
  msgstr "minut"
3279
 
3280
- #: wppa-common-functions.php:547 wppa-common-functions.php:583
3281
  msgid "1 hour"
3282
  msgstr "1 hodina"
3283
 
3284
- #: wppa-common-functions.php:548 wppa-common-functions.php:584
3285
- #: wppa-functions.php:4248
3286
  msgid "hours"
3287
  msgstr "hodin"
3288
 
3289
- #: wppa-common-functions.php:552 wppa-common-functions.php:588
3290
  msgid "1 day"
3291
  msgstr "1 den"
3292
 
3293
- #: wppa-common-functions.php:553 wppa-common-functions.php:589
3294
- #: wppa-functions.php:4247
3295
  msgid "days"
3296
  msgstr "dní"
3297
 
3298
- #: wppa-common-functions.php:557 wppa-common-functions.php:593
3299
  msgid "1 week"
3300
  msgstr "1 týden"
3301
 
3302
- #: wppa-common-functions.php:558 wppa-common-functions.php:594
3303
- #: wppa-functions.php:4246
3304
  msgid "weeks"
3305
  msgstr "týdnů"
3306
 
3307
- #: wppa-common-functions.php:562 wppa-common-functions.php:598
3308
  msgid "1 month"
3309
  msgstr "1 měsíc"
3310
 
3311
- #: wppa-common-functions.php:563 wppa-common-functions.php:599
3312
  msgid "months"
3313
  msgstr "měsíců"
3314
 
3315
- #: wppa-common-functions.php:566 wppa-common-functions.php:602
3316
  msgid "1 year"
3317
  msgstr "1 rok"
3318
 
3319
- #: wppa-common-functions.php:567 wppa-common-functions.php:603
3320
  msgid "years"
3321
  msgstr "let"
3322
 
3323
- #: wppa-common-functions.php:814 wppa-common-functions.php:815
3324
  msgid "ERROR: Resized or copied image could not be created."
3325
  msgstr ""
3326
 
3327
- #: wppa-common-functions.php:857 wppa-common-functions.php:858
3328
  #, php-format
3329
  msgid "ERROR: File %s is not a valid picture file."
3330
  msgstr ""
3331
 
3332
- #: wppa-common-functions.php:1658
3333
  #, php-format
3334
  msgid ""
3335
  "Based on your server memory limit you should not upload images larger then "
3336
  "<strong>%d x %d (%2.1f MP)</strong>"
3337
  msgstr ""
3338
 
3339
- #: wppa-common-functions.php:1933
3340
  #, fuzzy
3341
  msgid "- select an album -"
3342
  msgstr "Vyberte prosím album a opakujte akci"
3343
 
3344
- #: wppa-common-functions.php:1945 wppa-items.php:370
3345
- #: wppa-multitag-widget.php:75 wppa-multitag-widget.php:83
3346
- #: wppa-slideshow-widget.php:201 wppa-tagcloud-widget.php:70
3347
- #: wppa-tagcloud-widget.php:78
3348
  msgid "--- all ---"
3349
  msgstr "--- vše ---"
3350
 
3351
- #: wppa-common-functions.php:1951
3352
  #, fuzzy
3353
  msgid "--- generic ---"
3354
  msgstr "--- žádné ---"
3355
 
3356
- #: wppa-common-functions.php:1962
3357
  msgid "--- multiple see below ---"
3358
  msgstr ""
3359
 
3360
- #: wppa-common-functions.php:1968
3361
  #, fuzzy
3362
  msgid "--- a selection box ---"
3363
  msgstr "--- smazáno ---"
3364
 
3365
- #: wppa-common-functions.php:2002 wppa-items.php:366
3366
- #: wppa-settings-autosave.php:7003 wppa-settings-autosave.php:7059
3367
  #: wppa-upload.php:1529
3368
  msgid "--- separate ---"
3369
  msgstr "--- samostatné ---"
3370
 
3371
- #: wppa-common-functions.php:2100
3372
  #, fuzzy
3373
  msgid "Photo id ="
3374
  msgstr "Foto dne"
3375
 
3376
- #: wppa-common-functions.php:2100
3377
  msgid "Value ="
3378
  msgstr ""
3379
 
@@ -3432,180 +3434,180 @@ msgstr "Del"
3432
  msgid "n.a."
3433
  msgstr "n.a."
3434
 
3435
- #: wppa-exif-iptc-common.php:214 wppa-utils.php:2245
3436
  msgid "Not Defined"
3437
  msgstr "Není definovaná"
3438
 
3439
- #: wppa-exif-iptc-common.php:215 wppa-utils.php:2246
3440
  msgid "Manual"
3441
  msgstr "Manuál"
3442
 
3443
- #: wppa-exif-iptc-common.php:216 wppa-utils.php:2247
3444
  msgid "Program AE"
3445
  msgstr "Program AE"
3446
 
3447
- #: wppa-exif-iptc-common.php:217 wppa-utils.php:2248
3448
  msgid "Aperture-priority AE"
3449
  msgstr "Priorita clony AE"
3450
 
3451
- #: wppa-exif-iptc-common.php:218 wppa-utils.php:2249
3452
  msgid "Shutter speed priority AE"
3453
  msgstr "Priorita závěrky rychlosti AE"
3454
 
3455
- #: wppa-exif-iptc-common.php:219 wppa-utils.php:2250
3456
  msgid "Creative (Slow speed)"
3457
  msgstr "Creative (pomalá rýchlost)"
3458
 
3459
- #: wppa-exif-iptc-common.php:220 wppa-utils.php:2251
3460
  msgid "Action (High speed)"
3461
  msgstr "Akce (vysoká rychlost)"
3462
 
3463
- #: wppa-exif-iptc-common.php:221 wppa-utils.php:2252
3464
  msgid "Portrait"
3465
  msgstr "Portrét"
3466
 
3467
- #: wppa-exif-iptc-common.php:222 wppa-utils.php:2253
3468
  msgid "Landscape"
3469
  msgstr "Krajina"
3470
 
3471
- #: wppa-exif-iptc-common.php:223 wppa-utils.php:2254
3472
  msgid "Bulb"
3473
  msgstr "Žárovka"
3474
 
3475
- #: wppa-exif-iptc-common.php:245 wppa-utils.php:2255
3476
  msgid "Average"
3477
  msgstr "Průměr"
3478
 
3479
- #: wppa-exif-iptc-common.php:246 wppa-utils.php:2256
3480
  msgid "Center-weighted average"
3481
  msgstr "Vážený průmer"
3482
 
3483
- #: wppa-exif-iptc-common.php:247 wppa-utils.php:2257
3484
  msgid "Spot"
3485
  msgstr "Spot"
3486
 
3487
- #: wppa-exif-iptc-common.php:248 wppa-utils.php:2258
3488
  msgid "Multi-spot"
3489
  msgstr "Multi-spot"
3490
 
3491
- #: wppa-exif-iptc-common.php:249 wppa-utils.php:2259
3492
  msgid "Multi-segment"
3493
  msgstr "Multi-segmentové"
3494
 
3495
- #: wppa-exif-iptc-common.php:250 wppa-utils.php:2260
3496
  msgid "Partial"
3497
  msgstr "Částečné"
3498
 
3499
- #: wppa-exif-iptc-common.php:251 wppa-settings-autosave.php:4325
3500
- #: wppa-utils.php:2261
3501
  msgid "Other"
3502
  msgstr "Ostatní"
3503
 
3504
- #: wppa-exif-iptc-common.php:287 wppa-utils.php:2262
3505
  msgid "No Flash"
3506
  msgstr "Bez blesku"
3507
 
3508
- #: wppa-exif-iptc-common.php:289 wppa-utils.php:2263
3509
  msgid "Fired"
3510
  msgstr "Záblesk"
3511
 
3512
- #: wppa-exif-iptc-common.php:291 wppa-utils.php:2264
3513
  msgid "Fired, Return not detected"
3514
  msgstr "Záblek, nedetekován návrat"
3515
 
3516
- #: wppa-exif-iptc-common.php:293 wppa-utils.php:2265
3517
  msgid "Fired, Return detected"
3518
  msgstr "Záblek, detekován návrat"
3519
 
3520
- #: wppa-exif-iptc-common.php:295 wppa-utils.php:2266
3521
  msgid "On, Did not fire"
3522
  msgstr "Zapnuto, bez záblesku"
3523
 
3524
- #: wppa-exif-iptc-common.php:297 wppa-utils.php:2267
3525
  msgid "On, Fired"
3526
  msgstr "Zapnuto, záblesk"
3527
 
3528
- #: wppa-exif-iptc-common.php:299 wppa-utils.php:2268
3529
  msgid "On, Return not detected"
3530
  msgstr "Zapnuto, nedetekován návrat"
3531
 
3532
- #: wppa-exif-iptc-common.php:301 wppa-utils.php:2269
3533
  msgid "On, Return detected"
3534
  msgstr "Zapnuto, detekován návrat"
3535
 
3536
- #: wppa-exif-iptc-common.php:303 wppa-utils.php:2270
3537
  msgid "Off, Did not fire"
3538
  msgstr "Vypnuto, bez záblesku"
3539
 
3540
- #: wppa-exif-iptc-common.php:305 wppa-utils.php:2271
3541
  msgid "Off, Did not fire, Return not detected"
3542
  msgstr "Vypnuto, bez záblesku, nedetekován návrat"
3543
 
3544
- #: wppa-exif-iptc-common.php:307 wppa-utils.php:2272
3545
  msgid "Auto, Did not fire"
3546
  msgstr "Automatika, bez záblesku"
3547
 
3548
- #: wppa-exif-iptc-common.php:309 wppa-utils.php:2273
3549
  msgid "Auto, Fired"
3550
  msgstr "Automatika, záblesk"
3551
 
3552
- #: wppa-exif-iptc-common.php:311 wppa-utils.php:2274
3553
  msgid "Auto, Fired, Return not detected"
3554
  msgstr "Automatika, záblesk, nedetekován návrat"
3555
 
3556
- #: wppa-exif-iptc-common.php:313 wppa-utils.php:2275
3557
  msgid "Auto, Fired, Return detected"
3558
  msgstr "Automatika, záblesk, detekován návrat"
3559
 
3560
- #: wppa-exif-iptc-common.php:315 wppa-utils.php:2276
3561
  msgid "No flash function"
3562
  msgstr "Žádné funkce blesku"
3563
 
3564
- #: wppa-exif-iptc-common.php:317 wppa-utils.php:2277
3565
  msgid "Off, No flash function"
3566
  msgstr "Vypnuto, žádné funkce blesku"
3567
 
3568
- #: wppa-exif-iptc-common.php:319 wppa-utils.php:2278
3569
  msgid "Fired, Red-eye reduction"
3570
  msgstr "Záblesk, redukce červených očí"
3571
 
3572
- #: wppa-exif-iptc-common.php:321 wppa-utils.php:2279
3573
  msgid "Fired, Red-eye reduction, Return not detected"
3574
  msgstr "Záblesk, redukce červených očí, nedetekován návrat"
3575
 
3576
- #: wppa-exif-iptc-common.php:323 wppa-utils.php:2280
3577
  msgid "Fired, Red-eye reduction, Return detected"
3578
  msgstr "Záblesk, redukce červených očí, detekován návrat"
3579
 
3580
- #: wppa-exif-iptc-common.php:325 wppa-utils.php:2281
3581
  msgid "On, Red-eye reduction"
3582
  msgstr "Zapnuto, redukce červených očí"
3583
 
3584
- #: wppa-exif-iptc-common.php:327 wppa-utils.php:2282
3585
  msgid "Red-eye reduction, Return not detected"
3586
  msgstr "Redukce červených očí, nedetekován návrat"
3587
 
3588
- #: wppa-exif-iptc-common.php:329 wppa-utils.php:2283
3589
  msgid "On, Red-eye reduction, Return detected"
3590
  msgstr "Zapnuto, redukce červených očí, detekován návrat"
3591
 
3592
- #: wppa-exif-iptc-common.php:331 wppa-utils.php:2284
3593
  msgid "Off, Red-eye reduction"
3594
  msgstr "Vypnuto, redukce červených očí"
3595
 
3596
- #: wppa-exif-iptc-common.php:333 wppa-utils.php:2285
3597
  msgid "Auto, Did not fire, Red-eye reduction"
3598
  msgstr "Automatika, bez záblesku, redikce červených očí"
3599
 
3600
- #: wppa-exif-iptc-common.php:335 wppa-utils.php:2286
3601
  msgid "Auto, Fired, Red-eye reduction"
3602
  msgstr "Automatika, záblesk, redikce červených očí"
3603
 
3604
- #: wppa-exif-iptc-common.php:337 wppa-utils.php:2287
3605
  msgid "Auto, Fired, Red-eye reduction, Return not detected"
3606
  msgstr "Automatika, záblesk, redikce červených očí, nedetekován návrat"
3607
 
3608
- #: wppa-exif-iptc-common.php:339 wppa-utils.php:2288
3609
  msgid "Auto, Fired, Red-eye reduction, Return detected"
3610
  msgstr "Automatika, záblesk, redikce červených očí, detekován návrat"
3611
 
@@ -3711,12 +3713,12 @@ msgstr "Nelze vložit do databáze."
3711
  msgid "WPPA+ Featured Photos"
3712
  msgstr "Nejlépe hodnocené fotky"
3713
 
3714
- #: wppa-featen-widget.php:15 wppa-featen-widget.php:128
3715
  #, fuzzy
3716
  msgid "Featured Photos"
3717
  msgstr "Nejlépe hodnocené fotky"
3718
 
3719
- #: wppa-featen-widget.php:74
3720
  msgid "View the featured photos"
3721
  msgstr "Zobrazit nejlépe hodnocené fotky"
3722
 
@@ -3724,7 +3726,7 @@ msgstr "Zobrazit nejlépe hodnocené fotky"
3724
  msgid "No related photos found."
3725
  msgstr "Žádná podobná fotka."
3726
 
3727
- #: wppa-functions.php:935
3728
  #, php-format
3729
  msgid ""
3730
  "There are %s albums found. Only the first %s will be shown. Please refine "
@@ -3733,217 +3735,217 @@ msgstr ""
3733
  "Bylo nalezeno %s alb. Je zobrazeno pouze prvních %s. Zpřesněte prosím "
3734
  "vyhledávací podmínku."
3735
 
3736
- #: wppa-functions.php:1919 wppa-links.php:717 wppa-links.php:734
3737
- #: wppa-thumbnails.php:587
3738
  msgid "Are you sure you want to remove this photo?"
3739
  msgstr "Opravdu chcete smazat tuto fotku?"
3740
 
3741
- #: wppa-functions.php:2080
3742
  msgid "Comment edited"
3743
  msgstr "Komentář upraven"
3744
 
3745
- #: wppa-functions.php:2085
3746
  #, fuzzy
3747
  msgid "Photo comment"
3748
  msgstr "Váš komentář:"
3749
 
3750
- #: wppa-functions.php:2089
3751
  msgid "Comment on photo:"
3752
  msgstr "Komentovat fotky:"
3753
 
3754
- #: wppa-functions.php:2100
3755
  msgid "wrote on photo"
3756
  msgstr "napsáno k fotce"
3757
 
3758
- #: wppa-functions.php:2104
3759
  msgid "Moderate comment admin"
3760
  msgstr "Administrace moderování komentářů"
3761
 
3762
- #: wppa-functions.php:2107 wppa-functions.php:4098 wppa-upload.php:1427
3763
  msgid "Moderate manage photo"
3764
  msgstr "Správa úprav fotek"
3765
 
3766
- #: wppa-functions.php:2121
3767
  msgid "You receive this email as you are assigned to moderate"
3768
  msgstr "Dostáváte tento e-mail, protože jste přidedělen k jeho moderování"
3769
 
3770
- #: wppa-functions.php:2133
3771
  msgid "You receive this email as administrator of the site"
3772
  msgstr "Dostáváte tento e-mail jako správce webu"
3773
 
3774
- #: wppa-functions.php:2150
3775
  msgid "You receive this email as uploader of the photo"
3776
  msgstr "Dostanete tento e-mail jako autor nahrání fotek"
3777
 
3778
- #: wppa-functions.php:2167
3779
  msgid "You receive this email as owner of the album"
3780
  msgstr "Dostáváte tento e-mail jako vlastník alba"
3781
 
3782
- #: wppa-functions.php:2184
3783
  #, fuzzy
3784
  msgid "You receive this email because you commented this photo earlier."
3785
  msgstr "Dostáváte tento e-mail, protože jste přidedělen k jeho moderování"
3786
 
3787
- #: wppa-functions.php:2210
3788
  msgid "Comment added"
3789
  msgstr "Komentář byl odeslán"
3790
 
3791
- #: wppa-functions.php:2216
3792
  msgid ""
3793
  "Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the "
3794
  "computation."
3795
  msgstr "Bohužel, špatná odpověď.\\n\\nZkuste to znuvu."
3796
 
3797
- #: wppa-functions.php:2227
3798
  msgid "Could not process comment.\\nProbably timed out."
3799
  msgstr ""
3800
  "Nelze zpravovat komentář.\\nPravděpodobně vypršel časový limit zpracování."
3801
 
3802
- #: wppa-functions.php:2310
3803
  #, fuzzy, php-format
3804
  msgid "1 Comment"
3805
  msgid_plural "%s Comments"
3806
  msgstr[0] "1 komentář"
3807
  msgstr[1] "1 komentář"
3808
 
3809
- #: wppa-functions.php:2346 wppa-links.php:1405
3810
  msgid "A video can not be printed or downloaded"
3811
  msgstr ""
3812
 
3813
- #: wppa-functions.php:2785
3814
  #, fuzzy
3815
  msgid "ERROR: Illegal attempt to enter a rating."
3816
  msgstr "<b>Chyba: Neplatný pokus o zadání hodnocení.</b>"
3817
 
3818
- #: wppa-functions.php:2798
3819
  #, fuzzy
3820
  msgid "ERROR: Illegal attempt to enter a comment."
3821
  msgstr "<b>Chyba: Neplatný pokus o zapsání komentáře.</b>"
3822
 
3823
- #: wppa-functions.php:3851
3824
  #, fuzzy
3825
  msgid "ERROR: Illegal attempt to create an album."
3826
  msgstr "<b>Chyba: Neplatný pokus o zadání hodnocení.</b>"
3827
 
3828
- #: wppa-functions.php:3855
3829
  #, fuzzy
3830
  msgid "Wrong captcha, please try again"
3831
  msgstr "Vyberte prosím album a opakujte akci"
3832
 
3833
- #: wppa-functions.php:3868
3834
  #, fuzzy, php-format
3835
  msgid "Album #%s created"
3836
  msgstr "Uživatel %s nahrál fotku %s do alba %s"
3837
 
3838
- #: wppa-functions.php:3873
3839
  #, fuzzy
3840
  msgid "Could not create album"
3841
  msgstr "Nelze vložit do databáze."
3842
 
3843
- #: wppa-functions.php:3884
3844
  #, fuzzy
3845
  msgid "ERROR: Illegal attempt to upload a file."
3846
  msgstr "<b>Chyba: Neplatný pokus o nahrání souboru.</b>"
3847
 
3848
- #: wppa-functions.php:3924
3849
  #, fuzzy
3850
  msgid "Photo upload"
3851
  msgstr "Fotky nahrány "
3852
 
3853
- #: wppa-functions.php:3925
3854
  #, fuzzy, php-format
3855
  msgid "Photo successfully uploaded."
3856
  msgid_plural "%s photos successfully uploaded."
3857
  msgstr[0] "Fotka úspěšně nahrána."
3858
  msgstr[1] "Fotka úspěšně nahrána."
3859
 
3860
- #: wppa-functions.php:3926
3861
  #, php-format
3862
  msgid "%s points added."
3863
  msgstr "Body (%s) byly přidány."
3864
 
3865
- #: wppa-functions.php:3930
3866
  msgid "Upload failed"
3867
  msgstr "Nahrávání selhalo"
3868
 
3869
- #: wppa-functions.php:3933
3870
  #, fuzzy, php-format
3871
  msgid "1 Upload failed"
3872
  msgid_plural "%s uploads failed."
3873
  msgstr[0] "Nahrávání selhalo"
3874
  msgstr[1] "Nahrávání selhalo"
3875
 
3876
- #: wppa-functions.php:3970
3877
  msgid "Error during upload"
3878
  msgstr "Chyba počas upload"
3879
 
3880
- #: wppa-functions.php:3975
3881
  msgid "Uploaded file is not an image"
3882
  msgstr "Nahraný súbor nie je obraz"
3883
 
3884
- #: wppa-functions.php:3979
3885
  #, php-format
3886
  msgid ""
3887
  "Only gif, jpg and png image files are supported. Returned filetype = %d."
3888
  msgstr "Podporovány poute formáty gif, jpg a png. Zjištěný typ = % d."
3889
 
3890
- #: wppa-functions.php:3985
3891
  #, fuzzy, php-format
3892
  msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
3893
  msgstr "Max. velikost fotek: %d %d (%2.1f megapixelů)"
3894
 
3895
- #: wppa-functions.php:3991
3896
  #, fuzzy, php-format
3897
  msgid "Uploaded file %s already exists in this album."
3898
  msgstr "Uživatel %s nahrál fotku %s do alba %s"
3899
 
3900
- #: wppa-functions.php:3999
3901
  #, php-format
3902
  msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
3903
  msgstr "Obrázek je příliš velký. Max. velikost fotky: %d %d (%2.1f megapixelu)"
3904
 
3905
- #: wppa-functions.php:4022
3906
  msgid "Could not insert photo into db."
3907
  msgstr "Nelze vložit do databáze."
3908
 
3909
- #: wppa-functions.php:4094 wppa-upload.php:1423
3910
  #, php-format
3911
  msgid "New photo uploaded: %s"
3912
  msgstr "Nová fotka nahrána: %s"
3913
 
3914
- #: wppa-functions.php:4095 wppa-upload.php:1424
3915
  #, fuzzy, php-format
3916
  msgid "User %1$s uploaded photo %2$s into album %3$s"
3917
  msgstr "Uživatel %s nahrál fotku %s do alba %s"
3918
 
3919
- #: wppa-functions.php:4097 wppa-upload.php:1426
3920
  msgid "This upload requires moderation"
3921
  msgstr "Toto nahrání vyžaduje úpravu"
3922
 
3923
- #: wppa-functions.php:4101 wppa-upload.php:1430
3924
  msgid "Details:"
3925
  msgstr "Detaily:"
3926
 
3927
- #: wppa-functions.php:4102 wppa-upload.php:1431 wppa-utils.php:777
3928
- #: wppa-utils.php:789
3929
  msgid "Manage photo"
3930
  msgstr "Spravovat fotky"
3931
 
3932
- #: wppa-functions.php:4244
3933
  msgid "You can upload after"
3934
  msgstr "Můžete nahrát po"
3935
 
3936
- #: wppa-functions.php:4274 wppa-functions.php:4285 wppa-links.php:1034
3937
  #: wppa-non-admin.php:644
3938
  msgid "Download"
3939
  msgstr "Stáhnout"
3940
 
3941
- #: wppa-functions.php:4278 wppa-functions.php:4289
3942
  #, fuzzy
3943
  msgid "Download:"
3944
  msgstr "Stáhnout"
3945
 
3946
- #: wppa-functions.php:4312
3947
  msgid "Zoom in"
3948
  msgstr "Přiblížit"
3949
 
@@ -4391,52 +4393,52 @@ msgstr ""
4391
  msgid "licence."
4392
  msgstr ""
4393
 
4394
- #: wppa-items.php:226 wppa-thumbnails.php:1834
4395
  msgid "Gold medal"
4396
  msgstr ""
4397
 
4398
- #: wppa-items.php:226 wppa-photo-admin-autosave.php:798
4399
- #: wppa-photo-admin-autosave.php:820 wppa-photo-admin-autosave.php:1263
4400
- #: wppa-photo-admin-autosave.php:1380 wppa-photo-admin-autosave.php:1391
4401
  #: wppa-widget-admin.php:126
4402
  msgid "Gold"
4403
  msgstr ""
4404
 
4405
- #: wppa-items.php:227 wppa-thumbnails.php:1835
4406
  msgid "Silver medal"
4407
  msgstr ""
4408
 
4409
- #: wppa-items.php:227 wppa-photo-admin-autosave.php:799
4410
- #: wppa-photo-admin-autosave.php:821 wppa-photo-admin-autosave.php:1264
4411
- #: wppa-photo-admin-autosave.php:1381 wppa-photo-admin-autosave.php:1392
4412
  #: wppa-widget-admin.php:127
4413
  msgid "Silver"
4414
  msgstr ""
4415
 
4416
- #: wppa-items.php:228 wppa-thumbnails.php:1836
4417
  msgid "Bronze medal"
4418
  msgstr ""
4419
 
4420
- #: wppa-items.php:228 wppa-photo-admin-autosave.php:800
4421
- #: wppa-photo-admin-autosave.php:822 wppa-photo-admin-autosave.php:1265
4422
- #: wppa-photo-admin-autosave.php:1382 wppa-photo-admin-autosave.php:1393
4423
  #: wppa-widget-admin.php:128
4424
  msgid "Bronze"
4425
  msgstr ""
4426
 
4427
- #: wppa-items.php:274 wppa-items.php:428 wppa-settings-autosave.php:3191
4428
  msgid "none"
4429
  msgstr "žádný/á"
4430
 
4431
- #: wppa-items.php:304 wppa-items.php:439 wppa-upload.php:99 wppa-upload.php:104
4432
  msgid "unknown"
4433
  msgstr "neznámý/á"
4434
 
4435
- #: wppa-items.php:374 wppa-items.php:395
4436
  msgid "--- deleted ---"
4437
  msgstr "--- smazáno ---"
4438
 
4439
- #: wppa-items.php:384
4440
  msgid "All Albums"
4441
  msgstr "Všechna alba"
4442
 
@@ -4465,18 +4467,18 @@ msgid ""
4465
  msgstr ""
4466
 
4467
  #: wppa-lasten-widget.php:186 wppa-thumbnail-widget.php:218
4468
- #: wppa-topten-widget.php:225
4469
  msgid "Display:"
4470
  msgstr ""
4471
 
4472
  #: wppa-lasten-widget.php:188 wppa-thumbnail-widget.php:220
4473
- #: wppa-topten-widget.php:227
4474
  #, fuzzy
4475
  msgid "thumbnail images"
4476
  msgstr "Stránka s náhledy"
4477
 
4478
  #: wppa-lasten-widget.php:189 wppa-thumbnail-widget.php:221
4479
- #: wppa-topten-widget.php:228
4480
  #, fuzzy
4481
  msgid "photo names"
4482
  msgstr "Zadejte název fotky"
@@ -4530,12 +4532,12 @@ msgstr "Opravdu chcete odebrat tento komentář?"
4530
  msgid "Scheduled for %s"
4531
  msgstr ""
4532
 
4533
- #: wppa-links.php:975 wppa-links.php:978 wppa-slideshow.php:735
4534
  msgid "Previous"
4535
  msgstr "Predcházející"
4536
 
4537
  #: wppa-links.php:985 wppa-links.php:988 wppa-non-admin.php:590
4538
- #: wppa-slideshow.php:738
4539
  msgid "Next"
4540
  msgstr "Další"
4541
 
@@ -4557,36 +4559,36 @@ msgstr ""
4557
  msgid "Error"
4558
  msgstr ""
4559
 
4560
- #: wppa-maintenance.php:118
4561
  #, fuzzy
4562
  msgid "Orphan photos"
4563
  msgstr "Nahrát fotku"
4564
 
4565
- #: wppa-maintenance.php:118
4566
  msgid "This album contains refound lost photos"
4567
  msgstr ""
4568
 
4569
- #: wppa-maintenance.php:660 wppa-photo-admin-autosave.php:1674
4570
- #: wppa-photo-admin-autosave.php:1695 wppa-setup.php:337 wppa.php:365
4571
- #: wppa.php:366
4572
  #, fuzzy
4573
  msgid "Required"
4574
  msgstr "Záblesk"
4575
 
4576
- #: wppa-maintenance.php:736
4577
  msgid "There are no index items."
4578
  msgstr ""
4579
 
4580
- #: wppa-maintenance.php:750
4581
  msgid "There are no error log messages"
4582
  msgstr ""
4583
 
4584
- #: wppa-maintenance.php:823
4585
  #, fuzzy
4586
  msgid "There are no ratings"
4587
  msgstr "Jsou"
4588
 
4589
- #: wppa-maintenance.php:884
4590
  msgid "There are no active sessions"
4591
  msgstr ""
4592
 
@@ -4599,11 +4601,11 @@ msgstr ""
4599
  msgid "Photo Tags Filter"
4600
  msgstr "Foto dne"
4601
 
4602
- #: wppa-multitag-widget.php:72
4603
  msgid "No of columns:"
4604
  msgstr ""
4605
 
4606
- #: wppa-multitag-widget.php:73 wppa-tagcloud-widget.php:68
4607
  msgid "Select multiple tags or --- all ---:"
4608
  msgstr ""
4609
 
@@ -4621,8 +4623,8 @@ msgstr ""
4621
  msgid "Keys: f = next mode; escape = exit; d = dismiss this notice."
4622
  msgstr ""
4623
 
4624
- #: wppa-non-admin.php:581 wppa-settings-autosave.php:3336
4625
- #: wppa-slideshow.php:232
4626
  msgid "Start"
4627
  msgstr "Spustit"
4628
 
@@ -4630,11 +4632,11 @@ msgstr "Spustit"
4630
  msgid "Stop"
4631
  msgstr "Zastavit"
4632
 
4633
- #: wppa-non-admin.php:583 wppa-slideshow.php:231
4634
  msgid "Slower"
4635
  msgstr "Pomaleji"
4636
 
4637
- #: wppa-non-admin.php:584 wppa-slideshow.php:233
4638
  msgid "Faster"
4639
  msgstr "Rychleji"
4640
 
@@ -4654,13 +4656,13 @@ msgstr "Další fotku"
4654
  msgid "Prev."
4655
  msgstr "Předchozí"
4656
 
4657
- #: wppa-non-admin.php:591 wppa-slideshow.php:577 wppa-slideshow.php:581
4658
- #: wppa-slideshow.php:627
4659
  msgid "Average&nbsp;rating"
4660
  msgstr "Průměrné hodnocení"
4661
 
4662
- #: wppa-non-admin.php:592 wppa-slideshow.php:602 wppa-slideshow.php:607
4663
- #: wppa-slideshow.php:612
4664
  msgid "My&nbsp;rating"
4665
  msgstr "Moje&nbsp;hodnocení"
4666
 
@@ -4739,12 +4741,12 @@ msgstr ""
4739
  msgid "Photo %s has been removed."
4740
  msgstr "Fotka %s byla odebrána."
4741
 
4742
- #: wppa-photo-admin-autosave.php:144 wppa-photo-admin-autosave.php:1428
4743
  #, fuzzy
4744
  msgid "No photos matching your search criteria."
4745
  msgstr "Žádné fotky neodpovídají zadaným kritériím vyhledávání."
4746
 
4747
- #: wppa-photo-admin-autosave.php:147 wppa-photo-admin-autosave.php:1431
4748
  #: wppa-widget-admin.php:210
4749
  #, fuzzy
4750
  msgid "No photos yet in this album."
@@ -4786,536 +4788,553 @@ msgstr ""
4786
  msgid "bottom - right"
4787
  msgstr ""
4788
 
4789
- #: wppa-photo-admin-autosave.php:176
4790
  #, fuzzy
4791
  msgid "Preview:"
4792
  msgstr "Predcházející"
4793
 
4794
- #: wppa-photo-admin-autosave.php:178
4795
  #, php-format
4796
  msgid "Album: %d<br />(%s)"
4797
  msgstr ""
4798
 
4799
- #: wppa-photo-admin-autosave.php:181
4800
  msgid "Rotate"
4801
  msgstr ""
4802
 
4803
- #: wppa-photo-admin-autosave.php:182
4804
  #, fuzzy
4805
  msgid "Are you sure you want to rotate this photo left?"
4806
  msgstr "Opravdu chcete smazat tuto fotku?"
4807
 
4808
- #: wppa-photo-admin-autosave.php:184
4809
  #, fuzzy
4810
  msgid "Are you sure you want to rotate this photo 180&deg;?"
4811
  msgstr "Opravdu chcete smazat tuto fotku?"
4812
 
4813
- #: wppa-photo-admin-autosave.php:186
4814
  #, fuzzy
4815
  msgid "Are you sure you want to rotate this photo right?"
4816
  msgstr "Opravdu chcete smazat tuto fotku?"
4817
 
4818
- #: wppa-photo-admin-autosave.php:191
4819
  msgid "If it says 'Photo rotated', the photo is rotated."
4820
  msgstr ""
4821
 
4822
- #: wppa-photo-admin-autosave.php:194
4823
- #, fuzzy
4824
- msgid "Refresh"
4825
- msgstr "Ukončit a obnovit"
4826
-
4827
- #: wppa-photo-admin-autosave.php:195
4828
  #, php-format
4829
  msgid "If it says 'Photo rotated', the photo is rotated. %s the page."
4830
  msgstr ""
4831
 
4832
- #: wppa-photo-admin-autosave.php:209
4833
  msgid "Preview fullsize video"
4834
  msgstr ""
4835
 
4836
- #: wppa-photo-admin-autosave.php:224
4837
  #, fuzzy
4838
  msgid "Preview fullsize photo"
4839
  msgstr "Předcházející fotku"
4840
 
4841
- #: wppa-photo-admin-autosave.php:239
4842
  msgid "Audio disabled"
4843
  msgstr ""
4844
 
4845
- #: wppa-photo-admin-autosave.php:249
4846
  #, fuzzy
4847
  msgid "Upload:"
4848
  msgstr "Nahrát fotku"
4849
 
4850
- #: wppa-photo-admin-autosave.php:255 wppa-photo-admin-autosave.php:277
4851
  msgid "local time"
4852
  msgstr ""
4853
 
4854
- #: wppa-photo-admin-autosave.php:263 wppa-potd-widget.php:157
4855
  msgid "By:"
4856
  msgstr ""
4857
 
4858
- #: wppa-photo-admin-autosave.php:301
4859
  #, fuzzy
4860
  msgid "Rating:"
4861
  msgstr "Hlasování: %s"
4862
 
4863
- #: wppa-photo-admin-autosave.php:307
4864
  msgid "Entries:"
4865
  msgstr ""
4866
 
4867
- #: wppa-photo-admin-autosave.php:307
4868
  msgid "Mean value:"
4869
  msgstr ""
4870
 
4871
- #: wppa-photo-admin-autosave.php:314
4872
  #, php-format
4873
  msgid "Disliked by %d visitors"
4874
  msgstr ""
4875
 
4876
- #: wppa-photo-admin-autosave.php:318
4877
  #, php-format
4878
  msgid "%d pending votes."
4879
  msgstr ""
4880
 
4881
- #: wppa-photo-admin-autosave.php:328
4882
  #, fuzzy
4883
  msgid "Views"
4884
  msgstr "Ukázat: "
4885
 
4886
- #: wppa-photo-admin-autosave.php:339
4887
  #, fuzzy
4888
  msgid "Photo sort order #:"
4889
  msgstr "Fotky nenalezeny."
4890
 
4891
- #: wppa-photo-admin-autosave.php:352
4892
  #, fuzzy
4893
  msgid "Are you sure you want to move this photo?"
4894
  msgstr "Opravdu chcete smazat tuto fotku?"
4895
 
4896
- #: wppa-photo-admin-autosave.php:352
4897
  #, fuzzy
4898
  msgid "Please select an album to move the photo to first."
4899
  msgstr "Vyberte prosím album a opakujte akci"
4900
 
4901
- #: wppa-photo-admin-autosave.php:352
4902
  #, fuzzy
4903
  msgid "Move photo to"
4904
  msgstr "Spravovat fotky"
4905
 
4906
- #: wppa-photo-admin-autosave.php:361
4907
  #, fuzzy
4908
  msgid "Are you sure you want to copy this photo?"
4909
  msgstr "Opravdu chcete smazat tuto fotku?"
4910
 
4911
- #: wppa-photo-admin-autosave.php:361
4912
  #, fuzzy
4913
  msgid "Please select an album to copy the photo to first."
4914
  msgstr "Vyberte prosím album a opakujte akci"
4915
 
4916
- #: wppa-photo-admin-autosave.php:361
4917
  msgid "Copy photo to"
4918
  msgstr ""
4919
 
4920
- #: wppa-photo-admin-autosave.php:372 wppa-photo-admin-autosave.php:1312
4921
  #, fuzzy
4922
  msgid "Are you sure you want to delete this photo?"
4923
  msgstr "Opravdu chcete smazat tuto fotku?"
4924
 
4925
- #: wppa-photo-admin-autosave.php:372
4926
  #, fuzzy
4927
  msgid "Delete photo"
4928
  msgstr "Podobné fotky"
4929
 
4930
- #: wppa-photo-admin-autosave.php:395
4931
  msgid "Autopage Permalink:"
4932
  msgstr ""
4933
 
4934
- #: wppa-photo-admin-autosave.php:408
4935
  #, fuzzy
4936
  msgid "Link url:"
4937
  msgstr "Odkaz na"
4938
 
4939
- #: wppa-photo-admin-autosave.php:413
4940
  msgid "Same tab"
4941
  msgstr ""
4942
 
4943
- #: wppa-photo-admin-autosave.php:414 wppa-settings-autosave.php:4426
4944
- #: wppa-settings-autosave.php:5425
4945
  #, fuzzy
4946
  msgid "New tab"
4947
  msgstr "Album:"
4948
 
4949
- #: wppa-photo-admin-autosave.php:421
4950
  #, fuzzy
4951
  msgid "Link title:"
4952
  msgstr "Odkaz na"
4953
 
4954
- #: wppa-photo-admin-autosave.php:430
4955
  msgid ""
4956
  "If you want this link to be used, check 'PS Overrule' checkbox in table VI."
4957
  msgstr ""
4958
 
4959
- #: wppa-photo-admin-autosave.php:440
4960
  msgid "HTML Alt attribute:"
4961
  msgstr ""
4962
 
4963
- #: wppa-photo-admin-autosave.php:460
4964
  #, fuzzy
4965
  msgid "Filename:"
4966
  msgstr "Vaše jméno:"
4967
 
4968
- #: wppa-photo-admin-autosave.php:466
4969
  #, fuzzy
4970
  msgid "Update file"
4971
  msgstr "Album:"
4972
 
4973
- #: wppa-photo-admin-autosave.php:477 wppa-settings-autosave.php:2938
4974
  msgid "Upload"
4975
  msgstr "Nahrát fotku"
4976
 
4977
- #: wppa-photo-admin-autosave.php:487
4978
  msgid "Video size:"
4979
  msgstr ""
4980
 
4981
- #: wppa-photo-admin-autosave.php:493 wppa-slideshow-widget.php:203
4982
  msgid "Width:"
4983
  msgstr ""
4984
 
4985
- #: wppa-photo-admin-autosave.php:496 wppa-photo-admin-autosave.php:504
4986
  #, php-format
4987
  msgid "pix, (0=default:%s)"
4988
  msgstr ""
4989
 
4990
- #: wppa-photo-admin-autosave.php:501 wppa-slideshow-widget.php:204
4991
  msgid "Height:"
4992
  msgstr ""
4993
 
4994
- #: wppa-photo-admin-autosave.php:512 wppa-photo-admin-autosave.php:534
4995
  msgid "Formats:"
4996
  msgstr ""
4997
 
4998
- #: wppa-photo-admin-autosave.php:520 wppa-photo-admin-autosave.php:542
4999
  msgid "Filesize:"
5000
  msgstr ""
5001
 
5002
- #: wppa-photo-admin-autosave.php:554
5003
  #, fuzzy
5004
  msgid "Poster:"
5005
  msgstr "Příspěvek:"
5006
 
5007
- #: wppa-photo-admin-autosave.php:554
5008
  #, fuzzy
5009
  msgid "Photo sizes:"
5010
  msgstr "Foto"
5011
 
5012
- #: wppa-photo-admin-autosave.php:560
5013
  msgid "Source file:"
5014
  msgstr ""
5015
 
5016
- #: wppa-photo-admin-autosave.php:573
5017
  msgid "Remake display file and thumbnail file"
5018
  msgstr ""
5019
 
5020
- #: wppa-photo-admin-autosave.php:573
5021
  msgid "Remake files"
5022
  msgstr ""
5023
 
5024
- #: wppa-photo-admin-autosave.php:578 wppa-photo-admin-autosave.php:603
5025
- #: wppa-photo-admin-autosave.php:626
5026
  msgid "Unavailable"
5027
  msgstr ""
5028
 
5029
- #: wppa-photo-admin-autosave.php:588
5030
  msgid "Display file:"
5031
  msgstr ""
5032
 
5033
- #: wppa-photo-admin-autosave.php:613
5034
  #, fuzzy
5035
  msgid "Thumbnail file:"
5036
  msgstr "Stránka s náhledy"
5037
 
5038
- #: wppa-photo-admin-autosave.php:632
5039
  #, fuzzy
5040
  msgid "Remake thumbnail file"
5041
  msgstr "Stránka s náhledy"
5042
 
5043
- #: wppa-photo-admin-autosave.php:632 wppa-settings-autosave.php:6143
5044
  msgid "Remake"
5045
  msgstr ""
5046
 
5047
- #: wppa-photo-admin-autosave.php:644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5048
  #, fuzzy
5049
  msgid "Location:"
5050
  msgstr "Pozice:"
5051
 
5052
- #: wppa-photo-admin-autosave.php:652
5053
  msgid "Lat:"
5054
  msgstr ""
5055
 
5056
- #: wppa-photo-admin-autosave.php:653
5057
  msgid "Lon:"
5058
  msgstr ""
5059
 
5060
- #: wppa-photo-admin-autosave.php:655
5061
  msgid "Refresh the page after changing to see the degrees being updated"
5062
  msgstr ""
5063
 
5064
- #: wppa-photo-admin-autosave.php:665
5065
  #, fuzzy
5066
  msgid "Photoname:"
5067
  msgstr "Foto dne"
5068
 
5069
- #: wppa-photo-admin-autosave.php:671
5070
  #, fuzzy
5071
  msgid "Update Photo name"
5072
  msgstr "Zadejte název fotky"
5073
 
5074
- #: wppa-photo-admin-autosave.php:697
5075
  #, fuzzy
5076
  msgid "Update Photo description"
5077
  msgstr "Zadat/upravit popis fotky"
5078
 
5079
- #: wppa-photo-admin-autosave.php:755
5080
  msgid "Tags:"
5081
  msgstr ""
5082
 
5083
- #: wppa-photo-admin-autosave.php:763
5084
  msgid "Separate tags with commas."
5085
  msgstr ""
5086
 
5087
- #: wppa-photo-admin-autosave.php:774
5088
  #, fuzzy
5089
  msgid "No tags yet"
5090
  msgstr "Zatím nebylo založeno žádné album"
5091
 
5092
- #: wppa-photo-admin-autosave.php:786
5093
  msgid "Status:"
5094
  msgstr ""
5095
 
5096
- #: wppa-photo-admin-autosave.php:795 wppa-photo-admin-autosave.php:818
5097
- #: wppa-photo-admin-autosave.php:1260 wppa-photo-admin-autosave.php:1377
5098
- #: wppa-photo-admin-autosave.php:1389 wppa-widget-admin.php:124
5099
  #, fuzzy
5100
  msgid "Publish"
5101
  msgstr "Nepublikováno"
5102
 
5103
- #: wppa-photo-admin-autosave.php:797 wppa-photo-admin-autosave.php:819
5104
- #: wppa-photo-admin-autosave.php:1262 wppa-photo-admin-autosave.php:1379
5105
  #: wppa-widget-admin.php:125
5106
  #, fuzzy
5107
  msgid "Featured"
5108
  msgstr "Nejlépe hodnocené fotky"
5109
 
5110
- #: wppa-photo-admin-autosave.php:801 wppa-photo-admin-autosave.php:823
5111
- #: wppa-photo-admin-autosave.php:1266 wppa-photo-admin-autosave.php:1383
5112
- #: wppa-photo-admin-autosave.php:1394
5113
  msgid "Scheduled"
5114
  msgstr ""
5115
 
5116
- #: wppa-photo-admin-autosave.php:802 wppa-photo-admin-autosave.php:824
5117
- #: wppa-photo-admin-autosave.php:1267 wppa-photo-admin-autosave.php:1384
5118
- #: wppa-photo-admin-autosave.php:1395
5119
  msgid "Private"
5120
  msgstr ""
5121
 
5122
- #: wppa-photo-admin-autosave.php:833
5123
  msgid ""
5124
  "Note: Featured photos should have a descriptive name; a name a search engine "
5125
  "will look for!"
5126
  msgstr ""
5127
 
5128
- #: wppa-photo-admin-autosave.php:843
5129
  msgid "Watermark:"
5130
  msgstr ""
5131
 
5132
- #: wppa-photo-admin-autosave.php:850 wppa-photo-admin-autosave.php:863
5133
  msgid "File:"
5134
  msgstr ""
5135
 
5136
- #: wppa-photo-admin-autosave.php:855 wppa-photo-admin-autosave.php:864
5137
  msgid "Pos:"
5138
  msgstr ""
5139
 
5140
- #: wppa-photo-admin-autosave.php:859
5141
  #, fuzzy
5142
  msgid "Apply watermark"
5143
  msgstr "Použít soubor s vodoznakem:"
5144
 
5145
- #: wppa-photo-admin-autosave.php:859
5146
  msgid "Are you sure? Once applied it can not be removed!"
5147
  msgstr ""
5148
 
5149
- #: wppa-photo-admin-autosave.php:859
5150
  msgid "And I do not know if there is already a watermark on this photo"
5151
  msgstr ""
5152
 
5153
- #: wppa-photo-admin-autosave.php:869
5154
  #, fuzzy
5155
  msgid "Not configured"
5156
  msgstr "Není definovaná"
5157
 
5158
- #: wppa-photo-admin-autosave.php:883
5159
  #, php-format
5160
  msgid "Video %s is not modified yet"
5161
  msgstr ""
5162
 
5163
- #: wppa-photo-admin-autosave.php:886
5164
  #, fuzzy, php-format
5165
  msgid "Photo %s is not modified yet"
5166
  msgstr "Fotky nenalezeny."
5167
 
5168
- #: wppa-photo-admin-autosave.php:905
5169
  msgid "Single image shortcode"
5170
  msgstr ""
5171
 
5172
- #: wppa-photo-admin-autosave.php:911
5173
  msgid "Permalink"
5174
  msgstr ""
5175
 
5176
- #: wppa-photo-admin-autosave.php:916
5177
  msgid "Hi resolution url"
5178
  msgstr ""
5179
 
5180
- #: wppa-photo-admin-autosave.php:921
5181
  msgid "Display file url"
5182
  msgstr ""
5183
 
5184
- #: wppa-photo-admin-autosave.php:927
5185
  #, fuzzy
5186
  msgid "Thumbnail file url"
5187
  msgstr "Stránka s náhledy"
5188
 
5189
- #: wppa-photo-admin-autosave.php:971 wppa-photo-admin-autosave.php:981
5190
  msgid "Trash"
5191
  msgstr ""
5192
 
5193
- #: wppa-photo-admin-autosave.php:1097
5194
  #, php-format
5195
  msgid "Time is out after processing %d out of %d items."
5196
  msgstr ""
5197
 
5198
- #: wppa-photo-admin-autosave.php:1110
5199
  #, php-format
5200
  msgid "%d photos deleted."
5201
  msgstr ""
5202
 
5203
- #: wppa-photo-admin-autosave.php:1113
5204
  #, php-format
5205
  msgid "%1$s photos moved to album %2$s."
5206
  msgstr ""
5207
 
5208
- #: wppa-photo-admin-autosave.php:1116
5209
  #, fuzzy, php-format
5210
  msgid "%1$s photos copied to album %2$s."
5211
  msgstr "Uživatel %s nahrál fotku %s do alba %s"
5212
 
5213
- #: wppa-photo-admin-autosave.php:1119
5214
  #, php-format
5215
  msgid "Changed status to %1$s on %2$s photos."
5216
  msgstr ""
5217
 
5218
- #: wppa-photo-admin-autosave.php:1122
5219
  #, php-format
5220
  msgid "Changed owner to %1$s on %2$s photos."
5221
  msgstr ""
5222
 
5223
- #: wppa-photo-admin-autosave.php:1125
5224
  #, fuzzy, php-format
5225
  msgid "%d photos processed."
5226
  msgstr "%s fotek úspěšně nahráno."
5227
 
5228
- #: wppa-photo-admin-autosave.php:1245
5229
  msgid "Move to"
5230
  msgstr ""
5231
 
5232
- #: wppa-photo-admin-autosave.php:1246
5233
  msgid "Copy to"
5234
  msgstr ""
5235
 
5236
- #: wppa-photo-admin-autosave.php:1248
5237
  msgid "Set status to"
5238
  msgstr ""
5239
 
5240
- #: wppa-photo-admin-autosave.php:1251
5241
  msgid "Set owner to"
5242
  msgstr ""
5243
 
5244
- #: wppa-photo-admin-autosave.php:1258
5245
  #, fuzzy
5246
  msgid "- select a status -"
5247
  msgstr "Vyberte prosím album a opakujte akci"
5248
 
5249
- #: wppa-photo-admin-autosave.php:1273
5250
  #, fuzzy
5251
  msgid "- select an owner -"
5252
  msgstr "Vyberte prosím album a opakujte akci"
5253
 
5254
- #: wppa-photo-admin-autosave.php:1285
5255
  msgid "Doit!"
5256
  msgstr ""
5257
 
5258
- #: wppa-photo-admin-autosave.php:1287
5259
  msgid ""
5260
  "Pressing this button will reload the page after executing the selected action"
5261
  msgstr ""
5262
 
5263
- #: wppa-photo-admin-autosave.php:1294 wppa-photo-admin-autosave.php:1413
5264
- #: wppa-settings-autosave.php:7454
5265
  #, fuzzy
5266
  msgid "Preview"
5267
  msgstr "Predcházející"
5268
 
5269
- #: wppa-photo-admin-autosave.php:1299 wppa-photo-admin-autosave.php:1418
5270
  msgid "Remark"
5271
  msgstr ""
5272
 
5273
- #: wppa-photo-admin-autosave.php:1404
5274
  #, fuzzy
5275
  msgid "Not modified"
5276
  msgstr "Není definovaná"
5277
 
5278
- #: wppa-photo-admin-autosave.php:1436
5279
  #, php-format
5280
  msgid "Page %d is empty, try <a href=\"%s\" >page %d</a>."
5281
  msgstr ""
5282
 
5283
- #: wppa-photo-admin-autosave.php:1546
5284
  msgid ""
5285
  "Setting photo sequence order has only effect if the photo order method is "
5286
  "set to <b>Order#</b>"
5287
  msgstr ""
5288
 
5289
- #: wppa-photo-admin-autosave.php:1605
5290
  msgid "Id: "
5291
  msgstr ""
5292
 
5293
- #: wppa-photo-admin-autosave.php:1606 wppa-settings-autosave.php:407
5294
  msgid "Video"
5295
  msgstr ""
5296
 
5297
- #: wppa-photo-admin-autosave.php:1607 wppa-settings-autosave.php:388
5298
  msgid "Audio"
5299
  msgstr ""
5300
 
5301
- #: wppa-photo-admin-autosave.php:1608
5302
  msgid "Ord: "
5303
  msgstr ""
5304
 
5305
- #: wppa-photo-admin-autosave.php:1621
5306
  #, fuzzy
5307
  msgid "The album is empty."
5308
  msgstr "Žádné album ještě není definované."
5309
 
5310
- #: wppa-photo-admin-autosave.php:1721
5311
  msgid "Combined"
5312
  msgstr ""
5313
 
5314
- #: wppa-photo-admin-autosave.php:1758
5315
  msgid "Word"
5316
  msgstr ""
5317
 
5318
- #: wppa-photo-admin-autosave.php:1761
5319
  msgid "Count"
5320
  msgstr ""
5321
 
@@ -5329,7 +5348,7 @@ msgstr "Foto dne"
5329
  msgid "Photo Of The Day"
5330
  msgstr "Foto dne"
5331
 
5332
- #: wppa-potd-widget.php:186
5333
  msgid ""
5334
  "You can set the content and the sizes in this widget in the <b>Photo Albums -"
5335
  "> Sidebar Widget</b> admin page."
@@ -5353,137 +5372,137 @@ msgstr ""
5353
  msgid "WPPA+ Search Photos"
5354
  msgstr ""
5355
 
5356
- #: wppa-search-widget.php:14 wppa-search-widget.php:35
5357
- #: wppa-search-widget.php:63
5358
  #, fuzzy
5359
  msgid "Search Photos"
5360
  msgstr "Super View fotky"
5361
 
5362
- #: wppa-search-widget.php:77
5363
  msgid "Text:"
5364
  msgstr ""
5365
 
5366
- #: wppa-search-widget.php:81
5367
  msgid ""
5368
  "Enter optional text that will appear before the input box. This may contain "
5369
  "HTML so you can change font size and color."
5370
  msgstr ""
5371
 
5372
- #: wppa-search-widget.php:85
5373
  msgid "Enable rootsearch"
5374
  msgstr ""
5375
 
5376
- #: wppa-search-widget.php:91
5377
  msgid "Enable subsearch"
5378
  msgstr ""
5379
 
5380
- #: wppa-settings-autosave.php:121
5381
  msgid "Saved settings restored"
5382
  msgstr ""
5383
 
5384
- #: wppa-settings-autosave.php:124
5385
  msgid "Unable to restore saved settings"
5386
  msgstr ""
5387
 
5388
- #: wppa-settings-autosave.php:130
5389
  msgid "Reset to default settings"
5390
  msgstr ""
5391
 
5392
- #: wppa-settings-autosave.php:133
5393
  msgid "Unable to set defaults"
5394
  msgstr ""
5395
 
5396
- #: wppa-settings-autosave.php:138
5397
  #, php-format
5398
  msgid "Skinfile %s loaded"
5399
  msgstr ""
5400
 
5401
- #: wppa-settings-autosave.php:149 wppa-settings-autosave.php:171
5402
- #: wppa-settings-autosave.php:192
5403
  #, fuzzy, php-format
5404
  msgid "Upload error %s"
5405
  msgstr "Nahrát fotky"
5406
 
5407
- #: wppa-settings-autosave.php:154
5408
  #, fuzzy, php-format
5409
  msgid "Uploaded file %s is not a .png file"
5410
  msgstr "Nahraný súbor nie je obraz"
5411
 
5412
- #: wppa-settings-autosave.php:158 wppa-settings-autosave.php:179
5413
- #: wppa-settings-autosave.php:215
5414
  #, fuzzy, php-format
5415
  msgid "Upload of %s done"
5416
  msgstr "Nahrát fotku"
5417
 
5418
- #: wppa-settings-autosave.php:163 wppa-settings-autosave.php:184
5419
- #: wppa-settings-autosave.php:220
5420
  msgid "No file selected or error on upload"
5421
  msgstr ""
5422
 
5423
- #: wppa-settings-autosave.php:175
5424
  #, fuzzy, php-format
5425
  msgid "Uploaded file %s is not a .ttf file"
5426
  msgstr "Nahraný súbor nie je obraz"
5427
 
5428
- #: wppa-settings-autosave.php:197
5429
  #, fuzzy, php-format
5430
  msgid "Uploaded file %s is not a valid image file"
5431
  msgstr "Nahraný súbor nie je obraz"
5432
 
5433
- #: wppa-settings-autosave.php:276
5434
  #, php-format
5435
  msgid ""
5436
  "%s invalid ratings removed. Please run Table VIII-A5: Rerate to fix the "
5437
  "averages."
5438
  msgstr ""
5439
 
5440
- #: wppa-settings-autosave.php:286
5441
  #, php-format
5442
  msgid "%s obsolete settings removed."
5443
  msgstr ""
5444
 
5445
- #: wppa-settings-autosave.php:295
5446
  #, fuzzy
5447
  msgid "WP Photo Album Plus Settings"
5448
  msgstr "Fotoalba"
5449
 
5450
- #: wppa-settings-autosave.php:296
5451
  msgid "Database revision:"
5452
  msgstr ""
5453
 
5454
- #: wppa-settings-autosave.php:296
5455
  msgid "WP Charset:"
5456
  msgstr ""
5457
 
5458
- #: wppa-settings-autosave.php:299
5459
  msgid "Multisite in singlesite mode."
5460
  msgstr ""
5461
 
5462
- #: wppa-settings-autosave.php:302
5463
  msgid "Multisite enabled."
5464
  msgstr ""
5465
 
5466
- #: wppa-settings-autosave.php:304
5467
  msgid "Blogid ="
5468
  msgstr ""
5469
 
5470
- #: wppa-settings-autosave.php:321
5471
  msgid "Please de-activate plugin <i style=\"font-size:14px;\">"
5472
  msgstr ""
5473
 
5474
- #: wppa-settings-autosave.php:321
5475
  msgid ". </i>This plugin will cause wppa+ to function not properly."
5476
  msgstr ""
5477
 
5478
- #: wppa-settings-autosave.php:331
5479
  msgid "Please note that plugin <i style=\"font-size:14px;\">"
5480
  msgstr ""
5481
 
5482
- #: wppa-settings-autosave.php:331
5483
  msgid "</i> can cause wppa+ to function not properly if it is misconfigured."
5484
  msgstr ""
5485
 
5486
- #: wppa-settings-autosave.php:336 wppa-upload.php:93
5487
  msgid ""
5488
  "There is a serious misconfiguration in your servers PHP config. Function "
5489
  "imagecreatefromjpeg() does not exist. You will encounter problems when "
@@ -5491,591 +5510,601 @@ msgid ""
5491
  "hosting provider to add GD support with a minimal version 1.8."
5492
  msgstr ""
5493
 
5494
- #: wppa-settings-autosave.php:341
5495
  msgid "Rebuilding the Album index needs completion. See Table VIII"
5496
  msgstr ""
5497
 
5498
- #: wppa-settings-autosave.php:342
5499
  msgid "Rebuilding the Photo index needs completion. See Table VIII"
5500
  msgstr ""
5501
 
5502
- #: wppa-settings-autosave.php:344
5503
  msgid "Remove empty albums needs completion. See Table VIII"
5504
  msgstr ""
5505
 
5506
- #: wppa-settings-autosave.php:345
5507
  msgid "Applying new photo description needs completion. See Table VIII"
5508
  msgstr ""
5509
 
5510
- #: wppa-settings-autosave.php:346
5511
  msgid "Appending to photo description needs completion. See Table VIII"
5512
  msgstr ""
5513
 
5514
- #: wppa-settings-autosave.php:347
5515
  msgid "Removing from photo description needs completion. See Table VIII"
5516
  msgstr ""
5517
 
5518
- #: wppa-settings-autosave.php:348
5519
  msgid "Removing file extensions needs completion. See Table VIII"
5520
  msgstr ""
5521
 
5522
- #: wppa-settings-autosave.php:349
5523
  msgid "Regenerating the Thumbnails needs completion. See Table VIII"
5524
  msgstr ""
5525
 
5526
- #: wppa-settings-autosave.php:350
5527
  msgid "Rerating needs completion. See Table VIII"
5528
  msgstr ""
5529
 
5530
- #: wppa-settings-autosave.php:358
5531
  msgid ""
5532
  "A thumbframe width or height should not be smaller than a thumbnail size. "
5533
  "Please correct the corresponding setting(s) in Table I-C"
5534
  msgstr ""
5535
 
5536
- #: wppa-settings-autosave.php:363
5537
  msgid "Show legenda"
5538
  msgstr ""
5539
 
5540
- #: wppa-settings-autosave.php:365
5541
  msgid "Legenda:"
5542
  msgstr ""
5543
 
5544
- #: wppa-settings-autosave.php:366 wppa-settings-autosave.php:368
5545
- #: wppa-settings-autosave.php:1881 wppa-settings-autosave.php:5147
5546
  msgid "Button"
5547
  msgstr ""
5548
 
5549
- #: wppa-settings-autosave.php:366
5550
  msgid "action that causes page reload."
5551
  msgstr ""
5552
 
5553
- #: wppa-settings-autosave.php:368 wppa-settings-autosave.php:8795
5554
- #: wppa-settings-autosave.php:8814
5555
  msgid "Are you sure?"
5556
  msgstr ""
5557
 
5558
- #: wppa-settings-autosave.php:369
5559
  msgid "action that does not cause page reload."
5560
  msgstr ""
5561
 
5562
- #: wppa-settings-autosave.php:371 wppa-settings-autosave.php:7343
5563
- #: wppa-settings-autosave.php:7345 wppa-settings-autosave.php:8497
5564
- #: wppa-settings-autosave.php:8513 wppa-settings-autosave.php:8541
5565
- #: wppa-settings-autosave.php:8565 wppa-settings-autosave.php:8595
5566
- #: wppa-settings-autosave.php:8622 wppa-settings-autosave.php:8648
5567
- #: wppa-settings-autosave.php:8664 wppa-settings-autosave.php:8717
5568
- #: wppa-settings-autosave.php:8747
5569
  msgid "Setting unmodified"
5570
  msgstr ""
5571
 
5572
- #: wppa-settings-autosave.php:373
5573
  msgid "Update in progress"
5574
  msgstr ""
5575
 
5576
- #: wppa-settings-autosave.php:375
5577
  #, fuzzy
5578
  msgid "Setting updated"
5579
  msgstr "Nastavení"
5580
 
5581
- #: wppa-settings-autosave.php:377
5582
  #, fuzzy
5583
  msgid "Update failed"
5584
  msgstr "Nahrávání selhalo"
5585
 
5586
- #: wppa-settings-autosave.php:379
5587
  msgid "Hide this"
5588
  msgstr ""
5589
 
5590
- #: wppa-settings-autosave.php:385
5591
  msgid "System"
5592
  msgstr ""
5593
 
5594
- #: wppa-settings-autosave.php:386
5595
  msgid "Access"
5596
  msgstr ""
5597
 
5598
- #: wppa-settings-autosave.php:390
5599
  msgid "Counts"
5600
  msgstr ""
5601
 
5602
- #: wppa-settings-autosave.php:391
5603
  msgid "Covers"
5604
  msgstr ""
5605
 
5606
- #: wppa-settings-autosave.php:392
5607
  msgid "Layout"
5608
  msgstr ""
5609
 
5610
- #: wppa-settings-autosave.php:393 wppa-settings-autosave.php:4376
5611
  msgid "Lightbox"
5612
  msgstr ""
5613
 
5614
- #: wppa-settings-autosave.php:394
5615
  #, fuzzy
5616
  msgid "Links"
5617
  msgstr "Odkaz na"
5618
 
5619
- #: wppa-settings-autosave.php:395
5620
  msgid "Metadata"
5621
  msgstr ""
5622
 
5623
- #: wppa-settings-autosave.php:396
5624
  msgid "Navigation"
5625
  msgstr ""
5626
 
5627
- #: wppa-settings-autosave.php:397 wppa-settings-autosave.php:1455
5628
- #: wppa-settings-autosave.php:7690
5629
  #, fuzzy
5630
  msgid "Page"
5631
  msgstr "Strana:"
5632
 
5633
- #: wppa-settings-autosave.php:398 wppa-settings-autosave.php:7486
5634
- #: wppa-settings-autosave.php:7531
5635
  #, fuzzy
5636
  msgid "Rating"
5637
  msgstr "Hlasování: %s"
5638
 
5639
- #: wppa-settings-autosave.php:400
5640
  msgid "Sizes"
5641
  msgstr ""
5642
 
5643
- #: wppa-settings-autosave.php:401
5644
  #, fuzzy
5645
  msgid "Slideshows"
5646
  msgstr "Slideshow"
5647
 
5648
- #: wppa-settings-autosave.php:402
5649
  msgid "Social Media"
5650
  msgstr ""
5651
 
5652
- #: wppa-settings-autosave.php:404
5653
  #, fuzzy
5654
  msgid "Uploads"
5655
  msgstr "Nahrát fotku"
5656
 
5657
- #: wppa-settings-autosave.php:405
5658
  msgid "Widgets"
5659
  msgstr ""
5660
 
5661
- #: wppa-settings-autosave.php:406 wppa-settings-autosave.php:7324
5662
  msgid "Watermark"
5663
  msgstr ""
5664
 
5665
- #: wppa-settings-autosave.php:414
5666
  msgid "Click on the banner of a (sub)table to open/close it, or"
5667
  msgstr ""
5668
 
5669
- #: wppa-settings-autosave.php:416
5670
  msgid "Show settings related to:"
5671
  msgstr ""
5672
 
5673
- #: wppa-settings-autosave.php:422
5674
  msgid "and ( optionally ) to:"
5675
  msgstr ""
5676
 
5677
- #: wppa-settings-autosave.php:436
5678
  msgid "Quick setup"
5679
  msgstr ""
5680
 
5681
- #: wppa-settings-autosave.php:438
5682
  msgid "Do a quick initial setup"
5683
  msgstr ""
5684
 
5685
- #: wppa-settings-autosave.php:439
5686
  msgid "Close quick setup"
5687
  msgstr ""
5688
 
5689
- #: wppa-settings-autosave.php:446
5690
  msgid "Table O:"
5691
  msgstr ""
5692
 
5693
- #: wppa-settings-autosave.php:446
5694
  msgid "Quick Setup:"
5695
  msgstr ""
5696
 
5697
- #: wppa-settings-autosave.php:447
5698
  msgid "This table enables you to quickly do an inital setup."
5699
  msgstr ""
5700
 
5701
- #: wppa-settings-autosave.php:457 wppa-settings-autosave.php:610
5702
- #: wppa-settings-autosave.php:632 wppa-settings-autosave.php:1332
5703
- #: wppa-settings-autosave.php:1353 wppa-settings-autosave.php:2718
5704
- #: wppa-settings-autosave.php:3061 wppa-settings-autosave.php:4203
5705
- #: wppa-settings-autosave.php:5931 wppa-settings-autosave.php:6557
5706
- #: wppa-settings-autosave.php:8088
5707
  #, fuzzy
5708
  msgid "Setting"
5709
  msgstr "Nastavení"
5710
 
5711
- #: wppa-settings-autosave.php:458 wppa-settings-autosave.php:611
5712
- #: wppa-settings-autosave.php:633 wppa-settings-autosave.php:1333
5713
- #: wppa-settings-autosave.php:1354 wppa-settings-autosave.php:2719
5714
- #: wppa-settings-autosave.php:2743 wppa-settings-autosave.php:3041
5715
- #: wppa-settings-autosave.php:3062 wppa-settings-autosave.php:4204
5716
- #: wppa-settings-autosave.php:4228 wppa-settings-autosave.php:4404
5717
- #: wppa-settings-autosave.php:4428 wppa-settings-autosave.php:5427
5718
- #: wppa-settings-autosave.php:5933 wppa-settings-autosave.php:5957
5719
- #: wppa-settings-autosave.php:6537 wppa-settings-autosave.php:6558
5720
- #: wppa-settings-autosave.php:8089 wppa-settings-autosave.php:8111
5721
- #: wppa-settings-autosave.php:8151 wppa-settings-autosave.php:8173
5722
- #: wppa-settings-autosave.php:8219
5723
  msgid "Help"
5724
  msgstr ""
5725
 
5726
- #: wppa-settings-autosave.php:469
5727
  msgid ""
5728
  "To quickly setup WPPA+ please answer the following questions. You can alway "
5729
  "change any setting later. <span style=\"color:#700\">Click on me!</span>"
5730
  msgstr ""
5731
 
5732
- #: wppa-settings-autosave.php:471
5733
  msgid "Is your theme <i>responsive</i>?"
5734
  msgstr ""
5735
 
5736
- #: wppa-settings-autosave.php:472
5737
  msgid ""
5738
  "Responsive themes have a layout that varies with the size of the browser "
5739
  "window."
5740
  msgstr ""
5741
 
5742
- #: wppa-settings-autosave.php:473
5743
  msgid ""
5744
  "WPPA+ needs to know this to automaticly adept the width of the display to "
5745
  "the available width on the page."
5746
  msgstr ""
5747
 
5748
- #: wppa-settings-autosave.php:480
5749
  msgid "Do you want to downsize photos during upload?"
5750
  msgstr ""
5751
 
5752
- #: wppa-settings-autosave.php:481
5753
  msgid ""
5754
  "Downsizing photos make them load faster to the visitor, without loosing "
5755
  "display quality"
5756
  msgstr ""
5757
 
5758
- #: wppa-settings-autosave.php:482
5759
  msgid ""
5760
  "If you answer yes, the photos will be downsized to max 1024 x 768 pixels. "
5761
  "You can change this later, if you like"
5762
  msgstr ""
5763
 
5764
- #: wppa-settings-autosave.php:489
5765
  #, fuzzy
5766
  msgid "Do you want to save the original photofiles?"
5767
  msgstr "Opravdu chcete smazat tuto fotku?"
5768
 
5769
- #: wppa-settings-autosave.php:490
5770
  msgid "This will require considerable disk space on the server."
5771
  msgstr ""
5772
 
5773
- #: wppa-settings-autosave.php:491
5774
  msgid ""
5775
  "If you answer yes, you will be able to remove watermarks you applied with "
5776
  "wppa+ in a later stage, redo downsizing to a larger size afterwards, and "
5777
  "supply fullsize images for download."
5778
  msgstr ""
5779
 
5780
- #: wppa-settings-autosave.php:498
5781
  #, fuzzy
5782
  msgid "May visitors upload photos?"
5783
  msgstr "Nedávno nahrané fotografie"
5784
 
5785
- #: wppa-settings-autosave.php:499
5786
  msgid ""
5787
  "It is safe to do so, but i will have to do some settings to keep it safe!"
5788
  msgstr ""
5789
 
5790
- #: wppa-settings-autosave.php:500
5791
  msgid ""
5792
  "If you answer yes, i will assume you want to enable logged in users to "
5793
  "upload photos at the front-end of the website and allow them to edit their "
5794
  "photos name and descriptions."
5795
  msgstr ""
5796
 
5797
- #: wppa-settings-autosave.php:501
5798
  msgid ""
5799
  "The photos will be hold for moderation, the admin will get notified by email."
5800
  msgstr ""
5801
 
5802
- #: wppa-settings-autosave.php:502
5803
  msgid ""
5804
  "Each user will get his own album to upload to. These settings can be changed "
5805
  "later."
5806
  msgstr ""
5807
 
5808
- #: wppa-settings-autosave.php:509
5809
  msgid "Do you want the rating system active?"
5810
  msgstr ""
5811
 
5812
- #: wppa-settings-autosave.php:510
5813
  msgid "Enable the rating system and show the votes in the slideshow."
5814
  msgstr ""
5815
 
5816
- #: wppa-settings-autosave.php:511
5817
  msgid "You can configure the details of the rating system later"
5818
  msgstr ""
5819
 
5820
- #: wppa-settings-autosave.php:518
5821
  msgid "Do you want the comment system active?"
5822
  msgstr ""
5823
 
5824
- #: wppa-settings-autosave.php:519
5825
  msgid "Enable the comment system and show the comments in the slideshow."
5826
  msgstr ""
5827
 
5828
- #: wppa-settings-autosave.php:520
5829
  msgid "You can configure the details of the comment system later"
5830
  msgstr ""
5831
 
5832
- #: wppa-settings-autosave.php:527
5833
  msgid "Do you want the social media share buttons displayed?"
5834
  msgstr ""
5835
 
5836
- #: wppa-settings-autosave.php:528
5837
  msgid "Display the social media buttons in the slideshow"
5838
  msgstr ""
5839
 
5840
- #: wppa-settings-autosave.php:529
5841
  msgid ""
5842
  "These buttons share the specific photo rather than the page where it is "
5843
  "displayed on"
5844
  msgstr ""
5845
 
5846
- #: wppa-settings-autosave.php:536
5847
  msgid "Are you going to use IPTC data?"
5848
  msgstr ""
5849
 
5850
- #: wppa-settings-autosave.php:537
5851
  msgid ""
5852
  "IPTC data is information you may have added in a photo manipulation program."
5853
  msgstr ""
5854
 
5855
- #: wppa-settings-autosave.php:538 wppa-settings-autosave.php:547
5856
  msgid ""
5857
  "The information can be displayed in slideshows and in photo descriptions."
5858
  msgstr ""
5859
 
5860
- #: wppa-settings-autosave.php:545
5861
  msgid "Are you going to use EXIF data?"
5862
  msgstr ""
5863
 
5864
- #: wppa-settings-autosave.php:546
5865
  msgid ""
5866
  "EXIF data is information from the camera like model no, focal distance and "
5867
  "aperture used."
5868
  msgstr ""
5869
 
5870
- #: wppa-settings-autosave.php:554
5871
  msgid "Are you going to use GPX data?"
5872
  msgstr ""
5873
 
5874
- #: wppa-settings-autosave.php:555
5875
  msgid ""
5876
  "Some cameras and mobile devices save the geographic location where the photo "
5877
  "is taken."
5878
  msgstr ""
5879
 
5880
- #: wppa-settings-autosave.php:556
5881
  msgid "A Google map can be displayed in slideshows."
5882
  msgstr ""
5883
 
5884
- #: wppa-settings-autosave.php:563
5885
  msgid "Are you going to use Fotomoto?"
5886
  msgstr ""
5887
 
5888
- #: wppa-settings-autosave.php:564
5889
  msgid ""
5890
  "<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> is an "
5891
  "on-line print service."
5892
  msgstr ""
5893
 
5894
- #: wppa-settings-autosave.php:565
5895
  msgid "If you answer Yes, you will have to open an account on Fotomoto."
5896
  msgstr ""
5897
 
5898
- #: wppa-settings-autosave.php:572
5899
  msgid "Are you going to add videofiles?"
5900
  msgstr ""
5901
 
5902
- #: wppa-settings-autosave.php:573
5903
  msgid "You can mix videos and photos in any album."
5904
  msgstr ""
5905
 
5906
- #: wppa-settings-autosave.php:574 wppa-settings-autosave.php:583
 
5907
  msgid "You can configure the details later"
5908
  msgstr ""
5909
 
5910
- #: wppa-settings-autosave.php:581
5911
  msgid "Are you going to add audiofiles?"
5912
  msgstr ""
5913
 
5914
- #: wppa-settings-autosave.php:582
5915
  msgid "You can add audio to photos in any album."
5916
  msgstr ""
5917
 
5918
- #: wppa-settings-autosave.php:590
 
 
 
 
 
 
 
 
 
5919
  msgid "Done?"
5920
  msgstr ""
5921
 
5922
- #: wppa-settings-autosave.php:591
5923
  msgid "If you are ready answering these questions, select <b>yes</b>"
5924
  msgstr ""
5925
 
5926
- #: wppa-settings-autosave.php:592
5927
  msgid ""
5928
  "You can change any setting later, and be more specific and add a lot of "
5929
  "settings. For now it is enough, go create albums and upload photos!"
5930
  msgstr ""
5931
 
5932
- #: wppa-settings-autosave.php:596
5933
  msgid ""
5934
  "Thank you!. The most important settings are done now. You can refine your "
5935
  "settings, the behaviour and appearance of WPPA+ in the Tables below."
5936
  msgstr ""
5937
 
5938
- #: wppa-settings-autosave.php:621
5939
  msgid "Table I:"
5940
  msgstr ""
5941
 
5942
- #: wppa-settings-autosave.php:621
5943
  msgid "Sizes:"
5944
  msgstr ""
5945
 
5946
- #: wppa-settings-autosave.php:622
5947
  msgid ""
5948
  "This table describes all the sizes and size options (except fontsizes) for "
5949
  "the generation and display of the WPPA+ elements."
5950
  msgstr ""
5951
 
5952
- #: wppa-settings-autosave.php:640
5953
  msgid "WPPA+ global system related size settings"
5954
  msgstr ""
5955
 
5956
- #: wppa-settings-autosave.php:642
5957
  msgid "Column Width"
5958
  msgstr ""
5959
 
5960
- #: wppa-settings-autosave.php:643
5961
  msgid "The width of the main column in your theme's display area."
5962
  msgstr ""
5963
 
5964
- #: wppa-settings-autosave.php:644
5965
  msgid "Enter the width of the main column in your theme's display area."
5966
  msgstr ""
5967
 
5968
- #: wppa-settings-autosave.php:645
5969
  msgid ""
5970
  "You should set this value correctly to make sure the fullsize images are "
5971
  "properly aligned horizontally."
5972
  msgstr ""
5973
 
5974
- #: wppa-settings-autosave.php:646
5975
  msgid ""
5976
  "You may enter 'auto' for use in themes that have a floating content column."
5977
  msgstr ""
5978
 
5979
- #: wppa-settings-autosave.php:647
5980
  msgid "The use of 'auto' is required for responsive themes."
5981
  msgstr ""
5982
 
5983
- #: wppa-settings-autosave.php:650 wppa-settings-autosave.php:659
5984
- #: wppa-settings-autosave.php:771 wppa-settings-autosave.php:914
5985
- #: wppa-settings-autosave.php:925
5986
  msgid "pixels wide"
5987
  msgstr ""
5988
 
5989
- #: wppa-settings-autosave.php:655
5990
  msgid "Initial Width"
5991
  msgstr ""
5992
 
5993
- #: wppa-settings-autosave.php:656
5994
  msgid "The most often displayed colun width in responsive theme"
5995
  msgstr ""
5996
 
5997
- #: wppa-settings-autosave.php:657
5998
  msgid ""
5999
  "Change this value only if your responsive theme shows initially a wrong "
6000
  "column width."
6001
  msgstr ""
6002
 
6003
- #: wppa-settings-autosave.php:664
6004
  msgid "Resize on Upload"
6005
  msgstr ""
6006
 
6007
- #: wppa-settings-autosave.php:665
6008
  msgid "Indicate if the photos should be resized during upload."
6009
  msgstr ""
6010
 
6011
- #: wppa-settings-autosave.php:666
6012
  msgid ""
6013
  "If you check this item, the size of the photos will be reduced to the "
6014
  "dimension specified in the next item during the upload/import process."
6015
  msgstr ""
6016
 
6017
- #: wppa-settings-autosave.php:667
6018
  msgid "The photos will never be stretched during upload if they are smaller."
6019
  msgstr ""
6020
 
6021
- #: wppa-settings-autosave.php:675
6022
  msgid "Resize to"
6023
  msgstr ""
6024
 
6025
- #: wppa-settings-autosave.php:676
6026
  msgid "Resize photos to fit within a given area."
6027
  msgstr ""
6028
 
6029
- #: wppa-settings-autosave.php:677
6030
  msgid "Specify the screensize for the unscaled photos."
6031
  msgstr ""
6032
 
6033
- #: wppa-settings-autosave.php:678
6034
  msgid ""
6035
  "The use of a non-default value is particularly usefull when you make use of "
6036
  "lightbox functionality."
6037
  msgstr ""
6038
 
6039
- #: wppa-settings-autosave.php:680 wppa-settings-autosave.php:702
6040
- #: wppa-settings-autosave.php:713 wppa-settings-autosave.php:722
6041
- #: wppa-settings-autosave.php:803 wppa-settings-autosave.php:826
6042
- #: wppa-settings-autosave.php:833 wppa-settings-autosave.php:854
6043
- #: wppa-settings-autosave.php:864 wppa-settings-autosave.php:958
6044
- #: wppa-settings-autosave.php:992 wppa-settings-autosave.php:1012
6045
- #: wppa-settings-autosave.php:1021 wppa-settings-autosave.php:1032
6046
- #: wppa-settings-autosave.php:1044 wppa-settings-autosave.php:1054
6047
- #: wppa-settings-autosave.php:1064 wppa-settings-autosave.php:1117
6048
- #: wppa-settings-autosave.php:1126 wppa-settings-autosave.php:1137
6049
- #: wppa-settings-autosave.php:1157 wppa-settings-autosave.php:1177
6050
- #: wppa-settings-autosave.php:1197 wppa-settings-autosave.php:1217
6051
- #: wppa-settings-autosave.php:1237 wppa-settings-autosave.php:1257
6052
- #: wppa-settings-autosave.php:1266 wppa-settings-autosave.php:1275
6053
- #: wppa-settings-autosave.php:1310 wppa-settings-autosave.php:1319
6054
- #: wppa-settings-autosave.php:2662 wppa-settings-autosave.php:4249
6055
- #: wppa-settings-autosave.php:4266 wppa-settings-autosave.php:4283
6056
- #: wppa-settings-autosave.php:4300 wppa-settings-autosave.php:4317
6057
- #: wppa-settings-autosave.php:4334 wppa-settings-autosave.php:4351
6058
- #: wppa-settings-autosave.php:4368 wppa-settings-autosave.php:4385
6059
- #: wppa-settings-autosave.php:5644 wppa-settings-autosave.php:7820
6060
- #: wppa-settings-autosave.php:8015 wppa-settings-autosave.php:8057
6061
- #: wppa-settings-autosave.php:8075
6062
  msgid "pixels"
6063
  msgstr ""
6064
 
6065
- #: wppa-settings-autosave.php:681
6066
  msgid "Fit within rectangle as set in Table I-B1,2"
6067
  msgstr ""
6068
 
6069
- #: wppa-settings-autosave.php:688
6070
  #, fuzzy
6071
  msgid "Photocount threshold"
6072
  msgstr "Foto dne"
6073
 
6074
- #: wppa-settings-autosave.php:689
6075
  msgid "Number of photos in an album must exceed."
6076
  msgstr ""
6077
 
6078
- #: wppa-settings-autosave.php:690
6079
  msgid ""
6080
  "Photos do not show up in the album unless there are more than this number of "
6081
  "photos in the album. This allows you to have cover photos on an album that "
@@ -6083,127 +6112,127 @@ msgid ""
6083
  "Usually set to 0 (always show) or 1 (for one cover photo)."
6084
  msgstr ""
6085
 
6086
- #: wppa-settings-autosave.php:697
6087
  msgid "Border thickness"
6088
  msgstr ""
6089
 
6090
- #: wppa-settings-autosave.php:698
6091
  msgid "Thickness of wppa+ box borders."
6092
  msgstr ""
6093
 
6094
- #: wppa-settings-autosave.php:699
6095
  msgid ""
6096
  "Enter the thickness for the border of the WPPA+ boxes. A number of 0 means: "
6097
  "no border."
6098
  msgstr ""
6099
 
6100
- #: wppa-settings-autosave.php:700 wppa-settings-autosave.php:710
6101
  msgid "WPPA+ boxes are: the navigation bars and the filmstrip."
6102
  msgstr ""
6103
 
6104
- #: wppa-settings-autosave.php:708
6105
  msgid "Radius of wppa+ box borders."
6106
  msgstr ""
6107
 
6108
- #: wppa-settings-autosave.php:709
6109
  msgid ""
6110
  "Enter the corner radius for the border of the WPPA+ boxes. A number of 0 "
6111
  "means: no rounded corners."
6112
  msgstr ""
6113
 
6114
- #: wppa-settings-autosave.php:711
6115
  msgid "Note that rounded corners are only supported by modern browsers."
6116
  msgstr ""
6117
 
6118
- #: wppa-settings-autosave.php:719
6119
  msgid "Distance between wppa+ boxes."
6120
  msgstr ""
6121
 
6122
- #: wppa-settings-autosave.php:727
6123
  #, fuzzy
6124
  msgid "Related count"
6125
  msgstr "Podobné fotky"
6126
 
6127
- #: wppa-settings-autosave.php:728
6128
  msgid "The default maximum number of related photos to find."
6129
  msgstr ""
6130
 
6131
- #: wppa-settings-autosave.php:729
6132
  msgid ""
6133
  "When using shortcodes like [wppa type=\"album\" album=\"#related,desc,23\"][/"
6134
  "wppa], the maximum number is 23. Omitting the number gives the maximum of "
6135
  "this setting."
6136
  msgstr ""
6137
 
6138
- #: wppa-settings-autosave.php:737
6139
  msgid "The maximum number of pagelinks to be displayed."
6140
  msgstr ""
6141
 
6142
- #: wppa-settings-autosave.php:740
6143
  msgid "pages"
6144
  msgstr ""
6145
 
6146
- #: wppa-settings-autosave.php:745
6147
  msgid "Max file name length"
6148
  msgstr ""
6149
 
6150
- #: wppa-settings-autosave.php:746
6151
  msgid "The max length of a photo file name excluding the extension."
6152
  msgstr ""
6153
 
6154
- #: wppa-settings-autosave.php:747 wppa-settings-autosave.php:756
6155
  msgid "A setting of 0 means: unlimited."
6156
  msgstr ""
6157
 
6158
- #: wppa-settings-autosave.php:749 wppa-settings-autosave.php:758
6159
  msgid "chars"
6160
  msgstr ""
6161
 
6162
- #: wppa-settings-autosave.php:754
6163
  msgid "Max photo name length"
6164
  msgstr ""
6165
 
6166
- #: wppa-settings-autosave.php:755
6167
  msgid "The max length of a photo name."
6168
  msgstr ""
6169
 
6170
- #: wppa-settings-autosave.php:763
6171
  msgid "Slideshow related size settings"
6172
  msgstr ""
6173
 
6174
- #: wppa-settings-autosave.php:765
6175
  msgid "Maximum Width"
6176
  msgstr ""
6177
 
6178
- #: wppa-settings-autosave.php:766
6179
  msgid "The maximum width photos will be displayed in slideshows."
6180
  msgstr ""
6181
 
6182
- #: wppa-settings-autosave.php:767 wppa-settings-autosave.php:778
6183
  msgid ""
6184
  "Enter the largest size in pixels as how you want your photos to be displayed."
6185
  msgstr ""
6186
 
6187
- #: wppa-settings-autosave.php:768
6188
  msgid ""
6189
  "This is usually the same as the Column Width (Table I-A1), but it may differ."
6190
  msgstr ""
6191
 
6192
- #: wppa-settings-autosave.php:776
6193
  msgid "Maximum Height"
6194
  msgstr ""
6195
 
6196
- #: wppa-settings-autosave.php:777
6197
  msgid "The maximum height photos will be displayed in slideshows."
6198
  msgstr ""
6199
 
6200
- #: wppa-settings-autosave.php:779
6201
  msgid ""
6202
  "This setting defines the height of the space reserved for photos in "
6203
  "slideshows."
6204
  msgstr ""
6205
 
6206
- #: wppa-settings-autosave.php:780
6207
  #, php-format
6208
  msgid ""
6209
  "If you change the width of a display by the %%size= command, this value "
@@ -6211,1260 +6240,1260 @@ msgid ""
6211
  "previous setting."
6212
  msgstr ""
6213
 
6214
- #: wppa-settings-autosave.php:782 wppa-settings-autosave.php:936
6215
- #: wppa-settings-autosave.php:947
6216
  #, fuzzy
6217
  msgid "pixels high"
6218
  msgstr "velmi vysoká"
6219
 
6220
- #: wppa-settings-autosave.php:787
6221
  msgid "Stretch to fit"
6222
  msgstr ""
6223
 
6224
- #: wppa-settings-autosave.php:788
6225
  msgid "Stretch photos that are too small."
6226
  msgstr ""
6227
 
6228
- #: wppa-settings-autosave.php:789
6229
  msgid ""
6230
  "Images will be stretched to the Maximum Size at display time if they are "
6231
  "smaller. Leaving unchecked is recommended. It is better to upload photos "
6232
  "that fit well the sizes you use!"
6233
  msgstr ""
6234
 
6235
- #: wppa-settings-autosave.php:796
6236
  #, fuzzy
6237
  msgid "Slideshow borderwidth"
6238
  msgstr "Slideshow"
6239
 
6240
- #: wppa-settings-autosave.php:797
6241
  msgid "The width of the border around slideshow images."
6242
  msgstr ""
6243
 
6244
- #: wppa-settings-autosave.php:798
6245
  msgid ""
6246
  "The border is made by the image background being larger than the image "
6247
  "itsself (padding)."
6248
  msgstr ""
6249
 
6250
- #: wppa-settings-autosave.php:799
6251
  msgid ""
6252
  "Additionally there may be a one pixel outline of a different color. See "
6253
  "Table III-A2."
6254
  msgstr ""
6255
 
6256
- #: wppa-settings-autosave.php:800
6257
  msgid "The number you enter here is exclusive the one pixel outline."
6258
  msgstr ""
6259
 
6260
- #: wppa-settings-autosave.php:801
6261
  msgid "If you leave this entry empty, there will be no outline either."
6262
  msgstr ""
6263
 
6264
- #: wppa-settings-autosave.php:808
6265
  msgid "Numbar Max"
6266
  msgstr ""
6267
 
6268
- #: wppa-settings-autosave.php:809
6269
  msgid "Maximum numbers to display."
6270
  msgstr ""
6271
 
6272
- #: wppa-settings-autosave.php:810
6273
  msgid ""
6274
  "In order to attemt to fit on one line, the numbers will be replaced by dots "
6275
  "- except the current - when there are more than this number of photos in a "
6276
  "slideshow."
6277
  msgstr ""
6278
 
6279
- #: wppa-settings-autosave.php:812
6280
  msgid "numbers"
6281
  msgstr ""
6282
 
6283
- #: wppa-settings-autosave.php:817
6284
  #, fuzzy
6285
  msgid "Share button size"
6286
  msgstr "Sdílet %s na Pinterest"
6287
 
6288
- #: wppa-settings-autosave.php:818
6289
  msgid "The size of the social media icons in the Share box"
6290
  msgstr ""
6291
 
6292
- #: wppa-settings-autosave.php:828
6293
  msgid "Mini Treshold"
6294
  msgstr ""
6295
 
6296
- #: wppa-settings-autosave.php:829
6297
  msgid "Show mini text at slideshow smaller then."
6298
  msgstr ""
6299
 
6300
- #: wppa-settings-autosave.php:830
6301
  msgid ""
6302
  "Display Next and Prev. as opposed to Next photo and Previous photo when the "
6303
  "cotainer is smaller than this size."
6304
  msgstr ""
6305
 
6306
- #: wppa-settings-autosave.php:831
6307
  msgid "Special use in responsive themes."
6308
  msgstr ""
6309
 
6310
- #: wppa-settings-autosave.php:839
6311
  msgid "The maximum number of slides in a certain view. 0 means no pagination"
6312
  msgstr ""
6313
 
6314
- #: wppa-settings-autosave.php:842
6315
  #, fuzzy
6316
  msgid "slides"
6317
  msgstr "Slideshow"
6318
 
6319
- #: wppa-settings-autosave.php:847
6320
  msgid "Thumbnail photos related size settings"
6321
  msgstr ""
6322
 
6323
- #: wppa-settings-autosave.php:849
6324
  #, fuzzy
6325
  msgid "Thumbnail Size"
6326
  msgstr "Stránka s náhledy"
6327
 
6328
- #: wppa-settings-autosave.php:850
6329
  #, fuzzy
6330
  msgid "The size of the thumbnail images."
6331
  msgstr "Prohlédnout náhledy"
6332
 
6333
- #: wppa-settings-autosave.php:851 wppa-settings-autosave.php:861
6334
- #: wppa-settings-autosave.php:1051 wppa-settings-autosave.php:1061
6335
  msgid "This size applies to the width or height, whichever is the largest."
6336
  msgstr ""
6337
 
6338
- #: wppa-settings-autosave.php:852 wppa-settings-autosave.php:862
6339
  msgid ""
6340
  "Changing the thumbnail size may result in all thumbnails being regenerated. "
6341
  "this may take a while."
6342
  msgstr ""
6343
 
6344
- #: wppa-settings-autosave.php:859
6345
  #, fuzzy
6346
  msgid "Thumbnail Size Alt"
6347
  msgstr "Stránka s náhledy"
6348
 
6349
- #: wppa-settings-autosave.php:860
6350
  msgid "The alternative size of the thumbnail images."
6351
  msgstr ""
6352
 
6353
- #: wppa-settings-autosave.php:869
6354
  #, fuzzy
6355
  msgid "Thumbnail Aspect"
6356
  msgstr "Označkované fotografie"
6357
 
6358
- #: wppa-settings-autosave.php:870
6359
  msgid "Aspect ration of thumbnail image"
6360
  msgstr ""
6361
 
6362
- #: wppa-settings-autosave.php:874
6363
  #, fuzzy
6364
  msgid "--- same as fullsize ---"
6365
  msgstr "--- vše ---"
6366
 
6367
- #: wppa-settings-autosave.php:875
6368
  #, fuzzy
6369
  msgid "--- square clipped ---"
6370
  msgstr "--- smazáno ---"
6371
 
6372
- #: wppa-settings-autosave.php:876
6373
  msgid "4:5 landscape clipped"
6374
  msgstr ""
6375
 
6376
- #: wppa-settings-autosave.php:877
6377
  msgid "3:4 landscape clipped"
6378
  msgstr ""
6379
 
6380
- #: wppa-settings-autosave.php:878
6381
  msgid "2:3 landscape clipped"
6382
  msgstr ""
6383
 
6384
- #: wppa-settings-autosave.php:879
6385
  msgid "9:16 landscape clipped"
6386
  msgstr ""
6387
 
6388
- #: wppa-settings-autosave.php:880
6389
  msgid "1:2 landscape clipped"
6390
  msgstr ""
6391
 
6392
- #: wppa-settings-autosave.php:881
6393
  #, fuzzy
6394
  msgid "--- square padded ---"
6395
  msgstr "--- samostatné ---"
6396
 
6397
- #: wppa-settings-autosave.php:882
6398
  msgid "4:5 landscape padded"
6399
  msgstr ""
6400
 
6401
- #: wppa-settings-autosave.php:883
6402
  msgid "3:4 landscape padded"
6403
  msgstr ""
6404
 
6405
- #: wppa-settings-autosave.php:884
6406
  msgid "2:3 landscape padded"
6407
  msgstr ""
6408
 
6409
- #: wppa-settings-autosave.php:885
6410
  msgid "9:16 landscape padded"
6411
  msgstr ""
6412
 
6413
- #: wppa-settings-autosave.php:886
6414
  msgid "1:2 landscape padded"
6415
  msgstr ""
6416
 
6417
- #: wppa-settings-autosave.php:908
6418
  msgid "Thumbframe width"
6419
  msgstr ""
6420
 
6421
- #: wppa-settings-autosave.php:909
6422
  #, fuzzy
6423
  msgid "The width of the thumbnail frame."
6424
  msgstr "Prohlédnout náhledy"
6425
 
6426
- #: wppa-settings-autosave.php:910 wppa-settings-autosave.php:921
6427
  msgid "Set the width of the thumbnail frame."
6428
  msgstr ""
6429
 
6430
- #: wppa-settings-autosave.php:911 wppa-settings-autosave.php:922
6431
- #: wppa-settings-autosave.php:933 wppa-settings-autosave.php:944
6432
- #: wppa-settings-autosave.php:955
6433
  msgid "Set width, height and spacing for the thumbnail frames."
6434
  msgstr ""
6435
 
6436
- #: wppa-settings-autosave.php:912 wppa-settings-autosave.php:923
6437
- #: wppa-settings-autosave.php:934 wppa-settings-autosave.php:945
6438
- #: wppa-settings-autosave.php:956
6439
  msgid ""
6440
  "These sizes should be large enough for a thumbnail image and - optionally - "
6441
  "the text under it."
6442
  msgstr ""
6443
 
6444
- #: wppa-settings-autosave.php:919
6445
  msgid "Thumbframe width Alt"
6446
  msgstr ""
6447
 
6448
- #: wppa-settings-autosave.php:920
6449
  msgid "The width of the alternative thumbnail frame."
6450
  msgstr ""
6451
 
6452
- #: wppa-settings-autosave.php:930
6453
  msgid "Thumbframe height"
6454
  msgstr ""
6455
 
6456
- #: wppa-settings-autosave.php:931
6457
  msgid "The height of the thumbnail frame."
6458
  msgstr ""
6459
 
6460
- #: wppa-settings-autosave.php:932 wppa-settings-autosave.php:943
6461
  msgid "Set the height of the thumbnail frame."
6462
  msgstr ""
6463
 
6464
- #: wppa-settings-autosave.php:941
6465
  msgid "Thumbframe height Alt"
6466
  msgstr ""
6467
 
6468
- #: wppa-settings-autosave.php:942
6469
  msgid "The height of the alternative thumbnail frame."
6470
  msgstr ""
6471
 
6472
- #: wppa-settings-autosave.php:952
6473
  #, fuzzy
6474
  msgid "Thumbnail spacing"
6475
  msgstr "Označkované fotografie"
6476
 
6477
- #: wppa-settings-autosave.php:953
6478
  msgid "The spacing between adjacent thumbnail frames."
6479
  msgstr ""
6480
 
6481
- #: wppa-settings-autosave.php:954
6482
  msgid "Set the minimal spacing between the adjacent thumbnail frames"
6483
  msgstr ""
6484
 
6485
- #: wppa-settings-autosave.php:963
6486
  msgid "Auto spacing"
6487
  msgstr ""
6488
 
6489
- #: wppa-settings-autosave.php:964
6490
  msgid "Space the thumbnail frames automatic."
6491
  msgstr ""
6492
 
6493
- #: wppa-settings-autosave.php:965
6494
  msgid ""
6495
  "If you check this box, the thumbnail images will be evenly distributed over "
6496
  "the available width."
6497
  msgstr ""
6498
 
6499
- #: wppa-settings-autosave.php:966
6500
  msgid ""
6501
  "In this case, the thumbnail spacing value (setting I-9) will be regarded as "
6502
  "a minimum value."
6503
  msgstr ""
6504
 
6505
- #: wppa-settings-autosave.php:973 wppa-settings-autosave.php:1080
6506
  msgid "Page size"
6507
  msgstr ""
6508
 
6509
- #: wppa-settings-autosave.php:974
6510
  msgid "Max number of thumbnails per page."
6511
  msgstr ""
6512
 
6513
- #: wppa-settings-autosave.php:975
6514
  msgid ""
6515
  "Enter the maximum number of thumbnail images per page. A value of 0 "
6516
  "indicates no pagination."
6517
  msgstr ""
6518
 
6519
- #: wppa-settings-autosave.php:977 wppa-settings-autosave.php:5218
6520
- #: wppa-settings-autosave.php:5249 wppa-settings-autosave.php:5344
6521
  #, fuzzy
6522
  msgid "thumbnails"
6523
  msgstr "Označkované fotografie"
6524
 
6525
- #: wppa-settings-autosave.php:983
6526
  msgid "The size of the thumbnail popup images."
6527
  msgstr ""
6528
 
6529
- #: wppa-settings-autosave.php:984
6530
  msgid ""
6531
  "Enter the size of the popup images. This size should be larger than the "
6532
  "thumbnail size."
6533
  msgstr ""
6534
 
6535
- #: wppa-settings-autosave.php:985
6536
  msgid "This size should also be at least the cover image size."
6537
  msgstr ""
6538
 
6539
- #: wppa-settings-autosave.php:986
6540
  msgid ""
6541
  "Changing the popup size may result in all thumbnails being regenerated. this "
6542
  "may take a while."
6543
  msgstr ""
6544
 
6545
- #: wppa-settings-autosave.php:987
6546
  msgid ""
6547
  "Although this setting has only visual effect if \"Thumb popup\" (Table IV-"
6548
  "C8) is checked,"
6549
  msgstr ""
6550
 
6551
- #: wppa-settings-autosave.php:988
6552
  msgid ""
6553
  "the value must be right as it is the physical size of the thumbnail and "
6554
  "coverphoto images."
6555
  msgstr ""
6556
 
6557
- #: wppa-settings-autosave.php:995
6558
  msgid "Use thumbs if fit"
6559
  msgstr ""
6560
 
6561
- #: wppa-settings-autosave.php:996
6562
  msgid "Use the thumbnail image files if they are large enough."
6563
  msgstr ""
6564
 
6565
- #: wppa-settings-autosave.php:997
6566
  msgid "This setting speeds up page loading for small photos."
6567
  msgstr ""
6568
 
6569
- #: wppa-settings-autosave.php:998
6570
  msgid ""
6571
  "Do NOT use this when your thumbnails have a forced aspect ratio (when Table "
6572
  "I-C2 is set to anything different from --- same as fullsize ---)"
6573
  msgstr ""
6574
 
6575
- #: wppa-settings-autosave.php:1005
6576
  msgid "Album cover related size settings"
6577
  msgstr ""
6578
 
6579
- #: wppa-settings-autosave.php:1008
6580
  msgid "Maximum width for a album cover display."
6581
  msgstr ""
6582
 
6583
- #: wppa-settings-autosave.php:1009
6584
  msgid ""
6585
  "Display covers in 2 or more columns if the display area is wider than the "
6586
  "given width."
6587
  msgstr ""
6588
 
6589
- #: wppa-settings-autosave.php:1010
6590
  msgid ""
6591
  "This also applies for 'thumbnails as covers', and will NOT apply to single "
6592
  "items."
6593
  msgstr ""
6594
 
6595
- #: wppa-settings-autosave.php:1017
6596
  msgid "Min Cover height"
6597
  msgstr ""
6598
 
6599
- #: wppa-settings-autosave.php:1018
6600
  msgid "Minimal height of an album cover."
6601
  msgstr ""
6602
 
6603
- #: wppa-settings-autosave.php:1019
6604
  msgid ""
6605
  "If you use this setting to make the albums the same height and you are not "
6606
  "satisfied about the lay-out, try increasing the value in the next setting"
6607
  msgstr ""
6608
 
6609
- #: wppa-settings-autosave.php:1026
6610
  msgid "Min Text frame height"
6611
  msgstr ""
6612
 
6613
- #: wppa-settings-autosave.php:1027
6614
  msgid "The minimal cover text frame height incl header."
6615
  msgstr ""
6616
 
6617
- #: wppa-settings-autosave.php:1028
6618
  msgid ""
6619
  "The height starting with the album title up to and including the view- and "
6620
  "the slideshow- links."
6621
  msgstr ""
6622
 
6623
- #: wppa-settings-autosave.php:1029
6624
  msgid ""
6625
  "This setting enables you to give the album covers the same height while the "
6626
  "title does not need to fit on one line."
6627
  msgstr ""
6628
 
6629
- #: wppa-settings-autosave.php:1030
6630
  msgid "This is the recommended setting to line-up your covers!"
6631
  msgstr ""
6632
 
6633
- #: wppa-settings-autosave.php:1037
6634
  msgid "Min Description height"
6635
  msgstr ""
6636
 
6637
- #: wppa-settings-autosave.php:1038
6638
  msgid "The minimal height of the album description text frame."
6639
  msgstr ""
6640
 
6641
- #: wppa-settings-autosave.php:1039
6642
  msgid "The minimal height of the description field in an album cover display."
6643
  msgstr ""
6644
 
6645
- #: wppa-settings-autosave.php:1040
6646
  msgid ""
6647
  "This setting enables you to give the album covers the same height provided "
6648
  "that the cover images are equally sized and the titles fit on one line."
6649
  msgstr ""
6650
 
6651
- #: wppa-settings-autosave.php:1041
6652
  msgid ""
6653
  "To force the coverphotos have equal heights, tick the box in Table I-D7."
6654
  msgstr ""
6655
 
6656
- #: wppa-settings-autosave.php:1042
6657
  msgid ""
6658
  "You may need this setting if changing the previous setting is not sufficient "
6659
  "to line-up the covers."
6660
  msgstr ""
6661
 
6662
- #: wppa-settings-autosave.php:1049
6663
  msgid "Coverphoto size"
6664
  msgstr ""
6665
 
6666
- #: wppa-settings-autosave.php:1050
6667
  #, fuzzy
6668
  msgid "The size of the coverphoto."
6669
  msgstr "Zobrazit úvodní fotku"
6670
 
6671
- #: wppa-settings-autosave.php:1052 wppa-settings-autosave.php:1062
6672
  msgid ""
6673
  "Changing the coverphoto size may result in all thumbnails being regenerated. "
6674
  "this may take a while."
6675
  msgstr ""
6676
 
6677
- #: wppa-settings-autosave.php:1059
6678
  msgid "Coverphoto size multi"
6679
  msgstr ""
6680
 
6681
- #: wppa-settings-autosave.php:1060
6682
  msgid "The size of coverphotos if more than one."
6683
  msgstr ""
6684
 
6685
- #: wppa-settings-autosave.php:1069
6686
  msgid "Size is height"
6687
  msgstr ""
6688
 
6689
- #: wppa-settings-autosave.php:1070
6690
  msgid "The size of the coverphoto is the height of it."
6691
  msgstr ""
6692
 
6693
- #: wppa-settings-autosave.php:1071
6694
  msgid ""
6695
  "If set: the previous setting is the height, if unset: the largest of width "
6696
  "and height."
6697
  msgstr ""
6698
 
6699
- #: wppa-settings-autosave.php:1072
6700
  msgid ""
6701
  "This setting applies for coverphoto position top or bottom only (Table IV-"
6702
  "D3)."
6703
  msgstr ""
6704
 
6705
- #: wppa-settings-autosave.php:1073
6706
  msgid "This makes it easyer to make the covers of equal height."
6707
  msgstr ""
6708
 
6709
- #: wppa-settings-autosave.php:1081
6710
  msgid "Max number of covers per page."
6711
  msgstr ""
6712
 
6713
- #: wppa-settings-autosave.php:1082
6714
  msgid ""
6715
  "Enter the maximum number of album covers per page. A value of 0 indicates no "
6716
  "pagination."
6717
  msgstr ""
6718
 
6719
- #: wppa-settings-autosave.php:1084
6720
  msgid "covers"
6721
  msgstr ""
6722
 
6723
- #: wppa-settings-autosave.php:1089
6724
  msgid "Rating and comment related size settings"
6725
  msgstr ""
6726
 
6727
- #: wppa-settings-autosave.php:1091
6728
  #, fuzzy
6729
  msgid "Rating size"
6730
  msgstr "Hlasování: %s"
6731
 
6732
- #: wppa-settings-autosave.php:1092
6733
  msgid "Select the number of voting stars."
6734
  msgstr ""
6735
 
6736
- #: wppa-settings-autosave.php:1095
6737
  msgid "Standard: 5 stars"
6738
  msgstr ""
6739
 
6740
- #: wppa-settings-autosave.php:1095
6741
  msgid "Extended: 10 stars"
6742
  msgstr ""
6743
 
6744
- #: wppa-settings-autosave.php:1095
6745
  msgid "One button vote"
6746
  msgstr ""
6747
 
6748
- #: wppa-settings-autosave.php:1102
6749
  msgid "Display precision"
6750
  msgstr ""
6751
 
6752
- #: wppa-settings-autosave.php:1103
6753
  msgid "Select the desired rating display precision."
6754
  msgstr ""
6755
 
6756
- #: wppa-settings-autosave.php:1106
6757
  msgid "decimal places"
6758
  msgstr ""
6759
 
6760
- #: wppa-settings-autosave.php:1114
6761
  msgid "Size of Avatar images."
6762
  msgstr ""
6763
 
6764
- #: wppa-settings-autosave.php:1115
6765
  msgid "The size of the square avatar; must be > 0 and < 256"
6766
  msgstr ""
6767
 
6768
- #: wppa-settings-autosave.php:1122
6769
  #, fuzzy
6770
  msgid "Rating space"
6771
  msgstr "Hlasování: %s"
6772
 
6773
- #: wppa-settings-autosave.php:1123
6774
  msgid "Space between avg and my rating stars"
6775
  msgstr ""
6776
 
6777
- #: wppa-settings-autosave.php:1131
6778
  msgid "Widget related size settings"
6779
  msgstr ""
6780
 
6781
- #: wppa-settings-autosave.php:1133
6782
  msgid "Widget width"
6783
  msgstr ""
6784
 
6785
- #: wppa-settings-autosave.php:1134
6786
  msgid "The useable width within widgets."
6787
  msgstr ""
6788
 
6789
- #: wppa-settings-autosave.php:1135
6790
  msgid ""
6791
  "Widget width for photo of the day, general purpose (default), slideshow "
6792
  "(default) and upload widgets."
6793
  msgstr ""
6794
 
6795
- #: wppa-settings-autosave.php:1142
6796
  #, fuzzy
6797
  msgid "TopTen count"
6798
  msgstr "Nejlépe hodnocené fotografie"
6799
 
6800
- #: wppa-settings-autosave.php:1143
6801
  msgid "Number of photos in TopTen widget."
6802
  msgstr ""
6803
 
6804
- #: wppa-settings-autosave.php:1144
6805
  msgid "Enter the maximum number of rated photos in the TopTen widget."
6806
  msgstr ""
6807
 
6808
- #: wppa-settings-autosave.php:1151
6809
  #, fuzzy
6810
  msgid "TopTen size"
6811
  msgstr "Nejlépe hodnocené fotografie"
6812
 
6813
- #: wppa-settings-autosave.php:1152
6814
  msgid "Size of thumbnails in TopTen widget."
6815
  msgstr ""
6816
 
6817
- #: wppa-settings-autosave.php:1153
6818
  msgid "Enter the size for the mini photos in the TopTen widget."
6819
  msgstr ""
6820
 
6821
- #: wppa-settings-autosave.php:1154 wppa-settings-autosave.php:1174
6822
- #: wppa-settings-autosave.php:1194 wppa-settings-autosave.php:1214
6823
- #: wppa-settings-autosave.php:1234 wppa-settings-autosave.php:1254
6824
  msgid "The size applies to the width or height, whatever is the largest."
6825
  msgstr ""
6826
 
6827
- #: wppa-settings-autosave.php:1155 wppa-settings-autosave.php:1175
6828
- #: wppa-settings-autosave.php:1195 wppa-settings-autosave.php:1215
6829
- #: wppa-settings-autosave.php:1235 wppa-settings-autosave.php:1255
6830
  msgid ""
6831
  "Recommended values: 86 for a two column and 56 for a three column display."
6832
  msgstr ""
6833
 
6834
- #: wppa-settings-autosave.php:1162
6835
  #, fuzzy
6836
  msgid "Comment count"
6837
  msgstr "Komentovat fotky:"
6838
 
6839
- #: wppa-settings-autosave.php:1163
6840
  msgid "Number of entries in Comment widget."
6841
  msgstr ""
6842
 
6843
- #: wppa-settings-autosave.php:1164
6844
  msgid "Enter the maximum number of entries in the Comment widget."
6845
  msgstr ""
6846
 
6847
- #: wppa-settings-autosave.php:1166
6848
  msgid "entries"
6849
  msgstr ""
6850
 
6851
- #: wppa-settings-autosave.php:1171
6852
  #, fuzzy
6853
  msgid "Comment size"
6854
  msgstr "Komentáře"
6855
 
6856
- #: wppa-settings-autosave.php:1172
6857
  msgid "Size of thumbnails in Comment widget."
6858
  msgstr ""
6859
 
6860
- #: wppa-settings-autosave.php:1173
6861
  msgid "Enter the size for the mini photos in the Comment widget."
6862
  msgstr ""
6863
 
6864
- #: wppa-settings-autosave.php:1182
6865
  #, fuzzy
6866
  msgid "Thumbnail count"
6867
  msgstr "Označkované fotografie"
6868
 
6869
- #: wppa-settings-autosave.php:1183
6870
  msgid "Number of photos in Thumbnail widget."
6871
  msgstr ""
6872
 
6873
- #: wppa-settings-autosave.php:1184
6874
  msgid "Enter the maximum number of rated photos in the Thumbnail widget."
6875
  msgstr ""
6876
 
6877
- #: wppa-settings-autosave.php:1191
6878
  #, fuzzy
6879
  msgid "Thumbnail widget size"
6880
  msgstr "Stránka s náhledy"
6881
 
6882
- #: wppa-settings-autosave.php:1192
6883
  msgid "Size of thumbnails in Thumbnail widget."
6884
  msgstr ""
6885
 
6886
- #: wppa-settings-autosave.php:1193
6887
  msgid "Enter the size for the mini photos in the Thumbnail widget."
6888
  msgstr ""
6889
 
6890
- #: wppa-settings-autosave.php:1202
6891
  msgid "LasTen count"
6892
  msgstr ""
6893
 
6894
- #: wppa-settings-autosave.php:1203
6895
  msgid "Number of photos in Last Ten widget."
6896
  msgstr ""
6897
 
6898
- #: wppa-settings-autosave.php:1204
6899
  msgid "Enter the maximum number of photos in the LasTen widget."
6900
  msgstr ""
6901
 
6902
- #: wppa-settings-autosave.php:1211
6903
  msgid "LasTen size"
6904
  msgstr ""
6905
 
6906
- #: wppa-settings-autosave.php:1212
6907
  msgid "Size of thumbnails in Last Ten widget."
6908
  msgstr ""
6909
 
6910
- #: wppa-settings-autosave.php:1213
6911
  msgid "Enter the size for the mini photos in the LasTen widget."
6912
  msgstr ""
6913
 
6914
- #: wppa-settings-autosave.php:1222
6915
  #, fuzzy
6916
  msgid "Album widget count"
6917
  msgstr "Zadat/upravit popis fotky"
6918
 
6919
- #: wppa-settings-autosave.php:1223
6920
  msgid "Number of albums in Album widget."
6921
  msgstr ""
6922
 
6923
- #: wppa-settings-autosave.php:1224
6924
  msgid ""
6925
  "Enter the maximum number of thumbnail photos of albums in the Album widget."
6926
  msgstr ""
6927
 
6928
- #: wppa-settings-autosave.php:1231
6929
  msgid "Album widget size"
6930
  msgstr ""
6931
 
6932
- #: wppa-settings-autosave.php:1232
6933
  msgid "Size of thumbnails in Album widget."
6934
  msgstr ""
6935
 
6936
- #: wppa-settings-autosave.php:1233
6937
  msgid "Enter the size for the mini photos in the Album widget."
6938
  msgstr ""
6939
 
6940
- #: wppa-settings-autosave.php:1242
6941
  msgid "FeaTen count"
6942
  msgstr ""
6943
 
6944
- #: wppa-settings-autosave.php:1243
6945
  msgid "Number of photos in Featured Ten widget."
6946
  msgstr ""
6947
 
6948
- #: wppa-settings-autosave.php:1244
6949
  msgid "Enter the maximum number of photos in the FeaTen widget."
6950
  msgstr ""
6951
 
6952
- #: wppa-settings-autosave.php:1251
6953
  msgid "FeaTen size"
6954
  msgstr ""
6955
 
6956
- #: wppa-settings-autosave.php:1252
6957
  msgid "Size of thumbnails in Featured Ten widget."
6958
  msgstr ""
6959
 
6960
- #: wppa-settings-autosave.php:1253
6961
  msgid "Enter the size for the mini photos in the FeaTen widget."
6962
  msgstr ""
6963
 
6964
- #: wppa-settings-autosave.php:1262
6965
  msgid "Tagcloud min size"
6966
  msgstr ""
6967
 
6968
- #: wppa-settings-autosave.php:1263
6969
  msgid "Minimal fontsize in tagclouds"
6970
  msgstr ""
6971
 
6972
- #: wppa-settings-autosave.php:1271
6973
  msgid "Tagcloud max size"
6974
  msgstr ""
6975
 
6976
- #: wppa-settings-autosave.php:1272
6977
  msgid "Maximal fontsize in tagclouds"
6978
  msgstr ""
6979
 
6980
- #: wppa-settings-autosave.php:1280
6981
  msgid ""
6982
  "Lightbox related size settings. These settings have effect only when Table "
6983
  "IX-J3 is set to wppa"
6984
  msgstr ""
6985
 
6986
- #: wppa-settings-autosave.php:1283
6987
  msgid ""
6988
  "Number of lines on the lightbox description area, exclusive the n/m line."
6989
  msgstr ""
6990
 
6991
- #: wppa-settings-autosave.php:1284
6992
  msgid "Enter a number in the range from 0 to 24 or auto"
6993
  msgstr ""
6994
 
6995
- #: wppa-settings-autosave.php:1286
6996
  msgid "lines"
6997
  msgstr ""
6998
 
6999
- #: wppa-settings-autosave.php:1291
7000
  msgid "Magnifier cursor size"
7001
  msgstr ""
7002
 
7003
- #: wppa-settings-autosave.php:1292
7004
  msgid "Select the size of the magnifier cursor."
7005
  msgstr ""
7006
 
7007
- #: wppa-settings-autosave.php:1295
7008
  msgid "small"
7009
  msgstr ""
7010
 
7011
- #: wppa-settings-autosave.php:1295
7012
  msgid "medium"
7013
  msgstr ""
7014
 
7015
- #: wppa-settings-autosave.php:1295
7016
  msgid "large"
7017
  msgstr ""
7018
 
7019
- #: wppa-settings-autosave.php:1304
7020
  msgid "Video related size settings"
7021
  msgstr ""
7022
 
7023
- #: wppa-settings-autosave.php:1306
7024
  msgid "Default width"
7025
  msgstr ""
7026
 
7027
- #: wppa-settings-autosave.php:1307
7028
  msgid "The width of most videos"
7029
  msgstr ""
7030
 
7031
- #: wppa-settings-autosave.php:1315
7032
  msgid "Default height"
7033
  msgstr ""
7034
 
7035
- #: wppa-settings-autosave.php:1316
7036
  msgid "The height of most videos"
7037
  msgstr ""
7038
 
7039
- #: wppa-settings-autosave.php:1342
7040
  msgid "Table II:"
7041
  msgstr ""
7042
 
7043
- #: wppa-settings-autosave.php:1342
7044
  msgid "Visibility:"
7045
  msgstr ""
7046
 
7047
- #: wppa-settings-autosave.php:1343
7048
  msgid "This table describes the visibility of certain wppa+ elements."
7049
  msgstr ""
7050
 
7051
- #: wppa-settings-autosave.php:1361
7052
  msgid "Breadcrumb related visibility settings"
7053
  msgstr ""
7054
 
7055
- #: wppa-settings-autosave.php:1363
7056
  msgid "Breadcrumb on posts"
7057
  msgstr ""
7058
 
7059
- #: wppa-settings-autosave.php:1364 wppa-settings-autosave.php:1374
7060
  msgid "Show breadcrumb navigation bars."
7061
  msgstr ""
7062
 
7063
- #: wppa-settings-autosave.php:1365 wppa-settings-autosave.php:1375
7064
  msgid "Indicate whether a breadcrumb navigation should be displayed"
7065
  msgstr ""
7066
 
7067
- #: wppa-settings-autosave.php:1373
7068
  msgid "Breadcrumb on pages"
7069
  msgstr ""
7070
 
7071
- #: wppa-settings-autosave.php:1383
7072
  #, fuzzy
7073
  msgid "Breadcrumb on search results"
7074
  msgstr "Výsledek vyhledávání fotek"
7075
 
7076
- #: wppa-settings-autosave.php:1384
7077
  msgid "Show breadcrumb navigation bars on the search results page."
7078
  msgstr ""
7079
 
7080
- #: wppa-settings-autosave.php:1385
7081
  msgid ""
7082
  "Indicate whether a breadcrumb navigation should be displayed above the "
7083
  "search results."
7084
  msgstr ""
7085
 
7086
- #: wppa-settings-autosave.php:1392
7087
  msgid "Breadcrumb on topten displays"
7088
  msgstr ""
7089
 
7090
- #: wppa-settings-autosave.php:1393
7091
  msgid "Show breadcrumb navigation bars on topten displays."
7092
  msgstr ""
7093
 
7094
- #: wppa-settings-autosave.php:1394
7095
  msgid ""
7096
  "Indicate whether a breadcrumb navigation should be displayed above the "
7097
  "topten displays."
7098
  msgstr ""
7099
 
7100
- #: wppa-settings-autosave.php:1401
7101
  msgid "Breadcrumb on last ten displays"
7102
  msgstr ""
7103
 
7104
- #: wppa-settings-autosave.php:1402
7105
  msgid "Show breadcrumb navigation bars on last ten displays."
7106
  msgstr ""
7107
 
7108
- #: wppa-settings-autosave.php:1403
7109
  msgid ""
7110
  "Indicate whether a breadcrumb navigation should be displayed above the last "
7111
  "ten displays."
7112
  msgstr ""
7113
 
7114
- #: wppa-settings-autosave.php:1410
7115
  msgid "Breadcrumb on comment ten displays"
7116
  msgstr ""
7117
 
7118
- #: wppa-settings-autosave.php:1411
7119
  msgid "Show breadcrumb navigation bars on comment ten displays."
7120
  msgstr ""
7121
 
7122
- #: wppa-settings-autosave.php:1412
7123
  msgid ""
7124
  "Indicate whether a breadcrumb navigation should be displayed above the "
7125
  "comment ten displays."
7126
  msgstr ""
7127
 
7128
- #: wppa-settings-autosave.php:1419
7129
  msgid "Breadcrumb on tag result displays"
7130
  msgstr ""
7131
 
7132
- #: wppa-settings-autosave.php:1420
7133
  msgid "Show breadcrumb navigation bars on tag result displays."
7134
  msgstr ""
7135
 
7136
- #: wppa-settings-autosave.php:1421
7137
  msgid ""
7138
  "Indicate whether a breadcrumb navigation should be displayed above the tag "
7139
  "result displays."
7140
  msgstr ""
7141
 
7142
- #: wppa-settings-autosave.php:1428
7143
  msgid "Breadcrumb on featured ten displays"
7144
  msgstr ""
7145
 
7146
- #: wppa-settings-autosave.php:1429
7147
  msgid "Show breadcrumb navigation bars on featured ten displays."
7148
  msgstr ""
7149
 
7150
- #: wppa-settings-autosave.php:1430
7151
  msgid ""
7152
  "Indicate whether a breadcrumb navigation should be displayed above the "
7153
  "featured ten displays."
7154
  msgstr ""
7155
 
7156
- #: wppa-settings-autosave.php:1437
7157
  msgid "Breadcrumb on related photos displays"
7158
  msgstr ""
7159
 
7160
- #: wppa-settings-autosave.php:1438
7161
  msgid "Show breadcrumb navigation bars on related photos displays."
7162
  msgstr ""
7163
 
7164
- #: wppa-settings-autosave.php:1439
7165
  msgid ""
7166
  "Indicate whether a breadcrumb navigation should be displayed above the "
7167
  "related photos displays."
7168
  msgstr ""
7169
 
7170
- #: wppa-settings-autosave.php:1447
7171
  msgid "Show \"Home\" in breadcrumb."
7172
  msgstr ""
7173
 
7174
- #: wppa-settings-autosave.php:1448
7175
  msgid ""
7176
  "Indicate whether the breadcrumb navigation should start with a \"Home\"-link"
7177
  msgstr ""
7178
 
7179
- #: wppa-settings-autosave.php:1456
7180
  msgid "Show the page(s) in breadcrumb."
7181
  msgstr ""
7182
 
7183
- #: wppa-settings-autosave.php:1457
7184
  msgid ""
7185
  "Indicate whether the breadcrumb navigation should show the page(hierarchy)"
7186
  msgstr ""
7187
 
7188
- #: wppa-settings-autosave.php:1464
7189
  msgid "Separator"
7190
  msgstr ""
7191
 
7192
- #: wppa-settings-autosave.php:1465
7193
  msgid "Breadcrumb separator symbol."
7194
  msgstr ""
7195
 
7196
- #: wppa-settings-autosave.php:1466
7197
  msgid "Select the desired breadcrumb separator element."
7198
  msgstr ""
7199
 
7200
- #: wppa-settings-autosave.php:1467
7201
  msgid "A text string may contain valid html."
7202
  msgstr ""
7203
 
7204
- #: wppa-settings-autosave.php:1468
7205
  msgid ""
7206
  "An image will be scaled automatically if you set the navigation font size."
7207
  msgstr ""
7208
 
7209
- #: wppa-settings-autosave.php:1470
7210
  msgid "Text (html):"
7211
  msgstr ""
7212
 
7213
- #: wppa-settings-autosave.php:1470
7214
  msgid "Image (url):"
7215
  msgstr ""
7216
 
7217
- #: wppa-settings-autosave.php:1478
7218
  msgid "Html"
7219
  msgstr ""
7220
 
7221
- #: wppa-settings-autosave.php:1479
7222
  msgid "Breadcrumb separator text."
7223
  msgstr ""
7224
 
7225
- #: wppa-settings-autosave.php:1480
7226
  msgid "Enter the HTML code that produces the separator symbol you want."
7227
  msgstr ""
7228
 
7229
- #: wppa-settings-autosave.php:1481
7230
  msgid ""
7231
  "It may be as simple as '-' (without the quotes) or as complex as a tag like "
7232
  "<div>..</div>."
7233
  msgstr ""
7234
 
7235
- #: wppa-settings-autosave.php:1488
7236
  msgid "Image Url"
7237
  msgstr ""
7238
 
7239
- #: wppa-settings-autosave.php:1489
7240
  msgid "Full url to separator image."
7241
  msgstr ""
7242
 
7243
- #: wppa-settings-autosave.php:1490
7244
  msgid ""
7245
  "Enter the full url to the image you want to use for the separator symbol."
7246
  msgstr ""
7247
 
7248
- #: wppa-settings-autosave.php:1497
7249
  #, fuzzy
7250
  msgid "Pagelink position"
7251
  msgstr "Pozice:"
7252
 
7253
- #: wppa-settings-autosave.php:1498
7254
  msgid "The location for the pagelinks bar."
7255
  msgstr ""
7256
 
7257
- #: wppa-settings-autosave.php:1501 wppa-settings-autosave.php:3671
7258
  msgid "Top"
7259
  msgstr ""
7260
 
7261
- #: wppa-settings-autosave.php:1501 wppa-settings-autosave.php:3671
7262
  msgid "Bottom"
7263
  msgstr ""
7264
 
7265
- #: wppa-settings-autosave.php:1501
7266
  msgid "Both"
7267
  msgstr ""
7268
 
7269
- #: wppa-settings-autosave.php:1508
7270
  msgid "Thumblink on slideshow"
7271
  msgstr ""
7272
 
7273
- #: wppa-settings-autosave.php:1509
7274
  msgid "Show a thumb link on slideshow bc."
7275
  msgstr ""
7276
 
7277
- #: wppa-settings-autosave.php:1510
7278
  msgid "Show a link to thumbnail display on an breadcrumb above a slideshow"
7279
  msgstr ""
7280
 
7281
- #: wppa-settings-autosave.php:1517
7282
  msgid "Slideshow related visibility settings"
7283
  msgstr ""
7284
 
7285
- #: wppa-settings-autosave.php:1519
7286
  #, fuzzy
7287
  msgid "Start/stop"
7288
  msgstr "Spustit"
7289
 
7290
- #: wppa-settings-autosave.php:1520
7291
  #, fuzzy
7292
  msgid "Show the Start/Stop slideshow bar."
7293
  msgstr "Ke spuštění/zastavení prezentace dvakrát klikněte"
7294
 
7295
- #: wppa-settings-autosave.php:1521
7296
  msgid ""
7297
  "If checked: display the start/stop slideshow navigation bar above the full-"
7298
  "size images and slideshow"
7299
  msgstr ""
7300
 
7301
- #: wppa-settings-autosave.php:1528
7302
  #, fuzzy
7303
  msgid "Browse bar"
7304
  msgstr "Prohlédnout fotky"
7305
 
7306
- #: wppa-settings-autosave.php:1529
7307
  #, fuzzy
7308
  msgid "Show Browse photos bar."
7309
  msgstr "Prohlédnout fotky"
7310
 
7311
- #: wppa-settings-autosave.php:1530
7312
  msgid ""
7313
  "If checked: display the preveous/next navigation bar under the full-size "
7314
  "images and slideshow"
7315
  msgstr ""
7316
 
7317
- #: wppa-settings-autosave.php:1537
7318
  msgid "Filmstrip"
7319
  msgstr ""
7320
 
7321
- #: wppa-settings-autosave.php:1538
7322
  msgid "Show Filmstrip navigation bar."
7323
  msgstr ""
7324
 
7325
- #: wppa-settings-autosave.php:1539
7326
  msgid ""
7327
  "If checked: display the filmstrip navigation bar under the full_size images "
7328
  "and slideshow"
7329
  msgstr ""
7330
 
7331
- #: wppa-settings-autosave.php:1546
7332
  msgid "Film seam"
7333
  msgstr ""
7334
 
7335
- #: wppa-settings-autosave.php:1547
7336
  msgid "Show seam between end and start of film."
7337
  msgstr ""
7338
 
7339
- #: wppa-settings-autosave.php:1548
7340
  msgid "If checked: display the wrap-around point in the filmstrip"
7341
  msgstr ""
7342
 
7343
- #: wppa-settings-autosave.php:1555
7344
  #, fuzzy
7345
  msgid "Photo name"
7346
  msgstr "Foto dne"
7347
 
7348
- #: wppa-settings-autosave.php:1556
7349
  #, fuzzy
7350
  msgid "Display photo name."
7351
  msgstr "Zadejte název fotky"
7352
 
7353
- #: wppa-settings-autosave.php:1557
7354
  msgid "If checked: display the name of the photo under the slideshow image."
7355
  msgstr ""
7356
 
7357
- #: wppa-settings-autosave.php:1564 wppa-settings-autosave.php:1944
7358
  msgid "Add (Owner)"
7359
  msgstr ""
7360
 
7361
- #: wppa-settings-autosave.php:1565 wppa-settings-autosave.php:1945
7362
  msgid "Add the uploaders display name in parenthesis to the name."
7363
  msgstr ""
7364
 
7365
- #: wppa-settings-autosave.php:1573
7366
  #, fuzzy
7367
  msgid "Photo desc"
7368
  msgstr "Foto"
7369
 
7370
- #: wppa-settings-autosave.php:1574
7371
  #, fuzzy
7372
  msgid "Display Photo description."
7373
  msgstr "Zadat/upravit popis fotky"
7374
 
7375
- #: wppa-settings-autosave.php:1575
7376
  msgid ""
7377
  "If checked: display the description of the photo under the slideshow image."
7378
  msgstr ""
7379
 
7380
- #: wppa-settings-autosave.php:1582
7381
  msgid "Hide when empty"
7382
  msgstr ""
7383
 
7384
- #: wppa-settings-autosave.php:1583
7385
  msgid "Hide the descriptionbox when empty."
7386
  msgstr ""
7387
 
7388
- #: wppa-settings-autosave.php:1591
7389
  #, fuzzy
7390
  msgid "Rating system"
7391
  msgstr "Hlasování: %s"
7392
 
7393
- #: wppa-settings-autosave.php:1592
7394
  msgid "Enable the rating system."
7395
  msgstr ""
7396
 
7397
- #: wppa-settings-autosave.php:1593
7398
  msgid "If checked, the photo rating system will be enabled."
7399
  msgstr ""
7400
 
7401
- #: wppa-settings-autosave.php:1601
7402
  #, fuzzy
7403
  msgid "Comments system"
7404
  msgstr "Komentáře"
7405
 
7406
- #: wppa-settings-autosave.php:1602
7407
  msgid "Enable the comments system."
7408
  msgstr ""
7409
 
7410
- #: wppa-settings-autosave.php:1603
7411
  msgid ""
7412
  "Display the comments box under the fullsize images and let users enter their "
7413
  "comments on individual photos."
7414
  msgstr ""
7415
 
7416
- #: wppa-settings-autosave.php:1611
7417
  #, fuzzy
7418
  msgid "Comment Avatar default"
7419
  msgstr "Komentář byl odeslán"
7420
 
7421
- #: wppa-settings-autosave.php:1612
7422
  msgid "Show Avatars with the comments if not --- none ---"
7423
  msgstr ""
7424
 
7425
- #: wppa-settings-autosave.php:1617
7426
  msgid "mystery man"
7427
  msgstr ""
7428
 
7429
- #: wppa-settings-autosave.php:1618
7430
  msgid "identicon"
7431
  msgstr ""
7432
 
7433
- #: wppa-settings-autosave.php:1619
7434
  msgid "monsterid"
7435
  msgstr ""
7436
 
7437
- #: wppa-settings-autosave.php:1620
7438
  msgid "wavatar"
7439
  msgstr ""
7440
 
7441
- #: wppa-settings-autosave.php:1621
7442
  msgid "retro"
7443
  msgstr ""
7444
 
7445
- #: wppa-settings-autosave.php:1622
7446
  #, fuzzy
7447
  msgid "--- url ---"
7448
  msgstr "--- vše ---"
7449
 
7450
- #: wppa-settings-autosave.php:1637
7451
  msgid "Comment Avatar url"
7452
  msgstr ""
7453
 
7454
- #: wppa-settings-autosave.php:1638
7455
  msgid "Comment Avatar default url."
7456
  msgstr ""
7457
 
7458
- #: wppa-settings-autosave.php:1646
7459
  #, fuzzy
7460
  msgid "Big Browse Buttons"
7461
  msgstr "Prohlédnout fotky"
7462
 
7463
- #: wppa-settings-autosave.php:1647
7464
  msgid "Enable invisible browsing buttons."
7465
  msgstr ""
7466
 
7467
- #: wppa-settings-autosave.php:1648 wppa-settings-autosave.php:2182
7468
  #, fuzzy
7469
  msgid ""
7470
  "If checked, the fullsize image is covered by two invisible areas that act as "
@@ -7473,7091 +7502,7167 @@ msgstr ""
7473
  "Pro zobrazení fotek v plné velikosti musíte povolit JavaScript ve vašem "
7474
  "prohlížeči."
7475
 
7476
- #: wppa-settings-autosave.php:1649 wppa-settings-autosave.php:2183
7477
- #: wppa-settings-autosave.php:2193
7478
  msgid ""
7479
  "Make sure the Full height (Table I-B2) is properly configured to prevent "
7480
  "these areas to overlap unwanted space."
7481
  msgstr ""
7482
 
7483
- #: wppa-settings-autosave.php:1656
7484
  #, fuzzy
7485
  msgid "Ugly Browse Buttons"
7486
  msgstr "Prohlédnout fotky"
7487
 
7488
- #: wppa-settings-autosave.php:1657
7489
  msgid "Enable the ugly browsing buttons."
7490
  msgstr ""
7491
 
7492
- #: wppa-settings-autosave.php:1658
7493
  msgid "If checked, the fullsize image is covered by two browse buttons."
7494
  msgstr ""
7495
 
7496
- #: wppa-settings-autosave.php:1662 wppa-settings-autosave.php:2224
7497
- #: wppa-settings-autosave.php:2235
7498
  msgid "Black"
7499
  msgstr ""
7500
 
7501
- #: wppa-settings-autosave.php:1662
7502
  msgid "Light gray"
7503
  msgstr ""
7504
 
7505
- #: wppa-settings-autosave.php:1669
7506
  #, fuzzy
7507
  msgid "Start/stop icons"
7508
  msgstr "Spustit"
7509
 
7510
- #: wppa-settings-autosave.php:1670
7511
  msgid "Show start and stop icons at the center of the slide"
7512
  msgstr ""
7513
 
7514
- #: wppa-settings-autosave.php:1675
7515
  msgid "Black square"
7516
  msgstr ""
7517
 
7518
- #: wppa-settings-autosave.php:1675
7519
  msgid "Blue square"
7520
  msgstr ""
7521
 
7522
- #: wppa-settings-autosave.php:1675
7523
  msgid "Black round"
7524
  msgstr ""
7525
 
7526
- #: wppa-settings-autosave.php:1682
7527
  msgid "Show custom box"
7528
  msgstr ""
7529
 
7530
- #: wppa-settings-autosave.php:1683
7531
  msgid "Display the custom box in the slideshow"
7532
  msgstr ""
7533
 
7534
- #: wppa-settings-autosave.php:1684 wppa-settings-autosave.php:1695
7535
  msgid ""
7536
  "You can fill the custom box with any html you like. It will not be checked, "
7537
  "so it is your own responsability to close tags properly."
7538
  msgstr ""
7539
 
7540
- #: wppa-settings-autosave.php:1685 wppa-settings-autosave.php:1696
7541
  msgid "The position of the box can be defined in Table IX-E."
7542
  msgstr ""
7543
 
7544
- #: wppa-settings-autosave.php:1693
7545
  msgid "Custom content"
7546
  msgstr ""
7547
 
7548
- #: wppa-settings-autosave.php:1694
7549
  msgid "The content (html) of the custom box."
7550
  msgstr ""
7551
 
7552
- #: wppa-settings-autosave.php:1703
7553
  #, fuzzy
7554
  msgid "Slideshow/Number bar"
7555
  msgstr "Slideshow"
7556
 
7557
- #: wppa-settings-autosave.php:1704
7558
  msgid "Display the Slideshow / Number bar."
7559
  msgstr ""
7560
 
7561
- #: wppa-settings-autosave.php:1705
7562
  msgid "If checked: display the number boxes on slideshow"
7563
  msgstr ""
7564
 
7565
- #: wppa-settings-autosave.php:1713
7566
  msgid "IPTC system"
7567
  msgstr ""
7568
 
7569
- #: wppa-settings-autosave.php:1714
7570
  msgid "Enable the iptc system."
7571
  msgstr ""
7572
 
7573
- #: wppa-settings-autosave.php:1715
7574
  msgid "Display the iptc box under the fullsize images."
7575
  msgstr ""
7576
 
7577
- #: wppa-settings-autosave.php:1723
7578
  msgid "IPTC open"
7579
  msgstr ""
7580
 
7581
- #: wppa-settings-autosave.php:1724
7582
  msgid "Display the iptc box initially opened."
7583
  msgstr ""
7584
 
7585
- #: wppa-settings-autosave.php:1725
7586
  msgid "Display the iptc box under the fullsize images initially open."
7587
  msgstr ""
7588
 
7589
- #: wppa-settings-autosave.php:1733
7590
  msgid "EXIF system"
7591
  msgstr ""
7592
 
7593
- #: wppa-settings-autosave.php:1734
7594
  msgid "Enable the exif system."
7595
  msgstr ""
7596
 
7597
- #: wppa-settings-autosave.php:1735
7598
  msgid "Display the exif box under the fullsize images."
7599
  msgstr ""
7600
 
7601
- #: wppa-settings-autosave.php:1743
7602
  msgid "EXIF open"
7603
  msgstr ""
7604
 
7605
- #: wppa-settings-autosave.php:1744
7606
  msgid "Display the exif box initially opened."
7607
  msgstr ""
7608
 
7609
- #: wppa-settings-autosave.php:1745
7610
  msgid "Display the exif box under the fullsize images initially open."
7611
  msgstr ""
7612
 
7613
- #: wppa-settings-autosave.php:1753
7614
  msgid "Social media share box related visibility settings"
7615
  msgstr ""
7616
 
7617
- #: wppa-settings-autosave.php:1755
7618
  msgid "Show Share Box"
7619
  msgstr ""
7620
 
7621
- #: wppa-settings-autosave.php:1756
7622
  msgid "Display the share social media buttons box."
7623
  msgstr ""
7624
 
7625
- #: wppa-settings-autosave.php:1765 wppa-settings-autosave.php:8062
7626
  msgid "Hide when running"
7627
  msgstr ""
7628
 
7629
- #: wppa-settings-autosave.php:1766
7630
  msgid "Hide the SM box when slideshow runs."
7631
  msgstr ""
7632
 
7633
- #: wppa-settings-autosave.php:1774
7634
  msgid "Show Share Box Widget"
7635
  msgstr ""
7636
 
7637
- #: wppa-settings-autosave.php:1775
7638
  msgid "Display the share social media buttons box in widgets."
7639
  msgstr ""
7640
 
7641
- #: wppa-settings-autosave.php:1776
7642
  msgid ""
7643
  "This setting applies to normal slideshows in widgets, not to the "
7644
  "slideshowwidget as that is a slideonly display."
7645
  msgstr ""
7646
 
7647
- #: wppa-settings-autosave.php:1784
7648
  msgid "Show Share Buttons Thumbs"
7649
  msgstr ""
7650
 
7651
- #: wppa-settings-autosave.php:1785
7652
  msgid "Display the share social media buttons under thumbnails."
7653
  msgstr ""
7654
 
7655
- #: wppa-settings-autosave.php:1794
7656
  msgid "Show Share Buttons Lightbox"
7657
  msgstr ""
7658
 
7659
- #: wppa-settings-autosave.php:1795
7660
  msgid "Display the share social media buttons on lightbox displays."
7661
  msgstr ""
7662
 
7663
- #: wppa-settings-autosave.php:1804
7664
  #, fuzzy
7665
  msgid "Show Share Buttons Mphoto"
7666
  msgstr "Koukni na tuto fotku na %s"
7667
 
7668
- #: wppa-settings-autosave.php:1805
7669
  msgid "Display the share social media buttons on mphoto displays."
7670
  msgstr ""
7671
 
7672
- #: wppa-settings-autosave.php:1814
7673
  msgid "Show QR Code"
7674
  msgstr ""
7675
 
7676
- #: wppa-settings-autosave.php:1815
7677
  msgid "Display the QR code in the share box."
7678
  msgstr ""
7679
 
7680
- #: wppa-settings-autosave.php:1823
7681
  #, fuzzy
7682
  msgid "Show Twitter button"
7683
  msgstr "Sdílet %s na Pinterest"
7684
 
7685
- #: wppa-settings-autosave.php:1824
7686
  msgid "Display the Twitter button in the share box."
7687
  msgstr ""
7688
 
7689
- #: wppa-settings-autosave.php:1832
7690
  #, fuzzy
7691
  msgid "Show Google+ button"
7692
  msgstr "Sdílet %s na Google +"
7693
 
7694
- #: wppa-settings-autosave.php:1833
7695
  msgid "Display the Google+ button in the share box."
7696
  msgstr ""
7697
 
7698
- #: wppa-settings-autosave.php:1841
7699
  #, fuzzy
7700
  msgid "Show Pinterest button"
7701
  msgstr "Sdílet %s na Pinterest"
7702
 
7703
- #: wppa-settings-autosave.php:1842
7704
  msgid "Display the Pintrest button in the share box."
7705
  msgstr ""
7706
 
7707
- #: wppa-settings-autosave.php:1850
7708
  msgid "Show LinkedIn button"
7709
  msgstr ""
7710
 
7711
- #: wppa-settings-autosave.php:1851
7712
  msgid "Display the LinkedIn button in the share box."
7713
  msgstr ""
7714
 
7715
- #: wppa-settings-autosave.php:1859
7716
  msgid "Show Facebook share button"
7717
  msgstr ""
7718
 
7719
- #: wppa-settings-autosave.php:1860 wppa-settings-autosave.php:1869
7720
  msgid "Display the Facebook button in the share box."
7721
  msgstr ""
7722
 
7723
- #: wppa-settings-autosave.php:1868
7724
  msgid "Show Facebook like button"
7725
  msgstr ""
7726
 
7727
- #: wppa-settings-autosave.php:1877
7728
  msgid "Display type"
7729
  msgstr ""
7730
 
7731
- #: wppa-settings-autosave.php:1878
7732
  msgid "Select the Facebook button display type."
7733
  msgstr ""
7734
 
7735
- #: wppa-settings-autosave.php:1881
7736
  msgid "Button with counter"
7737
  msgstr ""
7738
 
7739
- #: wppa-settings-autosave.php:1881
7740
  msgid "Box with counter"
7741
  msgstr ""
7742
 
7743
- #: wppa-settings-autosave.php:1888
7744
  msgid "Show Facebook comment box"
7745
  msgstr ""
7746
 
7747
- #: wppa-settings-autosave.php:1889
7748
  msgid "Display the Facebook comment dialog box in the share box."
7749
  msgstr ""
7750
 
7751
- #: wppa-settings-autosave.php:1897
7752
  msgid "Facebook User Id"
7753
  msgstr ""
7754
 
7755
- #: wppa-settings-autosave.php:1898
7756
  msgid "Enter your facebook user id to be able to moderate comments and sends"
7757
  msgstr ""
7758
 
7759
- #: wppa-settings-autosave.php:1906
7760
  msgid "Facebook App Id"
7761
  msgstr ""
7762
 
7763
- #: wppa-settings-autosave.php:1907
7764
  msgid "Enter your facebook app id to be able to moderate comments and sends"
7765
  msgstr ""
7766
 
7767
- #: wppa-settings-autosave.php:1915
7768
  msgid "Facebook js SDK"
7769
  msgstr ""
7770
 
7771
- #: wppa-settings-autosave.php:1916
7772
  msgid "Load Facebook js SDK"
7773
  msgstr ""
7774
 
7775
- #: wppa-settings-autosave.php:1917
7776
  msgid ""
7777
  "Uncheck this box only when there is a conflict with an other plugin that "
7778
  "also loads the Facebook js SDK."
7779
  msgstr ""
7780
 
7781
- #: wppa-settings-autosave.php:1924
7782
  msgid "Share single image"
7783
  msgstr ""
7784
 
7785
- #: wppa-settings-autosave.php:1925
7786
  msgid "Share a link to a single image, not the slideshow."
7787
  msgstr ""
7788
 
7789
- #: wppa-settings-autosave.php:1926
7790
  msgid ""
7791
  "The sharelink points to a page with a single image rather than to the page "
7792
  "with the photo in the slideshow."
7793
  msgstr ""
7794
 
7795
- #: wppa-settings-autosave.php:1933
7796
  msgid "Thumbnail display related visibility settings"
7797
  msgstr ""
7798
 
7799
- #: wppa-settings-autosave.php:1935
7800
  #, fuzzy
7801
  msgid "Thumbnail name"
7802
  msgstr "Stránka s náhledy"
7803
 
7804
- #: wppa-settings-autosave.php:1936
7805
  msgid "Display Thumbnail name."
7806
  msgstr ""
7807
 
7808
- #: wppa-settings-autosave.php:1937
7809
  msgid "Display photo name under thumbnail images."
7810
  msgstr ""
7811
 
7812
- #: wppa-settings-autosave.php:1953
7813
  #, fuzzy
7814
  msgid "Thumbnail desc"
7815
  msgstr "Označkované fotografie"
7816
 
7817
- #: wppa-settings-autosave.php:1954
7818
  #, fuzzy
7819
  msgid "Display Thumbnail description."
7820
  msgstr "Zadat/upravit popis fotky"
7821
 
7822
- #: wppa-settings-autosave.php:1955
7823
  msgid "Display description of the photo under thumbnail images."
7824
  msgstr ""
7825
 
7826
- #: wppa-settings-autosave.php:1962
7827
  #, fuzzy
7828
  msgid "Thumbnail rating"
7829
  msgstr "Stránka s náhledy"
7830
 
7831
- #: wppa-settings-autosave.php:1963
7832
  msgid "Display Thumbnail Rating."
7833
  msgstr ""
7834
 
7835
- #: wppa-settings-autosave.php:1964
7836
  msgid "Display the rating of the photo under the thumbnail image."
7837
  msgstr ""
7838
 
7839
- #: wppa-settings-autosave.php:1971
7840
  #, fuzzy
7841
  msgid "Thumbnail comcount"
7842
  msgstr "Označkované fotografie"
7843
 
7844
- #: wppa-settings-autosave.php:1972
7845
  msgid "Display Thumbnail Comment count."
7846
  msgstr ""
7847
 
7848
- #: wppa-settings-autosave.php:1973
7849
  msgid "Display the number of comments to the photo under the thumbnail image."
7850
  msgstr ""
7851
 
7852
- #: wppa-settings-autosave.php:1980
7853
  #, fuzzy
7854
  msgid "Thumbnail viewcount"
7855
  msgstr "Stránka s náhledy"
7856
 
7857
- #: wppa-settings-autosave.php:1981
7858
  msgid "Display the number of views."
7859
  msgstr ""
7860
 
7861
- #: wppa-settings-autosave.php:1982
7862
  msgid "Display the number of views under the thumbnail image."
7863
  msgstr ""
7864
 
7865
- #: wppa-settings-autosave.php:1989
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7866
  #, fuzzy
7867
  msgid "Thumbnail video"
7868
  msgstr "Stránka s náhledy"
7869
 
7870
- #: wppa-settings-autosave.php:1990
7871
  msgid "Show video controls on thumbnail displays."
7872
  msgstr ""
7873
 
7874
- #: wppa-settings-autosave.php:1991
7875
  msgid ""
7876
  "Works on default thumbnail type only. You can play the video only when the "
7877
  "link is set to no link at all."
7878
  msgstr ""
7879
 
7880
- #: wppa-settings-autosave.php:1998
7881
  #, fuzzy
7882
  msgid "Thumbnail audio"
7883
  msgstr "Stránka s náhledy"
7884
 
7885
- #: wppa-settings-autosave.php:1999
7886
  msgid "Show audio controls on thumbnail displays."
7887
  msgstr ""
7888
 
7889
- #: wppa-settings-autosave.php:2000
7890
  msgid "Works on default thumbnail type only."
7891
  msgstr ""
7892
 
7893
- #: wppa-settings-autosave.php:2007
7894
  #, fuzzy
7895
  msgid "Popup name"
7896
  msgstr "Vaše jméno:"
7897
 
7898
- #: wppa-settings-autosave.php:2008
7899
  msgid "Display Thumbnail name on popup."
7900
  msgstr ""
7901
 
7902
- #: wppa-settings-autosave.php:2009
7903
  msgid "Display photo name under thumbnail images on the popup."
7904
  msgstr ""
7905
 
7906
- #: wppa-settings-autosave.php:2016
7907
  msgid "Popup (owner)"
7908
  msgstr ""
7909
 
7910
- #: wppa-settings-autosave.php:2017
7911
  msgid "Display owner on popup."
7912
  msgstr ""
7913
 
7914
- #: wppa-settings-autosave.php:2018
7915
  msgid "Display photo owner under thumbnail images on the popup."
7916
  msgstr ""
7917
 
7918
- #: wppa-settings-autosave.php:2025
7919
  msgid "Popup desc"
7920
  msgstr ""
7921
 
7922
- #: wppa-settings-autosave.php:2026
7923
  msgid "Display Thumbnail description on popup."
7924
  msgstr ""
7925
 
7926
- #: wppa-settings-autosave.php:2027
7927
  msgid "Display description of the photo under thumbnail images on the popup."
7928
  msgstr ""
7929
 
7930
- #: wppa-settings-autosave.php:2034
7931
  msgid "Popup desc no links"
7932
  msgstr ""
7933
 
7934
- #: wppa-settings-autosave.php:2035
7935
  msgid "Strip html anchor tags from descriptions on popups"
7936
  msgstr ""
7937
 
7938
- #: wppa-settings-autosave.php:2036
7939
  msgid ""
7940
  "Use this option to prevent the display of links that cannot be activated."
7941
  msgstr ""
7942
 
7943
- #: wppa-settings-autosave.php:2043
7944
  #, fuzzy
7945
  msgid "Popup rating"
7946
  msgstr "Moje hodnocení"
7947
 
7948
- #: wppa-settings-autosave.php:2044
7949
  msgid "Display Thumbnail Rating on popup."
7950
  msgstr ""
7951
 
7952
- #: wppa-settings-autosave.php:2045
7953
  msgid "Display the rating of the photo under the thumbnail image on the popup."
7954
  msgstr ""
7955
 
7956
- #: wppa-settings-autosave.php:2052
7957
  msgid "Popup comcount"
7958
  msgstr ""
7959
 
7960
- #: wppa-settings-autosave.php:2053
7961
  msgid "Display Thumbnail Comment count on popup."
7962
  msgstr ""
7963
 
7964
- #: wppa-settings-autosave.php:2054
7965
  msgid ""
7966
  "Display the number of comments of the photo under the thumbnail image on the "
7967
  "popup."
7968
  msgstr ""
7969
 
7970
- #: wppa-settings-autosave.php:2061
7971
  msgid "Show rating count"
7972
  msgstr ""
7973
 
7974
- #: wppa-settings-autosave.php:2062
7975
  msgid "Display the number of votes along with average ratings."
7976
  msgstr ""
7977
 
7978
- #: wppa-settings-autosave.php:2063
7979
  msgid ""
7980
  "If checked, the number of votes is displayed along with average rating "
7981
  "displays on thumbnail and popup displays."
7982
  msgstr ""
7983
 
7984
- #: wppa-settings-autosave.php:2070
7985
  msgid "Show name on thumb area"
7986
  msgstr ""
7987
 
7988
- #: wppa-settings-autosave.php:2071
7989
  msgid "Select if and where to display the album name on the thumbnail display."
7990
  msgstr ""
7991
 
7992
- #: wppa-settings-autosave.php:2074 wppa-settings-autosave.php:2085
7993
  msgid "None"
7994
  msgstr ""
7995
 
7996
- #: wppa-settings-autosave.php:2074 wppa-settings-autosave.php:2085
7997
- #: wppa-settings-autosave.php:3191
7998
  msgid "At the top"
7999
  msgstr ""
8000
 
8001
- #: wppa-settings-autosave.php:2074 wppa-settings-autosave.php:2085
8002
- #: wppa-settings-autosave.php:3191
8003
  msgid "At the bottom"
8004
  msgstr ""
8005
 
8006
- #: wppa-settings-autosave.php:2081
8007
  msgid "Show desc on thumb area"
8008
  msgstr ""
8009
 
8010
- #: wppa-settings-autosave.php:2082
8011
  msgid ""
8012
  "Select if and where to display the album description on the thumbnail "
8013
  "display."
8014
  msgstr ""
8015
 
8016
- #: wppa-settings-autosave.php:2092
8017
  msgid "Show Edit/Delete links"
8018
  msgstr ""
8019
 
8020
- #: wppa-settings-autosave.php:2093
8021
  msgid "Show these links under default thumbnails for owner and admin."
8022
  msgstr ""
8023
 
8024
- #: wppa-settings-autosave.php:2101
8025
  msgid "Show empty thumbnail area"
8026
  msgstr ""
8027
 
8028
- #: wppa-settings-autosave.php:2102
8029
  msgid "Display thumbnail areas with upload link only for empty albums."
8030
  msgstr ""
8031
 
8032
- #: wppa-settings-autosave.php:2111
8033
  msgid "Album cover related visibility settings"
8034
  msgstr ""
8035
 
8036
- #: wppa-settings-autosave.php:2113
8037
  msgid "Covertext"
8038
  msgstr ""
8039
 
8040
- #: wppa-settings-autosave.php:2114
8041
  msgid "Show the text on the album cover."
8042
  msgstr ""
8043
 
8044
- #: wppa-settings-autosave.php:2115
8045
  msgid "Display the album decription on the album cover"
8046
  msgstr ""
8047
 
8048
- #: wppa-settings-autosave.php:2123
8049
  msgid "Enable the slideshow."
8050
  msgstr ""
8051
 
8052
- #: wppa-settings-autosave.php:2124
8053
  msgid ""
8054
  "If you do not want slideshows: uncheck this box. Browsing full size images "
8055
  "will remain possible."
8056
  msgstr ""
8057
 
8058
- #: wppa-settings-autosave.php:2131
8059
  #, fuzzy
8060
  msgid "Slideshow/Browse"
8061
  msgstr "Slideshow"
8062
 
8063
- #: wppa-settings-autosave.php:2132
8064
  msgid "Display the Slideshow / Browse photos link on album covers"
8065
  msgstr ""
8066
 
8067
- #: wppa-settings-autosave.php:2133
8068
  msgid ""
8069
  "This setting causes the Slideshow link to be displayed on the album cover."
8070
  msgstr ""
8071
 
8072
- #: wppa-settings-autosave.php:2134
8073
  msgid ""
8074
  "If slideshows are disabled in item 2 in this table, you will see a browse "
8075
  "link to fullsize images."
8076
  msgstr ""
8077
 
8078
- #: wppa-settings-autosave.php:2135
8079
  msgid "If you do not want the browse link either, uncheck this item."
8080
  msgstr ""
8081
 
8082
- #: wppa-settings-autosave.php:2142
8083
  #, fuzzy
8084
  msgid "View ..."
8085
  msgstr "Ukázat: "
8086
 
8087
- #: wppa-settings-autosave.php:2143
8088
  msgid "Display the View xx albums and yy photos link on album covers"
8089
  msgstr ""
8090
 
8091
- #: wppa-settings-autosave.php:2151
8092
  msgid "Treecount"
8093
  msgstr ""
8094
 
8095
- #: wppa-settings-autosave.php:2152
8096
  msgid "Disaplay the total number of (sub)albums and photos in subalbums"
8097
  msgstr ""
8098
 
8099
- #: wppa-settings-autosave.php:2153
8100
  msgid ""
8101
  "Displays the total number of sub albums and photos in the entire album tree "
8102
  "in parenthesis if the numbers differ from the direct content of the album."
8103
  msgstr ""
8104
 
8105
- #: wppa-settings-autosave.php:2160
8106
  msgid "Show categories"
8107
  msgstr ""
8108
 
8109
- #: wppa-settings-autosave.php:2161
8110
  msgid "Display the album categories on the covers."
8111
  msgstr ""
8112
 
8113
- #: wppa-settings-autosave.php:2169
8114
  msgid "Skip empty albums"
8115
  msgstr ""
8116
 
8117
- #: wppa-settings-autosave.php:2170
8118
  msgid "Do not show empty albums, except for admin and owner."
8119
  msgstr ""
8120
 
8121
- #: wppa-settings-autosave.php:2178
8122
  msgid "Widget related visibility settings"
8123
  msgstr ""
8124
 
8125
- #: wppa-settings-autosave.php:2180
8126
  msgid "Big Browse Buttons in widget"
8127
  msgstr ""
8128
 
8129
- #: wppa-settings-autosave.php:2181
8130
  msgid "Enable invisible browsing buttons in widget slideshows."
8131
  msgstr ""
8132
 
8133
- #: wppa-settings-autosave.php:2190
8134
  msgid "Ugly Browse Buttons in widget"
8135
  msgstr ""
8136
 
8137
- #: wppa-settings-autosave.php:2191
8138
  msgid "Enable ugly browsing buttons in widget slideshows."
8139
  msgstr ""
8140
 
8141
- #: wppa-settings-autosave.php:2192
8142
  msgid "If checked, the fullsize image is covered by browse buttons."
8143
  msgstr ""
8144
 
8145
- #: wppa-settings-autosave.php:2200
8146
  msgid "Album widget tooltip"
8147
  msgstr ""
8148
 
8149
- #: wppa-settings-autosave.php:2201
8150
  msgid "Show the album description on hoovering thumbnail in album widget"
8151
  msgstr ""
8152
 
8153
- #: wppa-settings-autosave.php:2209 wppa-settings-autosave.php:4098
8154
  msgid ""
8155
  "Lightbox related settings. These settings have effect only when Table IX-J3 "
8156
  "is set to wppa"
8157
  msgstr ""
8158
 
8159
- #: wppa-settings-autosave.php:2211
8160
  msgid "Overlay Close label text"
8161
  msgstr ""
8162
 
8163
- #: wppa-settings-autosave.php:2212
8164
  msgid "The text label for the cross exit symbol."
8165
  msgstr ""
8166
 
8167
- #: wppa-settings-autosave.php:2213
8168
  msgid ""
8169
  "This text may be multilingual according to the qTranslate short tags specs."
8170
  msgstr ""
8171
 
8172
- #: wppa-settings-autosave.php:2220
8173
  msgid "Overlay theme color"
8174
  msgstr ""
8175
 
8176
- #: wppa-settings-autosave.php:2221
8177
  msgid "The color of the image border and text background."
8178
  msgstr ""
8179
 
8180
- #: wppa-settings-autosave.php:2224 wppa-settings-autosave.php:2235
8181
  msgid "White"
8182
  msgstr ""
8183
 
8184
- #: wppa-settings-autosave.php:2231
8185
  msgid "Overlay background color"
8186
  msgstr ""
8187
 
8188
- #: wppa-settings-autosave.php:2232
8189
  msgid "The color of the outer background."
8190
  msgstr ""
8191
 
8192
- #: wppa-settings-autosave.php:2242
8193
  msgid "Overlay slide name"
8194
  msgstr ""
8195
 
8196
- #: wppa-settings-autosave.php:2243
8197
  msgid "Show name if from slide."
8198
  msgstr ""
8199
 
8200
- #: wppa-settings-autosave.php:2244
8201
  msgid ""
8202
  "Shows the photos name on a lightbox display when initiated from a slide."
8203
  msgstr ""
8204
 
8205
- #: wppa-settings-autosave.php:2245 wppa-settings-autosave.php:2255
8206
  msgid ""
8207
  "This setting also applies to film thumbnails if Table VI-11 is set to "
8208
  "lightbox overlay."
8209
  msgstr ""
8210
 
8211
- #: wppa-settings-autosave.php:2252
8212
  msgid "Overlay slide desc"
8213
  msgstr ""
8214
 
8215
- #: wppa-settings-autosave.php:2253
8216
  msgid "Show description if from slide."
8217
  msgstr ""
8218
 
8219
- #: wppa-settings-autosave.php:2254
8220
  msgid ""
8221
  "Shows the photos description on a lightbox display when initiated from a "
8222
  "slide."
8223
  msgstr ""
8224
 
8225
- #: wppa-settings-autosave.php:2262
8226
  msgid "Overlay thumb name"
8227
  msgstr ""
8228
 
8229
- #: wppa-settings-autosave.php:2263
8230
  msgid "Show the photos name if from thumb."
8231
  msgstr ""
8232
 
8233
- #: wppa-settings-autosave.php:2264
8234
  msgid ""
8235
  "Shows the name on a lightbox display when initiated from a standard "
8236
  "thumbnail or a widget thumbnail."
8237
  msgstr ""
8238
 
8239
- #: wppa-settings-autosave.php:2265 wppa-settings-autosave.php:2275
8240
  msgid ""
8241
  "This setting applies to standard thumbnails, thumbnail-, comment-, topten- "
8242
  "and lasten-widget."
8243
  msgstr ""
8244
 
8245
- #: wppa-settings-autosave.php:2272
8246
  msgid "Overlay thumb desc"
8247
  msgstr ""
8248
 
8249
- #: wppa-settings-autosave.php:2273
8250
  msgid "Show description if from thumb."
8251
  msgstr ""
8252
 
8253
- #: wppa-settings-autosave.php:2274
8254
  msgid ""
8255
  "Shows the photos description on a lightbox display when initiated from a "
8256
  "standard thumbnail or a widget thumbnail."
8257
  msgstr ""
8258
 
8259
- #: wppa-settings-autosave.php:2282
8260
  #, fuzzy
8261
  msgid "Overlay potd name"
8262
  msgstr "Zadejte název fotky"
8263
 
8264
- #: wppa-settings-autosave.php:2283
8265
  msgid "Show the photos name if from photo of the day."
8266
  msgstr ""
8267
 
8268
- #: wppa-settings-autosave.php:2284
8269
  msgid ""
8270
  "Shows the name on a lightbox display when initiated from the photo of the "
8271
  "day."
8272
  msgstr ""
8273
 
8274
- #: wppa-settings-autosave.php:2291
8275
  msgid "Overlay potd desc"
8276
  msgstr ""
8277
 
8278
- #: wppa-settings-autosave.php:2292
8279
  msgid "Show description if from from photo of the day."
8280
  msgstr ""
8281
 
8282
- #: wppa-settings-autosave.php:2293
8283
  msgid ""
8284
  "Shows the photos description on a lightbox display when initiated from the "
8285
  "photo of the day."
8286
  msgstr ""
8287
 
8288
- #: wppa-settings-autosave.php:2300
8289
  #, fuzzy
8290
  msgid "Overlay sphoto name"
8291
  msgstr "Zadejte název fotky"
8292
 
8293
- #: wppa-settings-autosave.php:2301
8294
  msgid "Show the photos name if from a single photo."
8295
  msgstr ""
8296
 
8297
- #: wppa-settings-autosave.php:2302
8298
  msgid ""
8299
  "Shows the name on a lightbox display when initiated from a single photo."
8300
  msgstr ""
8301
 
8302
- #: wppa-settings-autosave.php:2309
8303
  #, fuzzy
8304
  msgid "Overlay sphoto desc"
8305
  msgstr "Podobné fotky"
8306
 
8307
- #: wppa-settings-autosave.php:2310
8308
  msgid "Show description if from from a single photo."
8309
  msgstr ""
8310
 
8311
- #: wppa-settings-autosave.php:2311
8312
  msgid ""
8313
  "Shows the photos description on a lightbox display when initiated from a "
8314
  "single photo."
8315
  msgstr ""
8316
 
8317
- #: wppa-settings-autosave.php:2318
8318
  #, fuzzy
8319
  msgid "Overlay mphoto name"
8320
  msgstr "Zadejte název fotky"
8321
 
8322
- #: wppa-settings-autosave.php:2319
8323
  msgid "Show the photos name if from a single media style photo."
8324
  msgstr ""
8325
 
8326
- #: wppa-settings-autosave.php:2320
8327
  msgid ""
8328
  "Shows the name on a lightbox display when initiated from a single media "
8329
  "style photo."
8330
  msgstr ""
8331
 
8332
- #: wppa-settings-autosave.php:2327
8333
  #, fuzzy
8334
  msgid "Overlay mphoto desc"
8335
  msgstr "Podobné fotky"
8336
 
8337
- #: wppa-settings-autosave.php:2328
8338
  msgid "Show description if from from a media style photo."
8339
  msgstr ""
8340
 
8341
- #: wppa-settings-autosave.php:2329
8342
  msgid ""
8343
  "Shows the photos description on a lightbox display when initiated from a "
8344
  "single media style photo."
8345
  msgstr ""
8346
 
8347
- #: wppa-settings-autosave.php:2336
8348
  #, fuzzy
8349
  msgid "Overlay albumwidget name"
8350
  msgstr "Zadejte název fotky"
8351
 
8352
- #: wppa-settings-autosave.php:2337
8353
  msgid "Show the photos name if from the album widget."
8354
  msgstr ""
8355
 
8356
- #: wppa-settings-autosave.php:2338
8357
  msgid ""
8358
  "Shows the name on a lightbox display when initiated from the album widget."
8359
  msgstr ""
8360
 
8361
- #: wppa-settings-autosave.php:2345
8362
  msgid "Overlay albumwidget desc"
8363
  msgstr ""
8364
 
8365
- #: wppa-settings-autosave.php:2346
8366
  msgid "Show description if from from the album widget."
8367
  msgstr ""
8368
 
8369
- #: wppa-settings-autosave.php:2347
8370
  msgid ""
8371
  "Shows the photos description on a lightbox display when initiated from the "
8372
  "album widget."
8373
  msgstr ""
8374
 
8375
- #: wppa-settings-autosave.php:2354
8376
  #, fuzzy
8377
  msgid "Overlay coverphoto name"
8378
  msgstr "Zadejte název fotky"
8379
 
8380
- #: wppa-settings-autosave.php:2355
8381
  msgid "Show the photos name if from the album cover."
8382
  msgstr ""
8383
 
8384
- #: wppa-settings-autosave.php:2356
8385
  msgid ""
8386
  "Shows the name on a lightbox display when initiated from the album "
8387
  "coverphoto."
8388
  msgstr ""
8389
 
8390
- #: wppa-settings-autosave.php:2363
8391
  msgid "Overlay coverphoto desc"
8392
  msgstr ""
8393
 
8394
- #: wppa-settings-autosave.php:2364
8395
  msgid "Show description if from from the album cover."
8396
  msgstr ""
8397
 
8398
- #: wppa-settings-autosave.php:2365
8399
  msgid ""
8400
  "Shows the photos description on a lightbox display when initiated from the "
8401
  "album coverphoto."
8402
  msgstr ""
8403
 
8404
- #: wppa-settings-autosave.php:2372
8405
  msgid "Overlay add owner"
8406
  msgstr ""
8407
 
8408
- #: wppa-settings-autosave.php:2373
8409
  msgid "Add the owner to the photo name on lightbox displays."
8410
  msgstr ""
8411
 
8412
- #: wppa-settings-autosave.php:2374
8413
  msgid ""
8414
  "This setting is independant of the show name switches and is a global "
8415
  "setting."
8416
  msgstr ""
8417
 
8418
- #: wppa-settings-autosave.php:2381
8419
  #, fuzzy
8420
  msgid "Overlay show start/stop"
8421
  msgstr "Pro Spuštění/zastevní klikněte"
8422
 
8423
- #: wppa-settings-autosave.php:2382
8424
  msgid "Show Start and Stop for running slideshow on lightbox."
8425
  msgstr ""
8426
 
8427
- #: wppa-settings-autosave.php:2390
8428
  msgid "Overlay show legenda"
8429
  msgstr ""
8430
 
8431
- #: wppa-settings-autosave.php:2391
8432
  msgid "Show \"Press f for fullsize\" etc. on lightbox."
8433
  msgstr ""
8434
 
8435
- #: wppa-settings-autosave.php:2392
8436
  msgid "Independant of this setting, it will not show up on mobile devices."
8437
  msgstr ""
8438
 
8439
- #: wppa-settings-autosave.php:2399
8440
  msgid "Show fullscreen icons"
8441
  msgstr ""
8442
 
8443
- #: wppa-settings-autosave.php:2400
8444
  msgid "Shows fullscreen and back to normal icon buttons on upper right corner"
8445
  msgstr ""
8446
 
8447
- #: wppa-settings-autosave.php:2408
8448
  msgid "Overlay show counter"
8449
  msgstr ""
8450
 
8451
- #: wppa-settings-autosave.php:2409
8452
  msgid "Show the x/y counter below the image."
8453
  msgstr ""
8454
 
8455
- #: wppa-settings-autosave.php:2417
8456
  #, fuzzy
8457
  msgid "Show Zoom in"
8458
  msgstr "Přiblížit"
8459
 
8460
- #: wppa-settings-autosave.php:2418
8461
  msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
8462
  msgstr ""
8463
 
8464
- #: wppa-settings-autosave.php:2419
8465
  msgid ""
8466
  "If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
8467
  "contains the photo name."
8468
  msgstr ""
8469
 
8470
- #: wppa-settings-autosave.php:2427
8471
  msgid "Frontend upload configuration settings"
8472
  msgstr ""
8473
 
8474
- #: wppa-settings-autosave.php:2429
8475
  #, fuzzy
8476
  msgid "User upload Photos"
8477
  msgstr "Nedávno nahrané fotografie"
8478
 
8479
- #: wppa-settings-autosave.php:2430
8480
  #, fuzzy
8481
  msgid "Enable frontend upload."
8482
  msgstr "<b>Chyba: Neplatný pokus o nahrání souboru.</b>"
8483
 
8484
- #: wppa-settings-autosave.php:2431
8485
  msgid ""
8486
  "If you check this item, frontend upload will be enabled according to the "
8487
  "rules set in the following items of this table."
8488
  msgstr ""
8489
 
8490
- #: wppa-settings-autosave.php:2439
8491
  #, fuzzy
8492
  msgid "User upload Photos login"
8493
  msgstr "Nedávno nahrané fotografie"
8494
 
8495
- #: wppa-settings-autosave.php:2440
8496
  msgid "Frontend upload requires the user is logged in."
8497
  msgstr ""
8498
 
8499
- #: wppa-settings-autosave.php:2441
8500
  msgid ""
8501
  "If you uncheck this box, make sure you check the item Owners only in Table "
8502
  "VII-D1."
8503
  msgstr ""
8504
 
8505
- #: wppa-settings-autosave.php:2442
8506
  msgid ""
8507
  "Also: set the owner to ---public--- of the albums that are allowed to be "
8508
  "uploaded to."
8509
  msgstr ""
8510
 
8511
- #: wppa-settings-autosave.php:2449
8512
  #, fuzzy
8513
  msgid "User upload Ajax"
8514
  msgstr "Nedávno nahrané fotografie"
8515
 
8516
- #: wppa-settings-autosave.php:2450
8517
  msgid "Shows the upload progression bar."
8518
  msgstr ""
8519
 
8520
- #: wppa-settings-autosave.php:2458
8521
  msgid "Show Copyright"
8522
  msgstr ""
8523
 
8524
- #: wppa-settings-autosave.php:2459
8525
  msgid "Show a copyright warning on frontend upload locations."
8526
  msgstr ""
8527
 
8528
- #: wppa-settings-autosave.php:2468
8529
  msgid "Copyright notice"
8530
  msgstr ""
8531
 
8532
- #: wppa-settings-autosave.php:2469
8533
  msgid "The message to be displayed."
8534
  msgstr ""
8535
 
8536
- #: wppa-settings-autosave.php:2477
8537
  msgid "User Watermark"
8538
  msgstr ""
8539
 
8540
- #: wppa-settings-autosave.php:2478
8541
  msgid "Uploading users may select watermark settings"
8542
  msgstr ""
8543
 
8544
- #: wppa-settings-autosave.php:2479
8545
  msgid ""
8546
  "If checked, anyone who can upload and/or import photos can overrule the "
8547
  "default watermark settings."
8548
  msgstr ""
8549
 
8550
- #: wppa-settings-autosave.php:2486
8551
  #, fuzzy
8552
  msgid "User name"
8553
  msgstr "Vaše jméno:"
8554
 
8555
- #: wppa-settings-autosave.php:2487
8556
  msgid "Uploading users may overrule the default name."
8557
  msgstr ""
8558
 
8559
- #: wppa-settings-autosave.php:2488
8560
  msgid ""
8561
  "If checked, the default photo name as defined in Table IX-D13 may be "
8562
  "overruled by the user."
8563
  msgstr ""
8564
 
8565
- #: wppa-settings-autosave.php:2495
8566
  msgid "Apply Newphoto desc user"
8567
  msgstr ""
8568
 
8569
- #: wppa-settings-autosave.php:2496
8570
  msgid "Give each new frontend uploaded photo a standard description."
8571
  msgstr ""
8572
 
8573
- #: wppa-settings-autosave.php:2497
8574
  msgid ""
8575
  "If checked, each new photo will get the description (template) as specified "
8576
  "in Table IX-D5."
8577
  msgstr ""
8578
 
8579
- #: wppa-settings-autosave.php:2504
8580
  msgid "User desc"
8581
  msgstr ""
8582
 
8583
- #: wppa-settings-autosave.php:2505
8584
  msgid "Uploading users may overrule the default description."
8585
  msgstr ""
8586
 
8587
- #: wppa-settings-autosave.php:2513
8588
  #, fuzzy
8589
  msgid "User upload custom"
8590
  msgstr "Nedávno nahrané fotografie"
8591
 
8592
- #: wppa-settings-autosave.php:2514
8593
  msgid "Frontend upload can fill in custom data fields."
8594
  msgstr ""
8595
 
8596
- #: wppa-settings-autosave.php:2522
8597
  #, fuzzy
8598
  msgid "User upload tags"
8599
  msgstr "Nedávno nahrané fotografie"
8600
 
8601
- #: wppa-settings-autosave.php:2523
8602
  msgid "Frontend upload can add tags."
8603
  msgstr ""
8604
 
8605
- #: wppa-settings-autosave.php:2524
8606
  msgid "You can configure the details of tag addition in Table IX-D18.x"
8607
  msgstr ""
8608
 
8609
- #: wppa-settings-autosave.php:2532 wppa-settings-autosave.php:2560
8610
- #: wppa-settings-autosave.php:2588
8611
  #, fuzzy
8612
  msgid "Tag selection box"
8613
  msgstr "--- smazáno ---"
8614
 
8615
- #: wppa-settings-autosave.php:2533 wppa-settings-autosave.php:2561
8616
- #: wppa-settings-autosave.php:2589
8617
  msgid "Front-end upload tags selecion box."
8618
  msgstr ""
8619
 
8620
- #: wppa-settings-autosave.php:2537 wppa-settings-autosave.php:2565
8621
- #: wppa-settings-autosave.php:2593
8622
  msgid "On:"
8623
  msgstr ""
8624
 
8625
- #: wppa-settings-autosave.php:2537 wppa-settings-autosave.php:2565
8626
- #: wppa-settings-autosave.php:2593
8627
  #, fuzzy
8628
  msgid "Multi:"
8629
  msgstr "Multi-spot"
8630
 
8631
- #: wppa-settings-autosave.php:2542 wppa-settings-autosave.php:2570
8632
- #: wppa-settings-autosave.php:2598
8633
  msgid "Caption box"
8634
  msgstr ""
8635
 
8636
- #: wppa-settings-autosave.php:2543 wppa-settings-autosave.php:2571
8637
- #: wppa-settings-autosave.php:2599
8638
  msgid "The title of the tag selection box."
8639
  msgstr ""
8640
 
8641
- #: wppa-settings-autosave.php:2551 wppa-settings-autosave.php:2579
8642
- #: wppa-settings-autosave.php:2607
8643
  msgid "Tags box"
8644
  msgstr ""
8645
 
8646
- #: wppa-settings-autosave.php:2552 wppa-settings-autosave.php:2580
8647
- #: wppa-settings-autosave.php:2608
8648
  #, fuzzy
8649
  msgid "The tags in the selection box."
8650
  msgstr "--- smazáno ---"
8651
 
8652
- #: wppa-settings-autosave.php:2553 wppa-settings-autosave.php:2581
8653
- #: wppa-settings-autosave.php:2609
8654
  msgid ""
8655
  "Enter the tags you want to appear in the selection box. Empty means: all "
8656
  "existing tags"
8657
  msgstr ""
8658
 
8659
- #: wppa-settings-autosave.php:2616
8660
  msgid "New tags"
8661
  msgstr ""
8662
 
8663
- #: wppa-settings-autosave.php:2617
8664
  msgid "Input field for any user defined tags."
8665
  msgstr ""
8666
 
8667
- #: wppa-settings-autosave.php:2625
8668
  #, fuzzy
8669
  msgid "New tags caption"
8670
  msgstr "Žádné funkce blesku"
8671
 
8672
- #: wppa-settings-autosave.php:2626
8673
  msgid "The caption above the tags input field."
8674
  msgstr ""
8675
 
8676
- #: wppa-settings-autosave.php:2634
8677
  #, fuzzy
8678
  msgid "Preview tags"
8679
  msgstr "Predcházející"
8680
 
8681
- #: wppa-settings-autosave.php:2635
8682
  msgid "Show a preview of all tags that will be added to the photo info."
8683
  msgstr ""
8684
 
8685
- #: wppa-settings-autosave.php:2644
8686
  msgid "Miscellaneous visibility settings"
8687
  msgstr ""
8688
 
8689
- #: wppa-settings-autosave.php:2646
8690
  msgid "Frontend ending label"
8691
  msgstr ""
8692
 
8693
- #: wppa-settings-autosave.php:2647
8694
  msgid "Frontend upload / create / edit dialog closing label text."
8695
  msgstr ""
8696
 
8697
- #: wppa-settings-autosave.php:2650
8698
  msgid "Abort"
8699
  msgstr ""
8700
 
8701
- #: wppa-settings-autosave.php:2650
8702
  msgid "Close"
8703
  msgstr ""
8704
 
8705
- #: wppa-settings-autosave.php:2650
8706
  msgid "Exit"
8707
  msgstr ""
8708
 
8709
- #: wppa-settings-autosave.php:2650
8710
  msgid "Quit"
8711
  msgstr ""
8712
 
8713
- #: wppa-settings-autosave.php:2658
8714
  msgid "Widget thumbs fontsize"
8715
  msgstr ""
8716
 
8717
- #: wppa-settings-autosave.php:2659
8718
  msgid "Font size for thumbnail subtext in widgets."
8719
  msgstr ""
8720
 
8721
- #: wppa-settings-autosave.php:2667
8722
  msgid "Arrow color"
8723
  msgstr ""
8724
 
8725
- #: wppa-settings-autosave.php:2668
8726
  msgid "Left/right browsing arrow color."
8727
  msgstr ""
8728
 
8729
- #: wppa-settings-autosave.php:2669
8730
  msgid "Enter the color of the filmstrip navigation arrows."
8731
  msgstr ""
8732
 
8733
- #: wppa-settings-autosave.php:2676
8734
  msgid "Owner on new line"
8735
  msgstr ""
8736
 
8737
- #: wppa-settings-autosave.php:2677
8738
  msgid "Place the (owner) text on a new line."
8739
  msgstr ""
8740
 
8741
- #: wppa-settings-autosave.php:2685
8742
  msgid "Custom datafields"
8743
  msgstr ""
8744
 
8745
- #: wppa-settings-autosave.php:2686
8746
  msgid "Define up to 10 custom data fields for photos."
8747
  msgstr ""
8748
 
8749
- #: wppa-settings-autosave.php:2696
8750
  #, php-format
8751
  msgid "Name and visibility %s"
8752
  msgstr ""
8753
 
8754
- #: wppa-settings-autosave.php:2697
8755
  #, php-format
8756
  msgid "The caption for field %s and visibility at frontend."
8757
  msgstr ""
8758
 
8759
- #: wppa-settings-autosave.php:2698
8760
  #, php-format
8761
  msgid ""
8762
  "If you check the box, the value of this field is displayable in photo "
8763
  "descriptions at the frontend with keyword w#c%s"
8764
  msgstr ""
8765
 
8766
- #: wppa-settings-autosave.php:2728
8767
  msgid "Table III:"
8768
  msgstr ""
8769
 
8770
- #: wppa-settings-autosave.php:2728
8771
  msgid "Backgrounds:"
8772
  msgstr ""
8773
 
8774
- #: wppa-settings-autosave.php:2729
8775
  msgid "This table describes the backgrounds of wppa+ elements."
8776
  msgstr ""
8777
 
8778
- #: wppa-settings-autosave.php:2739 wppa-settings-autosave.php:3037
8779
  msgid "Background color"
8780
  msgstr ""
8781
 
8782
- #: wppa-settings-autosave.php:2740 wppa-settings-autosave.php:2742
8783
- #: wppa-settings-autosave.php:3038 wppa-settings-autosave.php:3040
8784
  msgid "Sample"
8785
  msgstr ""
8786
 
8787
- #: wppa-settings-autosave.php:2741 wppa-settings-autosave.php:3039
8788
  msgid "Border color"
8789
  msgstr ""
8790
 
8791
- #: wppa-settings-autosave.php:2750
8792
  msgid "Slideshow elements backgrounds"
8793
  msgstr ""
8794
 
8795
- #: wppa-settings-autosave.php:2752
8796
  msgid "Nav"
8797
  msgstr ""
8798
 
8799
- #: wppa-settings-autosave.php:2753
8800
  msgid "Navigation bars."
8801
  msgstr ""
8802
 
8803
- #: wppa-settings-autosave.php:2754
8804
  msgid "Enter valid CSS colors for navigation backgrounds and borders."
8805
  msgstr ""
8806
 
8807
- #: wppa-settings-autosave.php:2765
8808
  msgid "SlideImg"
8809
  msgstr ""
8810
 
8811
- #: wppa-settings-autosave.php:2766
8812
  #, fuzzy
8813
  msgid "Fullsize Slideshow Photos."
8814
  msgstr "Super View fotky"
8815
 
8816
- #: wppa-settings-autosave.php:2767
8817
  msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
8818
  msgstr ""
8819
 
8820
- #: wppa-settings-autosave.php:2768
8821
  msgid "The colors may be equal or \"transparent\""
8822
  msgstr ""
8823
 
8824
- #: wppa-settings-autosave.php:2769
8825
  msgid ""
8826
  "For more information about slideshow image borders see the help on Table I-B4"
8827
  msgstr ""
8828
 
8829
- #: wppa-settings-autosave.php:2780 wppa-settings-autosave.php:4342
8830
  msgid "Numbar"
8831
  msgstr ""
8832
 
8833
- #: wppa-settings-autosave.php:2781
8834
  msgid "Number bar box background."
8835
  msgstr ""
8836
 
8837
- #: wppa-settings-autosave.php:2782
8838
  msgid "Enter valid CSS colors for numbar box backgrounds and borders."
8839
  msgstr ""
8840
 
8841
- #: wppa-settings-autosave.php:2793
8842
  msgid "Numbar active"
8843
  msgstr ""
8844
 
8845
- #: wppa-settings-autosave.php:2794
8846
  msgid "Number bar active box background."
8847
  msgstr ""
8848
 
8849
- #: wppa-settings-autosave.php:2795
8850
  msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
8851
  msgstr ""
8852
 
8853
- #: wppa-settings-autosave.php:2806
8854
  msgid "Name/desc"
8855
  msgstr ""
8856
 
8857
- #: wppa-settings-autosave.php:2807
8858
  msgid "Name and Description bars."
8859
  msgstr ""
8860
 
8861
- #: wppa-settings-autosave.php:2808
8862
  msgid ""
8863
  "Enter valid CSS colors for name and description box backgrounds and borders."
8864
  msgstr ""
8865
 
8866
- #: wppa-settings-autosave.php:2820
8867
  msgid "Comment input and display areas."
8868
  msgstr ""
8869
 
8870
- #: wppa-settings-autosave.php:2821
8871
  msgid "Enter valid CSS colors for comment box backgrounds and borders."
8872
  msgstr ""
8873
 
8874
- #: wppa-settings-autosave.php:2832 wppa-settings-autosave.php:7485
8875
- #: wppa-settings-autosave.php:7530
8876
  msgid "Custom"
8877
  msgstr ""
8878
 
8879
- #: wppa-settings-autosave.php:2833
8880
  msgid "Custom box background."
8881
  msgstr ""
8882
 
8883
- #: wppa-settings-autosave.php:2834
8884
  msgid "Enter valid CSS colors for custom box backgrounds and borders."
8885
  msgstr ""
8886
 
8887
- #: wppa-settings-autosave.php:2845
8888
  msgid "IPTC"
8889
  msgstr ""
8890
 
8891
- #: wppa-settings-autosave.php:2846
8892
  msgid "IPTC display box background."
8893
  msgstr ""
8894
 
8895
- #: wppa-settings-autosave.php:2847
8896
  msgid "Enter valid CSS colors for iptc box backgrounds and borders."
8897
  msgstr ""
8898
 
8899
- #: wppa-settings-autosave.php:2858
8900
  msgid "EXIF"
8901
  msgstr ""
8902
 
8903
- #: wppa-settings-autosave.php:2859
8904
  msgid "EXIF display box background."
8905
  msgstr ""
8906
 
8907
- #: wppa-settings-autosave.php:2860
8908
  msgid "Enter valid CSS colors for exif box backgrounds and borders."
8909
  msgstr ""
8910
 
8911
- #: wppa-settings-autosave.php:2871
8912
  msgid "Share"
8913
  msgstr ""
8914
 
8915
- #: wppa-settings-autosave.php:2872
8916
  msgid "Share box display background."
8917
  msgstr ""
8918
 
8919
- #: wppa-settings-autosave.php:2873
8920
  msgid "Enter valid CSS colors for share box backgrounds and borders."
8921
  msgstr ""
8922
 
8923
- #: wppa-settings-autosave.php:2884
8924
  msgid "Other backgrounds"
8925
  msgstr ""
8926
 
8927
- #: wppa-settings-autosave.php:2886
8928
  msgid "Even"
8929
  msgstr ""
8930
 
8931
- #: wppa-settings-autosave.php:2887
8932
  msgid "Even background."
8933
  msgstr ""
8934
 
8935
- #: wppa-settings-autosave.php:2888
8936
  msgid ""
8937
  "Enter valid CSS colors for even numbered backgrounds and borders of album "
8938
  "covers and thumbnail displays 'As covers'."
8939
  msgstr ""
8940
 
8941
- #: wppa-settings-autosave.php:2899
8942
  msgid "Odd"
8943
  msgstr ""
8944
 
8945
- #: wppa-settings-autosave.php:2900
8946
  msgid "Odd background."
8947
  msgstr ""
8948
 
8949
- #: wppa-settings-autosave.php:2901
8950
  msgid ""
8951
  "Enter valid CSS colors for odd numbered backgrounds and borders of album "
8952
  "covers and thumbnail displays 'As covers'."
8953
  msgstr ""
8954
 
8955
- #: wppa-settings-autosave.php:2912
8956
  #, fuzzy
8957
  msgid "Thumbnail padding"
8958
  msgstr "Stránka s náhledy"
8959
 
8960
- #: wppa-settings-autosave.php:2913
8961
  msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
8962
  msgstr ""
8963
 
8964
- #: wppa-settings-autosave.php:2914
8965
  msgid ""
8966
  "Enter valid CSS color hexadecimal like #000000 for black or #ffffff for "
8967
  "white for the padded thumbnails."
8968
  msgstr ""
8969
 
8970
- #: wppa-settings-autosave.php:2925
8971
  msgid "Img"
8972
  msgstr ""
8973
 
8974
- #: wppa-settings-autosave.php:2926
8975
  msgid "Cover Photos and popups."
8976
  msgstr ""
8977
 
8978
- #: wppa-settings-autosave.php:2927
8979
  msgid ""
8980
  "Enter valid CSS colors for Cover photo and popup backgrounds and borders."
8981
  msgstr ""
8982
 
8983
- #: wppa-settings-autosave.php:2939
8984
  msgid "Upload box background."
8985
  msgstr ""
8986
 
8987
- #: wppa-settings-autosave.php:2940
8988
  msgid "Enter valid CSS colors for upload box backgrounds and borders."
8989
  msgstr ""
8990
 
8991
- #: wppa-settings-autosave.php:2951
8992
  #, fuzzy
8993
  msgid "Multitag"
8994
  msgstr "Multi-spot"
8995
 
8996
- #: wppa-settings-autosave.php:2952
8997
  msgid "Multitag box background."
8998
  msgstr ""
8999
 
9000
- #: wppa-settings-autosave.php:2953
9001
  msgid "Enter valid CSS colors for multitag box backgrounds and borders."
9002
  msgstr ""
9003
 
9004
- #: wppa-settings-autosave.php:2964
9005
  msgid "Tagcloud"
9006
  msgstr ""
9007
 
9008
- #: wppa-settings-autosave.php:2965
9009
  msgid "Tagcloud box background."
9010
  msgstr ""
9011
 
9012
- #: wppa-settings-autosave.php:2966
9013
  msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
9014
  msgstr ""
9015
 
9016
- #: wppa-settings-autosave.php:2977
9017
  #, fuzzy
9018
  msgid "Superview"
9019
  msgstr "Super View fotky"
9020
 
9021
- #: wppa-settings-autosave.php:2978
9022
  msgid "Superview box background."
9023
  msgstr ""
9024
 
9025
- #: wppa-settings-autosave.php:2979
9026
  msgid "Enter valid CSS colors for superview box backgrounds and borders."
9027
  msgstr ""
9028
 
9029
- #: wppa-settings-autosave.php:2991
9030
  msgid "Search box background."
9031
  msgstr ""
9032
 
9033
- #: wppa-settings-autosave.php:2992
9034
  msgid "Enter valid CSS colors for search box backgrounds and borders."
9035
  msgstr ""
9036
 
9037
- #: wppa-settings-autosave.php:3003
9038
  #, fuzzy
9039
  msgid "BestOf"
9040
  msgstr "fotek"
9041
 
9042
- #: wppa-settings-autosave.php:3004
9043
  msgid "BestOf box background."
9044
  msgstr ""
9045
 
9046
- #: wppa-settings-autosave.php:3005
9047
  msgid "Enter valid CSS colors for bestof box backgrounds and borders."
9048
  msgstr ""
9049
 
9050
- #: wppa-settings-autosave.php:3016
9051
  msgid "Calendar"
9052
  msgstr ""
9053
 
9054
- #: wppa-settings-autosave.php:3017
9055
  msgid "Calendar box background."
9056
  msgstr ""
9057
 
9058
- #: wppa-settings-autosave.php:3018
9059
  msgid "Enter valid CSS colors for calendar box backgrounds and borders."
9060
  msgstr ""
9061
 
9062
- #: wppa-settings-autosave.php:3050
 
 
 
 
 
 
 
 
 
 
 
 
 
9063
  msgid "Table IV:"
9064
  msgstr ""
9065
 
9066
- #: wppa-settings-autosave.php:3050
9067
  msgid "Behaviour:"
9068
  msgstr ""
9069
 
9070
- #: wppa-settings-autosave.php:3051
9071
  msgid "This table describes the dynamic behaviour of certain wppa+ elements."
9072
  msgstr ""
9073
 
9074
- #: wppa-settings-autosave.php:3069
9075
  msgid "System related settings"
9076
  msgstr ""
9077
 
9078
- #: wppa-settings-autosave.php:3071
9079
  msgid "Use Ajax"
9080
  msgstr ""
9081
 
9082
- #: wppa-settings-autosave.php:3072
9083
  msgid "Use Ajax as much as is possible and implemented."
9084
  msgstr ""
9085
 
9086
- #: wppa-settings-autosave.php:3073
9087
  msgid ""
9088
  "If this box is ticked, page content updates from within wppa+ displays will "
9089
  "be Ajax based as much as possible."
9090
  msgstr ""
9091
 
9092
- #: wppa-settings-autosave.php:3081
9093
  msgid "Ajax NON Admin"
9094
  msgstr ""
9095
 
9096
- #: wppa-settings-autosave.php:3082
9097
  msgid "Frontend ajax use no admin files."
9098
  msgstr ""
9099
 
9100
- #: wppa-settings-autosave.php:3083
9101
  msgid "If you want to password protect wp-admin, check this box."
9102
  msgstr ""
9103
 
9104
- #: wppa-settings-autosave.php:3084
9105
  msgid ""
9106
  "In rare cases changing page content does not work when this box is checked. "
9107
  "Verify the functionality!"
9108
  msgstr ""
9109
 
9110
- #: wppa-settings-autosave.php:3091
9111
  #, fuzzy
9112
  msgid "Photo names in urls"
9113
  msgstr "Výsledek vyhledávání fotek"
9114
 
9115
- #: wppa-settings-autosave.php:3092
9116
  msgid "Display photo names in urls."
9117
  msgstr ""
9118
 
9119
- #: wppa-settings-autosave.php:3093
9120
  msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
9121
  msgstr ""
9122
 
9123
- #: wppa-settings-autosave.php:3094
9124
  msgid ""
9125
  "It is your responsability to avoid duplicate names of photos in the same "
9126
  "album."
9127
  msgstr ""
9128
 
9129
- #: wppa-settings-autosave.php:3101
9130
  #, fuzzy
9131
  msgid "Album names in urls"
9132
  msgstr "Administrace alb"
9133
 
9134
- #: wppa-settings-autosave.php:3102
9135
  msgid "Display album names in urls."
9136
  msgstr ""
9137
 
9138
- #: wppa-settings-autosave.php:3103
9139
  msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
9140
  msgstr ""
9141
 
9142
- #: wppa-settings-autosave.php:3104
9143
  msgid ""
9144
  "It is your responsability to avoid duplicate names of albums in the system."
9145
  msgstr ""
9146
 
9147
- #: wppa-settings-autosave.php:3111
9148
  msgid "Use short query args"
9149
  msgstr ""
9150
 
9151
- #: wppa-settings-autosave.php:3112
9152
  msgid "Use &album=... &photo=..."
9153
  msgstr ""
9154
 
9155
- #: wppa-settings-autosave.php:3113
9156
  msgid ""
9157
  "Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
9158
  "album=... &wppa-photo=..."
9159
  msgstr ""
9160
 
9161
- #: wppa-settings-autosave.php:3114
9162
  msgid ""
9163
  "Use this setting only when there are no conflicts with other plugins that "
9164
  "may interprete arguments like &album= etc."
9165
  msgstr ""
9166
 
9167
- #: wppa-settings-autosave.php:3121
9168
  msgid "Enable pretty links"
9169
  msgstr ""
9170
 
9171
- #: wppa-settings-autosave.php:3122
9172
  msgid "Enable the generation and understanding of pretty links."
9173
  msgstr ""
9174
 
9175
- #: wppa-settings-autosave.php:3123
9176
  msgid ""
9177
  "If checked, links to social media and the qr code will have \"/token1/token2/"
9178
  "\" etc in stead of \"&arg1=..&arg2=..\" etc."
9179
  msgstr ""
9180
 
9181
- #: wppa-settings-autosave.php:3124
9182
  msgid ""
9183
  "These types of links will be interpreted and cause a redirection on entering."
9184
  msgstr ""
9185
 
9186
- #: wppa-settings-autosave.php:3125
9187
  msgid ""
9188
  "It is recommended to check this box. It shortens links dramatically and "
9189
  "simplifies qr codes."
9190
  msgstr ""
9191
 
9192
- #: wppa-settings-autosave.php:3126
9193
  msgid ""
9194
  "However, you may encounter conflicts with themes and/or other plugins, so "
9195
  "test it troughly!"
9196
  msgstr ""
9197
 
9198
- #: wppa-settings-autosave.php:3127
9199
  msgid ""
9200
  "Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
9201
  msgstr ""
9202
 
9203
- #: wppa-settings-autosave.php:3134
9204
  #, fuzzy
9205
  msgid "Update addressline"
9206
  msgstr "Album:"
9207
 
9208
- #: wppa-settings-autosave.php:3135
9209
  msgid "Update the addressline after an ajax action or next slide."
9210
  msgstr ""
9211
 
9212
- #: wppa-settings-autosave.php:3136
9213
  msgid ""
9214
  "If checked, refreshing the page will show the current content and the "
9215
  "browsers back and forth arrows will browse the history on the page."
9216
  msgstr ""
9217
 
9218
- #: wppa-settings-autosave.php:3137
9219
  msgid ""
9220
  "If unchecked, refreshing the page will re-display the content of the "
9221
  "original page."
9222
  msgstr ""
9223
 
9224
- #: wppa-settings-autosave.php:3138
9225
  msgid ""
9226
  "This will only work on browsers that support history.pushState() and "
9227
  "therefor NOT in IE"
9228
  msgstr ""
9229
 
9230
- #: wppa-settings-autosave.php:3139
9231
  msgid "Switching this off will affect the browsers behaviour."
9232
  msgstr ""
9233
 
9234
- #: wppa-settings-autosave.php:3146
9235
  msgid "Render shortcode always"
9236
  msgstr ""
9237
 
9238
- #: wppa-settings-autosave.php:3147
9239
  msgid "This will skip the check on proper initialisation."
9240
  msgstr ""
9241
 
9242
- #: wppa-settings-autosave.php:3148
9243
  msgid ""
9244
  "This setting is required for certain themes like Gantry to prevent the "
9245
  "display of wppa placeholders like [WPPA+ Photo display]."
9246
  msgstr ""
9247
 
9248
- #: wppa-settings-autosave.php:3149
9249
  #, php-format
9250
  msgid ""
9251
  "If this check is needed, you can use shortcodes like [wppa ...] only, not "
9252
  "scripts like %%wppa%%."
9253
  msgstr ""
9254
 
9255
- #: wppa-settings-autosave.php:3156
9256
  msgid "Track viewcounts"
9257
  msgstr ""
9258
 
9259
- #: wppa-settings-autosave.php:3157
9260
  msgid "Register number of views of albums and photos."
9261
  msgstr ""
9262
 
9263
- #: wppa-settings-autosave.php:3165
9264
  #, fuzzy
9265
  msgid "Auto page"
9266
  msgstr "Automatika, záblesk"
9267
 
9268
- #: wppa-settings-autosave.php:3166
9269
  msgid "Create a wp page for every fullsize image."
9270
  msgstr ""
9271
 
9272
- #: wppa-settings-autosave.php:3170
9273
  msgid "Please reload this page after changing!"
9274
  msgstr ""
9275
 
9276
- #: wppa-settings-autosave.php:3176
9277
  msgid "Auto page display"
9278
  msgstr ""
9279
 
9280
- #: wppa-settings-autosave.php:3177
9281
  msgid "The type of display on the autopage pages."
9282
  msgstr ""
9283
 
9284
- #: wppa-settings-autosave.php:3180
9285
  #, fuzzy
9286
  msgid "Single photo"
9287
  msgstr "Spravovat fotky"
9288
 
9289
- #: wppa-settings-autosave.php:3180
9290
  #, fuzzy
9291
  msgid "Media type photo"
9292
  msgstr "Upravit fotku"
9293
 
9294
- #: wppa-settings-autosave.php:3180
9295
  msgid "In the style of a slideshow"
9296
  msgstr ""
9297
 
9298
- #: wppa-settings-autosave.php:3187
9299
  msgid "Auto page links"
9300
  msgstr ""
9301
 
9302
- #: wppa-settings-autosave.php:3188
9303
  msgid "The location for the pagelinks."
9304
  msgstr ""
9305
 
9306
- #: wppa-settings-autosave.php:3191
9307
  msgid "At top and bottom"
9308
  msgstr ""
9309
 
9310
- #: wppa-settings-autosave.php:3198
9311
  msgid "Defer javascript"
9312
  msgstr ""
9313
 
9314
- #: wppa-settings-autosave.php:3199
9315
  msgid "Put javascript near the end of the page."
9316
  msgstr ""
9317
 
9318
- #: wppa-settings-autosave.php:3200
9319
  msgid ""
9320
  "If checkd: May fix layout problems and broken slideshows. May speed up or "
9321
  "slow down page appearing."
9322
  msgstr ""
9323
 
9324
- #: wppa-settings-autosave.php:3207
9325
  msgid "Inline styles"
9326
  msgstr ""
9327
 
9328
- #: wppa-settings-autosave.php:3208
9329
  msgid "Set style specifications inline."
9330
  msgstr ""
9331
 
9332
- #: wppa-settings-autosave.php:3209
9333
  msgid "If checked: May fix layout problems, but slows down page appearing."
9334
  msgstr ""
9335
 
9336
- #: wppa-settings-autosave.php:3216
9337
  msgid "Custom style"
9338
  msgstr ""
9339
 
9340
- #: wppa-settings-autosave.php:3217
9341
  msgid "Enter custom style specs here."
9342
  msgstr ""
9343
 
9344
- #: wppa-settings-autosave.php:3225
9345
  msgid "Use customized style file"
9346
  msgstr ""
9347
 
9348
- #: wppa-settings-autosave.php:3226 wppa-settings-autosave.php:3235
9349
  msgid "This feature is highly discouraged."
9350
  msgstr ""
9351
 
9352
- #: wppa-settings-autosave.php:3234
9353
  msgid "Use customized theme file"
9354
  msgstr ""
9355
 
9356
- #: wppa-settings-autosave.php:3243
9357
  msgid "Enable photo html access"
9358
  msgstr ""
9359
 
9360
- #: wppa-settings-autosave.php:3244
9361
  msgid "Creates an .htaccess file in .../uploads/wppa/"
9362
  msgstr ""
9363
 
9364
- #: wppa-settings-autosave.php:3245
9365
  msgid ""
9366
  "If checked: assures http access to your wppa photo files, despite other ."
9367
  "htaccess settings that may protect these files."
9368
  msgstr ""
9369
 
9370
- #: wppa-settings-autosave.php:3252
9371
  msgid "Lazy or HTML comp"
9372
  msgstr ""
9373
 
9374
- #: wppa-settings-autosave.php:3253
9375
  msgid "Tick this box when you use lazy load or html compression."
9376
  msgstr ""
9377
 
9378
- #: wppa-settings-autosave.php:3254
9379
  msgid ""
9380
  "If the filmstrip images do not show up and you have a lazy load or html "
9381
  "optimizing plugin active: Check this box"
9382
  msgstr ""
9383
 
9384
- #: wppa-settings-autosave.php:3261
9385
  #, fuzzy
9386
  msgid "Thumbs first"
9387
  msgstr "Náhledy"
9388
 
9389
- #: wppa-settings-autosave.php:3262
9390
  msgid "When displaying album content: thumbnails before subalbums."
9391
  msgstr ""
9392
 
9393
- #: wppa-settings-autosave.php:3270
9394
  msgid "Login links"
9395
  msgstr ""
9396
 
9397
- #: wppa-settings-autosave.php:3271
9398
  #, fuzzy
9399
  msgid "You must login to... links to login page."
9400
  msgstr " K hodnocení se musíte <a href=&quot;\"%s\"&quot;>přihlásit</a>."
9401
 
9402
- #: wppa-settings-autosave.php:3279
9403
  msgid "Enable Video"
9404
  msgstr ""
9405
 
9406
- #: wppa-settings-autosave.php:3280
9407
  msgid "Enables video support."
9408
  msgstr ""
9409
 
9410
- #: wppa-settings-autosave.php:3289
9411
  msgid "Enable Audio"
9412
  msgstr ""
9413
 
9414
- #: wppa-settings-autosave.php:3290
9415
  msgid "Enables audio support."
9416
  msgstr ""
9417
 
9418
- #: wppa-settings-autosave.php:3298
 
 
 
 
 
 
 
 
9419
  msgid "Relative urls"
9420
  msgstr ""
9421
 
9422
- #: wppa-settings-autosave.php:3299
9423
  msgid "Use relative urls only."
9424
  msgstr ""
9425
 
9426
- #: wppa-settings-autosave.php:3308
9427
  msgid "Slideshow related settings"
9428
  msgstr ""
9429
 
9430
- #: wppa-settings-autosave.php:3310
9431
  msgid "V align"
9432
  msgstr ""
9433
 
9434
- #: wppa-settings-autosave.php:3311
9435
  msgid "Vertical alignment of slideshow images."
9436
  msgstr ""
9437
 
9438
- #: wppa-settings-autosave.php:3312
9439
  msgid "Specify the vertical alignment of slideshow images."
9440
  msgstr ""
9441
 
9442
- #: wppa-settings-autosave.php:3313
9443
  msgid ""
9444
  "If you select --- none ---, the photos will not be centered horizontally "
9445
  "either."
9446
  msgstr ""
9447
 
9448
- #: wppa-settings-autosave.php:3315 wppa-settings-autosave.php:3580
9449
  #: wppa-slideshow-widget.php:216
9450
  #, fuzzy
9451
  msgid "top"
9452
  msgstr "Zastavit"
9453
 
9454
- #: wppa-settings-autosave.php:3315 wppa-settings-autosave.php:3329
9455
- #: wppa-settings-autosave.php:3580 wppa-slideshow-widget.php:217
9456
- #: wppa-tinymce-scripts.php:290 wppa-tinymce-shortcodes.php:519
9457
  #: wppa-widget-admin.php:78
9458
  msgid "center"
9459
  msgstr ""
9460
 
9461
- #: wppa-settings-autosave.php:3315 wppa-settings-autosave.php:3580
9462
  #: wppa-slideshow-widget.php:218
9463
  msgid "bottom"
9464
  msgstr ""
9465
 
9466
- #: wppa-settings-autosave.php:3315 wppa-slideshow-widget.php:219
9467
  msgid "fit"
9468
  msgstr ""
9469
 
9470
- #: wppa-settings-autosave.php:3323
9471
  msgid "H align"
9472
  msgstr ""
9473
 
9474
- #: wppa-settings-autosave.php:3324
9475
  msgid "Horizontal alignment of slideshow images."
9476
  msgstr ""
9477
 
9478
- #: wppa-settings-autosave.php:3325
9479
  msgid ""
9480
  "Specify the horizontal alignment of slideshow images. If you specify --- "
9481
  "none --- , no horizontal alignment will take place."
9482
  msgstr ""
9483
 
9484
- #: wppa-settings-autosave.php:3326
9485
  msgid ""
9486
  "This setting is only usefull when the Column Width differs from the Maximum "
9487
  "Width."
9488
  msgstr ""
9489
 
9490
- #: wppa-settings-autosave.php:3327
9491
  msgid "(Settings I-A1 and I-B1)"
9492
  msgstr ""
9493
 
9494
- #: wppa-settings-autosave.php:3337
9495
  #, fuzzy
9496
  msgid "Start slideshow running."
9497
  msgstr "Ke spuštění/zastavení prezentace dvakrát klikněte"
9498
 
9499
- #: wppa-settings-autosave.php:3338
9500
  msgid ""
9501
  "If you select \"running\", the slideshow will start running immediately, if "
9502
  "you select \"still at first photo\", the first photo will be displayed in "
9503
  "browse mode."
9504
  msgstr ""
9505
 
9506
- #: wppa-settings-autosave.php:3339
9507
  msgid ""
9508
  "If you select \"still at first norated\", the first photo that the visitor "
9509
  "did not gave a rating will be displayed in browse mode."
9510
  msgstr ""
9511
 
9512
- #: wppa-settings-autosave.php:3341
9513
  msgid "running"
9514
  msgstr ""
9515
 
9516
- #: wppa-settings-autosave.php:3342
9517
  msgid "still at first photo"
9518
  msgstr ""
9519
 
9520
- #: wppa-settings-autosave.php:3343
9521
  msgid "still at first norated"
9522
  msgstr ""
9523
 
9524
- #: wppa-settings-autosave.php:3354
9525
  msgid "Start slideonly"
9526
  msgstr ""
9527
 
9528
- #: wppa-settings-autosave.php:3355
9529
  #, fuzzy
9530
  msgid "Start slideonly slideshow running."
9531
  msgstr "Ke spuštění/zastavení prezentace dvakrát klikněte"
9532
 
9533
- #: wppa-settings-autosave.php:3363 wppa-settings-autosave.php:4178
9534
  msgid "Video autostart"
9535
  msgstr ""
9536
 
9537
- #: wppa-settings-autosave.php:3364
9538
  msgid "Autoplay videos in slideshows."
9539
  msgstr ""
9540
 
9541
- #: wppa-settings-autosave.php:3373 wppa-settings-autosave.php:4187
9542
  msgid "Audio autostart"
9543
  msgstr ""
9544
 
9545
- #: wppa-settings-autosave.php:3374
9546
  msgid "Autoplay audios in slideshows."
9547
  msgstr ""
9548
 
9549
- #: wppa-settings-autosave.php:3382
9550
  msgid "Animation type"
9551
  msgstr ""
9552
 
9553
- #: wppa-settings-autosave.php:3383
9554
  msgid "The way successive slides appear."
9555
  msgstr ""
9556
 
9557
- #: wppa-settings-autosave.php:3384
9558
  msgid ""
9559
  "Select the way the old slide is to be replaced by the new one in the "
9560
  "slideshow/browse fullsize display."
9561
  msgstr ""
9562
 
9563
- #: wppa-settings-autosave.php:3386
9564
  msgid "Fade out and in simultaneous"
9565
  msgstr ""
9566
 
9567
- #: wppa-settings-autosave.php:3387
9568
  msgid "Fade in after fade out"
9569
  msgstr ""
9570
 
9571
- #: wppa-settings-autosave.php:3388
9572
  msgid "Shift adjacent"
9573
  msgstr ""
9574
 
9575
- #: wppa-settings-autosave.php:3389
9576
  msgid "Stack on"
9577
  msgstr ""
9578
 
9579
- #: wppa-settings-autosave.php:3390
9580
  msgid "Stack off"
9581
  msgstr ""
9582
 
9583
- #: wppa-settings-autosave.php:3391
9584
  msgid "Turn over"
9585
  msgstr ""
9586
 
9587
- #: wppa-settings-autosave.php:3405
9588
  msgid "Timeout"
9589
  msgstr ""
9590
 
9591
- #: wppa-settings-autosave.php:3406
9592
  #, fuzzy
9593
  msgid "Slideshow timeout."
9594
  msgstr "Slideshow"
9595
 
9596
- #: wppa-settings-autosave.php:3407
9597
  msgid ""
9598
  "Select the time a single slide will be visible when the slideshow is started."
9599
  msgstr ""
9600
 
9601
- #: wppa-settings-autosave.php:3409
9602
  msgid "very short (1 s.)"
9603
  msgstr ""
9604
 
9605
- #: wppa-settings-autosave.php:3409
9606
  msgid "short (1.5 s.)"
9607
  msgstr ""
9608
 
9609
- #: wppa-settings-autosave.php:3409
9610
  msgid "normal (2.5 s.)"
9611
  msgstr ""
9612
 
9613
- #: wppa-settings-autosave.php:3409
9614
  msgid "long (4 s.)"
9615
  msgstr ""
9616
 
9617
- #: wppa-settings-autosave.php:3409
9618
  msgid "very long (6 s.)"
9619
  msgstr ""
9620
 
9621
- #: wppa-settings-autosave.php:3416
9622
  msgid "Speed"
9623
  msgstr ""
9624
 
9625
- #: wppa-settings-autosave.php:3417
9626
  msgid "Slideshow animation speed."
9627
  msgstr ""
9628
 
9629
- #: wppa-settings-autosave.php:3418
9630
  msgid "Specify the animation speed to be used in slideshows."
9631
  msgstr ""
9632
 
9633
- #: wppa-settings-autosave.php:3419
9634
  msgid "This is the time it takes a photo to fade in or out."
9635
  msgstr ""
9636
 
9637
- #: wppa-settings-autosave.php:3421 wppa-settings-autosave.php:4124
9638
- #: wppa-settings-autosave.php:5839 wppa-settings-autosave.php:6724
9639
- #: wppa-settings-autosave.php:6735 wppa-settings-autosave.php:6874
9640
- #: wppa-settings-autosave.php:6915
9641
  #, fuzzy
9642
  msgid "--- off ---"
9643
  msgstr "--- žádné ---"
9644
 
9645
- #: wppa-settings-autosave.php:3421
9646
  msgid "very fast (200 ms.)"
9647
  msgstr ""
9648
 
9649
- #: wppa-settings-autosave.php:3421
9650
  msgid "fast (400 ms.)"
9651
  msgstr ""
9652
 
9653
- #: wppa-settings-autosave.php:3421
9654
  msgid "normal (800 ms.)"
9655
  msgstr ""
9656
 
9657
- #: wppa-settings-autosave.php:3421
9658
  msgid "slow (1.2 s.)"
9659
  msgstr ""
9660
 
9661
- #: wppa-settings-autosave.php:3421
9662
  #, fuzzy
9663
  msgid "very slow (2 s.)"
9664
  msgstr "velmi nízká"
9665
 
9666
- #: wppa-settings-autosave.php:3421
9667
  msgid "extremely slow (4 s.)"
9668
  msgstr ""
9669
 
9670
- #: wppa-settings-autosave.php:3428
9671
  msgid "Slide hover pause"
9672
  msgstr ""
9673
 
9674
- #: wppa-settings-autosave.php:3429
9675
  msgid "Running Slideshow suspends during mouse hover."
9676
  msgstr ""
9677
 
9678
- #: wppa-settings-autosave.php:3437
9679
  #, fuzzy
9680
  msgid "Slideshow wrap around"
9681
  msgstr "Slideshow"
9682
 
9683
- #: wppa-settings-autosave.php:3438
9684
  msgid "The slideshow wraps around the start and end"
9685
  msgstr ""
9686
 
9687
- #: wppa-settings-autosave.php:3446
9688
  msgid "Full desc align"
9689
  msgstr ""
9690
 
9691
- #: wppa-settings-autosave.php:3447
9692
  msgid "The alignment of the descriptions under fullsize images and slideshows."
9693
  msgstr ""
9694
 
9695
- #: wppa-settings-autosave.php:3450 wppa-settings-autosave.php:3568
9696
- #: wppa-settings-autosave.php:3671
9697
  msgid "Left"
9698
  msgstr ""
9699
 
9700
- #: wppa-settings-autosave.php:3450
9701
  msgid "Center"
9702
  msgstr ""
9703
 
9704
- #: wppa-settings-autosave.php:3450 wppa-settings-autosave.php:3568
9705
- #: wppa-settings-autosave.php:3671
9706
  msgid "Right"
9707
  msgstr ""
9708
 
9709
- #: wppa-settings-autosave.php:3457
9710
  msgid "Remove redundant space"
9711
  msgstr ""
9712
 
9713
- #: wppa-settings-autosave.php:3458
9714
  msgid "Removes unwanted &lt;p> and &lt;br> tags in fullsize descriptions."
9715
  msgstr ""
9716
 
9717
- #: wppa-settings-autosave.php:3459
9718
  msgid ""
9719
  "This setting has only effect when Table IX-A7 (foreign shortcodes) is "
9720
  "checked."
9721
  msgstr ""
9722
 
9723
- #: wppa-settings-autosave.php:3466
9724
  #, fuzzy
9725
  msgid "Run wpautop on description"
9726
  msgstr "Zadat/upravit popis fotky"
9727
 
9728
- #: wppa-settings-autosave.php:3467
9729
  msgid "Adds &lt;p> and &lt;br> tags in fullsize descriptions."
9730
  msgstr ""
9731
 
9732
- #: wppa-settings-autosave.php:3475
9733
  #, fuzzy
9734
  msgid "Auto open comments"
9735
  msgstr "Váš komentář:"
9736
 
9737
- #: wppa-settings-autosave.php:3476
9738
  msgid "Automatic opens comments box when slideshow does not run."
9739
  msgstr ""
9740
 
9741
- #: wppa-settings-autosave.php:3484
9742
  #, fuzzy
9743
  msgid "Film hover goto"
9744
  msgstr "Zobrazit úvodní fotku"
9745
 
9746
- #: wppa-settings-autosave.php:3485
9747
  msgid "Go to slide when hovering filmstrip thumbnail."
9748
  msgstr ""
9749
 
9750
- #: wppa-settings-autosave.php:3486
9751
  msgid "Do not use this setting when slides have different aspect ratios!"
9752
  msgstr ""
9753
 
9754
- #: wppa-settings-autosave.php:3493
9755
  #, fuzzy
9756
  msgid "Slide swipe"
9757
  msgstr "Slideshow"
9758
 
9759
- #: wppa-settings-autosave.php:3494
9760
  msgid "Enable touch events swipe left-right on slides on touch screens."
9761
  msgstr ""
9762
 
9763
- #: wppa-settings-autosave.php:3502
9764
  msgid "Slide page Ajax"
9765
  msgstr ""
9766
 
9767
- #: wppa-settings-autosave.php:3503
9768
  msgid "Pagelinks slideshow use Ajax"
9769
  msgstr ""
9770
 
9771
- #: wppa-settings-autosave.php:3504
9772
  msgid "On some systems you need to disable ajax here."
9773
  msgstr ""
9774
 
9775
- #: wppa-settings-autosave.php:3511
9776
  msgid "Thumbnail related settings"
9777
  msgstr ""
9778
 
9779
- #: wppa-settings-autosave.php:3514
9780
  msgid "Photo ordering sequence method."
9781
  msgstr ""
9782
 
9783
- #: wppa-settings-autosave.php:3515
9784
  msgid ""
9785
  "Specify the way the photos should be ordered. This is the default setting. "
9786
  "You can overrule the default sorting order on a per album basis."
9787
  msgstr ""
9788
 
9789
- #: wppa-settings-autosave.php:3552
9790
  #, fuzzy
9791
  msgid "Thumbnail type"
9792
  msgstr "Stránka s náhledy"
9793
 
9794
- #: wppa-settings-autosave.php:3553
9795
  msgid "The way the thumbnail images are displayed."
9796
  msgstr ""
9797
 
9798
- #: wppa-settings-autosave.php:3554
9799
  msgid ""
9800
  "You may select an altenative display method for thumbnails. Note that some "
9801
  "of the thumbnail settings do not apply to all available display methods."
9802
  msgstr ""
9803
 
9804
- #: wppa-settings-autosave.php:3556
9805
  msgid "like album covers"
9806
  msgstr ""
9807
 
9808
- #: wppa-settings-autosave.php:3556
9809
  msgid "like album covers mcr"
9810
  msgstr ""
9811
 
9812
- #: wppa-settings-autosave.php:3556
9813
  msgid "masonry style columns"
9814
  msgstr ""
9815
 
9816
- #: wppa-settings-autosave.php:3556
9817
  msgid "masonry style rows"
9818
  msgstr ""
9819
 
9820
- #: wppa-settings-autosave.php:3564 wppa-settings-autosave.php:3665
9821
  msgid "Placement"
9822
  msgstr ""
9823
 
9824
- #: wppa-settings-autosave.php:3565
9825
  msgid "Thumbnail image left or right."
9826
  msgstr ""
9827
 
9828
- #: wppa-settings-autosave.php:3566
9829
  msgid "Indicate the placement position of the thumbnailphoto you wish."
9830
  msgstr ""
9831
 
9832
- #: wppa-settings-autosave.php:3575
9833
  msgid "Vertical alignment"
9834
  msgstr ""
9835
 
9836
- #: wppa-settings-autosave.php:3576
9837
  msgid "Vertical alignment of thumbnails."
9838
  msgstr ""
9839
 
9840
- #: wppa-settings-autosave.php:3577
9841
  msgid ""
9842
  "Specify the vertical alignment of thumbnail images. Use this setting when "
9843
  "albums contain both portrait and landscape photos."
9844
  msgstr ""
9845
 
9846
- #: wppa-settings-autosave.php:3578
9847
  msgid ""
9848
  "It is NOT recommended to use the value --- default ---; it will affect the "
9849
  "horizontal alignment also and is meant to be used with custom css."
9850
  msgstr ""
9851
 
9852
- #: wppa-settings-autosave.php:3587
9853
  msgid "Thumb mouseover"
9854
  msgstr ""
9855
 
9856
- #: wppa-settings-autosave.php:3588
9857
  msgid "Apply thumbnail mouseover effect."
9858
  msgstr ""
9859
 
9860
- #: wppa-settings-autosave.php:3589
9861
  msgid "Check this box to use mouseover effect on thumbnail images."
9862
  msgstr ""
9863
 
9864
- #: wppa-settings-autosave.php:3597
9865
  #, fuzzy
9866
  msgid "Thumb opacity"
9867
  msgstr "Označkované fotografie"
9868
 
9869
- #: wppa-settings-autosave.php:3598 wppa-settings-autosave.php:3690
9870
  msgid "Initial opacity value."
9871
  msgstr ""
9872
 
9873
- #: wppa-settings-autosave.php:3599 wppa-settings-autosave.php:3691
9874
- #: wppa-settings-autosave.php:3800
9875
  msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
9876
  msgstr ""
9877
 
9878
- #: wppa-settings-autosave.php:3601 wppa-settings-autosave.php:3693
9879
- #: wppa-settings-autosave.php:3803 wppa-settings-autosave.php:4104
9880
  msgid "%"
9881
  msgstr ""
9882
 
9883
- #: wppa-settings-autosave.php:3606
9884
  msgid "Thumb popup"
9885
  msgstr ""
9886
 
9887
- #: wppa-settings-autosave.php:3607
9888
  msgid "Use popup effect on thumbnail images."
9889
  msgstr ""
9890
 
9891
- #: wppa-settings-autosave.php:3608
9892
  msgid "Thumbnails pop-up to a larger image when hovered."
9893
  msgstr ""
9894
 
9895
- #: wppa-settings-autosave.php:3616
9896
  msgid "Align subtext"
9897
  msgstr ""
9898
 
9899
- #: wppa-settings-autosave.php:3617
9900
  msgid "Set thumbnail subtext on equal height."
9901
  msgstr ""
9902
 
9903
- #: wppa-settings-autosave.php:3625
9904
  msgid "Album and covers related settings"
9905
  msgstr ""
9906
 
9907
- #: wppa-settings-autosave.php:3627
9908
  #, fuzzy
9909
  msgid "Album order"
9910
  msgstr "Administrace alb"
9911
 
9912
- #: wppa-settings-autosave.php:3628
9913
  msgid "Album ordering sequence method."
9914
  msgstr ""
9915
 
9916
- #: wppa-settings-autosave.php:3629
9917
  msgid "Specify the way the albums should be ordered."
9918
  msgstr ""
9919
 
9920
- #: wppa-settings-autosave.php:3654
9921
  #, fuzzy
9922
  msgid "Default coverphoto selection"
9923
  msgstr "Přednastavené fotoalbum pro"
9924
 
9925
- #: wppa-settings-autosave.php:3655
9926
  msgid "Default select cover photo method."
9927
  msgstr ""
9928
 
9929
- #: wppa-settings-autosave.php:3656
9930
  msgid ""
9931
  "This is the initial value on album creation only. It can be overruled on the "
9932
  "edit album page."
9933
  msgstr ""
9934
 
9935
- #: wppa-settings-autosave.php:3657
9936
  msgid "Random from album"
9937
  msgstr ""
9938
 
9939
- #: wppa-settings-autosave.php:3657
9940
  msgid "Random featured from album"
9941
  msgstr ""
9942
 
9943
- #: wppa-settings-autosave.php:3657
9944
  #, fuzzy
9945
  msgid "Most recently added to album"
9946
  msgstr "Nedávno nahrané fotky"
9947
 
9948
- #: wppa-settings-autosave.php:3657
9949
  #, fuzzy
9950
  msgid "Random from album or any sub album"
9951
  msgstr "Uživatel %s nahrál fotku %s do alba %s"
9952
 
9953
- #: wppa-settings-autosave.php:3666
9954
  #, fuzzy
9955
  msgid "Cover image position."
9956
  msgstr "Správa úprav fotek"
9957
 
9958
- #: wppa-settings-autosave.php:3667
9959
  msgid ""
9960
  "Enter the position that you want to be used for the default album cover "
9961
  "selected in Table IV-D6."
9962
  msgstr ""
9963
 
9964
- #: wppa-settings-autosave.php:3668
9965
  msgid ""
9966
  "For covertype Image Factory: left will be treated as top and right will be "
9967
  "treted as bottom."
9968
  msgstr ""
9969
 
9970
- #: wppa-settings-autosave.php:3669
9971
  msgid ""
9972
  "For covertype Long Descriptions: top will be treated as left and bottom will "
9973
  "be treted as right."
9974
  msgstr ""
9975
 
9976
- #: wppa-settings-autosave.php:3679
9977
  msgid "Cover mouseover"
9978
  msgstr ""
9979
 
9980
- #: wppa-settings-autosave.php:3680
9981
  msgid "Apply coverphoto mouseover effect."
9982
  msgstr ""
9983
 
9984
- #: wppa-settings-autosave.php:3681
9985
  msgid "Check this box to use mouseover effect on cover images."
9986
  msgstr ""
9987
 
9988
- #: wppa-settings-autosave.php:3689
9989
  msgid "Cover opacity"
9990
  msgstr ""
9991
 
9992
- #: wppa-settings-autosave.php:3698
9993
  msgid "Cover type"
9994
  msgstr ""
9995
 
9996
- #: wppa-settings-autosave.php:3699
9997
  msgid "Select the default cover type."
9998
  msgstr ""
9999
 
10000
- #: wppa-settings-autosave.php:3700
10001
  msgid ""
10002
  "Types with the addition mcr are suitable for Multi Column in a Responsive "
10003
  "theme"
10004
  msgstr ""
10005
 
10006
- #: wppa-settings-autosave.php:3723
10007
  msgid "The umber of coverphotos. Must be > 1 and < 25."
10008
  msgstr ""
10009
 
10010
- #: wppa-settings-autosave.php:3731
10011
  msgid "Rating related settings"
10012
  msgstr ""
10013
 
10014
- #: wppa-settings-autosave.php:3733
10015
  #, fuzzy
10016
  msgid "Rating login"
10017
  msgstr "Hlasování: %s"
10018
 
10019
- #: wppa-settings-autosave.php:3734
10020
  #, fuzzy
10021
  msgid "Users must login to rate photos."
10022
  msgstr "Nedávno nahrané fotografie"
10023
 
10024
- #: wppa-settings-autosave.php:3735
10025
  msgid ""
10026
  "If users want to vote for a photo (rating 1..5 stars) the must login first. "
10027
  "The avarage rating will always be displayed as long as the rating system is "
10028
  "enabled."
10029
  msgstr ""
10030
 
10031
- #: wppa-settings-autosave.php:3742
10032
  #, fuzzy
10033
  msgid "Rating change"
10034
  msgstr "Hlasování: %s"
10035
 
10036
- #: wppa-settings-autosave.php:3743 wppa-settings-autosave.php:3744
10037
  msgid "Users may change their ratings."
10038
  msgstr ""
10039
 
10040
- #: wppa-settings-autosave.php:3745 wppa-settings-autosave.php:3782
10041
- #: wppa-settings-autosave.php:3801 wppa-settings-autosave.php:3814
10042
- #: wppa-settings-autosave.php:3824 wppa-settings-autosave.php:3834
10043
- #: wppa-settings-autosave.php:3844 wppa-settings-autosave.php:3853
10044
  msgid ""
10045
  "If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
10046
  msgstr ""
10047
 
10048
- #: wppa-settings-autosave.php:3752
10049
  #, fuzzy
10050
  msgid "Rating multi"
10051
  msgstr "Hlasování: %s"
10052
 
10053
- #: wppa-settings-autosave.php:3753
10054
  msgid "Users may give multiple votes."
10055
  msgstr ""
10056
 
10057
- #: wppa-settings-autosave.php:3754
10058
  msgid ""
10059
  "Users may give multiple votes. (This has no effect when users may change "
10060
  "their votes.)"
10061
  msgstr ""
10062
 
10063
- #: wppa-settings-autosave.php:3761
10064
  #, fuzzy
10065
  msgid "Rate own photos"
10066
  msgstr "napsáno k fotce"
10067
 
10068
- #: wppa-settings-autosave.php:3762
10069
  msgid "It is allowed to rate photos by the uploader himself."
10070
  msgstr ""
10071
 
10072
- #: wppa-settings-autosave.php:3770
10073
  msgid "Rating requires comment"
10074
  msgstr ""
10075
 
10076
- #: wppa-settings-autosave.php:3771
10077
  #, fuzzy
10078
  msgid "Users must clarify their vote in a comment."
10079
  msgstr "Musíte se <a href=&quot;\"%s\"&quot;>přihlásit</a> k napsání komentáře"
10080
 
10081
- #: wppa-settings-autosave.php:3780
10082
  msgid "This value counts dislike rating."
10083
  msgstr ""
10084
 
10085
- #: wppa-settings-autosave.php:3781
10086
  msgid ""
10087
  "This value will be used for a dislike rating on calculation of avarage "
10088
  "ratings."
10089
  msgstr ""
10090
 
10091
- #: wppa-settings-autosave.php:3784
10092
  msgid "points"
10093
  msgstr ""
10094
 
10095
- #: wppa-settings-autosave.php:3789
10096
  msgid "Next after vote"
10097
  msgstr ""
10098
 
10099
- #: wppa-settings-autosave.php:3790
10100
  msgid "Goto next slide after voting"
10101
  msgstr ""
10102
 
10103
- #: wppa-settings-autosave.php:3791
10104
  msgid ""
10105
  "If checked, the visitor goes straight to the slide following the slide he "
10106
  "voted. This will speed up mass voting."
10107
  msgstr ""
10108
 
10109
- #: wppa-settings-autosave.php:3798
10110
  msgid "Star off opacity"
10111
  msgstr ""
10112
 
10113
- #: wppa-settings-autosave.php:3799
10114
  msgid "Rating star off state opacity value."
10115
  msgstr ""
10116
 
10117
- #: wppa-settings-autosave.php:3809
10118
  msgid "Notify admin every x times."
10119
  msgstr ""
10120
 
10121
- #: wppa-settings-autosave.php:3810
10122
  msgid ""
10123
  "If this number is positive, there will be a thumb down icon in the rating "
10124
  "bar."
10125
  msgstr ""
10126
 
10127
- #: wppa-settings-autosave.php:3811
10128
  msgid ""
10129
  "Cicking the icon indicates a user wants to report that an image is "
10130
  "inappropiate."
10131
  msgstr ""
10132
 
10133
- #: wppa-settings-autosave.php:3812
10134
  msgid "Admin will be notified by email after every x reports."
10135
  msgstr ""
10136
 
10137
- #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:3823
10138
- #: wppa-settings-autosave.php:3833
10139
  msgid "A value of 0 disables this feature."
10140
  msgstr ""
10141
 
10142
- #: wppa-settings-autosave.php:3816 wppa-settings-autosave.php:3826
10143
- #: wppa-settings-autosave.php:3836
10144
  msgid "reports"
10145
  msgstr ""
10146
 
10147
- #: wppa-settings-autosave.php:3821
10148
  msgid "Pending after"
10149
  msgstr ""
10150
 
10151
- #: wppa-settings-autosave.php:3822
10152
  msgid "Set status to pending after xx dislike votes."
10153
  msgstr ""
10154
 
10155
- #: wppa-settings-autosave.php:3831
10156
  #, fuzzy
10157
  msgid "Delete after"
10158
  msgstr "Album:"
10159
 
10160
- #: wppa-settings-autosave.php:3832
10161
  msgid "Deete photo after xx dislike votes."
10162
  msgstr ""
10163
 
10164
- #: wppa-settings-autosave.php:3841
10165
  #, fuzzy
10166
  msgid "Show dislike count"
10167
  msgstr "Žádné hodnocení NELÍBÍ"
10168
 
10169
- #: wppa-settings-autosave.php:3842
10170
  msgid "Show the number of dislikes in the rating bar."
10171
  msgstr ""
10172
 
10173
- #: wppa-settings-autosave.php:3843
10174
  msgid "Displayes the total number of dislike votes for the current photo."
10175
  msgstr ""
10176
 
10177
- #: wppa-settings-autosave.php:3851
10178
  msgid "Rating display type"
10179
  msgstr ""
10180
 
10181
- #: wppa-settings-autosave.php:3852
10182
  msgid "Specify the type of the rating display."
10183
  msgstr ""
10184
 
10185
- #: wppa-settings-autosave.php:3855
10186
  msgid "Graphic"
10187
  msgstr ""
10188
 
10189
- #: wppa-settings-autosave.php:3855
10190
  msgid "Numeric"
10191
  msgstr ""
10192
 
10193
- #: wppa-settings-autosave.php:3862
10194
  #, fuzzy
10195
  msgid "Show average rating"
10196
  msgstr "Průměrné hodnocení"
10197
 
10198
- #: wppa-settings-autosave.php:3863
10199
  msgid "Display the avarage rating and/or vote count on the rating bar"
10200
  msgstr ""
10201
 
10202
- #: wppa-settings-autosave.php:3864
10203
  msgid ""
10204
  "If checked, the average rating as well as the current users rating is "
10205
  "displayed in max 5 or 10 stars."
10206
  msgstr ""
10207
 
10208
- #: wppa-settings-autosave.php:3865
10209
  msgid "If unchecked, only the current users rating is displayed (if any)."
10210
  msgstr ""
10211
 
10212
- #: wppa-settings-autosave.php:3866
10213
  msgid ""
10214
  "If \"One button vote\" is selected in Table I-E1, this box checked will "
10215
  "display the vote count."
10216
  msgstr ""
10217
 
10218
- #: wppa-settings-autosave.php:3873
10219
  msgid "Single vote button text"
10220
  msgstr ""
10221
 
10222
- #: wppa-settings-autosave.php:3874
10223
  msgid "The text on the voting button."
10224
  msgstr ""
10225
 
10226
- #: wppa-settings-autosave.php:3875 wppa-settings-autosave.php:3884
10227
  msgid "This text may contain qTranslate compatible language tags."
10228
  msgstr ""
10229
 
10230
- #: wppa-settings-autosave.php:3882
10231
  msgid "Single vote button text voted"
10232
  msgstr ""
10233
 
10234
- #: wppa-settings-autosave.php:3883
10235
  msgid "The text on the voting button when voted."
10236
  msgstr ""
10237
 
10238
- #: wppa-settings-autosave.php:3891
10239
  #, fuzzy
10240
  msgid "Single vote button thumbnail"
10241
  msgstr "Prohlédnout náhledy"
10242
 
10243
- #: wppa-settings-autosave.php:3892
10244
  msgid "Display single vote button below thumbnails."
10245
  msgstr ""
10246
 
10247
- #: wppa-settings-autosave.php:3893
10248
  msgid ""
10249
  "This works only in single vote mode: Table I-E1 set to \"one button vote\""
10250
  msgstr ""
10251
 
10252
- #: wppa-settings-autosave.php:3900
10253
  msgid "Medal bronze when"
10254
  msgstr ""
10255
 
10256
- #: wppa-settings-autosave.php:3901 wppa-settings-autosave.php:3919
10257
  msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
10258
  msgstr ""
10259
 
10260
- #: wppa-settings-autosave.php:3902 wppa-settings-autosave.php:3920
10261
  msgid ""
10262
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10263
  "bronze medal. A value of 0 indicates that you do not want this feature."
10264
  msgstr ""
10265
 
10266
- #: wppa-settings-autosave.php:3904 wppa-settings-autosave.php:3913
10267
- #: wppa-settings-autosave.php:3922
10268
  msgid "Topscores"
10269
  msgstr ""
10270
 
10271
- #: wppa-settings-autosave.php:3909
10272
  msgid "Medal silver when"
10273
  msgstr ""
10274
 
10275
- #: wppa-settings-autosave.php:3910
10276
  msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
10277
  msgstr ""
10278
 
10279
- #: wppa-settings-autosave.php:3911
10280
  msgid ""
10281
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10282
  "silver medal. A value of 0 indicates that you do not want this feature."
10283
  msgstr ""
10284
 
10285
- #: wppa-settings-autosave.php:3918
10286
  msgid "Medal gold when"
10287
  msgstr ""
10288
 
10289
- #: wppa-settings-autosave.php:3927
10290
  msgid "Medal tag color"
10291
  msgstr ""
10292
 
10293
- #: wppa-settings-autosave.php:3928
10294
  msgid "The color of the tag on the medal."
10295
  msgstr ""
10296
 
10297
- #: wppa-settings-autosave.php:3931
10298
  msgid "Red"
10299
  msgstr ""
10300
 
10301
- #: wppa-settings-autosave.php:3931
10302
  msgid "Green"
10303
  msgstr ""
10304
 
10305
- #: wppa-settings-autosave.php:3931
10306
  msgid "Blue"
10307
  msgstr ""
10308
 
10309
- #: wppa-settings-autosave.php:3938
10310
  #, fuzzy
10311
  msgid "Medal position"
10312
  msgstr "Pozice:"
10313
 
10314
- #: wppa-settings-autosave.php:3939
10315
  msgid "The position of the medal on the image."
10316
  msgstr ""
10317
 
10318
- #: wppa-settings-autosave.php:3942
10319
  msgid "Top left"
10320
  msgstr ""
10321
 
10322
- #: wppa-settings-autosave.php:3942
10323
  msgid "Top right"
10324
  msgstr ""
10325
 
10326
- #: wppa-settings-autosave.php:3942
10327
  msgid "Bottom left"
10328
  msgstr ""
10329
 
10330
- #: wppa-settings-autosave.php:3942
10331
  msgid "Bottom right"
10332
  msgstr ""
10333
 
10334
- #: wppa-settings-autosave.php:3949
10335
  msgid "Top criterium"
10336
  msgstr ""
10337
 
10338
- #: wppa-settings-autosave.php:3950
10339
  msgid "The top sort item used for topten results from shortcodes."
10340
  msgstr ""
10341
 
10342
- #: wppa-settings-autosave.php:3953
10343
  #, fuzzy
10344
  msgid "Mean raiting"
10345
  msgstr "Moje hodnocení"
10346
 
10347
- #: wppa-settings-autosave.php:3953
10348
  #, fuzzy
10349
  msgid "Rating count"
10350
  msgstr "Hlasování: %s"
10351
 
10352
- #: wppa-settings-autosave.php:3953
10353
  #, fuzzy
10354
  msgid "Viewcount"
10355
  msgstr "Ukázat: "
10356
 
10357
- #: wppa-settings-autosave.php:3960
10358
  #, fuzzy
10359
  msgid "Comments related settings"
10360
  msgstr "Komentář upraven"
10361
 
10362
- #: wppa-settings-autosave.php:3962
10363
  #, fuzzy
10364
  msgid "Commenting login"
10365
  msgstr "Komentáře"
10366
 
10367
- #: wppa-settings-autosave.php:3963
10368
  msgid "Users must be logged in to comment on photos."
10369
  msgstr ""
10370
 
10371
- #: wppa-settings-autosave.php:3964
10372
  msgid ""
10373
  "Check this box if you want users to be logged in to be able to enter "
10374
  "comments on individual photos."
10375
  msgstr ""
10376
 
10377
- #: wppa-settings-autosave.php:3971
10378
  #, fuzzy
10379
  msgid "Comments view login"
10380
  msgstr "Komentář upraven"
10381
 
10382
- #: wppa-settings-autosave.php:3972
10383
  #, fuzzy
10384
  msgid "Users must be logged in to see comments on photos."
10385
  msgstr "Musíte se <a href=&quot;\"%s\"&quot;>přihlásit</a> k napsání komentáře"
10386
 
10387
- #: wppa-settings-autosave.php:3973
10388
  msgid ""
10389
  "Check this box if you want users to be logged in to be able to see existing "
10390
  "comments on individual photos."
10391
  msgstr ""
10392
 
10393
- #: wppa-settings-autosave.php:3980
10394
  #, fuzzy
10395
  msgid "Last comment first"
10396
  msgstr "%d komentáře/ů"
10397
 
10398
- #: wppa-settings-autosave.php:3981
10399
  msgid "Display the newest comment on top."
10400
  msgstr ""
10401
 
10402
- #: wppa-settings-autosave.php:3982
10403
  msgid "If checked: Display the newest comment on top."
10404
  msgstr ""
10405
 
10406
- #: wppa-settings-autosave.php:3983
10407
  msgid "If unchecked, the comments are listed in the ordere they were entered."
10408
  msgstr ""
10409
 
10410
- #: wppa-settings-autosave.php:3990
10411
  #, fuzzy
10412
  msgid "Comment moderation"
10413
  msgstr "Komentáře"
10414
 
10415
- #: wppa-settings-autosave.php:3991
10416
  msgid "Comments from what users need approval."
10417
  msgstr ""
10418
 
10419
- #: wppa-settings-autosave.php:3992
10420
  msgid "Select the desired users of which the comments need approval."
10421
  msgstr ""
10422
 
10423
- #: wppa-settings-autosave.php:3994 wppa-settings-autosave.php:5825
10424
  #, fuzzy
10425
  msgid "All users"
10426
  msgstr "Všechna alba"
10427
 
10428
- #: wppa-settings-autosave.php:3994 wppa-settings-autosave.php:5825
10429
  msgid "Logged out users"
10430
  msgstr ""
10431
 
10432
- #: wppa-settings-autosave.php:3994 wppa-settings-autosave.php:5825
10433
  msgid "No users"
10434
  msgstr ""
10435
 
10436
- #: wppa-settings-autosave.php:4001
10437
  #, fuzzy
10438
  msgid "Comment email required"
10439
  msgstr "Komentář upraven"
10440
 
10441
- #: wppa-settings-autosave.php:4002
10442
  msgid "Commenting users must enter their email addresses."
10443
  msgstr ""
10444
 
10445
- #: wppa-settings-autosave.php:4010
10446
  #, fuzzy
10447
  msgid "Comment notify"
10448
  msgstr "Komentovat fotky:"
10449
 
10450
- #: wppa-settings-autosave.php:4011
10451
  msgid "Select who must receive an e-mail notification of a new comment."
10452
  msgstr ""
10453
 
10454
- #: wppa-settings-autosave.php:4014
10455
  #, fuzzy
10456
  msgid "--- None ---"
10457
  msgstr "--- žádné ---"
10458
 
10459
- #: wppa-settings-autosave.php:4015
10460
  #, fuzzy
10461
  msgid "--- Admin ---"
10462
  msgstr "--- žádné ---"
10463
 
10464
- #: wppa-settings-autosave.php:4016
10465
  #, fuzzy
10466
  msgid "--- Album owner ---"
10467
  msgstr "--- žádné ---"
10468
 
10469
- #: wppa-settings-autosave.php:4017
10470
  #, fuzzy
10471
  msgid "--- Admin & Owner ---"
10472
  msgstr "--- žádné ---"
10473
 
10474
- #: wppa-settings-autosave.php:4018
10475
  #, fuzzy
10476
  msgid "--- Uploader ---"
10477
  msgstr "--- žádné ---"
10478
 
10479
- #: wppa-settings-autosave.php:4019
10480
  #, fuzzy
10481
  msgid "--- Up & admin ---"
10482
  msgstr "--- vše ---"
10483
 
10484
- #: wppa-settings-autosave.php:4020
10485
  #, fuzzy
10486
  msgid "--- Up & Owner ---"
10487
  msgstr "--- žádné ---"
10488
 
10489
- #: wppa-settings-autosave.php:4043
10490
  #, fuzzy
10491
  msgid "Comment notify previous"
10492
  msgstr "Komentovat fotky:"
10493
 
10494
- #: wppa-settings-autosave.php:4044
10495
  #, fuzzy
10496
  msgid "Notify users who has commented this photo earlier."
10497
  msgstr "Dostáváte tento e-mail, protože jste přidedělen k jeho moderování"
10498
 
10499
- #: wppa-settings-autosave.php:4052
10500
  #, fuzzy
10501
  msgid "Comment ntfy added"
10502
  msgstr "Komentář byl odeslán"
10503
 
10504
- #: wppa-settings-autosave.php:4053
10505
  msgid "Show \"Comment added\" after successfull adding a comment."
10506
  msgstr ""
10507
 
10508
- #: wppa-settings-autosave.php:4061
10509
  msgid "ComTen alt display"
10510
  msgstr ""
10511
 
10512
- #: wppa-settings-autosave.php:4062
10513
  msgid "Display comments at comten thumbnails."
10514
  msgstr ""
10515
 
10516
- #: wppa-settings-autosave.php:4070
10517
  #, fuzzy
10518
  msgid "Comten Thumbnail width"
10519
  msgstr "Stránka s náhledy"
10520
 
10521
- #: wppa-settings-autosave.php:4071
10522
  msgid "The width of the thumbnail in the alt comment display."
10523
  msgstr ""
10524
 
10525
- #: wppa-settings-autosave.php:4074
10526
  msgid "Pixels"
10527
  msgstr ""
10528
 
10529
- #: wppa-settings-autosave.php:4079
10530
  msgid "Show smiley picker"
10531
  msgstr ""
10532
 
10533
- #: wppa-settings-autosave.php:4080
10534
  msgid "Display a clickable row of smileys."
10535
  msgstr ""
10536
 
10537
- #: wppa-settings-autosave.php:4088
10538
  #, fuzzy
10539
  msgid "Show commenter email"
10540
  msgstr "Váš komentář:"
10541
 
10542
- #: wppa-settings-autosave.php:4089
10543
  msgid "Show the commenter's email in the notify emails."
10544
  msgstr ""
10545
 
10546
- #: wppa-settings-autosave.php:4090
10547
  msgid "Shows the email address of the commenter in all notify emails."
10548
  msgstr ""
10549
 
10550
- #: wppa-settings-autosave.php:4091
10551
  msgid ""
10552
  "If switched off, admin will still receive the senders email in the "
10553
  "notification mail"
10554
  msgstr ""
10555
 
10556
- #: wppa-settings-autosave.php:4101
10557
  msgid "The opacity of the lightbox overlay background."
10558
  msgstr ""
10559
 
10560
- #: wppa-settings-autosave.php:4109
10561
  msgid "Click on background"
10562
  msgstr ""
10563
 
10564
- #: wppa-settings-autosave.php:4110
10565
  msgid "Select the action to be taken on click on background."
10566
  msgstr ""
10567
 
10568
- #: wppa-settings-autosave.php:4113
10569
  msgid "Nothing"
10570
  msgstr ""
10571
 
10572
- #: wppa-settings-autosave.php:4113
10573
  msgid "Exit (close)"
10574
  msgstr ""
10575
 
10576
- #: wppa-settings-autosave.php:4113
10577
  msgid "Browse (left/right)"
10578
  msgstr ""
10579
 
10580
- #: wppa-settings-autosave.php:4120
10581
  msgid "Overlay animation speed"
10582
  msgstr ""
10583
 
10584
- #: wppa-settings-autosave.php:4121
10585
  msgid "The fade-in time of the lightbox images"
10586
  msgstr ""
10587
 
10588
- #: wppa-settings-autosave.php:4124
10589
  msgid "very fast (100 ms.)"
10590
  msgstr ""
10591
 
10592
- #: wppa-settings-autosave.php:4124
10593
  msgid "fast (200 ms.)"
10594
  msgstr ""
10595
 
10596
- #: wppa-settings-autosave.php:4124
10597
  msgid "normal (300 ms.)"
10598
  msgstr ""
10599
 
10600
- #: wppa-settings-autosave.php:4124
10601
  msgid "slow (500 ms.)"
10602
  msgstr ""
10603
 
10604
- #: wppa-settings-autosave.php:4124
10605
  #, fuzzy
10606
  msgid "very slow (1 s.)"
10607
  msgstr "velmi nízká"
10608
 
10609
- #: wppa-settings-autosave.php:4124
10610
  msgid "extremely slow (2 s.)"
10611
  msgstr ""
10612
 
10613
- #: wppa-settings-autosave.php:4131
10614
  msgid "Overlay slideshow speed"
10615
  msgstr ""
10616
 
10617
- #: wppa-settings-autosave.php:4132
10618
  msgid "The time the lightbox images stay"
10619
  msgstr ""
10620
 
10621
- #: wppa-settings-autosave.php:4135
10622
  msgid "fast (3 s.)"
10623
  msgstr ""
10624
 
10625
- #: wppa-settings-autosave.php:4135
10626
  msgid "normal (5 s.)"
10627
  msgstr ""
10628
 
10629
- #: wppa-settings-autosave.php:4135
10630
  msgid "slow (8 s.)"
10631
  msgstr ""
10632
 
10633
- #: wppa-settings-autosave.php:4135
10634
  #, fuzzy
10635
  msgid "very slow (13 s.)"
10636
  msgstr "velmi nízká"
10637
 
10638
- #: wppa-settings-autosave.php:4135
10639
  msgid "extremely slow (20 s.)"
10640
  msgstr ""
10641
 
10642
- #: wppa-settings-autosave.php:4142
10643
  msgid "Overlay at top in Chrome"
10644
  msgstr ""
10645
 
10646
- #: wppa-settings-autosave.php:4143
10647
  msgid ""
10648
  "Place the overlay (lightbox) image at the top of the page in Chrome browsers."
10649
  msgstr ""
10650
 
10651
- #: wppa-settings-autosave.php:4144
10652
  msgid "This is required for certain mobile devices."
10653
  msgstr ""
10654
 
10655
- #: wppa-settings-autosave.php:4151
10656
  msgid "WPPA+ Lightbox global"
10657
  msgstr ""
10658
 
10659
- #: wppa-settings-autosave.php:4152
10660
  msgid "Use the wppa+ lightbox also for non-wppa images."
10661
  msgstr ""
10662
 
10663
- #: wppa-settings-autosave.php:4160
10664
  msgid "WPPA+ Lightbox global is a set"
10665
  msgstr ""
10666
 
10667
- #: wppa-settings-autosave.php:4161
10668
  msgid "Treat the other images as a set."
10669
  msgstr ""
10670
 
10671
- #: wppa-settings-autosave.php:4162
10672
  msgid ""
10673
  "If checked, you can scroll through the images in the lightbox view. Requires "
10674
  "item 5 to be checked."
10675
  msgstr ""
10676
 
10677
- #: wppa-settings-autosave.php:4169
10678
  msgid "Use hires files"
10679
  msgstr ""
10680
 
10681
- #: wppa-settings-autosave.php:4170
10682
  msgid "Use the highest resolution available for lightbox."
10683
  msgstr ""
10684
 
10685
- #: wppa-settings-autosave.php:4171
10686
  msgid "Ticking this box is recommended for lightbox fullscreen modes."
10687
  msgstr ""
10688
 
10689
- #: wppa-settings-autosave.php:4179
10690
  msgid "Videos on lightbox start automaticly."
10691
  msgstr ""
10692
 
10693
- #: wppa-settings-autosave.php:4188
10694
  msgid "Audio on lightbox start automaticly."
10695
  msgstr ""
10696
 
10697
- #: wppa-settings-autosave.php:4213
10698
  msgid "Table V:"
10699
  msgstr ""
10700
 
10701
- #: wppa-settings-autosave.php:4213
10702
  #, fuzzy
10703
  msgid "Fonts:"
10704
  msgstr "Komentáře"
10705
 
10706
- #: wppa-settings-autosave.php:4214
10707
  msgid "This table describes the Fonts used for the wppa+ elements."
10708
  msgstr ""
10709
 
10710
- #: wppa-settings-autosave.php:4224 wppa-settings-autosave.php:4400
10711
  msgid "Font family"
10712
  msgstr ""
10713
 
10714
- #: wppa-settings-autosave.php:4225 wppa-settings-autosave.php:4401
10715
  msgid "Font size"
10716
  msgstr ""
10717
 
10718
- #: wppa-settings-autosave.php:4226 wppa-settings-autosave.php:4402
10719
  msgid "Font color"
10720
  msgstr ""
10721
 
10722
- #: wppa-settings-autosave.php:4227 wppa-settings-autosave.php:4403
10723
  msgid "Font weight"
10724
  msgstr ""
10725
 
10726
- #: wppa-settings-autosave.php:4237
10727
  msgid "normal"
10728
  msgstr ""
10729
 
10730
- #: wppa-settings-autosave.php:4237
10731
  msgid "bold"
10732
  msgstr ""
10733
 
10734
- #: wppa-settings-autosave.php:4237
10735
  msgid "bolder"
10736
  msgstr ""
10737
 
10738
- #: wppa-settings-autosave.php:4237
10739
  msgid "lighter"
10740
  msgstr ""
10741
 
10742
- #: wppa-settings-autosave.php:4240
10743
  #, fuzzy
10744
  msgid "Album titles"
10745
  msgstr "Alba:"
10746
 
10747
- #: wppa-settings-autosave.php:4241
10748
  msgid "Font used for Album titles."
10749
  msgstr ""
10750
 
10751
- #: wppa-settings-autosave.php:4242
10752
  msgid "Enter font name, size, color and weight for album cover titles."
10753
  msgstr ""
10754
 
10755
- #: wppa-settings-autosave.php:4257
10756
  #, fuzzy
10757
  msgid "Slideshow desc"
10758
  msgstr "Slideshow"
10759
 
10760
- #: wppa-settings-autosave.php:4258
10761
  #, fuzzy
10762
  msgid "Font for slideshow photo descriptions."
10763
  msgstr "Zadat/upravit popis fotky"
10764
 
10765
- #: wppa-settings-autosave.php:4259
10766
  msgid ""
10767
  "Enter font name, size, color and weight for slideshow photo descriptions."
10768
  msgstr ""
10769
 
10770
- #: wppa-settings-autosave.php:4274
10771
  #, fuzzy
10772
  msgid "Slideshow name"
10773
  msgstr "Slideshow"
10774
 
10775
- #: wppa-settings-autosave.php:4275
10776
  #, fuzzy
10777
  msgid "Font for slideshow photo names."
10778
  msgstr "Zadejte název fotky"
10779
 
10780
- #: wppa-settings-autosave.php:4276
10781
  msgid "Enter font name, size, color and weight for slideshow photo names."
10782
  msgstr ""
10783
 
10784
- #: wppa-settings-autosave.php:4291
10785
  msgid "Navigations"
10786
  msgstr ""
10787
 
10788
- #: wppa-settings-autosave.php:4292
10789
  msgid "Font for navigations."
10790
  msgstr ""
10791
 
10792
- #: wppa-settings-autosave.php:4293
10793
  msgid "Enter font name, size, color and weight for navigation items."
10794
  msgstr ""
10795
 
10796
- #: wppa-settings-autosave.php:4309
10797
  msgid "Font for text under thumbnails."
10798
  msgstr ""
10799
 
10800
- #: wppa-settings-autosave.php:4310
10801
  msgid ""
10802
  "Enter font name, size, color and weight for text under thumbnail images."
10803
  msgstr ""
10804
 
10805
- #: wppa-settings-autosave.php:4326
10806
  msgid "General font in wppa boxes."
10807
  msgstr ""
10808
 
10809
- #: wppa-settings-autosave.php:4327
10810
  msgid "Enter font name, size, color and weight for all other items."
10811
  msgstr ""
10812
 
10813
- #: wppa-settings-autosave.php:4343
10814
  msgid "Font in wppa number bars."
10815
  msgstr ""
10816
 
10817
- #: wppa-settings-autosave.php:4344 wppa-settings-autosave.php:4361
10818
  msgid "Enter font name, size, color and weight for numberbar navigation."
10819
  msgstr ""
10820
 
10821
- #: wppa-settings-autosave.php:4359
10822
  msgid "Numbar Active"
10823
  msgstr ""
10824
 
10825
- #: wppa-settings-autosave.php:4360
10826
  msgid "Font in wppa number bars, active item."
10827
  msgstr ""
10828
 
10829
- #: wppa-settings-autosave.php:4377
10830
  msgid "Font in wppa lightbox overlays."
10831
  msgstr ""
10832
 
10833
- #: wppa-settings-autosave.php:4378
10834
  msgid "Enter font name, size, color and weight for wppa lightbox overlays."
10835
  msgstr ""
10836
 
10837
- #: wppa-settings-autosave.php:4413
10838
  msgid "Table VI:"
10839
  msgstr ""
10840
 
10841
- #: wppa-settings-autosave.php:4413
10842
  #, fuzzy
10843
  msgid "Links:"
10844
  msgstr "Odkaz na"
10845
 
10846
- #: wppa-settings-autosave.php:4414
10847
  msgid "This table defines the link types and pages."
10848
  msgstr ""
10849
 
10850
- #: wppa-settings-autosave.php:4425 wppa-settings-autosave.php:5424
10851
  #, fuzzy
10852
  msgid "Link page"
10853
  msgstr "Odkaz na"
10854
 
10855
- #: wppa-settings-autosave.php:4427 wppa-settings-autosave.php:5426
10856
  msgid "Photo specific link overrules"
10857
  msgstr ""
10858
 
10859
- #: wppa-settings-autosave.php:4427 wppa-settings-autosave.php:5426
10860
  msgid "PSO"
10861
  msgstr ""
10862
 
10863
- #: wppa-settings-autosave.php:4477
10864
  #, fuzzy
10865
  msgid "--- The same post or page ---"
10866
  msgstr "--- samostatné ---"
10867
 
10868
- #: wppa-settings-autosave.php:4508
10869
  msgid "--- No page to link to (yet) ---"
10870
  msgstr ""
10871
 
10872
- #: wppa-settings-autosave.php:4513
10873
  #, fuzzy
10874
  msgid "--- Will be auto created ---"
10875
  msgstr "--- samostatné ---"
10876
 
10877
- #: wppa-settings-autosave.php:4515
10878
  msgid "Links from images in WPPA+ Widgets"
10879
  msgstr ""
10880
 
10881
- #: wppa-settings-autosave.php:4517
10882
  msgid "PotdWidget"
10883
  msgstr ""
10884
 
10885
- #: wppa-settings-autosave.php:4518
10886
  msgid "Photo Of The Day widget link."
10887
  msgstr ""
10888
 
10889
- #: wppa-settings-autosave.php:4519
10890
  msgid "Select the type of link the photo of the day points to."
10891
  msgstr ""
10892
 
10893
- #: wppa-settings-autosave.php:4520
10894
  msgid ""
10895
  "If you select 'defined on widget admin page' you can manually enter a link "
10896
  "and title on the Photo of the day Widget Admin page."
10897
  msgstr ""
10898
 
10899
- #: wppa-settings-autosave.php:4529 wppa-settings-autosave.php:4572
10900
- #: wppa-settings-autosave.php:4650 wppa-settings-autosave.php:4693
10901
- #: wppa-settings-autosave.php:4741 wppa-settings-autosave.php:4788
10902
- #: wppa-settings-autosave.php:4835 wppa-settings-autosave.php:4887
10903
- #: wppa-settings-autosave.php:4925 wppa-settings-autosave.php:4975
10904
- #: wppa-settings-autosave.php:5017 wppa-settings-autosave.php:5057
10905
- #: wppa-settings-autosave.php:8766
10906
  msgid "no link at all."
10907
  msgstr ""
10908
 
10909
- #: wppa-settings-autosave.php:4530 wppa-settings-autosave.php:4573
10910
- #: wppa-settings-autosave.php:4651 wppa-settings-autosave.php:4694
10911
- #: wppa-settings-autosave.php:4742 wppa-settings-autosave.php:4789
10912
- #: wppa-settings-autosave.php:4836 wppa-settings-autosave.php:4888
10913
- #: wppa-settings-autosave.php:4926 wppa-settings-autosave.php:4976
10914
- #: wppa-settings-autosave.php:5018 wppa-settings-autosave.php:5058
10915
- #: wppa-settings-autosave.php:8767
10916
  msgid "the plain photo (file)."
10917
  msgstr ""
10918
 
10919
- #: wppa-settings-autosave.php:4531 wppa-settings-autosave.php:8773
10920
  #, fuzzy
10921
  msgid "defined on widget admin page."
10922
  msgstr "Vyberte prosím cílovou stránku pro super view widget v Table VI-C"
10923
 
10924
- #: wppa-settings-autosave.php:4532 wppa-settings-autosave.php:4575
10925
- #: wppa-settings-autosave.php:4977 wppa-settings-autosave.php:5019
10926
- #: wppa-settings-autosave.php:8771
10927
  msgid "the content of the album."
10928
  msgstr ""
10929
 
10930
- #: wppa-settings-autosave.php:4533 wppa-settings-autosave.php:4576
10931
- #: wppa-settings-autosave.php:4652 wppa-settings-autosave.php:4697
10932
- #: wppa-settings-autosave.php:4745 wppa-settings-autosave.php:4792
10933
- #: wppa-settings-autosave.php:4839 wppa-settings-autosave.php:4927
10934
- #: wppa-settings-autosave.php:4978 wppa-settings-autosave.php:5020
10935
- #: wppa-settings-autosave.php:8768
10936
  msgid "the full size photo in a slideshow."
10937
  msgstr ""
10938
 
10939
- #: wppa-settings-autosave.php:4534 wppa-settings-autosave.php:4577
10940
- #: wppa-settings-autosave.php:4653 wppa-settings-autosave.php:4698
10941
- #: wppa-settings-autosave.php:4746 wppa-settings-autosave.php:4793
10942
- #: wppa-settings-autosave.php:4840 wppa-settings-autosave.php:4928
10943
- #: wppa-settings-autosave.php:4979 wppa-settings-autosave.php:5021
10944
- #: wppa-settings-autosave.php:5059 wppa-settings-autosave.php:8769
10945
  msgid "the fullsize photo on its own."
10946
  msgstr ""
10947
 
10948
- #: wppa-settings-autosave.php:4535 wppa-settings-autosave.php:4578
10949
- #: wppa-settings-autosave.php:4617 wppa-settings-autosave.php:4656
10950
- #: wppa-settings-autosave.php:4701 wppa-settings-autosave.php:4749
10951
- #: wppa-settings-autosave.php:4796 wppa-settings-autosave.php:4843
10952
- #: wppa-settings-autosave.php:4931
10953
  msgid "a plain page without a querystring."
10954
  msgstr ""
10955
 
10956
- #: wppa-settings-autosave.php:4536 wppa-settings-autosave.php:4579
10957
- #: wppa-settings-autosave.php:4618 wppa-settings-autosave.php:4657
10958
- #: wppa-settings-autosave.php:4702 wppa-settings-autosave.php:4750
10959
- #: wppa-settings-autosave.php:4797 wppa-settings-autosave.php:4844
10960
- #: wppa-settings-autosave.php:4890 wppa-settings-autosave.php:4932
10961
- #: wppa-settings-autosave.php:4980 wppa-settings-autosave.php:5022
10962
- #: wppa-settings-autosave.php:5060
10963
  msgid "lightbox."
10964
  msgstr ""
10965
 
10966
- #: wppa-settings-autosave.php:4561
10967
  msgid "SlideWidget"
10968
  msgstr ""
10969
 
10970
- #: wppa-settings-autosave.php:4562
10971
  msgid "Slideshow widget photo link."
10972
  msgstr ""
10973
 
10974
- #: wppa-settings-autosave.php:4563
10975
  msgid "Select the type of link the slideshow photos point to."
10976
  msgstr ""
10977
 
10978
- #: wppa-settings-autosave.php:4574 wppa-settings-autosave.php:8772
10979
  msgid "defined at widget activation."
10980
  msgstr ""
10981
 
10982
- #: wppa-settings-autosave.php:4604
10983
  #, fuzzy
10984
  msgid "Album widget"
10985
  msgstr "Administrace alb"
10986
 
10987
- #: wppa-settings-autosave.php:4605
10988
  msgid "Album widget thumbnail link"
10989
  msgstr ""
10990
 
10991
- #: wppa-settings-autosave.php:4606
10992
  msgid "Select the type of link the album widget photos point to."
10993
  msgstr ""
10994
 
10995
- #: wppa-settings-autosave.php:4615
10996
  msgid "subalbums and thumbnails."
10997
  msgstr ""
10998
 
10999
- #: wppa-settings-autosave.php:4616
11000
  #, fuzzy
11001
  msgid "slideshow."
11002
  msgstr "Slideshow"
11003
 
11004
- #: wppa-settings-autosave.php:4639
11005
  #, fuzzy
11006
  msgid "ThumbnailWidget"
11007
  msgstr "Stránka s náhledy"
11008
 
11009
- #: wppa-settings-autosave.php:4640
11010
  #, fuzzy
11011
  msgid "Thumbnail widget photo link."
11012
  msgstr "Označkované fotografie"
11013
 
11014
- #: wppa-settings-autosave.php:4641
11015
  msgid "Select the type of link the thumbnail photos point to."
11016
  msgstr ""
11017
 
11018
- #: wppa-settings-autosave.php:4654 wppa-settings-autosave.php:4699
11019
- #: wppa-settings-autosave.php:4747 wppa-settings-autosave.php:4794
11020
- #: wppa-settings-autosave.php:4841 wppa-settings-autosave.php:4929
11021
  msgid "the single photo in the style of a slideshow."
11022
  msgstr ""
11023
 
11024
- #: wppa-settings-autosave.php:4655 wppa-settings-autosave.php:4700
11025
- #: wppa-settings-autosave.php:4748 wppa-settings-autosave.php:4795
11026
- #: wppa-settings-autosave.php:4842 wppa-settings-autosave.php:4930
11027
- #: wppa-settings-autosave.php:5062
11028
  msgid "the fs photo with download and print buttons."
11029
  msgstr ""
11030
 
11031
- #: wppa-settings-autosave.php:4682
11032
  msgid "TopTenWidget"
11033
  msgstr ""
11034
 
11035
- #: wppa-settings-autosave.php:4683
11036
  msgid "TopTen widget photo link."
11037
  msgstr ""
11038
 
11039
- #: wppa-settings-autosave.php:4684
11040
  msgid "Select the type of link the top ten photos point to."
11041
  msgstr ""
11042
 
11043
- #: wppa-settings-autosave.php:4695
11044
  msgid "the content of the virtual topten album."
11045
  msgstr ""
11046
 
11047
- #: wppa-settings-autosave.php:4696 wppa-settings-autosave.php:4744
11048
- #: wppa-settings-autosave.php:4791 wppa-settings-autosave.php:4838
11049
  msgid "the content of the thumbnails album."
11050
  msgstr ""
11051
 
11052
- #: wppa-settings-autosave.php:4730
11053
  msgid "LasTenWidget"
11054
  msgstr ""
11055
 
11056
- #: wppa-settings-autosave.php:4731
11057
  #, fuzzy
11058
  msgid "Last Ten widget photo link."
11059
  msgstr "Nedávno nahrané fotky"
11060
 
11061
- #: wppa-settings-autosave.php:4732
11062
  msgid "Select the type of link the last ten photos point to."
11063
  msgstr ""
11064
 
11065
- #: wppa-settings-autosave.php:4743
11066
  msgid "the content of the virtual lasten album."
11067
  msgstr ""
11068
 
11069
- #: wppa-settings-autosave.php:4777
11070
  #, fuzzy
11071
  msgid "CommentWidget"
11072
  msgstr "Komentář byl odeslán"
11073
 
11074
- #: wppa-settings-autosave.php:4778
11075
  #, fuzzy
11076
  msgid "Comment widget photo link."
11077
  msgstr "Komentovat fotky:"
11078
 
11079
- #: wppa-settings-autosave.php:4779
11080
  msgid "Select the type of link the comment widget photos point to."
11081
  msgstr ""
11082
 
11083
- #: wppa-settings-autosave.php:4790
11084
  msgid "the content of the virtual comten album."
11085
  msgstr ""
11086
 
11087
- #: wppa-settings-autosave.php:4824
11088
  msgid "FeaTenWidget"
11089
  msgstr ""
11090
 
11091
- #: wppa-settings-autosave.php:4825
11092
  msgid "FeaTen widget photo link."
11093
  msgstr ""
11094
 
11095
- #: wppa-settings-autosave.php:4826
11096
  msgid "Select the type of link the featured ten photos point to."
11097
  msgstr ""
11098
 
11099
- #: wppa-settings-autosave.php:4837
11100
  msgid "the content of the virtual featen album."
11101
  msgstr ""
11102
 
11103
- #: wppa-settings-autosave.php:4870
11104
  msgid "Links from other WPPA+ images"
11105
  msgstr ""
11106
 
11107
- #: wppa-settings-autosave.php:4872
11108
  msgid "Cover Image"
11109
  msgstr ""
11110
 
11111
- #: wppa-settings-autosave.php:4873
11112
  msgid "The link from the cover image of an album."
11113
  msgstr ""
11114
 
11115
- #: wppa-settings-autosave.php:4874
11116
  msgid "Select the type of link the coverphoto points to."
11117
  msgstr ""
11118
 
11119
- #: wppa-settings-autosave.php:4875
11120
  msgid "The link from the album title can be configured on the Edit Album page."
11121
  msgstr ""
11122
 
11123
- #: wppa-settings-autosave.php:4876
11124
  msgid "This link will be used for the photo also if you select: same as title."
11125
  msgstr ""
11126
 
11127
- #: wppa-settings-autosave.php:4877
11128
  msgid ""
11129
  "If you specify New Tab on this line, all links from the cover will open a "
11130
  "new tab,"
11131
  msgstr ""
11132
 
11133
- #: wppa-settings-autosave.php:4878
11134
  msgid "except when Ajax is activated on Table IV-A1."
11135
  msgstr ""
11136
 
11137
- #: wppa-settings-autosave.php:4889 wppa-settings-autosave.php:8774
11138
  msgid "same as title."
11139
  msgstr ""
11140
 
11141
- #: wppa-settings-autosave.php:4891
11142
  msgid "a slideshow starting at the photo"
11143
  msgstr ""
11144
 
11145
- #: wppa-settings-autosave.php:4912
11146
  #, fuzzy
11147
  msgid "Thumbnail"
11148
  msgstr "Označkované fotografie"
11149
 
11150
- #: wppa-settings-autosave.php:4913
11151
  #, fuzzy
11152
  msgid "Thumbnail link."
11153
  msgstr "Stránka s náhledy"
11154
 
11155
- #: wppa-settings-autosave.php:4914 wppa-settings-autosave.php:4964
11156
- #: wppa-settings-autosave.php:5006
11157
  msgid "Select the type of link you want, or no link at all."
11158
  msgstr ""
11159
 
11160
- #: wppa-settings-autosave.php:4915 wppa-settings-autosave.php:4965
11161
- #: wppa-settings-autosave.php:5007
11162
  msgid ""
11163
  "If you select the fullsize photo on its own, it will be stretched to fit, "
11164
  "regardless of that setting."
11165
  msgstr ""
11166
 
11167
- #: wppa-settings-autosave.php:4916 wppa-settings-autosave.php:4966
11168
- #: wppa-settings-autosave.php:5008
11169
  #, php-format
11170
  msgid ""
11171
  "Note that a page must have at least %%wppa%% or [wppa][/wppa] in its content "
11172
  "to show up the photo(s)."
11173
  msgstr ""
11174
 
11175
- #: wppa-settings-autosave.php:4945
11176
  #, fuzzy
11177
  msgid "Auto Page"
11178
  msgstr "Automatika, záblesk"
11179
 
11180
- #: wppa-settings-autosave.php:4962
11181
  #, fuzzy
11182
  msgid "Sphoto"
11183
  msgstr "fotka"
11184
 
11185
- #: wppa-settings-autosave.php:4963
11186
  #, fuzzy
11187
  msgid "Single photo link."
11188
  msgstr "Zadejte název fotky"
11189
 
11190
- #: wppa-settings-autosave.php:5004
11191
  #, fuzzy
11192
  msgid "Mphoto"
11193
  msgstr "fotka"
11194
 
11195
- #: wppa-settings-autosave.php:5005
11196
  msgid "Media-like photo link."
11197
  msgstr ""
11198
 
11199
- #: wppa-settings-autosave.php:5047
11200
  msgid "Slideshow fullsize link"
11201
  msgstr ""
11202
 
11203
- #: wppa-settings-autosave.php:5048
11204
  msgid ""
11205
  "You can overrule lightbox but not big browse buttons with the photo specifc "
11206
  "link."
11207
  msgstr ""
11208
 
11209
- #: wppa-settings-autosave.php:5061
11210
  msgid "lightbox single photos."
11211
  msgstr ""
11212
 
11213
- #: wppa-settings-autosave.php:5063
11214
  #, fuzzy
11215
  msgid "the thumbnails."
11216
  msgstr "Prohlédnout náhledy"
11217
 
11218
- #: wppa-settings-autosave.php:5087
11219
  msgid "Film linktype"
11220
  msgstr ""
11221
 
11222
- #: wppa-settings-autosave.php:5088
11223
  msgid "Direct access goto image in:"
11224
  msgstr ""
11225
 
11226
- #: wppa-settings-autosave.php:5089
11227
  msgid ""
11228
  "Select the action to be taken when the user clicks on a filmstrip image."
11229
  msgstr ""
11230
 
11231
- #: wppa-settings-autosave.php:5094
11232
  #, fuzzy
11233
  msgid "slideshow window"
11234
  msgstr "Slideshow"
11235
 
11236
- #: wppa-settings-autosave.php:5095
11237
  msgid "lightbox overlay"
11238
  msgstr ""
11239
 
11240
- #: wppa-settings-autosave.php:5110
11241
  #, fuzzy
11242
  msgid "Other links"
11243
  msgstr "Ostatní"
11244
 
11245
- #: wppa-settings-autosave.php:5112
11246
  msgid "Download Link (aka Art Monkey link)"
11247
  msgstr ""
11248
 
11249
- #: wppa-settings-autosave.php:5113
11250
  msgid "Makes the photo name a download button."
11251
  msgstr ""
11252
 
11253
- #: wppa-settings-autosave.php:5114
11254
  msgid "Link Photo name in slideshow to file or zip with photoname as filename."
11255
  msgstr ""
11256
 
11257
- #: wppa-settings-autosave.php:5118 wppa-settings-autosave.php:5165
11258
  msgid "image file"
11259
  msgstr ""
11260
 
11261
- #: wppa-settings-autosave.php:5119 wppa-settings-autosave.php:5166
11262
  msgid "zipped image"
11263
  msgstr ""
11264
 
11265
- #: wppa-settings-autosave.php:5132
11266
  msgid "Art Monkey Source"
11267
  msgstr ""
11268
 
11269
- #: wppa-settings-autosave.php:5133
11270
  msgid "Use Source file for art monkey link if available."
11271
  msgstr ""
11272
 
11273
- #: wppa-settings-autosave.php:5142
11274
  msgid "Art Monkey Display"
11275
  msgstr ""
11276
 
11277
- #: wppa-settings-autosave.php:5143
11278
  msgid "Select button or link ( text )."
11279
  msgstr ""
11280
 
11281
- #: wppa-settings-autosave.php:5148
11282
  msgid "Textlink"
11283
  msgstr ""
11284
 
11285
- #: wppa-settings-autosave.php:5160
11286
  msgid "Popup Download Link"
11287
  msgstr ""
11288
 
11289
- #: wppa-settings-autosave.php:5161
11290
  msgid "Configure the download link on fullsize popups."
11291
  msgstr ""
11292
 
11293
- #: wppa-settings-autosave.php:5162
11294
  msgid "Link fullsize popup download button to either image or zip file."
11295
  msgstr ""
11296
 
11297
- #: wppa-settings-autosave.php:5178
11298
  msgid "Download link on lightbox"
11299
  msgstr ""
11300
 
11301
- #: wppa-settings-autosave.php:5179
11302
  msgid "Art monkey link on lightbox photo names."
11303
  msgstr ""
11304
 
11305
- #: wppa-settings-autosave.php:5188
11306
  #, fuzzy
11307
  msgid "Album download link"
11308
  msgstr "Administrace alb"
11309
 
11310
- #: wppa-settings-autosave.php:5189
11311
  msgid "Place an album download link on the album covers"
11312
  msgstr ""
11313
 
11314
- #: wppa-settings-autosave.php:5190
11315
  msgid "Creates a download zipfile containing the photos of the album"
11316
  msgstr ""
11317
 
11318
- #: wppa-settings-autosave.php:5198
11319
  msgid "Album download Source"
11320
  msgstr ""
11321
 
11322
- #: wppa-settings-autosave.php:5199
11323
  msgid "Use Source file for album download link if available."
11324
  msgstr ""
11325
 
11326
- #: wppa-settings-autosave.php:5208
11327
  msgid "Tagcloud Link"
11328
  msgstr ""
11329
 
11330
- #: wppa-settings-autosave.php:5209
11331
  msgid "Configure the link from the tags in the tag cloud."
11332
  msgstr ""
11333
 
11334
- #: wppa-settings-autosave.php:5210
11335
  msgid "Link the tag words to ether the thumbnails or the slideshow."
11336
  msgstr ""
11337
 
11338
- #: wppa-settings-autosave.php:5219 wppa-settings-autosave.php:5250
11339
- #: wppa-settings-autosave.php:5345
11340
  #, fuzzy
11341
  msgid "slideshow"
11342
  msgstr "Slideshow"
11343
 
11344
- #: wppa-settings-autosave.php:5239
11345
  msgid "Multitag Link"
11346
  msgstr ""
11347
 
11348
- #: wppa-settings-autosave.php:5240
11349
  msgid "Configure the link from the multitag selection."
11350
  msgstr ""
11351
 
11352
- #: wppa-settings-autosave.php:5241
11353
  msgid "Link to ether the thumbnails or the slideshow."
11354
  msgstr ""
11355
 
11356
- #: wppa-settings-autosave.php:5270
11357
  #, fuzzy
11358
  msgid "Super View Landing"
11359
  msgstr "Super View fotky"
11360
 
11361
- #: wppa-settings-autosave.php:5271
11362
  msgid "The landing page for the Super View widget."
11363
  msgstr ""
11364
 
11365
- #: wppa-settings-autosave.php:5279
11366
  msgid "Defined by the visitor"
11367
  msgstr ""
11368
 
11369
- #: wppa-settings-autosave.php:5292
11370
  #, fuzzy
11371
  msgid "Uploader Landing"
11372
  msgstr "Nahrávání selhalo"
11373
 
11374
- #: wppa-settings-autosave.php:5293
11375
  msgid "Select the landing page for the Uploader Widget"
11376
  msgstr ""
11377
 
11378
- #: wppa-settings-autosave.php:5313
11379
  msgid "Bestof Landing"
11380
  msgstr ""
11381
 
11382
- #: wppa-settings-autosave.php:5314
11383
  msgid "Select the landing page for the BestOf Widget / Box"
11384
  msgstr ""
11385
 
11386
- #: wppa-settings-autosave.php:5334
11387
  msgid "Album navigator Link"
11388
  msgstr ""
11389
 
11390
- #: wppa-settings-autosave.php:5335
11391
  msgid "Select link type and page for the Album navigator Widget"
11392
  msgstr ""
11393
 
11394
- #: wppa-settings-autosave.php:5363
11395
  msgid "Supersearch Landing"
11396
  msgstr ""
11397
 
11398
- #: wppa-settings-autosave.php:5364
11399
  msgid "Select the landing page for the Supersearch Box"
11400
  msgstr ""
11401
 
11402
- #: wppa-settings-autosave.php:5384
11403
  msgid "SM widget return"
11404
  msgstr ""
11405
 
11406
- #: wppa-settings-autosave.php:5385
11407
  msgid "Select the return link for social media from widgets"
11408
  msgstr ""
11409
 
11410
- #: wppa-settings-autosave.php:5386
11411
  msgid ""
11412
  "If you select Landing page, and it wont work, it may be required to set the "
11413
  "Occur to the sequence number of the landing shortcode on the page."
11414
  msgstr ""
11415
 
11416
- #: wppa-settings-autosave.php:5387
11417
  msgid ""
11418
  "Normally it is 1, but you can try 2 etc. Always create a new shared link to "
11419
  "test a setting."
11420
  msgstr ""
11421
 
11422
- #: wppa-settings-autosave.php:5395
11423
  #, fuzzy
11424
  msgid "Home page"
11425
  msgstr "Domů"
11426
 
11427
- #: wppa-settings-autosave.php:5396
11428
  #, fuzzy
11429
  msgid "Landing page"
11430
  msgstr "Vyberte prosím cílovou stránku pro super view widget v Table VI-C"
11431
 
11432
- #: wppa-settings-autosave.php:5407
11433
  msgid "Occur"
11434
  msgstr ""
11435
 
11436
- #: wppa-settings-autosave.php:5436
11437
  msgid "Table VII:"
11438
  msgstr ""
11439
 
11440
- #: wppa-settings-autosave.php:5436
11441
  msgid "Permissions and Restrictions:"
11442
  msgstr ""
11443
 
11444
- #: wppa-settings-autosave.php:5437
11445
  msgid ""
11446
  "This table describes the access settings for admin and front-end activities."
11447
  msgstr ""
11448
 
11449
- #: wppa-settings-autosave.php:5465
11450
  msgid "Role"
11451
  msgstr ""
11452
 
11453
- #: wppa-settings-autosave.php:5474
11454
  msgid ""
11455
  "Admin settings per user role. Enabling these settings will overrule the "
11456
  "front-end settings for the specific user role"
11457
  msgstr ""
11458
 
11459
- #: wppa-settings-autosave.php:5498
11460
  msgid "Frontend create Albums and upload Photos enabling and limiting settings"
11461
  msgstr ""
11462
 
11463
- #: wppa-settings-autosave.php:5500
11464
  #, fuzzy
11465
  msgid "User create Albums"
11466
  msgstr "Album:"
11467
 
11468
- #: wppa-settings-autosave.php:5501
11469
  #, fuzzy
11470
  msgid "Enable frontend album creation."
11471
  msgstr "Zadat/upravit popis fotky"
11472
 
11473
- #: wppa-settings-autosave.php:5502
11474
  msgid "If you check this item, frontend album creation will be enabled."
11475
  msgstr ""
11476
 
11477
- #: wppa-settings-autosave.php:5512
11478
  #, fuzzy
11479
  msgid "User edit album"
11480
  msgstr "Album:"
11481
 
11482
- #: wppa-settings-autosave.php:5513
11483
  #, fuzzy
11484
  msgid "Enable frontent edit album name and description."
11485
  msgstr "Zadat/upravit popis fotky"
11486
 
11487
- #: wppa-settings-autosave.php:5523
11488
  #, fuzzy
11489
  msgid "User delete Albums"
11490
  msgstr "Album:"
11491
 
11492
- #: wppa-settings-autosave.php:5524
11493
  #, fuzzy
11494
  msgid "Enable frontend album deletion"
11495
  msgstr "Zadat/upravit popis fotky"
11496
 
11497
- #: wppa-settings-autosave.php:5525
11498
  msgid "If you check this item, frontend album deletion will be enabled."
11499
  msgstr ""
11500
 
11501
- #: wppa-settings-autosave.php:5535
11502
  #, fuzzy
11503
  msgid "User create Albums login"
11504
  msgstr "Album:"
11505
 
11506
- #: wppa-settings-autosave.php:5536
11507
  msgid "Frontend album creation requires the user is logged in."
11508
  msgstr ""
11509
 
11510
- #: wppa-settings-autosave.php:5562
11511
  #, fuzzy, php-format
11512
  msgid "Upload limit %s"
11513
  msgstr "Nahrát fotky"
11514
 
11515
- #: wppa-settings-autosave.php:5563
11516
  msgid "Limit upload capacity for logged out users."
11517
  msgstr ""
11518
 
11519
- #: wppa-settings-autosave.php:5564
11520
  #, php-format
11521
  msgid "Limit upload capacity for the user role %s."
11522
  msgstr ""
11523
 
11524
- #: wppa-settings-autosave.php:5565
11525
  msgid "This setting has only effect when Table VII-B2 is unchecked."
11526
  msgstr ""
11527
 
11528
- #: wppa-settings-autosave.php:5566
11529
  msgid ""
11530
  "This limitation only applies to frontend uploads when the same userrole does "
11531
  "not have the Upload checkbox checked in Table VII-A."
11532
  msgstr ""
11533
 
11534
- #: wppa-settings-autosave.php:5567 wppa-settings-autosave.php:5583
11535
- #: wppa-settings-autosave.php:6983
11536
  msgid "A value of 0 means: no limit."
11537
  msgstr ""
11538
 
11539
- #: wppa-settings-autosave.php:5580
11540
  #, fuzzy, php-format
11541
  msgid "Album limit %s"
11542
  msgstr "Administrace alb"
11543
 
11544
- #: wppa-settings-autosave.php:5581
11545
  #, php-format
11546
  msgid "Limit number of albums for the user role %s."
11547
  msgstr ""
11548
 
11549
- #: wppa-settings-autosave.php:5582
11550
  msgid ""
11551
  "This limitation only applies to frontend create albums when the same "
11552
  "userrole does not have the Album admin checkbox checked in Table VII-A."
11553
  msgstr ""
11554
 
11555
- #: wppa-settings-autosave.php:5594
11556
  #, fuzzy
11557
  msgid "Upload one only"
11558
  msgstr "Nahrát fotku"
11559
 
11560
- #: wppa-settings-autosave.php:5595
11561
  msgid "Non admin users can upload only one photo at a time."
11562
  msgstr ""
11563
 
11564
- #: wppa-settings-autosave.php:5605
11565
  #, fuzzy
11566
  msgid "Upload moderation"
11567
  msgstr "Nahrát fotku"
11568
 
11569
- #: wppa-settings-autosave.php:5606
11570
  #, fuzzy
11571
  msgid "Uploaded photos need moderation."
11572
  msgstr "Toto nahrání vyžaduje úpravu"
11573
 
11574
- #: wppa-settings-autosave.php:5607
11575
  msgid ""
11576
  "If checked, photos uploaded by users who do not have photo album admin "
11577
  "access rights need moderation."
11578
  msgstr ""
11579
 
11580
- #: wppa-settings-autosave.php:5608
11581
  msgid ""
11582
  "Users who have photo album admin access rights can change the photo status "
11583
  "to publish or featured."
11584
  msgstr ""
11585
 
11586
- #: wppa-settings-autosave.php:5609
11587
  msgid "You can set the album admin access rights in Table VII-A."
11588
  msgstr ""
11589
 
11590
- #: wppa-settings-autosave.php:5618
11591
  #, fuzzy
11592
  msgid "Upload notify"
11593
  msgstr "Nahrát fotku"
11594
 
11595
- #: wppa-settings-autosave.php:5619
11596
  msgid "Notify admin at frontend upload."
11597
  msgstr ""
11598
 
11599
- #: wppa-settings-autosave.php:5620 wppa-settings-autosave.php:5631
11600
  msgid "If checked, admin will receive a notification by email."
11601
  msgstr ""
11602
 
11603
- #: wppa-settings-autosave.php:5629
11604
  msgid "Upload backend notify"
11605
  msgstr ""
11606
 
11607
- #: wppa-settings-autosave.php:5630
11608
  msgid "Notify admin at backend upload."
11609
  msgstr ""
11610
 
11611
- #: wppa-settings-autosave.php:5640
11612
  msgid "Max size in pixels"
11613
  msgstr ""
11614
 
11615
- #: wppa-settings-autosave.php:5641
11616
  msgid "Max size for height and width for front-end uploads."
11617
  msgstr ""
11618
 
11619
- #: wppa-settings-autosave.php:5642
11620
  msgid "Enter the maximum size. 0 is unlimited"
11621
  msgstr ""
11622
 
11623
- #: wppa-settings-autosave.php:5651
11624
  msgid "Home after Upload"
11625
  msgstr ""
11626
 
11627
- #: wppa-settings-autosave.php:5652
11628
  msgid "After successfull front-end upload, go to the home page."
11629
  msgstr ""
11630
 
11631
- #: wppa-settings-autosave.php:5662
11632
  msgid "Admin Functionality restrictions for non administrators"
11633
  msgstr ""
11634
 
11635
- #: wppa-settings-autosave.php:5664
11636
  msgid "Alt thumb is restricted"
11637
  msgstr ""
11638
 
11639
- #: wppa-settings-autosave.php:5665
11640
  msgid "Using <b>alt thumbsize</b> is a restricted action."
11641
  msgstr ""
11642
 
11643
- #: wppa-settings-autosave.php:5666
11644
  msgid ""
11645
  "If checked: alt thumbsize can not be set in album admin by users not having "
11646
  "admin rights."
11647
  msgstr ""
11648
 
11649
- #: wppa-settings-autosave.php:5675
11650
  msgid "Link is restricted"
11651
  msgstr ""
11652
 
11653
- #: wppa-settings-autosave.php:5676
11654
  msgid "Using <b>Link to</b> is a restricted action."
11655
  msgstr ""
11656
 
11657
- #: wppa-settings-autosave.php:5677
11658
  msgid ""
11659
  "If checked: Link to: can not be set in album admin by users not having admin "
11660
  "rights."
11661
  msgstr ""
11662
 
11663
- #: wppa-settings-autosave.php:5686
11664
  msgid "CoverType is restricted"
11665
  msgstr ""
11666
 
11667
- #: wppa-settings-autosave.php:5687
11668
  msgid "Changing <b>Cover Type</b> is a restricted action."
11669
  msgstr ""
11670
 
11671
- #: wppa-settings-autosave.php:5688
11672
  msgid ""
11673
  "If checked: Cover Type: can not be set in album admin by users not having "
11674
  "admin rights."
11675
  msgstr ""
11676
 
11677
- #: wppa-settings-autosave.php:5697
11678
  msgid "Photo order# is restricted"
11679
  msgstr ""
11680
 
11681
- #: wppa-settings-autosave.php:5698
11682
  msgid "Changing <b>Photo sort order #</b> is a restricted action."
11683
  msgstr ""
11684
 
11685
- #: wppa-settings-autosave.php:5699
11686
  msgid ""
11687
  "If checked: Photo sort order #: can not be set in photo admin by users not "
11688
  "having admin rights."
11689
  msgstr ""
11690
 
11691
- #: wppa-settings-autosave.php:5708
11692
  msgid "Change source restricted"
11693
  msgstr ""
11694
 
11695
- #: wppa-settings-autosave.php:5709
11696
  msgid "Changing the import source dir requires admin rights."
11697
  msgstr ""
11698
 
11699
- #: wppa-settings-autosave.php:5710
11700
  msgid ""
11701
  "If checked, the imput source for importing photos and albums is restricted "
11702
  "to user role administrator."
11703
  msgstr ""
11704
 
11705
- #: wppa-settings-autosave.php:5719
11706
  msgid "Extended status restricted"
11707
  msgstr ""
11708
 
11709
- #: wppa-settings-autosave.php:5720
11710
  msgid "Setting status other than pending or publish requires admin rights."
11711
  msgstr ""
11712
 
11713
- #: wppa-settings-autosave.php:5730
11714
  msgid "Photo description restricted"
11715
  msgstr ""
11716
 
11717
- #: wppa-settings-autosave.php:5731
11718
  msgid "Edit photo description requires admin rights."
11719
  msgstr ""
11720
 
11721
- #: wppa-settings-autosave.php:5741
11722
  msgid "Update photofiles restricted"
11723
  msgstr ""
11724
 
11725
- #: wppa-settings-autosave.php:5742
11726
  msgid "Re-upload files requires admin rights"
11727
  msgstr ""
11728
 
11729
- #: wppa-settings-autosave.php:5752
11730
  msgid "Miscellaneous limiting settings"
11731
  msgstr ""
11732
 
11733
- #: wppa-settings-autosave.php:5754
11734
  msgid "Owners only"
11735
  msgstr ""
11736
 
11737
- #: wppa-settings-autosave.php:5755
11738
  msgid "Limit edit album access to the album owners only."
11739
  msgstr ""
11740
 
11741
- #: wppa-settings-autosave.php:5756
11742
  msgid "If checked, non-admin users can edit their own albums only."
11743
  msgstr ""
11744
 
11745
- #: wppa-settings-autosave.php:5765
11746
  msgid "Upload Owners only"
11747
  msgstr ""
11748
 
11749
- #: wppa-settings-autosave.php:5766
11750
  msgid "Limit uploads to the album owners only."
11751
  msgstr ""
11752
 
11753
- #: wppa-settings-autosave.php:5767
11754
  msgid ""
11755
  "If checked, users can upload to their own own albums and --- public --- only."
11756
  msgstr ""
11757
 
11758
- #: wppa-settings-autosave.php:5776
11759
  #, fuzzy
11760
  msgid "Uploader Edit"
11761
  msgstr "Nahrát fotku"
11762
 
11763
- #: wppa-settings-autosave.php:5777
11764
  msgid "Allow the uploader to edit the photo info"
11765
  msgstr ""
11766
 
11767
- #: wppa-settings-autosave.php:5778
11768
  msgid ""
11769
  "If checked, any logged in user that has upload rights and uploads an image "
11770
  "has the capability to edit the photo information."
11771
  msgstr ""
11772
 
11773
- #: wppa-settings-autosave.php:5779
11774
  msgid "Note: This may be AFTER moderation!!"
11775
  msgstr ""
11776
 
11777
- #: wppa-settings-autosave.php:5788
11778
  #, fuzzy
11779
  msgid "Uploader Moderate Comment"
11780
  msgstr "Administrace moderování komentářů"
11781
 
11782
- #: wppa-settings-autosave.php:5789
11783
  msgid "The owner of the photo can moderate the photos comments."
11784
  msgstr ""
11785
 
11786
- #: wppa-settings-autosave.php:5790
11787
  msgid "This setting requires \"Uploader edit\" to be enabled also."
11788
  msgstr ""
11789
 
11790
- #: wppa-settings-autosave.php:5799
11791
  msgid "Upload memory check frontend"
11792
  msgstr ""
11793
 
11794
- #: wppa-settings-autosave.php:5800 wppa-settings-autosave.php:5811
11795
  msgid "Disable uploading photos that are too large."
11796
  msgstr ""
11797
 
11798
- #: wppa-settings-autosave.php:5801 wppa-settings-autosave.php:5812
11799
  msgid ""
11800
  "To prevent out of memory crashes during upload and possible database "
11801
  "inconsistencies, uploads can be prevented if the photos are too big."
11802
  msgstr ""
11803
 
11804
- #: wppa-settings-autosave.php:5810
11805
  msgid "Upload memory check admin"
11806
  msgstr ""
11807
 
11808
- #: wppa-settings-autosave.php:5821
11809
  #, fuzzy
11810
  msgid "Comment captcha"
11811
  msgstr "Komentář byl odeslán"
11812
 
11813
- #: wppa-settings-autosave.php:5822
11814
  msgid "Use a simple calculate captcha on comments form."
11815
  msgstr ""
11816
 
11817
- #: wppa-settings-autosave.php:5835
11818
  msgid "Spam lifetime"
11819
  msgstr ""
11820
 
11821
- #: wppa-settings-autosave.php:5836
11822
  msgid "Delete spam comments when older than."
11823
  msgstr ""
11824
 
11825
- #: wppa-settings-autosave.php:5839
11826
  #, fuzzy
11827
  msgid "10 minutes"
11828
  msgstr "1 minuta"
11829
 
11830
- #: wppa-settings-autosave.php:5839
11831
  msgid "half an hour"
11832
  msgstr ""
11833
 
11834
- #: wppa-settings-autosave.php:5839
11835
  #, fuzzy
11836
  msgid "one hour"
11837
  msgstr "1 hodina"
11838
 
11839
- #: wppa-settings-autosave.php:5839
11840
  #, fuzzy
11841
  msgid "one day"
11842
  msgstr "1 den"
11843
 
11844
- #: wppa-settings-autosave.php:5839
11845
  #, fuzzy
11846
  msgid "one week"
11847
  msgstr "1 týden"
11848
 
11849
- #: wppa-settings-autosave.php:5849
11850
  msgid "Avoid duplicates"
11851
  msgstr ""
11852
 
11853
- #: wppa-settings-autosave.php:5850
11854
  msgid "Prevent the creation of duplicate photos."
11855
  msgstr ""
11856
 
11857
- #: wppa-settings-autosave.php:5851
11858
  msgid ""
11859
  "If checked: uploading, importing, copying or moving photos to other albums "
11860
  "will be prevented when the desitation album already contains a photo with "
11861
  "the same filename."
11862
  msgstr ""
11863
 
11864
- #: wppa-settings-autosave.php:5860
11865
  msgid "Blacklist user"
11866
  msgstr ""
11867
 
11868
- #: wppa-settings-autosave.php:5861 wppa-settings-autosave.php:5862
11869
  msgid "Set the status of all the users photos to 'pending'."
11870
  msgstr ""
11871
 
11872
- #: wppa-settings-autosave.php:5863
11873
  msgid "Also inhibits further uploads."
11874
  msgstr ""
11875
 
11876
- #: wppa-settings-autosave.php:5869
11877
  msgid "--- select a user to blacklist ---"
11878
  msgstr ""
11879
 
11880
- #: wppa-settings-autosave.php:5879 wppa-settings-autosave.php:5884
11881
- #: wppa-settings-autosave.php:5905 wppa-settings-autosave.php:8005
11882
- #: wppa-settings-autosave.php:8047
11883
  msgid "The page will be reloaded after the action has taken place."
11884
  msgstr ""
11885
 
11886
- #: wppa-settings-autosave.php:5885
11887
  msgid "User login name <b>( case sensitive! )</b>:"
11888
  msgstr ""
11889
 
11890
- #: wppa-settings-autosave.php:5893
11891
  msgid "Unblacklist user"
11892
  msgstr ""
11893
 
11894
- #: wppa-settings-autosave.php:5894
11895
  msgid "Set the status of all the users photos to 'publish'."
11896
  msgstr ""
11897
 
11898
- #: wppa-settings-autosave.php:5898
11899
  msgid "--- select a user to unblacklist ---"
11900
  msgstr ""
11901
 
11902
- #: wppa-settings-autosave.php:5913
11903
  #, fuzzy
11904
  msgid "Photo owner change"
11905
  msgstr "Foto dne"
11906
 
11907
- #: wppa-settings-autosave.php:5914
11908
  msgid "Administrators can change photo owner"
11909
  msgstr ""
11910
 
11911
- #: wppa-settings-autosave.php:5942
11912
  msgid "Table VIII:"
11913
  msgstr ""
11914
 
11915
- #: wppa-settings-autosave.php:5942
11916
  msgid "Actions:"
11917
  msgstr ""
11918
 
11919
- #: wppa-settings-autosave.php:5943
11920
  msgid "This table lists all actions that can be taken to the wppa+ system"
11921
  msgstr ""
11922
 
11923
- #: wppa-settings-autosave.php:5953 wppa-settings-autosave.php:6533
11924
  msgid "Specification"
11925
  msgstr ""
11926
 
11927
- #: wppa-settings-autosave.php:5954 wppa-settings-autosave.php:6534
11928
- #: wppa-settings-autosave.php:8788 wppa-settings-autosave.php:8810
11929
  msgid "Do it!"
11930
  msgstr ""
11931
 
11932
- #: wppa-settings-autosave.php:5956 wppa-settings-autosave.php:6536
11933
  msgid "To Go"
11934
  msgstr ""
11935
 
11936
- #: wppa-settings-autosave.php:5964
11937
  msgid "Harmless and reverseable actions"
11938
  msgstr ""
11939
 
11940
- #: wppa-settings-autosave.php:5966
11941
  msgid "Ignore concurrency"
11942
  msgstr ""
11943
 
11944
- #: wppa-settings-autosave.php:5967
11945
  msgid "Ignore the prevention of concurrent actions."
11946
  msgstr ""
11947
 
11948
- #: wppa-settings-autosave.php:5968
11949
  msgid ""
11950
  "This setting is meant to recover from deadlock situations only. Use with "
11951
  "care!"
11952
  msgstr ""
11953
 
11954
- #: wppa-settings-autosave.php:5979
11955
  msgid "Setup"
11956
  msgstr ""
11957
 
11958
- #: wppa-settings-autosave.php:5980
11959
  msgid "Re-initialize plugin."
11960
  msgstr ""
11961
 
11962
- #: wppa-settings-autosave.php:5981
11963
  msgid ""
11964
  "Re-initilizes the plugin, (re)creates database tables and sets up default "
11965
  "settings and directories if required."
11966
  msgstr ""
11967
 
11968
- #: wppa-settings-autosave.php:5982
11969
  msgid ""
11970
  "This action may be required to setup blogs in a multiblog (network) site as "
11971
  "well as in rare cases to correct initilization errors."
11972
  msgstr ""
11973
 
11974
- #: wppa-settings-autosave.php:5993
11975
  #, fuzzy
11976
  msgid "Backup settings"
11977
  msgstr "Nastavení"
11978
 
11979
- #: wppa-settings-autosave.php:5994
11980
  msgid "Save all settings into a backup file."
11981
  msgstr ""
11982
 
11983
- #: wppa-settings-autosave.php:5995
11984
  msgid "Saves all the settings into a backup file"
11985
  msgstr ""
11986
 
11987
- #: wppa-settings-autosave.php:6006
11988
  #, fuzzy
11989
  msgid "Load settings"
11990
  msgstr "Nastavení"
11991
 
11992
- #: wppa-settings-autosave.php:6007
11993
  msgid "Restore all settings from defaults, a backup or skin file."
11994
  msgstr ""
11995
 
11996
- #: wppa-settings-autosave.php:6008
11997
  msgid ""
11998
  "Restores all the settings from the factory supplied defaults, the backup you "
11999
  "created or from a skin file."
12000
  msgstr ""
12001
 
12002
- #: wppa-settings-autosave.php:6014
12003
  #, fuzzy
12004
  msgid "--- set to defaults ---"
12005
  msgstr "--- smazáno ---"
12006
 
12007
- #: wppa-settings-autosave.php:6017
12008
  msgid "--- restore backup ---"
12009
  msgstr ""
12010
 
12011
- #: wppa-settings-autosave.php:6039
12012
  msgid "Regenerate"
12013
  msgstr ""
12014
 
12015
- #: wppa-settings-autosave.php:6040 wppa-settings-autosave.php:6041
12016
  #, fuzzy
12017
  msgid "Regenerate all thumbnails."
12018
  msgstr "Prohlédnout náhledy"
12019
 
12020
- #: wppa-settings-autosave.php:6044 wppa-settings-autosave.php:6148
12021
  msgid "Skip one"
12022
  msgstr ""
12023
 
12024
- #: wppa-settings-autosave.php:6053
12025
  #, fuzzy
12026
  msgid "Rerate"
12027
  msgstr "Spravovat"
12028
 
12029
- #: wppa-settings-autosave.php:6054
12030
  msgid "Recalculate ratings."
12031
  msgstr ""
12032
 
12033
- #: wppa-settings-autosave.php:6055
12034
  msgid ""
12035
  "This function will recalculate all mean photo ratings from the ratings table."
12036
  msgstr ""
12037
 
12038
- #: wppa-settings-autosave.php:6056
12039
  msgid ""
12040
  "You may need this function after the re-import of previously exported photos"
12041
  msgstr ""
12042
 
12043
- #: wppa-settings-autosave.php:6067
12044
  #, fuzzy
12045
  msgid "Lost and found"
12046
  msgstr "Fotky nenalezeny."
12047
 
12048
- #: wppa-settings-autosave.php:6068
12049
  msgid "Find \"lost\" photos."
12050
  msgstr ""
12051
 
12052
- #: wppa-settings-autosave.php:6069
12053
  msgid "This function will attempt to find lost photos."
12054
  msgstr ""
12055
 
12056
- #: wppa-settings-autosave.php:6080
12057
  msgid "Recuperate"
12058
  msgstr ""
12059
 
12060
- #: wppa-settings-autosave.php:6082
12061
  msgid ""
12062
  "This action will attempt to find and register IPTC and EXIF data from photos "
12063
  "in the WPPA+ system."
12064
  msgstr ""
12065
 
12066
- #: wppa-settings-autosave.php:6093
12067
  msgid "Remake Index Albums"
12068
  msgstr ""
12069
 
12070
- #: wppa-settings-autosave.php:6094
12071
  msgid "Remakes the index database table for albums."
12072
  msgstr ""
12073
 
12074
- #: wppa-settings-autosave.php:6106
12075
  #, fuzzy
12076
  msgid "Remake Index Photos"
12077
  msgstr "Podobné fotky"
12078
 
12079
- #: wppa-settings-autosave.php:6107
12080
  msgid "Remakes the index database table for photos."
12081
  msgstr ""
12082
 
12083
- #: wppa-settings-autosave.php:6125
12084
  msgid "Convert to tree"
12085
  msgstr ""
12086
 
12087
- #: wppa-settings-autosave.php:6126
12088
  msgid "Convert filesystem to tree structure."
12089
  msgstr ""
12090
 
12091
- #: wppa-settings-autosave.php:6129
12092
  msgid "Convert to flat"
12093
  msgstr ""
12094
 
12095
- #: wppa-settings-autosave.php:6130
12096
  msgid "Convert filesystem to flat structure."
12097
  msgstr ""
12098
 
12099
- #: wppa-settings-autosave.php:6132
12100
  msgid ""
12101
  "If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
12102
  "to flat first."
12103
  msgstr ""
12104
 
12105
- #: wppa-settings-autosave.php:6144
12106
  msgid "Remake the photofiles from photo sourcefiles."
12107
  msgstr ""
12108
 
12109
- #: wppa-settings-autosave.php:6145
12110
  msgid ""
12111
  "This action will remake the fullsize images, thumbnail images, and will "
12112
  "refresh the iptc and exif data for all photos where the source is found in "
12113
  "the corresponding album sub-directory of the source directory."
12114
  msgstr ""
12115
 
12116
- #: wppa-settings-autosave.php:6157
12117
  msgid "Recalc sizes"
12118
  msgstr ""
12119
 
12120
- #: wppa-settings-autosave.php:6158
12121
  msgid "Recalculate photosizes and save to db."
12122
  msgstr ""
12123
 
12124
- #: wppa-settings-autosave.php:6170
12125
  msgid "Clearing and other irreverseable actions"
12126
  msgstr ""
12127
 
12128
- #: wppa-settings-autosave.php:6172
12129
  #, fuzzy
12130
  msgid "Clear ratings"
12131
  msgstr "Max uploads dosiahol"
12132
 
12133
- #: wppa-settings-autosave.php:6173
12134
  msgid "Reset all ratings."
12135
  msgstr ""
12136
 
12137
- #: wppa-settings-autosave.php:6174
12138
  msgid "WARNING: If checked, this will clear all ratings in the system!"
12139
  msgstr ""
12140
 
12141
- #: wppa-settings-autosave.php:6185
12142
  msgid "Clear viewcounts"
12143
  msgstr ""
12144
 
12145
- #: wppa-settings-autosave.php:6186
12146
  msgid "Reset all viewcounts."
12147
  msgstr ""
12148
 
12149
- #: wppa-settings-autosave.php:6187
12150
  msgid "WARNING: If checked, this will clear all viewcounts in the system!"
12151
  msgstr ""
12152
 
12153
- #: wppa-settings-autosave.php:6198
12154
  msgid "Reset IPTC"
12155
  msgstr ""
12156
 
12157
- #: wppa-settings-autosave.php:6199
12158
  #, fuzzy
12159
  msgid "Clear all IPTC data."
12160
  msgstr "Skrýt IPTC data"
12161
 
12162
- #: wppa-settings-autosave.php:6200
12163
  msgid "WARNING: If checked, this will clear all IPTC data in the system!"
12164
  msgstr ""
12165
 
12166
- #: wppa-settings-autosave.php:6211
12167
  msgid "Reset EXIF"
12168
  msgstr ""
12169
 
12170
- #: wppa-settings-autosave.php:6212
12171
  #, fuzzy
12172
  msgid "Clear all EXIF data."
12173
  msgstr "Skrýt EXIF data"
12174
 
12175
- #: wppa-settings-autosave.php:6213
12176
  msgid "WARNING: If checked, this will clear all EXIF data in the system!"
12177
  msgstr ""
12178
 
12179
- #: wppa-settings-autosave.php:6224
12180
  #, fuzzy
12181
  msgid "Apply New Photodesc"
12182
  msgstr "Super View fotky"
12183
 
12184
- #: wppa-settings-autosave.php:6225
12185
  msgid "Apply New photo description on all photos in the system."
12186
  msgstr ""
12187
 
12188
- #: wppa-settings-autosave.php:6237
12189
  msgid "Append to photodesc"
12190
  msgstr ""
12191
 
12192
- #: wppa-settings-autosave.php:6238
12193
  #, fuzzy
12194
  msgid "Append this text to all photo descriptions."
12195
  msgstr "Zadat/upravit popis fotky"
12196
 
12197
- #: wppa-settings-autosave.php:6252
12198
  msgid "Remove from photodesc"
12199
  msgstr ""
12200
 
12201
- #: wppa-settings-autosave.php:6253
12202
  #, fuzzy
12203
  msgid "Remove this text from all photo descriptions."
12204
  msgstr "Zadat/upravit popis fotky"
12205
 
12206
- #: wppa-settings-autosave.php:6267
12207
  #, fuzzy
12208
  msgid "Remove empty albums"
12209
  msgstr "Nedávno nahrané fotky"
12210
 
12211
- #: wppa-settings-autosave.php:6268
12212
  msgid "Removes albums that are not used."
12213
  msgstr ""
12214
 
12215
- #: wppa-settings-autosave.php:6280
12216
  msgid "Remove file-ext"
12217
  msgstr ""
12218
 
12219
- #: wppa-settings-autosave.php:6281
12220
  msgid "Remove possible file extension from photo name."
12221
  msgstr ""
12222
 
12223
- #: wppa-settings-autosave.php:6282
12224
  msgid ""
12225
  "This may be required for old photos, uploaded when the option in Table IX-D3 "
12226
  "was not yet available/selected."
12227
  msgstr ""
12228
 
12229
- #: wppa-settings-autosave.php:6293
12230
  msgid "Re-add file-ext"
12231
  msgstr ""
12232
 
12233
- #: wppa-settings-autosave.php:6294
12234
  msgid "Revert the <i>Remove file-ext</i> action."
12235
  msgstr ""
12236
 
12237
- #: wppa-settings-autosave.php:6306
12238
  msgid "Watermark all"
12239
  msgstr ""
12240
 
12241
- #: wppa-settings-autosave.php:6307
12242
  msgid "Apply watermark according to current settings to all photos."
12243
  msgstr ""
12244
 
12245
- #: wppa-settings-autosave.php:6308
12246
  msgid "See Table IX_F for the current watermark settings"
12247
  msgstr ""
12248
 
12249
- #: wppa-settings-autosave.php:6319
12250
  #, fuzzy
12251
  msgid "Create all autopages"
12252
  msgstr "Album:"
12253
 
12254
- #: wppa-settings-autosave.php:6320
12255
  msgid "Create all the pages to display slides individually."
12256
  msgstr ""
12257
 
12258
- #: wppa-settings-autosave.php:6321 wppa-settings-autosave.php:6335
12259
  msgid "See also Table IV-A10."
12260
  msgstr ""
12261
 
12262
- #: wppa-settings-autosave.php:6322
12263
  msgid ""
12264
  "Make sure you have a custom menu and the \"Automatically add new top-level "
12265
  "pages to this menu\" box UNticked!!"
12266
  msgstr ""
12267
 
12268
- #: wppa-settings-autosave.php:6333
12269
  #, fuzzy
12270
  msgid "Delete all autopages"
12271
  msgstr "Album:"
12272
 
12273
- #: wppa-settings-autosave.php:6334
12274
  msgid "Delete all the pages to display slides individually."
12275
  msgstr ""
12276
 
12277
- #: wppa-settings-autosave.php:6347
12278
  msgid "Leading zeroes"
12279
  msgstr ""
12280
 
12281
- #: wppa-settings-autosave.php:6348
12282
  msgid "If photoname numeric, add leading zeros"
12283
  msgstr ""
12284
 
12285
- #: wppa-settings-autosave.php:6349
12286
  msgid ""
12287
  "You can extend the name with leading zeros, so alphabetic sort becomes equal "
12288
  "to numeric sort order."
12289
  msgstr ""
12290
 
12291
- #: wppa-settings-autosave.php:6352
12292
  msgid "Total chars"
12293
  msgstr ""
12294
 
12295
- #: wppa-settings-autosave.php:6361
12296
  msgid "Add GPX tag"
12297
  msgstr ""
12298
 
12299
- #: wppa-settings-autosave.php:6362
12300
  msgid "Make sure photos with gpx data have a Gpx tag"
12301
  msgstr ""
12302
 
12303
- #: wppa-settings-autosave.php:6375 wppa-settings-autosave.php:7135
12304
  msgid "Optimize files"
12305
  msgstr ""
12306
 
12307
- #: wppa-settings-autosave.php:6376
12308
  msgid "Optimize with EWWW image optimizer"
12309
  msgstr ""
12310
 
12311
- #: wppa-settings-autosave.php:6389
12312
  #, fuzzy
12313
  msgid "Edit tag"
12314
  msgstr "Upravit fotku"
12315
 
12316
- #: wppa-settings-autosave.php:6390
12317
  msgid "Globally change a tagname."
12318
  msgstr ""
12319
 
12320
- #: wppa-settings-autosave.php:6396
12321
  #, fuzzy
12322
  msgid "-select a tag-"
12323
  msgstr "Vyberte prosím album a opakujte akci"
12324
 
12325
- #: wppa-settings-autosave.php:6402
12326
  msgid "Tag:"
12327
  msgstr ""
12328
 
12329
- #: wppa-settings-autosave.php:6403
12330
  msgid "Change to:"
12331
  msgstr ""
12332
 
12333
- #: wppa-settings-autosave.php:6412
12334
  msgid "Synchronize Cloudinary"
12335
  msgstr ""
12336
 
12337
- #: wppa-settings-autosave.php:6413
12338
  msgid "Removes/adds images in the cloud."
12339
  msgstr ""
12340
 
12341
- #: wppa-settings-autosave.php:6414
12342
  msgid "Removes old images and verifies/adds new images to Cloudinary."
12343
  msgstr ""
12344
 
12345
- #: wppa-settings-autosave.php:6415
12346
  msgid "See Table IX-K4.7 for the configured lifetime."
12347
  msgstr ""
12348
 
12349
- #: wppa-settings-autosave.php:6426
12350
  msgid "Fix tags"
12351
  msgstr ""
12352
 
12353
- #: wppa-settings-autosave.php:6427
12354
  msgid "Make sure photo tags format is uptodate"
12355
  msgstr ""
12356
 
12357
- #: wppa-settings-autosave.php:6428
12358
  msgid "Fixes tags to be conform current database rules."
12359
  msgstr ""
12360
 
12361
- #: wppa-settings-autosave.php:6439
12362
  msgid "Fix cats"
12363
  msgstr ""
12364
 
12365
- #: wppa-settings-autosave.php:6440
12366
  msgid "Make sure album cats format is uptodate"
12367
  msgstr ""
12368
 
12369
- #: wppa-settings-autosave.php:6441
12370
  msgid "Fixes cats to be conform current database rules."
12371
  msgstr ""
12372
 
12373
- #: wppa-settings-autosave.php:6467
12374
  #, fuzzy
12375
  msgid "Listings"
12376
  msgstr "Nastavení"
12377
 
12378
- #: wppa-settings-autosave.php:6469
12379
  msgid "List Logfile"
12380
  msgstr ""
12381
 
12382
- #: wppa-settings-autosave.php:6470
12383
  msgid "Show the content of wppa+ (error) log."
12384
  msgstr ""
12385
 
12386
- #: wppa-settings-autosave.php:6474
12387
  msgid "Purge logfile"
12388
  msgstr ""
12389
 
12390
- #: wppa-settings-autosave.php:6483
12391
  #, fuzzy
12392
  msgid "List Ratings"
12393
  msgstr "Hlasování: %s"
12394
 
12395
- #: wppa-settings-autosave.php:6484
12396
  #, fuzzy
12397
  msgid "Show the most recent ratings."
12398
  msgstr "Zobrazit posledně nahrané fotky"
12399
 
12400
- #: wppa-settings-autosave.php:6497
12401
  msgid "List Index"
12402
  msgstr ""
12403
 
12404
- #: wppa-settings-autosave.php:6498
12405
  msgid "Show the content if the index table."
12406
  msgstr ""
12407
 
12408
- #: wppa-settings-autosave.php:6502
12409
  msgid "Start at text:"
12410
  msgstr ""
12411
 
12412
- #: wppa-settings-autosave.php:6512
12413
  msgid "List active sessions"
12414
  msgstr ""
12415
 
12416
- #: wppa-settings-autosave.php:6513
12417
  msgid "Show the content of the sessions table."
12418
  msgstr ""
12419
 
12420
- #: wppa-settings-autosave.php:6546
12421
  msgid "Table IX:"
12422
  msgstr ""
12423
 
12424
- #: wppa-settings-autosave.php:6546
12425
  msgid "Miscellaneous:"
12426
  msgstr ""
12427
 
12428
- #: wppa-settings-autosave.php:6547
12429
  msgid "This table lists all settings that do not fit into an other table"
12430
  msgstr ""
12431
 
12432
- #: wppa-settings-autosave.php:6565
12433
  msgid "Internal engine related settings"
12434
  msgstr ""
12435
 
12436
- #: wppa-settings-autosave.php:6567
12437
  msgid "WPPA+ Filter priority"
12438
  msgstr ""
12439
 
12440
- #: wppa-settings-autosave.php:6568
12441
  msgid "Sets the priority of the wppa+ content filter."
12442
  msgstr ""
12443
 
12444
- #: wppa-settings-autosave.php:6569 wppa-settings-autosave.php:6578
12445
  msgid ""
12446
  "If you encounter conflicts with the theme or other plugins, increasing this "
12447
  "value sometimes helps. Use with great care!"
12448
  msgstr ""
12449
 
12450
- #: wppa-settings-autosave.php:6576
12451
  msgid "Do_shortcode priority"
12452
  msgstr ""
12453
 
12454
- #: wppa-settings-autosave.php:6577
12455
  msgid "Sets the priority of the do_shortcode() content filter."
12456
  msgstr ""
12457
 
12458
- #: wppa-settings-autosave.php:6585
12459
  #, fuzzy
12460
  msgid "WPPA shortcode at Filter priority"
12461
  msgstr "Priorita závěrky rychlosti AE"
12462
 
12463
- #: wppa-settings-autosave.php:6586
12464
  msgid "Execute shortcode expansion on filter priority in posts and pages."
12465
  msgstr ""
12466
 
12467
- #: wppa-settings-autosave.php:6587 wppa-settings-autosave.php:6596
12468
  msgid "Use to fix certain layout problems"
12469
  msgstr ""
12470
 
12471
- #: wppa-settings-autosave.php:6594
12472
  msgid "WPPA shortcode at Filter priority widget"
12473
  msgstr ""
12474
 
12475
- #: wppa-settings-autosave.php:6595
12476
  msgid "Execute shortcode expansion on filter priority in widgets."
12477
  msgstr ""
12478
 
12479
- #: wppa-settings-autosave.php:6603
12480
  msgid "JPG image quality"
12481
  msgstr ""
12482
 
12483
- #: wppa-settings-autosave.php:6604
12484
  msgid "The jpg quality when photos are downsized"
12485
  msgstr ""
12486
 
12487
- #: wppa-settings-autosave.php:6605
12488
  msgid "The higher the number the better the quality but the larger the file"
12489
  msgstr ""
12490
 
12491
- #: wppa-settings-autosave.php:6606
12492
  msgid "Possible values 20..100"
12493
  msgstr ""
12494
 
12495
- #: wppa-settings-autosave.php:6613
12496
  msgid "Allow WPPA+ Debugging"
12497
  msgstr ""
12498
 
12499
- #: wppa-settings-autosave.php:6614
12500
  msgid "Allow the use of &amp;debug=.. in urls to this site."
12501
  msgstr ""
12502
 
12503
- #: wppa-settings-autosave.php:6615
12504
  msgid ""
12505
  "If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
12506
  "site will generate the display of special WPPA+ diagnostics, as well as php "
12507
  "warnings"
12508
  msgstr ""
12509
 
12510
- #: wppa-settings-autosave.php:6622
12511
  msgid "Auto continue"
12512
  msgstr ""
12513
 
12514
- #: wppa-settings-autosave.php:6623
12515
  msgid "Continue automatic after time out"
12516
  msgstr ""
12517
 
12518
- #: wppa-settings-autosave.php:6624
12519
  msgid ""
12520
  "If checked, an attempt will be made to restart an admin process when the "
12521
  "time is out."
12522
  msgstr ""
12523
 
12524
- #: wppa-settings-autosave.php:6632
12525
  msgid "Set max execution time here."
12526
  msgstr ""
12527
 
12528
- #: wppa-settings-autosave.php:6633
12529
  msgid ""
12530
  "If your php config does not properly set the max execution time, you can set "
12531
  "it here. Seconds, 0 means do not change."
12532
  msgstr ""
12533
 
12534
- #: wppa-settings-autosave.php:6634
12535
  msgid "A safe value is 45"
12536
  msgstr ""
12537
 
12538
- #: wppa-settings-autosave.php:6641
12539
  msgid "Feed use thumb"
12540
  msgstr ""
12541
 
12542
- #: wppa-settings-autosave.php:6642
12543
  msgid "Feeds use thumbnail pictures always."
12544
  msgstr ""
12545
 
12546
- #: wppa-settings-autosave.php:6650
12547
  msgid "Enable <i>in-line</i> settings"
12548
  msgstr ""
12549
 
12550
- #: wppa-settings-autosave.php:6651
12551
  msgid "Activates shortcode [wppa_set][/wppa_set]."
12552
  msgstr ""
12553
 
12554
- #: wppa-settings-autosave.php:6652
12555
  msgid ""
12556
  "Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
12557
  msgstr ""
12558
 
12559
- #: wppa-settings-autosave.php:6653
12560
  msgid ""
12561
  "Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
12562
  "sets the thumbnail type to vertical masonry style"
12563
  msgstr ""
12564
 
12565
- #: wppa-settings-autosave.php:6654
12566
  msgid "Do not forget to reset with [wppa_set][/wppa_set]"
12567
  msgstr ""
12568
 
12569
- #: wppa-settings-autosave.php:6655
12570
  msgid "Use with great care! There is no check on validity of values!"
12571
  msgstr ""
12572
 
12573
- #: wppa-settings-autosave.php:6662
12574
  msgid "Runtime modifyable settings"
12575
  msgstr ""
12576
 
12577
- #: wppa-settings-autosave.php:6663
12578
  msgid "The setting slugs that may be altered using [wppa_set] shortcode."
12579
  msgstr ""
12580
 
12581
- #: wppa-settings-autosave.php:6672
 
 
 
 
 
 
 
 
 
 
 
 
 
12582
  msgid "WPPA+ Admin related miscellaneous settings"
12583
  msgstr ""
12584
 
12585
- #: wppa-settings-autosave.php:6674
12586
  msgid "Allow HTML"
12587
  msgstr ""
12588
 
12589
- #: wppa-settings-autosave.php:6675
12590
  msgid "Allow HTML in album and photo descriptions."
12591
  msgstr ""
12592
 
12593
- #: wppa-settings-autosave.php:6676
12594
  msgid ""
12595
  "If checked: html is allowed. WARNING: No checks on syntax, it is your own "
12596
  "responsability to close tags properly!"
12597
  msgstr ""
12598
 
12599
- #: wppa-settings-autosave.php:6683
12600
  msgid "Check tag balance"
12601
  msgstr ""
12602
 
12603
- #: wppa-settings-autosave.php:6684
12604
  msgid "Check if the HTML tags are properly closed: \"balanced\"."
12605
  msgstr ""
12606
 
12607
- #: wppa-settings-autosave.php:6685
12608
  msgid ""
12609
  "If the HTML tags in an album or a photo description are not in balance, the "
12610
  "description is not updated, an errormessage is displayed"
12611
  msgstr ""
12612
 
12613
- #: wppa-settings-autosave.php:6692
12614
  msgid "Use WP editor"
12615
  msgstr ""
12616
 
12617
- #: wppa-settings-autosave.php:6693
12618
  msgid "Use the wp editor for multiline text fields."
12619
  msgstr ""
12620
 
12621
- #: wppa-settings-autosave.php:6701
12622
  msgid "Album sel hierarchic"
12623
  msgstr ""
12624
 
12625
- #: wppa-settings-autosave.php:6702
12626
  msgid "Show albums with (grand)parents in selection lists."
12627
  msgstr ""
12628
 
12629
- #: wppa-settings-autosave.php:6710
12630
  msgid "Page sel hierarchic"
12631
  msgstr ""
12632
 
12633
- #: wppa-settings-autosave.php:6711
12634
  msgid "Show pages with (grand)parents in selection lists."
12635
  msgstr ""
12636
 
12637
- #: wppa-settings-autosave.php:6720
12638
  msgid "Photo admin page size"
12639
  msgstr ""
12640
 
12641
- #: wppa-settings-autosave.php:6721
12642
  msgid ""
12643
  "The number of photos per page on the <br/>Edit Album -> Manage photos and "
12644
  "Edit Photos admin pages."
12645
  msgstr ""
12646
 
12647
- #: wppa-settings-autosave.php:6731
12648
  #, fuzzy
12649
  msgid "Comment admin page size"
12650
  msgstr "Komentáře"
12651
 
12652
- #: wppa-settings-autosave.php:6732
12653
  msgid "The number of comments per page on the Comments admin pages."
12654
  msgstr ""
12655
 
12656
- #: wppa-settings-autosave.php:6742
12657
  msgid "Geo info edit"
12658
  msgstr ""
12659
 
12660
- #: wppa-settings-autosave.php:6743
12661
  msgid "Lattitude and longitude may be edited in photo admin."
12662
  msgstr ""
12663
 
12664
- #: wppa-settings-autosave.php:6751
12665
  msgid "Admin bar menu admin"
12666
  msgstr ""
12667
 
12668
- #: wppa-settings-autosave.php:6752
12669
  msgid "Show menu on admin bar on admin pages."
12670
  msgstr ""
12671
 
12672
- #: wppa-settings-autosave.php:6760
12673
  msgid "Admin bar menu frontend"
12674
  msgstr ""
12675
 
12676
- #: wppa-settings-autosave.php:6761
12677
  msgid "Show menu on admin bar on frontend pages."
12678
  msgstr ""
12679
 
12680
- #: wppa-settings-autosave.php:6769
12681
  msgid "Add shortcode to posts"
12682
  msgstr ""
12683
 
12684
- #: wppa-settings-autosave.php:6770
12685
  msgid "Add a shortcode to the end of all posts."
12686
  msgstr ""
12687
 
12688
- #: wppa-settings-autosave.php:6778
12689
  msgid "Shortcode to add"
12690
  msgstr ""
12691
 
12692
- #: wppa-settings-autosave.php:6779
12693
  msgid "The shortcode to be added to the posts."
12694
  msgstr ""
12695
 
12696
- #: wppa-settings-autosave.php:6787
12697
  msgid "We use Scripts"
12698
  msgstr ""
12699
 
12700
- #: wppa-settings-autosave.php:6788
12701
  msgid "Use scripting syntax in shortcode generator."
12702
  msgstr ""
12703
 
12704
- #: wppa-settings-autosave.php:6789
12705
  msgid ""
12706
  "This setting defines if the shortcode generator outputs old style script "
12707
  "tags or new style shortcodes."
12708
  msgstr ""
12709
 
12710
- #: wppa-settings-autosave.php:6797
12711
  msgid "Import page prieviews"
12712
  msgstr ""
12713
 
12714
- #: wppa-settings-autosave.php:6798
12715
  msgid "Show thumbnail previews in import admin page."
12716
  msgstr ""
12717
 
12718
- #: wppa-settings-autosave.php:6806
12719
  #, fuzzy
12720
  msgid "Upload audiostub"
12721
  msgstr "Nahrát fotku"
12722
 
12723
- #: wppa-settings-autosave.php:6807
12724
  msgid "Upload a new audio stub file"
12725
  msgstr ""
12726
 
12727
- #: wppa-settings-autosave.php:6811
12728
  #, fuzzy
12729
  msgid "Upload audio stub image"
12730
  msgstr "Nahraný súbor nie je obraz"
12731
 
12732
- #: wppa-settings-autosave.php:6816
12733
  msgid "Confirm create"
12734
  msgstr ""
12735
 
12736
- #: wppa-settings-autosave.php:6817
12737
  msgid "Display confirmation dialog before creating album."
12738
  msgstr ""
12739
 
12740
- #: wppa-settings-autosave.php:6826
12741
  msgid "SEO related settings"
12742
  msgstr ""
12743
 
12744
- #: wppa-settings-autosave.php:6828
12745
  msgid "Meta on page"
12746
  msgstr ""
12747
 
12748
- #: wppa-settings-autosave.php:6829
12749
  msgid "Meta tags for photos on the page."
12750
  msgstr ""
12751
 
12752
- #: wppa-settings-autosave.php:6830
12753
  msgid ""
12754
  "If checked, the header of the page will contain metatags that refer to "
12755
  "featured photos on the page in the page context."
12756
  msgstr ""
12757
 
12758
- #: wppa-settings-autosave.php:6837
12759
  msgid "Meta all"
12760
  msgstr ""
12761
 
12762
- #: wppa-settings-autosave.php:6838
12763
  #, fuzzy
12764
  msgid "Meta tags for all featured photos."
12765
  msgstr "Zobrazit nejlépe hodnocené fotky"
12766
 
12767
- #: wppa-settings-autosave.php:6839
12768
  msgid ""
12769
  "If checked, the header of the page will contain metatags that refer to all "
12770
  "featured photo files."
12771
  msgstr ""
12772
 
12773
- #: wppa-settings-autosave.php:6840
12774
  msgid ""
12775
  "If you have many featured photos, you might wish to uncheck this item to "
12776
  "reduce the size of the page header."
12777
  msgstr ""
12778
 
12779
- #: wppa-settings-autosave.php:6847
12780
  msgid "Add og meta tags"
12781
  msgstr ""
12782
 
12783
- #: wppa-settings-autosave.php:6848
12784
  msgid "Add og meta tags to the page header."
12785
  msgstr ""
12786
 
12787
- #: wppa-settings-autosave.php:6851
12788
  msgid ""
12789
  "Turning this off may affect the functionality of social media items in the "
12790
  "share box that rely on open graph tags information."
12791
  msgstr ""
12792
 
12793
- #: wppa-settings-autosave.php:6857
12794
  msgid "Image Alt attribute type"
12795
  msgstr ""
12796
 
12797
- #: wppa-settings-autosave.php:6858
12798
  msgid "Select kind of HTML alt=\"\" content for images."
12799
  msgstr ""
12800
 
12801
- #: wppa-settings-autosave.php:6861
12802
  #, fuzzy
12803
  msgid "photo name"
12804
  msgstr "Zadejte název fotky"
12805
 
12806
- #: wppa-settings-autosave.php:6861
12807
  msgid "name without file-ext"
12808
  msgstr ""
12809
 
12810
- #: wppa-settings-autosave.php:6861
12811
  #, fuzzy
12812
  msgid "set in album admin"
12813
  msgstr "Vyberte prosím album a opakujte akci"
12814
 
12815
- #: wppa-settings-autosave.php:6868
12816
  msgid "New Album and New Photo related miscellaneous settings"
12817
  msgstr ""
12818
 
12819
- #: wppa-settings-autosave.php:6871
12820
  msgid "Maximum time an album is indicated as New!"
12821
  msgstr ""
12822
 
12823
- #: wppa-settings-autosave.php:6875 wppa-settings-autosave.php:6916
12824
  #, fuzzy
12825
  msgid "One hour"
12826
  msgstr "1 hodina"
12827
 
12828
- #: wppa-settings-autosave.php:6876 wppa-settings-autosave.php:6917
12829
- #: wppa-settings-autosave.php:7907
12830
  #, fuzzy
12831
  msgid "One day"
12832
  msgstr "1 den"
12833
 
12834
- #: wppa-settings-autosave.php:6877 wppa-settings-autosave.php:6918
12835
  #, fuzzy
12836
  msgid "Two days"
12837
  msgstr "dní"
12838
 
12839
- #: wppa-settings-autosave.php:6878 wppa-settings-autosave.php:6919
12840
  msgid "Three days"
12841
  msgstr ""
12842
 
12843
- #: wppa-settings-autosave.php:6879 wppa-settings-autosave.php:6920
12844
  #, fuzzy
12845
  msgid "Four days"
12846
  msgstr "dní"
12847
 
12848
- #: wppa-settings-autosave.php:6880 wppa-settings-autosave.php:6921
12849
  #, fuzzy
12850
  msgid "Five days"
12851
  msgstr "dní"
12852
 
12853
- #: wppa-settings-autosave.php:6881 wppa-settings-autosave.php:6922
12854
  #, fuzzy
12855
  msgid "Six days"
12856
  msgstr "dní"
12857
 
12858
- #: wppa-settings-autosave.php:6882 wppa-settings-autosave.php:6923
12859
- #: wppa-settings-autosave.php:7908
12860
  #, fuzzy
12861
  msgid "One week"
12862
  msgstr "1 týden"
12863
 
12864
- #: wppa-settings-autosave.php:6883 wppa-settings-autosave.php:6924
12865
  msgid "Eight days"
12866
  msgstr ""
12867
 
12868
- #: wppa-settings-autosave.php:6884 wppa-settings-autosave.php:6925
12869
  #, fuzzy
12870
  msgid "Nine days"
12871
  msgstr "dní"
12872
 
12873
- #: wppa-settings-autosave.php:6885 wppa-settings-autosave.php:6926
12874
  #, fuzzy
12875
  msgid "Ten days"
12876
  msgstr "dní"
12877
 
12878
- #: wppa-settings-autosave.php:6886 wppa-settings-autosave.php:6927
12879
  #, fuzzy
12880
  msgid "Two weeks"
12881
  msgstr "týdnů"
12882
 
12883
- #: wppa-settings-autosave.php:6887 wppa-settings-autosave.php:6928
12884
  #, fuzzy
12885
  msgid "Three weeks"
12886
  msgstr "týdnů"
12887
 
12888
- #: wppa-settings-autosave.php:6888 wppa-settings-autosave.php:6929
12889
  #, fuzzy
12890
  msgid "Four weeks"
12891
  msgstr "týdnů"
12892
 
12893
- #: wppa-settings-autosave.php:6889 wppa-settings-autosave.php:6930
12894
- #: wppa-settings-autosave.php:7909
12895
  #, fuzzy
12896
  msgid "One month"
12897
  msgstr "1 měsíc"
12898
 
12899
- #: wppa-settings-autosave.php:6911
12900
  #, fuzzy
12901
  msgid "New Photo"
12902
  msgstr "Další fotku"
12903
 
12904
- #: wppa-settings-autosave.php:6912
12905
  msgid "Maximum time a photo is indicated as New!"
12906
  msgstr ""
12907
 
12908
- #: wppa-settings-autosave.php:6952
12909
  msgid "Limit LasTen New"
12910
  msgstr ""
12911
 
12912
- #: wppa-settings-autosave.php:6953
12913
  msgid "Limits the LasTen photos to those that are 'New'."
12914
  msgstr ""
12915
 
12916
- #: wppa-settings-autosave.php:6954
12917
  msgid ""
12918
  "If you tick this box and configured the new photo time, you can even limit "
12919
  "the number by the setting in Table I-F7, or set that number to an unlikely "
12920
  "high value."
12921
  msgstr ""
12922
 
12923
- #: wppa-settings-autosave.php:6961
12924
  msgid "Apply Newphoto desc"
12925
  msgstr ""
12926
 
12927
- #: wppa-settings-autosave.php:6962
12928
  msgid "Give each new photo a standard description."
12929
  msgstr ""
12930
 
12931
- #: wppa-settings-autosave.php:6963
12932
  msgid ""
12933
  "If checked, each new photo will get the description (template) as specified "
12934
  "in the next item."
12935
  msgstr ""
12936
 
12937
- #: wppa-settings-autosave.php:6970
12938
  #, fuzzy
12939
  msgid "New photo desc"
12940
  msgstr "Nová fotka nahrána: %s"
12941
 
12942
- #: wppa-settings-autosave.php:6971
12943
  msgid "The description (template) to add to a new photo."
12944
  msgstr ""
12945
 
12946
- #: wppa-settings-autosave.php:6972
12947
  #, fuzzy
12948
  msgid "Enter the default description."
12949
  msgstr "Zadat/upravit popis fotky"
12950
 
12951
- #: wppa-settings-autosave.php:6973
12952
  msgid "If you use html, please check item A-1 of this table."
12953
  msgstr ""
12954
 
12955
- #: wppa-settings-autosave.php:6981
12956
  msgid "New albums are created with this upload limit."
12957
  msgstr ""
12958
 
12959
- #: wppa-settings-autosave.php:6982
12960
  msgid ""
12961
  "Administrators can change the limit settings in the \"Edit Album Information"
12962
  "\" admin page."
12963
  msgstr ""
12964
 
12965
- #: wppa-settings-autosave.php:6999
12966
  msgid "Default parent"
12967
  msgstr ""
12968
 
12969
- #: wppa-settings-autosave.php:7000
12970
  msgid "The parent album of new albums."
12971
  msgstr ""
12972
 
12973
- #: wppa-settings-autosave.php:7017
12974
  msgid "Default parent always"
12975
  msgstr ""
12976
 
12977
- #: wppa-settings-autosave.php:7018
12978
  msgid ""
12979
  "The parent album of new albums is always the default, except for "
12980
  "administrators."
12981
  msgstr ""
12982
 
12983
- #: wppa-settings-autosave.php:7026
12984
  msgid "Show album full"
12985
  msgstr ""
12986
 
12987
- #: wppa-settings-autosave.php:7027
12988
  msgid "Show the Upload limit reached message if appropriate."
12989
  msgstr ""
12990
 
12991
- #: wppa-settings-autosave.php:7035
12992
  #, fuzzy
12993
  msgid "Grant an album"
12994
  msgstr "Album:"
12995
 
12996
- #: wppa-settings-autosave.php:7036
12997
  msgid "Create an album for each user logging in."
12998
  msgstr ""
12999
 
13000
- #: wppa-settings-autosave.php:7044
13001
  #, fuzzy
13002
  msgid "Grant album name"
13003
  msgstr "Zadejte název fotky"
13004
 
13005
- #: wppa-settings-autosave.php:7045
13006
  msgid "The name to be used for the album."
13007
  msgstr ""
13008
 
13009
- #: wppa-settings-autosave.php:7048
13010
  #, fuzzy
13011
  msgid "Login name"
13012
  msgstr "Vaše jméno:"
13013
 
13014
- #: wppa-settings-autosave.php:7048 wppa-upldr-widget.php:181
13015
  msgid "Display name"
13016
  msgstr ""
13017
 
13018
- #: wppa-settings-autosave.php:7048
13019
  msgid "Id"
13020
  msgstr ""
13021
 
13022
- #: wppa-settings-autosave.php:7048
13023
  msgid "Firstname Lastname"
13024
  msgstr ""
13025
 
13026
- #: wppa-settings-autosave.php:7055
13027
  msgid "Grant parent"
13028
  msgstr ""
13029
 
13030
- #: wppa-settings-autosave.php:7056
13031
  msgid "The parent album of the auto created albums."
13032
  msgstr ""
13033
 
13034
- #: wppa-settings-autosave.php:7073
13035
  #, fuzzy
13036
  msgid "Max user albums"
13037
  msgstr "Různá alba"
13038
 
13039
- #: wppa-settings-autosave.php:7074
13040
  msgid "The max number of albums a user can create."
13041
  msgstr ""
13042
 
13043
- #: wppa-settings-autosave.php:7075
13044
  msgid ""
13045
  "The maximum number of albums a user can create when he is not admin and "
13046
  "owner only is active"
13047
  msgstr ""
13048
 
13049
- #: wppa-settings-autosave.php:7076
13050
  msgid "A number of 0 means No limit"
13051
  msgstr ""
13052
 
13053
- #: wppa-settings-autosave.php:7083
13054
  #, fuzzy
13055
  msgid "Default photo name"
13056
  msgstr "Přednastavené fotoalbum pro"
13057
 
13058
- #: wppa-settings-autosave.php:7084
13059
  msgid "Select the way the name of a new uploaded photo should be determined."
13060
  msgstr ""
13061
 
13062
- #: wppa-settings-autosave.php:7087
13063
  msgid "Filename"
13064
  msgstr ""
13065
 
13066
- #: wppa-settings-autosave.php:7088
13067
  msgid "Filename without extension"
13068
  msgstr ""
13069
 
13070
- #: wppa-settings-autosave.php:7089
13071
  msgid "IPTC Tag 2#005 (Graphic name)"
13072
  msgstr ""
13073
 
13074
- #: wppa-settings-autosave.php:7090
13075
  msgid "IPTC Tag 2#120 (Caption)"
13076
  msgstr ""
13077
 
13078
- #: wppa-settings-autosave.php:7091
13079
  msgid "No name at all"
13080
  msgstr ""
13081
 
13082
- #: wppa-settings-autosave.php:7099
13083
  #, fuzzy
13084
  msgid "Default coverphoto"
13085
  msgstr "Zobrazit úvodní fotku"
13086
 
13087
- #: wppa-settings-autosave.php:7100
13088
  msgid "Name of photofile to become cover image"
13089
  msgstr ""
13090
 
13091
- #: wppa-settings-autosave.php:7101
13092
  msgid ""
13093
  "If you name a photofile like this setting before upload, it will become the "
13094
  "coverimage automaticly."
13095
  msgstr ""
13096
 
13097
- #: wppa-settings-autosave.php:7108
13098
  msgid "Copy Timestamp"
13099
  msgstr ""
13100
 
13101
- #: wppa-settings-autosave.php:7109
13102
  msgid "Copy timestamp when copying photo."
13103
  msgstr ""
13104
 
13105
- #: wppa-settings-autosave.php:7110
13106
  msgid "If checked, the copied photo is not \"new\""
13107
  msgstr ""
13108
 
13109
- #: wppa-settings-autosave.php:7117
13110
  msgid "Copy Owner"
13111
  msgstr ""
13112
 
13113
- #: wppa-settings-autosave.php:7118
13114
  msgid "Copy the owner when copying photo."
13115
  msgstr ""
13116
 
13117
- #: wppa-settings-autosave.php:7126
13118
  msgid "FE Albums public"
13119
  msgstr ""
13120
 
13121
- #: wppa-settings-autosave.php:7127
13122
  msgid "Frontend created albums are --- public ---"
13123
  msgstr ""
13124
 
13125
- #: wppa-settings-autosave.php:7136
13126
  msgid "Optimize image files right after upload/import"
13127
  msgstr ""
13128
 
13129
- #: wppa-settings-autosave.php:7137
13130
  msgid "This option requires the plugin EWWW Image Optimizer to be activated"
13131
  msgstr ""
13132
 
13133
- #: wppa-settings-autosave.php:7144
13134
  #, fuzzy
13135
  msgid "Default album linktype"
13136
  msgstr "Přednastavené fotoalbum pro"
13137
 
13138
- #: wppa-settings-autosave.php:7145
13139
  msgid "The album linktype for new albums"
13140
  msgstr ""
13141
 
13142
- #: wppa-settings-autosave.php:7164
13143
  msgid "Search Albums and Photos related settings"
13144
  msgstr ""
13145
 
13146
- #: wppa-settings-autosave.php:7166
13147
  #, fuzzy
13148
  msgid "Search page"
13149
  msgstr "Výsledek vyhledávání fotek"
13150
 
13151
- #: wppa-settings-autosave.php:7167
13152
  msgid "Display the search results on page."
13153
  msgstr ""
13154
 
13155
- #: wppa-settings-autosave.php:7168
13156
  #, php-format
13157
  msgid ""
13158
  "Select the page to be used to display search results. The page MUST contain "
13159
  "%%wppa%% or [wppa][/wppa]."
13160
  msgstr ""
13161
 
13162
- #: wppa-settings-autosave.php:7169
13163
  msgid "You may give it the title \"Search results\" or something alike."
13164
  msgstr ""
13165
 
13166
- #: wppa-settings-autosave.php:7170
13167
  msgid ""
13168
  "Or you ou may use the standard page on which you display the generic album."
13169
  msgstr ""
13170
 
13171
- #: wppa-settings-autosave.php:7203
13172
  msgid "Exclude separate"
13173
  msgstr ""
13174
 
13175
- #: wppa-settings-autosave.php:7204
13176
  #, fuzzy
13177
  msgid "Do not search 'separate' albums."
13178
  msgstr "Nelze vložit do databáze."
13179
 
13180
- #: wppa-settings-autosave.php:7205
13181
  msgid ""
13182
  "When checked, albums (and photos in them) that have the parent set to --- "
13183
  "separate --- will be excluded from being searched."
13184
  msgstr ""
13185
 
13186
- #: wppa-settings-autosave.php:7212
13187
  msgid "Include tags"
13188
  msgstr ""
13189
 
13190
- #: wppa-settings-autosave.php:7213
13191
  msgid "Do also search the photo tags."
13192
  msgstr ""
13193
 
13194
- #: wppa-settings-autosave.php:7214
13195
  msgid "When checked, the tags of the photo will also be searched."
13196
  msgstr ""
13197
 
13198
- #: wppa-settings-autosave.php:7221
13199
  msgid "Include categories"
13200
  msgstr ""
13201
 
13202
- #: wppa-settings-autosave.php:7222
13203
  msgid "Do also search the album categories."
13204
  msgstr ""
13205
 
13206
- #: wppa-settings-autosave.php:7223
13207
  msgid "When checked, the categories of the album will also be searched."
13208
  msgstr ""
13209
 
13210
- #: wppa-settings-autosave.php:7230
13211
  #, fuzzy
13212
  msgid "Include comments"
13213
  msgstr "%d komentáře/ů"
13214
 
13215
- #: wppa-settings-autosave.php:7231
13216
  msgid "Do also search the comments on photos."
13217
  msgstr ""
13218
 
13219
- #: wppa-settings-autosave.php:7232
13220
  msgid "When checked, the comments of the photos will also be searched."
13221
  msgstr ""
13222
 
13223
- #: wppa-settings-autosave.php:7239
13224
  #, fuzzy
13225
  msgid "Photos only"
13226
  msgstr "Foto"
13227
 
13228
- #: wppa-settings-autosave.php:7240
13229
  msgid "Search for photos only."
13230
  msgstr ""
13231
 
13232
- #: wppa-settings-autosave.php:7241
13233
  msgid "When checked, only photos will be searched for."
13234
  msgstr ""
13235
 
13236
- #: wppa-settings-autosave.php:7256
13237
  msgid "Max albums found"
13238
  msgstr ""
13239
 
13240
- #: wppa-settings-autosave.php:7257
13241
  msgid "The maximum number of albums to be displayed."
13242
  msgstr ""
13243
 
13244
- #: wppa-settings-autosave.php:7265
13245
  #, fuzzy
13246
  msgid "Max photos found"
13247
  msgstr "Žádná podobná fotka."
13248
 
13249
- #: wppa-settings-autosave.php:7266
13250
  msgid "The maximum number of photos to be displayed."
13251
  msgstr ""
13252
 
13253
- #: wppa-settings-autosave.php:7274
13254
  msgid "Tags OR only"
13255
  msgstr ""
13256
 
13257
- #: wppa-settings-autosave.php:7275
13258
  msgid "No and / or buttons"
13259
  msgstr ""
13260
 
13261
- #: wppa-settings-autosave.php:7276
13262
  msgid ""
13263
  "Hide the and/or radiobuttons and do the or method in the multitag widget and "
13264
  "shortcode."
13265
  msgstr ""
13266
 
13267
- #: wppa-settings-autosave.php:7283
13268
  msgid "Floating searchtoken"
13269
  msgstr ""
13270
 
13271
- #: wppa-settings-autosave.php:7284
13272
  msgid "A match need not start at the first char."
13273
  msgstr ""
13274
 
13275
- #: wppa-settings-autosave.php:7285
13276
  msgid ""
13277
  "A match is found while searching also when the entered token is somewhere in "
13278
  "the middle of a word."
13279
  msgstr ""
13280
 
13281
- #: wppa-settings-autosave.php:7286
13282
  msgid "This works in indexed search only!"
13283
  msgstr ""
13284
 
13285
- #: wppa-settings-autosave.php:7293
13286
  #, fuzzy
13287
  msgid "Search results display"
13288
  msgstr "Výsledek vyhledávání fotek"
13289
 
13290
- #: wppa-settings-autosave.php:7294
13291
  msgid "Select the way the search results should be displayed."
13292
  msgstr ""
13293
 
13294
- #: wppa-settings-autosave.php:7295
13295
  msgid ""
13296
  "If you select anything different from \"Albums and thumbnails\", \"Photos "
13297
  "only\" is assumed (Table IX-E6)."
13298
  msgstr ""
13299
 
13300
- #: wppa-settings-autosave.php:7297
13301
  #, fuzzy
13302
  msgid "Albums and thumbnails"
13303
  msgstr "Prohlédnout náhledy"
13304
 
13305
- #: wppa-settings-autosave.php:7297
13306
  #, fuzzy
13307
  msgid "Slideonly slideshow"
13308
  msgstr "Slideshow"
13309
 
13310
- #: wppa-settings-autosave.php:7304
13311
  msgid "Name max length"
13312
  msgstr ""
13313
 
13314
- #: wppa-settings-autosave.php:7305
13315
  msgid "Max length of displayed photonames in supersearch selectionlist"
13316
  msgstr ""
13317
 
13318
- #: wppa-settings-autosave.php:7306 wppa-settings-autosave.php:7315
13319
  msgid ""
13320
  "To limit the length of the selectionlist, enter the number of characters to "
13321
  "show."
13322
  msgstr ""
13323
 
13324
- #: wppa-settings-autosave.php:7313
13325
  msgid "Text max length"
13326
  msgstr ""
13327
 
13328
- #: wppa-settings-autosave.php:7314
13329
  msgid "Max length of displayed photo text in supersearch selectionlist"
13330
  msgstr ""
13331
 
13332
- #: wppa-settings-autosave.php:7322
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13333
  msgid "Watermark related settings"
13334
  msgstr ""
13335
 
13336
- #: wppa-settings-autosave.php:7325
13337
  msgid "Enable the application of watermarks."
13338
  msgstr ""
13339
 
13340
- #: wppa-settings-autosave.php:7326
13341
  msgid "If checked, photos can be watermarked during upload / import."
13342
  msgstr ""
13343
 
13344
- #: wppa-settings-autosave.php:7335
13345
  #, fuzzy
13346
  msgid "Watermark file"
13347
  msgstr "Použít soubor s vodoznakem:"
13348
 
13349
- #: wppa-settings-autosave.php:7336
13350
  msgid "The default watermarkfile to be used."
13351
  msgstr ""
13352
 
13353
- #: wppa-settings-autosave.php:7337
13354
  msgid "Watermark files are of type png and reside in"
13355
  msgstr ""
13356
 
13357
- #: wppa-settings-autosave.php:7338
13358
  msgid ""
13359
  "A suitable watermarkfile typically consists of a transparent background and "
13360
  "a black text or drawing."
13361
  msgstr ""
13362
 
13363
- #: wppa-settings-autosave.php:7340
13364
  msgid ""
13365
  "You may also select one of the textual watermark types at the bottom of the "
13366
  "selection list."
13367
  msgstr ""
13368
 
13369
- #: wppa-settings-autosave.php:7344
13370
  #, fuzzy
13371
  msgid "position:"
13372
  msgstr "Pozice:"
13373
 
13374
- #: wppa-settings-autosave.php:7350
13375
  #, fuzzy
13376
  msgid "Upload watermark"
13377
  msgstr "Použít soubor s vodoznakem:"
13378
 
13379
- #: wppa-settings-autosave.php:7351
13380
  #, fuzzy
13381
  msgid "Upload a new watermark file"
13382
  msgstr "Použít soubor s vodoznakem:"
13383
 
13384
- #: wppa-settings-autosave.php:7355
13385
  #, fuzzy
13386
  msgid "Upload watermark image"
13387
  msgstr "Použít soubor s vodoznakem:"
13388
 
13389
- #: wppa-settings-autosave.php:7360
13390
  msgid "Watermark opacity image"
13391
  msgstr ""
13392
 
13393
- #: wppa-settings-autosave.php:7361
13394
  msgid "You can set the intensity of image watermarks here."
13395
  msgstr ""
13396
 
13397
- #: wppa-settings-autosave.php:7362 wppa-settings-autosave.php:7447
13398
  msgid ""
13399
  "The higher the number, the intenser the watermark. Value must be > 0 and <= "
13400
  "100."
13401
  msgstr ""
13402
 
13403
- #: wppa-settings-autosave.php:7369
13404
  #, fuzzy
13405
  msgid "Textual watermark style"
13406
  msgstr "Použít soubor s vodoznakem:"
13407
 
13408
- #: wppa-settings-autosave.php:7370
13409
  msgid "The way the textual watermarks look like"
13410
  msgstr ""
13411
 
13412
- #: wppa-settings-autosave.php:7374
13413
  msgid "TV subtitle style"
13414
  msgstr ""
13415
 
13416
- #: wppa-settings-autosave.php:7374
13417
  msgid "White text on black background"
13418
  msgstr ""
13419
 
13420
- #: wppa-settings-autosave.php:7374
13421
  msgid "Black text on white background"
13422
  msgstr ""
13423
 
13424
- #: wppa-settings-autosave.php:7374
13425
  msgid "Reverse TV style (Utopia)"
13426
  msgstr ""
13427
 
13428
- #: wppa-settings-autosave.php:7374
13429
  msgid "White on transparent background"
13430
  msgstr ""
13431
 
13432
- #: wppa-settings-autosave.php:7374
13433
  msgid "Black on transparent background"
13434
  msgstr ""
13435
 
13436
- #: wppa-settings-autosave.php:7384
13437
  msgid "Predefined watermark text"
13438
  msgstr ""
13439
 
13440
- #: wppa-settings-autosave.php:7385
13441
  msgid "The text to use when --- pre-defined --- is selected."
13442
  msgstr ""
13443
 
13444
- #: wppa-settings-autosave.php:7386
13445
  msgid "You may use the following keywords:"
13446
  msgstr ""
13447
 
13448
- #: wppa-settings-autosave.php:7387
13449
  msgid "w#site, w#owner, w#name, w#filename"
13450
  msgstr ""
13451
 
13452
- #: wppa-settings-autosave.php:7394
13453
  #, fuzzy
13454
  msgid "Textual watermark font"
13455
  msgstr "Použít soubor s vodoznakem:"
13456
 
13457
- #: wppa-settings-autosave.php:7395
13458
  msgid "The font to use with textusl watermarks."
13459
  msgstr ""
13460
 
13461
- #: wppa-settings-autosave.php:7396
13462
  msgid "Except for the system font, are font files of type ttf and reside in"
13463
  msgstr ""
13464
 
13465
- #: wppa-settings-autosave.php:7424
13466
  #, fuzzy
13467
  msgid "Textual watermark font size"
13468
  msgstr "Použít soubor s vodoznakem:"
13469
 
13470
- #: wppa-settings-autosave.php:7425
13471
  msgid "You can set the size of the truetype fonts only."
13472
  msgstr ""
13473
 
13474
- #: wppa-settings-autosave.php:7426
13475
  msgid ""
13476
  "System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
13477
  "value > 5 will be treated as 5."
13478
  msgstr ""
13479
 
13480
- #: wppa-settings-autosave.php:7427
13481
  msgid ""
13482
  "Truetype fonts can have any positive integer size, if your PHPs GD version "
13483
  "is 1, in pixels, in GD2 in points."
13484
  msgstr ""
13485
 
13486
- #: wppa-settings-autosave.php:7428
13487
  msgid "It is unclear howmany pixels a point is..."
13488
  msgstr ""
13489
 
13490
- #: wppa-settings-autosave.php:7435
13491
  #, fuzzy
13492
  msgid "Upload watermark font"
13493
  msgstr "Použít soubor s vodoznakem:"
13494
 
13495
- #: wppa-settings-autosave.php:7436
13496
  #, fuzzy
13497
  msgid "Upload a new watermark font file"
13498
  msgstr "Použít soubor s vodoznakem:"
13499
 
13500
- #: wppa-settings-autosave.php:7437
13501
  msgid ""
13502
  "Upload truetype fonts (.ttf) only, and test if they work on your server "
13503
  "platform."
13504
  msgstr ""
13505
 
13506
- #: wppa-settings-autosave.php:7440
13507
  #, fuzzy
13508
  msgid "Upload TrueType font"
13509
  msgstr "Nahrát fotku"
13510
 
13511
- #: wppa-settings-autosave.php:7445
13512
  msgid "Watermark opacity text"
13513
  msgstr ""
13514
 
13515
- #: wppa-settings-autosave.php:7446
13516
  msgid "You can set the intensity of a text watermarks here."
13517
  msgstr ""
13518
 
13519
- #: wppa-settings-autosave.php:7455
13520
  msgid "A real life preview. To update: refresh the page."
13521
  msgstr ""
13522
 
13523
- #: wppa-settings-autosave.php:7466
13524
  #, fuzzy
13525
  msgid "Watermark thumbnails"
13526
  msgstr "Prohlédnout náhledy"
13527
 
13528
- #: wppa-settings-autosave.php:7467
13529
  msgid "Watermark also the thumbnail image files."
13530
  msgstr ""
13531
 
13532
- #: wppa-settings-autosave.php:7475
13533
  msgid "Slideshow elements sequence order settings"
13534
  msgstr ""
13535
 
13536
- #: wppa-settings-autosave.php:7481 wppa-settings-autosave.php:7527
13537
  #, fuzzy
13538
  msgid "StartStop"
13539
  msgstr "Spustit"
13540
 
13541
- #: wppa-settings-autosave.php:7482 wppa-settings-autosave.php:7528
13542
  msgid "SlideFrame"
13543
  msgstr ""
13544
 
13545
- #: wppa-settings-autosave.php:7484
13546
  msgid "Desc"
13547
  msgstr ""
13548
 
13549
- #: wppa-settings-autosave.php:7487 wppa-settings-autosave.php:7532
13550
  msgid "FilmStrip"
13551
  msgstr ""
13552
 
13553
- #: wppa-settings-autosave.php:7488 wppa-settings-autosave.php:7533
13554
  msgid "Browsebar"
13555
  msgstr ""
13556
 
13557
- #: wppa-settings-autosave.php:7490 wppa-settings-autosave.php:7535
13558
  #, fuzzy
13559
  msgid "IPTC data"
13560
  msgstr "Žádná IPTC data"
13561
 
13562
- #: wppa-settings-autosave.php:7491 wppa-settings-autosave.php:7536
13563
  #, fuzzy
13564
  msgid "EXIF data"
13565
  msgstr "Žádná EXIF data"
13566
 
13567
- #: wppa-settings-autosave.php:7492 wppa-settings-autosave.php:7537
13568
  #, fuzzy
13569
  msgid "Share box"
13570
  msgstr "Sdílet %s na Facebooku"
13571
 
13572
- #: wppa-settings-autosave.php:7494 wppa-settings-autosave.php:7539
13573
  msgid "Enabled"
13574
  msgstr ""
13575
 
13576
- #: wppa-settings-autosave.php:7495 wppa-settings-autosave.php:7540
13577
  msgid "Disabled"
13578
  msgstr ""
13579
 
13580
- #: wppa-settings-autosave.php:7497 wppa-settings-autosave.php:7542
13581
  msgid "Start/Stop & Slower/Faster navigation bar"
13582
  msgstr ""
13583
 
13584
- #: wppa-settings-autosave.php:7498 wppa-settings-autosave.php:7543
13585
  msgid "The Slide Frame"
13586
  msgstr ""
13587
 
13588
- #: wppa-settings-autosave.php:7498 wppa-settings-autosave.php:7543
13589
  msgid "( Always )"
13590
  msgstr ""
13591
 
13592
- #: wppa-settings-autosave.php:7499
13593
  #, fuzzy
13594
  msgid "Photo Name Box"
13595
  msgstr "Foto dne"
13596
 
13597
- #: wppa-settings-autosave.php:7500
13598
  msgid "Photo Description Box"
13599
  msgstr ""
13600
 
13601
- #: wppa-settings-autosave.php:7501 wppa-settings-autosave.php:7545
13602
  msgid "Custom Box"
13603
  msgstr ""
13604
 
13605
- #: wppa-settings-autosave.php:7502 wppa-settings-autosave.php:7546
13606
  #, fuzzy
13607
  msgid "Rating Bar"
13608
  msgstr "Hlasování: %s"
13609
 
13610
- #: wppa-settings-autosave.php:7503 wppa-settings-autosave.php:7547
13611
  msgid "Film Strip with embedded Start/Stop and Goto functionality"
13612
  msgstr ""
13613
 
13614
- #: wppa-settings-autosave.php:7504 wppa-settings-autosave.php:7548
13615
  msgid "Browse Bar with Photo X of Y counter"
13616
  msgstr ""
13617
 
13618
- #: wppa-settings-autosave.php:7505 wppa-settings-autosave.php:7549
13619
  #, fuzzy
13620
  msgid "Comments Box"
13621
  msgstr "Komentáře"
13622
 
13623
- #: wppa-settings-autosave.php:7506 wppa-settings-autosave.php:7550
13624
  msgid "IPTC box"
13625
  msgstr ""
13626
 
13627
- #: wppa-settings-autosave.php:7507 wppa-settings-autosave.php:7551
13628
  msgid "EXIF box"
13629
  msgstr ""
13630
 
13631
- #: wppa-settings-autosave.php:7508 wppa-settings-autosave.php:7552
13632
  #, fuzzy
13633
  msgid "Social media share box"
13634
  msgstr "Vyberte prosím cílovou stránku pro super view widget v Table VI-C"
13635
 
13636
- #: wppa-settings-autosave.php:7514 wppa-settings-autosave.php:7558
13637
  msgid "Move Up"
13638
  msgstr ""
13639
 
13640
- #: wppa-settings-autosave.php:7529
13641
  msgid "NameDesc"
13642
  msgstr ""
13643
 
13644
- #: wppa-settings-autosave.php:7544
13645
  msgid "Photo Name & Description Box"
13646
  msgstr ""
13647
 
13648
- #: wppa-settings-autosave.php:7568
13649
  msgid "Swap Namedesc"
13650
  msgstr ""
13651
 
13652
- #: wppa-settings-autosave.php:7569
13653
  msgid "Swap the order sequence of name and description"
13654
  msgstr ""
13655
 
13656
- #: wppa-settings-autosave.php:7577
13657
  msgid "Split Name and Desc"
13658
  msgstr ""
13659
 
13660
- #: wppa-settings-autosave.php:7578
13661
  msgid "Put Name and Description in separate boxes"
13662
  msgstr ""
13663
 
13664
- #: wppa-settings-autosave.php:7581
13665
  msgid "Please reload this page after the green checkmark appears!"
13666
  msgstr ""
13667
 
13668
- #: wppa-settings-autosave.php:7586
13669
  msgid "Source file management and other upload/import settings and actions."
13670
  msgstr ""
13671
 
13672
- #: wppa-settings-autosave.php:7588
13673
  msgid "Keep sourcefiles admin"
13674
  msgstr ""
13675
 
13676
- #: wppa-settings-autosave.php:7589
13677
  msgid "Keep the original uploaded and imported photo files."
13678
  msgstr ""
13679
 
13680
- #: wppa-settings-autosave.php:7590 wppa-settings-autosave.php:7600
13681
  msgid ""
13682
  "The files will be kept in a separate directory with subdirectories for each "
13683
  "album"
13684
  msgstr ""
13685
 
13686
- #: wppa-settings-autosave.php:7591 wppa-settings-autosave.php:7601
13687
  msgid ""
13688
  "These files can be used to update the photos used in displaying in wppa+ and "
13689
  "optionally for downloading original, un-downsized images."
13690
  msgstr ""
13691
 
13692
- #: wppa-settings-autosave.php:7598
13693
  msgid "Keep sourcefiles frontend"
13694
  msgstr ""
13695
 
13696
- #: wppa-settings-autosave.php:7599
13697
  #, fuzzy
13698
  msgid "Keep the original frontend uploaded photo files."
13699
  msgstr "Zobrazit posledně nahrané fotky"
13700
 
13701
- #: wppa-settings-autosave.php:7608
13702
  msgid "Source directory"
13703
  msgstr ""
13704
 
13705
- #: wppa-settings-autosave.php:7609
13706
  msgid "The path to the directory where the original photofiles will be saved."
13707
  msgstr ""
13708
 
13709
- #: wppa-settings-autosave.php:7610
13710
  msgid "You may change the directory path, but it can not be an url."
13711
  msgstr ""
13712
 
13713
- #: wppa-settings-autosave.php:7611
13714
  msgid ""
13715
  "The parent of the directory that you enter here must exist and be writable."
13716
  msgstr ""
13717
 
13718
- #: wppa-settings-autosave.php:7612
13719
  msgid "The directory itsself will be created if it does not exist yet."
13720
  msgstr ""
13721
 
13722
- #: wppa-settings-autosave.php:7619
13723
  msgid "Keep sync"
13724
  msgstr ""
13725
 
13726
- #: wppa-settings-autosave.php:7620
13727
  msgid "Keep source synchronously with wppa system."
13728
  msgstr ""
13729
 
13730
- #: wppa-settings-autosave.php:7621
13731
  msgid ""
13732
  "If checked, photos that are deleted from wppa, will also be removed from the "
13733
  "sourcefiles."
13734
  msgstr ""
13735
 
13736
- #: wppa-settings-autosave.php:7622
13737
  msgid ""
13738
  "Also, copying or moving photos to different albums, will also copy/move the "
13739
  "sourcefiles."
13740
  msgstr ""
13741
 
13742
- #: wppa-settings-autosave.php:7629
13743
  msgid "Remake add"
13744
  msgstr ""
13745
 
13746
- #: wppa-settings-autosave.php:7630
13747
  msgid "Photos will be added from the source pool"
13748
  msgstr ""
13749
 
13750
- #: wppa-settings-autosave.php:7631
13751
  msgid ""
13752
  "If checked: If photo files are found in the source directory that do not "
13753
  "exist in the corresponding album, they will be added to the album."
13754
  msgstr ""
13755
 
13756
- #: wppa-settings-autosave.php:7638
13757
  #, fuzzy
13758
  msgid "Save IPTC data"
13759
  msgstr "Skrýt IPTC data"
13760
 
13761
- #: wppa-settings-autosave.php:7639
13762
  msgid "Store the iptc data from the photo into the iptc db table"
13763
  msgstr ""
13764
 
13765
- #: wppa-settings-autosave.php:7640
13766
  msgid ""
13767
  "You will need this if you enabled the display of iptc data in Table II-B17 "
13768
  "or if you use it in the photo descriptions."
13769
  msgstr ""
13770
 
13771
- #: wppa-settings-autosave.php:7647
13772
  #, fuzzy
13773
  msgid "Save EXIF data"
13774
  msgstr "Skrýt EXIF data"
13775
 
13776
- #: wppa-settings-autosave.php:7648
13777
  msgid "Store the exif data from the photo into the exif db table"
13778
  msgstr ""
13779
 
13780
- #: wppa-settings-autosave.php:7649
13781
  msgid ""
13782
  "You will need this if you enabled the display of exif data in Table II-B18 "
13783
  "or if you use it in the photo descriptions."
13784
  msgstr ""
13785
 
13786
- #: wppa-settings-autosave.php:7656
13787
  msgid "Max EXIF tag array size"
13788
  msgstr ""
13789
 
13790
- #: wppa-settings-autosave.php:7657
13791
  msgid "Truncate array tags to ..."
13792
  msgstr ""
13793
 
13794
- #: wppa-settings-autosave.php:7658
13795
  msgid "A value of 0 disables this feature"
13796
  msgstr ""
13797
 
13798
- #: wppa-settings-autosave.php:7660
13799
  #, fuzzy
13800
  msgid "elements"
13801
  msgstr "Komentáře"
13802
 
13803
- #: wppa-settings-autosave.php:7665
13804
  msgid "Import Create page"
13805
  msgstr ""
13806
 
13807
- #: wppa-settings-autosave.php:7666
13808
  msgid "Create wp page when a directory to album is imported."
13809
  msgstr ""
13810
 
13811
- #: wppa-settings-autosave.php:7667
13812
  msgid ""
13813
  "As soon as an album is created when a directory is imported, a wp page is "
13814
  "made that displays the album content."
13815
  msgstr ""
13816
 
13817
- #: wppa-settings-autosave.php:7675
13818
  msgid "Page content"
13819
  msgstr ""
13820
 
13821
- #: wppa-settings-autosave.php:7676
13822
  msgid "The content of the page. Must contain <b>w#album</b>"
13823
  msgstr ""
13824
 
13825
- #: wppa-settings-autosave.php:7677
13826
  msgid ""
13827
  "The content of the page. Note: it must contain w#album. This will be "
13828
  "replaced by the album number in the generated shortcode."
13829
  msgstr ""
13830
 
13831
- #: wppa-settings-autosave.php:7685
13832
  msgid "Page type"
13833
  msgstr ""
13834
 
13835
- #: wppa-settings-autosave.php:7686
13836
  msgid "Select the type of page to create."
13837
  msgstr ""
13838
 
13839
- #: wppa-settings-autosave.php:7690
13840
  #, fuzzy
13841
  msgid "Post"
13842
  msgstr "Příspěvek:"
13843
 
13844
- #: wppa-settings-autosave.php:7697
13845
  msgid "Page status"
13846
  msgstr ""
13847
 
13848
- #: wppa-settings-autosave.php:7698
13849
  msgid "Select the initial status of the page."
13850
  msgstr ""
13851
 
13852
- #: wppa-settings-autosave.php:7702
13853
  #, fuzzy
13854
  msgid "Published"
13855
  msgstr "Nepublikováno"
13856
 
13857
- #: wppa-settings-autosave.php:7702
13858
  msgid "Draft"
13859
  msgstr ""
13860
 
13861
- #: wppa-settings-autosave.php:7710
13862
  msgid "Permalink root"
13863
  msgstr ""
13864
 
13865
- #: wppa-settings-autosave.php:7711
13866
  msgid "The name of the root for the photofile ermalink structure."
13867
  msgstr ""
13868
 
13869
- #: wppa-settings-autosave.php:7712
13870
  msgid ""
13871
  "Choose a convenient name like \"albums\" or so; this will be the name of a "
13872
  "folder inside .../wp-content/. Make sure you choose a unique name"
13873
  msgstr ""
13874
 
13875
- #: wppa-settings-autosave.php:7720
13876
  msgid "Other plugins related settings"
13877
  msgstr ""
13878
 
13879
- #: wppa-settings-autosave.php:7722
13880
  msgid "Foreign shortcodes general"
13881
  msgstr ""
13882
 
13883
- #: wppa-settings-autosave.php:7723
13884
  msgid "Enable foreign shortcodes in album names, albums desc and photo names"
13885
  msgstr ""
13886
 
13887
- #: wppa-settings-autosave.php:7731
13888
  msgid "Foreign shortcodes fullsize"
13889
  msgstr ""
13890
 
13891
- #: wppa-settings-autosave.php:7732
13892
  msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
13893
  msgstr ""
13894
 
13895
- #: wppa-settings-autosave.php:7733 wppa-settings-autosave.php:7744
13896
  msgid ""
13897
  "When checked, you can use shortcodes from other plugins in the description "
13898
  "of photos."
13899
  msgstr ""
13900
 
13901
- #: wppa-settings-autosave.php:7734
13902
  msgid "The shortcodes will be expanded in the descriptions of fullsize images."
13903
  msgstr ""
13904
 
13905
- #: wppa-settings-autosave.php:7735 wppa-settings-autosave.php:7746
13906
  msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
13907
  msgstr ""
13908
 
13909
- #: wppa-settings-autosave.php:7742
13910
  #, fuzzy
13911
  msgid "Foreign shortcodes thumbnails"
13912
  msgstr "Prohlédnout náhledy"
13913
 
13914
- #: wppa-settings-autosave.php:7743
13915
  msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
13916
  msgstr ""
13917
 
13918
- #: wppa-settings-autosave.php:7745
13919
  msgid ""
13920
  "The shortcodes will be expanded in the descriptions of thumbnail images."
13921
  msgstr ""
13922
 
13923
- #: wppa-settings-autosave.php:7753
13924
  msgid "Lightbox keyname"
13925
  msgstr ""
13926
 
13927
- #: wppa-settings-autosave.php:7754
13928
  msgid "The identifier of lightbox."
13929
  msgstr ""
13930
 
13931
- #: wppa-settings-autosave.php:7755
13932
  msgid ""
13933
  "If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
13934
  "lbox-id here."
13935
  msgstr ""
13936
 
13937
- #: wppa-settings-autosave.php:7762
13938
  msgid "myCRED / Cube Points: Comment"
13939
  msgstr ""
13940
 
13941
- #: wppa-settings-autosave.php:7763
13942
  #, fuzzy
13943
  msgid "Number of points for a comment"
13944
  msgstr "Musíte se <a href=&quot;\"%s\"&quot;>přihlásit</a> k napsání komentáře"
13945
 
13946
- #: wppa-settings-autosave.php:7764 wppa-settings-autosave.php:7773
13947
- #: wppa-settings-autosave.php:7782
13948
  msgid "This setting requires the plugin myCRED or Cube Points"
13949
  msgstr ""
13950
 
13951
- #: wppa-settings-autosave.php:7766
13952
  #, fuzzy
13953
  msgid "points per comment"
13954
  msgstr "Váš komentář:"
13955
 
13956
- #: wppa-settings-autosave.php:7771
13957
  msgid "myCRED / Cube Points: Rating"
13958
  msgstr ""
13959
 
13960
- #: wppa-settings-autosave.php:7772
13961
  msgid "Number of points for a rating vote"
13962
  msgstr ""
13963
 
13964
- #: wppa-settings-autosave.php:7775
13965
  msgid "points per vote"
13966
  msgstr ""
13967
 
13968
- #: wppa-settings-autosave.php:7780
13969
  msgid "myCRED / Cube Points: Upload"
13970
  msgstr ""
13971
 
13972
- #: wppa-settings-autosave.php:7781
13973
  msgid "Number of points for a successfull frontend upload"
13974
  msgstr ""
13975
 
13976
- #: wppa-settings-autosave.php:7784
13977
  #, fuzzy
13978
  msgid "points per upload"
13979
  msgstr "Fotky nahrány "
13980
 
13981
- #: wppa-settings-autosave.php:7789
13982
  msgid "Use SCABN"
13983
  msgstr ""
13984
 
13985
- #: wppa-settings-autosave.php:7790
13986
  msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
13987
  msgstr ""
13988
 
13989
- #: wppa-settings-autosave.php:7791
13990
  msgid ""
13991
  "If checked, the shortcode to use for the \"add to cart\" button in photo "
13992
  "descriptions is [cart ...]"
13993
  msgstr ""
13994
 
13995
- #: wppa-settings-autosave.php:7792
13996
  msgid ""
13997
  "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
13998
  msgstr ""
13999
 
14000
- #: wppa-settings-autosave.php:7793
14001
  msgid "The shortcode for the check-out page is still [scabn]"
14002
  msgstr ""
14003
 
14004
- #: wppa-settings-autosave.php:7794
14005
  msgid ""
14006
  "The arguments are the same, the defaults are: name = photoname, price = 0.01."
14007
  msgstr ""
14008
 
14009
- #: wppa-settings-autosave.php:7795
14010
  msgid ""
14011
  "Supplying the price should be sufficient; supply a name only when it differs "
14012
  "from the photo name."
14013
  msgstr ""
14014
 
14015
- #: wppa-settings-autosave.php:7796
14016
  msgid "This shortcode handler will also work with Ajax enabled."
14017
  msgstr ""
14018
 
14019
- #: wppa-settings-autosave.php:7797
14020
  msgid ""
14021
  "Using this interface makes sure that the item urls and callback action urls "
14022
  "are correct."
14023
  msgstr ""
14024
 
14025
- #: wppa-settings-autosave.php:7804
14026
  msgid "Use CM Tooltip Glossary"
14027
  msgstr ""
14028
 
14029
- #: wppa-settings-autosave.php:7805
14030
  msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
14031
  msgstr ""
14032
 
14033
- #: wppa-settings-autosave.php:7806
14034
  msgid ""
14035
  "You MUST set Table IV-A13: Defer javascript, also if you do not want this "
14036
  "plugin to act on album and photo descriptions!"
14037
  msgstr ""
14038
 
14039
- #: wppa-settings-autosave.php:7814
14040
  msgid "External services related settings and actions."
14041
  msgstr ""
14042
 
14043
- #: wppa-settings-autosave.php:7816
14044
  msgid "QR Code widget size"
14045
  msgstr ""
14046
 
14047
- #: wppa-settings-autosave.php:7817
14048
  msgid "The size of the QR code display."
14049
  msgstr ""
14050
 
14051
- #: wppa-settings-autosave.php:7825
14052
  msgid "QR color"
14053
  msgstr ""
14054
 
14055
- #: wppa-settings-autosave.php:7826
14056
  msgid "The display color of the qr code (dark)"
14057
  msgstr ""
14058
 
14059
- #: wppa-settings-autosave.php:7827
14060
  msgid "This color MUST be given in hexadecimal format!"
14061
  msgstr ""
14062
 
14063
- #: wppa-settings-autosave.php:7834
14064
  msgid "QR background color"
14065
  msgstr ""
14066
 
14067
- #: wppa-settings-autosave.php:7835
14068
  msgid "The background color of the qr code (light)"
14069
  msgstr ""
14070
 
14071
- #: wppa-settings-autosave.php:7843
14072
  msgid "CDN Service"
14073
  msgstr ""
14074
 
14075
- #: wppa-settings-autosave.php:7844
14076
  msgid "Select a CDN Service you want to use."
14077
  msgstr ""
14078
 
14079
- #: wppa-settings-autosave.php:7847
14080
  msgid "Cloudinary in maintenance mode"
14081
  msgstr ""
14082
 
14083
- #: wppa-settings-autosave.php:7857
14084
  #, fuzzy
14085
  msgid "Cloud name"
14086
  msgstr "Vaše jméno:"
14087
 
14088
- #: wppa-settings-autosave.php:7866
14089
  msgid "API key"
14090
  msgstr ""
14091
 
14092
- #: wppa-settings-autosave.php:7875
14093
  msgid "API secret"
14094
  msgstr ""
14095
 
14096
- #: wppa-settings-autosave.php:7884
14097
  #, fuzzy
14098
  msgid "Delete all"
14099
  msgstr "Album:"
14100
 
14101
- #: wppa-settings-autosave.php:7885
14102
  msgid "Deletes them all !!!"
14103
  msgstr ""
14104
 
14105
- #: wppa-settings-autosave.php:7893
14106
  msgid "Delete derived images"
14107
  msgstr ""
14108
 
14109
- #: wppa-settings-autosave.php:7894
14110
  msgid "Deletes all derived images !!!"
14111
  msgstr ""
14112
 
14113
- #: wppa-settings-autosave.php:7902
14114
  msgid "Max lifetime"
14115
  msgstr ""
14116
 
14117
- #: wppa-settings-autosave.php:7903
14118
  msgid "Old images from local server, new images from Cloudinary."
14119
  msgstr ""
14120
 
14121
- #: wppa-settings-autosave.php:7904
14122
  msgid ""
14123
  "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
14124
  msgstr ""
14125
 
14126
- #: wppa-settings-autosave.php:7906
14127
  msgid "Forever"
14128
  msgstr ""
14129
 
14130
- #: wppa-settings-autosave.php:7910
14131
  #, fuzzy
14132
  msgid "Two months"
14133
  msgstr "měsíců"
14134
 
14135
- #: wppa-settings-autosave.php:7911
14136
  #, fuzzy
14137
  msgid "Three months"
14138
  msgstr "měsíců"
14139
 
14140
- #: wppa-settings-autosave.php:7912
14141
  #, fuzzy
14142
  msgid "Six months"
14143
  msgstr "měsíců"
14144
 
14145
- #: wppa-settings-autosave.php:7913
14146
  #, fuzzy
14147
  msgid "Nine months"
14148
  msgstr "měsíců"
14149
 
14150
- #: wppa-settings-autosave.php:7914
14151
  #, fuzzy
14152
  msgid "One year"
14153
  msgstr "1 rok"
14154
 
14155
- #: wppa-settings-autosave.php:7915
14156
  #, fuzzy
14157
  msgid "18 months"
14158
  msgstr "1 měsíc"
14159
 
14160
- #: wppa-settings-autosave.php:7916
14161
  #, fuzzy
14162
  msgid "Two years"
14163
  msgstr "let"
14164
 
14165
- #: wppa-settings-autosave.php:7936
14166
  msgid "Cloudinary usage"
14167
  msgstr ""
14168
 
14169
- #: wppa-settings-autosave.php:7972
14170
  msgid "Cloudinary usage data not available"
14171
  msgstr ""
14172
 
14173
- #: wppa-settings-autosave.php:7976
14174
  msgid "Cloudinary routines not installed."
14175
  msgstr ""
14176
 
14177
- #: wppa-settings-autosave.php:7987
14178
  msgid "Cloudinary"
14179
  msgstr ""
14180
 
14181
- #: wppa-settings-autosave.php:7988
14182
  msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
14183
  msgstr ""
14184
 
14185
- #: wppa-settings-autosave.php:7997
14186
  msgid "GPX Implementation"
14187
  msgstr ""
14188
 
14189
- #: wppa-settings-autosave.php:7998
14190
  msgid "The way the maps are produced."
14191
  msgstr ""
14192
 
14193
- #: wppa-settings-autosave.php:7999
14194
  msgid "Select the way the maps are produced."
14195
  msgstr ""
14196
 
14197
- #: wppa-settings-autosave.php:8000
14198
  msgid ""
14199
  "When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
14200
  msgstr ""
14201
 
14202
- #: wppa-settings-autosave.php:8001
14203
  msgid ""
14204
  "When using WPPA+ Embedded code, you can use Ajax, but there are less display "
14205
  "options."
14206
  msgstr ""
14207
 
14208
- #: wppa-settings-autosave.php:8003
14209
  msgid "WPPA+ Embedded code"
14210
  msgstr ""
14211
 
14212
- #: wppa-settings-autosave.php:8003
14213
  msgid "Google maps GPX viewer plugin"
14214
  msgstr ""
14215
 
14216
- #: wppa-settings-autosave.php:8011
14217
  msgid "Map height"
14218
  msgstr ""
14219
 
14220
- #: wppa-settings-autosave.php:8012
14221
  msgid "The height of the map display."
14222
  msgstr ""
14223
 
14224
- #: wppa-settings-autosave.php:8020
14225
  msgid "Google maps API key"
14226
  msgstr ""
14227
 
14228
- #: wppa-settings-autosave.php:8021
14229
  msgid "Enter your Google maps api key here if you have one."
14230
  msgstr ""
14231
 
14232
- #: wppa-settings-autosave.php:8029
14233
  msgid "GPX Shortcode"
14234
  msgstr ""
14235
 
14236
- #: wppa-settings-autosave.php:8030
14237
  msgid "The shortcode to be used for the gpx feature."
14238
  msgstr ""
14239
 
14240
- #: wppa-settings-autosave.php:8031
14241
  msgid ""
14242
  "Enter / modify the shortcode to be generated for the gpx plugin. It must "
14243
  "contain w#lat and w#lon as placeholders for the lattitude and longitude."
14244
  msgstr ""
14245
 
14246
- #: wppa-settings-autosave.php:8032
14247
  msgid "This item is required for using Google maps GPX viewer plugin only"
14248
  msgstr ""
14249
 
14250
- #: wppa-settings-autosave.php:8039
14251
  msgid "Fotomoto"
14252
  msgstr ""
14253
 
14254
- #: wppa-settings-autosave.php:8040
14255
  msgid "Yes, we use Fotomoto on this site. Read the help text!"
14256
  msgstr ""
14257
 
14258
- #: wppa-settings-autosave.php:8041
14259
  msgid "In order to function properly:"
14260
  msgstr ""
14261
 
14262
- #: wppa-settings-autosave.php:8042
14263
  msgid "1. Get yourself a Fotomoto account."
14264
  msgstr ""
14265
 
14266
- #: wppa-settings-autosave.php:8043
14267
  msgid ""
14268
  "2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
14269
  "the \"Use API Mode:\" checkbox."
14270
  msgstr ""
14271
 
14272
- #: wppa-settings-autosave.php:8044
14273
  msgid "Note: Do NOT Disable the Custom box in Table II-B14."
14274
  msgstr ""
14275
 
14276
- #: wppa-settings-autosave.php:8045
14277
  msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
14278
  msgstr ""
14279
 
14280
- #: wppa-settings-autosave.php:8053
14281
  msgid "Fotomoto fontsize"
14282
  msgstr ""
14283
 
14284
- #: wppa-settings-autosave.php:8054
14285
  msgid "Fontsize for the Fotomoto toolbar."
14286
  msgstr ""
14287
 
14288
- #: wppa-settings-autosave.php:8055
14289
  msgid ""
14290
  "If you set it here, it overrules a possible setting for font-size in ."
14291
  "FotomotoToolbarClass on the Fotomoto dashboard."
14292
  msgstr ""
14293
 
14294
- #: wppa-settings-autosave.php:8063
14295
  msgid "Hide toolbar on running slideshows"
14296
  msgstr ""
14297
 
14298
- #: wppa-settings-autosave.php:8064
14299
  msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
14300
  msgstr ""
14301
 
14302
- #: wppa-settings-autosave.php:8071
14303
  msgid "Fotomoto minwidth"
14304
  msgstr ""
14305
 
14306
- #: wppa-settings-autosave.php:8072
14307
  msgid "Minimum width to display Fotomoto toolbar."
14308
  msgstr ""
14309
 
14310
- #: wppa-settings-autosave.php:8073
14311
  msgid ""
14312
  "The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
14313
  msgstr ""
14314
 
14315
- #: wppa-settings-autosave.php:8098
14316
  msgid "Table X:"
14317
  msgstr ""
14318
 
14319
- #: wppa-settings-autosave.php:8098
14320
  msgid "IPTC Configuration:"
14321
  msgstr ""
14322
 
14323
- #: wppa-settings-autosave.php:8099
14324
  msgid "This table defines the IPTC configuration"
14325
  msgstr ""
14326
 
14327
- #: wppa-settings-autosave.php:8130 wppa-settings-autosave.php:8198
14328
  msgid "Display"
14329
  msgstr ""
14330
 
14331
- #: wppa-settings-autosave.php:8130 wppa-settings-autosave.php:8198
14332
  msgid "Hide"
14333
  msgstr ""
14334
 
14335
- #: wppa-settings-autosave.php:8130 wppa-settings-autosave.php:8198
14336
  msgid "Optional"
14337
  msgstr ""
14338
 
14339
- #: wppa-settings-autosave.php:8160
14340
  msgid "Table XI:"
14341
  msgstr ""
14342
 
14343
- #: wppa-settings-autosave.php:8160
14344
  msgid "EXIF Configuration:"
14345
  msgstr ""
14346
 
14347
- #: wppa-settings-autosave.php:8161
14348
  msgid "This table defines the EXIF configuration"
14349
  msgstr ""
14350
 
14351
- #: wppa-settings-autosave.php:8184
14352
  msgid ""
14353
  "Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
14354
  "enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to "
14355
  "add <b>'--enable-exif'</b> to the php <b>Configure Command</b>."
14356
  msgstr ""
14357
 
14358
- #: wppa-settings-autosave.php:8228
14359
  msgid "Table XII:"
14360
  msgstr ""
14361
 
14362
- #: wppa-settings-autosave.php:8228
14363
  msgid "WPPA+ and PHP Configuration:"
14364
  msgstr ""
14365
 
14366
- #: wppa-settings-autosave.php:8229
14367
  msgid ""
14368
  "This table lists all WPPA+ constants and PHP server configuration parameters "
14369
  "and is read only"
14370
  msgstr ""
14371
 
14372
- #: wppa-settings-autosave.php:8244
14373
  msgid "Value"
14374
  msgstr ""
14375
 
14376
- #: wppa-settings-autosave.php:8249
14377
  msgid "Albums db table name."
14378
  msgstr ""
14379
 
14380
- #: wppa-settings-autosave.php:8254
14381
  #, fuzzy
14382
  msgid "Photos db table name."
14383
  msgstr "Zobrazit EXIF data"
14384
 
14385
- #: wppa-settings-autosave.php:8259
14386
  msgid "Rating db table name."
14387
  msgstr ""
14388
 
14389
- #: wppa-settings-autosave.php:8264
14390
  msgid "Comments db table name."
14391
  msgstr ""
14392
 
14393
- #: wppa-settings-autosave.php:8269
14394
  msgid "IPTC db table name."
14395
  msgstr ""
14396
 
14397
- #: wppa-settings-autosave.php:8274
14398
  msgid "EXIF db table name."
14399
  msgstr ""
14400
 
14401
- #: wppa-settings-autosave.php:8279
14402
  msgid "Index db table name."
14403
  msgstr ""
14404
 
14405
- #: wppa-settings-autosave.php:8284
14406
  msgid "Plugins main file name."
14407
  msgstr ""
14408
 
14409
- #: wppa-settings-autosave.php:8289
14410
  msgid "Path to plugins directory."
14411
  msgstr ""
14412
 
14413
- #: wppa-settings-autosave.php:8294
14414
  msgid "Plugins directory name."
14415
  msgstr ""
14416
 
14417
- #: wppa-settings-autosave.php:8299
14418
  msgid "Plugins directory url."
14419
  msgstr ""
14420
 
14421
- #: wppa-settings-autosave.php:8304
14422
  msgid "The relative upload directory."
14423
  msgstr ""
14424
 
14425
- #: wppa-settings-autosave.php:8309
14426
  msgid "The upload directory path."
14427
  msgstr ""
14428
 
14429
- #: wppa-settings-autosave.php:8314
14430
  msgid "The upload directory url."
14431
  msgstr ""
14432
 
14433
- #: wppa-settings-autosave.php:8319
14434
  msgid "The relative depot directory."
14435
  msgstr ""
14436
 
14437
- #: wppa-settings-autosave.php:8324
14438
  msgid "The depot directory path."
14439
  msgstr ""
14440
 
14441
- #: wppa-settings-autosave.php:8329
14442
  msgid "The depot directory url."
14443
  msgstr ""
14444
 
14445
- #: wppa-settings-autosave.php:8334
14446
  msgid "The path to wp-content."
14447
  msgstr ""
14448
 
14449
- #: wppa-settings-autosave.php:8339
14450
  msgid "WP Base upload dir."
14451
  msgstr ""
14452
 
14453
- #: wppa-settings-autosave.php:8345
14454
  msgid "ABSPATH windows proof"
14455
  msgstr ""
14456
 
14457
- #: wppa-settings-autosave.php:8357
14458
  #, php-format
14459
  msgid "<br />Memory used on this page: %6.2f Mb."
14460
  msgstr ""
14461
 
14462
- #: wppa-settings-autosave.php:8358
14463
  #, php-format
14464
  msgid "<br />There are %d settings and %d runtime parameters."
14465
  msgstr ""
14466
 
14467
- #: wppa-settings-autosave.php:8435
14468
  msgid "The default for this setting is:"
14469
  msgstr ""
14470
 
14471
- #: wppa-settings-autosave.php:8444
14472
  msgid "Click for help"
14473
  msgstr ""
14474
 
14475
- #: wppa-settings-autosave.php:8488 wppa-settings-autosave.php:8505
14476
- #: wppa-settings-autosave.php:8534 wppa-settings-autosave.php:8557
14477
- #: wppa-settings-autosave.php:8587 wppa-settings-autosave.php:8614
14478
- #: wppa-settings-autosave.php:8640 wppa-settings-autosave.php:8688
14479
  msgid "Slug ="
14480
  msgstr ""
14481
 
14482
- #: wppa-settings-autosave.php:8557 wppa-settings-autosave.php:8587
14483
- #: wppa-settings-autosave.php:8614 wppa-settings-autosave.php:8640
14484
  msgid "Values = yes, no"
14485
  msgstr ""
14486
 
14487
- #: wppa-settings-autosave.php:8586 wppa-settings-autosave.php:8612
14488
- #: wppa-settings-autosave.php:8639
14489
  msgid "Warning!"
14490
  msgstr ""
14491
 
14492
- #: wppa-settings-autosave.php:8613 wppa-settings-autosave.php:8639
14493
  msgid "Please read the help"
14494
  msgstr ""
14495
 
14496
- #: wppa-settings-autosave.php:8688
14497
  msgid "Values = "
14498
  msgstr ""
14499
 
14500
- #: wppa-settings-autosave.php:8764
14501
  msgid "Checked"
14502
  msgstr ""
14503
 
14504
- #: wppa-settings-autosave.php:8765
14505
  msgid "Unchecked"
14506
  msgstr ""
14507
 
14508
- #: wppa-settings-autosave.php:8770
14509
  msgid "the photo specific link."
14510
  msgstr ""
14511
 
14512
- #: wppa-settings-autosave.php:8802
14513
  msgid "Show!"
14514
  msgstr ""
14515
 
14516
- #: wppa-settings-autosave.php:8822
14517
  #, fuzzy
14518
  msgid "Not done yet"
14519
  msgstr "Zatím nebylo založeno žádné album"
14520
 
14521
- #: wppa-settings-autosave.php:8829
14522
  #, fuzzy
14523
  msgid "Start!"
14524
  msgstr "Spustit"
14525
 
14526
- #: wppa-settings-autosave.php:8834
14527
  msgid "Locked!"
14528
  msgstr ""
14529
 
14530
- #: wppa-settings-autosave.php:8865
14531
  msgid ""
14532
  "You can not have popup and lightbox on thumbnails at the same time. Uncheck "
14533
  "either Table IV-C8 or choose a different linktype in Table VI-2."
14534
  msgstr ""
14535
 
14536
- #: wppa-settings-autosave.php:8868
14537
  #, php-format
14538
  msgid ""
14539
  "It is important that you select a page that contains at least %%wppa%% or "
14540
  "[wppa][/wppa]."
14541
  msgstr ""
14542
 
14543
- #: wppa-settings-autosave.php:8869
14544
  msgid ""
14545
  "If you ommit this, the link will not work at all or simply refresh the "
14546
  "(home)page."
14547
  msgstr ""
14548
 
14549
- #: wppa-setup.php:428
14550
  msgid "IMPORTANT UPGRADE NOTICE"
14551
  msgstr ""
14552
 
14553
- #: wppa-setup.php:429
14554
  msgid ""
14555
  "Please CHECK your customized WPPA-STYLE.CSS file against the newly supplied "
14556
  "one. You may wish to add or modify some attributes. Be aware of the fact "
14557
  "that most settings can now be set in the admin settings page."
14558
  msgstr ""
14559
 
14560
- #: wppa-setup.php:430
14561
  msgid ""
14562
  "Please REPLACE your customized WPPA-THEME.PHP file by the newly supplied "
14563
  "one, or just remove it from your theme directory. You may modify it later if "
@@ -14565,135 +14670,145 @@ msgid ""
14565
  "version of the plugin software."
14566
  msgstr ""
14567
 
14568
- #: wppa-setup.php:456
14569
  #, php-format
14570
  msgid "WPPA+ successfully updated in multi site mode to db version %s."
14571
  msgstr ""
14572
 
14573
- #: wppa-setup.php:459
14574
  #, php-format
14575
  msgid "WPPA+ successfully updated in single site mode to db version %s."
14576
  msgstr ""
14577
 
14578
- #: wppa-setup.php:464
14579
  #, fuzzy
14580
  msgid "An error occurred during update"
14581
  msgstr "Chyba počas upload"
14582
 
14583
- #: wppa-setup.php:761
14584
  msgid ""
14585
  "<span style=\"color:red\" >Warning: Do not upload copyrighted material!</"
14586
  "span>"
14587
  msgstr ""
14588
 
14589
- #: wppa-setup.php:770 wppa-setup.php:774 wppa-setup.php:778
14590
  msgid "Select tags:"
14591
  msgstr ""
14592
 
14593
- #: wppa-setup.php:781
14594
  msgid "Enter new tags:"
14595
  msgstr ""
14596
 
14597
- #: wppa-setup.php:928
14598
  msgid "Vote for me!"
14599
  msgstr ""
14600
 
14601
- #: wppa-setup.php:929
14602
  msgid "Voted for me"
14603
  msgstr ""
14604
 
14605
- #: wppa-setup.php:1350
 
 
 
 
 
 
 
 
 
 
14606
  msgid "Type your custom url here"
14607
  msgstr ""
14608
 
14609
- #: wppa-setup.php:1351
14610
  msgid "Type the title here"
14611
  msgstr ""
14612
 
14613
- #: wppa-setup.php:1363 wppa-topten-widget.php:13 wppa-topten-widget.php:48
14614
- #: wppa-topten-widget.php:191
14615
  msgid "Top Ten Photos"
14616
  msgstr "Nejlépe hodnocené fotografie"
14617
 
14618
- #: wppa-setup.php:1366 wppa-thumbnail-widget.php:13
14619
  #: wppa-thumbnail-widget.php:168
14620
  #, fuzzy
14621
  msgid "Thumbnail Photos"
14622
  msgstr "Označkované fotografie"
14623
 
14624
- #: wppa-setup.php:1369
14625
  #, fuzzy
14626
  msgid "Search photos"
14627
  msgstr "Nejlépe hodnocené fotky"
14628
 
14629
- #: wppa-setup.php:1412
14630
  msgid ""
14631
  "The uploads directory does not exist, please do a regular WP upload first."
14632
  msgstr ""
14633
 
14634
- #: wppa-setup.php:1416
14635
  msgid "Successfully created uploads directory."
14636
  msgstr ""
14637
 
14638
- #: wppa-setup.php:1427
14639
  #, fuzzy
14640
  msgid "Could not create the wppa directory."
14641
  msgstr "Nelze vložit do databáze."
14642
 
14643
- #: wppa-setup.php:1431
14644
  msgid "Successfully created wppa directory."
14645
  msgstr ""
14646
 
14647
- #: wppa-setup.php:1441
14648
  #, fuzzy
14649
  msgid "Could not create the wppa thumbs directory."
14650
  msgstr "Nelze vložit do databáze."
14651
 
14652
- #: wppa-setup.php:1445
14653
  msgid "Successfully created wppa thumbs directory."
14654
  msgstr ""
14655
 
14656
- #: wppa-setup.php:1455
14657
  msgid "Could not create the wppa watermarks directory."
14658
  msgstr ""
14659
 
14660
- #: wppa-setup.php:1459
14661
  msgid "Successfully created wppa watermarks directory."
14662
  msgstr ""
14663
 
14664
- #: wppa-setup.php:1469
14665
  msgid "Could not create the wppa fonts directory."
14666
  msgstr ""
14667
 
14668
- #: wppa-setup.php:1473
14669
  msgid "Successfully created wppa fonts directory."
14670
  msgstr ""
14671
 
14672
- #: wppa-setup.php:1485
14673
  msgid "Unable to create depot directory."
14674
  msgstr ""
14675
 
14676
- #: wppa-setup.php:1489
14677
  msgid "Successfully created wppa depot directory."
14678
  msgstr ""
14679
 
14680
- #: wppa-setup.php:1500
14681
  msgid "Unable to create user depot directory"
14682
  msgstr ""
14683
 
14684
- #: wppa-setup.php:1504
14685
  msgid "Successfully created wppa user depot directory."
14686
  msgstr ""
14687
 
14688
- #: wppa-setup.php:1514
14689
  msgid "Unable to create temp directory"
14690
  msgstr ""
14691
 
14692
- #: wppa-setup.php:1518
14693
  msgid "Successfully created temp directory."
14694
  msgstr ""
14695
 
14696
- #: wppa-setup.php:1526
14697
  #, php-format
14698
  msgid ""
14699
  "Ask your administrator to give you more rights, or create <b>%s</b> manually "
@@ -14803,107 +14918,107 @@ msgstr "Otagované fotky:"
14803
  msgid "Text below photos:"
14804
  msgstr "Další fotku"
14805
 
14806
- #: wppa-slideshow.php:250
14807
  msgid "Paused"
14808
  msgstr "Pozastaveno"
14809
 
14810
- #: wppa-slideshow.php:255
14811
  msgid ""
14812
  "To see the full size images, you need to enable javascript in your browser."
14813
  msgstr ""
14814
  "Pro zobrazení fotek v plné velikosti musíte povolit JavaScript ve vašem "
14815
  "prohlížeči."
14816
 
14817
- #: wppa-slideshow.php:476
14818
  msgid "Checkout"
14819
  msgstr ""
14820
 
14821
- #: wppa-slideshow.php:511
14822
  msgid "- - - Voting enabled - - -"
14823
  msgstr "--- Hlasování povoleno ---"
14824
 
14825
- #: wppa-slideshow.php:522
14826
  #, fuzzy, php-format
14827
  msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
14828
  msgstr "%s hodnocení"
14829
 
14830
- #: wppa-slideshow.php:528 wppa-slideshow.php:616 wppa-slideshow.php:653
14831
  #, php-format
14832
  msgid "You must <a href=\"%s\">login</a> to vote"
14833
  msgstr " K hodnocení se musíte <a href=&quot;\"%s\"&quot;>přihlásit</a>."
14834
 
14835
- #: wppa-slideshow.php:531 wppa-slideshow.php:619 wppa-slideshow.php:656
14836
  #, fuzzy
14837
  msgid "You must login to vote"
14838
  msgstr " K hodnocení se musíte <a href=&quot;\"%s\"&quot;>přihlásit</a>."
14839
 
14840
- #: wppa-slideshow.php:548
14841
  msgid "- - - Rating enabled - - -"
14842
  msgstr "--- Hodnocení povoleno ---"
14843
 
14844
- #: wppa-slideshow.php:564
14845
  msgid "very low"
14846
  msgstr "velmi nízká"
14847
 
14848
- #: wppa-slideshow.php:565
14849
  msgid "low"
14850
  msgstr "nízká"
14851
 
14852
- #: wppa-slideshow.php:566
14853
  msgid "average"
14854
  msgstr "průměr"
14855
 
14856
- #: wppa-slideshow.php:567
14857
  msgid "high"
14858
  msgstr "vysoká"
14859
 
14860
- #: wppa-slideshow.php:568
14861
  msgid "very high"
14862
  msgstr "velmi vysoká"
14863
 
14864
- #: wppa-slideshow.php:595 wppa-slideshow.php:639
14865
  msgid "Are you sure you want to mark this image as inappropriate?"
14866
  msgstr "Opravdu chcete tuto foktu označit jako nevhodnou?"
14867
 
14868
- #: wppa-slideshow.php:596 wppa-slideshow.php:640
14869
  msgid "Click this if you do NOT like this image!"
14870
  msgstr "Klikněte sem, pokud se obrázek NELÍBÍ!"
14871
 
14872
- #: wppa-slideshow.php:598 wppa-slideshow.php:642
14873
  #, fuzzy
14874
  msgid "Number of people who marked this photo as inappropriate"
14875
  msgstr "Spousta lidí označila tuto fotku jako nevhodnou."
14876
 
14877
- #: wppa-slideshow.php:648
14878
  msgid "My rating:"
14879
  msgstr "Moje hodnocení"
14880
 
14881
- #: wppa-slideshow.php:734
14882
  msgid "First"
14883
  msgstr ""
14884
 
14885
- #: wppa-slideshow.php:739
14886
  msgid "Last"
14887
  msgstr ""
14888
 
14889
- #: wppa-slideshow.php:907
14890
  #, php-format
14891
  msgid "Photo %s of %s"
14892
  msgstr "Fotka %s %s"
14893
 
14894
- #: wppa-slideshow.php:938
14895
  msgid "Click to start/stop"
14896
  msgstr "Pro Spuštění/zastevní klikněte"
14897
 
14898
- #: wppa-slideshow.php:950
14899
  msgid "- - - Comments box activated - - -"
14900
  msgstr "--- Box komentářů aktivní ---"
14901
 
14902
- #: wppa-slideshow.php:971
14903
  msgid "- - - IPTC box activated - - -"
14904
  msgstr "--- IPTC box aktivní ---"
14905
 
14906
- #: wppa-slideshow.php:991
14907
  msgid "- - - EXIF box activated - - -"
14908
  msgstr "--- EXIF box aktivní ---"
14909
 
@@ -14921,6 +15036,52 @@ msgstr "fotoalba. Poslední přidané album je"
14921
  msgid ", a subalbum of"
14922
  msgstr ", subalbum z"
14923
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14924
  #: wppa-super-view-widget.php:13
14925
  msgid "WPPA+ Selectable display"
14926
  msgstr ""
@@ -14960,8 +15121,8 @@ msgstr ""
14960
  msgid "Link Title ( tooltip ):"
14961
  msgstr ""
14962
 
14963
- #: wppa-thumbnail-widget.php:200 wppa-topten-widget.php:233
14964
- #: wppa-upldr-widget.php:179
14965
  #, fuzzy
14966
  msgid "Sort by:"
14967
  msgstr "Fotka %s %s"
@@ -14974,16 +15135,16 @@ msgstr ""
14974
  msgid "Show photo names <small>under thumbnails only</small>:"
14975
  msgstr ""
14976
 
14977
- #: wppa-thumbnails.php:174 wppa-thumbnails.php:1058 wppa-topten-widget.php:109
14978
  msgid "View the top rated photos"
14979
  msgstr "Zobrazit najlépe hodnocené fotky"
14980
 
14981
- #: wppa-thumbnails.php:634
14982
  #, fuzzy
14983
  msgid "Comments:"
14984
  msgstr "Komentáře"
14985
 
14986
- #: wppa-thumbnails.php:965
14987
  #, php-format
14988
  msgid "Missing thumbnail image #%s"
14989
  msgstr ""
@@ -15102,9 +15263,9 @@ msgstr ""
15102
  msgid "--- All photos in the system ---"
15103
  msgstr ""
15104
 
15105
- #: wppa-tinymce-scripts.php:208 wppa-tinymce-shortcodes.php:248
15106
- #: wppa-tinymce-shortcodes.php:271 wppa-tinymce-shortcodes.php:316
15107
- #: wppa-tinymce-shortcodes.php:339 wppa-tinymce-shortcodes.php:478
15108
  msgid "There are no albums yet"
15109
  msgstr ""
15110
 
@@ -15123,11 +15284,11 @@ msgstr ""
15123
  msgid "* Album contains less than the minimun number of photos"
15124
  msgstr ""
15125
 
15126
- #: wppa-tinymce-scripts.php:224 wppa-tinymce-shortcodes.php:377
15127
  msgid "The Photo to be used:"
15128
  msgstr ""
15129
 
15130
- #: wppa-tinymce-scripts.php:229 wppa-tinymce-shortcodes.php:383
15131
  #, fuzzy
15132
  msgid "Please select a photo"
15133
  msgstr "Zadejte komentář"
@@ -15142,24 +15303,24 @@ msgstr "Zobrazit posledně nahrané fotky"
15142
  msgid "--- The photo of the day ---"
15143
  msgstr "Foto dne"
15144
 
15145
- #: wppa-tinymce-scripts.php:244 wppa-tinymce-shortcodes.php:400
15146
  msgid "There are no photos yet"
15147
  msgstr ""
15148
 
15149
- #: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:406
15150
  msgid "Specify the photo to be used"
15151
  msgstr ""
15152
 
15153
- #: wppa-tinymce-scripts.php:251 wppa-tinymce-shortcodes.php:407
15154
  msgid "You can select from a maximum of 100 most recently added photos"
15155
  msgstr ""
15156
 
15157
- #: wppa-tinymce-scripts.php:257 wppa-tinymce-shortcodes.php:421
15158
  #, fuzzy
15159
  msgid "The tags the photos should have:"
15160
  msgstr "Zkontrolujte prosím tag(y), které fotky musí mít"
15161
 
15162
- #: wppa-tinymce-scripts.php:260 wppa-tinymce-shortcodes.php:424
15163
  #, fuzzy
15164
  msgid "--- please select tag(s) ---"
15165
  msgstr "--- smazáno ---"
@@ -15171,38 +15332,38 @@ msgid ""
15171
  "tags"
15172
  msgstr ""
15173
 
15174
- #: wppa-tinymce-scripts.php:273 wppa-tinymce-shortcodes.php:501
15175
  #, fuzzy
15176
  msgid "The size of the display:"
15177
  msgstr "Foto dne"
15178
 
15179
- #: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:506
15180
  msgid ""
15181
  "Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
15182
  "span>."
15183
  msgstr ""
15184
 
15185
- #: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:507
15186
  msgid ""
15187
  "A value less than <span style=\"color:blue\" >100</span> will automaticly be "
15188
  "interpreted as a <span style=\"color:blue\" >percentage</span> of the "
15189
  "available space."
15190
  msgstr ""
15191
 
15192
- #: wppa-tinymce-scripts.php:280 wppa-tinymce-shortcodes.php:508
15193
  msgid "Leave this blank for default size"
15194
  msgstr ""
15195
 
15196
- #: wppa-tinymce-scripts.php:285 wppa-tinymce-shortcodes.php:514
15197
  #: wppa-widget-admin.php:72
15198
  msgid "Horizontal alignment:"
15199
  msgstr ""
15200
 
15201
- #: wppa-tinymce-scripts.php:294 wppa-tinymce-shortcodes.php:523
15202
  msgid "Specify the alignment to be used or --- none ---"
15203
  msgstr ""
15204
 
15205
- #: wppa-tinymce-scripts.php:300 wppa-tinymce-shortcodes.php:533
15206
  msgid "Insert Gallery"
15207
  msgstr ""
15208
 
@@ -15343,221 +15504,226 @@ msgstr ""
15343
  msgid "A landing page shortcode"
15344
  msgstr "Vyberte prosím cílovou stránku pro super view widget v Table VI-C"
15345
 
15346
- #: wppa-tinymce-shortcodes.php:187
 
 
 
 
 
15347
  msgid "Kind of selection:"
15348
  msgstr ""
15349
 
15350
- #: wppa-tinymce-shortcodes.php:190
15351
  msgid "Please select a type of selection to be used"
15352
  msgstr ""
15353
 
15354
- #: wppa-tinymce-shortcodes.php:191
15355
  msgid "One or more wppa+ albums"
15356
  msgstr ""
15357
 
15358
- #: wppa-tinymce-shortcodes.php:192
15359
  msgid "A special selection"
15360
  msgstr ""
15361
 
15362
- #: wppa-tinymce-shortcodes.php:199 wppa-tinymce-shortcodes.php:219
15363
  msgid "The selection to be used:"
15364
  msgstr ""
15365
 
15366
- #: wppa-tinymce-shortcodes.php:202 wppa-tinymce-shortcodes.php:222
15367
  #, fuzzy
15368
  msgid "Please select a virtual album"
15369
  msgstr "Vyberte prosím album a opakujte akci"
15370
 
15371
- #: wppa-tinymce-shortcodes.php:203 wppa-tinymce-shortcodes.php:223
15372
  #, fuzzy
15373
  msgid "The most recently modified album"
15374
  msgstr "Nedávno nahrané fotky"
15375
 
15376
- #: wppa-tinymce-shortcodes.php:204
15377
  #, fuzzy
15378
  msgid "The top rated photos"
15379
  msgstr "Najlepšie hodnotené fotografie"
15380
 
15381
- #: wppa-tinymce-shortcodes.php:205
15382
  #, fuzzy
15383
  msgid "The most recently uploaded photos"
15384
  msgstr "Zobrazit posledně nahrané fotky"
15385
 
15386
- #: wppa-tinymce-shortcodes.php:206
15387
  msgid "A random selection of featured photos"
15388
  msgstr ""
15389
 
15390
- #: wppa-tinymce-shortcodes.php:207
15391
  #, fuzzy
15392
  msgid "The most recently commented photos"
15393
  msgstr "Nedávno komentované fotografie"
15394
 
15395
- #: wppa-tinymce-shortcodes.php:208
15396
  msgid "Photos that have certain tags"
15397
  msgstr ""
15398
 
15399
- #: wppa-tinymce-shortcodes.php:209 wppa-tinymce-shortcodes.php:225
15400
  msgid "Albums tagged with a certain category"
15401
  msgstr ""
15402
 
15403
- #: wppa-tinymce-shortcodes.php:210
15404
  msgid "Photos in albums owned by a certain user"
15405
  msgstr ""
15406
 
15407
- #: wppa-tinymce-shortcodes.php:211
15408
  #, fuzzy
15409
  msgid "Photos uploaded by a certain user"
15410
  msgstr "Fotky nahrány "
15411
 
15412
- #: wppa-tinymce-shortcodes.php:212
15413
  msgid "All photos in the system"
15414
  msgstr ""
15415
 
15416
- #: wppa-tinymce-shortcodes.php:224
15417
  msgid "Albums owned by a certain user"
15418
  msgstr ""
15419
 
15420
- #: wppa-tinymce-shortcodes.php:226
15421
  msgid "All albums in the system"
15422
  msgstr ""
15423
 
15424
- #: wppa-tinymce-shortcodes.php:233 wppa-tinymce-shortcodes.php:256
15425
  msgid "The Album(s) to be used:"
15426
  msgstr ""
15427
 
15428
- #: wppa-tinymce-shortcodes.php:239
15429
  #, fuzzy
15430
  msgid "Please select one or more albums"
15431
  msgstr "Zadejte vaše jméno"
15432
 
15433
- #: wppa-tinymce-shortcodes.php:262 wppa-upldr-widget.php:209
15434
  #, fuzzy
15435
  msgid "All albums"
15436
  msgstr "Všetky albumy"
15437
 
15438
- #: wppa-tinymce-shortcodes.php:279
15439
  #, fuzzy
15440
  msgid "The album owner:"
15441
  msgstr "Zadejte název fotky"
15442
 
15443
- #: wppa-tinymce-shortcodes.php:282
15444
  #, fuzzy
15445
  msgid "Please select a user"
15446
  msgstr "Vyberte prosím album a opakujte akci"
15447
 
15448
- #: wppa-tinymce-shortcodes.php:283
15449
  msgid "The logged in visitor"
15450
  msgstr ""
15451
 
15452
- #: wppa-tinymce-shortcodes.php:289
15453
  msgid "Too many users, edit manually"
15454
  msgstr ""
15455
 
15456
- #: wppa-tinymce-shortcodes.php:304
15457
  msgid "No parent specification"
15458
  msgstr ""
15459
 
15460
- #: wppa-tinymce-shortcodes.php:307 wppa-tinymce-shortcodes.php:330
15461
- #: wppa-tinymce-shortcodes.php:469
15462
  msgid "The generic parent"
15463
  msgstr ""
15464
 
15465
- #: wppa-tinymce-shortcodes.php:347
15466
  #, fuzzy
15467
  msgid "Max Albums:"
15468
  msgstr "Alba:"
15469
 
15470
- #: wppa-tinymce-shortcodes.php:355
15471
  #, fuzzy
15472
  msgid "Max Photos:"
15473
  msgstr "Foto"
15474
 
15475
- #: wppa-tinymce-shortcodes.php:363
15476
  msgid "The cat the albums should have:"
15477
  msgstr ""
15478
 
15479
- #: wppa-tinymce-shortcodes.php:366
15480
  #, fuzzy
15481
  msgid "--- please select category ---"
15482
  msgstr "--- smazáno ---"
15483
 
15484
- #: wppa-tinymce-shortcodes.php:396
15485
  #, fuzzy
15486
  msgid "The most recently uploaded photo"
15487
  msgstr "Zobrazit posledně nahrané fotky"
15488
 
15489
- #: wppa-tinymce-shortcodes.php:397
15490
  #, fuzzy
15491
  msgid "The photo of the day"
15492
  msgstr "Foto dne"
15493
 
15494
- #: wppa-tinymce-shortcodes.php:414
15495
  msgid "Preview image:"
15496
  msgstr ""
15497
 
15498
- #: wppa-tinymce-shortcodes.php:435 wppa-tinymce-shortcodes.php:444
15499
  msgid "Additional features:"
15500
  msgstr ""
15501
 
15502
- #: wppa-tinymce-shortcodes.php:437
15503
  msgid "Enable Subsearch"
15504
  msgstr ""
15505
 
15506
- #: wppa-tinymce-shortcodes.php:438
15507
  msgid "Enable Rootsearch"
15508
  msgstr ""
15509
 
15510
- #: wppa-tinymce-shortcodes.php:446
15511
  msgid "Enable all tags"
15512
  msgstr ""
15513
 
15514
- #: wppa-tinymce-shortcodes.php:449
15515
  #, fuzzy
15516
  msgid "Please select the tags to show"
15517
  msgstr "Zkontrolujte prosím tag(y), které fotky musí mít"
15518
 
15519
- #: wppa-tinymce-shortcodes.php:455
15520
  #, fuzzy
15521
  msgid "There are no tags"
15522
  msgstr "Jsou"
15523
 
15524
- #: wppa-tinymce-shortcodes.php:486
15525
  msgid "Calendar type:"
15526
  msgstr ""
15527
 
15528
- #: wppa-tinymce-shortcodes.php:489
15529
  #, fuzzy
15530
  msgid "By EXIF date"
15531
  msgstr "Žádná EXIF data"
15532
 
15533
- #: wppa-tinymce-shortcodes.php:490
15534
  #, fuzzy
15535
  msgid "By date of upload"
15536
  msgstr "Fotky nahrány "
15537
 
15538
- #: wppa-tinymce-shortcodes.php:491
15539
  msgid "By date last modified"
15540
  msgstr ""
15541
 
15542
- #: wppa-tinymce-shortcodes.php:494
15543
  msgid "Last date first"
15544
  msgstr ""
15545
 
15546
- #: wppa-tinymce-shortcodes.php:495
15547
  msgid "Initially display all"
15548
  msgstr ""
15549
 
15550
- #: wppa-tinymce-shortcodes.php:531
15551
  msgid ""
15552
  "This is a preview of the shortcode that is being generated. You may edit the "
15553
  "comment"
15554
  msgstr ""
15555
 
15556
- #: wppa-tinymce-shortcodes.php:534
15557
  msgid "insert Gallery"
15558
  msgstr ""
15559
 
15560
- #: wppa-tinymce-shortcodes.php:534
15561
  msgid "Please complete the shortcode specs"
15562
  msgstr ""
15563
 
@@ -15566,41 +15732,41 @@ msgstr ""
15566
  msgid "WPPA+ Top Ten Rated Photos"
15567
  msgstr "Nejlépe hodnocené fotografie"
15568
 
15569
- #: wppa-topten-widget.php:49
15570
  #, fuzzy
15571
  msgid "Top Ten Photo album"
15572
  msgstr "Nejlépe hodnocené fotografie"
15573
 
15574
- #: wppa-topten-widget.php:137 wppa-topten-widget.php:141
15575
- #: wppa-topten-widget.php:148
15576
  #, php-format
15577
  msgid "%s Votes"
15578
  msgstr "%s hodnocení"
15579
 
15580
- #: wppa-topten-widget.php:138 wppa-topten-widget.php:143
15581
- #: wppa-topten-widget.php:146
15582
  #, php-format
15583
  msgid "Views: %s times"
15584
  msgstr "Prohlédnuto %s krát"
15585
 
15586
- #: wppa-topten-widget.php:237
15587
  msgid "Number of views"
15588
  msgstr ""
15589
 
15590
- #: wppa-topten-widget.php:241
15591
  msgid "Include sub albums:"
15592
  msgstr ""
15593
 
15594
- #: wppa-topten-widget.php:249
15595
  msgid "Show owner:"
15596
  msgstr ""
15597
 
15598
- #: wppa-topten-widget.php:254
15599
  #, fuzzy
15600
  msgid "Show album:"
15601
  msgstr "Stáhnout"
15602
 
15603
- #: wppa-topten-widget.php:269
15604
  msgid "View count:"
15605
  msgstr ""
15606
 
@@ -15614,42 +15780,42 @@ msgstr "Nahrát fotky"
15614
  msgid "Uploader Photos"
15615
  msgstr "Nahrát fotky"
15616
 
15617
- #: wppa-upldr-widget.php:43
15618
  msgid "User uploaded photos"
15619
  msgstr "Nedávno nahrané fotografie"
15620
 
15621
- #: wppa-upldr-widget.php:91
15622
  msgid "There are too many registered users in the system for this widget"
15623
  msgstr ""
15624
 
15625
- #: wppa-upldr-widget.php:125 wppa-upldr-widget.php:132
15626
  msgid "Photos uploaded by"
15627
  msgstr "Fotky nahrány "
15628
 
15629
- #: wppa-upldr-widget.php:167
15630
  #, fuzzy
15631
  msgid "User Photos"
15632
  msgstr "Foto"
15633
 
15634
- #: wppa-upldr-widget.php:182
15635
  #, fuzzy
15636
  msgid "Number of photos"
15637
  msgstr "Označkované fotografie"
15638
 
15639
- #: wppa-upldr-widget.php:183
15640
  #, fuzzy
15641
  msgid "Most recent photo"
15642
  msgstr "napsáno k fotce"
15643
 
15644
- #: wppa-upldr-widget.php:187
15645
  msgid "Ignore:"
15646
  msgstr ""
15647
 
15648
- #: wppa-upldr-widget.php:189
15649
  msgid "Enter loginnames seperated by commas"
15650
  msgstr ""
15651
 
15652
- #: wppa-upldr-widget.php:192
15653
  msgid "Look only in albums (including sub-albums):"
15654
  msgstr ""
15655
 
@@ -16278,52 +16444,52 @@ msgstr ""
16278
  msgid "Could not create page."
16279
  msgstr "Nelze vložit do databáze."
16280
 
16281
- #: wppa-utils.php:254
16282
  #, php-format
16283
  msgid "Rating: %s"
16284
  msgstr "Hlasování: %s"
16285
 
16286
- #: wppa-utils.php:775 wppa-utils.php:786 wppa-utils.php:797
16287
  msgid "Notification of inappropriate image"
16288
  msgstr ""
16289
 
16290
- #: wppa-utils.php:776 wppa-utils.php:787 wppa-utils.php:798
16291
  #, php-format
16292
  msgid "Photo %s has been marked as inappropriate by %s different visitors."
16293
  msgstr ""
16294
 
16295
- #: wppa-utils.php:788
16296
  msgid "The status has been changed to 'pending'."
16297
  msgstr ""
16298
 
16299
- #: wppa-utils.php:799
16300
  #, fuzzy
16301
  msgid "It has been deleted."
16302
  msgstr "Fotka %s byla odebrána."
16303
 
16304
- #: wppa-utils.php:856
16305
  #, php-format
16306
  msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
16307
  msgstr "Návštěvníkův email je: <a href=\"mailto:%s\">%s</a>"
16308
 
16309
- #: wppa-utils.php:862
16310
  #, php-format
16311
  msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
16312
  msgstr "Návštěvník říká, že je jeho email je: <a href=\"mailto:%s\">%s</a>"
16313
 
16314
- #: wppa-utils.php:868
16315
  #, php-format
16316
  msgid ""
16317
  "This message is automaticly generated at %s. It is useless to respond to it."
16318
  msgstr ""
16319
  "Táto zpráva je automaticky generovaná - %s. Je zbytečné na ní reagovať."
16320
 
16321
- #: wppa-utils.php:1065
16322
  #, php-format
16323
  msgid "Time out after processing %s items."
16324
  msgstr ""
16325
 
16326
- #: wppa-utils.php:1068 wppa-utils.php:1072
16327
  #, php-format
16328
  msgid "Time out after processing %s items. Please restart this operation"
16329
  msgstr ""
@@ -16530,67 +16696,67 @@ msgstr "Najlepšie hodnotené fotografie"
16530
  msgid "- start over -"
16531
  msgstr ""
16532
 
16533
- #: wppa.php:354
16534
  msgid ""
16535
  "</strong><h3>WP Photo ALbum Plus Error message</h3>This is a multi site "
16536
  "installation. One of the following 3 lines must be entered in wp-config.php:"
16537
  msgstr ""
16538
 
16539
- #: wppa.php:355
16540
  msgid ""
16541
  "<br /><br /><b>define( 'WPPA_MULTISITE_INDIVIDUAL', true );</b> <small>// "
16542
  "Multisite WP 3.5 or later with every site its own albums and photos</small>"
16543
  msgstr ""
16544
 
16545
- #: wppa.php:356
16546
  msgid ""
16547
  "<br /><b>define( 'WPPA_MULTISITE_BLOGSDIR', true );</b> <small>// Multisite "
16548
  "prior to WP 3.5 with every site its own albums and photos</small>"
16549
  msgstr ""
16550
 
16551
- #: wppa.php:357
16552
  msgid ""
16553
  "<br /><b>define( 'WPPA_MULTISITE_GLOBAL', true );</b> <small>// Multisite "
16554
  "with one common set of albums and photos</small>"
16555
  msgstr ""
16556
 
16557
- #: wppa.php:358
16558
  msgid ""
16559
  "<br /><br />For more information see: <a href=\"https://wordpress.org/"
16560
  "plugins/wp-photo-album-plus/faq/\">the faq</a>"
16561
  msgstr ""
16562
 
16563
- #: wppa.php:359
16564
  msgid ""
16565
  "<br /><br /><em>If you upload photos, they will be placed in the wrong "
16566
  "location and will not be visible for visitors!</em><strong>"
16567
  msgstr ""
16568
 
16569
- #: wppa.php:376
16570
  msgid ""
16571
  "</strong>The photo index table needs to be rebuilt. Please run <b>Photo "
16572
  "Albums -> Settings</b> admin page <b>Table VIII-A9</b><strong>"
16573
  msgstr ""
16574
 
16575
- #: wppa.php:380
16576
  msgid ""
16577
  "</strong>The album index table needs to be rebuilt. Please run <b>Photo "
16578
  "Albums -> Settings</b> admin page <b>Table VIII-A8</b><strong>"
16579
  msgstr ""
16580
 
16581
- #: wppa.php:384
16582
  msgid ""
16583
  "</strong>The avarage ratings need to be recalculated. Please run <b>Photo "
16584
  "Albums -> Settings</b> admin page <b>Table VIII-A5</b><strong>"
16585
  msgstr ""
16586
 
16587
- #: wppa.php:404
16588
  msgid ""
16589
  "</strong>The tags system needs to be converted. Please run <b>Photo Albums -"
16590
  "> Settings</b> admin page <b>Table VIII-B16</b><strong>"
16591
  msgstr ""
16592
 
16593
- #: wppa.php:422
16594
  msgid ""
16595
  "</strong>The cats system needs to be converted. Please run <b>Photo Albums -"
16596
  "> Settings</b> admin page <b>Table VIII-B17</b><strong>"
@@ -16619,6 +16785,14 @@ msgstr ""
16619
  msgid "http://wppa.opajaap.nl/"
16620
  msgstr ""
16621
 
 
 
 
 
 
 
 
 
16622
  #, fuzzy
16623
  #~ msgid "Update uploads"
16624
  #~ msgstr "Album:"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2015-10-14 15:58+0200\n"
5
+ "PO-Revision-Date: 2015-10-14 15:58+0200\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: cs_CZ\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.5\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: wppa.php\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
31
  #: wppa-album-admin-autosave.php:1445 wppa-album-admin-autosave.php:1519
32
  #: wppa-album-admin-autosave.php:1629 wppa-comment-admin.php:311
33
  #: wppa-comment-admin.php:380 wppa-comment-admin.php:398
34
+ #: wppa-functions.php:1919 wppa-thumbnails.php:597
35
  msgid "Edit"
36
  msgstr "Upravit"
37
 
39
  msgid "Warning. No page defined for search results!"
40
  msgstr ""
41
 
42
+ #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:177
43
+ #: wppa-settings-autosave.php:397 wppa-settings-autosave.php:3006
44
  #, fuzzy
45
  msgid "Search"
46
  msgstr "Výsledek vyhledávání fotek"
89
  msgid "Settings file not found"
90
  msgstr ""
91
 
92
+ #: wppa-admin-functions.php:206 wppa-admin-functions.php:210 wppa-ajax.php:2248
93
+ #: wppa-ajax.php:2255
94
  msgid "Please supply a numeric value greater than or equal to"
95
  msgstr ""
96
 
97
+ #: wppa-admin-functions.php:206 wppa-admin-functions.php:210 wppa-ajax.php:2248
98
+ #: wppa-ajax.php:2255
99
  #, fuzzy
100
  msgid "for"
101
  msgstr "nebo"
102
 
103
+ #: wppa-admin-functions.php:210 wppa-ajax.php:2255
104
  msgid "and less than or equal to"
105
  msgstr ""
106
 
240
  msgid "Album Admin"
241
  msgstr "Administrace alb"
242
 
243
+ #: wppa-admin.php:58 wppa-adminbar.php:47 wppa-upload-widget.php:74
244
  #: wppa-upload.php:88
245
  msgid "Upload Photos"
246
  msgstr "Nahrát fotky"
271
  msgstr "Foto dne"
272
 
273
  #: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:61
274
+ #: wppa-setup.php:1359
275
  msgid "Photo of the day"
276
  msgstr "Foto dne"
277
 
280
  msgid "Manage comments"
281
  msgstr "%d komentáře/ů"
282
 
283
+ #: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:387
284
+ #: wppa-settings-autosave.php:2835 wppa-settings-autosave.php:7564
285
+ #: wppa-settings-autosave.php:7609
286
  msgid "Comments"
287
  msgstr "Komentáře"
288
 
308
  msgid "Import"
309
  msgstr "Importovat fotky"
310
 
311
+ #: wppa-admin.php:121 wppa-settings-autosave.php:8603
312
  #, fuzzy
313
  msgid "Update"
314
  msgstr "Album:"
339
  msgid "Exit & Refresh"
340
  msgstr "Ukončit a obnovit"
341
 
342
+ #: wppa-ajax.php:171 wppa-ajax.php:228 wppa-ajax.php:251 wppa-ajax.php:465
343
+ #: wppa-ajax.php:726
344
  msgid "Security check failure"
345
  msgstr ""
346
 
377
  msgid "Could not remove comment"
378
  msgstr "Nelze vložit do databáze."
379
 
380
+ #: wppa-ajax.php:264 wppa-ajax.php:598
381
  msgid "Unexpected error"
382
  msgstr ""
383
 
389
  msgid "The album is empty"
390
  msgstr ""
391
 
392
+ #: wppa-ajax.php:291 wppa-ajax.php:428
393
  msgid "Unable to create zip archive"
394
  msgstr ""
395
 
398
  msgid "Unable to create zip archive. code = %s"
399
  msgstr ""
400
 
401
+ #: wppa-ajax.php:340
402
  #, php-format
403
  msgid "Only %s out of %s photos could be added to the zipfile"
404
  msgstr ""
405
 
406
+ #: wppa-ajax.php:369
407
  msgid "Unknown source of request"
408
  msgstr ""
409
 
410
+ #: wppa-ajax.php:387
411
  msgid "Empty filename"
412
  msgstr ""
413
 
414
+ #: wppa-ajax.php:414
415
  msgid "Unable to create tempdir"
416
  msgstr ""
417
 
418
+ #: wppa-ajax.php:438
419
  #, fuzzy
420
  msgid "Unknown type"
421
  msgstr "neznámý/á"
422
 
423
+ #: wppa-ajax.php:447
424
  msgid "The photo does no longer exist"
425
  msgstr ""
426
 
427
+ #: wppa-ajax.php:479
428
  msgid "An error occurred while processing you rating request."
429
  msgstr ""
430
 
431
+ #: wppa-ajax.php:480
432
  msgid "Maybe you opened the page too long ago to recognize you."
433
  msgstr ""
434
 
435
+ #: wppa-ajax.php:481
436
  msgid "You may refresh the page and try again."
437
  msgstr ""
438
 
439
+ #: wppa-ajax.php:482
440
  msgid ""
441
  "Althoug an error occurred while processing your rating, your vote has been "
442
  "registered."
443
  msgstr ""
444
 
445
+ #: wppa-ajax.php:483
446
  msgid "However, this may not be reflected in the current pageview"
447
  msgstr ""
448
 
449
+ #: wppa-ajax.php:505
450
  #, fuzzy
451
  msgid "Photo has been removed."
452
  msgstr "Fotka %s byla odebrána."
453
 
454
+ #: wppa-ajax.php:514
455
  msgid "Sorry, you can not rate your own photos"
456
  msgstr ""
457
 
458
+ #: wppa-ajax.php:526
459
  #, fuzzy
460
  msgid "Please enter a comment."
461
  msgstr "Zadejte komentář"
462
 
463
+ #: wppa-ajax.php:551
464
  msgid "Security check failure."
465
  msgstr ""
466
 
467
+ #: wppa-ajax.php:563 wppa-ajax.php:579
468
  #, fuzzy
469
  msgid "Photo rated"
470
  msgstr "Foto dne"
471
 
472
+ #: wppa-ajax.php:678
473
  msgid ""
474
  "Please explain your vote in a comment.\n"
475
  "Your vote will be discarded if you don't.\n"
479
  "your vote became effective."
480
  msgstr ""
481
 
482
+ #: wppa-ajax.php:722
483
  msgid "You do not have the rights to delete a photo"
484
  msgstr ""
485
 
486
+ #: wppa-ajax.php:732
487
  #, fuzzy, php-format
488
  msgid "Photo %s has been deleted"
489
  msgstr "Fotka %s byla odebrána."
490
 
491
+ #: wppa-ajax.php:748
492
  msgid "You do not have the rights to update album information"
493
  msgstr ""
494
 
495
+ #: wppa-ajax.php:760
496
  msgid "<b>Ratings cleared</b>"
497
  msgstr ""
498
 
499
+ #: wppa-ajax.php:760 wppa-ajax.php:766 wppa-photo-admin-autosave.php:312
500
  msgid "No ratings for this photo."
501
  msgstr ""
502
 
503
+ #: wppa-ajax.php:763
504
  msgid "An error occurred while clearing ratings"
505
  msgstr ""
506
 
507
+ #: wppa-ajax.php:766 wppa-ajax.php:787 wppa-ajax.php:809
508
  msgid "<b>No photos in this album</b>"
509
  msgstr ""
510
 
511
+ #: wppa-ajax.php:781
512
  msgid "<b>Tags set to defaults</b> (reload)"
513
  msgstr ""
514
 
515
+ #: wppa-ajax.php:784
516
  msgid "An error occurred while setting tags"
517
  msgstr ""
518
 
519
+ #: wppa-ajax.php:803
520
  msgid "<b>Tags added width defaults</b> (reload)"
521
  msgstr ""
522
 
523
+ #: wppa-ajax.php:806
524
  msgid "An error occurred while adding tags"
525
  msgstr ""
526
 
527
+ #: wppa-ajax.php:818
528
  #, php-format
529
  msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
530
  msgstr ""
531
 
532
+ #: wppa-ajax.php:820 wppa-ajax.php:1220 wppa-album-admin-autosave.php:335
533
  #: wppa-album-admin-autosave.php:392 wppa-album-admin-autosave.php:988
534
  #: wppa-album-admin-autosave.php:1125 wppa-album-admin-autosave.php:1297
535
+ #: wppa-album-admin-autosave.php:1392 wppa-boxes-html.php:395
536
+ #: wppa-boxes-html.php:509 wppa-photo-admin-autosave.php:1329
537
+ #: wppa-photo-admin-autosave.php:1448 wppa-settings-autosave.php:453
538
+ #: wppa-settings-autosave.php:615 wppa-settings-autosave.php:637
539
+ #: wppa-settings-autosave.php:1337 wppa-settings-autosave.php:1358
540
+ #: wppa-settings-autosave.php:2732 wppa-settings-autosave.php:2753
541
+ #: wppa-settings-autosave.php:3064 wppa-settings-autosave.php:3088
542
+ #: wppa-settings-autosave.php:3557 wppa-settings-autosave.php:3671
543
+ #: wppa-settings-autosave.php:4239 wppa-settings-autosave.php:4260
544
+ #: wppa-settings-autosave.php:4436 wppa-settings-autosave.php:4460
545
+ #: wppa-settings-autosave.php:5459 wppa-settings-autosave.php:5967
546
+ #: wppa-settings-autosave.php:5989 wppa-settings-autosave.php:6569
547
+ #: wppa-settings-autosave.php:6593 wppa-settings-autosave.php:7558
548
+ #: wppa-settings-autosave.php:8161 wppa-settings-autosave.php:8317
549
  #: wppa-thumbnail-widget.php:204 wppa-upload.php:166
550
  msgid "Name"
551
  msgstr ""
552
 
553
+ #: wppa-ajax.php:823 wppa-ajax.php:1223 wppa-album-admin-autosave.php:998
554
  #: wppa-album-admin-autosave.php:1135 wppa-album-admin-autosave.php:1307
555
+ #: wppa-album-admin-autosave.php:1402 wppa-photo-admin-autosave.php:1330
556
+ #: wppa-photo-admin-autosave.php:1449 wppa-settings-autosave.php:454
557
+ #: wppa-settings-autosave.php:616 wppa-settings-autosave.php:638
558
+ #: wppa-settings-autosave.php:1338 wppa-settings-autosave.php:1359
559
+ #: wppa-settings-autosave.php:2733 wppa-settings-autosave.php:2754
560
+ #: wppa-settings-autosave.php:3065 wppa-settings-autosave.php:3089
561
+ #: wppa-settings-autosave.php:4240 wppa-settings-autosave.php:4261
562
+ #: wppa-settings-autosave.php:4437 wppa-settings-autosave.php:4461
563
+ #: wppa-settings-autosave.php:5460 wppa-settings-autosave.php:5968
564
+ #: wppa-settings-autosave.php:5990 wppa-settings-autosave.php:6570
565
+ #: wppa-settings-autosave.php:6594 wppa-settings-autosave.php:8162
566
+ #: wppa-settings-autosave.php:8184 wppa-settings-autosave.php:8224
567
+ #: wppa-settings-autosave.php:8246 wppa-settings-autosave.php:8292
568
+ #: wppa-settings-autosave.php:8318 wppa-widget-admin.php:195
569
  #, fuzzy
570
  msgid "Description"
571
  msgstr "Zadat/upravit popis fotky"
572
 
573
+ #: wppa-ajax.php:827
574
  #, fuzzy
575
  msgid "Unbalanced tags in album description!"
576
  msgstr "Zadat/upravit popis fotky"
577
 
578
+ #: wppa-ajax.php:834
579
  msgid "Album order #"
580
  msgstr ""
581
 
582
+ #: wppa-ajax.php:837
583
  #, fuzzy
584
  msgid "Cover photo"
585
  msgstr "Prohlédnout fotky"
586
 
587
+ #: wppa-ajax.php:840
588
  #, fuzzy
589
  msgid "Parent album"
590
  msgstr "Album:"
591
 
592
+ #: wppa-ajax.php:845 wppa-settings-autosave.php:3551
593
  #, fuzzy
594
  msgid "Photo order"
595
  msgstr "Foto dne"
596
 
597
+ #: wppa-ajax.php:848
598
  msgid "Use Alt thumbsize"
599
  msgstr ""
600
 
601
+ #: wppa-ajax.php:851
602
  msgid "Cover Type"
603
  msgstr ""
604
 
605
+ #: wppa-ajax.php:854 wppa-settings-autosave.php:4462
606
+ #: wppa-settings-autosave.php:5461
607
  #, fuzzy
608
  msgid "Link type"
609
  msgstr "Odkaz na"
610
 
611
+ #: wppa-ajax.php:857 wppa-album-covers.php:1098
612
  msgid "Link to"
613
  msgstr "Odkaz na"
614
 
615
+ #: wppa-ajax.php:860 wppa-ajax.php:1244 wppa-album-admin-autosave.php:1009
616
  #: wppa-album-admin-autosave.php:1146 wppa-album-admin-autosave.php:1318
617
+ #: wppa-album-admin-autosave.php:1413 wppa-boxes-html.php:517
618
+ #: wppa-photo-admin-autosave.php:1332 wppa-photo-admin-autosave.php:1451
619
  #: wppa-widget-admin.php:196
620
  msgid "Owner"
621
  msgstr ""
622
 
623
+ #: wppa-ajax.php:862
624
  #, php-format
625
  msgid "User %s does not exist"
626
  msgstr ""
627
 
628
+ #: wppa-ajax.php:867 wppa-ajax.php:873
629
  #, fuzzy
630
  msgid "Upload limit count"
631
  msgstr "Nahrát fotku"
632
 
633
+ #: wppa-ajax.php:880
634
  #, fuzzy
635
  msgid "Upload limit time"
636
  msgstr "Nahraný súbor nie je obraz"
637
 
638
+ #: wppa-ajax.php:884
639
  msgid "Default tags"
640
  msgstr ""
641
 
642
+ #: wppa-ajax.php:889
643
  msgid "Categories"
644
  msgstr ""
645
 
646
+ #: wppa-ajax.php:892
647
  msgid "Sub albums sort order"
648
  msgstr ""
649
 
650
+ #: wppa-ajax.php:900 wppa-ajax.php:1314
651
  msgid "Schedule date/time"
652
  msgstr ""
653
 
654
+ #: wppa-ajax.php:913 wppa-ajax.php:939
655
  #, php-format
656
  msgid "<b>%s</b> of album %s updated"
657
  msgstr ""
658
 
659
+ #: wppa-ajax.php:921
660
  msgid "All photos set to scheduled per date"
661
  msgstr ""
662
 
663
+ #: wppa-ajax.php:948
664
  #, php-format
665
  msgid "An error occurred while trying to update <b>%s</b> of album %s"
666
  msgstr ""
667
 
668
+ #: wppa-ajax.php:949 wppa-ajax.php:1198 wppa-ajax.php:1304
669
  msgid "Press CTRL+F5 and try again."
670
  msgstr ""
671
 
672
+ #: wppa-ajax.php:963
673
  msgid "You do not have the rights to update comment status"
674
  msgstr ""
675
 
676
+ #: wppa-ajax.php:972
677
  #, php-format
678
  msgid "Status of comment #%s updated"
679
  msgstr ""
680
 
681
+ #: wppa-ajax.php:975
682
  #, php-format
683
  msgid "Error updating status comment #%s"
684
  msgstr ""
685
 
686
+ #: wppa-ajax.php:986
687
  msgid "You do not have the rights to change photos"
688
  msgstr ""
689
 
690
+ #: wppa-ajax.php:995
691
  msgid "Watermark applied"
692
  msgstr ""
693
 
694
+ #: wppa-ajax.php:999
695
  msgid "An error occured while trying to apply a watermark"
696
  msgstr ""
697
 
698
+ #: wppa-ajax.php:1012
699
  msgid "You do not have the rights to update photo information"
700
  msgstr ""
701
 
702
+ #: wppa-ajax.php:1018
703
  #, php-format
704
  msgid "%s updated to %s."
705
  msgstr ""
706
 
707
+ #: wppa-ajax.php:1068
708
  #, php-format
709
  msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
710
  msgstr ""
711
 
712
+ #: wppa-ajax.php:1072
713
  msgid "Exif date/time updated"
714
  msgstr ""
715
 
716
+ #: wppa-ajax.php:1078
717
  msgid "Enter a value > -90 and < 90"
718
  msgstr ""
719
 
720
+ #: wppa-ajax.php:1086
721
  msgid "Lattitude updated"
722
  msgstr ""
723
 
724
+ #: wppa-ajax.php:1088
725
  #, fuzzy
726
  msgid "Could not update lattitude"
727
  msgstr "Nelze vložit do databáze."
728
 
729
+ #: wppa-ajax.php:1094
730
  msgid "Enter a value > -180 and < 180"
731
  msgstr ""
732
 
733
+ #: wppa-ajax.php:1102
734
  msgid "Longitude updated"
735
  msgstr ""
736
 
737
+ #: wppa-ajax.php:1104
738
  #, fuzzy
739
  msgid "Could not update longitude"
740
  msgstr "Nelze vložit do databáze."
741
 
742
+ #: wppa-ajax.php:1112
743
  #, fuzzy
744
  msgid "Photo files remade"
745
  msgstr "Foto dne"
746
 
747
+ #: wppa-ajax.php:1115
748
  #, fuzzy
749
  msgid "Could not remake files"
750
  msgstr "Nelze vložit do databáze."
751
 
752
+ #: wppa-ajax.php:1121
753
  #, fuzzy
754
  msgid "Thumbnail remade"
755
  msgstr "Stránka s náhledy"
756
 
757
+ #: wppa-ajax.php:1124
758
  #, fuzzy
759
  msgid "Could not remake thumbnail"
760
  msgstr "Nelze vložit do databáze."
761
 
762
+ #: wppa-ajax.php:1134 wppa-photo-admin-autosave.php:184
763
+ #: wppa-settings-autosave.php:3367 wppa-tinymce-scripts.php:289
764
+ #: wppa-tinymce-shortcodes.php:519 wppa-widget-admin.php:77
765
  msgid "left"
766
  msgstr ""
767
 
768
+ #: wppa-ajax.php:1138 wppa-photo-admin-autosave.php:186
769
  msgid "180&deg;"
770
  msgstr ""
771
 
772
+ #: wppa-ajax.php:1142 wppa-photo-admin-autosave.php:188
773
+ #: wppa-settings-autosave.php:3367 wppa-tinymce-scripts.php:291
774
+ #: wppa-tinymce-shortcodes.php:521 wppa-widget-admin.php:79
775
  msgid "right"
776
  msgstr ""
777
 
778
+ #: wppa-ajax.php:1150
779
  #, fuzzy, php-format
780
  msgid "Photo %s rotated %s"
781
  msgstr "Fotka %s %s"
782
 
783
+ #: wppa-ajax.php:1153
784
  #, php-format
785
  msgid "An error occurred while trying to rotate photo %s"
786
  msgstr ""
787
 
788
+ #: wppa-ajax.php:1163 wppa-ajax.php:1186 wppa-photo-admin-autosave.php:1066
789
+ #: wppa-photo-admin-autosave.php:1084
790
  #, fuzzy, php-format
791
  msgid "A photo with filename %s already exists in album %s."
792
  msgstr "Uživatel %s nahrál fotku %s do alba %s"
793
 
794
+ #: wppa-ajax.php:1173
795
  #, fuzzy, php-format
796
  msgid "Photo %s has been moved to album %s (%s)"
797
  msgstr "Fotka %s byla odebrána."
798
 
799
+ #: wppa-ajax.php:1176
800
  #, php-format
801
  msgid "An error occurred while trying to move photo %s"
802
  msgstr ""
803
 
804
+ #: wppa-ajax.php:1194
805
  #, php-format
806
  msgid "Photo %s copied to album %s (%s)"
807
  msgstr ""
808
 
809
+ #: wppa-ajax.php:1197
810
  #, php-format
811
  msgid "An error occurred while trying to copy photo %s"
812
  msgstr ""
813
 
814
+ #: wppa-ajax.php:1227 wppa-ajax.php:1776
815
  #, fuzzy
816
  msgid "Unbalanced tags in photo description!"
817
  msgstr "Zadat/upravit popis fotky"
818
 
819
+ #: wppa-ajax.php:1233
820
  #, fuzzy
821
  msgid "Photo order #"
822
  msgstr "Foto dne"
823
 
824
+ #: wppa-ajax.php:1238
825
  #, php-format
826
  msgid "User %s does not exists"
827
  msgstr ""
828
 
829
+ #: wppa-ajax.php:1247
830
  #, fuzzy
831
  msgid "Link url"
832
  msgstr "Odkaz na"
833
 
834
+ #: wppa-ajax.php:1250
835
  #, fuzzy
836
  msgid "Link title"
837
  msgstr "Odkaz na"
838
 
839
+ #: wppa-ajax.php:1253
840
  #, fuzzy
841
  msgid "Link target"
842
  msgstr "Odkaz na"
843
 
844
+ #: wppa-ajax.php:1259 wppa-multitag-widget.php:35 wppa-multitag-widget.php:67
845
+ #: wppa-tagcloud-widget.php:35 wppa-tagcloud-widget.php:64
846
  #, fuzzy
847
  msgid "Photo Tags"
848
  msgstr "Foto"
849
 
850
+ #: wppa-ajax.php:1264 wppa-comment-admin.php:310 wppa-comment-admin.php:397
851
+ #: wppa-photo-admin-autosave.php:1331 wppa-photo-admin-autosave.php:1450
852
+ #: wppa-settings-autosave.php:5993 wppa-settings-autosave.php:6573
853
+ #: wppa-settings-autosave.php:8185 wppa-settings-autosave.php:8225
854
+ #: wppa-settings-autosave.php:8247 wppa-settings-autosave.php:8293
855
  msgid "Status"
856
  msgstr ""
857
 
858
+ #: wppa-ajax.php:1267
859
  msgid "HTML Alt"
860
  msgstr ""
861
 
862
+ #: wppa-ajax.php:1271
863
  msgid "Video width"
864
  msgstr ""
865
 
866
+ #: wppa-ajax.php:1273 wppa-ajax.php:1280
867
  #, fuzzy
868
  msgid "Please enter an integer value >= 0"
869
  msgstr "Zadejte komentář"
870
 
871
+ #: wppa-ajax.php:1278
872
  msgid "Video height"
873
  msgstr ""
874
 
875
+ #: wppa-ajax.php:1296 wppa-ajax.php:1330
876
  #, php-format
877
  msgid "<b>%s</b> of video %s updated"
878
  msgstr ""
879
 
880
+ #: wppa-ajax.php:1299 wppa-ajax.php:1333
881
  #, php-format
882
  msgid "<b>%s</b> of photo %s updated"
883
  msgstr ""
884
 
885
+ #: wppa-ajax.php:1303
886
  #, php-format
887
  msgid "An error occurred while trying to update <b>%s</b> of photo %s"
888
  msgstr ""
889
 
890
+ #: wppa-ajax.php:1359
891
  #, php-format
892
  msgid "<b>Custom field %s</b> of photo %s updated"
893
  msgstr ""
894
 
895
+ #: wppa-ajax.php:1366
896
  #, fuzzy
897
  msgid "<b>Error during upload.</b>"
898
  msgstr "Chyba počas upload"
899
 
900
+ #: wppa-ajax.php:1391
901
  #, fuzzy
902
  msgid "Photo files updated."
903
  msgstr "Foto dne"
904
 
905
+ #: wppa-ajax.php:1396
906
  #, fuzzy
907
  msgid "Could not update files."
908
  msgstr "Nelze vložit do databáze."
909
 
910
+ #: wppa-ajax.php:1407
911
+ #, php-format
912
+ msgid "Stereo mode updated in %d milliseconds"
913
+ msgstr ""
914
+
915
+ #: wppa-ajax.php:1423
916
  msgid "You do not have the rights to update settings"
917
  msgstr ""
918
 
919
+ #: wppa-ajax.php:1504
920
  msgid "Capability granted"
921
  msgstr ""
922
 
923
+ #: wppa-ajax.php:1509
924
  msgid "Capability withdrawn"
925
  msgstr ""
926
 
927
+ #: wppa-ajax.php:1520
928
  msgid "Column width."
929
  msgstr ""
930
 
931
+ #: wppa-ajax.php:1523
932
  msgid "Initial width."
933
  msgstr ""
934
 
935
+ #: wppa-ajax.php:1526
936
  msgid "Full size."
937
  msgstr ""
938
 
939
+ #: wppa-ajax.php:1529
940
  msgid "Max height."
941
  msgstr ""
942
 
943
+ #: wppa-ajax.php:1532
944
  #, fuzzy
945
  msgid "Thumbnail size."
946
  msgstr "Stránka s náhledy"
947
 
948
+ #: wppa-ajax.php:1535
949
  #, fuzzy
950
  msgid "Thumbnail frame width"
951
  msgstr "Stránka s náhledy"
952
 
953
+ #: wppa-ajax.php:1538
954
  #, fuzzy
955
  msgid "Thumbnail frame height"
956
  msgstr "Označkované fotografie"
957
 
958
+ #: wppa-ajax.php:1541
959
  #, fuzzy
960
  msgid "Thumbnail Spacing"
961
  msgstr "Stránka s náhledy"
962
 
963
+ #: wppa-ajax.php:1544
964
  #, fuzzy
965
  msgid "Photocount treshold."
966
  msgstr "Fotky nenalezeny."
967
 
968
+ #: wppa-ajax.php:1547
969
  #, fuzzy
970
  msgid "Thumb page size."
971
  msgstr "Stránka s náhledy"
972
 
973
+ #: wppa-ajax.php:1550
974
  #, fuzzy
975
  msgid "Cover photo size."
976
  msgstr "Zadejte název fotky"
977
 
978
+ #: wppa-ajax.php:1553
979
  msgid "Album page size."
980
  msgstr ""
981
 
982
+ #: wppa-ajax.php:1556
983
  #, fuzzy
984
  msgid "Number of TopTen photos"
985
  msgstr "Nejlépe hodnocené fotografie"
986
 
987
+ #: wppa-ajax.php:1559
988
  #, fuzzy
989
  msgid "Widget image thumbnail size"
990
  msgstr "Prohlédnout náhledy"
991
 
992
+ #: wppa-ajax.php:1562 wppa-settings-autosave.php:1014
993
  msgid "Max Cover width"
994
  msgstr ""
995
 
996
+ #: wppa-ajax.php:1565
997
  #, fuzzy
998
  msgid "Minimal description height"
999
  msgstr "Zadat/upravit popis fotky"
1000
 
1001
+ #: wppa-ajax.php:1568
1002
  msgid "Minimal cover height"
1003
  msgstr ""
1004
 
1005
+ #: wppa-ajax.php:1571
1006
  msgid "Minimal text frame height"
1007
  msgstr ""
1008
 
1009
+ #: wppa-ajax.php:1574
1010
  msgid "Border width"
1011
  msgstr ""
1012
 
1013
+ #: wppa-ajax.php:1577 wppa-settings-autosave.php:714
1014
  msgid "Border radius"
1015
  msgstr ""
1016
 
1017
+ #: wppa-ajax.php:1580 wppa-settings-autosave.php:725
1018
  msgid "Box spacing"
1019
  msgstr ""
1020
 
1021
+ #: wppa-ajax.php:1586 wppa-settings-autosave.php:989
1022
  msgid "Popup size"
1023
  msgstr ""
1024
 
1025
+ #: wppa-ajax.php:1589
1026
  msgid "Fullsize border width"
1027
  msgstr ""
1028
 
1029
+ #: wppa-ajax.php:1592
1030
  msgid "Lightbox Bordersize"
1031
  msgstr ""
1032
 
1033
+ #: wppa-ajax.php:1595
1034
  msgid "Number of Comment widget entries"
1035
  msgstr ""
1036
 
1037
+ #: wppa-ajax.php:1598
1038
  msgid "Comment Widget image thumbnail size"
1039
  msgstr ""
1040
 
1041
+ #: wppa-ajax.php:1601 wppa-ajax.php:1604 wppa-ajax.php:1607
1042
  msgid "Opacity."
1043
  msgstr ""
1044
 
1045
+ #: wppa-ajax.php:1616 wppa-settings-autosave.php:1120
 
 
 
 
 
 
 
 
 
 
1046
  msgid "Avatar size"
1047
  msgstr ""
1048
 
1049
+ #: wppa-ajax.php:1619 wppa-ajax.php:1622
1050
  msgid "Watermark opacity"
1051
  msgstr ""
1052
 
1053
+ #: wppa-ajax.php:1625 wppa-settings-autosave.php:1289
1054
  msgid "Number of text lines"
1055
  msgstr ""
1056
 
1057
+ #: wppa-ajax.php:1628 wppa-settings-autosave.php:4138
1058
  msgid "Overlay opacity"
1059
  msgstr ""
1060
 
1061
+ #: wppa-ajax.php:1631 wppa-settings-autosave.php:7027
1062
  #, fuzzy
1063
  msgid "Upload limit"
1064
  msgstr "Nahrát fotku"
1065
 
1066
+ #: wppa-ajax.php:1634 wppa-settings-autosave.php:3846
1067
  msgid "Notify inappropriate"
1068
  msgstr ""
1069
 
1070
+ #: wppa-ajax.php:1637
1071
  msgid "Dislike pending"
1072
  msgstr ""
1073
 
1074
+ #: wppa-ajax.php:1640
1075
  #, fuzzy
1076
  msgid "Dislike delete"
1077
  msgstr "Smazat"
1078
 
1079
+ #: wppa-ajax.php:1643 wppa-settings-autosave.php:6669
1080
  msgid "Max execution time"
1081
  msgstr ""
1082
 
1083
+ #: wppa-ajax.php:1648
1084
  msgid "Cube Points points"
1085
  msgstr ""
1086
 
1087
+ #: wppa-ajax.php:1651
1088
  msgid "JPG Image quality"
1089
  msgstr ""
1090
 
1091
+ #: wppa-ajax.php:1657 wppa-settings-autosave.php:3760
1092
  #, fuzzy
1093
  msgid "Number of coverphotos"
1094
  msgstr "Zobrazit úvodní fotky"
1095
 
1096
+ #: wppa-ajax.php:1660 wppa-settings-autosave.php:3817
1097
  msgid "Dislike value"
1098
  msgstr ""
1099
 
1100
+ #: wppa-ajax.php:1663 wppa-settings-autosave.php:845
1101
  #, fuzzy
1102
  msgid "Slideshow pagesize"
1103
  msgstr "Slideshow"
1104
 
1105
+ #: wppa-ajax.php:1666 wppa-settings-autosave.php:743
1106
  msgid "Max Pagelinks"
1107
  msgstr ""
1108
 
1109
+ #: wppa-ajax.php:1673
1110
  msgid "Ratings cleared"
1111
  msgstr ""
1112
 
1113
+ #: wppa-ajax.php:1676
1114
  #, fuzzy
1115
  msgid "Could not clear ratings"
1116
  msgstr "Nelze vložit do databáze."
1117
 
1118
+ #: wppa-ajax.php:1685
1119
  msgid "Viewcounts cleared"
1120
  msgstr ""
1121
 
1122
+ #: wppa-ajax.php:1688
1123
  #, fuzzy
1124
  msgid "Could not clear viewcounts"
1125
  msgstr "Nelze vložit do databáze."
1126
 
1127
+ #: wppa-ajax.php:1698
1128
  #, fuzzy
1129
  msgid "IPTC data cleared"
1130
  msgstr "Žádná IPTC data"
1131
 
1132
+ #: wppa-ajax.php:1699
1133
  msgid "Refresh this page to clear table X"
1134
  msgstr ""
1135
 
1136
+ #: wppa-ajax.php:1703
1137
  #, fuzzy
1138
  msgid "Could not clear IPTC data"
1139
  msgstr "Nelze vložit do databáze."
1140
 
1141
+ #: wppa-ajax.php:1713
1142
  #, fuzzy
1143
  msgid "EXIF data cleared"
1144
  msgstr "Žádná EXIF data"
1145
 
1146
+ #: wppa-ajax.php:1714
1147
  msgid "Refresh this page to clear table XI"
1148
  msgstr ""
1149
 
1150
+ #: wppa-ajax.php:1718
1151
  #, fuzzy
1152
  msgid "Could not clear EXIF data"
1153
  msgstr "Nelze vložit do databáze."
1154
 
1155
+ #: wppa-ajax.php:1726
1156
  msgid "Recuperation performed"
1157
  msgstr ""
1158
 
1159
+ #: wppa-ajax.php:1741
1160
  msgid ""
1161
  "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1162
  "#77bbff"
1163
  msgstr ""
1164
 
1165
+ #: wppa-ajax.php:1767
1166
  msgid "You just changed a setting that requires the recalculation of ratings."
1167
  msgstr ""
1168
 
1169
+ #: wppa-ajax.php:1768 wppa-ajax.php:2135
1170
  msgid "Please run the appropriate action in Table VIII."
1171
  msgstr ""
1172
 
1173
+ #: wppa-ajax.php:1792 wppa-ajax.php:1808
1174
  #, php-format
1175
  msgid "Unable to create or write to %s"
1176
  msgstr ""
1177
 
1178
+ #: wppa-ajax.php:1801
1179
  msgid "Source can not be inside the wppa folder."
1180
  msgstr ""
1181
 
1182
+ #: wppa-ajax.php:1818
1183
  msgid "The content must contain w#album"
1184
  msgstr ""
1185
 
1186
+ #: wppa-ajax.php:1825
1187
  msgid "The content must contain w#lat and w#lon"
1188
  msgstr ""
1189
 
1190
+ #: wppa-ajax.php:1867 wppa-ajax.php:1873
1191
  msgid "Members"
1192
  msgstr ""
1193
 
1194
+ #: wppa-ajax.php:1867
1195
  msgid "Parent of the member albums"
1196
  msgstr ""
1197
 
1198
+ #: wppa-ajax.php:2011
1199
  #, php-format
1200
  msgid "User %s has been blacklisted."
1201
  msgstr ""
1202
 
1203
+ #: wppa-ajax.php:2014
1204
  #, php-format
1205
  msgid "User %s does not exist."
1206
  msgstr ""
1207
 
1208
+ #: wppa-ajax.php:2037
1209
  msgid ""
1210
  "The content of the Custom box has been changed to display the Fotomoto "
1211
  "toolbar."
1212
  msgstr ""
1213
 
1214
+ #: wppa-ajax.php:2041 wppa-ajax.php:2056
1215
  msgid "The display of the custom box has been enabled"
1216
  msgstr ""
1217
 
1218
+ #: wppa-ajax.php:2052
1219
  msgid "The content of the Custom box has been changed to display maps."
1220
  msgstr ""
1221
 
1222
+ #: wppa-ajax.php:2082
1223
  msgid "This value can not be empty"
1224
  msgstr ""
1225
 
1226
+ #: wppa-ajax.php:2114
1227
  #, php-format
1228
  msgid "Failed to set %s to %s"
1229
  msgstr ""
1230
 
1231
+ #: wppa-ajax.php:2119
1232
  #, php-format
1233
  msgid "Setting %s updated to %s"
1234
  msgstr ""
1235
 
1236
+ #: wppa-ajax.php:2134
1237
  msgid ""
1238
  "You just changed a setting that requires the regeneration of thumbnails."
1239
  msgstr ""
1240
 
1241
+ #: wppa-ajax.php:2189
1242
  msgid "Missing album id"
1243
  msgstr ""
1244
 
1245
+ #: wppa-ajax.php:2209
1246
  msgid "You do not have the rights to delete this album"
1247
  msgstr ""
1248
 
1249
+ #: wppa-ajax.php:2250 wppa-ajax.php:2257
1250
  #, fuzzy
1251
  msgid "You may also enter:"
1252
  msgstr "Můžete nahrát po"
1253
 
1254
+ #: wppa-ajax.php:2251 wppa-ajax.php:2258
1255
  #, fuzzy
1256
  msgid "You may also leave/set this blank"
1257
  msgstr ""
1299
  msgid "Top of page"
1300
  msgstr ""
1301
 
1302
+ #: wppa-album-admin-autosave.php:114 wppa-functions.php:3857
1303
+ #: wppa-settings-autosave.php:6917 wppa-wpdb-insert.php:329
1304
  #, fuzzy
1305
  msgid "New Album"
1306
  msgstr "Album:"
1325
  msgid "Edit Album Information"
1326
  msgstr "Upravit!"
1327
 
1328
+ #: wppa-album-admin-autosave.php:172 wppa-settings-autosave.php:293
1329
  #, fuzzy
1330
  msgid "Auto Save"
1331
  msgstr "Automatika, záblesk"
1366
  msgid "Type the name of the album. Do not leave this empty."
1367
  msgstr ""
1368
 
1369
+ #: wppa-album-admin-autosave.php:211 wppa-photo-admin-autosave.php:719
1370
+ #: wppa-photo-admin-autosave.php:744
1371
  #, fuzzy
1372
  msgid "Description:"
1373
  msgstr "Zadat/upravit popis fotky"
1382
  msgid "Enter / modify the description for this album."
1383
  msgstr "Zadat/upravit popis fotky"
1384
 
1385
+ #: wppa-album-admin-autosave.php:240 wppa-photo-admin-autosave.php:275
1386
  msgid "Modified:"
1387
  msgstr ""
1388
 
1389
+ #: wppa-album-admin-autosave.php:249 wppa-thumbnails.php:645
1390
+ #: wppa-thumbnails.php:1420
1391
  #, fuzzy
1392
  msgid "Views:"
1393
  msgstr "Ukázat: "
1394
 
1395
+ #: wppa-album-admin-autosave.php:262 wppa-photo-admin-autosave.php:261
1396
  msgid "Owned by:"
1397
  msgstr ""
1398
 
1422
  "here."
1423
  msgstr ""
1424
 
1425
+ #: wppa-album-admin-autosave.php:309 wppa-tinymce-shortcodes.php:299
1426
+ #: wppa-tinymce-shortcodes.php:325 wppa-tinymce-shortcodes.php:464
1427
  #, fuzzy
1428
  msgid "Parent album:"
1429
  msgstr "Album:"
1439
  msgstr "Foto dne"
1440
 
1441
  #: wppa-album-admin-autosave.php:333 wppa-album-admin-autosave.php:434
1442
+ #: wppa-settings-autosave.php:3594 wppa-settings-autosave.php:3618
1443
  #, fuzzy
1444
  msgid "--- default ---"
1445
  msgstr "--- smazáno ---"
1446
 
1447
  #: wppa-album-admin-autosave.php:334 wppa-album-admin-autosave.php:390
1448
+ #: wppa-settings-autosave.php:3556 wppa-settings-autosave.php:3670
1449
  #: wppa-thumbnail-widget.php:203
1450
  msgid "Order #"
1451
  msgstr ""
1452
 
1453
  #: wppa-album-admin-autosave.php:336 wppa-album-admin-autosave.php:389
1454
+ #: wppa-settings-autosave.php:3558 wppa-settings-autosave.php:3672
1455
  #: wppa-thumbnail-widget.php:205 wppa-widget-admin.php:142
1456
  msgid "Random"
1457
  msgstr ""
1458
 
1459
+ #: wppa-album-admin-autosave.php:337 wppa-settings-autosave.php:3559
1460
  msgid "Rating mean value"
1461
  msgstr ""
1462
 
1463
+ #: wppa-album-admin-autosave.php:338 wppa-bestof-widget.php:171
1464
+ #: wppa-settings-autosave.php:3560 wppa-topten-widget.php:239
1465
  msgid "Number of votes"
1466
  msgstr ""
1467
 
1468
  #: wppa-album-admin-autosave.php:339 wppa-album-admin-autosave.php:394
1469
+ #: wppa-settings-autosave.php:3561 wppa-settings-autosave.php:3673
1470
  msgid "Timestamp"
1471
  msgstr ""
1472
 
1473
+ #: wppa-album-admin-autosave.php:340 wppa-photo-admin-autosave.php:286
1474
+ #: wppa-settings-autosave.php:3562
1475
  #, fuzzy
1476
  msgid "EXIF Date"
1477
  msgstr "Žádná EXIF data"
1478
 
1479
+ #: wppa-album-admin-autosave.php:341 wppa-settings-autosave.php:3563
1480
+ #: wppa-settings-autosave.php:3674
1481
  msgid "Order # desc"
1482
  msgstr ""
1483
 
1484
+ #: wppa-album-admin-autosave.php:342 wppa-settings-autosave.php:3564
1485
+ #: wppa-settings-autosave.php:3675
1486
  msgid "Name desc"
1487
  msgstr ""
1488
 
1489
+ #: wppa-album-admin-autosave.php:343 wppa-settings-autosave.php:3565
1490
  #: wppa-thumbnail-widget.php:206
1491
  msgid "Rating mean value desc"
1492
  msgstr ""
1493
 
1494
+ #: wppa-album-admin-autosave.php:344 wppa-settings-autosave.php:3566
1495
  #: wppa-thumbnail-widget.php:207
1496
  msgid "Number of votes desc"
1497
  msgstr ""
1498
 
1499
+ #: wppa-album-admin-autosave.php:345 wppa-settings-autosave.php:3567
1500
+ #: wppa-settings-autosave.php:3676 wppa-thumbnail-widget.php:208
1501
  msgid "Timestamp desc"
1502
  msgstr ""
1503
 
1504
+ #: wppa-album-admin-autosave.php:346 wppa-settings-autosave.php:3568
1505
  msgid "EXIF Date desc"
1506
  msgstr ""
1507
 
1545
  msgid "Use alt thumbsize:"
1546
  msgstr ""
1547
 
1548
+ #: wppa-album-admin-autosave.php:413 wppa-bestof-widget.php:183
1549
+ #: wppa-bestof-widget.php:188 wppa-bestof-widget.php:193
1550
+ #: wppa-topten-widget.php:247 wppa-topten-widget.php:255
1551
+ #: wppa-topten-widget.php:260 wppa-topten-widget.php:265
1552
+ #: wppa-topten-widget.php:270 wppa-topten-widget.php:275
1553
  #, fuzzy
1554
  msgid "no"
1555
  msgstr "žádný/á"
1556
 
1557
+ #: wppa-album-admin-autosave.php:414 wppa-bestof-widget.php:182
1558
+ #: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
1559
+ #: wppa-super-view-widget.php:87 wppa-topten-widget.php:246
1560
+ #: wppa-topten-widget.php:254 wppa-topten-widget.php:259
1561
+ #: wppa-topten-widget.php:264 wppa-topten-widget.php:269
1562
+ #: wppa-topten-widget.php:274
1563
  #, fuzzy
1564
  msgid "yes"
1565
  msgstr "let"
1574
  msgid "Cover Type:"
1575
  msgstr ""
1576
 
1577
+ #: wppa-album-admin-autosave.php:435 wppa-settings-autosave.php:1888
1578
+ #: wppa-settings-autosave.php:3740
1579
  msgid "Standard"
1580
  msgstr ""
1581
 
1582
+ #: wppa-album-admin-autosave.php:436 wppa-settings-autosave.php:3741
1583
  #, fuzzy
1584
  msgid "Long Descriptions"
1585
  msgstr "Zadat/upravit popis fotky"
1586
 
1587
+ #: wppa-album-admin-autosave.php:437 wppa-settings-autosave.php:3742
1588
  msgid "Image Factory"
1589
  msgstr ""
1590
 
1591
+ #: wppa-album-admin-autosave.php:438 wppa-settings-autosave.php:3743
1592
  msgid "Standard mcr"
1593
  msgstr ""
1594
 
1595
+ #: wppa-album-admin-autosave.php:439 wppa-settings-autosave.php:3744
1596
  msgid "Long Descriptions mcr"
1597
  msgstr ""
1598
 
1599
+ #: wppa-album-admin-autosave.php:440 wppa-settings-autosave.php:3745
1600
  msgid "Image Factory mcr"
1601
  msgstr ""
1602
 
1626
  msgid "Upload limit:"
1627
  msgstr "Nahrát fotku"
1628
 
1629
+ #: wppa-album-admin-autosave.php:482 wppa-settings-autosave.php:5586
1630
+ #: wppa-settings-autosave.php:7034
1631
  msgid "for ever"
1632
  msgstr ""
1633
 
1634
  #: wppa-album-admin-autosave.php:483 wppa-album-admin-autosave.php:500
1635
+ #: wppa-settings-autosave.php:5587 wppa-settings-autosave.php:7035
1636
  #, fuzzy
1637
  msgid "per hour"
1638
  msgstr "1 hodina"
1639
 
1640
  #: wppa-album-admin-autosave.php:484 wppa-album-admin-autosave.php:501
1641
+ #: wppa-settings-autosave.php:5588 wppa-settings-autosave.php:7036
1642
  #, fuzzy
1643
  msgid "per day"
1644
  msgstr "1 den"
1645
 
1646
  #: wppa-album-admin-autosave.php:485 wppa-album-admin-autosave.php:502
1647
+ #: wppa-settings-autosave.php:5589 wppa-settings-autosave.php:7037
1648
  #, fuzzy
1649
  msgid "per week"
1650
  msgstr "1 týden"
1651
 
1652
  #: wppa-album-admin-autosave.php:486 wppa-album-admin-autosave.php:503
1653
+ #: wppa-settings-autosave.php:5590 wppa-settings-autosave.php:7038
1654
  #, fuzzy
1655
  msgid "per month"
1656
  msgstr "1 měsíc"
1657
 
1658
  #: wppa-album-admin-autosave.php:487 wppa-album-admin-autosave.php:504
1659
+ #: wppa-settings-autosave.php:5591 wppa-settings-autosave.php:7039
1660
  #, fuzzy
1661
  msgid "per year"
1662
  msgstr "1 rok"
1677
  msgid "Separate categories with commas."
1678
  msgstr ""
1679
 
1680
+ #: wppa-album-admin-autosave.php:526 wppa-photo-admin-autosave.php:798
1681
  msgid "Examples:"
1682
  msgstr ""
1683
 
1684
+ #: wppa-album-admin-autosave.php:532 wppa-photo-admin-autosave.php:802
1685
  #, fuzzy
1686
  msgid "- select -"
1687
  msgstr "Vyberte prosím album a opakujte akci"
1691
  msgid "No categories yet"
1692
  msgstr "Zatím nebylo založeno žádné album"
1693
 
1694
+ #: wppa-album-admin-autosave.php:542 wppa-photo-admin-autosave.php:812
1695
  msgid "Select to add"
1696
  msgstr ""
1697
 
1739
  msgid "Link type:"
1740
  msgstr "Odkaz na"
1741
 
1742
+ #: wppa-album-admin-autosave.php:594 wppa-settings-autosave.php:7195
1743
  msgid "the sub-albums and thumbnails"
1744
  msgstr ""
1745
 
1746
+ #: wppa-album-admin-autosave.php:595 wppa-settings-autosave.php:7196
1747
  #, fuzzy
1748
  msgid "the sub-albums"
1749
  msgstr "Prohlédnout album"
1750
 
1751
+ #: wppa-album-admin-autosave.php:596 wppa-settings-autosave.php:7197
1752
  #, fuzzy
1753
  msgid "the thumbnails"
1754
  msgstr "Prohlédnout náhledy"
1755
 
1756
+ #: wppa-album-admin-autosave.php:597 wppa-settings-autosave.php:7198
1757
  msgid "the album photos as slideshow"
1758
  msgstr ""
1759
 
1761
  msgid "the link page with a clean url"
1762
  msgstr ""
1763
 
1764
+ #: wppa-album-admin-autosave.php:599 wppa-settings-autosave.php:7199
1765
  msgid "no link at all"
1766
  msgstr ""
1767
 
1777
  "correct shortcode on the target page."
1778
  msgstr ""
1779
 
1780
+ #: wppa-album-admin-autosave.php:614 wppa-bestof-widget.php:197
1781
  #: wppa-slideshow-widget.php:223 wppa-widget-admin.php:164
1782
  #: wppa-widget-admin.php:174
1783
  #, fuzzy
1784
  msgid "Link to:"
1785
  msgstr "Odkaz na"
1786
 
1787
+ #: wppa-album-admin-autosave.php:620 wppa-settings-autosave.php:8751
1788
+ #: wppa-settings-autosave.php:8800
1789
  msgid "There are no pages (yet) to link to."
1790
  msgstr ""
1791
 
1851
  msgid "Remake all"
1852
  msgstr ""
1853
 
1854
+ #: wppa-album-admin-autosave.php:720 wppa-photo-admin-autosave.php:912
1855
  msgid "Remark:"
1856
  msgstr ""
1857
 
1874
  msgid "Moderate photo"
1875
  msgstr "Spravovat fotografie"
1876
 
1877
+ #: wppa-album-admin-autosave.php:767 wppa-functions.php:2119
1878
  #: wppa-photo-admin-autosave.php:24
1879
  msgid "Edit photo"
1880
  msgstr "Upravit fotku"
1884
  msgid "Delete Album"
1885
  msgstr "Album:"
1886
 
1887
+ #: wppa-album-admin-autosave.php:793 wppa-boxes-html.php:806
1888
+ #: wppa-breadcrumb.php:278 wppa-breadcrumb.php:296 wppa-breadcrumb.php:314
1889
+ #: wppa-breadcrumb.php:332 wppa-breadcrumb.php:387 wppa-breadcrumb.php:412
1890
+ #: wppa-breadcrumb.php:554 wppa-comment-admin.php:66 wppa-featen-widget.php:139
1891
  #: wppa-lasten-widget.php:172 wppa-slideshow-widget.php:201
1892
+ #: wppa-thumbnail-widget.php:191 wppa-topten-widget.php:220
1893
+ #: wppa-upload-widget.php:80 wppa-upload.php:116 wppa-upload.php:204
1894
  #: wppa-upload.php:251
1895
  msgid "Album:"
1896
  msgstr "Album:"
1913
  #: wppa-album-admin-autosave.php:1182 wppa-album-admin-autosave.php:1354
1914
  #: wppa-album-admin-autosave.php:1449 wppa-album-admin-autosave.php:1635
1915
  #: wppa-comment-admin.php:312 wppa-comment-admin.php:381
1916
+ #: wppa-comment-admin.php:399 wppa-functions.php:1931 wppa-links.php:724
1917
+ #: wppa-links.php:742 wppa-photo-admin-autosave.php:1278
1918
+ #: wppa-photo-admin-autosave.php:1346 wppa-thumbnails.php:590
1919
  msgid "Delete"
1920
  msgstr "Smazat"
1921
 
1923
  msgid "Move to:"
1924
  msgstr ""
1925
 
1926
+ #: wppa-album-admin-autosave.php:809 wppa-settings-autosave.php:2666
1927
  msgid "Cancel"
1928
  msgstr ""
1929
 
1956
 
1957
  #: wppa-album-admin-autosave.php:978 wppa-album-admin-autosave.php:1115
1958
  #: wppa-album-admin-autosave.php:1286 wppa-album-admin-autosave.php:1381
1959
+ #: wppa-photo-admin-autosave.php:1327 wppa-photo-admin-autosave.php:1446
1960
  msgid "ID"
1961
  msgstr ""
1962
 
2164
  msgid "album"
2165
  msgstr "album"
2166
 
2167
+ #: wppa-album-covers.php:1207 wppa-settings-autosave.php:1233
2168
+ #: wppa-settings-autosave.php:5623
2169
  msgid "albums"
2170
  msgstr "albumy"
2171
 
2172
+ #: wppa-album-covers.php:1216 wppa-boxes-html.php:1133 wppa-breadcrumb.php:148
2173
+ #: wppa-breadcrumb.php:154 wppa-breadcrumb.php:161 wppa-breadcrumb.php:360
2174
+ #: wppa-breadcrumb.php:365 wppa-functions.php:4261 wppa-utils.php:1572
2175
  msgid "and"
2176
  msgstr "a"
2177
 
2180
  msgstr "fotka"
2181
 
2182
  #: wppa-album-covers.php:1224 wppa-album-covers.php:1228
2183
+ #: wppa-settings-autosave.php:699 wppa-settings-autosave.php:738
2184
+ #: wppa-settings-autosave.php:1153 wppa-settings-autosave.php:1193
2185
+ #: wppa-settings-autosave.php:1213 wppa-settings-autosave.php:1253
2186
+ #: wppa-settings-autosave.php:3764 wppa-settings-autosave.php:5607
2187
+ #: wppa-settings-autosave.php:7032
2188
  msgid "photos"
2189
  msgstr "fotek"
2190
 
2193
  msgid "New!"
2194
  msgstr "Nová fotka nahrána: %s"
2195
 
2196
+ #: wppa-album-covers.php:1273 wppa-thumbnails.php:1876 wppa-thumbnails.php:1877
2197
  #, fuzzy
2198
  msgid "New"
2199
  msgstr "Nová fotka nahrána: %s"
2200
 
2201
+ #: wppa-album-covers.php:1295 wppa-boxes-html.php:830 wppa-non-admin.php:580
2202
+ #: wppa-settings-autosave.php:2138 wppa-settings-autosave.php:5084
2203
+ #: wppa-settings-autosave.php:7344
2204
  msgid "Slideshow"
2205
  msgstr "Slideshow"
2206
 
2212
  msgid "Categories:"
2213
  msgstr ""
2214
 
2215
+ #: wppa-album-covers.php:1333 wppa-breadcrumb.php:372 wppa-breadcrumb.php:377
2216
  msgid "Category:"
2217
  msgstr ""
2218
 
2225
  msgstr ""
2226
 
2227
  #: wppa-album-navigator-widget.php:92 wppa-album-widget.php:318
2228
+ #: wppa-bestof-widget.php:132 wppa-comment-widget.php:120
2229
+ #: wppa-featen-widget.php:136 wppa-gp-widget.php:89 wppa-lasten-widget.php:169
2230
+ #: wppa-multitag-widget.php:73 wppa-potd-widget.php:187 wppa-qr-widget.php:89
2231
+ #: wppa-search-widget.php:74 wppa-slideshow-widget.php:200
2232
+ #: wppa-stereo-widget.php:70 wppa-super-view-widget.php:75
2233
+ #: wppa-tagcloud-widget.php:69 wppa-thumbnail-widget.php:186
2234
+ #: wppa-topten-widget.php:217 wppa-upldr-widget.php:178
2235
+ #: wppa-upload-widget.php:78 wppa-widget-admin.php:177
2236
  msgid "Title:"
2237
  msgstr ""
2238
 
2303
  msgid "Show album names:"
2304
  msgstr "Zadejte název fotky"
2305
 
2306
+ #: wppa-album-widget.php:351 wppa-comment-widget.php:121
2307
+ #: wppa-featen-widget.php:147 wppa-lasten-widget.php:202
2308
+ #: wppa-thumbnail-widget.php:234 wppa-topten-widget.php:279
2309
  msgid ""
2310
  "You can set the sizes in this widget in the <b>Photo Albums -> Settings</b> "
2311
  "admin page."
2323
  msgstr "fotek"
2324
 
2325
  #: wppa-bestof-widget.php:16 wppa-bestof-widget.php:50
2326
+ #: wppa-bestof-widget.php:110
2327
  #, fuzzy
2328
  msgid "Best Of Photos"
2329
  msgstr "fotek"
2330
 
2331
+ #: wppa-bestof-widget.php:153
2332
  #, fuzzy
2333
  msgid "Photo(s)"
2334
  msgstr "Foto"
2335
 
2336
+ #: wppa-bestof-widget.php:154
2337
  msgid "Owner(s)"
2338
  msgstr ""
2339
 
2340
+ #: wppa-bestof-widget.php:159
2341
  #, fuzzy
2342
  msgid "Last week"
2343
  msgstr "1 týden"
2344
 
2345
+ #: wppa-bestof-widget.php:160
2346
  #, fuzzy
2347
  msgid "This week"
2348
  msgstr "1 týden"
2349
 
2350
+ #: wppa-bestof-widget.php:161
2351
  #, fuzzy
2352
  msgid "Last month"
2353
  msgstr "1 měsíc"
2354
 
2355
+ #: wppa-bestof-widget.php:162
2356
  #, fuzzy
2357
  msgid "This month"
2358
  msgstr "1 měsíc"
2359
 
2360
+ #: wppa-bestof-widget.php:163
2361
  #, fuzzy
2362
  msgid "Last year"
2363
  msgstr "1 rok"
2364
 
2365
+ #: wppa-bestof-widget.php:164
2366
  #, fuzzy
2367
  msgid "This year"
2368
  msgstr "1 rok"
2369
 
2370
+ #: wppa-bestof-widget.php:169
2371
  msgid "Number of max ratings"
2372
  msgstr ""
2373
 
2374
+ #: wppa-bestof-widget.php:170 wppa-topten-widget.php:238
2375
  msgid "Mean value"
2376
  msgstr ""
2377
 
2378
+ #: wppa-bestof-widget.php:179 wppa-topten-widget.php:251
2379
  #: wppa-widget-admin.php:188
2380
  msgid "Subtitle:"
2381
  msgstr ""
2382
 
2383
+ #: wppa-bestof-widget.php:180
2384
  #, fuzzy
2385
  msgid "No of max ratings:"
2386
  msgstr "Max uploads dosiahol"
2387
 
2388
+ #: wppa-bestof-widget.php:185 wppa-topten-widget.php:262
2389
  #, fuzzy
2390
  msgid "Mean rating:"
2391
  msgstr "Moje hodnocení"
2392
 
2393
+ #: wppa-bestof-widget.php:190 wppa-topten-widget.php:267
2394
  #, fuzzy
2395
  msgid "Rating count:"
2396
  msgstr "Hlasování: %s"
2397
 
2398
+ #: wppa-bestof-widget.php:199 wppa-common-functions.php:1972 wppa-items.php:365
2399
+ #: wppa-settings-autosave.php:1302 wppa-settings-autosave.php:1623
2400
+ #: wppa-settings-autosave.php:3353 wppa-settings-autosave.php:3367
2401
+ #: wppa-settings-autosave.php:3555 wppa-settings-autosave.php:3669
2402
+ #: wppa-settings-autosave.php:5155 wppa-settings-autosave.php:6908
2403
+ #: wppa-settings-autosave.php:7050 wppa-settings-autosave.php:7106
2404
+ #: wppa-settings-autosave.php:7922 wppa-settings-autosave.php:8078
2405
  #: wppa-thumbnail-widget.php:202 wppa-tinymce-scripts.php:288
2406
+ #: wppa-tinymce-shortcodes.php:518 wppa-upload.php:1528 wppa-watermark.php:520
2407
  #: wppa-widget-admin.php:76 wppa-widget-admin.php:193
2408
  msgid "--- none ---"
2409
  msgstr "--- žádné ---"
2410
 
2411
+ #: wppa-bestof-widget.php:200
2412
  #, fuzzy
2413
  msgid "The authors album(s)"
2414
  msgstr "Koukni na tuto fotku na %s"
2415
 
2416
+ #: wppa-bestof-widget.php:201
2417
  #, fuzzy
2418
  msgid "The photos in the authors album(s)"
2419
  msgstr "Koukni na tuto fotku na %s"
2420
 
2421
+ #: wppa-bestof-widget.php:202
2422
  #, fuzzy
2423
  msgid "All the authors photos"
2424
  msgstr "--- vše ---"
2425
 
2426
+ #: wppa-boxes-html.php:130 wppa-boxes-html.php:229
2427
  msgid "Photo search results"
2428
  msgstr "Výsledek vyhledávání fotek"
2429
 
2430
+ #: wppa-boxes-html.php:363 wppa-breadcrumb.php:136
2431
+ #: wppa-settings-autosave.php:385
 
 
 
 
 
 
 
 
 
 
2432
  #, fuzzy
2433
  msgid "Albums"
2434
  msgstr "Alba:"
2435
 
2436
+ #: wppa-boxes-html.php:369 wppa-breadcrumb.php:151
2437
  #, fuzzy
2438
  msgid "Photos"
2439
  msgstr "Foto"
2440
 
2441
+ #: wppa-boxes-html.php:388
2442
  msgid "Category"
2443
  msgstr ""
2444
 
2445
+ #: wppa-boxes-html.php:401 wppa-boxes-html.php:534
2446
  msgid "Text"
2447
  msgstr ""
2448
 
2449
+ #: wppa-boxes-html.php:417 wppa-boxes-html.php:471 wppa-boxes-html.php:617
2450
+ #: wppa-boxes-html.php:647
2451
  msgid "CTRL+Click to add/remove option."
2452
  msgstr ""
2453
 
2454
+ #: wppa-boxes-html.php:418 wppa-boxes-html.php:472 wppa-boxes-html.php:618
2455
+ #: wppa-boxes-html.php:648
2456
  msgid "Items must meet all selected options."
2457
  msgstr ""
2458
 
2459
+ #: wppa-boxes-html.php:526 wppa-settings-autosave.php:8182
2460
+ #: wppa-settings-autosave.php:8222 wppa-settings-autosave.php:8244
2461
+ #: wppa-settings-autosave.php:8290
2462
  msgid "Tag"
2463
  msgstr ""
2464
 
2465
+ #: wppa-boxes-html.php:542
2466
  msgid "Iptc"
2467
  msgstr ""
2468
 
2469
+ #: wppa-boxes-html.php:551
2470
  msgid "Exif"
2471
  msgstr ""
2472
 
2473
+ #: wppa-boxes-html.php:749 wppa-boxes-html.php:834
2474
  msgid "Submit"
2475
  msgstr ""
2476
 
2477
+ #: wppa-boxes-html.php:791 wppa-super-view-widget.php:14
2478
  #: wppa-super-view-widget.php:66
2479
  msgid "Super View Photos"
2480
  msgstr "Super View fotky"
2481
 
2482
+ #: wppa-boxes-html.php:822 wppa-settings-autosave.php:401
2483
+ #: wppa-settings-autosave.php:4346
2484
  #, fuzzy
2485
  msgid "Thumbnails"
2486
  msgstr "Označkované fotografie"
2487
 
2488
+ #: wppa-boxes-html.php:868
2489
  msgid "Tagged photos"
2490
  msgstr "Označkované fotografie"
2491
 
2492
+ #: wppa-boxes-html.php:882
2493
  msgid "Please select a tagcloud landing page in Table VI-C3b"
2494
  msgstr "Vyberte prosím cílovou stránku pro tagcloud v Table VI-C3b"
2495
 
2496
+ #: wppa-boxes-html.php:940
2497
  msgid "Multi Tagged photos"
2498
  msgstr "Multioznačkované fotografie"
2499
 
2500
+ #: wppa-boxes-html.php:954
2501
  msgid "Please select a multitag landing page in Table VI-C4b"
2502
  msgstr "Prosím vyberte multitag cílovou stránku v Table VI-C4b"
2503
 
2504
+ #: wppa-boxes-html.php:992
2505
  msgid "Please check the tag(s) that the photos must have"
2506
  msgstr "Zkontrolujte prosím tag(y), které fotky musí mít"
2507
 
2508
+ #: wppa-boxes-html.php:1021
2509
  msgid "And"
2510
  msgstr "a"
2511
 
2512
+ #: wppa-boxes-html.php:1032
2513
  msgid "Or"
2514
  msgstr "nebo"
2515
 
2516
+ #: wppa-boxes-html.php:1082
2517
  msgid "Find!"
2518
  msgstr "Najít!"
2519
 
2520
+ #: wppa-boxes-html.php:1109
2521
  #, fuzzy
2522
  msgid "Social media landing page"
2523
  msgstr "Vyberte prosím cílovou stránku pro super view widget v Table VI-C"
2524
 
2525
+ #: wppa-boxes-html.php:1134 wppa-utils.php:1572
2526
  #, php-format
2527
  msgid "See this image on %s"
2528
  msgstr "Koukni na tuto fotku na %s"
2529
 
2530
+ #: wppa-boxes-html.php:1159 wppa-qr-widget.php:40
2531
  msgid "QR code"
2532
  msgstr ""
2533
 
2534
+ #: wppa-boxes-html.php:1204
2535
  #, php-format
2536
  msgid "Tweet %s on Twitter"
2537
  msgstr "Tweet %s on Twitter"
2538
 
2539
+ #: wppa-boxes-html.php:1211
2540
  msgid "Share on Twitter"
2541
  msgstr "Sdílet %s na Pinterest"
2542
 
2543
+ #: wppa-boxes-html.php:1224
2544
  #, php-format
2545
  msgid "Share %s on Google+"
2546
  msgstr "Sdílet %s na Google +"
2547
 
2548
+ #: wppa-boxes-html.php:1232
2549
  msgid "Share on Google+"
2550
  msgstr "Sdílet %s na Google +"
2551
 
2552
+ #: wppa-boxes-html.php:1247
2553
  #, php-format
2554
  msgid "Share %s on Pinterest"
2555
  msgstr "Sdílet %s na Pinterest"
2556
 
2557
+ #: wppa-boxes-html.php:1256
2558
  msgid "Share on Pinterest"
2559
  msgstr "Sdílet %s na Pinterest"
2560
 
2561
+ #: wppa-boxes-html.php:1391
2562
  msgid "Comment on Facebook:"
2563
  msgstr "Komentovat na Facebooku:"
2564
 
2565
+ #: wppa-boxes-html.php:1492 wppa-upload.php:1135
2566
  msgid "Working..."
2567
  msgstr ""
2568
 
2569
+ #: wppa-boxes-html.php:1494 wppa-boxes-html.php:1497
2570
  #, fuzzy
2571
  msgid "Delete album"
2572
  msgstr "Album:"
2573
 
2574
+ #: wppa-boxes-html.php:1584
2575
  #, fuzzy
2576
  msgid "Create Album"
2577
  msgstr "Album:"
2578
 
2579
+ #: wppa-boxes-html.php:1629 wppa-boxes-html.php:2372
2580
  #, fuzzy
2581
  msgid "Enter album name."
2582
  msgstr "Zadejte název fotky"
2583
 
2584
+ #: wppa-boxes-html.php:1631 wppa-boxes-html.php:2374
2585
  #, fuzzy
2586
  msgid "Don't leave this blank!"
2587
  msgstr ""
2588
  "Necháte-li prázdné, původní název souboru(ů) se použije jako název fotky(ek)."
2589
 
2590
+ #: wppa-boxes-html.php:1650
2591
  #, fuzzy
2592
  msgid "Enter album description"
2593
  msgstr "Zadat/upravit popis fotky"
2594
 
2595
+ #: wppa-boxes-html.php:1672
2596
  #, fuzzy
2597
  msgid "Create album"
2598
  msgstr "Album:"
2599
 
2600
+ #: wppa-boxes-html.php:1728 wppa-boxes-html.php:1741 wppa-functions.php:3978
2601
  msgid "Max uploads reached"
2602
  msgstr "Max uploads dosiahol"
2603
 
2604
+ #: wppa-boxes-html.php:1803 wppa-upload.php:134
2605
  msgid "Upload Photo"
2606
  msgstr "Nahrát fotku"
2607
 
2608
+ #: wppa-boxes-html.php:1950
2609
  #, php-format
2610
  msgid ""
2611
  "You may upload up to %s photos at once if your browser supports HTML-5 "
2614
  "Můžete nahrát až %s fotek najednou, pokud váš prohlížeč podporuje hromadné "
2615
  "nahrávání souborů HTML5"
2616
 
2617
+ #: wppa-boxes-html.php:1958
2618
  #, php-format
2619
  msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
2620
  msgstr "Max. velikost fotek: %d %d (%2.1f megapixelů)"
2621
 
2622
+ #: wppa-boxes-html.php:1987 wppa-upload.php:123 wppa-upload.php:211
2623
  #: wppa-upload.php:258 wppa-upload.php:704
2624
  msgid "Apply watermark file:"
2625
  msgstr "Použít soubor s vodoznakem:"
2626
 
2627
+ #: wppa-boxes-html.php:2009 wppa-upload.php:128 wppa-upload.php:216
2628
  #: wppa-upload.php:263 wppa-upload.php:708
2629
  msgid "Position:"
2630
  msgstr "Pozice:"
2631
 
2632
+ #: wppa-boxes-html.php:2037
2633
  #, fuzzy
2634
  msgid ""
2635
  "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
2638
  msgstr ""
2639
  "Necháte-li prázdné, původní název souboru(ů) se použije jako název fotky(ek)."
2640
 
2641
+ #: wppa-boxes-html.php:2042
2642
  #, fuzzy
2643
  msgid ""
2644
  "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
2646
  msgstr ""
2647
  "Necháte-li prázdné, původní název souboru(ů) se použije jako název fotky(ek)."
2648
 
2649
+ #: wppa-boxes-html.php:2047
2650
  msgid ""
2651
  "If you leave this blank, the original filename will be used as photo name."
2652
  msgstr ""
2653
  "Necháte-li prázdné, původní název souboru(ů) se použije jako název fotky(ek)."
2654
 
2655
+ #: wppa-boxes-html.php:2061
2656
  msgid "Enter photo name."
2657
  msgstr "Zadejte název fotky"
2658
 
2659
+ #: wppa-boxes-html.php:2082
2660
  msgid "Enter/modify photo description"
2661
  msgstr "Zadat/upravit popis fotky"
2662
 
2663
+ #: wppa-boxes-html.php:2113
2664
  msgid "hidden"
2665
  msgstr ""
2666
 
2667
+ #: wppa-boxes-html.php:2182
2668
  msgid "Preview tags:"
2669
  msgstr ""
2670
 
2671
+ #: wppa-boxes-html.php:2195
2672
  msgid "Please select an album and try again"
2673
  msgstr "Vyberte prosím album a opakujte akci"
2674
 
2675
+ #: wppa-boxes-html.php:2209
2676
  #, fuzzy
2677
  msgid "Upload photo"
2678
  msgstr "Nahrát fotku"
2679
 
2680
+ #: wppa-boxes-html.php:2265
2681
  #, fuzzy
2682
  msgid "ERROR: unable to upload files."
2683
  msgstr "<b>Chyba: Neplatný pokus o nahrání souboru.</b>"
2684
 
2685
+ #: wppa-boxes-html.php:2314
2686
  #, fuzzy
2687
  msgid "Edit albuminfo"
2688
  msgstr "Upravit!"
2689
 
2690
+ #: wppa-boxes-html.php:2394
2691
  #, fuzzy
2692
  msgid "Album description:"
2693
  msgstr "Zadat/upravit popis fotky"
2694
 
2695
+ #: wppa-boxes-html.php:2413
2696
  #, fuzzy
2697
  msgid "Update album"
2698
  msgstr "Album:"
2699
 
2700
+ #: wppa-boxes-html.php:2487
2701
  msgid "wrote:"
2702
  msgstr "napsal:"
2703
 
2704
+ #: wppa-boxes-html.php:2541
2705
  msgid "Avatar"
2706
  msgstr ""
2707
 
2708
+ #: wppa-boxes-html.php:2584 wppa-links.php:768
2709
  msgid "Awaiting moderation"
2710
  msgstr "Čeká na moderování"
2711
 
2712
+ #: wppa-boxes-html.php:2587
2713
  msgid "Marked as spam"
2714
  msgstr "Označený jako spam"
2715
 
2716
+ #: wppa-boxes-html.php:2611
2717
  msgid "Edit!"
2718
  msgstr "Upravit!"
2719
 
2720
+ #: wppa-boxes-html.php:2615
2721
  msgid "Send!"
2722
  msgstr "Odeslat!"
2723
 
2724
+ #: wppa-boxes-html.php:2676
2725
  msgid "Your name:"
2726
  msgstr "Vaše jméno:"
2727
 
2728
+ #: wppa-boxes-html.php:2691
2729
  msgid "Your email:"
2730
  msgstr "Váš e-mail:"
2731
 
2732
+ #: wppa-boxes-html.php:2707
2733
  msgid "Your comment:"
2734
  msgstr "Váš komentář:"
2735
 
2736
+ #: wppa-boxes-html.php:2752
2737
  #, php-format
2738
  msgid "You must <a href=\"%s\">login</a> to enter a comment"
2739
  msgstr "Musíte se <a href=&quot;\"%s\"&quot;>přihlásit</a> k napsání komentáře"
2740
 
2741
+ #: wppa-boxes-html.php:2755
2742
  #, fuzzy
2743
  msgid "You must login to enter a comment"
2744
  msgstr "Musíte se <a href=&quot;\"%s\"&quot;>přihlásit</a> k napsání komentáře"
2745
 
2746
+ #: wppa-boxes-html.php:2767
2747
  #, fuzzy, php-format
2748
  msgid "%d comments"
2749
  msgstr "%d komentáře/ů"
2750
 
2751
+ #: wppa-boxes-html.php:2771
2752
  msgid "Leave a comment"
2753
  msgstr "Napsat komentář"
2754
 
2755
+ #: wppa-boxes-html.php:2812
2756
  msgid "Smilies are not available"
2757
  msgstr ""
2758
 
2759
+ #: wppa-boxes-html.php:2862
2760
  msgid "Show IPTC data"
2761
  msgstr "Zobrazit IPTC data"
2762
 
2763
+ #: wppa-boxes-html.php:2873
2764
  msgid "Hide IPTC data"
2765
  msgstr "Skrýt IPTC data"
2766
 
2767
+ #: wppa-boxes-html.php:2913
2768
  msgid "No IPTC data"
2769
  msgstr "Žádná IPTC data"
2770
 
2771
+ #: wppa-boxes-html.php:2960
2772
  msgid "Show EXIF data"
2773
  msgstr "Zobrazit EXIF data"
2774
 
2775
+ #: wppa-boxes-html.php:2971
2776
  msgid "Hide EXIF data"
2777
  msgstr "Skrýt EXIF data"
2778
 
2779
+ #: wppa-boxes-html.php:3013
2780
  msgid "No EXIF data"
2781
  msgstr "Žádná EXIF data"
2782
 
2783
+ #: wppa-boxes-html.php:3128 wppa-boxes-html.php:3133
2784
  #, fuzzy
2785
  msgid "< Previous"
2786
  msgstr "Predcházející"
2787
 
2788
+ #: wppa-boxes-html.php:3139 wppa-boxes-html.php:3144
2789
  #, fuzzy
2790
  msgid "Next >"
2791
  msgstr "Další"
2792
 
2793
+ #: wppa-boxes-html.php:3241 wppa-boxes-html.php:3300
2794
  #, fuzzy
2795
  msgid "See the authors albums"
2796
  msgstr "Koukni na tuto fotku na %s"
2797
 
2798
+ #: wppa-boxes-html.php:3245 wppa-boxes-html.php:3304
2799
  #, fuzzy
2800
  msgid "See the authors photos"
2801
  msgstr "Koukni na tuto fotku na %s"
2802
 
2803
+ #: wppa-boxes-html.php:3249 wppa-boxes-html.php:3308
2804
  #, fuzzy
2805
  msgid "See all the authors photos"
2806
  msgstr "--- vše ---"
2807
 
2808
+ #: wppa-boxes-html.php:3272
2809
  #, fuzzy, php-format
2810
  msgid "Photo by: %s"
2811
  msgstr "Fotka %s %s"
2812
 
2813
+ #: wppa-boxes-html.php:3273 wppa-boxes-html.php:3327
2814
  #, fuzzy, php-format
2815
  msgid "Max ratings: %s."
2816
  msgstr "Max uploads dosiahol"
2817
 
2818
+ #: wppa-boxes-html.php:3274 wppa-boxes-html.php:3328
2819
  #, fuzzy, php-format
2820
  msgid "Votes: %s."
2821
  msgstr "%s hodnocení"
2822
 
2823
+ #: wppa-boxes-html.php:3275 wppa-boxes-html.php:3329
2824
  #, php-format
2825
  msgid "Mean value: %4.2f."
2826
  msgstr ""
2827
 
2828
+ #: wppa-boxes-html.php:3282
2829
  #, fuzzy, php-format
2830
  msgid "Photo %s not found."
2831
  msgstr "Fotky nenalezeny."
2832
 
2833
+ #: wppa-boxes-html.php:3680 wppa-photo-admin-autosave.php:196
2834
+ #, fuzzy
2835
+ msgid "Refresh"
2836
+ msgstr "Ukončit a obnovit"
2837
+
2838
+ #: wppa-breadcrumb.php:98 wppa-settings-autosave.php:1453
2839
  msgid "Home"
2840
  msgstr "Domů"
2841
 
2842
+ #: wppa-breadcrumb.php:119
2843
  msgid "Post:"
2844
  msgstr "Příspěvek:"
2845
 
2846
+ #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:581
2847
  msgid "Page:"
2848
  msgstr "Strana:"
2849
 
2850
+ #: wppa-breadcrumb.php:139
2851
  msgid "with category:"
2852
  msgstr ""
2853
 
2854
+ #: wppa-breadcrumb.php:142 wppa-breadcrumb.php:157
2855
  #, fuzzy
2856
  msgid "with name:"
2857
  msgstr "Vaše jméno:"
2858
 
2859
+ #: wppa-breadcrumb.php:145 wppa-breadcrumb.php:161
2860
  msgid "with words:"
2861
  msgstr ""
2862
 
2863
+ #: wppa-breadcrumb.php:154
2864
  msgid "with tag:"
2865
  msgstr ""
2866
 
2867
+ #: wppa-breadcrumb.php:165
2868
  msgid "of owner:"
2869
  msgstr ""
2870
 
2871
+ #: wppa-breadcrumb.php:170
2872
  msgid "with iptc tag:"
2873
  msgstr ""
2874
 
2875
+ #: wppa-breadcrumb.php:170 wppa-breadcrumb.php:175
2876
  #, fuzzy
2877
  msgid "with content:"
2878
  msgstr "Vaše jméno:"
2879
 
2880
+ #: wppa-breadcrumb.php:175
2881
  msgid "with exif tag:"
2882
  msgstr ""
2883
 
2884
+ #: wppa-breadcrumb.php:183 wppa-breadcrumb.php:209 wppa-breadcrumb.php:266
2885
+ #: wppa-breadcrumb.php:284 wppa-breadcrumb.php:302 wppa-breadcrumb.php:320
2886
+ #: wppa-breadcrumb.php:338 wppa-breadcrumb.php:350 wppa-breadcrumb.php:362
2887
+ #: wppa-breadcrumb.php:374 wppa-breadcrumb.php:393
2888
  msgid "View the thumbnails"
2889
  msgstr "Prohlédnout náhledy"
2890
 
2891
+ #: wppa-breadcrumb.php:203
2892
  #, fuzzy, php-format
2893
  msgid "Searchresults from album %s and its subalbums"
2894
  msgstr "Uživatel %s nahrál fotku %s do alba %s"
2895
 
2896
+ #: wppa-breadcrumb.php:207 wppa-breadcrumb.php:212
2897
  msgid "Searchstring:"
2898
  msgstr "Hledat:"
2899
 
2900
+ #: wppa-breadcrumb.php:221 wppa-breadcrumb.php:239
2901
  #, fuzzy
2902
  msgid "Photos by EXIF date"
2903
  msgstr "Zobrazit EXIF data"
2904
 
2905
+ #: wppa-breadcrumb.php:225 wppa-breadcrumb.php:243
2906
  #, fuzzy
2907
  msgid "Photos by date of upload"
2908
  msgstr "Fotky nahrány "
2909
 
2910
+ #: wppa-breadcrumb.php:229 wppa-breadcrumb.php:247
2911
  msgid "Photos by date last modified"
2912
  msgstr ""
2913
 
2914
+ #: wppa-breadcrumb.php:259 wppa-breadcrumb.php:269
2915
  #, php-format
2916
  msgid "Photos by %s"
2917
  msgstr "Foto od %s"
2918
 
2919
+ #: wppa-breadcrumb.php:276 wppa-breadcrumb.php:294 wppa-breadcrumb.php:312
2920
+ #: wppa-breadcrumb.php:330 wppa-breadcrumb.php:408
2921
  msgid "Various albums"
2922
  msgstr "Různá alba"
2923
 
2924
+ #: wppa-breadcrumb.php:278 wppa-breadcrumb.php:296 wppa-breadcrumb.php:314
2925
+ #: wppa-breadcrumb.php:332 wppa-breadcrumb.php:412 wppa-lasten-widget.php:180
2926
  msgid "Albums:"
2927
  msgstr "Alba:"
2928
 
2929
+ #: wppa-breadcrumb.php:282 wppa-breadcrumb.php:287
2930
  msgid "Top rated photos"
2931
  msgstr "Najlepšie hodnotené fotografie"
2932
 
2933
+ #: wppa-breadcrumb.php:300 wppa-breadcrumb.php:305
2934
  msgid "Recently uploaded photos"
2935
  msgstr "Nedávno nahrané fotografie"
2936
 
2937
+ #: wppa-breadcrumb.php:318 wppa-breadcrumb.php:323 wppa-comment-widget.php:41
2938
  msgid "Recently commented photos"
2939
  msgstr "Nedávno komentované fotografie"
2940
 
2941
+ #: wppa-breadcrumb.php:336 wppa-breadcrumb.php:341 wppa-featen-widget.php:38
2942
  msgid "Featured photos"
2943
  msgstr "Nejlépe hodnocené fotky"
2944
 
2945
+ #: wppa-breadcrumb.php:348 wppa-breadcrumb.php:353
2946
  msgid "Related photos"
2947
  msgstr "Podobné fotky"
2948
 
2949
+ #: wppa-breadcrumb.php:360 wppa-breadcrumb.php:365
2950
  msgid "Tagged photos:"
2951
  msgstr "Otagované fotky:"
2952
 
2953
+ #: wppa-breadcrumb.php:360 wppa-breadcrumb.php:365
2954
  msgid "or"
2955
  msgstr "nebo"
2956
 
2957
+ #: wppa-breadcrumb.php:391 wppa-breadcrumb.php:396
2958
  msgid "Recently updated albums"
2959
  msgstr "Nedávno nahrané fotky"
2960
 
2961
+ #: wppa-breadcrumb.php:406
2962
  #, php-format
2963
  msgid "Various albums by %s"
2964
  msgstr "Další alba od %s"
2965
 
2966
+ #: wppa-breadcrumb.php:433 wppa-breadcrumb.php:448
2967
  msgid "Thumbnail view"
2968
  msgstr "Stránka s náhledy"
2969
 
2970
+ #: wppa-breadcrumb.php:437 wppa-breadcrumb.php:438 wppa-breadcrumb.php:453
2971
+ #: wppa-breadcrumb.php:454
2972
  msgid "Thumbs"
2973
  msgstr "Náhledy"
2974
 
2975
+ #: wppa-breadcrumb.php:579
2976
  msgid "Unpublished"
2977
  msgstr "Nepublikováno"
2978
 
2979
+ #: wppa-breadcrumb.php:609
2980
+ msgid "Found photos will meet the search criteria as follows:"
2981
+ msgstr ""
2982
+
2983
+ #: wppa-breadcrumb.php:612
2984
+ msgid "AND"
2985
+ msgstr ""
2986
+
2987
+ #: wppa-breadcrumb.php:616
2988
+ msgid "OR"
2989
+ msgstr ""
2990
+
2991
  #: wppa-cart.php:26
2992
  msgid "Buy now"
2993
  msgstr "Koupit nyní"
3088
  msgid "Linkpage:"
3089
  msgstr ""
3090
 
3091
+ #: wppa-comment-admin.php:224 wppa-settings-autosave.php:4517
3092
+ #: wppa-settings-autosave.php:7224
3093
  #, fuzzy
3094
  msgid "--- Please select a page ---"
3095
  msgstr "--- smazáno ---"
3129
  msgid "timestamp"
3130
  msgstr ""
3131
 
3132
+ #: wppa-comment-admin.php:256 wppa-photo-admin-autosave.php:1275
3133
  msgid "Bulk action:"
3134
  msgstr ""
3135
 
3160
  msgstr "Alba:"
3161
 
3162
  #: wppa-comment-admin.php:304 wppa-comment-admin.php:391
3163
+ #: wppa-settings-autosave.php:452 wppa-settings-autosave.php:614
3164
+ #: wppa-settings-autosave.php:636 wppa-settings-autosave.php:1336
3165
+ #: wppa-settings-autosave.php:1357 wppa-settings-autosave.php:2731
3166
+ #: wppa-settings-autosave.php:2752 wppa-settings-autosave.php:3063
3167
+ #: wppa-settings-autosave.php:3087 wppa-settings-autosave.php:4238
3168
+ #: wppa-settings-autosave.php:4259 wppa-settings-autosave.php:4435
3169
+ #: wppa-settings-autosave.php:4459 wppa-settings-autosave.php:5458
3170
+ #: wppa-settings-autosave.php:5966 wppa-settings-autosave.php:5988
3171
+ #: wppa-settings-autosave.php:6568 wppa-settings-autosave.php:6592
3172
+ #: wppa-settings-autosave.php:8160 wppa-settings-autosave.php:8181
3173
+ #: wppa-settings-autosave.php:8221 wppa-settings-autosave.php:8243
3174
+ #: wppa-settings-autosave.php:8289
3175
  msgid "#"
3176
  msgstr ""
3177
 
3205
  msgid "Reply to your comment on photo: %s on %s"
3206
  msgstr ""
3207
 
3208
+ #: wppa-comment-admin.php:359 wppa-functions.php:2111
3209
  msgid "Reply"
3210
  msgstr ""
3211
 
3212
+ #: wppa-comment-admin.php:370 wppa-photo-admin-autosave.php:828
3213
+ #: wppa-photo-admin-autosave.php:851 wppa-photo-admin-autosave.php:1002
3214
+ #: wppa-photo-admin-autosave.php:1012 wppa-photo-admin-autosave.php:1293
3215
+ #: wppa-photo-admin-autosave.php:1410 wppa-photo-admin-autosave.php:1422
3216
  msgid "Pending"
3217
  msgstr ""
3218
 
3219
+ #: wppa-comment-admin.php:371 wppa-photo-admin-autosave.php:1003
3220
+ #: wppa-photo-admin-autosave.php:1013
3221
  #, fuzzy
3222
  msgid "Approved"
3223
  msgstr "Potvrdit"
3224
 
3225
+ #: wppa-comment-admin.php:372 wppa-photo-admin-autosave.php:1004
3226
+ #: wppa-photo-admin-autosave.php:1014
3227
  msgid "Spam"
3228
  msgstr ""
3229
 
3241
  msgid "WPPA+ Comments on Photos"
3242
  msgstr "Komentovat fotky:"
3243
 
3244
+ #: wppa-comment-widget.php:15 wppa-comment-widget.php:117
3245
  #, fuzzy
3246
  msgid "Comments on Photos"
3247
  msgstr "Komentovat fotky:"
3251
  msgid "wrote"
3252
  msgstr "napsal:"
3253
 
3254
+ #: wppa-comment-widget.php:88 wppa-featen-widget.php:97
3255
  #: wppa-lasten-widget.php:120 wppa-potd-widget.php:134
3256
+ #: wppa-thumbnail-widget.php:116 wppa-topten-widget.php:155
3257
  msgid "Photo not found."
3258
  msgstr "Fotky nenalezeny."
3259
 
3260
+ #: wppa-common-functions.php:193 wppa-common-functions.php:196
3261
  msgid "Default photo album for"
3262
  msgstr "Přednastavené fotoalbum pro"
3263
 
3264
+ #: wppa-common-functions.php:541 wppa-common-functions.php:577
3265
  msgid "1 second"
3266
  msgstr "1 sekundu"
3267
 
3268
+ #: wppa-common-functions.php:542 wppa-common-functions.php:578
3269
+ #: wppa-functions.php:4262
3270
  msgid "seconds"
3271
  msgstr "sekund"
3272
 
3273
+ #: wppa-common-functions.php:546 wppa-common-functions.php:582
3274
  msgid "1 minute"
3275
  msgstr "1 minuta"
3276
 
3277
+ #: wppa-common-functions.php:547 wppa-common-functions.php:583
3278
+ #: wppa-functions.php:4261
3279
  msgid "minutes"
3280
  msgstr "minut"
3281
 
3282
+ #: wppa-common-functions.php:551 wppa-common-functions.php:587
3283
  msgid "1 hour"
3284
  msgstr "1 hodina"
3285
 
3286
+ #: wppa-common-functions.php:552 wppa-common-functions.php:588
3287
+ #: wppa-functions.php:4260
3288
  msgid "hours"
3289
  msgstr "hodin"
3290
 
3291
+ #: wppa-common-functions.php:556 wppa-common-functions.php:592
3292
  msgid "1 day"
3293
  msgstr "1 den"
3294
 
3295
+ #: wppa-common-functions.php:557 wppa-common-functions.php:593
3296
+ #: wppa-functions.php:4259
3297
  msgid "days"
3298
  msgstr "dní"
3299
 
3300
+ #: wppa-common-functions.php:561 wppa-common-functions.php:597
3301
  msgid "1 week"
3302
  msgstr "1 týden"
3303
 
3304
+ #: wppa-common-functions.php:562 wppa-common-functions.php:598
3305
+ #: wppa-functions.php:4258
3306
  msgid "weeks"
3307
  msgstr "týdnů"
3308
 
3309
+ #: wppa-common-functions.php:566 wppa-common-functions.php:602
3310
  msgid "1 month"
3311
  msgstr "1 měsíc"
3312
 
3313
+ #: wppa-common-functions.php:567 wppa-common-functions.php:603
3314
  msgid "months"
3315
  msgstr "měsíců"
3316
 
3317
+ #: wppa-common-functions.php:570 wppa-common-functions.php:606
3318
  msgid "1 year"
3319
  msgstr "1 rok"
3320
 
3321
+ #: wppa-common-functions.php:571 wppa-common-functions.php:607
3322
  msgid "years"
3323
  msgstr "let"
3324
 
3325
+ #: wppa-common-functions.php:829 wppa-common-functions.php:830
3326
  msgid "ERROR: Resized or copied image could not be created."
3327
  msgstr ""
3328
 
3329
+ #: wppa-common-functions.php:875 wppa-common-functions.php:876
3330
  #, php-format
3331
  msgid "ERROR: File %s is not a valid picture file."
3332
  msgstr ""
3333
 
3334
+ #: wppa-common-functions.php:1691
3335
  #, php-format
3336
  msgid ""
3337
  "Based on your server memory limit you should not upload images larger then "
3338
  "<strong>%d x %d (%2.1f MP)</strong>"
3339
  msgstr ""
3340
 
3341
+ #: wppa-common-functions.php:1966
3342
  #, fuzzy
3343
  msgid "- select an album -"
3344
  msgstr "Vyberte prosím album a opakujte akci"
3345
 
3346
+ #: wppa-common-functions.php:1978 wppa-items.php:373
3347
+ #: wppa-multitag-widget.php:77 wppa-multitag-widget.php:85
3348
+ #: wppa-slideshow-widget.php:201 wppa-tagcloud-widget.php:72
3349
+ #: wppa-tagcloud-widget.php:80
3350
  msgid "--- all ---"
3351
  msgstr "--- vše ---"
3352
 
3353
+ #: wppa-common-functions.php:1984
3354
  #, fuzzy
3355
  msgid "--- generic ---"
3356
  msgstr "--- žádné ---"
3357
 
3358
+ #: wppa-common-functions.php:1995
3359
  msgid "--- multiple see below ---"
3360
  msgstr ""
3361
 
3362
+ #: wppa-common-functions.php:2001
3363
  #, fuzzy
3364
  msgid "--- a selection box ---"
3365
  msgstr "--- smazáno ---"
3366
 
3367
+ #: wppa-common-functions.php:2035 wppa-items.php:369
3368
+ #: wppa-settings-autosave.php:7050 wppa-settings-autosave.php:7106
3369
  #: wppa-upload.php:1529
3370
  msgid "--- separate ---"
3371
  msgstr "--- samostatné ---"
3372
 
3373
+ #: wppa-common-functions.php:2133
3374
  #, fuzzy
3375
  msgid "Photo id ="
3376
  msgstr "Foto dne"
3377
 
3378
+ #: wppa-common-functions.php:2133
3379
  msgid "Value ="
3380
  msgstr ""
3381
 
3434
  msgid "n.a."
3435
  msgstr "n.a."
3436
 
3437
+ #: wppa-exif-iptc-common.php:214 wppa-utils.php:2371
3438
  msgid "Not Defined"
3439
  msgstr "Není definovaná"
3440
 
3441
+ #: wppa-exif-iptc-common.php:215 wppa-utils.php:2372
3442
  msgid "Manual"
3443
  msgstr "Manuál"
3444
 
3445
+ #: wppa-exif-iptc-common.php:216 wppa-utils.php:2373
3446
  msgid "Program AE"
3447
  msgstr "Program AE"
3448
 
3449
+ #: wppa-exif-iptc-common.php:217 wppa-utils.php:2374
3450
  msgid "Aperture-priority AE"
3451
  msgstr "Priorita clony AE"
3452
 
3453
+ #: wppa-exif-iptc-common.php:218 wppa-utils.php:2375
3454
  msgid "Shutter speed priority AE"
3455
  msgstr "Priorita závěrky rychlosti AE"
3456
 
3457
+ #: wppa-exif-iptc-common.php:219 wppa-utils.php:2376
3458
  msgid "Creative (Slow speed)"
3459
  msgstr "Creative (pomalá rýchlost)"
3460
 
3461
+ #: wppa-exif-iptc-common.php:220 wppa-utils.php:2377
3462
  msgid "Action (High speed)"
3463
  msgstr "Akce (vysoká rychlost)"
3464
 
3465
+ #: wppa-exif-iptc-common.php:221 wppa-utils.php:2378
3466
  msgid "Portrait"
3467
  msgstr "Portrét"
3468
 
3469
+ #: wppa-exif-iptc-common.php:222 wppa-utils.php:2379
3470
  msgid "Landscape"
3471
  msgstr "Krajina"
3472
 
3473
+ #: wppa-exif-iptc-common.php:223 wppa-utils.php:2380
3474
  msgid "Bulb"
3475
  msgstr "Žárovka"
3476
 
3477
+ #: wppa-exif-iptc-common.php:245 wppa-utils.php:2381
3478
  msgid "Average"
3479
  msgstr "Průměr"
3480
 
3481
+ #: wppa-exif-iptc-common.php:246 wppa-utils.php:2382
3482
  msgid "Center-weighted average"
3483
  msgstr "Vážený průmer"
3484
 
3485
+ #: wppa-exif-iptc-common.php:247 wppa-utils.php:2383
3486
  msgid "Spot"
3487
  msgstr "Spot"
3488
 
3489
+ #: wppa-exif-iptc-common.php:248 wppa-utils.php:2384
3490
  msgid "Multi-spot"
3491
  msgstr "Multi-spot"
3492
 
3493
+ #: wppa-exif-iptc-common.php:249 wppa-utils.php:2385
3494
  msgid "Multi-segment"
3495
  msgstr "Multi-segmentové"
3496
 
3497
+ #: wppa-exif-iptc-common.php:250 wppa-utils.php:2386
3498
  msgid "Partial"
3499
  msgstr "Částečné"
3500
 
3501
+ #: wppa-exif-iptc-common.php:251 wppa-settings-autosave.php:4363
3502
+ #: wppa-utils.php:2387
3503
  msgid "Other"
3504
  msgstr "Ostatní"
3505
 
3506
+ #: wppa-exif-iptc-common.php:287 wppa-utils.php:2388
3507
  msgid "No Flash"
3508
  msgstr "Bez blesku"
3509
 
3510
+ #: wppa-exif-iptc-common.php:289 wppa-utils.php:2389
3511
  msgid "Fired"
3512
  msgstr "Záblesk"
3513
 
3514
+ #: wppa-exif-iptc-common.php:291 wppa-utils.php:2390
3515
  msgid "Fired, Return not detected"
3516
  msgstr "Záblek, nedetekován návrat"
3517
 
3518
+ #: wppa-exif-iptc-common.php:293 wppa-utils.php:2391
3519
  msgid "Fired, Return detected"
3520
  msgstr "Záblek, detekován návrat"
3521
 
3522
+ #: wppa-exif-iptc-common.php:295 wppa-utils.php:2392
3523
  msgid "On, Did not fire"
3524
  msgstr "Zapnuto, bez záblesku"
3525
 
3526
+ #: wppa-exif-iptc-common.php:297 wppa-utils.php:2393
3527
  msgid "On, Fired"
3528
  msgstr "Zapnuto, záblesk"
3529
 
3530
+ #: wppa-exif-iptc-common.php:299 wppa-utils.php:2394
3531
  msgid "On, Return not detected"
3532
  msgstr "Zapnuto, nedetekován návrat"
3533
 
3534
+ #: wppa-exif-iptc-common.php:301 wppa-utils.php:2395
3535
  msgid "On, Return detected"
3536
  msgstr "Zapnuto, detekován návrat"
3537
 
3538
+ #: wppa-exif-iptc-common.php:303 wppa-utils.php:2396
3539
  msgid "Off, Did not fire"
3540
  msgstr "Vypnuto, bez záblesku"
3541
 
3542
+ #: wppa-exif-iptc-common.php:305 wppa-utils.php:2397
3543
  msgid "Off, Did not fire, Return not detected"
3544
  msgstr "Vypnuto, bez záblesku, nedetekován návrat"
3545
 
3546
+ #: wppa-exif-iptc-common.php:307 wppa-utils.php:2398
3547
  msgid "Auto, Did not fire"
3548
  msgstr "Automatika, bez záblesku"
3549
 
3550
+ #: wppa-exif-iptc-common.php:309 wppa-utils.php:2399
3551
  msgid "Auto, Fired"
3552
  msgstr "Automatika, záblesk"
3553
 
3554
+ #: wppa-exif-iptc-common.php:311 wppa-utils.php:2400
3555
  msgid "Auto, Fired, Return not detected"
3556
  msgstr "Automatika, záblesk, nedetekován návrat"
3557
 
3558
+ #: wppa-exif-iptc-common.php:313 wppa-utils.php:2401
3559
  msgid "Auto, Fired, Return detected"
3560
  msgstr "Automatika, záblesk, detekován návrat"
3561
 
3562
+ #: wppa-exif-iptc-common.php:315 wppa-utils.php:2402
3563
  msgid "No flash function"
3564
  msgstr "Žádné funkce blesku"
3565
 
3566
+ #: wppa-exif-iptc-common.php:317 wppa-utils.php:2403
3567
  msgid "Off, No flash function"
3568
  msgstr "Vypnuto, žádné funkce blesku"
3569
 
3570
+ #: wppa-exif-iptc-common.php:319 wppa-utils.php:2404
3571
  msgid "Fired, Red-eye reduction"
3572
  msgstr "Záblesk, redukce červených očí"
3573
 
3574
+ #: wppa-exif-iptc-common.php:321 wppa-utils.php:2405
3575
  msgid "Fired, Red-eye reduction, Return not detected"
3576
  msgstr "Záblesk, redukce červených očí, nedetekován návrat"
3577
 
3578
+ #: wppa-exif-iptc-common.php:323 wppa-utils.php:2406
3579
  msgid "Fired, Red-eye reduction, Return detected"
3580
  msgstr "Záblesk, redukce červených očí, detekován návrat"
3581
 
3582
+ #: wppa-exif-iptc-common.php:325 wppa-utils.php:2407
3583
  msgid "On, Red-eye reduction"
3584
  msgstr "Zapnuto, redukce červených očí"
3585
 
3586
+ #: wppa-exif-iptc-common.php:327 wppa-utils.php:2408
3587
  msgid "Red-eye reduction, Return not detected"
3588
  msgstr "Redukce červených očí, nedetekován návrat"
3589
 
3590
+ #: wppa-exif-iptc-common.php:329 wppa-utils.php:2409
3591
  msgid "On, Red-eye reduction, Return detected"
3592
  msgstr "Zapnuto, redukce červených očí, detekován návrat"
3593
 
3594
+ #: wppa-exif-iptc-common.php:331 wppa-utils.php:2410
3595
  msgid "Off, Red-eye reduction"
3596
  msgstr "Vypnuto, redukce červených očí"
3597
 
3598
+ #: wppa-exif-iptc-common.php:333 wppa-utils.php:2411
3599
  msgid "Auto, Did not fire, Red-eye reduction"
3600
  msgstr "Automatika, bez záblesku, redikce červených očí"
3601
 
3602
+ #: wppa-exif-iptc-common.php:335 wppa-utils.php:2412
3603
  msgid "Auto, Fired, Red-eye reduction"
3604
  msgstr "Automatika, záblesk, redikce červených očí"
3605
 
3606
+ #: wppa-exif-iptc-common.php:337 wppa-utils.php:2413
3607
  msgid "Auto, Fired, Red-eye reduction, Return not detected"
3608
  msgstr "Automatika, záblesk, redikce červených očí, nedetekován návrat"
3609
 
3610
+ #: wppa-exif-iptc-common.php:339 wppa-utils.php:2414
3611
  msgid "Auto, Fired, Red-eye reduction, Return detected"
3612
  msgstr "Automatika, záblesk, redikce červených očí, detekován návrat"
3613
 
3713
  msgid "WPPA+ Featured Photos"
3714
  msgstr "Nejlépe hodnocené fotky"
3715
 
3716
+ #: wppa-featen-widget.php:15 wppa-featen-widget.php:131
3717
  #, fuzzy
3718
  msgid "Featured Photos"
3719
  msgstr "Nejlépe hodnocené fotky"
3720
 
3721
+ #: wppa-featen-widget.php:75
3722
  msgid "View the featured photos"
3723
  msgstr "Zobrazit nejlépe hodnocené fotky"
3724
 
3726
  msgid "No related photos found."
3727
  msgstr "Žádná podobná fotka."
3728
 
3729
+ #: wppa-functions.php:944
3730
  #, php-format
3731
  msgid ""
3732
  "There are %s albums found. Only the first %s will be shown. Please refine "
3735
  "Bylo nalezeno %s alb. Je zobrazeno pouze prvních %s. Zpřesněte prosím "
3736
  "vyhledávací podmínku."
3737
 
3738
+ #: wppa-functions.php:1928 wppa-links.php:717 wppa-links.php:734
3739
+ #: wppa-thumbnails.php:588
3740
  msgid "Are you sure you want to remove this photo?"
3741
  msgstr "Opravdu chcete smazat tuto fotku?"
3742
 
3743
+ #: wppa-functions.php:2089
3744
  msgid "Comment edited"
3745
  msgstr "Komentář upraven"
3746
 
3747
+ #: wppa-functions.php:2094
3748
  #, fuzzy
3749
  msgid "Photo comment"
3750
  msgstr "Váš komentář:"
3751
 
3752
+ #: wppa-functions.php:2098
3753
  msgid "Comment on photo:"
3754
  msgstr "Komentovat fotky:"
3755
 
3756
+ #: wppa-functions.php:2109
3757
  msgid "wrote on photo"
3758
  msgstr "napsáno k fotce"
3759
 
3760
+ #: wppa-functions.php:2113
3761
  msgid "Moderate comment admin"
3762
  msgstr "Administrace moderování komentářů"
3763
 
3764
+ #: wppa-functions.php:2116 wppa-functions.php:4110 wppa-upload.php:1427
3765
  msgid "Moderate manage photo"
3766
  msgstr "Správa úprav fotek"
3767
 
3768
+ #: wppa-functions.php:2130
3769
  msgid "You receive this email as you are assigned to moderate"
3770
  msgstr "Dostáváte tento e-mail, protože jste přidedělen k jeho moderování"
3771
 
3772
+ #: wppa-functions.php:2142
3773
  msgid "You receive this email as administrator of the site"
3774
  msgstr "Dostáváte tento e-mail jako správce webu"
3775
 
3776
+ #: wppa-functions.php:2159
3777
  msgid "You receive this email as uploader of the photo"
3778
  msgstr "Dostanete tento e-mail jako autor nahrání fotek"
3779
 
3780
+ #: wppa-functions.php:2176
3781
  msgid "You receive this email as owner of the album"
3782
  msgstr "Dostáváte tento e-mail jako vlastník alba"
3783
 
3784
+ #: wppa-functions.php:2193
3785
  #, fuzzy
3786
  msgid "You receive this email because you commented this photo earlier."
3787
  msgstr "Dostáváte tento e-mail, protože jste přidedělen k jeho moderování"
3788
 
3789
+ #: wppa-functions.php:2219
3790
  msgid "Comment added"
3791
  msgstr "Komentář byl odeslán"
3792
 
3793
+ #: wppa-functions.php:2225
3794
  msgid ""
3795
  "Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the "
3796
  "computation."
3797
  msgstr "Bohužel, špatná odpověď.\\n\\nZkuste to znuvu."
3798
 
3799
+ #: wppa-functions.php:2236
3800
  msgid "Could not process comment.\\nProbably timed out."
3801
  msgstr ""
3802
  "Nelze zpravovat komentář.\\nPravděpodobně vypršel časový limit zpracování."
3803
 
3804
+ #: wppa-functions.php:2319
3805
  #, fuzzy, php-format
3806
  msgid "1 Comment"
3807
  msgid_plural "%s Comments"
3808
  msgstr[0] "1 komentář"
3809
  msgstr[1] "1 komentář"
3810
 
3811
+ #: wppa-functions.php:2355 wppa-links.php:1405
3812
  msgid "A video can not be printed or downloaded"
3813
  msgstr ""
3814
 
3815
+ #: wppa-functions.php:2794
3816
  #, fuzzy
3817
  msgid "ERROR: Illegal attempt to enter a rating."
3818
  msgstr "<b>Chyba: Neplatný pokus o zadání hodnocení.</b>"
3819
 
3820
+ #: wppa-functions.php:2807
3821
  #, fuzzy
3822
  msgid "ERROR: Illegal attempt to enter a comment."
3823
  msgstr "<b>Chyba: Neplatný pokus o zapsání komentáře.</b>"
3824
 
3825
+ #: wppa-functions.php:3860
3826
  #, fuzzy
3827
  msgid "ERROR: Illegal attempt to create an album."
3828
  msgstr "<b>Chyba: Neplatný pokus o zadání hodnocení.</b>"
3829
 
3830
+ #: wppa-functions.php:3864
3831
  #, fuzzy
3832
  msgid "Wrong captcha, please try again"
3833
  msgstr "Vyberte prosím album a opakujte akci"
3834
 
3835
+ #: wppa-functions.php:3877
3836
  #, fuzzy, php-format
3837
  msgid "Album #%s created"
3838
  msgstr "Uživatel %s nahrál fotku %s do alba %s"
3839
 
3840
+ #: wppa-functions.php:3882
3841
  #, fuzzy
3842
  msgid "Could not create album"
3843
  msgstr "Nelze vložit do databáze."
3844
 
3845
+ #: wppa-functions.php:3893
3846
  #, fuzzy
3847
  msgid "ERROR: Illegal attempt to upload a file."
3848
  msgstr "<b>Chyba: Neplatný pokus o nahrání souboru.</b>"
3849
 
3850
+ #: wppa-functions.php:3933
3851
  #, fuzzy
3852
  msgid "Photo upload"
3853
  msgstr "Fotky nahrány "
3854
 
3855
+ #: wppa-functions.php:3934
3856
  #, fuzzy, php-format
3857
  msgid "Photo successfully uploaded."
3858
  msgid_plural "%s photos successfully uploaded."
3859
  msgstr[0] "Fotka úspěšně nahrána."
3860
  msgstr[1] "Fotka úspěšně nahrána."
3861
 
3862
+ #: wppa-functions.php:3935
3863
  #, php-format
3864
  msgid "%s points added."
3865
  msgstr "Body (%s) byly přidány."
3866
 
3867
+ #: wppa-functions.php:3939
3868
  msgid "Upload failed"
3869
  msgstr "Nahrávání selhalo"
3870
 
3871
+ #: wppa-functions.php:3942
3872
  #, fuzzy, php-format
3873
  msgid "1 Upload failed"
3874
  msgid_plural "%s uploads failed."
3875
  msgstr[0] "Nahrávání selhalo"
3876
  msgstr[1] "Nahrávání selhalo"
3877
 
3878
+ #: wppa-functions.php:3982
3879
  msgid "Error during upload"
3880
  msgstr "Chyba počas upload"
3881
 
3882
+ #: wppa-functions.php:3987
3883
  msgid "Uploaded file is not an image"
3884
  msgstr "Nahraný súbor nie je obraz"
3885
 
3886
+ #: wppa-functions.php:3991
3887
  #, php-format
3888
  msgid ""
3889
  "Only gif, jpg and png image files are supported. Returned filetype = %d."
3890
  msgstr "Podporovány poute formáty gif, jpg a png. Zjištěný typ = % d."
3891
 
3892
+ #: wppa-functions.php:3997
3893
  #, fuzzy, php-format
3894
  msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
3895
  msgstr "Max. velikost fotek: %d %d (%2.1f megapixelů)"
3896
 
3897
+ #: wppa-functions.php:4003
3898
  #, fuzzy, php-format
3899
  msgid "Uploaded file %s already exists in this album."
3900
  msgstr "Uživatel %s nahrál fotku %s do alba %s"
3901
 
3902
+ #: wppa-functions.php:4011
3903
  #, php-format
3904
  msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
3905
  msgstr "Obrázek je příliš velký. Max. velikost fotky: %d %d (%2.1f megapixelu)"
3906
 
3907
+ #: wppa-functions.php:4034
3908
  msgid "Could not insert photo into db."
3909
  msgstr "Nelze vložit do databáze."
3910
 
3911
+ #: wppa-functions.php:4106 wppa-upload.php:1423
3912
  #, php-format
3913
  msgid "New photo uploaded: %s"
3914
  msgstr "Nová fotka nahrána: %s"
3915
 
3916
+ #: wppa-functions.php:4107 wppa-upload.php:1424
3917
  #, fuzzy, php-format
3918
  msgid "User %1$s uploaded photo %2$s into album %3$s"
3919
  msgstr "Uživatel %s nahrál fotku %s do alba %s"
3920
 
3921
+ #: wppa-functions.php:4109 wppa-upload.php:1426
3922
  msgid "This upload requires moderation"
3923
  msgstr "Toto nahrání vyžaduje úpravu"
3924
 
3925
+ #: wppa-functions.php:4113 wppa-upload.php:1430
3926
  msgid "Details:"
3927
  msgstr "Detaily:"
3928
 
3929
+ #: wppa-functions.php:4114 wppa-upload.php:1431 wppa-utils.php:812
3930
+ #: wppa-utils.php:824
3931
  msgid "Manage photo"
3932
  msgstr "Spravovat fotky"
3933
 
3934
+ #: wppa-functions.php:4256
3935
  msgid "You can upload after"
3936
  msgstr "Můžete nahrát po"
3937
 
3938
+ #: wppa-functions.php:4286 wppa-functions.php:4297 wppa-links.php:1034
3939
  #: wppa-non-admin.php:644
3940
  msgid "Download"
3941
  msgstr "Stáhnout"
3942
 
3943
+ #: wppa-functions.php:4290 wppa-functions.php:4301
3944
  #, fuzzy
3945
  msgid "Download:"
3946
  msgstr "Stáhnout"
3947
 
3948
+ #: wppa-functions.php:4324
3949
  msgid "Zoom in"
3950
  msgstr "Přiblížit"
3951
 
4393
  msgid "licence."
4394
  msgstr ""
4395
 
4396
+ #: wppa-items.php:226 wppa-thumbnails.php:1835
4397
  msgid "Gold medal"
4398
  msgstr ""
4399
 
4400
+ #: wppa-items.php:226 wppa-photo-admin-autosave.php:832
4401
+ #: wppa-photo-admin-autosave.php:854 wppa-photo-admin-autosave.php:1297
4402
+ #: wppa-photo-admin-autosave.php:1414 wppa-photo-admin-autosave.php:1425
4403
  #: wppa-widget-admin.php:126
4404
  msgid "Gold"
4405
  msgstr ""
4406
 
4407
+ #: wppa-items.php:227 wppa-thumbnails.php:1836
4408
  msgid "Silver medal"
4409
  msgstr ""
4410
 
4411
+ #: wppa-items.php:227 wppa-photo-admin-autosave.php:833
4412
+ #: wppa-photo-admin-autosave.php:855 wppa-photo-admin-autosave.php:1298
4413
+ #: wppa-photo-admin-autosave.php:1415 wppa-photo-admin-autosave.php:1426
4414
  #: wppa-widget-admin.php:127
4415
  msgid "Silver"
4416
  msgstr ""
4417
 
4418
+ #: wppa-items.php:228 wppa-thumbnails.php:1837
4419
  msgid "Bronze medal"
4420
  msgstr ""
4421
 
4422
+ #: wppa-items.php:228 wppa-photo-admin-autosave.php:834
4423
+ #: wppa-photo-admin-autosave.php:856 wppa-photo-admin-autosave.php:1299
4424
+ #: wppa-photo-admin-autosave.php:1416 wppa-photo-admin-autosave.php:1427
4425
  #: wppa-widget-admin.php:128
4426
  msgid "Bronze"
4427
  msgstr ""
4428
 
4429
+ #: wppa-items.php:277 wppa-items.php:431 wppa-settings-autosave.php:3220
4430
  msgid "none"
4431
  msgstr "žádný/á"
4432
 
4433
+ #: wppa-items.php:307 wppa-items.php:442 wppa-upload.php:99 wppa-upload.php:104
4434
  msgid "unknown"
4435
  msgstr "neznámý/á"
4436
 
4437
+ #: wppa-items.php:377 wppa-items.php:398
4438
  msgid "--- deleted ---"
4439
  msgstr "--- smazáno ---"
4440
 
4441
+ #: wppa-items.php:387
4442
  msgid "All Albums"
4443
  msgstr "Všechna alba"
4444
 
4467
  msgstr ""
4468
 
4469
  #: wppa-lasten-widget.php:186 wppa-thumbnail-widget.php:218
4470
+ #: wppa-topten-widget.php:228
4471
  msgid "Display:"
4472
  msgstr ""
4473
 
4474
  #: wppa-lasten-widget.php:188 wppa-thumbnail-widget.php:220
4475
+ #: wppa-topten-widget.php:230
4476
  #, fuzzy
4477
  msgid "thumbnail images"
4478
  msgstr "Stránka s náhledy"
4479
 
4480
  #: wppa-lasten-widget.php:189 wppa-thumbnail-widget.php:221
4481
+ #: wppa-topten-widget.php:231
4482
  #, fuzzy
4483
  msgid "photo names"
4484
  msgstr "Zadejte název fotky"
4532
  msgid "Scheduled for %s"
4533
  msgstr ""
4534
 
4535
+ #: wppa-links.php:975 wppa-links.php:978 wppa-slideshow.php:718
4536
  msgid "Previous"
4537
  msgstr "Predcházející"
4538
 
4539
  #: wppa-links.php:985 wppa-links.php:988 wppa-non-admin.php:590
4540
+ #: wppa-slideshow.php:721
4541
  msgid "Next"
4542
  msgstr "Další"
4543
 
4559
  msgid "Error"
4560
  msgstr ""
4561
 
4562
+ #: wppa-maintenance.php:119
4563
  #, fuzzy
4564
  msgid "Orphan photos"
4565
  msgstr "Nahrát fotku"
4566
 
4567
+ #: wppa-maintenance.php:119
4568
  msgid "This album contains refound lost photos"
4569
  msgstr ""
4570
 
4571
+ #: wppa-maintenance.php:666 wppa-photo-admin-autosave.php:1708
4572
+ #: wppa-photo-admin-autosave.php:1729 wppa-setup.php:338 wppa.php:370
4573
+ #: wppa.php:371
4574
  #, fuzzy
4575
  msgid "Required"
4576
  msgstr "Záblesk"
4577
 
4578
+ #: wppa-maintenance.php:745
4579
  msgid "There are no index items."
4580
  msgstr ""
4581
 
4582
+ #: wppa-maintenance.php:759
4583
  msgid "There are no error log messages"
4584
  msgstr ""
4585
 
4586
+ #: wppa-maintenance.php:827
4587
  #, fuzzy
4588
  msgid "There are no ratings"
4589
  msgstr "Jsou"
4590
 
4591
+ #: wppa-maintenance.php:888
4592
  msgid "There are no active sessions"
4593
  msgstr ""
4594
 
4601
  msgid "Photo Tags Filter"
4602
  msgstr "Foto dne"
4603
 
4604
+ #: wppa-multitag-widget.php:74
4605
  msgid "No of columns:"
4606
  msgstr ""
4607
 
4608
+ #: wppa-multitag-widget.php:75 wppa-tagcloud-widget.php:70
4609
  msgid "Select multiple tags or --- all ---:"
4610
  msgstr ""
4611
 
4623
  msgid "Keys: f = next mode; escape = exit; d = dismiss this notice."
4624
  msgstr ""
4625
 
4626
+ #: wppa-non-admin.php:581 wppa-settings-autosave.php:3374
4627
+ #: wppa-slideshow.php:217
4628
  msgid "Start"
4629
  msgstr "Spustit"
4630
 
4632
  msgid "Stop"
4633
  msgstr "Zastavit"
4634
 
4635
+ #: wppa-non-admin.php:583 wppa-slideshow.php:216
4636
  msgid "Slower"
4637
  msgstr "Pomaleji"
4638
 
4639
+ #: wppa-non-admin.php:584 wppa-slideshow.php:218
4640
  msgid "Faster"
4641
  msgstr "Rychleji"
4642
 
4656
  msgid "Prev."
4657
  msgstr "Předchozí"
4658
 
4659
+ #: wppa-non-admin.php:591 wppa-slideshow.php:562 wppa-slideshow.php:566
4660
+ #: wppa-slideshow.php:612
4661
  msgid "Average&nbsp;rating"
4662
  msgstr "Průměrné hodnocení"
4663
 
4664
+ #: wppa-non-admin.php:592 wppa-slideshow.php:587 wppa-slideshow.php:592
4665
+ #: wppa-slideshow.php:597
4666
  msgid "My&nbsp;rating"
4667
  msgstr "Moje&nbsp;hodnocení"
4668
 
4741
  msgid "Photo %s has been removed."
4742
  msgstr "Fotka %s byla odebrána."
4743
 
4744
+ #: wppa-photo-admin-autosave.php:144 wppa-photo-admin-autosave.php:1462
4745
  #, fuzzy
4746
  msgid "No photos matching your search criteria."
4747
  msgstr "Žádné fotky neodpovídají zadaným kritériím vyhledávání."
4748
 
4749
+ #: wppa-photo-admin-autosave.php:147 wppa-photo-admin-autosave.php:1465
4750
  #: wppa-widget-admin.php:210
4751
  #, fuzzy
4752
  msgid "No photos yet in this album."
4788
  msgid "bottom - right"
4789
  msgstr ""
4790
 
4791
+ #: wppa-photo-admin-autosave.php:178
4792
  #, fuzzy
4793
  msgid "Preview:"
4794
  msgstr "Predcházející"
4795
 
4796
+ #: wppa-photo-admin-autosave.php:180
4797
  #, php-format
4798
  msgid "Album: %d<br />(%s)"
4799
  msgstr ""
4800
 
4801
+ #: wppa-photo-admin-autosave.php:183
4802
  msgid "Rotate"
4803
  msgstr ""
4804
 
4805
+ #: wppa-photo-admin-autosave.php:184
4806
  #, fuzzy
4807
  msgid "Are you sure you want to rotate this photo left?"
4808
  msgstr "Opravdu chcete smazat tuto fotku?"
4809
 
4810
+ #: wppa-photo-admin-autosave.php:186
4811
  #, fuzzy
4812
  msgid "Are you sure you want to rotate this photo 180&deg;?"
4813
  msgstr "Opravdu chcete smazat tuto fotku?"
4814
 
4815
+ #: wppa-photo-admin-autosave.php:188
4816
  #, fuzzy
4817
  msgid "Are you sure you want to rotate this photo right?"
4818
  msgstr "Opravdu chcete smazat tuto fotku?"
4819
 
4820
+ #: wppa-photo-admin-autosave.php:193
4821
  msgid "If it says 'Photo rotated', the photo is rotated."
4822
  msgstr ""
4823
 
4824
+ #: wppa-photo-admin-autosave.php:197
 
 
 
 
 
4825
  #, php-format
4826
  msgid "If it says 'Photo rotated', the photo is rotated. %s the page."
4827
  msgstr ""
4828
 
4829
+ #: wppa-photo-admin-autosave.php:211
4830
  msgid "Preview fullsize video"
4831
  msgstr ""
4832
 
4833
+ #: wppa-photo-admin-autosave.php:226
4834
  #, fuzzy
4835
  msgid "Preview fullsize photo"
4836
  msgstr "Předcházející fotku"
4837
 
4838
+ #: wppa-photo-admin-autosave.php:241
4839
  msgid "Audio disabled"
4840
  msgstr ""
4841
 
4842
+ #: wppa-photo-admin-autosave.php:251
4843
  #, fuzzy
4844
  msgid "Upload:"
4845
  msgstr "Nahrát fotku"
4846
 
4847
+ #: wppa-photo-admin-autosave.php:257 wppa-photo-admin-autosave.php:279
4848
  msgid "local time"
4849
  msgstr ""
4850
 
4851
+ #: wppa-photo-admin-autosave.php:265 wppa-potd-widget.php:157
4852
  msgid "By:"
4853
  msgstr ""
4854
 
4855
+ #: wppa-photo-admin-autosave.php:303
4856
  #, fuzzy
4857
  msgid "Rating:"
4858
  msgstr "Hlasování: %s"
4859
 
4860
+ #: wppa-photo-admin-autosave.php:309
4861
  msgid "Entries:"
4862
  msgstr ""
4863
 
4864
+ #: wppa-photo-admin-autosave.php:309
4865
  msgid "Mean value:"
4866
  msgstr ""
4867
 
4868
+ #: wppa-photo-admin-autosave.php:316
4869
  #, php-format
4870
  msgid "Disliked by %d visitors"
4871
  msgstr ""
4872
 
4873
+ #: wppa-photo-admin-autosave.php:320
4874
  #, php-format
4875
  msgid "%d pending votes."
4876
  msgstr ""
4877
 
4878
+ #: wppa-photo-admin-autosave.php:330
4879
  #, fuzzy
4880
  msgid "Views"
4881
  msgstr "Ukázat: "
4882
 
4883
+ #: wppa-photo-admin-autosave.php:341
4884
  #, fuzzy
4885
  msgid "Photo sort order #:"
4886
  msgstr "Fotky nenalezeny."
4887
 
4888
+ #: wppa-photo-admin-autosave.php:354
4889
  #, fuzzy
4890
  msgid "Are you sure you want to move this photo?"
4891
  msgstr "Opravdu chcete smazat tuto fotku?"
4892
 
4893
+ #: wppa-photo-admin-autosave.php:354
4894
  #, fuzzy
4895
  msgid "Please select an album to move the photo to first."
4896
  msgstr "Vyberte prosím album a opakujte akci"
4897
 
4898
+ #: wppa-photo-admin-autosave.php:354
4899
  #, fuzzy
4900
  msgid "Move photo to"
4901
  msgstr "Spravovat fotky"
4902
 
4903
+ #: wppa-photo-admin-autosave.php:363
4904
  #, fuzzy
4905
  msgid "Are you sure you want to copy this photo?"
4906
  msgstr "Opravdu chcete smazat tuto fotku?"
4907
 
4908
+ #: wppa-photo-admin-autosave.php:363
4909
  #, fuzzy
4910
  msgid "Please select an album to copy the photo to first."
4911
  msgstr "Vyberte prosím album a opakujte akci"
4912
 
4913
+ #: wppa-photo-admin-autosave.php:363
4914
  msgid "Copy photo to"
4915
  msgstr ""
4916
 
4917
+ #: wppa-photo-admin-autosave.php:375 wppa-photo-admin-autosave.php:1346
4918
  #, fuzzy
4919
  msgid "Are you sure you want to delete this photo?"
4920
  msgstr "Opravdu chcete smazat tuto fotku?"
4921
 
4922
+ #: wppa-photo-admin-autosave.php:375
4923
  #, fuzzy
4924
  msgid "Delete photo"
4925
  msgstr "Podobné fotky"
4926
 
4927
+ #: wppa-photo-admin-autosave.php:385
4928
  msgid "Autopage Permalink:"
4929
  msgstr ""
4930
 
4931
+ #: wppa-photo-admin-autosave.php:398
4932
  #, fuzzy
4933
  msgid "Link url:"
4934
  msgstr "Odkaz na"
4935
 
4936
+ #: wppa-photo-admin-autosave.php:403
4937
  msgid "Same tab"
4938
  msgstr ""
4939
 
4940
+ #: wppa-photo-admin-autosave.php:404 wppa-settings-autosave.php:4464
4941
+ #: wppa-settings-autosave.php:5463
4942
  #, fuzzy
4943
  msgid "New tab"
4944
  msgstr "Album:"
4945
 
4946
+ #: wppa-photo-admin-autosave.php:412
4947
  #, fuzzy
4948
  msgid "Link title:"
4949
  msgstr "Odkaz na"
4950
 
4951
+ #: wppa-photo-admin-autosave.php:421
4952
  msgid ""
4953
  "If you want this link to be used, check 'PS Overrule' checkbox in table VI."
4954
  msgstr ""
4955
 
4956
+ #: wppa-photo-admin-autosave.php:432
4957
  msgid "HTML Alt attribute:"
4958
  msgstr ""
4959
 
4960
+ #: wppa-photo-admin-autosave.php:452
4961
  #, fuzzy
4962
  msgid "Filename:"
4963
  msgstr "Vaše jméno:"
4964
 
4965
+ #: wppa-photo-admin-autosave.php:458
4966
  #, fuzzy
4967
  msgid "Update file"
4968
  msgstr "Album:"
4969
 
4970
+ #: wppa-photo-admin-autosave.php:469 wppa-settings-autosave.php:2954
4971
  msgid "Upload"
4972
  msgstr "Nahrát fotku"
4973
 
4974
+ #: wppa-photo-admin-autosave.php:479
4975
  msgid "Video size:"
4976
  msgstr ""
4977
 
4978
+ #: wppa-photo-admin-autosave.php:485 wppa-slideshow-widget.php:203
4979
  msgid "Width:"
4980
  msgstr ""
4981
 
4982
+ #: wppa-photo-admin-autosave.php:488 wppa-photo-admin-autosave.php:496
4983
  #, php-format
4984
  msgid "pix, (0=default:%s)"
4985
  msgstr ""
4986
 
4987
+ #: wppa-photo-admin-autosave.php:493 wppa-slideshow-widget.php:204
4988
  msgid "Height:"
4989
  msgstr ""
4990
 
4991
+ #: wppa-photo-admin-autosave.php:504 wppa-photo-admin-autosave.php:526
4992
  msgid "Formats:"
4993
  msgstr ""
4994
 
4995
+ #: wppa-photo-admin-autosave.php:512 wppa-photo-admin-autosave.php:534
4996
  msgid "Filesize:"
4997
  msgstr ""
4998
 
4999
+ #: wppa-photo-admin-autosave.php:547
5000
  #, fuzzy
5001
  msgid "Poster:"
5002
  msgstr "Příspěvek:"
5003
 
5004
+ #: wppa-photo-admin-autosave.php:547
5005
  #, fuzzy
5006
  msgid "Photo sizes:"
5007
  msgstr "Foto"
5008
 
5009
+ #: wppa-photo-admin-autosave.php:553
5010
  msgid "Source file:"
5011
  msgstr ""
5012
 
5013
+ #: wppa-photo-admin-autosave.php:566
5014
  msgid "Remake display file and thumbnail file"
5015
  msgstr ""
5016
 
5017
+ #: wppa-photo-admin-autosave.php:566
5018
  msgid "Remake files"
5019
  msgstr ""
5020
 
5021
+ #: wppa-photo-admin-autosave.php:571 wppa-photo-admin-autosave.php:596
5022
+ #: wppa-photo-admin-autosave.php:619
5023
  msgid "Unavailable"
5024
  msgstr ""
5025
 
5026
+ #: wppa-photo-admin-autosave.php:581
5027
  msgid "Display file:"
5028
  msgstr ""
5029
 
5030
+ #: wppa-photo-admin-autosave.php:606
5031
  #, fuzzy
5032
  msgid "Thumbnail file:"
5033
  msgstr "Stránka s náhledy"
5034
 
5035
+ #: wppa-photo-admin-autosave.php:625
5036
  #, fuzzy
5037
  msgid "Remake thumbnail file"
5038
  msgstr "Stránka s náhledy"
5039
 
5040
+ #: wppa-photo-admin-autosave.php:625 wppa-settings-autosave.php:6181
5041
  msgid "Remake"
5042
  msgstr ""
5043
 
5044
+ #: wppa-photo-admin-autosave.php:636
5045
+ #, fuzzy
5046
+ msgid "Stereophoto:"
5047
+ msgstr "fotka"
5048
+
5049
+ #: wppa-photo-admin-autosave.php:640
5050
+ msgid "no stereo image or ready anaglyph"
5051
+ msgstr ""
5052
+
5053
+ #: wppa-photo-admin-autosave.php:641
5054
+ msgid "Left - right stereo image"
5055
+ msgstr ""
5056
+
5057
+ #: wppa-photo-admin-autosave.php:642
5058
+ msgid "Right - left stereo image"
5059
+ msgstr ""
5060
+
5061
+ #: wppa-photo-admin-autosave.php:648
5062
+ #, fuzzy
5063
+ msgid "Images:"
5064
+ msgstr "Strana:"
5065
+
5066
+ #: wppa-photo-admin-autosave.php:678
5067
  #, fuzzy
5068
  msgid "Location:"
5069
  msgstr "Pozice:"
5070
 
5071
+ #: wppa-photo-admin-autosave.php:686
5072
  msgid "Lat:"
5073
  msgstr ""
5074
 
5075
+ #: wppa-photo-admin-autosave.php:687
5076
  msgid "Lon:"
5077
  msgstr ""
5078
 
5079
+ #: wppa-photo-admin-autosave.php:689
5080
  msgid "Refresh the page after changing to see the degrees being updated"
5081
  msgstr ""
5082
 
5083
+ #: wppa-photo-admin-autosave.php:699
5084
  #, fuzzy
5085
  msgid "Photoname:"
5086
  msgstr "Foto dne"
5087
 
5088
+ #: wppa-photo-admin-autosave.php:705
5089
  #, fuzzy
5090
  msgid "Update Photo name"
5091
  msgstr "Zadejte název fotky"
5092
 
5093
+ #: wppa-photo-admin-autosave.php:731
5094
  #, fuzzy
5095
  msgid "Update Photo description"
5096
  msgstr "Zadat/upravit popis fotky"
5097
 
5098
+ #: wppa-photo-admin-autosave.php:789
5099
  msgid "Tags:"
5100
  msgstr ""
5101
 
5102
+ #: wppa-photo-admin-autosave.php:797
5103
  msgid "Separate tags with commas."
5104
  msgstr ""
5105
 
5106
+ #: wppa-photo-admin-autosave.php:808
5107
  #, fuzzy
5108
  msgid "No tags yet"
5109
  msgstr "Zatím nebylo založeno žádné album"
5110
 
5111
+ #: wppa-photo-admin-autosave.php:820
5112
  msgid "Status:"
5113
  msgstr ""
5114
 
5115
+ #: wppa-photo-admin-autosave.php:829 wppa-photo-admin-autosave.php:852
5116
+ #: wppa-photo-admin-autosave.php:1294 wppa-photo-admin-autosave.php:1411
5117
+ #: wppa-photo-admin-autosave.php:1423 wppa-widget-admin.php:124
5118
  #, fuzzy
5119
  msgid "Publish"
5120
  msgstr "Nepublikováno"
5121
 
5122
+ #: wppa-photo-admin-autosave.php:831 wppa-photo-admin-autosave.php:853
5123
+ #: wppa-photo-admin-autosave.php:1296 wppa-photo-admin-autosave.php:1413
5124
  #: wppa-widget-admin.php:125
5125
  #, fuzzy
5126
  msgid "Featured"
5127
  msgstr "Nejlépe hodnocené fotky"
5128
 
5129
+ #: wppa-photo-admin-autosave.php:835 wppa-photo-admin-autosave.php:857
5130
+ #: wppa-photo-admin-autosave.php:1300 wppa-photo-admin-autosave.php:1417
5131
+ #: wppa-photo-admin-autosave.php:1428
5132
  msgid "Scheduled"
5133
  msgstr ""
5134
 
5135
+ #: wppa-photo-admin-autosave.php:836 wppa-photo-admin-autosave.php:858
5136
+ #: wppa-photo-admin-autosave.php:1301 wppa-photo-admin-autosave.php:1418
5137
+ #: wppa-photo-admin-autosave.php:1429
5138
  msgid "Private"
5139
  msgstr ""
5140
 
5141
+ #: wppa-photo-admin-autosave.php:867
5142
  msgid ""
5143
  "Note: Featured photos should have a descriptive name; a name a search engine "
5144
  "will look for!"
5145
  msgstr ""
5146
 
5147
+ #: wppa-photo-admin-autosave.php:877
5148
  msgid "Watermark:"
5149
  msgstr ""
5150
 
5151
+ #: wppa-photo-admin-autosave.php:884 wppa-photo-admin-autosave.php:897
5152
  msgid "File:"
5153
  msgstr ""
5154
 
5155
+ #: wppa-photo-admin-autosave.php:889 wppa-photo-admin-autosave.php:898
5156
  msgid "Pos:"
5157
  msgstr ""
5158
 
5159
+ #: wppa-photo-admin-autosave.php:893
5160
  #, fuzzy
5161
  msgid "Apply watermark"
5162
  msgstr "Použít soubor s vodoznakem:"
5163
 
5164
+ #: wppa-photo-admin-autosave.php:893
5165
  msgid "Are you sure? Once applied it can not be removed!"
5166
  msgstr ""
5167
 
5168
+ #: wppa-photo-admin-autosave.php:893
5169
  msgid "And I do not know if there is already a watermark on this photo"
5170
  msgstr ""
5171
 
5172
+ #: wppa-photo-admin-autosave.php:903
5173
  #, fuzzy
5174
  msgid "Not configured"
5175
  msgstr "Není definovaná"
5176
 
5177
+ #: wppa-photo-admin-autosave.php:917
5178
  #, php-format
5179
  msgid "Video %s is not modified yet"
5180
  msgstr ""
5181
 
5182
+ #: wppa-photo-admin-autosave.php:920
5183
  #, fuzzy, php-format
5184
  msgid "Photo %s is not modified yet"
5185
  msgstr "Fotky nenalezeny."
5186
 
5187
+ #: wppa-photo-admin-autosave.php:939
5188
  msgid "Single image shortcode"
5189
  msgstr ""
5190
 
5191
+ #: wppa-photo-admin-autosave.php:945
5192
  msgid "Permalink"
5193
  msgstr ""
5194
 
5195
+ #: wppa-photo-admin-autosave.php:950
5196
  msgid "Hi resolution url"
5197
  msgstr ""
5198
 
5199
+ #: wppa-photo-admin-autosave.php:955
5200
  msgid "Display file url"
5201
  msgstr ""
5202
 
5203
+ #: wppa-photo-admin-autosave.php:961
5204
  #, fuzzy
5205
  msgid "Thumbnail file url"
5206
  msgstr "Stránka s náhledy"
5207
 
5208
+ #: wppa-photo-admin-autosave.php:1005 wppa-photo-admin-autosave.php:1015
5209
  msgid "Trash"
5210
  msgstr ""
5211
 
5212
+ #: wppa-photo-admin-autosave.php:1131
5213
  #, php-format
5214
  msgid "Time is out after processing %d out of %d items."
5215
  msgstr ""
5216
 
5217
+ #: wppa-photo-admin-autosave.php:1144
5218
  #, php-format
5219
  msgid "%d photos deleted."
5220
  msgstr ""
5221
 
5222
+ #: wppa-photo-admin-autosave.php:1147
5223
  #, php-format
5224
  msgid "%1$s photos moved to album %2$s."
5225
  msgstr ""
5226
 
5227
+ #: wppa-photo-admin-autosave.php:1150
5228
  #, fuzzy, php-format
5229
  msgid "%1$s photos copied to album %2$s."
5230
  msgstr "Uživatel %s nahrál fotku %s do alba %s"
5231
 
5232
+ #: wppa-photo-admin-autosave.php:1153
5233
  #, php-format
5234
  msgid "Changed status to %1$s on %2$s photos."
5235
  msgstr ""
5236
 
5237
+ #: wppa-photo-admin-autosave.php:1156
5238
  #, php-format
5239
  msgid "Changed owner to %1$s on %2$s photos."
5240
  msgstr ""
5241
 
5242
+ #: wppa-photo-admin-autosave.php:1159
5243
  #, fuzzy, php-format
5244
  msgid "%d photos processed."
5245
  msgstr "%s fotek úspěšně nahráno."
5246
 
5247
+ #: wppa-photo-admin-autosave.php:1279
5248
  msgid "Move to"
5249
  msgstr ""
5250
 
5251
+ #: wppa-photo-admin-autosave.php:1280
5252
  msgid "Copy to"
5253
  msgstr ""
5254
 
5255
+ #: wppa-photo-admin-autosave.php:1282
5256
  msgid "Set status to"
5257
  msgstr ""
5258
 
5259
+ #: wppa-photo-admin-autosave.php:1285
5260
  msgid "Set owner to"
5261
  msgstr ""
5262
 
5263
+ #: wppa-photo-admin-autosave.php:1292
5264
  #, fuzzy
5265
  msgid "- select a status -"
5266
  msgstr "Vyberte prosím album a opakujte akci"
5267
 
5268
+ #: wppa-photo-admin-autosave.php:1307
5269
  #, fuzzy
5270
  msgid "- select an owner -"
5271
  msgstr "Vyberte prosím album a opakujte akci"
5272
 
5273
+ #: wppa-photo-admin-autosave.php:1319
5274
  msgid "Doit!"
5275
  msgstr ""
5276
 
5277
+ #: wppa-photo-admin-autosave.php:1321
5278
  msgid ""
5279
  "Pressing this button will reload the page after executing the selected action"
5280
  msgstr ""
5281
 
5282
+ #: wppa-photo-admin-autosave.php:1328 wppa-photo-admin-autosave.php:1447
5283
+ #: wppa-settings-autosave.php:7529
5284
  #, fuzzy
5285
  msgid "Preview"
5286
  msgstr "Predcházející"
5287
 
5288
+ #: wppa-photo-admin-autosave.php:1333 wppa-photo-admin-autosave.php:1452
5289
  msgid "Remark"
5290
  msgstr ""
5291
 
5292
+ #: wppa-photo-admin-autosave.php:1438
5293
  #, fuzzy
5294
  msgid "Not modified"
5295
  msgstr "Není definovaná"
5296
 
5297
+ #: wppa-photo-admin-autosave.php:1470
5298
  #, php-format
5299
  msgid "Page %d is empty, try <a href=\"%s\" >page %d</a>."
5300
  msgstr ""
5301
 
5302
+ #: wppa-photo-admin-autosave.php:1580
5303
  msgid ""
5304
  "Setting photo sequence order has only effect if the photo order method is "
5305
  "set to <b>Order#</b>"
5306
  msgstr ""
5307
 
5308
+ #: wppa-photo-admin-autosave.php:1639
5309
  msgid "Id: "
5310
  msgstr ""
5311
 
5312
+ #: wppa-photo-admin-autosave.php:1640 wppa-settings-autosave.php:405
5313
  msgid "Video"
5314
  msgstr ""
5315
 
5316
+ #: wppa-photo-admin-autosave.php:1641 wppa-settings-autosave.php:386
5317
  msgid "Audio"
5318
  msgstr ""
5319
 
5320
+ #: wppa-photo-admin-autosave.php:1642
5321
  msgid "Ord: "
5322
  msgstr ""
5323
 
5324
+ #: wppa-photo-admin-autosave.php:1655
5325
  #, fuzzy
5326
  msgid "The album is empty."
5327
  msgstr "Žádné album ještě není definované."
5328
 
5329
+ #: wppa-photo-admin-autosave.php:1755
5330
  msgid "Combined"
5331
  msgstr ""
5332
 
5333
+ #: wppa-photo-admin-autosave.php:1792
5334
  msgid "Word"
5335
  msgstr ""
5336
 
5337
+ #: wppa-photo-admin-autosave.php:1795
5338
  msgid "Count"
5339
  msgstr ""
5340
 
5348
  msgid "Photo Of The Day"
5349
  msgstr "Foto dne"
5350
 
5351
+ #: wppa-potd-widget.php:188
5352
  msgid ""
5353
  "You can set the content and the sizes in this widget in the <b>Photo Albums -"
5354
  "> Sidebar Widget</b> admin page."
5372
  msgid "WPPA+ Search Photos"
5373
  msgstr ""
5374
 
5375
+ #: wppa-search-widget.php:14 wppa-search-widget.php:36
5376
+ #: wppa-search-widget.php:66
5377
  #, fuzzy
5378
  msgid "Search Photos"
5379
  msgstr "Super View fotky"
5380
 
5381
+ #: wppa-search-widget.php:80
5382
  msgid "Text:"
5383
  msgstr ""
5384
 
5385
+ #: wppa-search-widget.php:84
5386
  msgid ""
5387
  "Enter optional text that will appear before the input box. This may contain "
5388
  "HTML so you can change font size and color."
5389
  msgstr ""
5390
 
5391
+ #: wppa-search-widget.php:88
5392
  msgid "Enable rootsearch"
5393
  msgstr ""
5394
 
5395
+ #: wppa-search-widget.php:94
5396
  msgid "Enable subsearch"
5397
  msgstr ""
5398
 
5399
+ #: wppa-settings-autosave.php:119
5400
  msgid "Saved settings restored"
5401
  msgstr ""
5402
 
5403
+ #: wppa-settings-autosave.php:122
5404
  msgid "Unable to restore saved settings"
5405
  msgstr ""
5406
 
5407
+ #: wppa-settings-autosave.php:128
5408
  msgid "Reset to default settings"
5409
  msgstr ""
5410
 
5411
+ #: wppa-settings-autosave.php:131
5412
  msgid "Unable to set defaults"
5413
  msgstr ""
5414
 
5415
+ #: wppa-settings-autosave.php:136
5416
  #, php-format
5417
  msgid "Skinfile %s loaded"
5418
  msgstr ""
5419
 
5420
+ #: wppa-settings-autosave.php:147 wppa-settings-autosave.php:169
5421
+ #: wppa-settings-autosave.php:190
5422
  #, fuzzy, php-format
5423
  msgid "Upload error %s"
5424
  msgstr "Nahrát fotky"
5425
 
5426
+ #: wppa-settings-autosave.php:152
5427
  #, fuzzy, php-format
5428
  msgid "Uploaded file %s is not a .png file"
5429
  msgstr "Nahraný súbor nie je obraz"
5430
 
5431
+ #: wppa-settings-autosave.php:156 wppa-settings-autosave.php:177
5432
+ #: wppa-settings-autosave.php:213
5433
  #, fuzzy, php-format
5434
  msgid "Upload of %s done"
5435
  msgstr "Nahrát fotku"
5436
 
5437
+ #: wppa-settings-autosave.php:161 wppa-settings-autosave.php:182
5438
+ #: wppa-settings-autosave.php:218
5439
  msgid "No file selected or error on upload"
5440
  msgstr ""
5441
 
5442
+ #: wppa-settings-autosave.php:173
5443
  #, fuzzy, php-format
5444
  msgid "Uploaded file %s is not a .ttf file"
5445
  msgstr "Nahraný súbor nie je obraz"
5446
 
5447
+ #: wppa-settings-autosave.php:195
5448
  #, fuzzy, php-format
5449
  msgid "Uploaded file %s is not a valid image file"
5450
  msgstr "Nahraný súbor nie je obraz"
5451
 
5452
+ #: wppa-settings-autosave.php:274
5453
  #, php-format
5454
  msgid ""
5455
  "%s invalid ratings removed. Please run Table VIII-A5: Rerate to fix the "
5456
  "averages."
5457
  msgstr ""
5458
 
5459
+ #: wppa-settings-autosave.php:284
5460
  #, php-format
5461
  msgid "%s obsolete settings removed."
5462
  msgstr ""
5463
 
5464
+ #: wppa-settings-autosave.php:293
5465
  #, fuzzy
5466
  msgid "WP Photo Album Plus Settings"
5467
  msgstr "Fotoalba"
5468
 
5469
+ #: wppa-settings-autosave.php:294
5470
  msgid "Database revision:"
5471
  msgstr ""
5472
 
5473
+ #: wppa-settings-autosave.php:294
5474
  msgid "WP Charset:"
5475
  msgstr ""
5476
 
5477
+ #: wppa-settings-autosave.php:297
5478
  msgid "Multisite in singlesite mode."
5479
  msgstr ""
5480
 
5481
+ #: wppa-settings-autosave.php:300
5482
  msgid "Multisite enabled."
5483
  msgstr ""
5484
 
5485
+ #: wppa-settings-autosave.php:302
5486
  msgid "Blogid ="
5487
  msgstr ""
5488
 
5489
+ #: wppa-settings-autosave.php:319
5490
  msgid "Please de-activate plugin <i style=\"font-size:14px;\">"
5491
  msgstr ""
5492
 
5493
+ #: wppa-settings-autosave.php:319
5494
  msgid ". </i>This plugin will cause wppa+ to function not properly."
5495
  msgstr ""
5496
 
5497
+ #: wppa-settings-autosave.php:329
5498
  msgid "Please note that plugin <i style=\"font-size:14px;\">"
5499
  msgstr ""
5500
 
5501
+ #: wppa-settings-autosave.php:329
5502
  msgid "</i> can cause wppa+ to function not properly if it is misconfigured."
5503
  msgstr ""
5504
 
5505
+ #: wppa-settings-autosave.php:334 wppa-upload.php:93
5506
  msgid ""
5507
  "There is a serious misconfiguration in your servers PHP config. Function "
5508
  "imagecreatefromjpeg() does not exist. You will encounter problems when "
5510
  "hosting provider to add GD support with a minimal version 1.8."
5511
  msgstr ""
5512
 
5513
+ #: wppa-settings-autosave.php:339
5514
  msgid "Rebuilding the Album index needs completion. See Table VIII"
5515
  msgstr ""
5516
 
5517
+ #: wppa-settings-autosave.php:340
5518
  msgid "Rebuilding the Photo index needs completion. See Table VIII"
5519
  msgstr ""
5520
 
5521
+ #: wppa-settings-autosave.php:342
5522
  msgid "Remove empty albums needs completion. See Table VIII"
5523
  msgstr ""
5524
 
5525
+ #: wppa-settings-autosave.php:343
5526
  msgid "Applying new photo description needs completion. See Table VIII"
5527
  msgstr ""
5528
 
5529
+ #: wppa-settings-autosave.php:344
5530
  msgid "Appending to photo description needs completion. See Table VIII"
5531
  msgstr ""
5532
 
5533
+ #: wppa-settings-autosave.php:345
5534
  msgid "Removing from photo description needs completion. See Table VIII"
5535
  msgstr ""
5536
 
5537
+ #: wppa-settings-autosave.php:346
5538
  msgid "Removing file extensions needs completion. See Table VIII"
5539
  msgstr ""
5540
 
5541
+ #: wppa-settings-autosave.php:347
5542
  msgid "Regenerating the Thumbnails needs completion. See Table VIII"
5543
  msgstr ""
5544
 
5545
+ #: wppa-settings-autosave.php:348
5546
  msgid "Rerating needs completion. See Table VIII"
5547
  msgstr ""
5548
 
5549
+ #: wppa-settings-autosave.php:356
5550
  msgid ""
5551
  "A thumbframe width or height should not be smaller than a thumbnail size. "
5552
  "Please correct the corresponding setting(s) in Table I-C"
5553
  msgstr ""
5554
 
5555
+ #: wppa-settings-autosave.php:361
5556
  msgid "Show legenda"
5557
  msgstr ""
5558
 
5559
+ #: wppa-settings-autosave.php:363
5560
  msgid "Legenda:"
5561
  msgstr ""
5562
 
5563
+ #: wppa-settings-autosave.php:364 wppa-settings-autosave.php:366
5564
+ #: wppa-settings-autosave.php:1888 wppa-settings-autosave.php:5185
5565
  msgid "Button"
5566
  msgstr ""
5567
 
5568
+ #: wppa-settings-autosave.php:364
5569
  msgid "action that causes page reload."
5570
  msgstr ""
5571
 
5572
+ #: wppa-settings-autosave.php:366 wppa-settings-autosave.php:8870
5573
+ #: wppa-settings-autosave.php:8889
5574
  msgid "Are you sure?"
5575
  msgstr ""
5576
 
5577
+ #: wppa-settings-autosave.php:367
5578
  msgid "action that does not cause page reload."
5579
  msgstr ""
5580
 
5581
+ #: wppa-settings-autosave.php:369 wppa-settings-autosave.php:7418
5582
+ #: wppa-settings-autosave.php:7420 wppa-settings-autosave.php:8572
5583
+ #: wppa-settings-autosave.php:8588 wppa-settings-autosave.php:8616
5584
+ #: wppa-settings-autosave.php:8640 wppa-settings-autosave.php:8670
5585
+ #: wppa-settings-autosave.php:8697 wppa-settings-autosave.php:8723
5586
+ #: wppa-settings-autosave.php:8739 wppa-settings-autosave.php:8792
5587
+ #: wppa-settings-autosave.php:8822
5588
  msgid "Setting unmodified"
5589
  msgstr ""
5590
 
5591
+ #: wppa-settings-autosave.php:371
5592
  msgid "Update in progress"
5593
  msgstr ""
5594
 
5595
+ #: wppa-settings-autosave.php:373
5596
  #, fuzzy
5597
  msgid "Setting updated"
5598
  msgstr "Nastavení"
5599
 
5600
+ #: wppa-settings-autosave.php:375
5601
  #, fuzzy
5602
  msgid "Update failed"
5603
  msgstr "Nahrávání selhalo"
5604
 
5605
+ #: wppa-settings-autosave.php:377
5606
  msgid "Hide this"
5607
  msgstr ""
5608
 
5609
+ #: wppa-settings-autosave.php:383
5610
  msgid "System"
5611
  msgstr ""
5612
 
5613
+ #: wppa-settings-autosave.php:384
5614
  msgid "Access"
5615
  msgstr ""
5616
 
5617
+ #: wppa-settings-autosave.php:388
5618
  msgid "Counts"
5619
  msgstr ""
5620
 
5621
+ #: wppa-settings-autosave.php:389
5622
  msgid "Covers"
5623
  msgstr ""
5624
 
5625
+ #: wppa-settings-autosave.php:390
5626
  msgid "Layout"
5627
  msgstr ""
5628
 
5629
+ #: wppa-settings-autosave.php:391 wppa-settings-autosave.php:4414
5630
  msgid "Lightbox"
5631
  msgstr ""
5632
 
5633
+ #: wppa-settings-autosave.php:392
5634
  #, fuzzy
5635
  msgid "Links"
5636
  msgstr "Odkaz na"
5637
 
5638
+ #: wppa-settings-autosave.php:393
5639
  msgid "Metadata"
5640
  msgstr ""
5641
 
5642
+ #: wppa-settings-autosave.php:394
5643
  msgid "Navigation"
5644
  msgstr ""
5645
 
5646
+ #: wppa-settings-autosave.php:395 wppa-settings-autosave.php:1462
5647
+ #: wppa-settings-autosave.php:7765
5648
  #, fuzzy
5649
  msgid "Page"
5650
  msgstr "Strana:"
5651
 
5652
+ #: wppa-settings-autosave.php:396 wppa-settings-autosave.php:7561
5653
+ #: wppa-settings-autosave.php:7606
5654
  #, fuzzy
5655
  msgid "Rating"
5656
  msgstr "Hlasování: %s"
5657
 
5658
+ #: wppa-settings-autosave.php:398
5659
  msgid "Sizes"
5660
  msgstr ""
5661
 
5662
+ #: wppa-settings-autosave.php:399
5663
  #, fuzzy
5664
  msgid "Slideshows"
5665
  msgstr "Slideshow"
5666
 
5667
+ #: wppa-settings-autosave.php:400
5668
  msgid "Social Media"
5669
  msgstr ""
5670
 
5671
+ #: wppa-settings-autosave.php:402
5672
  #, fuzzy
5673
  msgid "Uploads"
5674
  msgstr "Nahrát fotku"
5675
 
5676
+ #: wppa-settings-autosave.php:403
5677
  msgid "Widgets"
5678
  msgstr ""
5679
 
5680
+ #: wppa-settings-autosave.php:404 wppa-settings-autosave.php:7399
5681
  msgid "Watermark"
5682
  msgstr ""
5683
 
5684
+ #: wppa-settings-autosave.php:412
5685
  msgid "Click on the banner of a (sub)table to open/close it, or"
5686
  msgstr ""
5687
 
5688
+ #: wppa-settings-autosave.php:414
5689
  msgid "Show settings related to:"
5690
  msgstr ""
5691
 
5692
+ #: wppa-settings-autosave.php:420
5693
  msgid "and ( optionally ) to:"
5694
  msgstr ""
5695
 
5696
+ #: wppa-settings-autosave.php:434
5697
  msgid "Quick setup"
5698
  msgstr ""
5699
 
5700
+ #: wppa-settings-autosave.php:436
5701
  msgid "Do a quick initial setup"
5702
  msgstr ""
5703
 
5704
+ #: wppa-settings-autosave.php:437
5705
  msgid "Close quick setup"
5706
  msgstr ""
5707
 
5708
+ #: wppa-settings-autosave.php:444
5709
  msgid "Table O:"
5710
  msgstr ""
5711
 
5712
+ #: wppa-settings-autosave.php:444
5713
  msgid "Quick Setup:"
5714
  msgstr ""
5715
 
5716
+ #: wppa-settings-autosave.php:445
5717
  msgid "This table enables you to quickly do an inital setup."
5718
  msgstr ""
5719
 
5720
+ #: wppa-settings-autosave.php:455 wppa-settings-autosave.php:617
5721
+ #: wppa-settings-autosave.php:639 wppa-settings-autosave.php:1339
5722
+ #: wppa-settings-autosave.php:1360 wppa-settings-autosave.php:2734
5723
+ #: wppa-settings-autosave.php:3090 wppa-settings-autosave.php:4241
5724
+ #: wppa-settings-autosave.php:5969 wppa-settings-autosave.php:6595
5725
+ #: wppa-settings-autosave.php:8163
5726
  #, fuzzy
5727
  msgid "Setting"
5728
  msgstr "Nastavení"
5729
 
5730
+ #: wppa-settings-autosave.php:456 wppa-settings-autosave.php:618
5731
+ #: wppa-settings-autosave.php:640 wppa-settings-autosave.php:1340
5732
+ #: wppa-settings-autosave.php:1361 wppa-settings-autosave.php:2735
5733
+ #: wppa-settings-autosave.php:2759 wppa-settings-autosave.php:3070
5734
+ #: wppa-settings-autosave.php:3091 wppa-settings-autosave.php:4242
5735
+ #: wppa-settings-autosave.php:4266 wppa-settings-autosave.php:4442
5736
+ #: wppa-settings-autosave.php:4466 wppa-settings-autosave.php:5465
5737
+ #: wppa-settings-autosave.php:5971 wppa-settings-autosave.php:5995
5738
+ #: wppa-settings-autosave.php:6575 wppa-settings-autosave.php:6596
5739
+ #: wppa-settings-autosave.php:8164 wppa-settings-autosave.php:8186
5740
+ #: wppa-settings-autosave.php:8226 wppa-settings-autosave.php:8248
5741
+ #: wppa-settings-autosave.php:8294
5742
  msgid "Help"
5743
  msgstr ""
5744
 
5745
+ #: wppa-settings-autosave.php:467
5746
  msgid ""
5747
  "To quickly setup WPPA+ please answer the following questions. You can alway "
5748
  "change any setting later. <span style=\"color:#700\">Click on me!</span>"
5749
  msgstr ""
5750
 
5751
+ #: wppa-settings-autosave.php:469
5752
  msgid "Is your theme <i>responsive</i>?"
5753
  msgstr ""
5754
 
5755
+ #: wppa-settings-autosave.php:470
5756
  msgid ""
5757
  "Responsive themes have a layout that varies with the size of the browser "
5758
  "window."
5759
  msgstr ""
5760
 
5761
+ #: wppa-settings-autosave.php:471
5762
  msgid ""
5763
  "WPPA+ needs to know this to automaticly adept the width of the display to "
5764
  "the available width on the page."
5765
  msgstr ""
5766
 
5767
+ #: wppa-settings-autosave.php:478
5768
  msgid "Do you want to downsize photos during upload?"
5769
  msgstr ""
5770
 
5771
+ #: wppa-settings-autosave.php:479
5772
  msgid ""
5773
  "Downsizing photos make them load faster to the visitor, without loosing "
5774
  "display quality"
5775
  msgstr ""
5776
 
5777
+ #: wppa-settings-autosave.php:480
5778
  msgid ""
5779
  "If you answer yes, the photos will be downsized to max 1024 x 768 pixels. "
5780
  "You can change this later, if you like"
5781
  msgstr ""
5782
 
5783
+ #: wppa-settings-autosave.php:487
5784
  #, fuzzy
5785
  msgid "Do you want to save the original photofiles?"
5786
  msgstr "Opravdu chcete smazat tuto fotku?"
5787
 
5788
+ #: wppa-settings-autosave.php:488
5789
  msgid "This will require considerable disk space on the server."
5790
  msgstr ""
5791
 
5792
+ #: wppa-settings-autosave.php:489
5793
  msgid ""
5794
  "If you answer yes, you will be able to remove watermarks you applied with "
5795
  "wppa+ in a later stage, redo downsizing to a larger size afterwards, and "
5796
  "supply fullsize images for download."
5797
  msgstr ""
5798
 
5799
+ #: wppa-settings-autosave.php:496
5800
  #, fuzzy
5801
  msgid "May visitors upload photos?"
5802
  msgstr "Nedávno nahrané fotografie"
5803
 
5804
+ #: wppa-settings-autosave.php:497
5805
  msgid ""
5806
  "It is safe to do so, but i will have to do some settings to keep it safe!"
5807
  msgstr ""
5808
 
5809
+ #: wppa-settings-autosave.php:498
5810
  msgid ""
5811
  "If you answer yes, i will assume you want to enable logged in users to "
5812
  "upload photos at the front-end of the website and allow them to edit their "
5813
  "photos name and descriptions."
5814
  msgstr ""
5815
 
5816
+ #: wppa-settings-autosave.php:499
5817
  msgid ""
5818
  "The photos will be hold for moderation, the admin will get notified by email."
5819
  msgstr ""
5820
 
5821
+ #: wppa-settings-autosave.php:500
5822
  msgid ""
5823
  "Each user will get his own album to upload to. These settings can be changed "
5824
  "later."
5825
  msgstr ""
5826
 
5827
+ #: wppa-settings-autosave.php:507
5828
  msgid "Do you want the rating system active?"
5829
  msgstr ""
5830
 
5831
+ #: wppa-settings-autosave.php:508
5832
  msgid "Enable the rating system and show the votes in the slideshow."
5833
  msgstr ""
5834
 
5835
+ #: wppa-settings-autosave.php:509
5836
  msgid "You can configure the details of the rating system later"
5837
  msgstr ""
5838
 
5839
+ #: wppa-settings-autosave.php:516
5840
  msgid "Do you want the comment system active?"
5841
  msgstr ""
5842
 
5843
+ #: wppa-settings-autosave.php:517
5844
  msgid "Enable the comment system and show the comments in the slideshow."
5845
  msgstr ""
5846
 
5847
+ #: wppa-settings-autosave.php:518
5848
  msgid "You can configure the details of the comment system later"
5849
  msgstr ""
5850
 
5851
+ #: wppa-settings-autosave.php:525
5852
  msgid "Do you want the social media share buttons displayed?"
5853
  msgstr ""
5854
 
5855
+ #: wppa-settings-autosave.php:526
5856
  msgid "Display the social media buttons in the slideshow"
5857
  msgstr ""
5858
 
5859
+ #: wppa-settings-autosave.php:527
5860
  msgid ""
5861
  "These buttons share the specific photo rather than the page where it is "
5862
  "displayed on"
5863
  msgstr ""
5864
 
5865
+ #: wppa-settings-autosave.php:534
5866
  msgid "Are you going to use IPTC data?"
5867
  msgstr ""
5868
 
5869
+ #: wppa-settings-autosave.php:535
5870
  msgid ""
5871
  "IPTC data is information you may have added in a photo manipulation program."
5872
  msgstr ""
5873
 
5874
+ #: wppa-settings-autosave.php:536 wppa-settings-autosave.php:545
5875
  msgid ""
5876
  "The information can be displayed in slideshows and in photo descriptions."
5877
  msgstr ""
5878
 
5879
+ #: wppa-settings-autosave.php:543
5880
  msgid "Are you going to use EXIF data?"
5881
  msgstr ""
5882
 
5883
+ #: wppa-settings-autosave.php:544
5884
  msgid ""
5885
  "EXIF data is information from the camera like model no, focal distance and "
5886
  "aperture used."
5887
  msgstr ""
5888
 
5889
+ #: wppa-settings-autosave.php:552
5890
  msgid "Are you going to use GPX data?"
5891
  msgstr ""
5892
 
5893
+ #: wppa-settings-autosave.php:553
5894
  msgid ""
5895
  "Some cameras and mobile devices save the geographic location where the photo "
5896
  "is taken."
5897
  msgstr ""
5898
 
5899
+ #: wppa-settings-autosave.php:554
5900
  msgid "A Google map can be displayed in slideshows."
5901
  msgstr ""
5902
 
5903
+ #: wppa-settings-autosave.php:561
5904
  msgid "Are you going to use Fotomoto?"
5905
  msgstr ""
5906
 
5907
+ #: wppa-settings-autosave.php:562
5908
  msgid ""
5909
  "<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> is an "
5910
  "on-line print service."
5911
  msgstr ""
5912
 
5913
+ #: wppa-settings-autosave.php:563
5914
  msgid "If you answer Yes, you will have to open an account on Fotomoto."
5915
  msgstr ""
5916
 
5917
+ #: wppa-settings-autosave.php:570
5918
  msgid "Are you going to add videofiles?"
5919
  msgstr ""
5920
 
5921
+ #: wppa-settings-autosave.php:571
5922
  msgid "You can mix videos and photos in any album."
5923
  msgstr ""
5924
 
5925
+ #: wppa-settings-autosave.php:572 wppa-settings-autosave.php:581
5926
+ #: wppa-settings-autosave.php:590
5927
  msgid "You can configure the details later"
5928
  msgstr ""
5929
 
5930
+ #: wppa-settings-autosave.php:579
5931
  msgid "Are you going to add audiofiles?"
5932
  msgstr ""
5933
 
5934
+ #: wppa-settings-autosave.php:580
5935
  msgid "You can add audio to photos in any album."
5936
  msgstr ""
5937
 
5938
+ #: wppa-settings-autosave.php:588
5939
+ #, fuzzy
5940
+ msgid "Are you going to upload 3D stereo photos?"
5941
+ msgstr "Zobrazit posledně nahrané fotky"
5942
+
5943
+ #: wppa-settings-autosave.php:589
5944
+ msgid "You can add l-r and r-l stereo photo pairs."
5945
+ msgstr ""
5946
+
5947
+ #: wppa-settings-autosave.php:597
5948
  msgid "Done?"
5949
  msgstr ""
5950
 
5951
+ #: wppa-settings-autosave.php:598
5952
  msgid "If you are ready answering these questions, select <b>yes</b>"
5953
  msgstr ""
5954
 
5955
+ #: wppa-settings-autosave.php:599
5956
  msgid ""
5957
  "You can change any setting later, and be more specific and add a lot of "
5958
  "settings. For now it is enough, go create albums and upload photos!"
5959
  msgstr ""
5960
 
5961
+ #: wppa-settings-autosave.php:603
5962
  msgid ""
5963
  "Thank you!. The most important settings are done now. You can refine your "
5964
  "settings, the behaviour and appearance of WPPA+ in the Tables below."
5965
  msgstr ""
5966
 
5967
+ #: wppa-settings-autosave.php:628
5968
  msgid "Table I:"
5969
  msgstr ""
5970
 
5971
+ #: wppa-settings-autosave.php:628
5972
  msgid "Sizes:"
5973
  msgstr ""
5974
 
5975
+ #: wppa-settings-autosave.php:629
5976
  msgid ""
5977
  "This table describes all the sizes and size options (except fontsizes) for "
5978
  "the generation and display of the WPPA+ elements."
5979
  msgstr ""
5980
 
5981
+ #: wppa-settings-autosave.php:647
5982
  msgid "WPPA+ global system related size settings"
5983
  msgstr ""
5984
 
5985
+ #: wppa-settings-autosave.php:649
5986
  msgid "Column Width"
5987
  msgstr ""
5988
 
5989
+ #: wppa-settings-autosave.php:650
5990
  msgid "The width of the main column in your theme's display area."
5991
  msgstr ""
5992
 
5993
+ #: wppa-settings-autosave.php:651
5994
  msgid "Enter the width of the main column in your theme's display area."
5995
  msgstr ""
5996
 
5997
+ #: wppa-settings-autosave.php:652
5998
  msgid ""
5999
  "You should set this value correctly to make sure the fullsize images are "
6000
  "properly aligned horizontally."
6001
  msgstr ""
6002
 
6003
+ #: wppa-settings-autosave.php:653
6004
  msgid ""
6005
  "You may enter 'auto' for use in themes that have a floating content column."
6006
  msgstr ""
6007
 
6008
+ #: wppa-settings-autosave.php:654
6009
  msgid "The use of 'auto' is required for responsive themes."
6010
  msgstr ""
6011
 
6012
+ #: wppa-settings-autosave.php:657 wppa-settings-autosave.php:666
6013
+ #: wppa-settings-autosave.php:778 wppa-settings-autosave.php:921
6014
+ #: wppa-settings-autosave.php:932
6015
  msgid "pixels wide"
6016
  msgstr ""
6017
 
6018
+ #: wppa-settings-autosave.php:662
6019
  msgid "Initial Width"
6020
  msgstr ""
6021
 
6022
+ #: wppa-settings-autosave.php:663
6023
  msgid "The most often displayed colun width in responsive theme"
6024
  msgstr ""
6025
 
6026
+ #: wppa-settings-autosave.php:664
6027
  msgid ""
6028
  "Change this value only if your responsive theme shows initially a wrong "
6029
  "column width."
6030
  msgstr ""
6031
 
6032
+ #: wppa-settings-autosave.php:671
6033
  msgid "Resize on Upload"
6034
  msgstr ""
6035
 
6036
+ #: wppa-settings-autosave.php:672
6037
  msgid "Indicate if the photos should be resized during upload."
6038
  msgstr ""
6039
 
6040
+ #: wppa-settings-autosave.php:673
6041
  msgid ""
6042
  "If you check this item, the size of the photos will be reduced to the "
6043
  "dimension specified in the next item during the upload/import process."
6044
  msgstr ""
6045
 
6046
+ #: wppa-settings-autosave.php:674
6047
  msgid "The photos will never be stretched during upload if they are smaller."
6048
  msgstr ""
6049
 
6050
+ #: wppa-settings-autosave.php:682
6051
  msgid "Resize to"
6052
  msgstr ""
6053
 
6054
+ #: wppa-settings-autosave.php:683
6055
  msgid "Resize photos to fit within a given area."
6056
  msgstr ""
6057
 
6058
+ #: wppa-settings-autosave.php:684
6059
  msgid "Specify the screensize for the unscaled photos."
6060
  msgstr ""
6061
 
6062
+ #: wppa-settings-autosave.php:685
6063
  msgid ""
6064
  "The use of a non-default value is particularly usefull when you make use of "
6065
  "lightbox functionality."
6066
  msgstr ""
6067
 
6068
+ #: wppa-settings-autosave.php:687 wppa-settings-autosave.php:709
6069
+ #: wppa-settings-autosave.php:720 wppa-settings-autosave.php:729
6070
+ #: wppa-settings-autosave.php:810 wppa-settings-autosave.php:833
6071
+ #: wppa-settings-autosave.php:840 wppa-settings-autosave.php:861
6072
+ #: wppa-settings-autosave.php:871 wppa-settings-autosave.php:965
6073
+ #: wppa-settings-autosave.php:999 wppa-settings-autosave.php:1019
6074
+ #: wppa-settings-autosave.php:1028 wppa-settings-autosave.php:1039
6075
+ #: wppa-settings-autosave.php:1051 wppa-settings-autosave.php:1061
6076
+ #: wppa-settings-autosave.php:1071 wppa-settings-autosave.php:1124
6077
+ #: wppa-settings-autosave.php:1133 wppa-settings-autosave.php:1144
6078
+ #: wppa-settings-autosave.php:1164 wppa-settings-autosave.php:1184
6079
+ #: wppa-settings-autosave.php:1204 wppa-settings-autosave.php:1224
6080
+ #: wppa-settings-autosave.php:1244 wppa-settings-autosave.php:1264
6081
+ #: wppa-settings-autosave.php:1273 wppa-settings-autosave.php:1282
6082
+ #: wppa-settings-autosave.php:1317 wppa-settings-autosave.php:1326
6083
+ #: wppa-settings-autosave.php:2678 wppa-settings-autosave.php:4287
6084
+ #: wppa-settings-autosave.php:4304 wppa-settings-autosave.php:4321
6085
+ #: wppa-settings-autosave.php:4338 wppa-settings-autosave.php:4355
6086
+ #: wppa-settings-autosave.php:4372 wppa-settings-autosave.php:4389
6087
+ #: wppa-settings-autosave.php:4406 wppa-settings-autosave.php:4423
6088
+ #: wppa-settings-autosave.php:5682 wppa-settings-autosave.php:7895
6089
+ #: wppa-settings-autosave.php:8090 wppa-settings-autosave.php:8132
6090
+ #: wppa-settings-autosave.php:8150
6091
  msgid "pixels"
6092
  msgstr ""
6093
 
6094
+ #: wppa-settings-autosave.php:688
6095
  msgid "Fit within rectangle as set in Table I-B1,2"
6096
  msgstr ""
6097
 
6098
+ #: wppa-settings-autosave.php:695
6099
  #, fuzzy
6100
  msgid "Photocount threshold"
6101
  msgstr "Foto dne"
6102
 
6103
+ #: wppa-settings-autosave.php:696
6104
  msgid "Number of photos in an album must exceed."
6105
  msgstr ""
6106
 
6107
+ #: wppa-settings-autosave.php:697
6108
  msgid ""
6109
  "Photos do not show up in the album unless there are more than this number of "
6110
  "photos in the album. This allows you to have cover photos on an album that "
6112
  "Usually set to 0 (always show) or 1 (for one cover photo)."
6113
  msgstr ""
6114
 
6115
+ #: wppa-settings-autosave.php:704
6116
  msgid "Border thickness"
6117
  msgstr ""
6118
 
6119
+ #: wppa-settings-autosave.php:705
6120
  msgid "Thickness of wppa+ box borders."
6121
  msgstr ""
6122
 
6123
+ #: wppa-settings-autosave.php:706
6124
  msgid ""
6125
  "Enter the thickness for the border of the WPPA+ boxes. A number of 0 means: "
6126
  "no border."
6127
  msgstr ""
6128
 
6129
+ #: wppa-settings-autosave.php:707 wppa-settings-autosave.php:717
6130
  msgid "WPPA+ boxes are: the navigation bars and the filmstrip."
6131
  msgstr ""
6132
 
6133
+ #: wppa-settings-autosave.php:715
6134
  msgid "Radius of wppa+ box borders."
6135
  msgstr ""
6136
 
6137
+ #: wppa-settings-autosave.php:716
6138
  msgid ""
6139
  "Enter the corner radius for the border of the WPPA+ boxes. A number of 0 "
6140
  "means: no rounded corners."
6141
  msgstr ""
6142
 
6143
+ #: wppa-settings-autosave.php:718
6144
  msgid "Note that rounded corners are only supported by modern browsers."
6145
  msgstr ""
6146
 
6147
+ #: wppa-settings-autosave.php:726
6148
  msgid "Distance between wppa+ boxes."
6149
  msgstr ""
6150
 
6151
+ #: wppa-settings-autosave.php:734
6152
  #, fuzzy
6153
  msgid "Related count"
6154
  msgstr "Podobné fotky"
6155
 
6156
+ #: wppa-settings-autosave.php:735
6157
  msgid "The default maximum number of related photos to find."
6158
  msgstr ""
6159
 
6160
+ #: wppa-settings-autosave.php:736
6161
  msgid ""
6162
  "When using shortcodes like [wppa type=\"album\" album=\"#related,desc,23\"][/"
6163
  "wppa], the maximum number is 23. Omitting the number gives the maximum of "
6164
  "this setting."
6165
  msgstr ""
6166
 
6167
+ #: wppa-settings-autosave.php:744
6168
  msgid "The maximum number of pagelinks to be displayed."
6169
  msgstr ""
6170
 
6171
+ #: wppa-settings-autosave.php:747
6172
  msgid "pages"
6173
  msgstr ""
6174
 
6175
+ #: wppa-settings-autosave.php:752
6176
  msgid "Max file name length"
6177
  msgstr ""
6178
 
6179
+ #: wppa-settings-autosave.php:753
6180
  msgid "The max length of a photo file name excluding the extension."
6181
  msgstr ""
6182
 
6183
+ #: wppa-settings-autosave.php:754 wppa-settings-autosave.php:763
6184
  msgid "A setting of 0 means: unlimited."
6185
  msgstr ""
6186
 
6187
+ #: wppa-settings-autosave.php:756 wppa-settings-autosave.php:765
6188
  msgid "chars"
6189
  msgstr ""
6190
 
6191
+ #: wppa-settings-autosave.php:761
6192
  msgid "Max photo name length"
6193
  msgstr ""
6194
 
6195
+ #: wppa-settings-autosave.php:762
6196
  msgid "The max length of a photo name."
6197
  msgstr ""
6198
 
6199
+ #: wppa-settings-autosave.php:770
6200
  msgid "Slideshow related size settings"
6201
  msgstr ""
6202
 
6203
+ #: wppa-settings-autosave.php:772
6204
  msgid "Maximum Width"
6205
  msgstr ""
6206
 
6207
+ #: wppa-settings-autosave.php:773
6208
  msgid "The maximum width photos will be displayed in slideshows."
6209
  msgstr ""
6210
 
6211
+ #: wppa-settings-autosave.php:774 wppa-settings-autosave.php:785
6212
  msgid ""
6213
  "Enter the largest size in pixels as how you want your photos to be displayed."
6214
  msgstr ""
6215
 
6216
+ #: wppa-settings-autosave.php:775
6217
  msgid ""
6218
  "This is usually the same as the Column Width (Table I-A1), but it may differ."
6219
  msgstr ""
6220
 
6221
+ #: wppa-settings-autosave.php:783
6222
  msgid "Maximum Height"
6223
  msgstr ""
6224
 
6225
+ #: wppa-settings-autosave.php:784
6226
  msgid "The maximum height photos will be displayed in slideshows."
6227
  msgstr ""
6228
 
6229
+ #: wppa-settings-autosave.php:786
6230
  msgid ""
6231
  "This setting defines the height of the space reserved for photos in "
6232
  "slideshows."
6233
  msgstr ""
6234
 
6235
+ #: wppa-settings-autosave.php:787
6236
  #, php-format
6237
  msgid ""
6238
  "If you change the width of a display by the %%size= command, this value "
6240
  "previous setting."
6241
  msgstr ""
6242
 
6243
+ #: wppa-settings-autosave.php:789 wppa-settings-autosave.php:943
6244
+ #: wppa-settings-autosave.php:954
6245
  #, fuzzy
6246
  msgid "pixels high"
6247
  msgstr "velmi vysoká"
6248
 
6249
+ #: wppa-settings-autosave.php:794
6250
  msgid "Stretch to fit"
6251
  msgstr ""
6252
 
6253
+ #: wppa-settings-autosave.php:795
6254
  msgid "Stretch photos that are too small."
6255
  msgstr ""
6256
 
6257
+ #: wppa-settings-autosave.php:796
6258
  msgid ""
6259
  "Images will be stretched to the Maximum Size at display time if they are "
6260
  "smaller. Leaving unchecked is recommended. It is better to upload photos "
6261
  "that fit well the sizes you use!"
6262
  msgstr ""
6263
 
6264
+ #: wppa-settings-autosave.php:803
6265
  #, fuzzy
6266
  msgid "Slideshow borderwidth"
6267
  msgstr "Slideshow"
6268
 
6269
+ #: wppa-settings-autosave.php:804
6270
  msgid "The width of the border around slideshow images."
6271
  msgstr ""
6272
 
6273
+ #: wppa-settings-autosave.php:805
6274
  msgid ""
6275
  "The border is made by the image background being larger than the image "
6276
  "itsself (padding)."
6277
  msgstr ""
6278
 
6279
+ #: wppa-settings-autosave.php:806
6280
  msgid ""
6281
  "Additionally there may be a one pixel outline of a different color. See "
6282
  "Table III-A2."
6283
  msgstr ""
6284
 
6285
+ #: wppa-settings-autosave.php:807
6286
  msgid "The number you enter here is exclusive the one pixel outline."
6287
  msgstr ""
6288
 
6289
+ #: wppa-settings-autosave.php:808
6290
  msgid "If you leave this entry empty, there will be no outline either."
6291
  msgstr ""
6292
 
6293
+ #: wppa-settings-autosave.php:815
6294
  msgid "Numbar Max"
6295
  msgstr ""
6296
 
6297
+ #: wppa-settings-autosave.php:816
6298
  msgid "Maximum numbers to display."
6299
  msgstr ""
6300
 
6301
+ #: wppa-settings-autosave.php:817
6302
  msgid ""
6303
  "In order to attemt to fit on one line, the numbers will be replaced by dots "
6304
  "- except the current - when there are more than this number of photos in a "
6305
  "slideshow."
6306
  msgstr ""
6307
 
6308
+ #: wppa-settings-autosave.php:819
6309
  msgid "numbers"
6310
  msgstr ""
6311
 
6312
+ #: wppa-settings-autosave.php:824
6313
  #, fuzzy
6314
  msgid "Share button size"
6315
  msgstr "Sdílet %s na Pinterest"
6316
 
6317
+ #: wppa-settings-autosave.php:825
6318
  msgid "The size of the social media icons in the Share box"
6319
  msgstr ""
6320
 
6321
+ #: wppa-settings-autosave.php:835
6322
  msgid "Mini Treshold"
6323
  msgstr ""
6324
 
6325
+ #: wppa-settings-autosave.php:836
6326
  msgid "Show mini text at slideshow smaller then."
6327
  msgstr ""
6328
 
6329
+ #: wppa-settings-autosave.php:837
6330
  msgid ""
6331
  "Display Next and Prev. as opposed to Next photo and Previous photo when the "
6332
  "cotainer is smaller than this size."
6333
  msgstr ""
6334
 
6335
+ #: wppa-settings-autosave.php:838
6336
  msgid "Special use in responsive themes."
6337
  msgstr ""
6338
 
6339
+ #: wppa-settings-autosave.php:846
6340
  msgid "The maximum number of slides in a certain view. 0 means no pagination"
6341
  msgstr ""
6342
 
6343
+ #: wppa-settings-autosave.php:849
6344
  #, fuzzy
6345
  msgid "slides"
6346
  msgstr "Slideshow"
6347
 
6348
+ #: wppa-settings-autosave.php:854
6349
  msgid "Thumbnail photos related size settings"
6350
  msgstr ""
6351
 
6352
+ #: wppa-settings-autosave.php:856
6353
  #, fuzzy
6354
  msgid "Thumbnail Size"
6355
  msgstr "Stránka s náhledy"
6356
 
6357
+ #: wppa-settings-autosave.php:857
6358
  #, fuzzy
6359
  msgid "The size of the thumbnail images."
6360
  msgstr "Prohlédnout náhledy"
6361
 
6362
+ #: wppa-settings-autosave.php:858 wppa-settings-autosave.php:868
6363
+ #: wppa-settings-autosave.php:1058 wppa-settings-autosave.php:1068
6364
  msgid "This size applies to the width or height, whichever is the largest."
6365
  msgstr ""
6366
 
6367
+ #: wppa-settings-autosave.php:859 wppa-settings-autosave.php:869
6368
  msgid ""
6369
  "Changing the thumbnail size may result in all thumbnails being regenerated. "
6370
  "this may take a while."
6371
  msgstr ""
6372
 
6373
+ #: wppa-settings-autosave.php:866
6374
  #, fuzzy
6375
  msgid "Thumbnail Size Alt"
6376
  msgstr "Stránka s náhledy"
6377
 
6378
+ #: wppa-settings-autosave.php:867
6379
  msgid "The alternative size of the thumbnail images."
6380
  msgstr ""
6381
 
6382
+ #: wppa-settings-autosave.php:876
6383
  #, fuzzy
6384
  msgid "Thumbnail Aspect"
6385
  msgstr "Označkované fotografie"
6386
 
6387
+ #: wppa-settings-autosave.php:877
6388
  msgid "Aspect ration of thumbnail image"
6389
  msgstr ""
6390
 
6391
+ #: wppa-settings-autosave.php:881
6392
  #, fuzzy
6393
  msgid "--- same as fullsize ---"
6394
  msgstr "--- vše ---"
6395
 
6396
+ #: wppa-settings-autosave.php:882
6397
  #, fuzzy
6398
  msgid "--- square clipped ---"
6399
  msgstr "--- smazáno ---"
6400
 
6401
+ #: wppa-settings-autosave.php:883
6402
  msgid "4:5 landscape clipped"
6403
  msgstr ""
6404
 
6405
+ #: wppa-settings-autosave.php:884
6406
  msgid "3:4 landscape clipped"
6407
  msgstr ""
6408
 
6409
+ #: wppa-settings-autosave.php:885
6410
  msgid "2:3 landscape clipped"
6411
  msgstr ""
6412
 
6413
+ #: wppa-settings-autosave.php:886
6414
  msgid "9:16 landscape clipped"
6415
  msgstr ""
6416
 
6417
+ #: wppa-settings-autosave.php:887
6418
  msgid "1:2 landscape clipped"
6419
  msgstr ""
6420
 
6421
+ #: wppa-settings-autosave.php:888
6422
  #, fuzzy
6423
  msgid "--- square padded ---"
6424
  msgstr "--- samostatné ---"
6425
 
6426
+ #: wppa-settings-autosave.php:889
6427
  msgid "4:5 landscape padded"
6428
  msgstr ""
6429
 
6430
+ #: wppa-settings-autosave.php:890
6431
  msgid "3:4 landscape padded"
6432
  msgstr ""
6433
 
6434
+ #: wppa-settings-autosave.php:891
6435
  msgid "2:3 landscape padded"
6436
  msgstr ""
6437
 
6438
+ #: wppa-settings-autosave.php:892
6439
  msgid "9:16 landscape padded"
6440
  msgstr ""
6441
 
6442
+ #: wppa-settings-autosave.php:893
6443
  msgid "1:2 landscape padded"
6444
  msgstr ""
6445
 
6446
+ #: wppa-settings-autosave.php:915
6447
  msgid "Thumbframe width"
6448
  msgstr ""
6449
 
6450
+ #: wppa-settings-autosave.php:916
6451
  #, fuzzy
6452
  msgid "The width of the thumbnail frame."
6453
  msgstr "Prohlédnout náhledy"
6454
 
6455
+ #: wppa-settings-autosave.php:917 wppa-settings-autosave.php:928
6456
  msgid "Set the width of the thumbnail frame."
6457
  msgstr ""
6458
 
6459
+ #: wppa-settings-autosave.php:918 wppa-settings-autosave.php:929
6460
+ #: wppa-settings-autosave.php:940 wppa-settings-autosave.php:951
6461
+ #: wppa-settings-autosave.php:962
6462
  msgid "Set width, height and spacing for the thumbnail frames."
6463
  msgstr ""
6464
 
6465
+ #: wppa-settings-autosave.php:919 wppa-settings-autosave.php:930
6466
+ #: wppa-settings-autosave.php:941 wppa-settings-autosave.php:952
6467
+ #: wppa-settings-autosave.php:963
6468
  msgid ""
6469
  "These sizes should be large enough for a thumbnail image and - optionally - "
6470
  "the text under it."
6471
  msgstr ""
6472
 
6473
+ #: wppa-settings-autosave.php:926
6474
  msgid "Thumbframe width Alt"
6475
  msgstr ""
6476
 
6477
+ #: wppa-settings-autosave.php:927
6478
  msgid "The width of the alternative thumbnail frame."
6479
  msgstr ""
6480
 
6481
+ #: wppa-settings-autosave.php:937
6482
  msgid "Thumbframe height"
6483
  msgstr ""
6484
 
6485
+ #: wppa-settings-autosave.php:938
6486
  msgid "The height of the thumbnail frame."
6487
  msgstr ""
6488
 
6489
+ #: wppa-settings-autosave.php:939 wppa-settings-autosave.php:950
6490
  msgid "Set the height of the thumbnail frame."
6491
  msgstr ""
6492
 
6493
+ #: wppa-settings-autosave.php:948
6494
  msgid "Thumbframe height Alt"
6495
  msgstr ""
6496
 
6497
+ #: wppa-settings-autosave.php:949
6498
  msgid "The height of the alternative thumbnail frame."
6499
  msgstr ""
6500
 
6501
+ #: wppa-settings-autosave.php:959
6502
  #, fuzzy
6503
  msgid "Thumbnail spacing"
6504
  msgstr "Označkované fotografie"
6505
 
6506
+ #: wppa-settings-autosave.php:960
6507
  msgid "The spacing between adjacent thumbnail frames."
6508
  msgstr ""
6509
 
6510
+ #: wppa-settings-autosave.php:961
6511
  msgid "Set the minimal spacing between the adjacent thumbnail frames"
6512
  msgstr ""
6513
 
6514
+ #: wppa-settings-autosave.php:970
6515
  msgid "Auto spacing"
6516
  msgstr ""
6517
 
6518
+ #: wppa-settings-autosave.php:971
6519
  msgid "Space the thumbnail frames automatic."
6520
  msgstr ""
6521
 
6522
+ #: wppa-settings-autosave.php:972
6523
  msgid ""
6524
  "If you check this box, the thumbnail images will be evenly distributed over "
6525
  "the available width."
6526
  msgstr ""
6527
 
6528
+ #: wppa-settings-autosave.php:973
6529
  msgid ""
6530
  "In this case, the thumbnail spacing value (setting I-9) will be regarded as "
6531
  "a minimum value."
6532
  msgstr ""
6533
 
6534
+ #: wppa-settings-autosave.php:980 wppa-settings-autosave.php:1087
6535
  msgid "Page size"
6536
  msgstr ""
6537
 
6538
+ #: wppa-settings-autosave.php:981
6539
  msgid "Max number of thumbnails per page."
6540
  msgstr ""
6541
 
6542
+ #: wppa-settings-autosave.php:982
6543
  msgid ""
6544
  "Enter the maximum number of thumbnail images per page. A value of 0 "
6545
  "indicates no pagination."
6546
  msgstr ""
6547
 
6548
+ #: wppa-settings-autosave.php:984 wppa-settings-autosave.php:5256
6549
+ #: wppa-settings-autosave.php:5287 wppa-settings-autosave.php:5382
6550
  #, fuzzy
6551
  msgid "thumbnails"
6552
  msgstr "Označkované fotografie"
6553
 
6554
+ #: wppa-settings-autosave.php:990
6555
  msgid "The size of the thumbnail popup images."
6556
  msgstr ""
6557
 
6558
+ #: wppa-settings-autosave.php:991
6559
  msgid ""
6560
  "Enter the size of the popup images. This size should be larger than the "
6561
  "thumbnail size."
6562
  msgstr ""
6563
 
6564
+ #: wppa-settings-autosave.php:992
6565
  msgid "This size should also be at least the cover image size."
6566
  msgstr ""
6567
 
6568
+ #: wppa-settings-autosave.php:993
6569
  msgid ""
6570
  "Changing the popup size may result in all thumbnails being regenerated. this "
6571
  "may take a while."
6572
  msgstr ""
6573
 
6574
+ #: wppa-settings-autosave.php:994
6575
  msgid ""
6576
  "Although this setting has only visual effect if \"Thumb popup\" (Table IV-"
6577
  "C8) is checked,"
6578
  msgstr ""
6579
 
6580
+ #: wppa-settings-autosave.php:995
6581
  msgid ""
6582
  "the value must be right as it is the physical size of the thumbnail and "
6583
  "coverphoto images."
6584
  msgstr ""
6585
 
6586
+ #: wppa-settings-autosave.php:1002
6587
  msgid "Use thumbs if fit"
6588
  msgstr ""
6589
 
6590
+ #: wppa-settings-autosave.php:1003
6591
  msgid "Use the thumbnail image files if they are large enough."
6592
  msgstr ""
6593
 
6594
+ #: wppa-settings-autosave.php:1004
6595
  msgid "This setting speeds up page loading for small photos."
6596
  msgstr ""
6597
 
6598
+ #: wppa-settings-autosave.php:1005
6599
  msgid ""
6600
  "Do NOT use this when your thumbnails have a forced aspect ratio (when Table "
6601
  "I-C2 is set to anything different from --- same as fullsize ---)"
6602
  msgstr ""
6603
 
6604
+ #: wppa-settings-autosave.php:1012
6605
  msgid "Album cover related size settings"
6606
  msgstr ""
6607
 
6608
+ #: wppa-settings-autosave.php:1015
6609
  msgid "Maximum width for a album cover display."
6610
  msgstr ""
6611
 
6612
+ #: wppa-settings-autosave.php:1016
6613
  msgid ""
6614
  "Display covers in 2 or more columns if the display area is wider than the "
6615
  "given width."
6616
  msgstr ""
6617
 
6618
+ #: wppa-settings-autosave.php:1017
6619
  msgid ""
6620
  "This also applies for 'thumbnails as covers', and will NOT apply to single "
6621
  "items."
6622
  msgstr ""
6623
 
6624
+ #: wppa-settings-autosave.php:1024
6625
  msgid "Min Cover height"
6626
  msgstr ""
6627
 
6628
+ #: wppa-settings-autosave.php:1025
6629
  msgid "Minimal height of an album cover."
6630
  msgstr ""
6631
 
6632
+ #: wppa-settings-autosave.php:1026
6633
  msgid ""
6634
  "If you use this setting to make the albums the same height and you are not "
6635
  "satisfied about the lay-out, try increasing the value in the next setting"
6636
  msgstr ""
6637
 
6638
+ #: wppa-settings-autosave.php:1033
6639
  msgid "Min Text frame height"
6640
  msgstr ""
6641
 
6642
+ #: wppa-settings-autosave.php:1034
6643
  msgid "The minimal cover text frame height incl header."
6644
  msgstr ""
6645
 
6646
+ #: wppa-settings-autosave.php:1035
6647
  msgid ""
6648
  "The height starting with the album title up to and including the view- and "
6649
  "the slideshow- links."
6650
  msgstr ""
6651
 
6652
+ #: wppa-settings-autosave.php:1036
6653
  msgid ""
6654
  "This setting enables you to give the album covers the same height while the "
6655
  "title does not need to fit on one line."
6656
  msgstr ""
6657
 
6658
+ #: wppa-settings-autosave.php:1037
6659
  msgid "This is the recommended setting to line-up your covers!"
6660
  msgstr ""
6661
 
6662
+ #: wppa-settings-autosave.php:1044
6663
  msgid "Min Description height"
6664
  msgstr ""
6665
 
6666
+ #: wppa-settings-autosave.php:1045
6667
  msgid "The minimal height of the album description text frame."
6668
  msgstr ""
6669
 
6670
+ #: wppa-settings-autosave.php:1046
6671
  msgid "The minimal height of the description field in an album cover display."
6672
  msgstr ""
6673
 
6674
+ #: wppa-settings-autosave.php:1047
6675
  msgid ""
6676
  "This setting enables you to give the album covers the same height provided "
6677
  "that the cover images are equally sized and the titles fit on one line."
6678
  msgstr ""
6679
 
6680
+ #: wppa-settings-autosave.php:1048
6681
  msgid ""
6682
  "To force the coverphotos have equal heights, tick the box in Table I-D7."
6683
  msgstr ""
6684
 
6685
+ #: wppa-settings-autosave.php:1049
6686
  msgid ""
6687
  "You may need this setting if changing the previous setting is not sufficient "
6688
  "to line-up the covers."
6689
  msgstr ""
6690
 
6691
+ #: wppa-settings-autosave.php:1056
6692
  msgid "Coverphoto size"
6693
  msgstr ""
6694
 
6695
+ #: wppa-settings-autosave.php:1057
6696
  #, fuzzy
6697
  msgid "The size of the coverphoto."
6698
  msgstr "Zobrazit úvodní fotku"
6699
 
6700
+ #: wppa-settings-autosave.php:1059 wppa-settings-autosave.php:1069
6701
  msgid ""
6702
  "Changing the coverphoto size may result in all thumbnails being regenerated. "
6703
  "this may take a while."
6704
  msgstr ""
6705
 
6706
+ #: wppa-settings-autosave.php:1066
6707
  msgid "Coverphoto size multi"
6708
  msgstr ""
6709
 
6710
+ #: wppa-settings-autosave.php:1067
6711
  msgid "The size of coverphotos if more than one."
6712
  msgstr ""
6713
 
6714
+ #: wppa-settings-autosave.php:1076
6715
  msgid "Size is height"
6716
  msgstr ""
6717
 
6718
+ #: wppa-settings-autosave.php:1077
6719
  msgid "The size of the coverphoto is the height of it."
6720
  msgstr ""
6721
 
6722
+ #: wppa-settings-autosave.php:1078
6723
  msgid ""
6724
  "If set: the previous setting is the height, if unset: the largest of width "
6725
  "and height."
6726
  msgstr ""
6727
 
6728
+ #: wppa-settings-autosave.php:1079
6729
  msgid ""
6730
  "This setting applies for coverphoto position top or bottom only (Table IV-"
6731
  "D3)."
6732
  msgstr ""
6733
 
6734
+ #: wppa-settings-autosave.php:1080
6735
  msgid "This makes it easyer to make the covers of equal height."
6736
  msgstr ""
6737
 
6738
+ #: wppa-settings-autosave.php:1088
6739
  msgid "Max number of covers per page."
6740
  msgstr ""
6741
 
6742
+ #: wppa-settings-autosave.php:1089
6743
  msgid ""
6744
  "Enter the maximum number of album covers per page. A value of 0 indicates no "
6745
  "pagination."
6746
  msgstr ""
6747
 
6748
+ #: wppa-settings-autosave.php:1091
6749
  msgid "covers"
6750
  msgstr ""
6751
 
6752
+ #: wppa-settings-autosave.php:1096
6753
  msgid "Rating and comment related size settings"
6754
  msgstr ""
6755
 
6756
+ #: wppa-settings-autosave.php:1098
6757
  #, fuzzy
6758
  msgid "Rating size"
6759
  msgstr "Hlasování: %s"
6760
 
6761
+ #: wppa-settings-autosave.php:1099
6762
  msgid "Select the number of voting stars."
6763
  msgstr ""
6764
 
6765
+ #: wppa-settings-autosave.php:1102
6766
  msgid "Standard: 5 stars"
6767
  msgstr ""
6768
 
6769
+ #: wppa-settings-autosave.php:1102
6770
  msgid "Extended: 10 stars"
6771
  msgstr ""
6772
 
6773
+ #: wppa-settings-autosave.php:1102
6774
  msgid "One button vote"
6775
  msgstr ""
6776
 
6777
+ #: wppa-settings-autosave.php:1109
6778
  msgid "Display precision"
6779
  msgstr ""
6780
 
6781
+ #: wppa-settings-autosave.php:1110
6782
  msgid "Select the desired rating display precision."
6783
  msgstr ""
6784
 
6785
+ #: wppa-settings-autosave.php:1113
6786
  msgid "decimal places"
6787
  msgstr ""
6788
 
6789
+ #: wppa-settings-autosave.php:1121
6790
  msgid "Size of Avatar images."
6791
  msgstr ""
6792
 
6793
+ #: wppa-settings-autosave.php:1122
6794
  msgid "The size of the square avatar; must be > 0 and < 256"
6795
  msgstr ""
6796
 
6797
+ #: wppa-settings-autosave.php:1129
6798
  #, fuzzy
6799
  msgid "Rating space"
6800
  msgstr "Hlasování: %s"
6801
 
6802
+ #: wppa-settings-autosave.php:1130
6803
  msgid "Space between avg and my rating stars"
6804
  msgstr ""
6805
 
6806
+ #: wppa-settings-autosave.php:1138
6807
  msgid "Widget related size settings"
6808
  msgstr ""
6809
 
6810
+ #: wppa-settings-autosave.php:1140
6811
  msgid "Widget width"
6812
  msgstr ""
6813
 
6814
+ #: wppa-settings-autosave.php:1141
6815
  msgid "The useable width within widgets."
6816
  msgstr ""
6817
 
6818
+ #: wppa-settings-autosave.php:1142
6819
  msgid ""
6820
  "Widget width for photo of the day, general purpose (default), slideshow "
6821
  "(default) and upload widgets."
6822
  msgstr ""
6823
 
6824
+ #: wppa-settings-autosave.php:1149
6825
  #, fuzzy
6826
  msgid "TopTen count"
6827
  msgstr "Nejlépe hodnocené fotografie"
6828
 
6829
+ #: wppa-settings-autosave.php:1150
6830
  msgid "Number of photos in TopTen widget."
6831
  msgstr ""
6832
 
6833
+ #: wppa-settings-autosave.php:1151
6834
  msgid "Enter the maximum number of rated photos in the TopTen widget."
6835
  msgstr ""
6836
 
6837
+ #: wppa-settings-autosave.php:1158
6838
  #, fuzzy
6839
  msgid "TopTen size"
6840
  msgstr "Nejlépe hodnocené fotografie"
6841
 
6842
+ #: wppa-settings-autosave.php:1159
6843
  msgid "Size of thumbnails in TopTen widget."
6844
  msgstr ""
6845
 
6846
+ #: wppa-settings-autosave.php:1160
6847
  msgid "Enter the size for the mini photos in the TopTen widget."
6848
  msgstr ""
6849
 
6850
+ #: wppa-settings-autosave.php:1161 wppa-settings-autosave.php:1181
6851
+ #: wppa-settings-autosave.php:1201 wppa-settings-autosave.php:1221
6852
+ #: wppa-settings-autosave.php:1241 wppa-settings-autosave.php:1261
6853
  msgid "The size applies to the width or height, whatever is the largest."
6854
  msgstr ""
6855
 
6856
+ #: wppa-settings-autosave.php:1162 wppa-settings-autosave.php:1182
6857
+ #: wppa-settings-autosave.php:1202 wppa-settings-autosave.php:1222
6858
+ #: wppa-settings-autosave.php:1242 wppa-settings-autosave.php:1262
6859
  msgid ""
6860
  "Recommended values: 86 for a two column and 56 for a three column display."
6861
  msgstr ""
6862
 
6863
+ #: wppa-settings-autosave.php:1169
6864
  #, fuzzy
6865
  msgid "Comment count"
6866
  msgstr "Komentovat fotky:"
6867
 
6868
+ #: wppa-settings-autosave.php:1170
6869
  msgid "Number of entries in Comment widget."
6870
  msgstr ""
6871
 
6872
+ #: wppa-settings-autosave.php:1171
6873
  msgid "Enter the maximum number of entries in the Comment widget."
6874
  msgstr ""
6875
 
6876
+ #: wppa-settings-autosave.php:1173
6877
  msgid "entries"
6878
  msgstr ""
6879
 
6880
+ #: wppa-settings-autosave.php:1178
6881
  #, fuzzy
6882
  msgid "Comment size"
6883
  msgstr "Komentáře"
6884
 
6885
+ #: wppa-settings-autosave.php:1179
6886
  msgid "Size of thumbnails in Comment widget."
6887
  msgstr ""
6888
 
6889
+ #: wppa-settings-autosave.php:1180
6890
  msgid "Enter the size for the mini photos in the Comment widget."
6891
  msgstr ""
6892
 
6893
+ #: wppa-settings-autosave.php:1189
6894
  #, fuzzy
6895
  msgid "Thumbnail count"
6896
  msgstr "Označkované fotografie"
6897
 
6898
+ #: wppa-settings-autosave.php:1190
6899
  msgid "Number of photos in Thumbnail widget."
6900
  msgstr ""
6901
 
6902
+ #: wppa-settings-autosave.php:1191
6903
  msgid "Enter the maximum number of rated photos in the Thumbnail widget."
6904
  msgstr ""
6905
 
6906
+ #: wppa-settings-autosave.php:1198
6907
  #, fuzzy
6908
  msgid "Thumbnail widget size"
6909
  msgstr "Stránka s náhledy"
6910
 
6911
+ #: wppa-settings-autosave.php:1199
6912
  msgid "Size of thumbnails in Thumbnail widget."
6913
  msgstr ""
6914
 
6915
+ #: wppa-settings-autosave.php:1200
6916
  msgid "Enter the size for the mini photos in the Thumbnail widget."
6917
  msgstr ""
6918
 
6919
+ #: wppa-settings-autosave.php:1209
6920
  msgid "LasTen count"
6921
  msgstr ""
6922
 
6923
+ #: wppa-settings-autosave.php:1210
6924
  msgid "Number of photos in Last Ten widget."
6925
  msgstr ""
6926
 
6927
+ #: wppa-settings-autosave.php:1211
6928
  msgid "Enter the maximum number of photos in the LasTen widget."
6929
  msgstr ""
6930
 
6931
+ #: wppa-settings-autosave.php:1218
6932
  msgid "LasTen size"
6933
  msgstr ""
6934
 
6935
+ #: wppa-settings-autosave.php:1219
6936
  msgid "Size of thumbnails in Last Ten widget."
6937
  msgstr ""
6938
 
6939
+ #: wppa-settings-autosave.php:1220
6940
  msgid "Enter the size for the mini photos in the LasTen widget."
6941
  msgstr ""
6942
 
6943
+ #: wppa-settings-autosave.php:1229
6944
  #, fuzzy
6945
  msgid "Album widget count"
6946
  msgstr "Zadat/upravit popis fotky"
6947
 
6948
+ #: wppa-settings-autosave.php:1230
6949
  msgid "Number of albums in Album widget."
6950
  msgstr ""
6951
 
6952
+ #: wppa-settings-autosave.php:1231
6953
  msgid ""
6954
  "Enter the maximum number of thumbnail photos of albums in the Album widget."
6955
  msgstr ""
6956
 
6957
+ #: wppa-settings-autosave.php:1238
6958
  msgid "Album widget size"
6959
  msgstr ""
6960
 
6961
+ #: wppa-settings-autosave.php:1239
6962
  msgid "Size of thumbnails in Album widget."
6963
  msgstr ""
6964
 
6965
+ #: wppa-settings-autosave.php:1240
6966
  msgid "Enter the size for the mini photos in the Album widget."
6967
  msgstr ""
6968
 
6969
+ #: wppa-settings-autosave.php:1249
6970
  msgid "FeaTen count"
6971
  msgstr ""
6972
 
6973
+ #: wppa-settings-autosave.php:1250
6974
  msgid "Number of photos in Featured Ten widget."
6975
  msgstr ""
6976
 
6977
+ #: wppa-settings-autosave.php:1251
6978
  msgid "Enter the maximum number of photos in the FeaTen widget."
6979
  msgstr ""
6980
 
6981
+ #: wppa-settings-autosave.php:1258
6982
  msgid "FeaTen size"
6983
  msgstr ""
6984
 
6985
+ #: wppa-settings-autosave.php:1259
6986
  msgid "Size of thumbnails in Featured Ten widget."
6987
  msgstr ""
6988
 
6989
+ #: wppa-settings-autosave.php:1260
6990
  msgid "Enter the size for the mini photos in the FeaTen widget."
6991
  msgstr ""
6992
 
6993
+ #: wppa-settings-autosave.php:1269
6994
  msgid "Tagcloud min size"
6995
  msgstr ""
6996
 
6997
+ #: wppa-settings-autosave.php:1270
6998
  msgid "Minimal fontsize in tagclouds"
6999
  msgstr ""
7000
 
7001
+ #: wppa-settings-autosave.php:1278
7002
  msgid "Tagcloud max size"
7003
  msgstr ""
7004
 
7005
+ #: wppa-settings-autosave.php:1279
7006
  msgid "Maximal fontsize in tagclouds"
7007
  msgstr ""
7008
 
7009
+ #: wppa-settings-autosave.php:1287
7010
  msgid ""
7011
  "Lightbox related size settings. These settings have effect only when Table "
7012
  "IX-J3 is set to wppa"
7013
  msgstr ""
7014
 
7015
+ #: wppa-settings-autosave.php:1290
7016
  msgid ""
7017
  "Number of lines on the lightbox description area, exclusive the n/m line."
7018
  msgstr ""
7019
 
7020
+ #: wppa-settings-autosave.php:1291
7021
  msgid "Enter a number in the range from 0 to 24 or auto"
7022
  msgstr ""
7023
 
7024
+ #: wppa-settings-autosave.php:1293
7025
  msgid "lines"
7026
  msgstr ""
7027
 
7028
+ #: wppa-settings-autosave.php:1298
7029
  msgid "Magnifier cursor size"
7030
  msgstr ""
7031
 
7032
+ #: wppa-settings-autosave.php:1299
7033
  msgid "Select the size of the magnifier cursor."
7034
  msgstr ""
7035
 
7036
+ #: wppa-settings-autosave.php:1302
7037
  msgid "small"
7038
  msgstr ""
7039
 
7040
+ #: wppa-settings-autosave.php:1302
7041
  msgid "medium"
7042
  msgstr ""
7043
 
7044
+ #: wppa-settings-autosave.php:1302
7045
  msgid "large"
7046
  msgstr ""
7047
 
7048
+ #: wppa-settings-autosave.php:1311
7049
  msgid "Video related size settings"
7050
  msgstr ""
7051
 
7052
+ #: wppa-settings-autosave.php:1313
7053
  msgid "Default width"
7054
  msgstr ""
7055
 
7056
+ #: wppa-settings-autosave.php:1314
7057
  msgid "The width of most videos"
7058
  msgstr ""
7059
 
7060
+ #: wppa-settings-autosave.php:1322
7061
  msgid "Default height"
7062
  msgstr ""
7063
 
7064
+ #: wppa-settings-autosave.php:1323
7065
  msgid "The height of most videos"
7066
  msgstr ""
7067
 
7068
+ #: wppa-settings-autosave.php:1349
7069
  msgid "Table II:"
7070
  msgstr ""
7071
 
7072
+ #: wppa-settings-autosave.php:1349
7073
  msgid "Visibility:"
7074
  msgstr ""
7075
 
7076
+ #: wppa-settings-autosave.php:1350
7077
  msgid "This table describes the visibility of certain wppa+ elements."
7078
  msgstr ""
7079
 
7080
+ #: wppa-settings-autosave.php:1368
7081
  msgid "Breadcrumb related visibility settings"
7082
  msgstr ""
7083
 
7084
+ #: wppa-settings-autosave.php:1370
7085
  msgid "Breadcrumb on posts"
7086
  msgstr ""
7087
 
7088
+ #: wppa-settings-autosave.php:1371 wppa-settings-autosave.php:1381
7089
  msgid "Show breadcrumb navigation bars."
7090
  msgstr ""
7091
 
7092
+ #: wppa-settings-autosave.php:1372 wppa-settings-autosave.php:1382
7093
  msgid "Indicate whether a breadcrumb navigation should be displayed"
7094
  msgstr ""
7095
 
7096
+ #: wppa-settings-autosave.php:1380
7097
  msgid "Breadcrumb on pages"
7098
  msgstr ""
7099
 
7100
+ #: wppa-settings-autosave.php:1390
7101
  #, fuzzy
7102
  msgid "Breadcrumb on search results"
7103
  msgstr "Výsledek vyhledávání fotek"
7104
 
7105
+ #: wppa-settings-autosave.php:1391
7106
  msgid "Show breadcrumb navigation bars on the search results page."
7107
  msgstr ""
7108
 
7109
+ #: wppa-settings-autosave.php:1392
7110
  msgid ""
7111
  "Indicate whether a breadcrumb navigation should be displayed above the "
7112
  "search results."
7113
  msgstr ""
7114
 
7115
+ #: wppa-settings-autosave.php:1399
7116
  msgid "Breadcrumb on topten displays"
7117
  msgstr ""
7118
 
7119
+ #: wppa-settings-autosave.php:1400
7120
  msgid "Show breadcrumb navigation bars on topten displays."
7121
  msgstr ""
7122
 
7123
+ #: wppa-settings-autosave.php:1401
7124
  msgid ""
7125
  "Indicate whether a breadcrumb navigation should be displayed above the "
7126
  "topten displays."
7127
  msgstr ""
7128
 
7129
+ #: wppa-settings-autosave.php:1408
7130
  msgid "Breadcrumb on last ten displays"
7131
  msgstr ""
7132
 
7133
+ #: wppa-settings-autosave.php:1409
7134
  msgid "Show breadcrumb navigation bars on last ten displays."
7135
  msgstr ""
7136
 
7137
+ #: wppa-settings-autosave.php:1410
7138
  msgid ""
7139
  "Indicate whether a breadcrumb navigation should be displayed above the last "
7140
  "ten displays."
7141
  msgstr ""
7142
 
7143
+ #: wppa-settings-autosave.php:1417
7144
  msgid "Breadcrumb on comment ten displays"
7145
  msgstr ""
7146
 
7147
+ #: wppa-settings-autosave.php:1418
7148
  msgid "Show breadcrumb navigation bars on comment ten displays."
7149
  msgstr ""
7150
 
7151
+ #: wppa-settings-autosave.php:1419
7152
  msgid ""
7153
  "Indicate whether a breadcrumb navigation should be displayed above the "
7154
  "comment ten displays."
7155
  msgstr ""
7156
 
7157
+ #: wppa-settings-autosave.php:1426
7158
  msgid "Breadcrumb on tag result displays"
7159
  msgstr ""
7160
 
7161
+ #: wppa-settings-autosave.php:1427
7162
  msgid "Show breadcrumb navigation bars on tag result displays."
7163
  msgstr ""
7164
 
7165
+ #: wppa-settings-autosave.php:1428
7166
  msgid ""
7167
  "Indicate whether a breadcrumb navigation should be displayed above the tag "
7168
  "result displays."
7169
  msgstr ""
7170
 
7171
+ #: wppa-settings-autosave.php:1435
7172
  msgid "Breadcrumb on featured ten displays"
7173
  msgstr ""
7174
 
7175
+ #: wppa-settings-autosave.php:1436
7176
  msgid "Show breadcrumb navigation bars on featured ten displays."
7177
  msgstr ""
7178
 
7179
+ #: wppa-settings-autosave.php:1437
7180
  msgid ""
7181
  "Indicate whether a breadcrumb navigation should be displayed above the "
7182
  "featured ten displays."
7183
  msgstr ""
7184
 
7185
+ #: wppa-settings-autosave.php:1444
7186
  msgid "Breadcrumb on related photos displays"
7187
  msgstr ""
7188
 
7189
+ #: wppa-settings-autosave.php:1445
7190
  msgid "Show breadcrumb navigation bars on related photos displays."
7191
  msgstr ""
7192
 
7193
+ #: wppa-settings-autosave.php:1446
7194
  msgid ""
7195
  "Indicate whether a breadcrumb navigation should be displayed above the "
7196
  "related photos displays."
7197
  msgstr ""
7198
 
7199
+ #: wppa-settings-autosave.php:1454
7200
  msgid "Show \"Home\" in breadcrumb."
7201
  msgstr ""
7202
 
7203
+ #: wppa-settings-autosave.php:1455
7204
  msgid ""
7205
  "Indicate whether the breadcrumb navigation should start with a \"Home\"-link"
7206
  msgstr ""
7207
 
7208
+ #: wppa-settings-autosave.php:1463
7209
  msgid "Show the page(s) in breadcrumb."
7210
  msgstr ""
7211
 
7212
+ #: wppa-settings-autosave.php:1464
7213
  msgid ""
7214
  "Indicate whether the breadcrumb navigation should show the page(hierarchy)"
7215
  msgstr ""
7216
 
7217
+ #: wppa-settings-autosave.php:1471
7218
  msgid "Separator"
7219
  msgstr ""
7220
 
7221
+ #: wppa-settings-autosave.php:1472
7222
  msgid "Breadcrumb separator symbol."
7223
  msgstr ""
7224
 
7225
+ #: wppa-settings-autosave.php:1473
7226
  msgid "Select the desired breadcrumb separator element."
7227
  msgstr ""
7228
 
7229
+ #: wppa-settings-autosave.php:1474
7230
  msgid "A text string may contain valid html."
7231
  msgstr ""
7232
 
7233
+ #: wppa-settings-autosave.php:1475
7234
  msgid ""
7235
  "An image will be scaled automatically if you set the navigation font size."
7236
  msgstr ""
7237
 
7238
+ #: wppa-settings-autosave.php:1477
7239
  msgid "Text (html):"
7240
  msgstr ""
7241
 
7242
+ #: wppa-settings-autosave.php:1477
7243
  msgid "Image (url):"
7244
  msgstr ""
7245
 
7246
+ #: wppa-settings-autosave.php:1485
7247
  msgid "Html"
7248
  msgstr ""
7249
 
7250
+ #: wppa-settings-autosave.php:1486
7251
  msgid "Breadcrumb separator text."
7252
  msgstr ""
7253
 
7254
+ #: wppa-settings-autosave.php:1487
7255
  msgid "Enter the HTML code that produces the separator symbol you want."
7256
  msgstr ""
7257
 
7258
+ #: wppa-settings-autosave.php:1488
7259
  msgid ""
7260
  "It may be as simple as '-' (without the quotes) or as complex as a tag like "
7261
  "<div>..</div>."
7262
  msgstr ""
7263
 
7264
+ #: wppa-settings-autosave.php:1495
7265
  msgid "Image Url"
7266
  msgstr ""
7267
 
7268
+ #: wppa-settings-autosave.php:1496
7269
  msgid "Full url to separator image."
7270
  msgstr ""
7271
 
7272
+ #: wppa-settings-autosave.php:1497
7273
  msgid ""
7274
  "Enter the full url to the image you want to use for the separator symbol."
7275
  msgstr ""
7276
 
7277
+ #: wppa-settings-autosave.php:1504
7278
  #, fuzzy
7279
  msgid "Pagelink position"
7280
  msgstr "Pozice:"
7281
 
7282
+ #: wppa-settings-autosave.php:1505
7283
  msgid "The location for the pagelinks bar."
7284
  msgstr ""
7285
 
7286
+ #: wppa-settings-autosave.php:1508 wppa-settings-autosave.php:3709
7287
  msgid "Top"
7288
  msgstr ""
7289
 
7290
+ #: wppa-settings-autosave.php:1508 wppa-settings-autosave.php:3709
7291
  msgid "Bottom"
7292
  msgstr ""
7293
 
7294
+ #: wppa-settings-autosave.php:1508
7295
  msgid "Both"
7296
  msgstr ""
7297
 
7298
+ #: wppa-settings-autosave.php:1515
7299
  msgid "Thumblink on slideshow"
7300
  msgstr ""
7301
 
7302
+ #: wppa-settings-autosave.php:1516
7303
  msgid "Show a thumb link on slideshow bc."
7304
  msgstr ""
7305
 
7306
+ #: wppa-settings-autosave.php:1517
7307
  msgid "Show a link to thumbnail display on an breadcrumb above a slideshow"
7308
  msgstr ""
7309
 
7310
+ #: wppa-settings-autosave.php:1524
7311
  msgid "Slideshow related visibility settings"
7312
  msgstr ""
7313
 
7314
+ #: wppa-settings-autosave.php:1526
7315
  #, fuzzy
7316
  msgid "Start/stop"
7317
  msgstr "Spustit"
7318
 
7319
+ #: wppa-settings-autosave.php:1527
7320
  #, fuzzy
7321
  msgid "Show the Start/Stop slideshow bar."
7322
  msgstr "Ke spuštění/zastavení prezentace dvakrát klikněte"
7323
 
7324
+ #: wppa-settings-autosave.php:1528
7325
  msgid ""
7326
  "If checked: display the start/stop slideshow navigation bar above the full-"
7327
  "size images and slideshow"
7328
  msgstr ""
7329
 
7330
+ #: wppa-settings-autosave.php:1535
7331
  #, fuzzy
7332
  msgid "Browse bar"
7333
  msgstr "Prohlédnout fotky"
7334
 
7335
+ #: wppa-settings-autosave.php:1536
7336
  #, fuzzy
7337
  msgid "Show Browse photos bar."
7338
  msgstr "Prohlédnout fotky"
7339
 
7340
+ #: wppa-settings-autosave.php:1537
7341
  msgid ""
7342
  "If checked: display the preveous/next navigation bar under the full-size "
7343
  "images and slideshow"
7344
  msgstr ""
7345
 
7346
+ #: wppa-settings-autosave.php:1544
7347
  msgid "Filmstrip"
7348
  msgstr ""
7349
 
7350
+ #: wppa-settings-autosave.php:1545
7351
  msgid "Show Filmstrip navigation bar."
7352
  msgstr ""
7353
 
7354
+ #: wppa-settings-autosave.php:1546
7355
  msgid ""
7356
  "If checked: display the filmstrip navigation bar under the full_size images "
7357
  "and slideshow"
7358
  msgstr ""
7359
 
7360
+ #: wppa-settings-autosave.php:1553
7361
  msgid "Film seam"
7362
  msgstr ""
7363
 
7364
+ #: wppa-settings-autosave.php:1554
7365
  msgid "Show seam between end and start of film."
7366
  msgstr ""
7367
 
7368
+ #: wppa-settings-autosave.php:1555
7369
  msgid "If checked: display the wrap-around point in the filmstrip"
7370
  msgstr ""
7371
 
7372
+ #: wppa-settings-autosave.php:1562
7373
  #, fuzzy
7374
  msgid "Photo name"
7375
  msgstr "Foto dne"
7376
 
7377
+ #: wppa-settings-autosave.php:1563
7378
  #, fuzzy
7379
  msgid "Display photo name."
7380
  msgstr "Zadejte název fotky"
7381
 
7382
+ #: wppa-settings-autosave.php:1564
7383
  msgid "If checked: display the name of the photo under the slideshow image."
7384
  msgstr ""
7385
 
7386
+ #: wppa-settings-autosave.php:1571 wppa-settings-autosave.php:1951
7387
  msgid "Add (Owner)"
7388
  msgstr ""
7389
 
7390
+ #: wppa-settings-autosave.php:1572 wppa-settings-autosave.php:1952
7391
  msgid "Add the uploaders display name in parenthesis to the name."
7392
  msgstr ""
7393
 
7394
+ #: wppa-settings-autosave.php:1580
7395
  #, fuzzy
7396
  msgid "Photo desc"
7397
  msgstr "Foto"
7398
 
7399
+ #: wppa-settings-autosave.php:1581
7400
  #, fuzzy
7401
  msgid "Display Photo description."
7402
  msgstr "Zadat/upravit popis fotky"
7403
 
7404
+ #: wppa-settings-autosave.php:1582
7405
  msgid ""
7406
  "If checked: display the description of the photo under the slideshow image."
7407
  msgstr ""
7408
 
7409
+ #: wppa-settings-autosave.php:1589
7410
  msgid "Hide when empty"
7411
  msgstr ""
7412
 
7413
+ #: wppa-settings-autosave.php:1590
7414
  msgid "Hide the descriptionbox when empty."
7415
  msgstr ""
7416
 
7417
+ #: wppa-settings-autosave.php:1598
7418
  #, fuzzy
7419
  msgid "Rating system"
7420
  msgstr "Hlasování: %s"
7421
 
7422
+ #: wppa-settings-autosave.php:1599
7423
  msgid "Enable the rating system."
7424
  msgstr ""
7425
 
7426
+ #: wppa-settings-autosave.php:1600
7427
  msgid "If checked, the photo rating system will be enabled."
7428
  msgstr ""
7429
 
7430
+ #: wppa-settings-autosave.php:1608
7431
  #, fuzzy
7432
  msgid "Comments system"
7433
  msgstr "Komentáře"
7434
 
7435
+ #: wppa-settings-autosave.php:1609
7436
  msgid "Enable the comments system."
7437
  msgstr ""
7438
 
7439
+ #: wppa-settings-autosave.php:1610
7440
  msgid ""
7441
  "Display the comments box under the fullsize images and let users enter their "
7442
  "comments on individual photos."
7443
  msgstr ""
7444
 
7445
+ #: wppa-settings-autosave.php:1618
7446
  #, fuzzy
7447
  msgid "Comment Avatar default"
7448
  msgstr "Komentář byl odeslán"
7449
 
7450
+ #: wppa-settings-autosave.php:1619
7451
  msgid "Show Avatars with the comments if not --- none ---"
7452
  msgstr ""
7453
 
7454
+ #: wppa-settings-autosave.php:1624
7455
  msgid "mystery man"
7456
  msgstr ""
7457
 
7458
+ #: wppa-settings-autosave.php:1625
7459
  msgid "identicon"
7460
  msgstr ""
7461
 
7462
+ #: wppa-settings-autosave.php:1626
7463
  msgid "monsterid"
7464
  msgstr ""
7465
 
7466
+ #: wppa-settings-autosave.php:1627
7467
  msgid "wavatar"
7468
  msgstr ""
7469
 
7470
+ #: wppa-settings-autosave.php:1628
7471
  msgid "retro"
7472
  msgstr ""
7473
 
7474
+ #: wppa-settings-autosave.php:1629
7475
  #, fuzzy
7476
  msgid "--- url ---"
7477
  msgstr "--- vše ---"
7478
 
7479
+ #: wppa-settings-autosave.php:1644
7480
  msgid "Comment Avatar url"
7481
  msgstr ""
7482
 
7483
+ #: wppa-settings-autosave.php:1645
7484
  msgid "Comment Avatar default url."
7485
  msgstr ""
7486
 
7487
+ #: wppa-settings-autosave.php:1653
7488
  #, fuzzy
7489
  msgid "Big Browse Buttons"
7490
  msgstr "Prohlédnout fotky"
7491
 
7492
+ #: wppa-settings-autosave.php:1654
7493
  msgid "Enable invisible browsing buttons."
7494
  msgstr ""
7495
 
7496
+ #: wppa-settings-autosave.php:1655 wppa-settings-autosave.php:2198
7497
  #, fuzzy
7498
  msgid ""
7499
  "If checked, the fullsize image is covered by two invisible areas that act as "
7502
  "Pro zobrazení fotek v plné velikosti musíte povolit JavaScript ve vašem "
7503
  "prohlížeči."
7504
 
7505
+ #: wppa-settings-autosave.php:1656 wppa-settings-autosave.php:2199
7506
+ #: wppa-settings-autosave.php:2209
7507
  msgid ""
7508
  "Make sure the Full height (Table I-B2) is properly configured to prevent "
7509
  "these areas to overlap unwanted space."
7510
  msgstr ""
7511
 
7512
+ #: wppa-settings-autosave.php:1663
7513
  #, fuzzy
7514
  msgid "Ugly Browse Buttons"
7515
  msgstr "Prohlédnout fotky"
7516
 
7517
+ #: wppa-settings-autosave.php:1664
7518
  msgid "Enable the ugly browsing buttons."
7519
  msgstr ""
7520
 
7521
+ #: wppa-settings-autosave.php:1665
7522
  msgid "If checked, the fullsize image is covered by two browse buttons."
7523
  msgstr ""
7524
 
7525
+ #: wppa-settings-autosave.php:1669 wppa-settings-autosave.php:2240
7526
+ #: wppa-settings-autosave.php:2251
7527
  msgid "Black"
7528
  msgstr ""
7529
 
7530
+ #: wppa-settings-autosave.php:1669
7531
  msgid "Light gray"
7532
  msgstr ""
7533
 
7534
+ #: wppa-settings-autosave.php:1676
7535
  #, fuzzy
7536
  msgid "Start/stop icons"
7537
  msgstr "Spustit"
7538
 
7539
+ #: wppa-settings-autosave.php:1677
7540
  msgid "Show start and stop icons at the center of the slide"
7541
  msgstr ""
7542
 
7543
+ #: wppa-settings-autosave.php:1682
7544
  msgid "Black square"
7545
  msgstr ""
7546
 
7547
+ #: wppa-settings-autosave.php:1682
7548
  msgid "Blue square"
7549
  msgstr ""
7550
 
7551
+ #: wppa-settings-autosave.php:1682
7552
  msgid "Black round"
7553
  msgstr ""
7554
 
7555
+ #: wppa-settings-autosave.php:1689
7556
  msgid "Show custom box"
7557
  msgstr ""
7558
 
7559
+ #: wppa-settings-autosave.php:1690
7560
  msgid "Display the custom box in the slideshow"
7561
  msgstr ""
7562
 
7563
+ #: wppa-settings-autosave.php:1691 wppa-settings-autosave.php:1702
7564
  msgid ""
7565
  "You can fill the custom box with any html you like. It will not be checked, "
7566
  "so it is your own responsability to close tags properly."
7567
  msgstr ""
7568
 
7569
+ #: wppa-settings-autosave.php:1692 wppa-settings-autosave.php:1703
7570
  msgid "The position of the box can be defined in Table IX-E."
7571
  msgstr ""
7572
 
7573
+ #: wppa-settings-autosave.php:1700
7574
  msgid "Custom content"
7575
  msgstr ""
7576
 
7577
+ #: wppa-settings-autosave.php:1701
7578
  msgid "The content (html) of the custom box."
7579
  msgstr ""
7580
 
7581
+ #: wppa-settings-autosave.php:1710
7582
  #, fuzzy
7583
  msgid "Slideshow/Number bar"
7584
  msgstr "Slideshow"
7585
 
7586
+ #: wppa-settings-autosave.php:1711
7587
  msgid "Display the Slideshow / Number bar."
7588
  msgstr ""
7589
 
7590
+ #: wppa-settings-autosave.php:1712
7591
  msgid "If checked: display the number boxes on slideshow"
7592
  msgstr ""
7593
 
7594
+ #: wppa-settings-autosave.php:1720
7595
  msgid "IPTC system"
7596
  msgstr ""
7597
 
7598
+ #: wppa-settings-autosave.php:1721
7599
  msgid "Enable the iptc system."
7600
  msgstr ""
7601
 
7602
+ #: wppa-settings-autosave.php:1722
7603
  msgid "Display the iptc box under the fullsize images."
7604
  msgstr ""
7605
 
7606
+ #: wppa-settings-autosave.php:1730
7607
  msgid "IPTC open"
7608
  msgstr ""
7609
 
7610
+ #: wppa-settings-autosave.php:1731
7611
  msgid "Display the iptc box initially opened."
7612
  msgstr ""
7613
 
7614
+ #: wppa-settings-autosave.php:1732
7615
  msgid "Display the iptc box under the fullsize images initially open."
7616
  msgstr ""
7617
 
7618
+ #: wppa-settings-autosave.php:1740
7619
  msgid "EXIF system"
7620
  msgstr ""
7621
 
7622
+ #: wppa-settings-autosave.php:1741
7623
  msgid "Enable the exif system."
7624
  msgstr ""
7625
 
7626
+ #: wppa-settings-autosave.php:1742
7627
  msgid "Display the exif box under the fullsize images."
7628
  msgstr ""
7629
 
7630
+ #: wppa-settings-autosave.php:1750
7631
  msgid "EXIF open"
7632
  msgstr ""
7633
 
7634
+ #: wppa-settings-autosave.php:1751
7635
  msgid "Display the exif box initially opened."
7636
  msgstr ""
7637
 
7638
+ #: wppa-settings-autosave.php:1752
7639
  msgid "Display the exif box under the fullsize images initially open."
7640
  msgstr ""
7641
 
7642
+ #: wppa-settings-autosave.php:1760
7643
  msgid "Social media share box related visibility settings"
7644
  msgstr ""
7645
 
7646
+ #: wppa-settings-autosave.php:1762
7647
  msgid "Show Share Box"
7648
  msgstr ""
7649
 
7650
+ #: wppa-settings-autosave.php:1763
7651
  msgid "Display the share social media buttons box."
7652
  msgstr ""
7653
 
7654
+ #: wppa-settings-autosave.php:1772 wppa-settings-autosave.php:8137
7655
  msgid "Hide when running"
7656
  msgstr ""
7657
 
7658
+ #: wppa-settings-autosave.php:1773
7659
  msgid "Hide the SM box when slideshow runs."
7660
  msgstr ""
7661
 
7662
+ #: wppa-settings-autosave.php:1781
7663
  msgid "Show Share Box Widget"
7664
  msgstr ""
7665
 
7666
+ #: wppa-settings-autosave.php:1782
7667
  msgid "Display the share social media buttons box in widgets."
7668
  msgstr ""
7669
 
7670
+ #: wppa-settings-autosave.php:1783
7671
  msgid ""
7672
  "This setting applies to normal slideshows in widgets, not to the "
7673
  "slideshowwidget as that is a slideonly display."
7674
  msgstr ""
7675
 
7676
+ #: wppa-settings-autosave.php:1791
7677
  msgid "Show Share Buttons Thumbs"
7678
  msgstr ""
7679
 
7680
+ #: wppa-settings-autosave.php:1792
7681
  msgid "Display the share social media buttons under thumbnails."
7682
  msgstr ""
7683
 
7684
+ #: wppa-settings-autosave.php:1801
7685
  msgid "Show Share Buttons Lightbox"
7686
  msgstr ""
7687
 
7688
+ #: wppa-settings-autosave.php:1802
7689
  msgid "Display the share social media buttons on lightbox displays."
7690
  msgstr ""
7691
 
7692
+ #: wppa-settings-autosave.php:1811
7693
  #, fuzzy
7694
  msgid "Show Share Buttons Mphoto"
7695
  msgstr "Koukni na tuto fotku na %s"
7696
 
7697
+ #: wppa-settings-autosave.php:1812
7698
  msgid "Display the share social media buttons on mphoto displays."
7699
  msgstr ""
7700
 
7701
+ #: wppa-settings-autosave.php:1821
7702
  msgid "Show QR Code"
7703
  msgstr ""
7704
 
7705
+ #: wppa-settings-autosave.php:1822
7706
  msgid "Display the QR code in the share box."
7707
  msgstr ""
7708
 
7709
+ #: wppa-settings-autosave.php:1830
7710
  #, fuzzy
7711
  msgid "Show Twitter button"
7712
  msgstr "Sdílet %s na Pinterest"
7713
 
7714
+ #: wppa-settings-autosave.php:1831
7715
  msgid "Display the Twitter button in the share box."
7716
  msgstr ""
7717
 
7718
+ #: wppa-settings-autosave.php:1839
7719
  #, fuzzy
7720
  msgid "Show Google+ button"
7721
  msgstr "Sdílet %s na Google +"
7722
 
7723
+ #: wppa-settings-autosave.php:1840
7724
  msgid "Display the Google+ button in the share box."
7725
  msgstr ""
7726
 
7727
+ #: wppa-settings-autosave.php:1848
7728
  #, fuzzy
7729
  msgid "Show Pinterest button"
7730
  msgstr "Sdílet %s na Pinterest"
7731
 
7732
+ #: wppa-settings-autosave.php:1849
7733
  msgid "Display the Pintrest button in the share box."
7734
  msgstr ""
7735
 
7736
+ #: wppa-settings-autosave.php:1857
7737
  msgid "Show LinkedIn button"
7738
  msgstr ""
7739
 
7740
+ #: wppa-settings-autosave.php:1858
7741
  msgid "Display the LinkedIn button in the share box."
7742
  msgstr ""
7743
 
7744
+ #: wppa-settings-autosave.php:1866
7745
  msgid "Show Facebook share button"
7746
  msgstr ""
7747
 
7748
+ #: wppa-settings-autosave.php:1867 wppa-settings-autosave.php:1876
7749
  msgid "Display the Facebook button in the share box."
7750
  msgstr ""
7751
 
7752
+ #: wppa-settings-autosave.php:1875
7753
  msgid "Show Facebook like button"
7754
  msgstr ""
7755
 
7756
+ #: wppa-settings-autosave.php:1884
7757
  msgid "Display type"
7758
  msgstr ""
7759
 
7760
+ #: wppa-settings-autosave.php:1885
7761
  msgid "Select the Facebook button display type."
7762
  msgstr ""
7763
 
7764
+ #: wppa-settings-autosave.php:1888
7765
  msgid "Button with counter"
7766
  msgstr ""
7767
 
7768
+ #: wppa-settings-autosave.php:1888
7769
  msgid "Box with counter"
7770
  msgstr ""
7771
 
7772
+ #: wppa-settings-autosave.php:1895
7773
  msgid "Show Facebook comment box"
7774
  msgstr ""
7775
 
7776
+ #: wppa-settings-autosave.php:1896
7777
  msgid "Display the Facebook comment dialog box in the share box."
7778
  msgstr ""
7779
 
7780
+ #: wppa-settings-autosave.php:1904
7781
  msgid "Facebook User Id"
7782
  msgstr ""
7783
 
7784
+ #: wppa-settings-autosave.php:1905
7785
  msgid "Enter your facebook user id to be able to moderate comments and sends"
7786
  msgstr ""
7787
 
7788
+ #: wppa-settings-autosave.php:1913
7789
  msgid "Facebook App Id"
7790
  msgstr ""
7791
 
7792
+ #: wppa-settings-autosave.php:1914
7793
  msgid "Enter your facebook app id to be able to moderate comments and sends"
7794
  msgstr ""
7795
 
7796
+ #: wppa-settings-autosave.php:1922
7797
  msgid "Facebook js SDK"
7798
  msgstr ""
7799
 
7800
+ #: wppa-settings-autosave.php:1923
7801
  msgid "Load Facebook js SDK"
7802
  msgstr ""
7803
 
7804
+ #: wppa-settings-autosave.php:1924
7805
  msgid ""
7806
  "Uncheck this box only when there is a conflict with an other plugin that "
7807
  "also loads the Facebook js SDK."
7808
  msgstr ""
7809
 
7810
+ #: wppa-settings-autosave.php:1931
7811
  msgid "Share single image"
7812
  msgstr ""
7813
 
7814
+ #: wppa-settings-autosave.php:1932
7815
  msgid "Share a link to a single image, not the slideshow."
7816
  msgstr ""
7817
 
7818
+ #: wppa-settings-autosave.php:1933
7819
  msgid ""
7820
  "The sharelink points to a page with a single image rather than to the page "
7821
  "with the photo in the slideshow."
7822
  msgstr ""
7823
 
7824
+ #: wppa-settings-autosave.php:1940
7825
  msgid "Thumbnail display related visibility settings"
7826
  msgstr ""
7827
 
7828
+ #: wppa-settings-autosave.php:1942
7829
  #, fuzzy
7830
  msgid "Thumbnail name"
7831
  msgstr "Stránka s náhledy"
7832
 
7833
+ #: wppa-settings-autosave.php:1943
7834
  msgid "Display Thumbnail name."
7835
  msgstr ""
7836
 
7837
+ #: wppa-settings-autosave.php:1944
7838
  msgid "Display photo name under thumbnail images."
7839
  msgstr ""
7840
 
7841
+ #: wppa-settings-autosave.php:1960
7842
  #, fuzzy
7843
  msgid "Thumbnail desc"
7844
  msgstr "Označkované fotografie"
7845
 
7846
+ #: wppa-settings-autosave.php:1961
7847
  #, fuzzy
7848
  msgid "Display Thumbnail description."
7849
  msgstr "Zadat/upravit popis fotky"
7850
 
7851
+ #: wppa-settings-autosave.php:1962
7852
  msgid "Display description of the photo under thumbnail images."
7853
  msgstr ""
7854
 
7855
+ #: wppa-settings-autosave.php:1969
7856
  #, fuzzy
7857
  msgid "Thumbnail rating"
7858
  msgstr "Stránka s náhledy"
7859
 
7860
+ #: wppa-settings-autosave.php:1970
7861
  msgid "Display Thumbnail Rating."
7862
  msgstr ""
7863
 
7864
+ #: wppa-settings-autosave.php:1971
7865
  msgid "Display the rating of the photo under the thumbnail image."
7866
  msgstr ""
7867
 
7868
+ #: wppa-settings-autosave.php:1978
7869
  #, fuzzy
7870
  msgid "Thumbnail comcount"
7871
  msgstr "Označkované fotografie"
7872
 
7873
+ #: wppa-settings-autosave.php:1979
7874
  msgid "Display Thumbnail Comment count."
7875
  msgstr ""
7876
 
7877
+ #: wppa-settings-autosave.php:1980
7878
  msgid "Display the number of comments to the photo under the thumbnail image."
7879
  msgstr ""
7880
 
7881
+ #: wppa-settings-autosave.php:1987
7882
  #, fuzzy
7883
  msgid "Thumbnail viewcount"
7884
  msgstr "Stránka s náhledy"
7885
 
7886
+ #: wppa-settings-autosave.php:1988
7887
  msgid "Display the number of views."
7888
  msgstr ""
7889
 
7890
+ #: wppa-settings-autosave.php:1989
7891
  msgid "Display the number of views under the thumbnail image."
7892
  msgstr ""
7893
 
7894
+ #: wppa-settings-autosave.php:1996
7895
+ #, fuzzy
7896
+ msgid "Thumbnail virt album"
7897
+ msgstr "Označkované fotografie"
7898
+
7899
+ #: wppa-settings-autosave.php:1997
7900
+ msgid "Display the real album name on virtual album display."
7901
+ msgstr ""
7902
+
7903
+ #: wppa-settings-autosave.php:1998
7904
+ msgid ""
7905
+ "Display the album name of the photo in parenthesis under the thumbnail on "
7906
+ "virtual album displays like search results etc."
7907
+ msgstr ""
7908
+
7909
+ #: wppa-settings-autosave.php:2005
7910
  #, fuzzy
7911
  msgid "Thumbnail video"
7912
  msgstr "Stránka s náhledy"
7913
 
7914
+ #: wppa-settings-autosave.php:2006
7915
  msgid "Show video controls on thumbnail displays."
7916
  msgstr ""
7917
 
7918
+ #: wppa-settings-autosave.php:2007
7919
  msgid ""
7920
  "Works on default thumbnail type only. You can play the video only when the "
7921
  "link is set to no link at all."
7922
  msgstr ""
7923
 
7924
+ #: wppa-settings-autosave.php:2014
7925
  #, fuzzy
7926
  msgid "Thumbnail audio"
7927
  msgstr "Stránka s náhledy"
7928
 
7929
+ #: wppa-settings-autosave.php:2015
7930
  msgid "Show audio controls on thumbnail displays."
7931
  msgstr ""
7932
 
7933
+ #: wppa-settings-autosave.php:2016
7934
  msgid "Works on default thumbnail type only."
7935
  msgstr ""
7936
 
7937
+ #: wppa-settings-autosave.php:2023
7938
  #, fuzzy
7939
  msgid "Popup name"
7940
  msgstr "Vaše jméno:"
7941
 
7942
+ #: wppa-settings-autosave.php:2024
7943
  msgid "Display Thumbnail name on popup."
7944
  msgstr ""
7945
 
7946
+ #: wppa-settings-autosave.php:2025
7947
  msgid "Display photo name under thumbnail images on the popup."
7948
  msgstr ""
7949
 
7950
+ #: wppa-settings-autosave.php:2032
7951
  msgid "Popup (owner)"
7952
  msgstr ""
7953
 
7954
+ #: wppa-settings-autosave.php:2033
7955
  msgid "Display owner on popup."
7956
  msgstr ""
7957
 
7958
+ #: wppa-settings-autosave.php:2034
7959
  msgid "Display photo owner under thumbnail images on the popup."
7960
  msgstr ""
7961
 
7962
+ #: wppa-settings-autosave.php:2041
7963
  msgid "Popup desc"
7964
  msgstr ""
7965
 
7966
+ #: wppa-settings-autosave.php:2042
7967
  msgid "Display Thumbnail description on popup."
7968
  msgstr ""
7969
 
7970
+ #: wppa-settings-autosave.php:2043
7971
  msgid "Display description of the photo under thumbnail images on the popup."
7972
  msgstr ""
7973
 
7974
+ #: wppa-settings-autosave.php:2050
7975
  msgid "Popup desc no links"
7976
  msgstr ""
7977
 
7978
+ #: wppa-settings-autosave.php:2051
7979
  msgid "Strip html anchor tags from descriptions on popups"
7980
  msgstr ""
7981
 
7982
+ #: wppa-settings-autosave.php:2052
7983
  msgid ""
7984
  "Use this option to prevent the display of links that cannot be activated."
7985
  msgstr ""
7986
 
7987
+ #: wppa-settings-autosave.php:2059
7988
  #, fuzzy
7989
  msgid "Popup rating"
7990
  msgstr "Moje hodnocení"
7991
 
7992
+ #: wppa-settings-autosave.php:2060
7993
  msgid "Display Thumbnail Rating on popup."
7994
  msgstr ""
7995
 
7996
+ #: wppa-settings-autosave.php:2061
7997
  msgid "Display the rating of the photo under the thumbnail image on the popup."
7998
  msgstr ""
7999
 
8000
+ #: wppa-settings-autosave.php:2068
8001
  msgid "Popup comcount"
8002
  msgstr ""
8003
 
8004
+ #: wppa-settings-autosave.php:2069
8005
  msgid "Display Thumbnail Comment count on popup."
8006
  msgstr ""
8007
 
8008
+ #: wppa-settings-autosave.php:2070
8009
  msgid ""
8010
  "Display the number of comments of the photo under the thumbnail image on the "
8011
  "popup."
8012
  msgstr ""
8013
 
8014
+ #: wppa-settings-autosave.php:2077
8015
  msgid "Show rating count"
8016
  msgstr ""
8017
 
8018
+ #: wppa-settings-autosave.php:2078
8019
  msgid "Display the number of votes along with average ratings."
8020
  msgstr ""
8021
 
8022
+ #: wppa-settings-autosave.php:2079
8023
  msgid ""
8024
  "If checked, the number of votes is displayed along with average rating "
8025
  "displays on thumbnail and popup displays."
8026
  msgstr ""
8027
 
8028
+ #: wppa-settings-autosave.php:2086
8029
  msgid "Show name on thumb area"
8030
  msgstr ""
8031
 
8032
+ #: wppa-settings-autosave.php:2087
8033
  msgid "Select if and where to display the album name on the thumbnail display."
8034
  msgstr ""
8035
 
8036
+ #: wppa-settings-autosave.php:2090 wppa-settings-autosave.php:2101
8037
  msgid "None"
8038
  msgstr ""
8039
 
8040
+ #: wppa-settings-autosave.php:2090 wppa-settings-autosave.php:2101
8041
+ #: wppa-settings-autosave.php:3220
8042
  msgid "At the top"
8043
  msgstr ""
8044
 
8045
+ #: wppa-settings-autosave.php:2090 wppa-settings-autosave.php:2101
8046
+ #: wppa-settings-autosave.php:3220
8047
  msgid "At the bottom"
8048
  msgstr ""
8049
 
8050
+ #: wppa-settings-autosave.php:2097
8051
  msgid "Show desc on thumb area"
8052
  msgstr ""
8053
 
8054
+ #: wppa-settings-autosave.php:2098
8055
  msgid ""
8056
  "Select if and where to display the album description on the thumbnail "
8057
  "display."
8058
  msgstr ""
8059
 
8060
+ #: wppa-settings-autosave.php:2108
8061
  msgid "Show Edit/Delete links"
8062
  msgstr ""
8063
 
8064
+ #: wppa-settings-autosave.php:2109
8065
  msgid "Show these links under default thumbnails for owner and admin."
8066
  msgstr ""
8067
 
8068
+ #: wppa-settings-autosave.php:2117
8069
  msgid "Show empty thumbnail area"
8070
  msgstr ""
8071
 
8072
+ #: wppa-settings-autosave.php:2118
8073
  msgid "Display thumbnail areas with upload link only for empty albums."
8074
  msgstr ""
8075
 
8076
+ #: wppa-settings-autosave.php:2127
8077
  msgid "Album cover related visibility settings"
8078
  msgstr ""
8079
 
8080
+ #: wppa-settings-autosave.php:2129
8081
  msgid "Covertext"
8082
  msgstr ""
8083
 
8084
+ #: wppa-settings-autosave.php:2130
8085
  msgid "Show the text on the album cover."
8086
  msgstr ""
8087
 
8088
+ #: wppa-settings-autosave.php:2131
8089
  msgid "Display the album decription on the album cover"
8090
  msgstr ""
8091
 
8092
+ #: wppa-settings-autosave.php:2139
8093
  msgid "Enable the slideshow."
8094
  msgstr ""
8095
 
8096
+ #: wppa-settings-autosave.php:2140
8097
  msgid ""
8098
  "If you do not want slideshows: uncheck this box. Browsing full size images "
8099
  "will remain possible."
8100
  msgstr ""
8101
 
8102
+ #: wppa-settings-autosave.php:2147
8103
  #, fuzzy
8104
  msgid "Slideshow/Browse"
8105
  msgstr "Slideshow"
8106
 
8107
+ #: wppa-settings-autosave.php:2148
8108
  msgid "Display the Slideshow / Browse photos link on album covers"
8109
  msgstr ""
8110
 
8111
+ #: wppa-settings-autosave.php:2149
8112
  msgid ""
8113
  "This setting causes the Slideshow link to be displayed on the album cover."
8114
  msgstr ""
8115
 
8116
+ #: wppa-settings-autosave.php:2150
8117
  msgid ""
8118
  "If slideshows are disabled in item 2 in this table, you will see a browse "
8119
  "link to fullsize images."
8120
  msgstr ""
8121
 
8122
+ #: wppa-settings-autosave.php:2151
8123
  msgid "If you do not want the browse link either, uncheck this item."
8124
  msgstr ""
8125
 
8126
+ #: wppa-settings-autosave.php:2158
8127
  #, fuzzy
8128
  msgid "View ..."
8129
  msgstr "Ukázat: "
8130
 
8131
+ #: wppa-settings-autosave.php:2159
8132
  msgid "Display the View xx albums and yy photos link on album covers"
8133
  msgstr ""
8134
 
8135
+ #: wppa-settings-autosave.php:2167
8136
  msgid "Treecount"
8137
  msgstr ""
8138
 
8139
+ #: wppa-settings-autosave.php:2168
8140
  msgid "Disaplay the total number of (sub)albums and photos in subalbums"
8141
  msgstr ""
8142
 
8143
+ #: wppa-settings-autosave.php:2169
8144
  msgid ""
8145
  "Displays the total number of sub albums and photos in the entire album tree "
8146
  "in parenthesis if the numbers differ from the direct content of the album."
8147
  msgstr ""
8148
 
8149
+ #: wppa-settings-autosave.php:2176
8150
  msgid "Show categories"
8151
  msgstr ""
8152
 
8153
+ #: wppa-settings-autosave.php:2177
8154
  msgid "Display the album categories on the covers."
8155
  msgstr ""
8156
 
8157
+ #: wppa-settings-autosave.php:2185
8158
  msgid "Skip empty albums"
8159
  msgstr ""
8160
 
8161
+ #: wppa-settings-autosave.php:2186
8162
  msgid "Do not show empty albums, except for admin and owner."
8163
  msgstr ""
8164
 
8165
+ #: wppa-settings-autosave.php:2194
8166
  msgid "Widget related visibility settings"
8167
  msgstr ""
8168
 
8169
+ #: wppa-settings-autosave.php:2196
8170
  msgid "Big Browse Buttons in widget"
8171
  msgstr ""
8172
 
8173
+ #: wppa-settings-autosave.php:2197
8174
  msgid "Enable invisible browsing buttons in widget slideshows."
8175
  msgstr ""
8176
 
8177
+ #: wppa-settings-autosave.php:2206
8178
  msgid "Ugly Browse Buttons in widget"
8179
  msgstr ""
8180
 
8181
+ #: wppa-settings-autosave.php:2207
8182
  msgid "Enable ugly browsing buttons in widget slideshows."
8183
  msgstr ""
8184
 
8185
+ #: wppa-settings-autosave.php:2208
8186
  msgid "If checked, the fullsize image is covered by browse buttons."
8187
  msgstr ""
8188
 
8189
+ #: wppa-settings-autosave.php:2216
8190
  msgid "Album widget tooltip"
8191
  msgstr ""
8192
 
8193
+ #: wppa-settings-autosave.php:2217
8194
  msgid "Show the album description on hoovering thumbnail in album widget"
8195
  msgstr ""
8196
 
8197
+ #: wppa-settings-autosave.php:2225 wppa-settings-autosave.php:4136
8198
  msgid ""
8199
  "Lightbox related settings. These settings have effect only when Table IX-J3 "
8200
  "is set to wppa"
8201
  msgstr ""
8202
 
8203
+ #: wppa-settings-autosave.php:2227
8204
  msgid "Overlay Close label text"
8205
  msgstr ""
8206
 
8207
+ #: wppa-settings-autosave.php:2228
8208
  msgid "The text label for the cross exit symbol."
8209
  msgstr ""
8210
 
8211
+ #: wppa-settings-autosave.php:2229
8212
  msgid ""
8213
  "This text may be multilingual according to the qTranslate short tags specs."
8214
  msgstr ""
8215
 
8216
+ #: wppa-settings-autosave.php:2236
8217
  msgid "Overlay theme color"
8218
  msgstr ""
8219
 
8220
+ #: wppa-settings-autosave.php:2237
8221
  msgid "The color of the image border and text background."
8222
  msgstr ""
8223
 
8224
+ #: wppa-settings-autosave.php:2240 wppa-settings-autosave.php:2251
8225
  msgid "White"
8226
  msgstr ""
8227
 
8228
+ #: wppa-settings-autosave.php:2247
8229
  msgid "Overlay background color"
8230
  msgstr ""
8231
 
8232
+ #: wppa-settings-autosave.php:2248
8233
  msgid "The color of the outer background."
8234
  msgstr ""
8235
 
8236
+ #: wppa-settings-autosave.php:2258
8237
  msgid "Overlay slide name"
8238
  msgstr ""
8239
 
8240
+ #: wppa-settings-autosave.php:2259
8241
  msgid "Show name if from slide."
8242
  msgstr ""
8243
 
8244
+ #: wppa-settings-autosave.php:2260
8245
  msgid ""
8246
  "Shows the photos name on a lightbox display when initiated from a slide."
8247
  msgstr ""
8248
 
8249
+ #: wppa-settings-autosave.php:2261 wppa-settings-autosave.php:2271
8250
  msgid ""
8251
  "This setting also applies to film thumbnails if Table VI-11 is set to "
8252
  "lightbox overlay."
8253
  msgstr ""
8254
 
8255
+ #: wppa-settings-autosave.php:2268
8256
  msgid "Overlay slide desc"
8257
  msgstr ""
8258
 
8259
+ #: wppa-settings-autosave.php:2269
8260
  msgid "Show description if from slide."
8261
  msgstr ""
8262
 
8263
+ #: wppa-settings-autosave.php:2270
8264
  msgid ""
8265
  "Shows the photos description on a lightbox display when initiated from a "
8266
  "slide."
8267
  msgstr ""
8268
 
8269
+ #: wppa-settings-autosave.php:2278
8270
  msgid "Overlay thumb name"
8271
  msgstr ""
8272
 
8273
+ #: wppa-settings-autosave.php:2279
8274
  msgid "Show the photos name if from thumb."
8275
  msgstr ""
8276
 
8277
+ #: wppa-settings-autosave.php:2280
8278
  msgid ""
8279
  "Shows the name on a lightbox display when initiated from a standard "
8280
  "thumbnail or a widget thumbnail."
8281
  msgstr ""
8282
 
8283
+ #: wppa-settings-autosave.php:2281 wppa-settings-autosave.php:2291
8284
  msgid ""
8285
  "This setting applies to standard thumbnails, thumbnail-, comment-, topten- "
8286
  "and lasten-widget."
8287
  msgstr ""
8288
 
8289
+ #: wppa-settings-autosave.php:2288
8290
  msgid "Overlay thumb desc"
8291
  msgstr ""
8292
 
8293
+ #: wppa-settings-autosave.php:2289
8294
  msgid "Show description if from thumb."
8295
  msgstr ""
8296
 
8297
+ #: wppa-settings-autosave.php:2290
8298
  msgid ""
8299
  "Shows the photos description on a lightbox display when initiated from a "
8300
  "standard thumbnail or a widget thumbnail."
8301
  msgstr ""
8302
 
8303
+ #: wppa-settings-autosave.php:2298
8304
  #, fuzzy
8305
  msgid "Overlay potd name"
8306
  msgstr "Zadejte název fotky"
8307
 
8308
+ #: wppa-settings-autosave.php:2299
8309
  msgid "Show the photos name if from photo of the day."
8310
  msgstr ""
8311
 
8312
+ #: wppa-settings-autosave.php:2300
8313
  msgid ""
8314
  "Shows the name on a lightbox display when initiated from the photo of the "
8315
  "day."
8316
  msgstr ""
8317
 
8318
+ #: wppa-settings-autosave.php:2307
8319
  msgid "Overlay potd desc"
8320
  msgstr ""
8321
 
8322
+ #: wppa-settings-autosave.php:2308
8323
  msgid "Show description if from from photo of the day."
8324
  msgstr ""
8325
 
8326
+ #: wppa-settings-autosave.php:2309
8327
  msgid ""
8328
  "Shows the photos description on a lightbox display when initiated from the "
8329
  "photo of the day."
8330
  msgstr ""
8331
 
8332
+ #: wppa-settings-autosave.php:2316
8333
  #, fuzzy
8334
  msgid "Overlay sphoto name"
8335
  msgstr "Zadejte název fotky"
8336
 
8337
+ #: wppa-settings-autosave.php:2317
8338
  msgid "Show the photos name if from a single photo."
8339
  msgstr ""
8340
 
8341
+ #: wppa-settings-autosave.php:2318
8342
  msgid ""
8343
  "Shows the name on a lightbox display when initiated from a single photo."
8344
  msgstr ""
8345
 
8346
+ #: wppa-settings-autosave.php:2325
8347
  #, fuzzy
8348
  msgid "Overlay sphoto desc"
8349
  msgstr "Podobné fotky"
8350
 
8351
+ #: wppa-settings-autosave.php:2326
8352
  msgid "Show description if from from a single photo."
8353
  msgstr ""
8354
 
8355
+ #: wppa-settings-autosave.php:2327
8356
  msgid ""
8357
  "Shows the photos description on a lightbox display when initiated from a "
8358
  "single photo."
8359
  msgstr ""
8360
 
8361
+ #: wppa-settings-autosave.php:2334
8362
  #, fuzzy
8363
  msgid "Overlay mphoto name"
8364
  msgstr "Zadejte název fotky"
8365
 
8366
+ #: wppa-settings-autosave.php:2335
8367
  msgid "Show the photos name if from a single media style photo."
8368
  msgstr ""
8369
 
8370
+ #: wppa-settings-autosave.php:2336
8371
  msgid ""
8372
  "Shows the name on a lightbox display when initiated from a single media "
8373
  "style photo."
8374
  msgstr ""
8375
 
8376
+ #: wppa-settings-autosave.php:2343
8377
  #, fuzzy
8378
  msgid "Overlay mphoto desc"
8379
  msgstr "Podobné fotky"
8380
 
8381
+ #: wppa-settings-autosave.php:2344
8382
  msgid "Show description if from from a media style photo."
8383
  msgstr ""
8384
 
8385
+ #: wppa-settings-autosave.php:2345
8386
  msgid ""
8387
  "Shows the photos description on a lightbox display when initiated from a "
8388
  "single media style photo."
8389
  msgstr ""
8390
 
8391
+ #: wppa-settings-autosave.php:2352
8392
  #, fuzzy
8393
  msgid "Overlay albumwidget name"
8394
  msgstr "Zadejte název fotky"
8395
 
8396
+ #: wppa-settings-autosave.php:2353
8397
  msgid "Show the photos name if from the album widget."
8398
  msgstr ""
8399
 
8400
+ #: wppa-settings-autosave.php:2354
8401
  msgid ""
8402
  "Shows the name on a lightbox display when initiated from the album widget."
8403
  msgstr ""
8404
 
8405
+ #: wppa-settings-autosave.php:2361
8406
  msgid "Overlay albumwidget desc"
8407
  msgstr ""
8408
 
8409
+ #: wppa-settings-autosave.php:2362
8410
  msgid "Show description if from from the album widget."
8411
  msgstr ""
8412
 
8413
+ #: wppa-settings-autosave.php:2363
8414
  msgid ""
8415
  "Shows the photos description on a lightbox display when initiated from the "
8416
  "album widget."
8417
  msgstr ""
8418
 
8419
+ #: wppa-settings-autosave.php:2370
8420
  #, fuzzy
8421
  msgid "Overlay coverphoto name"
8422
  msgstr "Zadejte název fotky"
8423
 
8424
+ #: wppa-settings-autosave.php:2371
8425
  msgid "Show the photos name if from the album cover."
8426
  msgstr ""
8427
 
8428
+ #: wppa-settings-autosave.php:2372
8429
  msgid ""
8430
  "Shows the name on a lightbox display when initiated from the album "
8431
  "coverphoto."
8432
  msgstr ""
8433
 
8434
+ #: wppa-settings-autosave.php:2379
8435
  msgid "Overlay coverphoto desc"
8436
  msgstr ""
8437
 
8438
+ #: wppa-settings-autosave.php:2380
8439
  msgid "Show description if from from the album cover."
8440
  msgstr ""
8441
 
8442
+ #: wppa-settings-autosave.php:2381
8443
  msgid ""
8444
  "Shows the photos description on a lightbox display when initiated from the "
8445
  "album coverphoto."
8446
  msgstr ""
8447
 
8448
+ #: wppa-settings-autosave.php:2388
8449
  msgid "Overlay add owner"
8450
  msgstr ""
8451
 
8452
+ #: wppa-settings-autosave.php:2389
8453
  msgid "Add the owner to the photo name on lightbox displays."
8454
  msgstr ""
8455
 
8456
+ #: wppa-settings-autosave.php:2390
8457
  msgid ""
8458
  "This setting is independant of the show name switches and is a global "
8459
  "setting."
8460
  msgstr ""
8461
 
8462
+ #: wppa-settings-autosave.php:2397
8463
  #, fuzzy
8464
  msgid "Overlay show start/stop"
8465
  msgstr "Pro Spuštění/zastevní klikněte"
8466
 
8467
+ #: wppa-settings-autosave.php:2398
8468
  msgid "Show Start and Stop for running slideshow on lightbox."
8469
  msgstr ""
8470
 
8471
+ #: wppa-settings-autosave.php:2406
8472
  msgid "Overlay show legenda"
8473
  msgstr ""
8474
 
8475
+ #: wppa-settings-autosave.php:2407
8476
  msgid "Show \"Press f for fullsize\" etc. on lightbox."
8477
  msgstr ""
8478
 
8479
+ #: wppa-settings-autosave.php:2408
8480
  msgid "Independant of this setting, it will not show up on mobile devices."
8481
  msgstr ""
8482
 
8483
+ #: wppa-settings-autosave.php:2415
8484
  msgid "Show fullscreen icons"
8485
  msgstr ""
8486
 
8487
+ #: wppa-settings-autosave.php:2416
8488
  msgid "Shows fullscreen and back to normal icon buttons on upper right corner"
8489
  msgstr ""
8490
 
8491
+ #: wppa-settings-autosave.php:2424
8492
  msgid "Overlay show counter"
8493
  msgstr ""
8494
 
8495
+ #: wppa-settings-autosave.php:2425
8496
  msgid "Show the x/y counter below the image."
8497
  msgstr ""
8498
 
8499
+ #: wppa-settings-autosave.php:2433
8500
  #, fuzzy
8501
  msgid "Show Zoom in"
8502
  msgstr "Přiblížit"
8503
 
8504
+ #: wppa-settings-autosave.php:2434
8505
  msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
8506
  msgstr ""
8507
 
8508
+ #: wppa-settings-autosave.php:2435
8509
  msgid ""
8510
  "If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
8511
  "contains the photo name."
8512
  msgstr ""
8513
 
8514
+ #: wppa-settings-autosave.php:2443
8515
  msgid "Frontend upload configuration settings"
8516
  msgstr ""
8517
 
8518
+ #: wppa-settings-autosave.php:2445
8519
  #, fuzzy
8520
  msgid "User upload Photos"
8521
  msgstr "Nedávno nahrané fotografie"
8522
 
8523
+ #: wppa-settings-autosave.php:2446
8524
  #, fuzzy
8525
  msgid "Enable frontend upload."
8526
  msgstr "<b>Chyba: Neplatný pokus o nahrání souboru.</b>"
8527
 
8528
+ #: wppa-settings-autosave.php:2447
8529
  msgid ""
8530
  "If you check this item, frontend upload will be enabled according to the "
8531
  "rules set in the following items of this table."
8532
  msgstr ""
8533
 
8534
+ #: wppa-settings-autosave.php:2455
8535
  #, fuzzy
8536
  msgid "User upload Photos login"
8537
  msgstr "Nedávno nahrané fotografie"
8538
 
8539
+ #: wppa-settings-autosave.php:2456
8540
  msgid "Frontend upload requires the user is logged in."
8541
  msgstr ""
8542
 
8543
+ #: wppa-settings-autosave.php:2457
8544
  msgid ""
8545
  "If you uncheck this box, make sure you check the item Owners only in Table "
8546
  "VII-D1."
8547
  msgstr ""
8548
 
8549
+ #: wppa-settings-autosave.php:2458
8550
  msgid ""
8551
  "Also: set the owner to ---public--- of the albums that are allowed to be "
8552
  "uploaded to."
8553
  msgstr ""
8554
 
8555
+ #: wppa-settings-autosave.php:2465
8556
  #, fuzzy
8557
  msgid "User upload Ajax"
8558
  msgstr "Nedávno nahrané fotografie"
8559
 
8560
+ #: wppa-settings-autosave.php:2466
8561
  msgid "Shows the upload progression bar."
8562
  msgstr ""
8563
 
8564
+ #: wppa-settings-autosave.php:2474
8565
  msgid "Show Copyright"
8566
  msgstr ""
8567
 
8568
+ #: wppa-settings-autosave.php:2475
8569
  msgid "Show a copyright warning on frontend upload locations."
8570
  msgstr ""
8571
 
8572
+ #: wppa-settings-autosave.php:2484
8573
  msgid "Copyright notice"
8574
  msgstr ""
8575
 
8576
+ #: wppa-settings-autosave.php:2485
8577
  msgid "The message to be displayed."
8578
  msgstr ""
8579
 
8580
+ #: wppa-settings-autosave.php:2493
8581
  msgid "User Watermark"
8582
  msgstr ""
8583
 
8584
+ #: wppa-settings-autosave.php:2494
8585
  msgid "Uploading users may select watermark settings"
8586
  msgstr ""
8587
 
8588
+ #: wppa-settings-autosave.php:2495
8589
  msgid ""
8590
  "If checked, anyone who can upload and/or import photos can overrule the "
8591
  "default watermark settings."
8592
  msgstr ""
8593
 
8594
+ #: wppa-settings-autosave.php:2502
8595
  #, fuzzy
8596
  msgid "User name"
8597
  msgstr "Vaše jméno:"
8598
 
8599
+ #: wppa-settings-autosave.php:2503
8600
  msgid "Uploading users may overrule the default name."
8601
  msgstr ""
8602
 
8603
+ #: wppa-settings-autosave.php:2504
8604
  msgid ""
8605
  "If checked, the default photo name as defined in Table IX-D13 may be "
8606
  "overruled by the user."
8607
  msgstr ""
8608
 
8609
+ #: wppa-settings-autosave.php:2511
8610
  msgid "Apply Newphoto desc user"
8611
  msgstr ""
8612
 
8613
+ #: wppa-settings-autosave.php:2512
8614
  msgid "Give each new frontend uploaded photo a standard description."
8615
  msgstr ""
8616
 
8617
+ #: wppa-settings-autosave.php:2513
8618
  msgid ""
8619
  "If checked, each new photo will get the description (template) as specified "
8620
  "in Table IX-D5."
8621
  msgstr ""
8622
 
8623
+ #: wppa-settings-autosave.php:2520
8624
  msgid "User desc"
8625
  msgstr ""
8626
 
8627
+ #: wppa-settings-autosave.php:2521
8628
  msgid "Uploading users may overrule the default description."
8629
  msgstr ""
8630
 
8631
+ #: wppa-settings-autosave.php:2529
8632
  #, fuzzy
8633
  msgid "User upload custom"
8634
  msgstr "Nedávno nahrané fotografie"
8635
 
8636
+ #: wppa-settings-autosave.php:2530
8637
  msgid "Frontend upload can fill in custom data fields."
8638
  msgstr ""
8639
 
8640
+ #: wppa-settings-autosave.php:2538
8641
  #, fuzzy
8642
  msgid "User upload tags"
8643
  msgstr "Nedávno nahrané fotografie"
8644
 
8645
+ #: wppa-settings-autosave.php:2539
8646
  msgid "Frontend upload can add tags."
8647
  msgstr ""
8648
 
8649
+ #: wppa-settings-autosave.php:2540
8650
  msgid "You can configure the details of tag addition in Table IX-D18.x"
8651
  msgstr ""
8652
 
8653
+ #: wppa-settings-autosave.php:2548 wppa-settings-autosave.php:2576
8654
+ #: wppa-settings-autosave.php:2604
8655
  #, fuzzy
8656
  msgid "Tag selection box"
8657
  msgstr "--- smazáno ---"
8658
 
8659
+ #: wppa-settings-autosave.php:2549 wppa-settings-autosave.php:2577
8660
+ #: wppa-settings-autosave.php:2605
8661
  msgid "Front-end upload tags selecion box."
8662
  msgstr ""
8663
 
8664
+ #: wppa-settings-autosave.php:2553 wppa-settings-autosave.php:2581
8665
+ #: wppa-settings-autosave.php:2609
8666
  msgid "On:"
8667
  msgstr ""
8668
 
8669
+ #: wppa-settings-autosave.php:2553 wppa-settings-autosave.php:2581
8670
+ #: wppa-settings-autosave.php:2609
8671
  #, fuzzy
8672
  msgid "Multi:"
8673
  msgstr "Multi-spot"
8674
 
8675
+ #: wppa-settings-autosave.php:2558 wppa-settings-autosave.php:2586
8676
+ #: wppa-settings-autosave.php:2614
8677
  msgid "Caption box"
8678
  msgstr ""
8679
 
8680
+ #: wppa-settings-autosave.php:2559 wppa-settings-autosave.php:2587
8681
+ #: wppa-settings-autosave.php:2615
8682
  msgid "The title of the tag selection box."
8683
  msgstr ""
8684
 
8685
+ #: wppa-settings-autosave.php:2567 wppa-settings-autosave.php:2595
8686
+ #: wppa-settings-autosave.php:2623
8687
  msgid "Tags box"
8688
  msgstr ""
8689
 
8690
+ #: wppa-settings-autosave.php:2568 wppa-settings-autosave.php:2596
8691
+ #: wppa-settings-autosave.php:2624
8692
  #, fuzzy
8693
  msgid "The tags in the selection box."
8694
  msgstr "--- smazáno ---"
8695
 
8696
+ #: wppa-settings-autosave.php:2569 wppa-settings-autosave.php:2597
8697
+ #: wppa-settings-autosave.php:2625
8698
  msgid ""
8699
  "Enter the tags you want to appear in the selection box. Empty means: all "
8700
  "existing tags"
8701
  msgstr ""
8702
 
8703
+ #: wppa-settings-autosave.php:2632
8704
  msgid "New tags"
8705
  msgstr ""
8706
 
8707
+ #: wppa-settings-autosave.php:2633
8708
  msgid "Input field for any user defined tags."
8709
  msgstr ""
8710
 
8711
+ #: wppa-settings-autosave.php:2641
8712
  #, fuzzy
8713
  msgid "New tags caption"
8714
  msgstr "Žádné funkce blesku"
8715
 
8716
+ #: wppa-settings-autosave.php:2642
8717
  msgid "The caption above the tags input field."
8718
  msgstr ""
8719
 
8720
+ #: wppa-settings-autosave.php:2650
8721
  #, fuzzy
8722
  msgid "Preview tags"
8723
  msgstr "Predcházející"
8724
 
8725
+ #: wppa-settings-autosave.php:2651
8726
  msgid "Show a preview of all tags that will be added to the photo info."
8727
  msgstr ""
8728
 
8729
+ #: wppa-settings-autosave.php:2660
8730
  msgid "Miscellaneous visibility settings"
8731
  msgstr ""
8732
 
8733
+ #: wppa-settings-autosave.php:2662
8734
  msgid "Frontend ending label"
8735
  msgstr ""
8736
 
8737
+ #: wppa-settings-autosave.php:2663
8738
  msgid "Frontend upload / create / edit dialog closing label text."
8739
  msgstr ""
8740
 
8741
+ #: wppa-settings-autosave.php:2666
8742
  msgid "Abort"
8743
  msgstr ""
8744
 
8745
+ #: wppa-settings-autosave.php:2666
8746
  msgid "Close"
8747
  msgstr ""
8748
 
8749
+ #: wppa-settings-autosave.php:2666
8750
  msgid "Exit"
8751
  msgstr ""
8752
 
8753
+ #: wppa-settings-autosave.php:2666
8754
  msgid "Quit"
8755
  msgstr ""
8756
 
8757
+ #: wppa-settings-autosave.php:2674
8758
  msgid "Widget thumbs fontsize"
8759
  msgstr ""
8760
 
8761
+ #: wppa-settings-autosave.php:2675
8762
  msgid "Font size for thumbnail subtext in widgets."
8763
  msgstr ""
8764
 
8765
+ #: wppa-settings-autosave.php:2683
8766
  msgid "Arrow color"
8767
  msgstr ""
8768
 
8769
+ #: wppa-settings-autosave.php:2684
8770
  msgid "Left/right browsing arrow color."
8771
  msgstr ""
8772
 
8773
+ #: wppa-settings-autosave.php:2685
8774
  msgid "Enter the color of the filmstrip navigation arrows."
8775
  msgstr ""
8776
 
8777
+ #: wppa-settings-autosave.php:2692
8778
  msgid "Owner on new line"
8779
  msgstr ""
8780
 
8781
+ #: wppa-settings-autosave.php:2693
8782
  msgid "Place the (owner) text on a new line."
8783
  msgstr ""
8784
 
8785
+ #: wppa-settings-autosave.php:2701
8786
  msgid "Custom datafields"
8787
  msgstr ""
8788
 
8789
+ #: wppa-settings-autosave.php:2702
8790
  msgid "Define up to 10 custom data fields for photos."
8791
  msgstr ""
8792
 
8793
+ #: wppa-settings-autosave.php:2712
8794
  #, php-format
8795
  msgid "Name and visibility %s"
8796
  msgstr ""
8797
 
8798
+ #: wppa-settings-autosave.php:2713
8799
  #, php-format
8800
  msgid "The caption for field %s and visibility at frontend."
8801
  msgstr ""
8802
 
8803
+ #: wppa-settings-autosave.php:2714
8804
  #, php-format
8805
  msgid ""
8806
  "If you check the box, the value of this field is displayable in photo "
8807
  "descriptions at the frontend with keyword w#c%s"
8808
  msgstr ""
8809
 
8810
+ #: wppa-settings-autosave.php:2744
8811
  msgid "Table III:"
8812
  msgstr ""
8813
 
8814
+ #: wppa-settings-autosave.php:2744
8815
  msgid "Backgrounds:"
8816
  msgstr ""
8817
 
8818
+ #: wppa-settings-autosave.php:2745
8819
  msgid "This table describes the backgrounds of wppa+ elements."
8820
  msgstr ""
8821
 
8822
+ #: wppa-settings-autosave.php:2755 wppa-settings-autosave.php:3066
8823
  msgid "Background color"
8824
  msgstr ""
8825
 
8826
+ #: wppa-settings-autosave.php:2756 wppa-settings-autosave.php:2758
8827
+ #: wppa-settings-autosave.php:3067 wppa-settings-autosave.php:3069
8828
  msgid "Sample"
8829
  msgstr ""
8830
 
8831
+ #: wppa-settings-autosave.php:2757 wppa-settings-autosave.php:3068
8832
  msgid "Border color"
8833
  msgstr ""
8834
 
8835
+ #: wppa-settings-autosave.php:2766
8836
  msgid "Slideshow elements backgrounds"
8837
  msgstr ""
8838
 
8839
+ #: wppa-settings-autosave.php:2768
8840
  msgid "Nav"
8841
  msgstr ""
8842
 
8843
+ #: wppa-settings-autosave.php:2769
8844
  msgid "Navigation bars."
8845
  msgstr ""
8846
 
8847
+ #: wppa-settings-autosave.php:2770
8848
  msgid "Enter valid CSS colors for navigation backgrounds and borders."
8849
  msgstr ""
8850
 
8851
+ #: wppa-settings-autosave.php:2781
8852
  msgid "SlideImg"
8853
  msgstr ""
8854
 
8855
+ #: wppa-settings-autosave.php:2782
8856
  #, fuzzy
8857
  msgid "Fullsize Slideshow Photos."
8858
  msgstr "Super View fotky"
8859
 
8860
+ #: wppa-settings-autosave.php:2783
8861
  msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
8862
  msgstr ""
8863
 
8864
+ #: wppa-settings-autosave.php:2784
8865
  msgid "The colors may be equal or \"transparent\""
8866
  msgstr ""
8867
 
8868
+ #: wppa-settings-autosave.php:2785
8869
  msgid ""
8870
  "For more information about slideshow image borders see the help on Table I-B4"
8871
  msgstr ""
8872
 
8873
+ #: wppa-settings-autosave.php:2796 wppa-settings-autosave.php:4380
8874
  msgid "Numbar"
8875
  msgstr ""
8876
 
8877
+ #: wppa-settings-autosave.php:2797
8878
  msgid "Number bar box background."
8879
  msgstr ""
8880
 
8881
+ #: wppa-settings-autosave.php:2798
8882
  msgid "Enter valid CSS colors for numbar box backgrounds and borders."
8883
  msgstr ""
8884
 
8885
+ #: wppa-settings-autosave.php:2809
8886
  msgid "Numbar active"
8887
  msgstr ""
8888
 
8889
+ #: wppa-settings-autosave.php:2810
8890
  msgid "Number bar active box background."
8891
  msgstr ""
8892
 
8893
+ #: wppa-settings-autosave.php:2811
8894
  msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
8895
  msgstr ""
8896
 
8897
+ #: wppa-settings-autosave.php:2822
8898
  msgid "Name/desc"
8899
  msgstr ""
8900
 
8901
+ #: wppa-settings-autosave.php:2823
8902
  msgid "Name and Description bars."
8903
  msgstr ""
8904
 
8905
+ #: wppa-settings-autosave.php:2824
8906
  msgid ""
8907
  "Enter valid CSS colors for name and description box backgrounds and borders."
8908
  msgstr ""
8909
 
8910
+ #: wppa-settings-autosave.php:2836
8911
  msgid "Comment input and display areas."
8912
  msgstr ""
8913
 
8914
+ #: wppa-settings-autosave.php:2837
8915
  msgid "Enter valid CSS colors for comment box backgrounds and borders."
8916
  msgstr ""
8917
 
8918
+ #: wppa-settings-autosave.php:2848 wppa-settings-autosave.php:7560
8919
+ #: wppa-settings-autosave.php:7605
8920
  msgid "Custom"
8921
  msgstr ""
8922
 
8923
+ #: wppa-settings-autosave.php:2849
8924
  msgid "Custom box background."
8925
  msgstr ""
8926
 
8927
+ #: wppa-settings-autosave.php:2850
8928
  msgid "Enter valid CSS colors for custom box backgrounds and borders."
8929
  msgstr ""
8930
 
8931
+ #: wppa-settings-autosave.php:2861
8932
  msgid "IPTC"
8933
  msgstr ""
8934
 
8935
+ #: wppa-settings-autosave.php:2862
8936
  msgid "IPTC display box background."
8937
  msgstr ""
8938
 
8939
+ #: wppa-settings-autosave.php:2863
8940
  msgid "Enter valid CSS colors for iptc box backgrounds and borders."
8941
  msgstr ""
8942
 
8943
+ #: wppa-settings-autosave.php:2874
8944
  msgid "EXIF"
8945
  msgstr ""
8946
 
8947
+ #: wppa-settings-autosave.php:2875
8948
  msgid "EXIF display box background."
8949
  msgstr ""
8950
 
8951
+ #: wppa-settings-autosave.php:2876
8952
  msgid "Enter valid CSS colors for exif box backgrounds and borders."
8953
  msgstr ""
8954
 
8955
+ #: wppa-settings-autosave.php:2887
8956
  msgid "Share"
8957
  msgstr ""
8958
 
8959
+ #: wppa-settings-autosave.php:2888
8960
  msgid "Share box display background."
8961
  msgstr ""
8962
 
8963
+ #: wppa-settings-autosave.php:2889
8964
  msgid "Enter valid CSS colors for share box backgrounds and borders."
8965
  msgstr ""
8966
 
8967
+ #: wppa-settings-autosave.php:2900
8968
  msgid "Other backgrounds"
8969
  msgstr ""
8970
 
8971
+ #: wppa-settings-autosave.php:2902
8972
  msgid "Even"
8973
  msgstr ""
8974
 
8975
+ #: wppa-settings-autosave.php:2903
8976
  msgid "Even background."
8977
  msgstr ""
8978
 
8979
+ #: wppa-settings-autosave.php:2904
8980
  msgid ""
8981
  "Enter valid CSS colors for even numbered backgrounds and borders of album "
8982
  "covers and thumbnail displays 'As covers'."
8983
  msgstr ""
8984
 
8985
+ #: wppa-settings-autosave.php:2915
8986
  msgid "Odd"
8987
  msgstr ""
8988
 
8989
+ #: wppa-settings-autosave.php:2916
8990
  msgid "Odd background."
8991
  msgstr ""
8992
 
8993
+ #: wppa-settings-autosave.php:2917
8994
  msgid ""
8995
  "Enter valid CSS colors for odd numbered backgrounds and borders of album "
8996
  "covers and thumbnail displays 'As covers'."
8997
  msgstr ""
8998
 
8999
+ #: wppa-settings-autosave.php:2928
9000
  #, fuzzy
9001
  msgid "Thumbnail padding"
9002
  msgstr "Stránka s náhledy"
9003
 
9004
+ #: wppa-settings-autosave.php:2929
9005
  msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
9006
  msgstr ""
9007
 
9008
+ #: wppa-settings-autosave.php:2930
9009
  msgid ""
9010
  "Enter valid CSS color hexadecimal like #000000 for black or #ffffff for "
9011
  "white for the padded thumbnails."
9012
  msgstr ""
9013
 
9014
+ #: wppa-settings-autosave.php:2941
9015
  msgid "Img"
9016
  msgstr ""
9017
 
9018
+ #: wppa-settings-autosave.php:2942
9019
  msgid "Cover Photos and popups."
9020
  msgstr ""
9021
 
9022
+ #: wppa-settings-autosave.php:2943
9023
  msgid ""
9024
  "Enter valid CSS colors for Cover photo and popup backgrounds and borders."
9025
  msgstr ""
9026
 
9027
+ #: wppa-settings-autosave.php:2955
9028
  msgid "Upload box background."
9029
  msgstr ""
9030
 
9031
+ #: wppa-settings-autosave.php:2956
9032
  msgid "Enter valid CSS colors for upload box backgrounds and borders."
9033
  msgstr ""
9034
 
9035
+ #: wppa-settings-autosave.php:2967
9036
  #, fuzzy
9037
  msgid "Multitag"
9038
  msgstr "Multi-spot"
9039
 
9040
+ #: wppa-settings-autosave.php:2968
9041
  msgid "Multitag box background."
9042
  msgstr ""
9043
 
9044
+ #: wppa-settings-autosave.php:2969
9045
  msgid "Enter valid CSS colors for multitag box backgrounds and borders."
9046
  msgstr ""
9047
 
9048
+ #: wppa-settings-autosave.php:2980
9049
  msgid "Tagcloud"
9050
  msgstr ""
9051
 
9052
+ #: wppa-settings-autosave.php:2981
9053
  msgid "Tagcloud box background."
9054
  msgstr ""
9055
 
9056
+ #: wppa-settings-autosave.php:2982
9057
  msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
9058
  msgstr ""
9059
 
9060
+ #: wppa-settings-autosave.php:2993
9061
  #, fuzzy
9062
  msgid "Superview"
9063
  msgstr "Super View fotky"
9064
 
9065
+ #: wppa-settings-autosave.php:2994
9066
  msgid "Superview box background."
9067
  msgstr ""
9068
 
9069
+ #: wppa-settings-autosave.php:2995
9070
  msgid "Enter valid CSS colors for superview box backgrounds and borders."
9071
  msgstr ""
9072
 
9073
+ #: wppa-settings-autosave.php:3007
9074
  msgid "Search box background."
9075
  msgstr ""
9076
 
9077
+ #: wppa-settings-autosave.php:3008
9078
  msgid "Enter valid CSS colors for search box backgrounds and borders."
9079
  msgstr ""
9080
 
9081
+ #: wppa-settings-autosave.php:3019
9082
  #, fuzzy
9083
  msgid "BestOf"
9084
  msgstr "fotek"
9085
 
9086
+ #: wppa-settings-autosave.php:3020
9087
  msgid "BestOf box background."
9088
  msgstr ""
9089
 
9090
+ #: wppa-settings-autosave.php:3021
9091
  msgid "Enter valid CSS colors for bestof box backgrounds and borders."
9092
  msgstr ""
9093
 
9094
+ #: wppa-settings-autosave.php:3032
9095
  msgid "Calendar"
9096
  msgstr ""
9097
 
9098
+ #: wppa-settings-autosave.php:3033
9099
  msgid "Calendar box background."
9100
  msgstr ""
9101
 
9102
+ #: wppa-settings-autosave.php:3034
9103
  msgid "Enter valid CSS colors for calendar box backgrounds and borders."
9104
  msgstr ""
9105
 
9106
+ #: wppa-settings-autosave.php:3045
9107
+ msgid "Stereo"
9108
+ msgstr ""
9109
+
9110
+ #: wppa-settings-autosave.php:3046
9111
+ msgid "Stereo mode selection box background."
9112
+ msgstr ""
9113
+
9114
+ #: wppa-settings-autosave.php:3047
9115
+ msgid ""
9116
+ "Enter valid CSS colors for stereo mode selection box backgrounds and borders."
9117
+ msgstr ""
9118
+
9119
+ #: wppa-settings-autosave.php:3079
9120
  msgid "Table IV:"
9121
  msgstr ""
9122
 
9123
+ #: wppa-settings-autosave.php:3079
9124
  msgid "Behaviour:"
9125
  msgstr ""
9126
 
9127
+ #: wppa-settings-autosave.php:3080
9128
  msgid "This table describes the dynamic behaviour of certain wppa+ elements."
9129
  msgstr ""
9130
 
9131
+ #: wppa-settings-autosave.php:3098
9132
  msgid "System related settings"
9133
  msgstr ""
9134
 
9135
+ #: wppa-settings-autosave.php:3100
9136
  msgid "Use Ajax"
9137
  msgstr ""
9138
 
9139
+ #: wppa-settings-autosave.php:3101
9140
  msgid "Use Ajax as much as is possible and implemented."
9141
  msgstr ""
9142
 
9143
+ #: wppa-settings-autosave.php:3102
9144
  msgid ""
9145
  "If this box is ticked, page content updates from within wppa+ displays will "
9146
  "be Ajax based as much as possible."
9147
  msgstr ""
9148
 
9149
+ #: wppa-settings-autosave.php:3110
9150
  msgid "Ajax NON Admin"
9151
  msgstr ""
9152
 
9153
+ #: wppa-settings-autosave.php:3111
9154
  msgid "Frontend ajax use no admin files."
9155
  msgstr ""
9156
 
9157
+ #: wppa-settings-autosave.php:3112
9158
  msgid "If you want to password protect wp-admin, check this box."
9159
  msgstr ""
9160
 
9161
+ #: wppa-settings-autosave.php:3113
9162
  msgid ""
9163
  "In rare cases changing page content does not work when this box is checked. "
9164
  "Verify the functionality!"
9165
  msgstr ""
9166
 
9167
+ #: wppa-settings-autosave.php:3120
9168
  #, fuzzy
9169
  msgid "Photo names in urls"
9170
  msgstr "Výsledek vyhledávání fotek"
9171
 
9172
+ #: wppa-settings-autosave.php:3121
9173
  msgid "Display photo names in urls."
9174
  msgstr ""
9175
 
9176
+ #: wppa-settings-autosave.php:3122
9177
  msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
9178
  msgstr ""
9179
 
9180
+ #: wppa-settings-autosave.php:3123
9181
  msgid ""
9182
  "It is your responsability to avoid duplicate names of photos in the same "
9183
  "album."
9184
  msgstr ""
9185
 
9186
+ #: wppa-settings-autosave.php:3130
9187
  #, fuzzy
9188
  msgid "Album names in urls"
9189
  msgstr "Administrace alb"
9190
 
9191
+ #: wppa-settings-autosave.php:3131
9192
  msgid "Display album names in urls."
9193
  msgstr ""
9194
 
9195
+ #: wppa-settings-autosave.php:3132
9196
  msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
9197
  msgstr ""
9198
 
9199
+ #: wppa-settings-autosave.php:3133
9200
  msgid ""
9201
  "It is your responsability to avoid duplicate names of albums in the system."
9202
  msgstr ""
9203
 
9204
+ #: wppa-settings-autosave.php:3140
9205
  msgid "Use short query args"
9206
  msgstr ""
9207
 
9208
+ #: wppa-settings-autosave.php:3141
9209
  msgid "Use &album=... &photo=..."
9210
  msgstr ""
9211
 
9212
+ #: wppa-settings-autosave.php:3142
9213
  msgid ""
9214
  "Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
9215
  "album=... &wppa-photo=..."
9216
  msgstr ""
9217
 
9218
+ #: wppa-settings-autosave.php:3143
9219
  msgid ""
9220
  "Use this setting only when there are no conflicts with other plugins that "
9221
  "may interprete arguments like &album= etc."
9222
  msgstr ""
9223
 
9224
+ #: wppa-settings-autosave.php:3150
9225
  msgid "Enable pretty links"
9226
  msgstr ""
9227
 
9228
+ #: wppa-settings-autosave.php:3151
9229
  msgid "Enable the generation and understanding of pretty links."
9230
  msgstr ""
9231
 
9232
+ #: wppa-settings-autosave.php:3152
9233
  msgid ""
9234
  "If checked, links to social media and the qr code will have \"/token1/token2/"
9235
  "\" etc in stead of \"&arg1=..&arg2=..\" etc."
9236
  msgstr ""
9237
 
9238
+ #: wppa-settings-autosave.php:3153
9239
  msgid ""
9240
  "These types of links will be interpreted and cause a redirection on entering."
9241
  msgstr ""
9242
 
9243
+ #: wppa-settings-autosave.php:3154
9244
  msgid ""
9245
  "It is recommended to check this box. It shortens links dramatically and "
9246
  "simplifies qr codes."
9247
  msgstr ""
9248
 
9249
+ #: wppa-settings-autosave.php:3155
9250
  msgid ""
9251
  "However, you may encounter conflicts with themes and/or other plugins, so "
9252
  "test it troughly!"
9253
  msgstr ""
9254
 
9255
+ #: wppa-settings-autosave.php:3156
9256
  msgid ""
9257
  "Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
9258
  msgstr ""
9259
 
9260
+ #: wppa-settings-autosave.php:3163
9261
  #, fuzzy
9262
  msgid "Update addressline"
9263
  msgstr "Album:"
9264
 
9265
+ #: wppa-settings-autosave.php:3164
9266
  msgid "Update the addressline after an ajax action or next slide."
9267
  msgstr ""
9268
 
9269
+ #: wppa-settings-autosave.php:3165
9270
  msgid ""
9271
  "If checked, refreshing the page will show the current content and the "
9272
  "browsers back and forth arrows will browse the history on the page."
9273
  msgstr ""
9274
 
9275
+ #: wppa-settings-autosave.php:3166
9276
  msgid ""
9277
  "If unchecked, refreshing the page will re-display the content of the "
9278
  "original page."
9279
  msgstr ""
9280
 
9281
+ #: wppa-settings-autosave.php:3167
9282
  msgid ""
9283
  "This will only work on browsers that support history.pushState() and "
9284
  "therefor NOT in IE"
9285
  msgstr ""
9286
 
9287
+ #: wppa-settings-autosave.php:3168
9288
  msgid "Switching this off will affect the browsers behaviour."
9289
  msgstr ""
9290
 
9291
+ #: wppa-settings-autosave.php:3175
9292
  msgid "Render shortcode always"
9293
  msgstr ""
9294
 
9295
+ #: wppa-settings-autosave.php:3176
9296
  msgid "This will skip the check on proper initialisation."
9297
  msgstr ""
9298
 
9299
+ #: wppa-settings-autosave.php:3177
9300
  msgid ""
9301
  "This setting is required for certain themes like Gantry to prevent the "
9302
  "display of wppa placeholders like [WPPA+ Photo display]."
9303
  msgstr ""
9304
 
9305
+ #: wppa-settings-autosave.php:3178
9306
  #, php-format
9307
  msgid ""
9308
  "If this check is needed, you can use shortcodes like [wppa ...] only, not "
9309
  "scripts like %%wppa%%."
9310
  msgstr ""
9311
 
9312
+ #: wppa-settings-autosave.php:3185
9313
  msgid "Track viewcounts"
9314
  msgstr ""
9315
 
9316
+ #: wppa-settings-autosave.php:3186
9317
  msgid "Register number of views of albums and photos."
9318
  msgstr ""
9319
 
9320
+ #: wppa-settings-autosave.php:3194
9321
  #, fuzzy
9322
  msgid "Auto page"
9323
  msgstr "Automatika, záblesk"
9324
 
9325
+ #: wppa-settings-autosave.php:3195
9326
  msgid "Create a wp page for every fullsize image."
9327
  msgstr ""
9328
 
9329
+ #: wppa-settings-autosave.php:3199
9330
  msgid "Please reload this page after changing!"
9331
  msgstr ""
9332
 
9333
+ #: wppa-settings-autosave.php:3205
9334
  msgid "Auto page display"
9335
  msgstr ""
9336
 
9337
+ #: wppa-settings-autosave.php:3206
9338
  msgid "The type of display on the autopage pages."
9339
  msgstr ""
9340
 
9341
+ #: wppa-settings-autosave.php:3209
9342
  #, fuzzy
9343
  msgid "Single photo"
9344
  msgstr "Spravovat fotky"
9345
 
9346
+ #: wppa-settings-autosave.php:3209
9347
  #, fuzzy
9348
  msgid "Media type photo"
9349
  msgstr "Upravit fotku"
9350
 
9351
+ #: wppa-settings-autosave.php:3209
9352
  msgid "In the style of a slideshow"
9353
  msgstr ""
9354
 
9355
+ #: wppa-settings-autosave.php:3216
9356
  msgid "Auto page links"
9357
  msgstr ""
9358
 
9359
+ #: wppa-settings-autosave.php:3217
9360
  msgid "The location for the pagelinks."
9361
  msgstr ""
9362
 
9363
+ #: wppa-settings-autosave.php:3220
9364
  msgid "At top and bottom"
9365
  msgstr ""
9366
 
9367
+ #: wppa-settings-autosave.php:3227
9368
  msgid "Defer javascript"
9369
  msgstr ""
9370
 
9371
+ #: wppa-settings-autosave.php:3228
9372
  msgid "Put javascript near the end of the page."
9373
  msgstr ""
9374
 
9375
+ #: wppa-settings-autosave.php:3229
9376
  msgid ""
9377
  "If checkd: May fix layout problems and broken slideshows. May speed up or "
9378
  "slow down page appearing."
9379
  msgstr ""
9380
 
9381
+ #: wppa-settings-autosave.php:3236
9382
  msgid "Inline styles"
9383
  msgstr ""
9384
 
9385
+ #: wppa-settings-autosave.php:3237
9386
  msgid "Set style specifications inline."
9387
  msgstr ""
9388
 
9389
+ #: wppa-settings-autosave.php:3238
9390
  msgid "If checked: May fix layout problems, but slows down page appearing."
9391
  msgstr ""
9392
 
9393
+ #: wppa-settings-autosave.php:3245
9394
  msgid "Custom style"
9395
  msgstr ""
9396
 
9397
+ #: wppa-settings-autosave.php:3246
9398
  msgid "Enter custom style specs here."
9399
  msgstr ""
9400
 
9401
+ #: wppa-settings-autosave.php:3254
9402
  msgid "Use customized style file"
9403
  msgstr ""
9404
 
9405
+ #: wppa-settings-autosave.php:3255 wppa-settings-autosave.php:3264
9406
  msgid "This feature is highly discouraged."
9407
  msgstr ""
9408
 
9409
+ #: wppa-settings-autosave.php:3263
9410
  msgid "Use customized theme file"
9411
  msgstr ""
9412
 
9413
+ #: wppa-settings-autosave.php:3272
9414
  msgid "Enable photo html access"
9415
  msgstr ""
9416
 
9417
+ #: wppa-settings-autosave.php:3273
9418
  msgid "Creates an .htaccess file in .../uploads/wppa/"
9419
  msgstr ""
9420
 
9421
+ #: wppa-settings-autosave.php:3274
9422
  msgid ""
9423
  "If checked: assures http access to your wppa photo files, despite other ."
9424
  "htaccess settings that may protect these files."
9425
  msgstr ""
9426
 
9427
+ #: wppa-settings-autosave.php:3281
9428
  msgid "Lazy or HTML comp"
9429
  msgstr ""
9430
 
9431
+ #: wppa-settings-autosave.php:3282
9432
  msgid "Tick this box when you use lazy load or html compression."
9433
  msgstr ""
9434
 
9435
+ #: wppa-settings-autosave.php:3283
9436
  msgid ""
9437
  "If the filmstrip images do not show up and you have a lazy load or html "
9438
  "optimizing plugin active: Check this box"
9439
  msgstr ""
9440
 
9441
+ #: wppa-settings-autosave.php:3290
9442
  #, fuzzy
9443
  msgid "Thumbs first"
9444
  msgstr "Náhledy"
9445
 
9446
+ #: wppa-settings-autosave.php:3291
9447
  msgid "When displaying album content: thumbnails before subalbums."
9448
  msgstr ""
9449
 
9450
+ #: wppa-settings-autosave.php:3299
9451
  msgid "Login links"
9452
  msgstr ""
9453
 
9454
+ #: wppa-settings-autosave.php:3300
9455
  #, fuzzy
9456
  msgid "You must login to... links to login page."
9457
  msgstr " K hodnocení se musíte <a href=&quot;\"%s\"&quot;>přihlásit</a>."
9458
 
9459
+ #: wppa-settings-autosave.php:3308
9460
  msgid "Enable Video"
9461
  msgstr ""
9462
 
9463
+ #: wppa-settings-autosave.php:3309
9464
  msgid "Enables video support."
9465
  msgstr ""
9466
 
9467
+ #: wppa-settings-autosave.php:3318
9468
  msgid "Enable Audio"
9469
  msgstr ""
9470
 
9471
+ #: wppa-settings-autosave.php:3319
9472
  msgid "Enables audio support."
9473
  msgstr ""
9474
 
9475
+ #: wppa-settings-autosave.php:3327
9476
+ msgid "Enable 3D Stereo"
9477
+ msgstr ""
9478
+
9479
+ #: wppa-settings-autosave.php:3328
9480
+ msgid "Enables 3D stereo photo support."
9481
+ msgstr ""
9482
+
9483
+ #: wppa-settings-autosave.php:3336
9484
  msgid "Relative urls"
9485
  msgstr ""
9486
 
9487
+ #: wppa-settings-autosave.php:3337
9488
  msgid "Use relative urls only."
9489
  msgstr ""
9490
 
9491
+ #: wppa-settings-autosave.php:3346
9492
  msgid "Slideshow related settings"
9493
  msgstr ""
9494
 
9495
+ #: wppa-settings-autosave.php:3348
9496
  msgid "V align"
9497
  msgstr ""
9498
 
9499
+ #: wppa-settings-autosave.php:3349
9500
  msgid "Vertical alignment of slideshow images."
9501
  msgstr ""
9502
 
9503
+ #: wppa-settings-autosave.php:3350
9504
  msgid "Specify the vertical alignment of slideshow images."
9505
  msgstr ""
9506
 
9507
+ #: wppa-settings-autosave.php:3351
9508
  msgid ""
9509
  "If you select --- none ---, the photos will not be centered horizontally "
9510
  "either."
9511
  msgstr ""
9512
 
9513
+ #: wppa-settings-autosave.php:3353 wppa-settings-autosave.php:3618
9514
  #: wppa-slideshow-widget.php:216
9515
  #, fuzzy
9516
  msgid "top"
9517
  msgstr "Zastavit"
9518
 
9519
+ #: wppa-settings-autosave.php:3353 wppa-settings-autosave.php:3367
9520
+ #: wppa-settings-autosave.php:3618 wppa-slideshow-widget.php:217
9521
+ #: wppa-tinymce-scripts.php:290 wppa-tinymce-shortcodes.php:520
9522
  #: wppa-widget-admin.php:78
9523
  msgid "center"
9524
  msgstr ""
9525
 
9526
+ #: wppa-settings-autosave.php:3353 wppa-settings-autosave.php:3618
9527
  #: wppa-slideshow-widget.php:218
9528
  msgid "bottom"
9529
  msgstr ""
9530
 
9531
+ #: wppa-settings-autosave.php:3353 wppa-slideshow-widget.php:219
9532
  msgid "fit"
9533
  msgstr ""
9534
 
9535
+ #: wppa-settings-autosave.php:3361
9536
  msgid "H align"
9537
  msgstr ""
9538
 
9539
+ #: wppa-settings-autosave.php:3362
9540
  msgid "Horizontal alignment of slideshow images."
9541
  msgstr ""
9542
 
9543
+ #: wppa-settings-autosave.php:3363
9544
  msgid ""
9545
  "Specify the horizontal alignment of slideshow images. If you specify --- "
9546
  "none --- , no horizontal alignment will take place."
9547
  msgstr ""
9548
 
9549
+ #: wppa-settings-autosave.php:3364
9550
  msgid ""
9551
  "This setting is only usefull when the Column Width differs from the Maximum "
9552
  "Width."
9553
  msgstr ""
9554
 
9555
+ #: wppa-settings-autosave.php:3365
9556
  msgid "(Settings I-A1 and I-B1)"
9557
  msgstr ""
9558
 
9559
+ #: wppa-settings-autosave.php:3375
9560
  #, fuzzy
9561
  msgid "Start slideshow running."
9562
  msgstr "Ke spuštění/zastavení prezentace dvakrát klikněte"
9563
 
9564
+ #: wppa-settings-autosave.php:3376
9565
  msgid ""
9566
  "If you select \"running\", the slideshow will start running immediately, if "
9567
  "you select \"still at first photo\", the first photo will be displayed in "
9568
  "browse mode."
9569
  msgstr ""
9570
 
9571
+ #: wppa-settings-autosave.php:3377
9572
  msgid ""
9573
  "If you select \"still at first norated\", the first photo that the visitor "
9574
  "did not gave a rating will be displayed in browse mode."
9575
  msgstr ""
9576
 
9577
+ #: wppa-settings-autosave.php:3379
9578
  msgid "running"
9579
  msgstr ""
9580
 
9581
+ #: wppa-settings-autosave.php:3380
9582
  msgid "still at first photo"
9583
  msgstr ""
9584
 
9585
+ #: wppa-settings-autosave.php:3381
9586
  msgid "still at first norated"
9587
  msgstr ""
9588
 
9589
+ #: wppa-settings-autosave.php:3392
9590
  msgid "Start slideonly"
9591
  msgstr ""
9592
 
9593
+ #: wppa-settings-autosave.php:3393
9594
  #, fuzzy
9595
  msgid "Start slideonly slideshow running."
9596
  msgstr "Ke spuštění/zastavení prezentace dvakrát klikněte"
9597
 
9598
+ #: wppa-settings-autosave.php:3401 wppa-settings-autosave.php:4216
9599
  msgid "Video autostart"
9600
  msgstr ""
9601
 
9602
+ #: wppa-settings-autosave.php:3402
9603
  msgid "Autoplay videos in slideshows."
9604
  msgstr ""
9605
 
9606
+ #: wppa-settings-autosave.php:3411 wppa-settings-autosave.php:4225
9607
  msgid "Audio autostart"
9608
  msgstr ""
9609
 
9610
+ #: wppa-settings-autosave.php:3412
9611
  msgid "Autoplay audios in slideshows."
9612
  msgstr ""
9613
 
9614
+ #: wppa-settings-autosave.php:3420
9615
  msgid "Animation type"
9616
  msgstr ""
9617
 
9618
+ #: wppa-settings-autosave.php:3421
9619
  msgid "The way successive slides appear."
9620
  msgstr ""
9621
 
9622
+ #: wppa-settings-autosave.php:3422
9623
  msgid ""
9624
  "Select the way the old slide is to be replaced by the new one in the "
9625
  "slideshow/browse fullsize display."
9626
  msgstr ""
9627
 
9628
+ #: wppa-settings-autosave.php:3424
9629
  msgid "Fade out and in simultaneous"
9630
  msgstr ""
9631
 
9632
+ #: wppa-settings-autosave.php:3425
9633
  msgid "Fade in after fade out"
9634
  msgstr ""
9635
 
9636
+ #: wppa-settings-autosave.php:3426
9637
  msgid "Shift adjacent"
9638
  msgstr ""
9639
 
9640
+ #: wppa-settings-autosave.php:3427
9641
  msgid "Stack on"
9642
  msgstr ""
9643
 
9644
+ #: wppa-settings-autosave.php:3428
9645
  msgid "Stack off"
9646
  msgstr ""
9647
 
9648
+ #: wppa-settings-autosave.php:3429
9649
  msgid "Turn over"
9650
  msgstr ""
9651
 
9652
+ #: wppa-settings-autosave.php:3443
9653
  msgid "Timeout"
9654
  msgstr ""
9655
 
9656
+ #: wppa-settings-autosave.php:3444
9657
  #, fuzzy
9658
  msgid "Slideshow timeout."
9659
  msgstr "Slideshow"
9660
 
9661
+ #: wppa-settings-autosave.php:3445
9662
  msgid ""
9663
  "Select the time a single slide will be visible when the slideshow is started."
9664
  msgstr ""
9665
 
9666
+ #: wppa-settings-autosave.php:3447
9667
  msgid "very short (1 s.)"
9668
  msgstr ""
9669
 
9670
+ #: wppa-settings-autosave.php:3447
9671
  msgid "short (1.5 s.)"
9672
  msgstr ""
9673
 
9674
+ #: wppa-settings-autosave.php:3447
9675
  msgid "normal (2.5 s.)"
9676
  msgstr ""
9677
 
9678
+ #: wppa-settings-autosave.php:3447
9679
  msgid "long (4 s.)"
9680
  msgstr ""
9681
 
9682
+ #: wppa-settings-autosave.php:3447
9683
  msgid "very long (6 s.)"
9684
  msgstr ""
9685
 
9686
+ #: wppa-settings-autosave.php:3454
9687
  msgid "Speed"
9688
  msgstr ""
9689
 
9690
+ #: wppa-settings-autosave.php:3455
9691
  msgid "Slideshow animation speed."
9692
  msgstr ""
9693
 
9694
+ #: wppa-settings-autosave.php:3456
9695
  msgid "Specify the animation speed to be used in slideshows."
9696
  msgstr ""
9697
 
9698
+ #: wppa-settings-autosave.php:3457
9699
  msgid "This is the time it takes a photo to fade in or out."
9700
  msgstr ""
9701
 
9702
+ #: wppa-settings-autosave.php:3459 wppa-settings-autosave.php:4162
9703
+ #: wppa-settings-autosave.php:5877 wppa-settings-autosave.php:6771
9704
+ #: wppa-settings-autosave.php:6782 wppa-settings-autosave.php:6921
9705
+ #: wppa-settings-autosave.php:6962
9706
  #, fuzzy
9707
  msgid "--- off ---"
9708
  msgstr "--- žádné ---"
9709
 
9710
+ #: wppa-settings-autosave.php:3459
9711
  msgid "very fast (200 ms.)"
9712
  msgstr ""
9713
 
9714
+ #: wppa-settings-autosave.php:3459
9715
  msgid "fast (400 ms.)"
9716
  msgstr ""
9717
 
9718
+ #: wppa-settings-autosave.php:3459
9719
  msgid "normal (800 ms.)"
9720
  msgstr ""
9721
 
9722
+ #: wppa-settings-autosave.php:3459
9723
  msgid "slow (1.2 s.)"
9724
  msgstr ""
9725
 
9726
+ #: wppa-settings-autosave.php:3459
9727
  #, fuzzy
9728
  msgid "very slow (2 s.)"
9729
  msgstr "velmi nízká"
9730
 
9731
+ #: wppa-settings-autosave.php:3459
9732
  msgid "extremely slow (4 s.)"
9733
  msgstr ""
9734
 
9735
+ #: wppa-settings-autosave.php:3466
9736
  msgid "Slide hover pause"
9737
  msgstr ""
9738
 
9739
+ #: wppa-settings-autosave.php:3467
9740
  msgid "Running Slideshow suspends during mouse hover."
9741
  msgstr ""
9742
 
9743
+ #: wppa-settings-autosave.php:3475
9744
  #, fuzzy
9745
  msgid "Slideshow wrap around"
9746
  msgstr "Slideshow"
9747
 
9748
+ #: wppa-settings-autosave.php:3476
9749
  msgid "The slideshow wraps around the start and end"
9750
  msgstr ""
9751
 
9752
+ #: wppa-settings-autosave.php:3484
9753
  msgid "Full desc align"
9754
  msgstr ""
9755
 
9756
+ #: wppa-settings-autosave.php:3485
9757
  msgid "The alignment of the descriptions under fullsize images and slideshows."
9758
  msgstr ""
9759
 
9760
+ #: wppa-settings-autosave.php:3488 wppa-settings-autosave.php:3606
9761
+ #: wppa-settings-autosave.php:3709
9762
  msgid "Left"
9763
  msgstr ""
9764
 
9765
+ #: wppa-settings-autosave.php:3488
9766
  msgid "Center"
9767
  msgstr ""
9768
 
9769
+ #: wppa-settings-autosave.php:3488 wppa-settings-autosave.php:3606
9770
+ #: wppa-settings-autosave.php:3709
9771
  msgid "Right"
9772
  msgstr ""
9773
 
9774
+ #: wppa-settings-autosave.php:3495
9775
  msgid "Remove redundant space"
9776
  msgstr ""
9777
 
9778
+ #: wppa-settings-autosave.php:3496
9779
  msgid "Removes unwanted &lt;p> and &lt;br> tags in fullsize descriptions."
9780
  msgstr ""
9781
 
9782
+ #: wppa-settings-autosave.php:3497
9783
  msgid ""
9784
  "This setting has only effect when Table IX-A7 (foreign shortcodes) is "
9785
  "checked."
9786
  msgstr ""
9787
 
9788
+ #: wppa-settings-autosave.php:3504
9789
  #, fuzzy
9790
  msgid "Run wpautop on description"
9791
  msgstr "Zadat/upravit popis fotky"
9792
 
9793
+ #: wppa-settings-autosave.php:3505
9794
  msgid "Adds &lt;p> and &lt;br> tags in fullsize descriptions."
9795
  msgstr ""
9796
 
9797
+ #: wppa-settings-autosave.php:3513
9798
  #, fuzzy
9799
  msgid "Auto open comments"
9800
  msgstr "Váš komentář:"
9801
 
9802
+ #: wppa-settings-autosave.php:3514
9803
  msgid "Automatic opens comments box when slideshow does not run."
9804
  msgstr ""
9805
 
9806
+ #: wppa-settings-autosave.php:3522
9807
  #, fuzzy
9808
  msgid "Film hover goto"
9809
  msgstr "Zobrazit úvodní fotku"
9810
 
9811
+ #: wppa-settings-autosave.php:3523
9812
  msgid "Go to slide when hovering filmstrip thumbnail."
9813
  msgstr ""
9814
 
9815
+ #: wppa-settings-autosave.php:3524
9816
  msgid "Do not use this setting when slides have different aspect ratios!"
9817
  msgstr ""
9818
 
9819
+ #: wppa-settings-autosave.php:3531
9820
  #, fuzzy
9821
  msgid "Slide swipe"
9822
  msgstr "Slideshow"
9823
 
9824
+ #: wppa-settings-autosave.php:3532
9825
  msgid "Enable touch events swipe left-right on slides on touch screens."
9826
  msgstr ""
9827
 
9828
+ #: wppa-settings-autosave.php:3540
9829
  msgid "Slide page Ajax"
9830
  msgstr ""
9831
 
9832
+ #: wppa-settings-autosave.php:3541
9833
  msgid "Pagelinks slideshow use Ajax"
9834
  msgstr ""
9835
 
9836
+ #: wppa-settings-autosave.php:3542
9837
  msgid "On some systems you need to disable ajax here."
9838
  msgstr ""
9839
 
9840
+ #: wppa-settings-autosave.php:3549
9841
  msgid "Thumbnail related settings"
9842
  msgstr ""
9843
 
9844
+ #: wppa-settings-autosave.php:3552
9845
  msgid "Photo ordering sequence method."
9846
  msgstr ""
9847
 
9848
+ #: wppa-settings-autosave.php:3553
9849
  msgid ""
9850
  "Specify the way the photos should be ordered. This is the default setting. "
9851
  "You can overrule the default sorting order on a per album basis."
9852
  msgstr ""
9853
 
9854
+ #: wppa-settings-autosave.php:3590
9855
  #, fuzzy
9856
  msgid "Thumbnail type"
9857
  msgstr "Stránka s náhledy"
9858
 
9859
+ #: wppa-settings-autosave.php:3591
9860
  msgid "The way the thumbnail images are displayed."
9861
  msgstr ""
9862
 
9863
+ #: wppa-settings-autosave.php:3592
9864
  msgid ""
9865
  "You may select an altenative display method for thumbnails. Note that some "
9866
  "of the thumbnail settings do not apply to all available display methods."
9867
  msgstr ""
9868
 
9869
+ #: wppa-settings-autosave.php:3594
9870
  msgid "like album covers"
9871
  msgstr ""
9872
 
9873
+ #: wppa-settings-autosave.php:3594
9874
  msgid "like album covers mcr"
9875
  msgstr ""
9876
 
9877
+ #: wppa-settings-autosave.php:3594
9878
  msgid "masonry style columns"
9879
  msgstr ""
9880
 
9881
+ #: wppa-settings-autosave.php:3594
9882
  msgid "masonry style rows"
9883
  msgstr ""
9884
 
9885
+ #: wppa-settings-autosave.php:3602 wppa-settings-autosave.php:3703
9886
  msgid "Placement"
9887
  msgstr ""
9888
 
9889
+ #: wppa-settings-autosave.php:3603
9890
  msgid "Thumbnail image left or right."
9891
  msgstr ""
9892
 
9893
+ #: wppa-settings-autosave.php:3604
9894
  msgid "Indicate the placement position of the thumbnailphoto you wish."
9895
  msgstr ""
9896
 
9897
+ #: wppa-settings-autosave.php:3613
9898
  msgid "Vertical alignment"
9899
  msgstr ""
9900
 
9901
+ #: wppa-settings-autosave.php:3614
9902
  msgid "Vertical alignment of thumbnails."
9903
  msgstr ""
9904
 
9905
+ #: wppa-settings-autosave.php:3615
9906
  msgid ""
9907
  "Specify the vertical alignment of thumbnail images. Use this setting when "
9908
  "albums contain both portrait and landscape photos."
9909
  msgstr ""
9910
 
9911
+ #: wppa-settings-autosave.php:3616
9912
  msgid ""
9913
  "It is NOT recommended to use the value --- default ---; it will affect the "
9914
  "horizontal alignment also and is meant to be used with custom css."
9915
  msgstr ""
9916
 
9917
+ #: wppa-settings-autosave.php:3625
9918
  msgid "Thumb mouseover"
9919
  msgstr ""
9920
 
9921
+ #: wppa-settings-autosave.php:3626
9922
  msgid "Apply thumbnail mouseover effect."
9923
  msgstr ""
9924
 
9925
+ #: wppa-settings-autosave.php:3627
9926
  msgid "Check this box to use mouseover effect on thumbnail images."
9927
  msgstr ""
9928
 
9929
+ #: wppa-settings-autosave.php:3635
9930
  #, fuzzy
9931
  msgid "Thumb opacity"
9932
  msgstr "Označkované fotografie"
9933
 
9934
+ #: wppa-settings-autosave.php:3636 wppa-settings-autosave.php:3728
9935
  msgid "Initial opacity value."
9936
  msgstr ""
9937
 
9938
+ #: wppa-settings-autosave.php:3637 wppa-settings-autosave.php:3729
9939
+ #: wppa-settings-autosave.php:3838
9940
  msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
9941
  msgstr ""
9942
 
9943
+ #: wppa-settings-autosave.php:3639 wppa-settings-autosave.php:3731
9944
+ #: wppa-settings-autosave.php:3841 wppa-settings-autosave.php:4142
9945
  msgid "%"
9946
  msgstr ""
9947
 
9948
+ #: wppa-settings-autosave.php:3644
9949
  msgid "Thumb popup"
9950
  msgstr ""
9951
 
9952
+ #: wppa-settings-autosave.php:3645
9953
  msgid "Use popup effect on thumbnail images."
9954
  msgstr ""
9955
 
9956
+ #: wppa-settings-autosave.php:3646
9957
  msgid "Thumbnails pop-up to a larger image when hovered."
9958
  msgstr ""
9959
 
9960
+ #: wppa-settings-autosave.php:3654
9961
  msgid "Align subtext"
9962
  msgstr ""
9963
 
9964
+ #: wppa-settings-autosave.php:3655
9965
  msgid "Set thumbnail subtext on equal height."
9966
  msgstr ""
9967
 
9968
+ #: wppa-settings-autosave.php:3663
9969
  msgid "Album and covers related settings"
9970
  msgstr ""
9971
 
9972
+ #: wppa-settings-autosave.php:3665
9973
  #, fuzzy
9974
  msgid "Album order"
9975
  msgstr "Administrace alb"
9976
 
9977
+ #: wppa-settings-autosave.php:3666
9978
  msgid "Album ordering sequence method."
9979
  msgstr ""
9980
 
9981
+ #: wppa-settings-autosave.php:3667
9982
  msgid "Specify the way the albums should be ordered."
9983
  msgstr ""
9984
 
9985
+ #: wppa-settings-autosave.php:3692
9986
  #, fuzzy
9987
  msgid "Default coverphoto selection"
9988
  msgstr "Přednastavené fotoalbum pro"
9989
 
9990
+ #: wppa-settings-autosave.php:3693
9991
  msgid "Default select cover photo method."
9992
  msgstr ""
9993
 
9994
+ #: wppa-settings-autosave.php:3694
9995
  msgid ""
9996
  "This is the initial value on album creation only. It can be overruled on the "
9997
  "edit album page."
9998
  msgstr ""
9999
 
10000
+ #: wppa-settings-autosave.php:3695
10001
  msgid "Random from album"
10002
  msgstr ""
10003
 
10004
+ #: wppa-settings-autosave.php:3695
10005
  msgid "Random featured from album"
10006
  msgstr ""
10007
 
10008
+ #: wppa-settings-autosave.php:3695
10009
  #, fuzzy
10010
  msgid "Most recently added to album"
10011
  msgstr "Nedávno nahrané fotky"
10012
 
10013
+ #: wppa-settings-autosave.php:3695
10014
  #, fuzzy
10015
  msgid "Random from album or any sub album"
10016
  msgstr "Uživatel %s nahrál fotku %s do alba %s"
10017
 
10018
+ #: wppa-settings-autosave.php:3704
10019
  #, fuzzy
10020
  msgid "Cover image position."
10021
  msgstr "Správa úprav fotek"
10022
 
10023
+ #: wppa-settings-autosave.php:3705
10024
  msgid ""
10025
  "Enter the position that you want to be used for the default album cover "
10026
  "selected in Table IV-D6."
10027
  msgstr ""
10028
 
10029
+ #: wppa-settings-autosave.php:3706
10030
  msgid ""
10031
  "For covertype Image Factory: left will be treated as top and right will be "
10032
  "treted as bottom."
10033
  msgstr ""
10034
 
10035
+ #: wppa-settings-autosave.php:3707
10036
  msgid ""
10037
  "For covertype Long Descriptions: top will be treated as left and bottom will "
10038
  "be treted as right."
10039
  msgstr ""
10040
 
10041
+ #: wppa-settings-autosave.php:3717
10042
  msgid "Cover mouseover"
10043
  msgstr ""
10044
 
10045
+ #: wppa-settings-autosave.php:3718
10046
  msgid "Apply coverphoto mouseover effect."
10047
  msgstr ""
10048
 
10049
+ #: wppa-settings-autosave.php:3719
10050
  msgid "Check this box to use mouseover effect on cover images."
10051
  msgstr ""
10052
 
10053
+ #: wppa-settings-autosave.php:3727
10054
  msgid "Cover opacity"
10055
  msgstr ""
10056
 
10057
+ #: wppa-settings-autosave.php:3736
10058
  msgid "Cover type"
10059
  msgstr ""
10060
 
10061
+ #: wppa-settings-autosave.php:3737
10062
  msgid "Select the default cover type."
10063
  msgstr ""
10064
 
10065
+ #: wppa-settings-autosave.php:3738
10066
  msgid ""
10067
  "Types with the addition mcr are suitable for Multi Column in a Responsive "
10068
  "theme"
10069
  msgstr ""
10070
 
10071
+ #: wppa-settings-autosave.php:3761
10072
  msgid "The umber of coverphotos. Must be > 1 and < 25."
10073
  msgstr ""
10074
 
10075
+ #: wppa-settings-autosave.php:3769
10076
  msgid "Rating related settings"
10077
  msgstr ""
10078
 
10079
+ #: wppa-settings-autosave.php:3771
10080
  #, fuzzy
10081
  msgid "Rating login"
10082
  msgstr "Hlasování: %s"
10083
 
10084
+ #: wppa-settings-autosave.php:3772
10085
  #, fuzzy
10086
  msgid "Users must login to rate photos."
10087
  msgstr "Nedávno nahrané fotografie"
10088
 
10089
+ #: wppa-settings-autosave.php:3773
10090
  msgid ""
10091
  "If users want to vote for a photo (rating 1..5 stars) the must login first. "
10092
  "The avarage rating will always be displayed as long as the rating system is "
10093
  "enabled."
10094
  msgstr ""
10095
 
10096
+ #: wppa-settings-autosave.php:3780
10097
  #, fuzzy
10098
  msgid "Rating change"
10099
  msgstr "Hlasování: %s"
10100
 
10101
+ #: wppa-settings-autosave.php:3781 wppa-settings-autosave.php:3782
10102
  msgid "Users may change their ratings."
10103
  msgstr ""
10104
 
10105
+ #: wppa-settings-autosave.php:3783 wppa-settings-autosave.php:3820
10106
+ #: wppa-settings-autosave.php:3839 wppa-settings-autosave.php:3852
10107
+ #: wppa-settings-autosave.php:3862 wppa-settings-autosave.php:3872
10108
+ #: wppa-settings-autosave.php:3882 wppa-settings-autosave.php:3891
10109
  msgid ""
10110
  "If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
10111
  msgstr ""
10112
 
10113
+ #: wppa-settings-autosave.php:3790
10114
  #, fuzzy
10115
  msgid "Rating multi"
10116
  msgstr "Hlasování: %s"
10117
 
10118
+ #: wppa-settings-autosave.php:3791
10119
  msgid "Users may give multiple votes."
10120
  msgstr ""
10121
 
10122
+ #: wppa-settings-autosave.php:3792
10123
  msgid ""
10124
  "Users may give multiple votes. (This has no effect when users may change "
10125
  "their votes.)"
10126
  msgstr ""
10127
 
10128
+ #: wppa-settings-autosave.php:3799
10129
  #, fuzzy
10130
  msgid "Rate own photos"
10131
  msgstr "napsáno k fotce"
10132
 
10133
+ #: wppa-settings-autosave.php:3800
10134
  msgid "It is allowed to rate photos by the uploader himself."
10135
  msgstr ""
10136
 
10137
+ #: wppa-settings-autosave.php:3808
10138
  msgid "Rating requires comment"
10139
  msgstr ""
10140
 
10141
+ #: wppa-settings-autosave.php:3809
10142
  #, fuzzy
10143
  msgid "Users must clarify their vote in a comment."
10144
  msgstr "Musíte se <a href=&quot;\"%s\"&quot;>přihlásit</a> k napsání komentáře"
10145
 
10146
+ #: wppa-settings-autosave.php:3818
10147
  msgid "This value counts dislike rating."
10148
  msgstr ""
10149
 
10150
+ #: wppa-settings-autosave.php:3819
10151
  msgid ""
10152
  "This value will be used for a dislike rating on calculation of avarage "
10153
  "ratings."
10154
  msgstr ""
10155
 
10156
+ #: wppa-settings-autosave.php:3822
10157
  msgid "points"
10158
  msgstr ""
10159
 
10160
+ #: wppa-settings-autosave.php:3827
10161
  msgid "Next after vote"
10162
  msgstr ""
10163
 
10164
+ #: wppa-settings-autosave.php:3828
10165
  msgid "Goto next slide after voting"
10166
  msgstr ""
10167
 
10168
+ #: wppa-settings-autosave.php:3829
10169
  msgid ""
10170
  "If checked, the visitor goes straight to the slide following the slide he "
10171
  "voted. This will speed up mass voting."
10172
  msgstr ""
10173
 
10174
+ #: wppa-settings-autosave.php:3836
10175
  msgid "Star off opacity"
10176
  msgstr ""
10177
 
10178
+ #: wppa-settings-autosave.php:3837
10179
  msgid "Rating star off state opacity value."
10180
  msgstr ""
10181
 
10182
+ #: wppa-settings-autosave.php:3847
10183
  msgid "Notify admin every x times."
10184
  msgstr ""
10185
 
10186
+ #: wppa-settings-autosave.php:3848
10187
  msgid ""
10188
  "If this number is positive, there will be a thumb down icon in the rating "
10189
  "bar."
10190
  msgstr ""
10191
 
10192
+ #: wppa-settings-autosave.php:3849
10193
  msgid ""
10194
  "Cicking the icon indicates a user wants to report that an image is "
10195
  "inappropiate."
10196
  msgstr ""
10197
 
10198
+ #: wppa-settings-autosave.php:3850
10199
  msgid "Admin will be notified by email after every x reports."
10200
  msgstr ""
10201
 
10202
+ #: wppa-settings-autosave.php:3851 wppa-settings-autosave.php:3861
10203
+ #: wppa-settings-autosave.php:3871
10204
  msgid "A value of 0 disables this feature."
10205
  msgstr ""
10206
 
10207
+ #: wppa-settings-autosave.php:3854 wppa-settings-autosave.php:3864
10208
+ #: wppa-settings-autosave.php:3874
10209
  msgid "reports"
10210
  msgstr ""
10211
 
10212
+ #: wppa-settings-autosave.php:3859
10213
  msgid "Pending after"
10214
  msgstr ""
10215
 
10216
+ #: wppa-settings-autosave.php:3860
10217
  msgid "Set status to pending after xx dislike votes."
10218
  msgstr ""
10219
 
10220
+ #: wppa-settings-autosave.php:3869
10221
  #, fuzzy
10222
  msgid "Delete after"
10223
  msgstr "Album:"
10224
 
10225
+ #: wppa-settings-autosave.php:3870
10226
  msgid "Deete photo after xx dislike votes."
10227
  msgstr ""
10228
 
10229
+ #: wppa-settings-autosave.php:3879
10230
  #, fuzzy
10231
  msgid "Show dislike count"
10232
  msgstr "Žádné hodnocení NELÍBÍ"
10233
 
10234
+ #: wppa-settings-autosave.php:3880
10235
  msgid "Show the number of dislikes in the rating bar."
10236
  msgstr ""
10237
 
10238
+ #: wppa-settings-autosave.php:3881
10239
  msgid "Displayes the total number of dislike votes for the current photo."
10240
  msgstr ""
10241
 
10242
+ #: wppa-settings-autosave.php:3889
10243
  msgid "Rating display type"
10244
  msgstr ""
10245
 
10246
+ #: wppa-settings-autosave.php:3890
10247
  msgid "Specify the type of the rating display."
10248
  msgstr ""
10249
 
10250
+ #: wppa-settings-autosave.php:3893
10251
  msgid "Graphic"
10252
  msgstr ""
10253
 
10254
+ #: wppa-settings-autosave.php:3893
10255
  msgid "Numeric"
10256
  msgstr ""
10257
 
10258
+ #: wppa-settings-autosave.php:3900
10259
  #, fuzzy
10260
  msgid "Show average rating"
10261
  msgstr "Průměrné hodnocení"
10262
 
10263
+ #: wppa-settings-autosave.php:3901
10264
  msgid "Display the avarage rating and/or vote count on the rating bar"
10265
  msgstr ""
10266
 
10267
+ #: wppa-settings-autosave.php:3902
10268
  msgid ""
10269
  "If checked, the average rating as well as the current users rating is "
10270
  "displayed in max 5 or 10 stars."
10271
  msgstr ""
10272
 
10273
+ #: wppa-settings-autosave.php:3903
10274
  msgid "If unchecked, only the current users rating is displayed (if any)."
10275
  msgstr ""
10276
 
10277
+ #: wppa-settings-autosave.php:3904
10278
  msgid ""
10279
  "If \"One button vote\" is selected in Table I-E1, this box checked will "
10280
  "display the vote count."
10281
  msgstr ""
10282
 
10283
+ #: wppa-settings-autosave.php:3911
10284
  msgid "Single vote button text"
10285
  msgstr ""
10286
 
10287
+ #: wppa-settings-autosave.php:3912
10288
  msgid "The text on the voting button."
10289
  msgstr ""
10290
 
10291
+ #: wppa-settings-autosave.php:3913 wppa-settings-autosave.php:3922
10292
  msgid "This text may contain qTranslate compatible language tags."
10293
  msgstr ""
10294
 
10295
+ #: wppa-settings-autosave.php:3920
10296
  msgid "Single vote button text voted"
10297
  msgstr ""
10298
 
10299
+ #: wppa-settings-autosave.php:3921
10300
  msgid "The text on the voting button when voted."
10301
  msgstr ""
10302
 
10303
+ #: wppa-settings-autosave.php:3929
10304
  #, fuzzy
10305
  msgid "Single vote button thumbnail"
10306
  msgstr "Prohlédnout náhledy"
10307
 
10308
+ #: wppa-settings-autosave.php:3930
10309
  msgid "Display single vote button below thumbnails."
10310
  msgstr ""
10311
 
10312
+ #: wppa-settings-autosave.php:3931
10313
  msgid ""
10314
  "This works only in single vote mode: Table I-E1 set to \"one button vote\""
10315
  msgstr ""
10316
 
10317
+ #: wppa-settings-autosave.php:3938
10318
  msgid "Medal bronze when"
10319
  msgstr ""
10320
 
10321
+ #: wppa-settings-autosave.php:3939 wppa-settings-autosave.php:3957
10322
  msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
10323
  msgstr ""
10324
 
10325
+ #: wppa-settings-autosave.php:3940 wppa-settings-autosave.php:3958
10326
  msgid ""
10327
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10328
  "bronze medal. A value of 0 indicates that you do not want this feature."
10329
  msgstr ""
10330
 
10331
+ #: wppa-settings-autosave.php:3942 wppa-settings-autosave.php:3951
10332
+ #: wppa-settings-autosave.php:3960
10333
  msgid "Topscores"
10334
  msgstr ""
10335
 
10336
+ #: wppa-settings-autosave.php:3947
10337
  msgid "Medal silver when"
10338
  msgstr ""
10339
 
10340
+ #: wppa-settings-autosave.php:3948
10341
  msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
10342
  msgstr ""
10343
 
10344
+ #: wppa-settings-autosave.php:3949
10345
  msgid ""
10346
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10347
  "silver medal. A value of 0 indicates that you do not want this feature."
10348
  msgstr ""
10349
 
10350
+ #: wppa-settings-autosave.php:3956
10351
  msgid "Medal gold when"
10352
  msgstr ""
10353
 
10354
+ #: wppa-settings-autosave.php:3965
10355
  msgid "Medal tag color"
10356
  msgstr ""
10357
 
10358
+ #: wppa-settings-autosave.php:3966
10359
  msgid "The color of the tag on the medal."
10360
  msgstr ""
10361
 
10362
+ #: wppa-settings-autosave.php:3969
10363
  msgid "Red"
10364
  msgstr ""
10365
 
10366
+ #: wppa-settings-autosave.php:3969
10367
  msgid "Green"
10368
  msgstr ""
10369
 
10370
+ #: wppa-settings-autosave.php:3969
10371
  msgid "Blue"
10372
  msgstr ""
10373
 
10374
+ #: wppa-settings-autosave.php:3976
10375
  #, fuzzy
10376
  msgid "Medal position"
10377
  msgstr "Pozice:"
10378
 
10379
+ #: wppa-settings-autosave.php:3977
10380
  msgid "The position of the medal on the image."
10381
  msgstr ""
10382
 
10383
+ #: wppa-settings-autosave.php:3980
10384
  msgid "Top left"
10385
  msgstr ""
10386
 
10387
+ #: wppa-settings-autosave.php:3980
10388
  msgid "Top right"
10389
  msgstr ""
10390
 
10391
+ #: wppa-settings-autosave.php:3980
10392
  msgid "Bottom left"
10393
  msgstr ""
10394
 
10395
+ #: wppa-settings-autosave.php:3980
10396
  msgid "Bottom right"
10397
  msgstr ""
10398
 
10399
+ #: wppa-settings-autosave.php:3987
10400
  msgid "Top criterium"
10401
  msgstr ""
10402
 
10403
+ #: wppa-settings-autosave.php:3988
10404
  msgid "The top sort item used for topten results from shortcodes."
10405
  msgstr ""
10406
 
10407
+ #: wppa-settings-autosave.php:3991
10408
  #, fuzzy
10409
  msgid "Mean raiting"
10410
  msgstr "Moje hodnocení"
10411
 
10412
+ #: wppa-settings-autosave.php:3991
10413
  #, fuzzy
10414
  msgid "Rating count"
10415
  msgstr "Hlasování: %s"
10416
 
10417
+ #: wppa-settings-autosave.php:3991
10418
  #, fuzzy
10419
  msgid "Viewcount"
10420
  msgstr "Ukázat: "
10421
 
10422
+ #: wppa-settings-autosave.php:3998
10423
  #, fuzzy
10424
  msgid "Comments related settings"
10425
  msgstr "Komentář upraven"
10426
 
10427
+ #: wppa-settings-autosave.php:4000
10428
  #, fuzzy
10429
  msgid "Commenting login"
10430
  msgstr "Komentáře"
10431
 
10432
+ #: wppa-settings-autosave.php:4001
10433
  msgid "Users must be logged in to comment on photos."
10434
  msgstr ""
10435
 
10436
+ #: wppa-settings-autosave.php:4002
10437
  msgid ""
10438
  "Check this box if you want users to be logged in to be able to enter "
10439
  "comments on individual photos."
10440
  msgstr ""
10441
 
10442
+ #: wppa-settings-autosave.php:4009
10443
  #, fuzzy
10444
  msgid "Comments view login"
10445
  msgstr "Komentář upraven"
10446
 
10447
+ #: wppa-settings-autosave.php:4010
10448
  #, fuzzy
10449
  msgid "Users must be logged in to see comments on photos."
10450
  msgstr "Musíte se <a href=&quot;\"%s\"&quot;>přihlásit</a> k napsání komentáře"
10451
 
10452
+ #: wppa-settings-autosave.php:4011
10453
  msgid ""
10454
  "Check this box if you want users to be logged in to be able to see existing "
10455
  "comments on individual photos."
10456
  msgstr ""
10457
 
10458
+ #: wppa-settings-autosave.php:4018
10459
  #, fuzzy
10460
  msgid "Last comment first"
10461
  msgstr "%d komentáře/ů"
10462
 
10463
+ #: wppa-settings-autosave.php:4019
10464
  msgid "Display the newest comment on top."
10465
  msgstr ""
10466
 
10467
+ #: wppa-settings-autosave.php:4020
10468
  msgid "If checked: Display the newest comment on top."
10469
  msgstr ""
10470
 
10471
+ #: wppa-settings-autosave.php:4021
10472
  msgid "If unchecked, the comments are listed in the ordere they were entered."
10473
  msgstr ""
10474
 
10475
+ #: wppa-settings-autosave.php:4028
10476
  #, fuzzy
10477
  msgid "Comment moderation"
10478
  msgstr "Komentáře"
10479
 
10480
+ #: wppa-settings-autosave.php:4029
10481
  msgid "Comments from what users need approval."
10482
  msgstr ""
10483
 
10484
+ #: wppa-settings-autosave.php:4030
10485
  msgid "Select the desired users of which the comments need approval."
10486
  msgstr ""
10487
 
10488
+ #: wppa-settings-autosave.php:4032 wppa-settings-autosave.php:5863
10489
  #, fuzzy
10490
  msgid "All users"
10491
  msgstr "Všechna alba"
10492
 
10493
+ #: wppa-settings-autosave.php:4032 wppa-settings-autosave.php:5863
10494
  msgid "Logged out users"
10495
  msgstr ""
10496
 
10497
+ #: wppa-settings-autosave.php:4032 wppa-settings-autosave.php:5863
10498
  msgid "No users"
10499
  msgstr ""
10500
 
10501
+ #: wppa-settings-autosave.php:4039
10502
  #, fuzzy
10503
  msgid "Comment email required"
10504
  msgstr "Komentář upraven"
10505
 
10506
+ #: wppa-settings-autosave.php:4040
10507
  msgid "Commenting users must enter their email addresses."
10508
  msgstr ""
10509
 
10510
+ #: wppa-settings-autosave.php:4048
10511
  #, fuzzy
10512
  msgid "Comment notify"
10513
  msgstr "Komentovat fotky:"
10514
 
10515
+ #: wppa-settings-autosave.php:4049
10516
  msgid "Select who must receive an e-mail notification of a new comment."
10517
  msgstr ""
10518
 
10519
+ #: wppa-settings-autosave.php:4052
10520
  #, fuzzy
10521
  msgid "--- None ---"
10522
  msgstr "--- žádné ---"
10523
 
10524
+ #: wppa-settings-autosave.php:4053
10525
  #, fuzzy
10526
  msgid "--- Admin ---"
10527
  msgstr "--- žádné ---"
10528
 
10529
+ #: wppa-settings-autosave.php:4054
10530
  #, fuzzy
10531
  msgid "--- Album owner ---"
10532
  msgstr "--- žádné ---"
10533
 
10534
+ #: wppa-settings-autosave.php:4055
10535
  #, fuzzy
10536
  msgid "--- Admin & Owner ---"
10537
  msgstr "--- žádné ---"
10538
 
10539
+ #: wppa-settings-autosave.php:4056
10540
  #, fuzzy
10541
  msgid "--- Uploader ---"
10542
  msgstr "--- žádné ---"
10543
 
10544
+ #: wppa-settings-autosave.php:4057
10545
  #, fuzzy
10546
  msgid "--- Up & admin ---"
10547
  msgstr "--- vše ---"
10548
 
10549
+ #: wppa-settings-autosave.php:4058
10550
  #, fuzzy
10551
  msgid "--- Up & Owner ---"
10552
  msgstr "--- žádné ---"
10553
 
10554
+ #: wppa-settings-autosave.php:4081
10555
  #, fuzzy
10556
  msgid "Comment notify previous"
10557
  msgstr "Komentovat fotky:"
10558
 
10559
+ #: wppa-settings-autosave.php:4082
10560
  #, fuzzy
10561
  msgid "Notify users who has commented this photo earlier."
10562
  msgstr "Dostáváte tento e-mail, protože jste přidedělen k jeho moderování"
10563
 
10564
+ #: wppa-settings-autosave.php:4090
10565
  #, fuzzy
10566
  msgid "Comment ntfy added"
10567
  msgstr "Komentář byl odeslán"
10568
 
10569
+ #: wppa-settings-autosave.php:4091
10570
  msgid "Show \"Comment added\" after successfull adding a comment."
10571
  msgstr ""
10572
 
10573
+ #: wppa-settings-autosave.php:4099
10574
  msgid "ComTen alt display"
10575
  msgstr ""
10576
 
10577
+ #: wppa-settings-autosave.php:4100
10578
  msgid "Display comments at comten thumbnails."
10579
  msgstr ""
10580
 
10581
+ #: wppa-settings-autosave.php:4108
10582
  #, fuzzy
10583
  msgid "Comten Thumbnail width"
10584
  msgstr "Stránka s náhledy"
10585
 
10586
+ #: wppa-settings-autosave.php:4109
10587
  msgid "The width of the thumbnail in the alt comment display."
10588
  msgstr ""
10589
 
10590
+ #: wppa-settings-autosave.php:4112
10591
  msgid "Pixels"
10592
  msgstr ""
10593
 
10594
+ #: wppa-settings-autosave.php:4117
10595
  msgid "Show smiley picker"
10596
  msgstr ""
10597
 
10598
+ #: wppa-settings-autosave.php:4118
10599
  msgid "Display a clickable row of smileys."
10600
  msgstr ""
10601
 
10602
+ #: wppa-settings-autosave.php:4126
10603
  #, fuzzy
10604
  msgid "Show commenter email"
10605
  msgstr "Váš komentář:"
10606
 
10607
+ #: wppa-settings-autosave.php:4127
10608
  msgid "Show the commenter's email in the notify emails."
10609
  msgstr ""
10610
 
10611
+ #: wppa-settings-autosave.php:4128
10612
  msgid "Shows the email address of the commenter in all notify emails."
10613
  msgstr ""
10614
 
10615
+ #: wppa-settings-autosave.php:4129
10616
  msgid ""
10617
  "If switched off, admin will still receive the senders email in the "
10618
  "notification mail"
10619
  msgstr ""
10620
 
10621
+ #: wppa-settings-autosave.php:4139
10622
  msgid "The opacity of the lightbox overlay background."
10623
  msgstr ""
10624
 
10625
+ #: wppa-settings-autosave.php:4147
10626
  msgid "Click on background"
10627
  msgstr ""
10628
 
10629
+ #: wppa-settings-autosave.php:4148
10630
  msgid "Select the action to be taken on click on background."
10631
  msgstr ""
10632
 
10633
+ #: wppa-settings-autosave.php:4151
10634
  msgid "Nothing"
10635
  msgstr ""
10636
 
10637
+ #: wppa-settings-autosave.php:4151
10638
  msgid "Exit (close)"
10639
  msgstr ""
10640
 
10641
+ #: wppa-settings-autosave.php:4151
10642
  msgid "Browse (left/right)"
10643
  msgstr ""
10644
 
10645
+ #: wppa-settings-autosave.php:4158
10646
  msgid "Overlay animation speed"
10647
  msgstr ""
10648
 
10649
+ #: wppa-settings-autosave.php:4159
10650
  msgid "The fade-in time of the lightbox images"
10651
  msgstr ""
10652
 
10653
+ #: wppa-settings-autosave.php:4162
10654
  msgid "very fast (100 ms.)"
10655
  msgstr ""
10656
 
10657
+ #: wppa-settings-autosave.php:4162
10658
  msgid "fast (200 ms.)"
10659
  msgstr ""
10660
 
10661
+ #: wppa-settings-autosave.php:4162
10662
  msgid "normal (300 ms.)"
10663
  msgstr ""
10664
 
10665
+ #: wppa-settings-autosave.php:4162
10666
  msgid "slow (500 ms.)"
10667
  msgstr ""
10668
 
10669
+ #: wppa-settings-autosave.php:4162
10670
  #, fuzzy
10671
  msgid "very slow (1 s.)"
10672
  msgstr "velmi nízká"
10673
 
10674
+ #: wppa-settings-autosave.php:4162
10675
  msgid "extremely slow (2 s.)"
10676
  msgstr ""
10677
 
10678
+ #: wppa-settings-autosave.php:4169
10679
  msgid "Overlay slideshow speed"
10680
  msgstr ""
10681
 
10682
+ #: wppa-settings-autosave.php:4170
10683
  msgid "The time the lightbox images stay"
10684
  msgstr ""
10685
 
10686
+ #: wppa-settings-autosave.php:4173
10687
  msgid "fast (3 s.)"
10688
  msgstr ""
10689
 
10690
+ #: wppa-settings-autosave.php:4173
10691
  msgid "normal (5 s.)"
10692
  msgstr ""
10693
 
10694
+ #: wppa-settings-autosave.php:4173
10695
  msgid "slow (8 s.)"
10696
  msgstr ""
10697
 
10698
+ #: wppa-settings-autosave.php:4173
10699
  #, fuzzy
10700
  msgid "very slow (13 s.)"
10701
  msgstr "velmi nízká"
10702
 
10703
+ #: wppa-settings-autosave.php:4173
10704
  msgid "extremely slow (20 s.)"
10705
  msgstr ""
10706
 
10707
+ #: wppa-settings-autosave.php:4180
10708
  msgid "Overlay at top in Chrome"
10709
  msgstr ""
10710
 
10711
+ #: wppa-settings-autosave.php:4181
10712
  msgid ""
10713
  "Place the overlay (lightbox) image at the top of the page in Chrome browsers."
10714
  msgstr ""
10715
 
10716
+ #: wppa-settings-autosave.php:4182
10717
  msgid "This is required for certain mobile devices."
10718
  msgstr ""
10719
 
10720
+ #: wppa-settings-autosave.php:4189
10721
  msgid "WPPA+ Lightbox global"
10722
  msgstr ""
10723
 
10724
+ #: wppa-settings-autosave.php:4190
10725
  msgid "Use the wppa+ lightbox also for non-wppa images."
10726
  msgstr ""
10727
 
10728
+ #: wppa-settings-autosave.php:4198
10729
  msgid "WPPA+ Lightbox global is a set"
10730
  msgstr ""
10731
 
10732
+ #: wppa-settings-autosave.php:4199
10733
  msgid "Treat the other images as a set."
10734
  msgstr ""
10735
 
10736
+ #: wppa-settings-autosave.php:4200
10737
  msgid ""
10738
  "If checked, you can scroll through the images in the lightbox view. Requires "
10739
  "item 5 to be checked."
10740
  msgstr ""
10741
 
10742
+ #: wppa-settings-autosave.php:4207
10743
  msgid "Use hires files"
10744
  msgstr ""
10745
 
10746
+ #: wppa-settings-autosave.php:4208
10747
  msgid "Use the highest resolution available for lightbox."
10748
  msgstr ""
10749
 
10750
+ #: wppa-settings-autosave.php:4209
10751
  msgid "Ticking this box is recommended for lightbox fullscreen modes."
10752
  msgstr ""
10753
 
10754
+ #: wppa-settings-autosave.php:4217
10755
  msgid "Videos on lightbox start automaticly."
10756
  msgstr ""
10757
 
10758
+ #: wppa-settings-autosave.php:4226
10759
  msgid "Audio on lightbox start automaticly."
10760
  msgstr ""
10761
 
10762
+ #: wppa-settings-autosave.php:4251
10763
  msgid "Table V:"
10764
  msgstr ""
10765
 
10766
+ #: wppa-settings-autosave.php:4251
10767
  #, fuzzy
10768
  msgid "Fonts:"
10769
  msgstr "Komentáře"
10770
 
10771
+ #: wppa-settings-autosave.php:4252
10772
  msgid "This table describes the Fonts used for the wppa+ elements."
10773
  msgstr ""
10774
 
10775
+ #: wppa-settings-autosave.php:4262 wppa-settings-autosave.php:4438
10776
  msgid "Font family"
10777
  msgstr ""
10778
 
10779
+ #: wppa-settings-autosave.php:4263 wppa-settings-autosave.php:4439
10780
  msgid "Font size"
10781
  msgstr ""
10782
 
10783
+ #: wppa-settings-autosave.php:4264 wppa-settings-autosave.php:4440
10784
  msgid "Font color"
10785
  msgstr ""
10786
 
10787
+ #: wppa-settings-autosave.php:4265 wppa-settings-autosave.php:4441
10788
  msgid "Font weight"
10789
  msgstr ""
10790
 
10791
+ #: wppa-settings-autosave.php:4275
10792
  msgid "normal"
10793
  msgstr ""
10794
 
10795
+ #: wppa-settings-autosave.php:4275
10796
  msgid "bold"
10797
  msgstr ""
10798
 
10799
+ #: wppa-settings-autosave.php:4275
10800
  msgid "bolder"
10801
  msgstr ""
10802
 
10803
+ #: wppa-settings-autosave.php:4275
10804
  msgid "lighter"
10805
  msgstr ""
10806
 
10807
+ #: wppa-settings-autosave.php:4278
10808
  #, fuzzy
10809
  msgid "Album titles"
10810
  msgstr "Alba:"
10811
 
10812
+ #: wppa-settings-autosave.php:4279
10813
  msgid "Font used for Album titles."
10814
  msgstr ""
10815
 
10816
+ #: wppa-settings-autosave.php:4280
10817
  msgid "Enter font name, size, color and weight for album cover titles."
10818
  msgstr ""
10819
 
10820
+ #: wppa-settings-autosave.php:4295
10821
  #, fuzzy
10822
  msgid "Slideshow desc"
10823
  msgstr "Slideshow"
10824
 
10825
+ #: wppa-settings-autosave.php:4296
10826
  #, fuzzy
10827
  msgid "Font for slideshow photo descriptions."
10828
  msgstr "Zadat/upravit popis fotky"
10829
 
10830
+ #: wppa-settings-autosave.php:4297
10831
  msgid ""
10832
  "Enter font name, size, color and weight for slideshow photo descriptions."
10833
  msgstr ""
10834
 
10835
+ #: wppa-settings-autosave.php:4312
10836
  #, fuzzy
10837
  msgid "Slideshow name"
10838
  msgstr "Slideshow"
10839
 
10840
+ #: wppa-settings-autosave.php:4313
10841
  #, fuzzy
10842
  msgid "Font for slideshow photo names."
10843
  msgstr "Zadejte název fotky"
10844
 
10845
+ #: wppa-settings-autosave.php:4314
10846
  msgid "Enter font name, size, color and weight for slideshow photo names."
10847
  msgstr ""
10848
 
10849
+ #: wppa-settings-autosave.php:4329
10850
  msgid "Navigations"
10851
  msgstr ""
10852
 
10853
+ #: wppa-settings-autosave.php:4330
10854
  msgid "Font for navigations."
10855
  msgstr ""
10856
 
10857
+ #: wppa-settings-autosave.php:4331
10858
  msgid "Enter font name, size, color and weight for navigation items."
10859
  msgstr ""
10860
 
10861
+ #: wppa-settings-autosave.php:4347
10862
  msgid "Font for text under thumbnails."
10863
  msgstr ""
10864
 
10865
+ #: wppa-settings-autosave.php:4348
10866
  msgid ""
10867
  "Enter font name, size, color and weight for text under thumbnail images."
10868
  msgstr ""
10869
 
10870
+ #: wppa-settings-autosave.php:4364
10871
  msgid "General font in wppa boxes."
10872
  msgstr ""
10873
 
10874
+ #: wppa-settings-autosave.php:4365
10875
  msgid "Enter font name, size, color and weight for all other items."
10876
  msgstr ""
10877
 
10878
+ #: wppa-settings-autosave.php:4381
10879
  msgid "Font in wppa number bars."
10880
  msgstr ""
10881
 
10882
+ #: wppa-settings-autosave.php:4382 wppa-settings-autosave.php:4399
10883
  msgid "Enter font name, size, color and weight for numberbar navigation."
10884
  msgstr ""
10885
 
10886
+ #: wppa-settings-autosave.php:4397
10887
  msgid "Numbar Active"
10888
  msgstr ""
10889
 
10890
+ #: wppa-settings-autosave.php:4398
10891
  msgid "Font in wppa number bars, active item."
10892
  msgstr ""
10893
 
10894
+ #: wppa-settings-autosave.php:4415
10895
  msgid "Font in wppa lightbox overlays."
10896
  msgstr ""
10897
 
10898
+ #: wppa-settings-autosave.php:4416
10899
  msgid "Enter font name, size, color and weight for wppa lightbox overlays."
10900
  msgstr ""
10901
 
10902
+ #: wppa-settings-autosave.php:4451
10903
  msgid "Table VI:"
10904
  msgstr ""
10905
 
10906
+ #: wppa-settings-autosave.php:4451
10907
  #, fuzzy
10908
  msgid "Links:"
10909
  msgstr "Odkaz na"
10910
 
10911
+ #: wppa-settings-autosave.php:4452
10912
  msgid "This table defines the link types and pages."
10913
  msgstr ""
10914
 
10915
+ #: wppa-settings-autosave.php:4463 wppa-settings-autosave.php:5462
10916
  #, fuzzy
10917
  msgid "Link page"
10918
  msgstr "Odkaz na"
10919
 
10920
+ #: wppa-settings-autosave.php:4465 wppa-settings-autosave.php:5464
10921
  msgid "Photo specific link overrules"
10922
  msgstr ""
10923
 
10924
+ #: wppa-settings-autosave.php:4465 wppa-settings-autosave.php:5464
10925
  msgid "PSO"
10926
  msgstr ""
10927
 
10928
+ #: wppa-settings-autosave.php:4515
10929
  #, fuzzy
10930
  msgid "--- The same post or page ---"
10931
  msgstr "--- samostatné ---"
10932
 
10933
+ #: wppa-settings-autosave.php:4546
10934
  msgid "--- No page to link to (yet) ---"
10935
  msgstr ""
10936
 
10937
+ #: wppa-settings-autosave.php:4551
10938
  #, fuzzy
10939
  msgid "--- Will be auto created ---"
10940
  msgstr "--- samostatné ---"
10941
 
10942
+ #: wppa-settings-autosave.php:4553
10943
  msgid "Links from images in WPPA+ Widgets"
10944
  msgstr ""
10945
 
10946
+ #: wppa-settings-autosave.php:4555
10947
  msgid "PotdWidget"
10948
  msgstr ""
10949
 
10950
+ #: wppa-settings-autosave.php:4556
10951
  msgid "Photo Of The Day widget link."
10952
  msgstr ""
10953
 
10954
+ #: wppa-settings-autosave.php:4557
10955
  msgid "Select the type of link the photo of the day points to."
10956
  msgstr ""
10957
 
10958
+ #: wppa-settings-autosave.php:4558
10959
  msgid ""
10960
  "If you select 'defined on widget admin page' you can manually enter a link "
10961
  "and title on the Photo of the day Widget Admin page."
10962
  msgstr ""
10963
 
10964
+ #: wppa-settings-autosave.php:4567 wppa-settings-autosave.php:4610
10965
+ #: wppa-settings-autosave.php:4688 wppa-settings-autosave.php:4731
10966
+ #: wppa-settings-autosave.php:4779 wppa-settings-autosave.php:4826
10967
+ #: wppa-settings-autosave.php:4873 wppa-settings-autosave.php:4925
10968
+ #: wppa-settings-autosave.php:4963 wppa-settings-autosave.php:5013
10969
+ #: wppa-settings-autosave.php:5055 wppa-settings-autosave.php:5095
10970
+ #: wppa-settings-autosave.php:8841
10971
  msgid "no link at all."
10972
  msgstr ""
10973
 
10974
+ #: wppa-settings-autosave.php:4568 wppa-settings-autosave.php:4611
10975
+ #: wppa-settings-autosave.php:4689 wppa-settings-autosave.php:4732
10976
+ #: wppa-settings-autosave.php:4780 wppa-settings-autosave.php:4827
10977
+ #: wppa-settings-autosave.php:4874 wppa-settings-autosave.php:4926
10978
+ #: wppa-settings-autosave.php:4964 wppa-settings-autosave.php:5014
10979
+ #: wppa-settings-autosave.php:5056 wppa-settings-autosave.php:5096
10980
+ #: wppa-settings-autosave.php:8842
10981
  msgid "the plain photo (file)."
10982
  msgstr ""
10983
 
10984
+ #: wppa-settings-autosave.php:4569 wppa-settings-autosave.php:8848
10985
  #, fuzzy
10986
  msgid "defined on widget admin page."
10987
  msgstr "Vyberte prosím cílovou stránku pro super view widget v Table VI-C"
10988
 
10989
+ #: wppa-settings-autosave.php:4570 wppa-settings-autosave.php:4613
10990
+ #: wppa-settings-autosave.php:5015 wppa-settings-autosave.php:5057
10991
+ #: wppa-settings-autosave.php:8846
10992
  msgid "the content of the album."
10993
  msgstr ""
10994
 
10995
+ #: wppa-settings-autosave.php:4571 wppa-settings-autosave.php:4614
10996
+ #: wppa-settings-autosave.php:4690 wppa-settings-autosave.php:4735
10997
+ #: wppa-settings-autosave.php:4783 wppa-settings-autosave.php:4830
10998
+ #: wppa-settings-autosave.php:4877 wppa-settings-autosave.php:4965
10999
+ #: wppa-settings-autosave.php:5016 wppa-settings-autosave.php:5058
11000
+ #: wppa-settings-autosave.php:8843
11001
  msgid "the full size photo in a slideshow."
11002
  msgstr ""
11003
 
11004
+ #: wppa-settings-autosave.php:4572 wppa-settings-autosave.php:4615
11005
+ #: wppa-settings-autosave.php:4691 wppa-settings-autosave.php:4736
11006
+ #: wppa-settings-autosave.php:4784 wppa-settings-autosave.php:4831
11007
+ #: wppa-settings-autosave.php:4878 wppa-settings-autosave.php:4966
11008
+ #: wppa-settings-autosave.php:5017 wppa-settings-autosave.php:5059
11009
+ #: wppa-settings-autosave.php:5097 wppa-settings-autosave.php:8844
11010
  msgid "the fullsize photo on its own."
11011
  msgstr ""
11012
 
11013
+ #: wppa-settings-autosave.php:4573 wppa-settings-autosave.php:4616
11014
+ #: wppa-settings-autosave.php:4655 wppa-settings-autosave.php:4694
11015
+ #: wppa-settings-autosave.php:4739 wppa-settings-autosave.php:4787
11016
+ #: wppa-settings-autosave.php:4834 wppa-settings-autosave.php:4881
11017
+ #: wppa-settings-autosave.php:4969
11018
  msgid "a plain page without a querystring."
11019
  msgstr ""
11020
 
11021
+ #: wppa-settings-autosave.php:4574 wppa-settings-autosave.php:4617
11022
+ #: wppa-settings-autosave.php:4656 wppa-settings-autosave.php:4695
11023
+ #: wppa-settings-autosave.php:4740 wppa-settings-autosave.php:4788
11024
+ #: wppa-settings-autosave.php:4835 wppa-settings-autosave.php:4882
11025
+ #: wppa-settings-autosave.php:4928 wppa-settings-autosave.php:4970
11026
+ #: wppa-settings-autosave.php:5018 wppa-settings-autosave.php:5060
11027
+ #: wppa-settings-autosave.php:5098
11028
  msgid "lightbox."
11029
  msgstr ""
11030
 
11031
+ #: wppa-settings-autosave.php:4599
11032
  msgid "SlideWidget"
11033
  msgstr ""
11034
 
11035
+ #: wppa-settings-autosave.php:4600
11036
  msgid "Slideshow widget photo link."
11037
  msgstr ""
11038
 
11039
+ #: wppa-settings-autosave.php:4601
11040
  msgid "Select the type of link the slideshow photos point to."
11041
  msgstr ""
11042
 
11043
+ #: wppa-settings-autosave.php:4612 wppa-settings-autosave.php:8847
11044
  msgid "defined at widget activation."
11045
  msgstr ""
11046
 
11047
+ #: wppa-settings-autosave.php:4642
11048
  #, fuzzy
11049
  msgid "Album widget"
11050
  msgstr "Administrace alb"
11051
 
11052
+ #: wppa-settings-autosave.php:4643
11053
  msgid "Album widget thumbnail link"
11054
  msgstr ""
11055
 
11056
+ #: wppa-settings-autosave.php:4644
11057
  msgid "Select the type of link the album widget photos point to."
11058
  msgstr ""
11059
 
11060
+ #: wppa-settings-autosave.php:4653
11061
  msgid "subalbums and thumbnails."
11062
  msgstr ""
11063
 
11064
+ #: wppa-settings-autosave.php:4654
11065
  #, fuzzy
11066
  msgid "slideshow."
11067
  msgstr "Slideshow"
11068
 
11069
+ #: wppa-settings-autosave.php:4677
11070
  #, fuzzy
11071
  msgid "ThumbnailWidget"
11072
  msgstr "Stránka s náhledy"
11073
 
11074
+ #: wppa-settings-autosave.php:4678
11075
  #, fuzzy
11076
  msgid "Thumbnail widget photo link."
11077
  msgstr "Označkované fotografie"
11078
 
11079
+ #: wppa-settings-autosave.php:4679
11080
  msgid "Select the type of link the thumbnail photos point to."
11081
  msgstr ""
11082
 
11083
+ #: wppa-settings-autosave.php:4692 wppa-settings-autosave.php:4737
11084
+ #: wppa-settings-autosave.php:4785 wppa-settings-autosave.php:4832
11085
+ #: wppa-settings-autosave.php:4879 wppa-settings-autosave.php:4967
11086
  msgid "the single photo in the style of a slideshow."
11087
  msgstr ""
11088
 
11089
+ #: wppa-settings-autosave.php:4693 wppa-settings-autosave.php:4738
11090
+ #: wppa-settings-autosave.php:4786 wppa-settings-autosave.php:4833
11091
+ #: wppa-settings-autosave.php:4880 wppa-settings-autosave.php:4968
11092
+ #: wppa-settings-autosave.php:5100
11093
  msgid "the fs photo with download and print buttons."
11094
  msgstr ""
11095
 
11096
+ #: wppa-settings-autosave.php:4720
11097
  msgid "TopTenWidget"
11098
  msgstr ""
11099
 
11100
+ #: wppa-settings-autosave.php:4721
11101
  msgid "TopTen widget photo link."
11102
  msgstr ""
11103
 
11104
+ #: wppa-settings-autosave.php:4722
11105
  msgid "Select the type of link the top ten photos point to."
11106
  msgstr ""
11107
 
11108
+ #: wppa-settings-autosave.php:4733
11109
  msgid "the content of the virtual topten album."
11110
  msgstr ""
11111
 
11112
+ #: wppa-settings-autosave.php:4734 wppa-settings-autosave.php:4782
11113
+ #: wppa-settings-autosave.php:4829 wppa-settings-autosave.php:4876
11114
  msgid "the content of the thumbnails album."
11115
  msgstr ""
11116
 
11117
+ #: wppa-settings-autosave.php:4768
11118
  msgid "LasTenWidget"
11119
  msgstr ""
11120
 
11121
+ #: wppa-settings-autosave.php:4769
11122
  #, fuzzy
11123
  msgid "Last Ten widget photo link."
11124
  msgstr "Nedávno nahrané fotky"
11125
 
11126
+ #: wppa-settings-autosave.php:4770
11127
  msgid "Select the type of link the last ten photos point to."
11128
  msgstr ""
11129
 
11130
+ #: wppa-settings-autosave.php:4781
11131
  msgid "the content of the virtual lasten album."
11132
  msgstr ""
11133
 
11134
+ #: wppa-settings-autosave.php:4815
11135
  #, fuzzy
11136
  msgid "CommentWidget"
11137
  msgstr "Komentář byl odeslán"
11138
 
11139
+ #: wppa-settings-autosave.php:4816
11140
  #, fuzzy
11141
  msgid "Comment widget photo link."
11142
  msgstr "Komentovat fotky:"
11143
 
11144
+ #: wppa-settings-autosave.php:4817
11145
  msgid "Select the type of link the comment widget photos point to."
11146
  msgstr ""
11147
 
11148
+ #: wppa-settings-autosave.php:4828
11149
  msgid "the content of the virtual comten album."
11150
  msgstr ""
11151
 
11152
+ #: wppa-settings-autosave.php:4862
11153
  msgid "FeaTenWidget"
11154
  msgstr ""
11155
 
11156
+ #: wppa-settings-autosave.php:4863
11157
  msgid "FeaTen widget photo link."
11158
  msgstr ""
11159
 
11160
+ #: wppa-settings-autosave.php:4864
11161
  msgid "Select the type of link the featured ten photos point to."
11162
  msgstr ""
11163
 
11164
+ #: wppa-settings-autosave.php:4875
11165
  msgid "the content of the virtual featen album."
11166
  msgstr ""
11167
 
11168
+ #: wppa-settings-autosave.php:4908
11169
  msgid "Links from other WPPA+ images"
11170
  msgstr ""
11171
 
11172
+ #: wppa-settings-autosave.php:4910
11173
  msgid "Cover Image"
11174
  msgstr ""
11175
 
11176
+ #: wppa-settings-autosave.php:4911
11177
  msgid "The link from the cover image of an album."
11178
  msgstr ""
11179
 
11180
+ #: wppa-settings-autosave.php:4912
11181
  msgid "Select the type of link the coverphoto points to."
11182
  msgstr ""
11183
 
11184
+ #: wppa-settings-autosave.php:4913
11185
  msgid "The link from the album title can be configured on the Edit Album page."
11186
  msgstr ""
11187
 
11188
+ #: wppa-settings-autosave.php:4914
11189
  msgid "This link will be used for the photo also if you select: same as title."
11190
  msgstr ""
11191
 
11192
+ #: wppa-settings-autosave.php:4915
11193
  msgid ""
11194
  "If you specify New Tab on this line, all links from the cover will open a "
11195
  "new tab,"
11196
  msgstr ""
11197
 
11198
+ #: wppa-settings-autosave.php:4916
11199
  msgid "except when Ajax is activated on Table IV-A1."
11200
  msgstr ""
11201
 
11202
+ #: wppa-settings-autosave.php:4927 wppa-settings-autosave.php:8849
11203
  msgid "same as title."
11204
  msgstr ""
11205
 
11206
+ #: wppa-settings-autosave.php:4929
11207
  msgid "a slideshow starting at the photo"
11208
  msgstr ""
11209
 
11210
+ #: wppa-settings-autosave.php:4950
11211
  #, fuzzy
11212
  msgid "Thumbnail"
11213
  msgstr "Označkované fotografie"
11214
 
11215
+ #: wppa-settings-autosave.php:4951
11216
  #, fuzzy
11217
  msgid "Thumbnail link."
11218
  msgstr "Stránka s náhledy"
11219
 
11220
+ #: wppa-settings-autosave.php:4952 wppa-settings-autosave.php:5002
11221
+ #: wppa-settings-autosave.php:5044
11222
  msgid "Select the type of link you want, or no link at all."
11223
  msgstr ""
11224
 
11225
+ #: wppa-settings-autosave.php:4953 wppa-settings-autosave.php:5003
11226
+ #: wppa-settings-autosave.php:5045
11227
  msgid ""
11228
  "If you select the fullsize photo on its own, it will be stretched to fit, "
11229
  "regardless of that setting."
11230
  msgstr ""
11231
 
11232
+ #: wppa-settings-autosave.php:4954 wppa-settings-autosave.php:5004
11233
+ #: wppa-settings-autosave.php:5046
11234
  #, php-format
11235
  msgid ""
11236
  "Note that a page must have at least %%wppa%% or [wppa][/wppa] in its content "
11237
  "to show up the photo(s)."
11238
  msgstr ""
11239
 
11240
+ #: wppa-settings-autosave.php:4983
11241
  #, fuzzy
11242
  msgid "Auto Page"
11243
  msgstr "Automatika, záblesk"
11244
 
11245
+ #: wppa-settings-autosave.php:5000
11246
  #, fuzzy
11247
  msgid "Sphoto"
11248
  msgstr "fotka"
11249
 
11250
+ #: wppa-settings-autosave.php:5001
11251
  #, fuzzy
11252
  msgid "Single photo link."
11253
  msgstr "Zadejte název fotky"
11254
 
11255
+ #: wppa-settings-autosave.php:5042
11256
  #, fuzzy
11257
  msgid "Mphoto"
11258
  msgstr "fotka"
11259
 
11260
+ #: wppa-settings-autosave.php:5043
11261
  msgid "Media-like photo link."
11262
  msgstr ""
11263
 
11264
+ #: wppa-settings-autosave.php:5085
11265
  msgid "Slideshow fullsize link"
11266
  msgstr ""
11267
 
11268
+ #: wppa-settings-autosave.php:5086
11269
  msgid ""
11270
  "You can overrule lightbox but not big browse buttons with the photo specifc "
11271
  "link."
11272
  msgstr ""
11273
 
11274
+ #: wppa-settings-autosave.php:5099
11275
  msgid "lightbox single photos."
11276
  msgstr ""
11277
 
11278
+ #: wppa-settings-autosave.php:5101
11279
  #, fuzzy
11280
  msgid "the thumbnails."
11281
  msgstr "Prohlédnout náhledy"
11282
 
11283
+ #: wppa-settings-autosave.php:5125
11284
  msgid "Film linktype"
11285
  msgstr ""
11286
 
11287
+ #: wppa-settings-autosave.php:5126
11288
  msgid "Direct access goto image in:"
11289
  msgstr ""
11290
 
11291
+ #: wppa-settings-autosave.php:5127
11292
  msgid ""
11293
  "Select the action to be taken when the user clicks on a filmstrip image."
11294
  msgstr ""
11295
 
11296
+ #: wppa-settings-autosave.php:5132
11297
  #, fuzzy
11298
  msgid "slideshow window"
11299
  msgstr "Slideshow"
11300
 
11301
+ #: wppa-settings-autosave.php:5133
11302
  msgid "lightbox overlay"
11303
  msgstr ""
11304
 
11305
+ #: wppa-settings-autosave.php:5148
11306
  #, fuzzy
11307
  msgid "Other links"
11308
  msgstr "Ostatní"
11309
 
11310
+ #: wppa-settings-autosave.php:5150
11311
  msgid "Download Link (aka Art Monkey link)"
11312
  msgstr ""
11313
 
11314
+ #: wppa-settings-autosave.php:5151
11315
  msgid "Makes the photo name a download button."
11316
  msgstr ""
11317
 
11318
+ #: wppa-settings-autosave.php:5152
11319
  msgid "Link Photo name in slideshow to file or zip with photoname as filename."
11320
  msgstr ""
11321
 
11322
+ #: wppa-settings-autosave.php:5156 wppa-settings-autosave.php:5203
11323
  msgid "image file"
11324
  msgstr ""
11325
 
11326
+ #: wppa-settings-autosave.php:5157 wppa-settings-autosave.php:5204
11327
  msgid "zipped image"
11328
  msgstr ""
11329
 
11330
+ #: wppa-settings-autosave.php:5170
11331
  msgid "Art Monkey Source"
11332
  msgstr ""
11333
 
11334
+ #: wppa-settings-autosave.php:5171
11335
  msgid "Use Source file for art monkey link if available."
11336
  msgstr ""
11337
 
11338
+ #: wppa-settings-autosave.php:5180
11339
  msgid "Art Monkey Display"
11340
  msgstr ""
11341
 
11342
+ #: wppa-settings-autosave.php:5181
11343
  msgid "Select button or link ( text )."
11344
  msgstr ""
11345
 
11346
+ #: wppa-settings-autosave.php:5186
11347
  msgid "Textlink"
11348
  msgstr ""
11349
 
11350
+ #: wppa-settings-autosave.php:5198
11351
  msgid "Popup Download Link"
11352
  msgstr ""
11353
 
11354
+ #: wppa-settings-autosave.php:5199
11355
  msgid "Configure the download link on fullsize popups."
11356
  msgstr ""
11357
 
11358
+ #: wppa-settings-autosave.php:5200
11359
  msgid "Link fullsize popup download button to either image or zip file."
11360
  msgstr ""
11361
 
11362
+ #: wppa-settings-autosave.php:5216
11363
  msgid "Download link on lightbox"
11364
  msgstr ""
11365
 
11366
+ #: wppa-settings-autosave.php:5217
11367
  msgid "Art monkey link on lightbox photo names."
11368
  msgstr ""
11369
 
11370
+ #: wppa-settings-autosave.php:5226
11371
  #, fuzzy
11372
  msgid "Album download link"
11373
  msgstr "Administrace alb"
11374
 
11375
+ #: wppa-settings-autosave.php:5227
11376
  msgid "Place an album download link on the album covers"
11377
  msgstr ""
11378
 
11379
+ #: wppa-settings-autosave.php:5228
11380
  msgid "Creates a download zipfile containing the photos of the album"
11381
  msgstr ""
11382
 
11383
+ #: wppa-settings-autosave.php:5236
11384
  msgid "Album download Source"
11385
  msgstr ""
11386
 
11387
+ #: wppa-settings-autosave.php:5237
11388
  msgid "Use Source file for album download link if available."
11389
  msgstr ""
11390
 
11391
+ #: wppa-settings-autosave.php:5246
11392
  msgid "Tagcloud Link"
11393
  msgstr ""
11394
 
11395
+ #: wppa-settings-autosave.php:5247
11396
  msgid "Configure the link from the tags in the tag cloud."
11397
  msgstr ""
11398
 
11399
+ #: wppa-settings-autosave.php:5248
11400
  msgid "Link the tag words to ether the thumbnails or the slideshow."
11401
  msgstr ""
11402
 
11403
+ #: wppa-settings-autosave.php:5257 wppa-settings-autosave.php:5288
11404
+ #: wppa-settings-autosave.php:5383
11405
  #, fuzzy
11406
  msgid "slideshow"
11407
  msgstr "Slideshow"
11408
 
11409
+ #: wppa-settings-autosave.php:5277
11410
  msgid "Multitag Link"
11411
  msgstr ""
11412
 
11413
+ #: wppa-settings-autosave.php:5278
11414
  msgid "Configure the link from the multitag selection."
11415
  msgstr ""
11416
 
11417
+ #: wppa-settings-autosave.php:5279
11418
  msgid "Link to ether the thumbnails or the slideshow."
11419
  msgstr ""
11420
 
11421
+ #: wppa-settings-autosave.php:5308
11422
  #, fuzzy
11423
  msgid "Super View Landing"
11424
  msgstr "Super View fotky"
11425
 
11426
+ #: wppa-settings-autosave.php:5309
11427
  msgid "The landing page for the Super View widget."
11428
  msgstr ""
11429
 
11430
+ #: wppa-settings-autosave.php:5317
11431
  msgid "Defined by the visitor"
11432
  msgstr ""
11433
 
11434
+ #: wppa-settings-autosave.php:5330
11435
  #, fuzzy
11436
  msgid "Uploader Landing"
11437
  msgstr "Nahrávání selhalo"
11438
 
11439
+ #: wppa-settings-autosave.php:5331
11440
  msgid "Select the landing page for the Uploader Widget"
11441
  msgstr ""
11442
 
11443
+ #: wppa-settings-autosave.php:5351
11444
  msgid "Bestof Landing"
11445
  msgstr ""
11446
 
11447
+ #: wppa-settings-autosave.php:5352
11448
  msgid "Select the landing page for the BestOf Widget / Box"
11449
  msgstr ""
11450
 
11451
+ #: wppa-settings-autosave.php:5372
11452
  msgid "Album navigator Link"
11453
  msgstr ""
11454
 
11455
+ #: wppa-settings-autosave.php:5373
11456
  msgid "Select link type and page for the Album navigator Widget"
11457
  msgstr ""
11458
 
11459
+ #: wppa-settings-autosave.php:5401
11460
  msgid "Supersearch Landing"
11461
  msgstr ""
11462
 
11463
+ #: wppa-settings-autosave.php:5402
11464
  msgid "Select the landing page for the Supersearch Box"
11465
  msgstr ""
11466
 
11467
+ #: wppa-settings-autosave.php:5422
11468
  msgid "SM widget return"
11469
  msgstr ""
11470
 
11471
+ #: wppa-settings-autosave.php:5423
11472
  msgid "Select the return link for social media from widgets"
11473
  msgstr ""
11474
 
11475
+ #: wppa-settings-autosave.php:5424
11476
  msgid ""
11477
  "If you select Landing page, and it wont work, it may be required to set the "
11478
  "Occur to the sequence number of the landing shortcode on the page."
11479
  msgstr ""
11480
 
11481
+ #: wppa-settings-autosave.php:5425
11482
  msgid ""
11483
  "Normally it is 1, but you can try 2 etc. Always create a new shared link to "
11484
  "test a setting."
11485
  msgstr ""
11486
 
11487
+ #: wppa-settings-autosave.php:5433
11488
  #, fuzzy
11489
  msgid "Home page"
11490
  msgstr "Domů"
11491
 
11492
+ #: wppa-settings-autosave.php:5434
11493
  #, fuzzy
11494
  msgid "Landing page"
11495
  msgstr "Vyberte prosím cílovou stránku pro super view widget v Table VI-C"
11496
 
11497
+ #: wppa-settings-autosave.php:5445
11498
  msgid "Occur"
11499
  msgstr ""
11500
 
11501
+ #: wppa-settings-autosave.php:5474
11502
  msgid "Table VII:"
11503
  msgstr ""
11504
 
11505
+ #: wppa-settings-autosave.php:5474
11506
  msgid "Permissions and Restrictions:"
11507
  msgstr ""
11508
 
11509
+ #: wppa-settings-autosave.php:5475
11510
  msgid ""
11511
  "This table describes the access settings for admin and front-end activities."
11512
  msgstr ""
11513
 
11514
+ #: wppa-settings-autosave.php:5503
11515
  msgid "Role"
11516
  msgstr ""
11517
 
11518
+ #: wppa-settings-autosave.php:5512
11519
  msgid ""
11520
  "Admin settings per user role. Enabling these settings will overrule the "
11521
  "front-end settings for the specific user role"
11522
  msgstr ""
11523
 
11524
+ #: wppa-settings-autosave.php:5536
11525
  msgid "Frontend create Albums and upload Photos enabling and limiting settings"
11526
  msgstr ""
11527
 
11528
+ #: wppa-settings-autosave.php:5538
11529
  #, fuzzy
11530
  msgid "User create Albums"
11531
  msgstr "Album:"
11532
 
11533
+ #: wppa-settings-autosave.php:5539
11534
  #, fuzzy
11535
  msgid "Enable frontend album creation."
11536
  msgstr "Zadat/upravit popis fotky"
11537
 
11538
+ #: wppa-settings-autosave.php:5540
11539
  msgid "If you check this item, frontend album creation will be enabled."
11540
  msgstr ""
11541
 
11542
+ #: wppa-settings-autosave.php:5550
11543
  #, fuzzy
11544
  msgid "User edit album"
11545
  msgstr "Album:"
11546
 
11547
+ #: wppa-settings-autosave.php:5551
11548
  #, fuzzy
11549
  msgid "Enable frontent edit album name and description."
11550
  msgstr "Zadat/upravit popis fotky"
11551
 
11552
+ #: wppa-settings-autosave.php:5561
11553
  #, fuzzy
11554
  msgid "User delete Albums"
11555
  msgstr "Album:"
11556
 
11557
+ #: wppa-settings-autosave.php:5562
11558
  #, fuzzy
11559
  msgid "Enable frontend album deletion"
11560
  msgstr "Zadat/upravit popis fotky"
11561
 
11562
+ #: wppa-settings-autosave.php:5563
11563
  msgid "If you check this item, frontend album deletion will be enabled."
11564
  msgstr ""
11565
 
11566
+ #: wppa-settings-autosave.php:5573
11567
  #, fuzzy
11568
  msgid "User create Albums login"
11569
  msgstr "Album:"
11570
 
11571
+ #: wppa-settings-autosave.php:5574
11572
  msgid "Frontend album creation requires the user is logged in."
11573
  msgstr ""
11574
 
11575
+ #: wppa-settings-autosave.php:5600
11576
  #, fuzzy, php-format
11577
  msgid "Upload limit %s"
11578
  msgstr "Nahrát fotky"
11579
 
11580
+ #: wppa-settings-autosave.php:5601
11581
  msgid "Limit upload capacity for logged out users."
11582
  msgstr ""
11583
 
11584
+ #: wppa-settings-autosave.php:5602
11585
  #, php-format
11586
  msgid "Limit upload capacity for the user role %s."
11587
  msgstr ""
11588
 
11589
+ #: wppa-settings-autosave.php:5603
11590
  msgid "This setting has only effect when Table VII-B2 is unchecked."
11591
  msgstr ""
11592
 
11593
+ #: wppa-settings-autosave.php:5604
11594
  msgid ""
11595
  "This limitation only applies to frontend uploads when the same userrole does "
11596
  "not have the Upload checkbox checked in Table VII-A."
11597
  msgstr ""
11598
 
11599
+ #: wppa-settings-autosave.php:5605 wppa-settings-autosave.php:5621
11600
+ #: wppa-settings-autosave.php:7030
11601
  msgid "A value of 0 means: no limit."
11602
  msgstr ""
11603
 
11604
+ #: wppa-settings-autosave.php:5618
11605
  #, fuzzy, php-format
11606
  msgid "Album limit %s"
11607
  msgstr "Administrace alb"
11608
 
11609
+ #: wppa-settings-autosave.php:5619
11610
  #, php-format
11611
  msgid "Limit number of albums for the user role %s."
11612
  msgstr ""
11613
 
11614
+ #: wppa-settings-autosave.php:5620
11615
  msgid ""
11616
  "This limitation only applies to frontend create albums when the same "
11617
  "userrole does not have the Album admin checkbox checked in Table VII-A."
11618
  msgstr ""
11619
 
11620
+ #: wppa-settings-autosave.php:5632
11621
  #, fuzzy
11622
  msgid "Upload one only"
11623
  msgstr "Nahrát fotku"
11624
 
11625
+ #: wppa-settings-autosave.php:5633
11626
  msgid "Non admin users can upload only one photo at a time."
11627
  msgstr ""
11628
 
11629
+ #: wppa-settings-autosave.php:5643
11630
  #, fuzzy
11631
  msgid "Upload moderation"
11632
  msgstr "Nahrát fotku"
11633
 
11634
+ #: wppa-settings-autosave.php:5644
11635
  #, fuzzy
11636
  msgid "Uploaded photos need moderation."
11637
  msgstr "Toto nahrání vyžaduje úpravu"
11638
 
11639
+ #: wppa-settings-autosave.php:5645
11640
  msgid ""
11641
  "If checked, photos uploaded by users who do not have photo album admin "
11642
  "access rights need moderation."
11643
  msgstr ""
11644
 
11645
+ #: wppa-settings-autosave.php:5646
11646
  msgid ""
11647
  "Users who have photo album admin access rights can change the photo status "
11648
  "to publish or featured."
11649
  msgstr ""
11650
 
11651
+ #: wppa-settings-autosave.php:5647
11652
  msgid "You can set the album admin access rights in Table VII-A."
11653
  msgstr ""
11654
 
11655
+ #: wppa-settings-autosave.php:5656
11656
  #, fuzzy
11657
  msgid "Upload notify"
11658
  msgstr "Nahrát fotku"
11659
 
11660
+ #: wppa-settings-autosave.php:5657
11661
  msgid "Notify admin at frontend upload."
11662
  msgstr ""
11663
 
11664
+ #: wppa-settings-autosave.php:5658 wppa-settings-autosave.php:5669
11665
  msgid "If checked, admin will receive a notification by email."
11666
  msgstr ""
11667
 
11668
+ #: wppa-settings-autosave.php:5667
11669
  msgid "Upload backend notify"
11670
  msgstr ""
11671
 
11672
+ #: wppa-settings-autosave.php:5668
11673
  msgid "Notify admin at backend upload."
11674
  msgstr ""
11675
 
11676
+ #: wppa-settings-autosave.php:5678
11677
  msgid "Max size in pixels"
11678
  msgstr ""
11679
 
11680
+ #: wppa-settings-autosave.php:5679
11681
  msgid "Max size for height and width for front-end uploads."
11682
  msgstr ""
11683
 
11684
+ #: wppa-settings-autosave.php:5680
11685
  msgid "Enter the maximum size. 0 is unlimited"
11686
  msgstr ""
11687
 
11688
+ #: wppa-settings-autosave.php:5689
11689
  msgid "Home after Upload"
11690
  msgstr ""
11691
 
11692
+ #: wppa-settings-autosave.php:5690
11693
  msgid "After successfull front-end upload, go to the home page."
11694
  msgstr ""
11695
 
11696
+ #: wppa-settings-autosave.php:5700
11697
  msgid "Admin Functionality restrictions for non administrators"
11698
  msgstr ""
11699
 
11700
+ #: wppa-settings-autosave.php:5702
11701
  msgid "Alt thumb is restricted"
11702
  msgstr ""
11703
 
11704
+ #: wppa-settings-autosave.php:5703
11705
  msgid "Using <b>alt thumbsize</b> is a restricted action."
11706
  msgstr ""
11707
 
11708
+ #: wppa-settings-autosave.php:5704
11709
  msgid ""
11710
  "If checked: alt thumbsize can not be set in album admin by users not having "
11711
  "admin rights."
11712
  msgstr ""
11713
 
11714
+ #: wppa-settings-autosave.php:5713
11715
  msgid "Link is restricted"
11716
  msgstr ""
11717
 
11718
+ #: wppa-settings-autosave.php:5714
11719
  msgid "Using <b>Link to</b> is a restricted action."
11720
  msgstr ""
11721
 
11722
+ #: wppa-settings-autosave.php:5715
11723
  msgid ""
11724
  "If checked: Link to: can not be set in album admin by users not having admin "
11725
  "rights."
11726
  msgstr ""
11727
 
11728
+ #: wppa-settings-autosave.php:5724
11729
  msgid "CoverType is restricted"
11730
  msgstr ""
11731
 
11732
+ #: wppa-settings-autosave.php:5725
11733
  msgid "Changing <b>Cover Type</b> is a restricted action."
11734
  msgstr ""
11735
 
11736
+ #: wppa-settings-autosave.php:5726
11737
  msgid ""
11738
  "If checked: Cover Type: can not be set in album admin by users not having "
11739
  "admin rights."
11740
  msgstr ""
11741
 
11742
+ #: wppa-settings-autosave.php:5735
11743
  msgid "Photo order# is restricted"
11744
  msgstr ""
11745
 
11746
+ #: wppa-settings-autosave.php:5736
11747
  msgid "Changing <b>Photo sort order #</b> is a restricted action."
11748
  msgstr ""
11749
 
11750
+ #: wppa-settings-autosave.php:5737
11751
  msgid ""
11752
  "If checked: Photo sort order #: can not be set in photo admin by users not "
11753
  "having admin rights."
11754
  msgstr ""
11755
 
11756
+ #: wppa-settings-autosave.php:5746
11757
  msgid "Change source restricted"
11758
  msgstr ""
11759
 
11760
+ #: wppa-settings-autosave.php:5747
11761
  msgid "Changing the import source dir requires admin rights."
11762
  msgstr ""
11763
 
11764
+ #: wppa-settings-autosave.php:5748
11765
  msgid ""
11766
  "If checked, the imput source for importing photos and albums is restricted "
11767
  "to user role administrator."
11768
  msgstr ""
11769
 
11770
+ #: wppa-settings-autosave.php:5757
11771
  msgid "Extended status restricted"
11772
  msgstr ""
11773
 
11774
+ #: wppa-settings-autosave.php:5758
11775
  msgid "Setting status other than pending or publish requires admin rights."
11776
  msgstr ""
11777
 
11778
+ #: wppa-settings-autosave.php:5768
11779
  msgid "Photo description restricted"
11780
  msgstr ""
11781
 
11782
+ #: wppa-settings-autosave.php:5769
11783
  msgid "Edit photo description requires admin rights."
11784
  msgstr ""
11785
 
11786
+ #: wppa-settings-autosave.php:5779
11787
  msgid "Update photofiles restricted"
11788
  msgstr ""
11789
 
11790
+ #: wppa-settings-autosave.php:5780
11791
  msgid "Re-upload files requires admin rights"
11792
  msgstr ""
11793
 
11794
+ #: wppa-settings-autosave.php:5790
11795
  msgid "Miscellaneous limiting settings"
11796
  msgstr ""
11797
 
11798
+ #: wppa-settings-autosave.php:5792
11799
  msgid "Owners only"
11800
  msgstr ""
11801
 
11802
+ #: wppa-settings-autosave.php:5793
11803
  msgid "Limit edit album access to the album owners only."
11804
  msgstr ""
11805
 
11806
+ #: wppa-settings-autosave.php:5794
11807
  msgid "If checked, non-admin users can edit their own albums only."
11808
  msgstr ""
11809
 
11810
+ #: wppa-settings-autosave.php:5803
11811
  msgid "Upload Owners only"
11812
  msgstr ""
11813
 
11814
+ #: wppa-settings-autosave.php:5804
11815
  msgid "Limit uploads to the album owners only."
11816
  msgstr ""
11817
 
11818
+ #: wppa-settings-autosave.php:5805
11819
  msgid ""
11820
  "If checked, users can upload to their own own albums and --- public --- only."
11821
  msgstr ""
11822
 
11823
+ #: wppa-settings-autosave.php:5814
11824
  #, fuzzy
11825
  msgid "Uploader Edit"
11826
  msgstr "Nahrát fotku"
11827
 
11828
+ #: wppa-settings-autosave.php:5815
11829
  msgid "Allow the uploader to edit the photo info"
11830
  msgstr ""
11831
 
11832
+ #: wppa-settings-autosave.php:5816
11833
  msgid ""
11834
  "If checked, any logged in user that has upload rights and uploads an image "
11835
  "has the capability to edit the photo information."
11836
  msgstr ""
11837
 
11838
+ #: wppa-settings-autosave.php:5817
11839
  msgid "Note: This may be AFTER moderation!!"
11840
  msgstr ""
11841
 
11842
+ #: wppa-settings-autosave.php:5826
11843
  #, fuzzy
11844
  msgid "Uploader Moderate Comment"
11845
  msgstr "Administrace moderování komentářů"
11846
 
11847
+ #: wppa-settings-autosave.php:5827
11848
  msgid "The owner of the photo can moderate the photos comments."
11849
  msgstr ""
11850
 
11851
+ #: wppa-settings-autosave.php:5828
11852
  msgid "This setting requires \"Uploader edit\" to be enabled also."
11853
  msgstr ""
11854
 
11855
+ #: wppa-settings-autosave.php:5837
11856
  msgid "Upload memory check frontend"
11857
  msgstr ""
11858
 
11859
+ #: wppa-settings-autosave.php:5838 wppa-settings-autosave.php:5849
11860
  msgid "Disable uploading photos that are too large."
11861
  msgstr ""
11862
 
11863
+ #: wppa-settings-autosave.php:5839 wppa-settings-autosave.php:5850
11864
  msgid ""
11865
  "To prevent out of memory crashes during upload and possible database "
11866
  "inconsistencies, uploads can be prevented if the photos are too big."
11867
  msgstr ""
11868
 
11869
+ #: wppa-settings-autosave.php:5848
11870
  msgid "Upload memory check admin"
11871
  msgstr ""
11872
 
11873
+ #: wppa-settings-autosave.php:5859
11874
  #, fuzzy
11875
  msgid "Comment captcha"
11876
  msgstr "Komentář byl odeslán"
11877
 
11878
+ #: wppa-settings-autosave.php:5860
11879
  msgid "Use a simple calculate captcha on comments form."
11880
  msgstr ""
11881
 
11882
+ #: wppa-settings-autosave.php:5873
11883
  msgid "Spam lifetime"
11884
  msgstr ""
11885
 
11886
+ #: wppa-settings-autosave.php:5874
11887
  msgid "Delete spam comments when older than."
11888
  msgstr ""
11889
 
11890
+ #: wppa-settings-autosave.php:5877
11891
  #, fuzzy
11892
  msgid "10 minutes"
11893
  msgstr "1 minuta"
11894
 
11895
+ #: wppa-settings-autosave.php:5877
11896
  msgid "half an hour"
11897
  msgstr ""
11898
 
11899
+ #: wppa-settings-autosave.php:5877
11900
  #, fuzzy
11901
  msgid "one hour"
11902
  msgstr "1 hodina"
11903
 
11904
+ #: wppa-settings-autosave.php:5877
11905
  #, fuzzy
11906
  msgid "one day"
11907
  msgstr "1 den"
11908
 
11909
+ #: wppa-settings-autosave.php:5877
11910
  #, fuzzy
11911
  msgid "one week"
11912
  msgstr "1 týden"
11913
 
11914
+ #: wppa-settings-autosave.php:5887
11915
  msgid "Avoid duplicates"
11916
  msgstr ""
11917
 
11918
+ #: wppa-settings-autosave.php:5888
11919
  msgid "Prevent the creation of duplicate photos."
11920
  msgstr ""
11921
 
11922
+ #: wppa-settings-autosave.php:5889
11923
  msgid ""
11924
  "If checked: uploading, importing, copying or moving photos to other albums "
11925
  "will be prevented when the desitation album already contains a photo with "
11926
  "the same filename."
11927
  msgstr ""
11928
 
11929
+ #: wppa-settings-autosave.php:5898
11930
  msgid "Blacklist user"
11931
  msgstr ""
11932
 
11933
+ #: wppa-settings-autosave.php:5899 wppa-settings-autosave.php:5900
11934
  msgid "Set the status of all the users photos to 'pending'."
11935
  msgstr ""
11936
 
11937
+ #: wppa-settings-autosave.php:5901
11938
  msgid "Also inhibits further uploads."
11939
  msgstr ""
11940
 
11941
+ #: wppa-settings-autosave.php:5907
11942
  msgid "--- select a user to blacklist ---"
11943
  msgstr ""
11944
 
11945
+ #: wppa-settings-autosave.php:5917 wppa-settings-autosave.php:5922
11946
+ #: wppa-settings-autosave.php:5943 wppa-settings-autosave.php:8080
11947
+ #: wppa-settings-autosave.php:8122
11948
  msgid "The page will be reloaded after the action has taken place."
11949
  msgstr ""
11950
 
11951
+ #: wppa-settings-autosave.php:5923
11952
  msgid "User login name <b>( case sensitive! )</b>:"
11953
  msgstr ""
11954
 
11955
+ #: wppa-settings-autosave.php:5931
11956
  msgid "Unblacklist user"
11957
  msgstr ""
11958
 
11959
+ #: wppa-settings-autosave.php:5932
11960
  msgid "Set the status of all the users photos to 'publish'."
11961
  msgstr ""
11962
 
11963
+ #: wppa-settings-autosave.php:5936
11964
  msgid "--- select a user to unblacklist ---"
11965
  msgstr ""
11966
 
11967
+ #: wppa-settings-autosave.php:5951
11968
  #, fuzzy
11969
  msgid "Photo owner change"
11970
  msgstr "Foto dne"
11971
 
11972
+ #: wppa-settings-autosave.php:5952
11973
  msgid "Administrators can change photo owner"
11974
  msgstr ""
11975
 
11976
+ #: wppa-settings-autosave.php:5980
11977
  msgid "Table VIII:"
11978
  msgstr ""
11979
 
11980
+ #: wppa-settings-autosave.php:5980
11981
  msgid "Actions:"
11982
  msgstr ""
11983
 
11984
+ #: wppa-settings-autosave.php:5981
11985
  msgid "This table lists all actions that can be taken to the wppa+ system"
11986
  msgstr ""
11987
 
11988
+ #: wppa-settings-autosave.php:5991 wppa-settings-autosave.php:6571
11989
  msgid "Specification"
11990
  msgstr ""
11991
 
11992
+ #: wppa-settings-autosave.php:5992 wppa-settings-autosave.php:6572
11993
+ #: wppa-settings-autosave.php:8863 wppa-settings-autosave.php:8885
11994
  msgid "Do it!"
11995
  msgstr ""
11996
 
11997
+ #: wppa-settings-autosave.php:5994 wppa-settings-autosave.php:6574
11998
  msgid "To Go"
11999
  msgstr ""
12000
 
12001
+ #: wppa-settings-autosave.php:6002
12002
  msgid "Harmless and reverseable actions"
12003
  msgstr ""
12004
 
12005
+ #: wppa-settings-autosave.php:6004
12006
  msgid "Ignore concurrency"
12007
  msgstr ""
12008
 
12009
+ #: wppa-settings-autosave.php:6005
12010
  msgid "Ignore the prevention of concurrent actions."
12011
  msgstr ""
12012
 
12013
+ #: wppa-settings-autosave.php:6006
12014
  msgid ""
12015
  "This setting is meant to recover from deadlock situations only. Use with "
12016
  "care!"
12017
  msgstr ""
12018
 
12019
+ #: wppa-settings-autosave.php:6017
12020
  msgid "Setup"
12021
  msgstr ""
12022
 
12023
+ #: wppa-settings-autosave.php:6018
12024
  msgid "Re-initialize plugin."
12025
  msgstr ""
12026
 
12027
+ #: wppa-settings-autosave.php:6019
12028
  msgid ""
12029
  "Re-initilizes the plugin, (re)creates database tables and sets up default "
12030
  "settings and directories if required."
12031
  msgstr ""
12032
 
12033
+ #: wppa-settings-autosave.php:6020
12034
  msgid ""
12035
  "This action may be required to setup blogs in a multiblog (network) site as "
12036
  "well as in rare cases to correct initilization errors."
12037
  msgstr ""
12038
 
12039
+ #: wppa-settings-autosave.php:6031
12040
  #, fuzzy
12041
  msgid "Backup settings"
12042
  msgstr "Nastavení"
12043
 
12044
+ #: wppa-settings-autosave.php:6032
12045
  msgid "Save all settings into a backup file."
12046
  msgstr ""
12047
 
12048
+ #: wppa-settings-autosave.php:6033
12049
  msgid "Saves all the settings into a backup file"
12050
  msgstr ""
12051
 
12052
+ #: wppa-settings-autosave.php:6044
12053
  #, fuzzy
12054
  msgid "Load settings"
12055
  msgstr "Nastavení"
12056
 
12057
+ #: wppa-settings-autosave.php:6045
12058
  msgid "Restore all settings from defaults, a backup or skin file."
12059
  msgstr ""
12060
 
12061
+ #: wppa-settings-autosave.php:6046
12062
  msgid ""
12063
  "Restores all the settings from the factory supplied defaults, the backup you "
12064
  "created or from a skin file."
12065
  msgstr ""
12066
 
12067
+ #: wppa-settings-autosave.php:6052
12068
  #, fuzzy
12069
  msgid "--- set to defaults ---"
12070
  msgstr "--- smazáno ---"
12071
 
12072
+ #: wppa-settings-autosave.php:6055
12073
  msgid "--- restore backup ---"
12074
  msgstr ""
12075
 
12076
+ #: wppa-settings-autosave.php:6077
12077
  msgid "Regenerate"
12078
  msgstr ""
12079
 
12080
+ #: wppa-settings-autosave.php:6078 wppa-settings-autosave.php:6079
12081
  #, fuzzy
12082
  msgid "Regenerate all thumbnails."
12083
  msgstr "Prohlédnout náhledy"
12084
 
12085
+ #: wppa-settings-autosave.php:6082 wppa-settings-autosave.php:6186
12086
  msgid "Skip one"
12087
  msgstr ""
12088
 
12089
+ #: wppa-settings-autosave.php:6091
12090
  #, fuzzy
12091
  msgid "Rerate"
12092
  msgstr "Spravovat"
12093
 
12094
+ #: wppa-settings-autosave.php:6092
12095
  msgid "Recalculate ratings."
12096
  msgstr ""
12097
 
12098
+ #: wppa-settings-autosave.php:6093
12099
  msgid ""
12100
  "This function will recalculate all mean photo ratings from the ratings table."
12101
  msgstr ""
12102
 
12103
+ #: wppa-settings-autosave.php:6094
12104
  msgid ""
12105
  "You may need this function after the re-import of previously exported photos"
12106
  msgstr ""
12107
 
12108
+ #: wppa-settings-autosave.php:6105
12109
  #, fuzzy
12110
  msgid "Lost and found"
12111
  msgstr "Fotky nenalezeny."
12112
 
12113
+ #: wppa-settings-autosave.php:6106
12114
  msgid "Find \"lost\" photos."
12115
  msgstr ""
12116
 
12117
+ #: wppa-settings-autosave.php:6107
12118
  msgid "This function will attempt to find lost photos."
12119
  msgstr ""
12120
 
12121
+ #: wppa-settings-autosave.php:6118
12122
  msgid "Recuperate"
12123
  msgstr ""
12124
 
12125
+ #: wppa-settings-autosave.php:6120
12126
  msgid ""
12127
  "This action will attempt to find and register IPTC and EXIF data from photos "
12128
  "in the WPPA+ system."
12129
  msgstr ""
12130
 
12131
+ #: wppa-settings-autosave.php:6131
12132
  msgid "Remake Index Albums"
12133
  msgstr ""
12134
 
12135
+ #: wppa-settings-autosave.php:6132
12136
  msgid "Remakes the index database table for albums."
12137
  msgstr ""
12138
 
12139
+ #: wppa-settings-autosave.php:6144
12140
  #, fuzzy
12141
  msgid "Remake Index Photos"
12142
  msgstr "Podobné fotky"
12143
 
12144
+ #: wppa-settings-autosave.php:6145
12145
  msgid "Remakes the index database table for photos."
12146
  msgstr ""
12147
 
12148
+ #: wppa-settings-autosave.php:6163
12149
  msgid "Convert to tree"
12150
  msgstr ""
12151
 
12152
+ #: wppa-settings-autosave.php:6164
12153
  msgid "Convert filesystem to tree structure."
12154
  msgstr ""
12155
 
12156
+ #: wppa-settings-autosave.php:6167
12157
  msgid "Convert to flat"
12158
  msgstr ""
12159
 
12160
+ #: wppa-settings-autosave.php:6168
12161
  msgid "Convert filesystem to flat structure."
12162
  msgstr ""
12163
 
12164
+ #: wppa-settings-autosave.php:6170
12165
  msgid ""
12166
  "If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
12167
  "to flat first."
12168
  msgstr ""
12169
 
12170
+ #: wppa-settings-autosave.php:6182
12171
  msgid "Remake the photofiles from photo sourcefiles."
12172
  msgstr ""
12173
 
12174
+ #: wppa-settings-autosave.php:6183
12175
  msgid ""
12176
  "This action will remake the fullsize images, thumbnail images, and will "
12177
  "refresh the iptc and exif data for all photos where the source is found in "
12178
  "the corresponding album sub-directory of the source directory."
12179
  msgstr ""
12180
 
12181
+ #: wppa-settings-autosave.php:6195
12182
  msgid "Recalc sizes"
12183
  msgstr ""
12184
 
12185
+ #: wppa-settings-autosave.php:6196
12186
  msgid "Recalculate photosizes and save to db."
12187
  msgstr ""
12188
 
12189
+ #: wppa-settings-autosave.php:6208
12190
  msgid "Clearing and other irreverseable actions"
12191
  msgstr ""
12192
 
12193
+ #: wppa-settings-autosave.php:6210
12194
  #, fuzzy
12195
  msgid "Clear ratings"
12196
  msgstr "Max uploads dosiahol"
12197
 
12198
+ #: wppa-settings-autosave.php:6211
12199
  msgid "Reset all ratings."
12200
  msgstr ""
12201
 
12202
+ #: wppa-settings-autosave.php:6212
12203
  msgid "WARNING: If checked, this will clear all ratings in the system!"
12204
  msgstr ""
12205
 
12206
+ #: wppa-settings-autosave.php:6223
12207
  msgid "Clear viewcounts"
12208
  msgstr ""
12209
 
12210
+ #: wppa-settings-autosave.php:6224
12211
  msgid "Reset all viewcounts."
12212
  msgstr ""
12213
 
12214
+ #: wppa-settings-autosave.php:6225
12215
  msgid "WARNING: If checked, this will clear all viewcounts in the system!"
12216
  msgstr ""
12217
 
12218
+ #: wppa-settings-autosave.php:6236
12219
  msgid "Reset IPTC"
12220
  msgstr ""
12221
 
12222
+ #: wppa-settings-autosave.php:6237
12223
  #, fuzzy
12224
  msgid "Clear all IPTC data."
12225
  msgstr "Skrýt IPTC data"
12226
 
12227
+ #: wppa-settings-autosave.php:6238
12228
  msgid "WARNING: If checked, this will clear all IPTC data in the system!"
12229
  msgstr ""
12230
 
12231
+ #: wppa-settings-autosave.php:6249
12232
  msgid "Reset EXIF"
12233
  msgstr ""
12234
 
12235
+ #: wppa-settings-autosave.php:6250
12236
  #, fuzzy
12237
  msgid "Clear all EXIF data."
12238
  msgstr "Skrýt EXIF data"
12239
 
12240
+ #: wppa-settings-autosave.php:6251
12241
  msgid "WARNING: If checked, this will clear all EXIF data in the system!"
12242
  msgstr ""
12243
 
12244
+ #: wppa-settings-autosave.php:6262
12245
  #, fuzzy
12246
  msgid "Apply New Photodesc"
12247
  msgstr "Super View fotky"
12248
 
12249
+ #: wppa-settings-autosave.php:6263
12250
  msgid "Apply New photo description on all photos in the system."
12251
  msgstr ""
12252
 
12253
+ #: wppa-settings-autosave.php:6275
12254
  msgid "Append to photodesc"
12255
  msgstr ""
12256
 
12257
+ #: wppa-settings-autosave.php:6276
12258
  #, fuzzy
12259
  msgid "Append this text to all photo descriptions."
12260
  msgstr "Zadat/upravit popis fotky"
12261
 
12262
+ #: wppa-settings-autosave.php:6290
12263
  msgid "Remove from photodesc"
12264
  msgstr ""
12265
 
12266
+ #: wppa-settings-autosave.php:6291
12267
  #, fuzzy
12268
  msgid "Remove this text from all photo descriptions."
12269
  msgstr "Zadat/upravit popis fotky"
12270
 
12271
+ #: wppa-settings-autosave.php:6305
12272
  #, fuzzy
12273
  msgid "Remove empty albums"
12274
  msgstr "Nedávno nahrané fotky"
12275
 
12276
+ #: wppa-settings-autosave.php:6306
12277
  msgid "Removes albums that are not used."
12278
  msgstr ""
12279
 
12280
+ #: wppa-settings-autosave.php:6318
12281
  msgid "Remove file-ext"
12282
  msgstr ""
12283
 
12284
+ #: wppa-settings-autosave.php:6319
12285
  msgid "Remove possible file extension from photo name."
12286
  msgstr ""
12287
 
12288
+ #: wppa-settings-autosave.php:6320
12289
  msgid ""
12290
  "This may be required for old photos, uploaded when the option in Table IX-D3 "
12291
  "was not yet available/selected."
12292
  msgstr ""
12293
 
12294
+ #: wppa-settings-autosave.php:6331
12295
  msgid "Re-add file-ext"
12296
  msgstr ""
12297
 
12298
+ #: wppa-settings-autosave.php:6332
12299
  msgid "Revert the <i>Remove file-ext</i> action."
12300
  msgstr ""
12301
 
12302
+ #: wppa-settings-autosave.php:6344
12303
  msgid "Watermark all"
12304
  msgstr ""
12305
 
12306
+ #: wppa-settings-autosave.php:6345
12307
  msgid "Apply watermark according to current settings to all photos."
12308
  msgstr ""
12309
 
12310
+ #: wppa-settings-autosave.php:6346
12311
  msgid "See Table IX_F for the current watermark settings"
12312
  msgstr ""
12313
 
12314
+ #: wppa-settings-autosave.php:6357
12315
  #, fuzzy
12316
  msgid "Create all autopages"
12317
  msgstr "Album:"
12318
 
12319
+ #: wppa-settings-autosave.php:6358
12320
  msgid "Create all the pages to display slides individually."
12321
  msgstr ""
12322
 
12323
+ #: wppa-settings-autosave.php:6359 wppa-settings-autosave.php:6373
12324
  msgid "See also Table IV-A10."
12325
  msgstr ""
12326
 
12327
+ #: wppa-settings-autosave.php:6360
12328
  msgid ""
12329
  "Make sure you have a custom menu and the \"Automatically add new top-level "
12330
  "pages to this menu\" box UNticked!!"
12331
  msgstr ""
12332
 
12333
+ #: wppa-settings-autosave.php:6371
12334
  #, fuzzy
12335
  msgid "Delete all autopages"
12336
  msgstr "Album:"
12337
 
12338
+ #: wppa-settings-autosave.php:6372
12339
  msgid "Delete all the pages to display slides individually."
12340
  msgstr ""
12341
 
12342
+ #: wppa-settings-autosave.php:6385
12343
  msgid "Leading zeroes"
12344
  msgstr ""
12345
 
12346
+ #: wppa-settings-autosave.php:6386
12347
  msgid "If photoname numeric, add leading zeros"
12348
  msgstr ""
12349
 
12350
+ #: wppa-settings-autosave.php:6387
12351
  msgid ""
12352
  "You can extend the name with leading zeros, so alphabetic sort becomes equal "
12353
  "to numeric sort order."
12354
  msgstr ""
12355
 
12356
+ #: wppa-settings-autosave.php:6390
12357
  msgid "Total chars"
12358
  msgstr ""
12359
 
12360
+ #: wppa-settings-autosave.php:6399
12361
  msgid "Add GPX tag"
12362
  msgstr ""
12363
 
12364
+ #: wppa-settings-autosave.php:6400
12365
  msgid "Make sure photos with gpx data have a Gpx tag"
12366
  msgstr ""
12367
 
12368
+ #: wppa-settings-autosave.php:6413 wppa-settings-autosave.php:7182
12369
  msgid "Optimize files"
12370
  msgstr ""
12371
 
12372
+ #: wppa-settings-autosave.php:6414
12373
  msgid "Optimize with EWWW image optimizer"
12374
  msgstr ""
12375
 
12376
+ #: wppa-settings-autosave.php:6427
12377
  #, fuzzy
12378
  msgid "Edit tag"
12379
  msgstr "Upravit fotku"
12380
 
12381
+ #: wppa-settings-autosave.php:6428
12382
  msgid "Globally change a tagname."
12383
  msgstr ""
12384
 
12385
+ #: wppa-settings-autosave.php:6434
12386
  #, fuzzy
12387
  msgid "-select a tag-"
12388
  msgstr "Vyberte prosím album a opakujte akci"
12389
 
12390
+ #: wppa-settings-autosave.php:6440
12391
  msgid "Tag:"
12392
  msgstr ""
12393
 
12394
+ #: wppa-settings-autosave.php:6441
12395
  msgid "Change to:"
12396
  msgstr ""
12397
 
12398
+ #: wppa-settings-autosave.php:6450
12399
  msgid "Synchronize Cloudinary"
12400
  msgstr ""
12401
 
12402
+ #: wppa-settings-autosave.php:6451
12403
  msgid "Removes/adds images in the cloud."
12404
  msgstr ""
12405
 
12406
+ #: wppa-settings-autosave.php:6452
12407
  msgid "Removes old images and verifies/adds new images to Cloudinary."
12408
  msgstr ""
12409
 
12410
+ #: wppa-settings-autosave.php:6453
12411
  msgid "See Table IX-K4.7 for the configured lifetime."
12412
  msgstr ""
12413
 
12414
+ #: wppa-settings-autosave.php:6464
12415
  msgid "Fix tags"
12416
  msgstr ""
12417
 
12418
+ #: wppa-settings-autosave.php:6465
12419
  msgid "Make sure photo tags format is uptodate"
12420
  msgstr ""
12421
 
12422
+ #: wppa-settings-autosave.php:6466
12423
  msgid "Fixes tags to be conform current database rules."
12424
  msgstr ""
12425
 
12426
+ #: wppa-settings-autosave.php:6477
12427
  msgid "Fix cats"
12428
  msgstr ""
12429
 
12430
+ #: wppa-settings-autosave.php:6478
12431
  msgid "Make sure album cats format is uptodate"
12432
  msgstr ""
12433
 
12434
+ #: wppa-settings-autosave.php:6479
12435
  msgid "Fixes cats to be conform current database rules."
12436
  msgstr ""
12437
 
12438
+ #: wppa-settings-autosave.php:6505
12439
  #, fuzzy
12440
  msgid "Listings"
12441
  msgstr "Nastavení"
12442
 
12443
+ #: wppa-settings-autosave.php:6507
12444
  msgid "List Logfile"
12445
  msgstr ""
12446
 
12447
+ #: wppa-settings-autosave.php:6508
12448
  msgid "Show the content of wppa+ (error) log."
12449
  msgstr ""
12450
 
12451
+ #: wppa-settings-autosave.php:6512
12452
  msgid "Purge logfile"
12453
  msgstr ""
12454
 
12455
+ #: wppa-settings-autosave.php:6521
12456
  #, fuzzy
12457
  msgid "List Ratings"
12458
  msgstr "Hlasování: %s"
12459
 
12460
+ #: wppa-settings-autosave.php:6522
12461
  #, fuzzy
12462
  msgid "Show the most recent ratings."
12463
  msgstr "Zobrazit posledně nahrané fotky"
12464
 
12465
+ #: wppa-settings-autosave.php:6535
12466
  msgid "List Index"
12467
  msgstr ""
12468
 
12469
+ #: wppa-settings-autosave.php:6536
12470
  msgid "Show the content if the index table."
12471
  msgstr ""
12472
 
12473
+ #: wppa-settings-autosave.php:6540
12474
  msgid "Start at text:"
12475
  msgstr ""
12476
 
12477
+ #: wppa-settings-autosave.php:6550
12478
  msgid "List active sessions"
12479
  msgstr ""
12480
 
12481
+ #: wppa-settings-autosave.php:6551
12482
  msgid "Show the content of the sessions table."
12483
  msgstr ""
12484
 
12485
+ #: wppa-settings-autosave.php:6584
12486
  msgid "Table IX:"
12487
  msgstr ""
12488
 
12489
+ #: wppa-settings-autosave.php:6584
12490
  msgid "Miscellaneous:"
12491
  msgstr ""
12492
 
12493
+ #: wppa-settings-autosave.php:6585
12494
  msgid "This table lists all settings that do not fit into an other table"
12495
  msgstr ""
12496
 
12497
+ #: wppa-settings-autosave.php:6603
12498
  msgid "Internal engine related settings"
12499
  msgstr ""
12500
 
12501
+ #: wppa-settings-autosave.php:6605
12502
  msgid "WPPA+ Filter priority"
12503
  msgstr ""
12504
 
12505
+ #: wppa-settings-autosave.php:6606
12506
  msgid "Sets the priority of the wppa+ content filter."
12507
  msgstr ""
12508
 
12509
+ #: wppa-settings-autosave.php:6607 wppa-settings-autosave.php:6616
12510
  msgid ""
12511
  "If you encounter conflicts with the theme or other plugins, increasing this "
12512
  "value sometimes helps. Use with great care!"
12513
  msgstr ""
12514
 
12515
+ #: wppa-settings-autosave.php:6614
12516
  msgid "Do_shortcode priority"
12517
  msgstr ""
12518
 
12519
+ #: wppa-settings-autosave.php:6615
12520
  msgid "Sets the priority of the do_shortcode() content filter."
12521
  msgstr ""
12522
 
12523
+ #: wppa-settings-autosave.php:6623
12524
  #, fuzzy
12525
  msgid "WPPA shortcode at Filter priority"
12526
  msgstr "Priorita závěrky rychlosti AE"
12527
 
12528
+ #: wppa-settings-autosave.php:6624
12529
  msgid "Execute shortcode expansion on filter priority in posts and pages."
12530
  msgstr ""
12531
 
12532
+ #: wppa-settings-autosave.php:6625 wppa-settings-autosave.php:6634
12533
  msgid "Use to fix certain layout problems"
12534
  msgstr ""
12535
 
12536
+ #: wppa-settings-autosave.php:6632
12537
  msgid "WPPA shortcode at Filter priority widget"
12538
  msgstr ""
12539
 
12540
+ #: wppa-settings-autosave.php:6633
12541
  msgid "Execute shortcode expansion on filter priority in widgets."
12542
  msgstr ""
12543
 
12544
+ #: wppa-settings-autosave.php:6641
12545
  msgid "JPG image quality"
12546
  msgstr ""
12547
 
12548
+ #: wppa-settings-autosave.php:6642
12549
  msgid "The jpg quality when photos are downsized"
12550
  msgstr ""
12551
 
12552
+ #: wppa-settings-autosave.php:6643
12553
  msgid "The higher the number the better the quality but the larger the file"
12554
  msgstr ""
12555
 
12556
+ #: wppa-settings-autosave.php:6644
12557
  msgid "Possible values 20..100"
12558
  msgstr ""
12559
 
12560
+ #: wppa-settings-autosave.php:6651
12561
  msgid "Allow WPPA+ Debugging"
12562
  msgstr ""
12563
 
12564
+ #: wppa-settings-autosave.php:6652
12565
  msgid "Allow the use of &amp;debug=.. in urls to this site."
12566
  msgstr ""
12567
 
12568
+ #: wppa-settings-autosave.php:6653
12569
  msgid ""
12570
  "If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
12571
  "site will generate the display of special WPPA+ diagnostics, as well as php "
12572
  "warnings"
12573
  msgstr ""
12574
 
12575
+ #: wppa-settings-autosave.php:6660
12576
  msgid "Auto continue"
12577
  msgstr ""
12578
 
12579
+ #: wppa-settings-autosave.php:6661
12580
  msgid "Continue automatic after time out"
12581
  msgstr ""
12582
 
12583
+ #: wppa-settings-autosave.php:6662
12584
  msgid ""
12585
  "If checked, an attempt will be made to restart an admin process when the "
12586
  "time is out."
12587
  msgstr ""
12588
 
12589
+ #: wppa-settings-autosave.php:6670
12590
  msgid "Set max execution time here."
12591
  msgstr ""
12592
 
12593
+ #: wppa-settings-autosave.php:6671
12594
  msgid ""
12595
  "If your php config does not properly set the max execution time, you can set "
12596
  "it here. Seconds, 0 means do not change."
12597
  msgstr ""
12598
 
12599
+ #: wppa-settings-autosave.php:6672
12600
  msgid "A safe value is 45"
12601
  msgstr ""
12602
 
12603
+ #: wppa-settings-autosave.php:6679
12604
  msgid "Feed use thumb"
12605
  msgstr ""
12606
 
12607
+ #: wppa-settings-autosave.php:6680
12608
  msgid "Feeds use thumbnail pictures always."
12609
  msgstr ""
12610
 
12611
+ #: wppa-settings-autosave.php:6688
12612
  msgid "Enable <i>in-line</i> settings"
12613
  msgstr ""
12614
 
12615
+ #: wppa-settings-autosave.php:6689
12616
  msgid "Activates shortcode [wppa_set][/wppa_set]."
12617
  msgstr ""
12618
 
12619
+ #: wppa-settings-autosave.php:6690
12620
  msgid ""
12621
  "Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
12622
  msgstr ""
12623
 
12624
+ #: wppa-settings-autosave.php:6691
12625
  msgid ""
12626
  "Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
12627
  "sets the thumbnail type to vertical masonry style"
12628
  msgstr ""
12629
 
12630
+ #: wppa-settings-autosave.php:6692
12631
  msgid "Do not forget to reset with [wppa_set][/wppa_set]"
12632
  msgstr ""
12633
 
12634
+ #: wppa-settings-autosave.php:6693
12635
  msgid "Use with great care! There is no check on validity of values!"
12636
  msgstr ""
12637
 
12638
+ #: wppa-settings-autosave.php:6700
12639
  msgid "Runtime modifyable settings"
12640
  msgstr ""
12641
 
12642
+ #: wppa-settings-autosave.php:6701
12643
  msgid "The setting slugs that may be altered using [wppa_set] shortcode."
12644
  msgstr ""
12645
 
12646
+ #: wppa-settings-autosave.php:6709
12647
+ #, fuzzy
12648
+ msgid "Use translations"
12649
+ msgstr "Žádné funkce blesku"
12650
+
12651
+ #: wppa-settings-autosave.php:6710
12652
+ msgid "If UNticked, wppa is in english always."
12653
+ msgstr ""
12654
+
12655
+ #: wppa-settings-autosave.php:6711
12656
+ msgid "Used to bypass the loading of any language file for wppa."
12657
+ msgstr ""
12658
+
12659
+ #: wppa-settings-autosave.php:6719
12660
  msgid "WPPA+ Admin related miscellaneous settings"
12661
  msgstr ""
12662
 
12663
+ #: wppa-settings-autosave.php:6721
12664
  msgid "Allow HTML"
12665
  msgstr ""
12666
 
12667
+ #: wppa-settings-autosave.php:6722
12668
  msgid "Allow HTML in album and photo descriptions."
12669
  msgstr ""
12670
 
12671
+ #: wppa-settings-autosave.php:6723
12672
  msgid ""
12673
  "If checked: html is allowed. WARNING: No checks on syntax, it is your own "
12674
  "responsability to close tags properly!"
12675
  msgstr ""
12676
 
12677
+ #: wppa-settings-autosave.php:6730
12678
  msgid "Check tag balance"
12679
  msgstr ""
12680
 
12681
+ #: wppa-settings-autosave.php:6731
12682
  msgid "Check if the HTML tags are properly closed: \"balanced\"."
12683
  msgstr ""
12684
 
12685
+ #: wppa-settings-autosave.php:6732
12686
  msgid ""
12687
  "If the HTML tags in an album or a photo description are not in balance, the "
12688
  "description is not updated, an errormessage is displayed"
12689
  msgstr ""
12690
 
12691
+ #: wppa-settings-autosave.php:6739
12692
  msgid "Use WP editor"
12693
  msgstr ""
12694
 
12695
+ #: wppa-settings-autosave.php:6740
12696
  msgid "Use the wp editor for multiline text fields."
12697
  msgstr ""
12698
 
12699
+ #: wppa-settings-autosave.php:6748
12700
  msgid "Album sel hierarchic"
12701
  msgstr ""
12702
 
12703
+ #: wppa-settings-autosave.php:6749
12704
  msgid "Show albums with (grand)parents in selection lists."
12705
  msgstr ""
12706
 
12707
+ #: wppa-settings-autosave.php:6757
12708
  msgid "Page sel hierarchic"
12709
  msgstr ""
12710
 
12711
+ #: wppa-settings-autosave.php:6758
12712
  msgid "Show pages with (grand)parents in selection lists."
12713
  msgstr ""
12714
 
12715
+ #: wppa-settings-autosave.php:6767
12716
  msgid "Photo admin page size"
12717
  msgstr ""
12718
 
12719
+ #: wppa-settings-autosave.php:6768
12720
  msgid ""
12721
  "The number of photos per page on the <br/>Edit Album -> Manage photos and "
12722
  "Edit Photos admin pages."
12723
  msgstr ""
12724
 
12725
+ #: wppa-settings-autosave.php:6778
12726
  #, fuzzy
12727
  msgid "Comment admin page size"
12728
  msgstr "Komentáře"
12729
 
12730
+ #: wppa-settings-autosave.php:6779
12731
  msgid "The number of comments per page on the Comments admin pages."
12732
  msgstr ""
12733
 
12734
+ #: wppa-settings-autosave.php:6789
12735
  msgid "Geo info edit"
12736
  msgstr ""
12737
 
12738
+ #: wppa-settings-autosave.php:6790
12739
  msgid "Lattitude and longitude may be edited in photo admin."
12740
  msgstr ""
12741
 
12742
+ #: wppa-settings-autosave.php:6798
12743
  msgid "Admin bar menu admin"
12744
  msgstr ""
12745
 
12746
+ #: wppa-settings-autosave.php:6799
12747
  msgid "Show menu on admin bar on admin pages."
12748
  msgstr ""
12749
 
12750
+ #: wppa-settings-autosave.php:6807
12751
  msgid "Admin bar menu frontend"
12752
  msgstr ""
12753
 
12754
+ #: wppa-settings-autosave.php:6808
12755
  msgid "Show menu on admin bar on frontend pages."
12756
  msgstr ""
12757
 
12758
+ #: wppa-settings-autosave.php:6816
12759
  msgid "Add shortcode to posts"
12760
  msgstr ""
12761
 
12762
+ #: wppa-settings-autosave.php:6817
12763
  msgid "Add a shortcode to the end of all posts."
12764
  msgstr ""
12765
 
12766
+ #: wppa-settings-autosave.php:6825
12767
  msgid "Shortcode to add"
12768
  msgstr ""
12769
 
12770
+ #: wppa-settings-autosave.php:6826
12771
  msgid "The shortcode to be added to the posts."
12772
  msgstr ""
12773
 
12774
+ #: wppa-settings-autosave.php:6834
12775
  msgid "We use Scripts"
12776
  msgstr ""
12777
 
12778
+ #: wppa-settings-autosave.php:6835
12779
  msgid "Use scripting syntax in shortcode generator."
12780
  msgstr ""
12781
 
12782
+ #: wppa-settings-autosave.php:6836
12783
  msgid ""
12784
  "This setting defines if the shortcode generator outputs old style script "
12785
  "tags or new style shortcodes."
12786
  msgstr ""
12787
 
12788
+ #: wppa-settings-autosave.php:6844
12789
  msgid "Import page prieviews"
12790
  msgstr ""
12791
 
12792
+ #: wppa-settings-autosave.php:6845
12793
  msgid "Show thumbnail previews in import admin page."
12794
  msgstr ""
12795
 
12796
+ #: wppa-settings-autosave.php:6853
12797
  #, fuzzy
12798
  msgid "Upload audiostub"
12799
  msgstr "Nahrát fotku"
12800
 
12801
+ #: wppa-settings-autosave.php:6854
12802
  msgid "Upload a new audio stub file"
12803
  msgstr ""
12804
 
12805
+ #: wppa-settings-autosave.php:6858
12806
  #, fuzzy
12807
  msgid "Upload audio stub image"
12808
  msgstr "Nahraný súbor nie je obraz"
12809
 
12810
+ #: wppa-settings-autosave.php:6863
12811
  msgid "Confirm create"
12812
  msgstr ""
12813
 
12814
+ #: wppa-settings-autosave.php:6864
12815
  msgid "Display confirmation dialog before creating album."
12816
  msgstr ""
12817
 
12818
+ #: wppa-settings-autosave.php:6873
12819
  msgid "SEO related settings"
12820
  msgstr ""
12821
 
12822
+ #: wppa-settings-autosave.php:6875
12823
  msgid "Meta on page"
12824
  msgstr ""
12825
 
12826
+ #: wppa-settings-autosave.php:6876
12827
  msgid "Meta tags for photos on the page."
12828
  msgstr ""
12829
 
12830
+ #: wppa-settings-autosave.php:6877
12831
  msgid ""
12832
  "If checked, the header of the page will contain metatags that refer to "
12833
  "featured photos on the page in the page context."
12834
  msgstr ""
12835
 
12836
+ #: wppa-settings-autosave.php:6884
12837
  msgid "Meta all"
12838
  msgstr ""
12839
 
12840
+ #: wppa-settings-autosave.php:6885
12841
  #, fuzzy
12842
  msgid "Meta tags for all featured photos."
12843
  msgstr "Zobrazit nejlépe hodnocené fotky"
12844
 
12845
+ #: wppa-settings-autosave.php:6886
12846
  msgid ""
12847
  "If checked, the header of the page will contain metatags that refer to all "
12848
  "featured photo files."
12849
  msgstr ""
12850
 
12851
+ #: wppa-settings-autosave.php:6887
12852
  msgid ""
12853
  "If you have many featured photos, you might wish to uncheck this item to "
12854
  "reduce the size of the page header."
12855
  msgstr ""
12856
 
12857
+ #: wppa-settings-autosave.php:6894
12858
  msgid "Add og meta tags"
12859
  msgstr ""
12860
 
12861
+ #: wppa-settings-autosave.php:6895
12862
  msgid "Add og meta tags to the page header."
12863
  msgstr ""
12864
 
12865
+ #: wppa-settings-autosave.php:6898
12866
  msgid ""
12867
  "Turning this off may affect the functionality of social media items in the "
12868
  "share box that rely on open graph tags information."
12869
  msgstr ""
12870
 
12871
+ #: wppa-settings-autosave.php:6904
12872
  msgid "Image Alt attribute type"
12873
  msgstr ""
12874
 
12875
+ #: wppa-settings-autosave.php:6905
12876
  msgid "Select kind of HTML alt=\"\" content for images."
12877
  msgstr ""
12878
 
12879
+ #: wppa-settings-autosave.php:6908
12880
  #, fuzzy
12881
  msgid "photo name"
12882
  msgstr "Zadejte název fotky"
12883
 
12884
+ #: wppa-settings-autosave.php:6908
12885
  msgid "name without file-ext"
12886
  msgstr ""
12887
 
12888
+ #: wppa-settings-autosave.php:6908
12889
  #, fuzzy
12890
  msgid "set in album admin"
12891
  msgstr "Vyberte prosím album a opakujte akci"
12892
 
12893
+ #: wppa-settings-autosave.php:6915
12894
  msgid "New Album and New Photo related miscellaneous settings"
12895
  msgstr ""
12896
 
12897
+ #: wppa-settings-autosave.php:6918
12898
  msgid "Maximum time an album is indicated as New!"
12899
  msgstr ""
12900
 
12901
+ #: wppa-settings-autosave.php:6922 wppa-settings-autosave.php:6963
12902
  #, fuzzy
12903
  msgid "One hour"
12904
  msgstr "1 hodina"
12905
 
12906
+ #: wppa-settings-autosave.php:6923 wppa-settings-autosave.php:6964
12907
+ #: wppa-settings-autosave.php:7982
12908
  #, fuzzy
12909
  msgid "One day"
12910
  msgstr "1 den"
12911
 
12912
+ #: wppa-settings-autosave.php:6924 wppa-settings-autosave.php:6965
12913
  #, fuzzy
12914
  msgid "Two days"
12915
  msgstr "dní"
12916
 
12917
+ #: wppa-settings-autosave.php:6925 wppa-settings-autosave.php:6966
12918
  msgid "Three days"
12919
  msgstr ""
12920
 
12921
+ #: wppa-settings-autosave.php:6926 wppa-settings-autosave.php:6967
12922
  #, fuzzy
12923
  msgid "Four days"
12924
  msgstr "dní"
12925
 
12926
+ #: wppa-settings-autosave.php:6927 wppa-settings-autosave.php:6968
12927
  #, fuzzy
12928
  msgid "Five days"
12929
  msgstr "dní"
12930
 
12931
+ #: wppa-settings-autosave.php:6928 wppa-settings-autosave.php:6969
12932
  #, fuzzy
12933
  msgid "Six days"
12934
  msgstr "dní"
12935
 
12936
+ #: wppa-settings-autosave.php:6929 wppa-settings-autosave.php:6970
12937
+ #: wppa-settings-autosave.php:7983
12938
  #, fuzzy
12939
  msgid "One week"
12940
  msgstr "1 týden"
12941
 
12942
+ #: wppa-settings-autosave.php:6930 wppa-settings-autosave.php:6971
12943
  msgid "Eight days"
12944
  msgstr ""
12945
 
12946
+ #: wppa-settings-autosave.php:6931 wppa-settings-autosave.php:6972
12947
  #, fuzzy
12948
  msgid "Nine days"
12949
  msgstr "dní"
12950
 
12951
+ #: wppa-settings-autosave.php:6932 wppa-settings-autosave.php:6973
12952
  #, fuzzy
12953
  msgid "Ten days"
12954
  msgstr "dní"
12955
 
12956
+ #: wppa-settings-autosave.php:6933 wppa-settings-autosave.php:6974
12957
  #, fuzzy
12958
  msgid "Two weeks"
12959
  msgstr "týdnů"
12960
 
12961
+ #: wppa-settings-autosave.php:6934 wppa-settings-autosave.php:6975
12962
  #, fuzzy
12963
  msgid "Three weeks"
12964
  msgstr "týdnů"
12965
 
12966
+ #: wppa-settings-autosave.php:6935 wppa-settings-autosave.php:6976
12967
  #, fuzzy
12968
  msgid "Four weeks"
12969
  msgstr "týdnů"
12970
 
12971
+ #: wppa-settings-autosave.php:6936 wppa-settings-autosave.php:6977
12972
+ #: wppa-settings-autosave.php:7984
12973
  #, fuzzy
12974
  msgid "One month"
12975
  msgstr "1 měsíc"
12976
 
12977
+ #: wppa-settings-autosave.php:6958
12978
  #, fuzzy
12979
  msgid "New Photo"
12980
  msgstr "Další fotku"
12981
 
12982
+ #: wppa-settings-autosave.php:6959
12983
  msgid "Maximum time a photo is indicated as New!"
12984
  msgstr ""
12985
 
12986
+ #: wppa-settings-autosave.php:6999
12987
  msgid "Limit LasTen New"
12988
  msgstr ""
12989
 
12990
+ #: wppa-settings-autosave.php:7000
12991
  msgid "Limits the LasTen photos to those that are 'New'."
12992
  msgstr ""
12993
 
12994
+ #: wppa-settings-autosave.php:7001
12995
  msgid ""
12996
  "If you tick this box and configured the new photo time, you can even limit "
12997
  "the number by the setting in Table I-F7, or set that number to an unlikely "
12998
  "high value."
12999
  msgstr ""
13000
 
13001
+ #: wppa-settings-autosave.php:7008
13002
  msgid "Apply Newphoto desc"
13003
  msgstr ""
13004
 
13005
+ #: wppa-settings-autosave.php:7009
13006
  msgid "Give each new photo a standard description."
13007
  msgstr ""
13008
 
13009
+ #: wppa-settings-autosave.php:7010
13010
  msgid ""
13011
  "If checked, each new photo will get the description (template) as specified "
13012
  "in the next item."
13013
  msgstr ""
13014
 
13015
+ #: wppa-settings-autosave.php:7017
13016
  #, fuzzy
13017
  msgid "New photo desc"
13018
  msgstr "Nová fotka nahrána: %s"
13019
 
13020
+ #: wppa-settings-autosave.php:7018
13021
  msgid "The description (template) to add to a new photo."
13022
  msgstr ""
13023
 
13024
+ #: wppa-settings-autosave.php:7019
13025
  #, fuzzy
13026
  msgid "Enter the default description."
13027
  msgstr "Zadat/upravit popis fotky"
13028
 
13029
+ #: wppa-settings-autosave.php:7020
13030
  msgid "If you use html, please check item A-1 of this table."
13031
  msgstr ""
13032
 
13033
+ #: wppa-settings-autosave.php:7028
13034
  msgid "New albums are created with this upload limit."
13035
  msgstr ""
13036
 
13037
+ #: wppa-settings-autosave.php:7029
13038
  msgid ""
13039
  "Administrators can change the limit settings in the \"Edit Album Information"
13040
  "\" admin page."
13041
  msgstr ""
13042
 
13043
+ #: wppa-settings-autosave.php:7046
13044
  msgid "Default parent"
13045
  msgstr ""
13046
 
13047
+ #: wppa-settings-autosave.php:7047
13048
  msgid "The parent album of new albums."
13049
  msgstr ""
13050
 
13051
+ #: wppa-settings-autosave.php:7064
13052
  msgid "Default parent always"
13053
  msgstr ""
13054
 
13055
+ #: wppa-settings-autosave.php:7065
13056
  msgid ""
13057
  "The parent album of new albums is always the default, except for "
13058
  "administrators."
13059
  msgstr ""
13060
 
13061
+ #: wppa-settings-autosave.php:7073
13062
  msgid "Show album full"
13063
  msgstr ""
13064
 
13065
+ #: wppa-settings-autosave.php:7074
13066
  msgid "Show the Upload limit reached message if appropriate."
13067
  msgstr ""
13068
 
13069
+ #: wppa-settings-autosave.php:7082
13070
  #, fuzzy
13071
  msgid "Grant an album"
13072
  msgstr "Album:"
13073
 
13074
+ #: wppa-settings-autosave.php:7083
13075
  msgid "Create an album for each user logging in."
13076
  msgstr ""
13077
 
13078
+ #: wppa-settings-autosave.php:7091
13079
  #, fuzzy
13080
  msgid "Grant album name"
13081
  msgstr "Zadejte název fotky"
13082
 
13083
+ #: wppa-settings-autosave.php:7092
13084
  msgid "The name to be used for the album."
13085
  msgstr ""
13086
 
13087
+ #: wppa-settings-autosave.php:7095
13088
  #, fuzzy
13089
  msgid "Login name"
13090
  msgstr "Vaše jméno:"
13091
 
13092
+ #: wppa-settings-autosave.php:7095 wppa-upldr-widget.php:184
13093
  msgid "Display name"
13094
  msgstr ""
13095
 
13096
+ #: wppa-settings-autosave.php:7095
13097
  msgid "Id"
13098
  msgstr ""
13099
 
13100
+ #: wppa-settings-autosave.php:7095
13101
  msgid "Firstname Lastname"
13102
  msgstr ""
13103
 
13104
+ #: wppa-settings-autosave.php:7102
13105
  msgid "Grant parent"
13106
  msgstr ""
13107
 
13108
+ #: wppa-settings-autosave.php:7103
13109
  msgid "The parent album of the auto created albums."
13110
  msgstr ""
13111
 
13112
+ #: wppa-settings-autosave.php:7120
13113
  #, fuzzy
13114
  msgid "Max user albums"
13115
  msgstr "Různá alba"
13116
 
13117
+ #: wppa-settings-autosave.php:7121
13118
  msgid "The max number of albums a user can create."
13119
  msgstr ""
13120
 
13121
+ #: wppa-settings-autosave.php:7122
13122
  msgid ""
13123
  "The maximum number of albums a user can create when he is not admin and "
13124
  "owner only is active"
13125
  msgstr ""
13126
 
13127
+ #: wppa-settings-autosave.php:7123
13128
  msgid "A number of 0 means No limit"
13129
  msgstr ""
13130
 
13131
+ #: wppa-settings-autosave.php:7130
13132
  #, fuzzy
13133
  msgid "Default photo name"
13134
  msgstr "Přednastavené fotoalbum pro"
13135
 
13136
+ #: wppa-settings-autosave.php:7131
13137
  msgid "Select the way the name of a new uploaded photo should be determined."
13138
  msgstr ""
13139
 
13140
+ #: wppa-settings-autosave.php:7134
13141
  msgid "Filename"
13142
  msgstr ""
13143
 
13144
+ #: wppa-settings-autosave.php:7135
13145
  msgid "Filename without extension"
13146
  msgstr ""
13147
 
13148
+ #: wppa-settings-autosave.php:7136
13149
  msgid "IPTC Tag 2#005 (Graphic name)"
13150
  msgstr ""
13151
 
13152
+ #: wppa-settings-autosave.php:7137
13153
  msgid "IPTC Tag 2#120 (Caption)"
13154
  msgstr ""
13155
 
13156
+ #: wppa-settings-autosave.php:7138
13157
  msgid "No name at all"
13158
  msgstr ""
13159
 
13160
+ #: wppa-settings-autosave.php:7146
13161
  #, fuzzy
13162
  msgid "Default coverphoto"
13163
  msgstr "Zobrazit úvodní fotku"
13164
 
13165
+ #: wppa-settings-autosave.php:7147
13166
  msgid "Name of photofile to become cover image"
13167
  msgstr ""
13168
 
13169
+ #: wppa-settings-autosave.php:7148
13170
  msgid ""
13171
  "If you name a photofile like this setting before upload, it will become the "
13172
  "coverimage automaticly."
13173
  msgstr ""
13174
 
13175
+ #: wppa-settings-autosave.php:7155
13176
  msgid "Copy Timestamp"
13177
  msgstr ""
13178
 
13179
+ #: wppa-settings-autosave.php:7156
13180
  msgid "Copy timestamp when copying photo."
13181
  msgstr ""
13182
 
13183
+ #: wppa-settings-autosave.php:7157
13184
  msgid "If checked, the copied photo is not \"new\""
13185
  msgstr ""
13186
 
13187
+ #: wppa-settings-autosave.php:7164
13188
  msgid "Copy Owner"
13189
  msgstr ""
13190
 
13191
+ #: wppa-settings-autosave.php:7165
13192
  msgid "Copy the owner when copying photo."
13193
  msgstr ""
13194
 
13195
+ #: wppa-settings-autosave.php:7173
13196
  msgid "FE Albums public"
13197
  msgstr ""
13198
 
13199
+ #: wppa-settings-autosave.php:7174
13200
  msgid "Frontend created albums are --- public ---"
13201
  msgstr ""
13202
 
13203
+ #: wppa-settings-autosave.php:7183
13204
  msgid "Optimize image files right after upload/import"
13205
  msgstr ""
13206
 
13207
+ #: wppa-settings-autosave.php:7184
13208
  msgid "This option requires the plugin EWWW Image Optimizer to be activated"
13209
  msgstr ""
13210
 
13211
+ #: wppa-settings-autosave.php:7191
13212
  #, fuzzy
13213
  msgid "Default album linktype"
13214
  msgstr "Přednastavené fotoalbum pro"
13215
 
13216
+ #: wppa-settings-autosave.php:7192
13217
  msgid "The album linktype for new albums"
13218
  msgstr ""
13219
 
13220
+ #: wppa-settings-autosave.php:7211
13221
  msgid "Search Albums and Photos related settings"
13222
  msgstr ""
13223
 
13224
+ #: wppa-settings-autosave.php:7213
13225
  #, fuzzy
13226
  msgid "Search page"
13227
  msgstr "Výsledek vyhledávání fotek"
13228
 
13229
+ #: wppa-settings-autosave.php:7214
13230
  msgid "Display the search results on page."
13231
  msgstr ""
13232
 
13233
+ #: wppa-settings-autosave.php:7215
13234
  #, php-format
13235
  msgid ""
13236
  "Select the page to be used to display search results. The page MUST contain "
13237
  "%%wppa%% or [wppa][/wppa]."
13238
  msgstr ""
13239
 
13240
+ #: wppa-settings-autosave.php:7216
13241
  msgid "You may give it the title \"Search results\" or something alike."
13242
  msgstr ""
13243
 
13244
+ #: wppa-settings-autosave.php:7217
13245
  msgid ""
13246
  "Or you ou may use the standard page on which you display the generic album."
13247
  msgstr ""
13248
 
13249
+ #: wppa-settings-autosave.php:7250
13250
  msgid "Exclude separate"
13251
  msgstr ""
13252
 
13253
+ #: wppa-settings-autosave.php:7251
13254
  #, fuzzy
13255
  msgid "Do not search 'separate' albums."
13256
  msgstr "Nelze vložit do databáze."
13257
 
13258
+ #: wppa-settings-autosave.php:7252
13259
  msgid ""
13260
  "When checked, albums (and photos in them) that have the parent set to --- "
13261
  "separate --- will be excluded from being searched."
13262
  msgstr ""
13263
 
13264
+ #: wppa-settings-autosave.php:7259
13265
  msgid "Include tags"
13266
  msgstr ""
13267
 
13268
+ #: wppa-settings-autosave.php:7260
13269
  msgid "Do also search the photo tags."
13270
  msgstr ""
13271
 
13272
+ #: wppa-settings-autosave.php:7261
13273
  msgid "When checked, the tags of the photo will also be searched."
13274
  msgstr ""
13275
 
13276
+ #: wppa-settings-autosave.php:7268
13277
  msgid "Include categories"
13278
  msgstr ""
13279
 
13280
+ #: wppa-settings-autosave.php:7269
13281
  msgid "Do also search the album categories."
13282
  msgstr ""
13283
 
13284
+ #: wppa-settings-autosave.php:7270
13285
  msgid "When checked, the categories of the album will also be searched."
13286
  msgstr ""
13287
 
13288
+ #: wppa-settings-autosave.php:7277
13289
  #, fuzzy
13290
  msgid "Include comments"
13291
  msgstr "%d komentáře/ů"
13292
 
13293
+ #: wppa-settings-autosave.php:7278
13294
  msgid "Do also search the comments on photos."
13295
  msgstr ""
13296
 
13297
+ #: wppa-settings-autosave.php:7279
13298
  msgid "When checked, the comments of the photos will also be searched."
13299
  msgstr ""
13300
 
13301
+ #: wppa-settings-autosave.php:7286
13302
  #, fuzzy
13303
  msgid "Photos only"
13304
  msgstr "Foto"
13305
 
13306
+ #: wppa-settings-autosave.php:7287
13307
  msgid "Search for photos only."
13308
  msgstr ""
13309
 
13310
+ #: wppa-settings-autosave.php:7288
13311
  msgid "When checked, only photos will be searched for."
13312
  msgstr ""
13313
 
13314
+ #: wppa-settings-autosave.php:7303
13315
  msgid "Max albums found"
13316
  msgstr ""
13317
 
13318
+ #: wppa-settings-autosave.php:7304
13319
  msgid "The maximum number of albums to be displayed."
13320
  msgstr ""
13321
 
13322
+ #: wppa-settings-autosave.php:7312
13323
  #, fuzzy
13324
  msgid "Max photos found"
13325
  msgstr "Žádná podobná fotka."
13326
 
13327
+ #: wppa-settings-autosave.php:7313
13328
  msgid "The maximum number of photos to be displayed."
13329
  msgstr ""
13330
 
13331
+ #: wppa-settings-autosave.php:7321
13332
  msgid "Tags OR only"
13333
  msgstr ""
13334
 
13335
+ #: wppa-settings-autosave.php:7322
13336
  msgid "No and / or buttons"
13337
  msgstr ""
13338
 
13339
+ #: wppa-settings-autosave.php:7323
13340
  msgid ""
13341
  "Hide the and/or radiobuttons and do the or method in the multitag widget and "
13342
  "shortcode."
13343
  msgstr ""
13344
 
13345
+ #: wppa-settings-autosave.php:7330
13346
  msgid "Floating searchtoken"
13347
  msgstr ""
13348
 
13349
+ #: wppa-settings-autosave.php:7331
13350
  msgid "A match need not start at the first char."
13351
  msgstr ""
13352
 
13353
+ #: wppa-settings-autosave.php:7332
13354
  msgid ""
13355
  "A match is found while searching also when the entered token is somewhere in "
13356
  "the middle of a word."
13357
  msgstr ""
13358
 
13359
+ #: wppa-settings-autosave.php:7333
13360
  msgid "This works in indexed search only!"
13361
  msgstr ""
13362
 
13363
+ #: wppa-settings-autosave.php:7340
13364
  #, fuzzy
13365
  msgid "Search results display"
13366
  msgstr "Výsledek vyhledávání fotek"
13367
 
13368
+ #: wppa-settings-autosave.php:7341
13369
  msgid "Select the way the search results should be displayed."
13370
  msgstr ""
13371
 
13372
+ #: wppa-settings-autosave.php:7342
13373
  msgid ""
13374
  "If you select anything different from \"Albums and thumbnails\", \"Photos "
13375
  "only\" is assumed (Table IX-E6)."
13376
  msgstr ""
13377
 
13378
+ #: wppa-settings-autosave.php:7344
13379
  #, fuzzy
13380
  msgid "Albums and thumbnails"
13381
  msgstr "Prohlédnout náhledy"
13382
 
13383
+ #: wppa-settings-autosave.php:7344
13384
  #, fuzzy
13385
  msgid "Slideonly slideshow"
13386
  msgstr "Slideshow"
13387
 
13388
+ #: wppa-settings-autosave.php:7351
13389
  msgid "Name max length"
13390
  msgstr ""
13391
 
13392
+ #: wppa-settings-autosave.php:7352
13393
  msgid "Max length of displayed photonames in supersearch selectionlist"
13394
  msgstr ""
13395
 
13396
+ #: wppa-settings-autosave.php:7353 wppa-settings-autosave.php:7362
13397
  msgid ""
13398
  "To limit the length of the selectionlist, enter the number of characters to "
13399
  "show."
13400
  msgstr ""
13401
 
13402
+ #: wppa-settings-autosave.php:7360
13403
  msgid "Text max length"
13404
  msgstr ""
13405
 
13406
+ #: wppa-settings-autosave.php:7361
13407
  msgid "Max length of displayed photo text in supersearch selectionlist"
13408
  msgstr ""
13409
 
13410
+ #: wppa-settings-autosave.php:7369
13411
+ #, fuzzy
13412
+ msgid "Search toptext"
13413
+ msgstr "Výsledek vyhledávání fotek"
13414
+
13415
+ #: wppa-settings-autosave.php:7370
13416
+ msgid "The text at the top of the search box."
13417
+ msgstr ""
13418
+
13419
+ #: wppa-settings-autosave.php:7371
13420
+ msgid "May contain unfiltered HTML."
13421
+ msgstr ""
13422
+
13423
+ #: wppa-settings-autosave.php:7378
13424
+ #, fuzzy
13425
+ msgid "Section search text"
13426
+ msgstr "Výsledek vyhledávání fotek"
13427
+
13428
+ #: wppa-settings-autosave.php:7379 wppa-settings-autosave.php:7388
13429
+ msgid "The labeltext at the checkbox."
13430
+ msgstr ""
13431
+
13432
+ #: wppa-settings-autosave.php:7387
13433
+ #, fuzzy
13434
+ msgid "Results search text"
13435
+ msgstr "Vyberte prosím album a opakujte akci"
13436
+
13437
+ #: wppa-settings-autosave.php:7397
13438
  msgid "Watermark related settings"
13439
  msgstr ""
13440
 
13441
+ #: wppa-settings-autosave.php:7400
13442
  msgid "Enable the application of watermarks."
13443
  msgstr ""
13444
 
13445
+ #: wppa-settings-autosave.php:7401
13446
  msgid "If checked, photos can be watermarked during upload / import."
13447
  msgstr ""
13448
 
13449
+ #: wppa-settings-autosave.php:7410
13450
  #, fuzzy
13451
  msgid "Watermark file"
13452
  msgstr "Použít soubor s vodoznakem:"
13453
 
13454
+ #: wppa-settings-autosave.php:7411
13455
  msgid "The default watermarkfile to be used."
13456
  msgstr ""
13457
 
13458
+ #: wppa-settings-autosave.php:7412
13459
  msgid "Watermark files are of type png and reside in"
13460
  msgstr ""
13461
 
13462
+ #: wppa-settings-autosave.php:7413
13463
  msgid ""
13464
  "A suitable watermarkfile typically consists of a transparent background and "
13465
  "a black text or drawing."
13466
  msgstr ""
13467
 
13468
+ #: wppa-settings-autosave.php:7415
13469
  msgid ""
13470
  "You may also select one of the textual watermark types at the bottom of the "
13471
  "selection list."
13472
  msgstr ""
13473
 
13474
+ #: wppa-settings-autosave.php:7419
13475
  #, fuzzy
13476
  msgid "position:"
13477
  msgstr "Pozice:"
13478
 
13479
+ #: wppa-settings-autosave.php:7425
13480
  #, fuzzy
13481
  msgid "Upload watermark"
13482
  msgstr "Použít soubor s vodoznakem:"
13483
 
13484
+ #: wppa-settings-autosave.php:7426
13485
  #, fuzzy
13486
  msgid "Upload a new watermark file"
13487
  msgstr "Použít soubor s vodoznakem:"
13488
 
13489
+ #: wppa-settings-autosave.php:7430
13490
  #, fuzzy
13491
  msgid "Upload watermark image"
13492
  msgstr "Použít soubor s vodoznakem:"
13493
 
13494
+ #: wppa-settings-autosave.php:7435
13495
  msgid "Watermark opacity image"
13496
  msgstr ""
13497
 
13498
+ #: wppa-settings-autosave.php:7436
13499
  msgid "You can set the intensity of image watermarks here."
13500
  msgstr ""
13501
 
13502
+ #: wppa-settings-autosave.php:7437 wppa-settings-autosave.php:7522
13503
  msgid ""
13504
  "The higher the number, the intenser the watermark. Value must be > 0 and <= "
13505
  "100."
13506
  msgstr ""
13507
 
13508
+ #: wppa-settings-autosave.php:7444
13509
  #, fuzzy
13510
  msgid "Textual watermark style"
13511
  msgstr "Použít soubor s vodoznakem:"
13512
 
13513
+ #: wppa-settings-autosave.php:7445
13514
  msgid "The way the textual watermarks look like"
13515
  msgstr ""
13516
 
13517
+ #: wppa-settings-autosave.php:7449
13518
  msgid "TV subtitle style"
13519
  msgstr ""
13520
 
13521
+ #: wppa-settings-autosave.php:7449
13522
  msgid "White text on black background"
13523
  msgstr ""
13524
 
13525
+ #: wppa-settings-autosave.php:7449
13526
  msgid "Black text on white background"
13527
  msgstr ""
13528
 
13529
+ #: wppa-settings-autosave.php:7449
13530
  msgid "Reverse TV style (Utopia)"
13531
  msgstr ""
13532
 
13533
+ #: wppa-settings-autosave.php:7449
13534
  msgid "White on transparent background"
13535
  msgstr ""
13536
 
13537
+ #: wppa-settings-autosave.php:7449
13538
  msgid "Black on transparent background"
13539
  msgstr ""
13540
 
13541
+ #: wppa-settings-autosave.php:7459
13542
  msgid "Predefined watermark text"
13543
  msgstr ""
13544
 
13545
+ #: wppa-settings-autosave.php:7460
13546
  msgid "The text to use when --- pre-defined --- is selected."
13547
  msgstr ""
13548
 
13549
+ #: wppa-settings-autosave.php:7461
13550
  msgid "You may use the following keywords:"
13551
  msgstr ""
13552
 
13553
+ #: wppa-settings-autosave.php:7462
13554
  msgid "w#site, w#owner, w#name, w#filename"
13555
  msgstr ""
13556
 
13557
+ #: wppa-settings-autosave.php:7469
13558
  #, fuzzy
13559
  msgid "Textual watermark font"
13560
  msgstr "Použít soubor s vodoznakem:"
13561
 
13562
+ #: wppa-settings-autosave.php:7470
13563
  msgid "The font to use with textusl watermarks."
13564
  msgstr ""
13565
 
13566
+ #: wppa-settings-autosave.php:7471
13567
  msgid "Except for the system font, are font files of type ttf and reside in"
13568
  msgstr ""
13569
 
13570
+ #: wppa-settings-autosave.php:7499
13571
  #, fuzzy
13572
  msgid "Textual watermark font size"
13573
  msgstr "Použít soubor s vodoznakem:"
13574
 
13575
+ #: wppa-settings-autosave.php:7500
13576
  msgid "You can set the size of the truetype fonts only."
13577
  msgstr ""
13578
 
13579
+ #: wppa-settings-autosave.php:7501
13580
  msgid ""
13581
  "System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
13582
  "value > 5 will be treated as 5."
13583
  msgstr ""
13584
 
13585
+ #: wppa-settings-autosave.php:7502
13586
  msgid ""
13587
  "Truetype fonts can have any positive integer size, if your PHPs GD version "
13588
  "is 1, in pixels, in GD2 in points."
13589
  msgstr ""
13590
 
13591
+ #: wppa-settings-autosave.php:7503
13592
  msgid "It is unclear howmany pixels a point is..."
13593
  msgstr ""
13594
 
13595
+ #: wppa-settings-autosave.php:7510
13596
  #, fuzzy
13597
  msgid "Upload watermark font"
13598
  msgstr "Použít soubor s vodoznakem:"
13599
 
13600
+ #: wppa-settings-autosave.php:7511
13601
  #, fuzzy
13602
  msgid "Upload a new watermark font file"
13603
  msgstr "Použít soubor s vodoznakem:"
13604
 
13605
+ #: wppa-settings-autosave.php:7512
13606
  msgid ""
13607
  "Upload truetype fonts (.ttf) only, and test if they work on your server "
13608
  "platform."
13609
  msgstr ""
13610
 
13611
+ #: wppa-settings-autosave.php:7515
13612
  #, fuzzy
13613
  msgid "Upload TrueType font"
13614
  msgstr "Nahrát fotku"
13615
 
13616
+ #: wppa-settings-autosave.php:7520
13617
  msgid "Watermark opacity text"
13618
  msgstr ""
13619
 
13620
+ #: wppa-settings-autosave.php:7521
13621
  msgid "You can set the intensity of a text watermarks here."
13622
  msgstr ""
13623
 
13624
+ #: wppa-settings-autosave.php:7530
13625
  msgid "A real life preview. To update: refresh the page."
13626
  msgstr ""
13627
 
13628
+ #: wppa-settings-autosave.php:7541
13629
  #, fuzzy
13630
  msgid "Watermark thumbnails"
13631
  msgstr "Prohlédnout náhledy"
13632
 
13633
+ #: wppa-settings-autosave.php:7542
13634
  msgid "Watermark also the thumbnail image files."
13635
  msgstr ""
13636
 
13637
+ #: wppa-settings-autosave.php:7550
13638
  msgid "Slideshow elements sequence order settings"
13639
  msgstr ""
13640
 
13641
+ #: wppa-settings-autosave.php:7556 wppa-settings-autosave.php:7602
13642
  #, fuzzy
13643
  msgid "StartStop"
13644
  msgstr "Spustit"
13645
 
13646
+ #: wppa-settings-autosave.php:7557 wppa-settings-autosave.php:7603
13647
  msgid "SlideFrame"
13648
  msgstr ""
13649
 
13650
+ #: wppa-settings-autosave.php:7559
13651
  msgid "Desc"
13652
  msgstr ""
13653
 
13654
+ #: wppa-settings-autosave.php:7562 wppa-settings-autosave.php:7607
13655
  msgid "FilmStrip"
13656
  msgstr ""
13657
 
13658
+ #: wppa-settings-autosave.php:7563 wppa-settings-autosave.php:7608
13659
  msgid "Browsebar"
13660
  msgstr ""
13661
 
13662
+ #: wppa-settings-autosave.php:7565 wppa-settings-autosave.php:7610
13663
  #, fuzzy
13664
  msgid "IPTC data"
13665
  msgstr "Žádná IPTC data"
13666
 
13667
+ #: wppa-settings-autosave.php:7566 wppa-settings-autosave.php:7611
13668
  #, fuzzy
13669
  msgid "EXIF data"
13670
  msgstr "Žádná EXIF data"
13671
 
13672
+ #: wppa-settings-autosave.php:7567 wppa-settings-autosave.php:7612
13673
  #, fuzzy
13674
  msgid "Share box"
13675
  msgstr "Sdílet %s na Facebooku"
13676
 
13677
+ #: wppa-settings-autosave.php:7569 wppa-settings-autosave.php:7614
13678
  msgid "Enabled"
13679
  msgstr ""
13680
 
13681
+ #: wppa-settings-autosave.php:7570 wppa-settings-autosave.php:7615
13682
  msgid "Disabled"
13683
  msgstr ""
13684
 
13685
+ #: wppa-settings-autosave.php:7572 wppa-settings-autosave.php:7617
13686
  msgid "Start/Stop & Slower/Faster navigation bar"
13687
  msgstr ""
13688
 
13689
+ #: wppa-settings-autosave.php:7573 wppa-settings-autosave.php:7618
13690
  msgid "The Slide Frame"
13691
  msgstr ""
13692
 
13693
+ #: wppa-settings-autosave.php:7573 wppa-settings-autosave.php:7618
13694
  msgid "( Always )"
13695
  msgstr ""
13696
 
13697
+ #: wppa-settings-autosave.php:7574
13698
  #, fuzzy
13699
  msgid "Photo Name Box"
13700
  msgstr "Foto dne"
13701
 
13702
+ #: wppa-settings-autosave.php:7575
13703
  msgid "Photo Description Box"
13704
  msgstr ""
13705
 
13706
+ #: wppa-settings-autosave.php:7576 wppa-settings-autosave.php:7620
13707
  msgid "Custom Box"
13708
  msgstr ""
13709
 
13710
+ #: wppa-settings-autosave.php:7577 wppa-settings-autosave.php:7621
13711
  #, fuzzy
13712
  msgid "Rating Bar"
13713
  msgstr "Hlasování: %s"
13714
 
13715
+ #: wppa-settings-autosave.php:7578 wppa-settings-autosave.php:7622
13716
  msgid "Film Strip with embedded Start/Stop and Goto functionality"
13717
  msgstr ""
13718
 
13719
+ #: wppa-settings-autosave.php:7579 wppa-settings-autosave.php:7623
13720
  msgid "Browse Bar with Photo X of Y counter"
13721
  msgstr ""
13722
 
13723
+ #: wppa-settings-autosave.php:7580 wppa-settings-autosave.php:7624
13724
  #, fuzzy
13725
  msgid "Comments Box"
13726
  msgstr "Komentáře"
13727
 
13728
+ #: wppa-settings-autosave.php:7581 wppa-settings-autosave.php:7625
13729
  msgid "IPTC box"
13730
  msgstr ""
13731
 
13732
+ #: wppa-settings-autosave.php:7582 wppa-settings-autosave.php:7626
13733
  msgid "EXIF box"
13734
  msgstr ""
13735
 
13736
+ #: wppa-settings-autosave.php:7583 wppa-settings-autosave.php:7627
13737
  #, fuzzy
13738
  msgid "Social media share box"
13739
  msgstr "Vyberte prosím cílovou stránku pro super view widget v Table VI-C"
13740
 
13741
+ #: wppa-settings-autosave.php:7589 wppa-settings-autosave.php:7633
13742
  msgid "Move Up"
13743
  msgstr ""
13744
 
13745
+ #: wppa-settings-autosave.php:7604
13746
  msgid "NameDesc"
13747
  msgstr ""
13748
 
13749
+ #: wppa-settings-autosave.php:7619
13750
  msgid "Photo Name & Description Box"
13751
  msgstr ""
13752
 
13753
+ #: wppa-settings-autosave.php:7643
13754
  msgid "Swap Namedesc"
13755
  msgstr ""
13756
 
13757
+ #: wppa-settings-autosave.php:7644
13758
  msgid "Swap the order sequence of name and description"
13759
  msgstr ""
13760
 
13761
+ #: wppa-settings-autosave.php:7652
13762
  msgid "Split Name and Desc"
13763
  msgstr ""
13764
 
13765
+ #: wppa-settings-autosave.php:7653
13766
  msgid "Put Name and Description in separate boxes"
13767
  msgstr ""
13768
 
13769
+ #: wppa-settings-autosave.php:7656
13770
  msgid "Please reload this page after the green checkmark appears!"
13771
  msgstr ""
13772
 
13773
+ #: wppa-settings-autosave.php:7661
13774
  msgid "Source file management and other upload/import settings and actions."
13775
  msgstr ""
13776
 
13777
+ #: wppa-settings-autosave.php:7663
13778
  msgid "Keep sourcefiles admin"
13779
  msgstr ""
13780
 
13781
+ #: wppa-settings-autosave.php:7664
13782
  msgid "Keep the original uploaded and imported photo files."
13783
  msgstr ""
13784
 
13785
+ #: wppa-settings-autosave.php:7665 wppa-settings-autosave.php:7675
13786
  msgid ""
13787
  "The files will be kept in a separate directory with subdirectories for each "
13788
  "album"
13789
  msgstr ""
13790
 
13791
+ #: wppa-settings-autosave.php:7666 wppa-settings-autosave.php:7676
13792
  msgid ""
13793
  "These files can be used to update the photos used in displaying in wppa+ and "
13794
  "optionally for downloading original, un-downsized images."
13795
  msgstr ""
13796
 
13797
+ #: wppa-settings-autosave.php:7673
13798
  msgid "Keep sourcefiles frontend"
13799
  msgstr ""
13800
 
13801
+ #: wppa-settings-autosave.php:7674
13802
  #, fuzzy
13803
  msgid "Keep the original frontend uploaded photo files."
13804
  msgstr "Zobrazit posledně nahrané fotky"
13805
 
13806
+ #: wppa-settings-autosave.php:7683
13807
  msgid "Source directory"
13808
  msgstr ""
13809
 
13810
+ #: wppa-settings-autosave.php:7684
13811
  msgid "The path to the directory where the original photofiles will be saved."
13812
  msgstr ""
13813
 
13814
+ #: wppa-settings-autosave.php:7685
13815
  msgid "You may change the directory path, but it can not be an url."
13816
  msgstr ""
13817
 
13818
+ #: wppa-settings-autosave.php:7686
13819
  msgid ""
13820
  "The parent of the directory that you enter here must exist and be writable."
13821
  msgstr ""
13822
 
13823
+ #: wppa-settings-autosave.php:7687
13824
  msgid "The directory itsself will be created if it does not exist yet."
13825
  msgstr ""
13826
 
13827
+ #: wppa-settings-autosave.php:7694
13828
  msgid "Keep sync"
13829
  msgstr ""
13830
 
13831
+ #: wppa-settings-autosave.php:7695
13832
  msgid "Keep source synchronously with wppa system."
13833
  msgstr ""
13834
 
13835
+ #: wppa-settings-autosave.php:7696
13836
  msgid ""
13837
  "If checked, photos that are deleted from wppa, will also be removed from the "
13838
  "sourcefiles."
13839
  msgstr ""
13840
 
13841
+ #: wppa-settings-autosave.php:7697
13842
  msgid ""
13843
  "Also, copying or moving photos to different albums, will also copy/move the "
13844
  "sourcefiles."
13845
  msgstr ""
13846
 
13847
+ #: wppa-settings-autosave.php:7704
13848
  msgid "Remake add"
13849
  msgstr ""
13850
 
13851
+ #: wppa-settings-autosave.php:7705
13852
  msgid "Photos will be added from the source pool"
13853
  msgstr ""
13854
 
13855
+ #: wppa-settings-autosave.php:7706
13856
  msgid ""
13857
  "If checked: If photo files are found in the source directory that do not "
13858
  "exist in the corresponding album, they will be added to the album."
13859
  msgstr ""
13860
 
13861
+ #: wppa-settings-autosave.php:7713
13862
  #, fuzzy
13863
  msgid "Save IPTC data"
13864
  msgstr "Skrýt IPTC data"
13865
 
13866
+ #: wppa-settings-autosave.php:7714
13867
  msgid "Store the iptc data from the photo into the iptc db table"
13868
  msgstr ""
13869
 
13870
+ #: wppa-settings-autosave.php:7715
13871
  msgid ""
13872
  "You will need this if you enabled the display of iptc data in Table II-B17 "
13873
  "or if you use it in the photo descriptions."
13874
  msgstr ""
13875
 
13876
+ #: wppa-settings-autosave.php:7722
13877
  #, fuzzy
13878
  msgid "Save EXIF data"
13879
  msgstr "Skrýt EXIF data"
13880
 
13881
+ #: wppa-settings-autosave.php:7723
13882
  msgid "Store the exif data from the photo into the exif db table"
13883
  msgstr ""
13884
 
13885
+ #: wppa-settings-autosave.php:7724
13886
  msgid ""
13887
  "You will need this if you enabled the display of exif data in Table II-B18 "
13888
  "or if you use it in the photo descriptions."
13889
  msgstr ""
13890
 
13891
+ #: wppa-settings-autosave.php:7731
13892
  msgid "Max EXIF tag array size"
13893
  msgstr ""
13894
 
13895
+ #: wppa-settings-autosave.php:7732
13896
  msgid "Truncate array tags to ..."
13897
  msgstr ""
13898
 
13899
+ #: wppa-settings-autosave.php:7733
13900
  msgid "A value of 0 disables this feature"
13901
  msgstr ""
13902
 
13903
+ #: wppa-settings-autosave.php:7735
13904
  #, fuzzy
13905
  msgid "elements"
13906
  msgstr "Komentáře"
13907
 
13908
+ #: wppa-settings-autosave.php:7740
13909
  msgid "Import Create page"
13910
  msgstr ""
13911
 
13912
+ #: wppa-settings-autosave.php:7741
13913
  msgid "Create wp page when a directory to album is imported."
13914
  msgstr ""
13915
 
13916
+ #: wppa-settings-autosave.php:7742
13917
  msgid ""
13918
  "As soon as an album is created when a directory is imported, a wp page is "
13919
  "made that displays the album content."
13920
  msgstr ""
13921
 
13922
+ #: wppa-settings-autosave.php:7750
13923
  msgid "Page content"
13924
  msgstr ""
13925
 
13926
+ #: wppa-settings-autosave.php:7751
13927
  msgid "The content of the page. Must contain <b>w#album</b>"
13928
  msgstr ""
13929
 
13930
+ #: wppa-settings-autosave.php:7752
13931
  msgid ""
13932
  "The content of the page. Note: it must contain w#album. This will be "
13933
  "replaced by the album number in the generated shortcode."
13934
  msgstr ""
13935
 
13936
+ #: wppa-settings-autosave.php:7760
13937
  msgid "Page type"
13938
  msgstr ""
13939
 
13940
+ #: wppa-settings-autosave.php:7761
13941
  msgid "Select the type of page to create."
13942
  msgstr ""
13943
 
13944
+ #: wppa-settings-autosave.php:7765
13945
  #, fuzzy
13946
  msgid "Post"
13947
  msgstr "Příspěvek:"
13948
 
13949
+ #: wppa-settings-autosave.php:7772
13950
  msgid "Page status"
13951
  msgstr ""
13952
 
13953
+ #: wppa-settings-autosave.php:7773
13954
  msgid "Select the initial status of the page."
13955
  msgstr ""
13956
 
13957
+ #: wppa-settings-autosave.php:7777
13958
  #, fuzzy
13959
  msgid "Published"
13960
  msgstr "Nepublikováno"
13961
 
13962
+ #: wppa-settings-autosave.php:7777
13963
  msgid "Draft"
13964
  msgstr ""
13965
 
13966
+ #: wppa-settings-autosave.php:7785
13967
  msgid "Permalink root"
13968
  msgstr ""
13969
 
13970
+ #: wppa-settings-autosave.php:7786
13971
  msgid "The name of the root for the photofile ermalink structure."
13972
  msgstr ""
13973
 
13974
+ #: wppa-settings-autosave.php:7787
13975
  msgid ""
13976
  "Choose a convenient name like \"albums\" or so; this will be the name of a "
13977
  "folder inside .../wp-content/. Make sure you choose a unique name"
13978
  msgstr ""
13979
 
13980
+ #: wppa-settings-autosave.php:7795
13981
  msgid "Other plugins related settings"
13982
  msgstr ""
13983
 
13984
+ #: wppa-settings-autosave.php:7797
13985
  msgid "Foreign shortcodes general"
13986
  msgstr ""
13987
 
13988
+ #: wppa-settings-autosave.php:7798
13989
  msgid "Enable foreign shortcodes in album names, albums desc and photo names"
13990
  msgstr ""
13991
 
13992
+ #: wppa-settings-autosave.php:7806
13993
  msgid "Foreign shortcodes fullsize"
13994
  msgstr ""
13995
 
13996
+ #: wppa-settings-autosave.php:7807
13997
  msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
13998
  msgstr ""
13999
 
14000
+ #: wppa-settings-autosave.php:7808 wppa-settings-autosave.php:7819
14001
  msgid ""
14002
  "When checked, you can use shortcodes from other plugins in the description "
14003
  "of photos."
14004
  msgstr ""
14005
 
14006
+ #: wppa-settings-autosave.php:7809
14007
  msgid "The shortcodes will be expanded in the descriptions of fullsize images."
14008
  msgstr ""
14009
 
14010
+ #: wppa-settings-autosave.php:7810 wppa-settings-autosave.php:7821
14011
  msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
14012
  msgstr ""
14013
 
14014
+ #: wppa-settings-autosave.php:7817
14015
  #, fuzzy
14016
  msgid "Foreign shortcodes thumbnails"
14017
  msgstr "Prohlédnout náhledy"
14018
 
14019
+ #: wppa-settings-autosave.php:7818
14020
  msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
14021
  msgstr ""
14022
 
14023
+ #: wppa-settings-autosave.php:7820
14024
  msgid ""
14025
  "The shortcodes will be expanded in the descriptions of thumbnail images."
14026
  msgstr ""
14027
 
14028
+ #: wppa-settings-autosave.php:7828
14029
  msgid "Lightbox keyname"
14030
  msgstr ""
14031
 
14032
+ #: wppa-settings-autosave.php:7829
14033
  msgid "The identifier of lightbox."
14034
  msgstr ""
14035
 
14036
+ #: wppa-settings-autosave.php:7830
14037
  msgid ""
14038
  "If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
14039
  "lbox-id here."
14040
  msgstr ""
14041
 
14042
+ #: wppa-settings-autosave.php:7837
14043
  msgid "myCRED / Cube Points: Comment"
14044
  msgstr ""
14045
 
14046
+ #: wppa-settings-autosave.php:7838
14047
  #, fuzzy
14048
  msgid "Number of points for a comment"
14049
  msgstr "Musíte se <a href=&quot;\"%s\"&quot;>přihlásit</a> k napsání komentáře"
14050
 
14051
+ #: wppa-settings-autosave.php:7839 wppa-settings-autosave.php:7848
14052
+ #: wppa-settings-autosave.php:7857
14053
  msgid "This setting requires the plugin myCRED or Cube Points"
14054
  msgstr ""
14055
 
14056
+ #: wppa-settings-autosave.php:7841
14057
  #, fuzzy
14058
  msgid "points per comment"
14059
  msgstr "Váš komentář:"
14060
 
14061
+ #: wppa-settings-autosave.php:7846
14062
  msgid "myCRED / Cube Points: Rating"
14063
  msgstr ""
14064
 
14065
+ #: wppa-settings-autosave.php:7847
14066
  msgid "Number of points for a rating vote"
14067
  msgstr ""
14068
 
14069
+ #: wppa-settings-autosave.php:7850
14070
  msgid "points per vote"
14071
  msgstr ""
14072
 
14073
+ #: wppa-settings-autosave.php:7855
14074
  msgid "myCRED / Cube Points: Upload"
14075
  msgstr ""
14076
 
14077
+ #: wppa-settings-autosave.php:7856
14078
  msgid "Number of points for a successfull frontend upload"
14079
  msgstr ""
14080
 
14081
+ #: wppa-settings-autosave.php:7859
14082
  #, fuzzy
14083
  msgid "points per upload"
14084
  msgstr "Fotky nahrány "
14085
 
14086
+ #: wppa-settings-autosave.php:7864
14087
  msgid "Use SCABN"
14088
  msgstr ""
14089
 
14090
+ #: wppa-settings-autosave.php:7865
14091
  msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
14092
  msgstr ""
14093
 
14094
+ #: wppa-settings-autosave.php:7866
14095
  msgid ""
14096
  "If checked, the shortcode to use for the \"add to cart\" button in photo "
14097
  "descriptions is [cart ...]"
14098
  msgstr ""
14099
 
14100
+ #: wppa-settings-autosave.php:7867
14101
  msgid ""
14102
  "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
14103
  msgstr ""
14104
 
14105
+ #: wppa-settings-autosave.php:7868
14106
  msgid "The shortcode for the check-out page is still [scabn]"
14107
  msgstr ""
14108
 
14109
+ #: wppa-settings-autosave.php:7869
14110
  msgid ""
14111
  "The arguments are the same, the defaults are: name = photoname, price = 0.01."
14112
  msgstr ""
14113
 
14114
+ #: wppa-settings-autosave.php:7870
14115
  msgid ""
14116
  "Supplying the price should be sufficient; supply a name only when it differs "
14117
  "from the photo name."
14118
  msgstr ""
14119
 
14120
+ #: wppa-settings-autosave.php:7871
14121
  msgid "This shortcode handler will also work with Ajax enabled."
14122
  msgstr ""
14123
 
14124
+ #: wppa-settings-autosave.php:7872
14125
  msgid ""
14126
  "Using this interface makes sure that the item urls and callback action urls "
14127
  "are correct."
14128
  msgstr ""
14129
 
14130
+ #: wppa-settings-autosave.php:7879
14131
  msgid "Use CM Tooltip Glossary"
14132
  msgstr ""
14133
 
14134
+ #: wppa-settings-autosave.php:7880
14135
  msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
14136
  msgstr ""
14137
 
14138
+ #: wppa-settings-autosave.php:7881
14139
  msgid ""
14140
  "You MUST set Table IV-A13: Defer javascript, also if you do not want this "
14141
  "plugin to act on album and photo descriptions!"
14142
  msgstr ""
14143
 
14144
+ #: wppa-settings-autosave.php:7889
14145
  msgid "External services related settings and actions."
14146
  msgstr ""
14147
 
14148
+ #: wppa-settings-autosave.php:7891
14149
  msgid "QR Code widget size"
14150
  msgstr ""
14151
 
14152
+ #: wppa-settings-autosave.php:7892
14153
  msgid "The size of the QR code display."
14154
  msgstr ""
14155
 
14156
+ #: wppa-settings-autosave.php:7900
14157
  msgid "QR color"
14158
  msgstr ""
14159
 
14160
+ #: wppa-settings-autosave.php:7901
14161
  msgid "The display color of the qr code (dark)"
14162
  msgstr ""
14163
 
14164
+ #: wppa-settings-autosave.php:7902
14165
  msgid "This color MUST be given in hexadecimal format!"
14166
  msgstr ""
14167
 
14168
+ #: wppa-settings-autosave.php:7909
14169
  msgid "QR background color"
14170
  msgstr ""
14171
 
14172
+ #: wppa-settings-autosave.php:7910
14173
  msgid "The background color of the qr code (light)"
14174
  msgstr ""
14175
 
14176
+ #: wppa-settings-autosave.php:7918
14177
  msgid "CDN Service"
14178
  msgstr ""
14179
 
14180
+ #: wppa-settings-autosave.php:7919
14181
  msgid "Select a CDN Service you want to use."
14182
  msgstr ""
14183
 
14184
+ #: wppa-settings-autosave.php:7922
14185
  msgid "Cloudinary in maintenance mode"
14186
  msgstr ""
14187
 
14188
+ #: wppa-settings-autosave.php:7932
14189
  #, fuzzy
14190
  msgid "Cloud name"
14191
  msgstr "Vaše jméno:"
14192
 
14193
+ #: wppa-settings-autosave.php:7941
14194
  msgid "API key"
14195
  msgstr ""
14196
 
14197
+ #: wppa-settings-autosave.php:7950
14198
  msgid "API secret"
14199
  msgstr ""
14200
 
14201
+ #: wppa-settings-autosave.php:7959
14202
  #, fuzzy
14203
  msgid "Delete all"
14204
  msgstr "Album:"
14205
 
14206
+ #: wppa-settings-autosave.php:7960
14207
  msgid "Deletes them all !!!"
14208
  msgstr ""
14209
 
14210
+ #: wppa-settings-autosave.php:7968
14211
  msgid "Delete derived images"
14212
  msgstr ""
14213
 
14214
+ #: wppa-settings-autosave.php:7969
14215
  msgid "Deletes all derived images !!!"
14216
  msgstr ""
14217
 
14218
+ #: wppa-settings-autosave.php:7977
14219
  msgid "Max lifetime"
14220
  msgstr ""
14221
 
14222
+ #: wppa-settings-autosave.php:7978
14223
  msgid "Old images from local server, new images from Cloudinary."
14224
  msgstr ""
14225
 
14226
+ #: wppa-settings-autosave.php:7979
14227
  msgid ""
14228
  "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
14229
  msgstr ""
14230
 
14231
+ #: wppa-settings-autosave.php:7981
14232
  msgid "Forever"
14233
  msgstr ""
14234
 
14235
+ #: wppa-settings-autosave.php:7985
14236
  #, fuzzy
14237
  msgid "Two months"
14238
  msgstr "měsíců"
14239
 
14240
+ #: wppa-settings-autosave.php:7986
14241
  #, fuzzy
14242
  msgid "Three months"
14243
  msgstr "měsíců"
14244
 
14245
+ #: wppa-settings-autosave.php:7987
14246
  #, fuzzy
14247
  msgid "Six months"
14248
  msgstr "měsíců"
14249
 
14250
+ #: wppa-settings-autosave.php:7988
14251
  #, fuzzy
14252
  msgid "Nine months"
14253
  msgstr "měsíců"
14254
 
14255
+ #: wppa-settings-autosave.php:7989
14256
  #, fuzzy
14257
  msgid "One year"
14258
  msgstr "1 rok"
14259
 
14260
+ #: wppa-settings-autosave.php:7990
14261
  #, fuzzy
14262
  msgid "18 months"
14263
  msgstr "1 měsíc"
14264
 
14265
+ #: wppa-settings-autosave.php:7991
14266
  #, fuzzy
14267
  msgid "Two years"
14268
  msgstr "let"
14269
 
14270
+ #: wppa-settings-autosave.php:8011
14271
  msgid "Cloudinary usage"
14272
  msgstr ""
14273
 
14274
+ #: wppa-settings-autosave.php:8047
14275
  msgid "Cloudinary usage data not available"
14276
  msgstr ""
14277
 
14278
+ #: wppa-settings-autosave.php:8051
14279
  msgid "Cloudinary routines not installed."
14280
  msgstr ""
14281
 
14282
+ #: wppa-settings-autosave.php:8062
14283
  msgid "Cloudinary"
14284
  msgstr ""
14285
 
14286
+ #: wppa-settings-autosave.php:8063
14287
  msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
14288
  msgstr ""
14289
 
14290
+ #: wppa-settings-autosave.php:8072
14291
  msgid "GPX Implementation"
14292
  msgstr ""
14293
 
14294
+ #: wppa-settings-autosave.php:8073
14295
  msgid "The way the maps are produced."
14296
  msgstr ""
14297
 
14298
+ #: wppa-settings-autosave.php:8074
14299
  msgid "Select the way the maps are produced."
14300
  msgstr ""
14301
 
14302
+ #: wppa-settings-autosave.php:8075
14303
  msgid ""
14304
  "When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
14305
  msgstr ""
14306
 
14307
+ #: wppa-settings-autosave.php:8076
14308
  msgid ""
14309
  "When using WPPA+ Embedded code, you can use Ajax, but there are less display "
14310
  "options."
14311
  msgstr ""
14312
 
14313
+ #: wppa-settings-autosave.php:8078
14314
  msgid "WPPA+ Embedded code"
14315
  msgstr ""
14316
 
14317
+ #: wppa-settings-autosave.php:8078
14318
  msgid "Google maps GPX viewer plugin"
14319
  msgstr ""
14320
 
14321
+ #: wppa-settings-autosave.php:8086
14322
  msgid "Map height"
14323
  msgstr ""
14324
 
14325
+ #: wppa-settings-autosave.php:8087
14326
  msgid "The height of the map display."
14327
  msgstr ""
14328
 
14329
+ #: wppa-settings-autosave.php:8095
14330
  msgid "Google maps API key"
14331
  msgstr ""
14332
 
14333
+ #: wppa-settings-autosave.php:8096
14334
  msgid "Enter your Google maps api key here if you have one."
14335
  msgstr ""
14336
 
14337
+ #: wppa-settings-autosave.php:8104
14338
  msgid "GPX Shortcode"
14339
  msgstr ""
14340
 
14341
+ #: wppa-settings-autosave.php:8105
14342
  msgid "The shortcode to be used for the gpx feature."
14343
  msgstr ""
14344
 
14345
+ #: wppa-settings-autosave.php:8106
14346
  msgid ""
14347
  "Enter / modify the shortcode to be generated for the gpx plugin. It must "
14348
  "contain w#lat and w#lon as placeholders for the lattitude and longitude."
14349
  msgstr ""
14350
 
14351
+ #: wppa-settings-autosave.php:8107
14352
  msgid "This item is required for using Google maps GPX viewer plugin only"
14353
  msgstr ""
14354
 
14355
+ #: wppa-settings-autosave.php:8114
14356
  msgid "Fotomoto"
14357
  msgstr ""
14358
 
14359
+ #: wppa-settings-autosave.php:8115
14360
  msgid "Yes, we use Fotomoto on this site. Read the help text!"
14361
  msgstr ""
14362
 
14363
+ #: wppa-settings-autosave.php:8116
14364
  msgid "In order to function properly:"
14365
  msgstr ""
14366
 
14367
+ #: wppa-settings-autosave.php:8117
14368
  msgid "1. Get yourself a Fotomoto account."
14369
  msgstr ""
14370
 
14371
+ #: wppa-settings-autosave.php:8118
14372
  msgid ""
14373
  "2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
14374
  "the \"Use API Mode:\" checkbox."
14375
  msgstr ""
14376
 
14377
+ #: wppa-settings-autosave.php:8119
14378
  msgid "Note: Do NOT Disable the Custom box in Table II-B14."
14379
  msgstr ""
14380
 
14381
+ #: wppa-settings-autosave.php:8120
14382
  msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
14383
  msgstr ""
14384
 
14385
+ #: wppa-settings-autosave.php:8128
14386
  msgid "Fotomoto fontsize"
14387
  msgstr ""
14388
 
14389
+ #: wppa-settings-autosave.php:8129
14390
  msgid "Fontsize for the Fotomoto toolbar."
14391
  msgstr ""
14392
 
14393
+ #: wppa-settings-autosave.php:8130
14394
  msgid ""
14395
  "If you set it here, it overrules a possible setting for font-size in ."
14396
  "FotomotoToolbarClass on the Fotomoto dashboard."
14397
  msgstr ""
14398
 
14399
+ #: wppa-settings-autosave.php:8138
14400
  msgid "Hide toolbar on running slideshows"
14401
  msgstr ""
14402
 
14403
+ #: wppa-settings-autosave.php:8139
14404
  msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
14405
  msgstr ""
14406
 
14407
+ #: wppa-settings-autosave.php:8146
14408
  msgid "Fotomoto minwidth"
14409
  msgstr ""
14410
 
14411
+ #: wppa-settings-autosave.php:8147
14412
  msgid "Minimum width to display Fotomoto toolbar."
14413
  msgstr ""
14414
 
14415
+ #: wppa-settings-autosave.php:8148
14416
  msgid ""
14417
  "The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
14418
  msgstr ""
14419
 
14420
+ #: wppa-settings-autosave.php:8173
14421
  msgid "Table X:"
14422
  msgstr ""
14423
 
14424
+ #: wppa-settings-autosave.php:8173
14425
  msgid "IPTC Configuration:"
14426
  msgstr ""
14427
 
14428
+ #: wppa-settings-autosave.php:8174
14429
  msgid "This table defines the IPTC configuration"
14430
  msgstr ""
14431
 
14432
+ #: wppa-settings-autosave.php:8205 wppa-settings-autosave.php:8273
14433
  msgid "Display"
14434
  msgstr ""
14435
 
14436
+ #: wppa-settings-autosave.php:8205 wppa-settings-autosave.php:8273
14437
  msgid "Hide"
14438
  msgstr ""
14439
 
14440
+ #: wppa-settings-autosave.php:8205 wppa-settings-autosave.php:8273
14441
  msgid "Optional"
14442
  msgstr ""
14443
 
14444
+ #: wppa-settings-autosave.php:8235
14445
  msgid "Table XI:"
14446
  msgstr ""
14447
 
14448
+ #: wppa-settings-autosave.php:8235
14449
  msgid "EXIF Configuration:"
14450
  msgstr ""
14451
 
14452
+ #: wppa-settings-autosave.php:8236
14453
  msgid "This table defines the EXIF configuration"
14454
  msgstr ""
14455
 
14456
+ #: wppa-settings-autosave.php:8259
14457
  msgid ""
14458
  "Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
14459
  "enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to "
14460
  "add <b>'--enable-exif'</b> to the php <b>Configure Command</b>."
14461
  msgstr ""
14462
 
14463
+ #: wppa-settings-autosave.php:8303
14464
  msgid "Table XII:"
14465
  msgstr ""
14466
 
14467
+ #: wppa-settings-autosave.php:8303
14468
  msgid "WPPA+ and PHP Configuration:"
14469
  msgstr ""
14470
 
14471
+ #: wppa-settings-autosave.php:8304
14472
  msgid ""
14473
  "This table lists all WPPA+ constants and PHP server configuration parameters "
14474
  "and is read only"
14475
  msgstr ""
14476
 
14477
+ #: wppa-settings-autosave.php:8319
14478
  msgid "Value"
14479
  msgstr ""
14480
 
14481
+ #: wppa-settings-autosave.php:8324
14482
  msgid "Albums db table name."
14483
  msgstr ""
14484
 
14485
+ #: wppa-settings-autosave.php:8329
14486
  #, fuzzy
14487
  msgid "Photos db table name."
14488
  msgstr "Zobrazit EXIF data"
14489
 
14490
+ #: wppa-settings-autosave.php:8334
14491
  msgid "Rating db table name."
14492
  msgstr ""
14493
 
14494
+ #: wppa-settings-autosave.php:8339
14495
  msgid "Comments db table name."
14496
  msgstr ""
14497
 
14498
+ #: wppa-settings-autosave.php:8344
14499
  msgid "IPTC db table name."
14500
  msgstr ""
14501
 
14502
+ #: wppa-settings-autosave.php:8349
14503
  msgid "EXIF db table name."
14504
  msgstr ""
14505
 
14506
+ #: wppa-settings-autosave.php:8354
14507
  msgid "Index db table name."
14508
  msgstr ""
14509
 
14510
+ #: wppa-settings-autosave.php:8359
14511
  msgid "Plugins main file name."
14512
  msgstr ""
14513
 
14514
+ #: wppa-settings-autosave.php:8364
14515
  msgid "Path to plugins directory."
14516
  msgstr ""
14517
 
14518
+ #: wppa-settings-autosave.php:8369
14519
  msgid "Plugins directory name."
14520
  msgstr ""
14521
 
14522
+ #: wppa-settings-autosave.php:8374
14523
  msgid "Plugins directory url."
14524
  msgstr ""
14525
 
14526
+ #: wppa-settings-autosave.php:8379
14527
  msgid "The relative upload directory."
14528
  msgstr ""
14529
 
14530
+ #: wppa-settings-autosave.php:8384
14531
  msgid "The upload directory path."
14532
  msgstr ""
14533
 
14534
+ #: wppa-settings-autosave.php:8389
14535
  msgid "The upload directory url."
14536
  msgstr ""
14537
 
14538
+ #: wppa-settings-autosave.php:8394
14539
  msgid "The relative depot directory."
14540
  msgstr ""
14541
 
14542
+ #: wppa-settings-autosave.php:8399
14543
  msgid "The depot directory path."
14544
  msgstr ""
14545
 
14546
+ #: wppa-settings-autosave.php:8404
14547
  msgid "The depot directory url."
14548
  msgstr ""
14549
 
14550
+ #: wppa-settings-autosave.php:8409
14551
  msgid "The path to wp-content."
14552
  msgstr ""
14553
 
14554
+ #: wppa-settings-autosave.php:8414
14555
  msgid "WP Base upload dir."
14556
  msgstr ""
14557
 
14558
+ #: wppa-settings-autosave.php:8420
14559
  msgid "ABSPATH windows proof"
14560
  msgstr ""
14561
 
14562
+ #: wppa-settings-autosave.php:8432
14563
  #, php-format
14564
  msgid "<br />Memory used on this page: %6.2f Mb."
14565
  msgstr ""
14566
 
14567
+ #: wppa-settings-autosave.php:8433
14568
  #, php-format
14569
  msgid "<br />There are %d settings and %d runtime parameters."
14570
  msgstr ""
14571
 
14572
+ #: wppa-settings-autosave.php:8510
14573
  msgid "The default for this setting is:"
14574
  msgstr ""
14575
 
14576
+ #: wppa-settings-autosave.php:8519
14577
  msgid "Click for help"
14578
  msgstr ""
14579
 
14580
+ #: wppa-settings-autosave.php:8563 wppa-settings-autosave.php:8580
14581
+ #: wppa-settings-autosave.php:8609 wppa-settings-autosave.php:8632
14582
+ #: wppa-settings-autosave.php:8662 wppa-settings-autosave.php:8689
14583
+ #: wppa-settings-autosave.php:8715 wppa-settings-autosave.php:8763
14584
  msgid "Slug ="
14585
  msgstr ""
14586
 
14587
+ #: wppa-settings-autosave.php:8632 wppa-settings-autosave.php:8662
14588
+ #: wppa-settings-autosave.php:8689 wppa-settings-autosave.php:8715
14589
  msgid "Values = yes, no"
14590
  msgstr ""
14591
 
14592
+ #: wppa-settings-autosave.php:8661 wppa-settings-autosave.php:8687
14593
+ #: wppa-settings-autosave.php:8714
14594
  msgid "Warning!"
14595
  msgstr ""
14596
 
14597
+ #: wppa-settings-autosave.php:8688 wppa-settings-autosave.php:8714
14598
  msgid "Please read the help"
14599
  msgstr ""
14600
 
14601
+ #: wppa-settings-autosave.php:8763
14602
  msgid "Values = "
14603
  msgstr ""
14604
 
14605
+ #: wppa-settings-autosave.php:8839
14606
  msgid "Checked"
14607
  msgstr ""
14608
 
14609
+ #: wppa-settings-autosave.php:8840
14610
  msgid "Unchecked"
14611
  msgstr ""
14612
 
14613
+ #: wppa-settings-autosave.php:8845
14614
  msgid "the photo specific link."
14615
  msgstr ""
14616
 
14617
+ #: wppa-settings-autosave.php:8877
14618
  msgid "Show!"
14619
  msgstr ""
14620
 
14621
+ #: wppa-settings-autosave.php:8897
14622
  #, fuzzy
14623
  msgid "Not done yet"
14624
  msgstr "Zatím nebylo založeno žádné album"
14625
 
14626
+ #: wppa-settings-autosave.php:8904
14627
  #, fuzzy
14628
  msgid "Start!"
14629
  msgstr "Spustit"
14630
 
14631
+ #: wppa-settings-autosave.php:8909
14632
  msgid "Locked!"
14633
  msgstr ""
14634
 
14635
+ #: wppa-settings-autosave.php:8940
14636
  msgid ""
14637
  "You can not have popup and lightbox on thumbnails at the same time. Uncheck "
14638
  "either Table IV-C8 or choose a different linktype in Table VI-2."
14639
  msgstr ""
14640
 
14641
+ #: wppa-settings-autosave.php:8943
14642
  #, php-format
14643
  msgid ""
14644
  "It is important that you select a page that contains at least %%wppa%% or "
14645
  "[wppa][/wppa]."
14646
  msgstr ""
14647
 
14648
+ #: wppa-settings-autosave.php:8944
14649
  msgid ""
14650
  "If you ommit this, the link will not work at all or simply refresh the "
14651
  "(home)page."
14652
  msgstr ""
14653
 
14654
+ #: wppa-setup.php:429
14655
  msgid "IMPORTANT UPGRADE NOTICE"
14656
  msgstr ""
14657
 
14658
+ #: wppa-setup.php:430
14659
  msgid ""
14660
  "Please CHECK your customized WPPA-STYLE.CSS file against the newly supplied "
14661
  "one. You may wish to add or modify some attributes. Be aware of the fact "
14662
  "that most settings can now be set in the admin settings page."
14663
  msgstr ""
14664
 
14665
+ #: wppa-setup.php:431
14666
  msgid ""
14667
  "Please REPLACE your customized WPPA-THEME.PHP file by the newly supplied "
14668
  "one, or just remove it from your theme directory. You may modify it later if "
14670
  "version of the plugin software."
14671
  msgstr ""
14672
 
14673
+ #: wppa-setup.php:457
14674
  #, php-format
14675
  msgid "WPPA+ successfully updated in multi site mode to db version %s."
14676
  msgstr ""
14677
 
14678
+ #: wppa-setup.php:460
14679
  #, php-format
14680
  msgid "WPPA+ successfully updated in single site mode to db version %s."
14681
  msgstr ""
14682
 
14683
+ #: wppa-setup.php:465
14684
  #, fuzzy
14685
  msgid "An error occurred during update"
14686
  msgstr "Chyba počas upload"
14687
 
14688
+ #: wppa-setup.php:764
14689
  msgid ""
14690
  "<span style=\"color:red\" >Warning: Do not upload copyrighted material!</"
14691
  "span>"
14692
  msgstr ""
14693
 
14694
+ #: wppa-setup.php:773 wppa-setup.php:777 wppa-setup.php:781
14695
  msgid "Select tags:"
14696
  msgstr ""
14697
 
14698
+ #: wppa-setup.php:784
14699
  msgid "Enter new tags:"
14700
  msgstr ""
14701
 
14702
+ #: wppa-setup.php:934
14703
  msgid "Vote for me!"
14704
  msgstr ""
14705
 
14706
+ #: wppa-setup.php:935
14707
  msgid "Voted for me"
14708
  msgstr ""
14709
 
14710
+ #: wppa-setup.php:1293
14711
+ #, fuzzy
14712
+ msgid "Search in current section"
14713
+ msgstr "Výsledek vyhledávání fotek"
14714
+
14715
+ #: wppa-setup.php:1294
14716
+ #, fuzzy
14717
+ msgid "Search in current results"
14718
+ msgstr "Výsledek vyhledávání fotek"
14719
+
14720
+ #: wppa-setup.php:1360
14721
  msgid "Type your custom url here"
14722
  msgstr ""
14723
 
14724
+ #: wppa-setup.php:1361
14725
  msgid "Type the title here"
14726
  msgstr ""
14727
 
14728
+ #: wppa-setup.php:1373 wppa-topten-widget.php:13 wppa-topten-widget.php:49
14729
+ #: wppa-topten-widget.php:194
14730
  msgid "Top Ten Photos"
14731
  msgstr "Nejlépe hodnocené fotografie"
14732
 
14733
+ #: wppa-setup.php:1376 wppa-thumbnail-widget.php:13
14734
  #: wppa-thumbnail-widget.php:168
14735
  #, fuzzy
14736
  msgid "Thumbnail Photos"
14737
  msgstr "Označkované fotografie"
14738
 
14739
+ #: wppa-setup.php:1379
14740
  #, fuzzy
14741
  msgid "Search photos"
14742
  msgstr "Nejlépe hodnocené fotky"
14743
 
14744
+ #: wppa-setup.php:1422
14745
  msgid ""
14746
  "The uploads directory does not exist, please do a regular WP upload first."
14747
  msgstr ""
14748
 
14749
+ #: wppa-setup.php:1426
14750
  msgid "Successfully created uploads directory."
14751
  msgstr ""
14752
 
14753
+ #: wppa-setup.php:1437
14754
  #, fuzzy
14755
  msgid "Could not create the wppa directory."
14756
  msgstr "Nelze vložit do databáze."
14757
 
14758
+ #: wppa-setup.php:1441
14759
  msgid "Successfully created wppa directory."
14760
  msgstr ""
14761
 
14762
+ #: wppa-setup.php:1451
14763
  #, fuzzy
14764
  msgid "Could not create the wppa thumbs directory."
14765
  msgstr "Nelze vložit do databáze."
14766
 
14767
+ #: wppa-setup.php:1455
14768
  msgid "Successfully created wppa thumbs directory."
14769
  msgstr ""
14770
 
14771
+ #: wppa-setup.php:1465
14772
  msgid "Could not create the wppa watermarks directory."
14773
  msgstr ""
14774
 
14775
+ #: wppa-setup.php:1469
14776
  msgid "Successfully created wppa watermarks directory."
14777
  msgstr ""
14778
 
14779
+ #: wppa-setup.php:1479
14780
  msgid "Could not create the wppa fonts directory."
14781
  msgstr ""
14782
 
14783
+ #: wppa-setup.php:1483
14784
  msgid "Successfully created wppa fonts directory."
14785
  msgstr ""
14786
 
14787
+ #: wppa-setup.php:1495
14788
  msgid "Unable to create depot directory."
14789
  msgstr ""
14790
 
14791
+ #: wppa-setup.php:1499
14792
  msgid "Successfully created wppa depot directory."
14793
  msgstr ""
14794
 
14795
+ #: wppa-setup.php:1510
14796
  msgid "Unable to create user depot directory"
14797
  msgstr ""
14798
 
14799
+ #: wppa-setup.php:1514
14800
  msgid "Successfully created wppa user depot directory."
14801
  msgstr ""
14802
 
14803
+ #: wppa-setup.php:1524
14804
  msgid "Unable to create temp directory"
14805
  msgstr ""
14806
 
14807
+ #: wppa-setup.php:1528
14808
  msgid "Successfully created temp directory."
14809
  msgstr ""
14810
 
14811
+ #: wppa-setup.php:1536
14812
  #, php-format
14813
  msgid ""
14814
  "Ask your administrator to give you more rights, or create <b>%s</b> manually "
14918
  msgid "Text below photos:"
14919
  msgstr "Další fotku"
14920
 
14921
+ #: wppa-slideshow.php:235
14922
  msgid "Paused"
14923
  msgstr "Pozastaveno"
14924
 
14925
+ #: wppa-slideshow.php:240
14926
  msgid ""
14927
  "To see the full size images, you need to enable javascript in your browser."
14928
  msgstr ""
14929
  "Pro zobrazení fotek v plné velikosti musíte povolit JavaScript ve vašem "
14930
  "prohlížeči."
14931
 
14932
+ #: wppa-slideshow.php:461
14933
  msgid "Checkout"
14934
  msgstr ""
14935
 
14936
+ #: wppa-slideshow.php:496
14937
  msgid "- - - Voting enabled - - -"
14938
  msgstr "--- Hlasování povoleno ---"
14939
 
14940
+ #: wppa-slideshow.php:507
14941
  #, fuzzy, php-format
14942
  msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
14943
  msgstr "%s hodnocení"
14944
 
14945
+ #: wppa-slideshow.php:513 wppa-slideshow.php:601 wppa-slideshow.php:638
14946
  #, php-format
14947
  msgid "You must <a href=\"%s\">login</a> to vote"
14948
  msgstr " K hodnocení se musíte <a href=&quot;\"%s\"&quot;>přihlásit</a>."
14949
 
14950
+ #: wppa-slideshow.php:516 wppa-slideshow.php:604 wppa-slideshow.php:641
14951
  #, fuzzy
14952
  msgid "You must login to vote"
14953
  msgstr " K hodnocení se musíte <a href=&quot;\"%s\"&quot;>přihlásit</a>."
14954
 
14955
+ #: wppa-slideshow.php:533
14956
  msgid "- - - Rating enabled - - -"
14957
  msgstr "--- Hodnocení povoleno ---"
14958
 
14959
+ #: wppa-slideshow.php:549
14960
  msgid "very low"
14961
  msgstr "velmi nízká"
14962
 
14963
+ #: wppa-slideshow.php:550
14964
  msgid "low"
14965
  msgstr "nízká"
14966
 
14967
+ #: wppa-slideshow.php:551
14968
  msgid "average"
14969
  msgstr "průměr"
14970
 
14971
+ #: wppa-slideshow.php:552
14972
  msgid "high"
14973
  msgstr "vysoká"
14974
 
14975
+ #: wppa-slideshow.php:553
14976
  msgid "very high"
14977
  msgstr "velmi vysoká"
14978
 
14979
+ #: wppa-slideshow.php:580 wppa-slideshow.php:624
14980
  msgid "Are you sure you want to mark this image as inappropriate?"
14981
  msgstr "Opravdu chcete tuto foktu označit jako nevhodnou?"
14982
 
14983
+ #: wppa-slideshow.php:581 wppa-slideshow.php:625
14984
  msgid "Click this if you do NOT like this image!"
14985
  msgstr "Klikněte sem, pokud se obrázek NELÍBÍ!"
14986
 
14987
+ #: wppa-slideshow.php:583 wppa-slideshow.php:627
14988
  #, fuzzy
14989
  msgid "Number of people who marked this photo as inappropriate"
14990
  msgstr "Spousta lidí označila tuto fotku jako nevhodnou."
14991
 
14992
+ #: wppa-slideshow.php:633
14993
  msgid "My rating:"
14994
  msgstr "Moje hodnocení"
14995
 
14996
+ #: wppa-slideshow.php:717
14997
  msgid "First"
14998
  msgstr ""
14999
 
15000
+ #: wppa-slideshow.php:722
15001
  msgid "Last"
15002
  msgstr ""
15003
 
15004
+ #: wppa-slideshow.php:890
15005
  #, php-format
15006
  msgid "Photo %s of %s"
15007
  msgstr "Fotka %s %s"
15008
 
15009
+ #: wppa-slideshow.php:921
15010
  msgid "Click to start/stop"
15011
  msgstr "Pro Spuštění/zastevní klikněte"
15012
 
15013
+ #: wppa-slideshow.php:933
15014
  msgid "- - - Comments box activated - - -"
15015
  msgstr "--- Box komentářů aktivní ---"
15016
 
15017
+ #: wppa-slideshow.php:954
15018
  msgid "- - - IPTC box activated - - -"
15019
  msgstr "--- IPTC box aktivní ---"
15020
 
15021
+ #: wppa-slideshow.php:974
15022
  msgid "- - - EXIF box activated - - -"
15023
  msgstr "--- EXIF box aktivní ---"
15024
 
15036
  msgid ", a subalbum of"
15037
  msgstr ", subalbum z"
15038
 
15039
+ #: wppa-stereo-widget.php:12
15040
+ msgid "WPPA+ Stereo settings"
15041
+ msgstr ""
15042
+
15043
+ #: wppa-stereo-widget.php:13
15044
+ #, fuzzy
15045
+ msgid "3D Settings"
15046
+ msgstr "Nastavení"
15047
+
15048
+ #: wppa-stereo-widget.php:35 wppa-stereo-widget.php:66
15049
+ #, fuzzy
15050
+ msgid "3D Stereo Settings"
15051
+ msgstr "Nastavení"
15052
+
15053
+ #: wppa-stereo.php:31
15054
+ msgid "Color"
15055
+ msgstr ""
15056
+
15057
+ #: wppa-stereo.php:32
15058
+ msgid "Half color"
15059
+ msgstr ""
15060
+
15061
+ #: wppa-stereo.php:33
15062
+ msgid "Gray"
15063
+ msgstr ""
15064
+
15065
+ #: wppa-stereo.php:34
15066
+ msgid "True anaglyph"
15067
+ msgstr ""
15068
+
15069
+ #: wppa-stereo.php:35
15070
+ msgid "Optimized"
15071
+ msgstr ""
15072
+
15073
+ #: wppa-stereo.php:36
15074
+ msgid "Flat"
15075
+ msgstr ""
15076
+
15077
+ #: wppa-stereo.php:38
15078
+ msgid "Red - Cyan"
15079
+ msgstr ""
15080
+
15081
+ #: wppa-stereo.php:39
15082
+ msgid "Green - Magenta"
15083
+ msgstr ""
15084
+
15085
  #: wppa-super-view-widget.php:13
15086
  msgid "WPPA+ Selectable display"
15087
  msgstr ""
15121
  msgid "Link Title ( tooltip ):"
15122
  msgstr ""
15123
 
15124
+ #: wppa-thumbnail-widget.php:200 wppa-topten-widget.php:236
15125
+ #: wppa-upldr-widget.php:182
15126
  #, fuzzy
15127
  msgid "Sort by:"
15128
  msgstr "Fotka %s %s"
15135
  msgid "Show photo names <small>under thumbnails only</small>:"
15136
  msgstr ""
15137
 
15138
+ #: wppa-thumbnails.php:174 wppa-thumbnails.php:1059 wppa-topten-widget.php:110
15139
  msgid "View the top rated photos"
15140
  msgstr "Zobrazit najlépe hodnocené fotky"
15141
 
15142
+ #: wppa-thumbnails.php:635
15143
  #, fuzzy
15144
  msgid "Comments:"
15145
  msgstr "Komentáře"
15146
 
15147
+ #: wppa-thumbnails.php:966
15148
  #, php-format
15149
  msgid "Missing thumbnail image #%s"
15150
  msgstr ""
15263
  msgid "--- All photos in the system ---"
15264
  msgstr ""
15265
 
15266
+ #: wppa-tinymce-scripts.php:208 wppa-tinymce-shortcodes.php:249
15267
+ #: wppa-tinymce-shortcodes.php:272 wppa-tinymce-shortcodes.php:317
15268
+ #: wppa-tinymce-shortcodes.php:340 wppa-tinymce-shortcodes.php:479
15269
  msgid "There are no albums yet"
15270
  msgstr ""
15271
 
15284
  msgid "* Album contains less than the minimun number of photos"
15285
  msgstr ""
15286
 
15287
+ #: wppa-tinymce-scripts.php:224 wppa-tinymce-shortcodes.php:378
15288
  msgid "The Photo to be used:"
15289
  msgstr ""
15290
 
15291
+ #: wppa-tinymce-scripts.php:229 wppa-tinymce-shortcodes.php:384
15292
  #, fuzzy
15293
  msgid "Please select a photo"
15294
  msgstr "Zadejte komentář"
15303
  msgid "--- The photo of the day ---"
15304
  msgstr "Foto dne"
15305
 
15306
+ #: wppa-tinymce-scripts.php:244 wppa-tinymce-shortcodes.php:401
15307
  msgid "There are no photos yet"
15308
  msgstr ""
15309
 
15310
+ #: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:407
15311
  msgid "Specify the photo to be used"
15312
  msgstr ""
15313
 
15314
+ #: wppa-tinymce-scripts.php:251 wppa-tinymce-shortcodes.php:408
15315
  msgid "You can select from a maximum of 100 most recently added photos"
15316
  msgstr ""
15317
 
15318
+ #: wppa-tinymce-scripts.php:257 wppa-tinymce-shortcodes.php:422
15319
  #, fuzzy
15320
  msgid "The tags the photos should have:"
15321
  msgstr "Zkontrolujte prosím tag(y), které fotky musí mít"
15322
 
15323
+ #: wppa-tinymce-scripts.php:260 wppa-tinymce-shortcodes.php:425
15324
  #, fuzzy
15325
  msgid "--- please select tag(s) ---"
15326
  msgstr "--- smazáno ---"
15332
  "tags"
15333
  msgstr ""
15334
 
15335
+ #: wppa-tinymce-scripts.php:273 wppa-tinymce-shortcodes.php:502
15336
  #, fuzzy
15337
  msgid "The size of the display:"
15338
  msgstr "Foto dne"
15339
 
15340
+ #: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:507
15341
  msgid ""
15342
  "Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
15343
  "span>."
15344
  msgstr ""
15345
 
15346
+ #: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:508
15347
  msgid ""
15348
  "A value less than <span style=\"color:blue\" >100</span> will automaticly be "
15349
  "interpreted as a <span style=\"color:blue\" >percentage</span> of the "
15350
  "available space."
15351
  msgstr ""
15352
 
15353
+ #: wppa-tinymce-scripts.php:280 wppa-tinymce-shortcodes.php:509
15354
  msgid "Leave this blank for default size"
15355
  msgstr ""
15356
 
15357
+ #: wppa-tinymce-scripts.php:285 wppa-tinymce-shortcodes.php:515
15358
  #: wppa-widget-admin.php:72
15359
  msgid "Horizontal alignment:"
15360
  msgstr ""
15361
 
15362
+ #: wppa-tinymce-scripts.php:294 wppa-tinymce-shortcodes.php:524
15363
  msgid "Specify the alignment to be used or --- none ---"
15364
  msgstr ""
15365
 
15366
+ #: wppa-tinymce-scripts.php:300 wppa-tinymce-shortcodes.php:534
15367
  msgid "Insert Gallery"
15368
  msgstr ""
15369
 
15504
  msgid "A landing page shortcode"
15505
  msgstr "Vyberte prosím cílovou stránku pro super view widget v Table VI-C"
15506
 
15507
+ #: wppa-tinymce-shortcodes.php:181
15508
+ #, fuzzy
15509
+ msgid "A 3D stereo settings box"
15510
+ msgstr "--- smazáno ---"
15511
+
15512
+ #: wppa-tinymce-shortcodes.php:188
15513
  msgid "Kind of selection:"
15514
  msgstr ""
15515
 
15516
+ #: wppa-tinymce-shortcodes.php:191
15517
  msgid "Please select a type of selection to be used"
15518
  msgstr ""
15519
 
15520
+ #: wppa-tinymce-shortcodes.php:192
15521
  msgid "One or more wppa+ albums"
15522
  msgstr ""
15523
 
15524
+ #: wppa-tinymce-shortcodes.php:193
15525
  msgid "A special selection"
15526
  msgstr ""
15527
 
15528
+ #: wppa-tinymce-shortcodes.php:200 wppa-tinymce-shortcodes.php:220
15529
  msgid "The selection to be used:"
15530
  msgstr ""
15531
 
15532
+ #: wppa-tinymce-shortcodes.php:203 wppa-tinymce-shortcodes.php:223
15533
  #, fuzzy
15534
  msgid "Please select a virtual album"
15535
  msgstr "Vyberte prosím album a opakujte akci"
15536
 
15537
+ #: wppa-tinymce-shortcodes.php:204 wppa-tinymce-shortcodes.php:224
15538
  #, fuzzy
15539
  msgid "The most recently modified album"
15540
  msgstr "Nedávno nahrané fotky"
15541
 
15542
+ #: wppa-tinymce-shortcodes.php:205
15543
  #, fuzzy
15544
  msgid "The top rated photos"
15545
  msgstr "Najlepšie hodnotené fotografie"
15546
 
15547
+ #: wppa-tinymce-shortcodes.php:206
15548
  #, fuzzy
15549
  msgid "The most recently uploaded photos"
15550
  msgstr "Zobrazit posledně nahrané fotky"
15551
 
15552
+ #: wppa-tinymce-shortcodes.php:207
15553
  msgid "A random selection of featured photos"
15554
  msgstr ""
15555
 
15556
+ #: wppa-tinymce-shortcodes.php:208
15557
  #, fuzzy
15558
  msgid "The most recently commented photos"
15559
  msgstr "Nedávno komentované fotografie"
15560
 
15561
+ #: wppa-tinymce-shortcodes.php:209
15562
  msgid "Photos that have certain tags"
15563
  msgstr ""
15564
 
15565
+ #: wppa-tinymce-shortcodes.php:210 wppa-tinymce-shortcodes.php:226
15566
  msgid "Albums tagged with a certain category"
15567
  msgstr ""
15568
 
15569
+ #: wppa-tinymce-shortcodes.php:211
15570
  msgid "Photos in albums owned by a certain user"
15571
  msgstr ""
15572
 
15573
+ #: wppa-tinymce-shortcodes.php:212
15574
  #, fuzzy
15575
  msgid "Photos uploaded by a certain user"
15576
  msgstr "Fotky nahrány "
15577
 
15578
+ #: wppa-tinymce-shortcodes.php:213
15579
  msgid "All photos in the system"
15580
  msgstr ""
15581
 
15582
+ #: wppa-tinymce-shortcodes.php:225
15583
  msgid "Albums owned by a certain user"
15584
  msgstr ""
15585
 
15586
+ #: wppa-tinymce-shortcodes.php:227
15587
  msgid "All albums in the system"
15588
  msgstr ""
15589
 
15590
+ #: wppa-tinymce-shortcodes.php:234 wppa-tinymce-shortcodes.php:257
15591
  msgid "The Album(s) to be used:"
15592
  msgstr ""
15593
 
15594
+ #: wppa-tinymce-shortcodes.php:240
15595
  #, fuzzy
15596
  msgid "Please select one or more albums"
15597
  msgstr "Zadejte vaše jméno"
15598
 
15599
+ #: wppa-tinymce-shortcodes.php:263 wppa-upldr-widget.php:212
15600
  #, fuzzy
15601
  msgid "All albums"
15602
  msgstr "Všetky albumy"
15603
 
15604
+ #: wppa-tinymce-shortcodes.php:280
15605
  #, fuzzy
15606
  msgid "The album owner:"
15607
  msgstr "Zadejte název fotky"
15608
 
15609
+ #: wppa-tinymce-shortcodes.php:283
15610
  #, fuzzy
15611
  msgid "Please select a user"
15612
  msgstr "Vyberte prosím album a opakujte akci"
15613
 
15614
+ #: wppa-tinymce-shortcodes.php:284
15615
  msgid "The logged in visitor"
15616
  msgstr ""
15617
 
15618
+ #: wppa-tinymce-shortcodes.php:290
15619
  msgid "Too many users, edit manually"
15620
  msgstr ""
15621
 
15622
+ #: wppa-tinymce-shortcodes.php:305
15623
  msgid "No parent specification"
15624
  msgstr ""
15625
 
15626
+ #: wppa-tinymce-shortcodes.php:308 wppa-tinymce-shortcodes.php:331
15627
+ #: wppa-tinymce-shortcodes.php:470
15628
  msgid "The generic parent"
15629
  msgstr ""
15630
 
15631
+ #: wppa-tinymce-shortcodes.php:348
15632
  #, fuzzy
15633
  msgid "Max Albums:"
15634
  msgstr "Alba:"
15635
 
15636
+ #: wppa-tinymce-shortcodes.php:356
15637
  #, fuzzy
15638
  msgid "Max Photos:"
15639
  msgstr "Foto"
15640
 
15641
+ #: wppa-tinymce-shortcodes.php:364
15642
  msgid "The cat the albums should have:"
15643
  msgstr ""
15644
 
15645
+ #: wppa-tinymce-shortcodes.php:367
15646
  #, fuzzy
15647
  msgid "--- please select category ---"
15648
  msgstr "--- smazáno ---"
15649
 
15650
+ #: wppa-tinymce-shortcodes.php:397
15651
  #, fuzzy
15652
  msgid "The most recently uploaded photo"
15653
  msgstr "Zobrazit posledně nahrané fotky"
15654
 
15655
+ #: wppa-tinymce-shortcodes.php:398
15656
  #, fuzzy
15657
  msgid "The photo of the day"
15658
  msgstr "Foto dne"
15659
 
15660
+ #: wppa-tinymce-shortcodes.php:415
15661
  msgid "Preview image:"
15662
  msgstr ""
15663
 
15664
+ #: wppa-tinymce-shortcodes.php:436 wppa-tinymce-shortcodes.php:445
15665
  msgid "Additional features:"
15666
  msgstr ""
15667
 
15668
+ #: wppa-tinymce-shortcodes.php:438
15669
  msgid "Enable Subsearch"
15670
  msgstr ""
15671
 
15672
+ #: wppa-tinymce-shortcodes.php:439
15673
  msgid "Enable Rootsearch"
15674
  msgstr ""
15675
 
15676
+ #: wppa-tinymce-shortcodes.php:447
15677
  msgid "Enable all tags"
15678
  msgstr ""
15679
 
15680
+ #: wppa-tinymce-shortcodes.php:450
15681
  #, fuzzy
15682
  msgid "Please select the tags to show"
15683
  msgstr "Zkontrolujte prosím tag(y), které fotky musí mít"
15684
 
15685
+ #: wppa-tinymce-shortcodes.php:456
15686
  #, fuzzy
15687
  msgid "There are no tags"
15688
  msgstr "Jsou"
15689
 
15690
+ #: wppa-tinymce-shortcodes.php:487
15691
  msgid "Calendar type:"
15692
  msgstr ""
15693
 
15694
+ #: wppa-tinymce-shortcodes.php:490
15695
  #, fuzzy
15696
  msgid "By EXIF date"
15697
  msgstr "Žádná EXIF data"
15698
 
15699
+ #: wppa-tinymce-shortcodes.php:491
15700
  #, fuzzy
15701
  msgid "By date of upload"
15702
  msgstr "Fotky nahrány "
15703
 
15704
+ #: wppa-tinymce-shortcodes.php:492
15705
  msgid "By date last modified"
15706
  msgstr ""
15707
 
15708
+ #: wppa-tinymce-shortcodes.php:495
15709
  msgid "Last date first"
15710
  msgstr ""
15711
 
15712
+ #: wppa-tinymce-shortcodes.php:496
15713
  msgid "Initially display all"
15714
  msgstr ""
15715
 
15716
+ #: wppa-tinymce-shortcodes.php:532
15717
  msgid ""
15718
  "This is a preview of the shortcode that is being generated. You may edit the "
15719
  "comment"
15720
  msgstr ""
15721
 
15722
+ #: wppa-tinymce-shortcodes.php:535
15723
  msgid "insert Gallery"
15724
  msgstr ""
15725
 
15726
+ #: wppa-tinymce-shortcodes.php:535
15727
  msgid "Please complete the shortcode specs"
15728
  msgstr ""
15729
 
15732
  msgid "WPPA+ Top Ten Rated Photos"
15733
  msgstr "Nejlépe hodnocené fotografie"
15734
 
15735
+ #: wppa-topten-widget.php:50
15736
  #, fuzzy
15737
  msgid "Top Ten Photo album"
15738
  msgstr "Nejlépe hodnocené fotografie"
15739
 
15740
+ #: wppa-topten-widget.php:138 wppa-topten-widget.php:142
15741
+ #: wppa-topten-widget.php:149
15742
  #, php-format
15743
  msgid "%s Votes"
15744
  msgstr "%s hodnocení"
15745
 
15746
+ #: wppa-topten-widget.php:139 wppa-topten-widget.php:144
15747
+ #: wppa-topten-widget.php:147
15748
  #, php-format
15749
  msgid "Views: %s times"
15750
  msgstr "Prohlédnuto %s krát"
15751
 
15752
+ #: wppa-topten-widget.php:240
15753
  msgid "Number of views"
15754
  msgstr ""
15755
 
15756
+ #: wppa-topten-widget.php:244
15757
  msgid "Include sub albums:"
15758
  msgstr ""
15759
 
15760
+ #: wppa-topten-widget.php:252
15761
  msgid "Show owner:"
15762
  msgstr ""
15763
 
15764
+ #: wppa-topten-widget.php:257
15765
  #, fuzzy
15766
  msgid "Show album:"
15767
  msgstr "Stáhnout"
15768
 
15769
+ #: wppa-topten-widget.php:272
15770
  msgid "View count:"
15771
  msgstr ""
15772
 
15780
  msgid "Uploader Photos"
15781
  msgstr "Nahrát fotky"
15782
 
15783
+ #: wppa-upldr-widget.php:44
15784
  msgid "User uploaded photos"
15785
  msgstr "Nedávno nahrané fotografie"
15786
 
15787
+ #: wppa-upldr-widget.php:92
15788
  msgid "There are too many registered users in the system for this widget"
15789
  msgstr ""
15790
 
15791
+ #: wppa-upldr-widget.php:126 wppa-upldr-widget.php:133
15792
  msgid "Photos uploaded by"
15793
  msgstr "Fotky nahrány "
15794
 
15795
+ #: wppa-upldr-widget.php:170
15796
  #, fuzzy
15797
  msgid "User Photos"
15798
  msgstr "Foto"
15799
 
15800
+ #: wppa-upldr-widget.php:185
15801
  #, fuzzy
15802
  msgid "Number of photos"
15803
  msgstr "Označkované fotografie"
15804
 
15805
+ #: wppa-upldr-widget.php:186
15806
  #, fuzzy
15807
  msgid "Most recent photo"
15808
  msgstr "napsáno k fotce"
15809
 
15810
+ #: wppa-upldr-widget.php:190
15811
  msgid "Ignore:"
15812
  msgstr ""
15813
 
15814
+ #: wppa-upldr-widget.php:192
15815
  msgid "Enter loginnames seperated by commas"
15816
  msgstr ""
15817
 
15818
+ #: wppa-upldr-widget.php:195
15819
  msgid "Look only in albums (including sub-albums):"
15820
  msgstr ""
15821
 
16444
  msgid "Could not create page."
16445
  msgstr "Nelze vložit do databáze."
16446
 
16447
+ #: wppa-utils.php:287
16448
  #, php-format
16449
  msgid "Rating: %s"
16450
  msgstr "Hlasování: %s"
16451
 
16452
+ #: wppa-utils.php:810 wppa-utils.php:821 wppa-utils.php:832
16453
  msgid "Notification of inappropriate image"
16454
  msgstr ""
16455
 
16456
+ #: wppa-utils.php:811 wppa-utils.php:822 wppa-utils.php:833
16457
  #, php-format
16458
  msgid "Photo %s has been marked as inappropriate by %s different visitors."
16459
  msgstr ""
16460
 
16461
+ #: wppa-utils.php:823
16462
  msgid "The status has been changed to 'pending'."
16463
  msgstr ""
16464
 
16465
+ #: wppa-utils.php:834
16466
  #, fuzzy
16467
  msgid "It has been deleted."
16468
  msgstr "Fotka %s byla odebrána."
16469
 
16470
+ #: wppa-utils.php:895
16471
  #, php-format
16472
  msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
16473
  msgstr "Návštěvníkův email je: <a href=\"mailto:%s\">%s</a>"
16474
 
16475
+ #: wppa-utils.php:900
16476
  #, php-format
16477
  msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
16478
  msgstr "Návštěvník říká, že je jeho email je: <a href=\"mailto:%s\">%s</a>"
16479
 
16480
+ #: wppa-utils.php:908
16481
  #, php-format
16482
  msgid ""
16483
  "This message is automaticly generated at %s. It is useless to respond to it."
16484
  msgstr ""
16485
  "Táto zpráva je automaticky generovaná - %s. Je zbytečné na ní reagovať."
16486
 
16487
+ #: wppa-utils.php:1161
16488
  #, php-format
16489
  msgid "Time out after processing %s items."
16490
  msgstr ""
16491
 
16492
+ #: wppa-utils.php:1164 wppa-utils.php:1168
16493
  #, php-format
16494
  msgid "Time out after processing %s items. Please restart this operation"
16495
  msgstr ""
16696
  msgid "- start over -"
16697
  msgstr ""
16698
 
16699
+ #: wppa.php:359
16700
  msgid ""
16701
  "</strong><h3>WP Photo ALbum Plus Error message</h3>This is a multi site "
16702
  "installation. One of the following 3 lines must be entered in wp-config.php:"
16703
  msgstr ""
16704
 
16705
+ #: wppa.php:360
16706
  msgid ""
16707
  "<br /><br /><b>define( 'WPPA_MULTISITE_INDIVIDUAL', true );</b> <small>// "
16708
  "Multisite WP 3.5 or later with every site its own albums and photos</small>"
16709
  msgstr ""
16710
 
16711
+ #: wppa.php:361
16712
  msgid ""
16713
  "<br /><b>define( 'WPPA_MULTISITE_BLOGSDIR', true );</b> <small>// Multisite "
16714
  "prior to WP 3.5 with every site its own albums and photos</small>"
16715
  msgstr ""
16716
 
16717
+ #: wppa.php:362
16718
  msgid ""
16719
  "<br /><b>define( 'WPPA_MULTISITE_GLOBAL', true );</b> <small>// Multisite "
16720
  "with one common set of albums and photos</small>"
16721
  msgstr ""
16722
 
16723
+ #: wppa.php:363
16724
  msgid ""
16725
  "<br /><br />For more information see: <a href=\"https://wordpress.org/"
16726
  "plugins/wp-photo-album-plus/faq/\">the faq</a>"
16727
  msgstr ""
16728
 
16729
+ #: wppa.php:364
16730
  msgid ""
16731
  "<br /><br /><em>If you upload photos, they will be placed in the wrong "
16732
  "location and will not be visible for visitors!</em><strong>"
16733
  msgstr ""
16734
 
16735
+ #: wppa.php:381
16736
  msgid ""
16737
  "</strong>The photo index table needs to be rebuilt. Please run <b>Photo "
16738
  "Albums -> Settings</b> admin page <b>Table VIII-A9</b><strong>"
16739
  msgstr ""
16740
 
16741
+ #: wppa.php:385
16742
  msgid ""
16743
  "</strong>The album index table needs to be rebuilt. Please run <b>Photo "
16744
  "Albums -> Settings</b> admin page <b>Table VIII-A8</b><strong>"
16745
  msgstr ""
16746
 
16747
+ #: wppa.php:389
16748
  msgid ""
16749
  "</strong>The avarage ratings need to be recalculated. Please run <b>Photo "
16750
  "Albums -> Settings</b> admin page <b>Table VIII-A5</b><strong>"
16751
  msgstr ""
16752
 
16753
+ #: wppa.php:409
16754
  msgid ""
16755
  "</strong>The tags system needs to be converted. Please run <b>Photo Albums -"
16756
  "> Settings</b> admin page <b>Table VIII-B16</b><strong>"
16757
  msgstr ""
16758
 
16759
+ #: wppa.php:427
16760
  msgid ""
16761
  "</strong>The cats system needs to be converted. Please run <b>Photo Albums -"
16762
  "> Settings</b> admin page <b>Table VIII-B17</b><strong>"
16785
  msgid "http://wppa.opajaap.nl/"
16786
  msgstr ""
16787
 
16788
+ #, fuzzy
16789
+ #~ msgid "Filter priority"
16790
+ #~ msgstr "Priorita závěrky rychlosti AE"
16791
+
16792
+ #, fuzzy
16793
+ #~ msgid "Shortcode_priority"
16794
+ #~ msgstr "Priorita závěrky rychlosti AE"
16795
+
16796
  #, fuzzy
16797
  #~ msgid "Update uploads"
16798
  #~ msgstr "Album:"
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: 2015-09-25 13:50+0200\n"
5
- "PO-Revision-Date: 2015-09-25 13:50+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.4\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: wppa.php\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -31,7 +31,7 @@ msgstr "N&aelig;ste&nbsp;side"
31
  #: wppa-album-admin-autosave.php:1445 wppa-album-admin-autosave.php:1519
32
  #: wppa-album-admin-autosave.php:1629 wppa-comment-admin.php:311
33
  #: wppa-comment-admin.php:380 wppa-comment-admin.php:398
34
- #: wppa-functions.php:1910 wppa-thumbnails.php:596
35
  msgid "Edit"
36
  msgstr "Rediger!"
37
 
@@ -39,8 +39,8 @@ msgstr "Rediger!"
39
  msgid "Warning. No page defined for search results!"
40
  msgstr ""
41
 
42
- #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:175
43
- #: wppa-settings-autosave.php:399 wppa-settings-autosave.php:2990
44
  #, fuzzy
45
  msgid "Search"
46
  msgstr "Cerca"
@@ -92,17 +92,17 @@ msgstr ""
92
  msgid "Settings file not found"
93
  msgstr ""
94
 
95
- #: wppa-admin-functions.php:206 wppa-admin-functions.php:210 wppa-ajax.php:2228
96
- #: wppa-ajax.php:2235
97
  msgid "Please supply a numeric value greater than or equal to"
98
  msgstr ""
99
 
100
- #: wppa-admin-functions.php:206 wppa-admin-functions.php:210 wppa-ajax.php:2228
101
- #: wppa-ajax.php:2235
102
  msgid "for"
103
  msgstr ""
104
 
105
- #: wppa-admin-functions.php:210 wppa-ajax.php:2235
106
  msgid "and less than or equal to"
107
  msgstr ""
108
 
@@ -242,7 +242,7 @@ msgstr "Foto Albums"
242
  msgid "Album Admin"
243
  msgstr "Album administration"
244
 
245
- #: wppa-admin.php:58 wppa-adminbar.php:47 wppa-upload-widget.php:75
246
  #: wppa-upload.php:88
247
  msgid "Upload Photos"
248
  msgstr "Indsend foto"
@@ -274,7 +274,7 @@ msgid "Photo of the day Widget"
274
  msgstr "Dagens foto"
275
 
276
  #: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:61
277
- #: wppa-setup.php:1349
278
  msgid "Photo of the day"
279
  msgstr "Dagens foto"
280
 
@@ -283,9 +283,9 @@ msgstr "Dagens foto"
283
  msgid "Manage comments"
284
  msgstr "%d kommentarer"
285
 
286
- #: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:389
287
- #: wppa-settings-autosave.php:2819 wppa-settings-autosave.php:7489
288
- #: wppa-settings-autosave.php:7534
289
  msgid "Comments"
290
  msgstr "%d kommentarer"
291
 
@@ -311,7 +311,7 @@ msgstr ""
311
  msgid "Import"
312
  msgstr "Importer foto"
313
 
314
- #: wppa-admin.php:121 wppa-settings-autosave.php:8528
315
  #, fuzzy
316
  msgid "Update"
317
  msgstr ""
@@ -346,8 +346,8 @@ msgstr ""
346
  msgid "Exit & Refresh"
347
  msgstr "Ricarica questa pagina per svuotare la tabella X"
348
 
349
- #: wppa-ajax.php:171 wppa-ajax.php:228 wppa-ajax.php:251 wppa-ajax.php:456
350
- #: wppa-ajax.php:717
351
  msgid "Security check failure"
352
  msgstr ""
353
 
@@ -384,7 +384,7 @@ msgstr "Kommentarer redigeret"
384
  msgid "Could not remove comment"
385
  msgstr "Impossibile creare album. "
386
 
387
- #: wppa-ajax.php:264 wppa-ajax.php:589
388
  msgid "Unexpected error"
389
  msgstr ""
390
 
@@ -396,7 +396,7 @@ msgstr ""
396
  msgid "The album is empty"
397
  msgstr ""
398
 
399
- #: wppa-ajax.php:291 wppa-ajax.php:419
400
  msgid "Unable to create zip archive"
401
  msgstr ""
402
 
@@ -405,78 +405,78 @@ msgstr ""
405
  msgid "Unable to create zip archive. code = %s"
406
  msgstr ""
407
 
408
- #: wppa-ajax.php:331
409
  #, php-format
410
  msgid "Only %s out of %s photos could be added to the zipfile"
411
  msgstr ""
412
 
413
- #: wppa-ajax.php:360
414
  msgid "Unknown source of request"
415
  msgstr ""
416
 
417
- #: wppa-ajax.php:378
418
  msgid "Empty filename"
419
  msgstr ""
420
 
421
- #: wppa-ajax.php:405
422
  msgid "Unable to create tempdir"
423
  msgstr ""
424
 
425
- #: wppa-ajax.php:429
426
  #, fuzzy
427
  msgid "Unknown type"
428
  msgstr "sconosciuto"
429
 
430
- #: wppa-ajax.php:438
431
  msgid "The photo does no longer exist"
432
  msgstr ""
433
 
434
- #: wppa-ajax.php:470
435
  msgid "An error occurred while processing you rating request."
436
  msgstr ""
437
 
438
- #: wppa-ajax.php:471
439
  msgid "Maybe you opened the page too long ago to recognize you."
440
  msgstr ""
441
 
442
- #: wppa-ajax.php:472
443
  msgid "You may refresh the page and try again."
444
  msgstr ""
445
 
446
- #: wppa-ajax.php:473
447
  msgid ""
448
  "Althoug an error occurred while processing your rating, your vote has been "
449
  "registered."
450
  msgstr ""
451
 
452
- #: wppa-ajax.php:474
453
  msgid "However, this may not be reflected in the current pageview"
454
  msgstr ""
455
 
456
- #: wppa-ajax.php:496
457
  #, fuzzy
458
  msgid "Photo has been removed."
459
  msgstr "Il file %s no è supportato ed è stato rimosso."
460
 
461
- #: wppa-ajax.php:505
462
  msgid "Sorry, you can not rate your own photos"
463
  msgstr ""
464
 
465
- #: wppa-ajax.php:517
466
  #, fuzzy
467
  msgid "Please enter a comment."
468
  msgstr "Skriv en kommentar"
469
 
470
- #: wppa-ajax.php:542
471
  msgid "Security check failure."
472
  msgstr ""
473
 
474
- #: wppa-ajax.php:554 wppa-ajax.php:570
475
  #, fuzzy
476
  msgid "Photo rated"
477
  msgstr "Dagens foto"
478
 
479
- #: wppa-ajax.php:669
480
  msgid ""
481
  "Please explain your vote in a comment.\n"
482
  "Your vote will be discarded if you don't.\n"
@@ -486,784 +486,779 @@ msgid ""
486
  "your vote became effective."
487
  msgstr ""
488
 
489
- #: wppa-ajax.php:713
490
  msgid "You do not have the rights to delete a photo"
491
  msgstr ""
492
 
493
- #: wppa-ajax.php:723
494
  #, fuzzy, php-format
495
  msgid "Photo %s has been deleted"
496
  msgstr "Il file %s no è supportato ed è stato rimosso."
497
 
498
- #: wppa-ajax.php:739
499
  msgid "You do not have the rights to update album information"
500
  msgstr ""
501
 
502
- #: wppa-ajax.php:751
503
  msgid "<b>Ratings cleared</b>"
504
  msgstr ""
505
 
506
- #: wppa-ajax.php:751 wppa-ajax.php:757 wppa-photo-admin-autosave.php:310
507
  msgid "No ratings for this photo."
508
  msgstr ""
509
 
510
- #: wppa-ajax.php:754
511
  msgid "An error occurred while clearing ratings"
512
  msgstr ""
513
 
514
- #: wppa-ajax.php:757 wppa-ajax.php:778 wppa-ajax.php:800
515
  msgid "<b>No photos in this album</b>"
516
  msgstr ""
517
 
518
- #: wppa-ajax.php:772
519
  msgid "<b>Tags set to defaults</b> (reload)"
520
  msgstr ""
521
 
522
- #: wppa-ajax.php:775
523
  msgid "An error occurred while setting tags"
524
  msgstr ""
525
 
526
- #: wppa-ajax.php:794
527
  msgid "<b>Tags added width defaults</b> (reload)"
528
  msgstr ""
529
 
530
- #: wppa-ajax.php:797
531
  msgid "An error occurred while adding tags"
532
  msgstr ""
533
 
534
- #: wppa-ajax.php:809
535
  #, php-format
536
  msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
537
  msgstr ""
538
 
539
- #: wppa-ajax.php:811 wppa-ajax.php:1211 wppa-album-admin-autosave.php:335
540
  #: wppa-album-admin-autosave.php:392 wppa-album-admin-autosave.php:988
541
  #: wppa-album-admin-autosave.php:1125 wppa-album-admin-autosave.php:1297
542
- #: wppa-album-admin-autosave.php:1392 wppa-boxes-html.php:393
543
- #: wppa-boxes-html.php:507 wppa-photo-admin-autosave.php:1295
544
- #: wppa-photo-admin-autosave.php:1414 wppa-settings-autosave.php:455
545
- #: wppa-settings-autosave.php:608 wppa-settings-autosave.php:630
546
- #: wppa-settings-autosave.php:1330 wppa-settings-autosave.php:1351
547
- #: wppa-settings-autosave.php:2716 wppa-settings-autosave.php:2737
548
- #: wppa-settings-autosave.php:3035 wppa-settings-autosave.php:3059
549
- #: wppa-settings-autosave.php:3519 wppa-settings-autosave.php:3633
550
- #: wppa-settings-autosave.php:4201 wppa-settings-autosave.php:4222
551
- #: wppa-settings-autosave.php:4398 wppa-settings-autosave.php:4422
552
- #: wppa-settings-autosave.php:5421 wppa-settings-autosave.php:5929
553
- #: wppa-settings-autosave.php:5951 wppa-settings-autosave.php:6531
554
- #: wppa-settings-autosave.php:6555 wppa-settings-autosave.php:7483
555
- #: wppa-settings-autosave.php:8086 wppa-settings-autosave.php:8242
556
  #: wppa-thumbnail-widget.php:204 wppa-upload.php:166
557
  msgid "Name"
558
  msgstr ""
559
 
560
- #: wppa-ajax.php:814 wppa-ajax.php:1214 wppa-album-admin-autosave.php:998
561
  #: wppa-album-admin-autosave.php:1135 wppa-album-admin-autosave.php:1307
562
- #: wppa-album-admin-autosave.php:1402 wppa-photo-admin-autosave.php:1296
563
- #: wppa-photo-admin-autosave.php:1415 wppa-settings-autosave.php:456
564
- #: wppa-settings-autosave.php:609 wppa-settings-autosave.php:631
565
- #: wppa-settings-autosave.php:1331 wppa-settings-autosave.php:1352
566
- #: wppa-settings-autosave.php:2717 wppa-settings-autosave.php:2738
567
- #: wppa-settings-autosave.php:3036 wppa-settings-autosave.php:3060
568
- #: wppa-settings-autosave.php:4202 wppa-settings-autosave.php:4223
569
- #: wppa-settings-autosave.php:4399 wppa-settings-autosave.php:4423
570
- #: wppa-settings-autosave.php:5422 wppa-settings-autosave.php:5930
571
- #: wppa-settings-autosave.php:5952 wppa-settings-autosave.php:6532
572
- #: wppa-settings-autosave.php:6556 wppa-settings-autosave.php:8087
573
- #: wppa-settings-autosave.php:8109 wppa-settings-autosave.php:8149
574
- #: wppa-settings-autosave.php:8171 wppa-settings-autosave.php:8217
575
- #: wppa-settings-autosave.php:8243 wppa-widget-admin.php:195
576
  #, fuzzy
577
  msgid "Description"
578
  msgstr "Inserisci / modifica la descrizione per questo album."
579
 
580
- #: wppa-ajax.php:818
581
  #, fuzzy
582
  msgid "Unbalanced tags in album description!"
583
  msgstr "Inserisci / modifica la descrizione per questo album."
584
 
585
- #: wppa-ajax.php:825
586
  msgid "Album order #"
587
  msgstr ""
588
 
589
- #: wppa-ajax.php:828
590
  #, fuzzy
591
  msgid "Cover photo"
592
  msgstr "Se fotos"
593
 
594
- #: wppa-ajax.php:831
595
  #, fuzzy
596
  msgid "Parent album"
597
  msgstr "Impossibile creare album. "
598
 
599
- #: wppa-ajax.php:836 wppa-settings-autosave.php:3513
600
  #, fuzzy
601
  msgid "Photo order"
602
  msgstr "Dagens foto"
603
 
604
- #: wppa-ajax.php:839
605
  msgid "Use Alt thumbsize"
606
  msgstr ""
607
 
608
- #: wppa-ajax.php:842
609
  msgid "Cover Type"
610
  msgstr ""
611
 
612
- #: wppa-ajax.php:845 wppa-settings-autosave.php:4424
613
- #: wppa-settings-autosave.php:5423
614
  #, fuzzy
615
  msgid "Link type"
616
  msgstr "Link til"
617
 
618
- #: wppa-ajax.php:848 wppa-album-covers.php:1098
619
  msgid "Link to"
620
  msgstr "Link til"
621
 
622
- #: wppa-ajax.php:851 wppa-ajax.php:1235 wppa-album-admin-autosave.php:1009
623
  #: wppa-album-admin-autosave.php:1146 wppa-album-admin-autosave.php:1318
624
- #: wppa-album-admin-autosave.php:1413 wppa-boxes-html.php:515
625
- #: wppa-photo-admin-autosave.php:1298 wppa-photo-admin-autosave.php:1417
626
  #: wppa-widget-admin.php:196
627
  msgid "Owner"
628
  msgstr ""
629
 
630
- #: wppa-ajax.php:853
631
  #, php-format
632
  msgid "User %s does not exist"
633
  msgstr ""
634
 
635
- #: wppa-ajax.php:858 wppa-ajax.php:864
636
  #, fuzzy
637
  msgid "Upload limit count"
638
  msgstr "Indsend foto"
639
 
640
- #: wppa-ajax.php:871
641
  #, fuzzy
642
  msgid "Upload limit time"
643
  msgstr "Uploaded fil er ikke et billede"
644
 
645
- #: wppa-ajax.php:875
646
  msgid "Default tags"
647
  msgstr ""
648
 
649
- #: wppa-ajax.php:880
650
  msgid "Categories"
651
  msgstr ""
652
 
653
- #: wppa-ajax.php:883
654
  msgid "Sub albums sort order"
655
  msgstr ""
656
 
657
- #: wppa-ajax.php:891 wppa-ajax.php:1304
658
  msgid "Schedule date/time"
659
  msgstr ""
660
 
661
- #: wppa-ajax.php:904 wppa-ajax.php:930
662
  #, php-format
663
  msgid "<b>%s</b> of album %s updated"
664
  msgstr ""
665
 
666
- #: wppa-ajax.php:912
667
  msgid "All photos set to scheduled per date"
668
  msgstr ""
669
 
670
- #: wppa-ajax.php:939
671
  #, php-format
672
  msgid "An error occurred while trying to update <b>%s</b> of album %s"
673
  msgstr ""
674
 
675
- #: wppa-ajax.php:940 wppa-ajax.php:1189 wppa-ajax.php:1294
676
  msgid "Press CTRL+F5 and try again."
677
  msgstr ""
678
 
679
- #: wppa-ajax.php:954
680
  msgid "You do not have the rights to update comment status"
681
  msgstr ""
682
 
683
- #: wppa-ajax.php:963
684
  #, php-format
685
  msgid "Status of comment #%s updated"
686
  msgstr ""
687
 
688
- #: wppa-ajax.php:966
689
  #, php-format
690
  msgid "Error updating status comment #%s"
691
  msgstr ""
692
 
693
- #: wppa-ajax.php:977
694
  msgid "You do not have the rights to change photos"
695
  msgstr ""
696
 
697
- #: wppa-ajax.php:986
698
  msgid "Watermark applied"
699
  msgstr ""
700
 
701
- #: wppa-ajax.php:990
702
  msgid "An error occured while trying to apply a watermark"
703
  msgstr ""
704
 
705
- #: wppa-ajax.php:1003
706
  msgid "You do not have the rights to update photo information"
707
  msgstr ""
708
 
709
- #: wppa-ajax.php:1009
710
  #, php-format
711
  msgid "%s updated to %s."
712
  msgstr ""
713
 
714
- #: wppa-ajax.php:1059
715
  #, php-format
716
  msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
717
  msgstr ""
718
 
719
- #: wppa-ajax.php:1063
720
  msgid "Exif date/time updated"
721
  msgstr ""
722
 
723
- #: wppa-ajax.php:1069
724
  msgid "Enter a value > -90 and < 90"
725
  msgstr ""
726
 
727
- #: wppa-ajax.php:1077
728
  msgid "Lattitude updated"
729
  msgstr ""
730
 
731
- #: wppa-ajax.php:1079
732
  #, fuzzy
733
  msgid "Could not update lattitude"
734
  msgstr "Impossibile creare album. "
735
 
736
- #: wppa-ajax.php:1085
737
  msgid "Enter a value > -180 and < 180"
738
  msgstr ""
739
 
740
- #: wppa-ajax.php:1093
741
  msgid "Longitude updated"
742
  msgstr ""
743
 
744
- #: wppa-ajax.php:1095
745
  #, fuzzy
746
  msgid "Could not update longitude"
747
  msgstr "Impossibile creare album. "
748
 
749
- #: wppa-ajax.php:1103
750
  #, fuzzy
751
  msgid "Photo files remade"
752
  msgstr "Dagens foto"
753
 
754
- #: wppa-ajax.php:1106
755
  #, fuzzy
756
  msgid "Could not remake files"
757
  msgstr "Impossibile creare album. "
758
 
759
- #: wppa-ajax.php:1112
760
  #, fuzzy
761
  msgid "Thumbnail remade"
762
  msgstr "Foto Top Ti"
763
 
764
- #: wppa-ajax.php:1115
765
  #, fuzzy
766
  msgid "Could not remake thumbnail"
767
  msgstr "Impossibile creare album. "
768
 
769
- #: wppa-ajax.php:1125 wppa-photo-admin-autosave.php:182
770
- #: wppa-settings-autosave.php:3329 wppa-tinymce-scripts.php:289
771
- #: wppa-tinymce-shortcodes.php:518 wppa-widget-admin.php:77
772
  msgid "left"
773
  msgstr ""
774
 
775
- #: wppa-ajax.php:1129 wppa-photo-admin-autosave.php:184
776
  msgid "180&deg;"
777
  msgstr ""
778
 
779
- #: wppa-ajax.php:1133 wppa-photo-admin-autosave.php:186
780
- #: wppa-settings-autosave.php:3329 wppa-tinymce-scripts.php:291
781
- #: wppa-tinymce-shortcodes.php:520 wppa-widget-admin.php:79
782
  msgid "right"
783
  msgstr ""
784
 
785
- #: wppa-ajax.php:1141
786
  #, fuzzy, php-format
787
  msgid "Photo %s rotated %s"
788
  msgstr "Foto %s af %s"
789
 
790
- #: wppa-ajax.php:1144
791
  #, php-format
792
  msgid "An error occurred while trying to rotate photo %s"
793
  msgstr ""
794
 
795
- #: wppa-ajax.php:1154 wppa-ajax.php:1177 wppa-photo-admin-autosave.php:1032
796
- #: wppa-photo-admin-autosave.php:1050
797
  #, fuzzy, php-format
798
  msgid "A photo with filename %s already exists in album %s."
799
  msgstr "Il file %s che hai caricato non è un file .png"
800
 
801
- #: wppa-ajax.php:1164
802
  #, fuzzy, php-format
803
  msgid "Photo %s has been moved to album %s (%s)"
804
  msgstr "Il file %s no è supportato ed è stato rimosso."
805
 
806
- #: wppa-ajax.php:1167
807
  #, php-format
808
  msgid "An error occurred while trying to move photo %s"
809
  msgstr ""
810
 
811
- #: wppa-ajax.php:1185
812
  #, php-format
813
  msgid "Photo %s copied to album %s (%s)"
814
  msgstr ""
815
 
816
- #: wppa-ajax.php:1188
817
  #, php-format
818
  msgid "An error occurred while trying to copy photo %s"
819
  msgstr ""
820
 
821
- #: wppa-ajax.php:1218 wppa-ajax.php:1756
822
  #, fuzzy
823
  msgid "Unbalanced tags in photo description!"
824
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
825
 
826
- #: wppa-ajax.php:1224
827
  #, fuzzy
828
  msgid "Photo order #"
829
  msgstr "Dagens foto"
830
 
831
- #: wppa-ajax.php:1229
832
  #, php-format
833
  msgid "User %s does not exists"
834
  msgstr ""
835
 
836
- #: wppa-ajax.php:1238
837
  #, fuzzy
838
  msgid "Link url"
839
  msgstr "Link til"
840
 
841
- #: wppa-ajax.php:1241
842
  #, fuzzy
843
  msgid "Link title"
844
  msgstr "Link til"
845
 
846
- #: wppa-ajax.php:1244
847
  #, fuzzy
848
  msgid "Link target"
849
  msgstr "Link til"
850
 
851
- #: wppa-ajax.php:1250 wppa-multitag-widget.php:35 wppa-multitag-widget.php:65
852
- #: wppa-tagcloud-widget.php:35 wppa-tagcloud-widget.php:62
853
  #, fuzzy
854
  msgid "Photo Tags"
855
  msgstr "Foto"
856
 
857
- #: wppa-ajax.php:1255 wppa-comment-admin.php:310 wppa-comment-admin.php:397
858
- #: wppa-photo-admin-autosave.php:1297 wppa-photo-admin-autosave.php:1416
859
- #: wppa-settings-autosave.php:5955 wppa-settings-autosave.php:6535
860
- #: wppa-settings-autosave.php:8110 wppa-settings-autosave.php:8150
861
- #: wppa-settings-autosave.php:8172 wppa-settings-autosave.php:8218
862
  msgid "Status"
863
  msgstr ""
864
 
865
- #: wppa-ajax.php:1258
866
  msgid "HTML Alt"
867
  msgstr ""
868
 
869
- #: wppa-ajax.php:1262
870
  msgid "Video width"
871
  msgstr ""
872
 
873
- #: wppa-ajax.php:1264 wppa-ajax.php:1271
874
  #, fuzzy
875
  msgid "Please enter an integer value >= 0"
876
  msgstr "Skriv en kommentar"
877
 
878
- #: wppa-ajax.php:1269
879
  msgid "Video height"
880
  msgstr ""
881
 
882
- #: wppa-ajax.php:1286 wppa-ajax.php:1320
883
  #, php-format
884
  msgid "<b>%s</b> of video %s updated"
885
  msgstr ""
886
 
887
- #: wppa-ajax.php:1289 wppa-ajax.php:1323
888
  #, php-format
889
  msgid "<b>%s</b> of photo %s updated"
890
  msgstr ""
891
 
892
- #: wppa-ajax.php:1293
893
  #, php-format
894
  msgid "An error occurred while trying to update <b>%s</b> of photo %s"
895
  msgstr ""
896
 
897
- #: wppa-ajax.php:1349
898
  #, php-format
899
  msgid "<b>Custom field %s</b> of photo %s updated"
900
  msgstr ""
901
 
902
- #: wppa-ajax.php:1356
903
  #, fuzzy
904
  msgid "<b>Error during upload.</b>"
905
  msgstr "Fejl under upload"
906
 
907
- #: wppa-ajax.php:1381
908
  #, fuzzy
909
  msgid "Photo files updated."
910
  msgstr "Dagens foto"
911
 
912
- #: wppa-ajax.php:1386
913
  #, fuzzy
914
  msgid "Could not update files."
915
  msgstr "Impossibile creare album. "
916
 
917
- #: wppa-ajax.php:1403
 
 
 
 
 
918
  msgid "You do not have the rights to update settings"
919
  msgstr ""
920
 
921
- #: wppa-ajax.php:1484
922
  msgid "Capability granted"
923
  msgstr ""
924
 
925
- #: wppa-ajax.php:1489
926
  msgid "Capability withdrawn"
927
  msgstr ""
928
 
929
- #: wppa-ajax.php:1500
930
  msgid "Column width."
931
  msgstr ""
932
 
933
- #: wppa-ajax.php:1503
934
  msgid "Initial width."
935
  msgstr ""
936
 
937
- #: wppa-ajax.php:1506
938
  msgid "Full size."
939
  msgstr ""
940
 
941
- #: wppa-ajax.php:1509
942
  msgid "Max height."
943
  msgstr ""
944
 
945
- #: wppa-ajax.php:1512
946
  #, fuzzy
947
  msgid "Thumbnail size."
948
  msgstr "Foto Top Ti"
949
 
950
- #: wppa-ajax.php:1515
951
  #, fuzzy
952
  msgid "Thumbnail frame width"
953
  msgstr "Foto Top Ti"
954
 
955
- #: wppa-ajax.php:1518
956
  #, fuzzy
957
  msgid "Thumbnail frame height"
958
  msgstr "Miniatura"
959
 
960
- #: wppa-ajax.php:1521
961
  #, fuzzy
962
  msgid "Thumbnail Spacing"
963
  msgstr "Foto Top Ti"
964
 
965
- #: wppa-ajax.php:1524
966
  #, fuzzy
967
  msgid "Photocount treshold."
968
  msgstr "Billede ikke fundet"
969
 
970
- #: wppa-ajax.php:1527
971
  #, fuzzy
972
  msgid "Thumb page size."
973
  msgstr "Foto Top Ti"
974
 
975
- #: wppa-ajax.php:1530
976
  #, fuzzy
977
  msgid "Cover photo size."
978
  msgstr "Indtast foto navn"
979
 
980
- #: wppa-ajax.php:1533
981
  msgid "Album page size."
982
  msgstr ""
983
 
984
- #: wppa-ajax.php:1536
985
  #, fuzzy
986
  msgid "Number of TopTen photos"
987
  msgstr "Foto Top Ti"
988
 
989
- #: wppa-ajax.php:1539
990
  #, fuzzy
991
  msgid "Widget image thumbnail size"
992
  msgstr "Se"
993
 
994
- #: wppa-ajax.php:1542 wppa-settings-autosave.php:1007
995
  msgid "Max Cover width"
996
  msgstr ""
997
 
998
- #: wppa-ajax.php:1545
999
  #, fuzzy
1000
  msgid "Minimal description height"
1001
  msgstr "Inserisci / modifica la descrizione per questo album."
1002
 
1003
- #: wppa-ajax.php:1548
1004
  msgid "Minimal cover height"
1005
  msgstr ""
1006
 
1007
- #: wppa-ajax.php:1551
1008
  msgid "Minimal text frame height"
1009
  msgstr ""
1010
 
1011
- #: wppa-ajax.php:1554
1012
  msgid "Border width"
1013
  msgstr ""
1014
 
1015
- #: wppa-ajax.php:1557 wppa-settings-autosave.php:707
1016
  msgid "Border radius"
1017
  msgstr ""
1018
 
1019
- #: wppa-ajax.php:1560 wppa-settings-autosave.php:718
1020
  msgid "Box spacing"
1021
  msgstr ""
1022
 
1023
- #: wppa-ajax.php:1566 wppa-settings-autosave.php:982
1024
  msgid "Popup size"
1025
  msgstr ""
1026
 
1027
- #: wppa-ajax.php:1569
1028
  msgid "Fullsize border width"
1029
  msgstr ""
1030
 
1031
- #: wppa-ajax.php:1572
1032
  msgid "Lightbox Bordersize"
1033
  msgstr ""
1034
 
1035
- #: wppa-ajax.php:1575
1036
  msgid "Number of Comment widget entries"
1037
  msgstr ""
1038
 
1039
- #: wppa-ajax.php:1578
1040
  msgid "Comment Widget image thumbnail size"
1041
  msgstr ""
1042
 
1043
- #: wppa-ajax.php:1581 wppa-ajax.php:1584 wppa-ajax.php:1587
1044
  msgid "Opacity."
1045
  msgstr ""
1046
 
1047
- #: wppa-ajax.php:1590
1048
- #, fuzzy
1049
- msgid "Filter priority"
1050
- msgstr "Lukkerhastighedsprioritet AE"
1051
-
1052
- #: wppa-ajax.php:1593
1053
- #, fuzzy
1054
- msgid "Shortcode_priority"
1055
- msgstr "Lukkerhastighedsprioritet AE"
1056
-
1057
- #: wppa-ajax.php:1596 wppa-settings-autosave.php:1113
1058
  msgid "Avatar size"
1059
  msgstr ""
1060
 
1061
- #: wppa-ajax.php:1599 wppa-ajax.php:1602
1062
  msgid "Watermark opacity"
1063
  msgstr ""
1064
 
1065
- #: wppa-ajax.php:1605 wppa-settings-autosave.php:1282
1066
  msgid "Number of text lines"
1067
  msgstr ""
1068
 
1069
- #: wppa-ajax.php:1608 wppa-settings-autosave.php:4100
1070
  msgid "Overlay opacity"
1071
  msgstr ""
1072
 
1073
- #: wppa-ajax.php:1611 wppa-settings-autosave.php:6980
1074
  #, fuzzy
1075
  msgid "Upload limit"
1076
  msgstr "Indsend foto"
1077
 
1078
- #: wppa-ajax.php:1614 wppa-settings-autosave.php:3808
1079
  msgid "Notify inappropriate"
1080
  msgstr ""
1081
 
1082
- #: wppa-ajax.php:1617
1083
  msgid "Dislike pending"
1084
  msgstr ""
1085
 
1086
- #: wppa-ajax.php:1620
1087
  #, fuzzy
1088
  msgid "Dislike delete"
1089
  msgstr "Slet"
1090
 
1091
- #: wppa-ajax.php:1623 wppa-settings-autosave.php:6631
1092
  msgid "Max execution time"
1093
  msgstr ""
1094
 
1095
- #: wppa-ajax.php:1628
1096
  msgid "Cube Points points"
1097
  msgstr ""
1098
 
1099
- #: wppa-ajax.php:1631
1100
  msgid "JPG Image quality"
1101
  msgstr ""
1102
 
1103
- #: wppa-ajax.php:1637 wppa-settings-autosave.php:3722
1104
  #, fuzzy
1105
  msgid "Number of coverphotos"
1106
  msgstr "Se forside fotos"
1107
 
1108
- #: wppa-ajax.php:1640 wppa-settings-autosave.php:3779
1109
  msgid "Dislike value"
1110
  msgstr ""
1111
 
1112
- #: wppa-ajax.php:1643 wppa-settings-autosave.php:838
1113
  #, fuzzy
1114
  msgid "Slideshow pagesize"
1115
  msgstr "Slideshow"
1116
 
1117
- #: wppa-ajax.php:1646 wppa-settings-autosave.php:736
1118
  msgid "Max Pagelinks"
1119
  msgstr ""
1120
 
1121
- #: wppa-ajax.php:1653
1122
  msgid "Ratings cleared"
1123
  msgstr ""
1124
 
1125
- #: wppa-ajax.php:1656
1126
  #, fuzzy
1127
  msgid "Could not clear ratings"
1128
  msgstr "Impossibile creare album. "
1129
 
1130
- #: wppa-ajax.php:1665
1131
  msgid "Viewcounts cleared"
1132
  msgstr ""
1133
 
1134
- #: wppa-ajax.php:1668
1135
  #, fuzzy
1136
  msgid "Could not clear viewcounts"
1137
  msgstr "Impossibile creare album. "
1138
 
1139
- #: wppa-ajax.php:1678
1140
  #, fuzzy
1141
  msgid "IPTC data cleared"
1142
  msgstr "Ingen IPTC data"
1143
 
1144
- #: wppa-ajax.php:1679
1145
  msgid "Refresh this page to clear table X"
1146
  msgstr ""
1147
 
1148
- #: wppa-ajax.php:1683
1149
  #, fuzzy
1150
  msgid "Could not clear IPTC data"
1151
  msgstr "Impossibile creare album. "
1152
 
1153
- #: wppa-ajax.php:1693
1154
  #, fuzzy
1155
  msgid "EXIF data cleared"
1156
  msgstr "Ingen EXIF data"
1157
 
1158
- #: wppa-ajax.php:1694
1159
  msgid "Refresh this page to clear table XI"
1160
  msgstr ""
1161
 
1162
- #: wppa-ajax.php:1698
1163
  #, fuzzy
1164
  msgid "Could not clear EXIF data"
1165
  msgstr "Impossibile creare album. "
1166
 
1167
- #: wppa-ajax.php:1706
1168
  msgid "Recuperation performed"
1169
  msgstr ""
1170
 
1171
- #: wppa-ajax.php:1721
1172
  msgid ""
1173
  "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1174
  "#77bbff"
1175
  msgstr ""
1176
 
1177
- #: wppa-ajax.php:1747
1178
  msgid "You just changed a setting that requires the recalculation of ratings."
1179
  msgstr ""
1180
 
1181
- #: wppa-ajax.php:1748 wppa-ajax.php:2115
1182
  msgid "Please run the appropriate action in Table VIII."
1183
  msgstr ""
1184
 
1185
- #: wppa-ajax.php:1772 wppa-ajax.php:1788
1186
  #, php-format
1187
  msgid "Unable to create or write to %s"
1188
  msgstr ""
1189
 
1190
- #: wppa-ajax.php:1781
1191
  msgid "Source can not be inside the wppa folder."
1192
  msgstr ""
1193
 
1194
- #: wppa-ajax.php:1798
1195
  msgid "The content must contain w#album"
1196
  msgstr ""
1197
 
1198
- #: wppa-ajax.php:1805
1199
  msgid "The content must contain w#lat and w#lon"
1200
  msgstr ""
1201
 
1202
- #: wppa-ajax.php:1847 wppa-ajax.php:1853
1203
  msgid "Members"
1204
  msgstr ""
1205
 
1206
- #: wppa-ajax.php:1847
1207
  msgid "Parent of the member albums"
1208
  msgstr ""
1209
 
1210
- #: wppa-ajax.php:1991
1211
  #, php-format
1212
  msgid "User %s has been blacklisted."
1213
  msgstr ""
1214
 
1215
- #: wppa-ajax.php:1994
1216
  #, php-format
1217
  msgid "User %s does not exist."
1218
  msgstr ""
1219
 
1220
- #: wppa-ajax.php:2017
1221
  msgid ""
1222
  "The content of the Custom box has been changed to display the Fotomoto "
1223
  "toolbar."
1224
  msgstr ""
1225
 
1226
- #: wppa-ajax.php:2021 wppa-ajax.php:2036
1227
  msgid "The display of the custom box has been enabled"
1228
  msgstr ""
1229
 
1230
- #: wppa-ajax.php:2032
1231
  msgid "The content of the Custom box has been changed to display maps."
1232
  msgstr ""
1233
 
1234
- #: wppa-ajax.php:2062
1235
  msgid "This value can not be empty"
1236
  msgstr ""
1237
 
1238
- #: wppa-ajax.php:2094
1239
  #, php-format
1240
  msgid "Failed to set %s to %s"
1241
  msgstr ""
1242
 
1243
- #: wppa-ajax.php:2099
1244
  #, php-format
1245
  msgid "Setting %s updated to %s"
1246
  msgstr ""
1247
 
1248
- #: wppa-ajax.php:2114
1249
  msgid ""
1250
  "You just changed a setting that requires the regeneration of thumbnails."
1251
  msgstr ""
1252
 
1253
- #: wppa-ajax.php:2169
1254
  msgid "Missing album id"
1255
  msgstr ""
1256
 
1257
- #: wppa-ajax.php:2189
1258
  msgid "You do not have the rights to delete this album"
1259
  msgstr ""
1260
 
1261
- #: wppa-ajax.php:2230 wppa-ajax.php:2237
1262
  #, fuzzy
1263
  msgid "You may also enter:"
1264
  msgstr "Du kan indsende efter"
1265
 
1266
- #: wppa-ajax.php:2231 wppa-ajax.php:2238
1267
  #, fuzzy
1268
  msgid "You may also leave/set this blank"
1269
  msgstr "Puoi anche lasciare/impostare a blank"
@@ -1310,8 +1305,8 @@ msgstr ""
1310
  msgid "Top of page"
1311
  msgstr ""
1312
 
1313
- #: wppa-album-admin-autosave.php:114 wppa-functions.php:3848
1314
- #: wppa-settings-autosave.php:6870 wppa-wpdb-insert.php:329
1315
  #, fuzzy
1316
  msgid "New Album"
1317
  msgstr "Impossibile creare album. "
@@ -1336,7 +1331,7 @@ msgstr ""
1336
  msgid "Edit Album Information"
1337
  msgstr "Rediger!"
1338
 
1339
- #: wppa-album-admin-autosave.php:172 wppa-settings-autosave.php:295
1340
  #, fuzzy
1341
  msgid "Auto Save"
1342
  msgstr "Automatisk, afskudt"
@@ -1380,8 +1375,8 @@ msgstr ""
1380
  msgid "Type the name of the album. Do not leave this empty."
1381
  msgstr ""
1382
 
1383
- #: wppa-album-admin-autosave.php:211 wppa-photo-admin-autosave.php:685
1384
- #: wppa-photo-admin-autosave.php:710
1385
  #, fuzzy
1386
  msgid "Description:"
1387
  msgstr "Inserisci / modifica la descrizione per questo album."
@@ -1396,17 +1391,17 @@ msgstr "Inserisci / modifica la descrizione per questo album."
1396
  msgid "Enter / modify the description for this album."
1397
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
1398
 
1399
- #: wppa-album-admin-autosave.php:240 wppa-photo-admin-autosave.php:273
1400
  msgid "Modified:"
1401
  msgstr ""
1402
 
1403
- #: wppa-album-admin-autosave.php:249 wppa-thumbnails.php:644
1404
- #: wppa-thumbnails.php:1419
1405
  #, fuzzy
1406
  msgid "Views:"
1407
  msgstr "Se"
1408
 
1409
- #: wppa-album-admin-autosave.php:262 wppa-photo-admin-autosave.php:259
1410
  msgid "Owned by:"
1411
  msgstr ""
1412
 
@@ -1436,8 +1431,8 @@ msgid ""
1436
  "here."
1437
  msgstr ""
1438
 
1439
- #: wppa-album-admin-autosave.php:309 wppa-tinymce-shortcodes.php:298
1440
- #: wppa-tinymce-shortcodes.php:324 wppa-tinymce-shortcodes.php:463
1441
  #, fuzzy
1442
  msgid "Parent album:"
1443
  msgstr "Impossibile creare album. "
@@ -1453,69 +1448,69 @@ msgid "Photo order:"
1453
  msgstr "Dagens foto"
1454
 
1455
  #: wppa-album-admin-autosave.php:333 wppa-album-admin-autosave.php:434
1456
- #: wppa-settings-autosave.php:3556 wppa-settings-autosave.php:3580
1457
  #, fuzzy
1458
  msgid "--- default ---"
1459
  msgstr "--- vises ikke ---"
1460
 
1461
  #: wppa-album-admin-autosave.php:334 wppa-album-admin-autosave.php:390
1462
- #: wppa-settings-autosave.php:3518 wppa-settings-autosave.php:3632
1463
  #: wppa-thumbnail-widget.php:203
1464
  msgid "Order #"
1465
  msgstr ""
1466
 
1467
  #: wppa-album-admin-autosave.php:336 wppa-album-admin-autosave.php:389
1468
- #: wppa-settings-autosave.php:3520 wppa-settings-autosave.php:3634
1469
  #: wppa-thumbnail-widget.php:205 wppa-widget-admin.php:142
1470
  msgid "Random"
1471
  msgstr ""
1472
 
1473
- #: wppa-album-admin-autosave.php:337 wppa-settings-autosave.php:3521
1474
  msgid "Rating mean value"
1475
  msgstr ""
1476
 
1477
- #: wppa-album-admin-autosave.php:338 wppa-bestof-widget.php:169
1478
- #: wppa-settings-autosave.php:3522 wppa-topten-widget.php:236
1479
  msgid "Number of votes"
1480
  msgstr ""
1481
 
1482
  #: wppa-album-admin-autosave.php:339 wppa-album-admin-autosave.php:394
1483
- #: wppa-settings-autosave.php:3523 wppa-settings-autosave.php:3635
1484
  msgid "Timestamp"
1485
  msgstr ""
1486
 
1487
- #: wppa-album-admin-autosave.php:340 wppa-photo-admin-autosave.php:284
1488
- #: wppa-settings-autosave.php:3524
1489
  #, fuzzy
1490
  msgid "EXIF Date"
1491
  msgstr "Ingen EXIF data"
1492
 
1493
- #: wppa-album-admin-autosave.php:341 wppa-settings-autosave.php:3525
1494
- #: wppa-settings-autosave.php:3636
1495
  msgid "Order # desc"
1496
  msgstr ""
1497
 
1498
- #: wppa-album-admin-autosave.php:342 wppa-settings-autosave.php:3526
1499
- #: wppa-settings-autosave.php:3637
1500
  msgid "Name desc"
1501
  msgstr ""
1502
 
1503
- #: wppa-album-admin-autosave.php:343 wppa-settings-autosave.php:3527
1504
  #: wppa-thumbnail-widget.php:206
1505
  msgid "Rating mean value desc"
1506
  msgstr ""
1507
 
1508
- #: wppa-album-admin-autosave.php:344 wppa-settings-autosave.php:3528
1509
  #: wppa-thumbnail-widget.php:207
1510
  msgid "Number of votes desc"
1511
  msgstr ""
1512
 
1513
- #: wppa-album-admin-autosave.php:345 wppa-settings-autosave.php:3529
1514
- #: wppa-settings-autosave.php:3638 wppa-thumbnail-widget.php:208
1515
  msgid "Timestamp desc"
1516
  msgstr ""
1517
 
1518
- #: wppa-album-admin-autosave.php:346 wppa-settings-autosave.php:3530
1519
  msgid "EXIF Date desc"
1520
  msgstr ""
1521
 
@@ -1559,21 +1554,21 @@ msgstr ""
1559
  msgid "Use alt thumbsize:"
1560
  msgstr ""
1561
 
1562
- #: wppa-album-admin-autosave.php:413 wppa-bestof-widget.php:181
1563
- #: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
1564
- #: wppa-topten-widget.php:244 wppa-topten-widget.php:252
1565
- #: wppa-topten-widget.php:257 wppa-topten-widget.php:262
1566
- #: wppa-topten-widget.php:267 wppa-topten-widget.php:272
1567
  #, fuzzy
1568
  msgid "no"
1569
  msgstr "--- ingen ---"
1570
 
1571
- #: wppa-album-admin-autosave.php:414 wppa-bestof-widget.php:180
1572
- #: wppa-bestof-widget.php:185 wppa-bestof-widget.php:190
1573
- #: wppa-super-view-widget.php:87 wppa-topten-widget.php:243
1574
- #: wppa-topten-widget.php:251 wppa-topten-widget.php:256
1575
- #: wppa-topten-widget.php:261 wppa-topten-widget.php:266
1576
- #: wppa-topten-widget.php:271
1577
  #, fuzzy
1578
  msgid "yes"
1579
  msgstr "&aring;r"
@@ -1588,29 +1583,29 @@ msgstr ""
1588
  msgid "Cover Type:"
1589
  msgstr ""
1590
 
1591
- #: wppa-album-admin-autosave.php:435 wppa-settings-autosave.php:1881
1592
- #: wppa-settings-autosave.php:3702
1593
  msgid "Standard"
1594
  msgstr ""
1595
 
1596
- #: wppa-album-admin-autosave.php:436 wppa-settings-autosave.php:3703
1597
  #, fuzzy
1598
  msgid "Long Descriptions"
1599
  msgstr "Inserisci / modifica la descrizione per questo album."
1600
 
1601
- #: wppa-album-admin-autosave.php:437 wppa-settings-autosave.php:3704
1602
  msgid "Image Factory"
1603
  msgstr ""
1604
 
1605
- #: wppa-album-admin-autosave.php:438 wppa-settings-autosave.php:3705
1606
  msgid "Standard mcr"
1607
  msgstr ""
1608
 
1609
- #: wppa-album-admin-autosave.php:439 wppa-settings-autosave.php:3706
1610
  msgid "Long Descriptions mcr"
1611
  msgstr ""
1612
 
1613
- #: wppa-album-admin-autosave.php:440 wppa-settings-autosave.php:3707
1614
  msgid "Image Factory mcr"
1615
  msgstr ""
1616
 
@@ -1640,37 +1635,37 @@ msgstr ""
1640
  msgid "Upload limit:"
1641
  msgstr "Indsend foto"
1642
 
1643
- #: wppa-album-admin-autosave.php:482 wppa-settings-autosave.php:5548
1644
- #: wppa-settings-autosave.php:6987
1645
  msgid "for ever"
1646
  msgstr ""
1647
 
1648
  #: wppa-album-admin-autosave.php:483 wppa-album-admin-autosave.php:500
1649
- #: wppa-settings-autosave.php:5549 wppa-settings-autosave.php:6988
1650
  #, fuzzy
1651
  msgid "per hour"
1652
  msgstr "1 time"
1653
 
1654
  #: wppa-album-admin-autosave.php:484 wppa-album-admin-autosave.php:501
1655
- #: wppa-settings-autosave.php:5550 wppa-settings-autosave.php:6989
1656
  #, fuzzy
1657
  msgid "per day"
1658
  msgstr "1 dag"
1659
 
1660
  #: wppa-album-admin-autosave.php:485 wppa-album-admin-autosave.php:502
1661
- #: wppa-settings-autosave.php:5551 wppa-settings-autosave.php:6990
1662
  #, fuzzy
1663
  msgid "per week"
1664
  msgstr "1 uge"
1665
 
1666
  #: wppa-album-admin-autosave.php:486 wppa-album-admin-autosave.php:503
1667
- #: wppa-settings-autosave.php:5552 wppa-settings-autosave.php:6991
1668
  #, fuzzy
1669
  msgid "per month"
1670
  msgstr "1 m&aring;ned"
1671
 
1672
  #: wppa-album-admin-autosave.php:487 wppa-album-admin-autosave.php:504
1673
- #: wppa-settings-autosave.php:5553 wppa-settings-autosave.php:6992
1674
  #, fuzzy
1675
  msgid "per year"
1676
  msgstr "1 &aring;r"
@@ -1691,11 +1686,11 @@ msgstr ""
1691
  msgid "Separate categories with commas."
1692
  msgstr ""
1693
 
1694
- #: wppa-album-admin-autosave.php:526 wppa-photo-admin-autosave.php:764
1695
  msgid "Examples:"
1696
  msgstr ""
1697
 
1698
- #: wppa-album-admin-autosave.php:532 wppa-photo-admin-autosave.php:768
1699
  #, fuzzy
1700
  msgid "- select -"
1701
  msgstr ""
@@ -1707,7 +1702,7 @@ msgstr ""
1707
  msgid "No categories yet"
1708
  msgstr "Intet album er defineret."
1709
 
1710
- #: wppa-album-admin-autosave.php:542 wppa-photo-admin-autosave.php:778
1711
  msgid "Select to add"
1712
  msgstr ""
1713
 
@@ -1755,21 +1750,21 @@ msgstr "Indsend mindst %d fotos til dette album!"
1755
  msgid "Link type:"
1756
  msgstr "Link til"
1757
 
1758
- #: wppa-album-admin-autosave.php:594 wppa-settings-autosave.php:7148
1759
  msgid "the sub-albums and thumbnails"
1760
  msgstr ""
1761
 
1762
- #: wppa-album-admin-autosave.php:595 wppa-settings-autosave.php:7149
1763
  #, fuzzy
1764
  msgid "the sub-albums"
1765
  msgstr "Se album"
1766
 
1767
- #: wppa-album-admin-autosave.php:596 wppa-settings-autosave.php:7150
1768
  #, fuzzy
1769
  msgid "the thumbnails"
1770
  msgstr "Se"
1771
 
1772
- #: wppa-album-admin-autosave.php:597 wppa-settings-autosave.php:7151
1773
  msgid "the album photos as slideshow"
1774
  msgstr ""
1775
 
@@ -1777,7 +1772,7 @@ msgstr ""
1777
  msgid "the link page with a clean url"
1778
  msgstr ""
1779
 
1780
- #: wppa-album-admin-autosave.php:599 wppa-settings-autosave.php:7152
1781
  msgid "no link at all"
1782
  msgstr ""
1783
 
@@ -1793,15 +1788,15 @@ msgid ""
1793
  "correct shortcode on the target page."
1794
  msgstr ""
1795
 
1796
- #: wppa-album-admin-autosave.php:614 wppa-bestof-widget.php:195
1797
  #: wppa-slideshow-widget.php:223 wppa-widget-admin.php:164
1798
  #: wppa-widget-admin.php:174
1799
  #, fuzzy
1800
  msgid "Link to:"
1801
  msgstr "Link til"
1802
 
1803
- #: wppa-album-admin-autosave.php:620 wppa-settings-autosave.php:8676
1804
- #: wppa-settings-autosave.php:8725
1805
  msgid "There are no pages (yet) to link to."
1806
  msgstr ""
1807
 
@@ -1867,7 +1862,7 @@ msgstr ""
1867
  msgid "Remake all"
1868
  msgstr ""
1869
 
1870
- #: wppa-album-admin-autosave.php:720 wppa-photo-admin-autosave.php:878
1871
  msgid "Remark:"
1872
  msgstr ""
1873
 
@@ -1890,7 +1885,7 @@ msgstr "Godkend kommentar administration"
1890
  msgid "Moderate photo"
1891
  msgstr "Vedligehold"
1892
 
1893
- #: wppa-album-admin-autosave.php:767 wppa-functions.php:2110
1894
  #: wppa-photo-admin-autosave.php:24
1895
  msgid "Edit photo"
1896
  msgstr "N&aelig;ste billede"
@@ -1900,13 +1895,13 @@ msgstr "N&aelig;ste billede"
1900
  msgid "Delete Album"
1901
  msgstr "Impossibile creare album. "
1902
 
1903
- #: wppa-album-admin-autosave.php:793 wppa-boxes-html.php:804
1904
- #: wppa-breadcrumb.php:284 wppa-breadcrumb.php:302 wppa-breadcrumb.php:320
1905
- #: wppa-breadcrumb.php:338 wppa-breadcrumb.php:393 wppa-breadcrumb.php:418
1906
- #: wppa-breadcrumb.php:539 wppa-comment-admin.php:66 wppa-featen-widget.php:136
1907
  #: wppa-lasten-widget.php:172 wppa-slideshow-widget.php:201
1908
- #: wppa-thumbnail-widget.php:191 wppa-topten-widget.php:217
1909
- #: wppa-upload-widget.php:81 wppa-upload.php:116 wppa-upload.php:204
1910
  #: wppa-upload.php:251
1911
  #, fuzzy
1912
  msgid "Album:"
@@ -1930,9 +1925,9 @@ msgstr ""
1930
  #: wppa-album-admin-autosave.php:1182 wppa-album-admin-autosave.php:1354
1931
  #: wppa-album-admin-autosave.php:1449 wppa-album-admin-autosave.php:1635
1932
  #: wppa-comment-admin.php:312 wppa-comment-admin.php:381
1933
- #: wppa-comment-admin.php:399 wppa-functions.php:1922 wppa-links.php:724
1934
- #: wppa-links.php:742 wppa-photo-admin-autosave.php:1244
1935
- #: wppa-photo-admin-autosave.php:1312 wppa-thumbnails.php:589
1936
  msgid "Delete"
1937
  msgstr "Slet"
1938
 
@@ -1940,7 +1935,7 @@ msgstr "Slet"
1940
  msgid "Move to:"
1941
  msgstr ""
1942
 
1943
- #: wppa-album-admin-autosave.php:809 wppa-settings-autosave.php:2650
1944
  msgid "Cancel"
1945
  msgstr "Cancella"
1946
 
@@ -1973,7 +1968,7 @@ msgstr ""
1973
 
1974
  #: wppa-album-admin-autosave.php:978 wppa-album-admin-autosave.php:1115
1975
  #: wppa-album-admin-autosave.php:1286 wppa-album-admin-autosave.php:1381
1976
- #: wppa-photo-admin-autosave.php:1293 wppa-photo-admin-autosave.php:1412
1977
  msgid "ID"
1978
  msgstr ""
1979
 
@@ -2181,14 +2176,14 @@ msgstr "Se"
2181
  msgid "album"
2182
  msgstr "album"
2183
 
2184
- #: wppa-album-covers.php:1207 wppa-settings-autosave.php:1226
2185
- #: wppa-settings-autosave.php:5585
2186
  msgid "albums"
2187
  msgstr "album"
2188
 
2189
- #: wppa-album-covers.php:1216 wppa-boxes-html.php:1131 wppa-breadcrumb.php:152
2190
- #: wppa-breadcrumb.php:158 wppa-breadcrumb.php:165 wppa-breadcrumb.php:366
2191
- #: wppa-breadcrumb.php:371 wppa-functions.php:4249 wppa-utils.php:1476
2192
  msgid "and"
2193
  msgstr "og"
2194
 
@@ -2197,11 +2192,11 @@ msgid "photo"
2197
  msgstr "foto"
2198
 
2199
  #: wppa-album-covers.php:1224 wppa-album-covers.php:1228
2200
- #: wppa-settings-autosave.php:692 wppa-settings-autosave.php:731
2201
- #: wppa-settings-autosave.php:1146 wppa-settings-autosave.php:1186
2202
- #: wppa-settings-autosave.php:1206 wppa-settings-autosave.php:1246
2203
- #: wppa-settings-autosave.php:3726 wppa-settings-autosave.php:5569
2204
- #: wppa-settings-autosave.php:6985
2205
  msgid "photos"
2206
  msgstr "fotos"
2207
 
@@ -2210,14 +2205,14 @@ msgstr "fotos"
2210
  msgid "New!"
2211
  msgstr "Nuovo!"
2212
 
2213
- #: wppa-album-covers.php:1273 wppa-thumbnails.php:1875 wppa-thumbnails.php:1876
2214
  #, fuzzy
2215
  msgid "New"
2216
  msgstr "Nuovo!"
2217
 
2218
- #: wppa-album-covers.php:1295 wppa-boxes-html.php:828 wppa-non-admin.php:580
2219
- #: wppa-settings-autosave.php:2122 wppa-settings-autosave.php:5046
2220
- #: wppa-settings-autosave.php:7297
2221
  msgid "Slideshow"
2222
  msgstr "Slideshow"
2223
 
@@ -2229,7 +2224,7 @@ msgstr "Se fotos"
2229
  msgid "Categories:"
2230
  msgstr ""
2231
 
2232
- #: wppa-album-covers.php:1333 wppa-breadcrumb.php:378 wppa-breadcrumb.php:383
2233
  msgid "Category:"
2234
  msgstr ""
2235
 
@@ -2242,14 +2237,14 @@ msgid "Album navigator"
2242
  msgstr ""
2243
 
2244
  #: wppa-album-navigator-widget.php:92 wppa-album-widget.php:318
2245
- #: wppa-bestof-widget.php:130 wppa-comment-widget.php:118
2246
- #: wppa-featen-widget.php:133 wppa-gp-widget.php:89 wppa-lasten-widget.php:169
2247
- #: wppa-multitag-widget.php:71 wppa-potd-widget.php:185 wppa-qr-widget.php:89
2248
- #: wppa-search-widget.php:71 wppa-slideshow-widget.php:200
2249
- #: wppa-super-view-widget.php:75 wppa-tagcloud-widget.php:67
2250
- #: wppa-thumbnail-widget.php:186 wppa-topten-widget.php:214
2251
- #: wppa-upldr-widget.php:175 wppa-upload-widget.php:79
2252
- #: wppa-widget-admin.php:177
2253
  msgid "Title:"
2254
  msgstr ""
2255
 
@@ -2324,9 +2319,9 @@ msgstr ""
2324
  "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
2325
  "per i titoli delle copertine degli album."
2326
 
2327
- #: wppa-album-widget.php:351 wppa-comment-widget.php:119
2328
- #: wppa-featen-widget.php:144 wppa-lasten-widget.php:202
2329
- #: wppa-thumbnail-widget.php:234 wppa-topten-widget.php:276
2330
  msgid ""
2331
  "You can set the sizes in this widget in the <b>Photo Albums -> Settings</b> "
2332
  "admin page."
@@ -2344,310 +2339,300 @@ msgid "WPPA+ Best Of Rated Photos"
2344
  msgstr "fotos"
2345
 
2346
  #: wppa-bestof-widget.php:16 wppa-bestof-widget.php:50
2347
- #: wppa-bestof-widget.php:108
2348
  #, fuzzy
2349
  msgid "Best Of Photos"
2350
  msgstr "fotos"
2351
 
2352
- #: wppa-bestof-widget.php:151
2353
  #, fuzzy
2354
  msgid "Photo(s)"
2355
  msgstr "Foto"
2356
 
2357
- #: wppa-bestof-widget.php:152
2358
  msgid "Owner(s)"
2359
  msgstr ""
2360
 
2361
- #: wppa-bestof-widget.php:157
2362
  #, fuzzy
2363
  msgid "Last week"
2364
  msgstr "1 uge"
2365
 
2366
- #: wppa-bestof-widget.php:158
2367
  #, fuzzy
2368
  msgid "This week"
2369
  msgstr "1 uge"
2370
 
2371
- #: wppa-bestof-widget.php:159
2372
  #, fuzzy
2373
  msgid "Last month"
2374
  msgstr "1 m&aring;ned"
2375
 
2376
- #: wppa-bestof-widget.php:160
2377
  #, fuzzy
2378
  msgid "This month"
2379
  msgstr "1 m&aring;ned"
2380
 
2381
- #: wppa-bestof-widget.php:161
2382
  #, fuzzy
2383
  msgid "Last year"
2384
  msgstr "1 &aring;r"
2385
 
2386
- #: wppa-bestof-widget.php:162
2387
  #, fuzzy
2388
  msgid "This year"
2389
  msgstr "1 &aring;r"
2390
 
2391
- #: wppa-bestof-widget.php:167
2392
  msgid "Number of max ratings"
2393
  msgstr ""
2394
 
2395
- #: wppa-bestof-widget.php:168 wppa-topten-widget.php:235
2396
  #, fuzzy
2397
  msgid "Mean value"
2398
  msgstr "Mean value:"
2399
 
2400
- #: wppa-bestof-widget.php:177 wppa-topten-widget.php:248
2401
  #: wppa-widget-admin.php:188
2402
  msgid "Subtitle:"
2403
  msgstr ""
2404
 
2405
- #: wppa-bestof-widget.php:178
2406
  #, fuzzy
2407
  msgid "No of max ratings:"
2408
  msgstr "Altezza massima."
2409
 
2410
- #: wppa-bestof-widget.php:183 wppa-topten-widget.php:259
2411
  #, fuzzy
2412
  msgid "Mean rating:"
2413
  msgstr "Valutazione:"
2414
 
2415
- #: wppa-bestof-widget.php:188 wppa-topten-widget.php:264
2416
  #, fuzzy
2417
  msgid "Rating count:"
2418
  msgstr "Bed&oslash;mmelse: %s"
2419
 
2420
- #: wppa-bestof-widget.php:197 wppa-common-functions.php:1939 wppa-items.php:362
2421
- #: wppa-settings-autosave.php:1295 wppa-settings-autosave.php:1616
2422
- #: wppa-settings-autosave.php:3315 wppa-settings-autosave.php:3329
2423
- #: wppa-settings-autosave.php:3517 wppa-settings-autosave.php:3631
2424
- #: wppa-settings-autosave.php:5117 wppa-settings-autosave.php:6861
2425
- #: wppa-settings-autosave.php:7003 wppa-settings-autosave.php:7059
2426
- #: wppa-settings-autosave.php:7847 wppa-settings-autosave.php:8003
2427
  #: wppa-thumbnail-widget.php:202 wppa-tinymce-scripts.php:288
2428
- #: wppa-tinymce-shortcodes.php:517 wppa-upload.php:1528 wppa-watermark.php:520
2429
  #: wppa-widget-admin.php:76 wppa-widget-admin.php:193
2430
  msgid "--- none ---"
2431
  msgstr "--- ingen ---"
2432
 
2433
- #: wppa-bestof-widget.php:198
2434
  #, fuzzy
2435
  msgid "The authors album(s)"
2436
  msgstr "Se dette billed p&aring; %s"
2437
 
2438
- #: wppa-bestof-widget.php:199
2439
  #, fuzzy
2440
  msgid "The photos in the authors album(s)"
2441
  msgstr "Se dette billed p&aring; %s"
2442
 
2443
- #: wppa-bestof-widget.php:200
2444
  #, fuzzy
2445
  msgid "All the authors photos"
2446
  msgstr ""
2447
  "I visitatori possono ottenere una panoramica delle immagini contenute in un "
2448
  "album grazie alle miniature."
2449
 
2450
- #: wppa-boxes-html.php:130 wppa-boxes-html.php:227
2451
  #, fuzzy
2452
  msgid "Photo search results"
2453
  msgstr "Risultati della ricerca per: %s"
2454
 
2455
- #: wppa-boxes-html.php:186
2456
- #, fuzzy
2457
- msgid "Search in current section"
2458
- msgstr "Ricerca nella sezione corrente"
2459
-
2460
- #: wppa-boxes-html.php:191
2461
- #, fuzzy
2462
- msgid "Search in current results"
2463
- msgstr "Ricerca in risultati correnti"
2464
-
2465
- #: wppa-boxes-html.php:361 wppa-breadcrumb.php:140
2466
- #: wppa-settings-autosave.php:387
2467
  #, fuzzy
2468
  msgid "Albums"
2469
  msgstr "album"
2470
 
2471
- #: wppa-boxes-html.php:367 wppa-breadcrumb.php:155
2472
  #, fuzzy
2473
  msgid "Photos"
2474
  msgstr "Foto"
2475
 
2476
- #: wppa-boxes-html.php:386
2477
  msgid "Category"
2478
  msgstr ""
2479
 
2480
- #: wppa-boxes-html.php:399 wppa-boxes-html.php:532
2481
  msgid "Text"
2482
  msgstr ""
2483
 
2484
- #: wppa-boxes-html.php:415 wppa-boxes-html.php:469 wppa-boxes-html.php:615
2485
- #: wppa-boxes-html.php:645
2486
  msgid "CTRL+Click to add/remove option."
2487
  msgstr ""
2488
 
2489
- #: wppa-boxes-html.php:416 wppa-boxes-html.php:470 wppa-boxes-html.php:616
2490
- #: wppa-boxes-html.php:646
2491
  msgid "Items must meet all selected options."
2492
  msgstr ""
2493
 
2494
- #: wppa-boxes-html.php:524 wppa-settings-autosave.php:8107
2495
- #: wppa-settings-autosave.php:8147 wppa-settings-autosave.php:8169
2496
- #: wppa-settings-autosave.php:8215
2497
  msgid "Tag"
2498
  msgstr ""
2499
 
2500
- #: wppa-boxes-html.php:540
2501
  msgid "Iptc"
2502
  msgstr ""
2503
 
2504
- #: wppa-boxes-html.php:549
2505
  msgid "Exif"
2506
  msgstr ""
2507
 
2508
- #: wppa-boxes-html.php:747 wppa-boxes-html.php:832
2509
  msgid "Submit"
2510
  msgstr ""
2511
 
2512
- #: wppa-boxes-html.php:789 wppa-super-view-widget.php:14
2513
  #: wppa-super-view-widget.php:66
2514
  #, fuzzy
2515
  msgid "Super View Photos"
2516
  msgstr "Se forside fotos"
2517
 
2518
- #: wppa-boxes-html.php:820 wppa-settings-autosave.php:403
2519
- #: wppa-settings-autosave.php:4308
2520
  #, fuzzy
2521
  msgid "Thumbnails"
2522
  msgstr "Miniatura"
2523
 
2524
- #: wppa-boxes-html.php:866
2525
  #, fuzzy
2526
  msgid "Tagged photos"
2527
  msgstr "Top fotos"
2528
 
2529
- #: wppa-boxes-html.php:880
2530
  msgid "Please select a tagcloud landing page in Table VI-C3b"
2531
  msgstr "V&aelig;lg en side, hvor tag-skyen skal vises i Tabel VI-C3b"
2532
 
2533
- #: wppa-boxes-html.php:938
2534
  #, fuzzy
2535
  msgid "Multi Tagged photos"
2536
  msgstr "Top fotos"
2537
 
2538
- #: wppa-boxes-html.php:952
2539
  msgid "Please select a multitag landing page in Table VI-C4b"
2540
  msgstr "V&aelig;lg en side, hvor multi-tag skal vises i Tabel VI-C4b"
2541
 
2542
- #: wppa-boxes-html.php:990
2543
  msgid "Please check the tag(s) that the photos must have"
2544
  msgstr "Unders&oslash;g de tag(s) som dine fotos har"
2545
 
2546
- #: wppa-boxes-html.php:1019
2547
  msgid "And"
2548
  msgstr "og"
2549
 
2550
- #: wppa-boxes-html.php:1030
2551
  msgid "Or"
2552
  msgstr "Eller"
2553
 
2554
- #: wppa-boxes-html.php:1080
2555
  msgid "Find!"
2556
  msgstr "Find!"
2557
 
2558
- #: wppa-boxes-html.php:1107
2559
  msgid "Social media landing page"
2560
  msgstr ""
2561
 
2562
- #: wppa-boxes-html.php:1132 wppa-utils.php:1476
2563
  #, php-format
2564
  msgid "See this image on %s"
2565
  msgstr "Se dette billed p&aring; %s"
2566
 
2567
- #: wppa-boxes-html.php:1157 wppa-qr-widget.php:40
2568
  msgid "QR code"
2569
  msgstr ""
2570
 
2571
- #: wppa-boxes-html.php:1202
2572
  #, php-format
2573
  msgid "Tweet %s on Twitter"
2574
  msgstr "Tweet %s p&aring; Twitter"
2575
 
2576
- #: wppa-boxes-html.php:1209
2577
  #, fuzzy
2578
  msgid "Share on Twitter"
2579
  msgstr "Condividi su Twitter"
2580
 
2581
- #: wppa-boxes-html.php:1222
2582
  #, php-format
2583
  msgid "Share %s on Google+"
2584
  msgstr "Del %s p&aring; Google+"
2585
 
2586
- #: wppa-boxes-html.php:1230
2587
  #, fuzzy
2588
  msgid "Share on Google+"
2589
  msgstr "Condividi su Google+"
2590
 
2591
- #: wppa-boxes-html.php:1245
2592
  #, php-format
2593
  msgid "Share %s on Pinterest"
2594
  msgstr "Del %s p&aring; Pinterest"
2595
 
2596
- #: wppa-boxes-html.php:1254
2597
  #, fuzzy
2598
  msgid "Share on Pinterest"
2599
  msgstr "Condividi on Pinterest"
2600
 
2601
- #: wppa-boxes-html.php:1389
2602
  #, fuzzy
2603
  msgid "Comment on Facebook:"
2604
  msgstr "Commenta su Facebook:"
2605
 
2606
- #: wppa-boxes-html.php:1490 wppa-upload.php:1135
2607
  msgid "Working..."
2608
  msgstr ""
2609
 
2610
- #: wppa-boxes-html.php:1492 wppa-boxes-html.php:1495
2611
  #, fuzzy
2612
  msgid "Delete album"
2613
  msgstr "Impossibile creare album. "
2614
 
2615
- #: wppa-boxes-html.php:1582
2616
  #, fuzzy
2617
  msgid "Create Album"
2618
  msgstr "Impossibile creare album. "
2619
 
2620
- #: wppa-boxes-html.php:1627 wppa-boxes-html.php:2370
2621
  #, fuzzy
2622
  msgid "Enter album name."
2623
  msgstr ""
2624
  "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
2625
  "per i titoli delle copertine degli album."
2626
 
2627
- #: wppa-boxes-html.php:1629 wppa-boxes-html.php:2372
2628
  #, fuzzy
2629
  msgid "Don't leave this blank!"
2630
  msgstr "Puoi anche lasciare/impostare a blank"
2631
 
2632
- #: wppa-boxes-html.php:1648
2633
  #, fuzzy
2634
  msgid "Enter album description"
2635
  msgstr "Inserisci / modifica la descrizione per questo album."
2636
 
2637
- #: wppa-boxes-html.php:1670
2638
  #, fuzzy
2639
  msgid "Create album"
2640
  msgstr "Impossibile creare album. "
2641
 
2642
- #: wppa-boxes-html.php:1726 wppa-boxes-html.php:1739 wppa-functions.php:3966
2643
  msgid "Max uploads reached"
2644
  msgstr "Maks. antal indsendinger er opn&aring;et"
2645
 
2646
- #: wppa-boxes-html.php:1801 wppa-upload.php:134
2647
  msgid "Upload Photo"
2648
  msgstr "Indsend foto"
2649
 
2650
- #: wppa-boxes-html.php:1948
2651
  #, php-format
2652
  msgid ""
2653
  "You may upload up to %s photos at once if your browser supports HTML-5 "
@@ -2656,22 +2641,22 @@ msgstr ""
2656
  "Du m&aring; indsende op til %s fotos med det samme, hvis din fremviser "
2657
  "underst&oslash;tter HTML-5 multi fil indsendelse"
2658
 
2659
- #: wppa-boxes-html.php:1956
2660
  #, php-format
2661
  msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
2662
  msgstr "Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
2663
 
2664
- #: wppa-boxes-html.php:1985 wppa-upload.php:123 wppa-upload.php:211
2665
  #: wppa-upload.php:258 wppa-upload.php:704
2666
  msgid "Apply watermark file:"
2667
  msgstr "Inds&aelig;t vandm&aelig;rke:"
2668
 
2669
- #: wppa-boxes-html.php:2007 wppa-upload.php:128 wppa-upload.php:216
2670
  #: wppa-upload.php:263 wppa-upload.php:708
2671
  msgid "Position:"
2672
  msgstr "Position:"
2673
 
2674
- #: wppa-boxes-html.php:2035
2675
  #, fuzzy
2676
  msgid ""
2677
  "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
@@ -2681,7 +2666,7 @@ msgstr ""
2681
  "Hvis du ikke udfylder dette felt, s&aring; vil filens navn blive brugt som "
2682
  "foto navn"
2683
 
2684
- #: wppa-boxes-html.php:2040
2685
  #, fuzzy
2686
  msgid ""
2687
  "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
@@ -2690,352 +2675,369 @@ msgstr ""
2690
  "Hvis du ikke udfylder dette felt, s&aring; vil filens navn blive brugt som "
2691
  "foto navn"
2692
 
2693
- #: wppa-boxes-html.php:2045
2694
  msgid ""
2695
  "If you leave this blank, the original filename will be used as photo name."
2696
  msgstr ""
2697
  "Hvis du ikke udfylder dette felt, s&aring; vil filens navn blive brugt som "
2698
  "foto navn"
2699
 
2700
- #: wppa-boxes-html.php:2059
2701
  msgid "Enter photo name."
2702
  msgstr "Indtast foto navn"
2703
 
2704
- #: wppa-boxes-html.php:2080
2705
  msgid "Enter/modify photo description"
2706
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
2707
 
2708
- #: wppa-boxes-html.php:2111
2709
  msgid "hidden"
2710
  msgstr ""
2711
 
2712
- #: wppa-boxes-html.php:2180
2713
  msgid "Preview tags:"
2714
  msgstr ""
2715
 
2716
- #: wppa-boxes-html.php:2193
2717
  #, fuzzy
2718
  msgid "Please select an album and try again"
2719
  msgstr ""
2720
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
2721
  "di ricerca differente."
2722
 
2723
- #: wppa-boxes-html.php:2207
2724
  #, fuzzy
2725
  msgid "Upload photo"
2726
  msgstr "Indsend foto"
2727
 
2728
- #: wppa-boxes-html.php:2263
2729
  #, fuzzy
2730
  msgid "ERROR: unable to upload files."
2731
  msgstr "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at uploade en fil.</b>"
2732
 
2733
- #: wppa-boxes-html.php:2312
2734
  #, fuzzy
2735
  msgid "Edit albuminfo"
2736
  msgstr "Rediger!"
2737
 
2738
- #: wppa-boxes-html.php:2392
2739
  #, fuzzy
2740
  msgid "Album description:"
2741
  msgstr "Inserisci / modifica la descrizione per questo album."
2742
 
2743
- #: wppa-boxes-html.php:2411
2744
  #, fuzzy
2745
  msgid "Update album"
2746
  msgstr ""
2747
  "Non hai i permessi per potere aggiornare le informazioni di questo album"
2748
 
2749
- #: wppa-boxes-html.php:2485
2750
  msgid "wrote:"
2751
  msgstr "skrev:"
2752
 
2753
- #: wppa-boxes-html.php:2539
2754
  msgid "Avatar"
2755
  msgstr ""
2756
 
2757
- #: wppa-boxes-html.php:2582 wppa-links.php:768
2758
  msgid "Awaiting moderation"
2759
  msgstr "Venter p&aring; godkendelse"
2760
 
2761
- #: wppa-boxes-html.php:2585
2762
  msgid "Marked as spam"
2763
  msgstr "Markeret som spam"
2764
 
2765
- #: wppa-boxes-html.php:2609
2766
  msgid "Edit!"
2767
  msgstr "Rediger!"
2768
 
2769
- #: wppa-boxes-html.php:2613
2770
  msgid "Send!"
2771
  msgstr "Send"
2772
 
2773
- #: wppa-boxes-html.php:2674
2774
  msgid "Your name:"
2775
  msgstr "Dit navn"
2776
 
2777
- #: wppa-boxes-html.php:2689
2778
  msgid "Your email:"
2779
  msgstr "Din email"
2780
 
2781
- #: wppa-boxes-html.php:2705
2782
  msgid "Your comment:"
2783
  msgstr "Din kommentar"
2784
 
2785
- #: wppa-boxes-html.php:2750
2786
  #, php-format
2787
  msgid "You must <a href=\"%s\">login</a> to enter a comment"
2788
  msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
2789
 
2790
- #: wppa-boxes-html.php:2753
2791
  #, fuzzy
2792
  msgid "You must login to enter a comment"
2793
  msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
2794
 
2795
- #: wppa-boxes-html.php:2765
2796
  #, fuzzy, php-format
2797
  msgid "%d comments"
2798
  msgstr "%d kommentarer"
2799
 
2800
- #: wppa-boxes-html.php:2769
2801
  msgid "Leave a comment"
2802
  msgstr "Skriv en kommentar"
2803
 
2804
- #: wppa-boxes-html.php:2810
2805
  #, fuzzy
2806
  msgid "Smilies are not available"
2807
  msgstr "Pagina non disponibile."
2808
 
2809
- #: wppa-boxes-html.php:2860
2810
  msgid "Show IPTC data"
2811
  msgstr "Vis IPTC data"
2812
 
2813
- #: wppa-boxes-html.php:2871
2814
  msgid "Hide IPTC data"
2815
  msgstr "Skjul IPTC data"
2816
 
2817
- #: wppa-boxes-html.php:2911
2818
  msgid "No IPTC data"
2819
  msgstr "Ingen IPTC data"
2820
 
2821
- #: wppa-boxes-html.php:2958
2822
  msgid "Show EXIF data"
2823
  msgstr "Vis EXIF data"
2824
 
2825
- #: wppa-boxes-html.php:2969
2826
  msgid "Hide EXIF data"
2827
  msgstr "Skjul EXIF data"
2828
 
2829
- #: wppa-boxes-html.php:3011
2830
  msgid "No EXIF data"
2831
  msgstr "Ingen EXIF data"
2832
 
2833
- #: wppa-boxes-html.php:3126 wppa-boxes-html.php:3131
2834
  #, fuzzy
2835
  msgid "< Previous"
2836
  msgstr "Forrige billede"
2837
 
2838
- #: wppa-boxes-html.php:3137 wppa-boxes-html.php:3142
2839
  #, fuzzy
2840
  msgid "Next >"
2841
  msgstr "N&aelig;ste"
2842
 
2843
- #: wppa-boxes-html.php:3239 wppa-boxes-html.php:3298
2844
  #, fuzzy
2845
  msgid "See the authors albums"
2846
  msgstr "Se dette billed p&aring; %s"
2847
 
2848
- #: wppa-boxes-html.php:3243 wppa-boxes-html.php:3302
2849
  #, fuzzy
2850
  msgid "See the authors photos"
2851
  msgstr ""
2852
  "I visitatori possono ottenere una panoramica delle immagini contenute in un "
2853
  "album grazie alle miniature."
2854
 
2855
- #: wppa-boxes-html.php:3247 wppa-boxes-html.php:3306
2856
  #, fuzzy
2857
  msgid "See all the authors photos"
2858
  msgstr ""
2859
  "I visitatori possono ottenere una panoramica delle immagini contenute in un "
2860
  "album grazie alle miniature."
2861
 
2862
- #: wppa-boxes-html.php:3270
2863
  #, fuzzy, php-format
2864
  msgid "Photo by: %s"
2865
  msgstr "Foto %s af %s"
2866
 
2867
- #: wppa-boxes-html.php:3271 wppa-boxes-html.php:3325
2868
  #, fuzzy, php-format
2869
  msgid "Max ratings: %s."
2870
  msgstr "Altezza massima."
2871
 
2872
- #: wppa-boxes-html.php:3272 wppa-boxes-html.php:3326
2873
  #, fuzzy, php-format
2874
  msgid "Votes: %s."
2875
  msgstr "Gli utenti possono esprimere più voti."
2876
 
2877
- #: wppa-boxes-html.php:3273 wppa-boxes-html.php:3327
2878
  #, fuzzy, php-format
2879
  msgid "Mean value: %4.2f."
2880
  msgstr "Mean value:"
2881
 
2882
- #: wppa-boxes-html.php:3280
2883
  #, fuzzy, php-format
2884
  msgid "Photo %s not found."
2885
  msgstr "Billede ikke fundet"
2886
 
2887
- #: wppa-breadcrumb.php:102 wppa-settings-autosave.php:1446
 
 
 
 
 
2888
  msgid "Home"
2889
  msgstr "Hjem"
2890
 
2891
- #: wppa-breadcrumb.php:123
2892
  #, fuzzy
2893
  msgid "Post:"
2894
  msgstr "--- lo stesso articolo/pagina ---"
2895
 
2896
- #: wppa-breadcrumb.php:123 wppa-breadcrumb.php:567
2897
  #, fuzzy
2898
  msgid "Page:"
2899
  msgstr "N&aelig;ste&nbsp;side"
2900
 
2901
- #: wppa-breadcrumb.php:143
2902
  msgid "with category:"
2903
  msgstr ""
2904
 
2905
- #: wppa-breadcrumb.php:146 wppa-breadcrumb.php:161
2906
  #, fuzzy
2907
  msgid "with name:"
2908
  msgstr "Dit navn"
2909
 
2910
- #: wppa-breadcrumb.php:149 wppa-breadcrumb.php:165
2911
  msgid "with words:"
2912
  msgstr ""
2913
 
2914
- #: wppa-breadcrumb.php:158
2915
  msgid "with tag:"
2916
  msgstr ""
2917
 
2918
- #: wppa-breadcrumb.php:169
2919
  msgid "of owner:"
2920
  msgstr ""
2921
 
2922
- #: wppa-breadcrumb.php:174
2923
  msgid "with iptc tag:"
2924
  msgstr ""
2925
 
2926
- #: wppa-breadcrumb.php:174 wppa-breadcrumb.php:179
2927
  #, fuzzy
2928
  msgid "with content:"
2929
  msgstr "Dit navn"
2930
 
2931
- #: wppa-breadcrumb.php:179
2932
  msgid "with exif tag:"
2933
  msgstr ""
2934
 
2935
- #: wppa-breadcrumb.php:187 wppa-breadcrumb.php:215 wppa-breadcrumb.php:272
2936
- #: wppa-breadcrumb.php:290 wppa-breadcrumb.php:308 wppa-breadcrumb.php:326
2937
- #: wppa-breadcrumb.php:344 wppa-breadcrumb.php:356 wppa-breadcrumb.php:368
2938
- #: wppa-breadcrumb.php:380 wppa-breadcrumb.php:399
2939
  #, fuzzy
2940
  msgid "View the thumbnails"
2941
  msgstr "Se"
2942
 
2943
- #: wppa-breadcrumb.php:209
2944
  #, fuzzy, php-format
2945
  msgid "Searchresults from album %s and its subalbums"
2946
  msgstr "Risultati Ricerca da album %s e tutti i sotto album"
2947
 
2948
- #: wppa-breadcrumb.php:213 wppa-breadcrumb.php:218
2949
  msgid "Searchstring:"
2950
  msgstr "S&oslash;gestreng:"
2951
 
2952
- #: wppa-breadcrumb.php:227 wppa-breadcrumb.php:245
2953
  #, fuzzy
2954
  msgid "Photos by EXIF date"
2955
  msgstr "Vis EXIF data"
2956
 
2957
- #: wppa-breadcrumb.php:231 wppa-breadcrumb.php:249
2958
  #, fuzzy
2959
  msgid "Photos by date of upload"
2960
  msgstr "Foto caricate nell'album numero"
2961
 
2962
- #: wppa-breadcrumb.php:235 wppa-breadcrumb.php:253
2963
  msgid "Photos by date last modified"
2964
  msgstr ""
2965
 
2966
- #: wppa-breadcrumb.php:265 wppa-breadcrumb.php:275
2967
  #, fuzzy, php-format
2968
  msgid "Photos by %s"
2969
  msgstr "Indsendelse af %s fotos var en success."
2970
 
2971
- #: wppa-breadcrumb.php:282 wppa-breadcrumb.php:300 wppa-breadcrumb.php:318
2972
- #: wppa-breadcrumb.php:336 wppa-breadcrumb.php:414
2973
  #, fuzzy
2974
  msgid "Various albums"
2975
  msgstr ""
2976
  "Puoi creare dei vari album che contengono delle foto così come creare allo "
2977
  "stesso tempo dei sotto-album."
2978
 
2979
- #: wppa-breadcrumb.php:284 wppa-breadcrumb.php:302 wppa-breadcrumb.php:320
2980
- #: wppa-breadcrumb.php:338 wppa-breadcrumb.php:418 wppa-lasten-widget.php:180
2981
  #, fuzzy
2982
  msgid "Albums:"
2983
  msgstr "album"
2984
 
2985
- #: wppa-breadcrumb.php:288 wppa-breadcrumb.php:293
2986
  msgid "Top rated photos"
2987
  msgstr "Top fotos"
2988
 
2989
- #: wppa-breadcrumb.php:306 wppa-breadcrumb.php:311
2990
  msgid "Recently uploaded photos"
2991
  msgstr "Nyligt kommenterede fotos"
2992
 
2993
- #: wppa-breadcrumb.php:324 wppa-breadcrumb.php:329 wppa-comment-widget.php:41
2994
  msgid "Recently commented photos"
2995
  msgstr "Nyligt kommenterede fotos"
2996
 
2997
- #: wppa-breadcrumb.php:342 wppa-breadcrumb.php:347 wppa-featen-widget.php:37
2998
  msgid "Featured photos"
2999
  msgstr "Top fotos"
3000
 
3001
- #: wppa-breadcrumb.php:354 wppa-breadcrumb.php:359
3002
  #, fuzzy
3003
  msgid "Related photos"
3004
  msgstr "fotos"
3005
 
3006
- #: wppa-breadcrumb.php:366 wppa-breadcrumb.php:371
3007
  msgid "Tagged photos:"
3008
  msgstr "Top fotos"
3009
 
3010
- #: wppa-breadcrumb.php:366 wppa-breadcrumb.php:371
3011
  msgid "or"
3012
  msgstr ""
3013
 
3014
- #: wppa-breadcrumb.php:397 wppa-breadcrumb.php:402
3015
  #, fuzzy
3016
  msgid "Recently updated albums"
3017
  msgstr "Le impostazioni sono state aggiornate"
3018
 
3019
- #: wppa-breadcrumb.php:412
3020
  #, fuzzy, php-format
3021
  msgid "Various albums by %s"
3022
  msgstr ""
3023
  "Puoi creare dei vari album che contengono delle foto così come creare allo "
3024
  "stesso tempo dei sotto-album."
3025
 
3026
- #: wppa-breadcrumb.php:439 wppa-breadcrumb.php:454
3027
  msgid "Thumbnail view"
3028
  msgstr "Foto Top Ti"
3029
 
3030
- #: wppa-breadcrumb.php:443 wppa-breadcrumb.php:444 wppa-breadcrumb.php:459
3031
- #: wppa-breadcrumb.php:460
3032
  msgid "Thumbs"
3033
  msgstr "Miniature"
3034
 
3035
- #: wppa-breadcrumb.php:565
3036
  msgid "Unpublished"
3037
  msgstr ""
3038
 
 
 
 
 
 
 
 
 
 
 
 
 
3039
  #: wppa-cart.php:26
3040
  msgid "Buy now"
3041
  msgstr "K&oslash;b nu"
@@ -3136,8 +3138,8 @@ msgstr ""
3136
  msgid "Linkpage:"
3137
  msgstr ""
3138
 
3139
- #: wppa-comment-admin.php:224 wppa-settings-autosave.php:4479
3140
- #: wppa-settings-autosave.php:7177
3141
  #, fuzzy
3142
  msgid "--- Please select a page ---"
3143
  msgstr "--- vises ikke ---"
@@ -3177,7 +3179,7 @@ msgstr ""
3177
  msgid "timestamp"
3178
  msgstr ""
3179
 
3180
- #: wppa-comment-admin.php:256 wppa-photo-admin-autosave.php:1241
3181
  msgid "Bulk action:"
3182
  msgstr ""
3183
 
@@ -3208,18 +3210,18 @@ msgid "(Album)"
3208
  msgstr "album"
3209
 
3210
  #: wppa-comment-admin.php:304 wppa-comment-admin.php:391
3211
- #: wppa-settings-autosave.php:454 wppa-settings-autosave.php:607
3212
- #: wppa-settings-autosave.php:629 wppa-settings-autosave.php:1329
3213
- #: wppa-settings-autosave.php:1350 wppa-settings-autosave.php:2715
3214
- #: wppa-settings-autosave.php:2736 wppa-settings-autosave.php:3034
3215
- #: wppa-settings-autosave.php:3058 wppa-settings-autosave.php:4200
3216
- #: wppa-settings-autosave.php:4221 wppa-settings-autosave.php:4397
3217
- #: wppa-settings-autosave.php:4421 wppa-settings-autosave.php:5420
3218
- #: wppa-settings-autosave.php:5928 wppa-settings-autosave.php:5950
3219
- #: wppa-settings-autosave.php:6530 wppa-settings-autosave.php:6554
3220
- #: wppa-settings-autosave.php:8085 wppa-settings-autosave.php:8106
3221
- #: wppa-settings-autosave.php:8146 wppa-settings-autosave.php:8168
3222
- #: wppa-settings-autosave.php:8214
3223
  msgid "#"
3224
  msgstr ""
3225
 
@@ -3253,25 +3255,25 @@ msgstr ""
3253
  msgid "Reply to your comment on photo: %s on %s"
3254
  msgstr ""
3255
 
3256
- #: wppa-comment-admin.php:359 wppa-functions.php:2102
3257
  msgid "Reply"
3258
  msgstr ""
3259
 
3260
- #: wppa-comment-admin.php:370 wppa-photo-admin-autosave.php:794
3261
- #: wppa-photo-admin-autosave.php:817 wppa-photo-admin-autosave.php:968
3262
- #: wppa-photo-admin-autosave.php:978 wppa-photo-admin-autosave.php:1259
3263
- #: wppa-photo-admin-autosave.php:1376 wppa-photo-admin-autosave.php:1388
3264
  msgid "Pending"
3265
  msgstr ""
3266
 
3267
- #: wppa-comment-admin.php:371 wppa-photo-admin-autosave.php:969
3268
- #: wppa-photo-admin-autosave.php:979
3269
  #, fuzzy
3270
  msgid "Approved"
3271
  msgstr "Godkend"
3272
 
3273
- #: wppa-comment-admin.php:372 wppa-photo-admin-autosave.php:970
3274
- #: wppa-photo-admin-autosave.php:980
3275
  msgid "Spam"
3276
  msgstr ""
3277
 
@@ -3289,7 +3291,7 @@ msgstr ""
3289
  msgid "WPPA+ Comments on Photos"
3290
  msgstr "Kommentar til billeder"
3291
 
3292
- #: wppa-comment-widget.php:15 wppa-comment-widget.php:115
3293
  #, fuzzy
3294
  msgid "Comments on Photos"
3295
  msgstr "Kommentar til billeder"
@@ -3299,133 +3301,133 @@ msgstr "Kommentar til billeder"
3299
  msgid "wrote"
3300
  msgstr "skrev:"
3301
 
3302
- #: wppa-comment-widget.php:88 wppa-featen-widget.php:96
3303
  #: wppa-lasten-widget.php:120 wppa-potd-widget.php:134
3304
- #: wppa-thumbnail-widget.php:116 wppa-topten-widget.php:154
3305
  msgid "Photo not found."
3306
  msgstr "Billede ikke fundet"
3307
 
3308
- #: wppa-common-functions.php:189 wppa-common-functions.php:192
3309
  msgid "Default photo album for"
3310
  msgstr "Standard foto album for"
3311
 
3312
- #: wppa-common-functions.php:537 wppa-common-functions.php:573
3313
  msgid "1 second"
3314
  msgstr "1 sekund"
3315
 
3316
- #: wppa-common-functions.php:538 wppa-common-functions.php:574
3317
- #: wppa-functions.php:4250
3318
  msgid "seconds"
3319
  msgstr "sekunder"
3320
 
3321
- #: wppa-common-functions.php:542 wppa-common-functions.php:578
3322
  msgid "1 minute"
3323
  msgstr "1 minut"
3324
 
3325
- #: wppa-common-functions.php:543 wppa-common-functions.php:579
3326
- #: wppa-functions.php:4249
3327
  msgid "minutes"
3328
  msgstr "minutter"
3329
 
3330
- #: wppa-common-functions.php:547 wppa-common-functions.php:583
3331
  msgid "1 hour"
3332
  msgstr "1 time"
3333
 
3334
- #: wppa-common-functions.php:548 wppa-common-functions.php:584
3335
- #: wppa-functions.php:4248
3336
  msgid "hours"
3337
  msgstr "timer"
3338
 
3339
- #: wppa-common-functions.php:552 wppa-common-functions.php:588
3340
  msgid "1 day"
3341
  msgstr "1 dag"
3342
 
3343
- #: wppa-common-functions.php:553 wppa-common-functions.php:589
3344
- #: wppa-functions.php:4247
3345
  msgid "days"
3346
  msgstr "dage"
3347
 
3348
- #: wppa-common-functions.php:557 wppa-common-functions.php:593
3349
  msgid "1 week"
3350
  msgstr "1 uge"
3351
 
3352
- #: wppa-common-functions.php:558 wppa-common-functions.php:594
3353
- #: wppa-functions.php:4246
3354
  msgid "weeks"
3355
  msgstr "uger"
3356
 
3357
- #: wppa-common-functions.php:562 wppa-common-functions.php:598
3358
  msgid "1 month"
3359
  msgstr "1 m&aring;ned"
3360
 
3361
- #: wppa-common-functions.php:563 wppa-common-functions.php:599
3362
  msgid "months"
3363
  msgstr "m&aring;neder"
3364
 
3365
- #: wppa-common-functions.php:566 wppa-common-functions.php:602
3366
  msgid "1 year"
3367
  msgstr "1 &aring;r"
3368
 
3369
- #: wppa-common-functions.php:567 wppa-common-functions.php:603
3370
  msgid "years"
3371
  msgstr "&aring;r"
3372
 
3373
- #: wppa-common-functions.php:814 wppa-common-functions.php:815
3374
  msgid "ERROR: Resized or copied image could not be created."
3375
  msgstr ""
3376
 
3377
- #: wppa-common-functions.php:857 wppa-common-functions.php:858
3378
  #, php-format
3379
  msgid "ERROR: File %s is not a valid picture file."
3380
  msgstr ""
3381
 
3382
- #: wppa-common-functions.php:1658
3383
  #, php-format
3384
  msgid ""
3385
  "Based on your server memory limit you should not upload images larger then "
3386
  "<strong>%d x %d (%2.1f MP)</strong>"
3387
  msgstr ""
3388
 
3389
- #: wppa-common-functions.php:1933
3390
  #, fuzzy
3391
  msgid "- select an album -"
3392
  msgstr ""
3393
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
3394
  "di ricerca differente."
3395
 
3396
- #: wppa-common-functions.php:1945 wppa-items.php:370
3397
- #: wppa-multitag-widget.php:75 wppa-multitag-widget.php:83
3398
- #: wppa-slideshow-widget.php:201 wppa-tagcloud-widget.php:70
3399
- #: wppa-tagcloud-widget.php:78
3400
  msgid "--- all ---"
3401
  msgstr "--- ingen ---"
3402
 
3403
- #: wppa-common-functions.php:1951
3404
  #, fuzzy
3405
  msgid "--- generic ---"
3406
  msgstr "--- ingen ---"
3407
 
3408
- #: wppa-common-functions.php:1962
3409
  msgid "--- multiple see below ---"
3410
  msgstr ""
3411
 
3412
- #: wppa-common-functions.php:1968
3413
  #, fuzzy
3414
  msgid "--- a selection box ---"
3415
  msgstr "--- vises ikke ---"
3416
 
3417
- #: wppa-common-functions.php:2002 wppa-items.php:366
3418
- #: wppa-settings-autosave.php:7003 wppa-settings-autosave.php:7059
3419
  #: wppa-upload.php:1529
3420
  msgid "--- separate ---"
3421
  msgstr "--- vis ikke ---"
3422
 
3423
- #: wppa-common-functions.php:2100
3424
  #, fuzzy
3425
  msgid "Photo id ="
3426
  msgstr "Dagens foto"
3427
 
3428
- #: wppa-common-functions.php:2100
3429
  msgid "Value ="
3430
  msgstr ""
3431
 
@@ -3484,182 +3486,182 @@ msgstr "Slet"
3484
  msgid "n.a."
3485
  msgstr "Ikke brugbar"
3486
 
3487
- #: wppa-exif-iptc-common.php:214 wppa-utils.php:2245
3488
  msgid "Not Defined"
3489
  msgstr "Ikke Defineret"
3490
 
3491
- #: wppa-exif-iptc-common.php:215 wppa-utils.php:2246
3492
  msgid "Manual"
3493
  msgstr "Manual"
3494
 
3495
- #: wppa-exif-iptc-common.php:216 wppa-utils.php:2247
3496
  msgid "Program AE"
3497
  msgstr "Program AE"
3498
 
3499
- #: wppa-exif-iptc-common.php:217 wppa-utils.php:2248
3500
  msgid "Aperture-priority AE"
3501
  msgstr "Bl&aelig;ndeprioriteret AE"
3502
 
3503
- #: wppa-exif-iptc-common.php:218 wppa-utils.php:2249
3504
  msgid "Shutter speed priority AE"
3505
  msgstr "Lukkerhastighedsprioritet AE"
3506
 
3507
- #: wppa-exif-iptc-common.php:219 wppa-utils.php:2250
3508
  msgid "Creative (Slow speed)"
3509
  msgstr "Kreativ (Langsom hastighed)"
3510
 
3511
- #: wppa-exif-iptc-common.php:220 wppa-utils.php:2251
3512
  msgid "Action (High speed)"
3513
  msgstr "Handling (h&oslash;j hastighed)"
3514
 
3515
- #: wppa-exif-iptc-common.php:221 wppa-utils.php:2252
3516
  msgid "Portrait"
3517
  msgstr "Portr&aelig;t"
3518
 
3519
- #: wppa-exif-iptc-common.php:222 wppa-utils.php:2253
3520
  msgid "Landscape"
3521
  msgstr "Landskab"
3522
 
3523
- #: wppa-exif-iptc-common.php:223 wppa-utils.php:2254
3524
  msgid "Bulb"
3525
  msgstr "Bulb"
3526
 
3527
- #: wppa-exif-iptc-common.php:245 wppa-utils.php:2255
3528
  msgid "Average"
3529
  msgstr "gennemsnitlig"
3530
 
3531
- #: wppa-exif-iptc-common.php:246 wppa-utils.php:2256
3532
  msgid "Center-weighted average"
3533
  msgstr "Centerv&aelig;gtet gennemsnit"
3534
 
3535
- #: wppa-exif-iptc-common.php:247 wppa-utils.php:2257
3536
  msgid "Spot"
3537
  msgstr "Spot"
3538
 
3539
- #: wppa-exif-iptc-common.php:248 wppa-utils.php:2258
3540
  msgid "Multi-spot"
3541
  msgstr "Multi-spot"
3542
 
3543
- #: wppa-exif-iptc-common.php:249 wppa-utils.php:2259
3544
  msgid "Multi-segment"
3545
  msgstr "Multi-segment"
3546
 
3547
- #: wppa-exif-iptc-common.php:250 wppa-utils.php:2260
3548
  msgid "Partial"
3549
  msgstr "Delvist"
3550
 
3551
- #: wppa-exif-iptc-common.php:251 wppa-settings-autosave.php:4325
3552
- #: wppa-utils.php:2261
3553
  msgid "Other"
3554
  msgstr "Andet"
3555
 
3556
- #: wppa-exif-iptc-common.php:287 wppa-utils.php:2262
3557
  msgid "No Flash"
3558
  msgstr "Ingen blitz"
3559
 
3560
- #: wppa-exif-iptc-common.php:289 wppa-utils.php:2263
3561
  msgid "Fired"
3562
  msgstr "Afskudt"
3563
 
3564
- #: wppa-exif-iptc-common.php:291 wppa-utils.php:2264
3565
  msgid "Fired, Return not detected"
3566
  msgstr "Afskudt, returnering er ikke opdaget "
3567
 
3568
- #: wppa-exif-iptc-common.php:293 wppa-utils.php:2265
3569
  msgid "Fired, Return detected"
3570
  msgstr "Afskudt, returnering er opdaget "
3571
 
3572
- #: wppa-exif-iptc-common.php:295 wppa-utils.php:2266
3573
  msgid "On, Did not fire"
3574
  msgstr "Tilsluttet, afsk&oslash;d ikke"
3575
 
3576
- #: wppa-exif-iptc-common.php:297 wppa-utils.php:2267
3577
  msgid "On, Fired"
3578
  msgstr "Tilsluttet, afskudt"
3579
 
3580
- #: wppa-exif-iptc-common.php:299 wppa-utils.php:2268
3581
  msgid "On, Return not detected"
3582
  msgstr "Tilsluttet, returnering er ikke opdaget "
3583
 
3584
- #: wppa-exif-iptc-common.php:301 wppa-utils.php:2269
3585
  msgid "On, Return detected"
3586
  msgstr "Tilsluttet, returnering er opdaget "
3587
 
3588
- #: wppa-exif-iptc-common.php:303 wppa-utils.php:2270
3589
  msgid "Off, Did not fire"
3590
  msgstr "Slukket, afsk&oslash;d ikke"
3591
 
3592
- #: wppa-exif-iptc-common.php:305 wppa-utils.php:2271
3593
  msgid "Off, Did not fire, Return not detected"
3594
  msgstr "Slukket, afsk&oslash;d ikke, returnering er ikke opdaget "
3595
 
3596
- #: wppa-exif-iptc-common.php:307 wppa-utils.php:2272
3597
  msgid "Auto, Did not fire"
3598
  msgstr "Automatisk, afsk&oslash;d ikke"
3599
 
3600
- #: wppa-exif-iptc-common.php:309 wppa-utils.php:2273
3601
  msgid "Auto, Fired"
3602
  msgstr "Automatisk, afskudt"
3603
 
3604
- #: wppa-exif-iptc-common.php:311 wppa-utils.php:2274
3605
  msgid "Auto, Fired, Return not detected"
3606
  msgstr "Automatisk, afskudt, returnering er ikke opdaget "
3607
 
3608
- #: wppa-exif-iptc-common.php:313 wppa-utils.php:2275
3609
  msgid "Auto, Fired, Return detected"
3610
  msgstr "Automatisk, afskudt, returnering er opdaget "
3611
 
3612
- #: wppa-exif-iptc-common.php:315 wppa-utils.php:2276
3613
  msgid "No flash function"
3614
  msgstr "Ingen blitz funktion"
3615
 
3616
- #: wppa-exif-iptc-common.php:317 wppa-utils.php:2277
3617
  msgid "Off, No flash function"
3618
  msgstr "Slukket, ingen blitz funktion"
3619
 
3620
- #: wppa-exif-iptc-common.php:319 wppa-utils.php:2278
3621
  msgid "Fired, Red-eye reduction"
3622
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion"
3623
 
3624
- #: wppa-exif-iptc-common.php:321 wppa-utils.php:2279
3625
  msgid "Fired, Red-eye reduction, Return not detected"
3626
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion, returnering er ikke opdaget "
3627
 
3628
- #: wppa-exif-iptc-common.php:323 wppa-utils.php:2280
3629
  msgid "Fired, Red-eye reduction, Return detected"
3630
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3631
 
3632
- #: wppa-exif-iptc-common.php:325 wppa-utils.php:2281
3633
  msgid "On, Red-eye reduction"
3634
  msgstr "Tilstuttet, R&oslash;d-&oslash;je reduktion"
3635
 
3636
- #: wppa-exif-iptc-common.php:327 wppa-utils.php:2282
3637
  msgid "Red-eye reduction, Return not detected"
3638
  msgstr "R&oslash;d-&oslash;je reduktion, returnering er ikke opdaget "
3639
 
3640
- #: wppa-exif-iptc-common.php:329 wppa-utils.php:2283
3641
  msgid "On, Red-eye reduction, Return detected"
3642
  msgstr "Tilstuttet, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3643
 
3644
- #: wppa-exif-iptc-common.php:331 wppa-utils.php:2284
3645
  msgid "Off, Red-eye reduction"
3646
  msgstr "Slukket, R&oslash;d-&oslash;je reduktion"
3647
 
3648
- #: wppa-exif-iptc-common.php:333 wppa-utils.php:2285
3649
  msgid "Auto, Did not fire, Red-eye reduction"
3650
  msgstr "Automatisk, Afsk&oslash;d ikke, R&oslash;d-&oslash;je reduktion"
3651
 
3652
- #: wppa-exif-iptc-common.php:335 wppa-utils.php:2286
3653
  msgid "Auto, Fired, Red-eye reduction"
3654
  msgstr "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion"
3655
 
3656
- #: wppa-exif-iptc-common.php:337 wppa-utils.php:2287
3657
  msgid "Auto, Fired, Red-eye reduction, Return not detected"
3658
  msgstr ""
3659
  "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion, returnering er ikke "
3660
  "opdaget "
3661
 
3662
- #: wppa-exif-iptc-common.php:339 wppa-utils.php:2288
3663
  msgid "Auto, Fired, Red-eye reduction, Return detected"
3664
  msgstr ""
3665
  "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
@@ -3766,12 +3768,12 @@ msgstr "Kunne ikke inds&aelig;tte foto i databasen."
3766
  msgid "WPPA+ Featured Photos"
3767
  msgstr "Top fotos"
3768
 
3769
- #: wppa-featen-widget.php:15 wppa-featen-widget.php:128
3770
  #, fuzzy
3771
  msgid "Featured Photos"
3772
  msgstr "Top fotos"
3773
 
3774
- #: wppa-featen-widget.php:74
3775
  msgid "View the featured photos"
3776
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
3777
 
@@ -3781,7 +3783,7 @@ msgid "No related photos found."
3781
  msgstr ""
3782
  "Ingen album eller fotos fundet der svarer til dine s&oslash;ge kriterier."
3783
 
3784
- #: wppa-functions.php:935
3785
  #, fuzzy, php-format
3786
  msgid ""
3787
  "There are %s albums found. Only the first %s will be shown. Please refine "
@@ -3790,63 +3792,63 @@ msgstr ""
3790
  "Trovati %s album. Solo le prime %s saranno visualizzate. Per favore affinate "
3791
  "la ricerca.ie cercate anche per data."
3792
 
3793
- #: wppa-functions.php:1919 wppa-links.php:717 wppa-links.php:734
3794
- #: wppa-thumbnails.php:587
3795
  msgid "Are you sure you want to remove this photo?"
3796
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
3797
 
3798
- #: wppa-functions.php:2080
3799
  msgid "Comment edited"
3800
  msgstr "Kommentarer redigeret"
3801
 
3802
- #: wppa-functions.php:2085
3803
  #, fuzzy
3804
  msgid "Photo comment"
3805
  msgstr "Din kommentar"
3806
 
3807
- #: wppa-functions.php:2089
3808
  msgid "Comment on photo:"
3809
  msgstr "Kommentar til billeder"
3810
 
3811
- #: wppa-functions.php:2100
3812
  msgid "wrote on photo"
3813
  msgstr "Se fotos"
3814
 
3815
- #: wppa-functions.php:2104
3816
  msgid "Moderate comment admin"
3817
  msgstr "Godkend kommentar administration"
3818
 
3819
- #: wppa-functions.php:2107 wppa-functions.php:4098 wppa-upload.php:1427
3820
  msgid "Moderate manage photo"
3821
  msgstr "Se fotos"
3822
 
3823
- #: wppa-functions.php:2121
3824
  msgid "You receive this email as you are assigned to moderate"
3825
  msgstr "Du modtager denne e-mail, fordi du er sat til at godkende"
3826
 
3827
- #: wppa-functions.php:2133
3828
  msgid "You receive this email as administrator of the site"
3829
  msgstr ""
3830
  "Du modtager denne e-mail, fordi du er administrator p&aring; hjemmesiden"
3831
 
3832
- #: wppa-functions.php:2150
3833
  msgid "You receive this email as uploader of the photo"
3834
  msgstr "Du modtager denne e-mail, fordi du indsendte et foto"
3835
 
3836
- #: wppa-functions.php:2167
3837
  msgid "You receive this email as owner of the album"
3838
  msgstr "Du modtager denne e-mail, fordi du er ejer af albumet"
3839
 
3840
- #: wppa-functions.php:2184
3841
  #, fuzzy
3842
  msgid "You receive this email because you commented this photo earlier."
3843
  msgstr "Du modtager denne e-mail, fordi du er sat til at godkende"
3844
 
3845
- #: wppa-functions.php:2210
3846
  msgid "Comment added"
3847
  msgstr "Kommentarer tilf&oslash;jet"
3848
 
3849
- #: wppa-functions.php:2216
3850
  msgid ""
3851
  "Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the "
3852
  "computation."
@@ -3854,151 +3856,151 @@ msgstr ""
3854
  "Beklager, du gav et forkert svar.\\n\\nPr&oslash;v venligst igen, at "
3855
  "l&oslash;se beregningen."
3856
 
3857
- #: wppa-functions.php:2227
3858
  msgid "Could not process comment.\\nProbably timed out."
3859
  msgstr "Kommentar kunne ikke bearbejdes"
3860
 
3861
- #: wppa-functions.php:2310
3862
  #, fuzzy, php-format
3863
  msgid "1 Comment"
3864
  msgid_plural "%s Comments"
3865
  msgstr[0] "%d kommentarer"
3866
  msgstr[1] "%d kommentarer"
3867
 
3868
- #: wppa-functions.php:2346 wppa-links.php:1405
3869
  msgid "A video can not be printed or downloaded"
3870
  msgstr ""
3871
 
3872
- #: wppa-functions.php:2785
3873
  #, fuzzy
3874
  msgid "ERROR: Illegal attempt to enter a rating."
3875
  msgstr ""
3876
  "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at give en bed&oslash;mmelse.</b>"
3877
 
3878
- #: wppa-functions.php:2798
3879
  #, fuzzy
3880
  msgid "ERROR: Illegal attempt to enter a comment."
3881
  msgstr "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at give en kommentar.</b>"
3882
 
3883
- #: wppa-functions.php:3851
3884
  #, fuzzy
3885
  msgid "ERROR: Illegal attempt to create an album."
3886
  msgstr ""
3887
  "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at give en bed&oslash;mmelse.</b>"
3888
 
3889
- #: wppa-functions.php:3855
3890
  #, fuzzy
3891
  msgid "Wrong captcha, please try again"
3892
  msgstr ""
3893
  "Beklager, du gav et forkert svar.\\n\\nPr&oslash;v venligst igen, at "
3894
  "l&oslash;se beregningen."
3895
 
3896
- #: wppa-functions.php:3868
3897
  #, fuzzy, php-format
3898
  msgid "Album #%s created"
3899
  msgstr "Carica foto: per caricare le foto in un album che hai creato."
3900
 
3901
- #: wppa-functions.php:3873
3902
  #, fuzzy
3903
  msgid "Could not create album"
3904
  msgstr "Impossibile creare album. "
3905
 
3906
- #: wppa-functions.php:3884
3907
  #, fuzzy
3908
  msgid "ERROR: Illegal attempt to upload a file."
3909
  msgstr "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at uploade en fil.</b>"
3910
 
3911
- #: wppa-functions.php:3924
3912
  #, fuzzy
3913
  msgid "Photo upload"
3914
  msgstr "Foto caricate nell'album numero"
3915
 
3916
- #: wppa-functions.php:3925
3917
  #, fuzzy, php-format
3918
  msgid "Photo successfully uploaded."
3919
  msgid_plural "%s photos successfully uploaded."
3920
  msgstr[0] "Indsendelse af foto var en success."
3921
  msgstr[1] "Indsendelse af foto var en success."
3922
 
3923
- #: wppa-functions.php:3926
3924
  #, php-format
3925
  msgid "%s points added."
3926
  msgstr "%s kommentarer tilf&oslash;jet"
3927
 
3928
- #: wppa-functions.php:3930
3929
  msgid "Upload failed"
3930
  msgstr "Indl&aelig;sning fejlede"
3931
 
3932
- #: wppa-functions.php:3933
3933
  #, fuzzy, php-format
3934
  msgid "1 Upload failed"
3935
  msgid_plural "%s uploads failed."
3936
  msgstr[0] "Indl&aelig;sning fejlede"
3937
  msgstr[1] "Indl&aelig;sning fejlede"
3938
 
3939
- #: wppa-functions.php:3970
3940
  msgid "Error during upload"
3941
  msgstr "Fejl under upload"
3942
 
3943
- #: wppa-functions.php:3975
3944
  msgid "Uploaded file is not an image"
3945
  msgstr "Uploaded fil er ikke et billede"
3946
 
3947
- #: wppa-functions.php:3979
3948
  #, php-format
3949
  msgid ""
3950
  "Only gif, jpg and png image files are supported. Returned filetype = %d."
3951
  msgstr ""
3952
  "Kun gif, jpg og png filer underst&oslash;ttes. Den forkerte filtype er %d."
3953
 
3954
- #: wppa-functions.php:3985
3955
  #, fuzzy, php-format
3956
  msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
3957
  msgstr "Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
3958
 
3959
- #: wppa-functions.php:3991
3960
  #, fuzzy, php-format
3961
  msgid "Uploaded file %s already exists in this album."
3962
  msgstr "Il file %s che hai caricato non è un file .png"
3963
 
3964
- #: wppa-functions.php:3999
3965
  #, php-format
3966
  msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
3967
  msgstr ""
3968
  "Billedet er for stort. Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
3969
 
3970
- #: wppa-functions.php:4022
3971
  msgid "Could not insert photo into db."
3972
  msgstr "Kunne ikke inds&aelig;tte foto i databasen."
3973
 
3974
- #: wppa-functions.php:4094 wppa-upload.php:1423
3975
  #, php-format
3976
  msgid "New photo uploaded: %s"
3977
  msgstr "Nyt foto indsendt: %s"
3978
 
3979
- #: wppa-functions.php:4095 wppa-upload.php:1424
3980
  #, fuzzy, php-format
3981
  msgid "User %1$s uploaded photo %2$s into album %3$s"
3982
  msgstr "Bruger %s indsendte foto %s ind i album %s"
3983
 
3984
- #: wppa-functions.php:4097 wppa-upload.php:1426
3985
  msgid "This upload requires moderation"
3986
  msgstr "Denne indsendelse kr&aelig;ver godkendelse"
3987
 
3988
- #: wppa-functions.php:4101 wppa-upload.php:1430
3989
  msgid "Details:"
3990
  msgstr "Detaljer:"
3991
 
3992
- #: wppa-functions.php:4102 wppa-upload.php:1431 wppa-utils.php:777
3993
- #: wppa-utils.php:789
3994
  msgid "Manage photo"
3995
  msgstr "Se fotos"
3996
 
3997
- #: wppa-functions.php:4244
3998
  msgid "You can upload after"
3999
  msgstr "Du kan indsende efter"
4000
 
4001
- #: wppa-functions.php:4274 wppa-functions.php:4285 wppa-links.php:1034
4002
  #: wppa-non-admin.php:644
4003
  #, fuzzy
4004
  msgid "Download"
@@ -4006,14 +4008,14 @@ msgstr ""
4006
  "Questa impostazione farà sì che cliccando sulla immagine con il tasto destro "
4007
  "non permetterà all'utente di scaricare l'immagine."
4008
 
4009
- #: wppa-functions.php:4278 wppa-functions.php:4289
4010
  #, fuzzy
4011
  msgid "Download:"
4012
  msgstr ""
4013
  "Questa impostazione farà sì che cliccando sulla immagine con il tasto destro "
4014
  "non permetterà all'utente di scaricare l'immagine."
4015
 
4016
- #: wppa-functions.php:4312
4017
  msgid "Zoom in"
4018
  msgstr "Zoom ind"
4019
 
@@ -4461,54 +4463,54 @@ msgstr ""
4461
  msgid "licence."
4462
  msgstr ""
4463
 
4464
- #: wppa-items.php:226 wppa-thumbnails.php:1834
4465
  msgid "Gold medal"
4466
  msgstr ""
4467
 
4468
- #: wppa-items.php:226 wppa-photo-admin-autosave.php:798
4469
- #: wppa-photo-admin-autosave.php:820 wppa-photo-admin-autosave.php:1263
4470
- #: wppa-photo-admin-autosave.php:1380 wppa-photo-admin-autosave.php:1391
4471
  #: wppa-widget-admin.php:126
4472
  msgid "Gold"
4473
  msgstr ""
4474
 
4475
- #: wppa-items.php:227 wppa-thumbnails.php:1835
4476
  msgid "Silver medal"
4477
  msgstr ""
4478
 
4479
- #: wppa-items.php:227 wppa-photo-admin-autosave.php:799
4480
- #: wppa-photo-admin-autosave.php:821 wppa-photo-admin-autosave.php:1264
4481
- #: wppa-photo-admin-autosave.php:1381 wppa-photo-admin-autosave.php:1392
4482
  #: wppa-widget-admin.php:127
4483
  msgid "Silver"
4484
  msgstr ""
4485
 
4486
- #: wppa-items.php:228 wppa-thumbnails.php:1836
4487
  msgid "Bronze medal"
4488
  msgstr ""
4489
 
4490
- #: wppa-items.php:228 wppa-photo-admin-autosave.php:800
4491
- #: wppa-photo-admin-autosave.php:822 wppa-photo-admin-autosave.php:1265
4492
- #: wppa-photo-admin-autosave.php:1382 wppa-photo-admin-autosave.php:1393
4493
  #: wppa-widget-admin.php:128
4494
  msgid "Bronze"
4495
  msgstr ""
4496
 
4497
- #: wppa-items.php:274 wppa-items.php:428 wppa-settings-autosave.php:3191
4498
  #, fuzzy
4499
  msgid "none"
4500
  msgstr "--- ingen ---"
4501
 
4502
- #: wppa-items.php:304 wppa-items.php:439 wppa-upload.php:99 wppa-upload.php:104
4503
  #, fuzzy
4504
  msgid "unknown"
4505
  msgstr "sconosciuto"
4506
 
4507
- #: wppa-items.php:374 wppa-items.php:395
4508
  msgid "--- deleted ---"
4509
  msgstr "--- vises ikke ---"
4510
 
4511
- #: wppa-items.php:384
4512
  msgid "All Albums"
4513
  msgstr "Alle albums"
4514
 
@@ -4538,18 +4540,18 @@ msgid ""
4538
  msgstr ""
4539
 
4540
  #: wppa-lasten-widget.php:186 wppa-thumbnail-widget.php:218
4541
- #: wppa-topten-widget.php:225
4542
  msgid "Display:"
4543
  msgstr ""
4544
 
4545
  #: wppa-lasten-widget.php:188 wppa-thumbnail-widget.php:220
4546
- #: wppa-topten-widget.php:227
4547
  #, fuzzy
4548
  msgid "thumbnail images"
4549
  msgstr "Foto Top Ti"
4550
 
4551
  #: wppa-lasten-widget.php:189 wppa-thumbnail-widget.php:221
4552
- #: wppa-topten-widget.php:228
4553
  #, fuzzy
4554
  msgid "photo names"
4555
  msgstr "Indtast foto navn"
@@ -4603,12 +4605,12 @@ msgstr "Er du sikker p&aring;, at du vil fjerne denne kommentar?"
4603
  msgid "Scheduled for %s"
4604
  msgstr ""
4605
 
4606
- #: wppa-links.php:975 wppa-links.php:978 wppa-slideshow.php:735
4607
  msgid "Previous"
4608
  msgstr "Forrige billede"
4609
 
4610
  #: wppa-links.php:985 wppa-links.php:988 wppa-non-admin.php:590
4611
- #: wppa-slideshow.php:738
4612
  msgid "Next"
4613
  msgstr "N&aelig;ste"
4614
 
@@ -4632,36 +4634,36 @@ msgstr ""
4632
  msgid "Error"
4633
  msgstr ""
4634
 
4635
- #: wppa-maintenance.php:118
4636
  #, fuzzy
4637
  msgid "Orphan photos"
4638
  msgstr "Indsend foto"
4639
 
4640
- #: wppa-maintenance.php:118
4641
  msgid "This album contains refound lost photos"
4642
  msgstr ""
4643
 
4644
- #: wppa-maintenance.php:660 wppa-photo-admin-autosave.php:1674
4645
- #: wppa-photo-admin-autosave.php:1695 wppa-setup.php:337 wppa.php:365
4646
- #: wppa.php:366
4647
  #, fuzzy
4648
  msgid "Required"
4649
  msgstr "Afskudt"
4650
 
4651
- #: wppa-maintenance.php:736
4652
  msgid "There are no index items."
4653
  msgstr ""
4654
 
4655
- #: wppa-maintenance.php:750
4656
  msgid "There are no error log messages"
4657
  msgstr ""
4658
 
4659
- #: wppa-maintenance.php:823
4660
  #, fuzzy
4661
  msgid "There are no ratings"
4662
  msgstr "Der er"
4663
 
4664
- #: wppa-maintenance.php:884
4665
  msgid "There are no active sessions"
4666
  msgstr ""
4667
 
@@ -4674,11 +4676,11 @@ msgstr ""
4674
  msgid "Photo Tags Filter"
4675
  msgstr "Dagens foto"
4676
 
4677
- #: wppa-multitag-widget.php:72
4678
  msgid "No of columns:"
4679
  msgstr ""
4680
 
4681
- #: wppa-multitag-widget.php:73 wppa-tagcloud-widget.php:68
4682
  msgid "Select multiple tags or --- all ---:"
4683
  msgstr ""
4684
 
@@ -4696,8 +4698,8 @@ msgstr ""
4696
  msgid "Keys: f = next mode; escape = exit; d = dismiss this notice."
4697
  msgstr ""
4698
 
4699
- #: wppa-non-admin.php:581 wppa-settings-autosave.php:3336
4700
- #: wppa-slideshow.php:232
4701
  msgid "Start"
4702
  msgstr "Start"
4703
 
@@ -4705,11 +4707,11 @@ msgstr "Start"
4705
  msgid "Stop"
4706
  msgstr "Stop"
4707
 
4708
- #: wppa-non-admin.php:583 wppa-slideshow.php:231
4709
  msgid "Slower"
4710
  msgstr "Langsommere"
4711
 
4712
- #: wppa-non-admin.php:584 wppa-slideshow.php:233
4713
  msgid "Faster"
4714
  msgstr "Hurtigere"
4715
 
@@ -4729,13 +4731,13 @@ msgstr "N&aelig;ste billede"
4729
  msgid "Prev."
4730
  msgstr "Forrige"
4731
 
4732
- #: wppa-non-admin.php:591 wppa-slideshow.php:577 wppa-slideshow.php:581
4733
- #: wppa-slideshow.php:627
4734
  msgid "Average&nbsp;rating"
4735
  msgstr "Bed&oslash;mmelse&nbsp;gennemsnitlig"
4736
 
4737
- #: wppa-non-admin.php:592 wppa-slideshow.php:602 wppa-slideshow.php:607
4738
- #: wppa-slideshow.php:612
4739
  msgid "My&nbsp;rating"
4740
  msgstr "Min&nbsp;bed&oslash;mmelse"
4741
 
@@ -4816,13 +4818,13 @@ msgstr ""
4816
  msgid "Photo %s has been removed."
4817
  msgstr "Il file %s no è supportato ed è stato rimosso."
4818
 
4819
- #: wppa-photo-admin-autosave.php:144 wppa-photo-admin-autosave.php:1428
4820
  #, fuzzy
4821
  msgid "No photos matching your search criteria."
4822
  msgstr ""
4823
  "Ingen album eller fotos fundet der svarer til dine s&oslash;ge kriterier."
4824
 
4825
- #: wppa-photo-admin-autosave.php:147 wppa-photo-admin-autosave.php:1431
4826
  #: wppa-widget-admin.php:210
4827
  #, fuzzy
4828
  msgid "No photos yet in this album."
@@ -4864,545 +4866,562 @@ msgstr ""
4864
  msgid "bottom - right"
4865
  msgstr ""
4866
 
4867
- #: wppa-photo-admin-autosave.php:176
4868
  #, fuzzy
4869
  msgid "Preview:"
4870
  msgstr "Forrige billede"
4871
 
4872
- #: wppa-photo-admin-autosave.php:178
4873
  #, php-format
4874
  msgid "Album: %d<br />(%s)"
4875
  msgstr ""
4876
 
4877
- #: wppa-photo-admin-autosave.php:181
4878
  msgid "Rotate"
4879
  msgstr ""
4880
 
4881
- #: wppa-photo-admin-autosave.php:182
4882
  #, fuzzy
4883
  msgid "Are you sure you want to rotate this photo left?"
4884
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
4885
 
4886
- #: wppa-photo-admin-autosave.php:184
4887
  #, fuzzy
4888
  msgid "Are you sure you want to rotate this photo 180&deg;?"
4889
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
4890
 
4891
- #: wppa-photo-admin-autosave.php:186
4892
  #, fuzzy
4893
  msgid "Are you sure you want to rotate this photo right?"
4894
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
4895
 
4896
- #: wppa-photo-admin-autosave.php:191
4897
  msgid "If it says 'Photo rotated', the photo is rotated."
4898
  msgstr ""
4899
 
4900
- #: wppa-photo-admin-autosave.php:194
4901
- #, fuzzy
4902
- msgid "Refresh"
4903
- msgstr "Ricarica questa pagina per svuotare la tabella X"
4904
-
4905
- #: wppa-photo-admin-autosave.php:195
4906
  #, php-format
4907
  msgid "If it says 'Photo rotated', the photo is rotated. %s the page."
4908
  msgstr ""
4909
 
4910
- #: wppa-photo-admin-autosave.php:209
4911
  msgid "Preview fullsize video"
4912
  msgstr ""
4913
 
4914
- #: wppa-photo-admin-autosave.php:224
4915
  #, fuzzy
4916
  msgid "Preview fullsize photo"
4917
  msgstr "Forrige billede"
4918
 
4919
- #: wppa-photo-admin-autosave.php:239
4920
  msgid "Audio disabled"
4921
  msgstr ""
4922
 
4923
- #: wppa-photo-admin-autosave.php:249
4924
  #, fuzzy
4925
  msgid "Upload:"
4926
  msgstr "Indsend"
4927
 
4928
- #: wppa-photo-admin-autosave.php:255 wppa-photo-admin-autosave.php:277
4929
  msgid "local time"
4930
  msgstr ""
4931
 
4932
- #: wppa-photo-admin-autosave.php:263 wppa-potd-widget.php:157
4933
  msgid "By:"
4934
  msgstr ""
4935
 
4936
- #: wppa-photo-admin-autosave.php:301
4937
  #, fuzzy
4938
  msgid "Rating:"
4939
  msgstr "Bed&oslash;mmelse: %s"
4940
 
4941
- #: wppa-photo-admin-autosave.php:307
4942
  msgid "Entries:"
4943
  msgstr ""
4944
 
4945
- #: wppa-photo-admin-autosave.php:307
4946
  #, fuzzy
4947
  msgid "Mean value:"
4948
  msgstr "Mean value:"
4949
 
4950
- #: wppa-photo-admin-autosave.php:314
4951
  #, php-format
4952
  msgid "Disliked by %d visitors"
4953
  msgstr ""
4954
 
4955
- #: wppa-photo-admin-autosave.php:318
4956
  #, php-format
4957
  msgid "%d pending votes."
4958
  msgstr ""
4959
 
4960
- #: wppa-photo-admin-autosave.php:328
4961
  #, fuzzy
4962
  msgid "Views"
4963
  msgstr "Se"
4964
 
4965
- #: wppa-photo-admin-autosave.php:339
4966
  #, fuzzy
4967
  msgid "Photo sort order #:"
4968
  msgstr "Billede ikke fundet"
4969
 
4970
- #: wppa-photo-admin-autosave.php:352
4971
  #, fuzzy
4972
  msgid "Are you sure you want to move this photo?"
4973
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
4974
 
4975
- #: wppa-photo-admin-autosave.php:352
4976
  #, fuzzy
4977
  msgid "Please select an album to move the photo to first."
4978
  msgstr ""
4979
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
4980
  "di ricerca differente."
4981
 
4982
- #: wppa-photo-admin-autosave.php:352
4983
  #, fuzzy
4984
  msgid "Move photo to"
4985
  msgstr "Se fotos"
4986
 
4987
- #: wppa-photo-admin-autosave.php:361
4988
  #, fuzzy
4989
  msgid "Are you sure you want to copy this photo?"
4990
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
4991
 
4992
- #: wppa-photo-admin-autosave.php:361
4993
  #, fuzzy
4994
  msgid "Please select an album to copy the photo to first."
4995
  msgstr ""
4996
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
4997
  "di ricerca differente."
4998
 
4999
- #: wppa-photo-admin-autosave.php:361
5000
  msgid "Copy photo to"
5001
  msgstr ""
5002
 
5003
- #: wppa-photo-admin-autosave.php:372 wppa-photo-admin-autosave.php:1312
5004
  #, fuzzy
5005
  msgid "Are you sure you want to delete this photo?"
5006
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
5007
 
5008
- #: wppa-photo-admin-autosave.php:372
5009
  #, fuzzy
5010
  msgid "Delete photo"
5011
  msgstr "fotos"
5012
 
5013
- #: wppa-photo-admin-autosave.php:395
5014
  msgid "Autopage Permalink:"
5015
  msgstr ""
5016
 
5017
- #: wppa-photo-admin-autosave.php:408
5018
  #, fuzzy
5019
  msgid "Link url:"
5020
  msgstr "Link til"
5021
 
5022
- #: wppa-photo-admin-autosave.php:413
5023
  msgid "Same tab"
5024
  msgstr ""
5025
 
5026
- #: wppa-photo-admin-autosave.php:414 wppa-settings-autosave.php:4426
5027
- #: wppa-settings-autosave.php:5425
5028
  #, fuzzy
5029
  msgid "New tab"
5030
  msgstr "Impossibile creare album. "
5031
 
5032
- #: wppa-photo-admin-autosave.php:421
5033
  #, fuzzy
5034
  msgid "Link title:"
5035
  msgstr "Link til"
5036
 
5037
- #: wppa-photo-admin-autosave.php:430
5038
  msgid ""
5039
  "If you want this link to be used, check 'PS Overrule' checkbox in table VI."
5040
  msgstr ""
5041
 
5042
- #: wppa-photo-admin-autosave.php:440
5043
  msgid "HTML Alt attribute:"
5044
  msgstr ""
5045
 
5046
- #: wppa-photo-admin-autosave.php:460
5047
  #, fuzzy
5048
  msgid "Filename:"
5049
  msgstr "Dit navn"
5050
 
5051
- #: wppa-photo-admin-autosave.php:466
5052
  #, fuzzy
5053
  msgid "Update file"
5054
  msgstr ""
5055
  "Non hai i permessi per potere aggiornare le informazioni di questo album"
5056
 
5057
- #: wppa-photo-admin-autosave.php:477 wppa-settings-autosave.php:2938
5058
  msgid "Upload"
5059
  msgstr "Indsend"
5060
 
5061
- #: wppa-photo-admin-autosave.php:487
5062
  msgid "Video size:"
5063
  msgstr ""
5064
 
5065
- #: wppa-photo-admin-autosave.php:493 wppa-slideshow-widget.php:203
5066
  msgid "Width:"
5067
  msgstr ""
5068
 
5069
- #: wppa-photo-admin-autosave.php:496 wppa-photo-admin-autosave.php:504
5070
  #, php-format
5071
  msgid "pix, (0=default:%s)"
5072
  msgstr ""
5073
 
5074
- #: wppa-photo-admin-autosave.php:501 wppa-slideshow-widget.php:204
5075
  msgid "Height:"
5076
  msgstr ""
5077
 
5078
- #: wppa-photo-admin-autosave.php:512 wppa-photo-admin-autosave.php:534
5079
  msgid "Formats:"
5080
  msgstr ""
5081
 
5082
- #: wppa-photo-admin-autosave.php:520 wppa-photo-admin-autosave.php:542
5083
  msgid "Filesize:"
5084
  msgstr ""
5085
 
5086
- #: wppa-photo-admin-autosave.php:554
5087
  #, fuzzy
5088
  msgid "Poster:"
5089
  msgstr "--- lo stesso articolo/pagina ---"
5090
 
5091
- #: wppa-photo-admin-autosave.php:554
5092
  #, fuzzy
5093
  msgid "Photo sizes:"
5094
  msgstr "Foto"
5095
 
5096
- #: wppa-photo-admin-autosave.php:560
5097
  msgid "Source file:"
5098
  msgstr ""
5099
 
5100
- #: wppa-photo-admin-autosave.php:573
5101
  msgid "Remake display file and thumbnail file"
5102
  msgstr ""
5103
 
5104
- #: wppa-photo-admin-autosave.php:573
5105
  msgid "Remake files"
5106
  msgstr ""
5107
 
5108
- #: wppa-photo-admin-autosave.php:578 wppa-photo-admin-autosave.php:603
5109
- #: wppa-photo-admin-autosave.php:626
5110
  msgid "Unavailable"
5111
  msgstr ""
5112
 
5113
- #: wppa-photo-admin-autosave.php:588
5114
  msgid "Display file:"
5115
  msgstr ""
5116
 
5117
- #: wppa-photo-admin-autosave.php:613
5118
  #, fuzzy
5119
  msgid "Thumbnail file:"
5120
  msgstr "Foto Top Ti"
5121
 
5122
- #: wppa-photo-admin-autosave.php:632
5123
  #, fuzzy
5124
  msgid "Remake thumbnail file"
5125
  msgstr "Foto Top Ti"
5126
 
5127
- #: wppa-photo-admin-autosave.php:632 wppa-settings-autosave.php:6143
5128
  msgid "Remake"
5129
  msgstr ""
5130
 
5131
- #: wppa-photo-admin-autosave.php:644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5132
  #, fuzzy
5133
  msgid "Location:"
5134
  msgstr "Position:"
5135
 
5136
- #: wppa-photo-admin-autosave.php:652
5137
  msgid "Lat:"
5138
  msgstr ""
5139
 
5140
- #: wppa-photo-admin-autosave.php:653
5141
  msgid "Lon:"
5142
  msgstr ""
5143
 
5144
- #: wppa-photo-admin-autosave.php:655
5145
  msgid "Refresh the page after changing to see the degrees being updated"
5146
  msgstr ""
5147
 
5148
- #: wppa-photo-admin-autosave.php:665
5149
  #, fuzzy
5150
  msgid "Photoname:"
5151
  msgstr "Dagens foto"
5152
 
5153
- #: wppa-photo-admin-autosave.php:671
5154
  #, fuzzy
5155
  msgid "Update Photo name"
5156
  msgstr "Indtast foto navn"
5157
 
5158
- #: wppa-photo-admin-autosave.php:697
5159
  #, fuzzy
5160
  msgid "Update Photo description"
5161
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
5162
 
5163
- #: wppa-photo-admin-autosave.php:755
5164
  msgid "Tags:"
5165
  msgstr ""
5166
 
5167
- #: wppa-photo-admin-autosave.php:763
5168
  msgid "Separate tags with commas."
5169
  msgstr ""
5170
 
5171
- #: wppa-photo-admin-autosave.php:774
5172
  #, fuzzy
5173
  msgid "No tags yet"
5174
  msgstr "Intet album er defineret."
5175
 
5176
- #: wppa-photo-admin-autosave.php:786
5177
  msgid "Status:"
5178
  msgstr ""
5179
 
5180
- #: wppa-photo-admin-autosave.php:795 wppa-photo-admin-autosave.php:818
5181
- #: wppa-photo-admin-autosave.php:1260 wppa-photo-admin-autosave.php:1377
5182
- #: wppa-photo-admin-autosave.php:1389 wppa-widget-admin.php:124
5183
  msgid "Publish"
5184
  msgstr ""
5185
 
5186
- #: wppa-photo-admin-autosave.php:797 wppa-photo-admin-autosave.php:819
5187
- #: wppa-photo-admin-autosave.php:1262 wppa-photo-admin-autosave.php:1379
5188
  #: wppa-widget-admin.php:125
5189
  #, fuzzy
5190
  msgid "Featured"
5191
  msgstr "Top fotos"
5192
 
5193
- #: wppa-photo-admin-autosave.php:801 wppa-photo-admin-autosave.php:823
5194
- #: wppa-photo-admin-autosave.php:1266 wppa-photo-admin-autosave.php:1383
5195
- #: wppa-photo-admin-autosave.php:1394
5196
  msgid "Scheduled"
5197
  msgstr ""
5198
 
5199
- #: wppa-photo-admin-autosave.php:802 wppa-photo-admin-autosave.php:824
5200
- #: wppa-photo-admin-autosave.php:1267 wppa-photo-admin-autosave.php:1384
5201
- #: wppa-photo-admin-autosave.php:1395
5202
  msgid "Private"
5203
  msgstr ""
5204
 
5205
- #: wppa-photo-admin-autosave.php:833
5206
  msgid ""
5207
  "Note: Featured photos should have a descriptive name; a name a search engine "
5208
  "will look for!"
5209
  msgstr ""
5210
 
5211
- #: wppa-photo-admin-autosave.php:843
5212
  msgid "Watermark:"
5213
  msgstr ""
5214
 
5215
- #: wppa-photo-admin-autosave.php:850 wppa-photo-admin-autosave.php:863
5216
  msgid "File:"
5217
  msgstr ""
5218
 
5219
- #: wppa-photo-admin-autosave.php:855 wppa-photo-admin-autosave.php:864
5220
  msgid "Pos:"
5221
  msgstr ""
5222
 
5223
- #: wppa-photo-admin-autosave.php:859
5224
  #, fuzzy
5225
  msgid "Apply watermark"
5226
  msgstr "Inds&aelig;t vandm&aelig;rke:"
5227
 
5228
- #: wppa-photo-admin-autosave.php:859
5229
  msgid "Are you sure? Once applied it can not be removed!"
5230
  msgstr ""
5231
 
5232
- #: wppa-photo-admin-autosave.php:859
5233
  msgid "And I do not know if there is already a watermark on this photo"
5234
  msgstr ""
5235
 
5236
- #: wppa-photo-admin-autosave.php:869
5237
  #, fuzzy
5238
  msgid "Not configured"
5239
  msgstr "Ikke Defineret"
5240
 
5241
- #: wppa-photo-admin-autosave.php:883
5242
  #, php-format
5243
  msgid "Video %s is not modified yet"
5244
  msgstr ""
5245
 
5246
- #: wppa-photo-admin-autosave.php:886
5247
  #, fuzzy, php-format
5248
  msgid "Photo %s is not modified yet"
5249
  msgstr "Billede ikke fundet"
5250
 
5251
- #: wppa-photo-admin-autosave.php:905
5252
  msgid "Single image shortcode"
5253
  msgstr ""
5254
 
5255
- #: wppa-photo-admin-autosave.php:911
5256
  msgid "Permalink"
5257
  msgstr ""
5258
 
5259
- #: wppa-photo-admin-autosave.php:916
5260
  msgid "Hi resolution url"
5261
  msgstr ""
5262
 
5263
- #: wppa-photo-admin-autosave.php:921
5264
  msgid "Display file url"
5265
  msgstr ""
5266
 
5267
- #: wppa-photo-admin-autosave.php:927
5268
  #, fuzzy
5269
  msgid "Thumbnail file url"
5270
  msgstr "Foto Top Ti"
5271
 
5272
- #: wppa-photo-admin-autosave.php:971 wppa-photo-admin-autosave.php:981
5273
  msgid "Trash"
5274
  msgstr ""
5275
 
5276
- #: wppa-photo-admin-autosave.php:1097
5277
  #, php-format
5278
  msgid "Time is out after processing %d out of %d items."
5279
  msgstr ""
5280
 
5281
- #: wppa-photo-admin-autosave.php:1110
5282
  #, php-format
5283
  msgid "%d photos deleted."
5284
  msgstr ""
5285
 
5286
- #: wppa-photo-admin-autosave.php:1113
5287
  #, php-format
5288
  msgid "%1$s photos moved to album %2$s."
5289
  msgstr ""
5290
 
5291
- #: wppa-photo-admin-autosave.php:1116
5292
  #, fuzzy, php-format
5293
  msgid "%1$s photos copied to album %2$s."
5294
  msgstr "Bruger %s indsendte foto %s ind i album %s"
5295
 
5296
- #: wppa-photo-admin-autosave.php:1119
5297
  #, php-format
5298
  msgid "Changed status to %1$s on %2$s photos."
5299
  msgstr ""
5300
 
5301
- #: wppa-photo-admin-autosave.php:1122
5302
  #, php-format
5303
  msgid "Changed owner to %1$s on %2$s photos."
5304
  msgstr ""
5305
 
5306
- #: wppa-photo-admin-autosave.php:1125
5307
  #, fuzzy, php-format
5308
  msgid "%d photos processed."
5309
  msgstr "Indsendelse af %s fotos var en success."
5310
 
5311
- #: wppa-photo-admin-autosave.php:1245
5312
  msgid "Move to"
5313
  msgstr ""
5314
 
5315
- #: wppa-photo-admin-autosave.php:1246
5316
  msgid "Copy to"
5317
  msgstr ""
5318
 
5319
- #: wppa-photo-admin-autosave.php:1248
5320
  msgid "Set status to"
5321
  msgstr ""
5322
 
5323
- #: wppa-photo-admin-autosave.php:1251
5324
  msgid "Set owner to"
5325
  msgstr ""
5326
 
5327
- #: wppa-photo-admin-autosave.php:1258
5328
  #, fuzzy
5329
  msgid "- select a status -"
5330
  msgstr ""
5331
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
5332
  "di ricerca differente."
5333
 
5334
- #: wppa-photo-admin-autosave.php:1273
5335
  #, fuzzy
5336
  msgid "- select an owner -"
5337
  msgstr ""
5338
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
5339
  "di ricerca differente."
5340
 
5341
- #: wppa-photo-admin-autosave.php:1285
5342
  msgid "Doit!"
5343
  msgstr ""
5344
 
5345
- #: wppa-photo-admin-autosave.php:1287
5346
  msgid ""
5347
  "Pressing this button will reload the page after executing the selected action"
5348
  msgstr ""
5349
 
5350
- #: wppa-photo-admin-autosave.php:1294 wppa-photo-admin-autosave.php:1413
5351
- #: wppa-settings-autosave.php:7454
5352
  #, fuzzy
5353
  msgid "Preview"
5354
  msgstr "Forrige billede"
5355
 
5356
- #: wppa-photo-admin-autosave.php:1299 wppa-photo-admin-autosave.php:1418
5357
  msgid "Remark"
5358
  msgstr ""
5359
 
5360
- #: wppa-photo-admin-autosave.php:1404
5361
  #, fuzzy
5362
  msgid "Not modified"
5363
  msgstr "Ikke Defineret"
5364
 
5365
- #: wppa-photo-admin-autosave.php:1436
5366
  #, php-format
5367
  msgid "Page %d is empty, try <a href=\"%s\" >page %d</a>."
5368
  msgstr ""
5369
 
5370
- #: wppa-photo-admin-autosave.php:1546
5371
  msgid ""
5372
  "Setting photo sequence order has only effect if the photo order method is "
5373
  "set to <b>Order#</b>"
5374
  msgstr ""
5375
 
5376
- #: wppa-photo-admin-autosave.php:1605
5377
  msgid "Id: "
5378
  msgstr ""
5379
 
5380
- #: wppa-photo-admin-autosave.php:1606 wppa-settings-autosave.php:407
5381
  msgid "Video"
5382
  msgstr ""
5383
 
5384
- #: wppa-photo-admin-autosave.php:1607 wppa-settings-autosave.php:388
5385
  msgid "Audio"
5386
  msgstr ""
5387
 
5388
- #: wppa-photo-admin-autosave.php:1608
5389
  msgid "Ord: "
5390
  msgstr ""
5391
 
5392
- #: wppa-photo-admin-autosave.php:1621
5393
  #, fuzzy
5394
  msgid "The album is empty."
5395
  msgstr "Intet album er defineret."
5396
 
5397
- #: wppa-photo-admin-autosave.php:1721
5398
  msgid "Combined"
5399
  msgstr ""
5400
 
5401
- #: wppa-photo-admin-autosave.php:1758
5402
  msgid "Word"
5403
  msgstr ""
5404
 
5405
- #: wppa-photo-admin-autosave.php:1761
5406
  msgid "Count"
5407
  msgstr ""
5408
 
@@ -5416,7 +5435,7 @@ msgstr "Dagens foto"
5416
  msgid "Photo Of The Day"
5417
  msgstr "Dagens foto"
5418
 
5419
- #: wppa-potd-widget.php:186
5420
  msgid ""
5421
  "You can set the content and the sizes in this widget in the <b>Photo Albums -"
5422
  "> Sidebar Widget</b> admin page."
@@ -5440,137 +5459,137 @@ msgstr ""
5440
  msgid "WPPA+ Search Photos"
5441
  msgstr ""
5442
 
5443
- #: wppa-search-widget.php:14 wppa-search-widget.php:35
5444
- #: wppa-search-widget.php:63
5445
  #, fuzzy
5446
  msgid "Search Photos"
5447
  msgstr "Se forside fotos"
5448
 
5449
- #: wppa-search-widget.php:77
5450
  msgid "Text:"
5451
  msgstr ""
5452
 
5453
- #: wppa-search-widget.php:81
5454
  msgid ""
5455
  "Enter optional text that will appear before the input box. This may contain "
5456
  "HTML so you can change font size and color."
5457
  msgstr ""
5458
 
5459
- #: wppa-search-widget.php:85
5460
  msgid "Enable rootsearch"
5461
  msgstr ""
5462
 
5463
- #: wppa-search-widget.php:91
5464
  msgid "Enable subsearch"
5465
  msgstr ""
5466
 
5467
- #: wppa-settings-autosave.php:121
5468
  msgid "Saved settings restored"
5469
  msgstr ""
5470
 
5471
- #: wppa-settings-autosave.php:124
5472
  msgid "Unable to restore saved settings"
5473
  msgstr ""
5474
 
5475
- #: wppa-settings-autosave.php:130
5476
  msgid "Reset to default settings"
5477
  msgstr ""
5478
 
5479
- #: wppa-settings-autosave.php:133
5480
  msgid "Unable to set defaults"
5481
  msgstr ""
5482
 
5483
- #: wppa-settings-autosave.php:138
5484
  #, php-format
5485
  msgid "Skinfile %s loaded"
5486
  msgstr ""
5487
 
5488
- #: wppa-settings-autosave.php:149 wppa-settings-autosave.php:171
5489
- #: wppa-settings-autosave.php:192
5490
  #, fuzzy, php-format
5491
  msgid "Upload error %s"
5492
  msgstr "Indsend foto"
5493
 
5494
- #: wppa-settings-autosave.php:154
5495
  #, fuzzy, php-format
5496
  msgid "Uploaded file %s is not a .png file"
5497
  msgstr "Uploaded fil er ikke et billede"
5498
 
5499
- #: wppa-settings-autosave.php:158 wppa-settings-autosave.php:179
5500
- #: wppa-settings-autosave.php:215
5501
  #, fuzzy, php-format
5502
  msgid "Upload of %s done"
5503
  msgstr "Indsend foto"
5504
 
5505
- #: wppa-settings-autosave.php:163 wppa-settings-autosave.php:184
5506
- #: wppa-settings-autosave.php:220
5507
  msgid "No file selected or error on upload"
5508
  msgstr ""
5509
 
5510
- #: wppa-settings-autosave.php:175
5511
  #, fuzzy, php-format
5512
  msgid "Uploaded file %s is not a .ttf file"
5513
  msgstr "Uploaded fil er ikke et billede"
5514
 
5515
- #: wppa-settings-autosave.php:197
5516
  #, fuzzy, php-format
5517
  msgid "Uploaded file %s is not a valid image file"
5518
  msgstr "Uploaded fil er ikke et billede"
5519
 
5520
- #: wppa-settings-autosave.php:276
5521
  #, php-format
5522
  msgid ""
5523
  "%s invalid ratings removed. Please run Table VIII-A5: Rerate to fix the "
5524
  "averages."
5525
  msgstr ""
5526
 
5527
- #: wppa-settings-autosave.php:286
5528
  #, php-format
5529
  msgid "%s obsolete settings removed."
5530
  msgstr ""
5531
 
5532
- #: wppa-settings-autosave.php:295
5533
  #, fuzzy
5534
  msgid "WP Photo Album Plus Settings"
5535
  msgstr "Foto Albums"
5536
 
5537
- #: wppa-settings-autosave.php:296
5538
  msgid "Database revision:"
5539
  msgstr ""
5540
 
5541
- #: wppa-settings-autosave.php:296
5542
  msgid "WP Charset:"
5543
  msgstr ""
5544
 
5545
- #: wppa-settings-autosave.php:299
5546
  msgid "Multisite in singlesite mode."
5547
  msgstr ""
5548
 
5549
- #: wppa-settings-autosave.php:302
5550
  msgid "Multisite enabled."
5551
  msgstr ""
5552
 
5553
- #: wppa-settings-autosave.php:304
5554
  msgid "Blogid ="
5555
  msgstr ""
5556
 
5557
- #: wppa-settings-autosave.php:321
5558
  msgid "Please de-activate plugin <i style=\"font-size:14px;\">"
5559
  msgstr ""
5560
 
5561
- #: wppa-settings-autosave.php:321
5562
  msgid ". </i>This plugin will cause wppa+ to function not properly."
5563
  msgstr ""
5564
 
5565
- #: wppa-settings-autosave.php:331
5566
  msgid "Please note that plugin <i style=\"font-size:14px;\">"
5567
  msgstr ""
5568
 
5569
- #: wppa-settings-autosave.php:331
5570
  msgid "</i> can cause wppa+ to function not properly if it is misconfigured."
5571
  msgstr ""
5572
 
5573
- #: wppa-settings-autosave.php:336 wppa-upload.php:93
5574
  msgid ""
5575
  "There is a serious misconfiguration in your servers PHP config. Function "
5576
  "imagecreatefromjpeg() does not exist. You will encounter problems when "
@@ -5578,591 +5597,601 @@ msgid ""
5578
  "hosting provider to add GD support with a minimal version 1.8."
5579
  msgstr ""
5580
 
5581
- #: wppa-settings-autosave.php:341
5582
  msgid "Rebuilding the Album index needs completion. See Table VIII"
5583
  msgstr ""
5584
 
5585
- #: wppa-settings-autosave.php:342
5586
  msgid "Rebuilding the Photo index needs completion. See Table VIII"
5587
  msgstr ""
5588
 
5589
- #: wppa-settings-autosave.php:344
5590
  msgid "Remove empty albums needs completion. See Table VIII"
5591
  msgstr ""
5592
 
5593
- #: wppa-settings-autosave.php:345
5594
  msgid "Applying new photo description needs completion. See Table VIII"
5595
  msgstr ""
5596
 
5597
- #: wppa-settings-autosave.php:346
5598
  msgid "Appending to photo description needs completion. See Table VIII"
5599
  msgstr ""
5600
 
5601
- #: wppa-settings-autosave.php:347
5602
  msgid "Removing from photo description needs completion. See Table VIII"
5603
  msgstr ""
5604
 
5605
- #: wppa-settings-autosave.php:348
5606
  msgid "Removing file extensions needs completion. See Table VIII"
5607
  msgstr ""
5608
 
5609
- #: wppa-settings-autosave.php:349
5610
  msgid "Regenerating the Thumbnails needs completion. See Table VIII"
5611
  msgstr ""
5612
 
5613
- #: wppa-settings-autosave.php:350
5614
  msgid "Rerating needs completion. See Table VIII"
5615
  msgstr ""
5616
 
5617
- #: wppa-settings-autosave.php:358
5618
  msgid ""
5619
  "A thumbframe width or height should not be smaller than a thumbnail size. "
5620
  "Please correct the corresponding setting(s) in Table I-C"
5621
  msgstr ""
5622
 
5623
- #: wppa-settings-autosave.php:363
5624
  msgid "Show legenda"
5625
  msgstr ""
5626
 
5627
- #: wppa-settings-autosave.php:365
5628
  msgid "Legenda:"
5629
  msgstr ""
5630
 
5631
- #: wppa-settings-autosave.php:366 wppa-settings-autosave.php:368
5632
- #: wppa-settings-autosave.php:1881 wppa-settings-autosave.php:5147
5633
  msgid "Button"
5634
  msgstr ""
5635
 
5636
- #: wppa-settings-autosave.php:366
5637
  msgid "action that causes page reload."
5638
  msgstr ""
5639
 
5640
- #: wppa-settings-autosave.php:368 wppa-settings-autosave.php:8795
5641
- #: wppa-settings-autosave.php:8814
5642
  msgid "Are you sure?"
5643
  msgstr ""
5644
 
5645
- #: wppa-settings-autosave.php:369
5646
  msgid "action that does not cause page reload."
5647
  msgstr ""
5648
 
5649
- #: wppa-settings-autosave.php:371 wppa-settings-autosave.php:7343
5650
- #: wppa-settings-autosave.php:7345 wppa-settings-autosave.php:8497
5651
- #: wppa-settings-autosave.php:8513 wppa-settings-autosave.php:8541
5652
- #: wppa-settings-autosave.php:8565 wppa-settings-autosave.php:8595
5653
- #: wppa-settings-autosave.php:8622 wppa-settings-autosave.php:8648
5654
- #: wppa-settings-autosave.php:8664 wppa-settings-autosave.php:8717
5655
- #: wppa-settings-autosave.php:8747
5656
  msgid "Setting unmodified"
5657
  msgstr ""
5658
 
5659
- #: wppa-settings-autosave.php:373
5660
  msgid "Update in progress"
5661
  msgstr ""
5662
 
5663
- #: wppa-settings-autosave.php:375
5664
  #, fuzzy
5665
  msgid "Setting updated"
5666
  msgstr "Indstillinger"
5667
 
5668
- #: wppa-settings-autosave.php:377
5669
  #, fuzzy
5670
  msgid "Update failed"
5671
  msgstr "Indl&aelig;sning fejlede"
5672
 
5673
- #: wppa-settings-autosave.php:379
5674
  msgid "Hide this"
5675
  msgstr ""
5676
 
5677
- #: wppa-settings-autosave.php:385
5678
  msgid "System"
5679
  msgstr ""
5680
 
5681
- #: wppa-settings-autosave.php:386
5682
  msgid "Access"
5683
  msgstr ""
5684
 
5685
- #: wppa-settings-autosave.php:390
5686
  msgid "Counts"
5687
  msgstr ""
5688
 
5689
- #: wppa-settings-autosave.php:391
5690
  msgid "Covers"
5691
  msgstr ""
5692
 
5693
- #: wppa-settings-autosave.php:392
5694
  msgid "Layout"
5695
  msgstr ""
5696
 
5697
- #: wppa-settings-autosave.php:393 wppa-settings-autosave.php:4376
5698
  msgid "Lightbox"
5699
  msgstr ""
5700
 
5701
- #: wppa-settings-autosave.php:394
5702
  #, fuzzy
5703
  msgid "Links"
5704
  msgstr "Link til"
5705
 
5706
- #: wppa-settings-autosave.php:395
5707
  msgid "Metadata"
5708
  msgstr ""
5709
 
5710
- #: wppa-settings-autosave.php:396
5711
  msgid "Navigation"
5712
  msgstr ""
5713
 
5714
- #: wppa-settings-autosave.php:397 wppa-settings-autosave.php:1455
5715
- #: wppa-settings-autosave.php:7690
5716
  #, fuzzy
5717
  msgid "Page"
5718
  msgstr "N&aelig;ste&nbsp;side"
5719
 
5720
- #: wppa-settings-autosave.php:398 wppa-settings-autosave.php:7486
5721
- #: wppa-settings-autosave.php:7531
5722
  #, fuzzy
5723
  msgid "Rating"
5724
  msgstr "Bed&oslash;mmelse: %s"
5725
 
5726
- #: wppa-settings-autosave.php:400
5727
  msgid "Sizes"
5728
  msgstr ""
5729
 
5730
- #: wppa-settings-autosave.php:401
5731
  #, fuzzy
5732
  msgid "Slideshows"
5733
  msgstr "Slideshow"
5734
 
5735
- #: wppa-settings-autosave.php:402
5736
  msgid "Social Media"
5737
  msgstr ""
5738
 
5739
- #: wppa-settings-autosave.php:404
5740
  #, fuzzy
5741
  msgid "Uploads"
5742
  msgstr "Indsend"
5743
 
5744
- #: wppa-settings-autosave.php:405
5745
  msgid "Widgets"
5746
  msgstr ""
5747
 
5748
- #: wppa-settings-autosave.php:406 wppa-settings-autosave.php:7324
5749
  msgid "Watermark"
5750
  msgstr ""
5751
 
5752
- #: wppa-settings-autosave.php:414
5753
  msgid "Click on the banner of a (sub)table to open/close it, or"
5754
  msgstr ""
5755
 
5756
- #: wppa-settings-autosave.php:416
5757
  msgid "Show settings related to:"
5758
  msgstr ""
5759
 
5760
- #: wppa-settings-autosave.php:422
5761
  msgid "and ( optionally ) to:"
5762
  msgstr ""
5763
 
5764
- #: wppa-settings-autosave.php:436
5765
  msgid "Quick setup"
5766
  msgstr ""
5767
 
5768
- #: wppa-settings-autosave.php:438
5769
  msgid "Do a quick initial setup"
5770
  msgstr ""
5771
 
5772
- #: wppa-settings-autosave.php:439
5773
  msgid "Close quick setup"
5774
  msgstr ""
5775
 
5776
- #: wppa-settings-autosave.php:446
5777
  msgid "Table O:"
5778
  msgstr ""
5779
 
5780
- #: wppa-settings-autosave.php:446
5781
  msgid "Quick Setup:"
5782
  msgstr ""
5783
 
5784
- #: wppa-settings-autosave.php:447
5785
  msgid "This table enables you to quickly do an inital setup."
5786
  msgstr ""
5787
 
5788
- #: wppa-settings-autosave.php:457 wppa-settings-autosave.php:610
5789
- #: wppa-settings-autosave.php:632 wppa-settings-autosave.php:1332
5790
- #: wppa-settings-autosave.php:1353 wppa-settings-autosave.php:2718
5791
- #: wppa-settings-autosave.php:3061 wppa-settings-autosave.php:4203
5792
- #: wppa-settings-autosave.php:5931 wppa-settings-autosave.php:6557
5793
- #: wppa-settings-autosave.php:8088
5794
  #, fuzzy
5795
  msgid "Setting"
5796
  msgstr "Indstillinger"
5797
 
5798
- #: wppa-settings-autosave.php:458 wppa-settings-autosave.php:611
5799
- #: wppa-settings-autosave.php:633 wppa-settings-autosave.php:1333
5800
- #: wppa-settings-autosave.php:1354 wppa-settings-autosave.php:2719
5801
- #: wppa-settings-autosave.php:2743 wppa-settings-autosave.php:3041
5802
- #: wppa-settings-autosave.php:3062 wppa-settings-autosave.php:4204
5803
- #: wppa-settings-autosave.php:4228 wppa-settings-autosave.php:4404
5804
- #: wppa-settings-autosave.php:4428 wppa-settings-autosave.php:5427
5805
- #: wppa-settings-autosave.php:5933 wppa-settings-autosave.php:5957
5806
- #: wppa-settings-autosave.php:6537 wppa-settings-autosave.php:6558
5807
- #: wppa-settings-autosave.php:8089 wppa-settings-autosave.php:8111
5808
- #: wppa-settings-autosave.php:8151 wppa-settings-autosave.php:8173
5809
- #: wppa-settings-autosave.php:8219
5810
  msgid "Help"
5811
  msgstr ""
5812
 
5813
- #: wppa-settings-autosave.php:469
5814
  msgid ""
5815
  "To quickly setup WPPA+ please answer the following questions. You can alway "
5816
  "change any setting later. <span style=\"color:#700\">Click on me!</span>"
5817
  msgstr ""
5818
 
5819
- #: wppa-settings-autosave.php:471
5820
  msgid "Is your theme <i>responsive</i>?"
5821
  msgstr ""
5822
 
5823
- #: wppa-settings-autosave.php:472
5824
  msgid ""
5825
  "Responsive themes have a layout that varies with the size of the browser "
5826
  "window."
5827
  msgstr ""
5828
 
5829
- #: wppa-settings-autosave.php:473
5830
  msgid ""
5831
  "WPPA+ needs to know this to automaticly adept the width of the display to "
5832
  "the available width on the page."
5833
  msgstr ""
5834
 
5835
- #: wppa-settings-autosave.php:480
5836
  msgid "Do you want to downsize photos during upload?"
5837
  msgstr ""
5838
 
5839
- #: wppa-settings-autosave.php:481
5840
  msgid ""
5841
  "Downsizing photos make them load faster to the visitor, without loosing "
5842
  "display quality"
5843
  msgstr ""
5844
 
5845
- #: wppa-settings-autosave.php:482
5846
  msgid ""
5847
  "If you answer yes, the photos will be downsized to max 1024 x 768 pixels. "
5848
  "You can change this later, if you like"
5849
  msgstr ""
5850
 
5851
- #: wppa-settings-autosave.php:489
5852
  #, fuzzy
5853
  msgid "Do you want to save the original photofiles?"
5854
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
5855
 
5856
- #: wppa-settings-autosave.php:490
5857
  msgid "This will require considerable disk space on the server."
5858
  msgstr ""
5859
 
5860
- #: wppa-settings-autosave.php:491
5861
  msgid ""
5862
  "If you answer yes, you will be able to remove watermarks you applied with "
5863
  "wppa+ in a later stage, redo downsizing to a larger size afterwards, and "
5864
  "supply fullsize images for download."
5865
  msgstr ""
5866
 
5867
- #: wppa-settings-autosave.php:498
5868
  #, fuzzy
5869
  msgid "May visitors upload photos?"
5870
  msgstr "Bruger %s indsendte foto %s ind i album %s"
5871
 
5872
- #: wppa-settings-autosave.php:499
5873
  msgid ""
5874
  "It is safe to do so, but i will have to do some settings to keep it safe!"
5875
  msgstr ""
5876
 
5877
- #: wppa-settings-autosave.php:500
5878
  msgid ""
5879
  "If you answer yes, i will assume you want to enable logged in users to "
5880
  "upload photos at the front-end of the website and allow them to edit their "
5881
  "photos name and descriptions."
5882
  msgstr ""
5883
 
5884
- #: wppa-settings-autosave.php:501
5885
  msgid ""
5886
  "The photos will be hold for moderation, the admin will get notified by email."
5887
  msgstr ""
5888
 
5889
- #: wppa-settings-autosave.php:502
5890
  msgid ""
5891
  "Each user will get his own album to upload to. These settings can be changed "
5892
  "later."
5893
  msgstr ""
5894
 
5895
- #: wppa-settings-autosave.php:509
5896
  msgid "Do you want the rating system active?"
5897
  msgstr ""
5898
 
5899
- #: wppa-settings-autosave.php:510
5900
  msgid "Enable the rating system and show the votes in the slideshow."
5901
  msgstr ""
5902
 
5903
- #: wppa-settings-autosave.php:511
5904
  msgid "You can configure the details of the rating system later"
5905
  msgstr ""
5906
 
5907
- #: wppa-settings-autosave.php:518
5908
  msgid "Do you want the comment system active?"
5909
  msgstr ""
5910
 
5911
- #: wppa-settings-autosave.php:519
5912
  msgid "Enable the comment system and show the comments in the slideshow."
5913
  msgstr ""
5914
 
5915
- #: wppa-settings-autosave.php:520
5916
  msgid "You can configure the details of the comment system later"
5917
  msgstr ""
5918
 
5919
- #: wppa-settings-autosave.php:527
5920
  msgid "Do you want the social media share buttons displayed?"
5921
  msgstr ""
5922
 
5923
- #: wppa-settings-autosave.php:528
5924
  msgid "Display the social media buttons in the slideshow"
5925
  msgstr ""
5926
 
5927
- #: wppa-settings-autosave.php:529
5928
  msgid ""
5929
  "These buttons share the specific photo rather than the page where it is "
5930
  "displayed on"
5931
  msgstr ""
5932
 
5933
- #: wppa-settings-autosave.php:536
5934
  msgid "Are you going to use IPTC data?"
5935
  msgstr ""
5936
 
5937
- #: wppa-settings-autosave.php:537
5938
  msgid ""
5939
  "IPTC data is information you may have added in a photo manipulation program."
5940
  msgstr ""
5941
 
5942
- #: wppa-settings-autosave.php:538 wppa-settings-autosave.php:547
5943
  msgid ""
5944
  "The information can be displayed in slideshows and in photo descriptions."
5945
  msgstr ""
5946
 
5947
- #: wppa-settings-autosave.php:545
5948
  msgid "Are you going to use EXIF data?"
5949
  msgstr ""
5950
 
5951
- #: wppa-settings-autosave.php:546
5952
  msgid ""
5953
  "EXIF data is information from the camera like model no, focal distance and "
5954
  "aperture used."
5955
  msgstr ""
5956
 
5957
- #: wppa-settings-autosave.php:554
5958
  msgid "Are you going to use GPX data?"
5959
  msgstr ""
5960
 
5961
- #: wppa-settings-autosave.php:555
5962
  msgid ""
5963
  "Some cameras and mobile devices save the geographic location where the photo "
5964
  "is taken."
5965
  msgstr ""
5966
 
5967
- #: wppa-settings-autosave.php:556
5968
  msgid "A Google map can be displayed in slideshows."
5969
  msgstr ""
5970
 
5971
- #: wppa-settings-autosave.php:563
5972
  msgid "Are you going to use Fotomoto?"
5973
  msgstr ""
5974
 
5975
- #: wppa-settings-autosave.php:564
5976
  msgid ""
5977
  "<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> is an "
5978
  "on-line print service."
5979
  msgstr ""
5980
 
5981
- #: wppa-settings-autosave.php:565
5982
  msgid "If you answer Yes, you will have to open an account on Fotomoto."
5983
  msgstr ""
5984
 
5985
- #: wppa-settings-autosave.php:572
5986
  msgid "Are you going to add videofiles?"
5987
  msgstr ""
5988
 
5989
- #: wppa-settings-autosave.php:573
5990
  msgid "You can mix videos and photos in any album."
5991
  msgstr ""
5992
 
5993
- #: wppa-settings-autosave.php:574 wppa-settings-autosave.php:583
 
5994
  msgid "You can configure the details later"
5995
  msgstr ""
5996
 
5997
- #: wppa-settings-autosave.php:581
5998
  msgid "Are you going to add audiofiles?"
5999
  msgstr ""
6000
 
6001
- #: wppa-settings-autosave.php:582
6002
  msgid "You can add audio to photos in any album."
6003
  msgstr ""
6004
 
6005
- #: wppa-settings-autosave.php:590
 
 
 
 
 
 
 
 
 
6006
  msgid "Done?"
6007
  msgstr ""
6008
 
6009
- #: wppa-settings-autosave.php:591
6010
  msgid "If you are ready answering these questions, select <b>yes</b>"
6011
  msgstr ""
6012
 
6013
- #: wppa-settings-autosave.php:592
6014
  msgid ""
6015
  "You can change any setting later, and be more specific and add a lot of "
6016
  "settings. For now it is enough, go create albums and upload photos!"
6017
  msgstr ""
6018
 
6019
- #: wppa-settings-autosave.php:596
6020
  msgid ""
6021
  "Thank you!. The most important settings are done now. You can refine your "
6022
  "settings, the behaviour and appearance of WPPA+ in the Tables below."
6023
  msgstr ""
6024
 
6025
- #: wppa-settings-autosave.php:621
6026
  msgid "Table I:"
6027
  msgstr ""
6028
 
6029
- #: wppa-settings-autosave.php:621
6030
  msgid "Sizes:"
6031
  msgstr ""
6032
 
6033
- #: wppa-settings-autosave.php:622
6034
  msgid ""
6035
  "This table describes all the sizes and size options (except fontsizes) for "
6036
  "the generation and display of the WPPA+ elements."
6037
  msgstr ""
6038
 
6039
- #: wppa-settings-autosave.php:640
6040
  msgid "WPPA+ global system related size settings"
6041
  msgstr ""
6042
 
6043
- #: wppa-settings-autosave.php:642
6044
  msgid "Column Width"
6045
  msgstr ""
6046
 
6047
- #: wppa-settings-autosave.php:643
6048
  msgid "The width of the main column in your theme's display area."
6049
  msgstr ""
6050
 
6051
- #: wppa-settings-autosave.php:644
6052
  msgid "Enter the width of the main column in your theme's display area."
6053
  msgstr ""
6054
 
6055
- #: wppa-settings-autosave.php:645
6056
  msgid ""
6057
  "You should set this value correctly to make sure the fullsize images are "
6058
  "properly aligned horizontally."
6059
  msgstr ""
6060
 
6061
- #: wppa-settings-autosave.php:646
6062
  msgid ""
6063
  "You may enter 'auto' for use in themes that have a floating content column."
6064
  msgstr ""
6065
 
6066
- #: wppa-settings-autosave.php:647
6067
  msgid "The use of 'auto' is required for responsive themes."
6068
  msgstr ""
6069
 
6070
- #: wppa-settings-autosave.php:650 wppa-settings-autosave.php:659
6071
- #: wppa-settings-autosave.php:771 wppa-settings-autosave.php:914
6072
- #: wppa-settings-autosave.php:925
6073
  msgid "pixels wide"
6074
  msgstr ""
6075
 
6076
- #: wppa-settings-autosave.php:655
6077
  msgid "Initial Width"
6078
  msgstr ""
6079
 
6080
- #: wppa-settings-autosave.php:656
6081
  msgid "The most often displayed colun width in responsive theme"
6082
  msgstr ""
6083
 
6084
- #: wppa-settings-autosave.php:657
6085
  msgid ""
6086
  "Change this value only if your responsive theme shows initially a wrong "
6087
  "column width."
6088
  msgstr ""
6089
 
6090
- #: wppa-settings-autosave.php:664
6091
  msgid "Resize on Upload"
6092
  msgstr ""
6093
 
6094
- #: wppa-settings-autosave.php:665
6095
  msgid "Indicate if the photos should be resized during upload."
6096
  msgstr ""
6097
 
6098
- #: wppa-settings-autosave.php:666
6099
  msgid ""
6100
  "If you check this item, the size of the photos will be reduced to the "
6101
  "dimension specified in the next item during the upload/import process."
6102
  msgstr ""
6103
 
6104
- #: wppa-settings-autosave.php:667
6105
  msgid "The photos will never be stretched during upload if they are smaller."
6106
  msgstr ""
6107
 
6108
- #: wppa-settings-autosave.php:675
6109
  msgid "Resize to"
6110
  msgstr ""
6111
 
6112
- #: wppa-settings-autosave.php:676
6113
  msgid "Resize photos to fit within a given area."
6114
  msgstr ""
6115
 
6116
- #: wppa-settings-autosave.php:677
6117
  msgid "Specify the screensize for the unscaled photos."
6118
  msgstr ""
6119
 
6120
- #: wppa-settings-autosave.php:678
6121
  msgid ""
6122
  "The use of a non-default value is particularly usefull when you make use of "
6123
  "lightbox functionality."
6124
  msgstr ""
6125
 
6126
- #: wppa-settings-autosave.php:680 wppa-settings-autosave.php:702
6127
- #: wppa-settings-autosave.php:713 wppa-settings-autosave.php:722
6128
- #: wppa-settings-autosave.php:803 wppa-settings-autosave.php:826
6129
- #: wppa-settings-autosave.php:833 wppa-settings-autosave.php:854
6130
- #: wppa-settings-autosave.php:864 wppa-settings-autosave.php:958
6131
- #: wppa-settings-autosave.php:992 wppa-settings-autosave.php:1012
6132
- #: wppa-settings-autosave.php:1021 wppa-settings-autosave.php:1032
6133
- #: wppa-settings-autosave.php:1044 wppa-settings-autosave.php:1054
6134
- #: wppa-settings-autosave.php:1064 wppa-settings-autosave.php:1117
6135
- #: wppa-settings-autosave.php:1126 wppa-settings-autosave.php:1137
6136
- #: wppa-settings-autosave.php:1157 wppa-settings-autosave.php:1177
6137
- #: wppa-settings-autosave.php:1197 wppa-settings-autosave.php:1217
6138
- #: wppa-settings-autosave.php:1237 wppa-settings-autosave.php:1257
6139
- #: wppa-settings-autosave.php:1266 wppa-settings-autosave.php:1275
6140
- #: wppa-settings-autosave.php:1310 wppa-settings-autosave.php:1319
6141
- #: wppa-settings-autosave.php:2662 wppa-settings-autosave.php:4249
6142
- #: wppa-settings-autosave.php:4266 wppa-settings-autosave.php:4283
6143
- #: wppa-settings-autosave.php:4300 wppa-settings-autosave.php:4317
6144
- #: wppa-settings-autosave.php:4334 wppa-settings-autosave.php:4351
6145
- #: wppa-settings-autosave.php:4368 wppa-settings-autosave.php:4385
6146
- #: wppa-settings-autosave.php:5644 wppa-settings-autosave.php:7820
6147
- #: wppa-settings-autosave.php:8015 wppa-settings-autosave.php:8057
6148
- #: wppa-settings-autosave.php:8075
6149
  msgid "pixels"
6150
  msgstr ""
6151
 
6152
- #: wppa-settings-autosave.php:681
6153
  msgid "Fit within rectangle as set in Table I-B1,2"
6154
  msgstr ""
6155
 
6156
- #: wppa-settings-autosave.php:688
6157
  #, fuzzy
6158
  msgid "Photocount threshold"
6159
  msgstr "Dagens foto"
6160
 
6161
- #: wppa-settings-autosave.php:689
6162
  msgid "Number of photos in an album must exceed."
6163
  msgstr ""
6164
 
6165
- #: wppa-settings-autosave.php:690
6166
  msgid ""
6167
  "Photos do not show up in the album unless there are more than this number of "
6168
  "photos in the album. This allows you to have cover photos on an album that "
@@ -6170,127 +6199,127 @@ msgid ""
6170
  "Usually set to 0 (always show) or 1 (for one cover photo)."
6171
  msgstr ""
6172
 
6173
- #: wppa-settings-autosave.php:697
6174
  msgid "Border thickness"
6175
  msgstr ""
6176
 
6177
- #: wppa-settings-autosave.php:698
6178
  msgid "Thickness of wppa+ box borders."
6179
  msgstr ""
6180
 
6181
- #: wppa-settings-autosave.php:699
6182
  msgid ""
6183
  "Enter the thickness for the border of the WPPA+ boxes. A number of 0 means: "
6184
  "no border."
6185
  msgstr ""
6186
 
6187
- #: wppa-settings-autosave.php:700 wppa-settings-autosave.php:710
6188
  msgid "WPPA+ boxes are: the navigation bars and the filmstrip."
6189
  msgstr ""
6190
 
6191
- #: wppa-settings-autosave.php:708
6192
  msgid "Radius of wppa+ box borders."
6193
  msgstr ""
6194
 
6195
- #: wppa-settings-autosave.php:709
6196
  msgid ""
6197
  "Enter the corner radius for the border of the WPPA+ boxes. A number of 0 "
6198
  "means: no rounded corners."
6199
  msgstr ""
6200
 
6201
- #: wppa-settings-autosave.php:711
6202
  msgid "Note that rounded corners are only supported by modern browsers."
6203
  msgstr ""
6204
 
6205
- #: wppa-settings-autosave.php:719
6206
  msgid "Distance between wppa+ boxes."
6207
  msgstr ""
6208
 
6209
- #: wppa-settings-autosave.php:727
6210
  #, fuzzy
6211
  msgid "Related count"
6212
  msgstr "fotos"
6213
 
6214
- #: wppa-settings-autosave.php:728
6215
  msgid "The default maximum number of related photos to find."
6216
  msgstr ""
6217
 
6218
- #: wppa-settings-autosave.php:729
6219
  msgid ""
6220
  "When using shortcodes like [wppa type=\"album\" album=\"#related,desc,23\"][/"
6221
  "wppa], the maximum number is 23. Omitting the number gives the maximum of "
6222
  "this setting."
6223
  msgstr ""
6224
 
6225
- #: wppa-settings-autosave.php:737
6226
  msgid "The maximum number of pagelinks to be displayed."
6227
  msgstr ""
6228
 
6229
- #: wppa-settings-autosave.php:740
6230
  msgid "pages"
6231
  msgstr ""
6232
 
6233
- #: wppa-settings-autosave.php:745
6234
  msgid "Max file name length"
6235
  msgstr ""
6236
 
6237
- #: wppa-settings-autosave.php:746
6238
  msgid "The max length of a photo file name excluding the extension."
6239
  msgstr ""
6240
 
6241
- #: wppa-settings-autosave.php:747 wppa-settings-autosave.php:756
6242
  msgid "A setting of 0 means: unlimited."
6243
  msgstr ""
6244
 
6245
- #: wppa-settings-autosave.php:749 wppa-settings-autosave.php:758
6246
  msgid "chars"
6247
  msgstr ""
6248
 
6249
- #: wppa-settings-autosave.php:754
6250
  msgid "Max photo name length"
6251
  msgstr ""
6252
 
6253
- #: wppa-settings-autosave.php:755
6254
  msgid "The max length of a photo name."
6255
  msgstr ""
6256
 
6257
- #: wppa-settings-autosave.php:763
6258
  msgid "Slideshow related size settings"
6259
  msgstr ""
6260
 
6261
- #: wppa-settings-autosave.php:765
6262
  msgid "Maximum Width"
6263
  msgstr ""
6264
 
6265
- #: wppa-settings-autosave.php:766
6266
  msgid "The maximum width photos will be displayed in slideshows."
6267
  msgstr ""
6268
 
6269
- #: wppa-settings-autosave.php:767 wppa-settings-autosave.php:778
6270
  msgid ""
6271
  "Enter the largest size in pixels as how you want your photos to be displayed."
6272
  msgstr ""
6273
 
6274
- #: wppa-settings-autosave.php:768
6275
  msgid ""
6276
  "This is usually the same as the Column Width (Table I-A1), but it may differ."
6277
  msgstr ""
6278
 
6279
- #: wppa-settings-autosave.php:776
6280
  msgid "Maximum Height"
6281
  msgstr ""
6282
 
6283
- #: wppa-settings-autosave.php:777
6284
  msgid "The maximum height photos will be displayed in slideshows."
6285
  msgstr ""
6286
 
6287
- #: wppa-settings-autosave.php:779
6288
  msgid ""
6289
  "This setting defines the height of the space reserved for photos in "
6290
  "slideshows."
6291
  msgstr ""
6292
 
6293
- #: wppa-settings-autosave.php:780
6294
  #, php-format
6295
  msgid ""
6296
  "If you change the width of a display by the %%size= command, this value "
@@ -6298,1261 +6327,1261 @@ msgid ""
6298
  "previous setting."
6299
  msgstr ""
6300
 
6301
- #: wppa-settings-autosave.php:782 wppa-settings-autosave.php:936
6302
- #: wppa-settings-autosave.php:947
6303
  #, fuzzy
6304
  msgid "pixels high"
6305
  msgstr "meget h&oslash;j"
6306
 
6307
- #: wppa-settings-autosave.php:787
6308
  msgid "Stretch to fit"
6309
  msgstr ""
6310
 
6311
- #: wppa-settings-autosave.php:788
6312
  msgid "Stretch photos that are too small."
6313
  msgstr ""
6314
 
6315
- #: wppa-settings-autosave.php:789
6316
  msgid ""
6317
  "Images will be stretched to the Maximum Size at display time if they are "
6318
  "smaller. Leaving unchecked is recommended. It is better to upload photos "
6319
  "that fit well the sizes you use!"
6320
  msgstr ""
6321
 
6322
- #: wppa-settings-autosave.php:796
6323
  #, fuzzy
6324
  msgid "Slideshow borderwidth"
6325
  msgstr "Slideshow"
6326
 
6327
- #: wppa-settings-autosave.php:797
6328
  msgid "The width of the border around slideshow images."
6329
  msgstr ""
6330
 
6331
- #: wppa-settings-autosave.php:798
6332
  msgid ""
6333
  "The border is made by the image background being larger than the image "
6334
  "itsself (padding)."
6335
  msgstr ""
6336
 
6337
- #: wppa-settings-autosave.php:799
6338
  msgid ""
6339
  "Additionally there may be a one pixel outline of a different color. See "
6340
  "Table III-A2."
6341
  msgstr ""
6342
 
6343
- #: wppa-settings-autosave.php:800
6344
  msgid "The number you enter here is exclusive the one pixel outline."
6345
  msgstr ""
6346
 
6347
- #: wppa-settings-autosave.php:801
6348
  msgid "If you leave this entry empty, there will be no outline either."
6349
  msgstr ""
6350
 
6351
- #: wppa-settings-autosave.php:808
6352
  msgid "Numbar Max"
6353
  msgstr ""
6354
 
6355
- #: wppa-settings-autosave.php:809
6356
  msgid "Maximum numbers to display."
6357
  msgstr ""
6358
 
6359
- #: wppa-settings-autosave.php:810
6360
  msgid ""
6361
  "In order to attemt to fit on one line, the numbers will be replaced by dots "
6362
  "- except the current - when there are more than this number of photos in a "
6363
  "slideshow."
6364
  msgstr ""
6365
 
6366
- #: wppa-settings-autosave.php:812
6367
  msgid "numbers"
6368
  msgstr ""
6369
 
6370
- #: wppa-settings-autosave.php:817
6371
  #, fuzzy
6372
  msgid "Share button size"
6373
  msgstr "Condividi su Twitter"
6374
 
6375
- #: wppa-settings-autosave.php:818
6376
  msgid "The size of the social media icons in the Share box"
6377
  msgstr ""
6378
 
6379
- #: wppa-settings-autosave.php:828
6380
  msgid "Mini Treshold"
6381
  msgstr ""
6382
 
6383
- #: wppa-settings-autosave.php:829
6384
  msgid "Show mini text at slideshow smaller then."
6385
  msgstr ""
6386
 
6387
- #: wppa-settings-autosave.php:830
6388
  msgid ""
6389
  "Display Next and Prev. as opposed to Next photo and Previous photo when the "
6390
  "cotainer is smaller than this size."
6391
  msgstr ""
6392
 
6393
- #: wppa-settings-autosave.php:831
6394
  msgid "Special use in responsive themes."
6395
  msgstr ""
6396
 
6397
- #: wppa-settings-autosave.php:839
6398
  msgid "The maximum number of slides in a certain view. 0 means no pagination"
6399
  msgstr ""
6400
 
6401
- #: wppa-settings-autosave.php:842
6402
  #, fuzzy
6403
  msgid "slides"
6404
  msgstr "Slideshow"
6405
 
6406
- #: wppa-settings-autosave.php:847
6407
  msgid "Thumbnail photos related size settings"
6408
  msgstr ""
6409
 
6410
- #: wppa-settings-autosave.php:849
6411
  #, fuzzy
6412
  msgid "Thumbnail Size"
6413
  msgstr "Foto Top Ti"
6414
 
6415
- #: wppa-settings-autosave.php:850
6416
  #, fuzzy
6417
  msgid "The size of the thumbnail images."
6418
  msgstr "Se"
6419
 
6420
- #: wppa-settings-autosave.php:851 wppa-settings-autosave.php:861
6421
- #: wppa-settings-autosave.php:1051 wppa-settings-autosave.php:1061
6422
  msgid "This size applies to the width or height, whichever is the largest."
6423
  msgstr ""
6424
 
6425
- #: wppa-settings-autosave.php:852 wppa-settings-autosave.php:862
6426
  msgid ""
6427
  "Changing the thumbnail size may result in all thumbnails being regenerated. "
6428
  "this may take a while."
6429
  msgstr ""
6430
 
6431
- #: wppa-settings-autosave.php:859
6432
  #, fuzzy
6433
  msgid "Thumbnail Size Alt"
6434
  msgstr "Foto Top Ti"
6435
 
6436
- #: wppa-settings-autosave.php:860
6437
  msgid "The alternative size of the thumbnail images."
6438
  msgstr ""
6439
 
6440
- #: wppa-settings-autosave.php:869
6441
  #, fuzzy
6442
  msgid "Thumbnail Aspect"
6443
  msgstr "Miniatura"
6444
 
6445
- #: wppa-settings-autosave.php:870
6446
  msgid "Aspect ration of thumbnail image"
6447
  msgstr ""
6448
 
6449
- #: wppa-settings-autosave.php:874
6450
  #, fuzzy
6451
  msgid "--- same as fullsize ---"
6452
  msgstr "--- ingen ---"
6453
 
6454
- #: wppa-settings-autosave.php:875
6455
  #, fuzzy
6456
  msgid "--- square clipped ---"
6457
  msgstr "--- vises ikke ---"
6458
 
6459
- #: wppa-settings-autosave.php:876
6460
  msgid "4:5 landscape clipped"
6461
  msgstr ""
6462
 
6463
- #: wppa-settings-autosave.php:877
6464
  msgid "3:4 landscape clipped"
6465
  msgstr ""
6466
 
6467
- #: wppa-settings-autosave.php:878
6468
  msgid "2:3 landscape clipped"
6469
  msgstr ""
6470
 
6471
- #: wppa-settings-autosave.php:879
6472
  msgid "9:16 landscape clipped"
6473
  msgstr ""
6474
 
6475
- #: wppa-settings-autosave.php:880
6476
  msgid "1:2 landscape clipped"
6477
  msgstr ""
6478
 
6479
- #: wppa-settings-autosave.php:881
6480
  #, fuzzy
6481
  msgid "--- square padded ---"
6482
  msgstr "--- vis ikke ---"
6483
 
6484
- #: wppa-settings-autosave.php:882
6485
  msgid "4:5 landscape padded"
6486
  msgstr ""
6487
 
6488
- #: wppa-settings-autosave.php:883
6489
  msgid "3:4 landscape padded"
6490
  msgstr ""
6491
 
6492
- #: wppa-settings-autosave.php:884
6493
  msgid "2:3 landscape padded"
6494
  msgstr ""
6495
 
6496
- #: wppa-settings-autosave.php:885
6497
  msgid "9:16 landscape padded"
6498
  msgstr ""
6499
 
6500
- #: wppa-settings-autosave.php:886
6501
  msgid "1:2 landscape padded"
6502
  msgstr ""
6503
 
6504
- #: wppa-settings-autosave.php:908
6505
  msgid "Thumbframe width"
6506
  msgstr ""
6507
 
6508
- #: wppa-settings-autosave.php:909
6509
  #, fuzzy
6510
  msgid "The width of the thumbnail frame."
6511
  msgstr "Se"
6512
 
6513
- #: wppa-settings-autosave.php:910 wppa-settings-autosave.php:921
6514
  msgid "Set the width of the thumbnail frame."
6515
  msgstr ""
6516
 
6517
- #: wppa-settings-autosave.php:911 wppa-settings-autosave.php:922
6518
- #: wppa-settings-autosave.php:933 wppa-settings-autosave.php:944
6519
- #: wppa-settings-autosave.php:955
6520
  msgid "Set width, height and spacing for the thumbnail frames."
6521
  msgstr ""
6522
 
6523
- #: wppa-settings-autosave.php:912 wppa-settings-autosave.php:923
6524
- #: wppa-settings-autosave.php:934 wppa-settings-autosave.php:945
6525
- #: wppa-settings-autosave.php:956
6526
  msgid ""
6527
  "These sizes should be large enough for a thumbnail image and - optionally - "
6528
  "the text under it."
6529
  msgstr ""
6530
 
6531
- #: wppa-settings-autosave.php:919
6532
  msgid "Thumbframe width Alt"
6533
  msgstr ""
6534
 
6535
- #: wppa-settings-autosave.php:920
6536
  msgid "The width of the alternative thumbnail frame."
6537
  msgstr ""
6538
 
6539
- #: wppa-settings-autosave.php:930
6540
  msgid "Thumbframe height"
6541
  msgstr ""
6542
 
6543
- #: wppa-settings-autosave.php:931
6544
  msgid "The height of the thumbnail frame."
6545
  msgstr ""
6546
 
6547
- #: wppa-settings-autosave.php:932 wppa-settings-autosave.php:943
6548
  msgid "Set the height of the thumbnail frame."
6549
  msgstr ""
6550
 
6551
- #: wppa-settings-autosave.php:941
6552
  msgid "Thumbframe height Alt"
6553
  msgstr ""
6554
 
6555
- #: wppa-settings-autosave.php:942
6556
  msgid "The height of the alternative thumbnail frame."
6557
  msgstr ""
6558
 
6559
- #: wppa-settings-autosave.php:952
6560
  #, fuzzy
6561
  msgid "Thumbnail spacing"
6562
  msgstr "Miniatura"
6563
 
6564
- #: wppa-settings-autosave.php:953
6565
  msgid "The spacing between adjacent thumbnail frames."
6566
  msgstr ""
6567
 
6568
- #: wppa-settings-autosave.php:954
6569
  msgid "Set the minimal spacing between the adjacent thumbnail frames"
6570
  msgstr ""
6571
 
6572
- #: wppa-settings-autosave.php:963
6573
  msgid "Auto spacing"
6574
  msgstr ""
6575
 
6576
- #: wppa-settings-autosave.php:964
6577
  msgid "Space the thumbnail frames automatic."
6578
  msgstr ""
6579
 
6580
- #: wppa-settings-autosave.php:965
6581
  msgid ""
6582
  "If you check this box, the thumbnail images will be evenly distributed over "
6583
  "the available width."
6584
  msgstr ""
6585
 
6586
- #: wppa-settings-autosave.php:966
6587
  msgid ""
6588
  "In this case, the thumbnail spacing value (setting I-9) will be regarded as "
6589
  "a minimum value."
6590
  msgstr ""
6591
 
6592
- #: wppa-settings-autosave.php:973 wppa-settings-autosave.php:1080
6593
  msgid "Page size"
6594
  msgstr ""
6595
 
6596
- #: wppa-settings-autosave.php:974
6597
  msgid "Max number of thumbnails per page."
6598
  msgstr ""
6599
 
6600
- #: wppa-settings-autosave.php:975
6601
  msgid ""
6602
  "Enter the maximum number of thumbnail images per page. A value of 0 "
6603
  "indicates no pagination."
6604
  msgstr ""
6605
 
6606
- #: wppa-settings-autosave.php:977 wppa-settings-autosave.php:5218
6607
- #: wppa-settings-autosave.php:5249 wppa-settings-autosave.php:5344
6608
  #, fuzzy
6609
  msgid "thumbnails"
6610
  msgstr "Miniatura"
6611
 
6612
- #: wppa-settings-autosave.php:983
6613
  msgid "The size of the thumbnail popup images."
6614
  msgstr ""
6615
 
6616
- #: wppa-settings-autosave.php:984
6617
  msgid ""
6618
  "Enter the size of the popup images. This size should be larger than the "
6619
  "thumbnail size."
6620
  msgstr ""
6621
 
6622
- #: wppa-settings-autosave.php:985
6623
  msgid "This size should also be at least the cover image size."
6624
  msgstr ""
6625
 
6626
- #: wppa-settings-autosave.php:986
6627
  msgid ""
6628
  "Changing the popup size may result in all thumbnails being regenerated. this "
6629
  "may take a while."
6630
  msgstr ""
6631
 
6632
- #: wppa-settings-autosave.php:987
6633
  msgid ""
6634
  "Although this setting has only visual effect if \"Thumb popup\" (Table IV-"
6635
  "C8) is checked,"
6636
  msgstr ""
6637
 
6638
- #: wppa-settings-autosave.php:988
6639
  msgid ""
6640
  "the value must be right as it is the physical size of the thumbnail and "
6641
  "coverphoto images."
6642
  msgstr ""
6643
 
6644
- #: wppa-settings-autosave.php:995
6645
  msgid "Use thumbs if fit"
6646
  msgstr ""
6647
 
6648
- #: wppa-settings-autosave.php:996
6649
  msgid "Use the thumbnail image files if they are large enough."
6650
  msgstr ""
6651
 
6652
- #: wppa-settings-autosave.php:997
6653
  msgid "This setting speeds up page loading for small photos."
6654
  msgstr ""
6655
 
6656
- #: wppa-settings-autosave.php:998
6657
  msgid ""
6658
  "Do NOT use this when your thumbnails have a forced aspect ratio (when Table "
6659
  "I-C2 is set to anything different from --- same as fullsize ---)"
6660
  msgstr ""
6661
 
6662
- #: wppa-settings-autosave.php:1005
6663
  msgid "Album cover related size settings"
6664
  msgstr ""
6665
 
6666
- #: wppa-settings-autosave.php:1008
6667
  msgid "Maximum width for a album cover display."
6668
  msgstr ""
6669
 
6670
- #: wppa-settings-autosave.php:1009
6671
  msgid ""
6672
  "Display covers in 2 or more columns if the display area is wider than the "
6673
  "given width."
6674
  msgstr ""
6675
 
6676
- #: wppa-settings-autosave.php:1010
6677
  msgid ""
6678
  "This also applies for 'thumbnails as covers', and will NOT apply to single "
6679
  "items."
6680
  msgstr ""
6681
 
6682
- #: wppa-settings-autosave.php:1017
6683
  msgid "Min Cover height"
6684
  msgstr ""
6685
 
6686
- #: wppa-settings-autosave.php:1018
6687
  msgid "Minimal height of an album cover."
6688
  msgstr ""
6689
 
6690
- #: wppa-settings-autosave.php:1019
6691
  msgid ""
6692
  "If you use this setting to make the albums the same height and you are not "
6693
  "satisfied about the lay-out, try increasing the value in the next setting"
6694
  msgstr ""
6695
 
6696
- #: wppa-settings-autosave.php:1026
6697
  msgid "Min Text frame height"
6698
  msgstr ""
6699
 
6700
- #: wppa-settings-autosave.php:1027
6701
  msgid "The minimal cover text frame height incl header."
6702
  msgstr ""
6703
 
6704
- #: wppa-settings-autosave.php:1028
6705
  msgid ""
6706
  "The height starting with the album title up to and including the view- and "
6707
  "the slideshow- links."
6708
  msgstr ""
6709
 
6710
- #: wppa-settings-autosave.php:1029
6711
  msgid ""
6712
  "This setting enables you to give the album covers the same height while the "
6713
  "title does not need to fit on one line."
6714
  msgstr ""
6715
 
6716
- #: wppa-settings-autosave.php:1030
6717
  msgid "This is the recommended setting to line-up your covers!"
6718
  msgstr ""
6719
 
6720
- #: wppa-settings-autosave.php:1037
6721
  msgid "Min Description height"
6722
  msgstr ""
6723
 
6724
- #: wppa-settings-autosave.php:1038
6725
  msgid "The minimal height of the album description text frame."
6726
  msgstr ""
6727
 
6728
- #: wppa-settings-autosave.php:1039
6729
  msgid "The minimal height of the description field in an album cover display."
6730
  msgstr ""
6731
 
6732
- #: wppa-settings-autosave.php:1040
6733
  msgid ""
6734
  "This setting enables you to give the album covers the same height provided "
6735
  "that the cover images are equally sized and the titles fit on one line."
6736
  msgstr ""
6737
 
6738
- #: wppa-settings-autosave.php:1041
6739
  msgid ""
6740
  "To force the coverphotos have equal heights, tick the box in Table I-D7."
6741
  msgstr ""
6742
 
6743
- #: wppa-settings-autosave.php:1042
6744
  msgid ""
6745
  "You may need this setting if changing the previous setting is not sufficient "
6746
  "to line-up the covers."
6747
  msgstr ""
6748
 
6749
- #: wppa-settings-autosave.php:1049
6750
  msgid "Coverphoto size"
6751
  msgstr ""
6752
 
6753
- #: wppa-settings-autosave.php:1050
6754
  #, fuzzy
6755
  msgid "The size of the coverphoto."
6756
  msgstr "Se forside foto"
6757
 
6758
- #: wppa-settings-autosave.php:1052 wppa-settings-autosave.php:1062
6759
  msgid ""
6760
  "Changing the coverphoto size may result in all thumbnails being regenerated. "
6761
  "this may take a while."
6762
  msgstr ""
6763
 
6764
- #: wppa-settings-autosave.php:1059
6765
  msgid "Coverphoto size multi"
6766
  msgstr ""
6767
 
6768
- #: wppa-settings-autosave.php:1060
6769
  msgid "The size of coverphotos if more than one."
6770
  msgstr ""
6771
 
6772
- #: wppa-settings-autosave.php:1069
6773
  msgid "Size is height"
6774
  msgstr ""
6775
 
6776
- #: wppa-settings-autosave.php:1070
6777
  msgid "The size of the coverphoto is the height of it."
6778
  msgstr ""
6779
 
6780
- #: wppa-settings-autosave.php:1071
6781
  msgid ""
6782
  "If set: the previous setting is the height, if unset: the largest of width "
6783
  "and height."
6784
  msgstr ""
6785
 
6786
- #: wppa-settings-autosave.php:1072
6787
  msgid ""
6788
  "This setting applies for coverphoto position top or bottom only (Table IV-"
6789
  "D3)."
6790
  msgstr ""
6791
 
6792
- #: wppa-settings-autosave.php:1073
6793
  msgid "This makes it easyer to make the covers of equal height."
6794
  msgstr ""
6795
 
6796
- #: wppa-settings-autosave.php:1081
6797
  msgid "Max number of covers per page."
6798
  msgstr ""
6799
 
6800
- #: wppa-settings-autosave.php:1082
6801
  msgid ""
6802
  "Enter the maximum number of album covers per page. A value of 0 indicates no "
6803
  "pagination."
6804
  msgstr ""
6805
 
6806
- #: wppa-settings-autosave.php:1084
6807
  msgid "covers"
6808
  msgstr ""
6809
 
6810
- #: wppa-settings-autosave.php:1089
6811
  msgid "Rating and comment related size settings"
6812
  msgstr ""
6813
 
6814
- #: wppa-settings-autosave.php:1091
6815
  #, fuzzy
6816
  msgid "Rating size"
6817
  msgstr "Bed&oslash;mmelse: %s"
6818
 
6819
- #: wppa-settings-autosave.php:1092
6820
  msgid "Select the number of voting stars."
6821
  msgstr ""
6822
 
6823
- #: wppa-settings-autosave.php:1095
6824
  msgid "Standard: 5 stars"
6825
  msgstr ""
6826
 
6827
- #: wppa-settings-autosave.php:1095
6828
  msgid "Extended: 10 stars"
6829
  msgstr ""
6830
 
6831
- #: wppa-settings-autosave.php:1095
6832
  msgid "One button vote"
6833
  msgstr ""
6834
 
6835
- #: wppa-settings-autosave.php:1102
6836
  msgid "Display precision"
6837
  msgstr ""
6838
 
6839
- #: wppa-settings-autosave.php:1103
6840
  msgid "Select the desired rating display precision."
6841
  msgstr ""
6842
 
6843
- #: wppa-settings-autosave.php:1106
6844
  msgid "decimal places"
6845
  msgstr ""
6846
 
6847
- #: wppa-settings-autosave.php:1114
6848
  msgid "Size of Avatar images."
6849
  msgstr ""
6850
 
6851
- #: wppa-settings-autosave.php:1115
6852
  msgid "The size of the square avatar; must be > 0 and < 256"
6853
  msgstr ""
6854
 
6855
- #: wppa-settings-autosave.php:1122
6856
  #, fuzzy
6857
  msgid "Rating space"
6858
  msgstr "Bed&oslash;mmelse: %s"
6859
 
6860
- #: wppa-settings-autosave.php:1123
6861
  msgid "Space between avg and my rating stars"
6862
  msgstr ""
6863
 
6864
- #: wppa-settings-autosave.php:1131
6865
  msgid "Widget related size settings"
6866
  msgstr ""
6867
 
6868
- #: wppa-settings-autosave.php:1133
6869
  msgid "Widget width"
6870
  msgstr ""
6871
 
6872
- #: wppa-settings-autosave.php:1134
6873
  msgid "The useable width within widgets."
6874
  msgstr ""
6875
 
6876
- #: wppa-settings-autosave.php:1135
6877
  msgid ""
6878
  "Widget width for photo of the day, general purpose (default), slideshow "
6879
  "(default) and upload widgets."
6880
  msgstr ""
6881
 
6882
- #: wppa-settings-autosave.php:1142
6883
  #, fuzzy
6884
  msgid "TopTen count"
6885
  msgstr "Foto Top Ti"
6886
 
6887
- #: wppa-settings-autosave.php:1143
6888
  msgid "Number of photos in TopTen widget."
6889
  msgstr ""
6890
 
6891
- #: wppa-settings-autosave.php:1144
6892
  msgid "Enter the maximum number of rated photos in the TopTen widget."
6893
  msgstr ""
6894
 
6895
- #: wppa-settings-autosave.php:1151
6896
  #, fuzzy
6897
  msgid "TopTen size"
6898
  msgstr "Foto Top Ti"
6899
 
6900
- #: wppa-settings-autosave.php:1152
6901
  msgid "Size of thumbnails in TopTen widget."
6902
  msgstr ""
6903
 
6904
- #: wppa-settings-autosave.php:1153
6905
  msgid "Enter the size for the mini photos in the TopTen widget."
6906
  msgstr ""
6907
 
6908
- #: wppa-settings-autosave.php:1154 wppa-settings-autosave.php:1174
6909
- #: wppa-settings-autosave.php:1194 wppa-settings-autosave.php:1214
6910
- #: wppa-settings-autosave.php:1234 wppa-settings-autosave.php:1254
6911
  msgid "The size applies to the width or height, whatever is the largest."
6912
  msgstr ""
6913
 
6914
- #: wppa-settings-autosave.php:1155 wppa-settings-autosave.php:1175
6915
- #: wppa-settings-autosave.php:1195 wppa-settings-autosave.php:1215
6916
- #: wppa-settings-autosave.php:1235 wppa-settings-autosave.php:1255
6917
  msgid ""
6918
  "Recommended values: 86 for a two column and 56 for a three column display."
6919
  msgstr ""
6920
 
6921
- #: wppa-settings-autosave.php:1162
6922
  #, fuzzy
6923
  msgid "Comment count"
6924
  msgstr "Kommentar til billeder"
6925
 
6926
- #: wppa-settings-autosave.php:1163
6927
  msgid "Number of entries in Comment widget."
6928
  msgstr ""
6929
 
6930
- #: wppa-settings-autosave.php:1164
6931
  msgid "Enter the maximum number of entries in the Comment widget."
6932
  msgstr ""
6933
 
6934
- #: wppa-settings-autosave.php:1166
6935
  msgid "entries"
6936
  msgstr ""
6937
 
6938
- #: wppa-settings-autosave.php:1171
6939
  #, fuzzy
6940
  msgid "Comment size"
6941
  msgstr "%d kommentarer"
6942
 
6943
- #: wppa-settings-autosave.php:1172
6944
  msgid "Size of thumbnails in Comment widget."
6945
  msgstr ""
6946
 
6947
- #: wppa-settings-autosave.php:1173
6948
  msgid "Enter the size for the mini photos in the Comment widget."
6949
  msgstr ""
6950
 
6951
- #: wppa-settings-autosave.php:1182
6952
  #, fuzzy
6953
  msgid "Thumbnail count"
6954
  msgstr "Miniatura"
6955
 
6956
- #: wppa-settings-autosave.php:1183
6957
  msgid "Number of photos in Thumbnail widget."
6958
  msgstr ""
6959
 
6960
- #: wppa-settings-autosave.php:1184
6961
  msgid "Enter the maximum number of rated photos in the Thumbnail widget."
6962
  msgstr ""
6963
 
6964
- #: wppa-settings-autosave.php:1191
6965
  #, fuzzy
6966
  msgid "Thumbnail widget size"
6967
  msgstr "Foto Top Ti"
6968
 
6969
- #: wppa-settings-autosave.php:1192
6970
  msgid "Size of thumbnails in Thumbnail widget."
6971
  msgstr ""
6972
 
6973
- #: wppa-settings-autosave.php:1193
6974
  msgid "Enter the size for the mini photos in the Thumbnail widget."
6975
  msgstr ""
6976
 
6977
- #: wppa-settings-autosave.php:1202
6978
  msgid "LasTen count"
6979
  msgstr ""
6980
 
6981
- #: wppa-settings-autosave.php:1203
6982
  msgid "Number of photos in Last Ten widget."
6983
  msgstr ""
6984
 
6985
- #: wppa-settings-autosave.php:1204
6986
  msgid "Enter the maximum number of photos in the LasTen widget."
6987
  msgstr ""
6988
 
6989
- #: wppa-settings-autosave.php:1211
6990
  msgid "LasTen size"
6991
  msgstr ""
6992
 
6993
- #: wppa-settings-autosave.php:1212
6994
  msgid "Size of thumbnails in Last Ten widget."
6995
  msgstr ""
6996
 
6997
- #: wppa-settings-autosave.php:1213
6998
  msgid "Enter the size for the mini photos in the LasTen widget."
6999
  msgstr ""
7000
 
7001
- #: wppa-settings-autosave.php:1222
7002
  #, fuzzy
7003
  msgid "Album widget count"
7004
  msgstr "Inserisci / modifica la descrizione per questo album."
7005
 
7006
- #: wppa-settings-autosave.php:1223
7007
  msgid "Number of albums in Album widget."
7008
  msgstr ""
7009
 
7010
- #: wppa-settings-autosave.php:1224
7011
  msgid ""
7012
  "Enter the maximum number of thumbnail photos of albums in the Album widget."
7013
  msgstr ""
7014
 
7015
- #: wppa-settings-autosave.php:1231
7016
  msgid "Album widget size"
7017
  msgstr ""
7018
 
7019
- #: wppa-settings-autosave.php:1232
7020
  msgid "Size of thumbnails in Album widget."
7021
  msgstr ""
7022
 
7023
- #: wppa-settings-autosave.php:1233
7024
  msgid "Enter the size for the mini photos in the Album widget."
7025
  msgstr ""
7026
 
7027
- #: wppa-settings-autosave.php:1242
7028
  msgid "FeaTen count"
7029
  msgstr ""
7030
 
7031
- #: wppa-settings-autosave.php:1243
7032
  msgid "Number of photos in Featured Ten widget."
7033
  msgstr ""
7034
 
7035
- #: wppa-settings-autosave.php:1244
7036
  msgid "Enter the maximum number of photos in the FeaTen widget."
7037
  msgstr ""
7038
 
7039
- #: wppa-settings-autosave.php:1251
7040
  msgid "FeaTen size"
7041
  msgstr ""
7042
 
7043
- #: wppa-settings-autosave.php:1252
7044
  msgid "Size of thumbnails in Featured Ten widget."
7045
  msgstr ""
7046
 
7047
- #: wppa-settings-autosave.php:1253
7048
  msgid "Enter the size for the mini photos in the FeaTen widget."
7049
  msgstr ""
7050
 
7051
- #: wppa-settings-autosave.php:1262
7052
  msgid "Tagcloud min size"
7053
  msgstr ""
7054
 
7055
- #: wppa-settings-autosave.php:1263
7056
  msgid "Minimal fontsize in tagclouds"
7057
  msgstr ""
7058
 
7059
- #: wppa-settings-autosave.php:1271
7060
  msgid "Tagcloud max size"
7061
  msgstr ""
7062
 
7063
- #: wppa-settings-autosave.php:1272
7064
  msgid "Maximal fontsize in tagclouds"
7065
  msgstr ""
7066
 
7067
- #: wppa-settings-autosave.php:1280
7068
  msgid ""
7069
  "Lightbox related size settings. These settings have effect only when Table "
7070
  "IX-J3 is set to wppa"
7071
  msgstr ""
7072
 
7073
- #: wppa-settings-autosave.php:1283
7074
  msgid ""
7075
  "Number of lines on the lightbox description area, exclusive the n/m line."
7076
  msgstr ""
7077
 
7078
- #: wppa-settings-autosave.php:1284
7079
  msgid "Enter a number in the range from 0 to 24 or auto"
7080
  msgstr ""
7081
 
7082
- #: wppa-settings-autosave.php:1286
7083
  msgid "lines"
7084
  msgstr ""
7085
 
7086
- #: wppa-settings-autosave.php:1291
7087
  msgid "Magnifier cursor size"
7088
  msgstr ""
7089
 
7090
- #: wppa-settings-autosave.php:1292
7091
  msgid "Select the size of the magnifier cursor."
7092
  msgstr ""
7093
 
7094
- #: wppa-settings-autosave.php:1295
7095
  msgid "small"
7096
  msgstr ""
7097
 
7098
- #: wppa-settings-autosave.php:1295
7099
  msgid "medium"
7100
  msgstr ""
7101
 
7102
- #: wppa-settings-autosave.php:1295
7103
  msgid "large"
7104
  msgstr ""
7105
 
7106
- #: wppa-settings-autosave.php:1304
7107
  msgid "Video related size settings"
7108
  msgstr ""
7109
 
7110
- #: wppa-settings-autosave.php:1306
7111
  msgid "Default width"
7112
  msgstr ""
7113
 
7114
- #: wppa-settings-autosave.php:1307
7115
  msgid "The width of most videos"
7116
  msgstr ""
7117
 
7118
- #: wppa-settings-autosave.php:1315
7119
  msgid "Default height"
7120
  msgstr ""
7121
 
7122
- #: wppa-settings-autosave.php:1316
7123
  msgid "The height of most videos"
7124
  msgstr ""
7125
 
7126
- #: wppa-settings-autosave.php:1342
7127
  msgid "Table II:"
7128
  msgstr ""
7129
 
7130
- #: wppa-settings-autosave.php:1342
7131
  msgid "Visibility:"
7132
  msgstr ""
7133
 
7134
- #: wppa-settings-autosave.php:1343
7135
  msgid "This table describes the visibility of certain wppa+ elements."
7136
  msgstr ""
7137
 
7138
- #: wppa-settings-autosave.php:1361
7139
  msgid "Breadcrumb related visibility settings"
7140
  msgstr ""
7141
 
7142
- #: wppa-settings-autosave.php:1363
7143
  msgid "Breadcrumb on posts"
7144
  msgstr ""
7145
 
7146
- #: wppa-settings-autosave.php:1364 wppa-settings-autosave.php:1374
7147
  msgid "Show breadcrumb navigation bars."
7148
  msgstr ""
7149
 
7150
- #: wppa-settings-autosave.php:1365 wppa-settings-autosave.php:1375
7151
  msgid "Indicate whether a breadcrumb navigation should be displayed"
7152
  msgstr ""
7153
 
7154
- #: wppa-settings-autosave.php:1373
7155
  msgid "Breadcrumb on pages"
7156
  msgstr ""
7157
 
7158
- #: wppa-settings-autosave.php:1383
7159
  #, fuzzy
7160
  msgid "Breadcrumb on search results"
7161
  msgstr "Risultati della ricerca per: %s"
7162
 
7163
- #: wppa-settings-autosave.php:1384
7164
  msgid "Show breadcrumb navigation bars on the search results page."
7165
  msgstr ""
7166
 
7167
- #: wppa-settings-autosave.php:1385
7168
  msgid ""
7169
  "Indicate whether a breadcrumb navigation should be displayed above the "
7170
  "search results."
7171
  msgstr ""
7172
 
7173
- #: wppa-settings-autosave.php:1392
7174
  msgid "Breadcrumb on topten displays"
7175
  msgstr ""
7176
 
7177
- #: wppa-settings-autosave.php:1393
7178
  msgid "Show breadcrumb navigation bars on topten displays."
7179
  msgstr ""
7180
 
7181
- #: wppa-settings-autosave.php:1394
7182
  msgid ""
7183
  "Indicate whether a breadcrumb navigation should be displayed above the "
7184
  "topten displays."
7185
  msgstr ""
7186
 
7187
- #: wppa-settings-autosave.php:1401
7188
  msgid "Breadcrumb on last ten displays"
7189
  msgstr ""
7190
 
7191
- #: wppa-settings-autosave.php:1402
7192
  msgid "Show breadcrumb navigation bars on last ten displays."
7193
  msgstr ""
7194
 
7195
- #: wppa-settings-autosave.php:1403
7196
  msgid ""
7197
  "Indicate whether a breadcrumb navigation should be displayed above the last "
7198
  "ten displays."
7199
  msgstr ""
7200
 
7201
- #: wppa-settings-autosave.php:1410
7202
  msgid "Breadcrumb on comment ten displays"
7203
  msgstr ""
7204
 
7205
- #: wppa-settings-autosave.php:1411
7206
  msgid "Show breadcrumb navigation bars on comment ten displays."
7207
  msgstr ""
7208
 
7209
- #: wppa-settings-autosave.php:1412
7210
  msgid ""
7211
  "Indicate whether a breadcrumb navigation should be displayed above the "
7212
  "comment ten displays."
7213
  msgstr ""
7214
 
7215
- #: wppa-settings-autosave.php:1419
7216
  msgid "Breadcrumb on tag result displays"
7217
  msgstr ""
7218
 
7219
- #: wppa-settings-autosave.php:1420
7220
  msgid "Show breadcrumb navigation bars on tag result displays."
7221
  msgstr ""
7222
 
7223
- #: wppa-settings-autosave.php:1421
7224
  msgid ""
7225
  "Indicate whether a breadcrumb navigation should be displayed above the tag "
7226
  "result displays."
7227
  msgstr ""
7228
 
7229
- #: wppa-settings-autosave.php:1428
7230
  msgid "Breadcrumb on featured ten displays"
7231
  msgstr ""
7232
 
7233
- #: wppa-settings-autosave.php:1429
7234
  msgid "Show breadcrumb navigation bars on featured ten displays."
7235
  msgstr ""
7236
 
7237
- #: wppa-settings-autosave.php:1430
7238
  msgid ""
7239
  "Indicate whether a breadcrumb navigation should be displayed above the "
7240
  "featured ten displays."
7241
  msgstr ""
7242
 
7243
- #: wppa-settings-autosave.php:1437
7244
  msgid "Breadcrumb on related photos displays"
7245
  msgstr ""
7246
 
7247
- #: wppa-settings-autosave.php:1438
7248
  msgid "Show breadcrumb navigation bars on related photos displays."
7249
  msgstr ""
7250
 
7251
- #: wppa-settings-autosave.php:1439
7252
  msgid ""
7253
  "Indicate whether a breadcrumb navigation should be displayed above the "
7254
  "related photos displays."
7255
  msgstr ""
7256
 
7257
- #: wppa-settings-autosave.php:1447
7258
  msgid "Show \"Home\" in breadcrumb."
7259
  msgstr ""
7260
 
7261
- #: wppa-settings-autosave.php:1448
7262
  msgid ""
7263
  "Indicate whether the breadcrumb navigation should start with a \"Home\"-link"
7264
  msgstr ""
7265
 
7266
- #: wppa-settings-autosave.php:1456
7267
  msgid "Show the page(s) in breadcrumb."
7268
  msgstr ""
7269
 
7270
- #: wppa-settings-autosave.php:1457
7271
  msgid ""
7272
  "Indicate whether the breadcrumb navigation should show the page(hierarchy)"
7273
  msgstr ""
7274
 
7275
- #: wppa-settings-autosave.php:1464
7276
  msgid "Separator"
7277
  msgstr ""
7278
 
7279
- #: wppa-settings-autosave.php:1465
7280
  msgid "Breadcrumb separator symbol."
7281
  msgstr ""
7282
 
7283
- #: wppa-settings-autosave.php:1466
7284
  msgid "Select the desired breadcrumb separator element."
7285
  msgstr ""
7286
 
7287
- #: wppa-settings-autosave.php:1467
7288
  msgid "A text string may contain valid html."
7289
  msgstr ""
7290
 
7291
- #: wppa-settings-autosave.php:1468
7292
  msgid ""
7293
  "An image will be scaled automatically if you set the navigation font size."
7294
  msgstr ""
7295
 
7296
- #: wppa-settings-autosave.php:1470
7297
  msgid "Text (html):"
7298
  msgstr ""
7299
 
7300
- #: wppa-settings-autosave.php:1470
7301
  msgid "Image (url):"
7302
  msgstr ""
7303
 
7304
- #: wppa-settings-autosave.php:1478
7305
  msgid "Html"
7306
  msgstr ""
7307
 
7308
- #: wppa-settings-autosave.php:1479
7309
  msgid "Breadcrumb separator text."
7310
  msgstr ""
7311
 
7312
- #: wppa-settings-autosave.php:1480
7313
  msgid "Enter the HTML code that produces the separator symbol you want."
7314
  msgstr ""
7315
 
7316
- #: wppa-settings-autosave.php:1481
7317
  msgid ""
7318
  "It may be as simple as '-' (without the quotes) or as complex as a tag like "
7319
  "<div>..</div>."
7320
  msgstr ""
7321
 
7322
- #: wppa-settings-autosave.php:1488
7323
  #, fuzzy
7324
  msgid "Image Url"
7325
  msgstr "Billede"
7326
 
7327
- #: wppa-settings-autosave.php:1489
7328
  msgid "Full url to separator image."
7329
  msgstr ""
7330
 
7331
- #: wppa-settings-autosave.php:1490
7332
  msgid ""
7333
  "Enter the full url to the image you want to use for the separator symbol."
7334
  msgstr ""
7335
 
7336
- #: wppa-settings-autosave.php:1497
7337
  #, fuzzy
7338
  msgid "Pagelink position"
7339
  msgstr "Position:"
7340
 
7341
- #: wppa-settings-autosave.php:1498
7342
  msgid "The location for the pagelinks bar."
7343
  msgstr ""
7344
 
7345
- #: wppa-settings-autosave.php:1501 wppa-settings-autosave.php:3671
7346
  msgid "Top"
7347
  msgstr ""
7348
 
7349
- #: wppa-settings-autosave.php:1501 wppa-settings-autosave.php:3671
7350
  msgid "Bottom"
7351
  msgstr ""
7352
 
7353
- #: wppa-settings-autosave.php:1501
7354
  msgid "Both"
7355
  msgstr ""
7356
 
7357
- #: wppa-settings-autosave.php:1508
7358
  msgid "Thumblink on slideshow"
7359
  msgstr ""
7360
 
7361
- #: wppa-settings-autosave.php:1509
7362
  msgid "Show a thumb link on slideshow bc."
7363
  msgstr ""
7364
 
7365
- #: wppa-settings-autosave.php:1510
7366
  msgid "Show a link to thumbnail display on an breadcrumb above a slideshow"
7367
  msgstr ""
7368
 
7369
- #: wppa-settings-autosave.php:1517
7370
  msgid "Slideshow related visibility settings"
7371
  msgstr ""
7372
 
7373
- #: wppa-settings-autosave.php:1519
7374
  #, fuzzy
7375
  msgid "Start/stop"
7376
  msgstr "Start"
7377
 
7378
- #: wppa-settings-autosave.php:1520
7379
  #, fuzzy
7380
  msgid "Show the Start/Stop slideshow bar."
7381
  msgstr "Dobbeltklik for at starte/slutte slideshow"
7382
 
7383
- #: wppa-settings-autosave.php:1521
7384
  msgid ""
7385
  "If checked: display the start/stop slideshow navigation bar above the full-"
7386
  "size images and slideshow"
7387
  msgstr ""
7388
 
7389
- #: wppa-settings-autosave.php:1528
7390
  #, fuzzy
7391
  msgid "Browse bar"
7392
  msgstr "Se fotos"
7393
 
7394
- #: wppa-settings-autosave.php:1529
7395
  #, fuzzy
7396
  msgid "Show Browse photos bar."
7397
  msgstr "Se fotos"
7398
 
7399
- #: wppa-settings-autosave.php:1530
7400
  msgid ""
7401
  "If checked: display the preveous/next navigation bar under the full-size "
7402
  "images and slideshow"
7403
  msgstr ""
7404
 
7405
- #: wppa-settings-autosave.php:1537
7406
  msgid "Filmstrip"
7407
  msgstr ""
7408
 
7409
- #: wppa-settings-autosave.php:1538
7410
  msgid "Show Filmstrip navigation bar."
7411
  msgstr ""
7412
 
7413
- #: wppa-settings-autosave.php:1539
7414
  msgid ""
7415
  "If checked: display the filmstrip navigation bar under the full_size images "
7416
  "and slideshow"
7417
  msgstr ""
7418
 
7419
- #: wppa-settings-autosave.php:1546
7420
  msgid "Film seam"
7421
  msgstr ""
7422
 
7423
- #: wppa-settings-autosave.php:1547
7424
  msgid "Show seam between end and start of film."
7425
  msgstr ""
7426
 
7427
- #: wppa-settings-autosave.php:1548
7428
  msgid "If checked: display the wrap-around point in the filmstrip"
7429
  msgstr ""
7430
 
7431
- #: wppa-settings-autosave.php:1555
7432
  #, fuzzy
7433
  msgid "Photo name"
7434
  msgstr "Dagens foto"
7435
 
7436
- #: wppa-settings-autosave.php:1556
7437
  #, fuzzy
7438
  msgid "Display photo name."
7439
  msgstr "Indtast foto navn"
7440
 
7441
- #: wppa-settings-autosave.php:1557
7442
  msgid "If checked: display the name of the photo under the slideshow image."
7443
  msgstr ""
7444
 
7445
- #: wppa-settings-autosave.php:1564 wppa-settings-autosave.php:1944
7446
  msgid "Add (Owner)"
7447
  msgstr ""
7448
 
7449
- #: wppa-settings-autosave.php:1565 wppa-settings-autosave.php:1945
7450
  msgid "Add the uploaders display name in parenthesis to the name."
7451
  msgstr ""
7452
 
7453
- #: wppa-settings-autosave.php:1573
7454
  #, fuzzy
7455
  msgid "Photo desc"
7456
  msgstr "Foto"
7457
 
7458
- #: wppa-settings-autosave.php:1574
7459
  #, fuzzy
7460
  msgid "Display Photo description."
7461
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
7462
 
7463
- #: wppa-settings-autosave.php:1575
7464
  msgid ""
7465
  "If checked: display the description of the photo under the slideshow image."
7466
  msgstr ""
7467
 
7468
- #: wppa-settings-autosave.php:1582
7469
  msgid "Hide when empty"
7470
  msgstr ""
7471
 
7472
- #: wppa-settings-autosave.php:1583
7473
  msgid "Hide the descriptionbox when empty."
7474
  msgstr ""
7475
 
7476
- #: wppa-settings-autosave.php:1591
7477
  #, fuzzy
7478
  msgid "Rating system"
7479
  msgstr "Bed&oslash;mmelse: %s"
7480
 
7481
- #: wppa-settings-autosave.php:1592
7482
  msgid "Enable the rating system."
7483
  msgstr ""
7484
 
7485
- #: wppa-settings-autosave.php:1593
7486
  msgid "If checked, the photo rating system will be enabled."
7487
  msgstr ""
7488
 
7489
- #: wppa-settings-autosave.php:1601
7490
  #, fuzzy
7491
  msgid "Comments system"
7492
  msgstr "%d kommentarer"
7493
 
7494
- #: wppa-settings-autosave.php:1602
7495
  msgid "Enable the comments system."
7496
  msgstr ""
7497
 
7498
- #: wppa-settings-autosave.php:1603
7499
  msgid ""
7500
  "Display the comments box under the fullsize images and let users enter their "
7501
  "comments on individual photos."
7502
  msgstr ""
7503
 
7504
- #: wppa-settings-autosave.php:1611
7505
  #, fuzzy
7506
  msgid "Comment Avatar default"
7507
  msgstr "Kommentarer tilf&oslash;jet"
7508
 
7509
- #: wppa-settings-autosave.php:1612
7510
  msgid "Show Avatars with the comments if not --- none ---"
7511
  msgstr ""
7512
 
7513
- #: wppa-settings-autosave.php:1617
7514
  msgid "mystery man"
7515
  msgstr ""
7516
 
7517
- #: wppa-settings-autosave.php:1618
7518
  msgid "identicon"
7519
  msgstr ""
7520
 
7521
- #: wppa-settings-autosave.php:1619
7522
  msgid "monsterid"
7523
  msgstr ""
7524
 
7525
- #: wppa-settings-autosave.php:1620
7526
  msgid "wavatar"
7527
  msgstr ""
7528
 
7529
- #: wppa-settings-autosave.php:1621
7530
  msgid "retro"
7531
  msgstr ""
7532
 
7533
- #: wppa-settings-autosave.php:1622
7534
  #, fuzzy
7535
  msgid "--- url ---"
7536
  msgstr "--- ingen ---"
7537
 
7538
- #: wppa-settings-autosave.php:1637
7539
  msgid "Comment Avatar url"
7540
  msgstr ""
7541
 
7542
- #: wppa-settings-autosave.php:1638
7543
  msgid "Comment Avatar default url."
7544
  msgstr ""
7545
 
7546
- #: wppa-settings-autosave.php:1646
7547
  #, fuzzy
7548
  msgid "Big Browse Buttons"
7549
  msgstr "Se fotos"
7550
 
7551
- #: wppa-settings-autosave.php:1647
7552
  msgid "Enable invisible browsing buttons."
7553
  msgstr ""
7554
 
7555
- #: wppa-settings-autosave.php:1648 wppa-settings-autosave.php:2182
7556
  #, fuzzy
7557
  msgid ""
7558
  "If checked, the fullsize image is covered by two invisible areas that act as "
@@ -7561,7103 +7590,7181 @@ msgstr ""
7561
  "For at se billeder i fuld st&oslash;rrelse skal du tillade javascript in din "
7562
  "browser."
7563
 
7564
- #: wppa-settings-autosave.php:1649 wppa-settings-autosave.php:2183
7565
- #: wppa-settings-autosave.php:2193
7566
  msgid ""
7567
  "Make sure the Full height (Table I-B2) is properly configured to prevent "
7568
  "these areas to overlap unwanted space."
7569
  msgstr ""
7570
 
7571
- #: wppa-settings-autosave.php:1656
7572
  #, fuzzy
7573
  msgid "Ugly Browse Buttons"
7574
  msgstr "Se fotos"
7575
 
7576
- #: wppa-settings-autosave.php:1657
7577
  msgid "Enable the ugly browsing buttons."
7578
  msgstr ""
7579
 
7580
- #: wppa-settings-autosave.php:1658
7581
  msgid "If checked, the fullsize image is covered by two browse buttons."
7582
  msgstr ""
7583
 
7584
- #: wppa-settings-autosave.php:1662 wppa-settings-autosave.php:2224
7585
- #: wppa-settings-autosave.php:2235
7586
  msgid "Black"
7587
  msgstr ""
7588
 
7589
- #: wppa-settings-autosave.php:1662
7590
  msgid "Light gray"
7591
  msgstr ""
7592
 
7593
- #: wppa-settings-autosave.php:1669
7594
  #, fuzzy
7595
  msgid "Start/stop icons"
7596
  msgstr "Start"
7597
 
7598
- #: wppa-settings-autosave.php:1670
7599
  msgid "Show start and stop icons at the center of the slide"
7600
  msgstr ""
7601
 
7602
- #: wppa-settings-autosave.php:1675
7603
  msgid "Black square"
7604
  msgstr ""
7605
 
7606
- #: wppa-settings-autosave.php:1675
7607
  msgid "Blue square"
7608
  msgstr ""
7609
 
7610
- #: wppa-settings-autosave.php:1675
7611
  msgid "Black round"
7612
  msgstr ""
7613
 
7614
- #: wppa-settings-autosave.php:1682
7615
  msgid "Show custom box"
7616
  msgstr ""
7617
 
7618
- #: wppa-settings-autosave.php:1683
7619
  msgid "Display the custom box in the slideshow"
7620
  msgstr ""
7621
 
7622
- #: wppa-settings-autosave.php:1684 wppa-settings-autosave.php:1695
7623
  msgid ""
7624
  "You can fill the custom box with any html you like. It will not be checked, "
7625
  "so it is your own responsability to close tags properly."
7626
  msgstr ""
7627
 
7628
- #: wppa-settings-autosave.php:1685 wppa-settings-autosave.php:1696
7629
  msgid "The position of the box can be defined in Table IX-E."
7630
  msgstr ""
7631
 
7632
- #: wppa-settings-autosave.php:1693
7633
  msgid "Custom content"
7634
  msgstr ""
7635
 
7636
- #: wppa-settings-autosave.php:1694
7637
  msgid "The content (html) of the custom box."
7638
  msgstr ""
7639
 
7640
- #: wppa-settings-autosave.php:1703
7641
  #, fuzzy
7642
  msgid "Slideshow/Number bar"
7643
  msgstr "Slideshow"
7644
 
7645
- #: wppa-settings-autosave.php:1704
7646
  msgid "Display the Slideshow / Number bar."
7647
  msgstr ""
7648
 
7649
- #: wppa-settings-autosave.php:1705
7650
  msgid "If checked: display the number boxes on slideshow"
7651
  msgstr ""
7652
 
7653
- #: wppa-settings-autosave.php:1713
7654
  msgid "IPTC system"
7655
  msgstr ""
7656
 
7657
- #: wppa-settings-autosave.php:1714
7658
  msgid "Enable the iptc system."
7659
  msgstr ""
7660
 
7661
- #: wppa-settings-autosave.php:1715
7662
  msgid "Display the iptc box under the fullsize images."
7663
  msgstr ""
7664
 
7665
- #: wppa-settings-autosave.php:1723
7666
  msgid "IPTC open"
7667
  msgstr ""
7668
 
7669
- #: wppa-settings-autosave.php:1724
7670
  msgid "Display the iptc box initially opened."
7671
  msgstr ""
7672
 
7673
- #: wppa-settings-autosave.php:1725
7674
  msgid "Display the iptc box under the fullsize images initially open."
7675
  msgstr ""
7676
 
7677
- #: wppa-settings-autosave.php:1733
7678
  msgid "EXIF system"
7679
  msgstr ""
7680
 
7681
- #: wppa-settings-autosave.php:1734
7682
  msgid "Enable the exif system."
7683
  msgstr ""
7684
 
7685
- #: wppa-settings-autosave.php:1735
7686
  msgid "Display the exif box under the fullsize images."
7687
  msgstr ""
7688
 
7689
- #: wppa-settings-autosave.php:1743
7690
  msgid "EXIF open"
7691
  msgstr ""
7692
 
7693
- #: wppa-settings-autosave.php:1744
7694
  msgid "Display the exif box initially opened."
7695
  msgstr ""
7696
 
7697
- #: wppa-settings-autosave.php:1745
7698
  msgid "Display the exif box under the fullsize images initially open."
7699
  msgstr ""
7700
 
7701
- #: wppa-settings-autosave.php:1753
7702
  msgid "Social media share box related visibility settings"
7703
  msgstr ""
7704
 
7705
- #: wppa-settings-autosave.php:1755
7706
  msgid "Show Share Box"
7707
  msgstr ""
7708
 
7709
- #: wppa-settings-autosave.php:1756
7710
  msgid "Display the share social media buttons box."
7711
  msgstr ""
7712
 
7713
- #: wppa-settings-autosave.php:1765 wppa-settings-autosave.php:8062
7714
  msgid "Hide when running"
7715
  msgstr ""
7716
 
7717
- #: wppa-settings-autosave.php:1766
7718
  msgid "Hide the SM box when slideshow runs."
7719
  msgstr ""
7720
 
7721
- #: wppa-settings-autosave.php:1774
7722
  msgid "Show Share Box Widget"
7723
  msgstr ""
7724
 
7725
- #: wppa-settings-autosave.php:1775
7726
  msgid "Display the share social media buttons box in widgets."
7727
  msgstr ""
7728
 
7729
- #: wppa-settings-autosave.php:1776
7730
  msgid ""
7731
  "This setting applies to normal slideshows in widgets, not to the "
7732
  "slideshowwidget as that is a slideonly display."
7733
  msgstr ""
7734
 
7735
- #: wppa-settings-autosave.php:1784
7736
  msgid "Show Share Buttons Thumbs"
7737
  msgstr ""
7738
 
7739
- #: wppa-settings-autosave.php:1785
7740
  msgid "Display the share social media buttons under thumbnails."
7741
  msgstr ""
7742
 
7743
- #: wppa-settings-autosave.php:1794
7744
  msgid "Show Share Buttons Lightbox"
7745
  msgstr ""
7746
 
7747
- #: wppa-settings-autosave.php:1795
7748
  msgid "Display the share social media buttons on lightbox displays."
7749
  msgstr ""
7750
 
7751
- #: wppa-settings-autosave.php:1804
7752
  #, fuzzy
7753
  msgid "Show Share Buttons Mphoto"
7754
  msgstr ""
7755
  "I visitatori possono ottenere una panoramica delle immagini contenute in un "
7756
  "album grazie alle miniature."
7757
 
7758
- #: wppa-settings-autosave.php:1805
7759
  msgid "Display the share social media buttons on mphoto displays."
7760
  msgstr ""
7761
 
7762
- #: wppa-settings-autosave.php:1814
7763
  msgid "Show QR Code"
7764
  msgstr ""
7765
 
7766
- #: wppa-settings-autosave.php:1815
7767
  msgid "Display the QR code in the share box."
7768
  msgstr ""
7769
 
7770
- #: wppa-settings-autosave.php:1823
7771
  #, fuzzy
7772
  msgid "Show Twitter button"
7773
  msgstr "Condividi su Twitter"
7774
 
7775
- #: wppa-settings-autosave.php:1824
7776
  msgid "Display the Twitter button in the share box."
7777
  msgstr ""
7778
 
7779
- #: wppa-settings-autosave.php:1832
7780
  #, fuzzy
7781
  msgid "Show Google+ button"
7782
  msgstr "Condividi su Google+"
7783
 
7784
- #: wppa-settings-autosave.php:1833
7785
  msgid "Display the Google+ button in the share box."
7786
  msgstr ""
7787
 
7788
- #: wppa-settings-autosave.php:1841
7789
  #, fuzzy
7790
  msgid "Show Pinterest button"
7791
  msgstr "Condividi on Pinterest"
7792
 
7793
- #: wppa-settings-autosave.php:1842
7794
  msgid "Display the Pintrest button in the share box."
7795
  msgstr ""
7796
 
7797
- #: wppa-settings-autosave.php:1850
7798
  msgid "Show LinkedIn button"
7799
  msgstr ""
7800
 
7801
- #: wppa-settings-autosave.php:1851
7802
  msgid "Display the LinkedIn button in the share box."
7803
  msgstr ""
7804
 
7805
- #: wppa-settings-autosave.php:1859
7806
  msgid "Show Facebook share button"
7807
  msgstr ""
7808
 
7809
- #: wppa-settings-autosave.php:1860 wppa-settings-autosave.php:1869
7810
  msgid "Display the Facebook button in the share box."
7811
  msgstr ""
7812
 
7813
- #: wppa-settings-autosave.php:1868
7814
  msgid "Show Facebook like button"
7815
  msgstr ""
7816
 
7817
- #: wppa-settings-autosave.php:1877
7818
  msgid "Display type"
7819
  msgstr ""
7820
 
7821
- #: wppa-settings-autosave.php:1878
7822
  msgid "Select the Facebook button display type."
7823
  msgstr ""
7824
 
7825
- #: wppa-settings-autosave.php:1881
7826
  msgid "Button with counter"
7827
  msgstr ""
7828
 
7829
- #: wppa-settings-autosave.php:1881
7830
  msgid "Box with counter"
7831
  msgstr ""
7832
 
7833
- #: wppa-settings-autosave.php:1888
7834
  msgid "Show Facebook comment box"
7835
  msgstr ""
7836
 
7837
- #: wppa-settings-autosave.php:1889
7838
  msgid "Display the Facebook comment dialog box in the share box."
7839
  msgstr ""
7840
 
7841
- #: wppa-settings-autosave.php:1897
7842
  msgid "Facebook User Id"
7843
  msgstr ""
7844
 
7845
- #: wppa-settings-autosave.php:1898
7846
  msgid "Enter your facebook user id to be able to moderate comments and sends"
7847
  msgstr ""
7848
 
7849
- #: wppa-settings-autosave.php:1906
7850
  msgid "Facebook App Id"
7851
  msgstr ""
7852
 
7853
- #: wppa-settings-autosave.php:1907
7854
  msgid "Enter your facebook app id to be able to moderate comments and sends"
7855
  msgstr ""
7856
 
7857
- #: wppa-settings-autosave.php:1915
7858
  msgid "Facebook js SDK"
7859
  msgstr ""
7860
 
7861
- #: wppa-settings-autosave.php:1916
7862
  msgid "Load Facebook js SDK"
7863
  msgstr ""
7864
 
7865
- #: wppa-settings-autosave.php:1917
7866
  msgid ""
7867
  "Uncheck this box only when there is a conflict with an other plugin that "
7868
  "also loads the Facebook js SDK."
7869
  msgstr ""
7870
 
7871
- #: wppa-settings-autosave.php:1924
7872
  msgid "Share single image"
7873
  msgstr ""
7874
 
7875
- #: wppa-settings-autosave.php:1925
7876
  msgid "Share a link to a single image, not the slideshow."
7877
  msgstr ""
7878
 
7879
- #: wppa-settings-autosave.php:1926
7880
  msgid ""
7881
  "The sharelink points to a page with a single image rather than to the page "
7882
  "with the photo in the slideshow."
7883
  msgstr ""
7884
 
7885
- #: wppa-settings-autosave.php:1933
7886
  msgid "Thumbnail display related visibility settings"
7887
  msgstr ""
7888
 
7889
- #: wppa-settings-autosave.php:1935
7890
  #, fuzzy
7891
  msgid "Thumbnail name"
7892
  msgstr "Foto Top Ti"
7893
 
7894
- #: wppa-settings-autosave.php:1936
7895
  msgid "Display Thumbnail name."
7896
  msgstr ""
7897
 
7898
- #: wppa-settings-autosave.php:1937
7899
  msgid "Display photo name under thumbnail images."
7900
  msgstr ""
7901
 
7902
- #: wppa-settings-autosave.php:1953
7903
  #, fuzzy
7904
  msgid "Thumbnail desc"
7905
  msgstr "Miniatura"
7906
 
7907
- #: wppa-settings-autosave.php:1954
7908
  #, fuzzy
7909
  msgid "Display Thumbnail description."
7910
  msgstr "Inserisci / modifica la descrizione per questo album."
7911
 
7912
- #: wppa-settings-autosave.php:1955
7913
  msgid "Display description of the photo under thumbnail images."
7914
  msgstr ""
7915
 
7916
- #: wppa-settings-autosave.php:1962
7917
  #, fuzzy
7918
  msgid "Thumbnail rating"
7919
  msgstr "Foto Top Ti"
7920
 
7921
- #: wppa-settings-autosave.php:1963
7922
  msgid "Display Thumbnail Rating."
7923
  msgstr ""
7924
 
7925
- #: wppa-settings-autosave.php:1964
7926
  msgid "Display the rating of the photo under the thumbnail image."
7927
  msgstr ""
7928
 
7929
- #: wppa-settings-autosave.php:1971
7930
  #, fuzzy
7931
  msgid "Thumbnail comcount"
7932
  msgstr "Miniatura"
7933
 
7934
- #: wppa-settings-autosave.php:1972
7935
  msgid "Display Thumbnail Comment count."
7936
  msgstr ""
7937
 
7938
- #: wppa-settings-autosave.php:1973
7939
  msgid "Display the number of comments to the photo under the thumbnail image."
7940
  msgstr ""
7941
 
7942
- #: wppa-settings-autosave.php:1980
7943
  #, fuzzy
7944
  msgid "Thumbnail viewcount"
7945
  msgstr "Foto Top Ti"
7946
 
7947
- #: wppa-settings-autosave.php:1981
7948
  msgid "Display the number of views."
7949
  msgstr ""
7950
 
7951
- #: wppa-settings-autosave.php:1982
7952
  msgid "Display the number of views under the thumbnail image."
7953
  msgstr ""
7954
 
7955
- #: wppa-settings-autosave.php:1989
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7956
  #, fuzzy
7957
  msgid "Thumbnail video"
7958
  msgstr "Foto Top Ti"
7959
 
7960
- #: wppa-settings-autosave.php:1990
7961
  msgid "Show video controls on thumbnail displays."
7962
  msgstr ""
7963
 
7964
- #: wppa-settings-autosave.php:1991
7965
  msgid ""
7966
  "Works on default thumbnail type only. You can play the video only when the "
7967
  "link is set to no link at all."
7968
  msgstr ""
7969
 
7970
- #: wppa-settings-autosave.php:1998
7971
  #, fuzzy
7972
  msgid "Thumbnail audio"
7973
  msgstr "Foto Top Ti"
7974
 
7975
- #: wppa-settings-autosave.php:1999
7976
  msgid "Show audio controls on thumbnail displays."
7977
  msgstr ""
7978
 
7979
- #: wppa-settings-autosave.php:2000
7980
  msgid "Works on default thumbnail type only."
7981
  msgstr ""
7982
 
7983
- #: wppa-settings-autosave.php:2007
7984
  #, fuzzy
7985
  msgid "Popup name"
7986
  msgstr "Dit navn"
7987
 
7988
- #: wppa-settings-autosave.php:2008
7989
  msgid "Display Thumbnail name on popup."
7990
  msgstr ""
7991
 
7992
- #: wppa-settings-autosave.php:2009
7993
  msgid "Display photo name under thumbnail images on the popup."
7994
  msgstr ""
7995
 
7996
- #: wppa-settings-autosave.php:2016
7997
  msgid "Popup (owner)"
7998
  msgstr ""
7999
 
8000
- #: wppa-settings-autosave.php:2017
8001
  msgid "Display owner on popup."
8002
  msgstr ""
8003
 
8004
- #: wppa-settings-autosave.php:2018
8005
  msgid "Display photo owner under thumbnail images on the popup."
8006
  msgstr ""
8007
 
8008
- #: wppa-settings-autosave.php:2025
8009
  msgid "Popup desc"
8010
  msgstr ""
8011
 
8012
- #: wppa-settings-autosave.php:2026
8013
  msgid "Display Thumbnail description on popup."
8014
  msgstr ""
8015
 
8016
- #: wppa-settings-autosave.php:2027
8017
  msgid "Display description of the photo under thumbnail images on the popup."
8018
  msgstr ""
8019
 
8020
- #: wppa-settings-autosave.php:2034
8021
  msgid "Popup desc no links"
8022
  msgstr ""
8023
 
8024
- #: wppa-settings-autosave.php:2035
8025
  msgid "Strip html anchor tags from descriptions on popups"
8026
  msgstr ""
8027
 
8028
- #: wppa-settings-autosave.php:2036
8029
  msgid ""
8030
  "Use this option to prevent the display of links that cannot be activated."
8031
  msgstr ""
8032
 
8033
- #: wppa-settings-autosave.php:2043
8034
  #, fuzzy
8035
  msgid "Popup rating"
8036
  msgstr "Valutazione:"
8037
 
8038
- #: wppa-settings-autosave.php:2044
8039
  msgid "Display Thumbnail Rating on popup."
8040
  msgstr ""
8041
 
8042
- #: wppa-settings-autosave.php:2045
8043
  msgid "Display the rating of the photo under the thumbnail image on the popup."
8044
  msgstr ""
8045
 
8046
- #: wppa-settings-autosave.php:2052
8047
  msgid "Popup comcount"
8048
  msgstr ""
8049
 
8050
- #: wppa-settings-autosave.php:2053
8051
  msgid "Display Thumbnail Comment count on popup."
8052
  msgstr ""
8053
 
8054
- #: wppa-settings-autosave.php:2054
8055
  msgid ""
8056
  "Display the number of comments of the photo under the thumbnail image on the "
8057
  "popup."
8058
  msgstr ""
8059
 
8060
- #: wppa-settings-autosave.php:2061
8061
  msgid "Show rating count"
8062
  msgstr ""
8063
 
8064
- #: wppa-settings-autosave.php:2062
8065
  msgid "Display the number of votes along with average ratings."
8066
  msgstr ""
8067
 
8068
- #: wppa-settings-autosave.php:2063
8069
  msgid ""
8070
  "If checked, the number of votes is displayed along with average rating "
8071
  "displays on thumbnail and popup displays."
8072
  msgstr ""
8073
 
8074
- #: wppa-settings-autosave.php:2070
8075
  msgid "Show name on thumb area"
8076
  msgstr ""
8077
 
8078
- #: wppa-settings-autosave.php:2071
8079
  msgid "Select if and where to display the album name on the thumbnail display."
8080
  msgstr ""
8081
 
8082
- #: wppa-settings-autosave.php:2074 wppa-settings-autosave.php:2085
8083
  msgid "None"
8084
  msgstr ""
8085
 
8086
- #: wppa-settings-autosave.php:2074 wppa-settings-autosave.php:2085
8087
- #: wppa-settings-autosave.php:3191
8088
  msgid "At the top"
8089
  msgstr ""
8090
 
8091
- #: wppa-settings-autosave.php:2074 wppa-settings-autosave.php:2085
8092
- #: wppa-settings-autosave.php:3191
8093
  msgid "At the bottom"
8094
  msgstr ""
8095
 
8096
- #: wppa-settings-autosave.php:2081
8097
  msgid "Show desc on thumb area"
8098
  msgstr ""
8099
 
8100
- #: wppa-settings-autosave.php:2082
8101
  msgid ""
8102
  "Select if and where to display the album description on the thumbnail "
8103
  "display."
8104
  msgstr ""
8105
 
8106
- #: wppa-settings-autosave.php:2092
8107
  msgid "Show Edit/Delete links"
8108
  msgstr ""
8109
 
8110
- #: wppa-settings-autosave.php:2093
8111
  msgid "Show these links under default thumbnails for owner and admin."
8112
  msgstr ""
8113
 
8114
- #: wppa-settings-autosave.php:2101
8115
  msgid "Show empty thumbnail area"
8116
  msgstr ""
8117
 
8118
- #: wppa-settings-autosave.php:2102
8119
  msgid "Display thumbnail areas with upload link only for empty albums."
8120
  msgstr ""
8121
 
8122
- #: wppa-settings-autosave.php:2111
8123
  msgid "Album cover related visibility settings"
8124
  msgstr ""
8125
 
8126
- #: wppa-settings-autosave.php:2113
8127
  msgid "Covertext"
8128
  msgstr ""
8129
 
8130
- #: wppa-settings-autosave.php:2114
8131
  msgid "Show the text on the album cover."
8132
  msgstr ""
8133
 
8134
- #: wppa-settings-autosave.php:2115
8135
  msgid "Display the album decription on the album cover"
8136
  msgstr ""
8137
 
8138
- #: wppa-settings-autosave.php:2123
8139
  msgid "Enable the slideshow."
8140
  msgstr ""
8141
 
8142
- #: wppa-settings-autosave.php:2124
8143
  msgid ""
8144
  "If you do not want slideshows: uncheck this box. Browsing full size images "
8145
  "will remain possible."
8146
  msgstr ""
8147
 
8148
- #: wppa-settings-autosave.php:2131
8149
  #, fuzzy
8150
  msgid "Slideshow/Browse"
8151
  msgstr "Slideshow"
8152
 
8153
- #: wppa-settings-autosave.php:2132
8154
  msgid "Display the Slideshow / Browse photos link on album covers"
8155
  msgstr ""
8156
 
8157
- #: wppa-settings-autosave.php:2133
8158
  msgid ""
8159
  "This setting causes the Slideshow link to be displayed on the album cover."
8160
  msgstr ""
8161
 
8162
- #: wppa-settings-autosave.php:2134
8163
  msgid ""
8164
  "If slideshows are disabled in item 2 in this table, you will see a browse "
8165
  "link to fullsize images."
8166
  msgstr ""
8167
 
8168
- #: wppa-settings-autosave.php:2135
8169
  msgid "If you do not want the browse link either, uncheck this item."
8170
  msgstr ""
8171
 
8172
- #: wppa-settings-autosave.php:2142
8173
  #, fuzzy
8174
  msgid "View ..."
8175
  msgstr "Se"
8176
 
8177
- #: wppa-settings-autosave.php:2143
8178
  msgid "Display the View xx albums and yy photos link on album covers"
8179
  msgstr ""
8180
 
8181
- #: wppa-settings-autosave.php:2151
8182
  msgid "Treecount"
8183
  msgstr ""
8184
 
8185
- #: wppa-settings-autosave.php:2152
8186
  msgid "Disaplay the total number of (sub)albums and photos in subalbums"
8187
  msgstr ""
8188
 
8189
- #: wppa-settings-autosave.php:2153
8190
  msgid ""
8191
  "Displays the total number of sub albums and photos in the entire album tree "
8192
  "in parenthesis if the numbers differ from the direct content of the album."
8193
  msgstr ""
8194
 
8195
- #: wppa-settings-autosave.php:2160
8196
  msgid "Show categories"
8197
  msgstr ""
8198
 
8199
- #: wppa-settings-autosave.php:2161
8200
  msgid "Display the album categories on the covers."
8201
  msgstr ""
8202
 
8203
- #: wppa-settings-autosave.php:2169
8204
  msgid "Skip empty albums"
8205
  msgstr ""
8206
 
8207
- #: wppa-settings-autosave.php:2170
8208
  msgid "Do not show empty albums, except for admin and owner."
8209
  msgstr ""
8210
 
8211
- #: wppa-settings-autosave.php:2178
8212
  msgid "Widget related visibility settings"
8213
  msgstr ""
8214
 
8215
- #: wppa-settings-autosave.php:2180
8216
  msgid "Big Browse Buttons in widget"
8217
  msgstr ""
8218
 
8219
- #: wppa-settings-autosave.php:2181
8220
  msgid "Enable invisible browsing buttons in widget slideshows."
8221
  msgstr ""
8222
 
8223
- #: wppa-settings-autosave.php:2190
8224
  msgid "Ugly Browse Buttons in widget"
8225
  msgstr ""
8226
 
8227
- #: wppa-settings-autosave.php:2191
8228
  msgid "Enable ugly browsing buttons in widget slideshows."
8229
  msgstr ""
8230
 
8231
- #: wppa-settings-autosave.php:2192
8232
  msgid "If checked, the fullsize image is covered by browse buttons."
8233
  msgstr ""
8234
 
8235
- #: wppa-settings-autosave.php:2200
8236
  msgid "Album widget tooltip"
8237
  msgstr ""
8238
 
8239
- #: wppa-settings-autosave.php:2201
8240
  msgid "Show the album description on hoovering thumbnail in album widget"
8241
  msgstr ""
8242
 
8243
- #: wppa-settings-autosave.php:2209 wppa-settings-autosave.php:4098
8244
  msgid ""
8245
  "Lightbox related settings. These settings have effect only when Table IX-J3 "
8246
  "is set to wppa"
8247
  msgstr ""
8248
 
8249
- #: wppa-settings-autosave.php:2211
8250
  msgid "Overlay Close label text"
8251
  msgstr ""
8252
 
8253
- #: wppa-settings-autosave.php:2212
8254
  msgid "The text label for the cross exit symbol."
8255
  msgstr ""
8256
 
8257
- #: wppa-settings-autosave.php:2213
8258
  msgid ""
8259
  "This text may be multilingual according to the qTranslate short tags specs."
8260
  msgstr ""
8261
 
8262
- #: wppa-settings-autosave.php:2220
8263
  msgid "Overlay theme color"
8264
  msgstr ""
8265
 
8266
- #: wppa-settings-autosave.php:2221
8267
  msgid "The color of the image border and text background."
8268
  msgstr ""
8269
 
8270
- #: wppa-settings-autosave.php:2224 wppa-settings-autosave.php:2235
8271
  msgid "White"
8272
  msgstr ""
8273
 
8274
- #: wppa-settings-autosave.php:2231
8275
  msgid "Overlay background color"
8276
  msgstr ""
8277
 
8278
- #: wppa-settings-autosave.php:2232
8279
  msgid "The color of the outer background."
8280
  msgstr ""
8281
 
8282
- #: wppa-settings-autosave.php:2242
8283
  msgid "Overlay slide name"
8284
  msgstr ""
8285
 
8286
- #: wppa-settings-autosave.php:2243
8287
  msgid "Show name if from slide."
8288
  msgstr ""
8289
 
8290
- #: wppa-settings-autosave.php:2244
8291
  msgid ""
8292
  "Shows the photos name on a lightbox display when initiated from a slide."
8293
  msgstr ""
8294
 
8295
- #: wppa-settings-autosave.php:2245 wppa-settings-autosave.php:2255
8296
  msgid ""
8297
  "This setting also applies to film thumbnails if Table VI-11 is set to "
8298
  "lightbox overlay."
8299
  msgstr ""
8300
 
8301
- #: wppa-settings-autosave.php:2252
8302
  msgid "Overlay slide desc"
8303
  msgstr ""
8304
 
8305
- #: wppa-settings-autosave.php:2253
8306
  msgid "Show description if from slide."
8307
  msgstr ""
8308
 
8309
- #: wppa-settings-autosave.php:2254
8310
  msgid ""
8311
  "Shows the photos description on a lightbox display when initiated from a "
8312
  "slide."
8313
  msgstr ""
8314
 
8315
- #: wppa-settings-autosave.php:2262
8316
  msgid "Overlay thumb name"
8317
  msgstr ""
8318
 
8319
- #: wppa-settings-autosave.php:2263
8320
  msgid "Show the photos name if from thumb."
8321
  msgstr ""
8322
 
8323
- #: wppa-settings-autosave.php:2264
8324
  msgid ""
8325
  "Shows the name on a lightbox display when initiated from a standard "
8326
  "thumbnail or a widget thumbnail."
8327
  msgstr ""
8328
 
8329
- #: wppa-settings-autosave.php:2265 wppa-settings-autosave.php:2275
8330
  msgid ""
8331
  "This setting applies to standard thumbnails, thumbnail-, comment-, topten- "
8332
  "and lasten-widget."
8333
  msgstr ""
8334
 
8335
- #: wppa-settings-autosave.php:2272
8336
  msgid "Overlay thumb desc"
8337
  msgstr ""
8338
 
8339
- #: wppa-settings-autosave.php:2273
8340
  msgid "Show description if from thumb."
8341
  msgstr ""
8342
 
8343
- #: wppa-settings-autosave.php:2274
8344
  msgid ""
8345
  "Shows the photos description on a lightbox display when initiated from a "
8346
  "standard thumbnail or a widget thumbnail."
8347
  msgstr ""
8348
 
8349
- #: wppa-settings-autosave.php:2282
8350
  #, fuzzy
8351
  msgid "Overlay potd name"
8352
  msgstr "Indtast foto navn"
8353
 
8354
- #: wppa-settings-autosave.php:2283
8355
  msgid "Show the photos name if from photo of the day."
8356
  msgstr ""
8357
 
8358
- #: wppa-settings-autosave.php:2284
8359
  msgid ""
8360
  "Shows the name on a lightbox display when initiated from the photo of the "
8361
  "day."
8362
  msgstr ""
8363
 
8364
- #: wppa-settings-autosave.php:2291
8365
  msgid "Overlay potd desc"
8366
  msgstr ""
8367
 
8368
- #: wppa-settings-autosave.php:2292
8369
  msgid "Show description if from from photo of the day."
8370
  msgstr ""
8371
 
8372
- #: wppa-settings-autosave.php:2293
8373
  msgid ""
8374
  "Shows the photos description on a lightbox display when initiated from the "
8375
  "photo of the day."
8376
  msgstr ""
8377
 
8378
- #: wppa-settings-autosave.php:2300
8379
  #, fuzzy
8380
  msgid "Overlay sphoto name"
8381
  msgstr "Indtast foto navn"
8382
 
8383
- #: wppa-settings-autosave.php:2301
8384
  msgid "Show the photos name if from a single photo."
8385
  msgstr ""
8386
 
8387
- #: wppa-settings-autosave.php:2302
8388
  msgid ""
8389
  "Shows the name on a lightbox display when initiated from a single photo."
8390
  msgstr ""
8391
 
8392
- #: wppa-settings-autosave.php:2309
8393
  #, fuzzy
8394
  msgid "Overlay sphoto desc"
8395
  msgstr "fotos"
8396
 
8397
- #: wppa-settings-autosave.php:2310
8398
  msgid "Show description if from from a single photo."
8399
  msgstr ""
8400
 
8401
- #: wppa-settings-autosave.php:2311
8402
  msgid ""
8403
  "Shows the photos description on a lightbox display when initiated from a "
8404
  "single photo."
8405
  msgstr ""
8406
 
8407
- #: wppa-settings-autosave.php:2318
8408
  #, fuzzy
8409
  msgid "Overlay mphoto name"
8410
  msgstr "Indtast foto navn"
8411
 
8412
- #: wppa-settings-autosave.php:2319
8413
  msgid "Show the photos name if from a single media style photo."
8414
  msgstr ""
8415
 
8416
- #: wppa-settings-autosave.php:2320
8417
  msgid ""
8418
  "Shows the name on a lightbox display when initiated from a single media "
8419
  "style photo."
8420
  msgstr ""
8421
 
8422
- #: wppa-settings-autosave.php:2327
8423
  #, fuzzy
8424
  msgid "Overlay mphoto desc"
8425
  msgstr "fotos"
8426
 
8427
- #: wppa-settings-autosave.php:2328
8428
  msgid "Show description if from from a media style photo."
8429
  msgstr ""
8430
 
8431
- #: wppa-settings-autosave.php:2329
8432
  msgid ""
8433
  "Shows the photos description on a lightbox display when initiated from a "
8434
  "single media style photo."
8435
  msgstr ""
8436
 
8437
- #: wppa-settings-autosave.php:2336
8438
  #, fuzzy
8439
  msgid "Overlay albumwidget name"
8440
  msgstr ""
8441
  "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
8442
  "per i titoli delle copertine degli album."
8443
 
8444
- #: wppa-settings-autosave.php:2337
8445
  msgid "Show the photos name if from the album widget."
8446
  msgstr ""
8447
 
8448
- #: wppa-settings-autosave.php:2338
8449
  msgid ""
8450
  "Shows the name on a lightbox display when initiated from the album widget."
8451
  msgstr ""
8452
 
8453
- #: wppa-settings-autosave.php:2345
8454
  msgid "Overlay albumwidget desc"
8455
  msgstr ""
8456
 
8457
- #: wppa-settings-autosave.php:2346
8458
  msgid "Show description if from from the album widget."
8459
  msgstr ""
8460
 
8461
- #: wppa-settings-autosave.php:2347
8462
  msgid ""
8463
  "Shows the photos description on a lightbox display when initiated from the "
8464
  "album widget."
8465
  msgstr ""
8466
 
8467
- #: wppa-settings-autosave.php:2354
8468
  #, fuzzy
8469
  msgid "Overlay coverphoto name"
8470
  msgstr "Indtast foto navn"
8471
 
8472
- #: wppa-settings-autosave.php:2355
8473
  msgid "Show the photos name if from the album cover."
8474
  msgstr ""
8475
 
8476
- #: wppa-settings-autosave.php:2356
8477
  msgid ""
8478
  "Shows the name on a lightbox display when initiated from the album "
8479
  "coverphoto."
8480
  msgstr ""
8481
 
8482
- #: wppa-settings-autosave.php:2363
8483
  msgid "Overlay coverphoto desc"
8484
  msgstr ""
8485
 
8486
- #: wppa-settings-autosave.php:2364
8487
  msgid "Show description if from from the album cover."
8488
  msgstr ""
8489
 
8490
- #: wppa-settings-autosave.php:2365
8491
  msgid ""
8492
  "Shows the photos description on a lightbox display when initiated from the "
8493
  "album coverphoto."
8494
  msgstr ""
8495
 
8496
- #: wppa-settings-autosave.php:2372
8497
  msgid "Overlay add owner"
8498
  msgstr ""
8499
 
8500
- #: wppa-settings-autosave.php:2373
8501
  msgid "Add the owner to the photo name on lightbox displays."
8502
  msgstr ""
8503
 
8504
- #: wppa-settings-autosave.php:2374
8505
  msgid ""
8506
  "This setting is independant of the show name switches and is a global "
8507
  "setting."
8508
  msgstr ""
8509
 
8510
- #: wppa-settings-autosave.php:2381
8511
  #, fuzzy
8512
  msgid "Overlay show start/stop"
8513
  msgstr "Klik for start/stop"
8514
 
8515
- #: wppa-settings-autosave.php:2382
8516
  msgid "Show Start and Stop for running slideshow on lightbox."
8517
  msgstr ""
8518
 
8519
- #: wppa-settings-autosave.php:2390
8520
  msgid "Overlay show legenda"
8521
  msgstr ""
8522
 
8523
- #: wppa-settings-autosave.php:2391
8524
  msgid "Show \"Press f for fullsize\" etc. on lightbox."
8525
  msgstr ""
8526
 
8527
- #: wppa-settings-autosave.php:2392
8528
  msgid "Independant of this setting, it will not show up on mobile devices."
8529
  msgstr ""
8530
 
8531
- #: wppa-settings-autosave.php:2399
8532
  msgid "Show fullscreen icons"
8533
  msgstr ""
8534
 
8535
- #: wppa-settings-autosave.php:2400
8536
  msgid "Shows fullscreen and back to normal icon buttons on upper right corner"
8537
  msgstr ""
8538
 
8539
- #: wppa-settings-autosave.php:2408
8540
  msgid "Overlay show counter"
8541
  msgstr ""
8542
 
8543
- #: wppa-settings-autosave.php:2409
8544
  msgid "Show the x/y counter below the image."
8545
  msgstr ""
8546
 
8547
- #: wppa-settings-autosave.php:2417
8548
  #, fuzzy
8549
  msgid "Show Zoom in"
8550
  msgstr "Zoom ind"
8551
 
8552
- #: wppa-settings-autosave.php:2418
8553
  msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
8554
  msgstr ""
8555
 
8556
- #: wppa-settings-autosave.php:2419
8557
  msgid ""
8558
  "If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
8559
  "contains the photo name."
8560
  msgstr ""
8561
 
8562
- #: wppa-settings-autosave.php:2427
8563
  msgid "Frontend upload configuration settings"
8564
  msgstr ""
8565
 
8566
- #: wppa-settings-autosave.php:2429
8567
  #, fuzzy
8568
  msgid "User upload Photos"
8569
  msgstr "Bruger %s indsendte foto %s ind i album %s"
8570
 
8571
- #: wppa-settings-autosave.php:2430
8572
  #, fuzzy
8573
  msgid "Enable frontend upload."
8574
  msgstr "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at uploade en fil.</b>"
8575
 
8576
- #: wppa-settings-autosave.php:2431
8577
  msgid ""
8578
  "If you check this item, frontend upload will be enabled according to the "
8579
  "rules set in the following items of this table."
8580
  msgstr ""
8581
 
8582
- #: wppa-settings-autosave.php:2439
8583
  #, fuzzy
8584
  msgid "User upload Photos login"
8585
  msgstr "Bruger %s indsendte foto %s ind i album %s"
8586
 
8587
- #: wppa-settings-autosave.php:2440
8588
  msgid "Frontend upload requires the user is logged in."
8589
  msgstr ""
8590
 
8591
- #: wppa-settings-autosave.php:2441
8592
  msgid ""
8593
  "If you uncheck this box, make sure you check the item Owners only in Table "
8594
  "VII-D1."
8595
  msgstr ""
8596
 
8597
- #: wppa-settings-autosave.php:2442
8598
  msgid ""
8599
  "Also: set the owner to ---public--- of the albums that are allowed to be "
8600
  "uploaded to."
8601
  msgstr ""
8602
 
8603
- #: wppa-settings-autosave.php:2449
8604
  #, fuzzy
8605
  msgid "User upload Ajax"
8606
  msgstr "Bruger %s indsendte foto %s ind i album %s"
8607
 
8608
- #: wppa-settings-autosave.php:2450
8609
  msgid "Shows the upload progression bar."
8610
  msgstr ""
8611
 
8612
- #: wppa-settings-autosave.php:2458
8613
  msgid "Show Copyright"
8614
  msgstr ""
8615
 
8616
- #: wppa-settings-autosave.php:2459
8617
  msgid "Show a copyright warning on frontend upload locations."
8618
  msgstr ""
8619
 
8620
- #: wppa-settings-autosave.php:2468
8621
  msgid "Copyright notice"
8622
  msgstr ""
8623
 
8624
- #: wppa-settings-autosave.php:2469
8625
  msgid "The message to be displayed."
8626
  msgstr ""
8627
 
8628
- #: wppa-settings-autosave.php:2477
8629
  msgid "User Watermark"
8630
  msgstr ""
8631
 
8632
- #: wppa-settings-autosave.php:2478
8633
  msgid "Uploading users may select watermark settings"
8634
  msgstr ""
8635
 
8636
- #: wppa-settings-autosave.php:2479
8637
  msgid ""
8638
  "If checked, anyone who can upload and/or import photos can overrule the "
8639
  "default watermark settings."
8640
  msgstr ""
8641
 
8642
- #: wppa-settings-autosave.php:2486
8643
  #, fuzzy
8644
  msgid "User name"
8645
  msgstr "Dit navn"
8646
 
8647
- #: wppa-settings-autosave.php:2487
8648
  msgid "Uploading users may overrule the default name."
8649
  msgstr ""
8650
 
8651
- #: wppa-settings-autosave.php:2488
8652
  msgid ""
8653
  "If checked, the default photo name as defined in Table IX-D13 may be "
8654
  "overruled by the user."
8655
  msgstr ""
8656
 
8657
- #: wppa-settings-autosave.php:2495
8658
  msgid "Apply Newphoto desc user"
8659
  msgstr ""
8660
 
8661
- #: wppa-settings-autosave.php:2496
8662
  msgid "Give each new frontend uploaded photo a standard description."
8663
  msgstr ""
8664
 
8665
- #: wppa-settings-autosave.php:2497
8666
  msgid ""
8667
  "If checked, each new photo will get the description (template) as specified "
8668
  "in Table IX-D5."
8669
  msgstr ""
8670
 
8671
- #: wppa-settings-autosave.php:2504
8672
  msgid "User desc"
8673
  msgstr ""
8674
 
8675
- #: wppa-settings-autosave.php:2505
8676
  msgid "Uploading users may overrule the default description."
8677
  msgstr ""
8678
 
8679
- #: wppa-settings-autosave.php:2513
8680
  #, fuzzy
8681
  msgid "User upload custom"
8682
  msgstr "Bruger %s indsendte foto %s ind i album %s"
8683
 
8684
- #: wppa-settings-autosave.php:2514
8685
  msgid "Frontend upload can fill in custom data fields."
8686
  msgstr ""
8687
 
8688
- #: wppa-settings-autosave.php:2522
8689
  #, fuzzy
8690
  msgid "User upload tags"
8691
  msgstr "Bruger %s indsendte foto %s ind i album %s"
8692
 
8693
- #: wppa-settings-autosave.php:2523
8694
  msgid "Frontend upload can add tags."
8695
  msgstr ""
8696
 
8697
- #: wppa-settings-autosave.php:2524
8698
  msgid "You can configure the details of tag addition in Table IX-D18.x"
8699
  msgstr ""
8700
 
8701
- #: wppa-settings-autosave.php:2532 wppa-settings-autosave.php:2560
8702
- #: wppa-settings-autosave.php:2588
8703
  #, fuzzy
8704
  msgid "Tag selection box"
8705
  msgstr "--- vises ikke ---"
8706
 
8707
- #: wppa-settings-autosave.php:2533 wppa-settings-autosave.php:2561
8708
- #: wppa-settings-autosave.php:2589
8709
  msgid "Front-end upload tags selecion box."
8710
  msgstr ""
8711
 
8712
- #: wppa-settings-autosave.php:2537 wppa-settings-autosave.php:2565
8713
- #: wppa-settings-autosave.php:2593
8714
  msgid "On:"
8715
  msgstr ""
8716
 
8717
- #: wppa-settings-autosave.php:2537 wppa-settings-autosave.php:2565
8718
- #: wppa-settings-autosave.php:2593
8719
  #, fuzzy
8720
  msgid "Multi:"
8721
  msgstr "Multi-spot"
8722
 
8723
- #: wppa-settings-autosave.php:2542 wppa-settings-autosave.php:2570
8724
- #: wppa-settings-autosave.php:2598
8725
  msgid "Caption box"
8726
  msgstr ""
8727
 
8728
- #: wppa-settings-autosave.php:2543 wppa-settings-autosave.php:2571
8729
- #: wppa-settings-autosave.php:2599
8730
  msgid "The title of the tag selection box."
8731
  msgstr ""
8732
 
8733
- #: wppa-settings-autosave.php:2551 wppa-settings-autosave.php:2579
8734
- #: wppa-settings-autosave.php:2607
8735
  msgid "Tags box"
8736
  msgstr ""
8737
 
8738
- #: wppa-settings-autosave.php:2552 wppa-settings-autosave.php:2580
8739
- #: wppa-settings-autosave.php:2608
8740
  #, fuzzy
8741
  msgid "The tags in the selection box."
8742
  msgstr "--- vises ikke ---"
8743
 
8744
- #: wppa-settings-autosave.php:2553 wppa-settings-autosave.php:2581
8745
- #: wppa-settings-autosave.php:2609
8746
  msgid ""
8747
  "Enter the tags you want to appear in the selection box. Empty means: all "
8748
  "existing tags"
8749
  msgstr ""
8750
 
8751
- #: wppa-settings-autosave.php:2616
8752
  msgid "New tags"
8753
  msgstr ""
8754
 
8755
- #: wppa-settings-autosave.php:2617
8756
  msgid "Input field for any user defined tags."
8757
  msgstr ""
8758
 
8759
- #: wppa-settings-autosave.php:2625
8760
  #, fuzzy
8761
  msgid "New tags caption"
8762
  msgstr "Ingen blitz funktion"
8763
 
8764
- #: wppa-settings-autosave.php:2626
8765
  msgid "The caption above the tags input field."
8766
  msgstr ""
8767
 
8768
- #: wppa-settings-autosave.php:2634
8769
  #, fuzzy
8770
  msgid "Preview tags"
8771
  msgstr "Forrige billede"
8772
 
8773
- #: wppa-settings-autosave.php:2635
8774
  msgid "Show a preview of all tags that will be added to the photo info."
8775
  msgstr ""
8776
 
8777
- #: wppa-settings-autosave.php:2644
8778
  msgid "Miscellaneous visibility settings"
8779
  msgstr ""
8780
 
8781
- #: wppa-settings-autosave.php:2646
8782
  msgid "Frontend ending label"
8783
  msgstr ""
8784
 
8785
- #: wppa-settings-autosave.php:2647
8786
  msgid "Frontend upload / create / edit dialog closing label text."
8787
  msgstr ""
8788
 
8789
- #: wppa-settings-autosave.php:2650
8790
  msgid "Abort"
8791
  msgstr "Aborto"
8792
 
8793
- #: wppa-settings-autosave.php:2650
8794
  msgid "Close"
8795
  msgstr "Chiudi"
8796
 
8797
- #: wppa-settings-autosave.php:2650
8798
  msgid "Exit"
8799
  msgstr "Uscita"
8800
 
8801
- #: wppa-settings-autosave.php:2650
8802
  msgid "Quit"
8803
  msgstr "Esci"
8804
 
8805
- #: wppa-settings-autosave.php:2658
8806
  msgid "Widget thumbs fontsize"
8807
  msgstr ""
8808
 
8809
- #: wppa-settings-autosave.php:2659
8810
  msgid "Font size for thumbnail subtext in widgets."
8811
  msgstr ""
8812
 
8813
- #: wppa-settings-autosave.php:2667
8814
  msgid "Arrow color"
8815
  msgstr ""
8816
 
8817
- #: wppa-settings-autosave.php:2668
8818
  msgid "Left/right browsing arrow color."
8819
  msgstr ""
8820
 
8821
- #: wppa-settings-autosave.php:2669
8822
  msgid "Enter the color of the filmstrip navigation arrows."
8823
  msgstr ""
8824
 
8825
- #: wppa-settings-autosave.php:2676
8826
  msgid "Owner on new line"
8827
  msgstr ""
8828
 
8829
- #: wppa-settings-autosave.php:2677
8830
  msgid "Place the (owner) text on a new line."
8831
  msgstr ""
8832
 
8833
- #: wppa-settings-autosave.php:2685
8834
  msgid "Custom datafields"
8835
  msgstr ""
8836
 
8837
- #: wppa-settings-autosave.php:2686
8838
  msgid "Define up to 10 custom data fields for photos."
8839
  msgstr ""
8840
 
8841
- #: wppa-settings-autosave.php:2696
8842
  #, php-format
8843
  msgid "Name and visibility %s"
8844
  msgstr ""
8845
 
8846
- #: wppa-settings-autosave.php:2697
8847
  #, php-format
8848
  msgid "The caption for field %s and visibility at frontend."
8849
  msgstr ""
8850
 
8851
- #: wppa-settings-autosave.php:2698
8852
  #, php-format
8853
  msgid ""
8854
  "If you check the box, the value of this field is displayable in photo "
8855
  "descriptions at the frontend with keyword w#c%s"
8856
  msgstr ""
8857
 
8858
- #: wppa-settings-autosave.php:2728
8859
  msgid "Table III:"
8860
  msgstr ""
8861
 
8862
- #: wppa-settings-autosave.php:2728
8863
  msgid "Backgrounds:"
8864
  msgstr ""
8865
 
8866
- #: wppa-settings-autosave.php:2729
8867
  msgid "This table describes the backgrounds of wppa+ elements."
8868
  msgstr ""
8869
 
8870
- #: wppa-settings-autosave.php:2739 wppa-settings-autosave.php:3037
8871
  msgid "Background color"
8872
  msgstr ""
8873
 
8874
- #: wppa-settings-autosave.php:2740 wppa-settings-autosave.php:2742
8875
- #: wppa-settings-autosave.php:3038 wppa-settings-autosave.php:3040
8876
  msgid "Sample"
8877
  msgstr ""
8878
 
8879
- #: wppa-settings-autosave.php:2741 wppa-settings-autosave.php:3039
8880
  msgid "Border color"
8881
  msgstr ""
8882
 
8883
- #: wppa-settings-autosave.php:2750
8884
  msgid "Slideshow elements backgrounds"
8885
  msgstr ""
8886
 
8887
- #: wppa-settings-autosave.php:2752
8888
  msgid "Nav"
8889
  msgstr ""
8890
 
8891
- #: wppa-settings-autosave.php:2753
8892
  msgid "Navigation bars."
8893
  msgstr ""
8894
 
8895
- #: wppa-settings-autosave.php:2754
8896
  msgid "Enter valid CSS colors for navigation backgrounds and borders."
8897
  msgstr ""
8898
 
8899
- #: wppa-settings-autosave.php:2765
8900
  msgid "SlideImg"
8901
  msgstr ""
8902
 
8903
- #: wppa-settings-autosave.php:2766
8904
  #, fuzzy
8905
  msgid "Fullsize Slideshow Photos."
8906
  msgstr "Se forside fotos"
8907
 
8908
- #: wppa-settings-autosave.php:2767
8909
  msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
8910
  msgstr ""
8911
 
8912
- #: wppa-settings-autosave.php:2768
8913
  msgid "The colors may be equal or \"transparent\""
8914
  msgstr ""
8915
 
8916
- #: wppa-settings-autosave.php:2769
8917
  msgid ""
8918
  "For more information about slideshow image borders see the help on Table I-B4"
8919
  msgstr ""
8920
 
8921
- #: wppa-settings-autosave.php:2780 wppa-settings-autosave.php:4342
8922
  msgid "Numbar"
8923
  msgstr ""
8924
 
8925
- #: wppa-settings-autosave.php:2781
8926
  msgid "Number bar box background."
8927
  msgstr ""
8928
 
8929
- #: wppa-settings-autosave.php:2782
8930
  msgid "Enter valid CSS colors for numbar box backgrounds and borders."
8931
  msgstr ""
8932
 
8933
- #: wppa-settings-autosave.php:2793
8934
  msgid "Numbar active"
8935
  msgstr ""
8936
 
8937
- #: wppa-settings-autosave.php:2794
8938
  msgid "Number bar active box background."
8939
  msgstr ""
8940
 
8941
- #: wppa-settings-autosave.php:2795
8942
  msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
8943
  msgstr ""
8944
 
8945
- #: wppa-settings-autosave.php:2806
8946
  msgid "Name/desc"
8947
  msgstr ""
8948
 
8949
- #: wppa-settings-autosave.php:2807
8950
  msgid "Name and Description bars."
8951
  msgstr ""
8952
 
8953
- #: wppa-settings-autosave.php:2808
8954
  msgid ""
8955
  "Enter valid CSS colors for name and description box backgrounds and borders."
8956
  msgstr ""
8957
 
8958
- #: wppa-settings-autosave.php:2820
8959
  msgid "Comment input and display areas."
8960
  msgstr ""
8961
 
8962
- #: wppa-settings-autosave.php:2821
8963
  msgid "Enter valid CSS colors for comment box backgrounds and borders."
8964
  msgstr ""
8965
 
8966
- #: wppa-settings-autosave.php:2832 wppa-settings-autosave.php:7485
8967
- #: wppa-settings-autosave.php:7530
8968
  msgid "Custom"
8969
  msgstr ""
8970
 
8971
- #: wppa-settings-autosave.php:2833
8972
  msgid "Custom box background."
8973
  msgstr ""
8974
 
8975
- #: wppa-settings-autosave.php:2834
8976
  msgid "Enter valid CSS colors for custom box backgrounds and borders."
8977
  msgstr ""
8978
 
8979
- #: wppa-settings-autosave.php:2845
8980
  msgid "IPTC"
8981
  msgstr ""
8982
 
8983
- #: wppa-settings-autosave.php:2846
8984
  msgid "IPTC display box background."
8985
  msgstr ""
8986
 
8987
- #: wppa-settings-autosave.php:2847
8988
  msgid "Enter valid CSS colors for iptc box backgrounds and borders."
8989
  msgstr ""
8990
 
8991
- #: wppa-settings-autosave.php:2858
8992
  msgid "EXIF"
8993
  msgstr ""
8994
 
8995
- #: wppa-settings-autosave.php:2859
8996
  msgid "EXIF display box background."
8997
  msgstr ""
8998
 
8999
- #: wppa-settings-autosave.php:2860
9000
  msgid "Enter valid CSS colors for exif box backgrounds and borders."
9001
  msgstr ""
9002
 
9003
- #: wppa-settings-autosave.php:2871
9004
  msgid "Share"
9005
  msgstr ""
9006
 
9007
- #: wppa-settings-autosave.php:2872
9008
  msgid "Share box display background."
9009
  msgstr ""
9010
 
9011
- #: wppa-settings-autosave.php:2873
9012
  msgid "Enter valid CSS colors for share box backgrounds and borders."
9013
  msgstr ""
9014
 
9015
- #: wppa-settings-autosave.php:2884
9016
  msgid "Other backgrounds"
9017
  msgstr ""
9018
 
9019
- #: wppa-settings-autosave.php:2886
9020
  msgid "Even"
9021
  msgstr ""
9022
 
9023
- #: wppa-settings-autosave.php:2887
9024
  msgid "Even background."
9025
  msgstr ""
9026
 
9027
- #: wppa-settings-autosave.php:2888
9028
  msgid ""
9029
  "Enter valid CSS colors for even numbered backgrounds and borders of album "
9030
  "covers and thumbnail displays 'As covers'."
9031
  msgstr ""
9032
 
9033
- #: wppa-settings-autosave.php:2899
9034
  msgid "Odd"
9035
  msgstr ""
9036
 
9037
- #: wppa-settings-autosave.php:2900
9038
  msgid "Odd background."
9039
  msgstr ""
9040
 
9041
- #: wppa-settings-autosave.php:2901
9042
  msgid ""
9043
  "Enter valid CSS colors for odd numbered backgrounds and borders of album "
9044
  "covers and thumbnail displays 'As covers'."
9045
  msgstr ""
9046
 
9047
- #: wppa-settings-autosave.php:2912
9048
  #, fuzzy
9049
  msgid "Thumbnail padding"
9050
  msgstr "Foto Top Ti"
9051
 
9052
- #: wppa-settings-autosave.php:2913
9053
  msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
9054
  msgstr ""
9055
 
9056
- #: wppa-settings-autosave.php:2914
9057
  msgid ""
9058
  "Enter valid CSS color hexadecimal like #000000 for black or #ffffff for "
9059
  "white for the padded thumbnails."
9060
  msgstr ""
9061
 
9062
- #: wppa-settings-autosave.php:2925
9063
  #, fuzzy
9064
  msgid "Img"
9065
  msgstr "Billede"
9066
 
9067
- #: wppa-settings-autosave.php:2926
9068
  msgid "Cover Photos and popups."
9069
  msgstr ""
9070
 
9071
- #: wppa-settings-autosave.php:2927
9072
  msgid ""
9073
  "Enter valid CSS colors for Cover photo and popup backgrounds and borders."
9074
  msgstr ""
9075
 
9076
- #: wppa-settings-autosave.php:2939
9077
  msgid "Upload box background."
9078
  msgstr ""
9079
 
9080
- #: wppa-settings-autosave.php:2940
9081
  msgid "Enter valid CSS colors for upload box backgrounds and borders."
9082
  msgstr ""
9083
 
9084
- #: wppa-settings-autosave.php:2951
9085
  #, fuzzy
9086
  msgid "Multitag"
9087
  msgstr "Multi-spot"
9088
 
9089
- #: wppa-settings-autosave.php:2952
9090
  msgid "Multitag box background."
9091
  msgstr ""
9092
 
9093
- #: wppa-settings-autosave.php:2953
9094
  msgid "Enter valid CSS colors for multitag box backgrounds and borders."
9095
  msgstr ""
9096
 
9097
- #: wppa-settings-autosave.php:2964
9098
  msgid "Tagcloud"
9099
  msgstr ""
9100
 
9101
- #: wppa-settings-autosave.php:2965
9102
  msgid "Tagcloud box background."
9103
  msgstr ""
9104
 
9105
- #: wppa-settings-autosave.php:2966
9106
  msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
9107
  msgstr ""
9108
 
9109
- #: wppa-settings-autosave.php:2977
9110
  #, fuzzy
9111
  msgid "Superview"
9112
  msgstr "Se forside fotos"
9113
 
9114
- #: wppa-settings-autosave.php:2978
9115
  msgid "Superview box background."
9116
  msgstr ""
9117
 
9118
- #: wppa-settings-autosave.php:2979
9119
  msgid "Enter valid CSS colors for superview box backgrounds and borders."
9120
  msgstr ""
9121
 
9122
- #: wppa-settings-autosave.php:2991
9123
  msgid "Search box background."
9124
  msgstr ""
9125
 
9126
- #: wppa-settings-autosave.php:2992
9127
  msgid "Enter valid CSS colors for search box backgrounds and borders."
9128
  msgstr ""
9129
 
9130
- #: wppa-settings-autosave.php:3003
9131
  #, fuzzy
9132
  msgid "BestOf"
9133
  msgstr "fotos"
9134
 
9135
- #: wppa-settings-autosave.php:3004
9136
  msgid "BestOf box background."
9137
  msgstr ""
9138
 
9139
- #: wppa-settings-autosave.php:3005
9140
  msgid "Enter valid CSS colors for bestof box backgrounds and borders."
9141
  msgstr ""
9142
 
9143
- #: wppa-settings-autosave.php:3016
9144
  msgid "Calendar"
9145
  msgstr ""
9146
 
9147
- #: wppa-settings-autosave.php:3017
9148
  msgid "Calendar box background."
9149
  msgstr ""
9150
 
9151
- #: wppa-settings-autosave.php:3018
9152
  msgid "Enter valid CSS colors for calendar box backgrounds and borders."
9153
  msgstr ""
9154
 
9155
- #: wppa-settings-autosave.php:3050
 
 
 
 
 
 
 
 
 
 
 
 
 
9156
  msgid "Table IV:"
9157
  msgstr ""
9158
 
9159
- #: wppa-settings-autosave.php:3050
9160
  msgid "Behaviour:"
9161
  msgstr ""
9162
 
9163
- #: wppa-settings-autosave.php:3051
9164
  msgid "This table describes the dynamic behaviour of certain wppa+ elements."
9165
  msgstr ""
9166
 
9167
- #: wppa-settings-autosave.php:3069
9168
  msgid "System related settings"
9169
  msgstr ""
9170
 
9171
- #: wppa-settings-autosave.php:3071
9172
  msgid "Use Ajax"
9173
  msgstr ""
9174
 
9175
- #: wppa-settings-autosave.php:3072
9176
  msgid "Use Ajax as much as is possible and implemented."
9177
  msgstr ""
9178
 
9179
- #: wppa-settings-autosave.php:3073
9180
  msgid ""
9181
  "If this box is ticked, page content updates from within wppa+ displays will "
9182
  "be Ajax based as much as possible."
9183
  msgstr ""
9184
 
9185
- #: wppa-settings-autosave.php:3081
9186
  msgid "Ajax NON Admin"
9187
  msgstr ""
9188
 
9189
- #: wppa-settings-autosave.php:3082
9190
  msgid "Frontend ajax use no admin files."
9191
  msgstr ""
9192
 
9193
- #: wppa-settings-autosave.php:3083
9194
  msgid "If you want to password protect wp-admin, check this box."
9195
  msgstr ""
9196
 
9197
- #: wppa-settings-autosave.php:3084
9198
  msgid ""
9199
  "In rare cases changing page content does not work when this box is checked. "
9200
  "Verify the functionality!"
9201
  msgstr ""
9202
 
9203
- #: wppa-settings-autosave.php:3091
9204
  #, fuzzy
9205
  msgid "Photo names in urls"
9206
  msgstr "Risultati della ricerca per: %s"
9207
 
9208
- #: wppa-settings-autosave.php:3092
9209
  msgid "Display photo names in urls."
9210
  msgstr ""
9211
 
9212
- #: wppa-settings-autosave.php:3093
9213
  msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
9214
  msgstr ""
9215
 
9216
- #: wppa-settings-autosave.php:3094
9217
  msgid ""
9218
  "It is your responsability to avoid duplicate names of photos in the same "
9219
  "album."
9220
  msgstr ""
9221
 
9222
- #: wppa-settings-autosave.php:3101
9223
  #, fuzzy
9224
  msgid "Album names in urls"
9225
  msgstr "Album administration"
9226
 
9227
- #: wppa-settings-autosave.php:3102
9228
  msgid "Display album names in urls."
9229
  msgstr ""
9230
 
9231
- #: wppa-settings-autosave.php:3103
9232
  msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
9233
  msgstr ""
9234
 
9235
- #: wppa-settings-autosave.php:3104
9236
  msgid ""
9237
  "It is your responsability to avoid duplicate names of albums in the system."
9238
  msgstr ""
9239
 
9240
- #: wppa-settings-autosave.php:3111
9241
  msgid "Use short query args"
9242
  msgstr ""
9243
 
9244
- #: wppa-settings-autosave.php:3112
9245
  msgid "Use &album=... &photo=..."
9246
  msgstr ""
9247
 
9248
- #: wppa-settings-autosave.php:3113
9249
  msgid ""
9250
  "Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
9251
  "album=... &wppa-photo=..."
9252
  msgstr ""
9253
 
9254
- #: wppa-settings-autosave.php:3114
9255
  msgid ""
9256
  "Use this setting only when there are no conflicts with other plugins that "
9257
  "may interprete arguments like &album= etc."
9258
  msgstr ""
9259
 
9260
- #: wppa-settings-autosave.php:3121
9261
  msgid "Enable pretty links"
9262
  msgstr ""
9263
 
9264
- #: wppa-settings-autosave.php:3122
9265
  msgid "Enable the generation and understanding of pretty links."
9266
  msgstr ""
9267
 
9268
- #: wppa-settings-autosave.php:3123
9269
  msgid ""
9270
  "If checked, links to social media and the qr code will have \"/token1/token2/"
9271
  "\" etc in stead of \"&arg1=..&arg2=..\" etc."
9272
  msgstr ""
9273
 
9274
- #: wppa-settings-autosave.php:3124
9275
  msgid ""
9276
  "These types of links will be interpreted and cause a redirection on entering."
9277
  msgstr ""
9278
 
9279
- #: wppa-settings-autosave.php:3125
9280
  msgid ""
9281
  "It is recommended to check this box. It shortens links dramatically and "
9282
  "simplifies qr codes."
9283
  msgstr ""
9284
 
9285
- #: wppa-settings-autosave.php:3126
9286
  msgid ""
9287
  "However, you may encounter conflicts with themes and/or other plugins, so "
9288
  "test it troughly!"
9289
  msgstr ""
9290
 
9291
- #: wppa-settings-autosave.php:3127
9292
  msgid ""
9293
  "Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
9294
  msgstr ""
9295
 
9296
- #: wppa-settings-autosave.php:3134
9297
  #, fuzzy
9298
  msgid "Update addressline"
9299
  msgstr ""
9300
  "Non hai i permessi per potere aggiornare le informazioni di questo album"
9301
 
9302
- #: wppa-settings-autosave.php:3135
9303
  msgid "Update the addressline after an ajax action or next slide."
9304
  msgstr ""
9305
 
9306
- #: wppa-settings-autosave.php:3136
9307
  msgid ""
9308
  "If checked, refreshing the page will show the current content and the "
9309
  "browsers back and forth arrows will browse the history on the page."
9310
  msgstr ""
9311
 
9312
- #: wppa-settings-autosave.php:3137
9313
  msgid ""
9314
  "If unchecked, refreshing the page will re-display the content of the "
9315
  "original page."
9316
  msgstr ""
9317
 
9318
- #: wppa-settings-autosave.php:3138
9319
  msgid ""
9320
  "This will only work on browsers that support history.pushState() and "
9321
  "therefor NOT in IE"
9322
  msgstr ""
9323
 
9324
- #: wppa-settings-autosave.php:3139
9325
  msgid "Switching this off will affect the browsers behaviour."
9326
  msgstr ""
9327
 
9328
- #: wppa-settings-autosave.php:3146
9329
  msgid "Render shortcode always"
9330
  msgstr ""
9331
 
9332
- #: wppa-settings-autosave.php:3147
9333
  msgid "This will skip the check on proper initialisation."
9334
  msgstr ""
9335
 
9336
- #: wppa-settings-autosave.php:3148
9337
  msgid ""
9338
  "This setting is required for certain themes like Gantry to prevent the "
9339
  "display of wppa placeholders like [WPPA+ Photo display]."
9340
  msgstr ""
9341
 
9342
- #: wppa-settings-autosave.php:3149
9343
  #, php-format
9344
  msgid ""
9345
  "If this check is needed, you can use shortcodes like [wppa ...] only, not "
9346
  "scripts like %%wppa%%."
9347
  msgstr ""
9348
 
9349
- #: wppa-settings-autosave.php:3156
9350
  msgid "Track viewcounts"
9351
  msgstr ""
9352
 
9353
- #: wppa-settings-autosave.php:3157
9354
  msgid "Register number of views of albums and photos."
9355
  msgstr ""
9356
 
9357
- #: wppa-settings-autosave.php:3165
9358
  #, fuzzy
9359
  msgid "Auto page"
9360
  msgstr "Automatisk, afskudt"
9361
 
9362
- #: wppa-settings-autosave.php:3166
9363
  msgid "Create a wp page for every fullsize image."
9364
  msgstr ""
9365
 
9366
- #: wppa-settings-autosave.php:3170
9367
  msgid "Please reload this page after changing!"
9368
  msgstr ""
9369
 
9370
- #: wppa-settings-autosave.php:3176
9371
  msgid "Auto page display"
9372
  msgstr ""
9373
 
9374
- #: wppa-settings-autosave.php:3177
9375
  msgid "The type of display on the autopage pages."
9376
  msgstr ""
9377
 
9378
- #: wppa-settings-autosave.php:3180
9379
  #, fuzzy
9380
  msgid "Single photo"
9381
  msgstr "Se fotos"
9382
 
9383
- #: wppa-settings-autosave.php:3180
9384
  #, fuzzy
9385
  msgid "Media type photo"
9386
  msgstr "N&aelig;ste billede"
9387
 
9388
- #: wppa-settings-autosave.php:3180
9389
  msgid "In the style of a slideshow"
9390
  msgstr ""
9391
 
9392
- #: wppa-settings-autosave.php:3187
9393
  msgid "Auto page links"
9394
  msgstr ""
9395
 
9396
- #: wppa-settings-autosave.php:3188
9397
  msgid "The location for the pagelinks."
9398
  msgstr ""
9399
 
9400
- #: wppa-settings-autosave.php:3191
9401
  msgid "At top and bottom"
9402
  msgstr ""
9403
 
9404
- #: wppa-settings-autosave.php:3198
9405
  msgid "Defer javascript"
9406
  msgstr ""
9407
 
9408
- #: wppa-settings-autosave.php:3199
9409
  msgid "Put javascript near the end of the page."
9410
  msgstr ""
9411
 
9412
- #: wppa-settings-autosave.php:3200
9413
  msgid ""
9414
  "If checkd: May fix layout problems and broken slideshows. May speed up or "
9415
  "slow down page appearing."
9416
  msgstr ""
9417
 
9418
- #: wppa-settings-autosave.php:3207
9419
  msgid "Inline styles"
9420
  msgstr ""
9421
 
9422
- #: wppa-settings-autosave.php:3208
9423
  msgid "Set style specifications inline."
9424
  msgstr ""
9425
 
9426
- #: wppa-settings-autosave.php:3209
9427
  msgid "If checked: May fix layout problems, but slows down page appearing."
9428
  msgstr ""
9429
 
9430
- #: wppa-settings-autosave.php:3216
9431
  msgid "Custom style"
9432
  msgstr ""
9433
 
9434
- #: wppa-settings-autosave.php:3217
9435
  msgid "Enter custom style specs here."
9436
  msgstr ""
9437
 
9438
- #: wppa-settings-autosave.php:3225
9439
  msgid "Use customized style file"
9440
  msgstr ""
9441
 
9442
- #: wppa-settings-autosave.php:3226 wppa-settings-autosave.php:3235
9443
  msgid "This feature is highly discouraged."
9444
  msgstr ""
9445
 
9446
- #: wppa-settings-autosave.php:3234
9447
  msgid "Use customized theme file"
9448
  msgstr ""
9449
 
9450
- #: wppa-settings-autosave.php:3243
9451
  msgid "Enable photo html access"
9452
  msgstr ""
9453
 
9454
- #: wppa-settings-autosave.php:3244
9455
  msgid "Creates an .htaccess file in .../uploads/wppa/"
9456
  msgstr ""
9457
 
9458
- #: wppa-settings-autosave.php:3245
9459
  msgid ""
9460
  "If checked: assures http access to your wppa photo files, despite other ."
9461
  "htaccess settings that may protect these files."
9462
  msgstr ""
9463
 
9464
- #: wppa-settings-autosave.php:3252
9465
  msgid "Lazy or HTML comp"
9466
  msgstr ""
9467
 
9468
- #: wppa-settings-autosave.php:3253
9469
  msgid "Tick this box when you use lazy load or html compression."
9470
  msgstr ""
9471
 
9472
- #: wppa-settings-autosave.php:3254
9473
  msgid ""
9474
  "If the filmstrip images do not show up and you have a lazy load or html "
9475
  "optimizing plugin active: Check this box"
9476
  msgstr ""
9477
 
9478
- #: wppa-settings-autosave.php:3261
9479
  #, fuzzy
9480
  msgid "Thumbs first"
9481
  msgstr "Miniature"
9482
 
9483
- #: wppa-settings-autosave.php:3262
9484
  msgid "When displaying album content: thumbnails before subalbums."
9485
  msgstr ""
9486
 
9487
- #: wppa-settings-autosave.php:3270
9488
  msgid "Login links"
9489
  msgstr ""
9490
 
9491
- #: wppa-settings-autosave.php:3271
9492
  #, fuzzy
9493
  msgid "You must login to... links to login page."
9494
  msgstr "Du skal <a href=\"%s\">logge ind</a> for at stemme"
9495
 
9496
- #: wppa-settings-autosave.php:3279
9497
  msgid "Enable Video"
9498
  msgstr ""
9499
 
9500
- #: wppa-settings-autosave.php:3280
9501
  msgid "Enables video support."
9502
  msgstr ""
9503
 
9504
- #: wppa-settings-autosave.php:3289
9505
  msgid "Enable Audio"
9506
  msgstr ""
9507
 
9508
- #: wppa-settings-autosave.php:3290
9509
  msgid "Enables audio support."
9510
  msgstr ""
9511
 
9512
- #: wppa-settings-autosave.php:3298
 
 
 
 
 
 
 
 
9513
  msgid "Relative urls"
9514
  msgstr ""
9515
 
9516
- #: wppa-settings-autosave.php:3299
9517
  msgid "Use relative urls only."
9518
  msgstr ""
9519
 
9520
- #: wppa-settings-autosave.php:3308
9521
  msgid "Slideshow related settings"
9522
  msgstr ""
9523
 
9524
- #: wppa-settings-autosave.php:3310
9525
  msgid "V align"
9526
  msgstr ""
9527
 
9528
- #: wppa-settings-autosave.php:3311
9529
  msgid "Vertical alignment of slideshow images."
9530
  msgstr ""
9531
 
9532
- #: wppa-settings-autosave.php:3312
9533
  msgid "Specify the vertical alignment of slideshow images."
9534
  msgstr ""
9535
 
9536
- #: wppa-settings-autosave.php:3313
9537
  msgid ""
9538
  "If you select --- none ---, the photos will not be centered horizontally "
9539
  "either."
9540
  msgstr ""
9541
 
9542
- #: wppa-settings-autosave.php:3315 wppa-settings-autosave.php:3580
9543
  #: wppa-slideshow-widget.php:216
9544
  #, fuzzy
9545
  msgid "top"
9546
  msgstr "Stop"
9547
 
9548
- #: wppa-settings-autosave.php:3315 wppa-settings-autosave.php:3329
9549
- #: wppa-settings-autosave.php:3580 wppa-slideshow-widget.php:217
9550
- #: wppa-tinymce-scripts.php:290 wppa-tinymce-shortcodes.php:519
9551
  #: wppa-widget-admin.php:78
9552
  msgid "center"
9553
  msgstr ""
9554
 
9555
- #: wppa-settings-autosave.php:3315 wppa-settings-autosave.php:3580
9556
  #: wppa-slideshow-widget.php:218
9557
  msgid "bottom"
9558
  msgstr ""
9559
 
9560
- #: wppa-settings-autosave.php:3315 wppa-slideshow-widget.php:219
9561
  msgid "fit"
9562
  msgstr ""
9563
 
9564
- #: wppa-settings-autosave.php:3323
9565
  msgid "H align"
9566
  msgstr ""
9567
 
9568
- #: wppa-settings-autosave.php:3324
9569
  msgid "Horizontal alignment of slideshow images."
9570
  msgstr ""
9571
 
9572
- #: wppa-settings-autosave.php:3325
9573
  msgid ""
9574
  "Specify the horizontal alignment of slideshow images. If you specify --- "
9575
  "none --- , no horizontal alignment will take place."
9576
  msgstr ""
9577
 
9578
- #: wppa-settings-autosave.php:3326
9579
  msgid ""
9580
  "This setting is only usefull when the Column Width differs from the Maximum "
9581
  "Width."
9582
  msgstr ""
9583
 
9584
- #: wppa-settings-autosave.php:3327
9585
  msgid "(Settings I-A1 and I-B1)"
9586
  msgstr ""
9587
 
9588
- #: wppa-settings-autosave.php:3337
9589
  #, fuzzy
9590
  msgid "Start slideshow running."
9591
  msgstr "Dobbeltklik for at starte/slutte slideshow"
9592
 
9593
- #: wppa-settings-autosave.php:3338
9594
  msgid ""
9595
  "If you select \"running\", the slideshow will start running immediately, if "
9596
  "you select \"still at first photo\", the first photo will be displayed in "
9597
  "browse mode."
9598
  msgstr ""
9599
 
9600
- #: wppa-settings-autosave.php:3339
9601
  msgid ""
9602
  "If you select \"still at first norated\", the first photo that the visitor "
9603
  "did not gave a rating will be displayed in browse mode."
9604
  msgstr ""
9605
 
9606
- #: wppa-settings-autosave.php:3341
9607
  msgid "running"
9608
  msgstr ""
9609
 
9610
- #: wppa-settings-autosave.php:3342
9611
  msgid "still at first photo"
9612
  msgstr ""
9613
 
9614
- #: wppa-settings-autosave.php:3343
9615
  msgid "still at first norated"
9616
  msgstr ""
9617
 
9618
- #: wppa-settings-autosave.php:3354
9619
  msgid "Start slideonly"
9620
  msgstr ""
9621
 
9622
- #: wppa-settings-autosave.php:3355
9623
  #, fuzzy
9624
  msgid "Start slideonly slideshow running."
9625
  msgstr "Dobbeltklik for at starte/slutte slideshow"
9626
 
9627
- #: wppa-settings-autosave.php:3363 wppa-settings-autosave.php:4178
9628
  msgid "Video autostart"
9629
  msgstr ""
9630
 
9631
- #: wppa-settings-autosave.php:3364
9632
  msgid "Autoplay videos in slideshows."
9633
  msgstr ""
9634
 
9635
- #: wppa-settings-autosave.php:3373 wppa-settings-autosave.php:4187
9636
  msgid "Audio autostart"
9637
  msgstr ""
9638
 
9639
- #: wppa-settings-autosave.php:3374
9640
  msgid "Autoplay audios in slideshows."
9641
  msgstr ""
9642
 
9643
- #: wppa-settings-autosave.php:3382
9644
  msgid "Animation type"
9645
  msgstr ""
9646
 
9647
- #: wppa-settings-autosave.php:3383
9648
  msgid "The way successive slides appear."
9649
  msgstr ""
9650
 
9651
- #: wppa-settings-autosave.php:3384
9652
  msgid ""
9653
  "Select the way the old slide is to be replaced by the new one in the "
9654
  "slideshow/browse fullsize display."
9655
  msgstr ""
9656
 
9657
- #: wppa-settings-autosave.php:3386
9658
  msgid "Fade out and in simultaneous"
9659
  msgstr ""
9660
 
9661
- #: wppa-settings-autosave.php:3387
9662
  msgid "Fade in after fade out"
9663
  msgstr ""
9664
 
9665
- #: wppa-settings-autosave.php:3388
9666
  msgid "Shift adjacent"
9667
  msgstr ""
9668
 
9669
- #: wppa-settings-autosave.php:3389
9670
  msgid "Stack on"
9671
  msgstr ""
9672
 
9673
- #: wppa-settings-autosave.php:3390
9674
  msgid "Stack off"
9675
  msgstr ""
9676
 
9677
- #: wppa-settings-autosave.php:3391
9678
  msgid "Turn over"
9679
  msgstr ""
9680
 
9681
- #: wppa-settings-autosave.php:3405
9682
  msgid "Timeout"
9683
  msgstr ""
9684
 
9685
- #: wppa-settings-autosave.php:3406
9686
  #, fuzzy
9687
  msgid "Slideshow timeout."
9688
  msgstr "Slideshow"
9689
 
9690
- #: wppa-settings-autosave.php:3407
9691
  msgid ""
9692
  "Select the time a single slide will be visible when the slideshow is started."
9693
  msgstr ""
9694
 
9695
- #: wppa-settings-autosave.php:3409
9696
  msgid "very short (1 s.)"
9697
  msgstr ""
9698
 
9699
- #: wppa-settings-autosave.php:3409
9700
  msgid "short (1.5 s.)"
9701
  msgstr ""
9702
 
9703
- #: wppa-settings-autosave.php:3409
9704
  msgid "normal (2.5 s.)"
9705
  msgstr ""
9706
 
9707
- #: wppa-settings-autosave.php:3409
9708
  msgid "long (4 s.)"
9709
  msgstr ""
9710
 
9711
- #: wppa-settings-autosave.php:3409
9712
  msgid "very long (6 s.)"
9713
  msgstr ""
9714
 
9715
- #: wppa-settings-autosave.php:3416
9716
  msgid "Speed"
9717
  msgstr ""
9718
 
9719
- #: wppa-settings-autosave.php:3417
9720
  msgid "Slideshow animation speed."
9721
  msgstr ""
9722
 
9723
- #: wppa-settings-autosave.php:3418
9724
  msgid "Specify the animation speed to be used in slideshows."
9725
  msgstr ""
9726
 
9727
- #: wppa-settings-autosave.php:3419
9728
  msgid "This is the time it takes a photo to fade in or out."
9729
  msgstr ""
9730
 
9731
- #: wppa-settings-autosave.php:3421 wppa-settings-autosave.php:4124
9732
- #: wppa-settings-autosave.php:5839 wppa-settings-autosave.php:6724
9733
- #: wppa-settings-autosave.php:6735 wppa-settings-autosave.php:6874
9734
- #: wppa-settings-autosave.php:6915
9735
  #, fuzzy
9736
  msgid "--- off ---"
9737
  msgstr "--- ingen ---"
9738
 
9739
- #: wppa-settings-autosave.php:3421
9740
  msgid "very fast (200 ms.)"
9741
  msgstr ""
9742
 
9743
- #: wppa-settings-autosave.php:3421
9744
  msgid "fast (400 ms.)"
9745
  msgstr ""
9746
 
9747
- #: wppa-settings-autosave.php:3421
9748
  msgid "normal (800 ms.)"
9749
  msgstr ""
9750
 
9751
- #: wppa-settings-autosave.php:3421
9752
  msgid "slow (1.2 s.)"
9753
  msgstr ""
9754
 
9755
- #: wppa-settings-autosave.php:3421
9756
  #, fuzzy
9757
  msgid "very slow (2 s.)"
9758
  msgstr "meget lav"
9759
 
9760
- #: wppa-settings-autosave.php:3421
9761
  msgid "extremely slow (4 s.)"
9762
  msgstr ""
9763
 
9764
- #: wppa-settings-autosave.php:3428
9765
  msgid "Slide hover pause"
9766
  msgstr ""
9767
 
9768
- #: wppa-settings-autosave.php:3429
9769
  msgid "Running Slideshow suspends during mouse hover."
9770
  msgstr ""
9771
 
9772
- #: wppa-settings-autosave.php:3437
9773
  #, fuzzy
9774
  msgid "Slideshow wrap around"
9775
  msgstr "Slideshow"
9776
 
9777
- #: wppa-settings-autosave.php:3438
9778
  msgid "The slideshow wraps around the start and end"
9779
  msgstr ""
9780
 
9781
- #: wppa-settings-autosave.php:3446
9782
  msgid "Full desc align"
9783
  msgstr ""
9784
 
9785
- #: wppa-settings-autosave.php:3447
9786
  msgid "The alignment of the descriptions under fullsize images and slideshows."
9787
  msgstr ""
9788
 
9789
- #: wppa-settings-autosave.php:3450 wppa-settings-autosave.php:3568
9790
- #: wppa-settings-autosave.php:3671
9791
  msgid "Left"
9792
  msgstr ""
9793
 
9794
- #: wppa-settings-autosave.php:3450
9795
  msgid "Center"
9796
  msgstr ""
9797
 
9798
- #: wppa-settings-autosave.php:3450 wppa-settings-autosave.php:3568
9799
- #: wppa-settings-autosave.php:3671
9800
  msgid "Right"
9801
  msgstr ""
9802
 
9803
- #: wppa-settings-autosave.php:3457
9804
  msgid "Remove redundant space"
9805
  msgstr ""
9806
 
9807
- #: wppa-settings-autosave.php:3458
9808
  msgid "Removes unwanted &lt;p> and &lt;br> tags in fullsize descriptions."
9809
  msgstr ""
9810
 
9811
- #: wppa-settings-autosave.php:3459
9812
  msgid ""
9813
  "This setting has only effect when Table IX-A7 (foreign shortcodes) is "
9814
  "checked."
9815
  msgstr ""
9816
 
9817
- #: wppa-settings-autosave.php:3466
9818
  #, fuzzy
9819
  msgid "Run wpautop on description"
9820
  msgstr "Inserisci / modifica la descrizione per questo album."
9821
 
9822
- #: wppa-settings-autosave.php:3467
9823
  msgid "Adds &lt;p> and &lt;br> tags in fullsize descriptions."
9824
  msgstr ""
9825
 
9826
- #: wppa-settings-autosave.php:3475
9827
  #, fuzzy
9828
  msgid "Auto open comments"
9829
  msgstr "Din kommentar"
9830
 
9831
- #: wppa-settings-autosave.php:3476
9832
  msgid "Automatic opens comments box when slideshow does not run."
9833
  msgstr ""
9834
 
9835
- #: wppa-settings-autosave.php:3484
9836
  #, fuzzy
9837
  msgid "Film hover goto"
9838
  msgstr "Se forside foto"
9839
 
9840
- #: wppa-settings-autosave.php:3485
9841
  msgid "Go to slide when hovering filmstrip thumbnail."
9842
  msgstr ""
9843
 
9844
- #: wppa-settings-autosave.php:3486
9845
  msgid "Do not use this setting when slides have different aspect ratios!"
9846
  msgstr ""
9847
 
9848
- #: wppa-settings-autosave.php:3493
9849
  #, fuzzy
9850
  msgid "Slide swipe"
9851
  msgstr "Slideshow"
9852
 
9853
- #: wppa-settings-autosave.php:3494
9854
  msgid "Enable touch events swipe left-right on slides on touch screens."
9855
  msgstr ""
9856
 
9857
- #: wppa-settings-autosave.php:3502
9858
  msgid "Slide page Ajax"
9859
  msgstr ""
9860
 
9861
- #: wppa-settings-autosave.php:3503
9862
  msgid "Pagelinks slideshow use Ajax"
9863
  msgstr ""
9864
 
9865
- #: wppa-settings-autosave.php:3504
9866
  msgid "On some systems you need to disable ajax here."
9867
  msgstr ""
9868
 
9869
- #: wppa-settings-autosave.php:3511
9870
  msgid "Thumbnail related settings"
9871
  msgstr ""
9872
 
9873
- #: wppa-settings-autosave.php:3514
9874
  msgid "Photo ordering sequence method."
9875
  msgstr ""
9876
 
9877
- #: wppa-settings-autosave.php:3515
9878
  msgid ""
9879
  "Specify the way the photos should be ordered. This is the default setting. "
9880
  "You can overrule the default sorting order on a per album basis."
9881
  msgstr ""
9882
 
9883
- #: wppa-settings-autosave.php:3552
9884
  #, fuzzy
9885
  msgid "Thumbnail type"
9886
  msgstr "Foto Top Ti"
9887
 
9888
- #: wppa-settings-autosave.php:3553
9889
  msgid "The way the thumbnail images are displayed."
9890
  msgstr ""
9891
 
9892
- #: wppa-settings-autosave.php:3554
9893
  msgid ""
9894
  "You may select an altenative display method for thumbnails. Note that some "
9895
  "of the thumbnail settings do not apply to all available display methods."
9896
  msgstr ""
9897
 
9898
- #: wppa-settings-autosave.php:3556
9899
  msgid "like album covers"
9900
  msgstr ""
9901
 
9902
- #: wppa-settings-autosave.php:3556
9903
  msgid "like album covers mcr"
9904
  msgstr ""
9905
 
9906
- #: wppa-settings-autosave.php:3556
9907
  msgid "masonry style columns"
9908
  msgstr ""
9909
 
9910
- #: wppa-settings-autosave.php:3556
9911
  msgid "masonry style rows"
9912
  msgstr ""
9913
 
9914
- #: wppa-settings-autosave.php:3564 wppa-settings-autosave.php:3665
9915
  msgid "Placement"
9916
  msgstr ""
9917
 
9918
- #: wppa-settings-autosave.php:3565
9919
  msgid "Thumbnail image left or right."
9920
  msgstr ""
9921
 
9922
- #: wppa-settings-autosave.php:3566
9923
  msgid "Indicate the placement position of the thumbnailphoto you wish."
9924
  msgstr ""
9925
 
9926
- #: wppa-settings-autosave.php:3575
9927
  msgid "Vertical alignment"
9928
  msgstr ""
9929
 
9930
- #: wppa-settings-autosave.php:3576
9931
  msgid "Vertical alignment of thumbnails."
9932
  msgstr ""
9933
 
9934
- #: wppa-settings-autosave.php:3577
9935
  msgid ""
9936
  "Specify the vertical alignment of thumbnail images. Use this setting when "
9937
  "albums contain both portrait and landscape photos."
9938
  msgstr ""
9939
 
9940
- #: wppa-settings-autosave.php:3578
9941
  msgid ""
9942
  "It is NOT recommended to use the value --- default ---; it will affect the "
9943
  "horizontal alignment also and is meant to be used with custom css."
9944
  msgstr ""
9945
 
9946
- #: wppa-settings-autosave.php:3587
9947
  msgid "Thumb mouseover"
9948
  msgstr ""
9949
 
9950
- #: wppa-settings-autosave.php:3588
9951
  msgid "Apply thumbnail mouseover effect."
9952
  msgstr ""
9953
 
9954
- #: wppa-settings-autosave.php:3589
9955
  msgid "Check this box to use mouseover effect on thumbnail images."
9956
  msgstr ""
9957
 
9958
- #: wppa-settings-autosave.php:3597
9959
  #, fuzzy
9960
  msgid "Thumb opacity"
9961
  msgstr "Miniatura"
9962
 
9963
- #: wppa-settings-autosave.php:3598 wppa-settings-autosave.php:3690
9964
  msgid "Initial opacity value."
9965
  msgstr ""
9966
 
9967
- #: wppa-settings-autosave.php:3599 wppa-settings-autosave.php:3691
9968
- #: wppa-settings-autosave.php:3800
9969
  msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
9970
  msgstr ""
9971
 
9972
- #: wppa-settings-autosave.php:3601 wppa-settings-autosave.php:3693
9973
- #: wppa-settings-autosave.php:3803 wppa-settings-autosave.php:4104
9974
  msgid "%"
9975
  msgstr ""
9976
 
9977
- #: wppa-settings-autosave.php:3606
9978
  msgid "Thumb popup"
9979
  msgstr ""
9980
 
9981
- #: wppa-settings-autosave.php:3607
9982
  msgid "Use popup effect on thumbnail images."
9983
  msgstr ""
9984
 
9985
- #: wppa-settings-autosave.php:3608
9986
  msgid "Thumbnails pop-up to a larger image when hovered."
9987
  msgstr ""
9988
 
9989
- #: wppa-settings-autosave.php:3616
9990
  msgid "Align subtext"
9991
  msgstr ""
9992
 
9993
- #: wppa-settings-autosave.php:3617
9994
  msgid "Set thumbnail subtext on equal height."
9995
  msgstr ""
9996
 
9997
- #: wppa-settings-autosave.php:3625
9998
  msgid "Album and covers related settings"
9999
  msgstr ""
10000
 
10001
- #: wppa-settings-autosave.php:3627
10002
  #, fuzzy
10003
  msgid "Album order"
10004
  msgstr "Album administration"
10005
 
10006
- #: wppa-settings-autosave.php:3628
10007
  msgid "Album ordering sequence method."
10008
  msgstr ""
10009
 
10010
- #: wppa-settings-autosave.php:3629
10011
  msgid "Specify the way the albums should be ordered."
10012
  msgstr ""
10013
 
10014
- #: wppa-settings-autosave.php:3654
10015
  #, fuzzy
10016
  msgid "Default coverphoto selection"
10017
  msgstr "Standard foto album for"
10018
 
10019
- #: wppa-settings-autosave.php:3655
10020
  msgid "Default select cover photo method."
10021
  msgstr ""
10022
 
10023
- #: wppa-settings-autosave.php:3656
10024
  msgid ""
10025
  "This is the initial value on album creation only. It can be overruled on the "
10026
  "edit album page."
10027
  msgstr ""
10028
 
10029
- #: wppa-settings-autosave.php:3657
10030
  msgid "Random from album"
10031
  msgstr ""
10032
 
10033
- #: wppa-settings-autosave.php:3657
10034
  msgid "Random featured from album"
10035
  msgstr ""
10036
 
10037
- #: wppa-settings-autosave.php:3657
10038
  #, fuzzy
10039
  msgid "Most recently added to album"
10040
  msgstr "Le impostazioni sono state aggiornate"
10041
 
10042
- #: wppa-settings-autosave.php:3657
10043
  #, fuzzy
10044
  msgid "Random from album or any sub album"
10045
  msgstr "Risultati Ricerca da album %s e tutti i sotto album"
10046
 
10047
- #: wppa-settings-autosave.php:3666
10048
  #, fuzzy
10049
  msgid "Cover image position."
10050
  msgstr "Se fotos"
10051
 
10052
- #: wppa-settings-autosave.php:3667
10053
  msgid ""
10054
  "Enter the position that you want to be used for the default album cover "
10055
  "selected in Table IV-D6."
10056
  msgstr ""
10057
 
10058
- #: wppa-settings-autosave.php:3668
10059
  msgid ""
10060
  "For covertype Image Factory: left will be treated as top and right will be "
10061
  "treted as bottom."
10062
  msgstr ""
10063
 
10064
- #: wppa-settings-autosave.php:3669
10065
  msgid ""
10066
  "For covertype Long Descriptions: top will be treated as left and bottom will "
10067
  "be treted as right."
10068
  msgstr ""
10069
 
10070
- #: wppa-settings-autosave.php:3679
10071
  msgid "Cover mouseover"
10072
  msgstr ""
10073
 
10074
- #: wppa-settings-autosave.php:3680
10075
  msgid "Apply coverphoto mouseover effect."
10076
  msgstr ""
10077
 
10078
- #: wppa-settings-autosave.php:3681
10079
  msgid "Check this box to use mouseover effect on cover images."
10080
  msgstr ""
10081
 
10082
- #: wppa-settings-autosave.php:3689
10083
  msgid "Cover opacity"
10084
  msgstr ""
10085
 
10086
- #: wppa-settings-autosave.php:3698
10087
  msgid "Cover type"
10088
  msgstr ""
10089
 
10090
- #: wppa-settings-autosave.php:3699
10091
  msgid "Select the default cover type."
10092
  msgstr ""
10093
 
10094
- #: wppa-settings-autosave.php:3700
10095
  msgid ""
10096
  "Types with the addition mcr are suitable for Multi Column in a Responsive "
10097
  "theme"
10098
  msgstr ""
10099
 
10100
- #: wppa-settings-autosave.php:3723
10101
  msgid "The umber of coverphotos. Must be > 1 and < 25."
10102
  msgstr ""
10103
 
10104
- #: wppa-settings-autosave.php:3731
10105
  msgid "Rating related settings"
10106
  msgstr ""
10107
 
10108
- #: wppa-settings-autosave.php:3733
10109
  #, fuzzy
10110
  msgid "Rating login"
10111
  msgstr "Bed&oslash;mmelse: %s"
10112
 
10113
- #: wppa-settings-autosave.php:3734
10114
  #, fuzzy
10115
  msgid "Users must login to rate photos."
10116
  msgstr "Bruger %s indsendte foto %s ind i album %s"
10117
 
10118
- #: wppa-settings-autosave.php:3735
10119
  msgid ""
10120
  "If users want to vote for a photo (rating 1..5 stars) the must login first. "
10121
  "The avarage rating will always be displayed as long as the rating system is "
10122
  "enabled."
10123
  msgstr ""
10124
 
10125
- #: wppa-settings-autosave.php:3742
10126
  #, fuzzy
10127
  msgid "Rating change"
10128
  msgstr "Bed&oslash;mmelse: %s"
10129
 
10130
- #: wppa-settings-autosave.php:3743 wppa-settings-autosave.php:3744
10131
  msgid "Users may change their ratings."
10132
  msgstr ""
10133
 
10134
- #: wppa-settings-autosave.php:3745 wppa-settings-autosave.php:3782
10135
- #: wppa-settings-autosave.php:3801 wppa-settings-autosave.php:3814
10136
- #: wppa-settings-autosave.php:3824 wppa-settings-autosave.php:3834
10137
- #: wppa-settings-autosave.php:3844 wppa-settings-autosave.php:3853
10138
  msgid ""
10139
  "If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
10140
  msgstr ""
10141
 
10142
- #: wppa-settings-autosave.php:3752
10143
  #, fuzzy
10144
  msgid "Rating multi"
10145
  msgstr "Bed&oslash;mmelse: %s"
10146
 
10147
- #: wppa-settings-autosave.php:3753
10148
  msgid "Users may give multiple votes."
10149
  msgstr ""
10150
 
10151
- #: wppa-settings-autosave.php:3754
10152
  msgid ""
10153
  "Users may give multiple votes. (This has no effect when users may change "
10154
  "their votes.)"
10155
  msgstr ""
10156
 
10157
- #: wppa-settings-autosave.php:3761
10158
  #, fuzzy
10159
  msgid "Rate own photos"
10160
  msgstr "Se fotos"
10161
 
10162
- #: wppa-settings-autosave.php:3762
10163
  msgid "It is allowed to rate photos by the uploader himself."
10164
  msgstr ""
10165
 
10166
- #: wppa-settings-autosave.php:3770
10167
  msgid "Rating requires comment"
10168
  msgstr ""
10169
 
10170
- #: wppa-settings-autosave.php:3771
10171
  #, fuzzy
10172
  msgid "Users must clarify their vote in a comment."
10173
  msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
10174
 
10175
- #: wppa-settings-autosave.php:3780
10176
  msgid "This value counts dislike rating."
10177
  msgstr ""
10178
 
10179
- #: wppa-settings-autosave.php:3781
10180
  msgid ""
10181
  "This value will be used for a dislike rating on calculation of avarage "
10182
  "ratings."
10183
  msgstr ""
10184
 
10185
- #: wppa-settings-autosave.php:3784
10186
  msgid "points"
10187
  msgstr ""
10188
 
10189
- #: wppa-settings-autosave.php:3789
10190
  msgid "Next after vote"
10191
  msgstr ""
10192
 
10193
- #: wppa-settings-autosave.php:3790
10194
  msgid "Goto next slide after voting"
10195
  msgstr ""
10196
 
10197
- #: wppa-settings-autosave.php:3791
10198
  msgid ""
10199
  "If checked, the visitor goes straight to the slide following the slide he "
10200
  "voted. This will speed up mass voting."
10201
  msgstr ""
10202
 
10203
- #: wppa-settings-autosave.php:3798
10204
  msgid "Star off opacity"
10205
  msgstr ""
10206
 
10207
- #: wppa-settings-autosave.php:3799
10208
  msgid "Rating star off state opacity value."
10209
  msgstr ""
10210
 
10211
- #: wppa-settings-autosave.php:3809
10212
  msgid "Notify admin every x times."
10213
  msgstr ""
10214
 
10215
- #: wppa-settings-autosave.php:3810
10216
  msgid ""
10217
  "If this number is positive, there will be a thumb down icon in the rating "
10218
  "bar."
10219
  msgstr ""
10220
 
10221
- #: wppa-settings-autosave.php:3811
10222
  msgid ""
10223
  "Cicking the icon indicates a user wants to report that an image is "
10224
  "inappropiate."
10225
  msgstr ""
10226
 
10227
- #: wppa-settings-autosave.php:3812
10228
  msgid "Admin will be notified by email after every x reports."
10229
  msgstr ""
10230
 
10231
- #: wppa-settings-autosave.php:3813 wppa-settings-autosave.php:3823
10232
- #: wppa-settings-autosave.php:3833
10233
  msgid "A value of 0 disables this feature."
10234
  msgstr ""
10235
 
10236
- #: wppa-settings-autosave.php:3816 wppa-settings-autosave.php:3826
10237
- #: wppa-settings-autosave.php:3836
10238
  msgid "reports"
10239
  msgstr ""
10240
 
10241
- #: wppa-settings-autosave.php:3821
10242
  msgid "Pending after"
10243
  msgstr ""
10244
 
10245
- #: wppa-settings-autosave.php:3822
10246
  msgid "Set status to pending after xx dislike votes."
10247
  msgstr ""
10248
 
10249
- #: wppa-settings-autosave.php:3831
10250
  #, fuzzy
10251
  msgid "Delete after"
10252
  msgstr "Impossibile creare album. "
10253
 
10254
- #: wppa-settings-autosave.php:3832
10255
  msgid "Deete photo after xx dislike votes."
10256
  msgstr ""
10257
 
10258
- #: wppa-settings-autosave.php:3841
10259
  msgid "Show dislike count"
10260
  msgstr ""
10261
 
10262
- #: wppa-settings-autosave.php:3842
10263
  msgid "Show the number of dislikes in the rating bar."
10264
  msgstr ""
10265
 
10266
- #: wppa-settings-autosave.php:3843
10267
  msgid "Displayes the total number of dislike votes for the current photo."
10268
  msgstr ""
10269
 
10270
- #: wppa-settings-autosave.php:3851
10271
  msgid "Rating display type"
10272
  msgstr ""
10273
 
10274
- #: wppa-settings-autosave.php:3852
10275
  msgid "Specify the type of the rating display."
10276
  msgstr ""
10277
 
10278
- #: wppa-settings-autosave.php:3855
10279
  msgid "Graphic"
10280
  msgstr ""
10281
 
10282
- #: wppa-settings-autosave.php:3855
10283
  msgid "Numeric"
10284
  msgstr ""
10285
 
10286
- #: wppa-settings-autosave.php:3862
10287
  #, fuzzy
10288
  msgid "Show average rating"
10289
  msgstr "Bed&oslash;mmelse&nbsp;gennemsnitlig"
10290
 
10291
- #: wppa-settings-autosave.php:3863
10292
  msgid "Display the avarage rating and/or vote count on the rating bar"
10293
  msgstr ""
10294
 
10295
- #: wppa-settings-autosave.php:3864
10296
  msgid ""
10297
  "If checked, the average rating as well as the current users rating is "
10298
  "displayed in max 5 or 10 stars."
10299
  msgstr ""
10300
 
10301
- #: wppa-settings-autosave.php:3865
10302
  msgid "If unchecked, only the current users rating is displayed (if any)."
10303
  msgstr ""
10304
 
10305
- #: wppa-settings-autosave.php:3866
10306
  msgid ""
10307
  "If \"One button vote\" is selected in Table I-E1, this box checked will "
10308
  "display the vote count."
10309
  msgstr ""
10310
 
10311
- #: wppa-settings-autosave.php:3873
10312
  msgid "Single vote button text"
10313
  msgstr ""
10314
 
10315
- #: wppa-settings-autosave.php:3874
10316
  msgid "The text on the voting button."
10317
  msgstr ""
10318
 
10319
- #: wppa-settings-autosave.php:3875 wppa-settings-autosave.php:3884
10320
  msgid "This text may contain qTranslate compatible language tags."
10321
  msgstr ""
10322
 
10323
- #: wppa-settings-autosave.php:3882
10324
  msgid "Single vote button text voted"
10325
  msgstr ""
10326
 
10327
- #: wppa-settings-autosave.php:3883
10328
  msgid "The text on the voting button when voted."
10329
  msgstr ""
10330
 
10331
- #: wppa-settings-autosave.php:3891
10332
  #, fuzzy
10333
  msgid "Single vote button thumbnail"
10334
  msgstr "Se"
10335
 
10336
- #: wppa-settings-autosave.php:3892
10337
  msgid "Display single vote button below thumbnails."
10338
  msgstr ""
10339
 
10340
- #: wppa-settings-autosave.php:3893
10341
  msgid ""
10342
  "This works only in single vote mode: Table I-E1 set to \"one button vote\""
10343
  msgstr ""
10344
 
10345
- #: wppa-settings-autosave.php:3900
10346
  msgid "Medal bronze when"
10347
  msgstr ""
10348
 
10349
- #: wppa-settings-autosave.php:3901 wppa-settings-autosave.php:3919
10350
  msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
10351
  msgstr ""
10352
 
10353
- #: wppa-settings-autosave.php:3902 wppa-settings-autosave.php:3920
10354
  msgid ""
10355
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10356
  "bronze medal. A value of 0 indicates that you do not want this feature."
10357
  msgstr ""
10358
 
10359
- #: wppa-settings-autosave.php:3904 wppa-settings-autosave.php:3913
10360
- #: wppa-settings-autosave.php:3922
10361
  msgid "Topscores"
10362
  msgstr ""
10363
 
10364
- #: wppa-settings-autosave.php:3909
10365
  msgid "Medal silver when"
10366
  msgstr ""
10367
 
10368
- #: wppa-settings-autosave.php:3910
10369
  msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
10370
  msgstr ""
10371
 
10372
- #: wppa-settings-autosave.php:3911
10373
  msgid ""
10374
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10375
  "silver medal. A value of 0 indicates that you do not want this feature."
10376
  msgstr ""
10377
 
10378
- #: wppa-settings-autosave.php:3918
10379
  msgid "Medal gold when"
10380
  msgstr ""
10381
 
10382
- #: wppa-settings-autosave.php:3927
10383
  msgid "Medal tag color"
10384
  msgstr ""
10385
 
10386
- #: wppa-settings-autosave.php:3928
10387
  msgid "The color of the tag on the medal."
10388
  msgstr ""
10389
 
10390
- #: wppa-settings-autosave.php:3931
10391
  msgid "Red"
10392
  msgstr ""
10393
 
10394
- #: wppa-settings-autosave.php:3931
10395
  msgid "Green"
10396
  msgstr ""
10397
 
10398
- #: wppa-settings-autosave.php:3931
10399
  msgid "Blue"
10400
  msgstr ""
10401
 
10402
- #: wppa-settings-autosave.php:3938
10403
  #, fuzzy
10404
  msgid "Medal position"
10405
  msgstr "Position:"
10406
 
10407
- #: wppa-settings-autosave.php:3939
10408
  msgid "The position of the medal on the image."
10409
  msgstr ""
10410
 
10411
- #: wppa-settings-autosave.php:3942
10412
  msgid "Top left"
10413
  msgstr ""
10414
 
10415
- #: wppa-settings-autosave.php:3942
10416
  msgid "Top right"
10417
  msgstr ""
10418
 
10419
- #: wppa-settings-autosave.php:3942
10420
  msgid "Bottom left"
10421
  msgstr ""
10422
 
10423
- #: wppa-settings-autosave.php:3942
10424
  msgid "Bottom right"
10425
  msgstr ""
10426
 
10427
- #: wppa-settings-autosave.php:3949
10428
  msgid "Top criterium"
10429
  msgstr ""
10430
 
10431
- #: wppa-settings-autosave.php:3950
10432
  msgid "The top sort item used for topten results from shortcodes."
10433
  msgstr ""
10434
 
10435
- #: wppa-settings-autosave.php:3953
10436
  #, fuzzy
10437
  msgid "Mean raiting"
10438
  msgstr "Valutazione:"
10439
 
10440
- #: wppa-settings-autosave.php:3953
10441
  #, fuzzy
10442
  msgid "Rating count"
10443
  msgstr "Bed&oslash;mmelse: %s"
10444
 
10445
- #: wppa-settings-autosave.php:3953
10446
  #, fuzzy
10447
  msgid "Viewcount"
10448
  msgstr "Se"
10449
 
10450
- #: wppa-settings-autosave.php:3960
10451
  #, fuzzy
10452
  msgid "Comments related settings"
10453
  msgstr "Kommentarer redigeret"
10454
 
10455
- #: wppa-settings-autosave.php:3962
10456
  #, fuzzy
10457
  msgid "Commenting login"
10458
  msgstr "%d kommentarer"
10459
 
10460
- #: wppa-settings-autosave.php:3963
10461
  msgid "Users must be logged in to comment on photos."
10462
  msgstr ""
10463
 
10464
- #: wppa-settings-autosave.php:3964
10465
  msgid ""
10466
  "Check this box if you want users to be logged in to be able to enter "
10467
  "comments on individual photos."
10468
  msgstr ""
10469
 
10470
- #: wppa-settings-autosave.php:3971
10471
  #, fuzzy
10472
  msgid "Comments view login"
10473
  msgstr "Kommentarer redigeret"
10474
 
10475
- #: wppa-settings-autosave.php:3972
10476
  #, fuzzy
10477
  msgid "Users must be logged in to see comments on photos."
10478
  msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
10479
 
10480
- #: wppa-settings-autosave.php:3973
10481
  msgid ""
10482
  "Check this box if you want users to be logged in to be able to see existing "
10483
  "comments on individual photos."
10484
  msgstr ""
10485
 
10486
- #: wppa-settings-autosave.php:3980
10487
  #, fuzzy
10488
  msgid "Last comment first"
10489
  msgstr "%d kommentarer"
10490
 
10491
- #: wppa-settings-autosave.php:3981
10492
  msgid "Display the newest comment on top."
10493
  msgstr ""
10494
 
10495
- #: wppa-settings-autosave.php:3982
10496
  msgid "If checked: Display the newest comment on top."
10497
  msgstr ""
10498
 
10499
- #: wppa-settings-autosave.php:3983
10500
  msgid "If unchecked, the comments are listed in the ordere they were entered."
10501
  msgstr ""
10502
 
10503
- #: wppa-settings-autosave.php:3990
10504
  #, fuzzy
10505
  msgid "Comment moderation"
10506
  msgstr "%d kommentarer"
10507
 
10508
- #: wppa-settings-autosave.php:3991
10509
  msgid "Comments from what users need approval."
10510
  msgstr ""
10511
 
10512
- #: wppa-settings-autosave.php:3992
10513
  msgid "Select the desired users of which the comments need approval."
10514
  msgstr ""
10515
 
10516
- #: wppa-settings-autosave.php:3994 wppa-settings-autosave.php:5825
10517
  #, fuzzy
10518
  msgid "All users"
10519
  msgstr "Alle albums"
10520
 
10521
- #: wppa-settings-autosave.php:3994 wppa-settings-autosave.php:5825
10522
  msgid "Logged out users"
10523
  msgstr ""
10524
 
10525
- #: wppa-settings-autosave.php:3994 wppa-settings-autosave.php:5825
10526
  msgid "No users"
10527
  msgstr ""
10528
 
10529
- #: wppa-settings-autosave.php:4001
10530
  #, fuzzy
10531
  msgid "Comment email required"
10532
  msgstr "Kommentarer redigeret"
10533
 
10534
- #: wppa-settings-autosave.php:4002
10535
  msgid "Commenting users must enter their email addresses."
10536
  msgstr ""
10537
 
10538
- #: wppa-settings-autosave.php:4010
10539
  #, fuzzy
10540
  msgid "Comment notify"
10541
  msgstr "Kommentar til billeder"
10542
 
10543
- #: wppa-settings-autosave.php:4011
10544
  msgid "Select who must receive an e-mail notification of a new comment."
10545
  msgstr ""
10546
 
10547
- #: wppa-settings-autosave.php:4014
10548
  #, fuzzy
10549
  msgid "--- None ---"
10550
  msgstr "--- ingen ---"
10551
 
10552
- #: wppa-settings-autosave.php:4015
10553
  #, fuzzy
10554
  msgid "--- Admin ---"
10555
  msgstr "--- ingen ---"
10556
 
10557
- #: wppa-settings-autosave.php:4016
10558
  #, fuzzy
10559
  msgid "--- Album owner ---"
10560
  msgstr "--- ingen ---"
10561
 
10562
- #: wppa-settings-autosave.php:4017
10563
  #, fuzzy
10564
  msgid "--- Admin & Owner ---"
10565
  msgstr "--- ingen ---"
10566
 
10567
- #: wppa-settings-autosave.php:4018
10568
  #, fuzzy
10569
  msgid "--- Uploader ---"
10570
  msgstr "--- ingen ---"
10571
 
10572
- #: wppa-settings-autosave.php:4019
10573
  #, fuzzy
10574
  msgid "--- Up & admin ---"
10575
  msgstr "--- ingen ---"
10576
 
10577
- #: wppa-settings-autosave.php:4020
10578
  #, fuzzy
10579
  msgid "--- Up & Owner ---"
10580
  msgstr "--- ingen ---"
10581
 
10582
- #: wppa-settings-autosave.php:4043
10583
  #, fuzzy
10584
  msgid "Comment notify previous"
10585
  msgstr "Kommentar til billeder"
10586
 
10587
- #: wppa-settings-autosave.php:4044
10588
  #, fuzzy
10589
  msgid "Notify users who has commented this photo earlier."
10590
  msgstr "Du modtager denne e-mail, fordi du er sat til at godkende"
10591
 
10592
- #: wppa-settings-autosave.php:4052
10593
  #, fuzzy
10594
  msgid "Comment ntfy added"
10595
  msgstr "Kommentarer tilf&oslash;jet"
10596
 
10597
- #: wppa-settings-autosave.php:4053
10598
  msgid "Show \"Comment added\" after successfull adding a comment."
10599
  msgstr ""
10600
 
10601
- #: wppa-settings-autosave.php:4061
10602
  msgid "ComTen alt display"
10603
  msgstr ""
10604
 
10605
- #: wppa-settings-autosave.php:4062
10606
  msgid "Display comments at comten thumbnails."
10607
  msgstr ""
10608
 
10609
- #: wppa-settings-autosave.php:4070
10610
  #, fuzzy
10611
  msgid "Comten Thumbnail width"
10612
  msgstr "Foto Top Ti"
10613
 
10614
- #: wppa-settings-autosave.php:4071
10615
  msgid "The width of the thumbnail in the alt comment display."
10616
  msgstr ""
10617
 
10618
- #: wppa-settings-autosave.php:4074
10619
  msgid "Pixels"
10620
  msgstr ""
10621
 
10622
- #: wppa-settings-autosave.php:4079
10623
  msgid "Show smiley picker"
10624
  msgstr ""
10625
 
10626
- #: wppa-settings-autosave.php:4080
10627
  msgid "Display a clickable row of smileys."
10628
  msgstr ""
10629
 
10630
- #: wppa-settings-autosave.php:4088
10631
  #, fuzzy
10632
  msgid "Show commenter email"
10633
  msgstr "Din kommentar"
10634
 
10635
- #: wppa-settings-autosave.php:4089
10636
  msgid "Show the commenter's email in the notify emails."
10637
  msgstr ""
10638
 
10639
- #: wppa-settings-autosave.php:4090
10640
  msgid "Shows the email address of the commenter in all notify emails."
10641
  msgstr ""
10642
 
10643
- #: wppa-settings-autosave.php:4091
10644
  msgid ""
10645
  "If switched off, admin will still receive the senders email in the "
10646
  "notification mail"
10647
  msgstr ""
10648
 
10649
- #: wppa-settings-autosave.php:4101
10650
  msgid "The opacity of the lightbox overlay background."
10651
  msgstr ""
10652
 
10653
- #: wppa-settings-autosave.php:4109
10654
  msgid "Click on background"
10655
  msgstr ""
10656
 
10657
- #: wppa-settings-autosave.php:4110
10658
  msgid "Select the action to be taken on click on background."
10659
  msgstr ""
10660
 
10661
- #: wppa-settings-autosave.php:4113
10662
  msgid "Nothing"
10663
  msgstr ""
10664
 
10665
- #: wppa-settings-autosave.php:4113
10666
  msgid "Exit (close)"
10667
  msgstr ""
10668
 
10669
- #: wppa-settings-autosave.php:4113
10670
  msgid "Browse (left/right)"
10671
  msgstr ""
10672
 
10673
- #: wppa-settings-autosave.php:4120
10674
  msgid "Overlay animation speed"
10675
  msgstr ""
10676
 
10677
- #: wppa-settings-autosave.php:4121
10678
  msgid "The fade-in time of the lightbox images"
10679
  msgstr ""
10680
 
10681
- #: wppa-settings-autosave.php:4124
10682
  msgid "very fast (100 ms.)"
10683
  msgstr ""
10684
 
10685
- #: wppa-settings-autosave.php:4124
10686
  msgid "fast (200 ms.)"
10687
  msgstr ""
10688
 
10689
- #: wppa-settings-autosave.php:4124
10690
  msgid "normal (300 ms.)"
10691
  msgstr ""
10692
 
10693
- #: wppa-settings-autosave.php:4124
10694
  msgid "slow (500 ms.)"
10695
  msgstr ""
10696
 
10697
- #: wppa-settings-autosave.php:4124
10698
  #, fuzzy
10699
  msgid "very slow (1 s.)"
10700
  msgstr "meget lav"
10701
 
10702
- #: wppa-settings-autosave.php:4124
10703
  msgid "extremely slow (2 s.)"
10704
  msgstr ""
10705
 
10706
- #: wppa-settings-autosave.php:4131
10707
  msgid "Overlay slideshow speed"
10708
  msgstr ""
10709
 
10710
- #: wppa-settings-autosave.php:4132
10711
  msgid "The time the lightbox images stay"
10712
  msgstr ""
10713
 
10714
- #: wppa-settings-autosave.php:4135
10715
  msgid "fast (3 s.)"
10716
  msgstr ""
10717
 
10718
- #: wppa-settings-autosave.php:4135
10719
  msgid "normal (5 s.)"
10720
  msgstr ""
10721
 
10722
- #: wppa-settings-autosave.php:4135
10723
  msgid "slow (8 s.)"
10724
  msgstr ""
10725
 
10726
- #: wppa-settings-autosave.php:4135
10727
  #, fuzzy
10728
  msgid "very slow (13 s.)"
10729
  msgstr "meget lav"
10730
 
10731
- #: wppa-settings-autosave.php:4135
10732
  msgid "extremely slow (20 s.)"
10733
  msgstr ""
10734
 
10735
- #: wppa-settings-autosave.php:4142
10736
  msgid "Overlay at top in Chrome"
10737
  msgstr ""
10738
 
10739
- #: wppa-settings-autosave.php:4143
10740
  msgid ""
10741
  "Place the overlay (lightbox) image at the top of the page in Chrome browsers."
10742
  msgstr ""
10743
 
10744
- #: wppa-settings-autosave.php:4144
10745
  msgid "This is required for certain mobile devices."
10746
  msgstr ""
10747
 
10748
- #: wppa-settings-autosave.php:4151
10749
  msgid "WPPA+ Lightbox global"
10750
  msgstr ""
10751
 
10752
- #: wppa-settings-autosave.php:4152
10753
  msgid "Use the wppa+ lightbox also for non-wppa images."
10754
  msgstr ""
10755
 
10756
- #: wppa-settings-autosave.php:4160
10757
  msgid "WPPA+ Lightbox global is a set"
10758
  msgstr ""
10759
 
10760
- #: wppa-settings-autosave.php:4161
10761
  msgid "Treat the other images as a set."
10762
  msgstr ""
10763
 
10764
- #: wppa-settings-autosave.php:4162
10765
  msgid ""
10766
  "If checked, you can scroll through the images in the lightbox view. Requires "
10767
  "item 5 to be checked."
10768
  msgstr ""
10769
 
10770
- #: wppa-settings-autosave.php:4169
10771
  msgid "Use hires files"
10772
  msgstr ""
10773
 
10774
- #: wppa-settings-autosave.php:4170
10775
  msgid "Use the highest resolution available for lightbox."
10776
  msgstr ""
10777
 
10778
- #: wppa-settings-autosave.php:4171
10779
  msgid "Ticking this box is recommended for lightbox fullscreen modes."
10780
  msgstr ""
10781
 
10782
- #: wppa-settings-autosave.php:4179
10783
  msgid "Videos on lightbox start automaticly."
10784
  msgstr ""
10785
 
10786
- #: wppa-settings-autosave.php:4188
10787
  msgid "Audio on lightbox start automaticly."
10788
  msgstr ""
10789
 
10790
- #: wppa-settings-autosave.php:4213
10791
  msgid "Table V:"
10792
  msgstr ""
10793
 
10794
- #: wppa-settings-autosave.php:4213
10795
  #, fuzzy
10796
  msgid "Fonts:"
10797
  msgstr "%d kommentarer"
10798
 
10799
- #: wppa-settings-autosave.php:4214
10800
  msgid "This table describes the Fonts used for the wppa+ elements."
10801
  msgstr ""
10802
 
10803
- #: wppa-settings-autosave.php:4224 wppa-settings-autosave.php:4400
10804
  msgid "Font family"
10805
  msgstr ""
10806
 
10807
- #: wppa-settings-autosave.php:4225 wppa-settings-autosave.php:4401
10808
  msgid "Font size"
10809
  msgstr ""
10810
 
10811
- #: wppa-settings-autosave.php:4226 wppa-settings-autosave.php:4402
10812
  msgid "Font color"
10813
  msgstr ""
10814
 
10815
- #: wppa-settings-autosave.php:4227 wppa-settings-autosave.php:4403
10816
  msgid "Font weight"
10817
  msgstr ""
10818
 
10819
- #: wppa-settings-autosave.php:4237
10820
  msgid "normal"
10821
  msgstr ""
10822
 
10823
- #: wppa-settings-autosave.php:4237
10824
  msgid "bold"
10825
  msgstr ""
10826
 
10827
- #: wppa-settings-autosave.php:4237
10828
  msgid "bolder"
10829
  msgstr ""
10830
 
10831
- #: wppa-settings-autosave.php:4237
10832
  msgid "lighter"
10833
  msgstr ""
10834
 
10835
- #: wppa-settings-autosave.php:4240
10836
  #, fuzzy
10837
  msgid "Album titles"
10838
  msgstr "album"
10839
 
10840
- #: wppa-settings-autosave.php:4241
10841
  msgid "Font used for Album titles."
10842
  msgstr ""
10843
 
10844
- #: wppa-settings-autosave.php:4242
10845
  msgid "Enter font name, size, color and weight for album cover titles."
10846
  msgstr ""
10847
 
10848
- #: wppa-settings-autosave.php:4257
10849
  #, fuzzy
10850
  msgid "Slideshow desc"
10851
  msgstr "Slideshow"
10852
 
10853
- #: wppa-settings-autosave.php:4258
10854
  #, fuzzy
10855
  msgid "Font for slideshow photo descriptions."
10856
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
10857
 
10858
- #: wppa-settings-autosave.php:4259
10859
  msgid ""
10860
  "Enter font name, size, color and weight for slideshow photo descriptions."
10861
  msgstr ""
10862
 
10863
- #: wppa-settings-autosave.php:4274
10864
  #, fuzzy
10865
  msgid "Slideshow name"
10866
  msgstr "Slideshow"
10867
 
10868
- #: wppa-settings-autosave.php:4275
10869
  #, fuzzy
10870
  msgid "Font for slideshow photo names."
10871
  msgstr "Indtast foto navn"
10872
 
10873
- #: wppa-settings-autosave.php:4276
10874
  msgid "Enter font name, size, color and weight for slideshow photo names."
10875
  msgstr ""
10876
 
10877
- #: wppa-settings-autosave.php:4291
10878
  msgid "Navigations"
10879
  msgstr ""
10880
 
10881
- #: wppa-settings-autosave.php:4292
10882
  msgid "Font for navigations."
10883
  msgstr ""
10884
 
10885
- #: wppa-settings-autosave.php:4293
10886
  msgid "Enter font name, size, color and weight for navigation items."
10887
  msgstr ""
10888
 
10889
- #: wppa-settings-autosave.php:4309
10890
  msgid "Font for text under thumbnails."
10891
  msgstr ""
10892
 
10893
- #: wppa-settings-autosave.php:4310
10894
  msgid ""
10895
  "Enter font name, size, color and weight for text under thumbnail images."
10896
  msgstr ""
10897
 
10898
- #: wppa-settings-autosave.php:4326
10899
  msgid "General font in wppa boxes."
10900
  msgstr ""
10901
 
10902
- #: wppa-settings-autosave.php:4327
10903
  msgid "Enter font name, size, color and weight for all other items."
10904
  msgstr ""
10905
 
10906
- #: wppa-settings-autosave.php:4343
10907
  msgid "Font in wppa number bars."
10908
  msgstr ""
10909
 
10910
- #: wppa-settings-autosave.php:4344 wppa-settings-autosave.php:4361
10911
  msgid "Enter font name, size, color and weight for numberbar navigation."
10912
  msgstr ""
10913
 
10914
- #: wppa-settings-autosave.php:4359
10915
  msgid "Numbar Active"
10916
  msgstr ""
10917
 
10918
- #: wppa-settings-autosave.php:4360
10919
  msgid "Font in wppa number bars, active item."
10920
  msgstr ""
10921
 
10922
- #: wppa-settings-autosave.php:4377
10923
  msgid "Font in wppa lightbox overlays."
10924
  msgstr ""
10925
 
10926
- #: wppa-settings-autosave.php:4378
10927
  msgid "Enter font name, size, color and weight for wppa lightbox overlays."
10928
  msgstr ""
10929
 
10930
- #: wppa-settings-autosave.php:4413
10931
  msgid "Table VI:"
10932
  msgstr ""
10933
 
10934
- #: wppa-settings-autosave.php:4413
10935
  #, fuzzy
10936
  msgid "Links:"
10937
  msgstr "Link til"
10938
 
10939
- #: wppa-settings-autosave.php:4414
10940
  msgid "This table defines the link types and pages."
10941
  msgstr ""
10942
 
10943
- #: wppa-settings-autosave.php:4425 wppa-settings-autosave.php:5424
10944
  #, fuzzy
10945
  msgid "Link page"
10946
  msgstr "Link til"
10947
 
10948
- #: wppa-settings-autosave.php:4427 wppa-settings-autosave.php:5426
10949
  msgid "Photo specific link overrules"
10950
  msgstr ""
10951
 
10952
- #: wppa-settings-autosave.php:4427 wppa-settings-autosave.php:5426
10953
  msgid "PSO"
10954
  msgstr ""
10955
 
10956
- #: wppa-settings-autosave.php:4477
10957
  #, fuzzy
10958
  msgid "--- The same post or page ---"
10959
  msgstr "--- vis ikke ---"
10960
 
10961
- #: wppa-settings-autosave.php:4508
10962
  msgid "--- No page to link to (yet) ---"
10963
  msgstr ""
10964
 
10965
- #: wppa-settings-autosave.php:4513
10966
  #, fuzzy
10967
  msgid "--- Will be auto created ---"
10968
  msgstr "--- vis ikke ---"
10969
 
10970
- #: wppa-settings-autosave.php:4515
10971
  msgid "Links from images in WPPA+ Widgets"
10972
  msgstr ""
10973
 
10974
- #: wppa-settings-autosave.php:4517
10975
  msgid "PotdWidget"
10976
  msgstr ""
10977
 
10978
- #: wppa-settings-autosave.php:4518
10979
  msgid "Photo Of The Day widget link."
10980
  msgstr ""
10981
 
10982
- #: wppa-settings-autosave.php:4519
10983
  msgid "Select the type of link the photo of the day points to."
10984
  msgstr ""
10985
 
10986
- #: wppa-settings-autosave.php:4520
10987
  msgid ""
10988
  "If you select 'defined on widget admin page' you can manually enter a link "
10989
  "and title on the Photo of the day Widget Admin page."
10990
  msgstr ""
10991
 
10992
- #: wppa-settings-autosave.php:4529 wppa-settings-autosave.php:4572
10993
- #: wppa-settings-autosave.php:4650 wppa-settings-autosave.php:4693
10994
- #: wppa-settings-autosave.php:4741 wppa-settings-autosave.php:4788
10995
- #: wppa-settings-autosave.php:4835 wppa-settings-autosave.php:4887
10996
- #: wppa-settings-autosave.php:4925 wppa-settings-autosave.php:4975
10997
- #: wppa-settings-autosave.php:5017 wppa-settings-autosave.php:5057
10998
- #: wppa-settings-autosave.php:8766
10999
  msgid "no link at all."
11000
  msgstr ""
11001
 
11002
- #: wppa-settings-autosave.php:4530 wppa-settings-autosave.php:4573
11003
- #: wppa-settings-autosave.php:4651 wppa-settings-autosave.php:4694
11004
- #: wppa-settings-autosave.php:4742 wppa-settings-autosave.php:4789
11005
- #: wppa-settings-autosave.php:4836 wppa-settings-autosave.php:4888
11006
- #: wppa-settings-autosave.php:4926 wppa-settings-autosave.php:4976
11007
- #: wppa-settings-autosave.php:5018 wppa-settings-autosave.php:5058
11008
- #: wppa-settings-autosave.php:8767
11009
  msgid "the plain photo (file)."
11010
  msgstr ""
11011
 
11012
- #: wppa-settings-autosave.php:4531 wppa-settings-autosave.php:8773
11013
  msgid "defined on widget admin page."
11014
  msgstr ""
11015
 
11016
- #: wppa-settings-autosave.php:4532 wppa-settings-autosave.php:4575
11017
- #: wppa-settings-autosave.php:4977 wppa-settings-autosave.php:5019
11018
- #: wppa-settings-autosave.php:8771
11019
  msgid "the content of the album."
11020
  msgstr ""
11021
 
11022
- #: wppa-settings-autosave.php:4533 wppa-settings-autosave.php:4576
11023
- #: wppa-settings-autosave.php:4652 wppa-settings-autosave.php:4697
11024
- #: wppa-settings-autosave.php:4745 wppa-settings-autosave.php:4792
11025
- #: wppa-settings-autosave.php:4839 wppa-settings-autosave.php:4927
11026
- #: wppa-settings-autosave.php:4978 wppa-settings-autosave.php:5020
11027
- #: wppa-settings-autosave.php:8768
11028
  msgid "the full size photo in a slideshow."
11029
  msgstr ""
11030
 
11031
- #: wppa-settings-autosave.php:4534 wppa-settings-autosave.php:4577
11032
- #: wppa-settings-autosave.php:4653 wppa-settings-autosave.php:4698
11033
- #: wppa-settings-autosave.php:4746 wppa-settings-autosave.php:4793
11034
- #: wppa-settings-autosave.php:4840 wppa-settings-autosave.php:4928
11035
- #: wppa-settings-autosave.php:4979 wppa-settings-autosave.php:5021
11036
- #: wppa-settings-autosave.php:5059 wppa-settings-autosave.php:8769
11037
  msgid "the fullsize photo on its own."
11038
  msgstr ""
11039
 
11040
- #: wppa-settings-autosave.php:4535 wppa-settings-autosave.php:4578
11041
- #: wppa-settings-autosave.php:4617 wppa-settings-autosave.php:4656
11042
- #: wppa-settings-autosave.php:4701 wppa-settings-autosave.php:4749
11043
- #: wppa-settings-autosave.php:4796 wppa-settings-autosave.php:4843
11044
- #: wppa-settings-autosave.php:4931
11045
  msgid "a plain page without a querystring."
11046
  msgstr ""
11047
 
11048
- #: wppa-settings-autosave.php:4536 wppa-settings-autosave.php:4579
11049
- #: wppa-settings-autosave.php:4618 wppa-settings-autosave.php:4657
11050
- #: wppa-settings-autosave.php:4702 wppa-settings-autosave.php:4750
11051
- #: wppa-settings-autosave.php:4797 wppa-settings-autosave.php:4844
11052
- #: wppa-settings-autosave.php:4890 wppa-settings-autosave.php:4932
11053
- #: wppa-settings-autosave.php:4980 wppa-settings-autosave.php:5022
11054
- #: wppa-settings-autosave.php:5060
11055
  msgid "lightbox."
11056
  msgstr ""
11057
 
11058
- #: wppa-settings-autosave.php:4561
11059
  msgid "SlideWidget"
11060
  msgstr ""
11061
 
11062
- #: wppa-settings-autosave.php:4562
11063
  msgid "Slideshow widget photo link."
11064
  msgstr ""
11065
 
11066
- #: wppa-settings-autosave.php:4563
11067
  msgid "Select the type of link the slideshow photos point to."
11068
  msgstr ""
11069
 
11070
- #: wppa-settings-autosave.php:4574 wppa-settings-autosave.php:8772
11071
  msgid "defined at widget activation."
11072
  msgstr ""
11073
 
11074
- #: wppa-settings-autosave.php:4604
11075
  #, fuzzy
11076
  msgid "Album widget"
11077
  msgstr "Album administration"
11078
 
11079
- #: wppa-settings-autosave.php:4605
11080
  msgid "Album widget thumbnail link"
11081
  msgstr ""
11082
 
11083
- #: wppa-settings-autosave.php:4606
11084
  msgid "Select the type of link the album widget photos point to."
11085
  msgstr ""
11086
 
11087
- #: wppa-settings-autosave.php:4615
11088
  msgid "subalbums and thumbnails."
11089
  msgstr ""
11090
 
11091
- #: wppa-settings-autosave.php:4616
11092
  #, fuzzy
11093
  msgid "slideshow."
11094
  msgstr "Slideshow"
11095
 
11096
- #: wppa-settings-autosave.php:4639
11097
  #, fuzzy
11098
  msgid "ThumbnailWidget"
11099
  msgstr "Foto Top Ti"
11100
 
11101
- #: wppa-settings-autosave.php:4640
11102
  #, fuzzy
11103
  msgid "Thumbnail widget photo link."
11104
  msgstr "Miniatura"
11105
 
11106
- #: wppa-settings-autosave.php:4641
11107
  msgid "Select the type of link the thumbnail photos point to."
11108
  msgstr ""
11109
 
11110
- #: wppa-settings-autosave.php:4654 wppa-settings-autosave.php:4699
11111
- #: wppa-settings-autosave.php:4747 wppa-settings-autosave.php:4794
11112
- #: wppa-settings-autosave.php:4841 wppa-settings-autosave.php:4929
11113
  msgid "the single photo in the style of a slideshow."
11114
  msgstr ""
11115
 
11116
- #: wppa-settings-autosave.php:4655 wppa-settings-autosave.php:4700
11117
- #: wppa-settings-autosave.php:4748 wppa-settings-autosave.php:4795
11118
- #: wppa-settings-autosave.php:4842 wppa-settings-autosave.php:4930
11119
- #: wppa-settings-autosave.php:5062
11120
  msgid "the fs photo with download and print buttons."
11121
  msgstr ""
11122
 
11123
- #: wppa-settings-autosave.php:4682
11124
  msgid "TopTenWidget"
11125
  msgstr ""
11126
 
11127
- #: wppa-settings-autosave.php:4683
11128
  msgid "TopTen widget photo link."
11129
  msgstr ""
11130
 
11131
- #: wppa-settings-autosave.php:4684
11132
  msgid "Select the type of link the top ten photos point to."
11133
  msgstr ""
11134
 
11135
- #: wppa-settings-autosave.php:4695
11136
  msgid "the content of the virtual topten album."
11137
  msgstr ""
11138
 
11139
- #: wppa-settings-autosave.php:4696 wppa-settings-autosave.php:4744
11140
- #: wppa-settings-autosave.php:4791 wppa-settings-autosave.php:4838
11141
  msgid "the content of the thumbnails album."
11142
  msgstr ""
11143
 
11144
- #: wppa-settings-autosave.php:4730
11145
  msgid "LasTenWidget"
11146
  msgstr ""
11147
 
11148
- #: wppa-settings-autosave.php:4731
11149
  #, fuzzy
11150
  msgid "Last Ten widget photo link."
11151
  msgstr "Foto Top Ti"
11152
 
11153
- #: wppa-settings-autosave.php:4732
11154
  msgid "Select the type of link the last ten photos point to."
11155
  msgstr ""
11156
 
11157
- #: wppa-settings-autosave.php:4743
11158
  msgid "the content of the virtual lasten album."
11159
  msgstr ""
11160
 
11161
- #: wppa-settings-autosave.php:4777
11162
  #, fuzzy
11163
  msgid "CommentWidget"
11164
  msgstr "Kommentarer tilf&oslash;jet"
11165
 
11166
- #: wppa-settings-autosave.php:4778
11167
  #, fuzzy
11168
  msgid "Comment widget photo link."
11169
  msgstr "Kommentar til billeder"
11170
 
11171
- #: wppa-settings-autosave.php:4779
11172
  msgid "Select the type of link the comment widget photos point to."
11173
  msgstr ""
11174
 
11175
- #: wppa-settings-autosave.php:4790
11176
  msgid "the content of the virtual comten album."
11177
  msgstr ""
11178
 
11179
- #: wppa-settings-autosave.php:4824
11180
  msgid "FeaTenWidget"
11181
  msgstr ""
11182
 
11183
- #: wppa-settings-autosave.php:4825
11184
  msgid "FeaTen widget photo link."
11185
  msgstr ""
11186
 
11187
- #: wppa-settings-autosave.php:4826
11188
  msgid "Select the type of link the featured ten photos point to."
11189
  msgstr ""
11190
 
11191
- #: wppa-settings-autosave.php:4837
11192
  msgid "the content of the virtual featen album."
11193
  msgstr ""
11194
 
11195
- #: wppa-settings-autosave.php:4870
11196
  msgid "Links from other WPPA+ images"
11197
  msgstr ""
11198
 
11199
- #: wppa-settings-autosave.php:4872
11200
  #, fuzzy
11201
  msgid "Cover Image"
11202
  msgstr "Billede"
11203
 
11204
- #: wppa-settings-autosave.php:4873
11205
  msgid "The link from the cover image of an album."
11206
  msgstr ""
11207
 
11208
- #: wppa-settings-autosave.php:4874
11209
  msgid "Select the type of link the coverphoto points to."
11210
  msgstr ""
11211
 
11212
- #: wppa-settings-autosave.php:4875
11213
  msgid "The link from the album title can be configured on the Edit Album page."
11214
  msgstr ""
11215
 
11216
- #: wppa-settings-autosave.php:4876
11217
  msgid "This link will be used for the photo also if you select: same as title."
11218
  msgstr ""
11219
 
11220
- #: wppa-settings-autosave.php:4877
11221
  msgid ""
11222
  "If you specify New Tab on this line, all links from the cover will open a "
11223
  "new tab,"
11224
  msgstr ""
11225
 
11226
- #: wppa-settings-autosave.php:4878
11227
  msgid "except when Ajax is activated on Table IV-A1."
11228
  msgstr ""
11229
 
11230
- #: wppa-settings-autosave.php:4889 wppa-settings-autosave.php:8774
11231
  msgid "same as title."
11232
  msgstr ""
11233
 
11234
- #: wppa-settings-autosave.php:4891
11235
  msgid "a slideshow starting at the photo"
11236
  msgstr ""
11237
 
11238
- #: wppa-settings-autosave.php:4912
11239
  #, fuzzy
11240
  msgid "Thumbnail"
11241
  msgstr "Miniatura"
11242
 
11243
- #: wppa-settings-autosave.php:4913
11244
  #, fuzzy
11245
  msgid "Thumbnail link."
11246
  msgstr "Foto Top Ti"
11247
 
11248
- #: wppa-settings-autosave.php:4914 wppa-settings-autosave.php:4964
11249
- #: wppa-settings-autosave.php:5006
11250
  msgid "Select the type of link you want, or no link at all."
11251
  msgstr ""
11252
 
11253
- #: wppa-settings-autosave.php:4915 wppa-settings-autosave.php:4965
11254
- #: wppa-settings-autosave.php:5007
11255
  msgid ""
11256
  "If you select the fullsize photo on its own, it will be stretched to fit, "
11257
  "regardless of that setting."
11258
  msgstr ""
11259
 
11260
- #: wppa-settings-autosave.php:4916 wppa-settings-autosave.php:4966
11261
- #: wppa-settings-autosave.php:5008
11262
  #, php-format
11263
  msgid ""
11264
  "Note that a page must have at least %%wppa%% or [wppa][/wppa] in its content "
11265
  "to show up the photo(s)."
11266
  msgstr ""
11267
 
11268
- #: wppa-settings-autosave.php:4945
11269
  #, fuzzy
11270
  msgid "Auto Page"
11271
  msgstr "Automatisk, afskudt"
11272
 
11273
- #: wppa-settings-autosave.php:4962
11274
  #, fuzzy
11275
  msgid "Sphoto"
11276
  msgstr "foto"
11277
 
11278
- #: wppa-settings-autosave.php:4963
11279
  #, fuzzy
11280
  msgid "Single photo link."
11281
  msgstr "Indtast foto navn"
11282
 
11283
- #: wppa-settings-autosave.php:5004
11284
  #, fuzzy
11285
  msgid "Mphoto"
11286
  msgstr "foto"
11287
 
11288
- #: wppa-settings-autosave.php:5005
11289
  msgid "Media-like photo link."
11290
  msgstr ""
11291
 
11292
- #: wppa-settings-autosave.php:5047
11293
  msgid "Slideshow fullsize link"
11294
  msgstr ""
11295
 
11296
- #: wppa-settings-autosave.php:5048
11297
  msgid ""
11298
  "You can overrule lightbox but not big browse buttons with the photo specifc "
11299
  "link."
11300
  msgstr ""
11301
 
11302
- #: wppa-settings-autosave.php:5061
11303
  msgid "lightbox single photos."
11304
  msgstr ""
11305
 
11306
- #: wppa-settings-autosave.php:5063
11307
  #, fuzzy
11308
  msgid "the thumbnails."
11309
  msgstr "Se"
11310
 
11311
- #: wppa-settings-autosave.php:5087
11312
  msgid "Film linktype"
11313
  msgstr ""
11314
 
11315
- #: wppa-settings-autosave.php:5088
11316
  msgid "Direct access goto image in:"
11317
  msgstr ""
11318
 
11319
- #: wppa-settings-autosave.php:5089
11320
  msgid ""
11321
  "Select the action to be taken when the user clicks on a filmstrip image."
11322
  msgstr ""
11323
 
11324
- #: wppa-settings-autosave.php:5094
11325
  #, fuzzy
11326
  msgid "slideshow window"
11327
  msgstr "Slideshow"
11328
 
11329
- #: wppa-settings-autosave.php:5095
11330
  msgid "lightbox overlay"
11331
  msgstr ""
11332
 
11333
- #: wppa-settings-autosave.php:5110
11334
  #, fuzzy
11335
  msgid "Other links"
11336
  msgstr "Andet"
11337
 
11338
- #: wppa-settings-autosave.php:5112
11339
  msgid "Download Link (aka Art Monkey link)"
11340
  msgstr ""
11341
 
11342
- #: wppa-settings-autosave.php:5113
11343
  msgid "Makes the photo name a download button."
11344
  msgstr ""
11345
 
11346
- #: wppa-settings-autosave.php:5114
11347
  msgid "Link Photo name in slideshow to file or zip with photoname as filename."
11348
  msgstr ""
11349
 
11350
- #: wppa-settings-autosave.php:5118 wppa-settings-autosave.php:5165
11351
  msgid "image file"
11352
  msgstr ""
11353
 
11354
- #: wppa-settings-autosave.php:5119 wppa-settings-autosave.php:5166
11355
  msgid "zipped image"
11356
  msgstr ""
11357
 
11358
- #: wppa-settings-autosave.php:5132
11359
  msgid "Art Monkey Source"
11360
  msgstr ""
11361
 
11362
- #: wppa-settings-autosave.php:5133
11363
  msgid "Use Source file for art monkey link if available."
11364
  msgstr ""
11365
 
11366
- #: wppa-settings-autosave.php:5142
11367
  msgid "Art Monkey Display"
11368
  msgstr ""
11369
 
11370
- #: wppa-settings-autosave.php:5143
11371
  msgid "Select button or link ( text )."
11372
  msgstr ""
11373
 
11374
- #: wppa-settings-autosave.php:5148
11375
  msgid "Textlink"
11376
  msgstr ""
11377
 
11378
- #: wppa-settings-autosave.php:5160
11379
  msgid "Popup Download Link"
11380
  msgstr ""
11381
 
11382
- #: wppa-settings-autosave.php:5161
11383
  msgid "Configure the download link on fullsize popups."
11384
  msgstr ""
11385
 
11386
- #: wppa-settings-autosave.php:5162
11387
  msgid "Link fullsize popup download button to either image or zip file."
11388
  msgstr ""
11389
 
11390
- #: wppa-settings-autosave.php:5178
11391
  msgid "Download link on lightbox"
11392
  msgstr ""
11393
 
11394
- #: wppa-settings-autosave.php:5179
11395
  msgid "Art monkey link on lightbox photo names."
11396
  msgstr ""
11397
 
11398
- #: wppa-settings-autosave.php:5188
11399
  #, fuzzy
11400
  msgid "Album download link"
11401
  msgstr "Album administration"
11402
 
11403
- #: wppa-settings-autosave.php:5189
11404
  msgid "Place an album download link on the album covers"
11405
  msgstr ""
11406
 
11407
- #: wppa-settings-autosave.php:5190
11408
  msgid "Creates a download zipfile containing the photos of the album"
11409
  msgstr ""
11410
 
11411
- #: wppa-settings-autosave.php:5198
11412
  msgid "Album download Source"
11413
  msgstr ""
11414
 
11415
- #: wppa-settings-autosave.php:5199
11416
  msgid "Use Source file for album download link if available."
11417
  msgstr ""
11418
 
11419
- #: wppa-settings-autosave.php:5208
11420
  msgid "Tagcloud Link"
11421
  msgstr ""
11422
 
11423
- #: wppa-settings-autosave.php:5209
11424
  msgid "Configure the link from the tags in the tag cloud."
11425
  msgstr ""
11426
 
11427
- #: wppa-settings-autosave.php:5210
11428
  msgid "Link the tag words to ether the thumbnails or the slideshow."
11429
  msgstr ""
11430
 
11431
- #: wppa-settings-autosave.php:5219 wppa-settings-autosave.php:5250
11432
- #: wppa-settings-autosave.php:5345
11433
  #, fuzzy
11434
  msgid "slideshow"
11435
  msgstr "Slideshow"
11436
 
11437
- #: wppa-settings-autosave.php:5239
11438
  msgid "Multitag Link"
11439
  msgstr ""
11440
 
11441
- #: wppa-settings-autosave.php:5240
11442
  msgid "Configure the link from the multitag selection."
11443
  msgstr ""
11444
 
11445
- #: wppa-settings-autosave.php:5241
11446
  msgid "Link to ether the thumbnails or the slideshow."
11447
  msgstr ""
11448
 
11449
- #: wppa-settings-autosave.php:5270
11450
  #, fuzzy
11451
  msgid "Super View Landing"
11452
  msgstr "Se forside fotos"
11453
 
11454
- #: wppa-settings-autosave.php:5271
11455
  msgid "The landing page for the Super View widget."
11456
  msgstr ""
11457
 
11458
- #: wppa-settings-autosave.php:5279
11459
  msgid "Defined by the visitor"
11460
  msgstr ""
11461
 
11462
- #: wppa-settings-autosave.php:5292
11463
  #, fuzzy
11464
  msgid "Uploader Landing"
11465
  msgstr "Indl&aelig;sning fejlede"
11466
 
11467
- #: wppa-settings-autosave.php:5293
11468
  msgid "Select the landing page for the Uploader Widget"
11469
  msgstr ""
11470
 
11471
- #: wppa-settings-autosave.php:5313
11472
  msgid "Bestof Landing"
11473
  msgstr ""
11474
 
11475
- #: wppa-settings-autosave.php:5314
11476
  msgid "Select the landing page for the BestOf Widget / Box"
11477
  msgstr ""
11478
 
11479
- #: wppa-settings-autosave.php:5334
11480
  msgid "Album navigator Link"
11481
  msgstr ""
11482
 
11483
- #: wppa-settings-autosave.php:5335
11484
  msgid "Select link type and page for the Album navigator Widget"
11485
  msgstr ""
11486
 
11487
- #: wppa-settings-autosave.php:5363
11488
  msgid "Supersearch Landing"
11489
  msgstr ""
11490
 
11491
- #: wppa-settings-autosave.php:5364
11492
  msgid "Select the landing page for the Supersearch Box"
11493
  msgstr ""
11494
 
11495
- #: wppa-settings-autosave.php:5384
11496
  msgid "SM widget return"
11497
  msgstr ""
11498
 
11499
- #: wppa-settings-autosave.php:5385
11500
  msgid "Select the return link for social media from widgets"
11501
  msgstr ""
11502
 
11503
- #: wppa-settings-autosave.php:5386
11504
  msgid ""
11505
  "If you select Landing page, and it wont work, it may be required to set the "
11506
  "Occur to the sequence number of the landing shortcode on the page."
11507
  msgstr ""
11508
 
11509
- #: wppa-settings-autosave.php:5387
11510
  msgid ""
11511
  "Normally it is 1, but you can try 2 etc. Always create a new shared link to "
11512
  "test a setting."
11513
  msgstr ""
11514
 
11515
- #: wppa-settings-autosave.php:5395
11516
  #, fuzzy
11517
  msgid "Home page"
11518
  msgstr "Hjem"
11519
 
11520
- #: wppa-settings-autosave.php:5396
11521
  msgid "Landing page"
11522
  msgstr ""
11523
 
11524
- #: wppa-settings-autosave.php:5407
11525
  msgid "Occur"
11526
  msgstr ""
11527
 
11528
- #: wppa-settings-autosave.php:5436
11529
  msgid "Table VII:"
11530
  msgstr ""
11531
 
11532
- #: wppa-settings-autosave.php:5436
11533
  msgid "Permissions and Restrictions:"
11534
  msgstr ""
11535
 
11536
- #: wppa-settings-autosave.php:5437
11537
  msgid ""
11538
  "This table describes the access settings for admin and front-end activities."
11539
  msgstr ""
11540
 
11541
- #: wppa-settings-autosave.php:5465
11542
  msgid "Role"
11543
  msgstr ""
11544
 
11545
- #: wppa-settings-autosave.php:5474
11546
  msgid ""
11547
  "Admin settings per user role. Enabling these settings will overrule the "
11548
  "front-end settings for the specific user role"
11549
  msgstr ""
11550
 
11551
- #: wppa-settings-autosave.php:5498
11552
  msgid "Frontend create Albums and upload Photos enabling and limiting settings"
11553
  msgstr ""
11554
 
11555
- #: wppa-settings-autosave.php:5500
11556
  #, fuzzy
11557
  msgid "User create Albums"
11558
  msgstr "Impossibile creare album. "
11559
 
11560
- #: wppa-settings-autosave.php:5501
11561
  #, fuzzy
11562
  msgid "Enable frontend album creation."
11563
  msgstr "Inserisci / modifica la descrizione per questo album."
11564
 
11565
- #: wppa-settings-autosave.php:5502
11566
  msgid "If you check this item, frontend album creation will be enabled."
11567
  msgstr ""
11568
 
11569
- #: wppa-settings-autosave.php:5512
11570
  #, fuzzy
11571
  msgid "User edit album"
11572
  msgstr "Impossibile creare album. "
11573
 
11574
- #: wppa-settings-autosave.php:5513
11575
  #, fuzzy
11576
  msgid "Enable frontent edit album name and description."
11577
  msgstr "Inserisci / modifica la descrizione per questo album."
11578
 
11579
- #: wppa-settings-autosave.php:5523
11580
  #, fuzzy
11581
  msgid "User delete Albums"
11582
  msgstr "Impossibile creare album. "
11583
 
11584
- #: wppa-settings-autosave.php:5524
11585
  #, fuzzy
11586
  msgid "Enable frontend album deletion"
11587
  msgstr "Inserisci / modifica la descrizione per questo album."
11588
 
11589
- #: wppa-settings-autosave.php:5525
11590
  msgid "If you check this item, frontend album deletion will be enabled."
11591
  msgstr ""
11592
 
11593
- #: wppa-settings-autosave.php:5535
11594
  #, fuzzy
11595
  msgid "User create Albums login"
11596
  msgstr "Impossibile creare album. "
11597
 
11598
- #: wppa-settings-autosave.php:5536
11599
  msgid "Frontend album creation requires the user is logged in."
11600
  msgstr ""
11601
 
11602
- #: wppa-settings-autosave.php:5562
11603
  #, fuzzy, php-format
11604
  msgid "Upload limit %s"
11605
  msgstr "Indsend foto"
11606
 
11607
- #: wppa-settings-autosave.php:5563
11608
  msgid "Limit upload capacity for logged out users."
11609
  msgstr ""
11610
 
11611
- #: wppa-settings-autosave.php:5564
11612
  #, php-format
11613
  msgid "Limit upload capacity for the user role %s."
11614
  msgstr ""
11615
 
11616
- #: wppa-settings-autosave.php:5565
11617
  msgid "This setting has only effect when Table VII-B2 is unchecked."
11618
  msgstr ""
11619
 
11620
- #: wppa-settings-autosave.php:5566
11621
  msgid ""
11622
  "This limitation only applies to frontend uploads when the same userrole does "
11623
  "not have the Upload checkbox checked in Table VII-A."
11624
  msgstr ""
11625
 
11626
- #: wppa-settings-autosave.php:5567 wppa-settings-autosave.php:5583
11627
- #: wppa-settings-autosave.php:6983
11628
  msgid "A value of 0 means: no limit."
11629
  msgstr ""
11630
 
11631
- #: wppa-settings-autosave.php:5580
11632
  #, fuzzy, php-format
11633
  msgid "Album limit %s"
11634
  msgstr "Album administration"
11635
 
11636
- #: wppa-settings-autosave.php:5581
11637
  #, php-format
11638
  msgid "Limit number of albums for the user role %s."
11639
  msgstr ""
11640
 
11641
- #: wppa-settings-autosave.php:5582
11642
  msgid ""
11643
  "This limitation only applies to frontend create albums when the same "
11644
  "userrole does not have the Album admin checkbox checked in Table VII-A."
11645
  msgstr ""
11646
 
11647
- #: wppa-settings-autosave.php:5594
11648
  #, fuzzy
11649
  msgid "Upload one only"
11650
  msgstr "Indsend foto"
11651
 
11652
- #: wppa-settings-autosave.php:5595
11653
  msgid "Non admin users can upload only one photo at a time."
11654
  msgstr ""
11655
 
11656
- #: wppa-settings-autosave.php:5605
11657
  #, fuzzy
11658
  msgid "Upload moderation"
11659
  msgstr "Indsend foto"
11660
 
11661
- #: wppa-settings-autosave.php:5606
11662
  #, fuzzy
11663
  msgid "Uploaded photos need moderation."
11664
  msgstr "Denne indsendelse kr&aelig;ver godkendelse"
11665
 
11666
- #: wppa-settings-autosave.php:5607
11667
  msgid ""
11668
  "If checked, photos uploaded by users who do not have photo album admin "
11669
  "access rights need moderation."
11670
  msgstr ""
11671
 
11672
- #: wppa-settings-autosave.php:5608
11673
  msgid ""
11674
  "Users who have photo album admin access rights can change the photo status "
11675
  "to publish or featured."
11676
  msgstr ""
11677
 
11678
- #: wppa-settings-autosave.php:5609
11679
  msgid "You can set the album admin access rights in Table VII-A."
11680
  msgstr ""
11681
 
11682
- #: wppa-settings-autosave.php:5618
11683
  #, fuzzy
11684
  msgid "Upload notify"
11685
  msgstr "Indsend foto"
11686
 
11687
- #: wppa-settings-autosave.php:5619
11688
  msgid "Notify admin at frontend upload."
11689
  msgstr ""
11690
 
11691
- #: wppa-settings-autosave.php:5620 wppa-settings-autosave.php:5631
11692
  msgid "If checked, admin will receive a notification by email."
11693
  msgstr ""
11694
 
11695
- #: wppa-settings-autosave.php:5629
11696
  msgid "Upload backend notify"
11697
  msgstr ""
11698
 
11699
- #: wppa-settings-autosave.php:5630
11700
  msgid "Notify admin at backend upload."
11701
  msgstr ""
11702
 
11703
- #: wppa-settings-autosave.php:5640
11704
  msgid "Max size in pixels"
11705
  msgstr ""
11706
 
11707
- #: wppa-settings-autosave.php:5641
11708
  msgid "Max size for height and width for front-end uploads."
11709
  msgstr ""
11710
 
11711
- #: wppa-settings-autosave.php:5642
11712
  msgid "Enter the maximum size. 0 is unlimited"
11713
  msgstr ""
11714
 
11715
- #: wppa-settings-autosave.php:5651
11716
  msgid "Home after Upload"
11717
  msgstr ""
11718
 
11719
- #: wppa-settings-autosave.php:5652
11720
  msgid "After successfull front-end upload, go to the home page."
11721
  msgstr ""
11722
 
11723
- #: wppa-settings-autosave.php:5662
11724
  msgid "Admin Functionality restrictions for non administrators"
11725
  msgstr ""
11726
 
11727
- #: wppa-settings-autosave.php:5664
11728
  msgid "Alt thumb is restricted"
11729
  msgstr ""
11730
 
11731
- #: wppa-settings-autosave.php:5665
11732
  msgid "Using <b>alt thumbsize</b> is a restricted action."
11733
  msgstr ""
11734
 
11735
- #: wppa-settings-autosave.php:5666
11736
  msgid ""
11737
  "If checked: alt thumbsize can not be set in album admin by users not having "
11738
  "admin rights."
11739
  msgstr ""
11740
 
11741
- #: wppa-settings-autosave.php:5675
11742
  msgid "Link is restricted"
11743
  msgstr ""
11744
 
11745
- #: wppa-settings-autosave.php:5676
11746
  msgid "Using <b>Link to</b> is a restricted action."
11747
  msgstr ""
11748
 
11749
- #: wppa-settings-autosave.php:5677
11750
  msgid ""
11751
  "If checked: Link to: can not be set in album admin by users not having admin "
11752
  "rights."
11753
  msgstr ""
11754
 
11755
- #: wppa-settings-autosave.php:5686
11756
  msgid "CoverType is restricted"
11757
  msgstr ""
11758
 
11759
- #: wppa-settings-autosave.php:5687
11760
  msgid "Changing <b>Cover Type</b> is a restricted action."
11761
  msgstr ""
11762
 
11763
- #: wppa-settings-autosave.php:5688
11764
  msgid ""
11765
  "If checked: Cover Type: can not be set in album admin by users not having "
11766
  "admin rights."
11767
  msgstr ""
11768
 
11769
- #: wppa-settings-autosave.php:5697
11770
  msgid "Photo order# is restricted"
11771
  msgstr ""
11772
 
11773
- #: wppa-settings-autosave.php:5698
11774
  msgid "Changing <b>Photo sort order #</b> is a restricted action."
11775
  msgstr ""
11776
 
11777
- #: wppa-settings-autosave.php:5699
11778
  msgid ""
11779
  "If checked: Photo sort order #: can not be set in photo admin by users not "
11780
  "having admin rights."
11781
  msgstr ""
11782
 
11783
- #: wppa-settings-autosave.php:5708
11784
  msgid "Change source restricted"
11785
  msgstr ""
11786
 
11787
- #: wppa-settings-autosave.php:5709
11788
  msgid "Changing the import source dir requires admin rights."
11789
  msgstr ""
11790
 
11791
- #: wppa-settings-autosave.php:5710
11792
  msgid ""
11793
  "If checked, the imput source for importing photos and albums is restricted "
11794
  "to user role administrator."
11795
  msgstr ""
11796
 
11797
- #: wppa-settings-autosave.php:5719
11798
  msgid "Extended status restricted"
11799
  msgstr ""
11800
 
11801
- #: wppa-settings-autosave.php:5720
11802
  msgid "Setting status other than pending or publish requires admin rights."
11803
  msgstr ""
11804
 
11805
- #: wppa-settings-autosave.php:5730
11806
  msgid "Photo description restricted"
11807
  msgstr ""
11808
 
11809
- #: wppa-settings-autosave.php:5731
11810
  msgid "Edit photo description requires admin rights."
11811
  msgstr ""
11812
 
11813
- #: wppa-settings-autosave.php:5741
11814
  msgid "Update photofiles restricted"
11815
  msgstr ""
11816
 
11817
- #: wppa-settings-autosave.php:5742
11818
  msgid "Re-upload files requires admin rights"
11819
  msgstr ""
11820
 
11821
- #: wppa-settings-autosave.php:5752
11822
  msgid "Miscellaneous limiting settings"
11823
  msgstr ""
11824
 
11825
- #: wppa-settings-autosave.php:5754
11826
  msgid "Owners only"
11827
  msgstr ""
11828
 
11829
- #: wppa-settings-autosave.php:5755
11830
  msgid "Limit edit album access to the album owners only."
11831
  msgstr ""
11832
 
11833
- #: wppa-settings-autosave.php:5756
11834
  msgid "If checked, non-admin users can edit their own albums only."
11835
  msgstr ""
11836
 
11837
- #: wppa-settings-autosave.php:5765
11838
  msgid "Upload Owners only"
11839
  msgstr ""
11840
 
11841
- #: wppa-settings-autosave.php:5766
11842
  msgid "Limit uploads to the album owners only."
11843
  msgstr ""
11844
 
11845
- #: wppa-settings-autosave.php:5767
11846
  msgid ""
11847
  "If checked, users can upload to their own own albums and --- public --- only."
11848
  msgstr ""
11849
 
11850
- #: wppa-settings-autosave.php:5776
11851
  #, fuzzy
11852
  msgid "Uploader Edit"
11853
  msgstr "Indsend foto"
11854
 
11855
- #: wppa-settings-autosave.php:5777
11856
  msgid "Allow the uploader to edit the photo info"
11857
  msgstr ""
11858
 
11859
- #: wppa-settings-autosave.php:5778
11860
  msgid ""
11861
  "If checked, any logged in user that has upload rights and uploads an image "
11862
  "has the capability to edit the photo information."
11863
  msgstr ""
11864
 
11865
- #: wppa-settings-autosave.php:5779
11866
  msgid "Note: This may be AFTER moderation!!"
11867
  msgstr ""
11868
 
11869
- #: wppa-settings-autosave.php:5788
11870
  #, fuzzy
11871
  msgid "Uploader Moderate Comment"
11872
  msgstr "Godkend kommentar administration"
11873
 
11874
- #: wppa-settings-autosave.php:5789
11875
  msgid "The owner of the photo can moderate the photos comments."
11876
  msgstr ""
11877
 
11878
- #: wppa-settings-autosave.php:5790
11879
  msgid "This setting requires \"Uploader edit\" to be enabled also."
11880
  msgstr ""
11881
 
11882
- #: wppa-settings-autosave.php:5799
11883
  msgid "Upload memory check frontend"
11884
  msgstr ""
11885
 
11886
- #: wppa-settings-autosave.php:5800 wppa-settings-autosave.php:5811
11887
  msgid "Disable uploading photos that are too large."
11888
  msgstr ""
11889
 
11890
- #: wppa-settings-autosave.php:5801 wppa-settings-autosave.php:5812
11891
  msgid ""
11892
  "To prevent out of memory crashes during upload and possible database "
11893
  "inconsistencies, uploads can be prevented if the photos are too big."
11894
  msgstr ""
11895
 
11896
- #: wppa-settings-autosave.php:5810
11897
  msgid "Upload memory check admin"
11898
  msgstr ""
11899
 
11900
- #: wppa-settings-autosave.php:5821
11901
  #, fuzzy
11902
  msgid "Comment captcha"
11903
  msgstr "Kommentarer tilf&oslash;jet"
11904
 
11905
- #: wppa-settings-autosave.php:5822
11906
  msgid "Use a simple calculate captcha on comments form."
11907
  msgstr ""
11908
 
11909
- #: wppa-settings-autosave.php:5835
11910
  msgid "Spam lifetime"
11911
  msgstr ""
11912
 
11913
- #: wppa-settings-autosave.php:5836
11914
  msgid "Delete spam comments when older than."
11915
  msgstr ""
11916
 
11917
- #: wppa-settings-autosave.php:5839
11918
  #, fuzzy
11919
  msgid "10 minutes"
11920
  msgstr "1 minut"
11921
 
11922
- #: wppa-settings-autosave.php:5839
11923
  msgid "half an hour"
11924
  msgstr ""
11925
 
11926
- #: wppa-settings-autosave.php:5839
11927
  #, fuzzy
11928
  msgid "one hour"
11929
  msgstr "1 time"
11930
 
11931
- #: wppa-settings-autosave.php:5839
11932
  #, fuzzy
11933
  msgid "one day"
11934
  msgstr "1 dag"
11935
 
11936
- #: wppa-settings-autosave.php:5839
11937
  #, fuzzy
11938
  msgid "one week"
11939
  msgstr "1 uge"
11940
 
11941
- #: wppa-settings-autosave.php:5849
11942
  msgid "Avoid duplicates"
11943
  msgstr ""
11944
 
11945
- #: wppa-settings-autosave.php:5850
11946
  msgid "Prevent the creation of duplicate photos."
11947
  msgstr ""
11948
 
11949
- #: wppa-settings-autosave.php:5851
11950
  msgid ""
11951
  "If checked: uploading, importing, copying or moving photos to other albums "
11952
  "will be prevented when the desitation album already contains a photo with "
11953
  "the same filename."
11954
  msgstr ""
11955
 
11956
- #: wppa-settings-autosave.php:5860
11957
  msgid "Blacklist user"
11958
  msgstr ""
11959
 
11960
- #: wppa-settings-autosave.php:5861 wppa-settings-autosave.php:5862
11961
  msgid "Set the status of all the users photos to 'pending'."
11962
  msgstr ""
11963
 
11964
- #: wppa-settings-autosave.php:5863
11965
  msgid "Also inhibits further uploads."
11966
  msgstr ""
11967
 
11968
- #: wppa-settings-autosave.php:5869
11969
  msgid "--- select a user to blacklist ---"
11970
  msgstr ""
11971
 
11972
- #: wppa-settings-autosave.php:5879 wppa-settings-autosave.php:5884
11973
- #: wppa-settings-autosave.php:5905 wppa-settings-autosave.php:8005
11974
- #: wppa-settings-autosave.php:8047
11975
  msgid "The page will be reloaded after the action has taken place."
11976
  msgstr ""
11977
 
11978
- #: wppa-settings-autosave.php:5885
11979
  msgid "User login name <b>( case sensitive! )</b>:"
11980
  msgstr ""
11981
 
11982
- #: wppa-settings-autosave.php:5893
11983
  msgid "Unblacklist user"
11984
  msgstr ""
11985
 
11986
- #: wppa-settings-autosave.php:5894
11987
  msgid "Set the status of all the users photos to 'publish'."
11988
  msgstr ""
11989
 
11990
- #: wppa-settings-autosave.php:5898
11991
  msgid "--- select a user to unblacklist ---"
11992
  msgstr ""
11993
 
11994
- #: wppa-settings-autosave.php:5913
11995
  #, fuzzy
11996
  msgid "Photo owner change"
11997
  msgstr "Dagens foto"
11998
 
11999
- #: wppa-settings-autosave.php:5914
12000
  msgid "Administrators can change photo owner"
12001
  msgstr ""
12002
 
12003
- #: wppa-settings-autosave.php:5942
12004
  msgid "Table VIII:"
12005
  msgstr ""
12006
 
12007
- #: wppa-settings-autosave.php:5942
12008
  msgid "Actions:"
12009
  msgstr ""
12010
 
12011
- #: wppa-settings-autosave.php:5943
12012
  msgid "This table lists all actions that can be taken to the wppa+ system"
12013
  msgstr ""
12014
 
12015
- #: wppa-settings-autosave.php:5953 wppa-settings-autosave.php:6533
12016
  msgid "Specification"
12017
  msgstr ""
12018
 
12019
- #: wppa-settings-autosave.php:5954 wppa-settings-autosave.php:6534
12020
- #: wppa-settings-autosave.php:8788 wppa-settings-autosave.php:8810
12021
  msgid "Do it!"
12022
  msgstr ""
12023
 
12024
- #: wppa-settings-autosave.php:5956 wppa-settings-autosave.php:6536
12025
  msgid "To Go"
12026
  msgstr ""
12027
 
12028
- #: wppa-settings-autosave.php:5964
12029
  msgid "Harmless and reverseable actions"
12030
  msgstr ""
12031
 
12032
- #: wppa-settings-autosave.php:5966
12033
  msgid "Ignore concurrency"
12034
  msgstr ""
12035
 
12036
- #: wppa-settings-autosave.php:5967
12037
  msgid "Ignore the prevention of concurrent actions."
12038
  msgstr ""
12039
 
12040
- #: wppa-settings-autosave.php:5968
12041
  msgid ""
12042
  "This setting is meant to recover from deadlock situations only. Use with "
12043
  "care!"
12044
  msgstr ""
12045
 
12046
- #: wppa-settings-autosave.php:5979
12047
  msgid "Setup"
12048
  msgstr ""
12049
 
12050
- #: wppa-settings-autosave.php:5980
12051
  msgid "Re-initialize plugin."
12052
  msgstr ""
12053
 
12054
- #: wppa-settings-autosave.php:5981
12055
  msgid ""
12056
  "Re-initilizes the plugin, (re)creates database tables and sets up default "
12057
  "settings and directories if required."
12058
  msgstr ""
12059
 
12060
- #: wppa-settings-autosave.php:5982
12061
  msgid ""
12062
  "This action may be required to setup blogs in a multiblog (network) site as "
12063
  "well as in rare cases to correct initilization errors."
12064
  msgstr ""
12065
 
12066
- #: wppa-settings-autosave.php:5993
12067
  #, fuzzy
12068
  msgid "Backup settings"
12069
  msgstr "Indstillinger"
12070
 
12071
- #: wppa-settings-autosave.php:5994
12072
  msgid "Save all settings into a backup file."
12073
  msgstr ""
12074
 
12075
- #: wppa-settings-autosave.php:5995
12076
  msgid "Saves all the settings into a backup file"
12077
  msgstr ""
12078
 
12079
- #: wppa-settings-autosave.php:6006
12080
  #, fuzzy
12081
  msgid "Load settings"
12082
  msgstr "Indstillinger"
12083
 
12084
- #: wppa-settings-autosave.php:6007
12085
  msgid "Restore all settings from defaults, a backup or skin file."
12086
  msgstr ""
12087
 
12088
- #: wppa-settings-autosave.php:6008
12089
  msgid ""
12090
  "Restores all the settings from the factory supplied defaults, the backup you "
12091
  "created or from a skin file."
12092
  msgstr ""
12093
 
12094
- #: wppa-settings-autosave.php:6014
12095
  #, fuzzy
12096
  msgid "--- set to defaults ---"
12097
  msgstr "--- vises ikke ---"
12098
 
12099
- #: wppa-settings-autosave.php:6017
12100
  msgid "--- restore backup ---"
12101
  msgstr ""
12102
 
12103
- #: wppa-settings-autosave.php:6039
12104
  msgid "Regenerate"
12105
  msgstr ""
12106
 
12107
- #: wppa-settings-autosave.php:6040 wppa-settings-autosave.php:6041
12108
  #, fuzzy
12109
  msgid "Regenerate all thumbnails."
12110
  msgstr "Se"
12111
 
12112
- #: wppa-settings-autosave.php:6044 wppa-settings-autosave.php:6148
12113
  msgid "Skip one"
12114
  msgstr ""
12115
 
12116
- #: wppa-settings-autosave.php:6053
12117
  #, fuzzy
12118
  msgid "Rerate"
12119
  msgstr "Vedligehold"
12120
 
12121
- #: wppa-settings-autosave.php:6054
12122
  msgid "Recalculate ratings."
12123
  msgstr ""
12124
 
12125
- #: wppa-settings-autosave.php:6055
12126
  msgid ""
12127
  "This function will recalculate all mean photo ratings from the ratings table."
12128
  msgstr ""
12129
 
12130
- #: wppa-settings-autosave.php:6056
12131
  msgid ""
12132
  "You may need this function after the re-import of previously exported photos"
12133
  msgstr ""
12134
 
12135
- #: wppa-settings-autosave.php:6067
12136
  #, fuzzy
12137
  msgid "Lost and found"
12138
  msgstr "Billede ikke fundet"
12139
 
12140
- #: wppa-settings-autosave.php:6068
12141
  msgid "Find \"lost\" photos."
12142
  msgstr ""
12143
 
12144
- #: wppa-settings-autosave.php:6069
12145
  msgid "This function will attempt to find lost photos."
12146
  msgstr ""
12147
 
12148
- #: wppa-settings-autosave.php:6080
12149
  msgid "Recuperate"
12150
  msgstr ""
12151
 
12152
- #: wppa-settings-autosave.php:6082
12153
  msgid ""
12154
  "This action will attempt to find and register IPTC and EXIF data from photos "
12155
  "in the WPPA+ system."
12156
  msgstr ""
12157
 
12158
- #: wppa-settings-autosave.php:6093
12159
  msgid "Remake Index Albums"
12160
  msgstr ""
12161
 
12162
- #: wppa-settings-autosave.php:6094
12163
  msgid "Remakes the index database table for albums."
12164
  msgstr ""
12165
 
12166
- #: wppa-settings-autosave.php:6106
12167
  #, fuzzy
12168
  msgid "Remake Index Photos"
12169
  msgstr "fotos"
12170
 
12171
- #: wppa-settings-autosave.php:6107
12172
  msgid "Remakes the index database table for photos."
12173
  msgstr ""
12174
 
12175
- #: wppa-settings-autosave.php:6125
12176
  msgid "Convert to tree"
12177
  msgstr ""
12178
 
12179
- #: wppa-settings-autosave.php:6126
12180
  msgid "Convert filesystem to tree structure."
12181
  msgstr ""
12182
 
12183
- #: wppa-settings-autosave.php:6129
12184
  msgid "Convert to flat"
12185
  msgstr ""
12186
 
12187
- #: wppa-settings-autosave.php:6130
12188
  msgid "Convert filesystem to flat structure."
12189
  msgstr ""
12190
 
12191
- #: wppa-settings-autosave.php:6132
12192
  msgid ""
12193
  "If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
12194
  "to flat first."
12195
  msgstr ""
12196
 
12197
- #: wppa-settings-autosave.php:6144
12198
  msgid "Remake the photofiles from photo sourcefiles."
12199
  msgstr ""
12200
 
12201
- #: wppa-settings-autosave.php:6145
12202
  msgid ""
12203
  "This action will remake the fullsize images, thumbnail images, and will "
12204
  "refresh the iptc and exif data for all photos where the source is found in "
12205
  "the corresponding album sub-directory of the source directory."
12206
  msgstr ""
12207
 
12208
- #: wppa-settings-autosave.php:6157
12209
  msgid "Recalc sizes"
12210
  msgstr ""
12211
 
12212
- #: wppa-settings-autosave.php:6158
12213
  msgid "Recalculate photosizes and save to db."
12214
  msgstr ""
12215
 
12216
- #: wppa-settings-autosave.php:6170
12217
  msgid "Clearing and other irreverseable actions"
12218
  msgstr ""
12219
 
12220
- #: wppa-settings-autosave.php:6172
12221
  #, fuzzy
12222
  msgid "Clear ratings"
12223
  msgstr "Altezza massima."
12224
 
12225
- #: wppa-settings-autosave.php:6173
12226
  msgid "Reset all ratings."
12227
  msgstr ""
12228
 
12229
- #: wppa-settings-autosave.php:6174
12230
  msgid "WARNING: If checked, this will clear all ratings in the system!"
12231
  msgstr ""
12232
 
12233
- #: wppa-settings-autosave.php:6185
12234
  msgid "Clear viewcounts"
12235
  msgstr ""
12236
 
12237
- #: wppa-settings-autosave.php:6186
12238
  msgid "Reset all viewcounts."
12239
  msgstr ""
12240
 
12241
- #: wppa-settings-autosave.php:6187
12242
  msgid "WARNING: If checked, this will clear all viewcounts in the system!"
12243
  msgstr ""
12244
 
12245
- #: wppa-settings-autosave.php:6198
12246
  msgid "Reset IPTC"
12247
  msgstr ""
12248
 
12249
- #: wppa-settings-autosave.php:6199
12250
  #, fuzzy
12251
  msgid "Clear all IPTC data."
12252
  msgstr "Skjul IPTC data"
12253
 
12254
- #: wppa-settings-autosave.php:6200
12255
  msgid "WARNING: If checked, this will clear all IPTC data in the system!"
12256
  msgstr ""
12257
 
12258
- #: wppa-settings-autosave.php:6211
12259
  msgid "Reset EXIF"
12260
  msgstr ""
12261
 
12262
- #: wppa-settings-autosave.php:6212
12263
  #, fuzzy
12264
  msgid "Clear all EXIF data."
12265
  msgstr "Skjul EXIF data"
12266
 
12267
- #: wppa-settings-autosave.php:6213
12268
  msgid "WARNING: If checked, this will clear all EXIF data in the system!"
12269
  msgstr ""
12270
 
12271
- #: wppa-settings-autosave.php:6224
12272
  #, fuzzy
12273
  msgid "Apply New Photodesc"
12274
  msgstr "Se forside fotos"
12275
 
12276
- #: wppa-settings-autosave.php:6225
12277
  msgid "Apply New photo description on all photos in the system."
12278
  msgstr ""
12279
 
12280
- #: wppa-settings-autosave.php:6237
12281
  msgid "Append to photodesc"
12282
  msgstr ""
12283
 
12284
- #: wppa-settings-autosave.php:6238
12285
  #, fuzzy
12286
  msgid "Append this text to all photo descriptions."
12287
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
12288
 
12289
- #: wppa-settings-autosave.php:6252
12290
  msgid "Remove from photodesc"
12291
  msgstr ""
12292
 
12293
- #: wppa-settings-autosave.php:6253
12294
  #, fuzzy
12295
  msgid "Remove this text from all photo descriptions."
12296
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
12297
 
12298
- #: wppa-settings-autosave.php:6267
12299
  #, fuzzy
12300
  msgid "Remove empty albums"
12301
  msgstr "Le impostazioni sono state aggiornate"
12302
 
12303
- #: wppa-settings-autosave.php:6268
12304
  msgid "Removes albums that are not used."
12305
  msgstr ""
12306
 
12307
- #: wppa-settings-autosave.php:6280
12308
  msgid "Remove file-ext"
12309
  msgstr ""
12310
 
12311
- #: wppa-settings-autosave.php:6281
12312
  msgid "Remove possible file extension from photo name."
12313
  msgstr ""
12314
 
12315
- #: wppa-settings-autosave.php:6282
12316
  msgid ""
12317
  "This may be required for old photos, uploaded when the option in Table IX-D3 "
12318
  "was not yet available/selected."
12319
  msgstr ""
12320
 
12321
- #: wppa-settings-autosave.php:6293
12322
  msgid "Re-add file-ext"
12323
  msgstr ""
12324
 
12325
- #: wppa-settings-autosave.php:6294
12326
  msgid "Revert the <i>Remove file-ext</i> action."
12327
  msgstr ""
12328
 
12329
- #: wppa-settings-autosave.php:6306
12330
  msgid "Watermark all"
12331
  msgstr ""
12332
 
12333
- #: wppa-settings-autosave.php:6307
12334
  msgid "Apply watermark according to current settings to all photos."
12335
  msgstr ""
12336
 
12337
- #: wppa-settings-autosave.php:6308
12338
  msgid "See Table IX_F for the current watermark settings"
12339
  msgstr ""
12340
 
12341
- #: wppa-settings-autosave.php:6319
12342
  #, fuzzy
12343
  msgid "Create all autopages"
12344
  msgstr "Impossibile creare album. "
12345
 
12346
- #: wppa-settings-autosave.php:6320
12347
  msgid "Create all the pages to display slides individually."
12348
  msgstr ""
12349
 
12350
- #: wppa-settings-autosave.php:6321 wppa-settings-autosave.php:6335
12351
  msgid "See also Table IV-A10."
12352
  msgstr ""
12353
 
12354
- #: wppa-settings-autosave.php:6322
12355
  msgid ""
12356
  "Make sure you have a custom menu and the \"Automatically add new top-level "
12357
  "pages to this menu\" box UNticked!!"
12358
  msgstr ""
12359
 
12360
- #: wppa-settings-autosave.php:6333
12361
  #, fuzzy
12362
  msgid "Delete all autopages"
12363
  msgstr "Impossibile creare album. "
12364
 
12365
- #: wppa-settings-autosave.php:6334
12366
  msgid "Delete all the pages to display slides individually."
12367
  msgstr ""
12368
 
12369
- #: wppa-settings-autosave.php:6347
12370
  msgid "Leading zeroes"
12371
  msgstr ""
12372
 
12373
- #: wppa-settings-autosave.php:6348
12374
  msgid "If photoname numeric, add leading zeros"
12375
  msgstr ""
12376
 
12377
- #: wppa-settings-autosave.php:6349
12378
  msgid ""
12379
  "You can extend the name with leading zeros, so alphabetic sort becomes equal "
12380
  "to numeric sort order."
12381
  msgstr ""
12382
 
12383
- #: wppa-settings-autosave.php:6352
12384
  msgid "Total chars"
12385
  msgstr ""
12386
 
12387
- #: wppa-settings-autosave.php:6361
12388
  msgid "Add GPX tag"
12389
  msgstr ""
12390
 
12391
- #: wppa-settings-autosave.php:6362
12392
  msgid "Make sure photos with gpx data have a Gpx tag"
12393
  msgstr ""
12394
 
12395
- #: wppa-settings-autosave.php:6375 wppa-settings-autosave.php:7135
12396
  msgid "Optimize files"
12397
  msgstr ""
12398
 
12399
- #: wppa-settings-autosave.php:6376
12400
  msgid "Optimize with EWWW image optimizer"
12401
  msgstr ""
12402
 
12403
- #: wppa-settings-autosave.php:6389
12404
  #, fuzzy
12405
  msgid "Edit tag"
12406
  msgstr "N&aelig;ste billede"
12407
 
12408
- #: wppa-settings-autosave.php:6390
12409
  msgid "Globally change a tagname."
12410
  msgstr ""
12411
 
12412
- #: wppa-settings-autosave.php:6396
12413
  #, fuzzy
12414
  msgid "-select a tag-"
12415
  msgstr ""
12416
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
12417
  "di ricerca differente."
12418
 
12419
- #: wppa-settings-autosave.php:6402
12420
  msgid "Tag:"
12421
  msgstr ""
12422
 
12423
- #: wppa-settings-autosave.php:6403
12424
  msgid "Change to:"
12425
  msgstr ""
12426
 
12427
- #: wppa-settings-autosave.php:6412
12428
  msgid "Synchronize Cloudinary"
12429
  msgstr ""
12430
 
12431
- #: wppa-settings-autosave.php:6413
12432
  msgid "Removes/adds images in the cloud."
12433
  msgstr ""
12434
 
12435
- #: wppa-settings-autosave.php:6414
12436
  msgid "Removes old images and verifies/adds new images to Cloudinary."
12437
  msgstr ""
12438
 
12439
- #: wppa-settings-autosave.php:6415
12440
  msgid "See Table IX-K4.7 for the configured lifetime."
12441
  msgstr ""
12442
 
12443
- #: wppa-settings-autosave.php:6426
12444
  msgid "Fix tags"
12445
  msgstr ""
12446
 
12447
- #: wppa-settings-autosave.php:6427
12448
  msgid "Make sure photo tags format is uptodate"
12449
  msgstr ""
12450
 
12451
- #: wppa-settings-autosave.php:6428
12452
  msgid "Fixes tags to be conform current database rules."
12453
  msgstr ""
12454
 
12455
- #: wppa-settings-autosave.php:6439
12456
  msgid "Fix cats"
12457
  msgstr ""
12458
 
12459
- #: wppa-settings-autosave.php:6440
12460
  msgid "Make sure album cats format is uptodate"
12461
  msgstr ""
12462
 
12463
- #: wppa-settings-autosave.php:6441
12464
  msgid "Fixes cats to be conform current database rules."
12465
  msgstr ""
12466
 
12467
- #: wppa-settings-autosave.php:6467
12468
  #, fuzzy
12469
  msgid "Listings"
12470
  msgstr "Indstillinger"
12471
 
12472
- #: wppa-settings-autosave.php:6469
12473
  msgid "List Logfile"
12474
  msgstr ""
12475
 
12476
- #: wppa-settings-autosave.php:6470
12477
  msgid "Show the content of wppa+ (error) log."
12478
  msgstr ""
12479
 
12480
- #: wppa-settings-autosave.php:6474
12481
  msgid "Purge logfile"
12482
  msgstr ""
12483
 
12484
- #: wppa-settings-autosave.php:6483
12485
  #, fuzzy
12486
  msgid "List Ratings"
12487
  msgstr "Bed&oslash;mmelse: %s"
12488
 
12489
- #: wppa-settings-autosave.php:6484
12490
  #, fuzzy
12491
  msgid "Show the most recent ratings."
12492
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
12493
 
12494
- #: wppa-settings-autosave.php:6497
12495
  msgid "List Index"
12496
  msgstr ""
12497
 
12498
- #: wppa-settings-autosave.php:6498
12499
  msgid "Show the content if the index table."
12500
  msgstr ""
12501
 
12502
- #: wppa-settings-autosave.php:6502
12503
  msgid "Start at text:"
12504
  msgstr ""
12505
 
12506
- #: wppa-settings-autosave.php:6512
12507
  msgid "List active sessions"
12508
  msgstr ""
12509
 
12510
- #: wppa-settings-autosave.php:6513
12511
  msgid "Show the content of the sessions table."
12512
  msgstr ""
12513
 
12514
- #: wppa-settings-autosave.php:6546
12515
  msgid "Table IX:"
12516
  msgstr ""
12517
 
12518
- #: wppa-settings-autosave.php:6546
12519
  msgid "Miscellaneous:"
12520
  msgstr ""
12521
 
12522
- #: wppa-settings-autosave.php:6547
12523
  msgid "This table lists all settings that do not fit into an other table"
12524
  msgstr ""
12525
 
12526
- #: wppa-settings-autosave.php:6565
12527
  msgid "Internal engine related settings"
12528
  msgstr ""
12529
 
12530
- #: wppa-settings-autosave.php:6567
12531
  msgid "WPPA+ Filter priority"
12532
  msgstr ""
12533
 
12534
- #: wppa-settings-autosave.php:6568
12535
  msgid "Sets the priority of the wppa+ content filter."
12536
  msgstr ""
12537
 
12538
- #: wppa-settings-autosave.php:6569 wppa-settings-autosave.php:6578
12539
  msgid ""
12540
  "If you encounter conflicts with the theme or other plugins, increasing this "
12541
  "value sometimes helps. Use with great care!"
12542
  msgstr ""
12543
 
12544
- #: wppa-settings-autosave.php:6576
12545
  msgid "Do_shortcode priority"
12546
  msgstr ""
12547
 
12548
- #: wppa-settings-autosave.php:6577
12549
  msgid "Sets the priority of the do_shortcode() content filter."
12550
  msgstr ""
12551
 
12552
- #: wppa-settings-autosave.php:6585
12553
  #, fuzzy
12554
  msgid "WPPA shortcode at Filter priority"
12555
  msgstr "Lukkerhastighedsprioritet AE"
12556
 
12557
- #: wppa-settings-autosave.php:6586
12558
  msgid "Execute shortcode expansion on filter priority in posts and pages."
12559
  msgstr ""
12560
 
12561
- #: wppa-settings-autosave.php:6587 wppa-settings-autosave.php:6596
12562
  msgid "Use to fix certain layout problems"
12563
  msgstr ""
12564
 
12565
- #: wppa-settings-autosave.php:6594
12566
  msgid "WPPA shortcode at Filter priority widget"
12567
  msgstr ""
12568
 
12569
- #: wppa-settings-autosave.php:6595
12570
  msgid "Execute shortcode expansion on filter priority in widgets."
12571
  msgstr ""
12572
 
12573
- #: wppa-settings-autosave.php:6603
12574
  msgid "JPG image quality"
12575
  msgstr ""
12576
 
12577
- #: wppa-settings-autosave.php:6604
12578
  msgid "The jpg quality when photos are downsized"
12579
  msgstr ""
12580
 
12581
- #: wppa-settings-autosave.php:6605
12582
  msgid "The higher the number the better the quality but the larger the file"
12583
  msgstr ""
12584
 
12585
- #: wppa-settings-autosave.php:6606
12586
  msgid "Possible values 20..100"
12587
  msgstr ""
12588
 
12589
- #: wppa-settings-autosave.php:6613
12590
  msgid "Allow WPPA+ Debugging"
12591
  msgstr ""
12592
 
12593
- #: wppa-settings-autosave.php:6614
12594
  msgid "Allow the use of &amp;debug=.. in urls to this site."
12595
  msgstr ""
12596
 
12597
- #: wppa-settings-autosave.php:6615
12598
  msgid ""
12599
  "If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
12600
  "site will generate the display of special WPPA+ diagnostics, as well as php "
12601
  "warnings"
12602
  msgstr ""
12603
 
12604
- #: wppa-settings-autosave.php:6622
12605
  msgid "Auto continue"
12606
  msgstr ""
12607
 
12608
- #: wppa-settings-autosave.php:6623
12609
  msgid "Continue automatic after time out"
12610
  msgstr ""
12611
 
12612
- #: wppa-settings-autosave.php:6624
12613
  msgid ""
12614
  "If checked, an attempt will be made to restart an admin process when the "
12615
  "time is out."
12616
  msgstr ""
12617
 
12618
- #: wppa-settings-autosave.php:6632
12619
  msgid "Set max execution time here."
12620
  msgstr ""
12621
 
12622
- #: wppa-settings-autosave.php:6633
12623
  msgid ""
12624
  "If your php config does not properly set the max execution time, you can set "
12625
  "it here. Seconds, 0 means do not change."
12626
  msgstr ""
12627
 
12628
- #: wppa-settings-autosave.php:6634
12629
  msgid "A safe value is 45"
12630
  msgstr ""
12631
 
12632
- #: wppa-settings-autosave.php:6641
12633
  msgid "Feed use thumb"
12634
  msgstr ""
12635
 
12636
- #: wppa-settings-autosave.php:6642
12637
  msgid "Feeds use thumbnail pictures always."
12638
  msgstr ""
12639
 
12640
- #: wppa-settings-autosave.php:6650
12641
  msgid "Enable <i>in-line</i> settings"
12642
  msgstr ""
12643
 
12644
- #: wppa-settings-autosave.php:6651
12645
  msgid "Activates shortcode [wppa_set][/wppa_set]."
12646
  msgstr ""
12647
 
12648
- #: wppa-settings-autosave.php:6652
12649
  msgid ""
12650
  "Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
12651
  msgstr ""
12652
 
12653
- #: wppa-settings-autosave.php:6653
12654
  msgid ""
12655
  "Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
12656
  "sets the thumbnail type to vertical masonry style"
12657
  msgstr ""
12658
 
12659
- #: wppa-settings-autosave.php:6654
12660
  msgid "Do not forget to reset with [wppa_set][/wppa_set]"
12661
  msgstr ""
12662
 
12663
- #: wppa-settings-autosave.php:6655
12664
  msgid "Use with great care! There is no check on validity of values!"
12665
  msgstr ""
12666
 
12667
- #: wppa-settings-autosave.php:6662
12668
  msgid "Runtime modifyable settings"
12669
  msgstr ""
12670
 
12671
- #: wppa-settings-autosave.php:6663
12672
  msgid "The setting slugs that may be altered using [wppa_set] shortcode."
12673
  msgstr ""
12674
 
12675
- #: wppa-settings-autosave.php:6672
 
 
 
 
 
 
 
 
 
 
 
 
 
12676
  msgid "WPPA+ Admin related miscellaneous settings"
12677
  msgstr ""
12678
 
12679
- #: wppa-settings-autosave.php:6674
12680
  msgid "Allow HTML"
12681
  msgstr ""
12682
 
12683
- #: wppa-settings-autosave.php:6675
12684
  msgid "Allow HTML in album and photo descriptions."
12685
  msgstr ""
12686
 
12687
- #: wppa-settings-autosave.php:6676
12688
  msgid ""
12689
  "If checked: html is allowed. WARNING: No checks on syntax, it is your own "
12690
  "responsability to close tags properly!"
12691
  msgstr ""
12692
 
12693
- #: wppa-settings-autosave.php:6683
12694
  msgid "Check tag balance"
12695
  msgstr ""
12696
 
12697
- #: wppa-settings-autosave.php:6684
12698
  msgid "Check if the HTML tags are properly closed: \"balanced\"."
12699
  msgstr ""
12700
 
12701
- #: wppa-settings-autosave.php:6685
12702
  msgid ""
12703
  "If the HTML tags in an album or a photo description are not in balance, the "
12704
  "description is not updated, an errormessage is displayed"
12705
  msgstr ""
12706
 
12707
- #: wppa-settings-autosave.php:6692
12708
  msgid "Use WP editor"
12709
  msgstr ""
12710
 
12711
- #: wppa-settings-autosave.php:6693
12712
  msgid "Use the wp editor for multiline text fields."
12713
  msgstr ""
12714
 
12715
- #: wppa-settings-autosave.php:6701
12716
  msgid "Album sel hierarchic"
12717
  msgstr ""
12718
 
12719
- #: wppa-settings-autosave.php:6702
12720
  msgid "Show albums with (grand)parents in selection lists."
12721
  msgstr ""
12722
 
12723
- #: wppa-settings-autosave.php:6710
12724
  msgid "Page sel hierarchic"
12725
  msgstr ""
12726
 
12727
- #: wppa-settings-autosave.php:6711
12728
  msgid "Show pages with (grand)parents in selection lists."
12729
  msgstr ""
12730
 
12731
- #: wppa-settings-autosave.php:6720
12732
  msgid "Photo admin page size"
12733
  msgstr ""
12734
 
12735
- #: wppa-settings-autosave.php:6721
12736
  msgid ""
12737
  "The number of photos per page on the <br/>Edit Album -> Manage photos and "
12738
  "Edit Photos admin pages."
12739
  msgstr ""
12740
 
12741
- #: wppa-settings-autosave.php:6731
12742
  #, fuzzy
12743
  msgid "Comment admin page size"
12744
  msgstr "%d kommentarer"
12745
 
12746
- #: wppa-settings-autosave.php:6732
12747
  msgid "The number of comments per page on the Comments admin pages."
12748
  msgstr ""
12749
 
12750
- #: wppa-settings-autosave.php:6742
12751
  msgid "Geo info edit"
12752
  msgstr ""
12753
 
12754
- #: wppa-settings-autosave.php:6743
12755
  msgid "Lattitude and longitude may be edited in photo admin."
12756
  msgstr ""
12757
 
12758
- #: wppa-settings-autosave.php:6751
12759
  msgid "Admin bar menu admin"
12760
  msgstr ""
12761
 
12762
- #: wppa-settings-autosave.php:6752
12763
  msgid "Show menu on admin bar on admin pages."
12764
  msgstr ""
12765
 
12766
- #: wppa-settings-autosave.php:6760
12767
  msgid "Admin bar menu frontend"
12768
  msgstr ""
12769
 
12770
- #: wppa-settings-autosave.php:6761
12771
  msgid "Show menu on admin bar on frontend pages."
12772
  msgstr ""
12773
 
12774
- #: wppa-settings-autosave.php:6769
12775
  msgid "Add shortcode to posts"
12776
  msgstr ""
12777
 
12778
- #: wppa-settings-autosave.php:6770
12779
  msgid "Add a shortcode to the end of all posts."
12780
  msgstr ""
12781
 
12782
- #: wppa-settings-autosave.php:6778
12783
  msgid "Shortcode to add"
12784
  msgstr ""
12785
 
12786
- #: wppa-settings-autosave.php:6779
12787
  msgid "The shortcode to be added to the posts."
12788
  msgstr ""
12789
 
12790
- #: wppa-settings-autosave.php:6787
12791
  msgid "We use Scripts"
12792
  msgstr ""
12793
 
12794
- #: wppa-settings-autosave.php:6788
12795
  msgid "Use scripting syntax in shortcode generator."
12796
  msgstr ""
12797
 
12798
- #: wppa-settings-autosave.php:6789
12799
  msgid ""
12800
  "This setting defines if the shortcode generator outputs old style script "
12801
  "tags or new style shortcodes."
12802
  msgstr ""
12803
 
12804
- #: wppa-settings-autosave.php:6797
12805
  msgid "Import page prieviews"
12806
  msgstr ""
12807
 
12808
- #: wppa-settings-autosave.php:6798
12809
  msgid "Show thumbnail previews in import admin page."
12810
  msgstr ""
12811
 
12812
- #: wppa-settings-autosave.php:6806
12813
  #, fuzzy
12814
  msgid "Upload audiostub"
12815
  msgstr "Indsend foto"
12816
 
12817
- #: wppa-settings-autosave.php:6807
12818
  msgid "Upload a new audio stub file"
12819
  msgstr ""
12820
 
12821
- #: wppa-settings-autosave.php:6811
12822
  #, fuzzy
12823
  msgid "Upload audio stub image"
12824
  msgstr "Uploaded fil er ikke et billede"
12825
 
12826
- #: wppa-settings-autosave.php:6816
12827
  msgid "Confirm create"
12828
  msgstr ""
12829
 
12830
- #: wppa-settings-autosave.php:6817
12831
  msgid "Display confirmation dialog before creating album."
12832
  msgstr ""
12833
 
12834
- #: wppa-settings-autosave.php:6826
12835
  msgid "SEO related settings"
12836
  msgstr ""
12837
 
12838
- #: wppa-settings-autosave.php:6828
12839
  msgid "Meta on page"
12840
  msgstr ""
12841
 
12842
- #: wppa-settings-autosave.php:6829
12843
  msgid "Meta tags for photos on the page."
12844
  msgstr ""
12845
 
12846
- #: wppa-settings-autosave.php:6830
12847
  msgid ""
12848
  "If checked, the header of the page will contain metatags that refer to "
12849
  "featured photos on the page in the page context."
12850
  msgstr ""
12851
 
12852
- #: wppa-settings-autosave.php:6837
12853
  msgid "Meta all"
12854
  msgstr ""
12855
 
12856
- #: wppa-settings-autosave.php:6838
12857
  #, fuzzy
12858
  msgid "Meta tags for all featured photos."
12859
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
12860
 
12861
- #: wppa-settings-autosave.php:6839
12862
  msgid ""
12863
  "If checked, the header of the page will contain metatags that refer to all "
12864
  "featured photo files."
12865
  msgstr ""
12866
 
12867
- #: wppa-settings-autosave.php:6840
12868
  msgid ""
12869
  "If you have many featured photos, you might wish to uncheck this item to "
12870
  "reduce the size of the page header."
12871
  msgstr ""
12872
 
12873
- #: wppa-settings-autosave.php:6847
12874
  msgid "Add og meta tags"
12875
  msgstr ""
12876
 
12877
- #: wppa-settings-autosave.php:6848
12878
  msgid "Add og meta tags to the page header."
12879
  msgstr ""
12880
 
12881
- #: wppa-settings-autosave.php:6851
12882
  msgid ""
12883
  "Turning this off may affect the functionality of social media items in the "
12884
  "share box that rely on open graph tags information."
12885
  msgstr ""
12886
 
12887
- #: wppa-settings-autosave.php:6857
12888
  msgid "Image Alt attribute type"
12889
  msgstr ""
12890
 
12891
- #: wppa-settings-autosave.php:6858
12892
  msgid "Select kind of HTML alt=\"\" content for images."
12893
  msgstr ""
12894
 
12895
- #: wppa-settings-autosave.php:6861
12896
  #, fuzzy
12897
  msgid "photo name"
12898
  msgstr "Indtast foto navn"
12899
 
12900
- #: wppa-settings-autosave.php:6861
12901
  msgid "name without file-ext"
12902
  msgstr ""
12903
 
12904
- #: wppa-settings-autosave.php:6861
12905
  #, fuzzy
12906
  msgid "set in album admin"
12907
  msgstr ""
12908
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
12909
  "di ricerca differente."
12910
 
12911
- #: wppa-settings-autosave.php:6868
12912
  msgid "New Album and New Photo related miscellaneous settings"
12913
  msgstr ""
12914
 
12915
- #: wppa-settings-autosave.php:6871
12916
  msgid "Maximum time an album is indicated as New!"
12917
  msgstr ""
12918
 
12919
- #: wppa-settings-autosave.php:6875 wppa-settings-autosave.php:6916
12920
  #, fuzzy
12921
  msgid "One hour"
12922
  msgstr "1 time"
12923
 
12924
- #: wppa-settings-autosave.php:6876 wppa-settings-autosave.php:6917
12925
- #: wppa-settings-autosave.php:7907
12926
  #, fuzzy
12927
  msgid "One day"
12928
  msgstr "1 dag"
12929
 
12930
- #: wppa-settings-autosave.php:6877 wppa-settings-autosave.php:6918
12931
  #, fuzzy
12932
  msgid "Two days"
12933
  msgstr "dage"
12934
 
12935
- #: wppa-settings-autosave.php:6878 wppa-settings-autosave.php:6919
12936
  msgid "Three days"
12937
  msgstr ""
12938
 
12939
- #: wppa-settings-autosave.php:6879 wppa-settings-autosave.php:6920
12940
  #, fuzzy
12941
  msgid "Four days"
12942
  msgstr "dage"
12943
 
12944
- #: wppa-settings-autosave.php:6880 wppa-settings-autosave.php:6921
12945
  #, fuzzy
12946
  msgid "Five days"
12947
  msgstr "dage"
12948
 
12949
- #: wppa-settings-autosave.php:6881 wppa-settings-autosave.php:6922
12950
  #, fuzzy
12951
  msgid "Six days"
12952
  msgstr "dage"
12953
 
12954
- #: wppa-settings-autosave.php:6882 wppa-settings-autosave.php:6923
12955
- #: wppa-settings-autosave.php:7908
12956
  #, fuzzy
12957
  msgid "One week"
12958
  msgstr "1 uge"
12959
 
12960
- #: wppa-settings-autosave.php:6883 wppa-settings-autosave.php:6924
12961
  msgid "Eight days"
12962
  msgstr ""
12963
 
12964
- #: wppa-settings-autosave.php:6884 wppa-settings-autosave.php:6925
12965
  #, fuzzy
12966
  msgid "Nine days"
12967
  msgstr "dage"
12968
 
12969
- #: wppa-settings-autosave.php:6885 wppa-settings-autosave.php:6926
12970
  #, fuzzy
12971
  msgid "Ten days"
12972
  msgstr "dage"
12973
 
12974
- #: wppa-settings-autosave.php:6886 wppa-settings-autosave.php:6927
12975
  #, fuzzy
12976
  msgid "Two weeks"
12977
  msgstr "uger"
12978
 
12979
- #: wppa-settings-autosave.php:6887 wppa-settings-autosave.php:6928
12980
  #, fuzzy
12981
  msgid "Three weeks"
12982
  msgstr "uger"
12983
 
12984
- #: wppa-settings-autosave.php:6888 wppa-settings-autosave.php:6929
12985
  #, fuzzy
12986
  msgid "Four weeks"
12987
  msgstr "uger"
12988
 
12989
- #: wppa-settings-autosave.php:6889 wppa-settings-autosave.php:6930
12990
- #: wppa-settings-autosave.php:7909
12991
  #, fuzzy
12992
  msgid "One month"
12993
  msgstr "1 m&aring;ned"
12994
 
12995
- #: wppa-settings-autosave.php:6911
12996
  #, fuzzy
12997
  msgid "New Photo"
12998
  msgstr "N&aelig;ste billede"
12999
 
13000
- #: wppa-settings-autosave.php:6912
13001
  msgid "Maximum time a photo is indicated as New!"
13002
  msgstr ""
13003
 
13004
- #: wppa-settings-autosave.php:6952
13005
  msgid "Limit LasTen New"
13006
  msgstr ""
13007
 
13008
- #: wppa-settings-autosave.php:6953
13009
  msgid "Limits the LasTen photos to those that are 'New'."
13010
  msgstr ""
13011
 
13012
- #: wppa-settings-autosave.php:6954
13013
  msgid ""
13014
  "If you tick this box and configured the new photo time, you can even limit "
13015
  "the number by the setting in Table I-F7, or set that number to an unlikely "
13016
  "high value."
13017
  msgstr ""
13018
 
13019
- #: wppa-settings-autosave.php:6961
13020
  msgid "Apply Newphoto desc"
13021
  msgstr ""
13022
 
13023
- #: wppa-settings-autosave.php:6962
13024
  msgid "Give each new photo a standard description."
13025
  msgstr ""
13026
 
13027
- #: wppa-settings-autosave.php:6963
13028
  msgid ""
13029
  "If checked, each new photo will get the description (template) as specified "
13030
  "in the next item."
13031
  msgstr ""
13032
 
13033
- #: wppa-settings-autosave.php:6970
13034
  #, fuzzy
13035
  msgid "New photo desc"
13036
  msgstr "Nyt foto indsendt: %s"
13037
 
13038
- #: wppa-settings-autosave.php:6971
13039
  msgid "The description (template) to add to a new photo."
13040
  msgstr ""
13041
 
13042
- #: wppa-settings-autosave.php:6972
13043
  #, fuzzy
13044
  msgid "Enter the default description."
13045
  msgstr "Inserisci / modifica la descrizione per questo album."
13046
 
13047
- #: wppa-settings-autosave.php:6973
13048
  msgid "If you use html, please check item A-1 of this table."
13049
  msgstr ""
13050
 
13051
- #: wppa-settings-autosave.php:6981
13052
  msgid "New albums are created with this upload limit."
13053
  msgstr ""
13054
 
13055
- #: wppa-settings-autosave.php:6982
13056
  msgid ""
13057
  "Administrators can change the limit settings in the \"Edit Album Information"
13058
  "\" admin page."
13059
  msgstr ""
13060
 
13061
- #: wppa-settings-autosave.php:6999
13062
  msgid "Default parent"
13063
  msgstr ""
13064
 
13065
- #: wppa-settings-autosave.php:7000
13066
  msgid "The parent album of new albums."
13067
  msgstr ""
13068
 
13069
- #: wppa-settings-autosave.php:7017
13070
  msgid "Default parent always"
13071
  msgstr ""
13072
 
13073
- #: wppa-settings-autosave.php:7018
13074
  msgid ""
13075
  "The parent album of new albums is always the default, except for "
13076
  "administrators."
13077
  msgstr ""
13078
 
13079
- #: wppa-settings-autosave.php:7026
13080
  msgid "Show album full"
13081
  msgstr ""
13082
 
13083
- #: wppa-settings-autosave.php:7027
13084
  msgid "Show the Upload limit reached message if appropriate."
13085
  msgstr ""
13086
 
13087
- #: wppa-settings-autosave.php:7035
13088
  #, fuzzy
13089
  msgid "Grant an album"
13090
  msgstr "Impossibile creare album. "
13091
 
13092
- #: wppa-settings-autosave.php:7036
13093
  msgid "Create an album for each user logging in."
13094
  msgstr ""
13095
 
13096
- #: wppa-settings-autosave.php:7044
13097
  #, fuzzy
13098
  msgid "Grant album name"
13099
  msgstr ""
13100
  "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
13101
  "per i titoli delle copertine degli album."
13102
 
13103
- #: wppa-settings-autosave.php:7045
13104
  msgid "The name to be used for the album."
13105
  msgstr ""
13106
 
13107
- #: wppa-settings-autosave.php:7048
13108
  #, fuzzy
13109
  msgid "Login name"
13110
  msgstr "Dit navn"
13111
 
13112
- #: wppa-settings-autosave.php:7048 wppa-upldr-widget.php:181
13113
  msgid "Display name"
13114
  msgstr ""
13115
 
13116
- #: wppa-settings-autosave.php:7048
13117
  msgid "Id"
13118
  msgstr ""
13119
 
13120
- #: wppa-settings-autosave.php:7048
13121
  msgid "Firstname Lastname"
13122
  msgstr ""
13123
 
13124
- #: wppa-settings-autosave.php:7055
13125
  msgid "Grant parent"
13126
  msgstr ""
13127
 
13128
- #: wppa-settings-autosave.php:7056
13129
  msgid "The parent album of the auto created albums."
13130
  msgstr ""
13131
 
13132
- #: wppa-settings-autosave.php:7073
13133
  #, fuzzy
13134
  msgid "Max user albums"
13135
  msgstr ""
13136
  "Puoi creare dei vari album che contengono delle foto così come creare allo "
13137
  "stesso tempo dei sotto-album."
13138
 
13139
- #: wppa-settings-autosave.php:7074
13140
  msgid "The max number of albums a user can create."
13141
  msgstr ""
13142
 
13143
- #: wppa-settings-autosave.php:7075
13144
  msgid ""
13145
  "The maximum number of albums a user can create when he is not admin and "
13146
  "owner only is active"
13147
  msgstr ""
13148
 
13149
- #: wppa-settings-autosave.php:7076
13150
  msgid "A number of 0 means No limit"
13151
  msgstr ""
13152
 
13153
- #: wppa-settings-autosave.php:7083
13154
  #, fuzzy
13155
  msgid "Default photo name"
13156
  msgstr "Standard foto album for"
13157
 
13158
- #: wppa-settings-autosave.php:7084
13159
  msgid "Select the way the name of a new uploaded photo should be determined."
13160
  msgstr ""
13161
 
13162
- #: wppa-settings-autosave.php:7087
13163
  msgid "Filename"
13164
  msgstr ""
13165
 
13166
- #: wppa-settings-autosave.php:7088
13167
  msgid "Filename without extension"
13168
  msgstr ""
13169
 
13170
- #: wppa-settings-autosave.php:7089
13171
  msgid "IPTC Tag 2#005 (Graphic name)"
13172
  msgstr ""
13173
 
13174
- #: wppa-settings-autosave.php:7090
13175
  msgid "IPTC Tag 2#120 (Caption)"
13176
  msgstr ""
13177
 
13178
- #: wppa-settings-autosave.php:7091
13179
  msgid "No name at all"
13180
  msgstr ""
13181
 
13182
- #: wppa-settings-autosave.php:7099
13183
  #, fuzzy
13184
  msgid "Default coverphoto"
13185
  msgstr "Se forside foto"
13186
 
13187
- #: wppa-settings-autosave.php:7100
13188
  msgid "Name of photofile to become cover image"
13189
  msgstr ""
13190
 
13191
- #: wppa-settings-autosave.php:7101
13192
  msgid ""
13193
  "If you name a photofile like this setting before upload, it will become the "
13194
  "coverimage automaticly."
13195
  msgstr ""
13196
 
13197
- #: wppa-settings-autosave.php:7108
13198
  msgid "Copy Timestamp"
13199
  msgstr ""
13200
 
13201
- #: wppa-settings-autosave.php:7109
13202
  msgid "Copy timestamp when copying photo."
13203
  msgstr ""
13204
 
13205
- #: wppa-settings-autosave.php:7110
13206
  msgid "If checked, the copied photo is not \"new\""
13207
  msgstr ""
13208
 
13209
- #: wppa-settings-autosave.php:7117
13210
  msgid "Copy Owner"
13211
  msgstr ""
13212
 
13213
- #: wppa-settings-autosave.php:7118
13214
  msgid "Copy the owner when copying photo."
13215
  msgstr ""
13216
 
13217
- #: wppa-settings-autosave.php:7126
13218
  msgid "FE Albums public"
13219
  msgstr ""
13220
 
13221
- #: wppa-settings-autosave.php:7127
13222
  msgid "Frontend created albums are --- public ---"
13223
  msgstr ""
13224
 
13225
- #: wppa-settings-autosave.php:7136
13226
  msgid "Optimize image files right after upload/import"
13227
  msgstr ""
13228
 
13229
- #: wppa-settings-autosave.php:7137
13230
  msgid "This option requires the plugin EWWW Image Optimizer to be activated"
13231
  msgstr ""
13232
 
13233
- #: wppa-settings-autosave.php:7144
13234
  #, fuzzy
13235
  msgid "Default album linktype"
13236
  msgstr "Standard foto album for"
13237
 
13238
- #: wppa-settings-autosave.php:7145
13239
  msgid "The album linktype for new albums"
13240
  msgstr ""
13241
 
13242
- #: wppa-settings-autosave.php:7164
13243
  msgid "Search Albums and Photos related settings"
13244
  msgstr ""
13245
 
13246
- #: wppa-settings-autosave.php:7166
13247
  #, fuzzy
13248
  msgid "Search page"
13249
  msgstr "Cerca"
13250
 
13251
- #: wppa-settings-autosave.php:7167
13252
  msgid "Display the search results on page."
13253
  msgstr ""
13254
 
13255
- #: wppa-settings-autosave.php:7168
13256
  #, php-format
13257
  msgid ""
13258
  "Select the page to be used to display search results. The page MUST contain "
13259
  "%%wppa%% or [wppa][/wppa]."
13260
  msgstr ""
13261
 
13262
- #: wppa-settings-autosave.php:7169
13263
  msgid "You may give it the title \"Search results\" or something alike."
13264
  msgstr ""
13265
 
13266
- #: wppa-settings-autosave.php:7170
13267
  msgid ""
13268
  "Or you ou may use the standard page on which you display the generic album."
13269
  msgstr ""
13270
 
13271
- #: wppa-settings-autosave.php:7203
13272
  msgid "Exclude separate"
13273
  msgstr ""
13274
 
13275
- #: wppa-settings-autosave.php:7204
13276
  #, fuzzy
13277
  msgid "Do not search 'separate' albums."
13278
  msgstr "Impossibile creare album. "
13279
 
13280
- #: wppa-settings-autosave.php:7205
13281
  msgid ""
13282
  "When checked, albums (and photos in them) that have the parent set to --- "
13283
  "separate --- will be excluded from being searched."
13284
  msgstr ""
13285
 
13286
- #: wppa-settings-autosave.php:7212
13287
  msgid "Include tags"
13288
  msgstr ""
13289
 
13290
- #: wppa-settings-autosave.php:7213
13291
  msgid "Do also search the photo tags."
13292
  msgstr ""
13293
 
13294
- #: wppa-settings-autosave.php:7214
13295
  msgid "When checked, the tags of the photo will also be searched."
13296
  msgstr ""
13297
 
13298
- #: wppa-settings-autosave.php:7221
13299
  msgid "Include categories"
13300
  msgstr ""
13301
 
13302
- #: wppa-settings-autosave.php:7222
13303
  msgid "Do also search the album categories."
13304
  msgstr ""
13305
 
13306
- #: wppa-settings-autosave.php:7223
13307
  msgid "When checked, the categories of the album will also be searched."
13308
  msgstr ""
13309
 
13310
- #: wppa-settings-autosave.php:7230
13311
  #, fuzzy
13312
  msgid "Include comments"
13313
  msgstr "%d kommentarer"
13314
 
13315
- #: wppa-settings-autosave.php:7231
13316
  msgid "Do also search the comments on photos."
13317
  msgstr ""
13318
 
13319
- #: wppa-settings-autosave.php:7232
13320
  msgid "When checked, the comments of the photos will also be searched."
13321
  msgstr ""
13322
 
13323
- #: wppa-settings-autosave.php:7239
13324
  #, fuzzy
13325
  msgid "Photos only"
13326
  msgstr "Foto"
13327
 
13328
- #: wppa-settings-autosave.php:7240
13329
  msgid "Search for photos only."
13330
  msgstr ""
13331
 
13332
- #: wppa-settings-autosave.php:7241
13333
  msgid "When checked, only photos will be searched for."
13334
  msgstr ""
13335
 
13336
- #: wppa-settings-autosave.php:7256
13337
  msgid "Max albums found"
13338
  msgstr ""
13339
 
13340
- #: wppa-settings-autosave.php:7257
13341
  msgid "The maximum number of albums to be displayed."
13342
  msgstr ""
13343
 
13344
- #: wppa-settings-autosave.php:7265
13345
  #, fuzzy
13346
  msgid "Max photos found"
13347
  msgstr ""
13348
  "Ingen album eller fotos fundet der svarer til dine s&oslash;ge kriterier."
13349
 
13350
- #: wppa-settings-autosave.php:7266
13351
  msgid "The maximum number of photos to be displayed."
13352
  msgstr ""
13353
 
13354
- #: wppa-settings-autosave.php:7274
13355
  msgid "Tags OR only"
13356
  msgstr ""
13357
 
13358
- #: wppa-settings-autosave.php:7275
13359
  msgid "No and / or buttons"
13360
  msgstr ""
13361
 
13362
- #: wppa-settings-autosave.php:7276
13363
  msgid ""
13364
  "Hide the and/or radiobuttons and do the or method in the multitag widget and "
13365
  "shortcode."
13366
  msgstr ""
13367
 
13368
- #: wppa-settings-autosave.php:7283
13369
  msgid "Floating searchtoken"
13370
  msgstr ""
13371
 
13372
- #: wppa-settings-autosave.php:7284
13373
  msgid "A match need not start at the first char."
13374
  msgstr ""
13375
 
13376
- #: wppa-settings-autosave.php:7285
13377
  msgid ""
13378
  "A match is found while searching also when the entered token is somewhere in "
13379
  "the middle of a word."
13380
  msgstr ""
13381
 
13382
- #: wppa-settings-autosave.php:7286
13383
  msgid "This works in indexed search only!"
13384
  msgstr ""
13385
 
13386
- #: wppa-settings-autosave.php:7293
13387
  #, fuzzy
13388
  msgid "Search results display"
13389
  msgstr "Risultati della ricerca per: %s"
13390
 
13391
- #: wppa-settings-autosave.php:7294
13392
  msgid "Select the way the search results should be displayed."
13393
  msgstr ""
13394
 
13395
- #: wppa-settings-autosave.php:7295
13396
  msgid ""
13397
  "If you select anything different from \"Albums and thumbnails\", \"Photos "
13398
  "only\" is assumed (Table IX-E6)."
13399
  msgstr ""
13400
 
13401
- #: wppa-settings-autosave.php:7297
13402
  #, fuzzy
13403
  msgid "Albums and thumbnails"
13404
  msgstr "Se"
13405
 
13406
- #: wppa-settings-autosave.php:7297
13407
  #, fuzzy
13408
  msgid "Slideonly slideshow"
13409
  msgstr "Slideshow barra laterale"
13410
 
13411
- #: wppa-settings-autosave.php:7304
13412
  msgid "Name max length"
13413
  msgstr ""
13414
 
13415
- #: wppa-settings-autosave.php:7305
13416
  msgid "Max length of displayed photonames in supersearch selectionlist"
13417
  msgstr ""
13418
 
13419
- #: wppa-settings-autosave.php:7306 wppa-settings-autosave.php:7315
13420
  msgid ""
13421
  "To limit the length of the selectionlist, enter the number of characters to "
13422
  "show."
13423
  msgstr ""
13424
 
13425
- #: wppa-settings-autosave.php:7313
13426
  msgid "Text max length"
13427
  msgstr ""
13428
 
13429
- #: wppa-settings-autosave.php:7314
13430
  msgid "Max length of displayed photo text in supersearch selectionlist"
13431
  msgstr ""
13432
 
13433
- #: wppa-settings-autosave.php:7322
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13434
  msgid "Watermark related settings"
13435
  msgstr ""
13436
 
13437
- #: wppa-settings-autosave.php:7325
13438
  msgid "Enable the application of watermarks."
13439
  msgstr ""
13440
 
13441
- #: wppa-settings-autosave.php:7326
13442
  msgid "If checked, photos can be watermarked during upload / import."
13443
  msgstr ""
13444
 
13445
- #: wppa-settings-autosave.php:7335
13446
  #, fuzzy
13447
  msgid "Watermark file"
13448
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13449
 
13450
- #: wppa-settings-autosave.php:7336
13451
  msgid "The default watermarkfile to be used."
13452
  msgstr ""
13453
 
13454
- #: wppa-settings-autosave.php:7337
13455
  msgid "Watermark files are of type png and reside in"
13456
  msgstr ""
13457
 
13458
- #: wppa-settings-autosave.php:7338
13459
  msgid ""
13460
  "A suitable watermarkfile typically consists of a transparent background and "
13461
  "a black text or drawing."
13462
  msgstr ""
13463
 
13464
- #: wppa-settings-autosave.php:7340
13465
  msgid ""
13466
  "You may also select one of the textual watermark types at the bottom of the "
13467
  "selection list."
13468
  msgstr ""
13469
 
13470
- #: wppa-settings-autosave.php:7344
13471
  #, fuzzy
13472
  msgid "position:"
13473
  msgstr "Position:"
13474
 
13475
- #: wppa-settings-autosave.php:7350
13476
  #, fuzzy
13477
  msgid "Upload watermark"
13478
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13479
 
13480
- #: wppa-settings-autosave.php:7351
13481
  #, fuzzy
13482
  msgid "Upload a new watermark file"
13483
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13484
 
13485
- #: wppa-settings-autosave.php:7355
13486
  #, fuzzy
13487
  msgid "Upload watermark image"
13488
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13489
 
13490
- #: wppa-settings-autosave.php:7360
13491
  msgid "Watermark opacity image"
13492
  msgstr ""
13493
 
13494
- #: wppa-settings-autosave.php:7361
13495
  msgid "You can set the intensity of image watermarks here."
13496
  msgstr ""
13497
 
13498
- #: wppa-settings-autosave.php:7362 wppa-settings-autosave.php:7447
13499
  msgid ""
13500
  "The higher the number, the intenser the watermark. Value must be > 0 and <= "
13501
  "100."
13502
  msgstr ""
13503
 
13504
- #: wppa-settings-autosave.php:7369
13505
  #, fuzzy
13506
  msgid "Textual watermark style"
13507
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13508
 
13509
- #: wppa-settings-autosave.php:7370
13510
  msgid "The way the textual watermarks look like"
13511
  msgstr ""
13512
 
13513
- #: wppa-settings-autosave.php:7374
13514
  msgid "TV subtitle style"
13515
  msgstr ""
13516
 
13517
- #: wppa-settings-autosave.php:7374
13518
  msgid "White text on black background"
13519
  msgstr ""
13520
 
13521
- #: wppa-settings-autosave.php:7374
13522
  msgid "Black text on white background"
13523
  msgstr ""
13524
 
13525
- #: wppa-settings-autosave.php:7374
13526
  msgid "Reverse TV style (Utopia)"
13527
  msgstr ""
13528
 
13529
- #: wppa-settings-autosave.php:7374
13530
  msgid "White on transparent background"
13531
  msgstr ""
13532
 
13533
- #: wppa-settings-autosave.php:7374
13534
  msgid "Black on transparent background"
13535
  msgstr ""
13536
 
13537
- #: wppa-settings-autosave.php:7384
13538
  msgid "Predefined watermark text"
13539
  msgstr ""
13540
 
13541
- #: wppa-settings-autosave.php:7385
13542
  msgid "The text to use when --- pre-defined --- is selected."
13543
  msgstr ""
13544
 
13545
- #: wppa-settings-autosave.php:7386
13546
  msgid "You may use the following keywords:"
13547
  msgstr ""
13548
 
13549
- #: wppa-settings-autosave.php:7387
13550
  msgid "w#site, w#owner, w#name, w#filename"
13551
  msgstr ""
13552
 
13553
- #: wppa-settings-autosave.php:7394
13554
  #, fuzzy
13555
  msgid "Textual watermark font"
13556
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13557
 
13558
- #: wppa-settings-autosave.php:7395
13559
  msgid "The font to use with textusl watermarks."
13560
  msgstr ""
13561
 
13562
- #: wppa-settings-autosave.php:7396
13563
  msgid "Except for the system font, are font files of type ttf and reside in"
13564
  msgstr ""
13565
 
13566
- #: wppa-settings-autosave.php:7424
13567
  #, fuzzy
13568
  msgid "Textual watermark font size"
13569
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13570
 
13571
- #: wppa-settings-autosave.php:7425
13572
  msgid "You can set the size of the truetype fonts only."
13573
  msgstr ""
13574
 
13575
- #: wppa-settings-autosave.php:7426
13576
  msgid ""
13577
  "System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
13578
  "value > 5 will be treated as 5."
13579
  msgstr ""
13580
 
13581
- #: wppa-settings-autosave.php:7427
13582
  msgid ""
13583
  "Truetype fonts can have any positive integer size, if your PHPs GD version "
13584
  "is 1, in pixels, in GD2 in points."
13585
  msgstr ""
13586
 
13587
- #: wppa-settings-autosave.php:7428
13588
  msgid "It is unclear howmany pixels a point is..."
13589
  msgstr ""
13590
 
13591
- #: wppa-settings-autosave.php:7435
13592
  #, fuzzy
13593
  msgid "Upload watermark font"
13594
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13595
 
13596
- #: wppa-settings-autosave.php:7436
13597
  #, fuzzy
13598
  msgid "Upload a new watermark font file"
13599
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13600
 
13601
- #: wppa-settings-autosave.php:7437
13602
  msgid ""
13603
  "Upload truetype fonts (.ttf) only, and test if they work on your server "
13604
  "platform."
13605
  msgstr ""
13606
 
13607
- #: wppa-settings-autosave.php:7440
13608
  #, fuzzy
13609
  msgid "Upload TrueType font"
13610
  msgstr "Indsend foto"
13611
 
13612
- #: wppa-settings-autosave.php:7445
13613
  msgid "Watermark opacity text"
13614
  msgstr ""
13615
 
13616
- #: wppa-settings-autosave.php:7446
13617
  msgid "You can set the intensity of a text watermarks here."
13618
  msgstr ""
13619
 
13620
- #: wppa-settings-autosave.php:7455
13621
  msgid "A real life preview. To update: refresh the page."
13622
  msgstr ""
13623
 
13624
- #: wppa-settings-autosave.php:7466
13625
  #, fuzzy
13626
  msgid "Watermark thumbnails"
13627
  msgstr "Se"
13628
 
13629
- #: wppa-settings-autosave.php:7467
13630
  msgid "Watermark also the thumbnail image files."
13631
  msgstr ""
13632
 
13633
- #: wppa-settings-autosave.php:7475
13634
  msgid "Slideshow elements sequence order settings"
13635
  msgstr ""
13636
 
13637
- #: wppa-settings-autosave.php:7481 wppa-settings-autosave.php:7527
13638
  #, fuzzy
13639
  msgid "StartStop"
13640
  msgstr "Start"
13641
 
13642
- #: wppa-settings-autosave.php:7482 wppa-settings-autosave.php:7528
13643
  msgid "SlideFrame"
13644
  msgstr ""
13645
 
13646
- #: wppa-settings-autosave.php:7484
13647
  msgid "Desc"
13648
  msgstr ""
13649
 
13650
- #: wppa-settings-autosave.php:7487 wppa-settings-autosave.php:7532
13651
  msgid "FilmStrip"
13652
  msgstr ""
13653
 
13654
- #: wppa-settings-autosave.php:7488 wppa-settings-autosave.php:7533
13655
  msgid "Browsebar"
13656
  msgstr ""
13657
 
13658
- #: wppa-settings-autosave.php:7490 wppa-settings-autosave.php:7535
13659
  #, fuzzy
13660
  msgid "IPTC data"
13661
  msgstr "Ingen IPTC data"
13662
 
13663
- #: wppa-settings-autosave.php:7491 wppa-settings-autosave.php:7536
13664
  #, fuzzy
13665
  msgid "EXIF data"
13666
  msgstr "Ingen EXIF data"
13667
 
13668
- #: wppa-settings-autosave.php:7492 wppa-settings-autosave.php:7537
13669
  #, fuzzy
13670
  msgid "Share box"
13671
  msgstr "Condividi su Facebook"
13672
 
13673
- #: wppa-settings-autosave.php:7494 wppa-settings-autosave.php:7539
13674
  msgid "Enabled"
13675
  msgstr ""
13676
 
13677
- #: wppa-settings-autosave.php:7495 wppa-settings-autosave.php:7540
13678
  msgid "Disabled"
13679
  msgstr ""
13680
 
13681
- #: wppa-settings-autosave.php:7497 wppa-settings-autosave.php:7542
13682
  msgid "Start/Stop & Slower/Faster navigation bar"
13683
  msgstr ""
13684
 
13685
- #: wppa-settings-autosave.php:7498 wppa-settings-autosave.php:7543
13686
  msgid "The Slide Frame"
13687
  msgstr ""
13688
 
13689
- #: wppa-settings-autosave.php:7498 wppa-settings-autosave.php:7543
13690
  msgid "( Always )"
13691
  msgstr ""
13692
 
13693
- #: wppa-settings-autosave.php:7499
13694
  #, fuzzy
13695
  msgid "Photo Name Box"
13696
  msgstr "Dagens foto"
13697
 
13698
- #: wppa-settings-autosave.php:7500
13699
  msgid "Photo Description Box"
13700
  msgstr ""
13701
 
13702
- #: wppa-settings-autosave.php:7501 wppa-settings-autosave.php:7545
13703
  msgid "Custom Box"
13704
  msgstr ""
13705
 
13706
- #: wppa-settings-autosave.php:7502 wppa-settings-autosave.php:7546
13707
  #, fuzzy
13708
  msgid "Rating Bar"
13709
  msgstr "Bed&oslash;mmelse: %s"
13710
 
13711
- #: wppa-settings-autosave.php:7503 wppa-settings-autosave.php:7547
13712
  msgid "Film Strip with embedded Start/Stop and Goto functionality"
13713
  msgstr ""
13714
 
13715
- #: wppa-settings-autosave.php:7504 wppa-settings-autosave.php:7548
13716
  msgid "Browse Bar with Photo X of Y counter"
13717
  msgstr ""
13718
 
13719
- #: wppa-settings-autosave.php:7505 wppa-settings-autosave.php:7549
13720
  #, fuzzy
13721
  msgid "Comments Box"
13722
  msgstr "%d kommentarer"
13723
 
13724
- #: wppa-settings-autosave.php:7506 wppa-settings-autosave.php:7550
13725
  msgid "IPTC box"
13726
  msgstr ""
13727
 
13728
- #: wppa-settings-autosave.php:7507 wppa-settings-autosave.php:7551
13729
  msgid "EXIF box"
13730
  msgstr ""
13731
 
13732
- #: wppa-settings-autosave.php:7508 wppa-settings-autosave.php:7552
13733
  msgid "Social media share box"
13734
  msgstr ""
13735
 
13736
- #: wppa-settings-autosave.php:7514 wppa-settings-autosave.php:7558
13737
  msgid "Move Up"
13738
  msgstr ""
13739
 
13740
- #: wppa-settings-autosave.php:7529
13741
  msgid "NameDesc"
13742
  msgstr ""
13743
 
13744
- #: wppa-settings-autosave.php:7544
13745
  msgid "Photo Name & Description Box"
13746
  msgstr ""
13747
 
13748
- #: wppa-settings-autosave.php:7568
13749
  msgid "Swap Namedesc"
13750
  msgstr ""
13751
 
13752
- #: wppa-settings-autosave.php:7569
13753
  msgid "Swap the order sequence of name and description"
13754
  msgstr ""
13755
 
13756
- #: wppa-settings-autosave.php:7577
13757
  msgid "Split Name and Desc"
13758
  msgstr ""
13759
 
13760
- #: wppa-settings-autosave.php:7578
13761
  msgid "Put Name and Description in separate boxes"
13762
  msgstr ""
13763
 
13764
- #: wppa-settings-autosave.php:7581
13765
  msgid "Please reload this page after the green checkmark appears!"
13766
  msgstr ""
13767
 
13768
- #: wppa-settings-autosave.php:7586
13769
  msgid "Source file management and other upload/import settings and actions."
13770
  msgstr ""
13771
 
13772
- #: wppa-settings-autosave.php:7588
13773
  msgid "Keep sourcefiles admin"
13774
  msgstr ""
13775
 
13776
- #: wppa-settings-autosave.php:7589
13777
  msgid "Keep the original uploaded and imported photo files."
13778
  msgstr ""
13779
 
13780
- #: wppa-settings-autosave.php:7590 wppa-settings-autosave.php:7600
13781
  msgid ""
13782
  "The files will be kept in a separate directory with subdirectories for each "
13783
  "album"
13784
  msgstr ""
13785
 
13786
- #: wppa-settings-autosave.php:7591 wppa-settings-autosave.php:7601
13787
  msgid ""
13788
  "These files can be used to update the photos used in displaying in wppa+ and "
13789
  "optionally for downloading original, un-downsized images."
13790
  msgstr ""
13791
 
13792
- #: wppa-settings-autosave.php:7598
13793
  msgid "Keep sourcefiles frontend"
13794
  msgstr ""
13795
 
13796
- #: wppa-settings-autosave.php:7599
13797
  #, fuzzy
13798
  msgid "Keep the original frontend uploaded photo files."
13799
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
13800
 
13801
- #: wppa-settings-autosave.php:7608
13802
  msgid "Source directory"
13803
  msgstr ""
13804
 
13805
- #: wppa-settings-autosave.php:7609
13806
  msgid "The path to the directory where the original photofiles will be saved."
13807
  msgstr ""
13808
 
13809
- #: wppa-settings-autosave.php:7610
13810
  msgid "You may change the directory path, but it can not be an url."
13811
  msgstr ""
13812
 
13813
- #: wppa-settings-autosave.php:7611
13814
  msgid ""
13815
  "The parent of the directory that you enter here must exist and be writable."
13816
  msgstr ""
13817
 
13818
- #: wppa-settings-autosave.php:7612
13819
  msgid "The directory itsself will be created if it does not exist yet."
13820
  msgstr ""
13821
 
13822
- #: wppa-settings-autosave.php:7619
13823
  msgid "Keep sync"
13824
  msgstr ""
13825
 
13826
- #: wppa-settings-autosave.php:7620
13827
  msgid "Keep source synchronously with wppa system."
13828
  msgstr ""
13829
 
13830
- #: wppa-settings-autosave.php:7621
13831
  msgid ""
13832
  "If checked, photos that are deleted from wppa, will also be removed from the "
13833
  "sourcefiles."
13834
  msgstr ""
13835
 
13836
- #: wppa-settings-autosave.php:7622
13837
  msgid ""
13838
  "Also, copying or moving photos to different albums, will also copy/move the "
13839
  "sourcefiles."
13840
  msgstr ""
13841
 
13842
- #: wppa-settings-autosave.php:7629
13843
  msgid "Remake add"
13844
  msgstr ""
13845
 
13846
- #: wppa-settings-autosave.php:7630
13847
  msgid "Photos will be added from the source pool"
13848
  msgstr ""
13849
 
13850
- #: wppa-settings-autosave.php:7631
13851
  msgid ""
13852
  "If checked: If photo files are found in the source directory that do not "
13853
  "exist in the corresponding album, they will be added to the album."
13854
  msgstr ""
13855
 
13856
- #: wppa-settings-autosave.php:7638
13857
  #, fuzzy
13858
  msgid "Save IPTC data"
13859
  msgstr "Skjul IPTC data"
13860
 
13861
- #: wppa-settings-autosave.php:7639
13862
  msgid "Store the iptc data from the photo into the iptc db table"
13863
  msgstr ""
13864
 
13865
- #: wppa-settings-autosave.php:7640
13866
  msgid ""
13867
  "You will need this if you enabled the display of iptc data in Table II-B17 "
13868
  "or if you use it in the photo descriptions."
13869
  msgstr ""
13870
 
13871
- #: wppa-settings-autosave.php:7647
13872
  #, fuzzy
13873
  msgid "Save EXIF data"
13874
  msgstr "Skjul EXIF data"
13875
 
13876
- #: wppa-settings-autosave.php:7648
13877
  msgid "Store the exif data from the photo into the exif db table"
13878
  msgstr ""
13879
 
13880
- #: wppa-settings-autosave.php:7649
13881
  msgid ""
13882
  "You will need this if you enabled the display of exif data in Table II-B18 "
13883
  "or if you use it in the photo descriptions."
13884
  msgstr ""
13885
 
13886
- #: wppa-settings-autosave.php:7656
13887
  msgid "Max EXIF tag array size"
13888
  msgstr ""
13889
 
13890
- #: wppa-settings-autosave.php:7657
13891
  msgid "Truncate array tags to ..."
13892
  msgstr ""
13893
 
13894
- #: wppa-settings-autosave.php:7658
13895
  msgid "A value of 0 disables this feature"
13896
  msgstr ""
13897
 
13898
- #: wppa-settings-autosave.php:7660
13899
  #, fuzzy
13900
  msgid "elements"
13901
  msgstr "%d kommentarer"
13902
 
13903
- #: wppa-settings-autosave.php:7665
13904
  msgid "Import Create page"
13905
  msgstr ""
13906
 
13907
- #: wppa-settings-autosave.php:7666
13908
  msgid "Create wp page when a directory to album is imported."
13909
  msgstr ""
13910
 
13911
- #: wppa-settings-autosave.php:7667
13912
  msgid ""
13913
  "As soon as an album is created when a directory is imported, a wp page is "
13914
  "made that displays the album content."
13915
  msgstr ""
13916
 
13917
- #: wppa-settings-autosave.php:7675
13918
  msgid "Page content"
13919
  msgstr ""
13920
 
13921
- #: wppa-settings-autosave.php:7676
13922
  msgid "The content of the page. Must contain <b>w#album</b>"
13923
  msgstr ""
13924
 
13925
- #: wppa-settings-autosave.php:7677
13926
  msgid ""
13927
  "The content of the page. Note: it must contain w#album. This will be "
13928
  "replaced by the album number in the generated shortcode."
13929
  msgstr ""
13930
 
13931
- #: wppa-settings-autosave.php:7685
13932
  msgid "Page type"
13933
  msgstr ""
13934
 
13935
- #: wppa-settings-autosave.php:7686
13936
  msgid "Select the type of page to create."
13937
  msgstr ""
13938
 
13939
- #: wppa-settings-autosave.php:7690
13940
  #, fuzzy
13941
  msgid "Post"
13942
  msgstr "--- lo stesso articolo/pagina ---"
13943
 
13944
- #: wppa-settings-autosave.php:7697
13945
  msgid "Page status"
13946
  msgstr ""
13947
 
13948
- #: wppa-settings-autosave.php:7698
13949
  msgid "Select the initial status of the page."
13950
  msgstr ""
13951
 
13952
- #: wppa-settings-autosave.php:7702
13953
  msgid "Published"
13954
  msgstr ""
13955
 
13956
- #: wppa-settings-autosave.php:7702
13957
  msgid "Draft"
13958
  msgstr ""
13959
 
13960
- #: wppa-settings-autosave.php:7710
13961
  msgid "Permalink root"
13962
  msgstr ""
13963
 
13964
- #: wppa-settings-autosave.php:7711
13965
  msgid "The name of the root for the photofile ermalink structure."
13966
  msgstr ""
13967
 
13968
- #: wppa-settings-autosave.php:7712
13969
  msgid ""
13970
  "Choose a convenient name like \"albums\" or so; this will be the name of a "
13971
  "folder inside .../wp-content/. Make sure you choose a unique name"
13972
  msgstr ""
13973
 
13974
- #: wppa-settings-autosave.php:7720
13975
  msgid "Other plugins related settings"
13976
  msgstr ""
13977
 
13978
- #: wppa-settings-autosave.php:7722
13979
  msgid "Foreign shortcodes general"
13980
  msgstr ""
13981
 
13982
- #: wppa-settings-autosave.php:7723
13983
  msgid "Enable foreign shortcodes in album names, albums desc and photo names"
13984
  msgstr ""
13985
 
13986
- #: wppa-settings-autosave.php:7731
13987
  msgid "Foreign shortcodes fullsize"
13988
  msgstr ""
13989
 
13990
- #: wppa-settings-autosave.php:7732
13991
  msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
13992
  msgstr ""
13993
 
13994
- #: wppa-settings-autosave.php:7733 wppa-settings-autosave.php:7744
13995
  msgid ""
13996
  "When checked, you can use shortcodes from other plugins in the description "
13997
  "of photos."
13998
  msgstr ""
13999
 
14000
- #: wppa-settings-autosave.php:7734
14001
  msgid "The shortcodes will be expanded in the descriptions of fullsize images."
14002
  msgstr ""
14003
 
14004
- #: wppa-settings-autosave.php:7735 wppa-settings-autosave.php:7746
14005
  msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
14006
  msgstr ""
14007
 
14008
- #: wppa-settings-autosave.php:7742
14009
  #, fuzzy
14010
  msgid "Foreign shortcodes thumbnails"
14011
  msgstr "Se"
14012
 
14013
- #: wppa-settings-autosave.php:7743
14014
  msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
14015
  msgstr ""
14016
 
14017
- #: wppa-settings-autosave.php:7745
14018
  msgid ""
14019
  "The shortcodes will be expanded in the descriptions of thumbnail images."
14020
  msgstr ""
14021
 
14022
- #: wppa-settings-autosave.php:7753
14023
  msgid "Lightbox keyname"
14024
  msgstr ""
14025
 
14026
- #: wppa-settings-autosave.php:7754
14027
  msgid "The identifier of lightbox."
14028
  msgstr ""
14029
 
14030
- #: wppa-settings-autosave.php:7755
14031
  msgid ""
14032
  "If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
14033
  "lbox-id here."
14034
  msgstr ""
14035
 
14036
- #: wppa-settings-autosave.php:7762
14037
  msgid "myCRED / Cube Points: Comment"
14038
  msgstr ""
14039
 
14040
- #: wppa-settings-autosave.php:7763
14041
  #, fuzzy
14042
  msgid "Number of points for a comment"
14043
  msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
14044
 
14045
- #: wppa-settings-autosave.php:7764 wppa-settings-autosave.php:7773
14046
- #: wppa-settings-autosave.php:7782
14047
  msgid "This setting requires the plugin myCRED or Cube Points"
14048
  msgstr ""
14049
 
14050
- #: wppa-settings-autosave.php:7766
14051
  #, fuzzy
14052
  msgid "points per comment"
14053
  msgstr "Din kommentar"
14054
 
14055
- #: wppa-settings-autosave.php:7771
14056
  msgid "myCRED / Cube Points: Rating"
14057
  msgstr ""
14058
 
14059
- #: wppa-settings-autosave.php:7772
14060
  msgid "Number of points for a rating vote"
14061
  msgstr ""
14062
 
14063
- #: wppa-settings-autosave.php:7775
14064
  msgid "points per vote"
14065
  msgstr ""
14066
 
14067
- #: wppa-settings-autosave.php:7780
14068
  msgid "myCRED / Cube Points: Upload"
14069
  msgstr ""
14070
 
14071
- #: wppa-settings-autosave.php:7781
14072
  msgid "Number of points for a successfull frontend upload"
14073
  msgstr ""
14074
 
14075
- #: wppa-settings-autosave.php:7784
14076
  #, fuzzy
14077
  msgid "points per upload"
14078
  msgstr "Foto caricate nell'album numero"
14079
 
14080
- #: wppa-settings-autosave.php:7789
14081
  msgid "Use SCABN"
14082
  msgstr ""
14083
 
14084
- #: wppa-settings-autosave.php:7790
14085
  msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
14086
  msgstr ""
14087
 
14088
- #: wppa-settings-autosave.php:7791
14089
  msgid ""
14090
  "If checked, the shortcode to use for the \"add to cart\" button in photo "
14091
  "descriptions is [cart ...]"
14092
  msgstr ""
14093
 
14094
- #: wppa-settings-autosave.php:7792
14095
  msgid ""
14096
  "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
14097
  msgstr ""
14098
 
14099
- #: wppa-settings-autosave.php:7793
14100
  msgid "The shortcode for the check-out page is still [scabn]"
14101
  msgstr ""
14102
 
14103
- #: wppa-settings-autosave.php:7794
14104
  msgid ""
14105
  "The arguments are the same, the defaults are: name = photoname, price = 0.01."
14106
  msgstr ""
14107
 
14108
- #: wppa-settings-autosave.php:7795
14109
  msgid ""
14110
  "Supplying the price should be sufficient; supply a name only when it differs "
14111
  "from the photo name."
14112
  msgstr ""
14113
 
14114
- #: wppa-settings-autosave.php:7796
14115
  msgid "This shortcode handler will also work with Ajax enabled."
14116
  msgstr ""
14117
 
14118
- #: wppa-settings-autosave.php:7797
14119
  msgid ""
14120
  "Using this interface makes sure that the item urls and callback action urls "
14121
  "are correct."
14122
  msgstr ""
14123
 
14124
- #: wppa-settings-autosave.php:7804
14125
  msgid "Use CM Tooltip Glossary"
14126
  msgstr ""
14127
 
14128
- #: wppa-settings-autosave.php:7805
14129
  msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
14130
  msgstr ""
14131
 
14132
- #: wppa-settings-autosave.php:7806
14133
  msgid ""
14134
  "You MUST set Table IV-A13: Defer javascript, also if you do not want this "
14135
  "plugin to act on album and photo descriptions!"
14136
  msgstr ""
14137
 
14138
- #: wppa-settings-autosave.php:7814
14139
  msgid "External services related settings and actions."
14140
  msgstr ""
14141
 
14142
- #: wppa-settings-autosave.php:7816
14143
  msgid "QR Code widget size"
14144
  msgstr ""
14145
 
14146
- #: wppa-settings-autosave.php:7817
14147
  msgid "The size of the QR code display."
14148
  msgstr ""
14149
 
14150
- #: wppa-settings-autosave.php:7825
14151
  msgid "QR color"
14152
  msgstr ""
14153
 
14154
- #: wppa-settings-autosave.php:7826
14155
  msgid "The display color of the qr code (dark)"
14156
  msgstr ""
14157
 
14158
- #: wppa-settings-autosave.php:7827
14159
  msgid "This color MUST be given in hexadecimal format!"
14160
  msgstr ""
14161
 
14162
- #: wppa-settings-autosave.php:7834
14163
  msgid "QR background color"
14164
  msgstr ""
14165
 
14166
- #: wppa-settings-autosave.php:7835
14167
  msgid "The background color of the qr code (light)"
14168
  msgstr ""
14169
 
14170
- #: wppa-settings-autosave.php:7843
14171
  msgid "CDN Service"
14172
  msgstr ""
14173
 
14174
- #: wppa-settings-autosave.php:7844
14175
  msgid "Select a CDN Service you want to use."
14176
  msgstr ""
14177
 
14178
- #: wppa-settings-autosave.php:7847
14179
  msgid "Cloudinary in maintenance mode"
14180
  msgstr ""
14181
 
14182
- #: wppa-settings-autosave.php:7857
14183
  #, fuzzy
14184
  msgid "Cloud name"
14185
  msgstr "Dit navn"
14186
 
14187
- #: wppa-settings-autosave.php:7866
14188
  msgid "API key"
14189
  msgstr ""
14190
 
14191
- #: wppa-settings-autosave.php:7875
14192
  msgid "API secret"
14193
  msgstr ""
14194
 
14195
- #: wppa-settings-autosave.php:7884
14196
  #, fuzzy
14197
  msgid "Delete all"
14198
  msgstr "Impossibile creare album. "
14199
 
14200
- #: wppa-settings-autosave.php:7885
14201
  msgid "Deletes them all !!!"
14202
  msgstr ""
14203
 
14204
- #: wppa-settings-autosave.php:7893
14205
  msgid "Delete derived images"
14206
  msgstr ""
14207
 
14208
- #: wppa-settings-autosave.php:7894
14209
  msgid "Deletes all derived images !!!"
14210
  msgstr ""
14211
 
14212
- #: wppa-settings-autosave.php:7902
14213
  msgid "Max lifetime"
14214
  msgstr ""
14215
 
14216
- #: wppa-settings-autosave.php:7903
14217
  msgid "Old images from local server, new images from Cloudinary."
14218
  msgstr ""
14219
 
14220
- #: wppa-settings-autosave.php:7904
14221
  msgid ""
14222
  "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
14223
  msgstr ""
14224
 
14225
- #: wppa-settings-autosave.php:7906
14226
  msgid "Forever"
14227
  msgstr ""
14228
 
14229
- #: wppa-settings-autosave.php:7910
14230
  #, fuzzy
14231
  msgid "Two months"
14232
  msgstr "m&aring;neder"
14233
 
14234
- #: wppa-settings-autosave.php:7911
14235
  #, fuzzy
14236
  msgid "Three months"
14237
  msgstr "m&aring;neder"
14238
 
14239
- #: wppa-settings-autosave.php:7912
14240
  #, fuzzy
14241
  msgid "Six months"
14242
  msgstr "m&aring;neder"
14243
 
14244
- #: wppa-settings-autosave.php:7913
14245
  #, fuzzy
14246
  msgid "Nine months"
14247
  msgstr "m&aring;neder"
14248
 
14249
- #: wppa-settings-autosave.php:7914
14250
  #, fuzzy
14251
  msgid "One year"
14252
  msgstr "1 &aring;r"
14253
 
14254
- #: wppa-settings-autosave.php:7915
14255
  #, fuzzy
14256
  msgid "18 months"
14257
  msgstr "1 m&aring;ned"
14258
 
14259
- #: wppa-settings-autosave.php:7916
14260
  #, fuzzy
14261
  msgid "Two years"
14262
  msgstr "&aring;r"
14263
 
14264
- #: wppa-settings-autosave.php:7936
14265
  msgid "Cloudinary usage"
14266
  msgstr ""
14267
 
14268
- #: wppa-settings-autosave.php:7972
14269
  #, fuzzy
14270
  msgid "Cloudinary usage data not available"
14271
  msgstr "Pagina non disponibile."
14272
 
14273
- #: wppa-settings-autosave.php:7976
14274
  msgid "Cloudinary routines not installed."
14275
  msgstr ""
14276
 
14277
- #: wppa-settings-autosave.php:7987
14278
  msgid "Cloudinary"
14279
  msgstr ""
14280
 
14281
- #: wppa-settings-autosave.php:7988
14282
  msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
14283
  msgstr ""
14284
 
14285
- #: wppa-settings-autosave.php:7997
14286
  msgid "GPX Implementation"
14287
  msgstr ""
14288
 
14289
- #: wppa-settings-autosave.php:7998
14290
  msgid "The way the maps are produced."
14291
  msgstr ""
14292
 
14293
- #: wppa-settings-autosave.php:7999
14294
  msgid "Select the way the maps are produced."
14295
  msgstr ""
14296
 
14297
- #: wppa-settings-autosave.php:8000
14298
  msgid ""
14299
  "When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
14300
  msgstr ""
14301
 
14302
- #: wppa-settings-autosave.php:8001
14303
  msgid ""
14304
  "When using WPPA+ Embedded code, you can use Ajax, but there are less display "
14305
  "options."
14306
  msgstr ""
14307
 
14308
- #: wppa-settings-autosave.php:8003
14309
  msgid "WPPA+ Embedded code"
14310
  msgstr ""
14311
 
14312
- #: wppa-settings-autosave.php:8003
14313
  msgid "Google maps GPX viewer plugin"
14314
  msgstr ""
14315
 
14316
- #: wppa-settings-autosave.php:8011
14317
  msgid "Map height"
14318
  msgstr ""
14319
 
14320
- #: wppa-settings-autosave.php:8012
14321
  msgid "The height of the map display."
14322
  msgstr ""
14323
 
14324
- #: wppa-settings-autosave.php:8020
14325
  msgid "Google maps API key"
14326
  msgstr ""
14327
 
14328
- #: wppa-settings-autosave.php:8021
14329
  msgid "Enter your Google maps api key here if you have one."
14330
  msgstr ""
14331
 
14332
- #: wppa-settings-autosave.php:8029
14333
  msgid "GPX Shortcode"
14334
  msgstr ""
14335
 
14336
- #: wppa-settings-autosave.php:8030
14337
  msgid "The shortcode to be used for the gpx feature."
14338
  msgstr ""
14339
 
14340
- #: wppa-settings-autosave.php:8031
14341
  msgid ""
14342
  "Enter / modify the shortcode to be generated for the gpx plugin. It must "
14343
  "contain w#lat and w#lon as placeholders for the lattitude and longitude."
14344
  msgstr ""
14345
 
14346
- #: wppa-settings-autosave.php:8032
14347
  msgid "This item is required for using Google maps GPX viewer plugin only"
14348
  msgstr ""
14349
 
14350
- #: wppa-settings-autosave.php:8039
14351
  msgid "Fotomoto"
14352
  msgstr ""
14353
 
14354
- #: wppa-settings-autosave.php:8040
14355
  msgid "Yes, we use Fotomoto on this site. Read the help text!"
14356
  msgstr ""
14357
 
14358
- #: wppa-settings-autosave.php:8041
14359
  msgid "In order to function properly:"
14360
  msgstr ""
14361
 
14362
- #: wppa-settings-autosave.php:8042
14363
  msgid "1. Get yourself a Fotomoto account."
14364
  msgstr ""
14365
 
14366
- #: wppa-settings-autosave.php:8043
14367
  msgid ""
14368
  "2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
14369
  "the \"Use API Mode:\" checkbox."
14370
  msgstr ""
14371
 
14372
- #: wppa-settings-autosave.php:8044
14373
  msgid "Note: Do NOT Disable the Custom box in Table II-B14."
14374
  msgstr ""
14375
 
14376
- #: wppa-settings-autosave.php:8045
14377
  msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
14378
  msgstr ""
14379
 
14380
- #: wppa-settings-autosave.php:8053
14381
  msgid "Fotomoto fontsize"
14382
  msgstr ""
14383
 
14384
- #: wppa-settings-autosave.php:8054
14385
  msgid "Fontsize for the Fotomoto toolbar."
14386
  msgstr ""
14387
 
14388
- #: wppa-settings-autosave.php:8055
14389
  msgid ""
14390
  "If you set it here, it overrules a possible setting for font-size in ."
14391
  "FotomotoToolbarClass on the Fotomoto dashboard."
14392
  msgstr ""
14393
 
14394
- #: wppa-settings-autosave.php:8063
14395
  msgid "Hide toolbar on running slideshows"
14396
  msgstr ""
14397
 
14398
- #: wppa-settings-autosave.php:8064
14399
  msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
14400
  msgstr ""
14401
 
14402
- #: wppa-settings-autosave.php:8071
14403
  msgid "Fotomoto minwidth"
14404
  msgstr ""
14405
 
14406
- #: wppa-settings-autosave.php:8072
14407
  msgid "Minimum width to display Fotomoto toolbar."
14408
  msgstr ""
14409
 
14410
- #: wppa-settings-autosave.php:8073
14411
  msgid ""
14412
  "The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
14413
  msgstr ""
14414
 
14415
- #: wppa-settings-autosave.php:8098
14416
  msgid "Table X:"
14417
  msgstr ""
14418
 
14419
- #: wppa-settings-autosave.php:8098
14420
  msgid "IPTC Configuration:"
14421
  msgstr ""
14422
 
14423
- #: wppa-settings-autosave.php:8099
14424
  msgid "This table defines the IPTC configuration"
14425
  msgstr ""
14426
 
14427
- #: wppa-settings-autosave.php:8130 wppa-settings-autosave.php:8198
14428
  msgid "Display"
14429
  msgstr ""
14430
 
14431
- #: wppa-settings-autosave.php:8130 wppa-settings-autosave.php:8198
14432
  msgid "Hide"
14433
  msgstr ""
14434
 
14435
- #: wppa-settings-autosave.php:8130 wppa-settings-autosave.php:8198
14436
  msgid "Optional"
14437
  msgstr ""
14438
 
14439
- #: wppa-settings-autosave.php:8160
14440
  msgid "Table XI:"
14441
  msgstr ""
14442
 
14443
- #: wppa-settings-autosave.php:8160
14444
  msgid "EXIF Configuration:"
14445
  msgstr ""
14446
 
14447
- #: wppa-settings-autosave.php:8161
14448
  msgid "This table defines the EXIF configuration"
14449
  msgstr ""
14450
 
14451
- #: wppa-settings-autosave.php:8184
14452
  msgid ""
14453
  "Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
14454
  "enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to "
14455
  "add <b>'--enable-exif'</b> to the php <b>Configure Command</b>."
14456
  msgstr ""
14457
 
14458
- #: wppa-settings-autosave.php:8228
14459
  msgid "Table XII:"
14460
  msgstr ""
14461
 
14462
- #: wppa-settings-autosave.php:8228
14463
  msgid "WPPA+ and PHP Configuration:"
14464
  msgstr ""
14465
 
14466
- #: wppa-settings-autosave.php:8229
14467
  msgid ""
14468
  "This table lists all WPPA+ constants and PHP server configuration parameters "
14469
  "and is read only"
14470
  msgstr ""
14471
 
14472
- #: wppa-settings-autosave.php:8244
14473
  msgid "Value"
14474
  msgstr ""
14475
 
14476
- #: wppa-settings-autosave.php:8249
14477
  msgid "Albums db table name."
14478
  msgstr ""
14479
 
14480
- #: wppa-settings-autosave.php:8254
14481
  #, fuzzy
14482
  msgid "Photos db table name."
14483
  msgstr "Vis EXIF data"
14484
 
14485
- #: wppa-settings-autosave.php:8259
14486
  msgid "Rating db table name."
14487
  msgstr ""
14488
 
14489
- #: wppa-settings-autosave.php:8264
14490
  msgid "Comments db table name."
14491
  msgstr ""
14492
 
14493
- #: wppa-settings-autosave.php:8269
14494
  msgid "IPTC db table name."
14495
  msgstr ""
14496
 
14497
- #: wppa-settings-autosave.php:8274
14498
  msgid "EXIF db table name."
14499
  msgstr ""
14500
 
14501
- #: wppa-settings-autosave.php:8279
14502
  msgid "Index db table name."
14503
  msgstr ""
14504
 
14505
- #: wppa-settings-autosave.php:8284
14506
  msgid "Plugins main file name."
14507
  msgstr ""
14508
 
14509
- #: wppa-settings-autosave.php:8289
14510
  msgid "Path to plugins directory."
14511
  msgstr ""
14512
 
14513
- #: wppa-settings-autosave.php:8294
14514
  msgid "Plugins directory name."
14515
  msgstr ""
14516
 
14517
- #: wppa-settings-autosave.php:8299
14518
  msgid "Plugins directory url."
14519
  msgstr ""
14520
 
14521
- #: wppa-settings-autosave.php:8304
14522
  msgid "The relative upload directory."
14523
  msgstr ""
14524
 
14525
- #: wppa-settings-autosave.php:8309
14526
  msgid "The upload directory path."
14527
  msgstr ""
14528
 
14529
- #: wppa-settings-autosave.php:8314
14530
  msgid "The upload directory url."
14531
  msgstr ""
14532
 
14533
- #: wppa-settings-autosave.php:8319
14534
  msgid "The relative depot directory."
14535
  msgstr ""
14536
 
14537
- #: wppa-settings-autosave.php:8324
14538
  msgid "The depot directory path."
14539
  msgstr ""
14540
 
14541
- #: wppa-settings-autosave.php:8329
14542
  msgid "The depot directory url."
14543
  msgstr ""
14544
 
14545
- #: wppa-settings-autosave.php:8334
14546
  msgid "The path to wp-content."
14547
  msgstr ""
14548
 
14549
- #: wppa-settings-autosave.php:8339
14550
  msgid "WP Base upload dir."
14551
  msgstr ""
14552
 
14553
- #: wppa-settings-autosave.php:8345
14554
  msgid "ABSPATH windows proof"
14555
  msgstr ""
14556
 
14557
- #: wppa-settings-autosave.php:8357
14558
  #, php-format
14559
  msgid "<br />Memory used on this page: %6.2f Mb."
14560
  msgstr ""
14561
 
14562
- #: wppa-settings-autosave.php:8358
14563
  #, php-format
14564
  msgid "<br />There are %d settings and %d runtime parameters."
14565
  msgstr ""
14566
 
14567
- #: wppa-settings-autosave.php:8435
14568
  msgid "The default for this setting is:"
14569
  msgstr ""
14570
 
14571
- #: wppa-settings-autosave.php:8444
14572
  msgid "Click for help"
14573
  msgstr ""
14574
 
14575
- #: wppa-settings-autosave.php:8488 wppa-settings-autosave.php:8505
14576
- #: wppa-settings-autosave.php:8534 wppa-settings-autosave.php:8557
14577
- #: wppa-settings-autosave.php:8587 wppa-settings-autosave.php:8614
14578
- #: wppa-settings-autosave.php:8640 wppa-settings-autosave.php:8688
14579
  msgid "Slug ="
14580
  msgstr ""
14581
 
14582
- #: wppa-settings-autosave.php:8557 wppa-settings-autosave.php:8587
14583
- #: wppa-settings-autosave.php:8614 wppa-settings-autosave.php:8640
14584
  msgid "Values = yes, no"
14585
  msgstr ""
14586
 
14587
- #: wppa-settings-autosave.php:8586 wppa-settings-autosave.php:8612
14588
- #: wppa-settings-autosave.php:8639
14589
  msgid "Warning!"
14590
  msgstr ""
14591
 
14592
- #: wppa-settings-autosave.php:8613 wppa-settings-autosave.php:8639
14593
  msgid "Please read the help"
14594
  msgstr ""
14595
 
14596
- #: wppa-settings-autosave.php:8688
14597
  msgid "Values = "
14598
  msgstr ""
14599
 
14600
- #: wppa-settings-autosave.php:8764
14601
  msgid "Checked"
14602
  msgstr ""
14603
 
14604
- #: wppa-settings-autosave.php:8765
14605
  msgid "Unchecked"
14606
  msgstr ""
14607
 
14608
- #: wppa-settings-autosave.php:8770
14609
  msgid "the photo specific link."
14610
  msgstr ""
14611
 
14612
- #: wppa-settings-autosave.php:8802
14613
  msgid "Show!"
14614
  msgstr ""
14615
 
14616
- #: wppa-settings-autosave.php:8822
14617
  #, fuzzy
14618
  msgid "Not done yet"
14619
  msgstr "Intet album er defineret."
14620
 
14621
- #: wppa-settings-autosave.php:8829
14622
  #, fuzzy
14623
  msgid "Start!"
14624
  msgstr "Start"
14625
 
14626
- #: wppa-settings-autosave.php:8834
14627
  msgid "Locked!"
14628
  msgstr ""
14629
 
14630
- #: wppa-settings-autosave.php:8865
14631
  msgid ""
14632
  "You can not have popup and lightbox on thumbnails at the same time. Uncheck "
14633
  "either Table IV-C8 or choose a different linktype in Table VI-2."
14634
  msgstr ""
14635
 
14636
- #: wppa-settings-autosave.php:8868
14637
  #, php-format
14638
  msgid ""
14639
  "It is important that you select a page that contains at least %%wppa%% or "
14640
  "[wppa][/wppa]."
14641
  msgstr ""
14642
 
14643
- #: wppa-settings-autosave.php:8869
14644
  msgid ""
14645
  "If you ommit this, the link will not work at all or simply refresh the "
14646
  "(home)page."
14647
  msgstr ""
14648
 
14649
- #: wppa-setup.php:428
14650
  msgid "IMPORTANT UPGRADE NOTICE"
14651
  msgstr ""
14652
 
14653
- #: wppa-setup.php:429
14654
  msgid ""
14655
  "Please CHECK your customized WPPA-STYLE.CSS file against the newly supplied "
14656
  "one. You may wish to add or modify some attributes. Be aware of the fact "
14657
  "that most settings can now be set in the admin settings page."
14658
  msgstr ""
14659
 
14660
- #: wppa-setup.php:430
14661
  msgid ""
14662
  "Please REPLACE your customized WPPA-THEME.PHP file by the newly supplied "
14663
  "one, or just remove it from your theme directory. You may modify it later if "
@@ -14665,135 +14772,145 @@ msgid ""
14665
  "version of the plugin software."
14666
  msgstr ""
14667
 
14668
- #: wppa-setup.php:456
14669
  #, php-format
14670
  msgid "WPPA+ successfully updated in multi site mode to db version %s."
14671
  msgstr ""
14672
 
14673
- #: wppa-setup.php:459
14674
  #, php-format
14675
  msgid "WPPA+ successfully updated in single site mode to db version %s."
14676
  msgstr ""
14677
 
14678
- #: wppa-setup.php:464
14679
  #, fuzzy
14680
  msgid "An error occurred during update"
14681
  msgstr "Fejl under upload"
14682
 
14683
- #: wppa-setup.php:761
14684
  msgid ""
14685
  "<span style=\"color:red\" >Warning: Do not upload copyrighted material!</"
14686
  "span>"
14687
  msgstr ""
14688
 
14689
- #: wppa-setup.php:770 wppa-setup.php:774 wppa-setup.php:778
14690
  msgid "Select tags:"
14691
  msgstr ""
14692
 
14693
- #: wppa-setup.php:781
14694
  msgid "Enter new tags:"
14695
  msgstr ""
14696
 
14697
- #: wppa-setup.php:928
14698
  msgid "Vote for me!"
14699
  msgstr ""
14700
 
14701
- #: wppa-setup.php:929
14702
  msgid "Voted for me"
14703
  msgstr ""
14704
 
14705
- #: wppa-setup.php:1350
 
 
 
 
 
 
 
 
 
 
14706
  msgid "Type your custom url here"
14707
  msgstr ""
14708
 
14709
- #: wppa-setup.php:1351
14710
  msgid "Type the title here"
14711
  msgstr ""
14712
 
14713
- #: wppa-setup.php:1363 wppa-topten-widget.php:13 wppa-topten-widget.php:48
14714
- #: wppa-topten-widget.php:191
14715
  msgid "Top Ten Photos"
14716
  msgstr "Foto Top Ti"
14717
 
14718
- #: wppa-setup.php:1366 wppa-thumbnail-widget.php:13
14719
  #: wppa-thumbnail-widget.php:168
14720
  #, fuzzy
14721
  msgid "Thumbnail Photos"
14722
  msgstr "Miniatura"
14723
 
14724
- #: wppa-setup.php:1369
14725
  #, fuzzy
14726
  msgid "Search photos"
14727
  msgstr "Top fotos"
14728
 
14729
- #: wppa-setup.php:1412
14730
  msgid ""
14731
  "The uploads directory does not exist, please do a regular WP upload first."
14732
  msgstr ""
14733
 
14734
- #: wppa-setup.php:1416
14735
  msgid "Successfully created uploads directory."
14736
  msgstr ""
14737
 
14738
- #: wppa-setup.php:1427
14739
  #, fuzzy
14740
  msgid "Could not create the wppa directory."
14741
  msgstr "Impossibile creare album. "
14742
 
14743
- #: wppa-setup.php:1431
14744
  msgid "Successfully created wppa directory."
14745
  msgstr ""
14746
 
14747
- #: wppa-setup.php:1441
14748
  #, fuzzy
14749
  msgid "Could not create the wppa thumbs directory."
14750
  msgstr "Impossibile creare album. "
14751
 
14752
- #: wppa-setup.php:1445
14753
  msgid "Successfully created wppa thumbs directory."
14754
  msgstr ""
14755
 
14756
- #: wppa-setup.php:1455
14757
  msgid "Could not create the wppa watermarks directory."
14758
  msgstr ""
14759
 
14760
- #: wppa-setup.php:1459
14761
  msgid "Successfully created wppa watermarks directory."
14762
  msgstr ""
14763
 
14764
- #: wppa-setup.php:1469
14765
  msgid "Could not create the wppa fonts directory."
14766
  msgstr ""
14767
 
14768
- #: wppa-setup.php:1473
14769
  msgid "Successfully created wppa fonts directory."
14770
  msgstr ""
14771
 
14772
- #: wppa-setup.php:1485
14773
  msgid "Unable to create depot directory."
14774
  msgstr ""
14775
 
14776
- #: wppa-setup.php:1489
14777
  msgid "Successfully created wppa depot directory."
14778
  msgstr ""
14779
 
14780
- #: wppa-setup.php:1500
14781
  msgid "Unable to create user depot directory"
14782
  msgstr ""
14783
 
14784
- #: wppa-setup.php:1504
14785
  msgid "Successfully created wppa user depot directory."
14786
  msgstr ""
14787
 
14788
- #: wppa-setup.php:1514
14789
  msgid "Unable to create temp directory"
14790
  msgstr ""
14791
 
14792
- #: wppa-setup.php:1518
14793
  msgid "Successfully created temp directory."
14794
  msgstr ""
14795
 
14796
- #: wppa-setup.php:1526
14797
  #, php-format
14798
  msgid ""
14799
  "Ask your administrator to give you more rights, or create <b>%s</b> manually "
@@ -14902,113 +15019,113 @@ msgstr "Top fotos"
14902
  msgid "Text below photos:"
14903
  msgstr "N&aelig;ste billede"
14904
 
14905
- #: wppa-slideshow.php:250
14906
  msgid "Paused"
14907
  msgstr "Pause"
14908
 
14909
- #: wppa-slideshow.php:255
14910
  msgid ""
14911
  "To see the full size images, you need to enable javascript in your browser."
14912
  msgstr ""
14913
  "For at se billeder i fuld st&oslash;rrelse skal du tillade javascript in din "
14914
  "browser."
14915
 
14916
- #: wppa-slideshow.php:476
14917
  msgid "Checkout"
14918
  msgstr ""
14919
 
14920
- #: wppa-slideshow.php:511
14921
  #, fuzzy
14922
  msgid "- - - Voting enabled - - -"
14923
  msgstr "Attivo"
14924
 
14925
- #: wppa-slideshow.php:522
14926
  #, fuzzy, php-format
14927
  msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
14928
  msgstr ""
14929
  "<span style=\"color:red\" >Attenzione: non caricare materiale protetto da "
14930
  "copyright!</span>"
14931
 
14932
- #: wppa-slideshow.php:528 wppa-slideshow.php:616 wppa-slideshow.php:653
14933
  #, php-format
14934
  msgid "You must <a href=\"%s\">login</a> to vote"
14935
  msgstr "Du skal <a href=\"%s\">logge ind</a> for at stemme"
14936
 
14937
- #: wppa-slideshow.php:531 wppa-slideshow.php:619 wppa-slideshow.php:656
14938
  #, fuzzy
14939
  msgid "You must login to vote"
14940
  msgstr "Du skal <a href=\"%s\">logge ind</a> for at stemme"
14941
 
14942
- #: wppa-slideshow.php:548
14943
  msgid "- - - Rating enabled - - -"
14944
  msgstr "- - - Bed&oslash;mmelse aktiveret - - -"
14945
 
14946
- #: wppa-slideshow.php:564
14947
  msgid "very low"
14948
  msgstr "meget lav"
14949
 
14950
- #: wppa-slideshow.php:565
14951
  msgid "low"
14952
  msgstr "lav"
14953
 
14954
- #: wppa-slideshow.php:566
14955
  msgid "average"
14956
  msgstr "gennemsnitlig"
14957
 
14958
- #: wppa-slideshow.php:567
14959
  msgid "high"
14960
  msgstr "h&oslash;j"
14961
 
14962
- #: wppa-slideshow.php:568
14963
  msgid "very high"
14964
  msgstr "meget h&oslash;j"
14965
 
14966
- #: wppa-slideshow.php:595 wppa-slideshow.php:639
14967
  msgid "Are you sure you want to mark this image as inappropriate?"
14968
  msgstr ""
14969
  "Er du sikker p&aring;, at du vil markere dette billed som v&aelig;rende "
14970
  "upassende."
14971
 
14972
- #: wppa-slideshow.php:596 wppa-slideshow.php:640
14973
  msgid "Click this if you do NOT like this image!"
14974
  msgstr "Klik her hvis du IKKE kan lide dette billed!"
14975
 
14976
- #: wppa-slideshow.php:598 wppa-slideshow.php:642
14977
  #, fuzzy
14978
  msgid "Number of people who marked this photo as inappropriate"
14979
  msgstr "Markeret som spam"
14980
 
14981
- #: wppa-slideshow.php:648
14982
  #, fuzzy
14983
  msgid "My rating:"
14984
  msgstr "Valutazione:"
14985
 
14986
- #: wppa-slideshow.php:734
14987
  msgid "First"
14988
  msgstr ""
14989
 
14990
- #: wppa-slideshow.php:739
14991
  msgid "Last"
14992
  msgstr ""
14993
 
14994
- #: wppa-slideshow.php:907
14995
  #, php-format
14996
  msgid "Photo %s of %s"
14997
  msgstr "Foto %s af %s"
14998
 
14999
- #: wppa-slideshow.php:938
15000
  msgid "Click to start/stop"
15001
  msgstr "Klik for start/stop"
15002
 
15003
- #: wppa-slideshow.php:950
15004
  msgid "- - - Comments box activated - - -"
15005
  msgstr "- - - Kommentar boks aktiveret - - -"
15006
 
15007
- #: wppa-slideshow.php:971
15008
  msgid "- - - IPTC box activated - - -"
15009
  msgstr "- - - IPTC boks aktiveret - - -"
15010
 
15011
- #: wppa-slideshow.php:991
15012
  msgid "- - - EXIF box activated - - -"
15013
  msgstr "- - - EXIF boks aktiveret - - -"
15014
 
@@ -15026,6 +15143,52 @@ msgstr "fotoalbum. Det senest tilf&oslash;jede album er"
15026
  msgid ", a subalbum of"
15027
  msgstr ", et underalbum til"
15028
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15029
  #: wppa-super-view-widget.php:13
15030
  msgid "WPPA+ Selectable display"
15031
  msgstr ""
@@ -15066,8 +15229,8 @@ msgstr ""
15066
  msgid "Link Title ( tooltip ):"
15067
  msgstr ""
15068
 
15069
- #: wppa-thumbnail-widget.php:200 wppa-topten-widget.php:233
15070
- #: wppa-upldr-widget.php:179
15071
  #, fuzzy
15072
  msgid "Sort by:"
15073
  msgstr "Foto %s af %s"
@@ -15080,16 +15243,16 @@ msgstr ""
15080
  msgid "Show photo names <small>under thumbnails only</small>:"
15081
  msgstr ""
15082
 
15083
- #: wppa-thumbnails.php:174 wppa-thumbnails.php:1058 wppa-topten-widget.php:109
15084
  msgid "View the top rated photos"
15085
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
15086
 
15087
- #: wppa-thumbnails.php:634
15088
  #, fuzzy
15089
  msgid "Comments:"
15090
  msgstr "%d kommentarer"
15091
 
15092
- #: wppa-thumbnails.php:965
15093
  #, php-format
15094
  msgid "Missing thumbnail image #%s"
15095
  msgstr ""
@@ -15212,9 +15375,9 @@ msgstr ""
15212
  msgid "--- All photos in the system ---"
15213
  msgstr ""
15214
 
15215
- #: wppa-tinymce-scripts.php:208 wppa-tinymce-shortcodes.php:248
15216
- #: wppa-tinymce-shortcodes.php:271 wppa-tinymce-shortcodes.php:316
15217
- #: wppa-tinymce-shortcodes.php:339 wppa-tinymce-shortcodes.php:478
15218
  msgid "There are no albums yet"
15219
  msgstr ""
15220
 
@@ -15233,11 +15396,11 @@ msgstr ""
15233
  msgid "* Album contains less than the minimun number of photos"
15234
  msgstr ""
15235
 
15236
- #: wppa-tinymce-scripts.php:224 wppa-tinymce-shortcodes.php:377
15237
  msgid "The Photo to be used:"
15238
  msgstr ""
15239
 
15240
- #: wppa-tinymce-scripts.php:229 wppa-tinymce-shortcodes.php:383
15241
  #, fuzzy
15242
  msgid "Please select a photo"
15243
  msgstr "Skriv en kommentar"
@@ -15252,24 +15415,24 @@ msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
15252
  msgid "--- The photo of the day ---"
15253
  msgstr "Dagens foto"
15254
 
15255
- #: wppa-tinymce-scripts.php:244 wppa-tinymce-shortcodes.php:400
15256
  msgid "There are no photos yet"
15257
  msgstr ""
15258
 
15259
- #: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:406
15260
  msgid "Specify the photo to be used"
15261
  msgstr ""
15262
 
15263
- #: wppa-tinymce-scripts.php:251 wppa-tinymce-shortcodes.php:407
15264
  msgid "You can select from a maximum of 100 most recently added photos"
15265
  msgstr ""
15266
 
15267
- #: wppa-tinymce-scripts.php:257 wppa-tinymce-shortcodes.php:421
15268
  #, fuzzy
15269
  msgid "The tags the photos should have:"
15270
  msgstr "Unders&oslash;g de tag(s) som dine fotos har"
15271
 
15272
- #: wppa-tinymce-scripts.php:260 wppa-tinymce-shortcodes.php:424
15273
  #, fuzzy
15274
  msgid "--- please select tag(s) ---"
15275
  msgstr "--- vises ikke ---"
@@ -15281,38 +15444,38 @@ msgid ""
15281
  "tags"
15282
  msgstr ""
15283
 
15284
- #: wppa-tinymce-scripts.php:273 wppa-tinymce-shortcodes.php:501
15285
  #, fuzzy
15286
  msgid "The size of the display:"
15287
  msgstr "Dagens foto"
15288
 
15289
- #: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:506
15290
  msgid ""
15291
  "Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
15292
  "span>."
15293
  msgstr ""
15294
 
15295
- #: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:507
15296
  msgid ""
15297
  "A value less than <span style=\"color:blue\" >100</span> will automaticly be "
15298
  "interpreted as a <span style=\"color:blue\" >percentage</span> of the "
15299
  "available space."
15300
  msgstr ""
15301
 
15302
- #: wppa-tinymce-scripts.php:280 wppa-tinymce-shortcodes.php:508
15303
  msgid "Leave this blank for default size"
15304
  msgstr ""
15305
 
15306
- #: wppa-tinymce-scripts.php:285 wppa-tinymce-shortcodes.php:514
15307
  #: wppa-widget-admin.php:72
15308
  msgid "Horizontal alignment:"
15309
  msgstr ""
15310
 
15311
- #: wppa-tinymce-scripts.php:294 wppa-tinymce-shortcodes.php:523
15312
  msgid "Specify the alignment to be used or --- none ---"
15313
  msgstr ""
15314
 
15315
- #: wppa-tinymce-scripts.php:300 wppa-tinymce-shortcodes.php:533
15316
  msgid "Insert Gallery"
15317
  msgstr ""
15318
 
@@ -15462,226 +15625,231 @@ msgstr ""
15462
  msgid "A landing page shortcode"
15463
  msgstr ""
15464
 
15465
- #: wppa-tinymce-shortcodes.php:187
 
 
 
 
 
15466
  msgid "Kind of selection:"
15467
  msgstr ""
15468
 
15469
- #: wppa-tinymce-shortcodes.php:190
15470
  msgid "Please select a type of selection to be used"
15471
  msgstr ""
15472
 
15473
- #: wppa-tinymce-shortcodes.php:191
15474
  msgid "One or more wppa+ albums"
15475
  msgstr ""
15476
 
15477
- #: wppa-tinymce-shortcodes.php:192
15478
  msgid "A special selection"
15479
  msgstr ""
15480
 
15481
- #: wppa-tinymce-shortcodes.php:199 wppa-tinymce-shortcodes.php:219
15482
  msgid "The selection to be used:"
15483
  msgstr ""
15484
 
15485
- #: wppa-tinymce-shortcodes.php:202 wppa-tinymce-shortcodes.php:222
15486
  #, fuzzy
15487
  msgid "Please select a virtual album"
15488
  msgstr ""
15489
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
15490
  "di ricerca differente."
15491
 
15492
- #: wppa-tinymce-shortcodes.php:203 wppa-tinymce-shortcodes.php:223
15493
  #, fuzzy
15494
  msgid "The most recently modified album"
15495
  msgstr "Le impostazioni sono state aggiornate"
15496
 
15497
- #: wppa-tinymce-shortcodes.php:204
15498
  #, fuzzy
15499
  msgid "The top rated photos"
15500
  msgstr "Top fotos"
15501
 
15502
- #: wppa-tinymce-shortcodes.php:205
15503
  #, fuzzy
15504
  msgid "The most recently uploaded photos"
15505
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
15506
 
15507
- #: wppa-tinymce-shortcodes.php:206
15508
  msgid "A random selection of featured photos"
15509
  msgstr ""
15510
 
15511
- #: wppa-tinymce-shortcodes.php:207
15512
  #, fuzzy
15513
  msgid "The most recently commented photos"
15514
  msgstr "Nyligt kommenterede fotos"
15515
 
15516
- #: wppa-tinymce-shortcodes.php:208
15517
  msgid "Photos that have certain tags"
15518
  msgstr ""
15519
 
15520
- #: wppa-tinymce-shortcodes.php:209 wppa-tinymce-shortcodes.php:225
15521
  msgid "Albums tagged with a certain category"
15522
  msgstr ""
15523
 
15524
- #: wppa-tinymce-shortcodes.php:210
15525
  msgid "Photos in albums owned by a certain user"
15526
  msgstr ""
15527
 
15528
- #: wppa-tinymce-shortcodes.php:211
15529
  #, fuzzy
15530
  msgid "Photos uploaded by a certain user"
15531
  msgstr "Foto caricate nell'album numero"
15532
 
15533
- #: wppa-tinymce-shortcodes.php:212
15534
  msgid "All photos in the system"
15535
  msgstr ""
15536
 
15537
- #: wppa-tinymce-shortcodes.php:224
15538
  msgid "Albums owned by a certain user"
15539
  msgstr ""
15540
 
15541
- #: wppa-tinymce-shortcodes.php:226
15542
  msgid "All albums in the system"
15543
  msgstr ""
15544
 
15545
- #: wppa-tinymce-shortcodes.php:233 wppa-tinymce-shortcodes.php:256
15546
  msgid "The Album(s) to be used:"
15547
  msgstr ""
15548
 
15549
- #: wppa-tinymce-shortcodes.php:239
15550
  #, fuzzy
15551
  msgid "Please select one or more albums"
15552
  msgstr "Skriv dit navn"
15553
 
15554
- #: wppa-tinymce-shortcodes.php:262 wppa-upldr-widget.php:209
15555
  msgid "All albums"
15556
  msgstr "album"
15557
 
15558
- #: wppa-tinymce-shortcodes.php:279
15559
  #, fuzzy
15560
  msgid "The album owner:"
15561
  msgstr ""
15562
  "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
15563
  "per i titoli delle copertine degli album."
15564
 
15565
- #: wppa-tinymce-shortcodes.php:282
15566
  #, fuzzy
15567
  msgid "Please select a user"
15568
  msgstr ""
15569
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
15570
  "di ricerca differente."
15571
 
15572
- #: wppa-tinymce-shortcodes.php:283
15573
  msgid "The logged in visitor"
15574
  msgstr ""
15575
 
15576
- #: wppa-tinymce-shortcodes.php:289
15577
  msgid "Too many users, edit manually"
15578
  msgstr ""
15579
 
15580
- #: wppa-tinymce-shortcodes.php:304
15581
  msgid "No parent specification"
15582
  msgstr ""
15583
 
15584
- #: wppa-tinymce-shortcodes.php:307 wppa-tinymce-shortcodes.php:330
15585
- #: wppa-tinymce-shortcodes.php:469
15586
  msgid "The generic parent"
15587
  msgstr ""
15588
 
15589
- #: wppa-tinymce-shortcodes.php:347
15590
  #, fuzzy
15591
  msgid "Max Albums:"
15592
  msgstr "album"
15593
 
15594
- #: wppa-tinymce-shortcodes.php:355
15595
  #, fuzzy
15596
  msgid "Max Photos:"
15597
  msgstr "Foto"
15598
 
15599
- #: wppa-tinymce-shortcodes.php:363
15600
  msgid "The cat the albums should have:"
15601
  msgstr ""
15602
 
15603
- #: wppa-tinymce-shortcodes.php:366
15604
  #, fuzzy
15605
  msgid "--- please select category ---"
15606
  msgstr "--- vises ikke ---"
15607
 
15608
- #: wppa-tinymce-shortcodes.php:396
15609
  #, fuzzy
15610
  msgid "The most recently uploaded photo"
15611
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
15612
 
15613
- #: wppa-tinymce-shortcodes.php:397
15614
  #, fuzzy
15615
  msgid "The photo of the day"
15616
  msgstr "Dagens foto"
15617
 
15618
- #: wppa-tinymce-shortcodes.php:414
15619
  msgid "Preview image:"
15620
  msgstr ""
15621
 
15622
- #: wppa-tinymce-shortcodes.php:435 wppa-tinymce-shortcodes.php:444
15623
  msgid "Additional features:"
15624
  msgstr ""
15625
 
15626
- #: wppa-tinymce-shortcodes.php:437
15627
  msgid "Enable Subsearch"
15628
  msgstr ""
15629
 
15630
- #: wppa-tinymce-shortcodes.php:438
15631
  msgid "Enable Rootsearch"
15632
  msgstr ""
15633
 
15634
- #: wppa-tinymce-shortcodes.php:446
15635
  msgid "Enable all tags"
15636
  msgstr ""
15637
 
15638
- #: wppa-tinymce-shortcodes.php:449
15639
  #, fuzzy
15640
  msgid "Please select the tags to show"
15641
  msgstr "Unders&oslash;g de tag(s) som dine fotos har"
15642
 
15643
- #: wppa-tinymce-shortcodes.php:455
15644
  #, fuzzy
15645
  msgid "There are no tags"
15646
  msgstr "Der er"
15647
 
15648
- #: wppa-tinymce-shortcodes.php:486
15649
  msgid "Calendar type:"
15650
  msgstr ""
15651
 
15652
- #: wppa-tinymce-shortcodes.php:489
15653
  #, fuzzy
15654
  msgid "By EXIF date"
15655
  msgstr "Ingen EXIF data"
15656
 
15657
- #: wppa-tinymce-shortcodes.php:490
15658
  #, fuzzy
15659
  msgid "By date of upload"
15660
  msgstr "Foto caricate nell'album numero"
15661
 
15662
- #: wppa-tinymce-shortcodes.php:491
15663
  msgid "By date last modified"
15664
  msgstr ""
15665
 
15666
- #: wppa-tinymce-shortcodes.php:494
15667
  msgid "Last date first"
15668
  msgstr ""
15669
 
15670
- #: wppa-tinymce-shortcodes.php:495
15671
  msgid "Initially display all"
15672
  msgstr ""
15673
 
15674
- #: wppa-tinymce-shortcodes.php:531
15675
  msgid ""
15676
  "This is a preview of the shortcode that is being generated. You may edit the "
15677
  "comment"
15678
  msgstr ""
15679
 
15680
- #: wppa-tinymce-shortcodes.php:534
15681
  msgid "insert Gallery"
15682
  msgstr ""
15683
 
15684
- #: wppa-tinymce-shortcodes.php:534
15685
  msgid "Please complete the shortcode specs"
15686
  msgstr ""
15687
 
@@ -15690,43 +15858,43 @@ msgstr ""
15690
  msgid "WPPA+ Top Ten Rated Photos"
15691
  msgstr "Foto Top Ti"
15692
 
15693
- #: wppa-topten-widget.php:49
15694
  #, fuzzy
15695
  msgid "Top Ten Photo album"
15696
  msgstr "Foto Top Ti"
15697
 
15698
- #: wppa-topten-widget.php:137 wppa-topten-widget.php:141
15699
- #: wppa-topten-widget.php:148
15700
  #, fuzzy, php-format
15701
  msgid "%s Votes"
15702
  msgstr "Gli utenti possono esprimere più voti."
15703
 
15704
- #: wppa-topten-widget.php:138 wppa-topten-widget.php:143
15705
- #: wppa-topten-widget.php:146
15706
  #, fuzzy, php-format
15707
  msgid "Views: %s times"
15708
  msgstr "Visite: %s"
15709
 
15710
- #: wppa-topten-widget.php:237
15711
  msgid "Number of views"
15712
  msgstr ""
15713
 
15714
- #: wppa-topten-widget.php:241
15715
  msgid "Include sub albums:"
15716
  msgstr ""
15717
 
15718
- #: wppa-topten-widget.php:249
15719
  msgid "Show owner:"
15720
  msgstr ""
15721
 
15722
- #: wppa-topten-widget.php:254
15723
  #, fuzzy
15724
  msgid "Show album:"
15725
  msgstr ""
15726
  "Questa impostazione farà sì che cliccando sulla immagine con il tasto destro "
15727
  "non permetterà all'utente di scaricare l'immagine."
15728
 
15729
- #: wppa-topten-widget.php:269
15730
  msgid "View count:"
15731
  msgstr ""
15732
 
@@ -15740,44 +15908,44 @@ msgstr "Indsend foto"
15740
  msgid "Uploader Photos"
15741
  msgstr "Indsend foto"
15742
 
15743
- #: wppa-upldr-widget.php:43
15744
  #, fuzzy
15745
  msgid "User uploaded photos"
15746
  msgstr "Bruger %s indsendte foto %s ind i album %s"
15747
 
15748
- #: wppa-upldr-widget.php:91
15749
  msgid "There are too many registered users in the system for this widget"
15750
  msgstr ""
15751
 
15752
- #: wppa-upldr-widget.php:125 wppa-upldr-widget.php:132
15753
  #, fuzzy
15754
  msgid "Photos uploaded by"
15755
  msgstr "Foto caricate nell'album numero"
15756
 
15757
- #: wppa-upldr-widget.php:167
15758
  #, fuzzy
15759
  msgid "User Photos"
15760
  msgstr "Foto"
15761
 
15762
- #: wppa-upldr-widget.php:182
15763
  #, fuzzy
15764
  msgid "Number of photos"
15765
  msgstr "Miniatura"
15766
 
15767
- #: wppa-upldr-widget.php:183
15768
  #, fuzzy
15769
  msgid "Most recent photo"
15770
  msgstr "Se fotos"
15771
 
15772
- #: wppa-upldr-widget.php:187
15773
  msgid "Ignore:"
15774
  msgstr ""
15775
 
15776
- #: wppa-upldr-widget.php:189
15777
  msgid "Enter loginnames seperated by commas"
15778
  msgstr ""
15779
 
15780
- #: wppa-upldr-widget.php:192
15781
  msgid "Look only in albums (including sub-albums):"
15782
  msgstr ""
15783
 
@@ -16410,41 +16578,41 @@ msgstr ""
16410
  msgid "Could not create page."
16411
  msgstr "Impossibile creare album. "
16412
 
16413
- #: wppa-utils.php:254
16414
  #, php-format
16415
  msgid "Rating: %s"
16416
  msgstr "Bed&oslash;mmelse: %s"
16417
 
16418
- #: wppa-utils.php:775 wppa-utils.php:786 wppa-utils.php:797
16419
  msgid "Notification of inappropriate image"
16420
  msgstr ""
16421
 
16422
- #: wppa-utils.php:776 wppa-utils.php:787 wppa-utils.php:798
16423
  #, php-format
16424
  msgid "Photo %s has been marked as inappropriate by %s different visitors."
16425
  msgstr ""
16426
 
16427
- #: wppa-utils.php:788
16428
  msgid "The status has been changed to 'pending'."
16429
  msgstr ""
16430
 
16431
- #: wppa-utils.php:799
16432
  #, fuzzy
16433
  msgid "It has been deleted."
16434
  msgstr "Il file %s no è supportato ed è stato rimosso."
16435
 
16436
- #: wppa-utils.php:856
16437
  #, php-format
16438
  msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
16439
  msgstr "G&aelig;stens e-mail adresse er: <a href=\"mailto:%s\">%s</a>"
16440
 
16441
- #: wppa-utils.php:862
16442
  #, php-format
16443
  msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
16444
  msgstr ""
16445
  "G&aelig;sten siger, at hans e-mail adresse er: <a href=\"mailto:%s\">%s</a>"
16446
 
16447
- #: wppa-utils.php:868
16448
  #, php-format
16449
  msgid ""
16450
  "This message is automaticly generated at %s. It is useless to respond to it."
@@ -16452,12 +16620,12 @@ msgstr ""
16452
  "Denne besked er automatisk genereret af %s. Det er un&oslash;dvendigt at "
16453
  "reagere p&aring; den."
16454
 
16455
- #: wppa-utils.php:1065
16456
  #, php-format
16457
  msgid "Time out after processing %s items."
16458
  msgstr ""
16459
 
16460
- #: wppa-utils.php:1068 wppa-utils.php:1072
16461
  #, php-format
16462
  msgid "Time out after processing %s items. Please restart this operation"
16463
  msgstr ""
@@ -16667,67 +16835,67 @@ msgstr "Top fotos"
16667
  msgid "- start over -"
16668
  msgstr ""
16669
 
16670
- #: wppa.php:354
16671
  msgid ""
16672
  "</strong><h3>WP Photo ALbum Plus Error message</h3>This is a multi site "
16673
  "installation. One of the following 3 lines must be entered in wp-config.php:"
16674
  msgstr ""
16675
 
16676
- #: wppa.php:355
16677
  msgid ""
16678
  "<br /><br /><b>define( 'WPPA_MULTISITE_INDIVIDUAL', true );</b> <small>// "
16679
  "Multisite WP 3.5 or later with every site its own albums and photos</small>"
16680
  msgstr ""
16681
 
16682
- #: wppa.php:356
16683
  msgid ""
16684
  "<br /><b>define( 'WPPA_MULTISITE_BLOGSDIR', true );</b> <small>// Multisite "
16685
  "prior to WP 3.5 with every site its own albums and photos</small>"
16686
  msgstr ""
16687
 
16688
- #: wppa.php:357
16689
  msgid ""
16690
  "<br /><b>define( 'WPPA_MULTISITE_GLOBAL', true );</b> <small>// Multisite "
16691
  "with one common set of albums and photos</small>"
16692
  msgstr ""
16693
 
16694
- #: wppa.php:358
16695
  msgid ""
16696
  "<br /><br />For more information see: <a href=\"https://wordpress.org/"
16697
  "plugins/wp-photo-album-plus/faq/\">the faq</a>"
16698
  msgstr ""
16699
 
16700
- #: wppa.php:359
16701
  msgid ""
16702
  "<br /><br /><em>If you upload photos, they will be placed in the wrong "
16703
  "location and will not be visible for visitors!</em><strong>"
16704
  msgstr ""
16705
 
16706
- #: wppa.php:376
16707
  msgid ""
16708
  "</strong>The photo index table needs to be rebuilt. Please run <b>Photo "
16709
  "Albums -> Settings</b> admin page <b>Table VIII-A9</b><strong>"
16710
  msgstr ""
16711
 
16712
- #: wppa.php:380
16713
  msgid ""
16714
  "</strong>The album index table needs to be rebuilt. Please run <b>Photo "
16715
  "Albums -> Settings</b> admin page <b>Table VIII-A8</b><strong>"
16716
  msgstr ""
16717
 
16718
- #: wppa.php:384
16719
  msgid ""
16720
  "</strong>The avarage ratings need to be recalculated. Please run <b>Photo "
16721
  "Albums -> Settings</b> admin page <b>Table VIII-A5</b><strong>"
16722
  msgstr ""
16723
 
16724
- #: wppa.php:404
16725
  msgid ""
16726
  "</strong>The tags system needs to be converted. Please run <b>Photo Albums -"
16727
  "> Settings</b> admin page <b>Table VIII-B16</b><strong>"
16728
  msgstr ""
16729
 
16730
- #: wppa.php:422
16731
  msgid ""
16732
  "</strong>The cats system needs to be converted. Please run <b>Photo Albums -"
16733
  "> Settings</b> admin page <b>Table VIII-B17</b><strong>"
@@ -16756,6 +16924,14 @@ msgstr ""
16756
  msgid "http://wppa.opajaap.nl/"
16757
  msgstr ""
16758
 
 
 
 
 
 
 
 
 
16759
  #, fuzzy
16760
  #~ msgid "Update uploads"
16761
  #~ msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2015-10-14 15:58+0200\n"
5
+ "PO-Revision-Date: 2015-10-14 15:58+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.5\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: wppa.php\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
31
  #: wppa-album-admin-autosave.php:1445 wppa-album-admin-autosave.php:1519
32
  #: wppa-album-admin-autosave.php:1629 wppa-comment-admin.php:311
33
  #: wppa-comment-admin.php:380 wppa-comment-admin.php:398
34
+ #: wppa-functions.php:1919 wppa-thumbnails.php:597
35
  msgid "Edit"
36
  msgstr "Rediger!"
37
 
39
  msgid "Warning. No page defined for search results!"
40
  msgstr ""
41
 
42
+ #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:177
43
+ #: wppa-settings-autosave.php:397 wppa-settings-autosave.php:3006
44
  #, fuzzy
45
  msgid "Search"
46
  msgstr "Cerca"
92
  msgid "Settings file not found"
93
  msgstr ""
94
 
95
+ #: wppa-admin-functions.php:206 wppa-admin-functions.php:210 wppa-ajax.php:2248
96
+ #: wppa-ajax.php:2255
97
  msgid "Please supply a numeric value greater than or equal to"
98
  msgstr ""
99
 
100
+ #: wppa-admin-functions.php:206 wppa-admin-functions.php:210 wppa-ajax.php:2248
101
+ #: wppa-ajax.php:2255
102
  msgid "for"
103
  msgstr ""
104
 
105
+ #: wppa-admin-functions.php:210 wppa-ajax.php:2255
106
  msgid "and less than or equal to"
107
  msgstr ""
108
 
242
  msgid "Album Admin"
243
  msgstr "Album administration"
244
 
245
+ #: wppa-admin.php:58 wppa-adminbar.php:47 wppa-upload-widget.php:74
246
  #: wppa-upload.php:88
247
  msgid "Upload Photos"
248
  msgstr "Indsend foto"
274
  msgstr "Dagens foto"
275
 
276
  #: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:61
277
+ #: wppa-setup.php:1359
278
  msgid "Photo of the day"
279
  msgstr "Dagens foto"
280
 
283
  msgid "Manage comments"
284
  msgstr "%d kommentarer"
285
 
286
+ #: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:387
287
+ #: wppa-settings-autosave.php:2835 wppa-settings-autosave.php:7564
288
+ #: wppa-settings-autosave.php:7609
289
  msgid "Comments"
290
  msgstr "%d kommentarer"
291
 
311
  msgid "Import"
312
  msgstr "Importer foto"
313
 
314
+ #: wppa-admin.php:121 wppa-settings-autosave.php:8603
315
  #, fuzzy
316
  msgid "Update"
317
  msgstr ""
346
  msgid "Exit & Refresh"
347
  msgstr "Ricarica questa pagina per svuotare la tabella X"
348
 
349
+ #: wppa-ajax.php:171 wppa-ajax.php:228 wppa-ajax.php:251 wppa-ajax.php:465
350
+ #: wppa-ajax.php:726
351
  msgid "Security check failure"
352
  msgstr ""
353
 
384
  msgid "Could not remove comment"
385
  msgstr "Impossibile creare album. "
386
 
387
+ #: wppa-ajax.php:264 wppa-ajax.php:598
388
  msgid "Unexpected error"
389
  msgstr ""
390
 
396
  msgid "The album is empty"
397
  msgstr ""
398
 
399
+ #: wppa-ajax.php:291 wppa-ajax.php:428
400
  msgid "Unable to create zip archive"
401
  msgstr ""
402
 
405
  msgid "Unable to create zip archive. code = %s"
406
  msgstr ""
407
 
408
+ #: wppa-ajax.php:340
409
  #, php-format
410
  msgid "Only %s out of %s photos could be added to the zipfile"
411
  msgstr ""
412
 
413
+ #: wppa-ajax.php:369
414
  msgid "Unknown source of request"
415
  msgstr ""
416
 
417
+ #: wppa-ajax.php:387
418
  msgid "Empty filename"
419
  msgstr ""
420
 
421
+ #: wppa-ajax.php:414
422
  msgid "Unable to create tempdir"
423
  msgstr ""
424
 
425
+ #: wppa-ajax.php:438
426
  #, fuzzy
427
  msgid "Unknown type"
428
  msgstr "sconosciuto"
429
 
430
+ #: wppa-ajax.php:447
431
  msgid "The photo does no longer exist"
432
  msgstr ""
433
 
434
+ #: wppa-ajax.php:479
435
  msgid "An error occurred while processing you rating request."
436
  msgstr ""
437
 
438
+ #: wppa-ajax.php:480
439
  msgid "Maybe you opened the page too long ago to recognize you."
440
  msgstr ""
441
 
442
+ #: wppa-ajax.php:481
443
  msgid "You may refresh the page and try again."
444
  msgstr ""
445
 
446
+ #: wppa-ajax.php:482
447
  msgid ""
448
  "Althoug an error occurred while processing your rating, your vote has been "
449
  "registered."
450
  msgstr ""
451
 
452
+ #: wppa-ajax.php:483
453
  msgid "However, this may not be reflected in the current pageview"
454
  msgstr ""
455
 
456
+ #: wppa-ajax.php:505
457
  #, fuzzy
458
  msgid "Photo has been removed."
459
  msgstr "Il file %s no è supportato ed è stato rimosso."
460
 
461
+ #: wppa-ajax.php:514
462
  msgid "Sorry, you can not rate your own photos"
463
  msgstr ""
464
 
465
+ #: wppa-ajax.php:526
466
  #, fuzzy
467
  msgid "Please enter a comment."
468
  msgstr "Skriv en kommentar"
469
 
470
+ #: wppa-ajax.php:551
471
  msgid "Security check failure."
472
  msgstr ""
473
 
474
+ #: wppa-ajax.php:563 wppa-ajax.php:579
475
  #, fuzzy
476
  msgid "Photo rated"
477
  msgstr "Dagens foto"
478
 
479
+ #: wppa-ajax.php:678
480
  msgid ""
481
  "Please explain your vote in a comment.\n"
482
  "Your vote will be discarded if you don't.\n"
486
  "your vote became effective."
487
  msgstr ""
488
 
489
+ #: wppa-ajax.php:722
490
  msgid "You do not have the rights to delete a photo"
491
  msgstr ""
492
 
493
+ #: wppa-ajax.php:732
494
  #, fuzzy, php-format
495
  msgid "Photo %s has been deleted"
496
  msgstr "Il file %s no è supportato ed è stato rimosso."
497
 
498
+ #: wppa-ajax.php:748
499
  msgid "You do not have the rights to update album information"
500
  msgstr ""
501
 
502
+ #: wppa-ajax.php:760
503
  msgid "<b>Ratings cleared</b>"
504
  msgstr ""
505
 
506
+ #: wppa-ajax.php:760 wppa-ajax.php:766 wppa-photo-admin-autosave.php:312
507
  msgid "No ratings for this photo."
508
  msgstr ""
509
 
510
+ #: wppa-ajax.php:763
511
  msgid "An error occurred while clearing ratings"
512
  msgstr ""
513
 
514
+ #: wppa-ajax.php:766 wppa-ajax.php:787 wppa-ajax.php:809
515
  msgid "<b>No photos in this album</b>"
516
  msgstr ""
517
 
518
+ #: wppa-ajax.php:781
519
  msgid "<b>Tags set to defaults</b> (reload)"
520
  msgstr ""
521
 
522
+ #: wppa-ajax.php:784
523
  msgid "An error occurred while setting tags"
524
  msgstr ""
525
 
526
+ #: wppa-ajax.php:803
527
  msgid "<b>Tags added width defaults</b> (reload)"
528
  msgstr ""
529
 
530
+ #: wppa-ajax.php:806
531
  msgid "An error occurred while adding tags"
532
  msgstr ""
533
 
534
+ #: wppa-ajax.php:818
535
  #, php-format
536
  msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
537
  msgstr ""
538
 
539
+ #: wppa-ajax.php:820 wppa-ajax.php:1220 wppa-album-admin-autosave.php:335
540
  #: wppa-album-admin-autosave.php:392 wppa-album-admin-autosave.php:988
541
  #: wppa-album-admin-autosave.php:1125 wppa-album-admin-autosave.php:1297
542
+ #: wppa-album-admin-autosave.php:1392 wppa-boxes-html.php:395
543
+ #: wppa-boxes-html.php:509 wppa-photo-admin-autosave.php:1329
544
+ #: wppa-photo-admin-autosave.php:1448 wppa-settings-autosave.php:453
545
+ #: wppa-settings-autosave.php:615 wppa-settings-autosave.php:637
546
+ #: wppa-settings-autosave.php:1337 wppa-settings-autosave.php:1358
547
+ #: wppa-settings-autosave.php:2732 wppa-settings-autosave.php:2753
548
+ #: wppa-settings-autosave.php:3064 wppa-settings-autosave.php:3088
549
+ #: wppa-settings-autosave.php:3557 wppa-settings-autosave.php:3671
550
+ #: wppa-settings-autosave.php:4239 wppa-settings-autosave.php:4260
551
+ #: wppa-settings-autosave.php:4436 wppa-settings-autosave.php:4460
552
+ #: wppa-settings-autosave.php:5459 wppa-settings-autosave.php:5967
553
+ #: wppa-settings-autosave.php:5989 wppa-settings-autosave.php:6569
554
+ #: wppa-settings-autosave.php:6593 wppa-settings-autosave.php:7558
555
+ #: wppa-settings-autosave.php:8161 wppa-settings-autosave.php:8317
556
  #: wppa-thumbnail-widget.php:204 wppa-upload.php:166
557
  msgid "Name"
558
  msgstr ""
559
 
560
+ #: wppa-ajax.php:823 wppa-ajax.php:1223 wppa-album-admin-autosave.php:998
561
  #: wppa-album-admin-autosave.php:1135 wppa-album-admin-autosave.php:1307
562
+ #: wppa-album-admin-autosave.php:1402 wppa-photo-admin-autosave.php:1330
563
+ #: wppa-photo-admin-autosave.php:1449 wppa-settings-autosave.php:454
564
+ #: wppa-settings-autosave.php:616 wppa-settings-autosave.php:638
565
+ #: wppa-settings-autosave.php:1338 wppa-settings-autosave.php:1359
566
+ #: wppa-settings-autosave.php:2733 wppa-settings-autosave.php:2754
567
+ #: wppa-settings-autosave.php:3065 wppa-settings-autosave.php:3089
568
+ #: wppa-settings-autosave.php:4240 wppa-settings-autosave.php:4261
569
+ #: wppa-settings-autosave.php:4437 wppa-settings-autosave.php:4461
570
+ #: wppa-settings-autosave.php:5460 wppa-settings-autosave.php:5968
571
+ #: wppa-settings-autosave.php:5990 wppa-settings-autosave.php:6570
572
+ #: wppa-settings-autosave.php:6594 wppa-settings-autosave.php:8162
573
+ #: wppa-settings-autosave.php:8184 wppa-settings-autosave.php:8224
574
+ #: wppa-settings-autosave.php:8246 wppa-settings-autosave.php:8292
575
+ #: wppa-settings-autosave.php:8318 wppa-widget-admin.php:195
576
  #, fuzzy
577
  msgid "Description"
578
  msgstr "Inserisci / modifica la descrizione per questo album."
579
 
580
+ #: wppa-ajax.php:827
581
  #, fuzzy
582
  msgid "Unbalanced tags in album description!"
583
  msgstr "Inserisci / modifica la descrizione per questo album."
584
 
585
+ #: wppa-ajax.php:834
586
  msgid "Album order #"
587
  msgstr ""
588
 
589
+ #: wppa-ajax.php:837
590
  #, fuzzy
591
  msgid "Cover photo"
592
  msgstr "Se fotos"
593
 
594
+ #: wppa-ajax.php:840
595
  #, fuzzy
596
  msgid "Parent album"
597
  msgstr "Impossibile creare album. "
598
 
599
+ #: wppa-ajax.php:845 wppa-settings-autosave.php:3551
600
  #, fuzzy
601
  msgid "Photo order"
602
  msgstr "Dagens foto"
603
 
604
+ #: wppa-ajax.php:848
605
  msgid "Use Alt thumbsize"
606
  msgstr ""
607
 
608
+ #: wppa-ajax.php:851
609
  msgid "Cover Type"
610
  msgstr ""
611
 
612
+ #: wppa-ajax.php:854 wppa-settings-autosave.php:4462
613
+ #: wppa-settings-autosave.php:5461
614
  #, fuzzy
615
  msgid "Link type"
616
  msgstr "Link til"
617
 
618
+ #: wppa-ajax.php:857 wppa-album-covers.php:1098
619
  msgid "Link to"
620
  msgstr "Link til"
621
 
622
+ #: wppa-ajax.php:860 wppa-ajax.php:1244 wppa-album-admin-autosave.php:1009
623
  #: wppa-album-admin-autosave.php:1146 wppa-album-admin-autosave.php:1318
624
+ #: wppa-album-admin-autosave.php:1413 wppa-boxes-html.php:517
625
+ #: wppa-photo-admin-autosave.php:1332 wppa-photo-admin-autosave.php:1451
626
  #: wppa-widget-admin.php:196
627
  msgid "Owner"
628
  msgstr ""
629
 
630
+ #: wppa-ajax.php:862
631
  #, php-format
632
  msgid "User %s does not exist"
633
  msgstr ""
634
 
635
+ #: wppa-ajax.php:867 wppa-ajax.php:873
636
  #, fuzzy
637
  msgid "Upload limit count"
638
  msgstr "Indsend foto"
639
 
640
+ #: wppa-ajax.php:880
641
  #, fuzzy
642
  msgid "Upload limit time"
643
  msgstr "Uploaded fil er ikke et billede"
644
 
645
+ #: wppa-ajax.php:884
646
  msgid "Default tags"
647
  msgstr ""
648
 
649
+ #: wppa-ajax.php:889
650
  msgid "Categories"
651
  msgstr ""
652
 
653
+ #: wppa-ajax.php:892
654
  msgid "Sub albums sort order"
655
  msgstr ""
656
 
657
+ #: wppa-ajax.php:900 wppa-ajax.php:1314
658
  msgid "Schedule date/time"
659
  msgstr ""
660
 
661
+ #: wppa-ajax.php:913 wppa-ajax.php:939
662
  #, php-format
663
  msgid "<b>%s</b> of album %s updated"
664
  msgstr ""
665
 
666
+ #: wppa-ajax.php:921
667
  msgid "All photos set to scheduled per date"
668
  msgstr ""
669
 
670
+ #: wppa-ajax.php:948
671
  #, php-format
672
  msgid "An error occurred while trying to update <b>%s</b> of album %s"
673
  msgstr ""
674
 
675
+ #: wppa-ajax.php:949 wppa-ajax.php:1198 wppa-ajax.php:1304
676
  msgid "Press CTRL+F5 and try again."
677
  msgstr ""
678
 
679
+ #: wppa-ajax.php:963
680
  msgid "You do not have the rights to update comment status"
681
  msgstr ""
682
 
683
+ #: wppa-ajax.php:972
684
  #, php-format
685
  msgid "Status of comment #%s updated"
686
  msgstr ""
687
 
688
+ #: wppa-ajax.php:975
689
  #, php-format
690
  msgid "Error updating status comment #%s"
691
  msgstr ""
692
 
693
+ #: wppa-ajax.php:986
694
  msgid "You do not have the rights to change photos"
695
  msgstr ""
696
 
697
+ #: wppa-ajax.php:995
698
  msgid "Watermark applied"
699
  msgstr ""
700
 
701
+ #: wppa-ajax.php:999
702
  msgid "An error occured while trying to apply a watermark"
703
  msgstr ""
704
 
705
+ #: wppa-ajax.php:1012
706
  msgid "You do not have the rights to update photo information"
707
  msgstr ""
708
 
709
+ #: wppa-ajax.php:1018
710
  #, php-format
711
  msgid "%s updated to %s."
712
  msgstr ""
713
 
714
+ #: wppa-ajax.php:1068
715
  #, php-format
716
  msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
717
  msgstr ""
718
 
719
+ #: wppa-ajax.php:1072
720
  msgid "Exif date/time updated"
721
  msgstr ""
722
 
723
+ #: wppa-ajax.php:1078
724
  msgid "Enter a value > -90 and < 90"
725
  msgstr ""
726
 
727
+ #: wppa-ajax.php:1086
728
  msgid "Lattitude updated"
729
  msgstr ""
730
 
731
+ #: wppa-ajax.php:1088
732
  #, fuzzy
733
  msgid "Could not update lattitude"
734
  msgstr "Impossibile creare album. "
735
 
736
+ #: wppa-ajax.php:1094
737
  msgid "Enter a value > -180 and < 180"
738
  msgstr ""
739
 
740
+ #: wppa-ajax.php:1102
741
  msgid "Longitude updated"
742
  msgstr ""
743
 
744
+ #: wppa-ajax.php:1104
745
  #, fuzzy
746
  msgid "Could not update longitude"
747
  msgstr "Impossibile creare album. "
748
 
749
+ #: wppa-ajax.php:1112
750
  #, fuzzy
751
  msgid "Photo files remade"
752
  msgstr "Dagens foto"
753
 
754
+ #: wppa-ajax.php:1115
755
  #, fuzzy
756
  msgid "Could not remake files"
757
  msgstr "Impossibile creare album. "
758
 
759
+ #: wppa-ajax.php:1121
760
  #, fuzzy
761
  msgid "Thumbnail remade"
762
  msgstr "Foto Top Ti"
763
 
764
+ #: wppa-ajax.php:1124
765
  #, fuzzy
766
  msgid "Could not remake thumbnail"
767
  msgstr "Impossibile creare album. "
768
 
769
+ #: wppa-ajax.php:1134 wppa-photo-admin-autosave.php:184
770
+ #: wppa-settings-autosave.php:3367 wppa-tinymce-scripts.php:289
771
+ #: wppa-tinymce-shortcodes.php:519 wppa-widget-admin.php:77
772
  msgid "left"
773
  msgstr ""
774
 
775
+ #: wppa-ajax.php:1138 wppa-photo-admin-autosave.php:186
776
  msgid "180&deg;"
777
  msgstr ""
778
 
779
+ #: wppa-ajax.php:1142 wppa-photo-admin-autosave.php:188
780
+ #: wppa-settings-autosave.php:3367 wppa-tinymce-scripts.php:291
781
+ #: wppa-tinymce-shortcodes.php:521 wppa-widget-admin.php:79
782
  msgid "right"
783
  msgstr ""
784
 
785
+ #: wppa-ajax.php:1150
786
  #, fuzzy, php-format
787
  msgid "Photo %s rotated %s"
788
  msgstr "Foto %s af %s"
789
 
790
+ #: wppa-ajax.php:1153
791
  #, php-format
792
  msgid "An error occurred while trying to rotate photo %s"
793
  msgstr ""
794
 
795
+ #: wppa-ajax.php:1163 wppa-ajax.php:1186 wppa-photo-admin-autosave.php:1066
796
+ #: wppa-photo-admin-autosave.php:1084
797
  #, fuzzy, php-format
798
  msgid "A photo with filename %s already exists in album %s."
799
  msgstr "Il file %s che hai caricato non è un file .png"
800
 
801
+ #: wppa-ajax.php:1173
802
  #, fuzzy, php-format
803
  msgid "Photo %s has been moved to album %s (%s)"
804
  msgstr "Il file %s no è supportato ed è stato rimosso."
805
 
806
+ #: wppa-ajax.php:1176
807
  #, php-format
808
  msgid "An error occurred while trying to move photo %s"
809
  msgstr ""
810
 
811
+ #: wppa-ajax.php:1194
812
  #, php-format
813
  msgid "Photo %s copied to album %s (%s)"
814
  msgstr ""
815
 
816
+ #: wppa-ajax.php:1197
817
  #, php-format
818
  msgid "An error occurred while trying to copy photo %s"
819
  msgstr ""
820
 
821
+ #: wppa-ajax.php:1227 wppa-ajax.php:1776
822
  #, fuzzy
823
  msgid "Unbalanced tags in photo description!"
824
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
825
 
826
+ #: wppa-ajax.php:1233
827
  #, fuzzy
828
  msgid "Photo order #"
829
  msgstr "Dagens foto"
830
 
831
+ #: wppa-ajax.php:1238
832
  #, php-format
833
  msgid "User %s does not exists"
834
  msgstr ""
835
 
836
+ #: wppa-ajax.php:1247
837
  #, fuzzy
838
  msgid "Link url"
839
  msgstr "Link til"
840
 
841
+ #: wppa-ajax.php:1250
842
  #, fuzzy
843
  msgid "Link title"
844
  msgstr "Link til"
845
 
846
+ #: wppa-ajax.php:1253
847
  #, fuzzy
848
  msgid "Link target"
849
  msgstr "Link til"
850
 
851
+ #: wppa-ajax.php:1259 wppa-multitag-widget.php:35 wppa-multitag-widget.php:67
852
+ #: wppa-tagcloud-widget.php:35 wppa-tagcloud-widget.php:64
853
  #, fuzzy
854
  msgid "Photo Tags"
855
  msgstr "Foto"
856
 
857
+ #: wppa-ajax.php:1264 wppa-comment-admin.php:310 wppa-comment-admin.php:397
858
+ #: wppa-photo-admin-autosave.php:1331 wppa-photo-admin-autosave.php:1450
859
+ #: wppa-settings-autosave.php:5993 wppa-settings-autosave.php:6573
860
+ #: wppa-settings-autosave.php:8185 wppa-settings-autosave.php:8225
861
+ #: wppa-settings-autosave.php:8247 wppa-settings-autosave.php:8293
862
  msgid "Status"
863
  msgstr ""
864
 
865
+ #: wppa-ajax.php:1267
866
  msgid "HTML Alt"
867
  msgstr ""
868
 
869
+ #: wppa-ajax.php:1271
870
  msgid "Video width"
871
  msgstr ""
872
 
873
+ #: wppa-ajax.php:1273 wppa-ajax.php:1280
874
  #, fuzzy
875
  msgid "Please enter an integer value >= 0"
876
  msgstr "Skriv en kommentar"
877
 
878
+ #: wppa-ajax.php:1278
879
  msgid "Video height"
880
  msgstr ""
881
 
882
+ #: wppa-ajax.php:1296 wppa-ajax.php:1330
883
  #, php-format
884
  msgid "<b>%s</b> of video %s updated"
885
  msgstr ""
886
 
887
+ #: wppa-ajax.php:1299 wppa-ajax.php:1333
888
  #, php-format
889
  msgid "<b>%s</b> of photo %s updated"
890
  msgstr ""
891
 
892
+ #: wppa-ajax.php:1303
893
  #, php-format
894
  msgid "An error occurred while trying to update <b>%s</b> of photo %s"
895
  msgstr ""
896
 
897
+ #: wppa-ajax.php:1359
898
  #, php-format
899
  msgid "<b>Custom field %s</b> of photo %s updated"
900
  msgstr ""
901
 
902
+ #: wppa-ajax.php:1366
903
  #, fuzzy
904
  msgid "<b>Error during upload.</b>"
905
  msgstr "Fejl under upload"
906
 
907
+ #: wppa-ajax.php:1391
908
  #, fuzzy
909
  msgid "Photo files updated."
910
  msgstr "Dagens foto"
911
 
912
+ #: wppa-ajax.php:1396
913
  #, fuzzy
914
  msgid "Could not update files."
915
  msgstr "Impossibile creare album. "
916
 
917
+ #: wppa-ajax.php:1407
918
+ #, php-format
919
+ msgid "Stereo mode updated in %d milliseconds"
920
+ msgstr ""
921
+
922
+ #: wppa-ajax.php:1423
923
  msgid "You do not have the rights to update settings"
924
  msgstr ""
925
 
926
+ #: wppa-ajax.php:1504
927
  msgid "Capability granted"
928
  msgstr ""
929
 
930
+ #: wppa-ajax.php:1509
931
  msgid "Capability withdrawn"
932
  msgstr ""
933
 
934
+ #: wppa-ajax.php:1520
935
  msgid "Column width."
936
  msgstr ""
937
 
938
+ #: wppa-ajax.php:1523
939
  msgid "Initial width."
940
  msgstr ""
941
 
942
+ #: wppa-ajax.php:1526
943
  msgid "Full size."
944
  msgstr ""
945
 
946
+ #: wppa-ajax.php:1529
947
  msgid "Max height."
948
  msgstr ""
949
 
950
+ #: wppa-ajax.php:1532
951
  #, fuzzy
952
  msgid "Thumbnail size."
953
  msgstr "Foto Top Ti"
954
 
955
+ #: wppa-ajax.php:1535
956
  #, fuzzy
957
  msgid "Thumbnail frame width"
958
  msgstr "Foto Top Ti"
959
 
960
+ #: wppa-ajax.php:1538
961
  #, fuzzy
962
  msgid "Thumbnail frame height"
963
  msgstr "Miniatura"
964
 
965
+ #: wppa-ajax.php:1541
966
  #, fuzzy
967
  msgid "Thumbnail Spacing"
968
  msgstr "Foto Top Ti"
969
 
970
+ #: wppa-ajax.php:1544
971
  #, fuzzy
972
  msgid "Photocount treshold."
973
  msgstr "Billede ikke fundet"
974
 
975
+ #: wppa-ajax.php:1547
976
  #, fuzzy
977
  msgid "Thumb page size."
978
  msgstr "Foto Top Ti"
979
 
980
+ #: wppa-ajax.php:1550
981
  #, fuzzy
982
  msgid "Cover photo size."
983
  msgstr "Indtast foto navn"
984
 
985
+ #: wppa-ajax.php:1553
986
  msgid "Album page size."
987
  msgstr ""
988
 
989
+ #: wppa-ajax.php:1556
990
  #, fuzzy
991
  msgid "Number of TopTen photos"
992
  msgstr "Foto Top Ti"
993
 
994
+ #: wppa-ajax.php:1559
995
  #, fuzzy
996
  msgid "Widget image thumbnail size"
997
  msgstr "Se"
998
 
999
+ #: wppa-ajax.php:1562 wppa-settings-autosave.php:1014
1000
  msgid "Max Cover width"
1001
  msgstr ""
1002
 
1003
+ #: wppa-ajax.php:1565
1004
  #, fuzzy
1005
  msgid "Minimal description height"
1006
  msgstr "Inserisci / modifica la descrizione per questo album."
1007
 
1008
+ #: wppa-ajax.php:1568
1009
  msgid "Minimal cover height"
1010
  msgstr ""
1011
 
1012
+ #: wppa-ajax.php:1571
1013
  msgid "Minimal text frame height"
1014
  msgstr ""
1015
 
1016
+ #: wppa-ajax.php:1574
1017
  msgid "Border width"
1018
  msgstr ""
1019
 
1020
+ #: wppa-ajax.php:1577 wppa-settings-autosave.php:714
1021
  msgid "Border radius"
1022
  msgstr ""
1023
 
1024
+ #: wppa-ajax.php:1580 wppa-settings-autosave.php:725
1025
  msgid "Box spacing"
1026
  msgstr ""
1027
 
1028
+ #: wppa-ajax.php:1586 wppa-settings-autosave.php:989
1029
  msgid "Popup size"
1030
  msgstr ""
1031
 
1032
+ #: wppa-ajax.php:1589
1033
  msgid "Fullsize border width"
1034
  msgstr ""
1035
 
1036
+ #: wppa-ajax.php:1592
1037
  msgid "Lightbox Bordersize"
1038
  msgstr ""
1039
 
1040
+ #: wppa-ajax.php:1595
1041
  msgid "Number of Comment widget entries"
1042
  msgstr ""
1043
 
1044
+ #: wppa-ajax.php:1598
1045
  msgid "Comment Widget image thumbnail size"
1046
  msgstr ""
1047
 
1048
+ #: wppa-ajax.php:1601 wppa-ajax.php:1604 wppa-ajax.php:1607
1049
  msgid "Opacity."
1050
  msgstr ""
1051
 
1052
+ #: wppa-ajax.php:1616 wppa-settings-autosave.php:1120
 
 
 
 
 
 
 
 
 
 
1053
  msgid "Avatar size"
1054
  msgstr ""
1055
 
1056
+ #: wppa-ajax.php:1619 wppa-ajax.php:1622
1057
  msgid "Watermark opacity"
1058
  msgstr ""
1059
 
1060
+ #: wppa-ajax.php:1625 wppa-settings-autosave.php:1289
1061
  msgid "Number of text lines"
1062
  msgstr ""
1063
 
1064
+ #: wppa-ajax.php:1628 wppa-settings-autosave.php:4138
1065
  msgid "Overlay opacity"
1066
  msgstr ""
1067
 
1068
+ #: wppa-ajax.php:1631 wppa-settings-autosave.php:7027
1069
  #, fuzzy
1070
  msgid "Upload limit"
1071
  msgstr "Indsend foto"
1072
 
1073
+ #: wppa-ajax.php:1634 wppa-settings-autosave.php:3846
1074
  msgid "Notify inappropriate"
1075
  msgstr ""
1076
 
1077
+ #: wppa-ajax.php:1637
1078
  msgid "Dislike pending"
1079
  msgstr ""
1080
 
1081
+ #: wppa-ajax.php:1640
1082
  #, fuzzy
1083
  msgid "Dislike delete"
1084
  msgstr "Slet"
1085
 
1086
+ #: wppa-ajax.php:1643 wppa-settings-autosave.php:6669
1087
  msgid "Max execution time"
1088
  msgstr ""
1089
 
1090
+ #: wppa-ajax.php:1648
1091
  msgid "Cube Points points"
1092
  msgstr ""
1093
 
1094
+ #: wppa-ajax.php:1651
1095
  msgid "JPG Image quality"
1096
  msgstr ""
1097
 
1098
+ #: wppa-ajax.php:1657 wppa-settings-autosave.php:3760
1099
  #, fuzzy
1100
  msgid "Number of coverphotos"
1101
  msgstr "Se forside fotos"
1102
 
1103
+ #: wppa-ajax.php:1660 wppa-settings-autosave.php:3817
1104
  msgid "Dislike value"
1105
  msgstr ""
1106
 
1107
+ #: wppa-ajax.php:1663 wppa-settings-autosave.php:845
1108
  #, fuzzy
1109
  msgid "Slideshow pagesize"
1110
  msgstr "Slideshow"
1111
 
1112
+ #: wppa-ajax.php:1666 wppa-settings-autosave.php:743
1113
  msgid "Max Pagelinks"
1114
  msgstr ""
1115
 
1116
+ #: wppa-ajax.php:1673
1117
  msgid "Ratings cleared"
1118
  msgstr ""
1119
 
1120
+ #: wppa-ajax.php:1676
1121
  #, fuzzy
1122
  msgid "Could not clear ratings"
1123
  msgstr "Impossibile creare album. "
1124
 
1125
+ #: wppa-ajax.php:1685
1126
  msgid "Viewcounts cleared"
1127
  msgstr ""
1128
 
1129
+ #: wppa-ajax.php:1688
1130
  #, fuzzy
1131
  msgid "Could not clear viewcounts"
1132
  msgstr "Impossibile creare album. "
1133
 
1134
+ #: wppa-ajax.php:1698
1135
  #, fuzzy
1136
  msgid "IPTC data cleared"
1137
  msgstr "Ingen IPTC data"
1138
 
1139
+ #: wppa-ajax.php:1699
1140
  msgid "Refresh this page to clear table X"
1141
  msgstr ""
1142
 
1143
+ #: wppa-ajax.php:1703
1144
  #, fuzzy
1145
  msgid "Could not clear IPTC data"
1146
  msgstr "Impossibile creare album. "
1147
 
1148
+ #: wppa-ajax.php:1713
1149
  #, fuzzy
1150
  msgid "EXIF data cleared"
1151
  msgstr "Ingen EXIF data"
1152
 
1153
+ #: wppa-ajax.php:1714
1154
  msgid "Refresh this page to clear table XI"
1155
  msgstr ""
1156
 
1157
+ #: wppa-ajax.php:1718
1158
  #, fuzzy
1159
  msgid "Could not clear EXIF data"
1160
  msgstr "Impossibile creare album. "
1161
 
1162
+ #: wppa-ajax.php:1726
1163
  msgid "Recuperation performed"
1164
  msgstr ""
1165
 
1166
+ #: wppa-ajax.php:1741
1167
  msgid ""
1168
  "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1169
  "#77bbff"
1170
  msgstr ""
1171
 
1172
+ #: wppa-ajax.php:1767
1173
  msgid "You just changed a setting that requires the recalculation of ratings."
1174
  msgstr ""
1175
 
1176
+ #: wppa-ajax.php:1768 wppa-ajax.php:2135
1177
  msgid "Please run the appropriate action in Table VIII."
1178
  msgstr ""
1179
 
1180
+ #: wppa-ajax.php:1792 wppa-ajax.php:1808
1181
  #, php-format
1182
  msgid "Unable to create or write to %s"
1183
  msgstr ""
1184
 
1185
+ #: wppa-ajax.php:1801
1186
  msgid "Source can not be inside the wppa folder."
1187
  msgstr ""
1188
 
1189
+ #: wppa-ajax.php:1818
1190
  msgid "The content must contain w#album"
1191
  msgstr ""
1192
 
1193
+ #: wppa-ajax.php:1825
1194
  msgid "The content must contain w#lat and w#lon"
1195
  msgstr ""
1196
 
1197
+ #: wppa-ajax.php:1867 wppa-ajax.php:1873
1198
  msgid "Members"
1199
  msgstr ""
1200
 
1201
+ #: wppa-ajax.php:1867
1202
  msgid "Parent of the member albums"
1203
  msgstr ""
1204
 
1205
+ #: wppa-ajax.php:2011
1206
  #, php-format
1207
  msgid "User %s has been blacklisted."
1208
  msgstr ""
1209
 
1210
+ #: wppa-ajax.php:2014
1211
  #, php-format
1212
  msgid "User %s does not exist."
1213
  msgstr ""
1214
 
1215
+ #: wppa-ajax.php:2037
1216
  msgid ""
1217
  "The content of the Custom box has been changed to display the Fotomoto "
1218
  "toolbar."
1219
  msgstr ""
1220
 
1221
+ #: wppa-ajax.php:2041 wppa-ajax.php:2056
1222
  msgid "The display of the custom box has been enabled"
1223
  msgstr ""
1224
 
1225
+ #: wppa-ajax.php:2052
1226
  msgid "The content of the Custom box has been changed to display maps."
1227
  msgstr ""
1228
 
1229
+ #: wppa-ajax.php:2082
1230
  msgid "This value can not be empty"
1231
  msgstr ""
1232
 
1233
+ #: wppa-ajax.php:2114
1234
  #, php-format
1235
  msgid "Failed to set %s to %s"
1236
  msgstr ""
1237
 
1238
+ #: wppa-ajax.php:2119
1239
  #, php-format
1240
  msgid "Setting %s updated to %s"
1241
  msgstr ""
1242
 
1243
+ #: wppa-ajax.php:2134
1244
  msgid ""
1245
  "You just changed a setting that requires the regeneration of thumbnails."
1246
  msgstr ""
1247
 
1248
+ #: wppa-ajax.php:2189
1249
  msgid "Missing album id"
1250
  msgstr ""
1251
 
1252
+ #: wppa-ajax.php:2209
1253
  msgid "You do not have the rights to delete this album"
1254
  msgstr ""
1255
 
1256
+ #: wppa-ajax.php:2250 wppa-ajax.php:2257
1257
  #, fuzzy
1258
  msgid "You may also enter:"
1259
  msgstr "Du kan indsende efter"
1260
 
1261
+ #: wppa-ajax.php:2251 wppa-ajax.php:2258
1262
  #, fuzzy
1263
  msgid "You may also leave/set this blank"
1264
  msgstr "Puoi anche lasciare/impostare a blank"
1305
  msgid "Top of page"
1306
  msgstr ""
1307
 
1308
+ #: wppa-album-admin-autosave.php:114 wppa-functions.php:3857
1309
+ #: wppa-settings-autosave.php:6917 wppa-wpdb-insert.php:329
1310
  #, fuzzy
1311
  msgid "New Album"
1312
  msgstr "Impossibile creare album. "
1331
  msgid "Edit Album Information"
1332
  msgstr "Rediger!"
1333
 
1334
+ #: wppa-album-admin-autosave.php:172 wppa-settings-autosave.php:293
1335
  #, fuzzy
1336
  msgid "Auto Save"
1337
  msgstr "Automatisk, afskudt"
1375
  msgid "Type the name of the album. Do not leave this empty."
1376
  msgstr ""
1377
 
1378
+ #: wppa-album-admin-autosave.php:211 wppa-photo-admin-autosave.php:719
1379
+ #: wppa-photo-admin-autosave.php:744
1380
  #, fuzzy
1381
  msgid "Description:"
1382
  msgstr "Inserisci / modifica la descrizione per questo album."
1391
  msgid "Enter / modify the description for this album."
1392
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
1393
 
1394
+ #: wppa-album-admin-autosave.php:240 wppa-photo-admin-autosave.php:275
1395
  msgid "Modified:"
1396
  msgstr ""
1397
 
1398
+ #: wppa-album-admin-autosave.php:249 wppa-thumbnails.php:645
1399
+ #: wppa-thumbnails.php:1420
1400
  #, fuzzy
1401
  msgid "Views:"
1402
  msgstr "Se"
1403
 
1404
+ #: wppa-album-admin-autosave.php:262 wppa-photo-admin-autosave.php:261
1405
  msgid "Owned by:"
1406
  msgstr ""
1407
 
1431
  "here."
1432
  msgstr ""
1433
 
1434
+ #: wppa-album-admin-autosave.php:309 wppa-tinymce-shortcodes.php:299
1435
+ #: wppa-tinymce-shortcodes.php:325 wppa-tinymce-shortcodes.php:464
1436
  #, fuzzy
1437
  msgid "Parent album:"
1438
  msgstr "Impossibile creare album. "
1448
  msgstr "Dagens foto"
1449
 
1450
  #: wppa-album-admin-autosave.php:333 wppa-album-admin-autosave.php:434
1451
+ #: wppa-settings-autosave.php:3594 wppa-settings-autosave.php:3618
1452
  #, fuzzy
1453
  msgid "--- default ---"
1454
  msgstr "--- vises ikke ---"
1455
 
1456
  #: wppa-album-admin-autosave.php:334 wppa-album-admin-autosave.php:390
1457
+ #: wppa-settings-autosave.php:3556 wppa-settings-autosave.php:3670
1458
  #: wppa-thumbnail-widget.php:203
1459
  msgid "Order #"
1460
  msgstr ""
1461
 
1462
  #: wppa-album-admin-autosave.php:336 wppa-album-admin-autosave.php:389
1463
+ #: wppa-settings-autosave.php:3558 wppa-settings-autosave.php:3672
1464
  #: wppa-thumbnail-widget.php:205 wppa-widget-admin.php:142
1465
  msgid "Random"
1466
  msgstr ""
1467
 
1468
+ #: wppa-album-admin-autosave.php:337 wppa-settings-autosave.php:3559
1469
  msgid "Rating mean value"
1470
  msgstr ""
1471
 
1472
+ #: wppa-album-admin-autosave.php:338 wppa-bestof-widget.php:171
1473
+ #: wppa-settings-autosave.php:3560 wppa-topten-widget.php:239
1474
  msgid "Number of votes"
1475
  msgstr ""
1476
 
1477
  #: wppa-album-admin-autosave.php:339 wppa-album-admin-autosave.php:394
1478
+ #: wppa-settings-autosave.php:3561 wppa-settings-autosave.php:3673
1479
  msgid "Timestamp"
1480
  msgstr ""
1481
 
1482
+ #: wppa-album-admin-autosave.php:340 wppa-photo-admin-autosave.php:286
1483
+ #: wppa-settings-autosave.php:3562
1484
  #, fuzzy
1485
  msgid "EXIF Date"
1486
  msgstr "Ingen EXIF data"
1487
 
1488
+ #: wppa-album-admin-autosave.php:341 wppa-settings-autosave.php:3563
1489
+ #: wppa-settings-autosave.php:3674
1490
  msgid "Order # desc"
1491
  msgstr ""
1492
 
1493
+ #: wppa-album-admin-autosave.php:342 wppa-settings-autosave.php:3564
1494
+ #: wppa-settings-autosave.php:3675
1495
  msgid "Name desc"
1496
  msgstr ""
1497
 
1498
+ #: wppa-album-admin-autosave.php:343 wppa-settings-autosave.php:3565
1499
  #: wppa-thumbnail-widget.php:206
1500
  msgid "Rating mean value desc"
1501
  msgstr ""
1502
 
1503
+ #: wppa-album-admin-autosave.php:344 wppa-settings-autosave.php:3566
1504
  #: wppa-thumbnail-widget.php:207
1505
  msgid "Number of votes desc"
1506
  msgstr ""
1507
 
1508
+ #: wppa-album-admin-autosave.php:345 wppa-settings-autosave.php:3567
1509
+ #: wppa-settings-autosave.php:3676 wppa-thumbnail-widget.php:208
1510
  msgid "Timestamp desc"
1511
  msgstr ""
1512
 
1513
+ #: wppa-album-admin-autosave.php:346 wppa-settings-autosave.php:3568
1514
  msgid "EXIF Date desc"
1515
  msgstr ""
1516
 
1554
  msgid "Use alt thumbsize:"
1555
  msgstr ""
1556
 
1557
+ #: wppa-album-admin-autosave.php:413 wppa-bestof-widget.php:183
1558
+ #: wppa-bestof-widget.php:188 wppa-bestof-widget.php:193
1559
+ #: wppa-topten-widget.php:247 wppa-topten-widget.php:255
1560
+ #: wppa-topten-widget.php:260 wppa-topten-widget.php:265
1561
+ #: wppa-topten-widget.php:270 wppa-topten-widget.php:275
1562
  #, fuzzy
1563
  msgid "no"
1564
  msgstr "--- ingen ---"
1565
 
1566
+ #: wppa-album-admin-autosave.php:414 wppa-bestof-widget.php:182
1567
+ #: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
1568
+ #: wppa-super-view-widget.php:87 wppa-topten-widget.php:246
1569
+ #: wppa-topten-widget.php:254 wppa-topten-widget.php:259
1570
+ #: wppa-topten-widget.php:264 wppa-topten-widget.php:269
1571
+ #: wppa-topten-widget.php:274
1572
  #, fuzzy
1573
  msgid "yes"
1574
  msgstr "&aring;r"
1583
  msgid "Cover Type:"
1584
  msgstr ""
1585
 
1586
+ #: wppa-album-admin-autosave.php:435 wppa-settings-autosave.php:1888
1587
+ #: wppa-settings-autosave.php:3740
1588
  msgid "Standard"
1589
  msgstr ""
1590
 
1591
+ #: wppa-album-admin-autosave.php:436 wppa-settings-autosave.php:3741
1592
  #, fuzzy
1593
  msgid "Long Descriptions"
1594
  msgstr "Inserisci / modifica la descrizione per questo album."
1595
 
1596
+ #: wppa-album-admin-autosave.php:437 wppa-settings-autosave.php:3742
1597
  msgid "Image Factory"
1598
  msgstr ""
1599
 
1600
+ #: wppa-album-admin-autosave.php:438 wppa-settings-autosave.php:3743
1601
  msgid "Standard mcr"
1602
  msgstr ""
1603
 
1604
+ #: wppa-album-admin-autosave.php:439 wppa-settings-autosave.php:3744
1605
  msgid "Long Descriptions mcr"
1606
  msgstr ""
1607
 
1608
+ #: wppa-album-admin-autosave.php:440 wppa-settings-autosave.php:3745
1609
  msgid "Image Factory mcr"
1610
  msgstr ""
1611
 
1635
  msgid "Upload limit:"
1636
  msgstr "Indsend foto"
1637
 
1638
+ #: wppa-album-admin-autosave.php:482 wppa-settings-autosave.php:5586
1639
+ #: wppa-settings-autosave.php:7034
1640
  msgid "for ever"
1641
  msgstr ""
1642
 
1643
  #: wppa-album-admin-autosave.php:483 wppa-album-admin-autosave.php:500
1644
+ #: wppa-settings-autosave.php:5587 wppa-settings-autosave.php:7035
1645
  #, fuzzy
1646
  msgid "per hour"
1647
  msgstr "1 time"
1648
 
1649
  #: wppa-album-admin-autosave.php:484 wppa-album-admin-autosave.php:501
1650
+ #: wppa-settings-autosave.php:5588 wppa-settings-autosave.php:7036
1651
  #, fuzzy
1652
  msgid "per day"
1653
  msgstr "1 dag"
1654
 
1655
  #: wppa-album-admin-autosave.php:485 wppa-album-admin-autosave.php:502
1656
+ #: wppa-settings-autosave.php:5589 wppa-settings-autosave.php:7037
1657
  #, fuzzy
1658
  msgid "per week"
1659
  msgstr "1 uge"
1660
 
1661
  #: wppa-album-admin-autosave.php:486 wppa-album-admin-autosave.php:503
1662
+ #: wppa-settings-autosave.php:5590 wppa-settings-autosave.php:7038
1663
  #, fuzzy
1664
  msgid "per month"
1665
  msgstr "1 m&aring;ned"
1666
 
1667
  #: wppa-album-admin-autosave.php:487 wppa-album-admin-autosave.php:504
1668
+ #: wppa-settings-autosave.php:5591 wppa-settings-autosave.php:7039
1669
  #, fuzzy
1670
  msgid "per year"
1671
  msgstr "1 &aring;r"
1686
  msgid "Separate categories with commas."
1687
  msgstr ""
1688
 
1689
+ #: wppa-album-admin-autosave.php:526 wppa-photo-admin-autosave.php:798
1690
  msgid "Examples:"
1691
  msgstr ""
1692
 
1693
+ #: wppa-album-admin-autosave.php:532 wppa-photo-admin-autosave.php:802
1694
  #, fuzzy
1695
  msgid "- select -"
1696
  msgstr ""
1702
  msgid "No categories yet"
1703
  msgstr "Intet album er defineret."
1704
 
1705
+ #: wppa-album-admin-autosave.php:542 wppa-photo-admin-autosave.php:812
1706
  msgid "Select to add"
1707
  msgstr ""
1708
 
1750
  msgid "Link type:"
1751
  msgstr "Link til"
1752
 
1753
+ #: wppa-album-admin-autosave.php:594 wppa-settings-autosave.php:7195
1754
  msgid "the sub-albums and thumbnails"
1755
  msgstr ""
1756
 
1757
+ #: wppa-album-admin-autosave.php:595 wppa-settings-autosave.php:7196
1758
  #, fuzzy
1759
  msgid "the sub-albums"
1760
  msgstr "Se album"
1761
 
1762
+ #: wppa-album-admin-autosave.php:596 wppa-settings-autosave.php:7197
1763
  #, fuzzy
1764
  msgid "the thumbnails"
1765
  msgstr "Se"
1766
 
1767
+ #: wppa-album-admin-autosave.php:597 wppa-settings-autosave.php:7198
1768
  msgid "the album photos as slideshow"
1769
  msgstr ""
1770
 
1772
  msgid "the link page with a clean url"
1773
  msgstr ""
1774
 
1775
+ #: wppa-album-admin-autosave.php:599 wppa-settings-autosave.php:7199
1776
  msgid "no link at all"
1777
  msgstr ""
1778
 
1788
  "correct shortcode on the target page."
1789
  msgstr ""
1790
 
1791
+ #: wppa-album-admin-autosave.php:614 wppa-bestof-widget.php:197
1792
  #: wppa-slideshow-widget.php:223 wppa-widget-admin.php:164
1793
  #: wppa-widget-admin.php:174
1794
  #, fuzzy
1795
  msgid "Link to:"
1796
  msgstr "Link til"
1797
 
1798
+ #: wppa-album-admin-autosave.php:620 wppa-settings-autosave.php:8751
1799
+ #: wppa-settings-autosave.php:8800
1800
  msgid "There are no pages (yet) to link to."
1801
  msgstr ""
1802
 
1862
  msgid "Remake all"
1863
  msgstr ""
1864
 
1865
+ #: wppa-album-admin-autosave.php:720 wppa-photo-admin-autosave.php:912
1866
  msgid "Remark:"
1867
  msgstr ""
1868
 
1885
  msgid "Moderate photo"
1886
  msgstr "Vedligehold"
1887
 
1888
+ #: wppa-album-admin-autosave.php:767 wppa-functions.php:2119
1889
  #: wppa-photo-admin-autosave.php:24
1890
  msgid "Edit photo"
1891
  msgstr "N&aelig;ste billede"
1895
  msgid "Delete Album"
1896
  msgstr "Impossibile creare album. "
1897
 
1898
+ #: wppa-album-admin-autosave.php:793 wppa-boxes-html.php:806
1899
+ #: wppa-breadcrumb.php:278 wppa-breadcrumb.php:296 wppa-breadcrumb.php:314
1900
+ #: wppa-breadcrumb.php:332 wppa-breadcrumb.php:387 wppa-breadcrumb.php:412
1901
+ #: wppa-breadcrumb.php:554 wppa-comment-admin.php:66 wppa-featen-widget.php:139
1902
  #: wppa-lasten-widget.php:172 wppa-slideshow-widget.php:201
1903
+ #: wppa-thumbnail-widget.php:191 wppa-topten-widget.php:220
1904
+ #: wppa-upload-widget.php:80 wppa-upload.php:116 wppa-upload.php:204
1905
  #: wppa-upload.php:251
1906
  #, fuzzy
1907
  msgid "Album:"
1925
  #: wppa-album-admin-autosave.php:1182 wppa-album-admin-autosave.php:1354
1926
  #: wppa-album-admin-autosave.php:1449 wppa-album-admin-autosave.php:1635
1927
  #: wppa-comment-admin.php:312 wppa-comment-admin.php:381
1928
+ #: wppa-comment-admin.php:399 wppa-functions.php:1931 wppa-links.php:724
1929
+ #: wppa-links.php:742 wppa-photo-admin-autosave.php:1278
1930
+ #: wppa-photo-admin-autosave.php:1346 wppa-thumbnails.php:590
1931
  msgid "Delete"
1932
  msgstr "Slet"
1933
 
1935
  msgid "Move to:"
1936
  msgstr ""
1937
 
1938
+ #: wppa-album-admin-autosave.php:809 wppa-settings-autosave.php:2666
1939
  msgid "Cancel"
1940
  msgstr "Cancella"
1941
 
1968
 
1969
  #: wppa-album-admin-autosave.php:978 wppa-album-admin-autosave.php:1115
1970
  #: wppa-album-admin-autosave.php:1286 wppa-album-admin-autosave.php:1381
1971
+ #: wppa-photo-admin-autosave.php:1327 wppa-photo-admin-autosave.php:1446
1972
  msgid "ID"
1973
  msgstr ""
1974
 
2176
  msgid "album"
2177
  msgstr "album"
2178
 
2179
+ #: wppa-album-covers.php:1207 wppa-settings-autosave.php:1233
2180
+ #: wppa-settings-autosave.php:5623
2181
  msgid "albums"
2182
  msgstr "album"
2183
 
2184
+ #: wppa-album-covers.php:1216 wppa-boxes-html.php:1133 wppa-breadcrumb.php:148
2185
+ #: wppa-breadcrumb.php:154 wppa-breadcrumb.php:161 wppa-breadcrumb.php:360
2186
+ #: wppa-breadcrumb.php:365 wppa-functions.php:4261 wppa-utils.php:1572
2187
  msgid "and"
2188
  msgstr "og"
2189
 
2192
  msgstr "foto"
2193
 
2194
  #: wppa-album-covers.php:1224 wppa-album-covers.php:1228
2195
+ #: wppa-settings-autosave.php:699 wppa-settings-autosave.php:738
2196
+ #: wppa-settings-autosave.php:1153 wppa-settings-autosave.php:1193
2197
+ #: wppa-settings-autosave.php:1213 wppa-settings-autosave.php:1253
2198
+ #: wppa-settings-autosave.php:3764 wppa-settings-autosave.php:5607
2199
+ #: wppa-settings-autosave.php:7032
2200
  msgid "photos"
2201
  msgstr "fotos"
2202
 
2205
  msgid "New!"
2206
  msgstr "Nuovo!"
2207
 
2208
+ #: wppa-album-covers.php:1273 wppa-thumbnails.php:1876 wppa-thumbnails.php:1877
2209
  #, fuzzy
2210
  msgid "New"
2211
  msgstr "Nuovo!"
2212
 
2213
+ #: wppa-album-covers.php:1295 wppa-boxes-html.php:830 wppa-non-admin.php:580
2214
+ #: wppa-settings-autosave.php:2138 wppa-settings-autosave.php:5084
2215
+ #: wppa-settings-autosave.php:7344
2216
  msgid "Slideshow"
2217
  msgstr "Slideshow"
2218
 
2224
  msgid "Categories:"
2225
  msgstr ""
2226
 
2227
+ #: wppa-album-covers.php:1333 wppa-breadcrumb.php:372 wppa-breadcrumb.php:377
2228
  msgid "Category:"
2229
  msgstr ""
2230
 
2237
  msgstr ""
2238
 
2239
  #: wppa-album-navigator-widget.php:92 wppa-album-widget.php:318
2240
+ #: wppa-bestof-widget.php:132 wppa-comment-widget.php:120
2241
+ #: wppa-featen-widget.php:136 wppa-gp-widget.php:89 wppa-lasten-widget.php:169
2242
+ #: wppa-multitag-widget.php:73 wppa-potd-widget.php:187 wppa-qr-widget.php:89
2243
+ #: wppa-search-widget.php:74 wppa-slideshow-widget.php:200
2244
+ #: wppa-stereo-widget.php:70 wppa-super-view-widget.php:75
2245
+ #: wppa-tagcloud-widget.php:69 wppa-thumbnail-widget.php:186
2246
+ #: wppa-topten-widget.php:217 wppa-upldr-widget.php:178
2247
+ #: wppa-upload-widget.php:78 wppa-widget-admin.php:177
2248
  msgid "Title:"
2249
  msgstr ""
2250
 
2319
  "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
2320
  "per i titoli delle copertine degli album."
2321
 
2322
+ #: wppa-album-widget.php:351 wppa-comment-widget.php:121
2323
+ #: wppa-featen-widget.php:147 wppa-lasten-widget.php:202
2324
+ #: wppa-thumbnail-widget.php:234 wppa-topten-widget.php:279
2325
  msgid ""
2326
  "You can set the sizes in this widget in the <b>Photo Albums -> Settings</b> "
2327
  "admin page."
2339
  msgstr "fotos"
2340
 
2341
  #: wppa-bestof-widget.php:16 wppa-bestof-widget.php:50
2342
+ #: wppa-bestof-widget.php:110
2343
  #, fuzzy
2344
  msgid "Best Of Photos"
2345
  msgstr "fotos"
2346
 
2347
+ #: wppa-bestof-widget.php:153
2348
  #, fuzzy
2349
  msgid "Photo(s)"
2350
  msgstr "Foto"
2351
 
2352
+ #: wppa-bestof-widget.php:154
2353
  msgid "Owner(s)"
2354
  msgstr ""
2355
 
2356
+ #: wppa-bestof-widget.php:159
2357
  #, fuzzy
2358
  msgid "Last week"
2359
  msgstr "1 uge"
2360
 
2361
+ #: wppa-bestof-widget.php:160
2362
  #, fuzzy
2363
  msgid "This week"
2364
  msgstr "1 uge"
2365
 
2366
+ #: wppa-bestof-widget.php:161
2367
  #, fuzzy
2368
  msgid "Last month"
2369
  msgstr "1 m&aring;ned"
2370
 
2371
+ #: wppa-bestof-widget.php:162
2372
  #, fuzzy
2373
  msgid "This month"
2374
  msgstr "1 m&aring;ned"
2375
 
2376
+ #: wppa-bestof-widget.php:163
2377
  #, fuzzy
2378
  msgid "Last year"
2379
  msgstr "1 &aring;r"
2380
 
2381
+ #: wppa-bestof-widget.php:164
2382
  #, fuzzy
2383
  msgid "This year"
2384
  msgstr "1 &aring;r"
2385
 
2386
+ #: wppa-bestof-widget.php:169
2387
  msgid "Number of max ratings"
2388
  msgstr ""
2389
 
2390
+ #: wppa-bestof-widget.php:170 wppa-topten-widget.php:238
2391
  #, fuzzy
2392
  msgid "Mean value"
2393
  msgstr "Mean value:"
2394
 
2395
+ #: wppa-bestof-widget.php:179 wppa-topten-widget.php:251
2396
  #: wppa-widget-admin.php:188
2397
  msgid "Subtitle:"
2398
  msgstr ""
2399
 
2400
+ #: wppa-bestof-widget.php:180
2401
  #, fuzzy
2402
  msgid "No of max ratings:"
2403
  msgstr "Altezza massima."
2404
 
2405
+ #: wppa-bestof-widget.php:185 wppa-topten-widget.php:262
2406
  #, fuzzy
2407
  msgid "Mean rating:"
2408
  msgstr "Valutazione:"
2409
 
2410
+ #: wppa-bestof-widget.php:190 wppa-topten-widget.php:267
2411
  #, fuzzy
2412
  msgid "Rating count:"
2413
  msgstr "Bed&oslash;mmelse: %s"
2414
 
2415
+ #: wppa-bestof-widget.php:199 wppa-common-functions.php:1972 wppa-items.php:365
2416
+ #: wppa-settings-autosave.php:1302 wppa-settings-autosave.php:1623
2417
+ #: wppa-settings-autosave.php:3353 wppa-settings-autosave.php:3367
2418
+ #: wppa-settings-autosave.php:3555 wppa-settings-autosave.php:3669
2419
+ #: wppa-settings-autosave.php:5155 wppa-settings-autosave.php:6908
2420
+ #: wppa-settings-autosave.php:7050 wppa-settings-autosave.php:7106
2421
+ #: wppa-settings-autosave.php:7922 wppa-settings-autosave.php:8078
2422
  #: wppa-thumbnail-widget.php:202 wppa-tinymce-scripts.php:288
2423
+ #: wppa-tinymce-shortcodes.php:518 wppa-upload.php:1528 wppa-watermark.php:520
2424
  #: wppa-widget-admin.php:76 wppa-widget-admin.php:193
2425
  msgid "--- none ---"
2426
  msgstr "--- ingen ---"
2427
 
2428
+ #: wppa-bestof-widget.php:200
2429
  #, fuzzy
2430
  msgid "The authors album(s)"
2431
  msgstr "Se dette billed p&aring; %s"
2432
 
2433
+ #: wppa-bestof-widget.php:201
2434
  #, fuzzy
2435
  msgid "The photos in the authors album(s)"
2436
  msgstr "Se dette billed p&aring; %s"
2437
 
2438
+ #: wppa-bestof-widget.php:202
2439
  #, fuzzy
2440
  msgid "All the authors photos"
2441
  msgstr ""
2442
  "I visitatori possono ottenere una panoramica delle immagini contenute in un "
2443
  "album grazie alle miniature."
2444
 
2445
+ #: wppa-boxes-html.php:130 wppa-boxes-html.php:229
2446
  #, fuzzy
2447
  msgid "Photo search results"
2448
  msgstr "Risultati della ricerca per: %s"
2449
 
2450
+ #: wppa-boxes-html.php:363 wppa-breadcrumb.php:136
2451
+ #: wppa-settings-autosave.php:385
 
 
 
 
 
 
 
 
 
 
2452
  #, fuzzy
2453
  msgid "Albums"
2454
  msgstr "album"
2455
 
2456
+ #: wppa-boxes-html.php:369 wppa-breadcrumb.php:151
2457
  #, fuzzy
2458
  msgid "Photos"
2459
  msgstr "Foto"
2460
 
2461
+ #: wppa-boxes-html.php:388
2462
  msgid "Category"
2463
  msgstr ""
2464
 
2465
+ #: wppa-boxes-html.php:401 wppa-boxes-html.php:534
2466
  msgid "Text"
2467
  msgstr ""
2468
 
2469
+ #: wppa-boxes-html.php:417 wppa-boxes-html.php:471 wppa-boxes-html.php:617
2470
+ #: wppa-boxes-html.php:647
2471
  msgid "CTRL+Click to add/remove option."
2472
  msgstr ""
2473
 
2474
+ #: wppa-boxes-html.php:418 wppa-boxes-html.php:472 wppa-boxes-html.php:618
2475
+ #: wppa-boxes-html.php:648
2476
  msgid "Items must meet all selected options."
2477
  msgstr ""
2478
 
2479
+ #: wppa-boxes-html.php:526 wppa-settings-autosave.php:8182
2480
+ #: wppa-settings-autosave.php:8222 wppa-settings-autosave.php:8244
2481
+ #: wppa-settings-autosave.php:8290
2482
  msgid "Tag"
2483
  msgstr ""
2484
 
2485
+ #: wppa-boxes-html.php:542
2486
  msgid "Iptc"
2487
  msgstr ""
2488
 
2489
+ #: wppa-boxes-html.php:551
2490
  msgid "Exif"
2491
  msgstr ""
2492
 
2493
+ #: wppa-boxes-html.php:749 wppa-boxes-html.php:834
2494
  msgid "Submit"
2495
  msgstr ""
2496
 
2497
+ #: wppa-boxes-html.php:791 wppa-super-view-widget.php:14
2498
  #: wppa-super-view-widget.php:66
2499
  #, fuzzy
2500
  msgid "Super View Photos"
2501
  msgstr "Se forside fotos"
2502
 
2503
+ #: wppa-boxes-html.php:822 wppa-settings-autosave.php:401
2504
+ #: wppa-settings-autosave.php:4346
2505
  #, fuzzy
2506
  msgid "Thumbnails"
2507
  msgstr "Miniatura"
2508
 
2509
+ #: wppa-boxes-html.php:868
2510
  #, fuzzy
2511
  msgid "Tagged photos"
2512
  msgstr "Top fotos"
2513
 
2514
+ #: wppa-boxes-html.php:882
2515
  msgid "Please select a tagcloud landing page in Table VI-C3b"
2516
  msgstr "V&aelig;lg en side, hvor tag-skyen skal vises i Tabel VI-C3b"
2517
 
2518
+ #: wppa-boxes-html.php:940
2519
  #, fuzzy
2520
  msgid "Multi Tagged photos"
2521
  msgstr "Top fotos"
2522
 
2523
+ #: wppa-boxes-html.php:954
2524
  msgid "Please select a multitag landing page in Table VI-C4b"
2525
  msgstr "V&aelig;lg en side, hvor multi-tag skal vises i Tabel VI-C4b"
2526
 
2527
+ #: wppa-boxes-html.php:992
2528
  msgid "Please check the tag(s) that the photos must have"
2529
  msgstr "Unders&oslash;g de tag(s) som dine fotos har"
2530
 
2531
+ #: wppa-boxes-html.php:1021
2532
  msgid "And"
2533
  msgstr "og"
2534
 
2535
+ #: wppa-boxes-html.php:1032
2536
  msgid "Or"
2537
  msgstr "Eller"
2538
 
2539
+ #: wppa-boxes-html.php:1082
2540
  msgid "Find!"
2541
  msgstr "Find!"
2542
 
2543
+ #: wppa-boxes-html.php:1109
2544
  msgid "Social media landing page"
2545
  msgstr ""
2546
 
2547
+ #: wppa-boxes-html.php:1134 wppa-utils.php:1572
2548
  #, php-format
2549
  msgid "See this image on %s"
2550
  msgstr "Se dette billed p&aring; %s"
2551
 
2552
+ #: wppa-boxes-html.php:1159 wppa-qr-widget.php:40
2553
  msgid "QR code"
2554
  msgstr ""
2555
 
2556
+ #: wppa-boxes-html.php:1204
2557
  #, php-format
2558
  msgid "Tweet %s on Twitter"
2559
  msgstr "Tweet %s p&aring; Twitter"
2560
 
2561
+ #: wppa-boxes-html.php:1211
2562
  #, fuzzy
2563
  msgid "Share on Twitter"
2564
  msgstr "Condividi su Twitter"
2565
 
2566
+ #: wppa-boxes-html.php:1224
2567
  #, php-format
2568
  msgid "Share %s on Google+"
2569
  msgstr "Del %s p&aring; Google+"
2570
 
2571
+ #: wppa-boxes-html.php:1232
2572
  #, fuzzy
2573
  msgid "Share on Google+"
2574
  msgstr "Condividi su Google+"
2575
 
2576
+ #: wppa-boxes-html.php:1247
2577
  #, php-format
2578
  msgid "Share %s on Pinterest"
2579
  msgstr "Del %s p&aring; Pinterest"
2580
 
2581
+ #: wppa-boxes-html.php:1256
2582
  #, fuzzy
2583
  msgid "Share on Pinterest"
2584
  msgstr "Condividi on Pinterest"
2585
 
2586
+ #: wppa-boxes-html.php:1391
2587
  #, fuzzy
2588
  msgid "Comment on Facebook:"
2589
  msgstr "Commenta su Facebook:"
2590
 
2591
+ #: wppa-boxes-html.php:1492 wppa-upload.php:1135
2592
  msgid "Working..."
2593
  msgstr ""
2594
 
2595
+ #: wppa-boxes-html.php:1494 wppa-boxes-html.php:1497
2596
  #, fuzzy
2597
  msgid "Delete album"
2598
  msgstr "Impossibile creare album. "
2599
 
2600
+ #: wppa-boxes-html.php:1584
2601
  #, fuzzy
2602
  msgid "Create Album"
2603
  msgstr "Impossibile creare album. "
2604
 
2605
+ #: wppa-boxes-html.php:1629 wppa-boxes-html.php:2372
2606
  #, fuzzy
2607
  msgid "Enter album name."
2608
  msgstr ""
2609
  "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
2610
  "per i titoli delle copertine degli album."
2611
 
2612
+ #: wppa-boxes-html.php:1631 wppa-boxes-html.php:2374
2613
  #, fuzzy
2614
  msgid "Don't leave this blank!"
2615
  msgstr "Puoi anche lasciare/impostare a blank"
2616
 
2617
+ #: wppa-boxes-html.php:1650
2618
  #, fuzzy
2619
  msgid "Enter album description"
2620
  msgstr "Inserisci / modifica la descrizione per questo album."
2621
 
2622
+ #: wppa-boxes-html.php:1672
2623
  #, fuzzy
2624
  msgid "Create album"
2625
  msgstr "Impossibile creare album. "
2626
 
2627
+ #: wppa-boxes-html.php:1728 wppa-boxes-html.php:1741 wppa-functions.php:3978
2628
  msgid "Max uploads reached"
2629
  msgstr "Maks. antal indsendinger er opn&aring;et"
2630
 
2631
+ #: wppa-boxes-html.php:1803 wppa-upload.php:134
2632
  msgid "Upload Photo"
2633
  msgstr "Indsend foto"
2634
 
2635
+ #: wppa-boxes-html.php:1950
2636
  #, php-format
2637
  msgid ""
2638
  "You may upload up to %s photos at once if your browser supports HTML-5 "
2641
  "Du m&aring; indsende op til %s fotos med det samme, hvis din fremviser "
2642
  "underst&oslash;tter HTML-5 multi fil indsendelse"
2643
 
2644
+ #: wppa-boxes-html.php:1958
2645
  #, php-format
2646
  msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
2647
  msgstr "Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
2648
 
2649
+ #: wppa-boxes-html.php:1987 wppa-upload.php:123 wppa-upload.php:211
2650
  #: wppa-upload.php:258 wppa-upload.php:704
2651
  msgid "Apply watermark file:"
2652
  msgstr "Inds&aelig;t vandm&aelig;rke:"
2653
 
2654
+ #: wppa-boxes-html.php:2009 wppa-upload.php:128 wppa-upload.php:216
2655
  #: wppa-upload.php:263 wppa-upload.php:708
2656
  msgid "Position:"
2657
  msgstr "Position:"
2658
 
2659
+ #: wppa-boxes-html.php:2037
2660
  #, fuzzy
2661
  msgid ""
2662
  "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
2666
  "Hvis du ikke udfylder dette felt, s&aring; vil filens navn blive brugt som "
2667
  "foto navn"
2668
 
2669
+ #: wppa-boxes-html.php:2042
2670
  #, fuzzy
2671
  msgid ""
2672
  "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
2675
  "Hvis du ikke udfylder dette felt, s&aring; vil filens navn blive brugt som "
2676
  "foto navn"
2677
 
2678
+ #: wppa-boxes-html.php:2047
2679
  msgid ""
2680
  "If you leave this blank, the original filename will be used as photo name."
2681
  msgstr ""
2682
  "Hvis du ikke udfylder dette felt, s&aring; vil filens navn blive brugt som "
2683
  "foto navn"
2684
 
2685
+ #: wppa-boxes-html.php:2061
2686
  msgid "Enter photo name."
2687
  msgstr "Indtast foto navn"
2688
 
2689
+ #: wppa-boxes-html.php:2082
2690
  msgid "Enter/modify photo description"
2691
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
2692
 
2693
+ #: wppa-boxes-html.php:2113
2694
  msgid "hidden"
2695
  msgstr ""
2696
 
2697
+ #: wppa-boxes-html.php:2182
2698
  msgid "Preview tags:"
2699
  msgstr ""
2700
 
2701
+ #: wppa-boxes-html.php:2195
2702
  #, fuzzy
2703
  msgid "Please select an album and try again"
2704
  msgstr ""
2705
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
2706
  "di ricerca differente."
2707
 
2708
+ #: wppa-boxes-html.php:2209
2709
  #, fuzzy
2710
  msgid "Upload photo"
2711
  msgstr "Indsend foto"
2712
 
2713
+ #: wppa-boxes-html.php:2265
2714
  #, fuzzy
2715
  msgid "ERROR: unable to upload files."
2716
  msgstr "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at uploade en fil.</b>"
2717
 
2718
+ #: wppa-boxes-html.php:2314
2719
  #, fuzzy
2720
  msgid "Edit albuminfo"
2721
  msgstr "Rediger!"
2722
 
2723
+ #: wppa-boxes-html.php:2394
2724
  #, fuzzy
2725
  msgid "Album description:"
2726
  msgstr "Inserisci / modifica la descrizione per questo album."
2727
 
2728
+ #: wppa-boxes-html.php:2413
2729
  #, fuzzy
2730
  msgid "Update album"
2731
  msgstr ""
2732
  "Non hai i permessi per potere aggiornare le informazioni di questo album"
2733
 
2734
+ #: wppa-boxes-html.php:2487
2735
  msgid "wrote:"
2736
  msgstr "skrev:"
2737
 
2738
+ #: wppa-boxes-html.php:2541
2739
  msgid "Avatar"
2740
  msgstr ""
2741
 
2742
+ #: wppa-boxes-html.php:2584 wppa-links.php:768
2743
  msgid "Awaiting moderation"
2744
  msgstr "Venter p&aring; godkendelse"
2745
 
2746
+ #: wppa-boxes-html.php:2587
2747
  msgid "Marked as spam"
2748
  msgstr "Markeret som spam"
2749
 
2750
+ #: wppa-boxes-html.php:2611
2751
  msgid "Edit!"
2752
  msgstr "Rediger!"
2753
 
2754
+ #: wppa-boxes-html.php:2615
2755
  msgid "Send!"
2756
  msgstr "Send"
2757
 
2758
+ #: wppa-boxes-html.php:2676
2759
  msgid "Your name:"
2760
  msgstr "Dit navn"
2761
 
2762
+ #: wppa-boxes-html.php:2691
2763
  msgid "Your email:"
2764
  msgstr "Din email"
2765
 
2766
+ #: wppa-boxes-html.php:2707
2767
  msgid "Your comment:"
2768
  msgstr "Din kommentar"
2769
 
2770
+ #: wppa-boxes-html.php:2752
2771
  #, php-format
2772
  msgid "You must <a href=\"%s\">login</a> to enter a comment"
2773
  msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
2774
 
2775
+ #: wppa-boxes-html.php:2755
2776
  #, fuzzy
2777
  msgid "You must login to enter a comment"
2778
  msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
2779
 
2780
+ #: wppa-boxes-html.php:2767
2781
  #, fuzzy, php-format
2782
  msgid "%d comments"
2783
  msgstr "%d kommentarer"
2784
 
2785
+ #: wppa-boxes-html.php:2771
2786
  msgid "Leave a comment"
2787
  msgstr "Skriv en kommentar"
2788
 
2789
+ #: wppa-boxes-html.php:2812
2790
  #, fuzzy
2791
  msgid "Smilies are not available"
2792
  msgstr "Pagina non disponibile."
2793
 
2794
+ #: wppa-boxes-html.php:2862
2795
  msgid "Show IPTC data"
2796
  msgstr "Vis IPTC data"
2797
 
2798
+ #: wppa-boxes-html.php:2873
2799
  msgid "Hide IPTC data"
2800
  msgstr "Skjul IPTC data"
2801
 
2802
+ #: wppa-boxes-html.php:2913
2803
  msgid "No IPTC data"
2804
  msgstr "Ingen IPTC data"
2805
 
2806
+ #: wppa-boxes-html.php:2960
2807
  msgid "Show EXIF data"
2808
  msgstr "Vis EXIF data"
2809
 
2810
+ #: wppa-boxes-html.php:2971
2811
  msgid "Hide EXIF data"
2812
  msgstr "Skjul EXIF data"
2813
 
2814
+ #: wppa-boxes-html.php:3013
2815
  msgid "No EXIF data"
2816
  msgstr "Ingen EXIF data"
2817
 
2818
+ #: wppa-boxes-html.php:3128 wppa-boxes-html.php:3133
2819
  #, fuzzy
2820
  msgid "< Previous"
2821
  msgstr "Forrige billede"
2822
 
2823
+ #: wppa-boxes-html.php:3139 wppa-boxes-html.php:3144
2824
  #, fuzzy
2825
  msgid "Next >"
2826
  msgstr "N&aelig;ste"
2827
 
2828
+ #: wppa-boxes-html.php:3241 wppa-boxes-html.php:3300
2829
  #, fuzzy
2830
  msgid "See the authors albums"
2831
  msgstr "Se dette billed p&aring; %s"
2832
 
2833
+ #: wppa-boxes-html.php:3245 wppa-boxes-html.php:3304
2834
  #, fuzzy
2835
  msgid "See the authors photos"
2836
  msgstr ""
2837
  "I visitatori possono ottenere una panoramica delle immagini contenute in un "
2838
  "album grazie alle miniature."
2839
 
2840
+ #: wppa-boxes-html.php:3249 wppa-boxes-html.php:3308
2841
  #, fuzzy
2842
  msgid "See all the authors photos"
2843
  msgstr ""
2844
  "I visitatori possono ottenere una panoramica delle immagini contenute in un "
2845
  "album grazie alle miniature."
2846
 
2847
+ #: wppa-boxes-html.php:3272
2848
  #, fuzzy, php-format
2849
  msgid "Photo by: %s"
2850
  msgstr "Foto %s af %s"
2851
 
2852
+ #: wppa-boxes-html.php:3273 wppa-boxes-html.php:3327
2853
  #, fuzzy, php-format
2854
  msgid "Max ratings: %s."
2855
  msgstr "Altezza massima."
2856
 
2857
+ #: wppa-boxes-html.php:3274 wppa-boxes-html.php:3328
2858
  #, fuzzy, php-format
2859
  msgid "Votes: %s."
2860
  msgstr "Gli utenti possono esprimere più voti."
2861
 
2862
+ #: wppa-boxes-html.php:3275 wppa-boxes-html.php:3329
2863
  #, fuzzy, php-format
2864
  msgid "Mean value: %4.2f."
2865
  msgstr "Mean value:"
2866
 
2867
+ #: wppa-boxes-html.php:3282
2868
  #, fuzzy, php-format
2869
  msgid "Photo %s not found."
2870
  msgstr "Billede ikke fundet"
2871
 
2872
+ #: wppa-boxes-html.php:3680 wppa-photo-admin-autosave.php:196
2873
+ #, fuzzy
2874
+ msgid "Refresh"
2875
+ msgstr "Ricarica questa pagina per svuotare la tabella X"
2876
+
2877
+ #: wppa-breadcrumb.php:98 wppa-settings-autosave.php:1453
2878
  msgid "Home"
2879
  msgstr "Hjem"
2880
 
2881
+ #: wppa-breadcrumb.php:119
2882
  #, fuzzy
2883
  msgid "Post:"
2884
  msgstr "--- lo stesso articolo/pagina ---"
2885
 
2886
+ #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:581
2887
  #, fuzzy
2888
  msgid "Page:"
2889
  msgstr "N&aelig;ste&nbsp;side"
2890
 
2891
+ #: wppa-breadcrumb.php:139
2892
  msgid "with category:"
2893
  msgstr ""
2894
 
2895
+ #: wppa-breadcrumb.php:142 wppa-breadcrumb.php:157
2896
  #, fuzzy
2897
  msgid "with name:"
2898
  msgstr "Dit navn"
2899
 
2900
+ #: wppa-breadcrumb.php:145 wppa-breadcrumb.php:161
2901
  msgid "with words:"
2902
  msgstr ""
2903
 
2904
+ #: wppa-breadcrumb.php:154
2905
  msgid "with tag:"
2906
  msgstr ""
2907
 
2908
+ #: wppa-breadcrumb.php:165
2909
  msgid "of owner:"
2910
  msgstr ""
2911
 
2912
+ #: wppa-breadcrumb.php:170
2913
  msgid "with iptc tag:"
2914
  msgstr ""
2915
 
2916
+ #: wppa-breadcrumb.php:170 wppa-breadcrumb.php:175
2917
  #, fuzzy
2918
  msgid "with content:"
2919
  msgstr "Dit navn"
2920
 
2921
+ #: wppa-breadcrumb.php:175
2922
  msgid "with exif tag:"
2923
  msgstr ""
2924
 
2925
+ #: wppa-breadcrumb.php:183 wppa-breadcrumb.php:209 wppa-breadcrumb.php:266
2926
+ #: wppa-breadcrumb.php:284 wppa-breadcrumb.php:302 wppa-breadcrumb.php:320
2927
+ #: wppa-breadcrumb.php:338 wppa-breadcrumb.php:350 wppa-breadcrumb.php:362
2928
+ #: wppa-breadcrumb.php:374 wppa-breadcrumb.php:393
2929
  #, fuzzy
2930
  msgid "View the thumbnails"
2931
  msgstr "Se"
2932
 
2933
+ #: wppa-breadcrumb.php:203
2934
  #, fuzzy, php-format
2935
  msgid "Searchresults from album %s and its subalbums"
2936
  msgstr "Risultati Ricerca da album %s e tutti i sotto album"
2937
 
2938
+ #: wppa-breadcrumb.php:207 wppa-breadcrumb.php:212
2939
  msgid "Searchstring:"
2940
  msgstr "S&oslash;gestreng:"
2941
 
2942
+ #: wppa-breadcrumb.php:221 wppa-breadcrumb.php:239
2943
  #, fuzzy
2944
  msgid "Photos by EXIF date"
2945
  msgstr "Vis EXIF data"
2946
 
2947
+ #: wppa-breadcrumb.php:225 wppa-breadcrumb.php:243
2948
  #, fuzzy
2949
  msgid "Photos by date of upload"
2950
  msgstr "Foto caricate nell'album numero"
2951
 
2952
+ #: wppa-breadcrumb.php:229 wppa-breadcrumb.php:247
2953
  msgid "Photos by date last modified"
2954
  msgstr ""
2955
 
2956
+ #: wppa-breadcrumb.php:259 wppa-breadcrumb.php:269
2957
  #, fuzzy, php-format
2958
  msgid "Photos by %s"
2959
  msgstr "Indsendelse af %s fotos var en success."
2960
 
2961
+ #: wppa-breadcrumb.php:276 wppa-breadcrumb.php:294 wppa-breadcrumb.php:312
2962
+ #: wppa-breadcrumb.php:330 wppa-breadcrumb.php:408
2963
  #, fuzzy
2964
  msgid "Various albums"
2965
  msgstr ""
2966
  "Puoi creare dei vari album che contengono delle foto così come creare allo "
2967
  "stesso tempo dei sotto-album."
2968
 
2969
+ #: wppa-breadcrumb.php:278 wppa-breadcrumb.php:296 wppa-breadcrumb.php:314
2970
+ #: wppa-breadcrumb.php:332 wppa-breadcrumb.php:412 wppa-lasten-widget.php:180
2971
  #, fuzzy
2972
  msgid "Albums:"
2973
  msgstr "album"
2974
 
2975
+ #: wppa-breadcrumb.php:282 wppa-breadcrumb.php:287
2976
  msgid "Top rated photos"
2977
  msgstr "Top fotos"
2978
 
2979
+ #: wppa-breadcrumb.php:300 wppa-breadcrumb.php:305
2980
  msgid "Recently uploaded photos"
2981
  msgstr "Nyligt kommenterede fotos"
2982
 
2983
+ #: wppa-breadcrumb.php:318 wppa-breadcrumb.php:323 wppa-comment-widget.php:41
2984
  msgid "Recently commented photos"
2985
  msgstr "Nyligt kommenterede fotos"
2986
 
2987
+ #: wppa-breadcrumb.php:336 wppa-breadcrumb.php:341 wppa-featen-widget.php:38
2988
  msgid "Featured photos"
2989
  msgstr "Top fotos"
2990
 
2991
+ #: wppa-breadcrumb.php:348 wppa-breadcrumb.php:353
2992
  #, fuzzy
2993
  msgid "Related photos"
2994
  msgstr "fotos"
2995
 
2996
+ #: wppa-breadcrumb.php:360 wppa-breadcrumb.php:365
2997
  msgid "Tagged photos:"
2998
  msgstr "Top fotos"
2999
 
3000
+ #: wppa-breadcrumb.php:360 wppa-breadcrumb.php:365
3001
  msgid "or"
3002
  msgstr ""
3003
 
3004
+ #: wppa-breadcrumb.php:391 wppa-breadcrumb.php:396
3005
  #, fuzzy
3006
  msgid "Recently updated albums"
3007
  msgstr "Le impostazioni sono state aggiornate"
3008
 
3009
+ #: wppa-breadcrumb.php:406
3010
  #, fuzzy, php-format
3011
  msgid "Various albums by %s"
3012
  msgstr ""
3013
  "Puoi creare dei vari album che contengono delle foto così come creare allo "
3014
  "stesso tempo dei sotto-album."
3015
 
3016
+ #: wppa-breadcrumb.php:433 wppa-breadcrumb.php:448
3017
  msgid "Thumbnail view"
3018
  msgstr "Foto Top Ti"
3019
 
3020
+ #: wppa-breadcrumb.php:437 wppa-breadcrumb.php:438 wppa-breadcrumb.php:453
3021
+ #: wppa-breadcrumb.php:454
3022
  msgid "Thumbs"
3023
  msgstr "Miniature"
3024
 
3025
+ #: wppa-breadcrumb.php:579
3026
  msgid "Unpublished"
3027
  msgstr ""
3028
 
3029
+ #: wppa-breadcrumb.php:609
3030
+ msgid "Found photos will meet the search criteria as follows:"
3031
+ msgstr ""
3032
+
3033
+ #: wppa-breadcrumb.php:612
3034
+ msgid "AND"
3035
+ msgstr ""
3036
+
3037
+ #: wppa-breadcrumb.php:616
3038
+ msgid "OR"
3039
+ msgstr ""
3040
+
3041
  #: wppa-cart.php:26
3042
  msgid "Buy now"
3043
  msgstr "K&oslash;b nu"
3138
  msgid "Linkpage:"
3139
  msgstr ""
3140
 
3141
+ #: wppa-comment-admin.php:224 wppa-settings-autosave.php:4517
3142
+ #: wppa-settings-autosave.php:7224
3143
  #, fuzzy
3144
  msgid "--- Please select a page ---"
3145
  msgstr "--- vises ikke ---"
3179
  msgid "timestamp"
3180
  msgstr ""
3181
 
3182
+ #: wppa-comment-admin.php:256 wppa-photo-admin-autosave.php:1275
3183
  msgid "Bulk action:"
3184
  msgstr ""
3185
 
3210
  msgstr "album"
3211
 
3212
  #: wppa-comment-admin.php:304 wppa-comment-admin.php:391
3213
+ #: wppa-settings-autosave.php:452 wppa-settings-autosave.php:614
3214
+ #: wppa-settings-autosave.php:636 wppa-settings-autosave.php:1336
3215
+ #: wppa-settings-autosave.php:1357 wppa-settings-autosave.php:2731
3216
+ #: wppa-settings-autosave.php:2752 wppa-settings-autosave.php:3063
3217
+ #: wppa-settings-autosave.php:3087 wppa-settings-autosave.php:4238
3218
+ #: wppa-settings-autosave.php:4259 wppa-settings-autosave.php:4435
3219
+ #: wppa-settings-autosave.php:4459 wppa-settings-autosave.php:5458
3220
+ #: wppa-settings-autosave.php:5966 wppa-settings-autosave.php:5988
3221
+ #: wppa-settings-autosave.php:6568 wppa-settings-autosave.php:6592
3222
+ #: wppa-settings-autosave.php:8160 wppa-settings-autosave.php:8181
3223
+ #: wppa-settings-autosave.php:8221 wppa-settings-autosave.php:8243
3224
+ #: wppa-settings-autosave.php:8289
3225
  msgid "#"
3226
  msgstr ""
3227
 
3255
  msgid "Reply to your comment on photo: %s on %s"
3256
  msgstr ""
3257
 
3258
+ #: wppa-comment-admin.php:359 wppa-functions.php:2111
3259
  msgid "Reply"
3260
  msgstr ""
3261
 
3262
+ #: wppa-comment-admin.php:370 wppa-photo-admin-autosave.php:828
3263
+ #: wppa-photo-admin-autosave.php:851 wppa-photo-admin-autosave.php:1002
3264
+ #: wppa-photo-admin-autosave.php:1012 wppa-photo-admin-autosave.php:1293
3265
+ #: wppa-photo-admin-autosave.php:1410 wppa-photo-admin-autosave.php:1422
3266
  msgid "Pending"
3267
  msgstr ""
3268
 
3269
+ #: wppa-comment-admin.php:371 wppa-photo-admin-autosave.php:1003
3270
+ #: wppa-photo-admin-autosave.php:1013
3271
  #, fuzzy
3272
  msgid "Approved"
3273
  msgstr "Godkend"
3274
 
3275
+ #: wppa-comment-admin.php:372 wppa-photo-admin-autosave.php:1004
3276
+ #: wppa-photo-admin-autosave.php:1014
3277
  msgid "Spam"
3278
  msgstr ""
3279
 
3291
  msgid "WPPA+ Comments on Photos"
3292
  msgstr "Kommentar til billeder"
3293
 
3294
+ #: wppa-comment-widget.php:15 wppa-comment-widget.php:117
3295
  #, fuzzy
3296
  msgid "Comments on Photos"
3297
  msgstr "Kommentar til billeder"
3301
  msgid "wrote"
3302
  msgstr "skrev:"
3303
 
3304
+ #: wppa-comment-widget.php:88 wppa-featen-widget.php:97
3305
  #: wppa-lasten-widget.php:120 wppa-potd-widget.php:134
3306
+ #: wppa-thumbnail-widget.php:116 wppa-topten-widget.php:155
3307
  msgid "Photo not found."
3308
  msgstr "Billede ikke fundet"
3309
 
3310
+ #: wppa-common-functions.php:193 wppa-common-functions.php:196
3311
  msgid "Default photo album for"
3312
  msgstr "Standard foto album for"
3313
 
3314
+ #: wppa-common-functions.php:541 wppa-common-functions.php:577
3315
  msgid "1 second"
3316
  msgstr "1 sekund"
3317
 
3318
+ #: wppa-common-functions.php:542 wppa-common-functions.php:578
3319
+ #: wppa-functions.php:4262
3320
  msgid "seconds"
3321
  msgstr "sekunder"
3322
 
3323
+ #: wppa-common-functions.php:546 wppa-common-functions.php:582
3324
  msgid "1 minute"
3325
  msgstr "1 minut"
3326
 
3327
+ #: wppa-common-functions.php:547 wppa-common-functions.php:583
3328
+ #: wppa-functions.php:4261
3329
  msgid "minutes"
3330
  msgstr "minutter"
3331
 
3332
+ #: wppa-common-functions.php:551 wppa-common-functions.php:587
3333
  msgid "1 hour"
3334
  msgstr "1 time"
3335
 
3336
+ #: wppa-common-functions.php:552 wppa-common-functions.php:588
3337
+ #: wppa-functions.php:4260
3338
  msgid "hours"
3339
  msgstr "timer"
3340
 
3341
+ #: wppa-common-functions.php:556 wppa-common-functions.php:592
3342
  msgid "1 day"
3343
  msgstr "1 dag"
3344
 
3345
+ #: wppa-common-functions.php:557 wppa-common-functions.php:593
3346
+ #: wppa-functions.php:4259
3347
  msgid "days"
3348
  msgstr "dage"
3349
 
3350
+ #: wppa-common-functions.php:561 wppa-common-functions.php:597
3351
  msgid "1 week"
3352
  msgstr "1 uge"
3353
 
3354
+ #: wppa-common-functions.php:562 wppa-common-functions.php:598
3355
+ #: wppa-functions.php:4258
3356
  msgid "weeks"
3357
  msgstr "uger"
3358
 
3359
+ #: wppa-common-functions.php:566 wppa-common-functions.php:602
3360
  msgid "1 month"
3361
  msgstr "1 m&aring;ned"
3362
 
3363
+ #: wppa-common-functions.php:567 wppa-common-functions.php:603
3364
  msgid "months"
3365
  msgstr "m&aring;neder"
3366
 
3367
+ #: wppa-common-functions.php:570 wppa-common-functions.php:606
3368
  msgid "1 year"
3369
  msgstr "1 &aring;r"
3370
 
3371
+ #: wppa-common-functions.php:571 wppa-common-functions.php:607
3372
  msgid "years"
3373
  msgstr "&aring;r"
3374
 
3375
+ #: wppa-common-functions.php:829 wppa-common-functions.php:830
3376
  msgid "ERROR: Resized or copied image could not be created."
3377
  msgstr ""
3378
 
3379
+ #: wppa-common-functions.php:875 wppa-common-functions.php:876
3380
  #, php-format
3381
  msgid "ERROR: File %s is not a valid picture file."
3382
  msgstr ""
3383
 
3384
+ #: wppa-common-functions.php:1691
3385
  #, php-format
3386
  msgid ""
3387
  "Based on your server memory limit you should not upload images larger then "
3388
  "<strong>%d x %d (%2.1f MP)</strong>"
3389
  msgstr ""
3390
 
3391
+ #: wppa-common-functions.php:1966
3392
  #, fuzzy
3393
  msgid "- select an album -"
3394
  msgstr ""
3395
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
3396
  "di ricerca differente."
3397
 
3398
+ #: wppa-common-functions.php:1978 wppa-items.php:373
3399
+ #: wppa-multitag-widget.php:77 wppa-multitag-widget.php:85
3400
+ #: wppa-slideshow-widget.php:201 wppa-tagcloud-widget.php:72
3401
+ #: wppa-tagcloud-widget.php:80
3402
  msgid "--- all ---"
3403
  msgstr "--- ingen ---"
3404
 
3405
+ #: wppa-common-functions.php:1984
3406
  #, fuzzy
3407
  msgid "--- generic ---"
3408
  msgstr "--- ingen ---"
3409
 
3410
+ #: wppa-common-functions.php:1995
3411
  msgid "--- multiple see below ---"
3412
  msgstr ""
3413
 
3414
+ #: wppa-common-functions.php:2001
3415
  #, fuzzy
3416
  msgid "--- a selection box ---"
3417
  msgstr "--- vises ikke ---"
3418
 
3419
+ #: wppa-common-functions.php:2035 wppa-items.php:369
3420
+ #: wppa-settings-autosave.php:7050 wppa-settings-autosave.php:7106
3421
  #: wppa-upload.php:1529
3422
  msgid "--- separate ---"
3423
  msgstr "--- vis ikke ---"
3424
 
3425
+ #: wppa-common-functions.php:2133
3426
  #, fuzzy
3427
  msgid "Photo id ="
3428
  msgstr "Dagens foto"
3429
 
3430
+ #: wppa-common-functions.php:2133
3431
  msgid "Value ="
3432
  msgstr ""
3433
 
3486
  msgid "n.a."
3487
  msgstr "Ikke brugbar"
3488
 
3489
+ #: wppa-exif-iptc-common.php:214 wppa-utils.php:2371
3490
  msgid "Not Defined"
3491
  msgstr "Ikke Defineret"
3492
 
3493
+ #: wppa-exif-iptc-common.php:215 wppa-utils.php:2372
3494
  msgid "Manual"
3495
  msgstr "Manual"
3496
 
3497
+ #: wppa-exif-iptc-common.php:216 wppa-utils.php:2373
3498
  msgid "Program AE"
3499
  msgstr "Program AE"
3500
 
3501
+ #: wppa-exif-iptc-common.php:217 wppa-utils.php:2374
3502
  msgid "Aperture-priority AE"
3503
  msgstr "Bl&aelig;ndeprioriteret AE"
3504
 
3505
+ #: wppa-exif-iptc-common.php:218 wppa-utils.php:2375
3506
  msgid "Shutter speed priority AE"
3507
  msgstr "Lukkerhastighedsprioritet AE"
3508
 
3509
+ #: wppa-exif-iptc-common.php:219 wppa-utils.php:2376
3510
  msgid "Creative (Slow speed)"
3511
  msgstr "Kreativ (Langsom hastighed)"
3512
 
3513
+ #: wppa-exif-iptc-common.php:220 wppa-utils.php:2377
3514
  msgid "Action (High speed)"
3515
  msgstr "Handling (h&oslash;j hastighed)"
3516
 
3517
+ #: wppa-exif-iptc-common.php:221 wppa-utils.php:2378
3518
  msgid "Portrait"
3519
  msgstr "Portr&aelig;t"
3520
 
3521
+ #: wppa-exif-iptc-common.php:222 wppa-utils.php:2379
3522
  msgid "Landscape"
3523
  msgstr "Landskab"
3524
 
3525
+ #: wppa-exif-iptc-common.php:223 wppa-utils.php:2380
3526
  msgid "Bulb"
3527
  msgstr "Bulb"
3528
 
3529
+ #: wppa-exif-iptc-common.php:245 wppa-utils.php:2381
3530
  msgid "Average"
3531
  msgstr "gennemsnitlig"
3532
 
3533
+ #: wppa-exif-iptc-common.php:246 wppa-utils.php:2382
3534
  msgid "Center-weighted average"
3535
  msgstr "Centerv&aelig;gtet gennemsnit"
3536
 
3537
+ #: wppa-exif-iptc-common.php:247 wppa-utils.php:2383
3538
  msgid "Spot"
3539
  msgstr "Spot"
3540
 
3541
+ #: wppa-exif-iptc-common.php:248 wppa-utils.php:2384
3542
  msgid "Multi-spot"
3543
  msgstr "Multi-spot"
3544
 
3545
+ #: wppa-exif-iptc-common.php:249 wppa-utils.php:2385
3546
  msgid "Multi-segment"
3547
  msgstr "Multi-segment"
3548
 
3549
+ #: wppa-exif-iptc-common.php:250 wppa-utils.php:2386
3550
  msgid "Partial"
3551
  msgstr "Delvist"
3552
 
3553
+ #: wppa-exif-iptc-common.php:251 wppa-settings-autosave.php:4363
3554
+ #: wppa-utils.php:2387
3555
  msgid "Other"
3556
  msgstr "Andet"
3557
 
3558
+ #: wppa-exif-iptc-common.php:287 wppa-utils.php:2388
3559
  msgid "No Flash"
3560
  msgstr "Ingen blitz"
3561
 
3562
+ #: wppa-exif-iptc-common.php:289 wppa-utils.php:2389
3563
  msgid "Fired"
3564
  msgstr "Afskudt"
3565
 
3566
+ #: wppa-exif-iptc-common.php:291 wppa-utils.php:2390
3567
  msgid "Fired, Return not detected"
3568
  msgstr "Afskudt, returnering er ikke opdaget "
3569
 
3570
+ #: wppa-exif-iptc-common.php:293 wppa-utils.php:2391
3571
  msgid "Fired, Return detected"
3572
  msgstr "Afskudt, returnering er opdaget "
3573
 
3574
+ #: wppa-exif-iptc-common.php:295 wppa-utils.php:2392
3575
  msgid "On, Did not fire"
3576
  msgstr "Tilsluttet, afsk&oslash;d ikke"
3577
 
3578
+ #: wppa-exif-iptc-common.php:297 wppa-utils.php:2393
3579
  msgid "On, Fired"
3580
  msgstr "Tilsluttet, afskudt"
3581
 
3582
+ #: wppa-exif-iptc-common.php:299 wppa-utils.php:2394
3583
  msgid "On, Return not detected"
3584
  msgstr "Tilsluttet, returnering er ikke opdaget "
3585
 
3586
+ #: wppa-exif-iptc-common.php:301 wppa-utils.php:2395
3587
  msgid "On, Return detected"
3588
  msgstr "Tilsluttet, returnering er opdaget "
3589
 
3590
+ #: wppa-exif-iptc-common.php:303 wppa-utils.php:2396
3591
  msgid "Off, Did not fire"
3592
  msgstr "Slukket, afsk&oslash;d ikke"
3593
 
3594
+ #: wppa-exif-iptc-common.php:305 wppa-utils.php:2397
3595
  msgid "Off, Did not fire, Return not detected"
3596
  msgstr "Slukket, afsk&oslash;d ikke, returnering er ikke opdaget "
3597
 
3598
+ #: wppa-exif-iptc-common.php:307 wppa-utils.php:2398
3599
  msgid "Auto, Did not fire"
3600
  msgstr "Automatisk, afsk&oslash;d ikke"
3601
 
3602
+ #: wppa-exif-iptc-common.php:309 wppa-utils.php:2399
3603
  msgid "Auto, Fired"
3604
  msgstr "Automatisk, afskudt"
3605
 
3606
+ #: wppa-exif-iptc-common.php:311 wppa-utils.php:2400
3607
  msgid "Auto, Fired, Return not detected"
3608
  msgstr "Automatisk, afskudt, returnering er ikke opdaget "
3609
 
3610
+ #: wppa-exif-iptc-common.php:313 wppa-utils.php:2401
3611
  msgid "Auto, Fired, Return detected"
3612
  msgstr "Automatisk, afskudt, returnering er opdaget "
3613
 
3614
+ #: wppa-exif-iptc-common.php:315 wppa-utils.php:2402
3615
  msgid "No flash function"
3616
  msgstr "Ingen blitz funktion"
3617
 
3618
+ #: wppa-exif-iptc-common.php:317 wppa-utils.php:2403
3619
  msgid "Off, No flash function"
3620
  msgstr "Slukket, ingen blitz funktion"
3621
 
3622
+ #: wppa-exif-iptc-common.php:319 wppa-utils.php:2404
3623
  msgid "Fired, Red-eye reduction"
3624
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion"
3625
 
3626
+ #: wppa-exif-iptc-common.php:321 wppa-utils.php:2405
3627
  msgid "Fired, Red-eye reduction, Return not detected"
3628
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion, returnering er ikke opdaget "
3629
 
3630
+ #: wppa-exif-iptc-common.php:323 wppa-utils.php:2406
3631
  msgid "Fired, Red-eye reduction, Return detected"
3632
  msgstr "Afskudt, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3633
 
3634
+ #: wppa-exif-iptc-common.php:325 wppa-utils.php:2407
3635
  msgid "On, Red-eye reduction"
3636
  msgstr "Tilstuttet, R&oslash;d-&oslash;je reduktion"
3637
 
3638
+ #: wppa-exif-iptc-common.php:327 wppa-utils.php:2408
3639
  msgid "Red-eye reduction, Return not detected"
3640
  msgstr "R&oslash;d-&oslash;je reduktion, returnering er ikke opdaget "
3641
 
3642
+ #: wppa-exif-iptc-common.php:329 wppa-utils.php:2409
3643
  msgid "On, Red-eye reduction, Return detected"
3644
  msgstr "Tilstuttet, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3645
 
3646
+ #: wppa-exif-iptc-common.php:331 wppa-utils.php:2410
3647
  msgid "Off, Red-eye reduction"
3648
  msgstr "Slukket, R&oslash;d-&oslash;je reduktion"
3649
 
3650
+ #: wppa-exif-iptc-common.php:333 wppa-utils.php:2411
3651
  msgid "Auto, Did not fire, Red-eye reduction"
3652
  msgstr "Automatisk, Afsk&oslash;d ikke, R&oslash;d-&oslash;je reduktion"
3653
 
3654
+ #: wppa-exif-iptc-common.php:335 wppa-utils.php:2412
3655
  msgid "Auto, Fired, Red-eye reduction"
3656
  msgstr "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion"
3657
 
3658
+ #: wppa-exif-iptc-common.php:337 wppa-utils.php:2413
3659
  msgid "Auto, Fired, Red-eye reduction, Return not detected"
3660
  msgstr ""
3661
  "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion, returnering er ikke "
3662
  "opdaget "
3663
 
3664
+ #: wppa-exif-iptc-common.php:339 wppa-utils.php:2414
3665
  msgid "Auto, Fired, Red-eye reduction, Return detected"
3666
  msgstr ""
3667
  "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3768
  msgid "WPPA+ Featured Photos"
3769
  msgstr "Top fotos"
3770
 
3771
+ #: wppa-featen-widget.php:15 wppa-featen-widget.php:131
3772
  #, fuzzy
3773
  msgid "Featured Photos"
3774
  msgstr "Top fotos"
3775
 
3776
+ #: wppa-featen-widget.php:75
3777
  msgid "View the featured photos"
3778
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
3779
 
3783
  msgstr ""
3784
  "Ingen album eller fotos fundet der svarer til dine s&oslash;ge kriterier."
3785
 
3786
+ #: wppa-functions.php:944
3787
  #, fuzzy, php-format
3788
  msgid ""
3789
  "There are %s albums found. Only the first %s will be shown. Please refine "
3792
  "Trovati %s album. Solo le prime %s saranno visualizzate. Per favore affinate "
3793
  "la ricerca.ie cercate anche per data."
3794
 
3795
+ #: wppa-functions.php:1928 wppa-links.php:717 wppa-links.php:734
3796
+ #: wppa-thumbnails.php:588
3797
  msgid "Are you sure you want to remove this photo?"
3798
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
3799
 
3800
+ #: wppa-functions.php:2089
3801
  msgid "Comment edited"
3802
  msgstr "Kommentarer redigeret"
3803
 
3804
+ #: wppa-functions.php:2094
3805
  #, fuzzy
3806
  msgid "Photo comment"
3807
  msgstr "Din kommentar"
3808
 
3809
+ #: wppa-functions.php:2098
3810
  msgid "Comment on photo:"
3811
  msgstr "Kommentar til billeder"
3812
 
3813
+ #: wppa-functions.php:2109
3814
  msgid "wrote on photo"
3815
  msgstr "Se fotos"
3816
 
3817
+ #: wppa-functions.php:2113
3818
  msgid "Moderate comment admin"
3819
  msgstr "Godkend kommentar administration"
3820
 
3821
+ #: wppa-functions.php:2116 wppa-functions.php:4110 wppa-upload.php:1427
3822
  msgid "Moderate manage photo"
3823
  msgstr "Se fotos"
3824
 
3825
+ #: wppa-functions.php:2130
3826
  msgid "You receive this email as you are assigned to moderate"
3827
  msgstr "Du modtager denne e-mail, fordi du er sat til at godkende"
3828
 
3829
+ #: wppa-functions.php:2142
3830
  msgid "You receive this email as administrator of the site"
3831
  msgstr ""
3832
  "Du modtager denne e-mail, fordi du er administrator p&aring; hjemmesiden"
3833
 
3834
+ #: wppa-functions.php:2159
3835
  msgid "You receive this email as uploader of the photo"
3836
  msgstr "Du modtager denne e-mail, fordi du indsendte et foto"
3837
 
3838
+ #: wppa-functions.php:2176
3839
  msgid "You receive this email as owner of the album"
3840
  msgstr "Du modtager denne e-mail, fordi du er ejer af albumet"
3841
 
3842
+ #: wppa-functions.php:2193
3843
  #, fuzzy
3844
  msgid "You receive this email because you commented this photo earlier."
3845
  msgstr "Du modtager denne e-mail, fordi du er sat til at godkende"
3846
 
3847
+ #: wppa-functions.php:2219
3848
  msgid "Comment added"
3849
  msgstr "Kommentarer tilf&oslash;jet"
3850
 
3851
+ #: wppa-functions.php:2225
3852
  msgid ""
3853
  "Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the "
3854
  "computation."
3856
  "Beklager, du gav et forkert svar.\\n\\nPr&oslash;v venligst igen, at "
3857
  "l&oslash;se beregningen."
3858
 
3859
+ #: wppa-functions.php:2236
3860
  msgid "Could not process comment.\\nProbably timed out."
3861
  msgstr "Kommentar kunne ikke bearbejdes"
3862
 
3863
+ #: wppa-functions.php:2319
3864
  #, fuzzy, php-format
3865
  msgid "1 Comment"
3866
  msgid_plural "%s Comments"
3867
  msgstr[0] "%d kommentarer"
3868
  msgstr[1] "%d kommentarer"
3869
 
3870
+ #: wppa-functions.php:2355 wppa-links.php:1405
3871
  msgid "A video can not be printed or downloaded"
3872
  msgstr ""
3873
 
3874
+ #: wppa-functions.php:2794
3875
  #, fuzzy
3876
  msgid "ERROR: Illegal attempt to enter a rating."
3877
  msgstr ""
3878
  "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at give en bed&oslash;mmelse.</b>"
3879
 
3880
+ #: wppa-functions.php:2807
3881
  #, fuzzy
3882
  msgid "ERROR: Illegal attempt to enter a comment."
3883
  msgstr "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at give en kommentar.</b>"
3884
 
3885
+ #: wppa-functions.php:3860
3886
  #, fuzzy
3887
  msgid "ERROR: Illegal attempt to create an album."
3888
  msgstr ""
3889
  "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at give en bed&oslash;mmelse.</b>"
3890
 
3891
+ #: wppa-functions.php:3864
3892
  #, fuzzy
3893
  msgid "Wrong captcha, please try again"
3894
  msgstr ""
3895
  "Beklager, du gav et forkert svar.\\n\\nPr&oslash;v venligst igen, at "
3896
  "l&oslash;se beregningen."
3897
 
3898
+ #: wppa-functions.php:3877
3899
  #, fuzzy, php-format
3900
  msgid "Album #%s created"
3901
  msgstr "Carica foto: per caricare le foto in un album che hai creato."
3902
 
3903
+ #: wppa-functions.php:3882
3904
  #, fuzzy
3905
  msgid "Could not create album"
3906
  msgstr "Impossibile creare album. "
3907
 
3908
+ #: wppa-functions.php:3893
3909
  #, fuzzy
3910
  msgid "ERROR: Illegal attempt to upload a file."
3911
  msgstr "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at uploade en fil.</b>"
3912
 
3913
+ #: wppa-functions.php:3933
3914
  #, fuzzy
3915
  msgid "Photo upload"
3916
  msgstr "Foto caricate nell'album numero"
3917
 
3918
+ #: wppa-functions.php:3934
3919
  #, fuzzy, php-format
3920
  msgid "Photo successfully uploaded."
3921
  msgid_plural "%s photos successfully uploaded."
3922
  msgstr[0] "Indsendelse af foto var en success."
3923
  msgstr[1] "Indsendelse af foto var en success."
3924
 
3925
+ #: wppa-functions.php:3935
3926
  #, php-format
3927
  msgid "%s points added."
3928
  msgstr "%s kommentarer tilf&oslash;jet"
3929
 
3930
+ #: wppa-functions.php:3939
3931
  msgid "Upload failed"
3932
  msgstr "Indl&aelig;sning fejlede"
3933
 
3934
+ #: wppa-functions.php:3942
3935
  #, fuzzy, php-format
3936
  msgid "1 Upload failed"
3937
  msgid_plural "%s uploads failed."
3938
  msgstr[0] "Indl&aelig;sning fejlede"
3939
  msgstr[1] "Indl&aelig;sning fejlede"
3940
 
3941
+ #: wppa-functions.php:3982
3942
  msgid "Error during upload"
3943
  msgstr "Fejl under upload"
3944
 
3945
+ #: wppa-functions.php:3987
3946
  msgid "Uploaded file is not an image"
3947
  msgstr "Uploaded fil er ikke et billede"
3948
 
3949
+ #: wppa-functions.php:3991
3950
  #, php-format
3951
  msgid ""
3952
  "Only gif, jpg and png image files are supported. Returned filetype = %d."
3953
  msgstr ""
3954
  "Kun gif, jpg og png filer underst&oslash;ttes. Den forkerte filtype er %d."
3955
 
3956
+ #: wppa-functions.php:3997
3957
  #, fuzzy, php-format
3958
  msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
3959
  msgstr "Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
3960
 
3961
+ #: wppa-functions.php:4003
3962
  #, fuzzy, php-format
3963
  msgid "Uploaded file %s already exists in this album."
3964
  msgstr "Il file %s che hai caricato non è un file .png"
3965
 
3966
+ #: wppa-functions.php:4011
3967
  #, php-format
3968
  msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
3969
  msgstr ""
3970
  "Billedet er for stort. Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
3971
 
3972
+ #: wppa-functions.php:4034
3973
  msgid "Could not insert photo into db."
3974
  msgstr "Kunne ikke inds&aelig;tte foto i databasen."
3975
 
3976
+ #: wppa-functions.php:4106 wppa-upload.php:1423
3977
  #, php-format
3978
  msgid "New photo uploaded: %s"
3979
  msgstr "Nyt foto indsendt: %s"
3980
 
3981
+ #: wppa-functions.php:4107 wppa-upload.php:1424
3982
  #, fuzzy, php-format
3983
  msgid "User %1$s uploaded photo %2$s into album %3$s"
3984
  msgstr "Bruger %s indsendte foto %s ind i album %s"
3985
 
3986
+ #: wppa-functions.php:4109 wppa-upload.php:1426
3987
  msgid "This upload requires moderation"
3988
  msgstr "Denne indsendelse kr&aelig;ver godkendelse"
3989
 
3990
+ #: wppa-functions.php:4113 wppa-upload.php:1430
3991
  msgid "Details:"
3992
  msgstr "Detaljer:"
3993
 
3994
+ #: wppa-functions.php:4114 wppa-upload.php:1431 wppa-utils.php:812
3995
+ #: wppa-utils.php:824
3996
  msgid "Manage photo"
3997
  msgstr "Se fotos"
3998
 
3999
+ #: wppa-functions.php:4256
4000
  msgid "You can upload after"
4001
  msgstr "Du kan indsende efter"
4002
 
4003
+ #: wppa-functions.php:4286 wppa-functions.php:4297 wppa-links.php:1034
4004
  #: wppa-non-admin.php:644
4005
  #, fuzzy
4006
  msgid "Download"
4008
  "Questa impostazione farà sì che cliccando sulla immagine con il tasto destro "
4009
  "non permetterà all'utente di scaricare l'immagine."
4010
 
4011
+ #: wppa-functions.php:4290 wppa-functions.php:4301
4012
  #, fuzzy
4013
  msgid "Download:"
4014
  msgstr ""
4015
  "Questa impostazione farà sì che cliccando sulla immagine con il tasto destro "
4016
  "non permetterà all'utente di scaricare l'immagine."
4017
 
4018
+ #: wppa-functions.php:4324
4019
  msgid "Zoom in"
4020
  msgstr "Zoom ind"
4021
 
4463
  msgid "licence."
4464
  msgstr ""
4465
 
4466
+ #: wppa-items.php:226 wppa-thumbnails.php:1835
4467
  msgid "Gold medal"
4468
  msgstr ""
4469
 
4470
+ #: wppa-items.php:226 wppa-photo-admin-autosave.php:832
4471
+ #: wppa-photo-admin-autosave.php:854 wppa-photo-admin-autosave.php:1297
4472
+ #: wppa-photo-admin-autosave.php:1414 wppa-photo-admin-autosave.php:1425
4473
  #: wppa-widget-admin.php:126
4474
  msgid "Gold"
4475
  msgstr ""
4476
 
4477
+ #: wppa-items.php:227 wppa-thumbnails.php:1836
4478
  msgid "Silver medal"
4479
  msgstr ""
4480
 
4481
+ #: wppa-items.php:227 wppa-photo-admin-autosave.php:833
4482
+ #: wppa-photo-admin-autosave.php:855 wppa-photo-admin-autosave.php:1298
4483
+ #: wppa-photo-admin-autosave.php:1415 wppa-photo-admin-autosave.php:1426
4484
  #: wppa-widget-admin.php:127
4485
  msgid "Silver"
4486
  msgstr ""
4487
 
4488
+ #: wppa-items.php:228 wppa-thumbnails.php:1837
4489
  msgid "Bronze medal"
4490
  msgstr ""
4491
 
4492
+ #: wppa-items.php:228 wppa-photo-admin-autosave.php:834
4493
+ #: wppa-photo-admin-autosave.php:856 wppa-photo-admin-autosave.php:1299
4494
+ #: wppa-photo-admin-autosave.php:1416 wppa-photo-admin-autosave.php:1427
4495
  #: wppa-widget-admin.php:128
4496
  msgid "Bronze"
4497
  msgstr ""
4498
 
4499
+ #: wppa-items.php:277 wppa-items.php:431 wppa-settings-autosave.php:3220
4500
  #, fuzzy
4501
  msgid "none"
4502
  msgstr "--- ingen ---"
4503
 
4504
+ #: wppa-items.php:307 wppa-items.php:442 wppa-upload.php:99 wppa-upload.php:104
4505
  #, fuzzy
4506
  msgid "unknown"
4507
  msgstr "sconosciuto"
4508
 
4509
+ #: wppa-items.php:377 wppa-items.php:398
4510
  msgid "--- deleted ---"
4511
  msgstr "--- vises ikke ---"
4512
 
4513
+ #: wppa-items.php:387
4514
  msgid "All Albums"
4515
  msgstr "Alle albums"
4516
 
4540
  msgstr ""
4541
 
4542
  #: wppa-lasten-widget.php:186 wppa-thumbnail-widget.php:218
4543
+ #: wppa-topten-widget.php:228
4544
  msgid "Display:"
4545
  msgstr ""
4546
 
4547
  #: wppa-lasten-widget.php:188 wppa-thumbnail-widget.php:220
4548
+ #: wppa-topten-widget.php:230
4549
  #, fuzzy
4550
  msgid "thumbnail images"
4551
  msgstr "Foto Top Ti"
4552
 
4553
  #: wppa-lasten-widget.php:189 wppa-thumbnail-widget.php:221
4554
+ #: wppa-topten-widget.php:231
4555
  #, fuzzy
4556
  msgid "photo names"
4557
  msgstr "Indtast foto navn"
4605
  msgid "Scheduled for %s"
4606
  msgstr ""
4607
 
4608
+ #: wppa-links.php:975 wppa-links.php:978 wppa-slideshow.php:718
4609
  msgid "Previous"
4610
  msgstr "Forrige billede"
4611
 
4612
  #: wppa-links.php:985 wppa-links.php:988 wppa-non-admin.php:590
4613
+ #: wppa-slideshow.php:721
4614
  msgid "Next"
4615
  msgstr "N&aelig;ste"
4616
 
4634
  msgid "Error"
4635
  msgstr ""
4636
 
4637
+ #: wppa-maintenance.php:119
4638
  #, fuzzy
4639
  msgid "Orphan photos"
4640
  msgstr "Indsend foto"
4641
 
4642
+ #: wppa-maintenance.php:119
4643
  msgid "This album contains refound lost photos"
4644
  msgstr ""
4645
 
4646
+ #: wppa-maintenance.php:666 wppa-photo-admin-autosave.php:1708
4647
+ #: wppa-photo-admin-autosave.php:1729 wppa-setup.php:338 wppa.php:370
4648
+ #: wppa.php:371
4649
  #, fuzzy
4650
  msgid "Required"
4651
  msgstr "Afskudt"
4652
 
4653
+ #: wppa-maintenance.php:745
4654
  msgid "There are no index items."
4655
  msgstr ""
4656
 
4657
+ #: wppa-maintenance.php:759
4658
  msgid "There are no error log messages"
4659
  msgstr ""
4660
 
4661
+ #: wppa-maintenance.php:827
4662
  #, fuzzy
4663
  msgid "There are no ratings"
4664
  msgstr "Der er"
4665
 
4666
+ #: wppa-maintenance.php:888
4667
  msgid "There are no active sessions"
4668
  msgstr ""
4669
 
4676
  msgid "Photo Tags Filter"
4677
  msgstr "Dagens foto"
4678
 
4679
+ #: wppa-multitag-widget.php:74
4680
  msgid "No of columns:"
4681
  msgstr ""
4682
 
4683
+ #: wppa-multitag-widget.php:75 wppa-tagcloud-widget.php:70
4684
  msgid "Select multiple tags or --- all ---:"
4685
  msgstr ""
4686
 
4698
  msgid "Keys: f = next mode; escape = exit; d = dismiss this notice."
4699
  msgstr ""
4700
 
4701
+ #: wppa-non-admin.php:581 wppa-settings-autosave.php:3374
4702
+ #: wppa-slideshow.php:217
4703
  msgid "Start"
4704
  msgstr "Start"
4705
 
4707
  msgid "Stop"
4708
  msgstr "Stop"
4709
 
4710
+ #: wppa-non-admin.php:583 wppa-slideshow.php:216
4711
  msgid "Slower"
4712
  msgstr "Langsommere"
4713
 
4714
+ #: wppa-non-admin.php:584 wppa-slideshow.php:218
4715
  msgid "Faster"
4716
  msgstr "Hurtigere"
4717
 
4731
  msgid "Prev."
4732
  msgstr "Forrige"
4733
 
4734
+ #: wppa-non-admin.php:591 wppa-slideshow.php:562 wppa-slideshow.php:566
4735
+ #: wppa-slideshow.php:612
4736
  msgid "Average&nbsp;rating"
4737
  msgstr "Bed&oslash;mmelse&nbsp;gennemsnitlig"
4738
 
4739
+ #: wppa-non-admin.php:592 wppa-slideshow.php:587 wppa-slideshow.php:592
4740
+ #: wppa-slideshow.php:597
4741
  msgid "My&nbsp;rating"
4742
  msgstr "Min&nbsp;bed&oslash;mmelse"
4743
 
4818
  msgid "Photo %s has been removed."
4819
  msgstr "Il file %s no è supportato ed è stato rimosso."
4820
 
4821
+ #: wppa-photo-admin-autosave.php:144 wppa-photo-admin-autosave.php:1462
4822
  #, fuzzy
4823
  msgid "No photos matching your search criteria."
4824
  msgstr ""
4825
  "Ingen album eller fotos fundet der svarer til dine s&oslash;ge kriterier."
4826
 
4827
+ #: wppa-photo-admin-autosave.php:147 wppa-photo-admin-autosave.php:1465
4828
  #: wppa-widget-admin.php:210
4829
  #, fuzzy
4830
  msgid "No photos yet in this album."
4866
  msgid "bottom - right"
4867
  msgstr ""
4868
 
4869
+ #: wppa-photo-admin-autosave.php:178
4870
  #, fuzzy
4871
  msgid "Preview:"
4872
  msgstr "Forrige billede"
4873
 
4874
+ #: wppa-photo-admin-autosave.php:180
4875
  #, php-format
4876
  msgid "Album: %d<br />(%s)"
4877
  msgstr ""
4878
 
4879
+ #: wppa-photo-admin-autosave.php:183
4880
  msgid "Rotate"
4881
  msgstr ""
4882
 
4883
+ #: wppa-photo-admin-autosave.php:184
4884
  #, fuzzy
4885
  msgid "Are you sure you want to rotate this photo left?"
4886
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
4887
 
4888
+ #: wppa-photo-admin-autosave.php:186
4889
  #, fuzzy
4890
  msgid "Are you sure you want to rotate this photo 180&deg;?"
4891
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
4892
 
4893
+ #: wppa-photo-admin-autosave.php:188
4894
  #, fuzzy
4895
  msgid "Are you sure you want to rotate this photo right?"
4896
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
4897
 
4898
+ #: wppa-photo-admin-autosave.php:193
4899
  msgid "If it says 'Photo rotated', the photo is rotated."
4900
  msgstr ""
4901
 
4902
+ #: wppa-photo-admin-autosave.php:197
 
 
 
 
 
4903
  #, php-format
4904
  msgid "If it says 'Photo rotated', the photo is rotated. %s the page."
4905
  msgstr ""
4906
 
4907
+ #: wppa-photo-admin-autosave.php:211
4908
  msgid "Preview fullsize video"
4909
  msgstr ""
4910
 
4911
+ #: wppa-photo-admin-autosave.php:226
4912
  #, fuzzy
4913
  msgid "Preview fullsize photo"
4914
  msgstr "Forrige billede"
4915
 
4916
+ #: wppa-photo-admin-autosave.php:241
4917
  msgid "Audio disabled"
4918
  msgstr ""
4919
 
4920
+ #: wppa-photo-admin-autosave.php:251
4921
  #, fuzzy
4922
  msgid "Upload:"
4923
  msgstr "Indsend"
4924
 
4925
+ #: wppa-photo-admin-autosave.php:257 wppa-photo-admin-autosave.php:279
4926
  msgid "local time"
4927
  msgstr ""
4928
 
4929
+ #: wppa-photo-admin-autosave.php:265 wppa-potd-widget.php:157
4930
  msgid "By:"
4931
  msgstr ""
4932
 
4933
+ #: wppa-photo-admin-autosave.php:303
4934
  #, fuzzy
4935
  msgid "Rating:"
4936
  msgstr "Bed&oslash;mmelse: %s"
4937
 
4938
+ #: wppa-photo-admin-autosave.php:309
4939
  msgid "Entries:"
4940
  msgstr ""
4941
 
4942
+ #: wppa-photo-admin-autosave.php:309
4943
  #, fuzzy
4944
  msgid "Mean value:"
4945
  msgstr "Mean value:"
4946
 
4947
+ #: wppa-photo-admin-autosave.php:316
4948
  #, php-format
4949
  msgid "Disliked by %d visitors"
4950
  msgstr ""
4951
 
4952
+ #: wppa-photo-admin-autosave.php:320
4953
  #, php-format
4954
  msgid "%d pending votes."
4955
  msgstr ""
4956
 
4957
+ #: wppa-photo-admin-autosave.php:330
4958
  #, fuzzy
4959
  msgid "Views"
4960
  msgstr "Se"
4961
 
4962
+ #: wppa-photo-admin-autosave.php:341
4963
  #, fuzzy
4964
  msgid "Photo sort order #:"
4965
  msgstr "Billede ikke fundet"
4966
 
4967
+ #: wppa-photo-admin-autosave.php:354
4968
  #, fuzzy
4969
  msgid "Are you sure you want to move this photo?"
4970
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
4971
 
4972
+ #: wppa-photo-admin-autosave.php:354
4973
  #, fuzzy
4974
  msgid "Please select an album to move the photo to first."
4975
  msgstr ""
4976
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
4977
  "di ricerca differente."
4978
 
4979
+ #: wppa-photo-admin-autosave.php:354
4980
  #, fuzzy
4981
  msgid "Move photo to"
4982
  msgstr "Se fotos"
4983
 
4984
+ #: wppa-photo-admin-autosave.php:363
4985
  #, fuzzy
4986
  msgid "Are you sure you want to copy this photo?"
4987
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
4988
 
4989
+ #: wppa-photo-admin-autosave.php:363
4990
  #, fuzzy
4991
  msgid "Please select an album to copy the photo to first."
4992
  msgstr ""
4993
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
4994
  "di ricerca differente."
4995
 
4996
+ #: wppa-photo-admin-autosave.php:363
4997
  msgid "Copy photo to"
4998
  msgstr ""
4999
 
5000
+ #: wppa-photo-admin-autosave.php:375 wppa-photo-admin-autosave.php:1346
5001
  #, fuzzy
5002
  msgid "Are you sure you want to delete this photo?"
5003
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
5004
 
5005
+ #: wppa-photo-admin-autosave.php:375
5006
  #, fuzzy
5007
  msgid "Delete photo"
5008
  msgstr "fotos"
5009
 
5010
+ #: wppa-photo-admin-autosave.php:385
5011
  msgid "Autopage Permalink:"
5012
  msgstr ""
5013
 
5014
+ #: wppa-photo-admin-autosave.php:398
5015
  #, fuzzy
5016
  msgid "Link url:"
5017
  msgstr "Link til"
5018
 
5019
+ #: wppa-photo-admin-autosave.php:403
5020
  msgid "Same tab"
5021
  msgstr ""
5022
 
5023
+ #: wppa-photo-admin-autosave.php:404 wppa-settings-autosave.php:4464
5024
+ #: wppa-settings-autosave.php:5463
5025
  #, fuzzy
5026
  msgid "New tab"
5027
  msgstr "Impossibile creare album. "
5028
 
5029
+ #: wppa-photo-admin-autosave.php:412
5030
  #, fuzzy
5031
  msgid "Link title:"
5032
  msgstr "Link til"
5033
 
5034
+ #: wppa-photo-admin-autosave.php:421
5035
  msgid ""
5036
  "If you want this link to be used, check 'PS Overrule' checkbox in table VI."
5037
  msgstr ""
5038
 
5039
+ #: wppa-photo-admin-autosave.php:432
5040
  msgid "HTML Alt attribute:"
5041
  msgstr ""
5042
 
5043
+ #: wppa-photo-admin-autosave.php:452
5044
  #, fuzzy
5045
  msgid "Filename:"
5046
  msgstr "Dit navn"
5047
 
5048
+ #: wppa-photo-admin-autosave.php:458
5049
  #, fuzzy
5050
  msgid "Update file"
5051
  msgstr ""
5052
  "Non hai i permessi per potere aggiornare le informazioni di questo album"
5053
 
5054
+ #: wppa-photo-admin-autosave.php:469 wppa-settings-autosave.php:2954
5055
  msgid "Upload"
5056
  msgstr "Indsend"
5057
 
5058
+ #: wppa-photo-admin-autosave.php:479
5059
  msgid "Video size:"
5060
  msgstr ""
5061
 
5062
+ #: wppa-photo-admin-autosave.php:485 wppa-slideshow-widget.php:203
5063
  msgid "Width:"
5064
  msgstr ""
5065
 
5066
+ #: wppa-photo-admin-autosave.php:488 wppa-photo-admin-autosave.php:496
5067
  #, php-format
5068
  msgid "pix, (0=default:%s)"
5069
  msgstr ""
5070
 
5071
+ #: wppa-photo-admin-autosave.php:493 wppa-slideshow-widget.php:204
5072
  msgid "Height:"
5073
  msgstr ""
5074
 
5075
+ #: wppa-photo-admin-autosave.php:504 wppa-photo-admin-autosave.php:526
5076
  msgid "Formats:"
5077
  msgstr ""
5078
 
5079
+ #: wppa-photo-admin-autosave.php:512 wppa-photo-admin-autosave.php:534
5080
  msgid "Filesize:"
5081
  msgstr ""
5082
 
5083
+ #: wppa-photo-admin-autosave.php:547
5084
  #, fuzzy
5085
  msgid "Poster:"
5086
  msgstr "--- lo stesso articolo/pagina ---"
5087
 
5088
+ #: wppa-photo-admin-autosave.php:547
5089
  #, fuzzy
5090
  msgid "Photo sizes:"
5091
  msgstr "Foto"
5092
 
5093
+ #: wppa-photo-admin-autosave.php:553
5094
  msgid "Source file:"
5095
  msgstr ""
5096
 
5097
+ #: wppa-photo-admin-autosave.php:566
5098
  msgid "Remake display file and thumbnail file"
5099
  msgstr ""
5100
 
5101
+ #: wppa-photo-admin-autosave.php:566
5102
  msgid "Remake files"
5103
  msgstr ""
5104
 
5105
+ #: wppa-photo-admin-autosave.php:571 wppa-photo-admin-autosave.php:596
5106
+ #: wppa-photo-admin-autosave.php:619
5107
  msgid "Unavailable"
5108
  msgstr ""
5109
 
5110
+ #: wppa-photo-admin-autosave.php:581
5111
  msgid "Display file:"
5112
  msgstr ""
5113
 
5114
+ #: wppa-photo-admin-autosave.php:606
5115
  #, fuzzy
5116
  msgid "Thumbnail file:"
5117
  msgstr "Foto Top Ti"
5118
 
5119
+ #: wppa-photo-admin-autosave.php:625
5120
  #, fuzzy
5121
  msgid "Remake thumbnail file"
5122
  msgstr "Foto Top Ti"
5123
 
5124
+ #: wppa-photo-admin-autosave.php:625 wppa-settings-autosave.php:6181
5125
  msgid "Remake"
5126
  msgstr ""
5127
 
5128
+ #: wppa-photo-admin-autosave.php:636
5129
+ #, fuzzy
5130
+ msgid "Stereophoto:"
5131
+ msgstr "foto"
5132
+
5133
+ #: wppa-photo-admin-autosave.php:640
5134
+ msgid "no stereo image or ready anaglyph"
5135
+ msgstr ""
5136
+
5137
+ #: wppa-photo-admin-autosave.php:641
5138
+ msgid "Left - right stereo image"
5139
+ msgstr ""
5140
+
5141
+ #: wppa-photo-admin-autosave.php:642
5142
+ msgid "Right - left stereo image"
5143
+ msgstr ""
5144
+
5145
+ #: wppa-photo-admin-autosave.php:648
5146
+ #, fuzzy
5147
+ msgid "Images:"
5148
+ msgstr "N&aelig;ste&nbsp;side"
5149
+
5150
+ #: wppa-photo-admin-autosave.php:678
5151
  #, fuzzy
5152
  msgid "Location:"
5153
  msgstr "Position:"
5154
 
5155
+ #: wppa-photo-admin-autosave.php:686
5156
  msgid "Lat:"
5157
  msgstr ""
5158
 
5159
+ #: wppa-photo-admin-autosave.php:687
5160
  msgid "Lon:"
5161
  msgstr ""
5162
 
5163
+ #: wppa-photo-admin-autosave.php:689
5164
  msgid "Refresh the page after changing to see the degrees being updated"
5165
  msgstr ""
5166
 
5167
+ #: wppa-photo-admin-autosave.php:699
5168
  #, fuzzy
5169
  msgid "Photoname:"
5170
  msgstr "Dagens foto"
5171
 
5172
+ #: wppa-photo-admin-autosave.php:705
5173
  #, fuzzy
5174
  msgid "Update Photo name"
5175
  msgstr "Indtast foto navn"
5176
 
5177
+ #: wppa-photo-admin-autosave.php:731
5178
  #, fuzzy
5179
  msgid "Update Photo description"
5180
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
5181
 
5182
+ #: wppa-photo-admin-autosave.php:789
5183
  msgid "Tags:"
5184
  msgstr ""
5185
 
5186
+ #: wppa-photo-admin-autosave.php:797
5187
  msgid "Separate tags with commas."
5188
  msgstr ""
5189
 
5190
+ #: wppa-photo-admin-autosave.php:808
5191
  #, fuzzy
5192
  msgid "No tags yet"
5193
  msgstr "Intet album er defineret."
5194
 
5195
+ #: wppa-photo-admin-autosave.php:820
5196
  msgid "Status:"
5197
  msgstr ""
5198
 
5199
+ #: wppa-photo-admin-autosave.php:829 wppa-photo-admin-autosave.php:852
5200
+ #: wppa-photo-admin-autosave.php:1294 wppa-photo-admin-autosave.php:1411
5201
+ #: wppa-photo-admin-autosave.php:1423 wppa-widget-admin.php:124
5202
  msgid "Publish"
5203
  msgstr ""
5204
 
5205
+ #: wppa-photo-admin-autosave.php:831 wppa-photo-admin-autosave.php:853
5206
+ #: wppa-photo-admin-autosave.php:1296 wppa-photo-admin-autosave.php:1413
5207
  #: wppa-widget-admin.php:125
5208
  #, fuzzy
5209
  msgid "Featured"
5210
  msgstr "Top fotos"
5211
 
5212
+ #: wppa-photo-admin-autosave.php:835 wppa-photo-admin-autosave.php:857
5213
+ #: wppa-photo-admin-autosave.php:1300 wppa-photo-admin-autosave.php:1417
5214
+ #: wppa-photo-admin-autosave.php:1428
5215
  msgid "Scheduled"
5216
  msgstr ""
5217
 
5218
+ #: wppa-photo-admin-autosave.php:836 wppa-photo-admin-autosave.php:858
5219
+ #: wppa-photo-admin-autosave.php:1301 wppa-photo-admin-autosave.php:1418
5220
+ #: wppa-photo-admin-autosave.php:1429
5221
  msgid "Private"
5222
  msgstr ""
5223
 
5224
+ #: wppa-photo-admin-autosave.php:867
5225
  msgid ""
5226
  "Note: Featured photos should have a descriptive name; a name a search engine "
5227
  "will look for!"
5228
  msgstr ""
5229
 
5230
+ #: wppa-photo-admin-autosave.php:877
5231
  msgid "Watermark:"
5232
  msgstr ""
5233
 
5234
+ #: wppa-photo-admin-autosave.php:884 wppa-photo-admin-autosave.php:897
5235
  msgid "File:"
5236
  msgstr ""
5237
 
5238
+ #: wppa-photo-admin-autosave.php:889 wppa-photo-admin-autosave.php:898
5239
  msgid "Pos:"
5240
  msgstr ""
5241
 
5242
+ #: wppa-photo-admin-autosave.php:893
5243
  #, fuzzy
5244
  msgid "Apply watermark"
5245
  msgstr "Inds&aelig;t vandm&aelig;rke:"
5246
 
5247
+ #: wppa-photo-admin-autosave.php:893
5248
  msgid "Are you sure? Once applied it can not be removed!"
5249
  msgstr ""
5250
 
5251
+ #: wppa-photo-admin-autosave.php:893
5252
  msgid "And I do not know if there is already a watermark on this photo"
5253
  msgstr ""
5254
 
5255
+ #: wppa-photo-admin-autosave.php:903
5256
  #, fuzzy
5257
  msgid "Not configured"
5258
  msgstr "Ikke Defineret"
5259
 
5260
+ #: wppa-photo-admin-autosave.php:917
5261
  #, php-format
5262
  msgid "Video %s is not modified yet"
5263
  msgstr ""
5264
 
5265
+ #: wppa-photo-admin-autosave.php:920
5266
  #, fuzzy, php-format
5267
  msgid "Photo %s is not modified yet"
5268
  msgstr "Billede ikke fundet"
5269
 
5270
+ #: wppa-photo-admin-autosave.php:939
5271
  msgid "Single image shortcode"
5272
  msgstr ""
5273
 
5274
+ #: wppa-photo-admin-autosave.php:945
5275
  msgid "Permalink"
5276
  msgstr ""
5277
 
5278
+ #: wppa-photo-admin-autosave.php:950
5279
  msgid "Hi resolution url"
5280
  msgstr ""
5281
 
5282
+ #: wppa-photo-admin-autosave.php:955
5283
  msgid "Display file url"
5284
  msgstr ""
5285
 
5286
+ #: wppa-photo-admin-autosave.php:961
5287
  #, fuzzy
5288
  msgid "Thumbnail file url"
5289
  msgstr "Foto Top Ti"
5290
 
5291
+ #: wppa-photo-admin-autosave.php:1005 wppa-photo-admin-autosave.php:1015
5292
  msgid "Trash"
5293
  msgstr ""
5294
 
5295
+ #: wppa-photo-admin-autosave.php:1131
5296
  #, php-format
5297
  msgid "Time is out after processing %d out of %d items."
5298
  msgstr ""
5299
 
5300
+ #: wppa-photo-admin-autosave.php:1144
5301
  #, php-format
5302
  msgid "%d photos deleted."
5303
  msgstr ""
5304
 
5305
+ #: wppa-photo-admin-autosave.php:1147
5306
  #, php-format
5307
  msgid "%1$s photos moved to album %2$s."
5308
  msgstr ""
5309
 
5310
+ #: wppa-photo-admin-autosave.php:1150
5311
  #, fuzzy, php-format
5312
  msgid "%1$s photos copied to album %2$s."
5313
  msgstr "Bruger %s indsendte foto %s ind i album %s"
5314
 
5315
+ #: wppa-photo-admin-autosave.php:1153
5316
  #, php-format
5317
  msgid "Changed status to %1$s on %2$s photos."
5318
  msgstr ""
5319
 
5320
+ #: wppa-photo-admin-autosave.php:1156
5321
  #, php-format
5322
  msgid "Changed owner to %1$s on %2$s photos."
5323
  msgstr ""
5324
 
5325
+ #: wppa-photo-admin-autosave.php:1159
5326
  #, fuzzy, php-format
5327
  msgid "%d photos processed."
5328
  msgstr "Indsendelse af %s fotos var en success."
5329
 
5330
+ #: wppa-photo-admin-autosave.php:1279
5331
  msgid "Move to"
5332
  msgstr ""
5333
 
5334
+ #: wppa-photo-admin-autosave.php:1280
5335
  msgid "Copy to"
5336
  msgstr ""
5337
 
5338
+ #: wppa-photo-admin-autosave.php:1282
5339
  msgid "Set status to"
5340
  msgstr ""
5341
 
5342
+ #: wppa-photo-admin-autosave.php:1285
5343
  msgid "Set owner to"
5344
  msgstr ""
5345
 
5346
+ #: wppa-photo-admin-autosave.php:1292
5347
  #, fuzzy
5348
  msgid "- select a status -"
5349
  msgstr ""
5350
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
5351
  "di ricerca differente."
5352
 
5353
+ #: wppa-photo-admin-autosave.php:1307
5354
  #, fuzzy
5355
  msgid "- select an owner -"
5356
  msgstr ""
5357
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
5358
  "di ricerca differente."
5359
 
5360
+ #: wppa-photo-admin-autosave.php:1319
5361
  msgid "Doit!"
5362
  msgstr ""
5363
 
5364
+ #: wppa-photo-admin-autosave.php:1321
5365
  msgid ""
5366
  "Pressing this button will reload the page after executing the selected action"
5367
  msgstr ""
5368
 
5369
+ #: wppa-photo-admin-autosave.php:1328 wppa-photo-admin-autosave.php:1447
5370
+ #: wppa-settings-autosave.php:7529
5371
  #, fuzzy
5372
  msgid "Preview"
5373
  msgstr "Forrige billede"
5374
 
5375
+ #: wppa-photo-admin-autosave.php:1333 wppa-photo-admin-autosave.php:1452
5376
  msgid "Remark"
5377
  msgstr ""
5378
 
5379
+ #: wppa-photo-admin-autosave.php:1438
5380
  #, fuzzy
5381
  msgid "Not modified"
5382
  msgstr "Ikke Defineret"
5383
 
5384
+ #: wppa-photo-admin-autosave.php:1470
5385
  #, php-format
5386
  msgid "Page %d is empty, try <a href=\"%s\" >page %d</a>."
5387
  msgstr ""
5388
 
5389
+ #: wppa-photo-admin-autosave.php:1580
5390
  msgid ""
5391
  "Setting photo sequence order has only effect if the photo order method is "
5392
  "set to <b>Order#</b>"
5393
  msgstr ""
5394
 
5395
+ #: wppa-photo-admin-autosave.php:1639
5396
  msgid "Id: "
5397
  msgstr ""
5398
 
5399
+ #: wppa-photo-admin-autosave.php:1640 wppa-settings-autosave.php:405
5400
  msgid "Video"
5401
  msgstr ""
5402
 
5403
+ #: wppa-photo-admin-autosave.php:1641 wppa-settings-autosave.php:386
5404
  msgid "Audio"
5405
  msgstr ""
5406
 
5407
+ #: wppa-photo-admin-autosave.php:1642
5408
  msgid "Ord: "
5409
  msgstr ""
5410
 
5411
+ #: wppa-photo-admin-autosave.php:1655
5412
  #, fuzzy
5413
  msgid "The album is empty."
5414
  msgstr "Intet album er defineret."
5415
 
5416
+ #: wppa-photo-admin-autosave.php:1755
5417
  msgid "Combined"
5418
  msgstr ""
5419
 
5420
+ #: wppa-photo-admin-autosave.php:1792
5421
  msgid "Word"
5422
  msgstr ""
5423
 
5424
+ #: wppa-photo-admin-autosave.php:1795
5425
  msgid "Count"
5426
  msgstr ""
5427
 
5435
  msgid "Photo Of The Day"
5436
  msgstr "Dagens foto"
5437
 
5438
+ #: wppa-potd-widget.php:188
5439
  msgid ""
5440
  "You can set the content and the sizes in this widget in the <b>Photo Albums -"
5441
  "> Sidebar Widget</b> admin page."
5459
  msgid "WPPA+ Search Photos"
5460
  msgstr ""
5461
 
5462
+ #: wppa-search-widget.php:14 wppa-search-widget.php:36
5463
+ #: wppa-search-widget.php:66
5464
  #, fuzzy
5465
  msgid "Search Photos"
5466
  msgstr "Se forside fotos"
5467
 
5468
+ #: wppa-search-widget.php:80
5469
  msgid "Text:"
5470
  msgstr ""
5471
 
5472
+ #: wppa-search-widget.php:84
5473
  msgid ""
5474
  "Enter optional text that will appear before the input box. This may contain "
5475
  "HTML so you can change font size and color."
5476
  msgstr ""
5477
 
5478
+ #: wppa-search-widget.php:88
5479
  msgid "Enable rootsearch"
5480
  msgstr ""
5481
 
5482
+ #: wppa-search-widget.php:94
5483
  msgid "Enable subsearch"
5484
  msgstr ""
5485
 
5486
+ #: wppa-settings-autosave.php:119
5487
  msgid "Saved settings restored"
5488
  msgstr ""
5489
 
5490
+ #: wppa-settings-autosave.php:122
5491
  msgid "Unable to restore saved settings"
5492
  msgstr ""
5493
 
5494
+ #: wppa-settings-autosave.php:128
5495
  msgid "Reset to default settings"
5496
  msgstr ""
5497
 
5498
+ #: wppa-settings-autosave.php:131
5499
  msgid "Unable to set defaults"
5500
  msgstr ""
5501
 
5502
+ #: wppa-settings-autosave.php:136
5503
  #, php-format
5504
  msgid "Skinfile %s loaded"
5505
  msgstr ""
5506
 
5507
+ #: wppa-settings-autosave.php:147 wppa-settings-autosave.php:169
5508
+ #: wppa-settings-autosave.php:190
5509
  #, fuzzy, php-format
5510
  msgid "Upload error %s"
5511
  msgstr "Indsend foto"
5512
 
5513
+ #: wppa-settings-autosave.php:152
5514
  #, fuzzy, php-format
5515
  msgid "Uploaded file %s is not a .png file"
5516
  msgstr "Uploaded fil er ikke et billede"
5517
 
5518
+ #: wppa-settings-autosave.php:156 wppa-settings-autosave.php:177
5519
+ #: wppa-settings-autosave.php:213
5520
  #, fuzzy, php-format
5521
  msgid "Upload of %s done"
5522
  msgstr "Indsend foto"
5523
 
5524
+ #: wppa-settings-autosave.php:161 wppa-settings-autosave.php:182
5525
+ #: wppa-settings-autosave.php:218
5526
  msgid "No file selected or error on upload"
5527
  msgstr ""
5528
 
5529
+ #: wppa-settings-autosave.php:173
5530
  #, fuzzy, php-format
5531
  msgid "Uploaded file %s is not a .ttf file"
5532
  msgstr "Uploaded fil er ikke et billede"
5533
 
5534
+ #: wppa-settings-autosave.php:195
5535
  #, fuzzy, php-format
5536
  msgid "Uploaded file %s is not a valid image file"
5537
  msgstr "Uploaded fil er ikke et billede"
5538
 
5539
+ #: wppa-settings-autosave.php:274
5540
  #, php-format
5541
  msgid ""
5542
  "%s invalid ratings removed. Please run Table VIII-A5: Rerate to fix the "
5543
  "averages."
5544
  msgstr ""
5545
 
5546
+ #: wppa-settings-autosave.php:284
5547
  #, php-format
5548
  msgid "%s obsolete settings removed."
5549
  msgstr ""
5550
 
5551
+ #: wppa-settings-autosave.php:293
5552
  #, fuzzy
5553
  msgid "WP Photo Album Plus Settings"
5554
  msgstr "Foto Albums"
5555
 
5556
+ #: wppa-settings-autosave.php:294
5557
  msgid "Database revision:"
5558
  msgstr ""
5559
 
5560
+ #: wppa-settings-autosave.php:294
5561
  msgid "WP Charset:"
5562
  msgstr ""
5563
 
5564
+ #: wppa-settings-autosave.php:297
5565
  msgid "Multisite in singlesite mode."
5566
  msgstr ""
5567
 
5568
+ #: wppa-settings-autosave.php:300
5569
  msgid "Multisite enabled."
5570
  msgstr ""
5571
 
5572
+ #: wppa-settings-autosave.php:302
5573
  msgid "Blogid ="
5574
  msgstr ""
5575
 
5576
+ #: wppa-settings-autosave.php:319
5577
  msgid "Please de-activate plugin <i style=\"font-size:14px;\">"
5578
  msgstr ""
5579
 
5580
+ #: wppa-settings-autosave.php:319
5581
  msgid ". </i>This plugin will cause wppa+ to function not properly."
5582
  msgstr ""
5583
 
5584
+ #: wppa-settings-autosave.php:329
5585
  msgid "Please note that plugin <i style=\"font-size:14px;\">"
5586
  msgstr ""
5587
 
5588
+ #: wppa-settings-autosave.php:329
5589
  msgid "</i> can cause wppa+ to function not properly if it is misconfigured."
5590
  msgstr ""
5591
 
5592
+ #: wppa-settings-autosave.php:334 wppa-upload.php:93
5593
  msgid ""
5594
  "There is a serious misconfiguration in your servers PHP config. Function "
5595
  "imagecreatefromjpeg() does not exist. You will encounter problems when "
5597
  "hosting provider to add GD support with a minimal version 1.8."
5598
  msgstr ""
5599
 
5600
+ #: wppa-settings-autosave.php:339
5601
  msgid "Rebuilding the Album index needs completion. See Table VIII"
5602
  msgstr ""
5603
 
5604
+ #: wppa-settings-autosave.php:340
5605
  msgid "Rebuilding the Photo index needs completion. See Table VIII"
5606
  msgstr ""
5607
 
5608
+ #: wppa-settings-autosave.php:342
5609
  msgid "Remove empty albums needs completion. See Table VIII"
5610
  msgstr ""
5611
 
5612
+ #: wppa-settings-autosave.php:343
5613
  msgid "Applying new photo description needs completion. See Table VIII"
5614
  msgstr ""
5615
 
5616
+ #: wppa-settings-autosave.php:344
5617
  msgid "Appending to photo description needs completion. See Table VIII"
5618
  msgstr ""
5619
 
5620
+ #: wppa-settings-autosave.php:345
5621
  msgid "Removing from photo description needs completion. See Table VIII"
5622
  msgstr ""
5623
 
5624
+ #: wppa-settings-autosave.php:346
5625
  msgid "Removing file extensions needs completion. See Table VIII"
5626
  msgstr ""
5627
 
5628
+ #: wppa-settings-autosave.php:347
5629
  msgid "Regenerating the Thumbnails needs completion. See Table VIII"
5630
  msgstr ""
5631
 
5632
+ #: wppa-settings-autosave.php:348
5633
  msgid "Rerating needs completion. See Table VIII"
5634
  msgstr ""
5635
 
5636
+ #: wppa-settings-autosave.php:356
5637
  msgid ""
5638
  "A thumbframe width or height should not be smaller than a thumbnail size. "
5639
  "Please correct the corresponding setting(s) in Table I-C"
5640
  msgstr ""
5641
 
5642
+ #: wppa-settings-autosave.php:361
5643
  msgid "Show legenda"
5644
  msgstr ""
5645
 
5646
+ #: wppa-settings-autosave.php:363
5647
  msgid "Legenda:"
5648
  msgstr ""
5649
 
5650
+ #: wppa-settings-autosave.php:364 wppa-settings-autosave.php:366
5651
+ #: wppa-settings-autosave.php:1888 wppa-settings-autosave.php:5185
5652
  msgid "Button"
5653
  msgstr ""
5654
 
5655
+ #: wppa-settings-autosave.php:364
5656
  msgid "action that causes page reload."
5657
  msgstr ""
5658
 
5659
+ #: wppa-settings-autosave.php:366 wppa-settings-autosave.php:8870
5660
+ #: wppa-settings-autosave.php:8889
5661
  msgid "Are you sure?"
5662
  msgstr ""
5663
 
5664
+ #: wppa-settings-autosave.php:367
5665
  msgid "action that does not cause page reload."
5666
  msgstr ""
5667
 
5668
+ #: wppa-settings-autosave.php:369 wppa-settings-autosave.php:7418
5669
+ #: wppa-settings-autosave.php:7420 wppa-settings-autosave.php:8572
5670
+ #: wppa-settings-autosave.php:8588 wppa-settings-autosave.php:8616
5671
+ #: wppa-settings-autosave.php:8640 wppa-settings-autosave.php:8670
5672
+ #: wppa-settings-autosave.php:8697 wppa-settings-autosave.php:8723
5673
+ #: wppa-settings-autosave.php:8739 wppa-settings-autosave.php:8792
5674
+ #: wppa-settings-autosave.php:8822
5675
  msgid "Setting unmodified"
5676
  msgstr ""
5677
 
5678
+ #: wppa-settings-autosave.php:371
5679
  msgid "Update in progress"
5680
  msgstr ""
5681
 
5682
+ #: wppa-settings-autosave.php:373
5683
  #, fuzzy
5684
  msgid "Setting updated"
5685
  msgstr "Indstillinger"
5686
 
5687
+ #: wppa-settings-autosave.php:375
5688
  #, fuzzy
5689
  msgid "Update failed"
5690
  msgstr "Indl&aelig;sning fejlede"
5691
 
5692
+ #: wppa-settings-autosave.php:377
5693
  msgid "Hide this"
5694
  msgstr ""
5695
 
5696
+ #: wppa-settings-autosave.php:383
5697
  msgid "System"
5698
  msgstr ""
5699
 
5700
+ #: wppa-settings-autosave.php:384
5701
  msgid "Access"
5702
  msgstr ""
5703
 
5704
+ #: wppa-settings-autosave.php:388
5705
  msgid "Counts"
5706
  msgstr ""
5707
 
5708
+ #: wppa-settings-autosave.php:389
5709
  msgid "Covers"
5710
  msgstr ""
5711
 
5712
+ #: wppa-settings-autosave.php:390
5713
  msgid "Layout"
5714
  msgstr ""
5715
 
5716
+ #: wppa-settings-autosave.php:391 wppa-settings-autosave.php:4414
5717
  msgid "Lightbox"
5718
  msgstr ""
5719
 
5720
+ #: wppa-settings-autosave.php:392
5721
  #, fuzzy
5722
  msgid "Links"
5723
  msgstr "Link til"
5724
 
5725
+ #: wppa-settings-autosave.php:393
5726
  msgid "Metadata"
5727
  msgstr ""
5728
 
5729
+ #: wppa-settings-autosave.php:394
5730
  msgid "Navigation"
5731
  msgstr ""
5732
 
5733
+ #: wppa-settings-autosave.php:395 wppa-settings-autosave.php:1462
5734
+ #: wppa-settings-autosave.php:7765
5735
  #, fuzzy
5736
  msgid "Page"
5737
  msgstr "N&aelig;ste&nbsp;side"
5738
 
5739
+ #: wppa-settings-autosave.php:396 wppa-settings-autosave.php:7561
5740
+ #: wppa-settings-autosave.php:7606
5741
  #, fuzzy
5742
  msgid "Rating"
5743
  msgstr "Bed&oslash;mmelse: %s"
5744
 
5745
+ #: wppa-settings-autosave.php:398
5746
  msgid "Sizes"
5747
  msgstr ""
5748
 
5749
+ #: wppa-settings-autosave.php:399
5750
  #, fuzzy
5751
  msgid "Slideshows"
5752
  msgstr "Slideshow"
5753
 
5754
+ #: wppa-settings-autosave.php:400
5755
  msgid "Social Media"
5756
  msgstr ""
5757
 
5758
+ #: wppa-settings-autosave.php:402
5759
  #, fuzzy
5760
  msgid "Uploads"
5761
  msgstr "Indsend"
5762
 
5763
+ #: wppa-settings-autosave.php:403
5764
  msgid "Widgets"
5765
  msgstr ""
5766
 
5767
+ #: wppa-settings-autosave.php:404 wppa-settings-autosave.php:7399
5768
  msgid "Watermark"
5769
  msgstr ""
5770
 
5771
+ #: wppa-settings-autosave.php:412
5772
  msgid "Click on the banner of a (sub)table to open/close it, or"
5773
  msgstr ""
5774
 
5775
+ #: wppa-settings-autosave.php:414
5776
  msgid "Show settings related to:"
5777
  msgstr ""
5778
 
5779
+ #: wppa-settings-autosave.php:420
5780
  msgid "and ( optionally ) to:"
5781
  msgstr ""
5782
 
5783
+ #: wppa-settings-autosave.php:434
5784
  msgid "Quick setup"
5785
  msgstr ""
5786
 
5787
+ #: wppa-settings-autosave.php:436
5788
  msgid "Do a quick initial setup"
5789
  msgstr ""
5790
 
5791
+ #: wppa-settings-autosave.php:437
5792
  msgid "Close quick setup"
5793
  msgstr ""
5794
 
5795
+ #: wppa-settings-autosave.php:444
5796
  msgid "Table O:"
5797
  msgstr ""
5798
 
5799
+ #: wppa-settings-autosave.php:444
5800
  msgid "Quick Setup:"
5801
  msgstr ""
5802
 
5803
+ #: wppa-settings-autosave.php:445
5804
  msgid "This table enables you to quickly do an inital setup."
5805
  msgstr ""
5806
 
5807
+ #: wppa-settings-autosave.php:455 wppa-settings-autosave.php:617
5808
+ #: wppa-settings-autosave.php:639 wppa-settings-autosave.php:1339
5809
+ #: wppa-settings-autosave.php:1360 wppa-settings-autosave.php:2734
5810
+ #: wppa-settings-autosave.php:3090 wppa-settings-autosave.php:4241
5811
+ #: wppa-settings-autosave.php:5969 wppa-settings-autosave.php:6595
5812
+ #: wppa-settings-autosave.php:8163
5813
  #, fuzzy
5814
  msgid "Setting"
5815
  msgstr "Indstillinger"
5816
 
5817
+ #: wppa-settings-autosave.php:456 wppa-settings-autosave.php:618
5818
+ #: wppa-settings-autosave.php:640 wppa-settings-autosave.php:1340
5819
+ #: wppa-settings-autosave.php:1361 wppa-settings-autosave.php:2735
5820
+ #: wppa-settings-autosave.php:2759 wppa-settings-autosave.php:3070
5821
+ #: wppa-settings-autosave.php:3091 wppa-settings-autosave.php:4242
5822
+ #: wppa-settings-autosave.php:4266 wppa-settings-autosave.php:4442
5823
+ #: wppa-settings-autosave.php:4466 wppa-settings-autosave.php:5465
5824
+ #: wppa-settings-autosave.php:5971 wppa-settings-autosave.php:5995
5825
+ #: wppa-settings-autosave.php:6575 wppa-settings-autosave.php:6596
5826
+ #: wppa-settings-autosave.php:8164 wppa-settings-autosave.php:8186
5827
+ #: wppa-settings-autosave.php:8226 wppa-settings-autosave.php:8248
5828
+ #: wppa-settings-autosave.php:8294
5829
  msgid "Help"
5830
  msgstr ""
5831
 
5832
+ #: wppa-settings-autosave.php:467
5833
  msgid ""
5834
  "To quickly setup WPPA+ please answer the following questions. You can alway "
5835
  "change any setting later. <span style=\"color:#700\">Click on me!</span>"
5836
  msgstr ""
5837
 
5838
+ #: wppa-settings-autosave.php:469
5839
  msgid "Is your theme <i>responsive</i>?"
5840
  msgstr ""
5841
 
5842
+ #: wppa-settings-autosave.php:470
5843
  msgid ""
5844
  "Responsive themes have a layout that varies with the size of the browser "
5845
  "window."
5846
  msgstr ""
5847
 
5848
+ #: wppa-settings-autosave.php:471
5849
  msgid ""
5850
  "WPPA+ needs to know this to automaticly adept the width of the display to "
5851
  "the available width on the page."
5852
  msgstr ""
5853
 
5854
+ #: wppa-settings-autosave.php:478
5855
  msgid "Do you want to downsize photos during upload?"
5856
  msgstr ""
5857
 
5858
+ #: wppa-settings-autosave.php:479
5859
  msgid ""
5860
  "Downsizing photos make them load faster to the visitor, without loosing "
5861
  "display quality"
5862
  msgstr ""
5863
 
5864
+ #: wppa-settings-autosave.php:480
5865
  msgid ""
5866
  "If you answer yes, the photos will be downsized to max 1024 x 768 pixels. "
5867
  "You can change this later, if you like"
5868
  msgstr ""
5869
 
5870
+ #: wppa-settings-autosave.php:487
5871
  #, fuzzy
5872
  msgid "Do you want to save the original photofiles?"
5873
  msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
5874
 
5875
+ #: wppa-settings-autosave.php:488
5876
  msgid "This will require considerable disk space on the server."
5877
  msgstr ""
5878
 
5879
+ #: wppa-settings-autosave.php:489
5880
  msgid ""
5881
  "If you answer yes, you will be able to remove watermarks you applied with "
5882
  "wppa+ in a later stage, redo downsizing to a larger size afterwards, and "
5883
  "supply fullsize images for download."
5884
  msgstr ""
5885
 
5886
+ #: wppa-settings-autosave.php:496
5887
  #, fuzzy
5888
  msgid "May visitors upload photos?"
5889
  msgstr "Bruger %s indsendte foto %s ind i album %s"
5890
 
5891
+ #: wppa-settings-autosave.php:497
5892
  msgid ""
5893
  "It is safe to do so, but i will have to do some settings to keep it safe!"
5894
  msgstr ""
5895
 
5896
+ #: wppa-settings-autosave.php:498
5897
  msgid ""
5898
  "If you answer yes, i will assume you want to enable logged in users to "
5899
  "upload photos at the front-end of the website and allow them to edit their "
5900
  "photos name and descriptions."
5901
  msgstr ""
5902
 
5903
+ #: wppa-settings-autosave.php:499
5904
  msgid ""
5905
  "The photos will be hold for moderation, the admin will get notified by email."
5906
  msgstr ""
5907
 
5908
+ #: wppa-settings-autosave.php:500
5909
  msgid ""
5910
  "Each user will get his own album to upload to. These settings can be changed "
5911
  "later."
5912
  msgstr ""
5913
 
5914
+ #: wppa-settings-autosave.php:507
5915
  msgid "Do you want the rating system active?"
5916
  msgstr ""
5917
 
5918
+ #: wppa-settings-autosave.php:508
5919
  msgid "Enable the rating system and show the votes in the slideshow."
5920
  msgstr ""
5921
 
5922
+ #: wppa-settings-autosave.php:509
5923
  msgid "You can configure the details of the rating system later"
5924
  msgstr ""
5925
 
5926
+ #: wppa-settings-autosave.php:516
5927
  msgid "Do you want the comment system active?"
5928
  msgstr ""
5929
 
5930
+ #: wppa-settings-autosave.php:517
5931
  msgid "Enable the comment system and show the comments in the slideshow."
5932
  msgstr ""
5933
 
5934
+ #: wppa-settings-autosave.php:518
5935
  msgid "You can configure the details of the comment system later"
5936
  msgstr ""
5937
 
5938
+ #: wppa-settings-autosave.php:525
5939
  msgid "Do you want the social media share buttons displayed?"
5940
  msgstr ""
5941
 
5942
+ #: wppa-settings-autosave.php:526
5943
  msgid "Display the social media buttons in the slideshow"
5944
  msgstr ""
5945
 
5946
+ #: wppa-settings-autosave.php:527
5947
  msgid ""
5948
  "These buttons share the specific photo rather than the page where it is "
5949
  "displayed on"
5950
  msgstr ""
5951
 
5952
+ #: wppa-settings-autosave.php:534
5953
  msgid "Are you going to use IPTC data?"
5954
  msgstr ""
5955
 
5956
+ #: wppa-settings-autosave.php:535
5957
  msgid ""
5958
  "IPTC data is information you may have added in a photo manipulation program."
5959
  msgstr ""
5960
 
5961
+ #: wppa-settings-autosave.php:536 wppa-settings-autosave.php:545
5962
  msgid ""
5963
  "The information can be displayed in slideshows and in photo descriptions."
5964
  msgstr ""
5965
 
5966
+ #: wppa-settings-autosave.php:543
5967
  msgid "Are you going to use EXIF data?"
5968
  msgstr ""
5969
 
5970
+ #: wppa-settings-autosave.php:544
5971
  msgid ""
5972
  "EXIF data is information from the camera like model no, focal distance and "
5973
  "aperture used."
5974
  msgstr ""
5975
 
5976
+ #: wppa-settings-autosave.php:552
5977
  msgid "Are you going to use GPX data?"
5978
  msgstr ""
5979
 
5980
+ #: wppa-settings-autosave.php:553
5981
  msgid ""
5982
  "Some cameras and mobile devices save the geographic location where the photo "
5983
  "is taken."
5984
  msgstr ""
5985
 
5986
+ #: wppa-settings-autosave.php:554
5987
  msgid "A Google map can be displayed in slideshows."
5988
  msgstr ""
5989
 
5990
+ #: wppa-settings-autosave.php:561
5991
  msgid "Are you going to use Fotomoto?"
5992
  msgstr ""
5993
 
5994
+ #: wppa-settings-autosave.php:562
5995
  msgid ""
5996
  "<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> is an "
5997
  "on-line print service."
5998
  msgstr ""
5999
 
6000
+ #: wppa-settings-autosave.php:563
6001
  msgid "If you answer Yes, you will have to open an account on Fotomoto."
6002
  msgstr ""
6003
 
6004
+ #: wppa-settings-autosave.php:570
6005
  msgid "Are you going to add videofiles?"
6006
  msgstr ""
6007
 
6008
+ #: wppa-settings-autosave.php:571
6009
  msgid "You can mix videos and photos in any album."
6010
  msgstr ""
6011
 
6012
+ #: wppa-settings-autosave.php:572 wppa-settings-autosave.php:581
6013
+ #: wppa-settings-autosave.php:590
6014
  msgid "You can configure the details later"
6015
  msgstr ""
6016
 
6017
+ #: wppa-settings-autosave.php:579
6018
  msgid "Are you going to add audiofiles?"
6019
  msgstr ""
6020
 
6021
+ #: wppa-settings-autosave.php:580
6022
  msgid "You can add audio to photos in any album."
6023
  msgstr ""
6024
 
6025
+ #: wppa-settings-autosave.php:588
6026
+ #, fuzzy
6027
+ msgid "Are you going to upload 3D stereo photos?"
6028
+ msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
6029
+
6030
+ #: wppa-settings-autosave.php:589
6031
+ msgid "You can add l-r and r-l stereo photo pairs."
6032
+ msgstr ""
6033
+
6034
+ #: wppa-settings-autosave.php:597
6035
  msgid "Done?"
6036
  msgstr ""
6037
 
6038
+ #: wppa-settings-autosave.php:598
6039
  msgid "If you are ready answering these questions, select <b>yes</b>"
6040
  msgstr ""
6041
 
6042
+ #: wppa-settings-autosave.php:599
6043
  msgid ""
6044
  "You can change any setting later, and be more specific and add a lot of "
6045
  "settings. For now it is enough, go create albums and upload photos!"
6046
  msgstr ""
6047
 
6048
+ #: wppa-settings-autosave.php:603
6049
  msgid ""
6050
  "Thank you!. The most important settings are done now. You can refine your "
6051
  "settings, the behaviour and appearance of WPPA+ in the Tables below."
6052
  msgstr ""
6053
 
6054
+ #: wppa-settings-autosave.php:628
6055
  msgid "Table I:"
6056
  msgstr ""
6057
 
6058
+ #: wppa-settings-autosave.php:628
6059
  msgid "Sizes:"
6060
  msgstr ""
6061
 
6062
+ #: wppa-settings-autosave.php:629
6063
  msgid ""
6064
  "This table describes all the sizes and size options (except fontsizes) for "
6065
  "the generation and display of the WPPA+ elements."
6066
  msgstr ""
6067
 
6068
+ #: wppa-settings-autosave.php:647
6069
  msgid "WPPA+ global system related size settings"
6070
  msgstr ""
6071
 
6072
+ #: wppa-settings-autosave.php:649
6073
  msgid "Column Width"
6074
  msgstr ""
6075
 
6076
+ #: wppa-settings-autosave.php:650
6077
  msgid "The width of the main column in your theme's display area."
6078
  msgstr ""
6079
 
6080
+ #: wppa-settings-autosave.php:651
6081
  msgid "Enter the width of the main column in your theme's display area."
6082
  msgstr ""
6083
 
6084
+ #: wppa-settings-autosave.php:652
6085
  msgid ""
6086
  "You should set this value correctly to make sure the fullsize images are "
6087
  "properly aligned horizontally."
6088
  msgstr ""
6089
 
6090
+ #: wppa-settings-autosave.php:653
6091
  msgid ""
6092
  "You may enter 'auto' for use in themes that have a floating content column."
6093
  msgstr ""
6094
 
6095
+ #: wppa-settings-autosave.php:654
6096
  msgid "The use of 'auto' is required for responsive themes."
6097
  msgstr ""
6098
 
6099
+ #: wppa-settings-autosave.php:657 wppa-settings-autosave.php:666
6100
+ #: wppa-settings-autosave.php:778 wppa-settings-autosave.php:921
6101
+ #: wppa-settings-autosave.php:932
6102
  msgid "pixels wide"
6103
  msgstr ""
6104
 
6105
+ #: wppa-settings-autosave.php:662
6106
  msgid "Initial Width"
6107
  msgstr ""
6108
 
6109
+ #: wppa-settings-autosave.php:663
6110
  msgid "The most often displayed colun width in responsive theme"
6111
  msgstr ""
6112
 
6113
+ #: wppa-settings-autosave.php:664
6114
  msgid ""
6115
  "Change this value only if your responsive theme shows initially a wrong "
6116
  "column width."
6117
  msgstr ""
6118
 
6119
+ #: wppa-settings-autosave.php:671
6120
  msgid "Resize on Upload"
6121
  msgstr ""
6122
 
6123
+ #: wppa-settings-autosave.php:672
6124
  msgid "Indicate if the photos should be resized during upload."
6125
  msgstr ""
6126
 
6127
+ #: wppa-settings-autosave.php:673
6128
  msgid ""
6129
  "If you check this item, the size of the photos will be reduced to the "
6130
  "dimension specified in the next item during the upload/import process."
6131
  msgstr ""
6132
 
6133
+ #: wppa-settings-autosave.php:674
6134
  msgid "The photos will never be stretched during upload if they are smaller."
6135
  msgstr ""
6136
 
6137
+ #: wppa-settings-autosave.php:682
6138
  msgid "Resize to"
6139
  msgstr ""
6140
 
6141
+ #: wppa-settings-autosave.php:683
6142
  msgid "Resize photos to fit within a given area."
6143
  msgstr ""
6144
 
6145
+ #: wppa-settings-autosave.php:684
6146
  msgid "Specify the screensize for the unscaled photos."
6147
  msgstr ""
6148
 
6149
+ #: wppa-settings-autosave.php:685
6150
  msgid ""
6151
  "The use of a non-default value is particularly usefull when you make use of "
6152
  "lightbox functionality."
6153
  msgstr ""
6154
 
6155
+ #: wppa-settings-autosave.php:687 wppa-settings-autosave.php:709
6156
+ #: wppa-settings-autosave.php:720 wppa-settings-autosave.php:729
6157
+ #: wppa-settings-autosave.php:810 wppa-settings-autosave.php:833
6158
+ #: wppa-settings-autosave.php:840 wppa-settings-autosave.php:861
6159
+ #: wppa-settings-autosave.php:871 wppa-settings-autosave.php:965
6160
+ #: wppa-settings-autosave.php:999 wppa-settings-autosave.php:1019
6161
+ #: wppa-settings-autosave.php:1028 wppa-settings-autosave.php:1039
6162
+ #: wppa-settings-autosave.php:1051 wppa-settings-autosave.php:1061
6163
+ #: wppa-settings-autosave.php:1071 wppa-settings-autosave.php:1124
6164
+ #: wppa-settings-autosave.php:1133 wppa-settings-autosave.php:1144
6165
+ #: wppa-settings-autosave.php:1164 wppa-settings-autosave.php:1184
6166
+ #: wppa-settings-autosave.php:1204 wppa-settings-autosave.php:1224
6167
+ #: wppa-settings-autosave.php:1244 wppa-settings-autosave.php:1264
6168
+ #: wppa-settings-autosave.php:1273 wppa-settings-autosave.php:1282
6169
+ #: wppa-settings-autosave.php:1317 wppa-settings-autosave.php:1326
6170
+ #: wppa-settings-autosave.php:2678 wppa-settings-autosave.php:4287
6171
+ #: wppa-settings-autosave.php:4304 wppa-settings-autosave.php:4321
6172
+ #: wppa-settings-autosave.php:4338 wppa-settings-autosave.php:4355
6173
+ #: wppa-settings-autosave.php:4372 wppa-settings-autosave.php:4389
6174
+ #: wppa-settings-autosave.php:4406 wppa-settings-autosave.php:4423
6175
+ #: wppa-settings-autosave.php:5682 wppa-settings-autosave.php:7895
6176
+ #: wppa-settings-autosave.php:8090 wppa-settings-autosave.php:8132
6177
+ #: wppa-settings-autosave.php:8150
6178
  msgid "pixels"
6179
  msgstr ""
6180
 
6181
+ #: wppa-settings-autosave.php:688
6182
  msgid "Fit within rectangle as set in Table I-B1,2"
6183
  msgstr ""
6184
 
6185
+ #: wppa-settings-autosave.php:695
6186
  #, fuzzy
6187
  msgid "Photocount threshold"
6188
  msgstr "Dagens foto"
6189
 
6190
+ #: wppa-settings-autosave.php:696
6191
  msgid "Number of photos in an album must exceed."
6192
  msgstr ""
6193
 
6194
+ #: wppa-settings-autosave.php:697
6195
  msgid ""
6196
  "Photos do not show up in the album unless there are more than this number of "
6197
  "photos in the album. This allows you to have cover photos on an album that "
6199
  "Usually set to 0 (always show) or 1 (for one cover photo)."
6200
  msgstr ""
6201
 
6202
+ #: wppa-settings-autosave.php:704
6203
  msgid "Border thickness"
6204
  msgstr ""
6205
 
6206
+ #: wppa-settings-autosave.php:705
6207
  msgid "Thickness of wppa+ box borders."
6208
  msgstr ""
6209
 
6210
+ #: wppa-settings-autosave.php:706
6211
  msgid ""
6212
  "Enter the thickness for the border of the WPPA+ boxes. A number of 0 means: "
6213
  "no border."
6214
  msgstr ""
6215
 
6216
+ #: wppa-settings-autosave.php:707 wppa-settings-autosave.php:717
6217
  msgid "WPPA+ boxes are: the navigation bars and the filmstrip."
6218
  msgstr ""
6219
 
6220
+ #: wppa-settings-autosave.php:715
6221
  msgid "Radius of wppa+ box borders."
6222
  msgstr ""
6223
 
6224
+ #: wppa-settings-autosave.php:716
6225
  msgid ""
6226
  "Enter the corner radius for the border of the WPPA+ boxes. A number of 0 "
6227
  "means: no rounded corners."
6228
  msgstr ""
6229
 
6230
+ #: wppa-settings-autosave.php:718
6231
  msgid "Note that rounded corners are only supported by modern browsers."
6232
  msgstr ""
6233
 
6234
+ #: wppa-settings-autosave.php:726
6235
  msgid "Distance between wppa+ boxes."
6236
  msgstr ""
6237
 
6238
+ #: wppa-settings-autosave.php:734
6239
  #, fuzzy
6240
  msgid "Related count"
6241
  msgstr "fotos"
6242
 
6243
+ #: wppa-settings-autosave.php:735
6244
  msgid "The default maximum number of related photos to find."
6245
  msgstr ""
6246
 
6247
+ #: wppa-settings-autosave.php:736
6248
  msgid ""
6249
  "When using shortcodes like [wppa type=\"album\" album=\"#related,desc,23\"][/"
6250
  "wppa], the maximum number is 23. Omitting the number gives the maximum of "
6251
  "this setting."
6252
  msgstr ""
6253
 
6254
+ #: wppa-settings-autosave.php:744
6255
  msgid "The maximum number of pagelinks to be displayed."
6256
  msgstr ""
6257
 
6258
+ #: wppa-settings-autosave.php:747
6259
  msgid "pages"
6260
  msgstr ""
6261
 
6262
+ #: wppa-settings-autosave.php:752
6263
  msgid "Max file name length"
6264
  msgstr ""
6265
 
6266
+ #: wppa-settings-autosave.php:753
6267
  msgid "The max length of a photo file name excluding the extension."
6268
  msgstr ""
6269
 
6270
+ #: wppa-settings-autosave.php:754 wppa-settings-autosave.php:763
6271
  msgid "A setting of 0 means: unlimited."
6272
  msgstr ""
6273
 
6274
+ #: wppa-settings-autosave.php:756 wppa-settings-autosave.php:765
6275
  msgid "chars"
6276
  msgstr ""
6277
 
6278
+ #: wppa-settings-autosave.php:761
6279
  msgid "Max photo name length"
6280
  msgstr ""
6281
 
6282
+ #: wppa-settings-autosave.php:762
6283
  msgid "The max length of a photo name."
6284
  msgstr ""
6285
 
6286
+ #: wppa-settings-autosave.php:770
6287
  msgid "Slideshow related size settings"
6288
  msgstr ""
6289
 
6290
+ #: wppa-settings-autosave.php:772
6291
  msgid "Maximum Width"
6292
  msgstr ""
6293
 
6294
+ #: wppa-settings-autosave.php:773
6295
  msgid "The maximum width photos will be displayed in slideshows."
6296
  msgstr ""
6297
 
6298
+ #: wppa-settings-autosave.php:774 wppa-settings-autosave.php:785
6299
  msgid ""
6300
  "Enter the largest size in pixels as how you want your photos to be displayed."
6301
  msgstr ""
6302
 
6303
+ #: wppa-settings-autosave.php:775
6304
  msgid ""
6305
  "This is usually the same as the Column Width (Table I-A1), but it may differ."
6306
  msgstr ""
6307
 
6308
+ #: wppa-settings-autosave.php:783
6309
  msgid "Maximum Height"
6310
  msgstr ""
6311
 
6312
+ #: wppa-settings-autosave.php:784
6313
  msgid "The maximum height photos will be displayed in slideshows."
6314
  msgstr ""
6315
 
6316
+ #: wppa-settings-autosave.php:786
6317
  msgid ""
6318
  "This setting defines the height of the space reserved for photos in "
6319
  "slideshows."
6320
  msgstr ""
6321
 
6322
+ #: wppa-settings-autosave.php:787
6323
  #, php-format
6324
  msgid ""
6325
  "If you change the width of a display by the %%size= command, this value "
6327
  "previous setting."
6328
  msgstr ""
6329
 
6330
+ #: wppa-settings-autosave.php:789 wppa-settings-autosave.php:943
6331
+ #: wppa-settings-autosave.php:954
6332
  #, fuzzy
6333
  msgid "pixels high"
6334
  msgstr "meget h&oslash;j"
6335
 
6336
+ #: wppa-settings-autosave.php:794
6337
  msgid "Stretch to fit"
6338
  msgstr ""
6339
 
6340
+ #: wppa-settings-autosave.php:795
6341
  msgid "Stretch photos that are too small."
6342
  msgstr ""
6343
 
6344
+ #: wppa-settings-autosave.php:796
6345
  msgid ""
6346
  "Images will be stretched to the Maximum Size at display time if they are "
6347
  "smaller. Leaving unchecked is recommended. It is better to upload photos "
6348
  "that fit well the sizes you use!"
6349
  msgstr ""
6350
 
6351
+ #: wppa-settings-autosave.php:803
6352
  #, fuzzy
6353
  msgid "Slideshow borderwidth"
6354
  msgstr "Slideshow"
6355
 
6356
+ #: wppa-settings-autosave.php:804
6357
  msgid "The width of the border around slideshow images."
6358
  msgstr ""
6359
 
6360
+ #: wppa-settings-autosave.php:805
6361
  msgid ""
6362
  "The border is made by the image background being larger than the image "
6363
  "itsself (padding)."
6364
  msgstr ""
6365
 
6366
+ #: wppa-settings-autosave.php:806
6367
  msgid ""
6368
  "Additionally there may be a one pixel outline of a different color. See "
6369
  "Table III-A2."
6370
  msgstr ""
6371
 
6372
+ #: wppa-settings-autosave.php:807
6373
  msgid "The number you enter here is exclusive the one pixel outline."
6374
  msgstr ""
6375
 
6376
+ #: wppa-settings-autosave.php:808
6377
  msgid "If you leave this entry empty, there will be no outline either."
6378
  msgstr ""
6379
 
6380
+ #: wppa-settings-autosave.php:815
6381
  msgid "Numbar Max"
6382
  msgstr ""
6383
 
6384
+ #: wppa-settings-autosave.php:816
6385
  msgid "Maximum numbers to display."
6386
  msgstr ""
6387
 
6388
+ #: wppa-settings-autosave.php:817
6389
  msgid ""
6390
  "In order to attemt to fit on one line, the numbers will be replaced by dots "
6391
  "- except the current - when there are more than this number of photos in a "
6392
  "slideshow."
6393
  msgstr ""
6394
 
6395
+ #: wppa-settings-autosave.php:819
6396
  msgid "numbers"
6397
  msgstr ""
6398
 
6399
+ #: wppa-settings-autosave.php:824
6400
  #, fuzzy
6401
  msgid "Share button size"
6402
  msgstr "Condividi su Twitter"
6403
 
6404
+ #: wppa-settings-autosave.php:825
6405
  msgid "The size of the social media icons in the Share box"
6406
  msgstr ""
6407
 
6408
+ #: wppa-settings-autosave.php:835
6409
  msgid "Mini Treshold"
6410
  msgstr ""
6411
 
6412
+ #: wppa-settings-autosave.php:836
6413
  msgid "Show mini text at slideshow smaller then."
6414
  msgstr ""
6415
 
6416
+ #: wppa-settings-autosave.php:837
6417
  msgid ""
6418
  "Display Next and Prev. as opposed to Next photo and Previous photo when the "
6419
  "cotainer is smaller than this size."
6420
  msgstr ""
6421
 
6422
+ #: wppa-settings-autosave.php:838
6423
  msgid "Special use in responsive themes."
6424
  msgstr ""
6425
 
6426
+ #: wppa-settings-autosave.php:846
6427
  msgid "The maximum number of slides in a certain view. 0 means no pagination"
6428
  msgstr ""
6429
 
6430
+ #: wppa-settings-autosave.php:849
6431
  #, fuzzy
6432
  msgid "slides"
6433
  msgstr "Slideshow"
6434
 
6435
+ #: wppa-settings-autosave.php:854
6436
  msgid "Thumbnail photos related size settings"
6437
  msgstr ""
6438
 
6439
+ #: wppa-settings-autosave.php:856
6440
  #, fuzzy
6441
  msgid "Thumbnail Size"
6442
  msgstr "Foto Top Ti"
6443
 
6444
+ #: wppa-settings-autosave.php:857
6445
  #, fuzzy
6446
  msgid "The size of the thumbnail images."
6447
  msgstr "Se"
6448
 
6449
+ #: wppa-settings-autosave.php:858 wppa-settings-autosave.php:868
6450
+ #: wppa-settings-autosave.php:1058 wppa-settings-autosave.php:1068
6451
  msgid "This size applies to the width or height, whichever is the largest."
6452
  msgstr ""
6453
 
6454
+ #: wppa-settings-autosave.php:859 wppa-settings-autosave.php:869
6455
  msgid ""
6456
  "Changing the thumbnail size may result in all thumbnails being regenerated. "
6457
  "this may take a while."
6458
  msgstr ""
6459
 
6460
+ #: wppa-settings-autosave.php:866
6461
  #, fuzzy
6462
  msgid "Thumbnail Size Alt"
6463
  msgstr "Foto Top Ti"
6464
 
6465
+ #: wppa-settings-autosave.php:867
6466
  msgid "The alternative size of the thumbnail images."
6467
  msgstr ""
6468
 
6469
+ #: wppa-settings-autosave.php:876
6470
  #, fuzzy
6471
  msgid "Thumbnail Aspect"
6472
  msgstr "Miniatura"
6473
 
6474
+ #: wppa-settings-autosave.php:877
6475
  msgid "Aspect ration of thumbnail image"
6476
  msgstr ""
6477
 
6478
+ #: wppa-settings-autosave.php:881
6479
  #, fuzzy
6480
  msgid "--- same as fullsize ---"
6481
  msgstr "--- ingen ---"
6482
 
6483
+ #: wppa-settings-autosave.php:882
6484
  #, fuzzy
6485
  msgid "--- square clipped ---"
6486
  msgstr "--- vises ikke ---"
6487
 
6488
+ #: wppa-settings-autosave.php:883
6489
  msgid "4:5 landscape clipped"
6490
  msgstr ""
6491
 
6492
+ #: wppa-settings-autosave.php:884
6493
  msgid "3:4 landscape clipped"
6494
  msgstr ""
6495
 
6496
+ #: wppa-settings-autosave.php:885
6497
  msgid "2:3 landscape clipped"
6498
  msgstr ""
6499
 
6500
+ #: wppa-settings-autosave.php:886
6501
  msgid "9:16 landscape clipped"
6502
  msgstr ""
6503
 
6504
+ #: wppa-settings-autosave.php:887
6505
  msgid "1:2 landscape clipped"
6506
  msgstr ""
6507
 
6508
+ #: wppa-settings-autosave.php:888
6509
  #, fuzzy
6510
  msgid "--- square padded ---"
6511
  msgstr "--- vis ikke ---"
6512
 
6513
+ #: wppa-settings-autosave.php:889
6514
  msgid "4:5 landscape padded"
6515
  msgstr ""
6516
 
6517
+ #: wppa-settings-autosave.php:890
6518
  msgid "3:4 landscape padded"
6519
  msgstr ""
6520
 
6521
+ #: wppa-settings-autosave.php:891
6522
  msgid "2:3 landscape padded"
6523
  msgstr ""
6524
 
6525
+ #: wppa-settings-autosave.php:892
6526
  msgid "9:16 landscape padded"
6527
  msgstr ""
6528
 
6529
+ #: wppa-settings-autosave.php:893
6530
  msgid "1:2 landscape padded"
6531
  msgstr ""
6532
 
6533
+ #: wppa-settings-autosave.php:915
6534
  msgid "Thumbframe width"
6535
  msgstr ""
6536
 
6537
+ #: wppa-settings-autosave.php:916
6538
  #, fuzzy
6539
  msgid "The width of the thumbnail frame."
6540
  msgstr "Se"
6541
 
6542
+ #: wppa-settings-autosave.php:917 wppa-settings-autosave.php:928
6543
  msgid "Set the width of the thumbnail frame."
6544
  msgstr ""
6545
 
6546
+ #: wppa-settings-autosave.php:918 wppa-settings-autosave.php:929
6547
+ #: wppa-settings-autosave.php:940 wppa-settings-autosave.php:951
6548
+ #: wppa-settings-autosave.php:962
6549
  msgid "Set width, height and spacing for the thumbnail frames."
6550
  msgstr ""
6551
 
6552
+ #: wppa-settings-autosave.php:919 wppa-settings-autosave.php:930
6553
+ #: wppa-settings-autosave.php:941 wppa-settings-autosave.php:952
6554
+ #: wppa-settings-autosave.php:963
6555
  msgid ""
6556
  "These sizes should be large enough for a thumbnail image and - optionally - "
6557
  "the text under it."
6558
  msgstr ""
6559
 
6560
+ #: wppa-settings-autosave.php:926
6561
  msgid "Thumbframe width Alt"
6562
  msgstr ""
6563
 
6564
+ #: wppa-settings-autosave.php:927
6565
  msgid "The width of the alternative thumbnail frame."
6566
  msgstr ""
6567
 
6568
+ #: wppa-settings-autosave.php:937
6569
  msgid "Thumbframe height"
6570
  msgstr ""
6571
 
6572
+ #: wppa-settings-autosave.php:938
6573
  msgid "The height of the thumbnail frame."
6574
  msgstr ""
6575
 
6576
+ #: wppa-settings-autosave.php:939 wppa-settings-autosave.php:950
6577
  msgid "Set the height of the thumbnail frame."
6578
  msgstr ""
6579
 
6580
+ #: wppa-settings-autosave.php:948
6581
  msgid "Thumbframe height Alt"
6582
  msgstr ""
6583
 
6584
+ #: wppa-settings-autosave.php:949
6585
  msgid "The height of the alternative thumbnail frame."
6586
  msgstr ""
6587
 
6588
+ #: wppa-settings-autosave.php:959
6589
  #, fuzzy
6590
  msgid "Thumbnail spacing"
6591
  msgstr "Miniatura"
6592
 
6593
+ #: wppa-settings-autosave.php:960
6594
  msgid "The spacing between adjacent thumbnail frames."
6595
  msgstr ""
6596
 
6597
+ #: wppa-settings-autosave.php:961
6598
  msgid "Set the minimal spacing between the adjacent thumbnail frames"
6599
  msgstr ""
6600
 
6601
+ #: wppa-settings-autosave.php:970
6602
  msgid "Auto spacing"
6603
  msgstr ""
6604
 
6605
+ #: wppa-settings-autosave.php:971
6606
  msgid "Space the thumbnail frames automatic."
6607
  msgstr ""
6608
 
6609
+ #: wppa-settings-autosave.php:972
6610
  msgid ""
6611
  "If you check this box, the thumbnail images will be evenly distributed over "
6612
  "the available width."
6613
  msgstr ""
6614
 
6615
+ #: wppa-settings-autosave.php:973
6616
  msgid ""
6617
  "In this case, the thumbnail spacing value (setting I-9) will be regarded as "
6618
  "a minimum value."
6619
  msgstr ""
6620
 
6621
+ #: wppa-settings-autosave.php:980 wppa-settings-autosave.php:1087
6622
  msgid "Page size"
6623
  msgstr ""
6624
 
6625
+ #: wppa-settings-autosave.php:981
6626
  msgid "Max number of thumbnails per page."
6627
  msgstr ""
6628
 
6629
+ #: wppa-settings-autosave.php:982
6630
  msgid ""
6631
  "Enter the maximum number of thumbnail images per page. A value of 0 "
6632
  "indicates no pagination."
6633
  msgstr ""
6634
 
6635
+ #: wppa-settings-autosave.php:984 wppa-settings-autosave.php:5256
6636
+ #: wppa-settings-autosave.php:5287 wppa-settings-autosave.php:5382
6637
  #, fuzzy
6638
  msgid "thumbnails"
6639
  msgstr "Miniatura"
6640
 
6641
+ #: wppa-settings-autosave.php:990
6642
  msgid "The size of the thumbnail popup images."
6643
  msgstr ""
6644
 
6645
+ #: wppa-settings-autosave.php:991
6646
  msgid ""
6647
  "Enter the size of the popup images. This size should be larger than the "
6648
  "thumbnail size."
6649
  msgstr ""
6650
 
6651
+ #: wppa-settings-autosave.php:992
6652
  msgid "This size should also be at least the cover image size."
6653
  msgstr ""
6654
 
6655
+ #: wppa-settings-autosave.php:993
6656
  msgid ""
6657
  "Changing the popup size may result in all thumbnails being regenerated. this "
6658
  "may take a while."
6659
  msgstr ""
6660
 
6661
+ #: wppa-settings-autosave.php:994
6662
  msgid ""
6663
  "Although this setting has only visual effect if \"Thumb popup\" (Table IV-"
6664
  "C8) is checked,"
6665
  msgstr ""
6666
 
6667
+ #: wppa-settings-autosave.php:995
6668
  msgid ""
6669
  "the value must be right as it is the physical size of the thumbnail and "
6670
  "coverphoto images."
6671
  msgstr ""
6672
 
6673
+ #: wppa-settings-autosave.php:1002
6674
  msgid "Use thumbs if fit"
6675
  msgstr ""
6676
 
6677
+ #: wppa-settings-autosave.php:1003
6678
  msgid "Use the thumbnail image files if they are large enough."
6679
  msgstr ""
6680
 
6681
+ #: wppa-settings-autosave.php:1004
6682
  msgid "This setting speeds up page loading for small photos."
6683
  msgstr ""
6684
 
6685
+ #: wppa-settings-autosave.php:1005
6686
  msgid ""
6687
  "Do NOT use this when your thumbnails have a forced aspect ratio (when Table "
6688
  "I-C2 is set to anything different from --- same as fullsize ---)"
6689
  msgstr ""
6690
 
6691
+ #: wppa-settings-autosave.php:1012
6692
  msgid "Album cover related size settings"
6693
  msgstr ""
6694
 
6695
+ #: wppa-settings-autosave.php:1015
6696
  msgid "Maximum width for a album cover display."
6697
  msgstr ""
6698
 
6699
+ #: wppa-settings-autosave.php:1016
6700
  msgid ""
6701
  "Display covers in 2 or more columns if the display area is wider than the "
6702
  "given width."
6703
  msgstr ""
6704
 
6705
+ #: wppa-settings-autosave.php:1017
6706
  msgid ""
6707
  "This also applies for 'thumbnails as covers', and will NOT apply to single "
6708
  "items."
6709
  msgstr ""
6710
 
6711
+ #: wppa-settings-autosave.php:1024
6712
  msgid "Min Cover height"
6713
  msgstr ""
6714
 
6715
+ #: wppa-settings-autosave.php:1025
6716
  msgid "Minimal height of an album cover."
6717
  msgstr ""
6718
 
6719
+ #: wppa-settings-autosave.php:1026
6720
  msgid ""
6721
  "If you use this setting to make the albums the same height and you are not "
6722
  "satisfied about the lay-out, try increasing the value in the next setting"
6723
  msgstr ""
6724
 
6725
+ #: wppa-settings-autosave.php:1033
6726
  msgid "Min Text frame height"
6727
  msgstr ""
6728
 
6729
+ #: wppa-settings-autosave.php:1034
6730
  msgid "The minimal cover text frame height incl header."
6731
  msgstr ""
6732
 
6733
+ #: wppa-settings-autosave.php:1035
6734
  msgid ""
6735
  "The height starting with the album title up to and including the view- and "
6736
  "the slideshow- links."
6737
  msgstr ""
6738
 
6739
+ #: wppa-settings-autosave.php:1036
6740
  msgid ""
6741
  "This setting enables you to give the album covers the same height while the "
6742
  "title does not need to fit on one line."
6743
  msgstr ""
6744
 
6745
+ #: wppa-settings-autosave.php:1037
6746
  msgid "This is the recommended setting to line-up your covers!"
6747
  msgstr ""
6748
 
6749
+ #: wppa-settings-autosave.php:1044
6750
  msgid "Min Description height"
6751
  msgstr ""
6752
 
6753
+ #: wppa-settings-autosave.php:1045
6754
  msgid "The minimal height of the album description text frame."
6755
  msgstr ""
6756
 
6757
+ #: wppa-settings-autosave.php:1046
6758
  msgid "The minimal height of the description field in an album cover display."
6759
  msgstr ""
6760
 
6761
+ #: wppa-settings-autosave.php:1047
6762
  msgid ""
6763
  "This setting enables you to give the album covers the same height provided "
6764
  "that the cover images are equally sized and the titles fit on one line."
6765
  msgstr ""
6766
 
6767
+ #: wppa-settings-autosave.php:1048
6768
  msgid ""
6769
  "To force the coverphotos have equal heights, tick the box in Table I-D7."
6770
  msgstr ""
6771
 
6772
+ #: wppa-settings-autosave.php:1049
6773
  msgid ""
6774
  "You may need this setting if changing the previous setting is not sufficient "
6775
  "to line-up the covers."
6776
  msgstr ""
6777
 
6778
+ #: wppa-settings-autosave.php:1056
6779
  msgid "Coverphoto size"
6780
  msgstr ""
6781
 
6782
+ #: wppa-settings-autosave.php:1057
6783
  #, fuzzy
6784
  msgid "The size of the coverphoto."
6785
  msgstr "Se forside foto"
6786
 
6787
+ #: wppa-settings-autosave.php:1059 wppa-settings-autosave.php:1069
6788
  msgid ""
6789
  "Changing the coverphoto size may result in all thumbnails being regenerated. "
6790
  "this may take a while."
6791
  msgstr ""
6792
 
6793
+ #: wppa-settings-autosave.php:1066
6794
  msgid "Coverphoto size multi"
6795
  msgstr ""
6796
 
6797
+ #: wppa-settings-autosave.php:1067
6798
  msgid "The size of coverphotos if more than one."
6799
  msgstr ""
6800
 
6801
+ #: wppa-settings-autosave.php:1076
6802
  msgid "Size is height"
6803
  msgstr ""
6804
 
6805
+ #: wppa-settings-autosave.php:1077
6806
  msgid "The size of the coverphoto is the height of it."
6807
  msgstr ""
6808
 
6809
+ #: wppa-settings-autosave.php:1078
6810
  msgid ""
6811
  "If set: the previous setting is the height, if unset: the largest of width "
6812
  "and height."
6813
  msgstr ""
6814
 
6815
+ #: wppa-settings-autosave.php:1079
6816
  msgid ""
6817
  "This setting applies for coverphoto position top or bottom only (Table IV-"
6818
  "D3)."
6819
  msgstr ""
6820
 
6821
+ #: wppa-settings-autosave.php:1080
6822
  msgid "This makes it easyer to make the covers of equal height."
6823
  msgstr ""
6824
 
6825
+ #: wppa-settings-autosave.php:1088
6826
  msgid "Max number of covers per page."
6827
  msgstr ""
6828
 
6829
+ #: wppa-settings-autosave.php:1089
6830
  msgid ""
6831
  "Enter the maximum number of album covers per page. A value of 0 indicates no "
6832
  "pagination."
6833
  msgstr ""
6834
 
6835
+ #: wppa-settings-autosave.php:1091
6836
  msgid "covers"
6837
  msgstr ""
6838
 
6839
+ #: wppa-settings-autosave.php:1096
6840
  msgid "Rating and comment related size settings"
6841
  msgstr ""
6842
 
6843
+ #: wppa-settings-autosave.php:1098
6844
  #, fuzzy
6845
  msgid "Rating size"
6846
  msgstr "Bed&oslash;mmelse: %s"
6847
 
6848
+ #: wppa-settings-autosave.php:1099
6849
  msgid "Select the number of voting stars."
6850
  msgstr ""
6851
 
6852
+ #: wppa-settings-autosave.php:1102
6853
  msgid "Standard: 5 stars"
6854
  msgstr ""
6855
 
6856
+ #: wppa-settings-autosave.php:1102
6857
  msgid "Extended: 10 stars"
6858
  msgstr ""
6859
 
6860
+ #: wppa-settings-autosave.php:1102
6861
  msgid "One button vote"
6862
  msgstr ""
6863
 
6864
+ #: wppa-settings-autosave.php:1109
6865
  msgid "Display precision"
6866
  msgstr ""
6867
 
6868
+ #: wppa-settings-autosave.php:1110
6869
  msgid "Select the desired rating display precision."
6870
  msgstr ""
6871
 
6872
+ #: wppa-settings-autosave.php:1113
6873
  msgid "decimal places"
6874
  msgstr ""
6875
 
6876
+ #: wppa-settings-autosave.php:1121
6877
  msgid "Size of Avatar images."
6878
  msgstr ""
6879
 
6880
+ #: wppa-settings-autosave.php:1122
6881
  msgid "The size of the square avatar; must be > 0 and < 256"
6882
  msgstr ""
6883
 
6884
+ #: wppa-settings-autosave.php:1129
6885
  #, fuzzy
6886
  msgid "Rating space"
6887
  msgstr "Bed&oslash;mmelse: %s"
6888
 
6889
+ #: wppa-settings-autosave.php:1130
6890
  msgid "Space between avg and my rating stars"
6891
  msgstr ""
6892
 
6893
+ #: wppa-settings-autosave.php:1138
6894
  msgid "Widget related size settings"
6895
  msgstr ""
6896
 
6897
+ #: wppa-settings-autosave.php:1140
6898
  msgid "Widget width"
6899
  msgstr ""
6900
 
6901
+ #: wppa-settings-autosave.php:1141
6902
  msgid "The useable width within widgets."
6903
  msgstr ""
6904
 
6905
+ #: wppa-settings-autosave.php:1142
6906
  msgid ""
6907
  "Widget width for photo of the day, general purpose (default), slideshow "
6908
  "(default) and upload widgets."
6909
  msgstr ""
6910
 
6911
+ #: wppa-settings-autosave.php:1149
6912
  #, fuzzy
6913
  msgid "TopTen count"
6914
  msgstr "Foto Top Ti"
6915
 
6916
+ #: wppa-settings-autosave.php:1150
6917
  msgid "Number of photos in TopTen widget."
6918
  msgstr ""
6919
 
6920
+ #: wppa-settings-autosave.php:1151
6921
  msgid "Enter the maximum number of rated photos in the TopTen widget."
6922
  msgstr ""
6923
 
6924
+ #: wppa-settings-autosave.php:1158
6925
  #, fuzzy
6926
  msgid "TopTen size"
6927
  msgstr "Foto Top Ti"
6928
 
6929
+ #: wppa-settings-autosave.php:1159
6930
  msgid "Size of thumbnails in TopTen widget."
6931
  msgstr ""
6932
 
6933
+ #: wppa-settings-autosave.php:1160
6934
  msgid "Enter the size for the mini photos in the TopTen widget."
6935
  msgstr ""
6936
 
6937
+ #: wppa-settings-autosave.php:1161 wppa-settings-autosave.php:1181
6938
+ #: wppa-settings-autosave.php:1201 wppa-settings-autosave.php:1221
6939
+ #: wppa-settings-autosave.php:1241 wppa-settings-autosave.php:1261
6940
  msgid "The size applies to the width or height, whatever is the largest."
6941
  msgstr ""
6942
 
6943
+ #: wppa-settings-autosave.php:1162 wppa-settings-autosave.php:1182
6944
+ #: wppa-settings-autosave.php:1202 wppa-settings-autosave.php:1222
6945
+ #: wppa-settings-autosave.php:1242 wppa-settings-autosave.php:1262
6946
  msgid ""
6947
  "Recommended values: 86 for a two column and 56 for a three column display."
6948
  msgstr ""
6949
 
6950
+ #: wppa-settings-autosave.php:1169
6951
  #, fuzzy
6952
  msgid "Comment count"
6953
  msgstr "Kommentar til billeder"
6954
 
6955
+ #: wppa-settings-autosave.php:1170
6956
  msgid "Number of entries in Comment widget."
6957
  msgstr ""
6958
 
6959
+ #: wppa-settings-autosave.php:1171
6960
  msgid "Enter the maximum number of entries in the Comment widget."
6961
  msgstr ""
6962
 
6963
+ #: wppa-settings-autosave.php:1173
6964
  msgid "entries"
6965
  msgstr ""
6966
 
6967
+ #: wppa-settings-autosave.php:1178
6968
  #, fuzzy
6969
  msgid "Comment size"
6970
  msgstr "%d kommentarer"
6971
 
6972
+ #: wppa-settings-autosave.php:1179
6973
  msgid "Size of thumbnails in Comment widget."
6974
  msgstr ""
6975
 
6976
+ #: wppa-settings-autosave.php:1180
6977
  msgid "Enter the size for the mini photos in the Comment widget."
6978
  msgstr ""
6979
 
6980
+ #: wppa-settings-autosave.php:1189
6981
  #, fuzzy
6982
  msgid "Thumbnail count"
6983
  msgstr "Miniatura"
6984
 
6985
+ #: wppa-settings-autosave.php:1190
6986
  msgid "Number of photos in Thumbnail widget."
6987
  msgstr ""
6988
 
6989
+ #: wppa-settings-autosave.php:1191
6990
  msgid "Enter the maximum number of rated photos in the Thumbnail widget."
6991
  msgstr ""
6992
 
6993
+ #: wppa-settings-autosave.php:1198
6994
  #, fuzzy
6995
  msgid "Thumbnail widget size"
6996
  msgstr "Foto Top Ti"
6997
 
6998
+ #: wppa-settings-autosave.php:1199
6999
  msgid "Size of thumbnails in Thumbnail widget."
7000
  msgstr ""
7001
 
7002
+ #: wppa-settings-autosave.php:1200
7003
  msgid "Enter the size for the mini photos in the Thumbnail widget."
7004
  msgstr ""
7005
 
7006
+ #: wppa-settings-autosave.php:1209
7007
  msgid "LasTen count"
7008
  msgstr ""
7009
 
7010
+ #: wppa-settings-autosave.php:1210
7011
  msgid "Number of photos in Last Ten widget."
7012
  msgstr ""
7013
 
7014
+ #: wppa-settings-autosave.php:1211
7015
  msgid "Enter the maximum number of photos in the LasTen widget."
7016
  msgstr ""
7017
 
7018
+ #: wppa-settings-autosave.php:1218
7019
  msgid "LasTen size"
7020
  msgstr ""
7021
 
7022
+ #: wppa-settings-autosave.php:1219
7023
  msgid "Size of thumbnails in Last Ten widget."
7024
  msgstr ""
7025
 
7026
+ #: wppa-settings-autosave.php:1220
7027
  msgid "Enter the size for the mini photos in the LasTen widget."
7028
  msgstr ""
7029
 
7030
+ #: wppa-settings-autosave.php:1229
7031
  #, fuzzy
7032
  msgid "Album widget count"
7033
  msgstr "Inserisci / modifica la descrizione per questo album."
7034
 
7035
+ #: wppa-settings-autosave.php:1230
7036
  msgid "Number of albums in Album widget."
7037
  msgstr ""
7038
 
7039
+ #: wppa-settings-autosave.php:1231
7040
  msgid ""
7041
  "Enter the maximum number of thumbnail photos of albums in the Album widget."
7042
  msgstr ""
7043
 
7044
+ #: wppa-settings-autosave.php:1238
7045
  msgid "Album widget size"
7046
  msgstr ""
7047
 
7048
+ #: wppa-settings-autosave.php:1239
7049
  msgid "Size of thumbnails in Album widget."
7050
  msgstr ""
7051
 
7052
+ #: wppa-settings-autosave.php:1240
7053
  msgid "Enter the size for the mini photos in the Album widget."
7054
  msgstr ""
7055
 
7056
+ #: wppa-settings-autosave.php:1249
7057
  msgid "FeaTen count"
7058
  msgstr ""
7059
 
7060
+ #: wppa-settings-autosave.php:1250
7061
  msgid "Number of photos in Featured Ten widget."
7062
  msgstr ""
7063
 
7064
+ #: wppa-settings-autosave.php:1251
7065
  msgid "Enter the maximum number of photos in the FeaTen widget."
7066
  msgstr ""
7067
 
7068
+ #: wppa-settings-autosave.php:1258
7069
  msgid "FeaTen size"
7070
  msgstr ""
7071
 
7072
+ #: wppa-settings-autosave.php:1259
7073
  msgid "Size of thumbnails in Featured Ten widget."
7074
  msgstr ""
7075
 
7076
+ #: wppa-settings-autosave.php:1260
7077
  msgid "Enter the size for the mini photos in the FeaTen widget."
7078
  msgstr ""
7079
 
7080
+ #: wppa-settings-autosave.php:1269
7081
  msgid "Tagcloud min size"
7082
  msgstr ""
7083
 
7084
+ #: wppa-settings-autosave.php:1270
7085
  msgid "Minimal fontsize in tagclouds"
7086
  msgstr ""
7087
 
7088
+ #: wppa-settings-autosave.php:1278
7089
  msgid "Tagcloud max size"
7090
  msgstr ""
7091
 
7092
+ #: wppa-settings-autosave.php:1279
7093
  msgid "Maximal fontsize in tagclouds"
7094
  msgstr ""
7095
 
7096
+ #: wppa-settings-autosave.php:1287
7097
  msgid ""
7098
  "Lightbox related size settings. These settings have effect only when Table "
7099
  "IX-J3 is set to wppa"
7100
  msgstr ""
7101
 
7102
+ #: wppa-settings-autosave.php:1290
7103
  msgid ""
7104
  "Number of lines on the lightbox description area, exclusive the n/m line."
7105
  msgstr ""
7106
 
7107
+ #: wppa-settings-autosave.php:1291
7108
  msgid "Enter a number in the range from 0 to 24 or auto"
7109
  msgstr ""
7110
 
7111
+ #: wppa-settings-autosave.php:1293
7112
  msgid "lines"
7113
  msgstr ""
7114
 
7115
+ #: wppa-settings-autosave.php:1298
7116
  msgid "Magnifier cursor size"
7117
  msgstr ""
7118
 
7119
+ #: wppa-settings-autosave.php:1299
7120
  msgid "Select the size of the magnifier cursor."
7121
  msgstr ""
7122
 
7123
+ #: wppa-settings-autosave.php:1302
7124
  msgid "small"
7125
  msgstr ""
7126
 
7127
+ #: wppa-settings-autosave.php:1302
7128
  msgid "medium"
7129
  msgstr ""
7130
 
7131
+ #: wppa-settings-autosave.php:1302
7132
  msgid "large"
7133
  msgstr ""
7134
 
7135
+ #: wppa-settings-autosave.php:1311
7136
  msgid "Video related size settings"
7137
  msgstr ""
7138
 
7139
+ #: wppa-settings-autosave.php:1313
7140
  msgid "Default width"
7141
  msgstr ""
7142
 
7143
+ #: wppa-settings-autosave.php:1314
7144
  msgid "The width of most videos"
7145
  msgstr ""
7146
 
7147
+ #: wppa-settings-autosave.php:1322
7148
  msgid "Default height"
7149
  msgstr ""
7150
 
7151
+ #: wppa-settings-autosave.php:1323
7152
  msgid "The height of most videos"
7153
  msgstr ""
7154
 
7155
+ #: wppa-settings-autosave.php:1349
7156
  msgid "Table II:"
7157
  msgstr ""
7158
 
7159
+ #: wppa-settings-autosave.php:1349
7160
  msgid "Visibility:"
7161
  msgstr ""
7162
 
7163
+ #: wppa-settings-autosave.php:1350
7164
  msgid "This table describes the visibility of certain wppa+ elements."
7165
  msgstr ""
7166
 
7167
+ #: wppa-settings-autosave.php:1368
7168
  msgid "Breadcrumb related visibility settings"
7169
  msgstr ""
7170
 
7171
+ #: wppa-settings-autosave.php:1370
7172
  msgid "Breadcrumb on posts"
7173
  msgstr ""
7174
 
7175
+ #: wppa-settings-autosave.php:1371 wppa-settings-autosave.php:1381
7176
  msgid "Show breadcrumb navigation bars."
7177
  msgstr ""
7178
 
7179
+ #: wppa-settings-autosave.php:1372 wppa-settings-autosave.php:1382
7180
  msgid "Indicate whether a breadcrumb navigation should be displayed"
7181
  msgstr ""
7182
 
7183
+ #: wppa-settings-autosave.php:1380
7184
  msgid "Breadcrumb on pages"
7185
  msgstr ""
7186
 
7187
+ #: wppa-settings-autosave.php:1390
7188
  #, fuzzy
7189
  msgid "Breadcrumb on search results"
7190
  msgstr "Risultati della ricerca per: %s"
7191
 
7192
+ #: wppa-settings-autosave.php:1391
7193
  msgid "Show breadcrumb navigation bars on the search results page."
7194
  msgstr ""
7195
 
7196
+ #: wppa-settings-autosave.php:1392
7197
  msgid ""
7198
  "Indicate whether a breadcrumb navigation should be displayed above the "
7199
  "search results."
7200
  msgstr ""
7201
 
7202
+ #: wppa-settings-autosave.php:1399
7203
  msgid "Breadcrumb on topten displays"
7204
  msgstr ""
7205
 
7206
+ #: wppa-settings-autosave.php:1400
7207
  msgid "Show breadcrumb navigation bars on topten displays."
7208
  msgstr ""
7209
 
7210
+ #: wppa-settings-autosave.php:1401
7211
  msgid ""
7212
  "Indicate whether a breadcrumb navigation should be displayed above the "
7213
  "topten displays."
7214
  msgstr ""
7215
 
7216
+ #: wppa-settings-autosave.php:1408
7217
  msgid "Breadcrumb on last ten displays"
7218
  msgstr ""
7219
 
7220
+ #: wppa-settings-autosave.php:1409
7221
  msgid "Show breadcrumb navigation bars on last ten displays."
7222
  msgstr ""
7223
 
7224
+ #: wppa-settings-autosave.php:1410
7225
  msgid ""
7226
  "Indicate whether a breadcrumb navigation should be displayed above the last "
7227
  "ten displays."
7228
  msgstr ""
7229
 
7230
+ #: wppa-settings-autosave.php:1417
7231
  msgid "Breadcrumb on comment ten displays"
7232
  msgstr ""
7233
 
7234
+ #: wppa-settings-autosave.php:1418
7235
  msgid "Show breadcrumb navigation bars on comment ten displays."
7236
  msgstr ""
7237
 
7238
+ #: wppa-settings-autosave.php:1419
7239
  msgid ""
7240
  "Indicate whether a breadcrumb navigation should be displayed above the "
7241
  "comment ten displays."
7242
  msgstr ""
7243
 
7244
+ #: wppa-settings-autosave.php:1426
7245
  msgid "Breadcrumb on tag result displays"
7246
  msgstr ""
7247
 
7248
+ #: wppa-settings-autosave.php:1427
7249
  msgid "Show breadcrumb navigation bars on tag result displays."
7250
  msgstr ""
7251
 
7252
+ #: wppa-settings-autosave.php:1428
7253
  msgid ""
7254
  "Indicate whether a breadcrumb navigation should be displayed above the tag "
7255
  "result displays."
7256
  msgstr ""
7257
 
7258
+ #: wppa-settings-autosave.php:1435
7259
  msgid "Breadcrumb on featured ten displays"
7260
  msgstr ""
7261
 
7262
+ #: wppa-settings-autosave.php:1436
7263
  msgid "Show breadcrumb navigation bars on featured ten displays."
7264
  msgstr ""
7265
 
7266
+ #: wppa-settings-autosave.php:1437
7267
  msgid ""
7268
  "Indicate whether a breadcrumb navigation should be displayed above the "
7269
  "featured ten displays."
7270
  msgstr ""
7271
 
7272
+ #: wppa-settings-autosave.php:1444
7273
  msgid "Breadcrumb on related photos displays"
7274
  msgstr ""
7275
 
7276
+ #: wppa-settings-autosave.php:1445
7277
  msgid "Show breadcrumb navigation bars on related photos displays."
7278
  msgstr ""
7279
 
7280
+ #: wppa-settings-autosave.php:1446
7281
  msgid ""
7282
  "Indicate whether a breadcrumb navigation should be displayed above the "
7283
  "related photos displays."
7284
  msgstr ""
7285
 
7286
+ #: wppa-settings-autosave.php:1454
7287
  msgid "Show \"Home\" in breadcrumb."
7288
  msgstr ""
7289
 
7290
+ #: wppa-settings-autosave.php:1455
7291
  msgid ""
7292
  "Indicate whether the breadcrumb navigation should start with a \"Home\"-link"
7293
  msgstr ""
7294
 
7295
+ #: wppa-settings-autosave.php:1463
7296
  msgid "Show the page(s) in breadcrumb."
7297
  msgstr ""
7298
 
7299
+ #: wppa-settings-autosave.php:1464
7300
  msgid ""
7301
  "Indicate whether the breadcrumb navigation should show the page(hierarchy)"
7302
  msgstr ""
7303
 
7304
+ #: wppa-settings-autosave.php:1471
7305
  msgid "Separator"
7306
  msgstr ""
7307
 
7308
+ #: wppa-settings-autosave.php:1472
7309
  msgid "Breadcrumb separator symbol."
7310
  msgstr ""
7311
 
7312
+ #: wppa-settings-autosave.php:1473
7313
  msgid "Select the desired breadcrumb separator element."
7314
  msgstr ""
7315
 
7316
+ #: wppa-settings-autosave.php:1474
7317
  msgid "A text string may contain valid html."
7318
  msgstr ""
7319
 
7320
+ #: wppa-settings-autosave.php:1475
7321
  msgid ""
7322
  "An image will be scaled automatically if you set the navigation font size."
7323
  msgstr ""
7324
 
7325
+ #: wppa-settings-autosave.php:1477
7326
  msgid "Text (html):"
7327
  msgstr ""
7328
 
7329
+ #: wppa-settings-autosave.php:1477
7330
  msgid "Image (url):"
7331
  msgstr ""
7332
 
7333
+ #: wppa-settings-autosave.php:1485
7334
  msgid "Html"
7335
  msgstr ""
7336
 
7337
+ #: wppa-settings-autosave.php:1486
7338
  msgid "Breadcrumb separator text."
7339
  msgstr ""
7340
 
7341
+ #: wppa-settings-autosave.php:1487
7342
  msgid "Enter the HTML code that produces the separator symbol you want."
7343
  msgstr ""
7344
 
7345
+ #: wppa-settings-autosave.php:1488
7346
  msgid ""
7347
  "It may be as simple as '-' (without the quotes) or as complex as a tag like "
7348
  "<div>..</div>."
7349
  msgstr ""
7350
 
7351
+ #: wppa-settings-autosave.php:1495
7352
  #, fuzzy
7353
  msgid "Image Url"
7354
  msgstr "Billede"
7355
 
7356
+ #: wppa-settings-autosave.php:1496
7357
  msgid "Full url to separator image."
7358
  msgstr ""
7359
 
7360
+ #: wppa-settings-autosave.php:1497
7361
  msgid ""
7362
  "Enter the full url to the image you want to use for the separator symbol."
7363
  msgstr ""
7364
 
7365
+ #: wppa-settings-autosave.php:1504
7366
  #, fuzzy
7367
  msgid "Pagelink position"
7368
  msgstr "Position:"
7369
 
7370
+ #: wppa-settings-autosave.php:1505
7371
  msgid "The location for the pagelinks bar."
7372
  msgstr ""
7373
 
7374
+ #: wppa-settings-autosave.php:1508 wppa-settings-autosave.php:3709
7375
  msgid "Top"
7376
  msgstr ""
7377
 
7378
+ #: wppa-settings-autosave.php:1508 wppa-settings-autosave.php:3709
7379
  msgid "Bottom"
7380
  msgstr ""
7381
 
7382
+ #: wppa-settings-autosave.php:1508
7383
  msgid "Both"
7384
  msgstr ""
7385
 
7386
+ #: wppa-settings-autosave.php:1515
7387
  msgid "Thumblink on slideshow"
7388
  msgstr ""
7389
 
7390
+ #: wppa-settings-autosave.php:1516
7391
  msgid "Show a thumb link on slideshow bc."
7392
  msgstr ""
7393
 
7394
+ #: wppa-settings-autosave.php:1517
7395
  msgid "Show a link to thumbnail display on an breadcrumb above a slideshow"
7396
  msgstr ""
7397
 
7398
+ #: wppa-settings-autosave.php:1524
7399
  msgid "Slideshow related visibility settings"
7400
  msgstr ""
7401
 
7402
+ #: wppa-settings-autosave.php:1526
7403
  #, fuzzy
7404
  msgid "Start/stop"
7405
  msgstr "Start"
7406
 
7407
+ #: wppa-settings-autosave.php:1527
7408
  #, fuzzy
7409
  msgid "Show the Start/Stop slideshow bar."
7410
  msgstr "Dobbeltklik for at starte/slutte slideshow"
7411
 
7412
+ #: wppa-settings-autosave.php:1528
7413
  msgid ""
7414
  "If checked: display the start/stop slideshow navigation bar above the full-"
7415
  "size images and slideshow"
7416
  msgstr ""
7417
 
7418
+ #: wppa-settings-autosave.php:1535
7419
  #, fuzzy
7420
  msgid "Browse bar"
7421
  msgstr "Se fotos"
7422
 
7423
+ #: wppa-settings-autosave.php:1536
7424
  #, fuzzy
7425
  msgid "Show Browse photos bar."
7426
  msgstr "Se fotos"
7427
 
7428
+ #: wppa-settings-autosave.php:1537
7429
  msgid ""
7430
  "If checked: display the preveous/next navigation bar under the full-size "
7431
  "images and slideshow"
7432
  msgstr ""
7433
 
7434
+ #: wppa-settings-autosave.php:1544
7435
  msgid "Filmstrip"
7436
  msgstr ""
7437
 
7438
+ #: wppa-settings-autosave.php:1545
7439
  msgid "Show Filmstrip navigation bar."
7440
  msgstr ""
7441
 
7442
+ #: wppa-settings-autosave.php:1546
7443
  msgid ""
7444
  "If checked: display the filmstrip navigation bar under the full_size images "
7445
  "and slideshow"
7446
  msgstr ""
7447
 
7448
+ #: wppa-settings-autosave.php:1553
7449
  msgid "Film seam"
7450
  msgstr ""
7451
 
7452
+ #: wppa-settings-autosave.php:1554
7453
  msgid "Show seam between end and start of film."
7454
  msgstr ""
7455
 
7456
+ #: wppa-settings-autosave.php:1555
7457
  msgid "If checked: display the wrap-around point in the filmstrip"
7458
  msgstr ""
7459
 
7460
+ #: wppa-settings-autosave.php:1562
7461
  #, fuzzy
7462
  msgid "Photo name"
7463
  msgstr "Dagens foto"
7464
 
7465
+ #: wppa-settings-autosave.php:1563
7466
  #, fuzzy
7467
  msgid "Display photo name."
7468
  msgstr "Indtast foto navn"
7469
 
7470
+ #: wppa-settings-autosave.php:1564
7471
  msgid "If checked: display the name of the photo under the slideshow image."
7472
  msgstr ""
7473
 
7474
+ #: wppa-settings-autosave.php:1571 wppa-settings-autosave.php:1951
7475
  msgid "Add (Owner)"
7476
  msgstr ""
7477
 
7478
+ #: wppa-settings-autosave.php:1572 wppa-settings-autosave.php:1952
7479
  msgid "Add the uploaders display name in parenthesis to the name."
7480
  msgstr ""
7481
 
7482
+ #: wppa-settings-autosave.php:1580
7483
  #, fuzzy
7484
  msgid "Photo desc"
7485
  msgstr "Foto"
7486
 
7487
+ #: wppa-settings-autosave.php:1581
7488
  #, fuzzy
7489
  msgid "Display Photo description."
7490
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
7491
 
7492
+ #: wppa-settings-autosave.php:1582
7493
  msgid ""
7494
  "If checked: display the description of the photo under the slideshow image."
7495
  msgstr ""
7496
 
7497
+ #: wppa-settings-autosave.php:1589
7498
  msgid "Hide when empty"
7499
  msgstr ""
7500
 
7501
+ #: wppa-settings-autosave.php:1590
7502
  msgid "Hide the descriptionbox when empty."
7503
  msgstr ""
7504
 
7505
+ #: wppa-settings-autosave.php:1598
7506
  #, fuzzy
7507
  msgid "Rating system"
7508
  msgstr "Bed&oslash;mmelse: %s"
7509
 
7510
+ #: wppa-settings-autosave.php:1599
7511
  msgid "Enable the rating system."
7512
  msgstr ""
7513
 
7514
+ #: wppa-settings-autosave.php:1600
7515
  msgid "If checked, the photo rating system will be enabled."
7516
  msgstr ""
7517
 
7518
+ #: wppa-settings-autosave.php:1608
7519
  #, fuzzy
7520
  msgid "Comments system"
7521
  msgstr "%d kommentarer"
7522
 
7523
+ #: wppa-settings-autosave.php:1609
7524
  msgid "Enable the comments system."
7525
  msgstr ""
7526
 
7527
+ #: wppa-settings-autosave.php:1610
7528
  msgid ""
7529
  "Display the comments box under the fullsize images and let users enter their "
7530
  "comments on individual photos."
7531
  msgstr ""
7532
 
7533
+ #: wppa-settings-autosave.php:1618
7534
  #, fuzzy
7535
  msgid "Comment Avatar default"
7536
  msgstr "Kommentarer tilf&oslash;jet"
7537
 
7538
+ #: wppa-settings-autosave.php:1619
7539
  msgid "Show Avatars with the comments if not --- none ---"
7540
  msgstr ""
7541
 
7542
+ #: wppa-settings-autosave.php:1624
7543
  msgid "mystery man"
7544
  msgstr ""
7545
 
7546
+ #: wppa-settings-autosave.php:1625
7547
  msgid "identicon"
7548
  msgstr ""
7549
 
7550
+ #: wppa-settings-autosave.php:1626
7551
  msgid "monsterid"
7552
  msgstr ""
7553
 
7554
+ #: wppa-settings-autosave.php:1627
7555
  msgid "wavatar"
7556
  msgstr ""
7557
 
7558
+ #: wppa-settings-autosave.php:1628
7559
  msgid "retro"
7560
  msgstr ""
7561
 
7562
+ #: wppa-settings-autosave.php:1629
7563
  #, fuzzy
7564
  msgid "--- url ---"
7565
  msgstr "--- ingen ---"
7566
 
7567
+ #: wppa-settings-autosave.php:1644
7568
  msgid "Comment Avatar url"
7569
  msgstr ""
7570
 
7571
+ #: wppa-settings-autosave.php:1645
7572
  msgid "Comment Avatar default url."
7573
  msgstr ""
7574
 
7575
+ #: wppa-settings-autosave.php:1653
7576
  #, fuzzy
7577
  msgid "Big Browse Buttons"
7578
  msgstr "Se fotos"
7579
 
7580
+ #: wppa-settings-autosave.php:1654
7581
  msgid "Enable invisible browsing buttons."
7582
  msgstr ""
7583
 
7584
+ #: wppa-settings-autosave.php:1655 wppa-settings-autosave.php:2198
7585
  #, fuzzy
7586
  msgid ""
7587
  "If checked, the fullsize image is covered by two invisible areas that act as "
7590
  "For at se billeder i fuld st&oslash;rrelse skal du tillade javascript in din "
7591
  "browser."
7592
 
7593
+ #: wppa-settings-autosave.php:1656 wppa-settings-autosave.php:2199
7594
+ #: wppa-settings-autosave.php:2209
7595
  msgid ""
7596
  "Make sure the Full height (Table I-B2) is properly configured to prevent "
7597
  "these areas to overlap unwanted space."
7598
  msgstr ""
7599
 
7600
+ #: wppa-settings-autosave.php:1663
7601
  #, fuzzy
7602
  msgid "Ugly Browse Buttons"
7603
  msgstr "Se fotos"
7604
 
7605
+ #: wppa-settings-autosave.php:1664
7606
  msgid "Enable the ugly browsing buttons."
7607
  msgstr ""
7608
 
7609
+ #: wppa-settings-autosave.php:1665
7610
  msgid "If checked, the fullsize image is covered by two browse buttons."
7611
  msgstr ""
7612
 
7613
+ #: wppa-settings-autosave.php:1669 wppa-settings-autosave.php:2240
7614
+ #: wppa-settings-autosave.php:2251
7615
  msgid "Black"
7616
  msgstr ""
7617
 
7618
+ #: wppa-settings-autosave.php:1669
7619
  msgid "Light gray"
7620
  msgstr ""
7621
 
7622
+ #: wppa-settings-autosave.php:1676
7623
  #, fuzzy
7624
  msgid "Start/stop icons"
7625
  msgstr "Start"
7626
 
7627
+ #: wppa-settings-autosave.php:1677
7628
  msgid "Show start and stop icons at the center of the slide"
7629
  msgstr ""
7630
 
7631
+ #: wppa-settings-autosave.php:1682
7632
  msgid "Black square"
7633
  msgstr ""
7634
 
7635
+ #: wppa-settings-autosave.php:1682
7636
  msgid "Blue square"
7637
  msgstr ""
7638
 
7639
+ #: wppa-settings-autosave.php:1682
7640
  msgid "Black round"
7641
  msgstr ""
7642
 
7643
+ #: wppa-settings-autosave.php:1689
7644
  msgid "Show custom box"
7645
  msgstr ""
7646
 
7647
+ #: wppa-settings-autosave.php:1690
7648
  msgid "Display the custom box in the slideshow"
7649
  msgstr ""
7650
 
7651
+ #: wppa-settings-autosave.php:1691 wppa-settings-autosave.php:1702
7652
  msgid ""
7653
  "You can fill the custom box with any html you like. It will not be checked, "
7654
  "so it is your own responsability to close tags properly."
7655
  msgstr ""
7656
 
7657
+ #: wppa-settings-autosave.php:1692 wppa-settings-autosave.php:1703
7658
  msgid "The position of the box can be defined in Table IX-E."
7659
  msgstr ""
7660
 
7661
+ #: wppa-settings-autosave.php:1700
7662
  msgid "Custom content"
7663
  msgstr ""
7664
 
7665
+ #: wppa-settings-autosave.php:1701
7666
  msgid "The content (html) of the custom box."
7667
  msgstr ""
7668
 
7669
+ #: wppa-settings-autosave.php:1710
7670
  #, fuzzy
7671
  msgid "Slideshow/Number bar"
7672
  msgstr "Slideshow"
7673
 
7674
+ #: wppa-settings-autosave.php:1711
7675
  msgid "Display the Slideshow / Number bar."
7676
  msgstr ""
7677
 
7678
+ #: wppa-settings-autosave.php:1712
7679
  msgid "If checked: display the number boxes on slideshow"
7680
  msgstr ""
7681
 
7682
+ #: wppa-settings-autosave.php:1720
7683
  msgid "IPTC system"
7684
  msgstr ""
7685
 
7686
+ #: wppa-settings-autosave.php:1721
7687
  msgid "Enable the iptc system."
7688
  msgstr ""
7689
 
7690
+ #: wppa-settings-autosave.php:1722
7691
  msgid "Display the iptc box under the fullsize images."
7692
  msgstr ""
7693
 
7694
+ #: wppa-settings-autosave.php:1730
7695
  msgid "IPTC open"
7696
  msgstr ""
7697
 
7698
+ #: wppa-settings-autosave.php:1731
7699
  msgid "Display the iptc box initially opened."
7700
  msgstr ""
7701
 
7702
+ #: wppa-settings-autosave.php:1732
7703
  msgid "Display the iptc box under the fullsize images initially open."
7704
  msgstr ""
7705
 
7706
+ #: wppa-settings-autosave.php:1740
7707
  msgid "EXIF system"
7708
  msgstr ""
7709
 
7710
+ #: wppa-settings-autosave.php:1741
7711
  msgid "Enable the exif system."
7712
  msgstr ""
7713
 
7714
+ #: wppa-settings-autosave.php:1742
7715
  msgid "Display the exif box under the fullsize images."
7716
  msgstr ""
7717
 
7718
+ #: wppa-settings-autosave.php:1750
7719
  msgid "EXIF open"
7720
  msgstr ""
7721
 
7722
+ #: wppa-settings-autosave.php:1751
7723
  msgid "Display the exif box initially opened."
7724
  msgstr ""
7725
 
7726
+ #: wppa-settings-autosave.php:1752
7727
  msgid "Display the exif box under the fullsize images initially open."
7728
  msgstr ""
7729
 
7730
+ #: wppa-settings-autosave.php:1760
7731
  msgid "Social media share box related visibility settings"
7732
  msgstr ""
7733
 
7734
+ #: wppa-settings-autosave.php:1762
7735
  msgid "Show Share Box"
7736
  msgstr ""
7737
 
7738
+ #: wppa-settings-autosave.php:1763
7739
  msgid "Display the share social media buttons box."
7740
  msgstr ""
7741
 
7742
+ #: wppa-settings-autosave.php:1772 wppa-settings-autosave.php:8137
7743
  msgid "Hide when running"
7744
  msgstr ""
7745
 
7746
+ #: wppa-settings-autosave.php:1773
7747
  msgid "Hide the SM box when slideshow runs."
7748
  msgstr ""
7749
 
7750
+ #: wppa-settings-autosave.php:1781
7751
  msgid "Show Share Box Widget"
7752
  msgstr ""
7753
 
7754
+ #: wppa-settings-autosave.php:1782
7755
  msgid "Display the share social media buttons box in widgets."
7756
  msgstr ""
7757
 
7758
+ #: wppa-settings-autosave.php:1783
7759
  msgid ""
7760
  "This setting applies to normal slideshows in widgets, not to the "
7761
  "slideshowwidget as that is a slideonly display."
7762
  msgstr ""
7763
 
7764
+ #: wppa-settings-autosave.php:1791
7765
  msgid "Show Share Buttons Thumbs"
7766
  msgstr ""
7767
 
7768
+ #: wppa-settings-autosave.php:1792
7769
  msgid "Display the share social media buttons under thumbnails."
7770
  msgstr ""
7771
 
7772
+ #: wppa-settings-autosave.php:1801
7773
  msgid "Show Share Buttons Lightbox"
7774
  msgstr ""
7775
 
7776
+ #: wppa-settings-autosave.php:1802
7777
  msgid "Display the share social media buttons on lightbox displays."
7778
  msgstr ""
7779
 
7780
+ #: wppa-settings-autosave.php:1811
7781
  #, fuzzy
7782
  msgid "Show Share Buttons Mphoto"
7783
  msgstr ""
7784
  "I visitatori possono ottenere una panoramica delle immagini contenute in un "
7785
  "album grazie alle miniature."
7786
 
7787
+ #: wppa-settings-autosave.php:1812
7788
  msgid "Display the share social media buttons on mphoto displays."
7789
  msgstr ""
7790
 
7791
+ #: wppa-settings-autosave.php:1821
7792
  msgid "Show QR Code"
7793
  msgstr ""
7794
 
7795
+ #: wppa-settings-autosave.php:1822
7796
  msgid "Display the QR code in the share box."
7797
  msgstr ""
7798
 
7799
+ #: wppa-settings-autosave.php:1830
7800
  #, fuzzy
7801
  msgid "Show Twitter button"
7802
  msgstr "Condividi su Twitter"
7803
 
7804
+ #: wppa-settings-autosave.php:1831
7805
  msgid "Display the Twitter button in the share box."
7806
  msgstr ""
7807
 
7808
+ #: wppa-settings-autosave.php:1839
7809
  #, fuzzy
7810
  msgid "Show Google+ button"
7811
  msgstr "Condividi su Google+"
7812
 
7813
+ #: wppa-settings-autosave.php:1840
7814
  msgid "Display the Google+ button in the share box."
7815
  msgstr ""
7816
 
7817
+ #: wppa-settings-autosave.php:1848
7818
  #, fuzzy
7819
  msgid "Show Pinterest button"
7820
  msgstr "Condividi on Pinterest"
7821
 
7822
+ #: wppa-settings-autosave.php:1849
7823
  msgid "Display the Pintrest button in the share box."
7824
  msgstr ""
7825
 
7826
+ #: wppa-settings-autosave.php:1857
7827
  msgid "Show LinkedIn button"
7828
  msgstr ""
7829
 
7830
+ #: wppa-settings-autosave.php:1858
7831
  msgid "Display the LinkedIn button in the share box."
7832
  msgstr ""
7833
 
7834
+ #: wppa-settings-autosave.php:1866
7835
  msgid "Show Facebook share button"
7836
  msgstr ""
7837
 
7838
+ #: wppa-settings-autosave.php:1867 wppa-settings-autosave.php:1876
7839
  msgid "Display the Facebook button in the share box."
7840
  msgstr ""
7841
 
7842
+ #: wppa-settings-autosave.php:1875
7843
  msgid "Show Facebook like button"
7844
  msgstr ""
7845
 
7846
+ #: wppa-settings-autosave.php:1884
7847
  msgid "Display type"
7848
  msgstr ""
7849
 
7850
+ #: wppa-settings-autosave.php:1885
7851
  msgid "Select the Facebook button display type."
7852
  msgstr ""
7853
 
7854
+ #: wppa-settings-autosave.php:1888
7855
  msgid "Button with counter"
7856
  msgstr ""
7857
 
7858
+ #: wppa-settings-autosave.php:1888
7859
  msgid "Box with counter"
7860
  msgstr ""
7861
 
7862
+ #: wppa-settings-autosave.php:1895
7863
  msgid "Show Facebook comment box"
7864
  msgstr ""
7865
 
7866
+ #: wppa-settings-autosave.php:1896
7867
  msgid "Display the Facebook comment dialog box in the share box."
7868
  msgstr ""
7869
 
7870
+ #: wppa-settings-autosave.php:1904
7871
  msgid "Facebook User Id"
7872
  msgstr ""
7873
 
7874
+ #: wppa-settings-autosave.php:1905
7875
  msgid "Enter your facebook user id to be able to moderate comments and sends"
7876
  msgstr ""
7877
 
7878
+ #: wppa-settings-autosave.php:1913
7879
  msgid "Facebook App Id"
7880
  msgstr ""
7881
 
7882
+ #: wppa-settings-autosave.php:1914
7883
  msgid "Enter your facebook app id to be able to moderate comments and sends"
7884
  msgstr ""
7885
 
7886
+ #: wppa-settings-autosave.php:1922
7887
  msgid "Facebook js SDK"
7888
  msgstr ""
7889
 
7890
+ #: wppa-settings-autosave.php:1923
7891
  msgid "Load Facebook js SDK"
7892
  msgstr ""
7893
 
7894
+ #: wppa-settings-autosave.php:1924
7895
  msgid ""
7896
  "Uncheck this box only when there is a conflict with an other plugin that "
7897
  "also loads the Facebook js SDK."
7898
  msgstr ""
7899
 
7900
+ #: wppa-settings-autosave.php:1931
7901
  msgid "Share single image"
7902
  msgstr ""
7903
 
7904
+ #: wppa-settings-autosave.php:1932
7905
  msgid "Share a link to a single image, not the slideshow."
7906
  msgstr ""
7907
 
7908
+ #: wppa-settings-autosave.php:1933
7909
  msgid ""
7910
  "The sharelink points to a page with a single image rather than to the page "
7911
  "with the photo in the slideshow."
7912
  msgstr ""
7913
 
7914
+ #: wppa-settings-autosave.php:1940
7915
  msgid "Thumbnail display related visibility settings"
7916
  msgstr ""
7917
 
7918
+ #: wppa-settings-autosave.php:1942
7919
  #, fuzzy
7920
  msgid "Thumbnail name"
7921
  msgstr "Foto Top Ti"
7922
 
7923
+ #: wppa-settings-autosave.php:1943
7924
  msgid "Display Thumbnail name."
7925
  msgstr ""
7926
 
7927
+ #: wppa-settings-autosave.php:1944
7928
  msgid "Display photo name under thumbnail images."
7929
  msgstr ""
7930
 
7931
+ #: wppa-settings-autosave.php:1960
7932
  #, fuzzy
7933
  msgid "Thumbnail desc"
7934
  msgstr "Miniatura"
7935
 
7936
+ #: wppa-settings-autosave.php:1961
7937
  #, fuzzy
7938
  msgid "Display Thumbnail description."
7939
  msgstr "Inserisci / modifica la descrizione per questo album."
7940
 
7941
+ #: wppa-settings-autosave.php:1962
7942
  msgid "Display description of the photo under thumbnail images."
7943
  msgstr ""
7944
 
7945
+ #: wppa-settings-autosave.php:1969
7946
  #, fuzzy
7947
  msgid "Thumbnail rating"
7948
  msgstr "Foto Top Ti"
7949
 
7950
+ #: wppa-settings-autosave.php:1970
7951
  msgid "Display Thumbnail Rating."
7952
  msgstr ""
7953
 
7954
+ #: wppa-settings-autosave.php:1971
7955
  msgid "Display the rating of the photo under the thumbnail image."
7956
  msgstr ""
7957
 
7958
+ #: wppa-settings-autosave.php:1978
7959
  #, fuzzy
7960
  msgid "Thumbnail comcount"
7961
  msgstr "Miniatura"
7962
 
7963
+ #: wppa-settings-autosave.php:1979
7964
  msgid "Display Thumbnail Comment count."
7965
  msgstr ""
7966
 
7967
+ #: wppa-settings-autosave.php:1980
7968
  msgid "Display the number of comments to the photo under the thumbnail image."
7969
  msgstr ""
7970
 
7971
+ #: wppa-settings-autosave.php:1987
7972
  #, fuzzy
7973
  msgid "Thumbnail viewcount"
7974
  msgstr "Foto Top Ti"
7975
 
7976
+ #: wppa-settings-autosave.php:1988
7977
  msgid "Display the number of views."
7978
  msgstr ""
7979
 
7980
+ #: wppa-settings-autosave.php:1989
7981
  msgid "Display the number of views under the thumbnail image."
7982
  msgstr ""
7983
 
7984
+ #: wppa-settings-autosave.php:1996
7985
+ #, fuzzy
7986
+ msgid "Thumbnail virt album"
7987
+ msgstr "Miniatura"
7988
+
7989
+ #: wppa-settings-autosave.php:1997
7990
+ msgid "Display the real album name on virtual album display."
7991
+ msgstr ""
7992
+
7993
+ #: wppa-settings-autosave.php:1998
7994
+ msgid ""
7995
+ "Display the album name of the photo in parenthesis under the thumbnail on "
7996
+ "virtual album displays like search results etc."
7997
+ msgstr ""
7998
+
7999
+ #: wppa-settings-autosave.php:2005
8000
  #, fuzzy
8001
  msgid "Thumbnail video"
8002
  msgstr "Foto Top Ti"
8003
 
8004
+ #: wppa-settings-autosave.php:2006
8005
  msgid "Show video controls on thumbnail displays."
8006
  msgstr ""
8007
 
8008
+ #: wppa-settings-autosave.php:2007
8009
  msgid ""
8010
  "Works on default thumbnail type only. You can play the video only when the "
8011
  "link is set to no link at all."
8012
  msgstr ""
8013
 
8014
+ #: wppa-settings-autosave.php:2014
8015
  #, fuzzy
8016
  msgid "Thumbnail audio"
8017
  msgstr "Foto Top Ti"
8018
 
8019
+ #: wppa-settings-autosave.php:2015
8020
  msgid "Show audio controls on thumbnail displays."
8021
  msgstr ""
8022
 
8023
+ #: wppa-settings-autosave.php:2016
8024
  msgid "Works on default thumbnail type only."
8025
  msgstr ""
8026
 
8027
+ #: wppa-settings-autosave.php:2023
8028
  #, fuzzy
8029
  msgid "Popup name"
8030
  msgstr "Dit navn"
8031
 
8032
+ #: wppa-settings-autosave.php:2024
8033
  msgid "Display Thumbnail name on popup."
8034
  msgstr ""
8035
 
8036
+ #: wppa-settings-autosave.php:2025
8037
  msgid "Display photo name under thumbnail images on the popup."
8038
  msgstr ""
8039
 
8040
+ #: wppa-settings-autosave.php:2032
8041
  msgid "Popup (owner)"
8042
  msgstr ""
8043
 
8044
+ #: wppa-settings-autosave.php:2033
8045
  msgid "Display owner on popup."
8046
  msgstr ""
8047
 
8048
+ #: wppa-settings-autosave.php:2034
8049
  msgid "Display photo owner under thumbnail images on the popup."
8050
  msgstr ""
8051
 
8052
+ #: wppa-settings-autosave.php:2041
8053
  msgid "Popup desc"
8054
  msgstr ""
8055
 
8056
+ #: wppa-settings-autosave.php:2042
8057
  msgid "Display Thumbnail description on popup."
8058
  msgstr ""
8059
 
8060
+ #: wppa-settings-autosave.php:2043
8061
  msgid "Display description of the photo under thumbnail images on the popup."
8062
  msgstr ""
8063
 
8064
+ #: wppa-settings-autosave.php:2050
8065
  msgid "Popup desc no links"
8066
  msgstr ""
8067
 
8068
+ #: wppa-settings-autosave.php:2051
8069
  msgid "Strip html anchor tags from descriptions on popups"
8070
  msgstr ""
8071
 
8072
+ #: wppa-settings-autosave.php:2052
8073
  msgid ""
8074
  "Use this option to prevent the display of links that cannot be activated."
8075
  msgstr ""
8076
 
8077
+ #: wppa-settings-autosave.php:2059
8078
  #, fuzzy
8079
  msgid "Popup rating"
8080
  msgstr "Valutazione:"
8081
 
8082
+ #: wppa-settings-autosave.php:2060
8083
  msgid "Display Thumbnail Rating on popup."
8084
  msgstr ""
8085
 
8086
+ #: wppa-settings-autosave.php:2061
8087
  msgid "Display the rating of the photo under the thumbnail image on the popup."
8088
  msgstr ""
8089
 
8090
+ #: wppa-settings-autosave.php:2068
8091
  msgid "Popup comcount"
8092
  msgstr ""
8093
 
8094
+ #: wppa-settings-autosave.php:2069
8095
  msgid "Display Thumbnail Comment count on popup."
8096
  msgstr ""
8097
 
8098
+ #: wppa-settings-autosave.php:2070
8099
  msgid ""
8100
  "Display the number of comments of the photo under the thumbnail image on the "
8101
  "popup."
8102
  msgstr ""
8103
 
8104
+ #: wppa-settings-autosave.php:2077
8105
  msgid "Show rating count"
8106
  msgstr ""
8107
 
8108
+ #: wppa-settings-autosave.php:2078
8109
  msgid "Display the number of votes along with average ratings."
8110
  msgstr ""
8111
 
8112
+ #: wppa-settings-autosave.php:2079
8113
  msgid ""
8114
  "If checked, the number of votes is displayed along with average rating "
8115
  "displays on thumbnail and popup displays."
8116
  msgstr ""
8117
 
8118
+ #: wppa-settings-autosave.php:2086
8119
  msgid "Show name on thumb area"
8120
  msgstr ""
8121
 
8122
+ #: wppa-settings-autosave.php:2087
8123
  msgid "Select if and where to display the album name on the thumbnail display."
8124
  msgstr ""
8125
 
8126
+ #: wppa-settings-autosave.php:2090 wppa-settings-autosave.php:2101
8127
  msgid "None"
8128
  msgstr ""
8129
 
8130
+ #: wppa-settings-autosave.php:2090 wppa-settings-autosave.php:2101
8131
+ #: wppa-settings-autosave.php:3220
8132
  msgid "At the top"
8133
  msgstr ""
8134
 
8135
+ #: wppa-settings-autosave.php:2090 wppa-settings-autosave.php:2101
8136
+ #: wppa-settings-autosave.php:3220
8137
  msgid "At the bottom"
8138
  msgstr ""
8139
 
8140
+ #: wppa-settings-autosave.php:2097
8141
  msgid "Show desc on thumb area"
8142
  msgstr ""
8143
 
8144
+ #: wppa-settings-autosave.php:2098
8145
  msgid ""
8146
  "Select if and where to display the album description on the thumbnail "
8147
  "display."
8148
  msgstr ""
8149
 
8150
+ #: wppa-settings-autosave.php:2108
8151
  msgid "Show Edit/Delete links"
8152
  msgstr ""
8153
 
8154
+ #: wppa-settings-autosave.php:2109
8155
  msgid "Show these links under default thumbnails for owner and admin."
8156
  msgstr ""
8157
 
8158
+ #: wppa-settings-autosave.php:2117
8159
  msgid "Show empty thumbnail area"
8160
  msgstr ""
8161
 
8162
+ #: wppa-settings-autosave.php:2118
8163
  msgid "Display thumbnail areas with upload link only for empty albums."
8164
  msgstr ""
8165
 
8166
+ #: wppa-settings-autosave.php:2127
8167
  msgid "Album cover related visibility settings"
8168
  msgstr ""
8169
 
8170
+ #: wppa-settings-autosave.php:2129
8171
  msgid "Covertext"
8172
  msgstr ""
8173
 
8174
+ #: wppa-settings-autosave.php:2130
8175
  msgid "Show the text on the album cover."
8176
  msgstr ""
8177
 
8178
+ #: wppa-settings-autosave.php:2131
8179
  msgid "Display the album decription on the album cover"
8180
  msgstr ""
8181
 
8182
+ #: wppa-settings-autosave.php:2139
8183
  msgid "Enable the slideshow."
8184
  msgstr ""
8185
 
8186
+ #: wppa-settings-autosave.php:2140
8187
  msgid ""
8188
  "If you do not want slideshows: uncheck this box. Browsing full size images "
8189
  "will remain possible."
8190
  msgstr ""
8191
 
8192
+ #: wppa-settings-autosave.php:2147
8193
  #, fuzzy
8194
  msgid "Slideshow/Browse"
8195
  msgstr "Slideshow"
8196
 
8197
+ #: wppa-settings-autosave.php:2148
8198
  msgid "Display the Slideshow / Browse photos link on album covers"
8199
  msgstr ""
8200
 
8201
+ #: wppa-settings-autosave.php:2149
8202
  msgid ""
8203
  "This setting causes the Slideshow link to be displayed on the album cover."
8204
  msgstr ""
8205
 
8206
+ #: wppa-settings-autosave.php:2150
8207
  msgid ""
8208
  "If slideshows are disabled in item 2 in this table, you will see a browse "
8209
  "link to fullsize images."
8210
  msgstr ""
8211
 
8212
+ #: wppa-settings-autosave.php:2151
8213
  msgid "If you do not want the browse link either, uncheck this item."
8214
  msgstr ""
8215
 
8216
+ #: wppa-settings-autosave.php:2158
8217
  #, fuzzy
8218
  msgid "View ..."
8219
  msgstr "Se"
8220
 
8221
+ #: wppa-settings-autosave.php:2159
8222
  msgid "Display the View xx albums and yy photos link on album covers"
8223
  msgstr ""
8224
 
8225
+ #: wppa-settings-autosave.php:2167
8226
  msgid "Treecount"
8227
  msgstr ""
8228
 
8229
+ #: wppa-settings-autosave.php:2168
8230
  msgid "Disaplay the total number of (sub)albums and photos in subalbums"
8231
  msgstr ""
8232
 
8233
+ #: wppa-settings-autosave.php:2169
8234
  msgid ""
8235
  "Displays the total number of sub albums and photos in the entire album tree "
8236
  "in parenthesis if the numbers differ from the direct content of the album."
8237
  msgstr ""
8238
 
8239
+ #: wppa-settings-autosave.php:2176
8240
  msgid "Show categories"
8241
  msgstr ""
8242
 
8243
+ #: wppa-settings-autosave.php:2177
8244
  msgid "Display the album categories on the covers."
8245
  msgstr ""
8246
 
8247
+ #: wppa-settings-autosave.php:2185
8248
  msgid "Skip empty albums"
8249
  msgstr ""
8250
 
8251
+ #: wppa-settings-autosave.php:2186
8252
  msgid "Do not show empty albums, except for admin and owner."
8253
  msgstr ""
8254
 
8255
+ #: wppa-settings-autosave.php:2194
8256
  msgid "Widget related visibility settings"
8257
  msgstr ""
8258
 
8259
+ #: wppa-settings-autosave.php:2196
8260
  msgid "Big Browse Buttons in widget"
8261
  msgstr ""
8262
 
8263
+ #: wppa-settings-autosave.php:2197
8264
  msgid "Enable invisible browsing buttons in widget slideshows."
8265
  msgstr ""
8266
 
8267
+ #: wppa-settings-autosave.php:2206
8268
  msgid "Ugly Browse Buttons in widget"
8269
  msgstr ""
8270
 
8271
+ #: wppa-settings-autosave.php:2207
8272
  msgid "Enable ugly browsing buttons in widget slideshows."
8273
  msgstr ""
8274
 
8275
+ #: wppa-settings-autosave.php:2208
8276
  msgid "If checked, the fullsize image is covered by browse buttons."
8277
  msgstr ""
8278
 
8279
+ #: wppa-settings-autosave.php:2216
8280
  msgid "Album widget tooltip"
8281
  msgstr ""
8282
 
8283
+ #: wppa-settings-autosave.php:2217
8284
  msgid "Show the album description on hoovering thumbnail in album widget"
8285
  msgstr ""
8286
 
8287
+ #: wppa-settings-autosave.php:2225 wppa-settings-autosave.php:4136
8288
  msgid ""
8289
  "Lightbox related settings. These settings have effect only when Table IX-J3 "
8290
  "is set to wppa"
8291
  msgstr ""
8292
 
8293
+ #: wppa-settings-autosave.php:2227
8294
  msgid "Overlay Close label text"
8295
  msgstr ""
8296
 
8297
+ #: wppa-settings-autosave.php:2228
8298
  msgid "The text label for the cross exit symbol."
8299
  msgstr ""
8300
 
8301
+ #: wppa-settings-autosave.php:2229
8302
  msgid ""
8303
  "This text may be multilingual according to the qTranslate short tags specs."
8304
  msgstr ""
8305
 
8306
+ #: wppa-settings-autosave.php:2236
8307
  msgid "Overlay theme color"
8308
  msgstr ""
8309
 
8310
+ #: wppa-settings-autosave.php:2237
8311
  msgid "The color of the image border and text background."
8312
  msgstr ""
8313
 
8314
+ #: wppa-settings-autosave.php:2240 wppa-settings-autosave.php:2251
8315
  msgid "White"
8316
  msgstr ""
8317
 
8318
+ #: wppa-settings-autosave.php:2247
8319
  msgid "Overlay background color"
8320
  msgstr ""
8321
 
8322
+ #: wppa-settings-autosave.php:2248
8323
  msgid "The color of the outer background."
8324
  msgstr ""
8325
 
8326
+ #: wppa-settings-autosave.php:2258
8327
  msgid "Overlay slide name"
8328
  msgstr ""
8329
 
8330
+ #: wppa-settings-autosave.php:2259
8331
  msgid "Show name if from slide."
8332
  msgstr ""
8333
 
8334
+ #: wppa-settings-autosave.php:2260
8335
  msgid ""
8336
  "Shows the photos name on a lightbox display when initiated from a slide."
8337
  msgstr ""
8338
 
8339
+ #: wppa-settings-autosave.php:2261 wppa-settings-autosave.php:2271
8340
  msgid ""
8341
  "This setting also applies to film thumbnails if Table VI-11 is set to "
8342
  "lightbox overlay."
8343
  msgstr ""
8344
 
8345
+ #: wppa-settings-autosave.php:2268
8346
  msgid "Overlay slide desc"
8347
  msgstr ""
8348
 
8349
+ #: wppa-settings-autosave.php:2269
8350
  msgid "Show description if from slide."
8351
  msgstr ""
8352
 
8353
+ #: wppa-settings-autosave.php:2270
8354
  msgid ""
8355
  "Shows the photos description on a lightbox display when initiated from a "
8356
  "slide."
8357
  msgstr ""
8358
 
8359
+ #: wppa-settings-autosave.php:2278
8360
  msgid "Overlay thumb name"
8361
  msgstr ""
8362
 
8363
+ #: wppa-settings-autosave.php:2279
8364
  msgid "Show the photos name if from thumb."
8365
  msgstr ""
8366
 
8367
+ #: wppa-settings-autosave.php:2280
8368
  msgid ""
8369
  "Shows the name on a lightbox display when initiated from a standard "
8370
  "thumbnail or a widget thumbnail."
8371
  msgstr ""
8372
 
8373
+ #: wppa-settings-autosave.php:2281 wppa-settings-autosave.php:2291
8374
  msgid ""
8375
  "This setting applies to standard thumbnails, thumbnail-, comment-, topten- "
8376
  "and lasten-widget."
8377
  msgstr ""
8378
 
8379
+ #: wppa-settings-autosave.php:2288
8380
  msgid "Overlay thumb desc"
8381
  msgstr ""
8382
 
8383
+ #: wppa-settings-autosave.php:2289
8384
  msgid "Show description if from thumb."
8385
  msgstr ""
8386
 
8387
+ #: wppa-settings-autosave.php:2290
8388
  msgid ""
8389
  "Shows the photos description on a lightbox display when initiated from a "
8390
  "standard thumbnail or a widget thumbnail."
8391
  msgstr ""
8392
 
8393
+ #: wppa-settings-autosave.php:2298
8394
  #, fuzzy
8395
  msgid "Overlay potd name"
8396
  msgstr "Indtast foto navn"
8397
 
8398
+ #: wppa-settings-autosave.php:2299
8399
  msgid "Show the photos name if from photo of the day."
8400
  msgstr ""
8401
 
8402
+ #: wppa-settings-autosave.php:2300
8403
  msgid ""
8404
  "Shows the name on a lightbox display when initiated from the photo of the "
8405
  "day."
8406
  msgstr ""
8407
 
8408
+ #: wppa-settings-autosave.php:2307
8409
  msgid "Overlay potd desc"
8410
  msgstr ""
8411
 
8412
+ #: wppa-settings-autosave.php:2308
8413
  msgid "Show description if from from photo of the day."
8414
  msgstr ""
8415
 
8416
+ #: wppa-settings-autosave.php:2309
8417
  msgid ""
8418
  "Shows the photos description on a lightbox display when initiated from the "
8419
  "photo of the day."
8420
  msgstr ""
8421
 
8422
+ #: wppa-settings-autosave.php:2316
8423
  #, fuzzy
8424
  msgid "Overlay sphoto name"
8425
  msgstr "Indtast foto navn"
8426
 
8427
+ #: wppa-settings-autosave.php:2317
8428
  msgid "Show the photos name if from a single photo."
8429
  msgstr ""
8430
 
8431
+ #: wppa-settings-autosave.php:2318
8432
  msgid ""
8433
  "Shows the name on a lightbox display when initiated from a single photo."
8434
  msgstr ""
8435
 
8436
+ #: wppa-settings-autosave.php:2325
8437
  #, fuzzy
8438
  msgid "Overlay sphoto desc"
8439
  msgstr "fotos"
8440
 
8441
+ #: wppa-settings-autosave.php:2326
8442
  msgid "Show description if from from a single photo."
8443
  msgstr ""
8444
 
8445
+ #: wppa-settings-autosave.php:2327
8446
  msgid ""
8447
  "Shows the photos description on a lightbox display when initiated from a "
8448
  "single photo."
8449
  msgstr ""
8450
 
8451
+ #: wppa-settings-autosave.php:2334
8452
  #, fuzzy
8453
  msgid "Overlay mphoto name"
8454
  msgstr "Indtast foto navn"
8455
 
8456
+ #: wppa-settings-autosave.php:2335
8457
  msgid "Show the photos name if from a single media style photo."
8458
  msgstr ""
8459
 
8460
+ #: wppa-settings-autosave.php:2336
8461
  msgid ""
8462
  "Shows the name on a lightbox display when initiated from a single media "
8463
  "style photo."
8464
  msgstr ""
8465
 
8466
+ #: wppa-settings-autosave.php:2343
8467
  #, fuzzy
8468
  msgid "Overlay mphoto desc"
8469
  msgstr "fotos"
8470
 
8471
+ #: wppa-settings-autosave.php:2344
8472
  msgid "Show description if from from a media style photo."
8473
  msgstr ""
8474
 
8475
+ #: wppa-settings-autosave.php:2345
8476
  msgid ""
8477
  "Shows the photos description on a lightbox display when initiated from a "
8478
  "single media style photo."
8479
  msgstr ""
8480
 
8481
+ #: wppa-settings-autosave.php:2352
8482
  #, fuzzy
8483
  msgid "Overlay albumwidget name"
8484
  msgstr ""
8485
  "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
8486
  "per i titoli delle copertine degli album."
8487
 
8488
+ #: wppa-settings-autosave.php:2353
8489
  msgid "Show the photos name if from the album widget."
8490
  msgstr ""
8491
 
8492
+ #: wppa-settings-autosave.php:2354
8493
  msgid ""
8494
  "Shows the name on a lightbox display when initiated from the album widget."
8495
  msgstr ""
8496
 
8497
+ #: wppa-settings-autosave.php:2361
8498
  msgid "Overlay albumwidget desc"
8499
  msgstr ""
8500
 
8501
+ #: wppa-settings-autosave.php:2362
8502
  msgid "Show description if from from the album widget."
8503
  msgstr ""
8504
 
8505
+ #: wppa-settings-autosave.php:2363
8506
  msgid ""
8507
  "Shows the photos description on a lightbox display when initiated from the "
8508
  "album widget."
8509
  msgstr ""
8510
 
8511
+ #: wppa-settings-autosave.php:2370
8512
  #, fuzzy
8513
  msgid "Overlay coverphoto name"
8514
  msgstr "Indtast foto navn"
8515
 
8516
+ #: wppa-settings-autosave.php:2371
8517
  msgid "Show the photos name if from the album cover."
8518
  msgstr ""
8519
 
8520
+ #: wppa-settings-autosave.php:2372
8521
  msgid ""
8522
  "Shows the name on a lightbox display when initiated from the album "
8523
  "coverphoto."
8524
  msgstr ""
8525
 
8526
+ #: wppa-settings-autosave.php:2379
8527
  msgid "Overlay coverphoto desc"
8528
  msgstr ""
8529
 
8530
+ #: wppa-settings-autosave.php:2380
8531
  msgid "Show description if from from the album cover."
8532
  msgstr ""
8533
 
8534
+ #: wppa-settings-autosave.php:2381
8535
  msgid ""
8536
  "Shows the photos description on a lightbox display when initiated from the "
8537
  "album coverphoto."
8538
  msgstr ""
8539
 
8540
+ #: wppa-settings-autosave.php:2388
8541
  msgid "Overlay add owner"
8542
  msgstr ""
8543
 
8544
+ #: wppa-settings-autosave.php:2389
8545
  msgid "Add the owner to the photo name on lightbox displays."
8546
  msgstr ""
8547
 
8548
+ #: wppa-settings-autosave.php:2390
8549
  msgid ""
8550
  "This setting is independant of the show name switches and is a global "
8551
  "setting."
8552
  msgstr ""
8553
 
8554
+ #: wppa-settings-autosave.php:2397
8555
  #, fuzzy
8556
  msgid "Overlay show start/stop"
8557
  msgstr "Klik for start/stop"
8558
 
8559
+ #: wppa-settings-autosave.php:2398
8560
  msgid "Show Start and Stop for running slideshow on lightbox."
8561
  msgstr ""
8562
 
8563
+ #: wppa-settings-autosave.php:2406
8564
  msgid "Overlay show legenda"
8565
  msgstr ""
8566
 
8567
+ #: wppa-settings-autosave.php:2407
8568
  msgid "Show \"Press f for fullsize\" etc. on lightbox."
8569
  msgstr ""
8570
 
8571
+ #: wppa-settings-autosave.php:2408
8572
  msgid "Independant of this setting, it will not show up on mobile devices."
8573
  msgstr ""
8574
 
8575
+ #: wppa-settings-autosave.php:2415
8576
  msgid "Show fullscreen icons"
8577
  msgstr ""
8578
 
8579
+ #: wppa-settings-autosave.php:2416
8580
  msgid "Shows fullscreen and back to normal icon buttons on upper right corner"
8581
  msgstr ""
8582
 
8583
+ #: wppa-settings-autosave.php:2424
8584
  msgid "Overlay show counter"
8585
  msgstr ""
8586
 
8587
+ #: wppa-settings-autosave.php:2425
8588
  msgid "Show the x/y counter below the image."
8589
  msgstr ""
8590
 
8591
+ #: wppa-settings-autosave.php:2433
8592
  #, fuzzy
8593
  msgid "Show Zoom in"
8594
  msgstr "Zoom ind"
8595
 
8596
+ #: wppa-settings-autosave.php:2434
8597
  msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
8598
  msgstr ""
8599
 
8600
+ #: wppa-settings-autosave.php:2435
8601
  msgid ""
8602
  "If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
8603
  "contains the photo name."
8604
  msgstr ""
8605
 
8606
+ #: wppa-settings-autosave.php:2443
8607
  msgid "Frontend upload configuration settings"
8608
  msgstr ""
8609
 
8610
+ #: wppa-settings-autosave.php:2445
8611
  #, fuzzy
8612
  msgid "User upload Photos"
8613
  msgstr "Bruger %s indsendte foto %s ind i album %s"
8614
 
8615
+ #: wppa-settings-autosave.php:2446
8616
  #, fuzzy
8617
  msgid "Enable frontend upload."
8618
  msgstr "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at uploade en fil.</b>"
8619
 
8620
+ #: wppa-settings-autosave.php:2447
8621
  msgid ""
8622
  "If you check this item, frontend upload will be enabled according to the "
8623
  "rules set in the following items of this table."
8624
  msgstr ""
8625
 
8626
+ #: wppa-settings-autosave.php:2455
8627
  #, fuzzy
8628
  msgid "User upload Photos login"
8629
  msgstr "Bruger %s indsendte foto %s ind i album %s"
8630
 
8631
+ #: wppa-settings-autosave.php:2456
8632
  msgid "Frontend upload requires the user is logged in."
8633
  msgstr ""
8634
 
8635
+ #: wppa-settings-autosave.php:2457
8636
  msgid ""
8637
  "If you uncheck this box, make sure you check the item Owners only in Table "
8638
  "VII-D1."
8639
  msgstr ""
8640
 
8641
+ #: wppa-settings-autosave.php:2458
8642
  msgid ""
8643
  "Also: set the owner to ---public--- of the albums that are allowed to be "
8644
  "uploaded to."
8645
  msgstr ""
8646
 
8647
+ #: wppa-settings-autosave.php:2465
8648
  #, fuzzy
8649
  msgid "User upload Ajax"
8650
  msgstr "Bruger %s indsendte foto %s ind i album %s"
8651
 
8652
+ #: wppa-settings-autosave.php:2466
8653
  msgid "Shows the upload progression bar."
8654
  msgstr ""
8655
 
8656
+ #: wppa-settings-autosave.php:2474
8657
  msgid "Show Copyright"
8658
  msgstr ""
8659
 
8660
+ #: wppa-settings-autosave.php:2475
8661
  msgid "Show a copyright warning on frontend upload locations."
8662
  msgstr ""
8663
 
8664
+ #: wppa-settings-autosave.php:2484
8665
  msgid "Copyright notice"
8666
  msgstr ""
8667
 
8668
+ #: wppa-settings-autosave.php:2485
8669
  msgid "The message to be displayed."
8670
  msgstr ""
8671
 
8672
+ #: wppa-settings-autosave.php:2493
8673
  msgid "User Watermark"
8674
  msgstr ""
8675
 
8676
+ #: wppa-settings-autosave.php:2494
8677
  msgid "Uploading users may select watermark settings"
8678
  msgstr ""
8679
 
8680
+ #: wppa-settings-autosave.php:2495
8681
  msgid ""
8682
  "If checked, anyone who can upload and/or import photos can overrule the "
8683
  "default watermark settings."
8684
  msgstr ""
8685
 
8686
+ #: wppa-settings-autosave.php:2502
8687
  #, fuzzy
8688
  msgid "User name"
8689
  msgstr "Dit navn"
8690
 
8691
+ #: wppa-settings-autosave.php:2503
8692
  msgid "Uploading users may overrule the default name."
8693
  msgstr ""
8694
 
8695
+ #: wppa-settings-autosave.php:2504
8696
  msgid ""
8697
  "If checked, the default photo name as defined in Table IX-D13 may be "
8698
  "overruled by the user."
8699
  msgstr ""
8700
 
8701
+ #: wppa-settings-autosave.php:2511
8702
  msgid "Apply Newphoto desc user"
8703
  msgstr ""
8704
 
8705
+ #: wppa-settings-autosave.php:2512
8706
  msgid "Give each new frontend uploaded photo a standard description."
8707
  msgstr ""
8708
 
8709
+ #: wppa-settings-autosave.php:2513
8710
  msgid ""
8711
  "If checked, each new photo will get the description (template) as specified "
8712
  "in Table IX-D5."
8713
  msgstr ""
8714
 
8715
+ #: wppa-settings-autosave.php:2520
8716
  msgid "User desc"
8717
  msgstr ""
8718
 
8719
+ #: wppa-settings-autosave.php:2521
8720
  msgid "Uploading users may overrule the default description."
8721
  msgstr ""
8722
 
8723
+ #: wppa-settings-autosave.php:2529
8724
  #, fuzzy
8725
  msgid "User upload custom"
8726
  msgstr "Bruger %s indsendte foto %s ind i album %s"
8727
 
8728
+ #: wppa-settings-autosave.php:2530
8729
  msgid "Frontend upload can fill in custom data fields."
8730
  msgstr ""
8731
 
8732
+ #: wppa-settings-autosave.php:2538
8733
  #, fuzzy
8734
  msgid "User upload tags"
8735
  msgstr "Bruger %s indsendte foto %s ind i album %s"
8736
 
8737
+ #: wppa-settings-autosave.php:2539
8738
  msgid "Frontend upload can add tags."
8739
  msgstr ""
8740
 
8741
+ #: wppa-settings-autosave.php:2540
8742
  msgid "You can configure the details of tag addition in Table IX-D18.x"
8743
  msgstr ""
8744
 
8745
+ #: wppa-settings-autosave.php:2548 wppa-settings-autosave.php:2576
8746
+ #: wppa-settings-autosave.php:2604
8747
  #, fuzzy
8748
  msgid "Tag selection box"
8749
  msgstr "--- vises ikke ---"
8750
 
8751
+ #: wppa-settings-autosave.php:2549 wppa-settings-autosave.php:2577
8752
+ #: wppa-settings-autosave.php:2605
8753
  msgid "Front-end upload tags selecion box."
8754
  msgstr ""
8755
 
8756
+ #: wppa-settings-autosave.php:2553 wppa-settings-autosave.php:2581
8757
+ #: wppa-settings-autosave.php:2609
8758
  msgid "On:"
8759
  msgstr ""
8760
 
8761
+ #: wppa-settings-autosave.php:2553 wppa-settings-autosave.php:2581
8762
+ #: wppa-settings-autosave.php:2609
8763
  #, fuzzy
8764
  msgid "Multi:"
8765
  msgstr "Multi-spot"
8766
 
8767
+ #: wppa-settings-autosave.php:2558 wppa-settings-autosave.php:2586
8768
+ #: wppa-settings-autosave.php:2614
8769
  msgid "Caption box"
8770
  msgstr ""
8771
 
8772
+ #: wppa-settings-autosave.php:2559 wppa-settings-autosave.php:2587
8773
+ #: wppa-settings-autosave.php:2615
8774
  msgid "The title of the tag selection box."
8775
  msgstr ""
8776
 
8777
+ #: wppa-settings-autosave.php:2567 wppa-settings-autosave.php:2595
8778
+ #: wppa-settings-autosave.php:2623
8779
  msgid "Tags box"
8780
  msgstr ""
8781
 
8782
+ #: wppa-settings-autosave.php:2568 wppa-settings-autosave.php:2596
8783
+ #: wppa-settings-autosave.php:2624
8784
  #, fuzzy
8785
  msgid "The tags in the selection box."
8786
  msgstr "--- vises ikke ---"
8787
 
8788
+ #: wppa-settings-autosave.php:2569 wppa-settings-autosave.php:2597
8789
+ #: wppa-settings-autosave.php:2625
8790
  msgid ""
8791
  "Enter the tags you want to appear in the selection box. Empty means: all "
8792
  "existing tags"
8793
  msgstr ""
8794
 
8795
+ #: wppa-settings-autosave.php:2632
8796
  msgid "New tags"
8797
  msgstr ""
8798
 
8799
+ #: wppa-settings-autosave.php:2633
8800
  msgid "Input field for any user defined tags."
8801
  msgstr ""
8802
 
8803
+ #: wppa-settings-autosave.php:2641
8804
  #, fuzzy
8805
  msgid "New tags caption"
8806
  msgstr "Ingen blitz funktion"
8807
 
8808
+ #: wppa-settings-autosave.php:2642
8809
  msgid "The caption above the tags input field."
8810
  msgstr ""
8811
 
8812
+ #: wppa-settings-autosave.php:2650
8813
  #, fuzzy
8814
  msgid "Preview tags"
8815
  msgstr "Forrige billede"
8816
 
8817
+ #: wppa-settings-autosave.php:2651
8818
  msgid "Show a preview of all tags that will be added to the photo info."
8819
  msgstr ""
8820
 
8821
+ #: wppa-settings-autosave.php:2660
8822
  msgid "Miscellaneous visibility settings"
8823
  msgstr ""
8824
 
8825
+ #: wppa-settings-autosave.php:2662
8826
  msgid "Frontend ending label"
8827
  msgstr ""
8828
 
8829
+ #: wppa-settings-autosave.php:2663
8830
  msgid "Frontend upload / create / edit dialog closing label text."
8831
  msgstr ""
8832
 
8833
+ #: wppa-settings-autosave.php:2666
8834
  msgid "Abort"
8835
  msgstr "Aborto"
8836
 
8837
+ #: wppa-settings-autosave.php:2666
8838
  msgid "Close"
8839
  msgstr "Chiudi"
8840
 
8841
+ #: wppa-settings-autosave.php:2666
8842
  msgid "Exit"
8843
  msgstr "Uscita"
8844
 
8845
+ #: wppa-settings-autosave.php:2666
8846
  msgid "Quit"
8847
  msgstr "Esci"
8848
 
8849
+ #: wppa-settings-autosave.php:2674
8850
  msgid "Widget thumbs fontsize"
8851
  msgstr ""
8852
 
8853
+ #: wppa-settings-autosave.php:2675
8854
  msgid "Font size for thumbnail subtext in widgets."
8855
  msgstr ""
8856
 
8857
+ #: wppa-settings-autosave.php:2683
8858
  msgid "Arrow color"
8859
  msgstr ""
8860
 
8861
+ #: wppa-settings-autosave.php:2684
8862
  msgid "Left/right browsing arrow color."
8863
  msgstr ""
8864
 
8865
+ #: wppa-settings-autosave.php:2685
8866
  msgid "Enter the color of the filmstrip navigation arrows."
8867
  msgstr ""
8868
 
8869
+ #: wppa-settings-autosave.php:2692
8870
  msgid "Owner on new line"
8871
  msgstr ""
8872
 
8873
+ #: wppa-settings-autosave.php:2693
8874
  msgid "Place the (owner) text on a new line."
8875
  msgstr ""
8876
 
8877
+ #: wppa-settings-autosave.php:2701
8878
  msgid "Custom datafields"
8879
  msgstr ""
8880
 
8881
+ #: wppa-settings-autosave.php:2702
8882
  msgid "Define up to 10 custom data fields for photos."
8883
  msgstr ""
8884
 
8885
+ #: wppa-settings-autosave.php:2712
8886
  #, php-format
8887
  msgid "Name and visibility %s"
8888
  msgstr ""
8889
 
8890
+ #: wppa-settings-autosave.php:2713
8891
  #, php-format
8892
  msgid "The caption for field %s and visibility at frontend."
8893
  msgstr ""
8894
 
8895
+ #: wppa-settings-autosave.php:2714
8896
  #, php-format
8897
  msgid ""
8898
  "If you check the box, the value of this field is displayable in photo "
8899
  "descriptions at the frontend with keyword w#c%s"
8900
  msgstr ""
8901
 
8902
+ #: wppa-settings-autosave.php:2744
8903
  msgid "Table III:"
8904
  msgstr ""
8905
 
8906
+ #: wppa-settings-autosave.php:2744
8907
  msgid "Backgrounds:"
8908
  msgstr ""
8909
 
8910
+ #: wppa-settings-autosave.php:2745
8911
  msgid "This table describes the backgrounds of wppa+ elements."
8912
  msgstr ""
8913
 
8914
+ #: wppa-settings-autosave.php:2755 wppa-settings-autosave.php:3066
8915
  msgid "Background color"
8916
  msgstr ""
8917
 
8918
+ #: wppa-settings-autosave.php:2756 wppa-settings-autosave.php:2758
8919
+ #: wppa-settings-autosave.php:3067 wppa-settings-autosave.php:3069
8920
  msgid "Sample"
8921
  msgstr ""
8922
 
8923
+ #: wppa-settings-autosave.php:2757 wppa-settings-autosave.php:3068
8924
  msgid "Border color"
8925
  msgstr ""
8926
 
8927
+ #: wppa-settings-autosave.php:2766
8928
  msgid "Slideshow elements backgrounds"
8929
  msgstr ""
8930
 
8931
+ #: wppa-settings-autosave.php:2768
8932
  msgid "Nav"
8933
  msgstr ""
8934
 
8935
+ #: wppa-settings-autosave.php:2769
8936
  msgid "Navigation bars."
8937
  msgstr ""
8938
 
8939
+ #: wppa-settings-autosave.php:2770
8940
  msgid "Enter valid CSS colors for navigation backgrounds and borders."
8941
  msgstr ""
8942
 
8943
+ #: wppa-settings-autosave.php:2781
8944
  msgid "SlideImg"
8945
  msgstr ""
8946
 
8947
+ #: wppa-settings-autosave.php:2782
8948
  #, fuzzy
8949
  msgid "Fullsize Slideshow Photos."
8950
  msgstr "Se forside fotos"
8951
 
8952
+ #: wppa-settings-autosave.php:2783
8953
  msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
8954
  msgstr ""
8955
 
8956
+ #: wppa-settings-autosave.php:2784
8957
  msgid "The colors may be equal or \"transparent\""
8958
  msgstr ""
8959
 
8960
+ #: wppa-settings-autosave.php:2785
8961
  msgid ""
8962
  "For more information about slideshow image borders see the help on Table I-B4"
8963
  msgstr ""
8964
 
8965
+ #: wppa-settings-autosave.php:2796 wppa-settings-autosave.php:4380
8966
  msgid "Numbar"
8967
  msgstr ""
8968
 
8969
+ #: wppa-settings-autosave.php:2797
8970
  msgid "Number bar box background."
8971
  msgstr ""
8972
 
8973
+ #: wppa-settings-autosave.php:2798
8974
  msgid "Enter valid CSS colors for numbar box backgrounds and borders."
8975
  msgstr ""
8976
 
8977
+ #: wppa-settings-autosave.php:2809
8978
  msgid "Numbar active"
8979
  msgstr ""
8980
 
8981
+ #: wppa-settings-autosave.php:2810
8982
  msgid "Number bar active box background."
8983
  msgstr ""
8984
 
8985
+ #: wppa-settings-autosave.php:2811
8986
  msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
8987
  msgstr ""
8988
 
8989
+ #: wppa-settings-autosave.php:2822
8990
  msgid "Name/desc"
8991
  msgstr ""
8992
 
8993
+ #: wppa-settings-autosave.php:2823
8994
  msgid "Name and Description bars."
8995
  msgstr ""
8996
 
8997
+ #: wppa-settings-autosave.php:2824
8998
  msgid ""
8999
  "Enter valid CSS colors for name and description box backgrounds and borders."
9000
  msgstr ""
9001
 
9002
+ #: wppa-settings-autosave.php:2836
9003
  msgid "Comment input and display areas."
9004
  msgstr ""
9005
 
9006
+ #: wppa-settings-autosave.php:2837
9007
  msgid "Enter valid CSS colors for comment box backgrounds and borders."
9008
  msgstr ""
9009
 
9010
+ #: wppa-settings-autosave.php:2848 wppa-settings-autosave.php:7560
9011
+ #: wppa-settings-autosave.php:7605
9012
  msgid "Custom"
9013
  msgstr ""
9014
 
9015
+ #: wppa-settings-autosave.php:2849
9016
  msgid "Custom box background."
9017
  msgstr ""
9018
 
9019
+ #: wppa-settings-autosave.php:2850
9020
  msgid "Enter valid CSS colors for custom box backgrounds and borders."
9021
  msgstr ""
9022
 
9023
+ #: wppa-settings-autosave.php:2861
9024
  msgid "IPTC"
9025
  msgstr ""
9026
 
9027
+ #: wppa-settings-autosave.php:2862
9028
  msgid "IPTC display box background."
9029
  msgstr ""
9030
 
9031
+ #: wppa-settings-autosave.php:2863
9032
  msgid "Enter valid CSS colors for iptc box backgrounds and borders."
9033
  msgstr ""
9034
 
9035
+ #: wppa-settings-autosave.php:2874
9036
  msgid "EXIF"
9037
  msgstr ""
9038
 
9039
+ #: wppa-settings-autosave.php:2875
9040
  msgid "EXIF display box background."
9041
  msgstr ""
9042
 
9043
+ #: wppa-settings-autosave.php:2876
9044
  msgid "Enter valid CSS colors for exif box backgrounds and borders."
9045
  msgstr ""
9046
 
9047
+ #: wppa-settings-autosave.php:2887
9048
  msgid "Share"
9049
  msgstr ""
9050
 
9051
+ #: wppa-settings-autosave.php:2888
9052
  msgid "Share box display background."
9053
  msgstr ""
9054
 
9055
+ #: wppa-settings-autosave.php:2889
9056
  msgid "Enter valid CSS colors for share box backgrounds and borders."
9057
  msgstr ""
9058
 
9059
+ #: wppa-settings-autosave.php:2900
9060
  msgid "Other backgrounds"
9061
  msgstr ""
9062
 
9063
+ #: wppa-settings-autosave.php:2902
9064
  msgid "Even"
9065
  msgstr ""
9066
 
9067
+ #: wppa-settings-autosave.php:2903
9068
  msgid "Even background."
9069
  msgstr ""
9070
 
9071
+ #: wppa-settings-autosave.php:2904
9072
  msgid ""
9073
  "Enter valid CSS colors for even numbered backgrounds and borders of album "
9074
  "covers and thumbnail displays 'As covers'."
9075
  msgstr ""
9076
 
9077
+ #: wppa-settings-autosave.php:2915
9078
  msgid "Odd"
9079
  msgstr ""
9080
 
9081
+ #: wppa-settings-autosave.php:2916
9082
  msgid "Odd background."
9083
  msgstr ""
9084
 
9085
+ #: wppa-settings-autosave.php:2917
9086
  msgid ""
9087
  "Enter valid CSS colors for odd numbered backgrounds and borders of album "
9088
  "covers and thumbnail displays 'As covers'."
9089
  msgstr ""
9090
 
9091
+ #: wppa-settings-autosave.php:2928
9092
  #, fuzzy
9093
  msgid "Thumbnail padding"
9094
  msgstr "Foto Top Ti"
9095
 
9096
+ #: wppa-settings-autosave.php:2929
9097
  msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
9098
  msgstr ""
9099
 
9100
+ #: wppa-settings-autosave.php:2930
9101
  msgid ""
9102
  "Enter valid CSS color hexadecimal like #000000 for black or #ffffff for "
9103
  "white for the padded thumbnails."
9104
  msgstr ""
9105
 
9106
+ #: wppa-settings-autosave.php:2941
9107
  #, fuzzy
9108
  msgid "Img"
9109
  msgstr "Billede"
9110
 
9111
+ #: wppa-settings-autosave.php:2942
9112
  msgid "Cover Photos and popups."
9113
  msgstr ""
9114
 
9115
+ #: wppa-settings-autosave.php:2943
9116
  msgid ""
9117
  "Enter valid CSS colors for Cover photo and popup backgrounds and borders."
9118
  msgstr ""
9119
 
9120
+ #: wppa-settings-autosave.php:2955
9121
  msgid "Upload box background."
9122
  msgstr ""
9123
 
9124
+ #: wppa-settings-autosave.php:2956
9125
  msgid "Enter valid CSS colors for upload box backgrounds and borders."
9126
  msgstr ""
9127
 
9128
+ #: wppa-settings-autosave.php:2967
9129
  #, fuzzy
9130
  msgid "Multitag"
9131
  msgstr "Multi-spot"
9132
 
9133
+ #: wppa-settings-autosave.php:2968
9134
  msgid "Multitag box background."
9135
  msgstr ""
9136
 
9137
+ #: wppa-settings-autosave.php:2969
9138
  msgid "Enter valid CSS colors for multitag box backgrounds and borders."
9139
  msgstr ""
9140
 
9141
+ #: wppa-settings-autosave.php:2980
9142
  msgid "Tagcloud"
9143
  msgstr ""
9144
 
9145
+ #: wppa-settings-autosave.php:2981
9146
  msgid "Tagcloud box background."
9147
  msgstr ""
9148
 
9149
+ #: wppa-settings-autosave.php:2982
9150
  msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
9151
  msgstr ""
9152
 
9153
+ #: wppa-settings-autosave.php:2993
9154
  #, fuzzy
9155
  msgid "Superview"
9156
  msgstr "Se forside fotos"
9157
 
9158
+ #: wppa-settings-autosave.php:2994
9159
  msgid "Superview box background."
9160
  msgstr ""
9161
 
9162
+ #: wppa-settings-autosave.php:2995
9163
  msgid "Enter valid CSS colors for superview box backgrounds and borders."
9164
  msgstr ""
9165
 
9166
+ #: wppa-settings-autosave.php:3007
9167
  msgid "Search box background."
9168
  msgstr ""
9169
 
9170
+ #: wppa-settings-autosave.php:3008
9171
  msgid "Enter valid CSS colors for search box backgrounds and borders."
9172
  msgstr ""
9173
 
9174
+ #: wppa-settings-autosave.php:3019
9175
  #, fuzzy
9176
  msgid "BestOf"
9177
  msgstr "fotos"
9178
 
9179
+ #: wppa-settings-autosave.php:3020
9180
  msgid "BestOf box background."
9181
  msgstr ""
9182
 
9183
+ #: wppa-settings-autosave.php:3021
9184
  msgid "Enter valid CSS colors for bestof box backgrounds and borders."
9185
  msgstr ""
9186
 
9187
+ #: wppa-settings-autosave.php:3032
9188
  msgid "Calendar"
9189
  msgstr ""
9190
 
9191
+ #: wppa-settings-autosave.php:3033
9192
  msgid "Calendar box background."
9193
  msgstr ""
9194
 
9195
+ #: wppa-settings-autosave.php:3034
9196
  msgid "Enter valid CSS colors for calendar box backgrounds and borders."
9197
  msgstr ""
9198
 
9199
+ #: wppa-settings-autosave.php:3045
9200
+ msgid "Stereo"
9201
+ msgstr ""
9202
+
9203
+ #: wppa-settings-autosave.php:3046
9204
+ msgid "Stereo mode selection box background."
9205
+ msgstr ""
9206
+
9207
+ #: wppa-settings-autosave.php:3047
9208
+ msgid ""
9209
+ "Enter valid CSS colors for stereo mode selection box backgrounds and borders."
9210
+ msgstr ""
9211
+
9212
+ #: wppa-settings-autosave.php:3079
9213
  msgid "Table IV:"
9214
  msgstr ""
9215
 
9216
+ #: wppa-settings-autosave.php:3079
9217
  msgid "Behaviour:"
9218
  msgstr ""
9219
 
9220
+ #: wppa-settings-autosave.php:3080
9221
  msgid "This table describes the dynamic behaviour of certain wppa+ elements."
9222
  msgstr ""
9223
 
9224
+ #: wppa-settings-autosave.php:3098
9225
  msgid "System related settings"
9226
  msgstr ""
9227
 
9228
+ #: wppa-settings-autosave.php:3100
9229
  msgid "Use Ajax"
9230
  msgstr ""
9231
 
9232
+ #: wppa-settings-autosave.php:3101
9233
  msgid "Use Ajax as much as is possible and implemented."
9234
  msgstr ""
9235
 
9236
+ #: wppa-settings-autosave.php:3102
9237
  msgid ""
9238
  "If this box is ticked, page content updates from within wppa+ displays will "
9239
  "be Ajax based as much as possible."
9240
  msgstr ""
9241
 
9242
+ #: wppa-settings-autosave.php:3110
9243
  msgid "Ajax NON Admin"
9244
  msgstr ""
9245
 
9246
+ #: wppa-settings-autosave.php:3111
9247
  msgid "Frontend ajax use no admin files."
9248
  msgstr ""
9249
 
9250
+ #: wppa-settings-autosave.php:3112
9251
  msgid "If you want to password protect wp-admin, check this box."
9252
  msgstr ""
9253
 
9254
+ #: wppa-settings-autosave.php:3113
9255
  msgid ""
9256
  "In rare cases changing page content does not work when this box is checked. "
9257
  "Verify the functionality!"
9258
  msgstr ""
9259
 
9260
+ #: wppa-settings-autosave.php:3120
9261
  #, fuzzy
9262
  msgid "Photo names in urls"
9263
  msgstr "Risultati della ricerca per: %s"
9264
 
9265
+ #: wppa-settings-autosave.php:3121
9266
  msgid "Display photo names in urls."
9267
  msgstr ""
9268
 
9269
+ #: wppa-settings-autosave.php:3122
9270
  msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
9271
  msgstr ""
9272
 
9273
+ #: wppa-settings-autosave.php:3123
9274
  msgid ""
9275
  "It is your responsability to avoid duplicate names of photos in the same "
9276
  "album."
9277
  msgstr ""
9278
 
9279
+ #: wppa-settings-autosave.php:3130
9280
  #, fuzzy
9281
  msgid "Album names in urls"
9282
  msgstr "Album administration"
9283
 
9284
+ #: wppa-settings-autosave.php:3131
9285
  msgid "Display album names in urls."
9286
  msgstr ""
9287
 
9288
+ #: wppa-settings-autosave.php:3132
9289
  msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
9290
  msgstr ""
9291
 
9292
+ #: wppa-settings-autosave.php:3133
9293
  msgid ""
9294
  "It is your responsability to avoid duplicate names of albums in the system."
9295
  msgstr ""
9296
 
9297
+ #: wppa-settings-autosave.php:3140
9298
  msgid "Use short query args"
9299
  msgstr ""
9300
 
9301
+ #: wppa-settings-autosave.php:3141
9302
  msgid "Use &album=... &photo=..."
9303
  msgstr ""
9304
 
9305
+ #: wppa-settings-autosave.php:3142
9306
  msgid ""
9307
  "Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
9308
  "album=... &wppa-photo=..."
9309
  msgstr ""
9310
 
9311
+ #: wppa-settings-autosave.php:3143
9312
  msgid ""
9313
  "Use this setting only when there are no conflicts with other plugins that "
9314
  "may interprete arguments like &album= etc."
9315
  msgstr ""
9316
 
9317
+ #: wppa-settings-autosave.php:3150
9318
  msgid "Enable pretty links"
9319
  msgstr ""
9320
 
9321
+ #: wppa-settings-autosave.php:3151
9322
  msgid "Enable the generation and understanding of pretty links."
9323
  msgstr ""
9324
 
9325
+ #: wppa-settings-autosave.php:3152
9326
  msgid ""
9327
  "If checked, links to social media and the qr code will have \"/token1/token2/"
9328
  "\" etc in stead of \"&arg1=..&arg2=..\" etc."
9329
  msgstr ""
9330
 
9331
+ #: wppa-settings-autosave.php:3153
9332
  msgid ""
9333
  "These types of links will be interpreted and cause a redirection on entering."
9334
  msgstr ""
9335
 
9336
+ #: wppa-settings-autosave.php:3154
9337
  msgid ""
9338
  "It is recommended to check this box. It shortens links dramatically and "
9339
  "simplifies qr codes."
9340
  msgstr ""
9341
 
9342
+ #: wppa-settings-autosave.php:3155
9343
  msgid ""
9344
  "However, you may encounter conflicts with themes and/or other plugins, so "
9345
  "test it troughly!"
9346
  msgstr ""
9347
 
9348
+ #: wppa-settings-autosave.php:3156
9349
  msgid ""
9350
  "Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
9351
  msgstr ""
9352
 
9353
+ #: wppa-settings-autosave.php:3163
9354
  #, fuzzy
9355
  msgid "Update addressline"
9356
  msgstr ""
9357
  "Non hai i permessi per potere aggiornare le informazioni di questo album"
9358
 
9359
+ #: wppa-settings-autosave.php:3164
9360
  msgid "Update the addressline after an ajax action or next slide."
9361
  msgstr ""
9362
 
9363
+ #: wppa-settings-autosave.php:3165
9364
  msgid ""
9365
  "If checked, refreshing the page will show the current content and the "
9366
  "browsers back and forth arrows will browse the history on the page."
9367
  msgstr ""
9368
 
9369
+ #: wppa-settings-autosave.php:3166
9370
  msgid ""
9371
  "If unchecked, refreshing the page will re-display the content of the "
9372
  "original page."
9373
  msgstr ""
9374
 
9375
+ #: wppa-settings-autosave.php:3167
9376
  msgid ""
9377
  "This will only work on browsers that support history.pushState() and "
9378
  "therefor NOT in IE"
9379
  msgstr ""
9380
 
9381
+ #: wppa-settings-autosave.php:3168
9382
  msgid "Switching this off will affect the browsers behaviour."
9383
  msgstr ""
9384
 
9385
+ #: wppa-settings-autosave.php:3175
9386
  msgid "Render shortcode always"
9387
  msgstr ""
9388
 
9389
+ #: wppa-settings-autosave.php:3176
9390
  msgid "This will skip the check on proper initialisation."
9391
  msgstr ""
9392
 
9393
+ #: wppa-settings-autosave.php:3177
9394
  msgid ""
9395
  "This setting is required for certain themes like Gantry to prevent the "
9396
  "display of wppa placeholders like [WPPA+ Photo display]."
9397
  msgstr ""
9398
 
9399
+ #: wppa-settings-autosave.php:3178
9400
  #, php-format
9401
  msgid ""
9402
  "If this check is needed, you can use shortcodes like [wppa ...] only, not "
9403
  "scripts like %%wppa%%."
9404
  msgstr ""
9405
 
9406
+ #: wppa-settings-autosave.php:3185
9407
  msgid "Track viewcounts"
9408
  msgstr ""
9409
 
9410
+ #: wppa-settings-autosave.php:3186
9411
  msgid "Register number of views of albums and photos."
9412
  msgstr ""
9413
 
9414
+ #: wppa-settings-autosave.php:3194
9415
  #, fuzzy
9416
  msgid "Auto page"
9417
  msgstr "Automatisk, afskudt"
9418
 
9419
+ #: wppa-settings-autosave.php:3195
9420
  msgid "Create a wp page for every fullsize image."
9421
  msgstr ""
9422
 
9423
+ #: wppa-settings-autosave.php:3199
9424
  msgid "Please reload this page after changing!"
9425
  msgstr ""
9426
 
9427
+ #: wppa-settings-autosave.php:3205
9428
  msgid "Auto page display"
9429
  msgstr ""
9430
 
9431
+ #: wppa-settings-autosave.php:3206
9432
  msgid "The type of display on the autopage pages."
9433
  msgstr ""
9434
 
9435
+ #: wppa-settings-autosave.php:3209
9436
  #, fuzzy
9437
  msgid "Single photo"
9438
  msgstr "Se fotos"
9439
 
9440
+ #: wppa-settings-autosave.php:3209
9441
  #, fuzzy
9442
  msgid "Media type photo"
9443
  msgstr "N&aelig;ste billede"
9444
 
9445
+ #: wppa-settings-autosave.php:3209
9446
  msgid "In the style of a slideshow"
9447
  msgstr ""
9448
 
9449
+ #: wppa-settings-autosave.php:3216
9450
  msgid "Auto page links"
9451
  msgstr ""
9452
 
9453
+ #: wppa-settings-autosave.php:3217
9454
  msgid "The location for the pagelinks."
9455
  msgstr ""
9456
 
9457
+ #: wppa-settings-autosave.php:3220
9458
  msgid "At top and bottom"
9459
  msgstr ""
9460
 
9461
+ #: wppa-settings-autosave.php:3227
9462
  msgid "Defer javascript"
9463
  msgstr ""
9464
 
9465
+ #: wppa-settings-autosave.php:3228
9466
  msgid "Put javascript near the end of the page."
9467
  msgstr ""
9468
 
9469
+ #: wppa-settings-autosave.php:3229
9470
  msgid ""
9471
  "If checkd: May fix layout problems and broken slideshows. May speed up or "
9472
  "slow down page appearing."
9473
  msgstr ""
9474
 
9475
+ #: wppa-settings-autosave.php:3236
9476
  msgid "Inline styles"
9477
  msgstr ""
9478
 
9479
+ #: wppa-settings-autosave.php:3237
9480
  msgid "Set style specifications inline."
9481
  msgstr ""
9482
 
9483
+ #: wppa-settings-autosave.php:3238
9484
  msgid "If checked: May fix layout problems, but slows down page appearing."
9485
  msgstr ""
9486
 
9487
+ #: wppa-settings-autosave.php:3245
9488
  msgid "Custom style"
9489
  msgstr ""
9490
 
9491
+ #: wppa-settings-autosave.php:3246
9492
  msgid "Enter custom style specs here."
9493
  msgstr ""
9494
 
9495
+ #: wppa-settings-autosave.php:3254
9496
  msgid "Use customized style file"
9497
  msgstr ""
9498
 
9499
+ #: wppa-settings-autosave.php:3255 wppa-settings-autosave.php:3264
9500
  msgid "This feature is highly discouraged."
9501
  msgstr ""
9502
 
9503
+ #: wppa-settings-autosave.php:3263
9504
  msgid "Use customized theme file"
9505
  msgstr ""
9506
 
9507
+ #: wppa-settings-autosave.php:3272
9508
  msgid "Enable photo html access"
9509
  msgstr ""
9510
 
9511
+ #: wppa-settings-autosave.php:3273
9512
  msgid "Creates an .htaccess file in .../uploads/wppa/"
9513
  msgstr ""
9514
 
9515
+ #: wppa-settings-autosave.php:3274
9516
  msgid ""
9517
  "If checked: assures http access to your wppa photo files, despite other ."
9518
  "htaccess settings that may protect these files."
9519
  msgstr ""
9520
 
9521
+ #: wppa-settings-autosave.php:3281
9522
  msgid "Lazy or HTML comp"
9523
  msgstr ""
9524
 
9525
+ #: wppa-settings-autosave.php:3282
9526
  msgid "Tick this box when you use lazy load or html compression."
9527
  msgstr ""
9528
 
9529
+ #: wppa-settings-autosave.php:3283
9530
  msgid ""
9531
  "If the filmstrip images do not show up and you have a lazy load or html "
9532
  "optimizing plugin active: Check this box"
9533
  msgstr ""
9534
 
9535
+ #: wppa-settings-autosave.php:3290
9536
  #, fuzzy
9537
  msgid "Thumbs first"
9538
  msgstr "Miniature"
9539
 
9540
+ #: wppa-settings-autosave.php:3291
9541
  msgid "When displaying album content: thumbnails before subalbums."
9542
  msgstr ""
9543
 
9544
+ #: wppa-settings-autosave.php:3299
9545
  msgid "Login links"
9546
  msgstr ""
9547
 
9548
+ #: wppa-settings-autosave.php:3300
9549
  #, fuzzy
9550
  msgid "You must login to... links to login page."
9551
  msgstr "Du skal <a href=\"%s\">logge ind</a> for at stemme"
9552
 
9553
+ #: wppa-settings-autosave.php:3308
9554
  msgid "Enable Video"
9555
  msgstr ""
9556
 
9557
+ #: wppa-settings-autosave.php:3309
9558
  msgid "Enables video support."
9559
  msgstr ""
9560
 
9561
+ #: wppa-settings-autosave.php:3318
9562
  msgid "Enable Audio"
9563
  msgstr ""
9564
 
9565
+ #: wppa-settings-autosave.php:3319
9566
  msgid "Enables audio support."
9567
  msgstr ""
9568
 
9569
+ #: wppa-settings-autosave.php:3327
9570
+ msgid "Enable 3D Stereo"
9571
+ msgstr ""
9572
+
9573
+ #: wppa-settings-autosave.php:3328
9574
+ msgid "Enables 3D stereo photo support."
9575
+ msgstr ""
9576
+
9577
+ #: wppa-settings-autosave.php:3336
9578
  msgid "Relative urls"
9579
  msgstr ""
9580
 
9581
+ #: wppa-settings-autosave.php:3337
9582
  msgid "Use relative urls only."
9583
  msgstr ""
9584
 
9585
+ #: wppa-settings-autosave.php:3346
9586
  msgid "Slideshow related settings"
9587
  msgstr ""
9588
 
9589
+ #: wppa-settings-autosave.php:3348
9590
  msgid "V align"
9591
  msgstr ""
9592
 
9593
+ #: wppa-settings-autosave.php:3349
9594
  msgid "Vertical alignment of slideshow images."
9595
  msgstr ""
9596
 
9597
+ #: wppa-settings-autosave.php:3350
9598
  msgid "Specify the vertical alignment of slideshow images."
9599
  msgstr ""
9600
 
9601
+ #: wppa-settings-autosave.php:3351
9602
  msgid ""
9603
  "If you select --- none ---, the photos will not be centered horizontally "
9604
  "either."
9605
  msgstr ""
9606
 
9607
+ #: wppa-settings-autosave.php:3353 wppa-settings-autosave.php:3618
9608
  #: wppa-slideshow-widget.php:216
9609
  #, fuzzy
9610
  msgid "top"
9611
  msgstr "Stop"
9612
 
9613
+ #: wppa-settings-autosave.php:3353 wppa-settings-autosave.php:3367
9614
+ #: wppa-settings-autosave.php:3618 wppa-slideshow-widget.php:217
9615
+ #: wppa-tinymce-scripts.php:290 wppa-tinymce-shortcodes.php:520
9616
  #: wppa-widget-admin.php:78
9617
  msgid "center"
9618
  msgstr ""
9619
 
9620
+ #: wppa-settings-autosave.php:3353 wppa-settings-autosave.php:3618
9621
  #: wppa-slideshow-widget.php:218
9622
  msgid "bottom"
9623
  msgstr ""
9624
 
9625
+ #: wppa-settings-autosave.php:3353 wppa-slideshow-widget.php:219
9626
  msgid "fit"
9627
  msgstr ""
9628
 
9629
+ #: wppa-settings-autosave.php:3361
9630
  msgid "H align"
9631
  msgstr ""
9632
 
9633
+ #: wppa-settings-autosave.php:3362
9634
  msgid "Horizontal alignment of slideshow images."
9635
  msgstr ""
9636
 
9637
+ #: wppa-settings-autosave.php:3363
9638
  msgid ""
9639
  "Specify the horizontal alignment of slideshow images. If you specify --- "
9640
  "none --- , no horizontal alignment will take place."
9641
  msgstr ""
9642
 
9643
+ #: wppa-settings-autosave.php:3364
9644
  msgid ""
9645
  "This setting is only usefull when the Column Width differs from the Maximum "
9646
  "Width."
9647
  msgstr ""
9648
 
9649
+ #: wppa-settings-autosave.php:3365
9650
  msgid "(Settings I-A1 and I-B1)"
9651
  msgstr ""
9652
 
9653
+ #: wppa-settings-autosave.php:3375
9654
  #, fuzzy
9655
  msgid "Start slideshow running."
9656
  msgstr "Dobbeltklik for at starte/slutte slideshow"
9657
 
9658
+ #: wppa-settings-autosave.php:3376
9659
  msgid ""
9660
  "If you select \"running\", the slideshow will start running immediately, if "
9661
  "you select \"still at first photo\", the first photo will be displayed in "
9662
  "browse mode."
9663
  msgstr ""
9664
 
9665
+ #: wppa-settings-autosave.php:3377
9666
  msgid ""
9667
  "If you select \"still at first norated\", the first photo that the visitor "
9668
  "did not gave a rating will be displayed in browse mode."
9669
  msgstr ""
9670
 
9671
+ #: wppa-settings-autosave.php:3379
9672
  msgid "running"
9673
  msgstr ""
9674
 
9675
+ #: wppa-settings-autosave.php:3380
9676
  msgid "still at first photo"
9677
  msgstr ""
9678
 
9679
+ #: wppa-settings-autosave.php:3381
9680
  msgid "still at first norated"
9681
  msgstr ""
9682
 
9683
+ #: wppa-settings-autosave.php:3392
9684
  msgid "Start slideonly"
9685
  msgstr ""
9686
 
9687
+ #: wppa-settings-autosave.php:3393
9688
  #, fuzzy
9689
  msgid "Start slideonly slideshow running."
9690
  msgstr "Dobbeltklik for at starte/slutte slideshow"
9691
 
9692
+ #: wppa-settings-autosave.php:3401 wppa-settings-autosave.php:4216
9693
  msgid "Video autostart"
9694
  msgstr ""
9695
 
9696
+ #: wppa-settings-autosave.php:3402
9697
  msgid "Autoplay videos in slideshows."
9698
  msgstr ""
9699
 
9700
+ #: wppa-settings-autosave.php:3411 wppa-settings-autosave.php:4225
9701
  msgid "Audio autostart"
9702
  msgstr ""
9703
 
9704
+ #: wppa-settings-autosave.php:3412
9705
  msgid "Autoplay audios in slideshows."
9706
  msgstr ""
9707
 
9708
+ #: wppa-settings-autosave.php:3420
9709
  msgid "Animation type"
9710
  msgstr ""
9711
 
9712
+ #: wppa-settings-autosave.php:3421
9713
  msgid "The way successive slides appear."
9714
  msgstr ""
9715
 
9716
+ #: wppa-settings-autosave.php:3422
9717
  msgid ""
9718
  "Select the way the old slide is to be replaced by the new one in the "
9719
  "slideshow/browse fullsize display."
9720
  msgstr ""
9721
 
9722
+ #: wppa-settings-autosave.php:3424
9723
  msgid "Fade out and in simultaneous"
9724
  msgstr ""
9725
 
9726
+ #: wppa-settings-autosave.php:3425
9727
  msgid "Fade in after fade out"
9728
  msgstr ""
9729
 
9730
+ #: wppa-settings-autosave.php:3426
9731
  msgid "Shift adjacent"
9732
  msgstr ""
9733
 
9734
+ #: wppa-settings-autosave.php:3427
9735
  msgid "Stack on"
9736
  msgstr ""
9737
 
9738
+ #: wppa-settings-autosave.php:3428
9739
  msgid "Stack off"
9740
  msgstr ""
9741
 
9742
+ #: wppa-settings-autosave.php:3429
9743
  msgid "Turn over"
9744
  msgstr ""
9745
 
9746
+ #: wppa-settings-autosave.php:3443
9747
  msgid "Timeout"
9748
  msgstr ""
9749
 
9750
+ #: wppa-settings-autosave.php:3444
9751
  #, fuzzy
9752
  msgid "Slideshow timeout."
9753
  msgstr "Slideshow"
9754
 
9755
+ #: wppa-settings-autosave.php:3445
9756
  msgid ""
9757
  "Select the time a single slide will be visible when the slideshow is started."
9758
  msgstr ""
9759
 
9760
+ #: wppa-settings-autosave.php:3447
9761
  msgid "very short (1 s.)"
9762
  msgstr ""
9763
 
9764
+ #: wppa-settings-autosave.php:3447
9765
  msgid "short (1.5 s.)"
9766
  msgstr ""
9767
 
9768
+ #: wppa-settings-autosave.php:3447
9769
  msgid "normal (2.5 s.)"
9770
  msgstr ""
9771
 
9772
+ #: wppa-settings-autosave.php:3447
9773
  msgid "long (4 s.)"
9774
  msgstr ""
9775
 
9776
+ #: wppa-settings-autosave.php:3447
9777
  msgid "very long (6 s.)"
9778
  msgstr ""
9779
 
9780
+ #: wppa-settings-autosave.php:3454
9781
  msgid "Speed"
9782
  msgstr ""
9783
 
9784
+ #: wppa-settings-autosave.php:3455
9785
  msgid "Slideshow animation speed."
9786
  msgstr ""
9787
 
9788
+ #: wppa-settings-autosave.php:3456
9789
  msgid "Specify the animation speed to be used in slideshows."
9790
  msgstr ""
9791
 
9792
+ #: wppa-settings-autosave.php:3457
9793
  msgid "This is the time it takes a photo to fade in or out."
9794
  msgstr ""
9795
 
9796
+ #: wppa-settings-autosave.php:3459 wppa-settings-autosave.php:4162
9797
+ #: wppa-settings-autosave.php:5877 wppa-settings-autosave.php:6771
9798
+ #: wppa-settings-autosave.php:6782 wppa-settings-autosave.php:6921
9799
+ #: wppa-settings-autosave.php:6962
9800
  #, fuzzy
9801
  msgid "--- off ---"
9802
  msgstr "--- ingen ---"
9803
 
9804
+ #: wppa-settings-autosave.php:3459
9805
  msgid "very fast (200 ms.)"
9806
  msgstr ""
9807
 
9808
+ #: wppa-settings-autosave.php:3459
9809
  msgid "fast (400 ms.)"
9810
  msgstr ""
9811
 
9812
+ #: wppa-settings-autosave.php:3459
9813
  msgid "normal (800 ms.)"
9814
  msgstr ""
9815
 
9816
+ #: wppa-settings-autosave.php:3459
9817
  msgid "slow (1.2 s.)"
9818
  msgstr ""
9819
 
9820
+ #: wppa-settings-autosave.php:3459
9821
  #, fuzzy
9822
  msgid "very slow (2 s.)"
9823
  msgstr "meget lav"
9824
 
9825
+ #: wppa-settings-autosave.php:3459
9826
  msgid "extremely slow (4 s.)"
9827
  msgstr ""
9828
 
9829
+ #: wppa-settings-autosave.php:3466
9830
  msgid "Slide hover pause"
9831
  msgstr ""
9832
 
9833
+ #: wppa-settings-autosave.php:3467
9834
  msgid "Running Slideshow suspends during mouse hover."
9835
  msgstr ""
9836
 
9837
+ #: wppa-settings-autosave.php:3475
9838
  #, fuzzy
9839
  msgid "Slideshow wrap around"
9840
  msgstr "Slideshow"
9841
 
9842
+ #: wppa-settings-autosave.php:3476
9843
  msgid "The slideshow wraps around the start and end"
9844
  msgstr ""
9845
 
9846
+ #: wppa-settings-autosave.php:3484
9847
  msgid "Full desc align"
9848
  msgstr ""
9849
 
9850
+ #: wppa-settings-autosave.php:3485
9851
  msgid "The alignment of the descriptions under fullsize images and slideshows."
9852
  msgstr ""
9853
 
9854
+ #: wppa-settings-autosave.php:3488 wppa-settings-autosave.php:3606
9855
+ #: wppa-settings-autosave.php:3709
9856
  msgid "Left"
9857
  msgstr ""
9858
 
9859
+ #: wppa-settings-autosave.php:3488
9860
  msgid "Center"
9861
  msgstr ""
9862
 
9863
+ #: wppa-settings-autosave.php:3488 wppa-settings-autosave.php:3606
9864
+ #: wppa-settings-autosave.php:3709
9865
  msgid "Right"
9866
  msgstr ""
9867
 
9868
+ #: wppa-settings-autosave.php:3495
9869
  msgid "Remove redundant space"
9870
  msgstr ""
9871
 
9872
+ #: wppa-settings-autosave.php:3496
9873
  msgid "Removes unwanted &lt;p> and &lt;br> tags in fullsize descriptions."
9874
  msgstr ""
9875
 
9876
+ #: wppa-settings-autosave.php:3497
9877
  msgid ""
9878
  "This setting has only effect when Table IX-A7 (foreign shortcodes) is "
9879
  "checked."
9880
  msgstr ""
9881
 
9882
+ #: wppa-settings-autosave.php:3504
9883
  #, fuzzy
9884
  msgid "Run wpautop on description"
9885
  msgstr "Inserisci / modifica la descrizione per questo album."
9886
 
9887
+ #: wppa-settings-autosave.php:3505
9888
  msgid "Adds &lt;p> and &lt;br> tags in fullsize descriptions."
9889
  msgstr ""
9890
 
9891
+ #: wppa-settings-autosave.php:3513
9892
  #, fuzzy
9893
  msgid "Auto open comments"
9894
  msgstr "Din kommentar"
9895
 
9896
+ #: wppa-settings-autosave.php:3514
9897
  msgid "Automatic opens comments box when slideshow does not run."
9898
  msgstr ""
9899
 
9900
+ #: wppa-settings-autosave.php:3522
9901
  #, fuzzy
9902
  msgid "Film hover goto"
9903
  msgstr "Se forside foto"
9904
 
9905
+ #: wppa-settings-autosave.php:3523
9906
  msgid "Go to slide when hovering filmstrip thumbnail."
9907
  msgstr ""
9908
 
9909
+ #: wppa-settings-autosave.php:3524
9910
  msgid "Do not use this setting when slides have different aspect ratios!"
9911
  msgstr ""
9912
 
9913
+ #: wppa-settings-autosave.php:3531
9914
  #, fuzzy
9915
  msgid "Slide swipe"
9916
  msgstr "Slideshow"
9917
 
9918
+ #: wppa-settings-autosave.php:3532
9919
  msgid "Enable touch events swipe left-right on slides on touch screens."
9920
  msgstr ""
9921
 
9922
+ #: wppa-settings-autosave.php:3540
9923
  msgid "Slide page Ajax"
9924
  msgstr ""
9925
 
9926
+ #: wppa-settings-autosave.php:3541
9927
  msgid "Pagelinks slideshow use Ajax"
9928
  msgstr ""
9929
 
9930
+ #: wppa-settings-autosave.php:3542
9931
  msgid "On some systems you need to disable ajax here."
9932
  msgstr ""
9933
 
9934
+ #: wppa-settings-autosave.php:3549
9935
  msgid "Thumbnail related settings"
9936
  msgstr ""
9937
 
9938
+ #: wppa-settings-autosave.php:3552
9939
  msgid "Photo ordering sequence method."
9940
  msgstr ""
9941
 
9942
+ #: wppa-settings-autosave.php:3553
9943
  msgid ""
9944
  "Specify the way the photos should be ordered. This is the default setting. "
9945
  "You can overrule the default sorting order on a per album basis."
9946
  msgstr ""
9947
 
9948
+ #: wppa-settings-autosave.php:3590
9949
  #, fuzzy
9950
  msgid "Thumbnail type"
9951
  msgstr "Foto Top Ti"
9952
 
9953
+ #: wppa-settings-autosave.php:3591
9954
  msgid "The way the thumbnail images are displayed."
9955
  msgstr ""
9956
 
9957
+ #: wppa-settings-autosave.php:3592
9958
  msgid ""
9959
  "You may select an altenative display method for thumbnails. Note that some "
9960
  "of the thumbnail settings do not apply to all available display methods."
9961
  msgstr ""
9962
 
9963
+ #: wppa-settings-autosave.php:3594
9964
  msgid "like album covers"
9965
  msgstr ""
9966
 
9967
+ #: wppa-settings-autosave.php:3594
9968
  msgid "like album covers mcr"
9969
  msgstr ""
9970
 
9971
+ #: wppa-settings-autosave.php:3594
9972
  msgid "masonry style columns"
9973
  msgstr ""
9974
 
9975
+ #: wppa-settings-autosave.php:3594
9976
  msgid "masonry style rows"
9977
  msgstr ""
9978
 
9979
+ #: wppa-settings-autosave.php:3602 wppa-settings-autosave.php:3703
9980
  msgid "Placement"
9981
  msgstr ""
9982
 
9983
+ #: wppa-settings-autosave.php:3603
9984
  msgid "Thumbnail image left or right."
9985
  msgstr ""
9986
 
9987
+ #: wppa-settings-autosave.php:3604
9988
  msgid "Indicate the placement position of the thumbnailphoto you wish."
9989
  msgstr ""
9990
 
9991
+ #: wppa-settings-autosave.php:3613
9992
  msgid "Vertical alignment"
9993
  msgstr ""
9994
 
9995
+ #: wppa-settings-autosave.php:3614
9996
  msgid "Vertical alignment of thumbnails."
9997
  msgstr ""
9998
 
9999
+ #: wppa-settings-autosave.php:3615
10000
  msgid ""
10001
  "Specify the vertical alignment of thumbnail images. Use this setting when "
10002
  "albums contain both portrait and landscape photos."
10003
  msgstr ""
10004
 
10005
+ #: wppa-settings-autosave.php:3616
10006
  msgid ""
10007
  "It is NOT recommended to use the value --- default ---; it will affect the "
10008
  "horizontal alignment also and is meant to be used with custom css."
10009
  msgstr ""
10010
 
10011
+ #: wppa-settings-autosave.php:3625
10012
  msgid "Thumb mouseover"
10013
  msgstr ""
10014
 
10015
+ #: wppa-settings-autosave.php:3626
10016
  msgid "Apply thumbnail mouseover effect."
10017
  msgstr ""
10018
 
10019
+ #: wppa-settings-autosave.php:3627
10020
  msgid "Check this box to use mouseover effect on thumbnail images."
10021
  msgstr ""
10022
 
10023
+ #: wppa-settings-autosave.php:3635
10024
  #, fuzzy
10025
  msgid "Thumb opacity"
10026
  msgstr "Miniatura"
10027
 
10028
+ #: wppa-settings-autosave.php:3636 wppa-settings-autosave.php:3728
10029
  msgid "Initial opacity value."
10030
  msgstr ""
10031
 
10032
+ #: wppa-settings-autosave.php:3637 wppa-settings-autosave.php:3729
10033
+ #: wppa-settings-autosave.php:3838
10034
  msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
10035
  msgstr ""
10036
 
10037
+ #: wppa-settings-autosave.php:3639 wppa-settings-autosave.php:3731
10038
+ #: wppa-settings-autosave.php:3841 wppa-settings-autosave.php:4142
10039
  msgid "%"
10040
  msgstr ""
10041
 
10042
+ #: wppa-settings-autosave.php:3644
10043
  msgid "Thumb popup"
10044
  msgstr ""
10045
 
10046
+ #: wppa-settings-autosave.php:3645
10047
  msgid "Use popup effect on thumbnail images."
10048
  msgstr ""
10049
 
10050
+ #: wppa-settings-autosave.php:3646
10051
  msgid "Thumbnails pop-up to a larger image when hovered."
10052
  msgstr ""
10053
 
10054
+ #: wppa-settings-autosave.php:3654
10055
  msgid "Align subtext"
10056
  msgstr ""
10057
 
10058
+ #: wppa-settings-autosave.php:3655
10059
  msgid "Set thumbnail subtext on equal height."
10060
  msgstr ""
10061
 
10062
+ #: wppa-settings-autosave.php:3663
10063
  msgid "Album and covers related settings"
10064
  msgstr ""
10065
 
10066
+ #: wppa-settings-autosave.php:3665
10067
  #, fuzzy
10068
  msgid "Album order"
10069
  msgstr "Album administration"
10070
 
10071
+ #: wppa-settings-autosave.php:3666
10072
  msgid "Album ordering sequence method."
10073
  msgstr ""
10074
 
10075
+ #: wppa-settings-autosave.php:3667
10076
  msgid "Specify the way the albums should be ordered."
10077
  msgstr ""
10078
 
10079
+ #: wppa-settings-autosave.php:3692
10080
  #, fuzzy
10081
  msgid "Default coverphoto selection"
10082
  msgstr "Standard foto album for"
10083
 
10084
+ #: wppa-settings-autosave.php:3693
10085
  msgid "Default select cover photo method."
10086
  msgstr ""
10087
 
10088
+ #: wppa-settings-autosave.php:3694
10089
  msgid ""
10090
  "This is the initial value on album creation only. It can be overruled on the "
10091
  "edit album page."
10092
  msgstr ""
10093
 
10094
+ #: wppa-settings-autosave.php:3695
10095
  msgid "Random from album"
10096
  msgstr ""
10097
 
10098
+ #: wppa-settings-autosave.php:3695
10099
  msgid "Random featured from album"
10100
  msgstr ""
10101
 
10102
+ #: wppa-settings-autosave.php:3695
10103
  #, fuzzy
10104
  msgid "Most recently added to album"
10105
  msgstr "Le impostazioni sono state aggiornate"
10106
 
10107
+ #: wppa-settings-autosave.php:3695
10108
  #, fuzzy
10109
  msgid "Random from album or any sub album"
10110
  msgstr "Risultati Ricerca da album %s e tutti i sotto album"
10111
 
10112
+ #: wppa-settings-autosave.php:3704
10113
  #, fuzzy
10114
  msgid "Cover image position."
10115
  msgstr "Se fotos"
10116
 
10117
+ #: wppa-settings-autosave.php:3705
10118
  msgid ""
10119
  "Enter the position that you want to be used for the default album cover "
10120
  "selected in Table IV-D6."
10121
  msgstr ""
10122
 
10123
+ #: wppa-settings-autosave.php:3706
10124
  msgid ""
10125
  "For covertype Image Factory: left will be treated as top and right will be "
10126
  "treted as bottom."
10127
  msgstr ""
10128
 
10129
+ #: wppa-settings-autosave.php:3707
10130
  msgid ""
10131
  "For covertype Long Descriptions: top will be treated as left and bottom will "
10132
  "be treted as right."
10133
  msgstr ""
10134
 
10135
+ #: wppa-settings-autosave.php:3717
10136
  msgid "Cover mouseover"
10137
  msgstr ""
10138
 
10139
+ #: wppa-settings-autosave.php:3718
10140
  msgid "Apply coverphoto mouseover effect."
10141
  msgstr ""
10142
 
10143
+ #: wppa-settings-autosave.php:3719
10144
  msgid "Check this box to use mouseover effect on cover images."
10145
  msgstr ""
10146
 
10147
+ #: wppa-settings-autosave.php:3727
10148
  msgid "Cover opacity"
10149
  msgstr ""
10150
 
10151
+ #: wppa-settings-autosave.php:3736
10152
  msgid "Cover type"
10153
  msgstr ""
10154
 
10155
+ #: wppa-settings-autosave.php:3737
10156
  msgid "Select the default cover type."
10157
  msgstr ""
10158
 
10159
+ #: wppa-settings-autosave.php:3738
10160
  msgid ""
10161
  "Types with the addition mcr are suitable for Multi Column in a Responsive "
10162
  "theme"
10163
  msgstr ""
10164
 
10165
+ #: wppa-settings-autosave.php:3761
10166
  msgid "The umber of coverphotos. Must be > 1 and < 25."
10167
  msgstr ""
10168
 
10169
+ #: wppa-settings-autosave.php:3769
10170
  msgid "Rating related settings"
10171
  msgstr ""
10172
 
10173
+ #: wppa-settings-autosave.php:3771
10174
  #, fuzzy
10175
  msgid "Rating login"
10176
  msgstr "Bed&oslash;mmelse: %s"
10177
 
10178
+ #: wppa-settings-autosave.php:3772
10179
  #, fuzzy
10180
  msgid "Users must login to rate photos."
10181
  msgstr "Bruger %s indsendte foto %s ind i album %s"
10182
 
10183
+ #: wppa-settings-autosave.php:3773
10184
  msgid ""
10185
  "If users want to vote for a photo (rating 1..5 stars) the must login first. "
10186
  "The avarage rating will always be displayed as long as the rating system is "
10187
  "enabled."
10188
  msgstr ""
10189
 
10190
+ #: wppa-settings-autosave.php:3780
10191
  #, fuzzy
10192
  msgid "Rating change"
10193
  msgstr "Bed&oslash;mmelse: %s"
10194
 
10195
+ #: wppa-settings-autosave.php:3781 wppa-settings-autosave.php:3782
10196
  msgid "Users may change their ratings."
10197
  msgstr ""
10198
 
10199
+ #: wppa-settings-autosave.php:3783 wppa-settings-autosave.php:3820
10200
+ #: wppa-settings-autosave.php:3839 wppa-settings-autosave.php:3852
10201
+ #: wppa-settings-autosave.php:3862 wppa-settings-autosave.php:3872
10202
+ #: wppa-settings-autosave.php:3882 wppa-settings-autosave.php:3891
10203
  msgid ""
10204
  "If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
10205
  msgstr ""
10206
 
10207
+ #: wppa-settings-autosave.php:3790
10208
  #, fuzzy
10209
  msgid "Rating multi"
10210
  msgstr "Bed&oslash;mmelse: %s"
10211
 
10212
+ #: wppa-settings-autosave.php:3791
10213
  msgid "Users may give multiple votes."
10214
  msgstr ""
10215
 
10216
+ #: wppa-settings-autosave.php:3792
10217
  msgid ""
10218
  "Users may give multiple votes. (This has no effect when users may change "
10219
  "their votes.)"
10220
  msgstr ""
10221
 
10222
+ #: wppa-settings-autosave.php:3799
10223
  #, fuzzy
10224
  msgid "Rate own photos"
10225
  msgstr "Se fotos"
10226
 
10227
+ #: wppa-settings-autosave.php:3800
10228
  msgid "It is allowed to rate photos by the uploader himself."
10229
  msgstr ""
10230
 
10231
+ #: wppa-settings-autosave.php:3808
10232
  msgid "Rating requires comment"
10233
  msgstr ""
10234
 
10235
+ #: wppa-settings-autosave.php:3809
10236
  #, fuzzy
10237
  msgid "Users must clarify their vote in a comment."
10238
  msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
10239
 
10240
+ #: wppa-settings-autosave.php:3818
10241
  msgid "This value counts dislike rating."
10242
  msgstr ""
10243
 
10244
+ #: wppa-settings-autosave.php:3819
10245
  msgid ""
10246
  "This value will be used for a dislike rating on calculation of avarage "
10247
  "ratings."
10248
  msgstr ""
10249
 
10250
+ #: wppa-settings-autosave.php:3822
10251
  msgid "points"
10252
  msgstr ""
10253
 
10254
+ #: wppa-settings-autosave.php:3827
10255
  msgid "Next after vote"
10256
  msgstr ""
10257
 
10258
+ #: wppa-settings-autosave.php:3828
10259
  msgid "Goto next slide after voting"
10260
  msgstr ""
10261
 
10262
+ #: wppa-settings-autosave.php:3829
10263
  msgid ""
10264
  "If checked, the visitor goes straight to the slide following the slide he "
10265
  "voted. This will speed up mass voting."
10266
  msgstr ""
10267
 
10268
+ #: wppa-settings-autosave.php:3836
10269
  msgid "Star off opacity"
10270
  msgstr ""
10271
 
10272
+ #: wppa-settings-autosave.php:3837
10273
  msgid "Rating star off state opacity value."
10274
  msgstr ""
10275
 
10276
+ #: wppa-settings-autosave.php:3847
10277
  msgid "Notify admin every x times."
10278
  msgstr ""
10279
 
10280
+ #: wppa-settings-autosave.php:3848
10281
  msgid ""
10282
  "If this number is positive, there will be a thumb down icon in the rating "
10283
  "bar."
10284
  msgstr ""
10285
 
10286
+ #: wppa-settings-autosave.php:3849
10287
  msgid ""
10288
  "Cicking the icon indicates a user wants to report that an image is "
10289
  "inappropiate."
10290
  msgstr ""
10291
 
10292
+ #: wppa-settings-autosave.php:3850
10293
  msgid "Admin will be notified by email after every x reports."
10294
  msgstr ""
10295
 
10296
+ #: wppa-settings-autosave.php:3851 wppa-settings-autosave.php:3861
10297
+ #: wppa-settings-autosave.php:3871
10298
  msgid "A value of 0 disables this feature."
10299
  msgstr ""
10300
 
10301
+ #: wppa-settings-autosave.php:3854 wppa-settings-autosave.php:3864
10302
+ #: wppa-settings-autosave.php:3874
10303
  msgid "reports"
10304
  msgstr ""
10305
 
10306
+ #: wppa-settings-autosave.php:3859
10307
  msgid "Pending after"
10308
  msgstr ""
10309
 
10310
+ #: wppa-settings-autosave.php:3860
10311
  msgid "Set status to pending after xx dislike votes."
10312
  msgstr ""
10313
 
10314
+ #: wppa-settings-autosave.php:3869
10315
  #, fuzzy
10316
  msgid "Delete after"
10317
  msgstr "Impossibile creare album. "
10318
 
10319
+ #: wppa-settings-autosave.php:3870
10320
  msgid "Deete photo after xx dislike votes."
10321
  msgstr ""
10322
 
10323
+ #: wppa-settings-autosave.php:3879
10324
  msgid "Show dislike count"
10325
  msgstr ""
10326
 
10327
+ #: wppa-settings-autosave.php:3880
10328
  msgid "Show the number of dislikes in the rating bar."
10329
  msgstr ""
10330
 
10331
+ #: wppa-settings-autosave.php:3881
10332
  msgid "Displayes the total number of dislike votes for the current photo."
10333
  msgstr ""
10334
 
10335
+ #: wppa-settings-autosave.php:3889
10336
  msgid "Rating display type"
10337
  msgstr ""
10338
 
10339
+ #: wppa-settings-autosave.php:3890
10340
  msgid "Specify the type of the rating display."
10341
  msgstr ""
10342
 
10343
+ #: wppa-settings-autosave.php:3893
10344
  msgid "Graphic"
10345
  msgstr ""
10346
 
10347
+ #: wppa-settings-autosave.php:3893
10348
  msgid "Numeric"
10349
  msgstr ""
10350
 
10351
+ #: wppa-settings-autosave.php:3900
10352
  #, fuzzy
10353
  msgid "Show average rating"
10354
  msgstr "Bed&oslash;mmelse&nbsp;gennemsnitlig"
10355
 
10356
+ #: wppa-settings-autosave.php:3901
10357
  msgid "Display the avarage rating and/or vote count on the rating bar"
10358
  msgstr ""
10359
 
10360
+ #: wppa-settings-autosave.php:3902
10361
  msgid ""
10362
  "If checked, the average rating as well as the current users rating is "
10363
  "displayed in max 5 or 10 stars."
10364
  msgstr ""
10365
 
10366
+ #: wppa-settings-autosave.php:3903
10367
  msgid "If unchecked, only the current users rating is displayed (if any)."
10368
  msgstr ""
10369
 
10370
+ #: wppa-settings-autosave.php:3904
10371
  msgid ""
10372
  "If \"One button vote\" is selected in Table I-E1, this box checked will "
10373
  "display the vote count."
10374
  msgstr ""
10375
 
10376
+ #: wppa-settings-autosave.php:3911
10377
  msgid "Single vote button text"
10378
  msgstr ""
10379
 
10380
+ #: wppa-settings-autosave.php:3912
10381
  msgid "The text on the voting button."
10382
  msgstr ""
10383
 
10384
+ #: wppa-settings-autosave.php:3913 wppa-settings-autosave.php:3922
10385
  msgid "This text may contain qTranslate compatible language tags."
10386
  msgstr ""
10387
 
10388
+ #: wppa-settings-autosave.php:3920
10389
  msgid "Single vote button text voted"
10390
  msgstr ""
10391
 
10392
+ #: wppa-settings-autosave.php:3921
10393
  msgid "The text on the voting button when voted."
10394
  msgstr ""
10395
 
10396
+ #: wppa-settings-autosave.php:3929
10397
  #, fuzzy
10398
  msgid "Single vote button thumbnail"
10399
  msgstr "Se"
10400
 
10401
+ #: wppa-settings-autosave.php:3930
10402
  msgid "Display single vote button below thumbnails."
10403
  msgstr ""
10404
 
10405
+ #: wppa-settings-autosave.php:3931
10406
  msgid ""
10407
  "This works only in single vote mode: Table I-E1 set to \"one button vote\""
10408
  msgstr ""
10409
 
10410
+ #: wppa-settings-autosave.php:3938
10411
  msgid "Medal bronze when"
10412
  msgstr ""
10413
 
10414
+ #: wppa-settings-autosave.php:3939 wppa-settings-autosave.php:3957
10415
  msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
10416
  msgstr ""
10417
 
10418
+ #: wppa-settings-autosave.php:3940 wppa-settings-autosave.php:3958
10419
  msgid ""
10420
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10421
  "bronze medal. A value of 0 indicates that you do not want this feature."
10422
  msgstr ""
10423
 
10424
+ #: wppa-settings-autosave.php:3942 wppa-settings-autosave.php:3951
10425
+ #: wppa-settings-autosave.php:3960
10426
  msgid "Topscores"
10427
  msgstr ""
10428
 
10429
+ #: wppa-settings-autosave.php:3947
10430
  msgid "Medal silver when"
10431
  msgstr ""
10432
 
10433
+ #: wppa-settings-autosave.php:3948
10434
  msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
10435
  msgstr ""
10436
 
10437
+ #: wppa-settings-autosave.php:3949
10438
  msgid ""
10439
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10440
  "silver medal. A value of 0 indicates that you do not want this feature."
10441
  msgstr ""
10442
 
10443
+ #: wppa-settings-autosave.php:3956
10444
  msgid "Medal gold when"
10445
  msgstr ""
10446
 
10447
+ #: wppa-settings-autosave.php:3965
10448
  msgid "Medal tag color"
10449
  msgstr ""
10450
 
10451
+ #: wppa-settings-autosave.php:3966
10452
  msgid "The color of the tag on the medal."
10453
  msgstr ""
10454
 
10455
+ #: wppa-settings-autosave.php:3969
10456
  msgid "Red"
10457
  msgstr ""
10458
 
10459
+ #: wppa-settings-autosave.php:3969
10460
  msgid "Green"
10461
  msgstr ""
10462
 
10463
+ #: wppa-settings-autosave.php:3969
10464
  msgid "Blue"
10465
  msgstr ""
10466
 
10467
+ #: wppa-settings-autosave.php:3976
10468
  #, fuzzy
10469
  msgid "Medal position"
10470
  msgstr "Position:"
10471
 
10472
+ #: wppa-settings-autosave.php:3977
10473
  msgid "The position of the medal on the image."
10474
  msgstr ""
10475
 
10476
+ #: wppa-settings-autosave.php:3980
10477
  msgid "Top left"
10478
  msgstr ""
10479
 
10480
+ #: wppa-settings-autosave.php:3980
10481
  msgid "Top right"
10482
  msgstr ""
10483
 
10484
+ #: wppa-settings-autosave.php:3980
10485
  msgid "Bottom left"
10486
  msgstr ""
10487
 
10488
+ #: wppa-settings-autosave.php:3980
10489
  msgid "Bottom right"
10490
  msgstr ""
10491
 
10492
+ #: wppa-settings-autosave.php:3987
10493
  msgid "Top criterium"
10494
  msgstr ""
10495
 
10496
+ #: wppa-settings-autosave.php:3988
10497
  msgid "The top sort item used for topten results from shortcodes."
10498
  msgstr ""
10499
 
10500
+ #: wppa-settings-autosave.php:3991
10501
  #, fuzzy
10502
  msgid "Mean raiting"
10503
  msgstr "Valutazione:"
10504
 
10505
+ #: wppa-settings-autosave.php:3991
10506
  #, fuzzy
10507
  msgid "Rating count"
10508
  msgstr "Bed&oslash;mmelse: %s"
10509
 
10510
+ #: wppa-settings-autosave.php:3991
10511
  #, fuzzy
10512
  msgid "Viewcount"
10513
  msgstr "Se"
10514
 
10515
+ #: wppa-settings-autosave.php:3998
10516
  #, fuzzy
10517
  msgid "Comments related settings"
10518
  msgstr "Kommentarer redigeret"
10519
 
10520
+ #: wppa-settings-autosave.php:4000
10521
  #, fuzzy
10522
  msgid "Commenting login"
10523
  msgstr "%d kommentarer"
10524
 
10525
+ #: wppa-settings-autosave.php:4001
10526
  msgid "Users must be logged in to comment on photos."
10527
  msgstr ""
10528
 
10529
+ #: wppa-settings-autosave.php:4002
10530
  msgid ""
10531
  "Check this box if you want users to be logged in to be able to enter "
10532
  "comments on individual photos."
10533
  msgstr ""
10534
 
10535
+ #: wppa-settings-autosave.php:4009
10536
  #, fuzzy
10537
  msgid "Comments view login"
10538
  msgstr "Kommentarer redigeret"
10539
 
10540
+ #: wppa-settings-autosave.php:4010
10541
  #, fuzzy
10542
  msgid "Users must be logged in to see comments on photos."
10543
  msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
10544
 
10545
+ #: wppa-settings-autosave.php:4011
10546
  msgid ""
10547
  "Check this box if you want users to be logged in to be able to see existing "
10548
  "comments on individual photos."
10549
  msgstr ""
10550
 
10551
+ #: wppa-settings-autosave.php:4018
10552
  #, fuzzy
10553
  msgid "Last comment first"
10554
  msgstr "%d kommentarer"
10555
 
10556
+ #: wppa-settings-autosave.php:4019
10557
  msgid "Display the newest comment on top."
10558
  msgstr ""
10559
 
10560
+ #: wppa-settings-autosave.php:4020
10561
  msgid "If checked: Display the newest comment on top."
10562
  msgstr ""
10563
 
10564
+ #: wppa-settings-autosave.php:4021
10565
  msgid "If unchecked, the comments are listed in the ordere they were entered."
10566
  msgstr ""
10567
 
10568
+ #: wppa-settings-autosave.php:4028
10569
  #, fuzzy
10570
  msgid "Comment moderation"
10571
  msgstr "%d kommentarer"
10572
 
10573
+ #: wppa-settings-autosave.php:4029
10574
  msgid "Comments from what users need approval."
10575
  msgstr ""
10576
 
10577
+ #: wppa-settings-autosave.php:4030
10578
  msgid "Select the desired users of which the comments need approval."
10579
  msgstr ""
10580
 
10581
+ #: wppa-settings-autosave.php:4032 wppa-settings-autosave.php:5863
10582
  #, fuzzy
10583
  msgid "All users"
10584
  msgstr "Alle albums"
10585
 
10586
+ #: wppa-settings-autosave.php:4032 wppa-settings-autosave.php:5863
10587
  msgid "Logged out users"
10588
  msgstr ""
10589
 
10590
+ #: wppa-settings-autosave.php:4032 wppa-settings-autosave.php:5863
10591
  msgid "No users"
10592
  msgstr ""
10593
 
10594
+ #: wppa-settings-autosave.php:4039
10595
  #, fuzzy
10596
  msgid "Comment email required"
10597
  msgstr "Kommentarer redigeret"
10598
 
10599
+ #: wppa-settings-autosave.php:4040
10600
  msgid "Commenting users must enter their email addresses."
10601
  msgstr ""
10602
 
10603
+ #: wppa-settings-autosave.php:4048
10604
  #, fuzzy
10605
  msgid "Comment notify"
10606
  msgstr "Kommentar til billeder"
10607
 
10608
+ #: wppa-settings-autosave.php:4049
10609
  msgid "Select who must receive an e-mail notification of a new comment."
10610
  msgstr ""
10611
 
10612
+ #: wppa-settings-autosave.php:4052
10613
  #, fuzzy
10614
  msgid "--- None ---"
10615
  msgstr "--- ingen ---"
10616
 
10617
+ #: wppa-settings-autosave.php:4053
10618
  #, fuzzy
10619
  msgid "--- Admin ---"
10620
  msgstr "--- ingen ---"
10621
 
10622
+ #: wppa-settings-autosave.php:4054
10623
  #, fuzzy
10624
  msgid "--- Album owner ---"
10625
  msgstr "--- ingen ---"
10626
 
10627
+ #: wppa-settings-autosave.php:4055
10628
  #, fuzzy
10629
  msgid "--- Admin & Owner ---"
10630
  msgstr "--- ingen ---"
10631
 
10632
+ #: wppa-settings-autosave.php:4056
10633
  #, fuzzy
10634
  msgid "--- Uploader ---"
10635
  msgstr "--- ingen ---"
10636
 
10637
+ #: wppa-settings-autosave.php:4057
10638
  #, fuzzy
10639
  msgid "--- Up & admin ---"
10640
  msgstr "--- ingen ---"
10641
 
10642
+ #: wppa-settings-autosave.php:4058
10643
  #, fuzzy
10644
  msgid "--- Up & Owner ---"
10645
  msgstr "--- ingen ---"
10646
 
10647
+ #: wppa-settings-autosave.php:4081
10648
  #, fuzzy
10649
  msgid "Comment notify previous"
10650
  msgstr "Kommentar til billeder"
10651
 
10652
+ #: wppa-settings-autosave.php:4082
10653
  #, fuzzy
10654
  msgid "Notify users who has commented this photo earlier."
10655
  msgstr "Du modtager denne e-mail, fordi du er sat til at godkende"
10656
 
10657
+ #: wppa-settings-autosave.php:4090
10658
  #, fuzzy
10659
  msgid "Comment ntfy added"
10660
  msgstr "Kommentarer tilf&oslash;jet"
10661
 
10662
+ #: wppa-settings-autosave.php:4091
10663
  msgid "Show \"Comment added\" after successfull adding a comment."
10664
  msgstr ""
10665
 
10666
+ #: wppa-settings-autosave.php:4099
10667
  msgid "ComTen alt display"
10668
  msgstr ""
10669
 
10670
+ #: wppa-settings-autosave.php:4100
10671
  msgid "Display comments at comten thumbnails."
10672
  msgstr ""
10673
 
10674
+ #: wppa-settings-autosave.php:4108
10675
  #, fuzzy
10676
  msgid "Comten Thumbnail width"
10677
  msgstr "Foto Top Ti"
10678
 
10679
+ #: wppa-settings-autosave.php:4109
10680
  msgid "The width of the thumbnail in the alt comment display."
10681
  msgstr ""
10682
 
10683
+ #: wppa-settings-autosave.php:4112
10684
  msgid "Pixels"
10685
  msgstr ""
10686
 
10687
+ #: wppa-settings-autosave.php:4117
10688
  msgid "Show smiley picker"
10689
  msgstr ""
10690
 
10691
+ #: wppa-settings-autosave.php:4118
10692
  msgid "Display a clickable row of smileys."
10693
  msgstr ""
10694
 
10695
+ #: wppa-settings-autosave.php:4126
10696
  #, fuzzy
10697
  msgid "Show commenter email"
10698
  msgstr "Din kommentar"
10699
 
10700
+ #: wppa-settings-autosave.php:4127
10701
  msgid "Show the commenter's email in the notify emails."
10702
  msgstr ""
10703
 
10704
+ #: wppa-settings-autosave.php:4128
10705
  msgid "Shows the email address of the commenter in all notify emails."
10706
  msgstr ""
10707
 
10708
+ #: wppa-settings-autosave.php:4129
10709
  msgid ""
10710
  "If switched off, admin will still receive the senders email in the "
10711
  "notification mail"
10712
  msgstr ""
10713
 
10714
+ #: wppa-settings-autosave.php:4139
10715
  msgid "The opacity of the lightbox overlay background."
10716
  msgstr ""
10717
 
10718
+ #: wppa-settings-autosave.php:4147
10719
  msgid "Click on background"
10720
  msgstr ""
10721
 
10722
+ #: wppa-settings-autosave.php:4148
10723
  msgid "Select the action to be taken on click on background."
10724
  msgstr ""
10725
 
10726
+ #: wppa-settings-autosave.php:4151
10727
  msgid "Nothing"
10728
  msgstr ""
10729
 
10730
+ #: wppa-settings-autosave.php:4151
10731
  msgid "Exit (close)"
10732
  msgstr ""
10733
 
10734
+ #: wppa-settings-autosave.php:4151
10735
  msgid "Browse (left/right)"
10736
  msgstr ""
10737
 
10738
+ #: wppa-settings-autosave.php:4158
10739
  msgid "Overlay animation speed"
10740
  msgstr ""
10741
 
10742
+ #: wppa-settings-autosave.php:4159
10743
  msgid "The fade-in time of the lightbox images"
10744
  msgstr ""
10745
 
10746
+ #: wppa-settings-autosave.php:4162
10747
  msgid "very fast (100 ms.)"
10748
  msgstr ""
10749
 
10750
+ #: wppa-settings-autosave.php:4162
10751
  msgid "fast (200 ms.)"
10752
  msgstr ""
10753
 
10754
+ #: wppa-settings-autosave.php:4162
10755
  msgid "normal (300 ms.)"
10756
  msgstr ""
10757
 
10758
+ #: wppa-settings-autosave.php:4162
10759
  msgid "slow (500 ms.)"
10760
  msgstr ""
10761
 
10762
+ #: wppa-settings-autosave.php:4162
10763
  #, fuzzy
10764
  msgid "very slow (1 s.)"
10765
  msgstr "meget lav"
10766
 
10767
+ #: wppa-settings-autosave.php:4162
10768
  msgid "extremely slow (2 s.)"
10769
  msgstr ""
10770
 
10771
+ #: wppa-settings-autosave.php:4169
10772
  msgid "Overlay slideshow speed"
10773
  msgstr ""
10774
 
10775
+ #: wppa-settings-autosave.php:4170
10776
  msgid "The time the lightbox images stay"
10777
  msgstr ""
10778
 
10779
+ #: wppa-settings-autosave.php:4173
10780
  msgid "fast (3 s.)"
10781
  msgstr ""
10782
 
10783
+ #: wppa-settings-autosave.php:4173
10784
  msgid "normal (5 s.)"
10785
  msgstr ""
10786
 
10787
+ #: wppa-settings-autosave.php:4173
10788
  msgid "slow (8 s.)"
10789
  msgstr ""
10790
 
10791
+ #: wppa-settings-autosave.php:4173
10792
  #, fuzzy
10793
  msgid "very slow (13 s.)"
10794
  msgstr "meget lav"
10795
 
10796
+ #: wppa-settings-autosave.php:4173
10797
  msgid "extremely slow (20 s.)"
10798
  msgstr ""
10799
 
10800
+ #: wppa-settings-autosave.php:4180
10801
  msgid "Overlay at top in Chrome"
10802
  msgstr ""
10803
 
10804
+ #: wppa-settings-autosave.php:4181
10805
  msgid ""
10806
  "Place the overlay (lightbox) image at the top of the page in Chrome browsers."
10807
  msgstr ""
10808
 
10809
+ #: wppa-settings-autosave.php:4182
10810
  msgid "This is required for certain mobile devices."
10811
  msgstr ""
10812
 
10813
+ #: wppa-settings-autosave.php:4189
10814
  msgid "WPPA+ Lightbox global"
10815
  msgstr ""
10816
 
10817
+ #: wppa-settings-autosave.php:4190
10818
  msgid "Use the wppa+ lightbox also for non-wppa images."
10819
  msgstr ""
10820
 
10821
+ #: wppa-settings-autosave.php:4198
10822
  msgid "WPPA+ Lightbox global is a set"
10823
  msgstr ""
10824
 
10825
+ #: wppa-settings-autosave.php:4199
10826
  msgid "Treat the other images as a set."
10827
  msgstr ""
10828
 
10829
+ #: wppa-settings-autosave.php:4200
10830
  msgid ""
10831
  "If checked, you can scroll through the images in the lightbox view. Requires "
10832
  "item 5 to be checked."
10833
  msgstr ""
10834
 
10835
+ #: wppa-settings-autosave.php:4207
10836
  msgid "Use hires files"
10837
  msgstr ""
10838
 
10839
+ #: wppa-settings-autosave.php:4208
10840
  msgid "Use the highest resolution available for lightbox."
10841
  msgstr ""
10842
 
10843
+ #: wppa-settings-autosave.php:4209
10844
  msgid "Ticking this box is recommended for lightbox fullscreen modes."
10845
  msgstr ""
10846
 
10847
+ #: wppa-settings-autosave.php:4217
10848
  msgid "Videos on lightbox start automaticly."
10849
  msgstr ""
10850
 
10851
+ #: wppa-settings-autosave.php:4226
10852
  msgid "Audio on lightbox start automaticly."
10853
  msgstr ""
10854
 
10855
+ #: wppa-settings-autosave.php:4251
10856
  msgid "Table V:"
10857
  msgstr ""
10858
 
10859
+ #: wppa-settings-autosave.php:4251
10860
  #, fuzzy
10861
  msgid "Fonts:"
10862
  msgstr "%d kommentarer"
10863
 
10864
+ #: wppa-settings-autosave.php:4252
10865
  msgid "This table describes the Fonts used for the wppa+ elements."
10866
  msgstr ""
10867
 
10868
+ #: wppa-settings-autosave.php:4262 wppa-settings-autosave.php:4438
10869
  msgid "Font family"
10870
  msgstr ""
10871
 
10872
+ #: wppa-settings-autosave.php:4263 wppa-settings-autosave.php:4439
10873
  msgid "Font size"
10874
  msgstr ""
10875
 
10876
+ #: wppa-settings-autosave.php:4264 wppa-settings-autosave.php:4440
10877
  msgid "Font color"
10878
  msgstr ""
10879
 
10880
+ #: wppa-settings-autosave.php:4265 wppa-settings-autosave.php:4441
10881
  msgid "Font weight"
10882
  msgstr ""
10883
 
10884
+ #: wppa-settings-autosave.php:4275
10885
  msgid "normal"
10886
  msgstr ""
10887
 
10888
+ #: wppa-settings-autosave.php:4275
10889
  msgid "bold"
10890
  msgstr ""
10891
 
10892
+ #: wppa-settings-autosave.php:4275
10893
  msgid "bolder"
10894
  msgstr ""
10895
 
10896
+ #: wppa-settings-autosave.php:4275
10897
  msgid "lighter"
10898
  msgstr ""
10899
 
10900
+ #: wppa-settings-autosave.php:4278
10901
  #, fuzzy
10902
  msgid "Album titles"
10903
  msgstr "album"
10904
 
10905
+ #: wppa-settings-autosave.php:4279
10906
  msgid "Font used for Album titles."
10907
  msgstr ""
10908
 
10909
+ #: wppa-settings-autosave.php:4280
10910
  msgid "Enter font name, size, color and weight for album cover titles."
10911
  msgstr ""
10912
 
10913
+ #: wppa-settings-autosave.php:4295
10914
  #, fuzzy
10915
  msgid "Slideshow desc"
10916
  msgstr "Slideshow"
10917
 
10918
+ #: wppa-settings-autosave.php:4296
10919
  #, fuzzy
10920
  msgid "Font for slideshow photo descriptions."
10921
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
10922
 
10923
+ #: wppa-settings-autosave.php:4297
10924
  msgid ""
10925
  "Enter font name, size, color and weight for slideshow photo descriptions."
10926
  msgstr ""
10927
 
10928
+ #: wppa-settings-autosave.php:4312
10929
  #, fuzzy
10930
  msgid "Slideshow name"
10931
  msgstr "Slideshow"
10932
 
10933
+ #: wppa-settings-autosave.php:4313
10934
  #, fuzzy
10935
  msgid "Font for slideshow photo names."
10936
  msgstr "Indtast foto navn"
10937
 
10938
+ #: wppa-settings-autosave.php:4314
10939
  msgid "Enter font name, size, color and weight for slideshow photo names."
10940
  msgstr ""
10941
 
10942
+ #: wppa-settings-autosave.php:4329
10943
  msgid "Navigations"
10944
  msgstr ""
10945
 
10946
+ #: wppa-settings-autosave.php:4330
10947
  msgid "Font for navigations."
10948
  msgstr ""
10949
 
10950
+ #: wppa-settings-autosave.php:4331
10951
  msgid "Enter font name, size, color and weight for navigation items."
10952
  msgstr ""
10953
 
10954
+ #: wppa-settings-autosave.php:4347
10955
  msgid "Font for text under thumbnails."
10956
  msgstr ""
10957
 
10958
+ #: wppa-settings-autosave.php:4348
10959
  msgid ""
10960
  "Enter font name, size, color and weight for text under thumbnail images."
10961
  msgstr ""
10962
 
10963
+ #: wppa-settings-autosave.php:4364
10964
  msgid "General font in wppa boxes."
10965
  msgstr ""
10966
 
10967
+ #: wppa-settings-autosave.php:4365
10968
  msgid "Enter font name, size, color and weight for all other items."
10969
  msgstr ""
10970
 
10971
+ #: wppa-settings-autosave.php:4381
10972
  msgid "Font in wppa number bars."
10973
  msgstr ""
10974
 
10975
+ #: wppa-settings-autosave.php:4382 wppa-settings-autosave.php:4399
10976
  msgid "Enter font name, size, color and weight for numberbar navigation."
10977
  msgstr ""
10978
 
10979
+ #: wppa-settings-autosave.php:4397
10980
  msgid "Numbar Active"
10981
  msgstr ""
10982
 
10983
+ #: wppa-settings-autosave.php:4398
10984
  msgid "Font in wppa number bars, active item."
10985
  msgstr ""
10986
 
10987
+ #: wppa-settings-autosave.php:4415
10988
  msgid "Font in wppa lightbox overlays."
10989
  msgstr ""
10990
 
10991
+ #: wppa-settings-autosave.php:4416
10992
  msgid "Enter font name, size, color and weight for wppa lightbox overlays."
10993
  msgstr ""
10994
 
10995
+ #: wppa-settings-autosave.php:4451
10996
  msgid "Table VI:"
10997
  msgstr ""
10998
 
10999
+ #: wppa-settings-autosave.php:4451
11000
  #, fuzzy
11001
  msgid "Links:"
11002
  msgstr "Link til"
11003
 
11004
+ #: wppa-settings-autosave.php:4452
11005
  msgid "This table defines the link types and pages."
11006
  msgstr ""
11007
 
11008
+ #: wppa-settings-autosave.php:4463 wppa-settings-autosave.php:5462
11009
  #, fuzzy
11010
  msgid "Link page"
11011
  msgstr "Link til"
11012
 
11013
+ #: wppa-settings-autosave.php:4465 wppa-settings-autosave.php:5464
11014
  msgid "Photo specific link overrules"
11015
  msgstr ""
11016
 
11017
+ #: wppa-settings-autosave.php:4465 wppa-settings-autosave.php:5464
11018
  msgid "PSO"
11019
  msgstr ""
11020
 
11021
+ #: wppa-settings-autosave.php:4515
11022
  #, fuzzy
11023
  msgid "--- The same post or page ---"
11024
  msgstr "--- vis ikke ---"
11025
 
11026
+ #: wppa-settings-autosave.php:4546
11027
  msgid "--- No page to link to (yet) ---"
11028
  msgstr ""
11029
 
11030
+ #: wppa-settings-autosave.php:4551
11031
  #, fuzzy
11032
  msgid "--- Will be auto created ---"
11033
  msgstr "--- vis ikke ---"
11034
 
11035
+ #: wppa-settings-autosave.php:4553
11036
  msgid "Links from images in WPPA+ Widgets"
11037
  msgstr ""
11038
 
11039
+ #: wppa-settings-autosave.php:4555
11040
  msgid "PotdWidget"
11041
  msgstr ""
11042
 
11043
+ #: wppa-settings-autosave.php:4556
11044
  msgid "Photo Of The Day widget link."
11045
  msgstr ""
11046
 
11047
+ #: wppa-settings-autosave.php:4557
11048
  msgid "Select the type of link the photo of the day points to."
11049
  msgstr ""
11050
 
11051
+ #: wppa-settings-autosave.php:4558
11052
  msgid ""
11053
  "If you select 'defined on widget admin page' you can manually enter a link "
11054
  "and title on the Photo of the day Widget Admin page."
11055
  msgstr ""
11056
 
11057
+ #: wppa-settings-autosave.php:4567 wppa-settings-autosave.php:4610
11058
+ #: wppa-settings-autosave.php:4688 wppa-settings-autosave.php:4731
11059
+ #: wppa-settings-autosave.php:4779 wppa-settings-autosave.php:4826
11060
+ #: wppa-settings-autosave.php:4873 wppa-settings-autosave.php:4925
11061
+ #: wppa-settings-autosave.php:4963 wppa-settings-autosave.php:5013
11062
+ #: wppa-settings-autosave.php:5055 wppa-settings-autosave.php:5095
11063
+ #: wppa-settings-autosave.php:8841
11064
  msgid "no link at all."
11065
  msgstr ""
11066
 
11067
+ #: wppa-settings-autosave.php:4568 wppa-settings-autosave.php:4611
11068
+ #: wppa-settings-autosave.php:4689 wppa-settings-autosave.php:4732
11069
+ #: wppa-settings-autosave.php:4780 wppa-settings-autosave.php:4827
11070
+ #: wppa-settings-autosave.php:4874 wppa-settings-autosave.php:4926
11071
+ #: wppa-settings-autosave.php:4964 wppa-settings-autosave.php:5014
11072
+ #: wppa-settings-autosave.php:5056 wppa-settings-autosave.php:5096
11073
+ #: wppa-settings-autosave.php:8842
11074
  msgid "the plain photo (file)."
11075
  msgstr ""
11076
 
11077
+ #: wppa-settings-autosave.php:4569 wppa-settings-autosave.php:8848
11078
  msgid "defined on widget admin page."
11079
  msgstr ""
11080
 
11081
+ #: wppa-settings-autosave.php:4570 wppa-settings-autosave.php:4613
11082
+ #: wppa-settings-autosave.php:5015 wppa-settings-autosave.php:5057
11083
+ #: wppa-settings-autosave.php:8846
11084
  msgid "the content of the album."
11085
  msgstr ""
11086
 
11087
+ #: wppa-settings-autosave.php:4571 wppa-settings-autosave.php:4614
11088
+ #: wppa-settings-autosave.php:4690 wppa-settings-autosave.php:4735
11089
+ #: wppa-settings-autosave.php:4783 wppa-settings-autosave.php:4830
11090
+ #: wppa-settings-autosave.php:4877 wppa-settings-autosave.php:4965
11091
+ #: wppa-settings-autosave.php:5016 wppa-settings-autosave.php:5058
11092
+ #: wppa-settings-autosave.php:8843
11093
  msgid "the full size photo in a slideshow."
11094
  msgstr ""
11095
 
11096
+ #: wppa-settings-autosave.php:4572 wppa-settings-autosave.php:4615
11097
+ #: wppa-settings-autosave.php:4691 wppa-settings-autosave.php:4736
11098
+ #: wppa-settings-autosave.php:4784 wppa-settings-autosave.php:4831
11099
+ #: wppa-settings-autosave.php:4878 wppa-settings-autosave.php:4966
11100
+ #: wppa-settings-autosave.php:5017 wppa-settings-autosave.php:5059
11101
+ #: wppa-settings-autosave.php:5097 wppa-settings-autosave.php:8844
11102
  msgid "the fullsize photo on its own."
11103
  msgstr ""
11104
 
11105
+ #: wppa-settings-autosave.php:4573 wppa-settings-autosave.php:4616
11106
+ #: wppa-settings-autosave.php:4655 wppa-settings-autosave.php:4694
11107
+ #: wppa-settings-autosave.php:4739 wppa-settings-autosave.php:4787
11108
+ #: wppa-settings-autosave.php:4834 wppa-settings-autosave.php:4881
11109
+ #: wppa-settings-autosave.php:4969
11110
  msgid "a plain page without a querystring."
11111
  msgstr ""
11112
 
11113
+ #: wppa-settings-autosave.php:4574 wppa-settings-autosave.php:4617
11114
+ #: wppa-settings-autosave.php:4656 wppa-settings-autosave.php:4695
11115
+ #: wppa-settings-autosave.php:4740 wppa-settings-autosave.php:4788
11116
+ #: wppa-settings-autosave.php:4835 wppa-settings-autosave.php:4882
11117
+ #: wppa-settings-autosave.php:4928 wppa-settings-autosave.php:4970
11118
+ #: wppa-settings-autosave.php:5018 wppa-settings-autosave.php:5060
11119
+ #: wppa-settings-autosave.php:5098
11120
  msgid "lightbox."
11121
  msgstr ""
11122
 
11123
+ #: wppa-settings-autosave.php:4599
11124
  msgid "SlideWidget"
11125
  msgstr ""
11126
 
11127
+ #: wppa-settings-autosave.php:4600
11128
  msgid "Slideshow widget photo link."
11129
  msgstr ""
11130
 
11131
+ #: wppa-settings-autosave.php:4601
11132
  msgid "Select the type of link the slideshow photos point to."
11133
  msgstr ""
11134
 
11135
+ #: wppa-settings-autosave.php:4612 wppa-settings-autosave.php:8847
11136
  msgid "defined at widget activation."
11137
  msgstr ""
11138
 
11139
+ #: wppa-settings-autosave.php:4642
11140
  #, fuzzy
11141
  msgid "Album widget"
11142
  msgstr "Album administration"
11143
 
11144
+ #: wppa-settings-autosave.php:4643
11145
  msgid "Album widget thumbnail link"
11146
  msgstr ""
11147
 
11148
+ #: wppa-settings-autosave.php:4644
11149
  msgid "Select the type of link the album widget photos point to."
11150
  msgstr ""
11151
 
11152
+ #: wppa-settings-autosave.php:4653
11153
  msgid "subalbums and thumbnails."
11154
  msgstr ""
11155
 
11156
+ #: wppa-settings-autosave.php:4654
11157
  #, fuzzy
11158
  msgid "slideshow."
11159
  msgstr "Slideshow"
11160
 
11161
+ #: wppa-settings-autosave.php:4677
11162
  #, fuzzy
11163
  msgid "ThumbnailWidget"
11164
  msgstr "Foto Top Ti"
11165
 
11166
+ #: wppa-settings-autosave.php:4678
11167
  #, fuzzy
11168
  msgid "Thumbnail widget photo link."
11169
  msgstr "Miniatura"
11170
 
11171
+ #: wppa-settings-autosave.php:4679
11172
  msgid "Select the type of link the thumbnail photos point to."
11173
  msgstr ""
11174
 
11175
+ #: wppa-settings-autosave.php:4692 wppa-settings-autosave.php:4737
11176
+ #: wppa-settings-autosave.php:4785 wppa-settings-autosave.php:4832
11177
+ #: wppa-settings-autosave.php:4879 wppa-settings-autosave.php:4967
11178
  msgid "the single photo in the style of a slideshow."
11179
  msgstr ""
11180
 
11181
+ #: wppa-settings-autosave.php:4693 wppa-settings-autosave.php:4738
11182
+ #: wppa-settings-autosave.php:4786 wppa-settings-autosave.php:4833
11183
+ #: wppa-settings-autosave.php:4880 wppa-settings-autosave.php:4968
11184
+ #: wppa-settings-autosave.php:5100
11185
  msgid "the fs photo with download and print buttons."
11186
  msgstr ""
11187
 
11188
+ #: wppa-settings-autosave.php:4720
11189
  msgid "TopTenWidget"
11190
  msgstr ""
11191
 
11192
+ #: wppa-settings-autosave.php:4721
11193
  msgid "TopTen widget photo link."
11194
  msgstr ""
11195
 
11196
+ #: wppa-settings-autosave.php:4722
11197
  msgid "Select the type of link the top ten photos point to."
11198
  msgstr ""
11199
 
11200
+ #: wppa-settings-autosave.php:4733
11201
  msgid "the content of the virtual topten album."
11202
  msgstr ""
11203
 
11204
+ #: wppa-settings-autosave.php:4734 wppa-settings-autosave.php:4782
11205
+ #: wppa-settings-autosave.php:4829 wppa-settings-autosave.php:4876
11206
  msgid "the content of the thumbnails album."
11207
  msgstr ""
11208
 
11209
+ #: wppa-settings-autosave.php:4768
11210
  msgid "LasTenWidget"
11211
  msgstr ""
11212
 
11213
+ #: wppa-settings-autosave.php:4769
11214
  #, fuzzy
11215
  msgid "Last Ten widget photo link."
11216
  msgstr "Foto Top Ti"
11217
 
11218
+ #: wppa-settings-autosave.php:4770
11219
  msgid "Select the type of link the last ten photos point to."
11220
  msgstr ""
11221
 
11222
+ #: wppa-settings-autosave.php:4781
11223
  msgid "the content of the virtual lasten album."
11224
  msgstr ""
11225
 
11226
+ #: wppa-settings-autosave.php:4815
11227
  #, fuzzy
11228
  msgid "CommentWidget"
11229
  msgstr "Kommentarer tilf&oslash;jet"
11230
 
11231
+ #: wppa-settings-autosave.php:4816
11232
  #, fuzzy
11233
  msgid "Comment widget photo link."
11234
  msgstr "Kommentar til billeder"
11235
 
11236
+ #: wppa-settings-autosave.php:4817
11237
  msgid "Select the type of link the comment widget photos point to."
11238
  msgstr ""
11239
 
11240
+ #: wppa-settings-autosave.php:4828
11241
  msgid "the content of the virtual comten album."
11242
  msgstr ""
11243
 
11244
+ #: wppa-settings-autosave.php:4862
11245
  msgid "FeaTenWidget"
11246
  msgstr ""
11247
 
11248
+ #: wppa-settings-autosave.php:4863
11249
  msgid "FeaTen widget photo link."
11250
  msgstr ""
11251
 
11252
+ #: wppa-settings-autosave.php:4864
11253
  msgid "Select the type of link the featured ten photos point to."
11254
  msgstr ""
11255
 
11256
+ #: wppa-settings-autosave.php:4875
11257
  msgid "the content of the virtual featen album."
11258
  msgstr ""
11259
 
11260
+ #: wppa-settings-autosave.php:4908
11261
  msgid "Links from other WPPA+ images"
11262
  msgstr ""
11263
 
11264
+ #: wppa-settings-autosave.php:4910
11265
  #, fuzzy
11266
  msgid "Cover Image"
11267
  msgstr "Billede"
11268
 
11269
+ #: wppa-settings-autosave.php:4911
11270
  msgid "The link from the cover image of an album."
11271
  msgstr ""
11272
 
11273
+ #: wppa-settings-autosave.php:4912
11274
  msgid "Select the type of link the coverphoto points to."
11275
  msgstr ""
11276
 
11277
+ #: wppa-settings-autosave.php:4913
11278
  msgid "The link from the album title can be configured on the Edit Album page."
11279
  msgstr ""
11280
 
11281
+ #: wppa-settings-autosave.php:4914
11282
  msgid "This link will be used for the photo also if you select: same as title."
11283
  msgstr ""
11284
 
11285
+ #: wppa-settings-autosave.php:4915
11286
  msgid ""
11287
  "If you specify New Tab on this line, all links from the cover will open a "
11288
  "new tab,"
11289
  msgstr ""
11290
 
11291
+ #: wppa-settings-autosave.php:4916
11292
  msgid "except when Ajax is activated on Table IV-A1."
11293
  msgstr ""
11294
 
11295
+ #: wppa-settings-autosave.php:4927 wppa-settings-autosave.php:8849
11296
  msgid "same as title."
11297
  msgstr ""
11298
 
11299
+ #: wppa-settings-autosave.php:4929
11300
  msgid "a slideshow starting at the photo"
11301
  msgstr ""
11302
 
11303
+ #: wppa-settings-autosave.php:4950
11304
  #, fuzzy
11305
  msgid "Thumbnail"
11306
  msgstr "Miniatura"
11307
 
11308
+ #: wppa-settings-autosave.php:4951
11309
  #, fuzzy
11310
  msgid "Thumbnail link."
11311
  msgstr "Foto Top Ti"
11312
 
11313
+ #: wppa-settings-autosave.php:4952 wppa-settings-autosave.php:5002
11314
+ #: wppa-settings-autosave.php:5044
11315
  msgid "Select the type of link you want, or no link at all."
11316
  msgstr ""
11317
 
11318
+ #: wppa-settings-autosave.php:4953 wppa-settings-autosave.php:5003
11319
+ #: wppa-settings-autosave.php:5045
11320
  msgid ""
11321
  "If you select the fullsize photo on its own, it will be stretched to fit, "
11322
  "regardless of that setting."
11323
  msgstr ""
11324
 
11325
+ #: wppa-settings-autosave.php:4954 wppa-settings-autosave.php:5004
11326
+ #: wppa-settings-autosave.php:5046
11327
  #, php-format
11328
  msgid ""
11329
  "Note that a page must have at least %%wppa%% or [wppa][/wppa] in its content "
11330
  "to show up the photo(s)."
11331
  msgstr ""
11332
 
11333
+ #: wppa-settings-autosave.php:4983
11334
  #, fuzzy
11335
  msgid "Auto Page"
11336
  msgstr "Automatisk, afskudt"
11337
 
11338
+ #: wppa-settings-autosave.php:5000
11339
  #, fuzzy
11340
  msgid "Sphoto"
11341
  msgstr "foto"
11342
 
11343
+ #: wppa-settings-autosave.php:5001
11344
  #, fuzzy
11345
  msgid "Single photo link."
11346
  msgstr "Indtast foto navn"
11347
 
11348
+ #: wppa-settings-autosave.php:5042
11349
  #, fuzzy
11350
  msgid "Mphoto"
11351
  msgstr "foto"
11352
 
11353
+ #: wppa-settings-autosave.php:5043
11354
  msgid "Media-like photo link."
11355
  msgstr ""
11356
 
11357
+ #: wppa-settings-autosave.php:5085
11358
  msgid "Slideshow fullsize link"
11359
  msgstr ""
11360
 
11361
+ #: wppa-settings-autosave.php:5086
11362
  msgid ""
11363
  "You can overrule lightbox but not big browse buttons with the photo specifc "
11364
  "link."
11365
  msgstr ""
11366
 
11367
+ #: wppa-settings-autosave.php:5099
11368
  msgid "lightbox single photos."
11369
  msgstr ""
11370
 
11371
+ #: wppa-settings-autosave.php:5101
11372
  #, fuzzy
11373
  msgid "the thumbnails."
11374
  msgstr "Se"
11375
 
11376
+ #: wppa-settings-autosave.php:5125
11377
  msgid "Film linktype"
11378
  msgstr ""
11379
 
11380
+ #: wppa-settings-autosave.php:5126
11381
  msgid "Direct access goto image in:"
11382
  msgstr ""
11383
 
11384
+ #: wppa-settings-autosave.php:5127
11385
  msgid ""
11386
  "Select the action to be taken when the user clicks on a filmstrip image."
11387
  msgstr ""
11388
 
11389
+ #: wppa-settings-autosave.php:5132
11390
  #, fuzzy
11391
  msgid "slideshow window"
11392
  msgstr "Slideshow"
11393
 
11394
+ #: wppa-settings-autosave.php:5133
11395
  msgid "lightbox overlay"
11396
  msgstr ""
11397
 
11398
+ #: wppa-settings-autosave.php:5148
11399
  #, fuzzy
11400
  msgid "Other links"
11401
  msgstr "Andet"
11402
 
11403
+ #: wppa-settings-autosave.php:5150
11404
  msgid "Download Link (aka Art Monkey link)"
11405
  msgstr ""
11406
 
11407
+ #: wppa-settings-autosave.php:5151
11408
  msgid "Makes the photo name a download button."
11409
  msgstr ""
11410
 
11411
+ #: wppa-settings-autosave.php:5152
11412
  msgid "Link Photo name in slideshow to file or zip with photoname as filename."
11413
  msgstr ""
11414
 
11415
+ #: wppa-settings-autosave.php:5156 wppa-settings-autosave.php:5203
11416
  msgid "image file"
11417
  msgstr ""
11418
 
11419
+ #: wppa-settings-autosave.php:5157 wppa-settings-autosave.php:5204
11420
  msgid "zipped image"
11421
  msgstr ""
11422
 
11423
+ #: wppa-settings-autosave.php:5170
11424
  msgid "Art Monkey Source"
11425
  msgstr ""
11426
 
11427
+ #: wppa-settings-autosave.php:5171
11428
  msgid "Use Source file for art monkey link if available."
11429
  msgstr ""
11430
 
11431
+ #: wppa-settings-autosave.php:5180
11432
  msgid "Art Monkey Display"
11433
  msgstr ""
11434
 
11435
+ #: wppa-settings-autosave.php:5181
11436
  msgid "Select button or link ( text )."
11437
  msgstr ""
11438
 
11439
+ #: wppa-settings-autosave.php:5186
11440
  msgid "Textlink"
11441
  msgstr ""
11442
 
11443
+ #: wppa-settings-autosave.php:5198
11444
  msgid "Popup Download Link"
11445
  msgstr ""
11446
 
11447
+ #: wppa-settings-autosave.php:5199
11448
  msgid "Configure the download link on fullsize popups."
11449
  msgstr ""
11450
 
11451
+ #: wppa-settings-autosave.php:5200
11452
  msgid "Link fullsize popup download button to either image or zip file."
11453
  msgstr ""
11454
 
11455
+ #: wppa-settings-autosave.php:5216
11456
  msgid "Download link on lightbox"
11457
  msgstr ""
11458
 
11459
+ #: wppa-settings-autosave.php:5217
11460
  msgid "Art monkey link on lightbox photo names."
11461
  msgstr ""
11462
 
11463
+ #: wppa-settings-autosave.php:5226
11464
  #, fuzzy
11465
  msgid "Album download link"
11466
  msgstr "Album administration"
11467
 
11468
+ #: wppa-settings-autosave.php:5227
11469
  msgid "Place an album download link on the album covers"
11470
  msgstr ""
11471
 
11472
+ #: wppa-settings-autosave.php:5228
11473
  msgid "Creates a download zipfile containing the photos of the album"
11474
  msgstr ""
11475
 
11476
+ #: wppa-settings-autosave.php:5236
11477
  msgid "Album download Source"
11478
  msgstr ""
11479
 
11480
+ #: wppa-settings-autosave.php:5237
11481
  msgid "Use Source file for album download link if available."
11482
  msgstr ""
11483
 
11484
+ #: wppa-settings-autosave.php:5246
11485
  msgid "Tagcloud Link"
11486
  msgstr ""
11487
 
11488
+ #: wppa-settings-autosave.php:5247
11489
  msgid "Configure the link from the tags in the tag cloud."
11490
  msgstr ""
11491
 
11492
+ #: wppa-settings-autosave.php:5248
11493
  msgid "Link the tag words to ether the thumbnails or the slideshow."
11494
  msgstr ""
11495
 
11496
+ #: wppa-settings-autosave.php:5257 wppa-settings-autosave.php:5288
11497
+ #: wppa-settings-autosave.php:5383
11498
  #, fuzzy
11499
  msgid "slideshow"
11500
  msgstr "Slideshow"
11501
 
11502
+ #: wppa-settings-autosave.php:5277
11503
  msgid "Multitag Link"
11504
  msgstr ""
11505
 
11506
+ #: wppa-settings-autosave.php:5278
11507
  msgid "Configure the link from the multitag selection."
11508
  msgstr ""
11509
 
11510
+ #: wppa-settings-autosave.php:5279
11511
  msgid "Link to ether the thumbnails or the slideshow."
11512
  msgstr ""
11513
 
11514
+ #: wppa-settings-autosave.php:5308
11515
  #, fuzzy
11516
  msgid "Super View Landing"
11517
  msgstr "Se forside fotos"
11518
 
11519
+ #: wppa-settings-autosave.php:5309
11520
  msgid "The landing page for the Super View widget."
11521
  msgstr ""
11522
 
11523
+ #: wppa-settings-autosave.php:5317
11524
  msgid "Defined by the visitor"
11525
  msgstr ""
11526
 
11527
+ #: wppa-settings-autosave.php:5330
11528
  #, fuzzy
11529
  msgid "Uploader Landing"
11530
  msgstr "Indl&aelig;sning fejlede"
11531
 
11532
+ #: wppa-settings-autosave.php:5331
11533
  msgid "Select the landing page for the Uploader Widget"
11534
  msgstr ""
11535
 
11536
+ #: wppa-settings-autosave.php:5351
11537
  msgid "Bestof Landing"
11538
  msgstr ""
11539
 
11540
+ #: wppa-settings-autosave.php:5352
11541
  msgid "Select the landing page for the BestOf Widget / Box"
11542
  msgstr ""
11543
 
11544
+ #: wppa-settings-autosave.php:5372
11545
  msgid "Album navigator Link"
11546
  msgstr ""
11547
 
11548
+ #: wppa-settings-autosave.php:5373
11549
  msgid "Select link type and page for the Album navigator Widget"
11550
  msgstr ""
11551
 
11552
+ #: wppa-settings-autosave.php:5401
11553
  msgid "Supersearch Landing"
11554
  msgstr ""
11555
 
11556
+ #: wppa-settings-autosave.php:5402
11557
  msgid "Select the landing page for the Supersearch Box"
11558
  msgstr ""
11559
 
11560
+ #: wppa-settings-autosave.php:5422
11561
  msgid "SM widget return"
11562
  msgstr ""
11563
 
11564
+ #: wppa-settings-autosave.php:5423
11565
  msgid "Select the return link for social media from widgets"
11566
  msgstr ""
11567
 
11568
+ #: wppa-settings-autosave.php:5424
11569
  msgid ""
11570
  "If you select Landing page, and it wont work, it may be required to set the "
11571
  "Occur to the sequence number of the landing shortcode on the page."
11572
  msgstr ""
11573
 
11574
+ #: wppa-settings-autosave.php:5425
11575
  msgid ""
11576
  "Normally it is 1, but you can try 2 etc. Always create a new shared link to "
11577
  "test a setting."
11578
  msgstr ""
11579
 
11580
+ #: wppa-settings-autosave.php:5433
11581
  #, fuzzy
11582
  msgid "Home page"
11583
  msgstr "Hjem"
11584
 
11585
+ #: wppa-settings-autosave.php:5434
11586
  msgid "Landing page"
11587
  msgstr ""
11588
 
11589
+ #: wppa-settings-autosave.php:5445
11590
  msgid "Occur"
11591
  msgstr ""
11592
 
11593
+ #: wppa-settings-autosave.php:5474
11594
  msgid "Table VII:"
11595
  msgstr ""
11596
 
11597
+ #: wppa-settings-autosave.php:5474
11598
  msgid "Permissions and Restrictions:"
11599
  msgstr ""
11600
 
11601
+ #: wppa-settings-autosave.php:5475
11602
  msgid ""
11603
  "This table describes the access settings for admin and front-end activities."
11604
  msgstr ""
11605
 
11606
+ #: wppa-settings-autosave.php:5503
11607
  msgid "Role"
11608
  msgstr ""
11609
 
11610
+ #: wppa-settings-autosave.php:5512
11611
  msgid ""
11612
  "Admin settings per user role. Enabling these settings will overrule the "
11613
  "front-end settings for the specific user role"
11614
  msgstr ""
11615
 
11616
+ #: wppa-settings-autosave.php:5536
11617
  msgid "Frontend create Albums and upload Photos enabling and limiting settings"
11618
  msgstr ""
11619
 
11620
+ #: wppa-settings-autosave.php:5538
11621
  #, fuzzy
11622
  msgid "User create Albums"
11623
  msgstr "Impossibile creare album. "
11624
 
11625
+ #: wppa-settings-autosave.php:5539
11626
  #, fuzzy
11627
  msgid "Enable frontend album creation."
11628
  msgstr "Inserisci / modifica la descrizione per questo album."
11629
 
11630
+ #: wppa-settings-autosave.php:5540
11631
  msgid "If you check this item, frontend album creation will be enabled."
11632
  msgstr ""
11633
 
11634
+ #: wppa-settings-autosave.php:5550
11635
  #, fuzzy
11636
  msgid "User edit album"
11637
  msgstr "Impossibile creare album. "
11638
 
11639
+ #: wppa-settings-autosave.php:5551
11640
  #, fuzzy
11641
  msgid "Enable frontent edit album name and description."
11642
  msgstr "Inserisci / modifica la descrizione per questo album."
11643
 
11644
+ #: wppa-settings-autosave.php:5561
11645
  #, fuzzy
11646
  msgid "User delete Albums"
11647
  msgstr "Impossibile creare album. "
11648
 
11649
+ #: wppa-settings-autosave.php:5562
11650
  #, fuzzy
11651
  msgid "Enable frontend album deletion"
11652
  msgstr "Inserisci / modifica la descrizione per questo album."
11653
 
11654
+ #: wppa-settings-autosave.php:5563
11655
  msgid "If you check this item, frontend album deletion will be enabled."
11656
  msgstr ""
11657
 
11658
+ #: wppa-settings-autosave.php:5573
11659
  #, fuzzy
11660
  msgid "User create Albums login"
11661
  msgstr "Impossibile creare album. "
11662
 
11663
+ #: wppa-settings-autosave.php:5574
11664
  msgid "Frontend album creation requires the user is logged in."
11665
  msgstr ""
11666
 
11667
+ #: wppa-settings-autosave.php:5600
11668
  #, fuzzy, php-format
11669
  msgid "Upload limit %s"
11670
  msgstr "Indsend foto"
11671
 
11672
+ #: wppa-settings-autosave.php:5601
11673
  msgid "Limit upload capacity for logged out users."
11674
  msgstr ""
11675
 
11676
+ #: wppa-settings-autosave.php:5602
11677
  #, php-format
11678
  msgid "Limit upload capacity for the user role %s."
11679
  msgstr ""
11680
 
11681
+ #: wppa-settings-autosave.php:5603
11682
  msgid "This setting has only effect when Table VII-B2 is unchecked."
11683
  msgstr ""
11684
 
11685
+ #: wppa-settings-autosave.php:5604
11686
  msgid ""
11687
  "This limitation only applies to frontend uploads when the same userrole does "
11688
  "not have the Upload checkbox checked in Table VII-A."
11689
  msgstr ""
11690
 
11691
+ #: wppa-settings-autosave.php:5605 wppa-settings-autosave.php:5621
11692
+ #: wppa-settings-autosave.php:7030
11693
  msgid "A value of 0 means: no limit."
11694
  msgstr ""
11695
 
11696
+ #: wppa-settings-autosave.php:5618
11697
  #, fuzzy, php-format
11698
  msgid "Album limit %s"
11699
  msgstr "Album administration"
11700
 
11701
+ #: wppa-settings-autosave.php:5619
11702
  #, php-format
11703
  msgid "Limit number of albums for the user role %s."
11704
  msgstr ""
11705
 
11706
+ #: wppa-settings-autosave.php:5620
11707
  msgid ""
11708
  "This limitation only applies to frontend create albums when the same "
11709
  "userrole does not have the Album admin checkbox checked in Table VII-A."
11710
  msgstr ""
11711
 
11712
+ #: wppa-settings-autosave.php:5632
11713
  #, fuzzy
11714
  msgid "Upload one only"
11715
  msgstr "Indsend foto"
11716
 
11717
+ #: wppa-settings-autosave.php:5633
11718
  msgid "Non admin users can upload only one photo at a time."
11719
  msgstr ""
11720
 
11721
+ #: wppa-settings-autosave.php:5643
11722
  #, fuzzy
11723
  msgid "Upload moderation"
11724
  msgstr "Indsend foto"
11725
 
11726
+ #: wppa-settings-autosave.php:5644
11727
  #, fuzzy
11728
  msgid "Uploaded photos need moderation."
11729
  msgstr "Denne indsendelse kr&aelig;ver godkendelse"
11730
 
11731
+ #: wppa-settings-autosave.php:5645
11732
  msgid ""
11733
  "If checked, photos uploaded by users who do not have photo album admin "
11734
  "access rights need moderation."
11735
  msgstr ""
11736
 
11737
+ #: wppa-settings-autosave.php:5646
11738
  msgid ""
11739
  "Users who have photo album admin access rights can change the photo status "
11740
  "to publish or featured."
11741
  msgstr ""
11742
 
11743
+ #: wppa-settings-autosave.php:5647
11744
  msgid "You can set the album admin access rights in Table VII-A."
11745
  msgstr ""
11746
 
11747
+ #: wppa-settings-autosave.php:5656
11748
  #, fuzzy
11749
  msgid "Upload notify"
11750
  msgstr "Indsend foto"
11751
 
11752
+ #: wppa-settings-autosave.php:5657
11753
  msgid "Notify admin at frontend upload."
11754
  msgstr ""
11755
 
11756
+ #: wppa-settings-autosave.php:5658 wppa-settings-autosave.php:5669
11757
  msgid "If checked, admin will receive a notification by email."
11758
  msgstr ""
11759
 
11760
+ #: wppa-settings-autosave.php:5667
11761
  msgid "Upload backend notify"
11762
  msgstr ""
11763
 
11764
+ #: wppa-settings-autosave.php:5668
11765
  msgid "Notify admin at backend upload."
11766
  msgstr ""
11767
 
11768
+ #: wppa-settings-autosave.php:5678
11769
  msgid "Max size in pixels"
11770
  msgstr ""
11771
 
11772
+ #: wppa-settings-autosave.php:5679
11773
  msgid "Max size for height and width for front-end uploads."
11774
  msgstr ""
11775
 
11776
+ #: wppa-settings-autosave.php:5680
11777
  msgid "Enter the maximum size. 0 is unlimited"
11778
  msgstr ""
11779
 
11780
+ #: wppa-settings-autosave.php:5689
11781
  msgid "Home after Upload"
11782
  msgstr ""
11783
 
11784
+ #: wppa-settings-autosave.php:5690
11785
  msgid "After successfull front-end upload, go to the home page."
11786
  msgstr ""
11787
 
11788
+ #: wppa-settings-autosave.php:5700
11789
  msgid "Admin Functionality restrictions for non administrators"
11790
  msgstr ""
11791
 
11792
+ #: wppa-settings-autosave.php:5702
11793
  msgid "Alt thumb is restricted"
11794
  msgstr ""
11795
 
11796
+ #: wppa-settings-autosave.php:5703
11797
  msgid "Using <b>alt thumbsize</b> is a restricted action."
11798
  msgstr ""
11799
 
11800
+ #: wppa-settings-autosave.php:5704
11801
  msgid ""
11802
  "If checked: alt thumbsize can not be set in album admin by users not having "
11803
  "admin rights."
11804
  msgstr ""
11805
 
11806
+ #: wppa-settings-autosave.php:5713
11807
  msgid "Link is restricted"
11808
  msgstr ""
11809
 
11810
+ #: wppa-settings-autosave.php:5714
11811
  msgid "Using <b>Link to</b> is a restricted action."
11812
  msgstr ""
11813
 
11814
+ #: wppa-settings-autosave.php:5715
11815
  msgid ""
11816
  "If checked: Link to: can not be set in album admin by users not having admin "
11817
  "rights."
11818
  msgstr ""
11819
 
11820
+ #: wppa-settings-autosave.php:5724
11821
  msgid "CoverType is restricted"
11822
  msgstr ""
11823
 
11824
+ #: wppa-settings-autosave.php:5725
11825
  msgid "Changing <b>Cover Type</b> is a restricted action."
11826
  msgstr ""
11827
 
11828
+ #: wppa-settings-autosave.php:5726
11829
  msgid ""
11830
  "If checked: Cover Type: can not be set in album admin by users not having "
11831
  "admin rights."
11832
  msgstr ""
11833
 
11834
+ #: wppa-settings-autosave.php:5735
11835
  msgid "Photo order# is restricted"
11836
  msgstr ""
11837
 
11838
+ #: wppa-settings-autosave.php:5736
11839
  msgid "Changing <b>Photo sort order #</b> is a restricted action."
11840
  msgstr ""
11841
 
11842
+ #: wppa-settings-autosave.php:5737
11843
  msgid ""
11844
  "If checked: Photo sort order #: can not be set in photo admin by users not "
11845
  "having admin rights."
11846
  msgstr ""
11847
 
11848
+ #: wppa-settings-autosave.php:5746
11849
  msgid "Change source restricted"
11850
  msgstr ""
11851
 
11852
+ #: wppa-settings-autosave.php:5747
11853
  msgid "Changing the import source dir requires admin rights."
11854
  msgstr ""
11855
 
11856
+ #: wppa-settings-autosave.php:5748
11857
  msgid ""
11858
  "If checked, the imput source for importing photos and albums is restricted "
11859
  "to user role administrator."
11860
  msgstr ""
11861
 
11862
+ #: wppa-settings-autosave.php:5757
11863
  msgid "Extended status restricted"
11864
  msgstr ""
11865
 
11866
+ #: wppa-settings-autosave.php:5758
11867
  msgid "Setting status other than pending or publish requires admin rights."
11868
  msgstr ""
11869
 
11870
+ #: wppa-settings-autosave.php:5768
11871
  msgid "Photo description restricted"
11872
  msgstr ""
11873
 
11874
+ #: wppa-settings-autosave.php:5769
11875
  msgid "Edit photo description requires admin rights."
11876
  msgstr ""
11877
 
11878
+ #: wppa-settings-autosave.php:5779
11879
  msgid "Update photofiles restricted"
11880
  msgstr ""
11881
 
11882
+ #: wppa-settings-autosave.php:5780
11883
  msgid "Re-upload files requires admin rights"
11884
  msgstr ""
11885
 
11886
+ #: wppa-settings-autosave.php:5790
11887
  msgid "Miscellaneous limiting settings"
11888
  msgstr ""
11889
 
11890
+ #: wppa-settings-autosave.php:5792
11891
  msgid "Owners only"
11892
  msgstr ""
11893
 
11894
+ #: wppa-settings-autosave.php:5793
11895
  msgid "Limit edit album access to the album owners only."
11896
  msgstr ""
11897
 
11898
+ #: wppa-settings-autosave.php:5794
11899
  msgid "If checked, non-admin users can edit their own albums only."
11900
  msgstr ""
11901
 
11902
+ #: wppa-settings-autosave.php:5803
11903
  msgid "Upload Owners only"
11904
  msgstr ""
11905
 
11906
+ #: wppa-settings-autosave.php:5804
11907
  msgid "Limit uploads to the album owners only."
11908
  msgstr ""
11909
 
11910
+ #: wppa-settings-autosave.php:5805
11911
  msgid ""
11912
  "If checked, users can upload to their own own albums and --- public --- only."
11913
  msgstr ""
11914
 
11915
+ #: wppa-settings-autosave.php:5814
11916
  #, fuzzy
11917
  msgid "Uploader Edit"
11918
  msgstr "Indsend foto"
11919
 
11920
+ #: wppa-settings-autosave.php:5815
11921
  msgid "Allow the uploader to edit the photo info"
11922
  msgstr ""
11923
 
11924
+ #: wppa-settings-autosave.php:5816
11925
  msgid ""
11926
  "If checked, any logged in user that has upload rights and uploads an image "
11927
  "has the capability to edit the photo information."
11928
  msgstr ""
11929
 
11930
+ #: wppa-settings-autosave.php:5817
11931
  msgid "Note: This may be AFTER moderation!!"
11932
  msgstr ""
11933
 
11934
+ #: wppa-settings-autosave.php:5826
11935
  #, fuzzy
11936
  msgid "Uploader Moderate Comment"
11937
  msgstr "Godkend kommentar administration"
11938
 
11939
+ #: wppa-settings-autosave.php:5827
11940
  msgid "The owner of the photo can moderate the photos comments."
11941
  msgstr ""
11942
 
11943
+ #: wppa-settings-autosave.php:5828
11944
  msgid "This setting requires \"Uploader edit\" to be enabled also."
11945
  msgstr ""
11946
 
11947
+ #: wppa-settings-autosave.php:5837
11948
  msgid "Upload memory check frontend"
11949
  msgstr ""
11950
 
11951
+ #: wppa-settings-autosave.php:5838 wppa-settings-autosave.php:5849
11952
  msgid "Disable uploading photos that are too large."
11953
  msgstr ""
11954
 
11955
+ #: wppa-settings-autosave.php:5839 wppa-settings-autosave.php:5850
11956
  msgid ""
11957
  "To prevent out of memory crashes during upload and possible database "
11958
  "inconsistencies, uploads can be prevented if the photos are too big."
11959
  msgstr ""
11960
 
11961
+ #: wppa-settings-autosave.php:5848
11962
  msgid "Upload memory check admin"
11963
  msgstr ""
11964
 
11965
+ #: wppa-settings-autosave.php:5859
11966
  #, fuzzy
11967
  msgid "Comment captcha"
11968
  msgstr "Kommentarer tilf&oslash;jet"
11969
 
11970
+ #: wppa-settings-autosave.php:5860
11971
  msgid "Use a simple calculate captcha on comments form."
11972
  msgstr ""
11973
 
11974
+ #: wppa-settings-autosave.php:5873
11975
  msgid "Spam lifetime"
11976
  msgstr ""
11977
 
11978
+ #: wppa-settings-autosave.php:5874
11979
  msgid "Delete spam comments when older than."
11980
  msgstr ""
11981
 
11982
+ #: wppa-settings-autosave.php:5877
11983
  #, fuzzy
11984
  msgid "10 minutes"
11985
  msgstr "1 minut"
11986
 
11987
+ #: wppa-settings-autosave.php:5877
11988
  msgid "half an hour"
11989
  msgstr ""
11990
 
11991
+ #: wppa-settings-autosave.php:5877
11992
  #, fuzzy
11993
  msgid "one hour"
11994
  msgstr "1 time"
11995
 
11996
+ #: wppa-settings-autosave.php:5877
11997
  #, fuzzy
11998
  msgid "one day"
11999
  msgstr "1 dag"
12000
 
12001
+ #: wppa-settings-autosave.php:5877
12002
  #, fuzzy
12003
  msgid "one week"
12004
  msgstr "1 uge"
12005
 
12006
+ #: wppa-settings-autosave.php:5887
12007
  msgid "Avoid duplicates"
12008
  msgstr ""
12009
 
12010
+ #: wppa-settings-autosave.php:5888
12011
  msgid "Prevent the creation of duplicate photos."
12012
  msgstr ""
12013
 
12014
+ #: wppa-settings-autosave.php:5889
12015
  msgid ""
12016
  "If checked: uploading, importing, copying or moving photos to other albums "
12017
  "will be prevented when the desitation album already contains a photo with "
12018
  "the same filename."
12019
  msgstr ""
12020
 
12021
+ #: wppa-settings-autosave.php:5898
12022
  msgid "Blacklist user"
12023
  msgstr ""
12024
 
12025
+ #: wppa-settings-autosave.php:5899 wppa-settings-autosave.php:5900
12026
  msgid "Set the status of all the users photos to 'pending'."
12027
  msgstr ""
12028
 
12029
+ #: wppa-settings-autosave.php:5901
12030
  msgid "Also inhibits further uploads."
12031
  msgstr ""
12032
 
12033
+ #: wppa-settings-autosave.php:5907
12034
  msgid "--- select a user to blacklist ---"
12035
  msgstr ""
12036
 
12037
+ #: wppa-settings-autosave.php:5917 wppa-settings-autosave.php:5922
12038
+ #: wppa-settings-autosave.php:5943 wppa-settings-autosave.php:8080
12039
+ #: wppa-settings-autosave.php:8122
12040
  msgid "The page will be reloaded after the action has taken place."
12041
  msgstr ""
12042
 
12043
+ #: wppa-settings-autosave.php:5923
12044
  msgid "User login name <b>( case sensitive! )</b>:"
12045
  msgstr ""
12046
 
12047
+ #: wppa-settings-autosave.php:5931
12048
  msgid "Unblacklist user"
12049
  msgstr ""
12050
 
12051
+ #: wppa-settings-autosave.php:5932
12052
  msgid "Set the status of all the users photos to 'publish'."
12053
  msgstr ""
12054
 
12055
+ #: wppa-settings-autosave.php:5936
12056
  msgid "--- select a user to unblacklist ---"
12057
  msgstr ""
12058
 
12059
+ #: wppa-settings-autosave.php:5951
12060
  #, fuzzy
12061
  msgid "Photo owner change"
12062
  msgstr "Dagens foto"
12063
 
12064
+ #: wppa-settings-autosave.php:5952
12065
  msgid "Administrators can change photo owner"
12066
  msgstr ""
12067
 
12068
+ #: wppa-settings-autosave.php:5980
12069
  msgid "Table VIII:"
12070
  msgstr ""
12071
 
12072
+ #: wppa-settings-autosave.php:5980
12073
  msgid "Actions:"
12074
  msgstr ""
12075
 
12076
+ #: wppa-settings-autosave.php:5981
12077
  msgid "This table lists all actions that can be taken to the wppa+ system"
12078
  msgstr ""
12079
 
12080
+ #: wppa-settings-autosave.php:5991 wppa-settings-autosave.php:6571
12081
  msgid "Specification"
12082
  msgstr ""
12083
 
12084
+ #: wppa-settings-autosave.php:5992 wppa-settings-autosave.php:6572
12085
+ #: wppa-settings-autosave.php:8863 wppa-settings-autosave.php:8885
12086
  msgid "Do it!"
12087
  msgstr ""
12088
 
12089
+ #: wppa-settings-autosave.php:5994 wppa-settings-autosave.php:6574
12090
  msgid "To Go"
12091
  msgstr ""
12092
 
12093
+ #: wppa-settings-autosave.php:6002
12094
  msgid "Harmless and reverseable actions"
12095
  msgstr ""
12096
 
12097
+ #: wppa-settings-autosave.php:6004
12098
  msgid "Ignore concurrency"
12099
  msgstr ""
12100
 
12101
+ #: wppa-settings-autosave.php:6005
12102
  msgid "Ignore the prevention of concurrent actions."
12103
  msgstr ""
12104
 
12105
+ #: wppa-settings-autosave.php:6006
12106
  msgid ""
12107
  "This setting is meant to recover from deadlock situations only. Use with "
12108
  "care!"
12109
  msgstr ""
12110
 
12111
+ #: wppa-settings-autosave.php:6017
12112
  msgid "Setup"
12113
  msgstr ""
12114
 
12115
+ #: wppa-settings-autosave.php:6018
12116
  msgid "Re-initialize plugin."
12117
  msgstr ""
12118
 
12119
+ #: wppa-settings-autosave.php:6019
12120
  msgid ""
12121
  "Re-initilizes the plugin, (re)creates database tables and sets up default "
12122
  "settings and directories if required."
12123
  msgstr ""
12124
 
12125
+ #: wppa-settings-autosave.php:6020
12126
  msgid ""
12127
  "This action may be required to setup blogs in a multiblog (network) site as "
12128
  "well as in rare cases to correct initilization errors."
12129
  msgstr ""
12130
 
12131
+ #: wppa-settings-autosave.php:6031
12132
  #, fuzzy
12133
  msgid "Backup settings"
12134
  msgstr "Indstillinger"
12135
 
12136
+ #: wppa-settings-autosave.php:6032
12137
  msgid "Save all settings into a backup file."
12138
  msgstr ""
12139
 
12140
+ #: wppa-settings-autosave.php:6033
12141
  msgid "Saves all the settings into a backup file"
12142
  msgstr ""
12143
 
12144
+ #: wppa-settings-autosave.php:6044
12145
  #, fuzzy
12146
  msgid "Load settings"
12147
  msgstr "Indstillinger"
12148
 
12149
+ #: wppa-settings-autosave.php:6045
12150
  msgid "Restore all settings from defaults, a backup or skin file."
12151
  msgstr ""
12152
 
12153
+ #: wppa-settings-autosave.php:6046
12154
  msgid ""
12155
  "Restores all the settings from the factory supplied defaults, the backup you "
12156
  "created or from a skin file."
12157
  msgstr ""
12158
 
12159
+ #: wppa-settings-autosave.php:6052
12160
  #, fuzzy
12161
  msgid "--- set to defaults ---"
12162
  msgstr "--- vises ikke ---"
12163
 
12164
+ #: wppa-settings-autosave.php:6055
12165
  msgid "--- restore backup ---"
12166
  msgstr ""
12167
 
12168
+ #: wppa-settings-autosave.php:6077
12169
  msgid "Regenerate"
12170
  msgstr ""
12171
 
12172
+ #: wppa-settings-autosave.php:6078 wppa-settings-autosave.php:6079
12173
  #, fuzzy
12174
  msgid "Regenerate all thumbnails."
12175
  msgstr "Se"
12176
 
12177
+ #: wppa-settings-autosave.php:6082 wppa-settings-autosave.php:6186
12178
  msgid "Skip one"
12179
  msgstr ""
12180
 
12181
+ #: wppa-settings-autosave.php:6091
12182
  #, fuzzy
12183
  msgid "Rerate"
12184
  msgstr "Vedligehold"
12185
 
12186
+ #: wppa-settings-autosave.php:6092
12187
  msgid "Recalculate ratings."
12188
  msgstr ""
12189
 
12190
+ #: wppa-settings-autosave.php:6093
12191
  msgid ""
12192
  "This function will recalculate all mean photo ratings from the ratings table."
12193
  msgstr ""
12194
 
12195
+ #: wppa-settings-autosave.php:6094
12196
  msgid ""
12197
  "You may need this function after the re-import of previously exported photos"
12198
  msgstr ""
12199
 
12200
+ #: wppa-settings-autosave.php:6105
12201
  #, fuzzy
12202
  msgid "Lost and found"
12203
  msgstr "Billede ikke fundet"
12204
 
12205
+ #: wppa-settings-autosave.php:6106
12206
  msgid "Find \"lost\" photos."
12207
  msgstr ""
12208
 
12209
+ #: wppa-settings-autosave.php:6107
12210
  msgid "This function will attempt to find lost photos."
12211
  msgstr ""
12212
 
12213
+ #: wppa-settings-autosave.php:6118
12214
  msgid "Recuperate"
12215
  msgstr ""
12216
 
12217
+ #: wppa-settings-autosave.php:6120
12218
  msgid ""
12219
  "This action will attempt to find and register IPTC and EXIF data from photos "
12220
  "in the WPPA+ system."
12221
  msgstr ""
12222
 
12223
+ #: wppa-settings-autosave.php:6131
12224
  msgid "Remake Index Albums"
12225
  msgstr ""
12226
 
12227
+ #: wppa-settings-autosave.php:6132
12228
  msgid "Remakes the index database table for albums."
12229
  msgstr ""
12230
 
12231
+ #: wppa-settings-autosave.php:6144
12232
  #, fuzzy
12233
  msgid "Remake Index Photos"
12234
  msgstr "fotos"
12235
 
12236
+ #: wppa-settings-autosave.php:6145
12237
  msgid "Remakes the index database table for photos."
12238
  msgstr ""
12239
 
12240
+ #: wppa-settings-autosave.php:6163
12241
  msgid "Convert to tree"
12242
  msgstr ""
12243
 
12244
+ #: wppa-settings-autosave.php:6164
12245
  msgid "Convert filesystem to tree structure."
12246
  msgstr ""
12247
 
12248
+ #: wppa-settings-autosave.php:6167
12249
  msgid "Convert to flat"
12250
  msgstr ""
12251
 
12252
+ #: wppa-settings-autosave.php:6168
12253
  msgid "Convert filesystem to flat structure."
12254
  msgstr ""
12255
 
12256
+ #: wppa-settings-autosave.php:6170
12257
  msgid ""
12258
  "If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
12259
  "to flat first."
12260
  msgstr ""
12261
 
12262
+ #: wppa-settings-autosave.php:6182
12263
  msgid "Remake the photofiles from photo sourcefiles."
12264
  msgstr ""
12265
 
12266
+ #: wppa-settings-autosave.php:6183
12267
  msgid ""
12268
  "This action will remake the fullsize images, thumbnail images, and will "
12269
  "refresh the iptc and exif data for all photos where the source is found in "
12270
  "the corresponding album sub-directory of the source directory."
12271
  msgstr ""
12272
 
12273
+ #: wppa-settings-autosave.php:6195
12274
  msgid "Recalc sizes"
12275
  msgstr ""
12276
 
12277
+ #: wppa-settings-autosave.php:6196
12278
  msgid "Recalculate photosizes and save to db."
12279
  msgstr ""
12280
 
12281
+ #: wppa-settings-autosave.php:6208
12282
  msgid "Clearing and other irreverseable actions"
12283
  msgstr ""
12284
 
12285
+ #: wppa-settings-autosave.php:6210
12286
  #, fuzzy
12287
  msgid "Clear ratings"
12288
  msgstr "Altezza massima."
12289
 
12290
+ #: wppa-settings-autosave.php:6211
12291
  msgid "Reset all ratings."
12292
  msgstr ""
12293
 
12294
+ #: wppa-settings-autosave.php:6212
12295
  msgid "WARNING: If checked, this will clear all ratings in the system!"
12296
  msgstr ""
12297
 
12298
+ #: wppa-settings-autosave.php:6223
12299
  msgid "Clear viewcounts"
12300
  msgstr ""
12301
 
12302
+ #: wppa-settings-autosave.php:6224
12303
  msgid "Reset all viewcounts."
12304
  msgstr ""
12305
 
12306
+ #: wppa-settings-autosave.php:6225
12307
  msgid "WARNING: If checked, this will clear all viewcounts in the system!"
12308
  msgstr ""
12309
 
12310
+ #: wppa-settings-autosave.php:6236
12311
  msgid "Reset IPTC"
12312
  msgstr ""
12313
 
12314
+ #: wppa-settings-autosave.php:6237
12315
  #, fuzzy
12316
  msgid "Clear all IPTC data."
12317
  msgstr "Skjul IPTC data"
12318
 
12319
+ #: wppa-settings-autosave.php:6238
12320
  msgid "WARNING: If checked, this will clear all IPTC data in the system!"
12321
  msgstr ""
12322
 
12323
+ #: wppa-settings-autosave.php:6249
12324
  msgid "Reset EXIF"
12325
  msgstr ""
12326
 
12327
+ #: wppa-settings-autosave.php:6250
12328
  #, fuzzy
12329
  msgid "Clear all EXIF data."
12330
  msgstr "Skjul EXIF data"
12331
 
12332
+ #: wppa-settings-autosave.php:6251
12333
  msgid "WARNING: If checked, this will clear all EXIF data in the system!"
12334
  msgstr ""
12335
 
12336
+ #: wppa-settings-autosave.php:6262
12337
  #, fuzzy
12338
  msgid "Apply New Photodesc"
12339
  msgstr "Se forside fotos"
12340
 
12341
+ #: wppa-settings-autosave.php:6263
12342
  msgid "Apply New photo description on all photos in the system."
12343
  msgstr ""
12344
 
12345
+ #: wppa-settings-autosave.php:6275
12346
  msgid "Append to photodesc"
12347
  msgstr ""
12348
 
12349
+ #: wppa-settings-autosave.php:6276
12350
  #, fuzzy
12351
  msgid "Append this text to all photo descriptions."
12352
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
12353
 
12354
+ #: wppa-settings-autosave.php:6290
12355
  msgid "Remove from photodesc"
12356
  msgstr ""
12357
 
12358
+ #: wppa-settings-autosave.php:6291
12359
  #, fuzzy
12360
  msgid "Remove this text from all photo descriptions."
12361
  msgstr "Inds&aelig;t/rediger beskrivelse af foto"
12362
 
12363
+ #: wppa-settings-autosave.php:6305
12364
  #, fuzzy
12365
  msgid "Remove empty albums"
12366
  msgstr "Le impostazioni sono state aggiornate"
12367
 
12368
+ #: wppa-settings-autosave.php:6306
12369
  msgid "Removes albums that are not used."
12370
  msgstr ""
12371
 
12372
+ #: wppa-settings-autosave.php:6318
12373
  msgid "Remove file-ext"
12374
  msgstr ""
12375
 
12376
+ #: wppa-settings-autosave.php:6319
12377
  msgid "Remove possible file extension from photo name."
12378
  msgstr ""
12379
 
12380
+ #: wppa-settings-autosave.php:6320
12381
  msgid ""
12382
  "This may be required for old photos, uploaded when the option in Table IX-D3 "
12383
  "was not yet available/selected."
12384
  msgstr ""
12385
 
12386
+ #: wppa-settings-autosave.php:6331
12387
  msgid "Re-add file-ext"
12388
  msgstr ""
12389
 
12390
+ #: wppa-settings-autosave.php:6332
12391
  msgid "Revert the <i>Remove file-ext</i> action."
12392
  msgstr ""
12393
 
12394
+ #: wppa-settings-autosave.php:6344
12395
  msgid "Watermark all"
12396
  msgstr ""
12397
 
12398
+ #: wppa-settings-autosave.php:6345
12399
  msgid "Apply watermark according to current settings to all photos."
12400
  msgstr ""
12401
 
12402
+ #: wppa-settings-autosave.php:6346
12403
  msgid "See Table IX_F for the current watermark settings"
12404
  msgstr ""
12405
 
12406
+ #: wppa-settings-autosave.php:6357
12407
  #, fuzzy
12408
  msgid "Create all autopages"
12409
  msgstr "Impossibile creare album. "
12410
 
12411
+ #: wppa-settings-autosave.php:6358
12412
  msgid "Create all the pages to display slides individually."
12413
  msgstr ""
12414
 
12415
+ #: wppa-settings-autosave.php:6359 wppa-settings-autosave.php:6373
12416
  msgid "See also Table IV-A10."
12417
  msgstr ""
12418
 
12419
+ #: wppa-settings-autosave.php:6360
12420
  msgid ""
12421
  "Make sure you have a custom menu and the \"Automatically add new top-level "
12422
  "pages to this menu\" box UNticked!!"
12423
  msgstr ""
12424
 
12425
+ #: wppa-settings-autosave.php:6371
12426
  #, fuzzy
12427
  msgid "Delete all autopages"
12428
  msgstr "Impossibile creare album. "
12429
 
12430
+ #: wppa-settings-autosave.php:6372
12431
  msgid "Delete all the pages to display slides individually."
12432
  msgstr ""
12433
 
12434
+ #: wppa-settings-autosave.php:6385
12435
  msgid "Leading zeroes"
12436
  msgstr ""
12437
 
12438
+ #: wppa-settings-autosave.php:6386
12439
  msgid "If photoname numeric, add leading zeros"
12440
  msgstr ""
12441
 
12442
+ #: wppa-settings-autosave.php:6387
12443
  msgid ""
12444
  "You can extend the name with leading zeros, so alphabetic sort becomes equal "
12445
  "to numeric sort order."
12446
  msgstr ""
12447
 
12448
+ #: wppa-settings-autosave.php:6390
12449
  msgid "Total chars"
12450
  msgstr ""
12451
 
12452
+ #: wppa-settings-autosave.php:6399
12453
  msgid "Add GPX tag"
12454
  msgstr ""
12455
 
12456
+ #: wppa-settings-autosave.php:6400
12457
  msgid "Make sure photos with gpx data have a Gpx tag"
12458
  msgstr ""
12459
 
12460
+ #: wppa-settings-autosave.php:6413 wppa-settings-autosave.php:7182
12461
  msgid "Optimize files"
12462
  msgstr ""
12463
 
12464
+ #: wppa-settings-autosave.php:6414
12465
  msgid "Optimize with EWWW image optimizer"
12466
  msgstr ""
12467
 
12468
+ #: wppa-settings-autosave.php:6427
12469
  #, fuzzy
12470
  msgid "Edit tag"
12471
  msgstr "N&aelig;ste billede"
12472
 
12473
+ #: wppa-settings-autosave.php:6428
12474
  msgid "Globally change a tagname."
12475
  msgstr ""
12476
 
12477
+ #: wppa-settings-autosave.php:6434
12478
  #, fuzzy
12479
  msgid "-select a tag-"
12480
  msgstr ""
12481
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
12482
  "di ricerca differente."
12483
 
12484
+ #: wppa-settings-autosave.php:6440
12485
  msgid "Tag:"
12486
  msgstr ""
12487
 
12488
+ #: wppa-settings-autosave.php:6441
12489
  msgid "Change to:"
12490
  msgstr ""
12491
 
12492
+ #: wppa-settings-autosave.php:6450
12493
  msgid "Synchronize Cloudinary"
12494
  msgstr ""
12495
 
12496
+ #: wppa-settings-autosave.php:6451
12497
  msgid "Removes/adds images in the cloud."
12498
  msgstr ""
12499
 
12500
+ #: wppa-settings-autosave.php:6452
12501
  msgid "Removes old images and verifies/adds new images to Cloudinary."
12502
  msgstr ""
12503
 
12504
+ #: wppa-settings-autosave.php:6453
12505
  msgid "See Table IX-K4.7 for the configured lifetime."
12506
  msgstr ""
12507
 
12508
+ #: wppa-settings-autosave.php:6464
12509
  msgid "Fix tags"
12510
  msgstr ""
12511
 
12512
+ #: wppa-settings-autosave.php:6465
12513
  msgid "Make sure photo tags format is uptodate"
12514
  msgstr ""
12515
 
12516
+ #: wppa-settings-autosave.php:6466
12517
  msgid "Fixes tags to be conform current database rules."
12518
  msgstr ""
12519
 
12520
+ #: wppa-settings-autosave.php:6477
12521
  msgid "Fix cats"
12522
  msgstr ""
12523
 
12524
+ #: wppa-settings-autosave.php:6478
12525
  msgid "Make sure album cats format is uptodate"
12526
  msgstr ""
12527
 
12528
+ #: wppa-settings-autosave.php:6479
12529
  msgid "Fixes cats to be conform current database rules."
12530
  msgstr ""
12531
 
12532
+ #: wppa-settings-autosave.php:6505
12533
  #, fuzzy
12534
  msgid "Listings"
12535
  msgstr "Indstillinger"
12536
 
12537
+ #: wppa-settings-autosave.php:6507
12538
  msgid "List Logfile"
12539
  msgstr ""
12540
 
12541
+ #: wppa-settings-autosave.php:6508
12542
  msgid "Show the content of wppa+ (error) log."
12543
  msgstr ""
12544
 
12545
+ #: wppa-settings-autosave.php:6512
12546
  msgid "Purge logfile"
12547
  msgstr ""
12548
 
12549
+ #: wppa-settings-autosave.php:6521
12550
  #, fuzzy
12551
  msgid "List Ratings"
12552
  msgstr "Bed&oslash;mmelse: %s"
12553
 
12554
+ #: wppa-settings-autosave.php:6522
12555
  #, fuzzy
12556
  msgid "Show the most recent ratings."
12557
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
12558
 
12559
+ #: wppa-settings-autosave.php:6535
12560
  msgid "List Index"
12561
  msgstr ""
12562
 
12563
+ #: wppa-settings-autosave.php:6536
12564
  msgid "Show the content if the index table."
12565
  msgstr ""
12566
 
12567
+ #: wppa-settings-autosave.php:6540
12568
  msgid "Start at text:"
12569
  msgstr ""
12570
 
12571
+ #: wppa-settings-autosave.php:6550
12572
  msgid "List active sessions"
12573
  msgstr ""
12574
 
12575
+ #: wppa-settings-autosave.php:6551
12576
  msgid "Show the content of the sessions table."
12577
  msgstr ""
12578
 
12579
+ #: wppa-settings-autosave.php:6584
12580
  msgid "Table IX:"
12581
  msgstr ""
12582
 
12583
+ #: wppa-settings-autosave.php:6584
12584
  msgid "Miscellaneous:"
12585
  msgstr ""
12586
 
12587
+ #: wppa-settings-autosave.php:6585
12588
  msgid "This table lists all settings that do not fit into an other table"
12589
  msgstr ""
12590
 
12591
+ #: wppa-settings-autosave.php:6603
12592
  msgid "Internal engine related settings"
12593
  msgstr ""
12594
 
12595
+ #: wppa-settings-autosave.php:6605
12596
  msgid "WPPA+ Filter priority"
12597
  msgstr ""
12598
 
12599
+ #: wppa-settings-autosave.php:6606
12600
  msgid "Sets the priority of the wppa+ content filter."
12601
  msgstr ""
12602
 
12603
+ #: wppa-settings-autosave.php:6607 wppa-settings-autosave.php:6616
12604
  msgid ""
12605
  "If you encounter conflicts with the theme or other plugins, increasing this "
12606
  "value sometimes helps. Use with great care!"
12607
  msgstr ""
12608
 
12609
+ #: wppa-settings-autosave.php:6614
12610
  msgid "Do_shortcode priority"
12611
  msgstr ""
12612
 
12613
+ #: wppa-settings-autosave.php:6615
12614
  msgid "Sets the priority of the do_shortcode() content filter."
12615
  msgstr ""
12616
 
12617
+ #: wppa-settings-autosave.php:6623
12618
  #, fuzzy
12619
  msgid "WPPA shortcode at Filter priority"
12620
  msgstr "Lukkerhastighedsprioritet AE"
12621
 
12622
+ #: wppa-settings-autosave.php:6624
12623
  msgid "Execute shortcode expansion on filter priority in posts and pages."
12624
  msgstr ""
12625
 
12626
+ #: wppa-settings-autosave.php:6625 wppa-settings-autosave.php:6634
12627
  msgid "Use to fix certain layout problems"
12628
  msgstr ""
12629
 
12630
+ #: wppa-settings-autosave.php:6632
12631
  msgid "WPPA shortcode at Filter priority widget"
12632
  msgstr ""
12633
 
12634
+ #: wppa-settings-autosave.php:6633
12635
  msgid "Execute shortcode expansion on filter priority in widgets."
12636
  msgstr ""
12637
 
12638
+ #: wppa-settings-autosave.php:6641
12639
  msgid "JPG image quality"
12640
  msgstr ""
12641
 
12642
+ #: wppa-settings-autosave.php:6642
12643
  msgid "The jpg quality when photos are downsized"
12644
  msgstr ""
12645
 
12646
+ #: wppa-settings-autosave.php:6643
12647
  msgid "The higher the number the better the quality but the larger the file"
12648
  msgstr ""
12649
 
12650
+ #: wppa-settings-autosave.php:6644
12651
  msgid "Possible values 20..100"
12652
  msgstr ""
12653
 
12654
+ #: wppa-settings-autosave.php:6651
12655
  msgid "Allow WPPA+ Debugging"
12656
  msgstr ""
12657
 
12658
+ #: wppa-settings-autosave.php:6652
12659
  msgid "Allow the use of &amp;debug=.. in urls to this site."
12660
  msgstr ""
12661
 
12662
+ #: wppa-settings-autosave.php:6653
12663
  msgid ""
12664
  "If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
12665
  "site will generate the display of special WPPA+ diagnostics, as well as php "
12666
  "warnings"
12667
  msgstr ""
12668
 
12669
+ #: wppa-settings-autosave.php:6660
12670
  msgid "Auto continue"
12671
  msgstr ""
12672
 
12673
+ #: wppa-settings-autosave.php:6661
12674
  msgid "Continue automatic after time out"
12675
  msgstr ""
12676
 
12677
+ #: wppa-settings-autosave.php:6662
12678
  msgid ""
12679
  "If checked, an attempt will be made to restart an admin process when the "
12680
  "time is out."
12681
  msgstr ""
12682
 
12683
+ #: wppa-settings-autosave.php:6670
12684
  msgid "Set max execution time here."
12685
  msgstr ""
12686
 
12687
+ #: wppa-settings-autosave.php:6671
12688
  msgid ""
12689
  "If your php config does not properly set the max execution time, you can set "
12690
  "it here. Seconds, 0 means do not change."
12691
  msgstr ""
12692
 
12693
+ #: wppa-settings-autosave.php:6672
12694
  msgid "A safe value is 45"
12695
  msgstr ""
12696
 
12697
+ #: wppa-settings-autosave.php:6679
12698
  msgid "Feed use thumb"
12699
  msgstr ""
12700
 
12701
+ #: wppa-settings-autosave.php:6680
12702
  msgid "Feeds use thumbnail pictures always."
12703
  msgstr ""
12704
 
12705
+ #: wppa-settings-autosave.php:6688
12706
  msgid "Enable <i>in-line</i> settings"
12707
  msgstr ""
12708
 
12709
+ #: wppa-settings-autosave.php:6689
12710
  msgid "Activates shortcode [wppa_set][/wppa_set]."
12711
  msgstr ""
12712
 
12713
+ #: wppa-settings-autosave.php:6690
12714
  msgid ""
12715
  "Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
12716
  msgstr ""
12717
 
12718
+ #: wppa-settings-autosave.php:6691
12719
  msgid ""
12720
  "Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
12721
  "sets the thumbnail type to vertical masonry style"
12722
  msgstr ""
12723
 
12724
+ #: wppa-settings-autosave.php:6692
12725
  msgid "Do not forget to reset with [wppa_set][/wppa_set]"
12726
  msgstr ""
12727
 
12728
+ #: wppa-settings-autosave.php:6693
12729
  msgid "Use with great care! There is no check on validity of values!"
12730
  msgstr ""
12731
 
12732
+ #: wppa-settings-autosave.php:6700
12733
  msgid "Runtime modifyable settings"
12734
  msgstr ""
12735
 
12736
+ #: wppa-settings-autosave.php:6701
12737
  msgid "The setting slugs that may be altered using [wppa_set] shortcode."
12738
  msgstr ""
12739
 
12740
+ #: wppa-settings-autosave.php:6709
12741
+ #, fuzzy
12742
+ msgid "Use translations"
12743
+ msgstr "Ingen blitz funktion"
12744
+
12745
+ #: wppa-settings-autosave.php:6710
12746
+ msgid "If UNticked, wppa is in english always."
12747
+ msgstr ""
12748
+
12749
+ #: wppa-settings-autosave.php:6711
12750
+ msgid "Used to bypass the loading of any language file for wppa."
12751
+ msgstr ""
12752
+
12753
+ #: wppa-settings-autosave.php:6719
12754
  msgid "WPPA+ Admin related miscellaneous settings"
12755
  msgstr ""
12756
 
12757
+ #: wppa-settings-autosave.php:6721
12758
  msgid "Allow HTML"
12759
  msgstr ""
12760
 
12761
+ #: wppa-settings-autosave.php:6722
12762
  msgid "Allow HTML in album and photo descriptions."
12763
  msgstr ""
12764
 
12765
+ #: wppa-settings-autosave.php:6723
12766
  msgid ""
12767
  "If checked: html is allowed. WARNING: No checks on syntax, it is your own "
12768
  "responsability to close tags properly!"
12769
  msgstr ""
12770
 
12771
+ #: wppa-settings-autosave.php:6730
12772
  msgid "Check tag balance"
12773
  msgstr ""
12774
 
12775
+ #: wppa-settings-autosave.php:6731
12776
  msgid "Check if the HTML tags are properly closed: \"balanced\"."
12777
  msgstr ""
12778
 
12779
+ #: wppa-settings-autosave.php:6732
12780
  msgid ""
12781
  "If the HTML tags in an album or a photo description are not in balance, the "
12782
  "description is not updated, an errormessage is displayed"
12783
  msgstr ""
12784
 
12785
+ #: wppa-settings-autosave.php:6739
12786
  msgid "Use WP editor"
12787
  msgstr ""
12788
 
12789
+ #: wppa-settings-autosave.php:6740
12790
  msgid "Use the wp editor for multiline text fields."
12791
  msgstr ""
12792
 
12793
+ #: wppa-settings-autosave.php:6748
12794
  msgid "Album sel hierarchic"
12795
  msgstr ""
12796
 
12797
+ #: wppa-settings-autosave.php:6749
12798
  msgid "Show albums with (grand)parents in selection lists."
12799
  msgstr ""
12800
 
12801
+ #: wppa-settings-autosave.php:6757
12802
  msgid "Page sel hierarchic"
12803
  msgstr ""
12804
 
12805
+ #: wppa-settings-autosave.php:6758
12806
  msgid "Show pages with (grand)parents in selection lists."
12807
  msgstr ""
12808
 
12809
+ #: wppa-settings-autosave.php:6767
12810
  msgid "Photo admin page size"
12811
  msgstr ""
12812
 
12813
+ #: wppa-settings-autosave.php:6768
12814
  msgid ""
12815
  "The number of photos per page on the <br/>Edit Album -> Manage photos and "
12816
  "Edit Photos admin pages."
12817
  msgstr ""
12818
 
12819
+ #: wppa-settings-autosave.php:6778
12820
  #, fuzzy
12821
  msgid "Comment admin page size"
12822
  msgstr "%d kommentarer"
12823
 
12824
+ #: wppa-settings-autosave.php:6779
12825
  msgid "The number of comments per page on the Comments admin pages."
12826
  msgstr ""
12827
 
12828
+ #: wppa-settings-autosave.php:6789
12829
  msgid "Geo info edit"
12830
  msgstr ""
12831
 
12832
+ #: wppa-settings-autosave.php:6790
12833
  msgid "Lattitude and longitude may be edited in photo admin."
12834
  msgstr ""
12835
 
12836
+ #: wppa-settings-autosave.php:6798
12837
  msgid "Admin bar menu admin"
12838
  msgstr ""
12839
 
12840
+ #: wppa-settings-autosave.php:6799
12841
  msgid "Show menu on admin bar on admin pages."
12842
  msgstr ""
12843
 
12844
+ #: wppa-settings-autosave.php:6807
12845
  msgid "Admin bar menu frontend"
12846
  msgstr ""
12847
 
12848
+ #: wppa-settings-autosave.php:6808
12849
  msgid "Show menu on admin bar on frontend pages."
12850
  msgstr ""
12851
 
12852
+ #: wppa-settings-autosave.php:6816
12853
  msgid "Add shortcode to posts"
12854
  msgstr ""
12855
 
12856
+ #: wppa-settings-autosave.php:6817
12857
  msgid "Add a shortcode to the end of all posts."
12858
  msgstr ""
12859
 
12860
+ #: wppa-settings-autosave.php:6825
12861
  msgid "Shortcode to add"
12862
  msgstr ""
12863
 
12864
+ #: wppa-settings-autosave.php:6826
12865
  msgid "The shortcode to be added to the posts."
12866
  msgstr ""
12867
 
12868
+ #: wppa-settings-autosave.php:6834
12869
  msgid "We use Scripts"
12870
  msgstr ""
12871
 
12872
+ #: wppa-settings-autosave.php:6835
12873
  msgid "Use scripting syntax in shortcode generator."
12874
  msgstr ""
12875
 
12876
+ #: wppa-settings-autosave.php:6836
12877
  msgid ""
12878
  "This setting defines if the shortcode generator outputs old style script "
12879
  "tags or new style shortcodes."
12880
  msgstr ""
12881
 
12882
+ #: wppa-settings-autosave.php:6844
12883
  msgid "Import page prieviews"
12884
  msgstr ""
12885
 
12886
+ #: wppa-settings-autosave.php:6845
12887
  msgid "Show thumbnail previews in import admin page."
12888
  msgstr ""
12889
 
12890
+ #: wppa-settings-autosave.php:6853
12891
  #, fuzzy
12892
  msgid "Upload audiostub"
12893
  msgstr "Indsend foto"
12894
 
12895
+ #: wppa-settings-autosave.php:6854
12896
  msgid "Upload a new audio stub file"
12897
  msgstr ""
12898
 
12899
+ #: wppa-settings-autosave.php:6858
12900
  #, fuzzy
12901
  msgid "Upload audio stub image"
12902
  msgstr "Uploaded fil er ikke et billede"
12903
 
12904
+ #: wppa-settings-autosave.php:6863
12905
  msgid "Confirm create"
12906
  msgstr ""
12907
 
12908
+ #: wppa-settings-autosave.php:6864
12909
  msgid "Display confirmation dialog before creating album."
12910
  msgstr ""
12911
 
12912
+ #: wppa-settings-autosave.php:6873
12913
  msgid "SEO related settings"
12914
  msgstr ""
12915
 
12916
+ #: wppa-settings-autosave.php:6875
12917
  msgid "Meta on page"
12918
  msgstr ""
12919
 
12920
+ #: wppa-settings-autosave.php:6876
12921
  msgid "Meta tags for photos on the page."
12922
  msgstr ""
12923
 
12924
+ #: wppa-settings-autosave.php:6877
12925
  msgid ""
12926
  "If checked, the header of the page will contain metatags that refer to "
12927
  "featured photos on the page in the page context."
12928
  msgstr ""
12929
 
12930
+ #: wppa-settings-autosave.php:6884
12931
  msgid "Meta all"
12932
  msgstr ""
12933
 
12934
+ #: wppa-settings-autosave.php:6885
12935
  #, fuzzy
12936
  msgid "Meta tags for all featured photos."
12937
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
12938
 
12939
+ #: wppa-settings-autosave.php:6886
12940
  msgid ""
12941
  "If checked, the header of the page will contain metatags that refer to all "
12942
  "featured photo files."
12943
  msgstr ""
12944
 
12945
+ #: wppa-settings-autosave.php:6887
12946
  msgid ""
12947
  "If you have many featured photos, you might wish to uncheck this item to "
12948
  "reduce the size of the page header."
12949
  msgstr ""
12950
 
12951
+ #: wppa-settings-autosave.php:6894
12952
  msgid "Add og meta tags"
12953
  msgstr ""
12954
 
12955
+ #: wppa-settings-autosave.php:6895
12956
  msgid "Add og meta tags to the page header."
12957
  msgstr ""
12958
 
12959
+ #: wppa-settings-autosave.php:6898
12960
  msgid ""
12961
  "Turning this off may affect the functionality of social media items in the "
12962
  "share box that rely on open graph tags information."
12963
  msgstr ""
12964
 
12965
+ #: wppa-settings-autosave.php:6904
12966
  msgid "Image Alt attribute type"
12967
  msgstr ""
12968
 
12969
+ #: wppa-settings-autosave.php:6905
12970
  msgid "Select kind of HTML alt=\"\" content for images."
12971
  msgstr ""
12972
 
12973
+ #: wppa-settings-autosave.php:6908
12974
  #, fuzzy
12975
  msgid "photo name"
12976
  msgstr "Indtast foto navn"
12977
 
12978
+ #: wppa-settings-autosave.php:6908
12979
  msgid "name without file-ext"
12980
  msgstr ""
12981
 
12982
+ #: wppa-settings-autosave.php:6908
12983
  #, fuzzy
12984
  msgid "set in album admin"
12985
  msgstr ""
12986
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
12987
  "di ricerca differente."
12988
 
12989
+ #: wppa-settings-autosave.php:6915
12990
  msgid "New Album and New Photo related miscellaneous settings"
12991
  msgstr ""
12992
 
12993
+ #: wppa-settings-autosave.php:6918
12994
  msgid "Maximum time an album is indicated as New!"
12995
  msgstr ""
12996
 
12997
+ #: wppa-settings-autosave.php:6922 wppa-settings-autosave.php:6963
12998
  #, fuzzy
12999
  msgid "One hour"
13000
  msgstr "1 time"
13001
 
13002
+ #: wppa-settings-autosave.php:6923 wppa-settings-autosave.php:6964
13003
+ #: wppa-settings-autosave.php:7982
13004
  #, fuzzy
13005
  msgid "One day"
13006
  msgstr "1 dag"
13007
 
13008
+ #: wppa-settings-autosave.php:6924 wppa-settings-autosave.php:6965
13009
  #, fuzzy
13010
  msgid "Two days"
13011
  msgstr "dage"
13012
 
13013
+ #: wppa-settings-autosave.php:6925 wppa-settings-autosave.php:6966
13014
  msgid "Three days"
13015
  msgstr ""
13016
 
13017
+ #: wppa-settings-autosave.php:6926 wppa-settings-autosave.php:6967
13018
  #, fuzzy
13019
  msgid "Four days"
13020
  msgstr "dage"
13021
 
13022
+ #: wppa-settings-autosave.php:6927 wppa-settings-autosave.php:6968
13023
  #, fuzzy
13024
  msgid "Five days"
13025
  msgstr "dage"
13026
 
13027
+ #: wppa-settings-autosave.php:6928 wppa-settings-autosave.php:6969
13028
  #, fuzzy
13029
  msgid "Six days"
13030
  msgstr "dage"
13031
 
13032
+ #: wppa-settings-autosave.php:6929 wppa-settings-autosave.php:6970
13033
+ #: wppa-settings-autosave.php:7983
13034
  #, fuzzy
13035
  msgid "One week"
13036
  msgstr "1 uge"
13037
 
13038
+ #: wppa-settings-autosave.php:6930 wppa-settings-autosave.php:6971
13039
  msgid "Eight days"
13040
  msgstr ""
13041
 
13042
+ #: wppa-settings-autosave.php:6931 wppa-settings-autosave.php:6972
13043
  #, fuzzy
13044
  msgid "Nine days"
13045
  msgstr "dage"
13046
 
13047
+ #: wppa-settings-autosave.php:6932 wppa-settings-autosave.php:6973
13048
  #, fuzzy
13049
  msgid "Ten days"
13050
  msgstr "dage"
13051
 
13052
+ #: wppa-settings-autosave.php:6933 wppa-settings-autosave.php:6974
13053
  #, fuzzy
13054
  msgid "Two weeks"
13055
  msgstr "uger"
13056
 
13057
+ #: wppa-settings-autosave.php:6934 wppa-settings-autosave.php:6975
13058
  #, fuzzy
13059
  msgid "Three weeks"
13060
  msgstr "uger"
13061
 
13062
+ #: wppa-settings-autosave.php:6935 wppa-settings-autosave.php:6976
13063
  #, fuzzy
13064
  msgid "Four weeks"
13065
  msgstr "uger"
13066
 
13067
+ #: wppa-settings-autosave.php:6936 wppa-settings-autosave.php:6977
13068
+ #: wppa-settings-autosave.php:7984
13069
  #, fuzzy
13070
  msgid "One month"
13071
  msgstr "1 m&aring;ned"
13072
 
13073
+ #: wppa-settings-autosave.php:6958
13074
  #, fuzzy
13075
  msgid "New Photo"
13076
  msgstr "N&aelig;ste billede"
13077
 
13078
+ #: wppa-settings-autosave.php:6959
13079
  msgid "Maximum time a photo is indicated as New!"
13080
  msgstr ""
13081
 
13082
+ #: wppa-settings-autosave.php:6999
13083
  msgid "Limit LasTen New"
13084
  msgstr ""
13085
 
13086
+ #: wppa-settings-autosave.php:7000
13087
  msgid "Limits the LasTen photos to those that are 'New'."
13088
  msgstr ""
13089
 
13090
+ #: wppa-settings-autosave.php:7001
13091
  msgid ""
13092
  "If you tick this box and configured the new photo time, you can even limit "
13093
  "the number by the setting in Table I-F7, or set that number to an unlikely "
13094
  "high value."
13095
  msgstr ""
13096
 
13097
+ #: wppa-settings-autosave.php:7008
13098
  msgid "Apply Newphoto desc"
13099
  msgstr ""
13100
 
13101
+ #: wppa-settings-autosave.php:7009
13102
  msgid "Give each new photo a standard description."
13103
  msgstr ""
13104
 
13105
+ #: wppa-settings-autosave.php:7010
13106
  msgid ""
13107
  "If checked, each new photo will get the description (template) as specified "
13108
  "in the next item."
13109
  msgstr ""
13110
 
13111
+ #: wppa-settings-autosave.php:7017
13112
  #, fuzzy
13113
  msgid "New photo desc"
13114
  msgstr "Nyt foto indsendt: %s"
13115
 
13116
+ #: wppa-settings-autosave.php:7018
13117
  msgid "The description (template) to add to a new photo."
13118
  msgstr ""
13119
 
13120
+ #: wppa-settings-autosave.php:7019
13121
  #, fuzzy
13122
  msgid "Enter the default description."
13123
  msgstr "Inserisci / modifica la descrizione per questo album."
13124
 
13125
+ #: wppa-settings-autosave.php:7020
13126
  msgid "If you use html, please check item A-1 of this table."
13127
  msgstr ""
13128
 
13129
+ #: wppa-settings-autosave.php:7028
13130
  msgid "New albums are created with this upload limit."
13131
  msgstr ""
13132
 
13133
+ #: wppa-settings-autosave.php:7029
13134
  msgid ""
13135
  "Administrators can change the limit settings in the \"Edit Album Information"
13136
  "\" admin page."
13137
  msgstr ""
13138
 
13139
+ #: wppa-settings-autosave.php:7046
13140
  msgid "Default parent"
13141
  msgstr ""
13142
 
13143
+ #: wppa-settings-autosave.php:7047
13144
  msgid "The parent album of new albums."
13145
  msgstr ""
13146
 
13147
+ #: wppa-settings-autosave.php:7064
13148
  msgid "Default parent always"
13149
  msgstr ""
13150
 
13151
+ #: wppa-settings-autosave.php:7065
13152
  msgid ""
13153
  "The parent album of new albums is always the default, except for "
13154
  "administrators."
13155
  msgstr ""
13156
 
13157
+ #: wppa-settings-autosave.php:7073
13158
  msgid "Show album full"
13159
  msgstr ""
13160
 
13161
+ #: wppa-settings-autosave.php:7074
13162
  msgid "Show the Upload limit reached message if appropriate."
13163
  msgstr ""
13164
 
13165
+ #: wppa-settings-autosave.php:7082
13166
  #, fuzzy
13167
  msgid "Grant an album"
13168
  msgstr "Impossibile creare album. "
13169
 
13170
+ #: wppa-settings-autosave.php:7083
13171
  msgid "Create an album for each user logging in."
13172
  msgstr ""
13173
 
13174
+ #: wppa-settings-autosave.php:7091
13175
  #, fuzzy
13176
  msgid "Grant album name"
13177
  msgstr ""
13178
  "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
13179
  "per i titoli delle copertine degli album."
13180
 
13181
+ #: wppa-settings-autosave.php:7092
13182
  msgid "The name to be used for the album."
13183
  msgstr ""
13184
 
13185
+ #: wppa-settings-autosave.php:7095
13186
  #, fuzzy
13187
  msgid "Login name"
13188
  msgstr "Dit navn"
13189
 
13190
+ #: wppa-settings-autosave.php:7095 wppa-upldr-widget.php:184
13191
  msgid "Display name"
13192
  msgstr ""
13193
 
13194
+ #: wppa-settings-autosave.php:7095
13195
  msgid "Id"
13196
  msgstr ""
13197
 
13198
+ #: wppa-settings-autosave.php:7095
13199
  msgid "Firstname Lastname"
13200
  msgstr ""
13201
 
13202
+ #: wppa-settings-autosave.php:7102
13203
  msgid "Grant parent"
13204
  msgstr ""
13205
 
13206
+ #: wppa-settings-autosave.php:7103
13207
  msgid "The parent album of the auto created albums."
13208
  msgstr ""
13209
 
13210
+ #: wppa-settings-autosave.php:7120
13211
  #, fuzzy
13212
  msgid "Max user albums"
13213
  msgstr ""
13214
  "Puoi creare dei vari album che contengono delle foto così come creare allo "
13215
  "stesso tempo dei sotto-album."
13216
 
13217
+ #: wppa-settings-autosave.php:7121
13218
  msgid "The max number of albums a user can create."
13219
  msgstr ""
13220
 
13221
+ #: wppa-settings-autosave.php:7122
13222
  msgid ""
13223
  "The maximum number of albums a user can create when he is not admin and "
13224
  "owner only is active"
13225
  msgstr ""
13226
 
13227
+ #: wppa-settings-autosave.php:7123
13228
  msgid "A number of 0 means No limit"
13229
  msgstr ""
13230
 
13231
+ #: wppa-settings-autosave.php:7130
13232
  #, fuzzy
13233
  msgid "Default photo name"
13234
  msgstr "Standard foto album for"
13235
 
13236
+ #: wppa-settings-autosave.php:7131
13237
  msgid "Select the way the name of a new uploaded photo should be determined."
13238
  msgstr ""
13239
 
13240
+ #: wppa-settings-autosave.php:7134
13241
  msgid "Filename"
13242
  msgstr ""
13243
 
13244
+ #: wppa-settings-autosave.php:7135
13245
  msgid "Filename without extension"
13246
  msgstr ""
13247
 
13248
+ #: wppa-settings-autosave.php:7136
13249
  msgid "IPTC Tag 2#005 (Graphic name)"
13250
  msgstr ""
13251
 
13252
+ #: wppa-settings-autosave.php:7137
13253
  msgid "IPTC Tag 2#120 (Caption)"
13254
  msgstr ""
13255
 
13256
+ #: wppa-settings-autosave.php:7138
13257
  msgid "No name at all"
13258
  msgstr ""
13259
 
13260
+ #: wppa-settings-autosave.php:7146
13261
  #, fuzzy
13262
  msgid "Default coverphoto"
13263
  msgstr "Se forside foto"
13264
 
13265
+ #: wppa-settings-autosave.php:7147
13266
  msgid "Name of photofile to become cover image"
13267
  msgstr ""
13268
 
13269
+ #: wppa-settings-autosave.php:7148
13270
  msgid ""
13271
  "If you name a photofile like this setting before upload, it will become the "
13272
  "coverimage automaticly."
13273
  msgstr ""
13274
 
13275
+ #: wppa-settings-autosave.php:7155
13276
  msgid "Copy Timestamp"
13277
  msgstr ""
13278
 
13279
+ #: wppa-settings-autosave.php:7156
13280
  msgid "Copy timestamp when copying photo."
13281
  msgstr ""
13282
 
13283
+ #: wppa-settings-autosave.php:7157
13284
  msgid "If checked, the copied photo is not \"new\""
13285
  msgstr ""
13286
 
13287
+ #: wppa-settings-autosave.php:7164
13288
  msgid "Copy Owner"
13289
  msgstr ""
13290
 
13291
+ #: wppa-settings-autosave.php:7165
13292
  msgid "Copy the owner when copying photo."
13293
  msgstr ""
13294
 
13295
+ #: wppa-settings-autosave.php:7173
13296
  msgid "FE Albums public"
13297
  msgstr ""
13298
 
13299
+ #: wppa-settings-autosave.php:7174
13300
  msgid "Frontend created albums are --- public ---"
13301
  msgstr ""
13302
 
13303
+ #: wppa-settings-autosave.php:7183
13304
  msgid "Optimize image files right after upload/import"
13305
  msgstr ""
13306
 
13307
+ #: wppa-settings-autosave.php:7184
13308
  msgid "This option requires the plugin EWWW Image Optimizer to be activated"
13309
  msgstr ""
13310
 
13311
+ #: wppa-settings-autosave.php:7191
13312
  #, fuzzy
13313
  msgid "Default album linktype"
13314
  msgstr "Standard foto album for"
13315
 
13316
+ #: wppa-settings-autosave.php:7192
13317
  msgid "The album linktype for new albums"
13318
  msgstr ""
13319
 
13320
+ #: wppa-settings-autosave.php:7211
13321
  msgid "Search Albums and Photos related settings"
13322
  msgstr ""
13323
 
13324
+ #: wppa-settings-autosave.php:7213
13325
  #, fuzzy
13326
  msgid "Search page"
13327
  msgstr "Cerca"
13328
 
13329
+ #: wppa-settings-autosave.php:7214
13330
  msgid "Display the search results on page."
13331
  msgstr ""
13332
 
13333
+ #: wppa-settings-autosave.php:7215
13334
  #, php-format
13335
  msgid ""
13336
  "Select the page to be used to display search results. The page MUST contain "
13337
  "%%wppa%% or [wppa][/wppa]."
13338
  msgstr ""
13339
 
13340
+ #: wppa-settings-autosave.php:7216
13341
  msgid "You may give it the title \"Search results\" or something alike."
13342
  msgstr ""
13343
 
13344
+ #: wppa-settings-autosave.php:7217
13345
  msgid ""
13346
  "Or you ou may use the standard page on which you display the generic album."
13347
  msgstr ""
13348
 
13349
+ #: wppa-settings-autosave.php:7250
13350
  msgid "Exclude separate"
13351
  msgstr ""
13352
 
13353
+ #: wppa-settings-autosave.php:7251
13354
  #, fuzzy
13355
  msgid "Do not search 'separate' albums."
13356
  msgstr "Impossibile creare album. "
13357
 
13358
+ #: wppa-settings-autosave.php:7252
13359
  msgid ""
13360
  "When checked, albums (and photos in them) that have the parent set to --- "
13361
  "separate --- will be excluded from being searched."
13362
  msgstr ""
13363
 
13364
+ #: wppa-settings-autosave.php:7259
13365
  msgid "Include tags"
13366
  msgstr ""
13367
 
13368
+ #: wppa-settings-autosave.php:7260
13369
  msgid "Do also search the photo tags."
13370
  msgstr ""
13371
 
13372
+ #: wppa-settings-autosave.php:7261
13373
  msgid "When checked, the tags of the photo will also be searched."
13374
  msgstr ""
13375
 
13376
+ #: wppa-settings-autosave.php:7268
13377
  msgid "Include categories"
13378
  msgstr ""
13379
 
13380
+ #: wppa-settings-autosave.php:7269
13381
  msgid "Do also search the album categories."
13382
  msgstr ""
13383
 
13384
+ #: wppa-settings-autosave.php:7270
13385
  msgid "When checked, the categories of the album will also be searched."
13386
  msgstr ""
13387
 
13388
+ #: wppa-settings-autosave.php:7277
13389
  #, fuzzy
13390
  msgid "Include comments"
13391
  msgstr "%d kommentarer"
13392
 
13393
+ #: wppa-settings-autosave.php:7278
13394
  msgid "Do also search the comments on photos."
13395
  msgstr ""
13396
 
13397
+ #: wppa-settings-autosave.php:7279
13398
  msgid "When checked, the comments of the photos will also be searched."
13399
  msgstr ""
13400
 
13401
+ #: wppa-settings-autosave.php:7286
13402
  #, fuzzy
13403
  msgid "Photos only"
13404
  msgstr "Foto"
13405
 
13406
+ #: wppa-settings-autosave.php:7287
13407
  msgid "Search for photos only."
13408
  msgstr ""
13409
 
13410
+ #: wppa-settings-autosave.php:7288
13411
  msgid "When checked, only photos will be searched for."
13412
  msgstr ""
13413
 
13414
+ #: wppa-settings-autosave.php:7303
13415
  msgid "Max albums found"
13416
  msgstr ""
13417
 
13418
+ #: wppa-settings-autosave.php:7304
13419
  msgid "The maximum number of albums to be displayed."
13420
  msgstr ""
13421
 
13422
+ #: wppa-settings-autosave.php:7312
13423
  #, fuzzy
13424
  msgid "Max photos found"
13425
  msgstr ""
13426
  "Ingen album eller fotos fundet der svarer til dine s&oslash;ge kriterier."
13427
 
13428
+ #: wppa-settings-autosave.php:7313
13429
  msgid "The maximum number of photos to be displayed."
13430
  msgstr ""
13431
 
13432
+ #: wppa-settings-autosave.php:7321
13433
  msgid "Tags OR only"
13434
  msgstr ""
13435
 
13436
+ #: wppa-settings-autosave.php:7322
13437
  msgid "No and / or buttons"
13438
  msgstr ""
13439
 
13440
+ #: wppa-settings-autosave.php:7323
13441
  msgid ""
13442
  "Hide the and/or radiobuttons and do the or method in the multitag widget and "
13443
  "shortcode."
13444
  msgstr ""
13445
 
13446
+ #: wppa-settings-autosave.php:7330
13447
  msgid "Floating searchtoken"
13448
  msgstr ""
13449
 
13450
+ #: wppa-settings-autosave.php:7331
13451
  msgid "A match need not start at the first char."
13452
  msgstr ""
13453
 
13454
+ #: wppa-settings-autosave.php:7332
13455
  msgid ""
13456
  "A match is found while searching also when the entered token is somewhere in "
13457
  "the middle of a word."
13458
  msgstr ""
13459
 
13460
+ #: wppa-settings-autosave.php:7333
13461
  msgid "This works in indexed search only!"
13462
  msgstr ""
13463
 
13464
+ #: wppa-settings-autosave.php:7340
13465
  #, fuzzy
13466
  msgid "Search results display"
13467
  msgstr "Risultati della ricerca per: %s"
13468
 
13469
+ #: wppa-settings-autosave.php:7341
13470
  msgid "Select the way the search results should be displayed."
13471
  msgstr ""
13472
 
13473
+ #: wppa-settings-autosave.php:7342
13474
  msgid ""
13475
  "If you select anything different from \"Albums and thumbnails\", \"Photos "
13476
  "only\" is assumed (Table IX-E6)."
13477
  msgstr ""
13478
 
13479
+ #: wppa-settings-autosave.php:7344
13480
  #, fuzzy
13481
  msgid "Albums and thumbnails"
13482
  msgstr "Se"
13483
 
13484
+ #: wppa-settings-autosave.php:7344
13485
  #, fuzzy
13486
  msgid "Slideonly slideshow"
13487
  msgstr "Slideshow barra laterale"
13488
 
13489
+ #: wppa-settings-autosave.php:7351
13490
  msgid "Name max length"
13491
  msgstr ""
13492
 
13493
+ #: wppa-settings-autosave.php:7352
13494
  msgid "Max length of displayed photonames in supersearch selectionlist"
13495
  msgstr ""
13496
 
13497
+ #: wppa-settings-autosave.php:7353 wppa-settings-autosave.php:7362
13498
  msgid ""
13499
  "To limit the length of the selectionlist, enter the number of characters to "
13500
  "show."
13501
  msgstr ""
13502
 
13503
+ #: wppa-settings-autosave.php:7360
13504
  msgid "Text max length"
13505
  msgstr ""
13506
 
13507
+ #: wppa-settings-autosave.php:7361
13508
  msgid "Max length of displayed photo text in supersearch selectionlist"
13509
  msgstr ""
13510
 
13511
+ #: wppa-settings-autosave.php:7369
13512
+ #, fuzzy
13513
+ msgid "Search toptext"
13514
+ msgstr "Cerca"
13515
+
13516
+ #: wppa-settings-autosave.php:7370
13517
+ msgid "The text at the top of the search box."
13518
+ msgstr ""
13519
+
13520
+ #: wppa-settings-autosave.php:7371
13521
+ msgid "May contain unfiltered HTML."
13522
+ msgstr ""
13523
+
13524
+ #: wppa-settings-autosave.php:7378
13525
+ #, fuzzy
13526
+ msgid "Section search text"
13527
+ msgstr "Risultati della ricerca per: %s"
13528
+
13529
+ #: wppa-settings-autosave.php:7379 wppa-settings-autosave.php:7388
13530
+ msgid "The labeltext at the checkbox."
13531
+ msgstr ""
13532
+
13533
+ #: wppa-settings-autosave.php:7387
13534
+ #, fuzzy
13535
+ msgid "Results search text"
13536
+ msgstr ""
13537
+ "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
13538
+ "di ricerca differente."
13539
+
13540
+ #: wppa-settings-autosave.php:7397
13541
  msgid "Watermark related settings"
13542
  msgstr ""
13543
 
13544
+ #: wppa-settings-autosave.php:7400
13545
  msgid "Enable the application of watermarks."
13546
  msgstr ""
13547
 
13548
+ #: wppa-settings-autosave.php:7401
13549
  msgid "If checked, photos can be watermarked during upload / import."
13550
  msgstr ""
13551
 
13552
+ #: wppa-settings-autosave.php:7410
13553
  #, fuzzy
13554
  msgid "Watermark file"
13555
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13556
 
13557
+ #: wppa-settings-autosave.php:7411
13558
  msgid "The default watermarkfile to be used."
13559
  msgstr ""
13560
 
13561
+ #: wppa-settings-autosave.php:7412
13562
  msgid "Watermark files are of type png and reside in"
13563
  msgstr ""
13564
 
13565
+ #: wppa-settings-autosave.php:7413
13566
  msgid ""
13567
  "A suitable watermarkfile typically consists of a transparent background and "
13568
  "a black text or drawing."
13569
  msgstr ""
13570
 
13571
+ #: wppa-settings-autosave.php:7415
13572
  msgid ""
13573
  "You may also select one of the textual watermark types at the bottom of the "
13574
  "selection list."
13575
  msgstr ""
13576
 
13577
+ #: wppa-settings-autosave.php:7419
13578
  #, fuzzy
13579
  msgid "position:"
13580
  msgstr "Position:"
13581
 
13582
+ #: wppa-settings-autosave.php:7425
13583
  #, fuzzy
13584
  msgid "Upload watermark"
13585
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13586
 
13587
+ #: wppa-settings-autosave.php:7426
13588
  #, fuzzy
13589
  msgid "Upload a new watermark file"
13590
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13591
 
13592
+ #: wppa-settings-autosave.php:7430
13593
  #, fuzzy
13594
  msgid "Upload watermark image"
13595
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13596
 
13597
+ #: wppa-settings-autosave.php:7435
13598
  msgid "Watermark opacity image"
13599
  msgstr ""
13600
 
13601
+ #: wppa-settings-autosave.php:7436
13602
  msgid "You can set the intensity of image watermarks here."
13603
  msgstr ""
13604
 
13605
+ #: wppa-settings-autosave.php:7437 wppa-settings-autosave.php:7522
13606
  msgid ""
13607
  "The higher the number, the intenser the watermark. Value must be > 0 and <= "
13608
  "100."
13609
  msgstr ""
13610
 
13611
+ #: wppa-settings-autosave.php:7444
13612
  #, fuzzy
13613
  msgid "Textual watermark style"
13614
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13615
 
13616
+ #: wppa-settings-autosave.php:7445
13617
  msgid "The way the textual watermarks look like"
13618
  msgstr ""
13619
 
13620
+ #: wppa-settings-autosave.php:7449
13621
  msgid "TV subtitle style"
13622
  msgstr ""
13623
 
13624
+ #: wppa-settings-autosave.php:7449
13625
  msgid "White text on black background"
13626
  msgstr ""
13627
 
13628
+ #: wppa-settings-autosave.php:7449
13629
  msgid "Black text on white background"
13630
  msgstr ""
13631
 
13632
+ #: wppa-settings-autosave.php:7449
13633
  msgid "Reverse TV style (Utopia)"
13634
  msgstr ""
13635
 
13636
+ #: wppa-settings-autosave.php:7449
13637
  msgid "White on transparent background"
13638
  msgstr ""
13639
 
13640
+ #: wppa-settings-autosave.php:7449
13641
  msgid "Black on transparent background"
13642
  msgstr ""
13643
 
13644
+ #: wppa-settings-autosave.php:7459
13645
  msgid "Predefined watermark text"
13646
  msgstr ""
13647
 
13648
+ #: wppa-settings-autosave.php:7460
13649
  msgid "The text to use when --- pre-defined --- is selected."
13650
  msgstr ""
13651
 
13652
+ #: wppa-settings-autosave.php:7461
13653
  msgid "You may use the following keywords:"
13654
  msgstr ""
13655
 
13656
+ #: wppa-settings-autosave.php:7462
13657
  msgid "w#site, w#owner, w#name, w#filename"
13658
  msgstr ""
13659
 
13660
+ #: wppa-settings-autosave.php:7469
13661
  #, fuzzy
13662
  msgid "Textual watermark font"
13663
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13664
 
13665
+ #: wppa-settings-autosave.php:7470
13666
  msgid "The font to use with textusl watermarks."
13667
  msgstr ""
13668
 
13669
+ #: wppa-settings-autosave.php:7471
13670
  msgid "Except for the system font, are font files of type ttf and reside in"
13671
  msgstr ""
13672
 
13673
+ #: wppa-settings-autosave.php:7499
13674
  #, fuzzy
13675
  msgid "Textual watermark font size"
13676
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13677
 
13678
+ #: wppa-settings-autosave.php:7500
13679
  msgid "You can set the size of the truetype fonts only."
13680
  msgstr ""
13681
 
13682
+ #: wppa-settings-autosave.php:7501
13683
  msgid ""
13684
  "System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
13685
  "value > 5 will be treated as 5."
13686
  msgstr ""
13687
 
13688
+ #: wppa-settings-autosave.php:7502
13689
  msgid ""
13690
  "Truetype fonts can have any positive integer size, if your PHPs GD version "
13691
  "is 1, in pixels, in GD2 in points."
13692
  msgstr ""
13693
 
13694
+ #: wppa-settings-autosave.php:7503
13695
  msgid "It is unclear howmany pixels a point is..."
13696
  msgstr ""
13697
 
13698
+ #: wppa-settings-autosave.php:7510
13699
  #, fuzzy
13700
  msgid "Upload watermark font"
13701
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13702
 
13703
+ #: wppa-settings-autosave.php:7511
13704
  #, fuzzy
13705
  msgid "Upload a new watermark font file"
13706
  msgstr "Inds&aelig;t vandm&aelig;rke:"
13707
 
13708
+ #: wppa-settings-autosave.php:7512
13709
  msgid ""
13710
  "Upload truetype fonts (.ttf) only, and test if they work on your server "
13711
  "platform."
13712
  msgstr ""
13713
 
13714
+ #: wppa-settings-autosave.php:7515
13715
  #, fuzzy
13716
  msgid "Upload TrueType font"
13717
  msgstr "Indsend foto"
13718
 
13719
+ #: wppa-settings-autosave.php:7520
13720
  msgid "Watermark opacity text"
13721
  msgstr ""
13722
 
13723
+ #: wppa-settings-autosave.php:7521
13724
  msgid "You can set the intensity of a text watermarks here."
13725
  msgstr ""
13726
 
13727
+ #: wppa-settings-autosave.php:7530
13728
  msgid "A real life preview. To update: refresh the page."
13729
  msgstr ""
13730
 
13731
+ #: wppa-settings-autosave.php:7541
13732
  #, fuzzy
13733
  msgid "Watermark thumbnails"
13734
  msgstr "Se"
13735
 
13736
+ #: wppa-settings-autosave.php:7542
13737
  msgid "Watermark also the thumbnail image files."
13738
  msgstr ""
13739
 
13740
+ #: wppa-settings-autosave.php:7550
13741
  msgid "Slideshow elements sequence order settings"
13742
  msgstr ""
13743
 
13744
+ #: wppa-settings-autosave.php:7556 wppa-settings-autosave.php:7602
13745
  #, fuzzy
13746
  msgid "StartStop"
13747
  msgstr "Start"
13748
 
13749
+ #: wppa-settings-autosave.php:7557 wppa-settings-autosave.php:7603
13750
  msgid "SlideFrame"
13751
  msgstr ""
13752
 
13753
+ #: wppa-settings-autosave.php:7559
13754
  msgid "Desc"
13755
  msgstr ""
13756
 
13757
+ #: wppa-settings-autosave.php:7562 wppa-settings-autosave.php:7607
13758
  msgid "FilmStrip"
13759
  msgstr ""
13760
 
13761
+ #: wppa-settings-autosave.php:7563 wppa-settings-autosave.php:7608
13762
  msgid "Browsebar"
13763
  msgstr ""
13764
 
13765
+ #: wppa-settings-autosave.php:7565 wppa-settings-autosave.php:7610
13766
  #, fuzzy
13767
  msgid "IPTC data"
13768
  msgstr "Ingen IPTC data"
13769
 
13770
+ #: wppa-settings-autosave.php:7566 wppa-settings-autosave.php:7611
13771
  #, fuzzy
13772
  msgid "EXIF data"
13773
  msgstr "Ingen EXIF data"
13774
 
13775
+ #: wppa-settings-autosave.php:7567 wppa-settings-autosave.php:7612
13776
  #, fuzzy
13777
  msgid "Share box"
13778
  msgstr "Condividi su Facebook"
13779
 
13780
+ #: wppa-settings-autosave.php:7569 wppa-settings-autosave.php:7614
13781
  msgid "Enabled"
13782
  msgstr ""
13783
 
13784
+ #: wppa-settings-autosave.php:7570 wppa-settings-autosave.php:7615
13785
  msgid "Disabled"
13786
  msgstr ""
13787
 
13788
+ #: wppa-settings-autosave.php:7572 wppa-settings-autosave.php:7617
13789
  msgid "Start/Stop & Slower/Faster navigation bar"
13790
  msgstr ""
13791
 
13792
+ #: wppa-settings-autosave.php:7573 wppa-settings-autosave.php:7618
13793
  msgid "The Slide Frame"
13794
  msgstr ""
13795
 
13796
+ #: wppa-settings-autosave.php:7573 wppa-settings-autosave.php:7618
13797
  msgid "( Always )"
13798
  msgstr ""
13799
 
13800
+ #: wppa-settings-autosave.php:7574
13801
  #, fuzzy
13802
  msgid "Photo Name Box"
13803
  msgstr "Dagens foto"
13804
 
13805
+ #: wppa-settings-autosave.php:7575
13806
  msgid "Photo Description Box"
13807
  msgstr ""
13808
 
13809
+ #: wppa-settings-autosave.php:7576 wppa-settings-autosave.php:7620
13810
  msgid "Custom Box"
13811
  msgstr ""
13812
 
13813
+ #: wppa-settings-autosave.php:7577 wppa-settings-autosave.php:7621
13814
  #, fuzzy
13815
  msgid "Rating Bar"
13816
  msgstr "Bed&oslash;mmelse: %s"
13817
 
13818
+ #: wppa-settings-autosave.php:7578 wppa-settings-autosave.php:7622
13819
  msgid "Film Strip with embedded Start/Stop and Goto functionality"
13820
  msgstr ""
13821
 
13822
+ #: wppa-settings-autosave.php:7579 wppa-settings-autosave.php:7623
13823
  msgid "Browse Bar with Photo X of Y counter"
13824
  msgstr ""
13825
 
13826
+ #: wppa-settings-autosave.php:7580 wppa-settings-autosave.php:7624
13827
  #, fuzzy
13828
  msgid "Comments Box"
13829
  msgstr "%d kommentarer"
13830
 
13831
+ #: wppa-settings-autosave.php:7581 wppa-settings-autosave.php:7625
13832
  msgid "IPTC box"
13833
  msgstr ""
13834
 
13835
+ #: wppa-settings-autosave.php:7582 wppa-settings-autosave.php:7626
13836
  msgid "EXIF box"
13837
  msgstr ""
13838
 
13839
+ #: wppa-settings-autosave.php:7583 wppa-settings-autosave.php:7627
13840
  msgid "Social media share box"
13841
  msgstr ""
13842
 
13843
+ #: wppa-settings-autosave.php:7589 wppa-settings-autosave.php:7633
13844
  msgid "Move Up"
13845
  msgstr ""
13846
 
13847
+ #: wppa-settings-autosave.php:7604
13848
  msgid "NameDesc"
13849
  msgstr ""
13850
 
13851
+ #: wppa-settings-autosave.php:7619
13852
  msgid "Photo Name & Description Box"
13853
  msgstr ""
13854
 
13855
+ #: wppa-settings-autosave.php:7643
13856
  msgid "Swap Namedesc"
13857
  msgstr ""
13858
 
13859
+ #: wppa-settings-autosave.php:7644
13860
  msgid "Swap the order sequence of name and description"
13861
  msgstr ""
13862
 
13863
+ #: wppa-settings-autosave.php:7652
13864
  msgid "Split Name and Desc"
13865
  msgstr ""
13866
 
13867
+ #: wppa-settings-autosave.php:7653
13868
  msgid "Put Name and Description in separate boxes"
13869
  msgstr ""
13870
 
13871
+ #: wppa-settings-autosave.php:7656
13872
  msgid "Please reload this page after the green checkmark appears!"
13873
  msgstr ""
13874
 
13875
+ #: wppa-settings-autosave.php:7661
13876
  msgid "Source file management and other upload/import settings and actions."
13877
  msgstr ""
13878
 
13879
+ #: wppa-settings-autosave.php:7663
13880
  msgid "Keep sourcefiles admin"
13881
  msgstr ""
13882
 
13883
+ #: wppa-settings-autosave.php:7664
13884
  msgid "Keep the original uploaded and imported photo files."
13885
  msgstr ""
13886
 
13887
+ #: wppa-settings-autosave.php:7665 wppa-settings-autosave.php:7675
13888
  msgid ""
13889
  "The files will be kept in a separate directory with subdirectories for each "
13890
  "album"
13891
  msgstr ""
13892
 
13893
+ #: wppa-settings-autosave.php:7666 wppa-settings-autosave.php:7676
13894
  msgid ""
13895
  "These files can be used to update the photos used in displaying in wppa+ and "
13896
  "optionally for downloading original, un-downsized images."
13897
  msgstr ""
13898
 
13899
+ #: wppa-settings-autosave.php:7673
13900
  msgid "Keep sourcefiles frontend"
13901
  msgstr ""
13902
 
13903
+ #: wppa-settings-autosave.php:7674
13904
  #, fuzzy
13905
  msgid "Keep the original frontend uploaded photo files."
13906
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
13907
 
13908
+ #: wppa-settings-autosave.php:7683
13909
  msgid "Source directory"
13910
  msgstr ""
13911
 
13912
+ #: wppa-settings-autosave.php:7684
13913
  msgid "The path to the directory where the original photofiles will be saved."
13914
  msgstr ""
13915
 
13916
+ #: wppa-settings-autosave.php:7685
13917
  msgid "You may change the directory path, but it can not be an url."
13918
  msgstr ""
13919
 
13920
+ #: wppa-settings-autosave.php:7686
13921
  msgid ""
13922
  "The parent of the directory that you enter here must exist and be writable."
13923
  msgstr ""
13924
 
13925
+ #: wppa-settings-autosave.php:7687
13926
  msgid "The directory itsself will be created if it does not exist yet."
13927
  msgstr ""
13928
 
13929
+ #: wppa-settings-autosave.php:7694
13930
  msgid "Keep sync"
13931
  msgstr ""
13932
 
13933
+ #: wppa-settings-autosave.php:7695
13934
  msgid "Keep source synchronously with wppa system."
13935
  msgstr ""
13936
 
13937
+ #: wppa-settings-autosave.php:7696
13938
  msgid ""
13939
  "If checked, photos that are deleted from wppa, will also be removed from the "
13940
  "sourcefiles."
13941
  msgstr ""
13942
 
13943
+ #: wppa-settings-autosave.php:7697
13944
  msgid ""
13945
  "Also, copying or moving photos to different albums, will also copy/move the "
13946
  "sourcefiles."
13947
  msgstr ""
13948
 
13949
+ #: wppa-settings-autosave.php:7704
13950
  msgid "Remake add"
13951
  msgstr ""
13952
 
13953
+ #: wppa-settings-autosave.php:7705
13954
  msgid "Photos will be added from the source pool"
13955
  msgstr ""
13956
 
13957
+ #: wppa-settings-autosave.php:7706
13958
  msgid ""
13959
  "If checked: If photo files are found in the source directory that do not "
13960
  "exist in the corresponding album, they will be added to the album."
13961
  msgstr ""
13962
 
13963
+ #: wppa-settings-autosave.php:7713
13964
  #, fuzzy
13965
  msgid "Save IPTC data"
13966
  msgstr "Skjul IPTC data"
13967
 
13968
+ #: wppa-settings-autosave.php:7714
13969
  msgid "Store the iptc data from the photo into the iptc db table"
13970
  msgstr ""
13971
 
13972
+ #: wppa-settings-autosave.php:7715
13973
  msgid ""
13974
  "You will need this if you enabled the display of iptc data in Table II-B17 "
13975
  "or if you use it in the photo descriptions."
13976
  msgstr ""
13977
 
13978
+ #: wppa-settings-autosave.php:7722
13979
  #, fuzzy
13980
  msgid "Save EXIF data"
13981
  msgstr "Skjul EXIF data"
13982
 
13983
+ #: wppa-settings-autosave.php:7723
13984
  msgid "Store the exif data from the photo into the exif db table"
13985
  msgstr ""
13986
 
13987
+ #: wppa-settings-autosave.php:7724
13988
  msgid ""
13989
  "You will need this if you enabled the display of exif data in Table II-B18 "
13990
  "or if you use it in the photo descriptions."
13991
  msgstr ""
13992
 
13993
+ #: wppa-settings-autosave.php:7731
13994
  msgid "Max EXIF tag array size"
13995
  msgstr ""
13996
 
13997
+ #: wppa-settings-autosave.php:7732
13998
  msgid "Truncate array tags to ..."
13999
  msgstr ""
14000
 
14001
+ #: wppa-settings-autosave.php:7733
14002
  msgid "A value of 0 disables this feature"
14003
  msgstr ""
14004
 
14005
+ #: wppa-settings-autosave.php:7735
14006
  #, fuzzy
14007
  msgid "elements"
14008
  msgstr "%d kommentarer"
14009
 
14010
+ #: wppa-settings-autosave.php:7740
14011
  msgid "Import Create page"
14012
  msgstr ""
14013
 
14014
+ #: wppa-settings-autosave.php:7741
14015
  msgid "Create wp page when a directory to album is imported."
14016
  msgstr ""
14017
 
14018
+ #: wppa-settings-autosave.php:7742
14019
  msgid ""
14020
  "As soon as an album is created when a directory is imported, a wp page is "
14021
  "made that displays the album content."
14022
  msgstr ""
14023
 
14024
+ #: wppa-settings-autosave.php:7750
14025
  msgid "Page content"
14026
  msgstr ""
14027
 
14028
+ #: wppa-settings-autosave.php:7751
14029
  msgid "The content of the page. Must contain <b>w#album</b>"
14030
  msgstr ""
14031
 
14032
+ #: wppa-settings-autosave.php:7752
14033
  msgid ""
14034
  "The content of the page. Note: it must contain w#album. This will be "
14035
  "replaced by the album number in the generated shortcode."
14036
  msgstr ""
14037
 
14038
+ #: wppa-settings-autosave.php:7760
14039
  msgid "Page type"
14040
  msgstr ""
14041
 
14042
+ #: wppa-settings-autosave.php:7761
14043
  msgid "Select the type of page to create."
14044
  msgstr ""
14045
 
14046
+ #: wppa-settings-autosave.php:7765
14047
  #, fuzzy
14048
  msgid "Post"
14049
  msgstr "--- lo stesso articolo/pagina ---"
14050
 
14051
+ #: wppa-settings-autosave.php:7772
14052
  msgid "Page status"
14053
  msgstr ""
14054
 
14055
+ #: wppa-settings-autosave.php:7773
14056
  msgid "Select the initial status of the page."
14057
  msgstr ""
14058
 
14059
+ #: wppa-settings-autosave.php:7777
14060
  msgid "Published"
14061
  msgstr ""
14062
 
14063
+ #: wppa-settings-autosave.php:7777
14064
  msgid "Draft"
14065
  msgstr ""
14066
 
14067
+ #: wppa-settings-autosave.php:7785
14068
  msgid "Permalink root"
14069
  msgstr ""
14070
 
14071
+ #: wppa-settings-autosave.php:7786
14072
  msgid "The name of the root for the photofile ermalink structure."
14073
  msgstr ""
14074
 
14075
+ #: wppa-settings-autosave.php:7787
14076
  msgid ""
14077
  "Choose a convenient name like \"albums\" or so; this will be the name of a "
14078
  "folder inside .../wp-content/. Make sure you choose a unique name"
14079
  msgstr ""
14080
 
14081
+ #: wppa-settings-autosave.php:7795
14082
  msgid "Other plugins related settings"
14083
  msgstr ""
14084
 
14085
+ #: wppa-settings-autosave.php:7797
14086
  msgid "Foreign shortcodes general"
14087
  msgstr ""
14088
 
14089
+ #: wppa-settings-autosave.php:7798
14090
  msgid "Enable foreign shortcodes in album names, albums desc and photo names"
14091
  msgstr ""
14092
 
14093
+ #: wppa-settings-autosave.php:7806
14094
  msgid "Foreign shortcodes fullsize"
14095
  msgstr ""
14096
 
14097
+ #: wppa-settings-autosave.php:7807
14098
  msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
14099
  msgstr ""
14100
 
14101
+ #: wppa-settings-autosave.php:7808 wppa-settings-autosave.php:7819
14102
  msgid ""
14103
  "When checked, you can use shortcodes from other plugins in the description "
14104
  "of photos."
14105
  msgstr ""
14106
 
14107
+ #: wppa-settings-autosave.php:7809
14108
  msgid "The shortcodes will be expanded in the descriptions of fullsize images."
14109
  msgstr ""
14110
 
14111
+ #: wppa-settings-autosave.php:7810 wppa-settings-autosave.php:7821
14112
  msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
14113
  msgstr ""
14114
 
14115
+ #: wppa-settings-autosave.php:7817
14116
  #, fuzzy
14117
  msgid "Foreign shortcodes thumbnails"
14118
  msgstr "Se"
14119
 
14120
+ #: wppa-settings-autosave.php:7818
14121
  msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
14122
  msgstr ""
14123
 
14124
+ #: wppa-settings-autosave.php:7820
14125
  msgid ""
14126
  "The shortcodes will be expanded in the descriptions of thumbnail images."
14127
  msgstr ""
14128
 
14129
+ #: wppa-settings-autosave.php:7828
14130
  msgid "Lightbox keyname"
14131
  msgstr ""
14132
 
14133
+ #: wppa-settings-autosave.php:7829
14134
  msgid "The identifier of lightbox."
14135
  msgstr ""
14136
 
14137
+ #: wppa-settings-autosave.php:7830
14138
  msgid ""
14139
  "If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
14140
  "lbox-id here."
14141
  msgstr ""
14142
 
14143
+ #: wppa-settings-autosave.php:7837
14144
  msgid "myCRED / Cube Points: Comment"
14145
  msgstr ""
14146
 
14147
+ #: wppa-settings-autosave.php:7838
14148
  #, fuzzy
14149
  msgid "Number of points for a comment"
14150
  msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
14151
 
14152
+ #: wppa-settings-autosave.php:7839 wppa-settings-autosave.php:7848
14153
+ #: wppa-settings-autosave.php:7857
14154
  msgid "This setting requires the plugin myCRED or Cube Points"
14155
  msgstr ""
14156
 
14157
+ #: wppa-settings-autosave.php:7841
14158
  #, fuzzy
14159
  msgid "points per comment"
14160
  msgstr "Din kommentar"
14161
 
14162
+ #: wppa-settings-autosave.php:7846
14163
  msgid "myCRED / Cube Points: Rating"
14164
  msgstr ""
14165
 
14166
+ #: wppa-settings-autosave.php:7847
14167
  msgid "Number of points for a rating vote"
14168
  msgstr ""
14169
 
14170
+ #: wppa-settings-autosave.php:7850
14171
  msgid "points per vote"
14172
  msgstr ""
14173
 
14174
+ #: wppa-settings-autosave.php:7855
14175
  msgid "myCRED / Cube Points: Upload"
14176
  msgstr ""
14177
 
14178
+ #: wppa-settings-autosave.php:7856
14179
  msgid "Number of points for a successfull frontend upload"
14180
  msgstr ""
14181
 
14182
+ #: wppa-settings-autosave.php:7859
14183
  #, fuzzy
14184
  msgid "points per upload"
14185
  msgstr "Foto caricate nell'album numero"
14186
 
14187
+ #: wppa-settings-autosave.php:7864
14188
  msgid "Use SCABN"
14189
  msgstr ""
14190
 
14191
+ #: wppa-settings-autosave.php:7865
14192
  msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
14193
  msgstr ""
14194
 
14195
+ #: wppa-settings-autosave.php:7866
14196
  msgid ""
14197
  "If checked, the shortcode to use for the \"add to cart\" button in photo "
14198
  "descriptions is [cart ...]"
14199
  msgstr ""
14200
 
14201
+ #: wppa-settings-autosave.php:7867
14202
  msgid ""
14203
  "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
14204
  msgstr ""
14205
 
14206
+ #: wppa-settings-autosave.php:7868
14207
  msgid "The shortcode for the check-out page is still [scabn]"
14208
  msgstr ""
14209
 
14210
+ #: wppa-settings-autosave.php:7869
14211
  msgid ""
14212
  "The arguments are the same, the defaults are: name = photoname, price = 0.01."
14213
  msgstr ""
14214
 
14215
+ #: wppa-settings-autosave.php:7870
14216
  msgid ""
14217
  "Supplying the price should be sufficient; supply a name only when it differs "
14218
  "from the photo name."
14219
  msgstr ""
14220
 
14221
+ #: wppa-settings-autosave.php:7871
14222
  msgid "This shortcode handler will also work with Ajax enabled."
14223
  msgstr ""
14224
 
14225
+ #: wppa-settings-autosave.php:7872
14226
  msgid ""
14227
  "Using this interface makes sure that the item urls and callback action urls "
14228
  "are correct."
14229
  msgstr ""
14230
 
14231
+ #: wppa-settings-autosave.php:7879
14232
  msgid "Use CM Tooltip Glossary"
14233
  msgstr ""
14234
 
14235
+ #: wppa-settings-autosave.php:7880
14236
  msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
14237
  msgstr ""
14238
 
14239
+ #: wppa-settings-autosave.php:7881
14240
  msgid ""
14241
  "You MUST set Table IV-A13: Defer javascript, also if you do not want this "
14242
  "plugin to act on album and photo descriptions!"
14243
  msgstr ""
14244
 
14245
+ #: wppa-settings-autosave.php:7889
14246
  msgid "External services related settings and actions."
14247
  msgstr ""
14248
 
14249
+ #: wppa-settings-autosave.php:7891
14250
  msgid "QR Code widget size"
14251
  msgstr ""
14252
 
14253
+ #: wppa-settings-autosave.php:7892
14254
  msgid "The size of the QR code display."
14255
  msgstr ""
14256
 
14257
+ #: wppa-settings-autosave.php:7900
14258
  msgid "QR color"
14259
  msgstr ""
14260
 
14261
+ #: wppa-settings-autosave.php:7901
14262
  msgid "The display color of the qr code (dark)"
14263
  msgstr ""
14264
 
14265
+ #: wppa-settings-autosave.php:7902
14266
  msgid "This color MUST be given in hexadecimal format!"
14267
  msgstr ""
14268
 
14269
+ #: wppa-settings-autosave.php:7909
14270
  msgid "QR background color"
14271
  msgstr ""
14272
 
14273
+ #: wppa-settings-autosave.php:7910
14274
  msgid "The background color of the qr code (light)"
14275
  msgstr ""
14276
 
14277
+ #: wppa-settings-autosave.php:7918
14278
  msgid "CDN Service"
14279
  msgstr ""
14280
 
14281
+ #: wppa-settings-autosave.php:7919
14282
  msgid "Select a CDN Service you want to use."
14283
  msgstr ""
14284
 
14285
+ #: wppa-settings-autosave.php:7922
14286
  msgid "Cloudinary in maintenance mode"
14287
  msgstr ""
14288
 
14289
+ #: wppa-settings-autosave.php:7932
14290
  #, fuzzy
14291
  msgid "Cloud name"
14292
  msgstr "Dit navn"
14293
 
14294
+ #: wppa-settings-autosave.php:7941
14295
  msgid "API key"
14296
  msgstr ""
14297
 
14298
+ #: wppa-settings-autosave.php:7950
14299
  msgid "API secret"
14300
  msgstr ""
14301
 
14302
+ #: wppa-settings-autosave.php:7959
14303
  #, fuzzy
14304
  msgid "Delete all"
14305
  msgstr "Impossibile creare album. "
14306
 
14307
+ #: wppa-settings-autosave.php:7960
14308
  msgid "Deletes them all !!!"
14309
  msgstr ""
14310
 
14311
+ #: wppa-settings-autosave.php:7968
14312
  msgid "Delete derived images"
14313
  msgstr ""
14314
 
14315
+ #: wppa-settings-autosave.php:7969
14316
  msgid "Deletes all derived images !!!"
14317
  msgstr ""
14318
 
14319
+ #: wppa-settings-autosave.php:7977
14320
  msgid "Max lifetime"
14321
  msgstr ""
14322
 
14323
+ #: wppa-settings-autosave.php:7978
14324
  msgid "Old images from local server, new images from Cloudinary."
14325
  msgstr ""
14326
 
14327
+ #: wppa-settings-autosave.php:7979
14328
  msgid ""
14329
  "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
14330
  msgstr ""
14331
 
14332
+ #: wppa-settings-autosave.php:7981
14333
  msgid "Forever"
14334
  msgstr ""
14335
 
14336
+ #: wppa-settings-autosave.php:7985
14337
  #, fuzzy
14338
  msgid "Two months"
14339
  msgstr "m&aring;neder"
14340
 
14341
+ #: wppa-settings-autosave.php:7986
14342
  #, fuzzy
14343
  msgid "Three months"
14344
  msgstr "m&aring;neder"
14345
 
14346
+ #: wppa-settings-autosave.php:7987
14347
  #, fuzzy
14348
  msgid "Six months"
14349
  msgstr "m&aring;neder"
14350
 
14351
+ #: wppa-settings-autosave.php:7988
14352
  #, fuzzy
14353
  msgid "Nine months"
14354
  msgstr "m&aring;neder"
14355
 
14356
+ #: wppa-settings-autosave.php:7989
14357
  #, fuzzy
14358
  msgid "One year"
14359
  msgstr "1 &aring;r"
14360
 
14361
+ #: wppa-settings-autosave.php:7990
14362
  #, fuzzy
14363
  msgid "18 months"
14364
  msgstr "1 m&aring;ned"
14365
 
14366
+ #: wppa-settings-autosave.php:7991
14367
  #, fuzzy
14368
  msgid "Two years"
14369
  msgstr "&aring;r"
14370
 
14371
+ #: wppa-settings-autosave.php:8011
14372
  msgid "Cloudinary usage"
14373
  msgstr ""
14374
 
14375
+ #: wppa-settings-autosave.php:8047
14376
  #, fuzzy
14377
  msgid "Cloudinary usage data not available"
14378
  msgstr "Pagina non disponibile."
14379
 
14380
+ #: wppa-settings-autosave.php:8051
14381
  msgid "Cloudinary routines not installed."
14382
  msgstr ""
14383
 
14384
+ #: wppa-settings-autosave.php:8062
14385
  msgid "Cloudinary"
14386
  msgstr ""
14387
 
14388
+ #: wppa-settings-autosave.php:8063
14389
  msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
14390
  msgstr ""
14391
 
14392
+ #: wppa-settings-autosave.php:8072
14393
  msgid "GPX Implementation"
14394
  msgstr ""
14395
 
14396
+ #: wppa-settings-autosave.php:8073
14397
  msgid "The way the maps are produced."
14398
  msgstr ""
14399
 
14400
+ #: wppa-settings-autosave.php:8074
14401
  msgid "Select the way the maps are produced."
14402
  msgstr ""
14403
 
14404
+ #: wppa-settings-autosave.php:8075
14405
  msgid ""
14406
  "When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
14407
  msgstr ""
14408
 
14409
+ #: wppa-settings-autosave.php:8076
14410
  msgid ""
14411
  "When using WPPA+ Embedded code, you can use Ajax, but there are less display "
14412
  "options."
14413
  msgstr ""
14414
 
14415
+ #: wppa-settings-autosave.php:8078
14416
  msgid "WPPA+ Embedded code"
14417
  msgstr ""
14418
 
14419
+ #: wppa-settings-autosave.php:8078
14420
  msgid "Google maps GPX viewer plugin"
14421
  msgstr ""
14422
 
14423
+ #: wppa-settings-autosave.php:8086
14424
  msgid "Map height"
14425
  msgstr ""
14426
 
14427
+ #: wppa-settings-autosave.php:8087
14428
  msgid "The height of the map display."
14429
  msgstr ""
14430
 
14431
+ #: wppa-settings-autosave.php:8095
14432
  msgid "Google maps API key"
14433
  msgstr ""
14434
 
14435
+ #: wppa-settings-autosave.php:8096
14436
  msgid "Enter your Google maps api key here if you have one."
14437
  msgstr ""
14438
 
14439
+ #: wppa-settings-autosave.php:8104
14440
  msgid "GPX Shortcode"
14441
  msgstr ""
14442
 
14443
+ #: wppa-settings-autosave.php:8105
14444
  msgid "The shortcode to be used for the gpx feature."
14445
  msgstr ""
14446
 
14447
+ #: wppa-settings-autosave.php:8106
14448
  msgid ""
14449
  "Enter / modify the shortcode to be generated for the gpx plugin. It must "
14450
  "contain w#lat and w#lon as placeholders for the lattitude and longitude."
14451
  msgstr ""
14452
 
14453
+ #: wppa-settings-autosave.php:8107
14454
  msgid "This item is required for using Google maps GPX viewer plugin only"
14455
  msgstr ""
14456
 
14457
+ #: wppa-settings-autosave.php:8114
14458
  msgid "Fotomoto"
14459
  msgstr ""
14460
 
14461
+ #: wppa-settings-autosave.php:8115
14462
  msgid "Yes, we use Fotomoto on this site. Read the help text!"
14463
  msgstr ""
14464
 
14465
+ #: wppa-settings-autosave.php:8116
14466
  msgid "In order to function properly:"
14467
  msgstr ""
14468
 
14469
+ #: wppa-settings-autosave.php:8117
14470
  msgid "1. Get yourself a Fotomoto account."
14471
  msgstr ""
14472
 
14473
+ #: wppa-settings-autosave.php:8118
14474
  msgid ""
14475
  "2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
14476
  "the \"Use API Mode:\" checkbox."
14477
  msgstr ""
14478
 
14479
+ #: wppa-settings-autosave.php:8119
14480
  msgid "Note: Do NOT Disable the Custom box in Table II-B14."
14481
  msgstr ""
14482
 
14483
+ #: wppa-settings-autosave.php:8120
14484
  msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
14485
  msgstr ""
14486
 
14487
+ #: wppa-settings-autosave.php:8128
14488
  msgid "Fotomoto fontsize"
14489
  msgstr ""
14490
 
14491
+ #: wppa-settings-autosave.php:8129
14492
  msgid "Fontsize for the Fotomoto toolbar."
14493
  msgstr ""
14494
 
14495
+ #: wppa-settings-autosave.php:8130
14496
  msgid ""
14497
  "If you set it here, it overrules a possible setting for font-size in ."
14498
  "FotomotoToolbarClass on the Fotomoto dashboard."
14499
  msgstr ""
14500
 
14501
+ #: wppa-settings-autosave.php:8138
14502
  msgid "Hide toolbar on running slideshows"
14503
  msgstr ""
14504
 
14505
+ #: wppa-settings-autosave.php:8139
14506
  msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
14507
  msgstr ""
14508
 
14509
+ #: wppa-settings-autosave.php:8146
14510
  msgid "Fotomoto minwidth"
14511
  msgstr ""
14512
 
14513
+ #: wppa-settings-autosave.php:8147
14514
  msgid "Minimum width to display Fotomoto toolbar."
14515
  msgstr ""
14516
 
14517
+ #: wppa-settings-autosave.php:8148
14518
  msgid ""
14519
  "The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
14520
  msgstr ""
14521
 
14522
+ #: wppa-settings-autosave.php:8173
14523
  msgid "Table X:"
14524
  msgstr ""
14525
 
14526
+ #: wppa-settings-autosave.php:8173
14527
  msgid "IPTC Configuration:"
14528
  msgstr ""
14529
 
14530
+ #: wppa-settings-autosave.php:8174
14531
  msgid "This table defines the IPTC configuration"
14532
  msgstr ""
14533
 
14534
+ #: wppa-settings-autosave.php:8205 wppa-settings-autosave.php:8273
14535
  msgid "Display"
14536
  msgstr ""
14537
 
14538
+ #: wppa-settings-autosave.php:8205 wppa-settings-autosave.php:8273
14539
  msgid "Hide"
14540
  msgstr ""
14541
 
14542
+ #: wppa-settings-autosave.php:8205 wppa-settings-autosave.php:8273
14543
  msgid "Optional"
14544
  msgstr ""
14545
 
14546
+ #: wppa-settings-autosave.php:8235
14547
  msgid "Table XI:"
14548
  msgstr ""
14549
 
14550
+ #: wppa-settings-autosave.php:8235
14551
  msgid "EXIF Configuration:"
14552
  msgstr ""
14553
 
14554
+ #: wppa-settings-autosave.php:8236
14555
  msgid "This table defines the EXIF configuration"
14556
  msgstr ""
14557
 
14558
+ #: wppa-settings-autosave.php:8259
14559
  msgid ""
14560
  "Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
14561
  "enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to "
14562
  "add <b>'--enable-exif'</b> to the php <b>Configure Command</b>."
14563
  msgstr ""
14564
 
14565
+ #: wppa-settings-autosave.php:8303
14566
  msgid "Table XII:"
14567
  msgstr ""
14568
 
14569
+ #: wppa-settings-autosave.php:8303
14570
  msgid "WPPA+ and PHP Configuration:"
14571
  msgstr ""
14572
 
14573
+ #: wppa-settings-autosave.php:8304
14574
  msgid ""
14575
  "This table lists all WPPA+ constants and PHP server configuration parameters "
14576
  "and is read only"
14577
  msgstr ""
14578
 
14579
+ #: wppa-settings-autosave.php:8319
14580
  msgid "Value"
14581
  msgstr ""
14582
 
14583
+ #: wppa-settings-autosave.php:8324
14584
  msgid "Albums db table name."
14585
  msgstr ""
14586
 
14587
+ #: wppa-settings-autosave.php:8329
14588
  #, fuzzy
14589
  msgid "Photos db table name."
14590
  msgstr "Vis EXIF data"
14591
 
14592
+ #: wppa-settings-autosave.php:8334
14593
  msgid "Rating db table name."
14594
  msgstr ""
14595
 
14596
+ #: wppa-settings-autosave.php:8339
14597
  msgid "Comments db table name."
14598
  msgstr ""
14599
 
14600
+ #: wppa-settings-autosave.php:8344
14601
  msgid "IPTC db table name."
14602
  msgstr ""
14603
 
14604
+ #: wppa-settings-autosave.php:8349
14605
  msgid "EXIF db table name."
14606
  msgstr ""
14607
 
14608
+ #: wppa-settings-autosave.php:8354
14609
  msgid "Index db table name."
14610
  msgstr ""
14611
 
14612
+ #: wppa-settings-autosave.php:8359
14613
  msgid "Plugins main file name."
14614
  msgstr ""
14615
 
14616
+ #: wppa-settings-autosave.php:8364
14617
  msgid "Path to plugins directory."
14618
  msgstr ""
14619
 
14620
+ #: wppa-settings-autosave.php:8369
14621
  msgid "Plugins directory name."
14622
  msgstr ""
14623
 
14624
+ #: wppa-settings-autosave.php:8374
14625
  msgid "Plugins directory url."
14626
  msgstr ""
14627
 
14628
+ #: wppa-settings-autosave.php:8379
14629
  msgid "The relative upload directory."
14630
  msgstr ""
14631
 
14632
+ #: wppa-settings-autosave.php:8384
14633
  msgid "The upload directory path."
14634
  msgstr ""
14635
 
14636
+ #: wppa-settings-autosave.php:8389
14637
  msgid "The upload directory url."
14638
  msgstr ""
14639
 
14640
+ #: wppa-settings-autosave.php:8394
14641
  msgid "The relative depot directory."
14642
  msgstr ""
14643
 
14644
+ #: wppa-settings-autosave.php:8399
14645
  msgid "The depot directory path."
14646
  msgstr ""
14647
 
14648
+ #: wppa-settings-autosave.php:8404
14649
  msgid "The depot directory url."
14650
  msgstr ""
14651
 
14652
+ #: wppa-settings-autosave.php:8409
14653
  msgid "The path to wp-content."
14654
  msgstr ""
14655
 
14656
+ #: wppa-settings-autosave.php:8414
14657
  msgid "WP Base upload dir."
14658
  msgstr ""
14659
 
14660
+ #: wppa-settings-autosave.php:8420
14661
  msgid "ABSPATH windows proof"
14662
  msgstr ""
14663
 
14664
+ #: wppa-settings-autosave.php:8432
14665
  #, php-format
14666
  msgid "<br />Memory used on this page: %6.2f Mb."
14667
  msgstr ""
14668
 
14669
+ #: wppa-settings-autosave.php:8433
14670
  #, php-format
14671
  msgid "<br />There are %d settings and %d runtime parameters."
14672
  msgstr ""
14673
 
14674
+ #: wppa-settings-autosave.php:8510
14675
  msgid "The default for this setting is:"
14676
  msgstr ""
14677
 
14678
+ #: wppa-settings-autosave.php:8519
14679
  msgid "Click for help"
14680
  msgstr ""
14681
 
14682
+ #: wppa-settings-autosave.php:8563 wppa-settings-autosave.php:8580
14683
+ #: wppa-settings-autosave.php:8609 wppa-settings-autosave.php:8632
14684
+ #: wppa-settings-autosave.php:8662 wppa-settings-autosave.php:8689
14685
+ #: wppa-settings-autosave.php:8715 wppa-settings-autosave.php:8763
14686
  msgid "Slug ="
14687
  msgstr ""
14688
 
14689
+ #: wppa-settings-autosave.php:8632 wppa-settings-autosave.php:8662
14690
+ #: wppa-settings-autosave.php:8689 wppa-settings-autosave.php:8715
14691
  msgid "Values = yes, no"
14692
  msgstr ""
14693
 
14694
+ #: wppa-settings-autosave.php:8661 wppa-settings-autosave.php:8687
14695
+ #: wppa-settings-autosave.php:8714
14696
  msgid "Warning!"
14697
  msgstr ""
14698
 
14699
+ #: wppa-settings-autosave.php:8688 wppa-settings-autosave.php:8714
14700
  msgid "Please read the help"
14701
  msgstr ""
14702
 
14703
+ #: wppa-settings-autosave.php:8763
14704
  msgid "Values = "
14705
  msgstr ""
14706
 
14707
+ #: wppa-settings-autosave.php:8839
14708
  msgid "Checked"
14709
  msgstr ""
14710
 
14711
+ #: wppa-settings-autosave.php:8840
14712
  msgid "Unchecked"
14713
  msgstr ""
14714
 
14715
+ #: wppa-settings-autosave.php:8845
14716
  msgid "the photo specific link."
14717
  msgstr ""
14718
 
14719
+ #: wppa-settings-autosave.php:8877
14720
  msgid "Show!"
14721
  msgstr ""
14722
 
14723
+ #: wppa-settings-autosave.php:8897
14724
  #, fuzzy
14725
  msgid "Not done yet"
14726
  msgstr "Intet album er defineret."
14727
 
14728
+ #: wppa-settings-autosave.php:8904
14729
  #, fuzzy
14730
  msgid "Start!"
14731
  msgstr "Start"
14732
 
14733
+ #: wppa-settings-autosave.php:8909
14734
  msgid "Locked!"
14735
  msgstr ""
14736
 
14737
+ #: wppa-settings-autosave.php:8940
14738
  msgid ""
14739
  "You can not have popup and lightbox on thumbnails at the same time. Uncheck "
14740
  "either Table IV-C8 or choose a different linktype in Table VI-2."
14741
  msgstr ""
14742
 
14743
+ #: wppa-settings-autosave.php:8943
14744
  #, php-format
14745
  msgid ""
14746
  "It is important that you select a page that contains at least %%wppa%% or "
14747
  "[wppa][/wppa]."
14748
  msgstr ""
14749
 
14750
+ #: wppa-settings-autosave.php:8944
14751
  msgid ""
14752
  "If you ommit this, the link will not work at all or simply refresh the "
14753
  "(home)page."
14754
  msgstr ""
14755
 
14756
+ #: wppa-setup.php:429
14757
  msgid "IMPORTANT UPGRADE NOTICE"
14758
  msgstr ""
14759
 
14760
+ #: wppa-setup.php:430
14761
  msgid ""
14762
  "Please CHECK your customized WPPA-STYLE.CSS file against the newly supplied "
14763
  "one. You may wish to add or modify some attributes. Be aware of the fact "
14764
  "that most settings can now be set in the admin settings page."
14765
  msgstr ""
14766
 
14767
+ #: wppa-setup.php:431
14768
  msgid ""
14769
  "Please REPLACE your customized WPPA-THEME.PHP file by the newly supplied "
14770
  "one, or just remove it from your theme directory. You may modify it later if "
14772
  "version of the plugin software."
14773
  msgstr ""
14774
 
14775
+ #: wppa-setup.php:457
14776
  #, php-format
14777
  msgid "WPPA+ successfully updated in multi site mode to db version %s."
14778
  msgstr ""
14779
 
14780
+ #: wppa-setup.php:460
14781
  #, php-format
14782
  msgid "WPPA+ successfully updated in single site mode to db version %s."
14783
  msgstr ""
14784
 
14785
+ #: wppa-setup.php:465
14786
  #, fuzzy
14787
  msgid "An error occurred during update"
14788
  msgstr "Fejl under upload"
14789
 
14790
+ #: wppa-setup.php:764
14791
  msgid ""
14792
  "<span style=\"color:red\" >Warning: Do not upload copyrighted material!</"
14793
  "span>"
14794
  msgstr ""
14795
 
14796
+ #: wppa-setup.php:773 wppa-setup.php:777 wppa-setup.php:781
14797
  msgid "Select tags:"
14798
  msgstr ""
14799
 
14800
+ #: wppa-setup.php:784
14801
  msgid "Enter new tags:"
14802
  msgstr ""
14803
 
14804
+ #: wppa-setup.php:934
14805
  msgid "Vote for me!"
14806
  msgstr ""
14807
 
14808
+ #: wppa-setup.php:935
14809
  msgid "Voted for me"
14810
  msgstr ""
14811
 
14812
+ #: wppa-setup.php:1293
14813
+ #, fuzzy
14814
+ msgid "Search in current section"
14815
+ msgstr "Ricerca nella sezione corrente"
14816
+
14817
+ #: wppa-setup.php:1294
14818
+ #, fuzzy
14819
+ msgid "Search in current results"
14820
+ msgstr "Ricerca in risultati correnti"
14821
+
14822
+ #: wppa-setup.php:1360
14823
  msgid "Type your custom url here"
14824
  msgstr ""
14825
 
14826
+ #: wppa-setup.php:1361
14827
  msgid "Type the title here"
14828
  msgstr ""
14829
 
14830
+ #: wppa-setup.php:1373 wppa-topten-widget.php:13 wppa-topten-widget.php:49
14831
+ #: wppa-topten-widget.php:194
14832
  msgid "Top Ten Photos"
14833
  msgstr "Foto Top Ti"
14834
 
14835
+ #: wppa-setup.php:1376 wppa-thumbnail-widget.php:13
14836
  #: wppa-thumbnail-widget.php:168
14837
  #, fuzzy
14838
  msgid "Thumbnail Photos"
14839
  msgstr "Miniatura"
14840
 
14841
+ #: wppa-setup.php:1379
14842
  #, fuzzy
14843
  msgid "Search photos"
14844
  msgstr "Top fotos"
14845
 
14846
+ #: wppa-setup.php:1422
14847
  msgid ""
14848
  "The uploads directory does not exist, please do a regular WP upload first."
14849
  msgstr ""
14850
 
14851
+ #: wppa-setup.php:1426
14852
  msgid "Successfully created uploads directory."
14853
  msgstr ""
14854
 
14855
+ #: wppa-setup.php:1437
14856
  #, fuzzy
14857
  msgid "Could not create the wppa directory."
14858
  msgstr "Impossibile creare album. "
14859
 
14860
+ #: wppa-setup.php:1441
14861
  msgid "Successfully created wppa directory."
14862
  msgstr ""
14863
 
14864
+ #: wppa-setup.php:1451
14865
  #, fuzzy
14866
  msgid "Could not create the wppa thumbs directory."
14867
  msgstr "Impossibile creare album. "
14868
 
14869
+ #: wppa-setup.php:1455
14870
  msgid "Successfully created wppa thumbs directory."
14871
  msgstr ""
14872
 
14873
+ #: wppa-setup.php:1465
14874
  msgid "Could not create the wppa watermarks directory."
14875
  msgstr ""
14876
 
14877
+ #: wppa-setup.php:1469
14878
  msgid "Successfully created wppa watermarks directory."
14879
  msgstr ""
14880
 
14881
+ #: wppa-setup.php:1479
14882
  msgid "Could not create the wppa fonts directory."
14883
  msgstr ""
14884
 
14885
+ #: wppa-setup.php:1483
14886
  msgid "Successfully created wppa fonts directory."
14887
  msgstr ""
14888
 
14889
+ #: wppa-setup.php:1495
14890
  msgid "Unable to create depot directory."
14891
  msgstr ""
14892
 
14893
+ #: wppa-setup.php:1499
14894
  msgid "Successfully created wppa depot directory."
14895
  msgstr ""
14896
 
14897
+ #: wppa-setup.php:1510
14898
  msgid "Unable to create user depot directory"
14899
  msgstr ""
14900
 
14901
+ #: wppa-setup.php:1514
14902
  msgid "Successfully created wppa user depot directory."
14903
  msgstr ""
14904
 
14905
+ #: wppa-setup.php:1524
14906
  msgid "Unable to create temp directory"
14907
  msgstr ""
14908
 
14909
+ #: wppa-setup.php:1528
14910
  msgid "Successfully created temp directory."
14911
  msgstr ""
14912
 
14913
+ #: wppa-setup.php:1536
14914
  #, php-format
14915
  msgid ""
14916
  "Ask your administrator to give you more rights, or create <b>%s</b> manually "
15019
  msgid "Text below photos:"
15020
  msgstr "N&aelig;ste billede"
15021
 
15022
+ #: wppa-slideshow.php:235
15023
  msgid "Paused"
15024
  msgstr "Pause"
15025
 
15026
+ #: wppa-slideshow.php:240
15027
  msgid ""
15028
  "To see the full size images, you need to enable javascript in your browser."
15029
  msgstr ""
15030
  "For at se billeder i fuld st&oslash;rrelse skal du tillade javascript in din "
15031
  "browser."
15032
 
15033
+ #: wppa-slideshow.php:461
15034
  msgid "Checkout"
15035
  msgstr ""
15036
 
15037
+ #: wppa-slideshow.php:496
15038
  #, fuzzy
15039
  msgid "- - - Voting enabled - - -"
15040
  msgstr "Attivo"
15041
 
15042
+ #: wppa-slideshow.php:507
15043
  #, fuzzy, php-format
15044
  msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
15045
  msgstr ""
15046
  "<span style=\"color:red\" >Attenzione: non caricare materiale protetto da "
15047
  "copyright!</span>"
15048
 
15049
+ #: wppa-slideshow.php:513 wppa-slideshow.php:601 wppa-slideshow.php:638
15050
  #, php-format
15051
  msgid "You must <a href=\"%s\">login</a> to vote"
15052
  msgstr "Du skal <a href=\"%s\">logge ind</a> for at stemme"
15053
 
15054
+ #: wppa-slideshow.php:516 wppa-slideshow.php:604 wppa-slideshow.php:641
15055
  #, fuzzy
15056
  msgid "You must login to vote"
15057
  msgstr "Du skal <a href=\"%s\">logge ind</a> for at stemme"
15058
 
15059
+ #: wppa-slideshow.php:533
15060
  msgid "- - - Rating enabled - - -"
15061
  msgstr "- - - Bed&oslash;mmelse aktiveret - - -"
15062
 
15063
+ #: wppa-slideshow.php:549
15064
  msgid "very low"
15065
  msgstr "meget lav"
15066
 
15067
+ #: wppa-slideshow.php:550
15068
  msgid "low"
15069
  msgstr "lav"
15070
 
15071
+ #: wppa-slideshow.php:551
15072
  msgid "average"
15073
  msgstr "gennemsnitlig"
15074
 
15075
+ #: wppa-slideshow.php:552
15076
  msgid "high"
15077
  msgstr "h&oslash;j"
15078
 
15079
+ #: wppa-slideshow.php:553
15080
  msgid "very high"
15081
  msgstr "meget h&oslash;j"
15082
 
15083
+ #: wppa-slideshow.php:580 wppa-slideshow.php:624
15084
  msgid "Are you sure you want to mark this image as inappropriate?"
15085
  msgstr ""
15086
  "Er du sikker p&aring;, at du vil markere dette billed som v&aelig;rende "
15087
  "upassende."
15088
 
15089
+ #: wppa-slideshow.php:581 wppa-slideshow.php:625
15090
  msgid "Click this if you do NOT like this image!"
15091
  msgstr "Klik her hvis du IKKE kan lide dette billed!"
15092
 
15093
+ #: wppa-slideshow.php:583 wppa-slideshow.php:627
15094
  #, fuzzy
15095
  msgid "Number of people who marked this photo as inappropriate"
15096
  msgstr "Markeret som spam"
15097
 
15098
+ #: wppa-slideshow.php:633
15099
  #, fuzzy
15100
  msgid "My rating:"
15101
  msgstr "Valutazione:"
15102
 
15103
+ #: wppa-slideshow.php:717
15104
  msgid "First"
15105
  msgstr ""
15106
 
15107
+ #: wppa-slideshow.php:722
15108
  msgid "Last"
15109
  msgstr ""
15110
 
15111
+ #: wppa-slideshow.php:890
15112
  #, php-format
15113
  msgid "Photo %s of %s"
15114
  msgstr "Foto %s af %s"
15115
 
15116
+ #: wppa-slideshow.php:921
15117
  msgid "Click to start/stop"
15118
  msgstr "Klik for start/stop"
15119
 
15120
+ #: wppa-slideshow.php:933
15121
  msgid "- - - Comments box activated - - -"
15122
  msgstr "- - - Kommentar boks aktiveret - - -"
15123
 
15124
+ #: wppa-slideshow.php:954
15125
  msgid "- - - IPTC box activated - - -"
15126
  msgstr "- - - IPTC boks aktiveret - - -"
15127
 
15128
+ #: wppa-slideshow.php:974
15129
  msgid "- - - EXIF box activated - - -"
15130
  msgstr "- - - EXIF boks aktiveret - - -"
15131
 
15143
  msgid ", a subalbum of"
15144
  msgstr ", et underalbum til"
15145
 
15146
+ #: wppa-stereo-widget.php:12
15147
+ msgid "WPPA+ Stereo settings"
15148
+ msgstr ""
15149
+
15150
+ #: wppa-stereo-widget.php:13
15151
+ #, fuzzy
15152
+ msgid "3D Settings"
15153
+ msgstr "Indstillinger"
15154
+
15155
+ #: wppa-stereo-widget.php:35 wppa-stereo-widget.php:66
15156
+ #, fuzzy
15157
+ msgid "3D Stereo Settings"
15158
+ msgstr "Indstillinger"
15159
+
15160
+ #: wppa-stereo.php:31
15161
+ msgid "Color"
15162
+ msgstr ""
15163
+
15164
+ #: wppa-stereo.php:32
15165
+ msgid "Half color"
15166
+ msgstr ""
15167
+
15168
+ #: wppa-stereo.php:33
15169
+ msgid "Gray"
15170
+ msgstr ""
15171
+
15172
+ #: wppa-stereo.php:34
15173
+ msgid "True anaglyph"
15174
+ msgstr ""
15175
+
15176
+ #: wppa-stereo.php:35
15177
+ msgid "Optimized"
15178
+ msgstr ""
15179
+
15180
+ #: wppa-stereo.php:36
15181
+ msgid "Flat"
15182
+ msgstr ""
15183
+
15184
+ #: wppa-stereo.php:38
15185
+ msgid "Red - Cyan"
15186
+ msgstr ""
15187
+
15188
+ #: wppa-stereo.php:39
15189
+ msgid "Green - Magenta"
15190
+ msgstr ""
15191
+
15192
  #: wppa-super-view-widget.php:13
15193
  msgid "WPPA+ Selectable display"
15194
  msgstr ""
15229
  msgid "Link Title ( tooltip ):"
15230
  msgstr ""
15231
 
15232
+ #: wppa-thumbnail-widget.php:200 wppa-topten-widget.php:236
15233
+ #: wppa-upldr-widget.php:182
15234
  #, fuzzy
15235
  msgid "Sort by:"
15236
  msgstr "Foto %s af %s"
15243
  msgid "Show photo names <small>under thumbnails only</small>:"
15244
  msgstr ""
15245
 
15246
+ #: wppa-thumbnails.php:174 wppa-thumbnails.php:1059 wppa-topten-widget.php:110
15247
  msgid "View the top rated photos"
15248
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
15249
 
15250
+ #: wppa-thumbnails.php:635
15251
  #, fuzzy
15252
  msgid "Comments:"
15253
  msgstr "%d kommentarer"
15254
 
15255
+ #: wppa-thumbnails.php:966
15256
  #, php-format
15257
  msgid "Missing thumbnail image #%s"
15258
  msgstr ""
15375
  msgid "--- All photos in the system ---"
15376
  msgstr ""
15377
 
15378
+ #: wppa-tinymce-scripts.php:208 wppa-tinymce-shortcodes.php:249
15379
+ #: wppa-tinymce-shortcodes.php:272 wppa-tinymce-shortcodes.php:317
15380
+ #: wppa-tinymce-shortcodes.php:340 wppa-tinymce-shortcodes.php:479
15381
  msgid "There are no albums yet"
15382
  msgstr ""
15383
 
15396
  msgid "* Album contains less than the minimun number of photos"
15397
  msgstr ""
15398
 
15399
+ #: wppa-tinymce-scripts.php:224 wppa-tinymce-shortcodes.php:378
15400
  msgid "The Photo to be used:"
15401
  msgstr ""
15402
 
15403
+ #: wppa-tinymce-scripts.php:229 wppa-tinymce-shortcodes.php:384
15404
  #, fuzzy
15405
  msgid "Please select a photo"
15406
  msgstr "Skriv en kommentar"
15415
  msgid "--- The photo of the day ---"
15416
  msgstr "Dagens foto"
15417
 
15418
+ #: wppa-tinymce-scripts.php:244 wppa-tinymce-shortcodes.php:401
15419
  msgid "There are no photos yet"
15420
  msgstr ""
15421
 
15422
+ #: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:407
15423
  msgid "Specify the photo to be used"
15424
  msgstr ""
15425
 
15426
+ #: wppa-tinymce-scripts.php:251 wppa-tinymce-shortcodes.php:408
15427
  msgid "You can select from a maximum of 100 most recently added photos"
15428
  msgstr ""
15429
 
15430
+ #: wppa-tinymce-scripts.php:257 wppa-tinymce-shortcodes.php:422
15431
  #, fuzzy
15432
  msgid "The tags the photos should have:"
15433
  msgstr "Unders&oslash;g de tag(s) som dine fotos har"
15434
 
15435
+ #: wppa-tinymce-scripts.php:260 wppa-tinymce-shortcodes.php:425
15436
  #, fuzzy
15437
  msgid "--- please select tag(s) ---"
15438
  msgstr "--- vises ikke ---"
15444
  "tags"
15445
  msgstr ""
15446
 
15447
+ #: wppa-tinymce-scripts.php:273 wppa-tinymce-shortcodes.php:502
15448
  #, fuzzy
15449
  msgid "The size of the display:"
15450
  msgstr "Dagens foto"
15451
 
15452
+ #: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:507
15453
  msgid ""
15454
  "Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
15455
  "span>."
15456
  msgstr ""
15457
 
15458
+ #: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:508
15459
  msgid ""
15460
  "A value less than <span style=\"color:blue\" >100</span> will automaticly be "
15461
  "interpreted as a <span style=\"color:blue\" >percentage</span> of the "
15462
  "available space."
15463
  msgstr ""
15464
 
15465
+ #: wppa-tinymce-scripts.php:280 wppa-tinymce-shortcodes.php:509
15466
  msgid "Leave this blank for default size"
15467
  msgstr ""
15468
 
15469
+ #: wppa-tinymce-scripts.php:285 wppa-tinymce-shortcodes.php:515
15470
  #: wppa-widget-admin.php:72
15471
  msgid "Horizontal alignment:"
15472
  msgstr ""
15473
 
15474
+ #: wppa-tinymce-scripts.php:294 wppa-tinymce-shortcodes.php:524
15475
  msgid "Specify the alignment to be used or --- none ---"
15476
  msgstr ""
15477
 
15478
+ #: wppa-tinymce-scripts.php:300 wppa-tinymce-shortcodes.php:534
15479
  msgid "Insert Gallery"
15480
  msgstr ""
15481
 
15625
  msgid "A landing page shortcode"
15626
  msgstr ""
15627
 
15628
+ #: wppa-tinymce-shortcodes.php:181
15629
+ #, fuzzy
15630
+ msgid "A 3D stereo settings box"
15631
+ msgstr "--- vises ikke ---"
15632
+
15633
+ #: wppa-tinymce-shortcodes.php:188
15634
  msgid "Kind of selection:"
15635
  msgstr ""
15636
 
15637
+ #: wppa-tinymce-shortcodes.php:191
15638
  msgid "Please select a type of selection to be used"
15639
  msgstr ""
15640
 
15641
+ #: wppa-tinymce-shortcodes.php:192
15642
  msgid "One or more wppa+ albums"
15643
  msgstr ""
15644
 
15645
+ #: wppa-tinymce-shortcodes.php:193
15646
  msgid "A special selection"
15647
  msgstr ""
15648
 
15649
+ #: wppa-tinymce-shortcodes.php:200 wppa-tinymce-shortcodes.php:220
15650
  msgid "The selection to be used:"
15651
  msgstr ""
15652
 
15653
+ #: wppa-tinymce-shortcodes.php:203 wppa-tinymce-shortcodes.php:223
15654
  #, fuzzy
15655
  msgid "Please select a virtual album"
15656
  msgstr ""
15657
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
15658
  "di ricerca differente."
15659
 
15660
+ #: wppa-tinymce-shortcodes.php:204 wppa-tinymce-shortcodes.php:224
15661
  #, fuzzy
15662
  msgid "The most recently modified album"
15663
  msgstr "Le impostazioni sono state aggiornate"
15664
 
15665
+ #: wppa-tinymce-shortcodes.php:205
15666
  #, fuzzy
15667
  msgid "The top rated photos"
15668
  msgstr "Top fotos"
15669
 
15670
+ #: wppa-tinymce-shortcodes.php:206
15671
  #, fuzzy
15672
  msgid "The most recently uploaded photos"
15673
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
15674
 
15675
+ #: wppa-tinymce-shortcodes.php:207
15676
  msgid "A random selection of featured photos"
15677
  msgstr ""
15678
 
15679
+ #: wppa-tinymce-shortcodes.php:208
15680
  #, fuzzy
15681
  msgid "The most recently commented photos"
15682
  msgstr "Nyligt kommenterede fotos"
15683
 
15684
+ #: wppa-tinymce-shortcodes.php:209
15685
  msgid "Photos that have certain tags"
15686
  msgstr ""
15687
 
15688
+ #: wppa-tinymce-shortcodes.php:210 wppa-tinymce-shortcodes.php:226
15689
  msgid "Albums tagged with a certain category"
15690
  msgstr ""
15691
 
15692
+ #: wppa-tinymce-shortcodes.php:211
15693
  msgid "Photos in albums owned by a certain user"
15694
  msgstr ""
15695
 
15696
+ #: wppa-tinymce-shortcodes.php:212
15697
  #, fuzzy
15698
  msgid "Photos uploaded by a certain user"
15699
  msgstr "Foto caricate nell'album numero"
15700
 
15701
+ #: wppa-tinymce-shortcodes.php:213
15702
  msgid "All photos in the system"
15703
  msgstr ""
15704
 
15705
+ #: wppa-tinymce-shortcodes.php:225
15706
  msgid "Albums owned by a certain user"
15707
  msgstr ""
15708
 
15709
+ #: wppa-tinymce-shortcodes.php:227
15710
  msgid "All albums in the system"
15711
  msgstr ""
15712
 
15713
+ #: wppa-tinymce-shortcodes.php:234 wppa-tinymce-shortcodes.php:257
15714
  msgid "The Album(s) to be used:"
15715
  msgstr ""
15716
 
15717
+ #: wppa-tinymce-shortcodes.php:240
15718
  #, fuzzy
15719
  msgid "Please select one or more albums"
15720
  msgstr "Skriv dit navn"
15721
 
15722
+ #: wppa-tinymce-shortcodes.php:263 wppa-upldr-widget.php:212
15723
  msgid "All albums"
15724
  msgstr "album"
15725
 
15726
+ #: wppa-tinymce-shortcodes.php:280
15727
  #, fuzzy
15728
  msgid "The album owner:"
15729
  msgstr ""
15730
  "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
15731
  "per i titoli delle copertine degli album."
15732
 
15733
+ #: wppa-tinymce-shortcodes.php:283
15734
  #, fuzzy
15735
  msgid "Please select a user"
15736
  msgstr ""
15737
  "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
15738
  "di ricerca differente."
15739
 
15740
+ #: wppa-tinymce-shortcodes.php:284
15741
  msgid "The logged in visitor"
15742
  msgstr ""
15743
 
15744
+ #: wppa-tinymce-shortcodes.php:290
15745
  msgid "Too many users, edit manually"
15746
  msgstr ""
15747
 
15748
+ #: wppa-tinymce-shortcodes.php:305
15749
  msgid "No parent specification"
15750
  msgstr ""
15751
 
15752
+ #: wppa-tinymce-shortcodes.php:308 wppa-tinymce-shortcodes.php:331
15753
+ #: wppa-tinymce-shortcodes.php:470
15754
  msgid "The generic parent"
15755
  msgstr ""
15756
 
15757
+ #: wppa-tinymce-shortcodes.php:348
15758
  #, fuzzy
15759
  msgid "Max Albums:"
15760
  msgstr "album"
15761
 
15762
+ #: wppa-tinymce-shortcodes.php:356
15763
  #, fuzzy
15764
  msgid "Max Photos:"
15765
  msgstr "Foto"
15766
 
15767
+ #: wppa-tinymce-shortcodes.php:364
15768
  msgid "The cat the albums should have:"
15769
  msgstr ""
15770
 
15771
+ #: wppa-tinymce-shortcodes.php:367
15772
  #, fuzzy
15773
  msgid "--- please select category ---"
15774
  msgstr "--- vises ikke ---"
15775
 
15776
+ #: wppa-tinymce-shortcodes.php:397
15777
  #, fuzzy
15778
  msgid "The most recently uploaded photo"
15779
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
15780
 
15781
+ #: wppa-tinymce-shortcodes.php:398
15782
  #, fuzzy
15783
  msgid "The photo of the day"
15784
  msgstr "Dagens foto"
15785
 
15786
+ #: wppa-tinymce-shortcodes.php:415
15787
  msgid "Preview image:"
15788
  msgstr ""
15789
 
15790
+ #: wppa-tinymce-shortcodes.php:436 wppa-tinymce-shortcodes.php:445
15791
  msgid "Additional features:"
15792
  msgstr ""
15793
 
15794
+ #: wppa-tinymce-shortcodes.php:438
15795
  msgid "Enable Subsearch"
15796
  msgstr ""
15797
 
15798
+ #: wppa-tinymce-shortcodes.php:439
15799
  msgid "Enable Rootsearch"
15800
  msgstr ""
15801
 
15802
+ #: wppa-tinymce-shortcodes.php:447
15803
  msgid "Enable all tags"
15804
  msgstr ""
15805
 
15806
+ #: wppa-tinymce-shortcodes.php:450
15807
  #, fuzzy
15808
  msgid "Please select the tags to show"
15809
  msgstr "Unders&oslash;g de tag(s) som dine fotos har"
15810
 
15811
+ #: wppa-tinymce-shortcodes.php:456
15812
  #, fuzzy
15813
  msgid "There are no tags"
15814
  msgstr "Der er"
15815
 
15816
+ #: wppa-tinymce-shortcodes.php:487
15817
  msgid "Calendar type:"
15818
  msgstr ""
15819
 
15820
+ #: wppa-tinymce-shortcodes.php:490
15821
  #, fuzzy
15822
  msgid "By EXIF date"
15823
  msgstr "Ingen EXIF data"
15824
 
15825
+ #: wppa-tinymce-shortcodes.php:491
15826
  #, fuzzy
15827
  msgid "By date of upload"
15828
  msgstr "Foto caricate nell'album numero"
15829
 
15830
+ #: wppa-tinymce-shortcodes.php:492
15831
  msgid "By date last modified"
15832
  msgstr ""
15833
 
15834
+ #: wppa-tinymce-shortcodes.php:495
15835
  msgid "Last date first"
15836
  msgstr ""
15837
 
15838
+ #: wppa-tinymce-shortcodes.php:496
15839
  msgid "Initially display all"
15840
  msgstr ""
15841
 
15842
+ #: wppa-tinymce-shortcodes.php:532
15843
  msgid ""
15844
  "This is a preview of the shortcode that is being generated. You may edit the "
15845
  "comment"
15846
  msgstr ""
15847
 
15848
+ #: wppa-tinymce-shortcodes.php:535
15849
  msgid "insert Gallery"
15850
  msgstr ""
15851
 
15852
+ #: wppa-tinymce-shortcodes.php:535
15853
  msgid "Please complete the shortcode specs"
15854
  msgstr ""
15855
 
15858
  msgid "WPPA+ Top Ten Rated Photos"
15859
  msgstr "Foto Top Ti"
15860
 
15861
+ #: wppa-topten-widget.php:50
15862
  #, fuzzy
15863
  msgid "Top Ten Photo album"
15864
  msgstr "Foto Top Ti"
15865
 
15866
+ #: wppa-topten-widget.php:138 wppa-topten-widget.php:142
15867
+ #: wppa-topten-widget.php:149
15868
  #, fuzzy, php-format
15869
  msgid "%s Votes"
15870
  msgstr "Gli utenti possono esprimere più voti."
15871
 
15872
+ #: wppa-topten-widget.php:139 wppa-topten-widget.php:144
15873
+ #: wppa-topten-widget.php:147
15874
  #, fuzzy, php-format
15875
  msgid "Views: %s times"
15876
  msgstr "Visite: %s"
15877
 
15878
+ #: wppa-topten-widget.php:240
15879
  msgid "Number of views"
15880
  msgstr ""
15881
 
15882
+ #: wppa-topten-widget.php:244
15883
  msgid "Include sub albums:"
15884
  msgstr ""
15885
 
15886
+ #: wppa-topten-widget.php:252
15887
  msgid "Show owner:"
15888
  msgstr ""
15889
 
15890
+ #: wppa-topten-widget.php:257
15891
  #, fuzzy
15892
  msgid "Show album:"
15893
  msgstr ""
15894
  "Questa impostazione farà sì che cliccando sulla immagine con il tasto destro "
15895
  "non permetterà all'utente di scaricare l'immagine."
15896
 
15897
+ #: wppa-topten-widget.php:272
15898
  msgid "View count:"
15899
  msgstr ""
15900
 
15908
  msgid "Uploader Photos"
15909
  msgstr "Indsend foto"
15910
 
15911
+ #: wppa-upldr-widget.php:44
15912
  #, fuzzy
15913
  msgid "User uploaded photos"
15914
  msgstr "Bruger %s indsendte foto %s ind i album %s"
15915
 
15916
+ #: wppa-upldr-widget.php:92
15917
  msgid "There are too many registered users in the system for this widget"
15918
  msgstr ""
15919
 
15920
+ #: wppa-upldr-widget.php:126 wppa-upldr-widget.php:133
15921
  #, fuzzy
15922
  msgid "Photos uploaded by"
15923
  msgstr "Foto caricate nell'album numero"
15924
 
15925
+ #: wppa-upldr-widget.php:170
15926
  #, fuzzy
15927
  msgid "User Photos"
15928
  msgstr "Foto"
15929
 
15930
+ #: wppa-upldr-widget.php:185
15931
  #, fuzzy
15932
  msgid "Number of photos"
15933
  msgstr "Miniatura"
15934
 
15935
+ #: wppa-upldr-widget.php:186
15936
  #, fuzzy
15937
  msgid "Most recent photo"
15938
  msgstr "Se fotos"
15939
 
15940
+ #: wppa-upldr-widget.php:190
15941
  msgid "Ignore:"
15942
  msgstr ""
15943
 
15944
+ #: wppa-upldr-widget.php:192
15945
  msgid "Enter loginnames seperated by commas"
15946
  msgstr ""
15947
 
15948
+ #: wppa-upldr-widget.php:195
15949
  msgid "Look only in albums (including sub-albums):"
15950
  msgstr ""
15951
 
16578
  msgid "Could not create page."
16579
  msgstr "Impossibile creare album. "
16580
 
16581
+ #: wppa-utils.php:287
16582
  #, php-format
16583
  msgid "Rating: %s"
16584
  msgstr "Bed&oslash;mmelse: %s"
16585
 
16586
+ #: wppa-utils.php:810 wppa-utils.php:821 wppa-utils.php:832
16587
  msgid "Notification of inappropriate image"
16588
  msgstr ""
16589
 
16590
+ #: wppa-utils.php:811 wppa-utils.php:822 wppa-utils.php:833
16591
  #, php-format
16592
  msgid "Photo %s has been marked as inappropriate by %s different visitors."
16593
  msgstr ""
16594
 
16595
+ #: wppa-utils.php:823
16596
  msgid "The status has been changed to 'pending'."
16597
  msgstr ""
16598
 
16599
+ #: wppa-utils.php:834
16600
  #, fuzzy
16601
  msgid "It has been deleted."
16602
  msgstr "Il file %s no è supportato ed è stato rimosso."
16603
 
16604
+ #: wppa-utils.php:895
16605
  #, php-format
16606
  msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
16607
  msgstr "G&aelig;stens e-mail adresse er: <a href=\"mailto:%s\">%s</a>"
16608
 
16609
+ #: wppa-utils.php:900
16610
  #, php-format
16611
  msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
16612
  msgstr ""
16613
  "G&aelig;sten siger, at hans e-mail adresse er: <a href=\"mailto:%s\">%s</a>"
16614
 
16615
+ #: wppa-utils.php:908
16616
  #, php-format
16617
  msgid ""
16618
  "This message is automaticly generated at %s. It is useless to respond to it."
16620
  "Denne besked er automatisk genereret af %s. Det er un&oslash;dvendigt at "
16621
  "reagere p&aring; den."
16622
 
16623
+ #: wppa-utils.php:1161
16624
  #, php-format
16625
  msgid "Time out after processing %s items."
16626
  msgstr ""
16627
 
16628
+ #: wppa-utils.php:1164 wppa-utils.php:1168
16629
  #, php-format
16630
  msgid "Time out after processing %s items. Please restart this operation"
16631
  msgstr ""
16835
  msgid "- start over -"
16836
  msgstr ""
16837
 
16838
+ #: wppa.php:359
16839
  msgid ""
16840
  "</strong><h3>WP Photo ALbum Plus Error message</h3>This is a multi site "
16841
  "installation. One of the following 3 lines must be entered in wp-config.php:"
16842
  msgstr ""
16843
 
16844
+ #: wppa.php:360
16845
  msgid ""
16846
  "<br /><br /><b>define( 'WPPA_MULTISITE_INDIVIDUAL', true );</b> <small>// "
16847
  "Multisite WP 3.5 or later with every site its own albums and photos</small>"
16848
  msgstr ""
16849
 
16850
+ #: wppa.php:361
16851
  msgid ""
16852
  "<br /><b>define( 'WPPA_MULTISITE_BLOGSDIR', true );</b> <small>// Multisite "
16853
  "prior to WP 3.5 with every site its own albums and photos</small>"
16854
  msgstr ""
16855
 
16856
+ #: wppa.php:362
16857
  msgid ""
16858
  "<br /><b>define( 'WPPA_MULTISITE_GLOBAL', true );</b> <small>// Multisite "
16859
  "with one common set of albums and photos</small>"
16860
  msgstr ""
16861
 
16862
+ #: wppa.php:363
16863
  msgid ""
16864
  "<br /><br />For more information see: <a href=\"https://wordpress.org/"
16865
  "plugins/wp-photo-album-plus/faq/\">the faq</a>"
16866
  msgstr ""
16867
 
16868
+ #: wppa.php:364
16869
  msgid ""
16870
  "<br /><br /><em>If you upload photos, they will be placed in the wrong "
16871
  "location and will not be visible for visitors!</em><strong>"
16872
  msgstr ""
16873
 
16874
+ #: wppa.php:381
16875
  msgid ""
16876
  "</strong>The photo index table needs to be rebuilt. Please run <b>Photo "
16877
  "Albums -> Settings</b> admin page <b>Table VIII-A9</b><strong>"
16878
  msgstr ""
16879
 
16880
+ #: wppa.php:385
16881
  msgid ""
16882
  "</strong>The album index table needs to be rebuilt. Please run <b>Photo "
16883
  "Albums -> Settings</b> admin page <b>Table VIII-A8</b><strong>"
16884
  msgstr ""
16885
 
16886
+ #: wppa.php:389
16887
  msgid ""
16888
  "</strong>The avarage ratings need to be recalculated. Please run <b>Photo "
16889
  "Albums -> Settings</b> admin page <b>Table VIII-A5</b><strong>"
16890
  msgstr ""
16891
 
16892
+ #: wppa.php:409
16893
  msgid ""
16894
  "</strong>The tags system needs to be converted. Please run <b>Photo Albums -"
16895
  "> Settings</b> admin page <b>Table VIII-B16</b><strong>"
16896
  msgstr ""
16897
 
16898
+ #: wppa.php:427
16899
  msgid ""
16900
  "</strong>The cats system needs to be converted. Please run <b>Photo Albums -"
16901
  "> Settings</b> admin page <b>Table VIII-B17</b><strong>"
16924
  msgid "http://wppa.opajaap.nl/"
16925
  msgstr ""
16926
 
16927
+ #, fuzzy
16928
+ #~ msgid "Filter priority"
16929
+ #~ msgstr "Lukkerhastighedsprioritet AE"
16930
+
16931
+ #, fuzzy
16932
+ #~ msgid "Shortcode_priority"
16933
+ #~ msgstr "Lukkerhastighedsprioritet AE"
16934
+
16935
  #, fuzzy
16936
  #~ msgid "Update uploads"
16937
  #~ msgstr ""
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: 2015-09-25 13:50+0200\n"
5
- "PO-Revision-Date: 2015-09-25 13:50+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.4\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: wppa.php\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -31,7 +31,7 @@ msgstr "Seite"
31
  #: wppa-album-admin-autosave.php:1445 wppa-album-admin-autosave.php:1519
32
  #: wppa-album-admin-autosave.php:1629 wppa-comment-admin.php:311
33
  #: wppa-comment-admin.php:380 wppa-comment-admin.php:398
34
- #: wppa-functions.php:1910 wppa-thumbnails.php:596
35
  #, fuzzy
36
  msgid "Edit"
37
  msgstr "Bearbeiten"
@@ -40,8 +40,8 @@ msgstr "Bearbeiten"
40
  msgid "Warning. No page defined for search results!"
41
  msgstr "Warnung. Keine Seite für die Suchergebnisse definiert!"
42
 
43
- #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:175
44
- #: wppa-settings-autosave.php:399 wppa-settings-autosave.php:2990
45
  #, fuzzy
46
  msgid "Search"
47
  msgstr "Suche"
@@ -94,17 +94,17 @@ msgstr "Fehler beim Schreiben in Einstellungen-Sicherungsdatei"
94
  msgid "Settings file not found"
95
  msgstr "Einstellungsdatei nicht gefunden"
96
 
97
- #: wppa-admin-functions.php:206 wppa-admin-functions.php:210 wppa-ajax.php:2228
98
- #: wppa-ajax.php:2235
99
  msgid "Please supply a numeric value greater than or equal to"
100
  msgstr "Bitte geben Sie einen numerischen Wert größer oder gleich"
101
 
102
- #: wppa-admin-functions.php:206 wppa-admin-functions.php:210 wppa-ajax.php:2228
103
- #: wppa-ajax.php:2235
104
  msgid "for"
105
  msgstr "für"
106
 
107
- #: wppa-admin-functions.php:210 wppa-ajax.php:2235
108
  msgid "and less than or equal to"
109
  msgstr "und kleiner oder gleich"
110
 
@@ -244,7 +244,7 @@ msgstr "Foto Alben"
244
  msgid "Album Admin"
245
  msgstr "Album Admin"
246
 
247
- #: wppa-admin.php:58 wppa-adminbar.php:47 wppa-upload-widget.php:75
248
  #: wppa-upload.php:88
249
  msgid "Upload Photos"
250
  msgstr "Fotos Hochladen"
@@ -275,7 +275,7 @@ msgid "Photo of the day Widget"
275
  msgstr "Foto des Tages"
276
 
277
  #: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:61
278
- #: wppa-setup.php:1349
279
  msgid "Photo of the day"
280
  msgstr "Foto des Tages"
281
 
@@ -284,9 +284,9 @@ msgstr "Foto des Tages"
284
  msgid "Manage comments"
285
  msgstr "%d Kommentare"
286
 
287
- #: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:389
288
- #: wppa-settings-autosave.php:2819 wppa-settings-autosave.php:7489
289
- #: wppa-settings-autosave.php:7534
290
  msgid "Comments"
291
  msgstr "Kommentare"
292
 
@@ -312,7 +312,7 @@ msgstr ""
312
  msgid "Import"
313
  msgstr "Fotos Importieren"
314
 
315
- #: wppa-admin.php:121 wppa-settings-autosave.php:8528
316
  #, fuzzy
317
  msgid "Update"
318
  msgstr "Erneuere die Plugin Beschreibung"
@@ -345,8 +345,8 @@ msgstr ""
345
  msgid "Exit & Refresh"
346
  msgstr "Erneuern"
347
 
348
- #: wppa-ajax.php:171 wppa-ajax.php:228 wppa-ajax.php:251 wppa-ajax.php:456
349
- #: wppa-ajax.php:717
350
  msgid "Security check failure"
351
  msgstr ""
352
 
@@ -383,7 +383,7 @@ msgstr "Kommentar bearbeitet"
383
  msgid "Could not remove comment"
384
  msgstr "Das Album konnte nicht erstellt werden."
385
 
386
- #: wppa-ajax.php:264 wppa-ajax.php:589
387
  msgid "Unexpected error"
388
  msgstr ""
389
 
@@ -395,7 +395,7 @@ msgstr ""
395
  msgid "The album is empty"
396
  msgstr ""
397
 
398
- #: wppa-ajax.php:291 wppa-ajax.php:419
399
  msgid "Unable to create zip archive"
400
  msgstr ""
401
 
@@ -404,78 +404,78 @@ msgstr ""
404
  msgid "Unable to create zip archive. code = %s"
405
  msgstr ""
406
 
407
- #: wppa-ajax.php:331
408
  #, php-format
409
  msgid "Only %s out of %s photos could be added to the zipfile"
410
  msgstr ""
411
 
412
- #: wppa-ajax.php:360
413
  msgid "Unknown source of request"
414
  msgstr ""
415
 
416
- #: wppa-ajax.php:378
417
  msgid "Empty filename"
418
  msgstr ""
419
 
420
- #: wppa-ajax.php:405
421
  msgid "Unable to create tempdir"
422
  msgstr ""
423
 
424
- #: wppa-ajax.php:429
425
  #, fuzzy
426
  msgid "Unknown type"
427
  msgstr "unbekannt"
428
 
429
- #: wppa-ajax.php:438
430
  msgid "The photo does no longer exist"
431
  msgstr ""
432
 
433
- #: wppa-ajax.php:470
434
  msgid "An error occurred while processing you rating request."
435
  msgstr ""
436
 
437
- #: wppa-ajax.php:471
438
  msgid "Maybe you opened the page too long ago to recognize you."
439
  msgstr ""
440
 
441
- #: wppa-ajax.php:472
442
  msgid "You may refresh the page and try again."
443
  msgstr ""
444
 
445
- #: wppa-ajax.php:473
446
  msgid ""
447
  "Althoug an error occurred while processing your rating, your vote has been "
448
  "registered."
449
  msgstr ""
450
 
451
- #: wppa-ajax.php:474
452
  msgid "However, this may not be reflected in the current pageview"
453
  msgstr ""
454
 
455
- #: wppa-ajax.php:496
456
  #, fuzzy
457
  msgid "Photo has been removed."
458
  msgstr "Foto wurde entfernt."
459
 
460
- #: wppa-ajax.php:505
461
  msgid "Sorry, you can not rate your own photos"
462
  msgstr ""
463
 
464
- #: wppa-ajax.php:517
465
  #, fuzzy
466
  msgid "Please enter a comment."
467
  msgstr "Bitte hinterlasse einen Kommentar"
468
 
469
- #: wppa-ajax.php:542
470
  msgid "Security check failure."
471
  msgstr ""
472
 
473
- #: wppa-ajax.php:554 wppa-ajax.php:570
474
  #, fuzzy
475
  msgid "Photo rated"
476
  msgstr "Foto des Tages"
477
 
478
- #: wppa-ajax.php:669
479
  msgid ""
480
  "Please explain your vote in a comment.\n"
481
  "Your vote will be discarded if you don't.\n"
@@ -485,785 +485,780 @@ msgid ""
485
  "your vote became effective."
486
  msgstr ""
487
 
488
- #: wppa-ajax.php:713
489
  msgid "You do not have the rights to delete a photo"
490
  msgstr ""
491
 
492
- #: wppa-ajax.php:723
493
  #, fuzzy, php-format
494
  msgid "Photo %s has been deleted"
495
  msgstr "Foto wurde entfernt."
496
 
497
- #: wppa-ajax.php:739
498
  msgid "You do not have the rights to update album information"
499
  msgstr ""
500
 
501
- #: wppa-ajax.php:751
502
  msgid "<b>Ratings cleared</b>"
503
  msgstr ""
504
 
505
- #: wppa-ajax.php:751 wppa-ajax.php:757 wppa-photo-admin-autosave.php:310
506
  msgid "No ratings for this photo."
507
  msgstr ""
508
 
509
- #: wppa-ajax.php:754
510
  msgid "An error occurred while clearing ratings"
511
  msgstr ""
512
 
513
- #: wppa-ajax.php:757 wppa-ajax.php:778 wppa-ajax.php:800
514
  msgid "<b>No photos in this album</b>"
515
  msgstr ""
516
 
517
- #: wppa-ajax.php:772
518
  msgid "<b>Tags set to defaults</b> (reload)"
519
  msgstr ""
520
 
521
- #: wppa-ajax.php:775
522
  msgid "An error occurred while setting tags"
523
  msgstr ""
524
 
525
- #: wppa-ajax.php:794
526
  msgid "<b>Tags added width defaults</b> (reload)"
527
  msgstr ""
528
 
529
- #: wppa-ajax.php:797
530
  msgid "An error occurred while adding tags"
531
  msgstr ""
532
 
533
- #: wppa-ajax.php:809
534
  #, php-format
535
  msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
536
  msgstr ""
537
 
538
- #: wppa-ajax.php:811 wppa-ajax.php:1211 wppa-album-admin-autosave.php:335
539
  #: wppa-album-admin-autosave.php:392 wppa-album-admin-autosave.php:988
540
  #: wppa-album-admin-autosave.php:1125 wppa-album-admin-autosave.php:1297
541
- #: wppa-album-admin-autosave.php:1392 wppa-boxes-html.php:393
542
- #: wppa-boxes-html.php:507 wppa-photo-admin-autosave.php:1295
543
- #: wppa-photo-admin-autosave.php:1414 wppa-settings-autosave.php:455
544
- #: wppa-settings-autosave.php:608 wppa-settings-autosave.php:630
545
- #: wppa-settings-autosave.php:1330 wppa-settings-autosave.php:1351
546
- #: wppa-settings-autosave.php:2716 wppa-settings-autosave.php:2737
547
- #: wppa-settings-autosave.php:3035 wppa-settings-autosave.php:3059
548
- #: wppa-settings-autosave.php:3519 wppa-settings-autosave.php:3633
549
- #: wppa-settings-autosave.php:4201 wppa-settings-autosave.php:4222
550
- #: wppa-settings-autosave.php:4398 wppa-settings-autosave.php:4422
551
- #: wppa-settings-autosave.php:5421 wppa-settings-autosave.php:5929
552
- #: wppa-settings-autosave.php:5951 wppa-settings-autosave.php:6531
553
- #: wppa-settings-autosave.php:6555 wppa-settings-autosave.php:7483
554
- #: wppa-settings-autosave.php:8086 wppa-settings-autosave.php:8242
555
  #: wppa-thumbnail-widget.php:204 wppa-upload.php:166
556
  msgid "Name"
557
  msgstr ""
558
 
559
- #: wppa-ajax.php:814 wppa-ajax.php:1214 wppa-album-admin-autosave.php:998
560
  #: wppa-album-admin-autosave.php:1135 wppa-album-admin-autosave.php:1307
561
- #: wppa-album-admin-autosave.php:1402 wppa-photo-admin-autosave.php:1296
562
- #: wppa-photo-admin-autosave.php:1415 wppa-settings-autosave.php:456
563
- #: wppa-settings-autosave.php:609 wppa-settings-autosave.php:631
564
- #: wppa-settings-autosave.php:1331 wppa-settings-autosave.php:1352
565
- #: wppa-settings-autosave.php:2717 wppa-settings-autosave.php:2738
566
- #: wppa-settings-autosave.php:3036 wppa-settings-autosave.php:3060
567
- #: wppa-settings-autosave.php:4202 wppa-settings-autosave.php:4223
568
- #: wppa-settings-autosave.php:4399 wppa-settings-autosave.php:4423
569
- #: wppa-settings-autosave.php:5422 wppa-settings-autosave.php:5930
570
- #: wppa-settings-autosave.php:5952 wppa-settings-autosave.php:6532
571
- #: wppa-settings-autosave.php:6556 wppa-settings-autosave.php:8087
572
- #: wppa-settings-autosave.php:8109 wppa-settings-autosave.php:8149
573
- #: wppa-settings-autosave.php:8171 wppa-settings-autosave.php:8217
574
- #: wppa-settings-autosave.php:8243 wppa-widget-admin.php:195
575
  #, fuzzy
576
  msgid "Description"
577
  msgstr "Unsymmetrische Tags in der Album Beschreibung!"
578
 
579
- #: wppa-ajax.php:818
580
  #, fuzzy
581
  msgid "Unbalanced tags in album description!"
582
  msgstr "Eintragen / ändern der Beschreibung des Albums"
583
 
584
- #: wppa-ajax.php:825
585
  msgid "Album order #"
586
  msgstr ""
587
 
588
- #: wppa-ajax.php:828
589
  #, fuzzy
590
  msgid "Cover photo"
591
  msgstr "Durchsuche Fotos"
592
 
593
- #: wppa-ajax.php:831
594
  #, fuzzy
595
  msgid "Parent album"
596
  msgstr "Das Album konnte nicht erstellt werden."
597
 
598
- #: wppa-ajax.php:836 wppa-settings-autosave.php:3513
599
  #, fuzzy
600
  msgid "Photo order"
601
  msgstr "Foto des Tages"
602
 
603
- #: wppa-ajax.php:839
604
  msgid "Use Alt thumbsize"
605
  msgstr ""
606
 
607
- #: wppa-ajax.php:842
608
  msgid "Cover Type"
609
  msgstr ""
610
 
611
- #: wppa-ajax.php:845 wppa-settings-autosave.php:4424
612
- #: wppa-settings-autosave.php:5423
613
  #, fuzzy
614
  msgid "Link type"
615
  msgstr "Verweis zu"
616
 
617
- #: wppa-ajax.php:848 wppa-album-covers.php:1098
618
  msgid "Link to"
619
  msgstr "Verweis zu"
620
 
621
- #: wppa-ajax.php:851 wppa-ajax.php:1235 wppa-album-admin-autosave.php:1009
622
  #: wppa-album-admin-autosave.php:1146 wppa-album-admin-autosave.php:1318
623
- #: wppa-album-admin-autosave.php:1413 wppa-boxes-html.php:515
624
- #: wppa-photo-admin-autosave.php:1298 wppa-photo-admin-autosave.php:1417
625
  #: wppa-widget-admin.php:196
626
  msgid "Owner"
627
  msgstr ""
628
 
629
- #: wppa-ajax.php:853
630
  #, php-format
631
  msgid "User %s does not exist"
632
  msgstr ""
633
 
634
- #: wppa-ajax.php:858 wppa-ajax.php:864
635
  #, fuzzy
636
  msgid "Upload limit count"
637
  msgstr "Upload Foto"
638
 
639
- #: wppa-ajax.php:871
640
  #, fuzzy
641
  msgid "Upload limit time"
642
  msgstr "Hochgeladenen datei ist kein Bild"
643
 
644
- #: wppa-ajax.php:875
645
  msgid "Default tags"
646
  msgstr ""
647
 
648
- #: wppa-ajax.php:880
649
  #, fuzzy
650
  msgid "Categories"
651
  msgstr "Kategorien:"
652
 
653
- #: wppa-ajax.php:883
654
  msgid "Sub albums sort order"
655
  msgstr ""
656
 
657
- #: wppa-ajax.php:891 wppa-ajax.php:1304
658
  msgid "Schedule date/time"
659
  msgstr ""
660
 
661
- #: wppa-ajax.php:904 wppa-ajax.php:930
662
  #, php-format
663
  msgid "<b>%s</b> of album %s updated"
664
  msgstr ""
665
 
666
- #: wppa-ajax.php:912
667
  msgid "All photos set to scheduled per date"
668
  msgstr ""
669
 
670
- #: wppa-ajax.php:939
671
  #, php-format
672
  msgid "An error occurred while trying to update <b>%s</b> of album %s"
673
  msgstr ""
674
 
675
- #: wppa-ajax.php:940 wppa-ajax.php:1189 wppa-ajax.php:1294
676
  msgid "Press CTRL+F5 and try again."
677
  msgstr ""
678
 
679
- #: wppa-ajax.php:954
680
  msgid "You do not have the rights to update comment status"
681
  msgstr ""
682
 
683
- #: wppa-ajax.php:963
684
  #, php-format
685
  msgid "Status of comment #%s updated"
686
  msgstr ""
687
 
688
- #: wppa-ajax.php:966
689
  #, php-format
690
  msgid "Error updating status comment #%s"
691
  msgstr ""
692
 
693
- #: wppa-ajax.php:977
694
  msgid "You do not have the rights to change photos"
695
  msgstr ""
696
 
697
- #: wppa-ajax.php:986
698
  msgid "Watermark applied"
699
  msgstr ""
700
 
701
- #: wppa-ajax.php:990
702
  msgid "An error occured while trying to apply a watermark"
703
  msgstr ""
704
 
705
- #: wppa-ajax.php:1003
706
  msgid "You do not have the rights to update photo information"
707
  msgstr ""
708
 
709
- #: wppa-ajax.php:1009
710
  #, php-format
711
  msgid "%s updated to %s."
712
  msgstr ""
713
 
714
- #: wppa-ajax.php:1059
715
  #, php-format
716
  msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
717
  msgstr ""
718
 
719
- #: wppa-ajax.php:1063
720
  msgid "Exif date/time updated"
721
  msgstr ""
722
 
723
- #: wppa-ajax.php:1069
724
  msgid "Enter a value > -90 and < 90"
725
  msgstr ""
726
 
727
- #: wppa-ajax.php:1077
728
  msgid "Lattitude updated"
729
  msgstr ""
730
 
731
- #: wppa-ajax.php:1079
732
  #, fuzzy
733
  msgid "Could not update lattitude"
734
  msgstr "Das Album konnte nicht erstellt werden."
735
 
736
- #: wppa-ajax.php:1085
737
  msgid "Enter a value > -180 and < 180"
738
  msgstr ""
739
 
740
- #: wppa-ajax.php:1093
741
  msgid "Longitude updated"
742
  msgstr ""
743
 
744
- #: wppa-ajax.php:1095
745
  #, fuzzy
746
  msgid "Could not update longitude"
747
  msgstr "Das Album konnte nicht erstellt werden."
748
 
749
- #: wppa-ajax.php:1103
750
  #, fuzzy
751
  msgid "Photo files remade"
752
  msgstr "Foto des Tages"
753
 
754
- #: wppa-ajax.php:1106
755
  #, fuzzy
756
  msgid "Could not remake files"
757
  msgstr "Das Album konnte nicht erstellt werden."
758
 
759
- #: wppa-ajax.php:1112
760
  #, fuzzy
761
  msgid "Thumbnail remade"
762
  msgstr "Anzeigen..."
763
 
764
- #: wppa-ajax.php:1115
765
  #, fuzzy
766
  msgid "Could not remake thumbnail"
767
  msgstr "Das Album konnte nicht erstellt werden."
768
 
769
- #: wppa-ajax.php:1125 wppa-photo-admin-autosave.php:182
770
- #: wppa-settings-autosave.php:3329 wppa-tinymce-scripts.php:289
771
- #: wppa-tinymce-shortcodes.php:518 wppa-widget-admin.php:77
772
  msgid "left"
773
  msgstr ""
774
 
775
- #: wppa-ajax.php:1129 wppa-photo-admin-autosave.php:184
776
  msgid "180&deg;"
777
  msgstr ""
778
 
779
- #: wppa-ajax.php:1133 wppa-photo-admin-autosave.php:186
780
- #: wppa-settings-autosave.php:3329 wppa-tinymce-scripts.php:291
781
- #: wppa-tinymce-shortcodes.php:520 wppa-widget-admin.php:79
782
  msgid "right"
783
  msgstr ""
784
 
785
- #: wppa-ajax.php:1141
786
  #, fuzzy, php-format
787
  msgid "Photo %s rotated %s"
788
  msgstr "Foto %s gedreht %s"
789
 
790
- #: wppa-ajax.php:1144
791
  #, php-format
792
  msgid "An error occurred while trying to rotate photo %s"
793
  msgstr ""
794
 
795
- #: wppa-ajax.php:1154 wppa-ajax.php:1177 wppa-photo-admin-autosave.php:1032
796
- #: wppa-photo-admin-autosave.php:1050
797
  #, fuzzy, php-format
798
  msgid "A photo with filename %s already exists in album %s."
799
  msgstr "Fotos %s hochgeladen zu Album Nr. %s"
800
 
801
- #: wppa-ajax.php:1164
802
  #, fuzzy, php-format
803
  msgid "Photo %s has been moved to album %s (%s)"
804
  msgstr "Foto wurde entfernt."
805
 
806
- #: wppa-ajax.php:1167
807
  #, php-format
808
  msgid "An error occurred while trying to move photo %s"
809
  msgstr ""
810
 
811
- #: wppa-ajax.php:1185
812
  #, php-format
813
  msgid "Photo %s copied to album %s (%s)"
814
  msgstr ""
815
 
816
- #: wppa-ajax.php:1188
817
  #, php-format
818
  msgid "An error occurred while trying to copy photo %s"
819
  msgstr ""
820
 
821
- #: wppa-ajax.php:1218 wppa-ajax.php:1756
822
  #, fuzzy
823
  msgid "Unbalanced tags in photo description!"
824
  msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
825
 
826
- #: wppa-ajax.php:1224
827
  #, fuzzy
828
  msgid "Photo order #"
829
  msgstr "Foto des Tages"
830
 
831
- #: wppa-ajax.php:1229
832
  #, php-format
833
  msgid "User %s does not exists"
834
  msgstr ""
835
 
836
- #: wppa-ajax.php:1238
837
  #, fuzzy
838
  msgid "Link url"
839
  msgstr "Verweis zu"
840
 
841
- #: wppa-ajax.php:1241
842
  #, fuzzy
843
  msgid "Link title"
844
  msgstr "Verweis zu"
845
 
846
- #: wppa-ajax.php:1244
847
  #, fuzzy
848
  msgid "Link target"
849
  msgstr "Verweis zu"
850
 
851
- #: wppa-ajax.php:1250 wppa-multitag-widget.php:35 wppa-multitag-widget.php:65
852
- #: wppa-tagcloud-widget.php:35 wppa-tagcloud-widget.php:62
853
  #, fuzzy
854
  msgid "Photo Tags"
855
  msgstr "Foto"
856
 
857
- #: wppa-ajax.php:1255 wppa-comment-admin.php:310 wppa-comment-admin.php:397
858
- #: wppa-photo-admin-autosave.php:1297 wppa-photo-admin-autosave.php:1416
859
- #: wppa-settings-autosave.php:5955 wppa-settings-autosave.php:6535
860
- #: wppa-settings-autosave.php:8110 wppa-settings-autosave.php:8150
861
- #: wppa-settings-autosave.php:8172 wppa-settings-autosave.php:8218
862
  msgid "Status"
863
  msgstr ""
864
 
865
- #: wppa-ajax.php:1258
866
  msgid "HTML Alt"
867
  msgstr ""
868
 
869
- #: wppa-ajax.php:1262
870
  msgid "Video width"
871
  msgstr ""
872
 
873
- #: wppa-ajax.php:1264 wppa-ajax.php:1271
874
  #, fuzzy
875
  msgid "Please enter an integer value >= 0"
876
  msgstr "Bitte hinterlasse einen Kommentar"
877
 
878
- #: wppa-ajax.php:1269
879
  msgid "Video height"
880
  msgstr ""
881
 
882
- #: wppa-ajax.php:1286 wppa-ajax.php:1320
883
  #, php-format
884
  msgid "<b>%s</b> of video %s updated"
885
  msgstr ""
886
 
887
- #: wppa-ajax.php:1289 wppa-ajax.php:1323
888
  #, php-format
889
  msgid "<b>%s</b> of photo %s updated"
890
  msgstr ""
891
 
892
- #: wppa-ajax.php:1293
893
  #, php-format
894
  msgid "An error occurred while trying to update <b>%s</b> of photo %s"
895
  msgstr ""
896
 
897
- #: wppa-ajax.php:1349
898
  #, php-format
899
  msgid "<b>Custom field %s</b> of photo %s updated"
900
  msgstr ""
901
 
902
- #: wppa-ajax.php:1356
903
  #, fuzzy
904
  msgid "<b>Error during upload.</b>"
905
  msgstr "Fehler beim Hochladen"
906
 
907
- #: wppa-ajax.php:1381
908
  #, fuzzy
909
  msgid "Photo files updated."
910
  msgstr "Foto des Tages"
911
 
912
- #: wppa-ajax.php:1386
913
  #, fuzzy
914
  msgid "Could not update files."
915
  msgstr "Das Album konnte nicht erstellt werden."
916
 
917
- #: wppa-ajax.php:1403
 
 
 
 
 
918
  msgid "You do not have the rights to update settings"
919
  msgstr ""
920
 
921
- #: wppa-ajax.php:1484
922
  msgid "Capability granted"
923
  msgstr ""
924
 
925
- #: wppa-ajax.php:1489
926
  msgid "Capability withdrawn"
927
  msgstr ""
928
 
929
- #: wppa-ajax.php:1500
930
  msgid "Column width."
931
  msgstr ""
932
 
933
- #: wppa-ajax.php:1503
934
  msgid "Initial width."
935
  msgstr ""
936
 
937
- #: wppa-ajax.php:1506
938
  msgid "Full size."
939
  msgstr ""
940
 
941
- #: wppa-ajax.php:1509
942
  msgid "Max height."
943
  msgstr ""
944
 
945
- #: wppa-ajax.php:1512
946
  #, fuzzy
947
  msgid "Thumbnail size."
948
  msgstr "Anzeigen..."
949
 
950
- #: wppa-ajax.php:1515
951
  #, fuzzy
952
  msgid "Thumbnail frame width"
953
  msgstr "Anzeigen..."
954
 
955
- #: wppa-ajax.php:1518
956
  #, fuzzy
957
  msgid "Thumbnail frame height"
958
  msgstr "Miniaturbild Fotos"
959
 
960
- #: wppa-ajax.php:1521
961
  #, fuzzy
962
  msgid "Thumbnail Spacing"
963
  msgstr "Anzeigen..."
964
 
965
- #: wppa-ajax.php:1524
966
  #, fuzzy
967
  msgid "Photocount treshold."
968
  msgstr "Foto wurde nicht gefunden."
969
 
970
- #: wppa-ajax.php:1527
971
  #, fuzzy
972
  msgid "Thumb page size."
973
  msgstr "Anzeigen..."
974
 
975
- #: wppa-ajax.php:1530
976
  #, fuzzy
977
  msgid "Cover photo size."
978
  msgstr "Bitte gibt den Fotonamen an."
979
 
980
- #: wppa-ajax.php:1533
981
  msgid "Album page size."
982
  msgstr ""
983
 
984
- #: wppa-ajax.php:1536
985
  #, fuzzy
986
  msgid "Number of TopTen photos"
987
  msgstr "Besten 10 Fotos"
988
 
989
- #: wppa-ajax.php:1539
990
  #, fuzzy
991
  msgid "Widget image thumbnail size"
992
  msgstr "Anzeigen..."
993
 
994
- #: wppa-ajax.php:1542 wppa-settings-autosave.php:1007
995
  msgid "Max Cover width"
996
  msgstr ""
997
 
998
- #: wppa-ajax.php:1545
999
  #, fuzzy
1000
  msgid "Minimal description height"
1001
  msgstr "Eintragen / ändern der Beschreibung des Albums"
1002
 
1003
- #: wppa-ajax.php:1548
1004
  msgid "Minimal cover height"
1005
  msgstr ""
1006
 
1007
- #: wppa-ajax.php:1551
1008
  msgid "Minimal text frame height"
1009
  msgstr ""
1010
 
1011
- #: wppa-ajax.php:1554
1012
  msgid "Border width"
1013
  msgstr ""
1014
 
1015
- #: wppa-ajax.php:1557 wppa-settings-autosave.php:707
1016
  msgid "Border radius"
1017
  msgstr ""
1018
 
1019
- #: wppa-ajax.php:1560 wppa-settings-autosave.php:718
1020
  msgid "Box spacing"
1021
  msgstr ""
1022
 
1023
- #: wppa-ajax.php:1566 wppa-settings-autosave.php:982
1024
  msgid "Popup size"
1025
  msgstr ""
1026
 
1027
- #: wppa-ajax.php:1569
1028
  msgid "Fullsize border width"
1029
  msgstr ""
1030
 
1031
- #: wppa-ajax.php:1572
1032
  msgid "Lightbox Bordersize"
1033
  msgstr ""
1034
 
1035
- #: wppa-ajax.php:1575
1036
  msgid "Number of Comment widget entries"
1037
  msgstr ""
1038
 
1039
- #: wppa-ajax.php:1578
1040
  msgid "Comment Widget image thumbnail size"
1041
  msgstr ""
1042
 
1043
- #: wppa-ajax.php:1581 wppa-ajax.php:1584 wppa-ajax.php:1587
1044
  msgid "Opacity."
1045
  msgstr ""
1046
 
1047
- #: wppa-ajax.php:1590
1048
- #, fuzzy
1049
- msgid "Filter priority"
1050
- msgstr "Speed Ein-Ausblenden"
1051
-
1052
- #: wppa-ajax.php:1593
1053
- #, fuzzy
1054
- msgid "Shortcode_priority"
1055
- msgstr "Speed Ein-Ausblenden"
1056
-
1057
- #: wppa-ajax.php:1596 wppa-settings-autosave.php:1113
1058
  msgid "Avatar size"
1059
  msgstr ""
1060
 
1061
- #: wppa-ajax.php:1599 wppa-ajax.php:1602
1062
  msgid "Watermark opacity"
1063
  msgstr ""
1064
 
1065
- #: wppa-ajax.php:1605 wppa-settings-autosave.php:1282
1066
  msgid "Number of text lines"
1067
  msgstr ""
1068
 
1069
- #: wppa-ajax.php:1608 wppa-settings-autosave.php:4100
1070
  msgid "Overlay opacity"
1071
  msgstr ""
1072
 
1073
- #: wppa-ajax.php:1611 wppa-settings-autosave.php:6980
1074
  #, fuzzy
1075
  msgid "Upload limit"
1076
  msgstr "Upload Foto"
1077
 
1078
- #: wppa-ajax.php:1614 wppa-settings-autosave.php:3808
1079
  msgid "Notify inappropriate"
1080
  msgstr ""
1081
 
1082
- #: wppa-ajax.php:1617
1083
  msgid "Dislike pending"
1084
  msgstr ""
1085
 
1086
- #: wppa-ajax.php:1620
1087
  #, fuzzy
1088
  msgid "Dislike delete"
1089
  msgstr "Löschen"
1090
 
1091
- #: wppa-ajax.php:1623 wppa-settings-autosave.php:6631
1092
  msgid "Max execution time"
1093
  msgstr ""
1094
 
1095
- #: wppa-ajax.php:1628
1096
  msgid "Cube Points points"
1097
  msgstr ""
1098
 
1099
- #: wppa-ajax.php:1631
1100
  msgid "JPG Image quality"
1101
  msgstr ""
1102
 
1103
- #: wppa-ajax.php:1637 wppa-settings-autosave.php:3722
1104
  #, fuzzy
1105
  msgid "Number of coverphotos"
1106
  msgstr "Titelfotos ansehen"
1107
 
1108
- #: wppa-ajax.php:1640 wppa-settings-autosave.php:3779
1109
  msgid "Dislike value"
1110
  msgstr ""
1111
 
1112
- #: wppa-ajax.php:1643 wppa-settings-autosave.php:838
1113
  #, fuzzy
1114
  msgid "Slideshow pagesize"
1115
  msgstr "Diaschau"
1116
 
1117
- #: wppa-ajax.php:1646 wppa-settings-autosave.php:736
1118
  msgid "Max Pagelinks"
1119
  msgstr ""
1120
 
1121
- #: wppa-ajax.php:1653
1122
  msgid "Ratings cleared"
1123
  msgstr ""
1124
 
1125
- #: wppa-ajax.php:1656
1126
  #, fuzzy
1127
  msgid "Could not clear ratings"
1128
  msgstr "Das Album konnte nicht erstellt werden."
1129
 
1130
- #: wppa-ajax.php:1665
1131
  msgid "Viewcounts cleared"
1132
  msgstr ""
1133
 
1134
- #: wppa-ajax.php:1668
1135
  #, fuzzy
1136
  msgid "Could not clear viewcounts"
1137
  msgstr "Das Album konnte nicht erstellt werden."
1138
 
1139
- #: wppa-ajax.php:1678
1140
  #, fuzzy
1141
  msgid "IPTC data cleared"
1142
  msgstr "IPTC Daten"
1143
 
1144
- #: wppa-ajax.php:1679
1145
  msgid "Refresh this page to clear table X"
1146
  msgstr ""
1147
 
1148
- #: wppa-ajax.php:1683
1149
  #, fuzzy
1150
  msgid "Could not clear IPTC data"
1151
  msgstr "Das Album konnte nicht erstellt werden."
1152
 
1153
- #: wppa-ajax.php:1693
1154
  #, fuzzy
1155
  msgid "EXIF data cleared"
1156
  msgstr "EXIF Daten"
1157
 
1158
- #: wppa-ajax.php:1694
1159
  msgid "Refresh this page to clear table XI"
1160
  msgstr ""
1161
 
1162
- #: wppa-ajax.php:1698
1163
  #, fuzzy
1164
  msgid "Could not clear EXIF data"
1165
  msgstr "Das Album konnte nicht erstellt werden."
1166
 
1167
- #: wppa-ajax.php:1706
1168
  msgid "Recuperation performed"
1169
  msgstr ""
1170
 
1171
- #: wppa-ajax.php:1721
1172
  msgid ""
1173
  "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1174
  "#77bbff"
1175
  msgstr ""
1176
 
1177
- #: wppa-ajax.php:1747
1178
  msgid "You just changed a setting that requires the recalculation of ratings."
1179
  msgstr ""
1180
 
1181
- #: wppa-ajax.php:1748 wppa-ajax.php:2115
1182
  msgid "Please run the appropriate action in Table VIII."
1183
  msgstr ""
1184
 
1185
- #: wppa-ajax.php:1772 wppa-ajax.php:1788
1186
  #, php-format
1187
  msgid "Unable to create or write to %s"
1188
  msgstr ""
1189
 
1190
- #: wppa-ajax.php:1781
1191
  msgid "Source can not be inside the wppa folder."
1192
  msgstr ""
1193
 
1194
- #: wppa-ajax.php:1798
1195
  msgid "The content must contain w#album"
1196
  msgstr ""
1197
 
1198
- #: wppa-ajax.php:1805
1199
  msgid "The content must contain w#lat and w#lon"
1200
  msgstr ""
1201
 
1202
- #: wppa-ajax.php:1847 wppa-ajax.php:1853
1203
  msgid "Members"
1204
  msgstr ""
1205
 
1206
- #: wppa-ajax.php:1847
1207
  msgid "Parent of the member albums"
1208
  msgstr ""
1209
 
1210
- #: wppa-ajax.php:1991
1211
  #, php-format
1212
  msgid "User %s has been blacklisted."
1213
  msgstr ""
1214
 
1215
- #: wppa-ajax.php:1994
1216
  #, php-format
1217
  msgid "User %s does not exist."
1218
  msgstr ""
1219
 
1220
- #: wppa-ajax.php:2017
1221
  msgid ""
1222
  "The content of the Custom box has been changed to display the Fotomoto "
1223
  "toolbar."
1224
  msgstr ""
1225
 
1226
- #: wppa-ajax.php:2021 wppa-ajax.php:2036
1227
  msgid "The display of the custom box has been enabled"
1228
  msgstr ""
1229
 
1230
- #: wppa-ajax.php:2032
1231
  msgid "The content of the Custom box has been changed to display maps."
1232
  msgstr ""
1233
 
1234
- #: wppa-ajax.php:2062
1235
  msgid "This value can not be empty"
1236
  msgstr ""
1237
 
1238
- #: wppa-ajax.php:2094
1239
  #, php-format
1240
  msgid "Failed to set %s to %s"
1241
  msgstr ""
1242
 
1243
- #: wppa-ajax.php:2099
1244
  #, php-format
1245
  msgid "Setting %s updated to %s"
1246
  msgstr ""
1247
 
1248
- #: wppa-ajax.php:2114
1249
  msgid ""
1250
  "You just changed a setting that requires the regeneration of thumbnails."
1251
  msgstr ""
1252
 
1253
- #: wppa-ajax.php:2169
1254
  msgid "Missing album id"
1255
  msgstr ""
1256
 
1257
- #: wppa-ajax.php:2189
1258
  msgid "You do not have the rights to delete this album"
1259
  msgstr ""
1260
 
1261
- #: wppa-ajax.php:2230 wppa-ajax.php:2237
1262
  #, fuzzy
1263
  msgid "You may also enter:"
1264
  msgstr "bevor Du Deine Fotos hochladen kannst."
1265
 
1266
- #: wppa-ajax.php:2231 wppa-ajax.php:2238
1267
  #, fuzzy
1268
  msgid "You may also leave/set this blank"
1269
  msgstr "Hinterlasse einen Kommentar"
@@ -1313,8 +1308,8 @@ msgstr ""
1313
  msgid "Top of page"
1314
  msgstr ""
1315
 
1316
- #: wppa-album-admin-autosave.php:114 wppa-functions.php:3848
1317
- #: wppa-settings-autosave.php:6870 wppa-wpdb-insert.php:329
1318
  #, fuzzy
1319
  msgid "New Album"
1320
  msgstr "Das Album konnte nicht erstellt werden."
@@ -1339,7 +1334,7 @@ msgstr ""
1339
  msgid "Edit Album Information"
1340
  msgstr "Bearbeiten"
1341
 
1342
- #: wppa-album-admin-autosave.php:172 wppa-settings-autosave.php:295
1343
  #, fuzzy
1344
  msgid "Auto Save"
1345
  msgstr "Automatisch Gespeichert"
@@ -1380,8 +1375,8 @@ msgstr "Erneuere die Plugin Beschreibung"
1380
  msgid "Type the name of the album. Do not leave this empty."
1381
  msgstr ""
1382
 
1383
- #: wppa-album-admin-autosave.php:211 wppa-photo-admin-autosave.php:685
1384
- #: wppa-photo-admin-autosave.php:710
1385
  #, fuzzy
1386
  msgid "Description:"
1387
  msgstr "Unsymmetrische Tags in der Album Beschreibung!"
@@ -1396,17 +1391,17 @@ msgstr "Unsymmetrische Tags in der Album Beschreibung!"
1396
  msgid "Enter / modify the description for this album."
1397
  msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
1398
 
1399
- #: wppa-album-admin-autosave.php:240 wppa-photo-admin-autosave.php:273
1400
  msgid "Modified:"
1401
  msgstr ""
1402
 
1403
- #: wppa-album-admin-autosave.php:249 wppa-thumbnails.php:644
1404
- #: wppa-thumbnails.php:1419
1405
  #, fuzzy
1406
  msgid "Views:"
1407
  msgstr "Ansehen"
1408
 
1409
- #: wppa-album-admin-autosave.php:262 wppa-photo-admin-autosave.php:259
1410
  msgid "Owned by:"
1411
  msgstr ""
1412
 
@@ -1436,8 +1431,8 @@ msgid ""
1436
  "here."
1437
  msgstr ""
1438
 
1439
- #: wppa-album-admin-autosave.php:309 wppa-tinymce-shortcodes.php:298
1440
- #: wppa-tinymce-shortcodes.php:324 wppa-tinymce-shortcodes.php:463
1441
  #, fuzzy
1442
  msgid "Parent album:"
1443
  msgstr "Das Album konnte nicht erstellt werden."
@@ -1453,69 +1448,69 @@ msgid "Photo order:"
1453
  msgstr "Foto des Tages"
1454
 
1455
  #: wppa-album-admin-autosave.php:333 wppa-album-admin-autosave.php:434
1456
- #: wppa-settings-autosave.php:3556 wppa-settings-autosave.php:3580
1457
  #, fuzzy
1458
  msgid "--- default ---"
1459
  msgstr "--- gelöscht ---"
1460
 
1461
  #: wppa-album-admin-autosave.php:334 wppa-album-admin-autosave.php:390
1462
- #: wppa-settings-autosave.php:3518 wppa-settings-autosave.php:3632
1463
  #: wppa-thumbnail-widget.php:203
1464
  msgid "Order #"
1465
  msgstr ""
1466
 
1467
  #: wppa-album-admin-autosave.php:336 wppa-album-admin-autosave.php:389
1468
- #: wppa-settings-autosave.php:3520 wppa-settings-autosave.php:3634
1469
  #: wppa-thumbnail-widget.php:205 wppa-widget-admin.php:142
1470
  msgid "Random"
1471
  msgstr ""
1472
 
1473
- #: wppa-album-admin-autosave.php:337 wppa-settings-autosave.php:3521
1474
  msgid "Rating mean value"
1475
  msgstr ""
1476
 
1477
- #: wppa-album-admin-autosave.php:338 wppa-bestof-widget.php:169
1478
- #: wppa-settings-autosave.php:3522 wppa-topten-widget.php:236
1479
  msgid "Number of votes"
1480
  msgstr ""
1481
 
1482
  #: wppa-album-admin-autosave.php:339 wppa-album-admin-autosave.php:394
1483
- #: wppa-settings-autosave.php:3523 wppa-settings-autosave.php:3635
1484
  msgid "Timestamp"
1485
  msgstr ""
1486
 
1487
- #: wppa-album-admin-autosave.php:340 wppa-photo-admin-autosave.php:284
1488
- #: wppa-settings-autosave.php:3524
1489
  #, fuzzy
1490
  msgid "EXIF Date"
1491
  msgstr "EXIF Daten"
1492
 
1493
- #: wppa-album-admin-autosave.php:341 wppa-settings-autosave.php:3525
1494
- #: wppa-settings-autosave.php:3636
1495
  msgid "Order # desc"
1496
  msgstr ""
1497
 
1498
- #: wppa-album-admin-autosave.php:342 wppa-settings-autosave.php:3526
1499
- #: wppa-settings-autosave.php:3637
1500
  msgid "Name desc"
1501
  msgstr ""
1502
 
1503
- #: wppa-album-admin-autosave.php:343 wppa-settings-autosave.php:3527
1504
  #: wppa-thumbnail-widget.php:206
1505
  msgid "Rating mean value desc"
1506
  msgstr ""
1507
 
1508
- #: wppa-album-admin-autosave.php:344 wppa-settings-autosave.php:3528
1509
  #: wppa-thumbnail-widget.php:207
1510
  msgid "Number of votes desc"
1511
  msgstr ""
1512
 
1513
- #: wppa-album-admin-autosave.php:345 wppa-settings-autosave.php:3529
1514
- #: wppa-settings-autosave.php:3638 wppa-thumbnail-widget.php:208
1515
  msgid "Timestamp desc"
1516
  msgstr ""
1517
 
1518
- #: wppa-album-admin-autosave.php:346 wppa-settings-autosave.php:3530
1519
  msgid "EXIF Date desc"
1520
  msgstr ""
1521
 
@@ -1559,21 +1554,21 @@ msgstr ""
1559
  msgid "Use alt thumbsize:"
1560
  msgstr ""
1561
 
1562
- #: wppa-album-admin-autosave.php:413 wppa-bestof-widget.php:181
1563
- #: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
1564
- #: wppa-topten-widget.php:244 wppa-topten-widget.php:252
1565
- #: wppa-topten-widget.php:257 wppa-topten-widget.php:262
1566
- #: wppa-topten-widget.php:267 wppa-topten-widget.php:272
1567
  #, fuzzy
1568
  msgid "no"
1569
  msgstr "--- kein ---"
1570
 
1571
- #: wppa-album-admin-autosave.php:414 wppa-bestof-widget.php:180
1572
- #: wppa-bestof-widget.php:185 wppa-bestof-widget.php:190
1573
- #: wppa-super-view-widget.php:87 wppa-topten-widget.php:243
1574
- #: wppa-topten-widget.php:251 wppa-topten-widget.php:256
1575
- #: wppa-topten-widget.php:261 wppa-topten-widget.php:266
1576
- #: wppa-topten-widget.php:271
1577
  #, fuzzy
1578
  msgid "yes"
1579
  msgstr "Jahre"
@@ -1588,29 +1583,29 @@ msgstr ""
1588
  msgid "Cover Type:"
1589
  msgstr ""
1590
 
1591
- #: wppa-album-admin-autosave.php:435 wppa-settings-autosave.php:1881
1592
- #: wppa-settings-autosave.php:3702
1593
  msgid "Standard"
1594
  msgstr ""
1595
 
1596
- #: wppa-album-admin-autosave.php:436 wppa-settings-autosave.php:3703
1597
  #, fuzzy
1598
  msgid "Long Descriptions"
1599
  msgstr "Unsymmetrische Tags in der Album Beschreibung!"
1600
 
1601
- #: wppa-album-admin-autosave.php:437 wppa-settings-autosave.php:3704
1602
  msgid "Image Factory"
1603
  msgstr ""
1604
 
1605
- #: wppa-album-admin-autosave.php:438 wppa-settings-autosave.php:3705
1606
  msgid "Standard mcr"
1607
  msgstr ""
1608
 
1609
- #: wppa-album-admin-autosave.php:439 wppa-settings-autosave.php:3706
1610
  msgid "Long Descriptions mcr"
1611
  msgstr ""
1612
 
1613
- #: wppa-album-admin-autosave.php:440 wppa-settings-autosave.php:3707
1614
  msgid "Image Factory mcr"
1615
  msgstr ""
1616
 
@@ -1640,37 +1635,37 @@ msgstr ""
1640
  msgid "Upload limit:"
1641
  msgstr "Upload Foto"
1642
 
1643
- #: wppa-album-admin-autosave.php:482 wppa-settings-autosave.php:5548
1644
- #: wppa-settings-autosave.php:6987
1645
  msgid "for ever"
1646
  msgstr ""
1647
 
1648
  #: wppa-album-admin-autosave.php:483 wppa-album-admin-autosave.php:500
1649
- #: wppa-settings-autosave.php:5549 wppa-settings-autosave.php:6988
1650
  #, fuzzy
1651
  msgid "per hour"
1652
  msgstr "1 Stunde"
1653
 
1654
  #: wppa-album-admin-autosave.php:484 wppa-album-admin-autosave.php:501
1655
- #: wppa-settings-autosave.php:5550 wppa-settings-autosave.php:6989
1656
  #, fuzzy
1657
  msgid "per day"
1658
  msgstr "1 Tag"
1659
 
1660
  #: wppa-album-admin-autosave.php:485 wppa-album-admin-autosave.php:502
1661
- #: wppa-settings-autosave.php:5551 wppa-settings-autosave.php:6990
1662
  #, fuzzy
1663
  msgid "per week"
1664
  msgstr "1 Woche"
1665
 
1666
  #: wppa-album-admin-autosave.php:486 wppa-album-admin-autosave.php:503
1667
- #: wppa-settings-autosave.php:5552 wppa-settings-autosave.php:6991
1668
  #, fuzzy
1669
  msgid "per month"
1670
  msgstr "1 Monat"
1671
 
1672
  #: wppa-album-admin-autosave.php:487 wppa-album-admin-autosave.php:504
1673
- #: wppa-settings-autosave.php:5553 wppa-settings-autosave.php:6992
1674
  #, fuzzy
1675
  msgid "per year"
1676
  msgstr "1 Jahr"
@@ -1692,11 +1687,11 @@ msgstr "Kategorien:"
1692
  msgid "Separate categories with commas."
1693
  msgstr ""
1694
 
1695
- #: wppa-album-admin-autosave.php:526 wppa-photo-admin-autosave.php:764
1696
  msgid "Examples:"
1697
  msgstr ""
1698
 
1699
- #: wppa-album-admin-autosave.php:532 wppa-photo-admin-autosave.php:768
1700
  #, fuzzy
1701
  msgid "- select -"
1702
  msgstr "Bitte wähle Album"
@@ -1706,7 +1701,7 @@ msgstr "Bitte wähle Album"
1706
  msgid "No categories yet"
1707
  msgstr "Kategorien:"
1708
 
1709
- #: wppa-album-admin-autosave.php:542 wppa-photo-admin-autosave.php:778
1710
  msgid "Select to add"
1711
  msgstr ""
1712
 
@@ -1757,21 +1752,21 @@ msgstr ""
1757
  msgid "Link type:"
1758
  msgstr "Verweis zu"
1759
 
1760
- #: wppa-album-admin-autosave.php:594 wppa-settings-autosave.php:7148
1761
  msgid "the sub-albums and thumbnails"
1762
  msgstr ""
1763
 
1764
- #: wppa-album-admin-autosave.php:595 wppa-settings-autosave.php:7149
1765
  #, fuzzy
1766
  msgid "the sub-albums"
1767
  msgstr "Das Album ansehen"
1768
 
1769
- #: wppa-album-admin-autosave.php:596 wppa-settings-autosave.php:7150
1770
  #, fuzzy
1771
  msgid "the thumbnails"
1772
  msgstr "Anzeigen..."
1773
 
1774
- #: wppa-album-admin-autosave.php:597 wppa-settings-autosave.php:7151
1775
  msgid "the album photos as slideshow"
1776
  msgstr ""
1777
 
@@ -1779,7 +1774,7 @@ msgstr ""
1779
  msgid "the link page with a clean url"
1780
  msgstr ""
1781
 
1782
- #: wppa-album-admin-autosave.php:599 wppa-settings-autosave.php:7152
1783
  msgid "no link at all"
1784
  msgstr ""
1785
 
@@ -1795,15 +1790,15 @@ msgid ""
1795
  "correct shortcode on the target page."
1796
  msgstr ""
1797
 
1798
- #: wppa-album-admin-autosave.php:614 wppa-bestof-widget.php:195
1799
  #: wppa-slideshow-widget.php:223 wppa-widget-admin.php:164
1800
  #: wppa-widget-admin.php:174
1801
  #, fuzzy
1802
  msgid "Link to:"
1803
  msgstr "Verweis zu"
1804
 
1805
- #: wppa-album-admin-autosave.php:620 wppa-settings-autosave.php:8676
1806
- #: wppa-settings-autosave.php:8725
1807
  msgid "There are no pages (yet) to link to."
1808
  msgstr ""
1809
 
@@ -1869,7 +1864,7 @@ msgstr ""
1869
  msgid "Remake all"
1870
  msgstr ""
1871
 
1872
- #: wppa-album-admin-autosave.php:720 wppa-photo-admin-autosave.php:878
1873
  msgid "Remark:"
1874
  msgstr ""
1875
 
@@ -1892,7 +1887,7 @@ msgstr "Moderiere Kommentare"
1892
  msgid "Moderate photo"
1893
  msgstr "Moderiere Fotos"
1894
 
1895
- #: wppa-album-admin-autosave.php:767 wppa-functions.php:2110
1896
  #: wppa-photo-admin-autosave.php:24
1897
  #, fuzzy
1898
  msgid "Edit photo"
@@ -1903,13 +1898,13 @@ msgstr "Foto bearbeiten"
1903
  msgid "Delete Album"
1904
  msgstr "Das Album konnte nicht erstellt werden."
1905
 
1906
- #: wppa-album-admin-autosave.php:793 wppa-boxes-html.php:804
1907
- #: wppa-breadcrumb.php:284 wppa-breadcrumb.php:302 wppa-breadcrumb.php:320
1908
- #: wppa-breadcrumb.php:338 wppa-breadcrumb.php:393 wppa-breadcrumb.php:418
1909
- #: wppa-breadcrumb.php:539 wppa-comment-admin.php:66 wppa-featen-widget.php:136
1910
  #: wppa-lasten-widget.php:172 wppa-slideshow-widget.php:201
1911
- #: wppa-thumbnail-widget.php:191 wppa-topten-widget.php:217
1912
- #: wppa-upload-widget.php:81 wppa-upload.php:116 wppa-upload.php:204
1913
  #: wppa-upload.php:251
1914
  #, fuzzy
1915
  msgid "Album:"
@@ -1933,9 +1928,9 @@ msgstr ""
1933
  #: wppa-album-admin-autosave.php:1182 wppa-album-admin-autosave.php:1354
1934
  #: wppa-album-admin-autosave.php:1449 wppa-album-admin-autosave.php:1635
1935
  #: wppa-comment-admin.php:312 wppa-comment-admin.php:381
1936
- #: wppa-comment-admin.php:399 wppa-functions.php:1922 wppa-links.php:724
1937
- #: wppa-links.php:742 wppa-photo-admin-autosave.php:1244
1938
- #: wppa-photo-admin-autosave.php:1312 wppa-thumbnails.php:589
1939
  #, fuzzy
1940
  msgid "Delete"
1941
  msgstr "Löschen"
@@ -1944,7 +1939,7 @@ msgstr "Löschen"
1944
  msgid "Move to:"
1945
  msgstr ""
1946
 
1947
- #: wppa-album-admin-autosave.php:809 wppa-settings-autosave.php:2650
1948
  msgid "Cancel"
1949
  msgstr "Kündigen"
1950
 
@@ -1977,7 +1972,7 @@ msgstr ""
1977
 
1978
  #: wppa-album-admin-autosave.php:978 wppa-album-admin-autosave.php:1115
1979
  #: wppa-album-admin-autosave.php:1286 wppa-album-admin-autosave.php:1381
1980
- #: wppa-photo-admin-autosave.php:1293 wppa-photo-admin-autosave.php:1412
1981
  msgid "ID"
1982
  msgstr ""
1983
 
@@ -2185,14 +2180,14 @@ msgstr "Ansehen"
2185
  msgid "album"
2186
  msgstr "Album"
2187
 
2188
- #: wppa-album-covers.php:1207 wppa-settings-autosave.php:1226
2189
- #: wppa-settings-autosave.php:5585
2190
  msgid "albums"
2191
  msgstr "Alben"
2192
 
2193
- #: wppa-album-covers.php:1216 wppa-boxes-html.php:1131 wppa-breadcrumb.php:152
2194
- #: wppa-breadcrumb.php:158 wppa-breadcrumb.php:165 wppa-breadcrumb.php:366
2195
- #: wppa-breadcrumb.php:371 wppa-functions.php:4249 wppa-utils.php:1476
2196
  msgid "and"
2197
  msgstr "und"
2198
 
@@ -2201,11 +2196,11 @@ msgid "photo"
2201
  msgstr "Foto"
2202
 
2203
  #: wppa-album-covers.php:1224 wppa-album-covers.php:1228
2204
- #: wppa-settings-autosave.php:692 wppa-settings-autosave.php:731
2205
- #: wppa-settings-autosave.php:1146 wppa-settings-autosave.php:1186
2206
- #: wppa-settings-autosave.php:1206 wppa-settings-autosave.php:1246
2207
- #: wppa-settings-autosave.php:3726 wppa-settings-autosave.php:5569
2208
- #: wppa-settings-autosave.php:6985
2209
  msgid "photos"
2210
  msgstr "Fotos"
2211
 
@@ -2214,14 +2209,14 @@ msgstr "Fotos"
2214
  msgid "New!"
2215
  msgstr "Neues Album"
2216
 
2217
- #: wppa-album-covers.php:1273 wppa-thumbnails.php:1875 wppa-thumbnails.php:1876
2218
  #, fuzzy
2219
  msgid "New"
2220
  msgstr "Neues Album"
2221
 
2222
- #: wppa-album-covers.php:1295 wppa-boxes-html.php:828 wppa-non-admin.php:580
2223
- #: wppa-settings-autosave.php:2122 wppa-settings-autosave.php:5046
2224
- #: wppa-settings-autosave.php:7297
2225
  msgid "Slideshow"
2226
  msgstr "Diaschau"
2227
 
@@ -2233,7 +2228,7 @@ msgstr "Durchsuche Fotos"
2233
  msgid "Categories:"
2234
  msgstr "Kategorien:"
2235
 
2236
- #: wppa-album-covers.php:1333 wppa-breadcrumb.php:378 wppa-breadcrumb.php:383
2237
  msgid "Category:"
2238
  msgstr "Kategorie:"
2239
 
@@ -2246,14 +2241,14 @@ msgid "Album navigator"
2246
  msgstr ""
2247
 
2248
  #: wppa-album-navigator-widget.php:92 wppa-album-widget.php:318
2249
- #: wppa-bestof-widget.php:130 wppa-comment-widget.php:118
2250
- #: wppa-featen-widget.php:133 wppa-gp-widget.php:89 wppa-lasten-widget.php:169
2251
- #: wppa-multitag-widget.php:71 wppa-potd-widget.php:185 wppa-qr-widget.php:89
2252
- #: wppa-search-widget.php:71 wppa-slideshow-widget.php:200
2253
- #: wppa-super-view-widget.php:75 wppa-tagcloud-widget.php:67
2254
- #: wppa-thumbnail-widget.php:186 wppa-topten-widget.php:214
2255
- #: wppa-upldr-widget.php:175 wppa-upload-widget.php:79
2256
- #: wppa-widget-admin.php:177
2257
  msgid "Title:"
2258
  msgstr ""
2259
 
@@ -2329,9 +2324,9 @@ msgstr ""
2329
  "Trage hier Schriftnamen, Größe, Farbe und Breite für die Album Cover Titel "
2330
  "ein."
2331
 
2332
- #: wppa-album-widget.php:351 wppa-comment-widget.php:119
2333
- #: wppa-featen-widget.php:144 wppa-lasten-widget.php:202
2334
- #: wppa-thumbnail-widget.php:234 wppa-topten-widget.php:276
2335
  msgid ""
2336
  "You can set the sizes in this widget in the <b>Photo Albums -> Settings</b> "
2337
  "admin page."
@@ -2349,315 +2344,305 @@ msgid "WPPA+ Best Of Rated Photos"
2349
  msgstr "Fotos"
2350
 
2351
  #: wppa-bestof-widget.php:16 wppa-bestof-widget.php:50
2352
- #: wppa-bestof-widget.php:108
2353
  #, fuzzy
2354
  msgid "Best Of Photos"
2355
  msgstr "Fotos"
2356
 
2357
- #: wppa-bestof-widget.php:151
2358
  #, fuzzy
2359
  msgid "Photo(s)"
2360
  msgstr "Foto"
2361
 
2362
- #: wppa-bestof-widget.php:152
2363
  msgid "Owner(s)"
2364
  msgstr ""
2365
 
2366
- #: wppa-bestof-widget.php:157
2367
  #, fuzzy
2368
  msgid "Last week"
2369
  msgstr "1 Woche"
2370
 
2371
- #: wppa-bestof-widget.php:158
2372
  #, fuzzy
2373
  msgid "This week"
2374
  msgstr "1 Woche"
2375
 
2376
- #: wppa-bestof-widget.php:159
2377
  #, fuzzy
2378
  msgid "Last month"
2379
  msgstr "1 Monat"
2380
 
2381
- #: wppa-bestof-widget.php:160
2382
  #, fuzzy
2383
  msgid "This month"
2384
  msgstr "1 Monat"
2385
 
2386
- #: wppa-bestof-widget.php:161
2387
  #, fuzzy
2388
  msgid "Last year"
2389
  msgstr "1 Jahr"
2390
 
2391
- #: wppa-bestof-widget.php:162
2392
  #, fuzzy
2393
  msgid "This year"
2394
  msgstr "1 Jahr"
2395
 
2396
- #: wppa-bestof-widget.php:167
2397
  msgid "Number of max ratings"
2398
  msgstr ""
2399
 
2400
- #: wppa-bestof-widget.php:168 wppa-topten-widget.php:235
2401
  #, fuzzy
2402
  msgid "Mean value"
2403
  msgstr "Mittelwert:"
2404
 
2405
- #: wppa-bestof-widget.php:177 wppa-topten-widget.php:248
2406
  #: wppa-widget-admin.php:188
2407
  msgid "Subtitle:"
2408
  msgstr ""
2409
 
2410
- #: wppa-bestof-widget.php:178
2411
  #, fuzzy
2412
  msgid "No of max ratings:"
2413
  msgstr "auto selekt max %s zufällig"
2414
 
2415
- #: wppa-bestof-widget.php:183 wppa-topten-widget.php:259
2416
  #, fuzzy
2417
  msgid "Mean rating:"
2418
  msgstr "Der Raum zwischen avg und meine Bewertungssterne"
2419
 
2420
- #: wppa-bestof-widget.php:188 wppa-topten-widget.php:264
2421
  #, fuzzy
2422
  msgid "Rating count:"
2423
  msgstr "Bewertung: %s"
2424
 
2425
- #: wppa-bestof-widget.php:197 wppa-common-functions.php:1939 wppa-items.php:362
2426
- #: wppa-settings-autosave.php:1295 wppa-settings-autosave.php:1616
2427
- #: wppa-settings-autosave.php:3315 wppa-settings-autosave.php:3329
2428
- #: wppa-settings-autosave.php:3517 wppa-settings-autosave.php:3631
2429
- #: wppa-settings-autosave.php:5117 wppa-settings-autosave.php:6861
2430
- #: wppa-settings-autosave.php:7003 wppa-settings-autosave.php:7059
2431
- #: wppa-settings-autosave.php:7847 wppa-settings-autosave.php:8003
2432
  #: wppa-thumbnail-widget.php:202 wppa-tinymce-scripts.php:288
2433
- #: wppa-tinymce-shortcodes.php:517 wppa-upload.php:1528 wppa-watermark.php:520
2434
  #: wppa-widget-admin.php:76 wppa-widget-admin.php:193
2435
  msgid "--- none ---"
2436
  msgstr "--- keine ---"
2437
 
2438
- #: wppa-bestof-widget.php:198
2439
  #, fuzzy
2440
  msgid "The authors album(s)"
2441
  msgstr "--- multiple siehe unten---"
2442
 
2443
- #: wppa-bestof-widget.php:199
2444
  #, fuzzy
2445
  msgid "The photos in the authors album(s)"
2446
  msgstr "--- multiple siehe unten---"
2447
 
2448
- #: wppa-bestof-widget.php:200
2449
  #, fuzzy
2450
  msgid "All the authors photos"
2451
  msgstr "Klicken um das Foto im Vollbild und alle Kommentare zu sehen"
2452
 
2453
- #: wppa-boxes-html.php:130 wppa-boxes-html.php:227
2454
  #, fuzzy
2455
  msgid "Photo search results"
2456
  msgstr "Suchergebnisse für: %s"
2457
 
2458
- #: wppa-boxes-html.php:186
2459
- #, fuzzy
2460
- msgid "Search in current section"
2461
- msgstr "Suche"
2462
-
2463
- #: wppa-boxes-html.php:191
2464
- #, fuzzy
2465
- msgid "Search in current results"
2466
- msgstr "Suchergebnisse für: %s"
2467
-
2468
- #: wppa-boxes-html.php:361 wppa-breadcrumb.php:140
2469
- #: wppa-settings-autosave.php:387
2470
  #, fuzzy
2471
  msgid "Albums"
2472
  msgstr "Alben:"
2473
 
2474
- #: wppa-boxes-html.php:367 wppa-breadcrumb.php:155
2475
  #, fuzzy
2476
  msgid "Photos"
2477
  msgstr "Foto"
2478
 
2479
- #: wppa-boxes-html.php:386
2480
  #, fuzzy
2481
  msgid "Category"
2482
  msgstr "Kategorie:"
2483
 
2484
- #: wppa-boxes-html.php:399 wppa-boxes-html.php:532
2485
  msgid "Text"
2486
  msgstr ""
2487
 
2488
- #: wppa-boxes-html.php:415 wppa-boxes-html.php:469 wppa-boxes-html.php:615
2489
- #: wppa-boxes-html.php:645
2490
  msgid "CTRL+Click to add/remove option."
2491
  msgstr ""
2492
 
2493
- #: wppa-boxes-html.php:416 wppa-boxes-html.php:470 wppa-boxes-html.php:616
2494
- #: wppa-boxes-html.php:646
2495
  msgid "Items must meet all selected options."
2496
  msgstr ""
2497
 
2498
- #: wppa-boxes-html.php:524 wppa-settings-autosave.php:8107
2499
- #: wppa-settings-autosave.php:8147 wppa-settings-autosave.php:8169
2500
- #: wppa-settings-autosave.php:8215
2501
  msgid "Tag"
2502
  msgstr ""
2503
 
2504
- #: wppa-boxes-html.php:540
2505
  msgid "Iptc"
2506
  msgstr ""
2507
 
2508
- #: wppa-boxes-html.php:549
2509
  msgid "Exif"
2510
  msgstr ""
2511
 
2512
- #: wppa-boxes-html.php:747 wppa-boxes-html.php:832
2513
  msgid "Submit"
2514
  msgstr ""
2515
 
2516
- #: wppa-boxes-html.php:789 wppa-super-view-widget.php:14
2517
  #: wppa-super-view-widget.php:66
2518
  #, fuzzy
2519
  msgid "Super View Photos"
2520
  msgstr "Super View Fotos"
2521
 
2522
- #: wppa-boxes-html.php:820 wppa-settings-autosave.php:403
2523
- #: wppa-settings-autosave.php:4308
2524
  #, fuzzy
2525
  msgid "Thumbnails"
2526
  msgstr "Miniaturbild Fotos"
2527
 
2528
- #: wppa-boxes-html.php:866
2529
  #, fuzzy
2530
  msgid "Tagged photos"
2531
  msgstr "Fotos"
2532
 
2533
- #: wppa-boxes-html.php:880
2534
  #, fuzzy
2535
  msgid "Please select a tagcloud landing page in Table VI-C3b"
2536
  msgstr "Wähle die Zielseite für das Super View-Widget."
2537
 
2538
- #: wppa-boxes-html.php:938
2539
  #, fuzzy
2540
  msgid "Multi Tagged photos"
2541
  msgstr "Multi Bewertung"
2542
 
2543
- #: wppa-boxes-html.php:952
2544
  #, fuzzy
2545
  msgid "Please select a multitag landing page in Table VI-C4b"
2546
  msgstr "Wähle die Zielseite für das Super View-Widget."
2547
 
2548
- #: wppa-boxes-html.php:990
2549
  #, fuzzy
2550
  msgid "Please check the tag(s) that the photos must have"
2551
  msgstr "--- bitte wähle Tag(s) aus ---"
2552
 
2553
- #: wppa-boxes-html.php:1019
2554
  #, fuzzy
2555
  msgid "And"
2556
  msgstr "und"
2557
 
2558
- #: wppa-boxes-html.php:1030
2559
  msgid "Or"
2560
  msgstr "Oder"
2561
 
2562
- #: wppa-boxes-html.php:1080
2563
  #, fuzzy
2564
  msgid "Find!"
2565
  msgstr "Finde Remote Fotos"
2566
 
2567
- #: wppa-boxes-html.php:1107
2568
  msgid "Social media landing page"
2569
  msgstr ""
2570
 
2571
- #: wppa-boxes-html.php:1132 wppa-utils.php:1476
2572
  #, php-format
2573
  msgid "See this image on %s"
2574
  msgstr "Schau Dir das Bild an auf %s"
2575
 
2576
- #: wppa-boxes-html.php:1157 wppa-qr-widget.php:40
2577
  msgid "QR code"
2578
  msgstr "QR Code"
2579
 
2580
- #: wppa-boxes-html.php:1202
2581
  #, fuzzy, php-format
2582
  msgid "Tweet %s on Twitter"
2583
  msgstr "Zeigt Twitter Button"
2584
 
2585
- #: wppa-boxes-html.php:1209
2586
  #, fuzzy
2587
  msgid "Share on Twitter"
2588
  msgstr "Zeigt den Twitter-Button in der Share - Box an."
2589
 
2590
- #: wppa-boxes-html.php:1222
2591
  #, fuzzy, php-format
2592
  msgid "Share %s on Google+"
2593
  msgstr "Zeigt den Google-Button in der Share - Box an."
2594
 
2595
- #: wppa-boxes-html.php:1230
2596
  #, fuzzy
2597
  msgid "Share on Google+"
2598
  msgstr "Zeigt den Google-Button in der Share - Box an."
2599
 
2600
- #: wppa-boxes-html.php:1245
2601
  #, fuzzy, php-format
2602
  msgid "Share %s on Pinterest"
2603
  msgstr "Share, Teilen"
2604
 
2605
- #: wppa-boxes-html.php:1254
2606
  #, fuzzy
2607
  msgid "Share on Pinterest"
2608
  msgstr "Share, Teilen"
2609
 
2610
- #: wppa-boxes-html.php:1389
2611
  #, fuzzy
2612
  msgid "Comment on Facebook:"
2613
  msgstr "Zeigen die Facebook Kommentar-Feld"
2614
 
2615
- #: wppa-boxes-html.php:1490 wppa-upload.php:1135
2616
  msgid "Working..."
2617
  msgstr ""
2618
 
2619
- #: wppa-boxes-html.php:1492 wppa-boxes-html.php:1495
2620
  #, fuzzy
2621
  msgid "Delete album"
2622
  msgstr "Das Album konnte nicht erstellt werden."
2623
 
2624
- #: wppa-boxes-html.php:1582
2625
  #, fuzzy
2626
  msgid "Create Album"
2627
  msgstr "Das Album konnte nicht erstellt werden."
2628
 
2629
- #: wppa-boxes-html.php:1627 wppa-boxes-html.php:2370
2630
  #, fuzzy
2631
  msgid "Enter album name."
2632
  msgstr ""
2633
  "Trage hier Schriftnamen, Größe, Farbe und Breite für die Album Cover Titel "
2634
  "ein."
2635
 
2636
- #: wppa-boxes-html.php:1629 wppa-boxes-html.php:2372
2637
  msgid "Don't leave this blank!"
2638
  msgstr "Hinterlasse einen Kommentar"
2639
 
2640
- #: wppa-boxes-html.php:1648
2641
  #, fuzzy
2642
  msgid "Enter album description"
2643
  msgstr "Eintragen / ändern der Beschreibung des Albums"
2644
 
2645
- #: wppa-boxes-html.php:1670
2646
  #, fuzzy
2647
  msgid "Create album"
2648
  msgstr "Das Album konnte nicht erstellt werden."
2649
 
2650
- #: wppa-boxes-html.php:1726 wppa-boxes-html.php:1739 wppa-functions.php:3966
2651
  #, fuzzy
2652
  msgid "Max uploads reached"
2653
  msgstr ""
2654
  "Zeige wenn die Upload - Grenze erreicht ist.gegebenenfalls als Nachricht ."
2655
 
2656
- #: wppa-boxes-html.php:1801 wppa-upload.php:134
2657
  msgid "Upload Photo"
2658
  msgstr "Upload Foto"
2659
 
2660
- #: wppa-boxes-html.php:1948
2661
  #, fuzzy, php-format
2662
  msgid ""
2663
  "You may upload up to %s photos at once if your browser supports HTML-5 "
@@ -2666,24 +2651,24 @@ msgstr ""
2666
  "Du benötigst einen modernen Browser, der HTML-5 unterstützt, um mehrere "
2667
  "Dateien auszuwählen"
2668
 
2669
- #: wppa-boxes-html.php:1956
2670
  #, fuzzy, php-format
2671
  msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
2672
  msgstr "(max %d)"
2673
 
2674
- #: wppa-boxes-html.php:1985 wppa-upload.php:123 wppa-upload.php:211
2675
  #: wppa-upload.php:258 wppa-upload.php:704
2676
  #, fuzzy
2677
  msgid "Apply watermark file:"
2678
  msgstr "Wende eine Wasserzeichen-Datei an:"
2679
 
2680
- #: wppa-boxes-html.php:2007 wppa-upload.php:128 wppa-upload.php:216
2681
  #: wppa-upload.php:263 wppa-upload.php:708
2682
  #, fuzzy
2683
  msgid "Position:"
2684
  msgstr "Position/Ort:"
2685
 
2686
- #: wppa-boxes-html.php:2035
2687
  #, fuzzy
2688
  msgid ""
2689
  "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
@@ -2693,7 +2678,7 @@ msgstr ""
2693
  "Wenn das leer gelassen wird, wird der Originalname der Datei als Fotoname "
2694
  "verwendet."
2695
 
2696
- #: wppa-boxes-html.php:2040
2697
  #, fuzzy
2698
  msgid ""
2699
  "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
@@ -2702,368 +2687,385 @@ msgstr ""
2702
  "Wenn das leer gelassen wird, wird der Originalname der Datei als Fotoname "
2703
  "verwendet."
2704
 
2705
- #: wppa-boxes-html.php:2045
2706
  msgid ""
2707
  "If you leave this blank, the original filename will be used as photo name."
2708
  msgstr ""
2709
  "Wenn das leer gelassen wird, wird der Originalname der Datei als Fotoname "
2710
  "verwendet."
2711
 
2712
- #: wppa-boxes-html.php:2059
2713
  msgid "Enter photo name."
2714
  msgstr "Bitte gibt den Fotonamen an."
2715
 
2716
- #: wppa-boxes-html.php:2080
2717
  msgid "Enter/modify photo description"
2718
  msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
2719
 
2720
- #: wppa-boxes-html.php:2111
2721
  msgid "hidden"
2722
  msgstr ""
2723
 
2724
- #: wppa-boxes-html.php:2180
2725
  msgid "Preview tags:"
2726
  msgstr ""
2727
 
2728
- #: wppa-boxes-html.php:2193
2729
  #, fuzzy
2730
  msgid "Please select an album and try again"
2731
  msgstr "Bitte wähle Album"
2732
 
2733
- #: wppa-boxes-html.php:2207
2734
  #, fuzzy
2735
  msgid "Upload photo"
2736
  msgstr "Fotos hochladen"
2737
 
2738
- #: wppa-boxes-html.php:2263
2739
  #, fuzzy
2740
  msgid "ERROR: unable to upload files."
2741
  msgstr "<b>FEHLER: Ungültiger Versuch eine Datei hochzuladen</b>"
2742
 
2743
- #: wppa-boxes-html.php:2312
2744
  #, fuzzy
2745
  msgid "Edit albuminfo"
2746
  msgstr "Bearbeiten"
2747
 
2748
- #: wppa-boxes-html.php:2392
2749
  #, fuzzy
2750
  msgid "Album description:"
2751
  msgstr "Unsymmetrische Tags in der Album Beschreibung!"
2752
 
2753
- #: wppa-boxes-html.php:2411
2754
  #, fuzzy
2755
  msgid "Update album"
2756
  msgstr "Erneuere die Plugin Beschreibung"
2757
 
2758
- #: wppa-boxes-html.php:2485
2759
  msgid "wrote:"
2760
  msgstr ""
2761
 
2762
- #: wppa-boxes-html.php:2539
2763
  msgid "Avatar"
2764
  msgstr ""
2765
 
2766
- #: wppa-boxes-html.php:2582 wppa-links.php:768
2767
  #, fuzzy
2768
  msgid "Awaiting moderation"
2769
  msgstr "Dieses Foto wartet nicht mehr auf Moderation."
2770
 
2771
- #: wppa-boxes-html.php:2585
2772
  #, fuzzy
2773
  msgid "Marked as spam"
2774
  msgstr "Spam:"
2775
 
2776
- #: wppa-boxes-html.php:2609
2777
  msgid "Edit!"
2778
  msgstr "Bearbeiten!"
2779
 
2780
- #: wppa-boxes-html.php:2613
2781
  msgid "Send!"
2782
  msgstr "Absenden!"
2783
 
2784
- #: wppa-boxes-html.php:2674
2785
  msgid "Your name:"
2786
  msgstr "Dein Name:"
2787
 
2788
- #: wppa-boxes-html.php:2689
2789
  msgid "Your email:"
2790
  msgstr "Deine E-mail:"
2791
 
2792
- #: wppa-boxes-html.php:2705
2793
  msgid "Your comment:"
2794
  msgstr "Dein Kommentar:"
2795
 
2796
- #: wppa-boxes-html.php:2750
2797
  #, php-format
2798
  msgid "You must <a href=\"%s\">login</a> to enter a comment"
2799
  msgstr ""
2800
  "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
2801
  "hinterlassen."
2802
 
2803
- #: wppa-boxes-html.php:2753
2804
  #, fuzzy
2805
  msgid "You must login to enter a comment"
2806
  msgstr ""
2807
  "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
2808
  "hinterlassen."
2809
 
2810
- #: wppa-boxes-html.php:2765
2811
  #, fuzzy, php-format
2812
  msgid "%d comments"
2813
  msgstr "%d Kommentare"
2814
 
2815
- #: wppa-boxes-html.php:2769
2816
  msgid "Leave a comment"
2817
  msgstr "Hinterlasse einen Kommentar"
2818
 
2819
- #: wppa-boxes-html.php:2810
2820
  #, fuzzy
2821
  msgid "Smilies are not available"
2822
  msgstr "Diese Seite ist nicht abrufbar."
2823
 
2824
- #: wppa-boxes-html.php:2860
2825
  #, fuzzy
2826
  msgid "Show IPTC data"
2827
  msgstr "IPTC Daten"
2828
 
2829
- #: wppa-boxes-html.php:2871
2830
  #, fuzzy
2831
  msgid "Hide IPTC data"
2832
  msgstr "IPTC Daten"
2833
 
2834
- #: wppa-boxes-html.php:2911
2835
  #, fuzzy
2836
  msgid "No IPTC data"
2837
  msgstr "IPTC Daten"
2838
 
2839
- #: wppa-boxes-html.php:2958
2840
  #, fuzzy
2841
  msgid "Show EXIF data"
2842
  msgstr "EXIF Daten"
2843
 
2844
- #: wppa-boxes-html.php:2969
2845
  #, fuzzy
2846
  msgid "Hide EXIF data"
2847
  msgstr "EXIF Daten"
2848
 
2849
- #: wppa-boxes-html.php:3011
2850
  #, fuzzy
2851
  msgid "No EXIF data"
2852
  msgstr "EXIF Daten"
2853
 
2854
- #: wppa-boxes-html.php:3126 wppa-boxes-html.php:3131
2855
  #, fuzzy
2856
  msgid "< Previous"
2857
  msgstr "Vorheriges Foto"
2858
 
2859
- #: wppa-boxes-html.php:3137 wppa-boxes-html.php:3142
2860
  #, fuzzy
2861
  msgid "Next >"
2862
  msgstr "Nächstes"
2863
 
2864
- #: wppa-boxes-html.php:3239 wppa-boxes-html.php:3298
2865
  #, fuzzy
2866
  msgid "See the authors albums"
2867
  msgstr "--- multiple siehe unten---"
2868
 
2869
- #: wppa-boxes-html.php:3243 wppa-boxes-html.php:3302
2870
  #, fuzzy
2871
  msgid "See the authors photos"
2872
  msgstr ""
2873
  "Der Besucher kann sich eine Übersicht mit Miniaturbildern der Fotos im Album "
2874
  "ansehen."
2875
 
2876
- #: wppa-boxes-html.php:3247 wppa-boxes-html.php:3306
2877
  #, fuzzy
2878
  msgid "See all the authors photos"
2879
  msgstr "Klicken um das Foto im Vollbild und alle Kommentare zu sehen"
2880
 
2881
- #: wppa-boxes-html.php:3270
2882
  #, fuzzy, php-format
2883
  msgid "Photo by: %s"
2884
  msgstr "Foto %s gedreht %s"
2885
 
2886
- #: wppa-boxes-html.php:3271 wppa-boxes-html.php:3325
2887
  #, fuzzy, php-format
2888
  msgid "Max ratings: %s."
2889
  msgstr "auto selekt max %s zufällig"
2890
 
2891
- #: wppa-boxes-html.php:3272 wppa-boxes-html.php:3326
2892
  #, fuzzy, php-format
2893
  msgid "Votes: %s."
2894
  msgstr "%s Stimme(n)"
2895
 
2896
- #: wppa-boxes-html.php:3273 wppa-boxes-html.php:3327
2897
  #, fuzzy, php-format
2898
  msgid "Mean value: %4.2f."
2899
  msgstr "Mittelwert:"
2900
 
2901
- #: wppa-boxes-html.php:3280
2902
  #, fuzzy, php-format
2903
  msgid "Photo %s not found."
2904
  msgstr "Foto wurde nicht gefunden."
2905
 
2906
- #: wppa-breadcrumb.php:102 wppa-settings-autosave.php:1446
 
 
 
 
 
2907
  msgid "Home"
2908
  msgstr "Startseite"
2909
 
2910
- #: wppa-breadcrumb.php:123
2911
  #, fuzzy
2912
  msgid "Post:"
2913
  msgstr "Beitrag"
2914
 
2915
- #: wppa-breadcrumb.php:123 wppa-breadcrumb.php:567
2916
  #, fuzzy
2917
  msgid "Page:"
2918
  msgstr "Seite"
2919
 
2920
- #: wppa-breadcrumb.php:143
2921
  #, fuzzy
2922
  msgid "with category:"
2923
  msgstr "Kategorie:"
2924
 
2925
- #: wppa-breadcrumb.php:146 wppa-breadcrumb.php:161
2926
  #, fuzzy
2927
  msgid "with name:"
2928
  msgstr "Dein Name:"
2929
 
2930
- #: wppa-breadcrumb.php:149 wppa-breadcrumb.php:165
2931
  msgid "with words:"
2932
  msgstr ""
2933
 
2934
- #: wppa-breadcrumb.php:158
2935
  msgid "with tag:"
2936
  msgstr ""
2937
 
2938
- #: wppa-breadcrumb.php:169
2939
  msgid "of owner:"
2940
  msgstr ""
2941
 
2942
- #: wppa-breadcrumb.php:174
2943
  #, fuzzy
2944
  msgid "with iptc tag:"
2945
  msgstr "Kategorie:"
2946
 
2947
- #: wppa-breadcrumb.php:174 wppa-breadcrumb.php:179
2948
  #, fuzzy
2949
  msgid "with content:"
2950
  msgstr "Dein Name:"
2951
 
2952
- #: wppa-breadcrumb.php:179
2953
  msgid "with exif tag:"
2954
  msgstr ""
2955
 
2956
- #: wppa-breadcrumb.php:187 wppa-breadcrumb.php:215 wppa-breadcrumb.php:272
2957
- #: wppa-breadcrumb.php:290 wppa-breadcrumb.php:308 wppa-breadcrumb.php:326
2958
- #: wppa-breadcrumb.php:344 wppa-breadcrumb.php:356 wppa-breadcrumb.php:368
2959
- #: wppa-breadcrumb.php:380 wppa-breadcrumb.php:399
2960
  #, fuzzy
2961
  msgid "View the thumbnails"
2962
  msgstr "Anzeigen..."
2963
 
2964
- #: wppa-breadcrumb.php:209
2965
  #, fuzzy, php-format
2966
  msgid "Searchresults from album %s and its subalbums"
2967
  msgstr ""
2968
  "Das Foto %s existiert schon in der Album Nummer %s. Aus den Depot entfernt."
2969
 
2970
- #: wppa-breadcrumb.php:213 wppa-breadcrumb.php:218
2971
  msgid "Searchstring:"
2972
  msgstr "Suchtext:"
2973
 
2974
- #: wppa-breadcrumb.php:227 wppa-breadcrumb.php:245
2975
  #, fuzzy
2976
  msgid "Photos by EXIF date"
2977
  msgstr "EXIF Daten"
2978
 
2979
- #: wppa-breadcrumb.php:231 wppa-breadcrumb.php:249
2980
  #, fuzzy
2981
  msgid "Photos by date of upload"
2982
  msgstr "Fotos hochgeladen zu Album Nr"
2983
 
2984
- #: wppa-breadcrumb.php:235 wppa-breadcrumb.php:253
2985
  msgid "Photos by date last modified"
2986
  msgstr ""
2987
 
2988
- #: wppa-breadcrumb.php:265 wppa-breadcrumb.php:275
2989
  #, fuzzy, php-format
2990
  msgid "Photos by %s"
2991
  msgstr "Mit insgesamt %s Fotos."
2992
 
2993
- #: wppa-breadcrumb.php:282 wppa-breadcrumb.php:300 wppa-breadcrumb.php:318
2994
- #: wppa-breadcrumb.php:336 wppa-breadcrumb.php:414
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2015-10-14 15:58+0200\n"
5
+ "PO-Revision-Date: 2015-10-14 15:58+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.5\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: wppa.php\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
31
  #: wppa-album-admin-autosave.php:1445 wppa-album-admin-autosave.php:1519
32
  #: wppa-album-admin-autosave.php:1629 wppa-comment-admin.php:311
33
  #: wppa-comment-admin.php:380 wppa-comment-admin.php:398
34
+ #: wppa-functions.php:1919 wppa-thumbnails.php:597
35
  #, fuzzy
36
  msgid "Edit"
37
  msgstr "Bearbeiten"
40
  msgid "Warning. No page defined for search results!"
41
  msgstr "Warnung. Keine Seite für die Suchergebnisse definiert!"
42
 
43
+ #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:177
44
+ #: wppa-settings-autosave.php:397 wppa-settings-autosave.php:3006
45
  #, fuzzy
46
  msgid "Search"
47
  msgstr "Suche"
94
  msgid "Settings file not found"
95
  msgstr "Einstellungsdatei nicht gefunden"
96
 
97
+ #: wppa-admin-functions.php:206 wppa-admin-functions.php:210 wppa-ajax.php:2248
98
+ #: wppa-ajax.php:2255
99
  msgid "Please supply a numeric value greater than or equal to"
100
  msgstr "Bitte geben Sie einen numerischen Wert größer oder gleich"
101
 
102
+ #: wppa-admin-functions.php:206 wppa-admin-functions.php:210 wppa-ajax.php:2248
103
+ #: wppa-ajax.php:2255
104
  msgid "for"
105
  msgstr "für"
106
 
107
+ #: wppa-admin-functions.php:210 wppa-ajax.php:2255
108
  msgid "and less than or equal to"
109
  msgstr "und kleiner oder gleich"
110
 
244
  msgid "Album Admin"
245
  msgstr "Album Admin"
246
 
247
+ #: wppa-admin.php:58 wppa-adminbar.php:47 wppa-upload-widget.php:74
248
  #: wppa-upload.php:88
249
  msgid "Upload Photos"
250
  msgstr "Fotos Hochladen"
275
  msgstr "Foto des Tages"
276
 
277
  #: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:61
278
+ #: wppa-setup.php:1359
279
  msgid "Photo of the day"
280
  msgstr "Foto des Tages"
281
 
284
  msgid "Manage comments"
285
  msgstr "%d Kommentare"
286
 
287
+ #: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:387
288
+ #: wppa-settings-autosave.php:2835 wppa-settings-autosave.php:7564
289
+ #: wppa-settings-autosave.php:7609
290
  msgid "Comments"
291
  msgstr "Kommentare"
292
 
312
  msgid "Import"
313
  msgstr "Fotos Importieren"
314
 
315
+ #: wppa-admin.php:121 wppa-settings-autosave.php:8603
316
  #, fuzzy
317
  msgid "Update"
318
  msgstr "Erneuere die Plugin Beschreibung"
345
  msgid "Exit & Refresh"
346
  msgstr "Erneuern"
347
 
348
+ #: wppa-ajax.php:171 wppa-ajax.php:228 wppa-ajax.php:251 wppa-ajax.php:465
349
+ #: wppa-ajax.php:726
350
  msgid "Security check failure"
351
  msgstr ""
352
 
383
  msgid "Could not remove comment"
384
  msgstr "Das Album konnte nicht erstellt werden."
385
 
386
+ #: wppa-ajax.php:264 wppa-ajax.php:598
387
  msgid "Unexpected error"
388
  msgstr ""
389
 
395
  msgid "The album is empty"
396
  msgstr ""
397
 
398
+ #: wppa-ajax.php:291 wppa-ajax.php:428
399
  msgid "Unable to create zip archive"
400
  msgstr ""
401
 
404
  msgid "Unable to create zip archive. code = %s"
405
  msgstr ""
406
 
407
+ #: wppa-ajax.php:340
408
  #, php-format
409
  msgid "Only %s out of %s photos could be added to the zipfile"
410
  msgstr ""
411
 
412
+ #: wppa-ajax.php:369
413
  msgid "Unknown source of request"
414
  msgstr ""
415
 
416
+ #: wppa-ajax.php:387
417
  msgid "Empty filename"
418
  msgstr ""
419
 
420
+ #: wppa-ajax.php:414
421
  msgid "Unable to create tempdir"
422
  msgstr ""
423
 
424
+ #: wppa-ajax.php:438
425
  #, fuzzy
426
  msgid "Unknown type"
427
  msgstr "unbekannt"
428
 
429
+ #: wppa-ajax.php:447
430
  msgid "The photo does no longer exist"
431
  msgstr ""
432
 
433
+ #: wppa-ajax.php:479
434
  msgid "An error occurred while processing you rating request."
435
  msgstr ""
436
 
437
+ #: wppa-ajax.php:480
438
  msgid "Maybe you opened the page too long ago to recognize you."
439
  msgstr ""
440
 
441
+ #: wppa-ajax.php:481
442
  msgid "You may refresh the page and try again."
443
  msgstr ""
444
 
445
+ #: wppa-ajax.php:482
446
  msgid ""
447
  "Althoug an error occurred while processing your rating, your vote has been "
448
  "registered."
449
  msgstr ""
450
 
451
+ #: wppa-ajax.php:483
452
  msgid "However, this may not be reflected in the current pageview"
453
  msgstr ""
454
 
455
+ #: wppa-ajax.php:505
456
  #, fuzzy
457
  msgid "Photo has been removed."
458
  msgstr "Foto wurde entfernt."
459
 
460
+ #: wppa-ajax.php:514
461
  msgid "Sorry, you can not rate your own photos"
462
  msgstr ""
463
 
464
+ #: wppa-ajax.php:526
465
  #, fuzzy
466
  msgid "Please enter a comment."
467
  msgstr "Bitte hinterlasse einen Kommentar"
468
 
469
+ #: wppa-ajax.php:551
470
  msgid "Security check failure."
471
  msgstr ""
472
 
473
+ #: wppa-ajax.php:563 wppa-ajax.php:579
474
  #, fuzzy
475
  msgid "Photo rated"
476
  msgstr "Foto des Tages"
477
 
478
+ #: wppa-ajax.php:678
479
  msgid ""
480
  "Please explain your vote in a comment.\n"
481
  "Your vote will be discarded if you don't.\n"
485
  "your vote became effective."
486
  msgstr ""
487
 
488
+ #: wppa-ajax.php:722
489
  msgid "You do not have the rights to delete a photo"
490
  msgstr ""
491
 
492
+ #: wppa-ajax.php:732
493
  #, fuzzy, php-format
494
  msgid "Photo %s has been deleted"
495
  msgstr "Foto wurde entfernt."
496
 
497
+ #: wppa-ajax.php:748
498
  msgid "You do not have the rights to update album information"
499
  msgstr ""
500
 
501
+ #: wppa-ajax.php:760
502
  msgid "<b>Ratings cleared</b>"
503
  msgstr ""
504
 
505
+ #: wppa-ajax.php:760 wppa-ajax.php:766 wppa-photo-admin-autosave.php:312
506
  msgid "No ratings for this photo."
507
  msgstr ""
508
 
509
+ #: wppa-ajax.php:763
510
  msgid "An error occurred while clearing ratings"
511
  msgstr ""
512
 
513
+ #: wppa-ajax.php:766 wppa-ajax.php:787 wppa-ajax.php:809
514
  msgid "<b>No photos in this album</b>"
515
  msgstr ""
516
 
517
+ #: wppa-ajax.php:781
518
  msgid "<b>Tags set to defaults</b> (reload)"
519
  msgstr ""
520
 
521
+ #: wppa-ajax.php:784
522
  msgid "An error occurred while setting tags"
523
  msgstr ""
524
 
525
+ #: wppa-ajax.php:803
526
  msgid "<b>Tags added width defaults</b> (reload)"
527
  msgstr ""
528
 
529
+ #: wppa-ajax.php:806
530
  msgid "An error occurred while adding tags"
531
  msgstr ""
532
 
533
+ #: wppa-ajax.php:818
534
  #, php-format
535
  msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
536
  msgstr ""
537
 
538
+ #: wppa-ajax.php:820 wppa-ajax.php:1220 wppa-album-admin-autosave.php:335
539
  #: wppa-album-admin-autosave.php:392 wppa-album-admin-autosave.php:988
540
  #: wppa-album-admin-autosave.php:1125 wppa-album-admin-autosave.php:1297
541
+ #: wppa-album-admin-autosave.php:1392 wppa-boxes-html.php:395
542
+ #: wppa-boxes-html.php:509 wppa-photo-admin-autosave.php:1329
543
+ #: wppa-photo-admin-autosave.php:1448 wppa-settings-autosave.php:453
544
+ #: wppa-settings-autosave.php:615 wppa-settings-autosave.php:637
545
+ #: wppa-settings-autosave.php:1337 wppa-settings-autosave.php:1358
546
+ #: wppa-settings-autosave.php:2732 wppa-settings-autosave.php:2753
547
+ #: wppa-settings-autosave.php:3064 wppa-settings-autosave.php:3088
548
+ #: wppa-settings-autosave.php:3557 wppa-settings-autosave.php:3671
549
+ #: wppa-settings-autosave.php:4239 wppa-settings-autosave.php:4260
550
+ #: wppa-settings-autosave.php:4436 wppa-settings-autosave.php:4460
551
+ #: wppa-settings-autosave.php:5459 wppa-settings-autosave.php:5967
552
+ #: wppa-settings-autosave.php:5989 wppa-settings-autosave.php:6569
553
+ #: wppa-settings-autosave.php:6593 wppa-settings-autosave.php:7558
554
+ #: wppa-settings-autosave.php:8161 wppa-settings-autosave.php:8317
555
  #: wppa-thumbnail-widget.php:204 wppa-upload.php:166
556
  msgid "Name"
557
  msgstr ""
558
 
559
+ #: wppa-ajax.php:823 wppa-ajax.php:1223 wppa-album-admin-autosave.php:998
560
  #: wppa-album-admin-autosave.php:1135 wppa-album-admin-autosave.php:1307
561
+ #: wppa-album-admin-autosave.php:1402 wppa-photo-admin-autosave.php:1330
562
+ #: wppa-photo-admin-autosave.php:1449 wppa-settings-autosave.php:454
563
+ #: wppa-settings-autosave.php:616 wppa-settings-autosave.php:638
564
+ #: wppa-settings-autosave.php:1338 wppa-settings-autosave.php:1359
565
+ #: wppa-settings-autosave.php:2733 wppa-settings-autosave.php:2754
566
+ #: wppa-settings-autosave.php:3065 wppa-settings-autosave.php:3089
567
+ #: wppa-settings-autosave.php:4240 wppa-settings-autosave.php:4261
568
+ #: wppa-settings-autosave.php:4437 wppa-settings-autosave.php:4461
569
+ #: wppa-settings-autosave.php:5460 wppa-settings-autosave.php:5968
570
+ #: wppa-settings-autosave.php:5990 wppa-settings-autosave.php:6570
571
+ #: wppa-settings-autosave.php:6594 wppa-settings-autosave.php:8162
572
+ #: wppa-settings-autosave.php:8184 wppa-settings-autosave.php:8224
573
+ #: wppa-settings-autosave.php:8246 wppa-settings-autosave.php:8292
574
+ #: wppa-settings-autosave.php:8318 wppa-widget-admin.php:195
575
  #, fuzzy
576
  msgid "Description"
577
  msgstr "Unsymmetrische Tags in der Album Beschreibung!"
578
 
579
+ #: wppa-ajax.php:827
580
  #, fuzzy
581
  msgid "Unbalanced tags in album description!"
582
  msgstr "Eintragen / ändern der Beschreibung des Albums"
583
 
584
+ #: wppa-ajax.php:834
585
  msgid "Album order #"
586
  msgstr ""
587
 
588
+ #: wppa-ajax.php:837
589
  #, fuzzy
590
  msgid "Cover photo"
591
  msgstr "Durchsuche Fotos"
592
 
593
+ #: wppa-ajax.php:840
594
  #, fuzzy
595
  msgid "Parent album"
596
  msgstr "Das Album konnte nicht erstellt werden."
597
 
598
+ #: wppa-ajax.php:845 wppa-settings-autosave.php:3551
599
  #, fuzzy
600
  msgid "Photo order"
601
  msgstr "Foto des Tages"
602
 
603
+ #: wppa-ajax.php:848
604
  msgid "Use Alt thumbsize"
605
  msgstr ""
606
 
607
+ #: wppa-ajax.php:851
608
  msgid "Cover Type"
609
  msgstr ""
610
 
611
+ #: wppa-ajax.php:854 wppa-settings-autosave.php:4462
612
+ #: wppa-settings-autosave.php:5461
613
  #, fuzzy
614
  msgid "Link type"
615
  msgstr "Verweis zu"
616
 
617
+ #: wppa-ajax.php:857 wppa-album-covers.php:1098
618
  msgid "Link to"
619
  msgstr "Verweis zu"
620
 
621
+ #: wppa-ajax.php:860 wppa-ajax.php:1244 wppa-album-admin-autosave.php:1009
622
  #: wppa-album-admin-autosave.php:1146 wppa-album-admin-autosave.php:1318
623
+ #: wppa-album-admin-autosave.php:1413 wppa-boxes-html.php:517
624
+ #: wppa-photo-admin-autosave.php:1332 wppa-photo-admin-autosave.php:1451
625
  #: wppa-widget-admin.php:196
626
  msgid "Owner"
627
  msgstr ""
628
 
629
+ #: wppa-ajax.php:862
630
  #, php-format
631
  msgid "User %s does not exist"
632
  msgstr ""
633
 
634
+ #: wppa-ajax.php:867 wppa-ajax.php:873
635
  #, fuzzy
636
  msgid "Upload limit count"
637
  msgstr "Upload Foto"
638
 
639
+ #: wppa-ajax.php:880
640
  #, fuzzy
641
  msgid "Upload limit time"
642
  msgstr "Hochgeladenen datei ist kein Bild"
643
 
644
+ #: wppa-ajax.php:884
645
  msgid "Default tags"
646
  msgstr ""
647
 
648
+ #: wppa-ajax.php:889
649
  #, fuzzy
650
  msgid "Categories"
651
  msgstr "Kategorien:"
652
 
653
+ #: wppa-ajax.php:892
654
  msgid "Sub albums sort order"
655
  msgstr ""
656
 
657
+ #: wppa-ajax.php:900 wppa-ajax.php:1314
658
  msgid "Schedule date/time"
659
  msgstr ""
660
 
661
+ #: wppa-ajax.php:913 wppa-ajax.php:939
662
  #, php-format
663
  msgid "<b>%s</b> of album %s updated"
664
  msgstr ""
665
 
666
+ #: wppa-ajax.php:921
667
  msgid "All photos set to scheduled per date"
668
  msgstr ""
669
 
670
+ #: wppa-ajax.php:948
671
  #, php-format
672
  msgid "An error occurred while trying to update <b>%s</b> of album %s"
673
  msgstr ""
674
 
675
+ #: wppa-ajax.php:949 wppa-ajax.php:1198 wppa-ajax.php:1304
676
  msgid "Press CTRL+F5 and try again."
677
  msgstr ""
678
 
679
+ #: wppa-ajax.php:963
680
  msgid "You do not have the rights to update comment status"
681
  msgstr ""
682
 
683
+ #: wppa-ajax.php:972
684
  #, php-format
685
  msgid "Status of comment #%s updated"
686
  msgstr ""
687
 
688
+ #: wppa-ajax.php:975
689
  #, php-format
690
  msgid "Error updating status comment #%s"
691
  msgstr ""
692
 
693
+ #: wppa-ajax.php:986
694
  msgid "You do not have the rights to change photos"
695
  msgstr ""
696
 
697
+ #: wppa-ajax.php:995
698
  msgid "Watermark applied"
699
  msgstr ""
700
 
701
+ #: wppa-ajax.php:999
702
  msgid "An error occured while trying to apply a watermark"
703
  msgstr ""
704
 
705
+ #: wppa-ajax.php:1012
706
  msgid "You do not have the rights to update photo information"
707
  msgstr ""
708
 
709
+ #: wppa-ajax.php:1018
710
  #, php-format
711
  msgid "%s updated to %s."
712
  msgstr ""
713
 
714
+ #: wppa-ajax.php:1068
715
  #, php-format
716
  msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
717
  msgstr ""
718
 
719
+ #: wppa-ajax.php:1072
720
  msgid "Exif date/time updated"
721
  msgstr ""
722
 
723
+ #: wppa-ajax.php:1078
724
  msgid "Enter a value > -90 and < 90"
725
  msgstr ""
726
 
727
+ #: wppa-ajax.php:1086
728
  msgid "Lattitude updated"
729
  msgstr ""
730
 
731
+ #: wppa-ajax.php:1088
732
  #, fuzzy
733
  msgid "Could not update lattitude"
734
  msgstr "Das Album konnte nicht erstellt werden."
735
 
736
+ #: wppa-ajax.php:1094
737
  msgid "Enter a value > -180 and < 180"
738
  msgstr ""
739
 
740
+ #: wppa-ajax.php:1102
741
  msgid "Longitude updated"
742
  msgstr ""
743
 
744
+ #: wppa-ajax.php:1104
745
  #, fuzzy
746
  msgid "Could not update longitude"
747
  msgstr "Das Album konnte nicht erstellt werden."
748
 
749
+ #: wppa-ajax.php:1112
750
  #, fuzzy
751
  msgid "Photo files remade"
752
  msgstr "Foto des Tages"
753
 
754
+ #: wppa-ajax.php:1115
755
  #, fuzzy
756
  msgid "Could not remake files"
757
  msgstr "Das Album konnte nicht erstellt werden."
758
 
759
+ #: wppa-ajax.php:1121
760
  #, fuzzy
761
  msgid "Thumbnail remade"
762
  msgstr "Anzeigen..."
763
 
764
+ #: wppa-ajax.php:1124
765
  #, fuzzy
766
  msgid "Could not remake thumbnail"
767
  msgstr "Das Album konnte nicht erstellt werden."
768
 
769
+ #: wppa-ajax.php:1134 wppa-photo-admin-autosave.php:184
770
+ #: wppa-settings-autosave.php:3367 wppa-tinymce-scripts.php:289
771
+ #: wppa-tinymce-shortcodes.php:519 wppa-widget-admin.php:77
772
  msgid "left"
773
  msgstr ""
774
 
775
+ #: wppa-ajax.php:1138 wppa-photo-admin-autosave.php:186
776
  msgid "180&deg;"
777
  msgstr ""
778
 
779
+ #: wppa-ajax.php:1142 wppa-photo-admin-autosave.php:188
780
+ #: wppa-settings-autosave.php:3367 wppa-tinymce-scripts.php:291
781
+ #: wppa-tinymce-shortcodes.php:521 wppa-widget-admin.php:79
782
  msgid "right"
783
  msgstr ""
784
 
785
+ #: wppa-ajax.php:1150
786
  #, fuzzy, php-format
787
  msgid "Photo %s rotated %s"
788
  msgstr "Foto %s gedreht %s"
789
 
790
+ #: wppa-ajax.php:1153
791
  #, php-format
792
  msgid "An error occurred while trying to rotate photo %s"
793
  msgstr ""
794
 
795
+ #: wppa-ajax.php:1163 wppa-ajax.php:1186 wppa-photo-admin-autosave.php:1066
796
+ #: wppa-photo-admin-autosave.php:1084
797
  #, fuzzy, php-format
798
  msgid "A photo with filename %s already exists in album %s."
799
  msgstr "Fotos %s hochgeladen zu Album Nr. %s"
800
 
801
+ #: wppa-ajax.php:1173
802
  #, fuzzy, php-format
803
  msgid "Photo %s has been moved to album %s (%s)"
804
  msgstr "Foto wurde entfernt."
805
 
806
+ #: wppa-ajax.php:1176
807
  #, php-format
808
  msgid "An error occurred while trying to move photo %s"
809
  msgstr ""
810
 
811
+ #: wppa-ajax.php:1194
812
  #, php-format
813
  msgid "Photo %s copied to album %s (%s)"
814
  msgstr ""
815
 
816
+ #: wppa-ajax.php:1197
817
  #, php-format
818
  msgid "An error occurred while trying to copy photo %s"
819
  msgstr ""
820
 
821
+ #: wppa-ajax.php:1227 wppa-ajax.php:1776
822
  #, fuzzy
823
  msgid "Unbalanced tags in photo description!"
824
  msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
825
 
826
+ #: wppa-ajax.php:1233
827
  #, fuzzy
828
  msgid "Photo order #"
829
  msgstr "Foto des Tages"
830
 
831
+ #: wppa-ajax.php:1238
832
  #, php-format
833
  msgid "User %s does not exists"
834
  msgstr ""
835
 
836
+ #: wppa-ajax.php:1247
837
  #, fuzzy
838
  msgid "Link url"
839
  msgstr "Verweis zu"
840
 
841
+ #: wppa-ajax.php:1250
842
  #, fuzzy
843
  msgid "Link title"
844
  msgstr "Verweis zu"
845
 
846
+ #: wppa-ajax.php:1253
847
  #, fuzzy
848
  msgid "Link target"
849
  msgstr "Verweis zu"
850
 
851
+ #: wppa-ajax.php:1259 wppa-multitag-widget.php:35 wppa-multitag-widget.php:67
852
+ #: wppa-tagcloud-widget.php:35 wppa-tagcloud-widget.php:64
853
  #, fuzzy
854
  msgid "Photo Tags"
855
  msgstr "Foto"
856
 
857
+ #: wppa-ajax.php:1264 wppa-comment-admin.php:310 wppa-comment-admin.php:397
858
+ #: wppa-photo-admin-autosave.php:1331 wppa-photo-admin-autosave.php:1450
859
+ #: wppa-settings-autosave.php:5993 wppa-settings-autosave.php:6573
860
+ #: wppa-settings-autosave.php:8185 wppa-settings-autosave.php:8225
861
+ #: wppa-settings-autosave.php:8247 wppa-settings-autosave.php:8293
862
  msgid "Status"
863
  msgstr ""
864
 
865
+ #: wppa-ajax.php:1267
866
  msgid "HTML Alt"
867
  msgstr ""
868
 
869
+ #: wppa-ajax.php:1271
870
  msgid "Video width"
871
  msgstr ""
872
 
873
+ #: wppa-ajax.php:1273 wppa-ajax.php:1280
874
  #, fuzzy
875
  msgid "Please enter an integer value >= 0"
876
  msgstr "Bitte hinterlasse einen Kommentar"
877
 
878
+ #: wppa-ajax.php:1278
879
  msgid "Video height"
880
  msgstr ""
881
 
882
+ #: wppa-ajax.php:1296 wppa-ajax.php:1330
883
  #, php-format
884
  msgid "<b>%s</b> of video %s updated"
885
  msgstr ""
886
 
887
+ #: wppa-ajax.php:1299 wppa-ajax.php:1333
888
  #, php-format
889
  msgid "<b>%s</b> of photo %s updated"
890
  msgstr ""
891
 
892
+ #: wppa-ajax.php:1303
893
  #, php-format
894
  msgid "An error occurred while trying to update <b>%s</b> of photo %s"
895
  msgstr ""
896
 
897
+ #: wppa-ajax.php:1359
898
  #, php-format
899
  msgid "<b>Custom field %s</b> of photo %s updated"
900
  msgstr ""
901
 
902
+ #: wppa-ajax.php:1366
903
  #, fuzzy
904
  msgid "<b>Error during upload.</b>"
905
  msgstr "Fehler beim Hochladen"
906
 
907
+ #: wppa-ajax.php:1391
908
  #, fuzzy
909
  msgid "Photo files updated."
910
  msgstr "Foto des Tages"
911
 
912
+ #: wppa-ajax.php:1396
913
  #, fuzzy
914
  msgid "Could not update files."
915
  msgstr "Das Album konnte nicht erstellt werden."
916
 
917
+ #: wppa-ajax.php:1407
918
+ #, php-format
919
+ msgid "Stereo mode updated in %d milliseconds"
920
+ msgstr ""
921
+
922
+ #: wppa-ajax.php:1423
923
  msgid "You do not have the rights to update settings"
924
  msgstr ""
925
 
926
+ #: wppa-ajax.php:1504
927
  msgid "Capability granted"
928
  msgstr ""
929
 
930
+ #: wppa-ajax.php:1509
931
  msgid "Capability withdrawn"
932
  msgstr ""
933
 
934
+ #: wppa-ajax.php:1520
935
  msgid "Column width."
936
  msgstr ""
937
 
938
+ #: wppa-ajax.php:1523
939
  msgid "Initial width."
940
  msgstr ""
941
 
942
+ #: wppa-ajax.php:1526
943
  msgid "Full size."
944
  msgstr ""
945
 
946
+ #: wppa-ajax.php:1529
947
  msgid "Max height."
948
  msgstr ""
949
 
950
+ #: wppa-ajax.php:1532
951
  #, fuzzy
952
  msgid "Thumbnail size."
953
  msgstr "Anzeigen..."
954
 
955
+ #: wppa-ajax.php:1535
956
  #, fuzzy
957
  msgid "Thumbnail frame width"
958
  msgstr "Anzeigen..."
959
 
960
+ #: wppa-ajax.php:1538
961
  #, fuzzy
962
  msgid "Thumbnail frame height"
963
  msgstr "Miniaturbild Fotos"
964
 
965
+ #: wppa-ajax.php:1541
966
  #, fuzzy
967
  msgid "Thumbnail Spacing"
968
  msgstr "Anzeigen..."
969
 
970
+ #: wppa-ajax.php:1544
971
  #, fuzzy
972
  msgid "Photocount treshold."
973
  msgstr "Foto wurde nicht gefunden."
974
 
975
+ #: wppa-ajax.php:1547
976
  #, fuzzy
977
  msgid "Thumb page size."
978
  msgstr "Anzeigen..."
979
 
980
+ #: wppa-ajax.php:1550
981
  #, fuzzy
982
  msgid "Cover photo size."
983
  msgstr "Bitte gibt den Fotonamen an."
984
 
985
+ #: wppa-ajax.php:1553
986
  msgid "Album page size."
987
  msgstr ""
988
 
989
+ #: wppa-ajax.php:1556
990
  #, fuzzy
991
  msgid "Number of TopTen photos"
992
  msgstr "Besten 10 Fotos"
993
 
994
+ #: wppa-ajax.php:1559
995
  #, fuzzy
996
  msgid "Widget image thumbnail size"
997
  msgstr "Anzeigen..."
998
 
999
+ #: wppa-ajax.php:1562 wppa-settings-autosave.php:1014
1000
  msgid "Max Cover width"
1001
  msgstr ""
1002
 
1003
+ #: wppa-ajax.php:1565
1004
  #, fuzzy
1005
  msgid "Minimal description height"
1006
  msgstr "Eintragen / ändern der Beschreibung des Albums"
1007
 
1008
+ #: wppa-ajax.php:1568
1009
  msgid "Minimal cover height"
1010
  msgstr ""
1011
 
1012
+ #: wppa-ajax.php:1571
1013
  msgid "Minimal text frame height"
1014
  msgstr ""
1015
 
1016
+ #: wppa-ajax.php:1574
1017
  msgid "Border width"
1018
  msgstr ""
1019
 
1020
+ #: wppa-ajax.php:1577 wppa-settings-autosave.php:714
1021
  msgid "Border radius"
1022
  msgstr ""
1023
 
1024
+ #: wppa-ajax.php:1580 wppa-settings-autosave.php:725
1025
  msgid "Box spacing"
1026
  msgstr ""
1027
 
1028
+ #: wppa-ajax.php:1586 wppa-settings-autosave.php:989
1029
  msgid "Popup size"
1030
  msgstr ""
1031
 
1032
+ #: wppa-ajax.php:1589
1033
  msgid "Fullsize border width"
1034
  msgstr ""
1035
 
1036
+ #: wppa-ajax.php:1592
1037
  msgid "Lightbox Bordersize"
1038
  msgstr ""
1039
 
1040
+ #: wppa-ajax.php:1595
1041
  msgid "Number of Comment widget entries"
1042
  msgstr ""
1043
 
1044
+ #: wppa-ajax.php:1598
1045
  msgid "Comment Widget image thumbnail size"
1046
  msgstr ""
1047
 
1048
+ #: wppa-ajax.php:1601 wppa-ajax.php:1604 wppa-ajax.php:1607
1049
  msgid "Opacity."
1050
  msgstr ""
1051
 
1052
+ #: wppa-ajax.php:1616 wppa-settings-autosave.php:1120
 
 
 
 
 
 
 
 
 
 
1053
  msgid "Avatar size"
1054
  msgstr ""
1055
 
1056
+ #: wppa-ajax.php:1619 wppa-ajax.php:1622
1057
  msgid "Watermark opacity"
1058
  msgstr ""
1059
 
1060
+ #: wppa-ajax.php:1625 wppa-settings-autosave.php:1289
1061
  msgid "Number of text lines"
1062
  msgstr ""
1063
 
1064
+ #: wppa-ajax.php:1628 wppa-settings-autosave.php:4138
1065
  msgid "Overlay opacity"
1066
  msgstr ""
1067
 
1068
+ #: wppa-ajax.php:1631 wppa-settings-autosave.php:7027
1069
  #, fuzzy
1070
  msgid "Upload limit"
1071
  msgstr "Upload Foto"
1072
 
1073
+ #: wppa-ajax.php:1634 wppa-settings-autosave.php:3846
1074
  msgid "Notify inappropriate"
1075
  msgstr ""
1076
 
1077
+ #: wppa-ajax.php:1637
1078
  msgid "Dislike pending"
1079
  msgstr ""
1080
 
1081
+ #: wppa-ajax.php:1640
1082
  #, fuzzy
1083
  msgid "Dislike delete"
1084
  msgstr "Löschen"
1085
 
1086
+ #: wppa-ajax.php:1643 wppa-settings-autosave.php:6669
1087
  msgid "Max execution time"
1088
  msgstr ""
1089
 
1090
+ #: wppa-ajax.php:1648
1091
  msgid "Cube Points points"
1092
  msgstr ""
1093
 
1094
+ #: wppa-ajax.php:1651
1095
  msgid "JPG Image quality"
1096
  msgstr ""
1097
 
1098
+ #: wppa-ajax.php:1657 wppa-settings-autosave.php:3760
1099
  #, fuzzy
1100
  msgid "Number of coverphotos"
1101
  msgstr "Titelfotos ansehen"
1102
 
1103
+ #: wppa-ajax.php:1660 wppa-settings-autosave.php:3817
1104
  msgid "Dislike value"
1105
  msgstr ""
1106
 
1107
+ #: wppa-ajax.php:1663 wppa-settings-autosave.php:845
1108
  #, fuzzy
1109
  msgid "Slideshow pagesize"
1110
  msgstr "Diaschau"
1111
 
1112
+ #: wppa-ajax.php:1666 wppa-settings-autosave.php:743
1113
  msgid "Max Pagelinks"
1114
  msgstr ""
1115
 
1116
+ #: wppa-ajax.php:1673
1117
  msgid "Ratings cleared"
1118
  msgstr ""
1119
 
1120
+ #: wppa-ajax.php:1676
1121
  #, fuzzy
1122
  msgid "Could not clear ratings"
1123
  msgstr "Das Album konnte nicht erstellt werden."
1124
 
1125
+ #: wppa-ajax.php:1685
1126
  msgid "Viewcounts cleared"
1127
  msgstr ""
1128
 
1129
+ #: wppa-ajax.php:1688
1130
  #, fuzzy
1131
  msgid "Could not clear viewcounts"
1132
  msgstr "Das Album konnte nicht erstellt werden."
1133
 
1134
+ #: wppa-ajax.php:1698
1135
  #, fuzzy
1136
  msgid "IPTC data cleared"
1137
  msgstr "IPTC Daten"
1138
 
1139
+ #: wppa-ajax.php:1699
1140
  msgid "Refresh this page to clear table X"
1141
  msgstr ""
1142
 
1143
+ #: wppa-ajax.php:1703
1144
  #, fuzzy
1145
  msgid "Could not clear IPTC data"
1146
  msgstr "Das Album konnte nicht erstellt werden."
1147
 
1148
+ #: wppa-ajax.php:1713
1149
  #, fuzzy
1150
  msgid "EXIF data cleared"
1151
  msgstr "EXIF Daten"
1152
 
1153
+ #: wppa-ajax.php:1714
1154
  msgid "Refresh this page to clear table XI"
1155
  msgstr ""
1156
 
1157
+ #: wppa-ajax.php:1718
1158
  #, fuzzy
1159
  msgid "Could not clear EXIF data"
1160
  msgstr "Das Album konnte nicht erstellt werden."
1161
 
1162
+ #: wppa-ajax.php:1726
1163
  msgid "Recuperation performed"
1164
  msgstr ""
1165
 
1166
+ #: wppa-ajax.php:1741
1167
  msgid ""
1168
  "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1169
  "#77bbff"
1170
  msgstr ""
1171
 
1172
+ #: wppa-ajax.php:1767
1173
  msgid "You just changed a setting that requires the recalculation of ratings."
1174
  msgstr ""
1175
 
1176
+ #: wppa-ajax.php:1768 wppa-ajax.php:2135
1177
  msgid "Please run the appropriate action in Table VIII."
1178
  msgstr ""
1179
 
1180
+ #: wppa-ajax.php:1792 wppa-ajax.php:1808
1181
  #, php-format
1182
  msgid "Unable to create or write to %s"
1183
  msgstr ""
1184
 
1185
+ #: wppa-ajax.php:1801
1186
  msgid "Source can not be inside the wppa folder."
1187
  msgstr ""
1188
 
1189
+ #: wppa-ajax.php:1818
1190
  msgid "The content must contain w#album"
1191
  msgstr ""
1192
 
1193
+ #: wppa-ajax.php:1825
1194
  msgid "The content must contain w#lat and w#lon"
1195
  msgstr ""
1196
 
1197
+ #: wppa-ajax.php:1867 wppa-ajax.php:1873
1198
  msgid "Members"
1199
  msgstr ""
1200
 
1201
+ #: wppa-ajax.php:1867
1202
  msgid "Parent of the member albums"
1203
  msgstr ""
1204
 
1205
+ #: wppa-ajax.php:2011
1206
  #, php-format
1207
  msgid "User %s has been blacklisted."
1208
  msgstr ""
1209
 
1210
+ #: wppa-ajax.php:2014
1211
  #, php-format
1212
  msgid "User %s does not exist."
1213
  msgstr ""
1214
 
1215
+ #: wppa-ajax.php:2037
1216
  msgid ""
1217
  "The content of the Custom box has been changed to display the Fotomoto "
1218
  "toolbar."
1219
  msgstr ""
1220
 
1221
+ #: wppa-ajax.php:2041 wppa-ajax.php:2056
1222
  msgid "The display of the custom box has been enabled"
1223
  msgstr ""
1224
 
1225
+ #: wppa-ajax.php:2052
1226
  msgid "The content of the Custom box has been changed to display maps."
1227
  msgstr ""
1228
 
1229
+ #: wppa-ajax.php:2082
1230
  msgid "This value can not be empty"
1231
  msgstr ""
1232
 
1233
+ #: wppa-ajax.php:2114
1234
  #, php-format
1235
  msgid "Failed to set %s to %s"
1236
  msgstr ""
1237
 
1238
+ #: wppa-ajax.php:2119
1239
  #, php-format
1240
  msgid "Setting %s updated to %s"
1241
  msgstr ""
1242
 
1243
+ #: wppa-ajax.php:2134
1244
  msgid ""
1245
  "You just changed a setting that requires the regeneration of thumbnails."
1246
  msgstr ""
1247
 
1248
+ #: wppa-ajax.php:2189
1249
  msgid "Missing album id"
1250
  msgstr ""
1251
 
1252
+ #: wppa-ajax.php:2209
1253
  msgid "You do not have the rights to delete this album"
1254
  msgstr ""
1255
 
1256
+ #: wppa-ajax.php:2250 wppa-ajax.php:2257
1257
  #, fuzzy
1258
  msgid "You may also enter:"
1259
  msgstr "bevor Du Deine Fotos hochladen kannst."
1260
 
1261
+ #: wppa-ajax.php:2251 wppa-ajax.php:2258
1262
  #, fuzzy
1263
  msgid "You may also leave/set this blank"
1264
  msgstr "Hinterlasse einen Kommentar"
1308
  msgid "Top of page"
1309
  msgstr ""
1310
 
1311
+ #: wppa-album-admin-autosave.php:114 wppa-functions.php:3857
1312
+ #: wppa-settings-autosave.php:6917 wppa-wpdb-insert.php:329
1313
  #, fuzzy
1314
  msgid "New Album"
1315
  msgstr "Das Album konnte nicht erstellt werden."
1334
  msgid "Edit Album Information"
1335
  msgstr "Bearbeiten"
1336
 
1337
+ #: wppa-album-admin-autosave.php:172 wppa-settings-autosave.php:293
1338
  #, fuzzy
1339
  msgid "Auto Save"
1340
  msgstr "Automatisch Gespeichert"
1375
  msgid "Type the name of the album. Do not leave this empty."
1376
  msgstr ""
1377
 
1378
+ #: wppa-album-admin-autosave.php:211 wppa-photo-admin-autosave.php:719
1379
+ #: wppa-photo-admin-autosave.php:744
1380
  #, fuzzy
1381
  msgid "Description:"
1382
  msgstr "Unsymmetrische Tags in der Album Beschreibung!"
1391
  msgid "Enter / modify the description for this album."
1392
  msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
1393
 
1394
+ #: wppa-album-admin-autosave.php:240 wppa-photo-admin-autosave.php:275
1395
  msgid "Modified:"
1396
  msgstr ""
1397
 
1398
+ #: wppa-album-admin-autosave.php:249 wppa-thumbnails.php:645
1399
+ #: wppa-thumbnails.php:1420
1400
  #, fuzzy
1401
  msgid "Views:"
1402
  msgstr "Ansehen"
1403
 
1404
+ #: wppa-album-admin-autosave.php:262 wppa-photo-admin-autosave.php:261
1405
  msgid "Owned by:"
1406
  msgstr ""
1407
 
1431
  "here."
1432
  msgstr ""
1433
 
1434
+ #: wppa-album-admin-autosave.php:309 wppa-tinymce-shortcodes.php:299
1435
+ #: wppa-tinymce-shortcodes.php:325 wppa-tinymce-shortcodes.php:464
1436
  #, fuzzy
1437
  msgid "Parent album:"
1438
  msgstr "Das Album konnte nicht erstellt werden."
1448
  msgstr "Foto des Tages"
1449
 
1450
  #: wppa-album-admin-autosave.php:333 wppa-album-admin-autosave.php:434
1451
+ #: wppa-settings-autosave.php:3594 wppa-settings-autosave.php:3618
1452
  #, fuzzy
1453
  msgid "--- default ---"
1454
  msgstr "--- gelöscht ---"
1455
 
1456
  #: wppa-album-admin-autosave.php:334 wppa-album-admin-autosave.php:390
1457
+ #: wppa-settings-autosave.php:3556 wppa-settings-autosave.php:3670
1458
  #: wppa-thumbnail-widget.php:203
1459
  msgid "Order #"
1460
  msgstr ""
1461
 
1462
  #: wppa-album-admin-autosave.php:336 wppa-album-admin-autosave.php:389
1463
+ #: wppa-settings-autosave.php:3558 wppa-settings-autosave.php:3672
1464
  #: wppa-thumbnail-widget.php:205 wppa-widget-admin.php:142
1465
  msgid "Random"
1466
  msgstr ""
1467
 
1468
+ #: wppa-album-admin-autosave.php:337 wppa-settings-autosave.php:3559
1469
  msgid "Rating mean value"
1470
  msgstr ""
1471
 
1472
+ #: wppa-album-admin-autosave.php:338 wppa-bestof-widget.php:171
1473
+ #: wppa-settings-autosave.php:3560 wppa-topten-widget.php:239
1474
  msgid "Number of votes"
1475
  msgstr ""
1476
 
1477
  #: wppa-album-admin-autosave.php:339 wppa-album-admin-autosave.php:394
1478
+ #: wppa-settings-autosave.php:3561 wppa-settings-autosave.php:3673
1479
  msgid "Timestamp"
1480
  msgstr ""
1481
 
1482
+ #: wppa-album-admin-autosave.php:340 wppa-photo-admin-autosave.php:286
1483
+ #: wppa-settings-autosave.php:3562
1484
  #, fuzzy
1485
  msgid "EXIF Date"
1486
  msgstr "EXIF Daten"
1487
 
1488
+ #: wppa-album-admin-autosave.php:341 wppa-settings-autosave.php:3563
1489
+ #: wppa-settings-autosave.php:3674
1490
  msgid "Order # desc"
1491
  msgstr ""
1492
 
1493
+ #: wppa-album-admin-autosave.php:342 wppa-settings-autosave.php:3564
1494
+ #: wppa-settings-autosave.php:3675
1495
  msgid "Name desc"
1496
  msgstr ""
1497
 
1498
+ #: wppa-album-admin-autosave.php:343 wppa-settings-autosave.php:3565
1499
  #: wppa-thumbnail-widget.php:206
1500
  msgid "Rating mean value desc"
1501
  msgstr ""
1502
 
1503
+ #: wppa-album-admin-autosave.php:344 wppa-settings-autosave.php:3566
1504
  #: wppa-thumbnail-widget.php:207
1505
  msgid "Number of votes desc"
1506
  msgstr ""
1507
 
1508
+ #: wppa-album-admin-autosave.php:345 wppa-settings-autosave.php:3567
1509
+ #: wppa-settings-autosave.php:3676 wppa-thumbnail-widget.php:208
1510
  msgid "Timestamp desc"
1511
  msgstr ""
1512
 
1513
+ #: wppa-album-admin-autosave.php:346 wppa-settings-autosave.php:3568
1514
  msgid "EXIF Date desc"
1515
  msgstr ""
1516
 
1554
  msgid "Use alt thumbsize:"
1555
  msgstr ""
1556
 
1557
+ #: wppa-album-admin-autosave.php:413 wppa-bestof-widget.php:183
1558
+ #: wppa-bestof-widget.php:188 wppa-bestof-widget.php:193
1559
+ #: wppa-topten-widget.php:247 wppa-topten-widget.php:255
1560
+ #: wppa-topten-widget.php:260 wppa-topten-widget.php:265
1561
+ #: wppa-topten-widget.php:270 wppa-topten-widget.php:275
1562
  #, fuzzy
1563
  msgid "no"
1564
  msgstr "--- kein ---"
1565
 
1566
+ #: wppa-album-admin-autosave.php:414 wppa-bestof-widget.php:182
1567
+ #: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
1568
+ #: wppa-super-view-widget.php:87 wppa-topten-widget.php:246
1569
+ #: wppa-topten-widget.php:254 wppa-topten-widget.php:259
1570
+ #: wppa-topten-widget.php:264 wppa-topten-widget.php:269
1571
+ #: wppa-topten-widget.php:274
1572
  #, fuzzy
1573
  msgid "yes"
1574
  msgstr "Jahre"
1583
  msgid "Cover Type:"
1584
  msgstr ""
1585
 
1586
+ #: wppa-album-admin-autosave.php:435 wppa-settings-autosave.php:1888
1587
+ #: wppa-settings-autosave.php:3740
1588
  msgid "Standard"
1589
  msgstr ""
1590
 
1591
+ #: wppa-album-admin-autosave.php:436 wppa-settings-autosave.php:3741
1592
  #, fuzzy
1593
  msgid "Long Descriptions"
1594
  msgstr "Unsymmetrische Tags in der Album Beschreibung!"
1595
 
1596
+ #: wppa-album-admin-autosave.php:437 wppa-settings-autosave.php:3742
1597
  msgid "Image Factory"
1598
  msgstr ""
1599
 
1600
+ #: wppa-album-admin-autosave.php:438 wppa-settings-autosave.php:3743
1601
  msgid "Standard mcr"
1602
  msgstr ""
1603
 
1604
+ #: wppa-album-admin-autosave.php:439 wppa-settings-autosave.php:3744
1605
  msgid "Long Descriptions mcr"
1606
  msgstr ""
1607
 
1608
+ #: wppa-album-admin-autosave.php:440 wppa-settings-autosave.php:3745
1609
  msgid "Image Factory mcr"
1610
  msgstr ""
1611
 
1635
  msgid "Upload limit:"
1636
  msgstr "Upload Foto"
1637
 
1638
+ #: wppa-album-admin-autosave.php:482 wppa-settings-autosave.php:5586
1639
+ #: wppa-settings-autosave.php:7034
1640
  msgid "for ever"
1641
  msgstr ""
1642
 
1643
  #: wppa-album-admin-autosave.php:483 wppa-album-admin-autosave.php:500
1644
+ #: wppa-settings-autosave.php:5587 wppa-settings-autosave.php:7035
1645
  #, fuzzy
1646
  msgid "per hour"
1647
  msgstr "1 Stunde"
1648
 
1649
  #: wppa-album-admin-autosave.php:484 wppa-album-admin-autosave.php:501
1650
+ #: wppa-settings-autosave.php:5588 wppa-settings-autosave.php:7036
1651
  #, fuzzy
1652
  msgid "per day"
1653
  msgstr "1 Tag"
1654
 
1655
  #: wppa-album-admin-autosave.php:485 wppa-album-admin-autosave.php:502
1656
+ #: wppa-settings-autosave.php:5589 wppa-settings-autosave.php:7037
1657
  #, fuzzy
1658
  msgid "per week"
1659
  msgstr "1 Woche"
1660
 
1661
  #: wppa-album-admin-autosave.php:486 wppa-album-admin-autosave.php:503
1662
+ #: wppa-settings-autosave.php:5590 wppa-settings-autosave.php:7038
1663
  #, fuzzy
1664
  msgid "per month"
1665
  msgstr "1 Monat"
1666
 
1667
  #: wppa-album-admin-autosave.php:487 wppa-album-admin-autosave.php:504
1668
+ #: wppa-settings-autosave.php:5591 wppa-settings-autosave.php:7039
1669
  #, fuzzy
1670
  msgid "per year"
1671
  msgstr "1 Jahr"
1687
  msgid "Separate categories with commas."
1688
  msgstr ""
1689
 
1690
+ #: wppa-album-admin-autosave.php:526 wppa-photo-admin-autosave.php:798
1691
  msgid "Examples:"
1692
  msgstr ""
1693
 
1694
+ #: wppa-album-admin-autosave.php:532 wppa-photo-admin-autosave.php:802
1695
  #, fuzzy
1696
  msgid "- select -"
1697
  msgstr "Bitte wähle Album"
1701
  msgid "No categories yet"
1702
  msgstr "Kategorien:"
1703
 
1704
+ #: wppa-album-admin-autosave.php:542 wppa-photo-admin-autosave.php:812
1705
  msgid "Select to add"
1706
  msgstr ""
1707
 
1752
  msgid "Link type:"
1753
  msgstr "Verweis zu"
1754
 
1755
+ #: wppa-album-admin-autosave.php:594 wppa-settings-autosave.php:7195
1756
  msgid "the sub-albums and thumbnails"
1757
  msgstr ""
1758
 
1759
+ #: wppa-album-admin-autosave.php:595 wppa-settings-autosave.php:7196
1760
  #, fuzzy
1761
  msgid "the sub-albums"
1762
  msgstr "Das Album ansehen"
1763
 
1764
+ #: wppa-album-admin-autosave.php:596 wppa-settings-autosave.php:7197
1765
  #, fuzzy
1766
  msgid "the thumbnails"
1767
  msgstr "Anzeigen..."
1768
 
1769
+ #: wppa-album-admin-autosave.php:597 wppa-settings-autosave.php:7198
1770
  msgid "the album photos as slideshow"
1771
  msgstr ""
1772
 
1774
  msgid "the link page with a clean url"
1775
  msgstr ""
1776
 
1777
+ #: wppa-album-admin-autosave.php:599 wppa-settings-autosave.php:7199
1778
  msgid "no link at all"
1779
  msgstr ""
1780
 
1790
  "correct shortcode on the target page."
1791
  msgstr ""
1792
 
1793
+ #: wppa-album-admin-autosave.php:614 wppa-bestof-widget.php:197
1794
  #: wppa-slideshow-widget.php:223 wppa-widget-admin.php:164
1795
  #: wppa-widget-admin.php:174
1796
  #, fuzzy
1797
  msgid "Link to:"
1798
  msgstr "Verweis zu"
1799
 
1800
+ #: wppa-album-admin-autosave.php:620 wppa-settings-autosave.php:8751
1801
+ #: wppa-settings-autosave.php:8800
1802
  msgid "There are no pages (yet) to link to."
1803
  msgstr ""
1804
 
1864
  msgid "Remake all"
1865
  msgstr ""
1866
 
1867
+ #: wppa-album-admin-autosave.php:720 wppa-photo-admin-autosave.php:912
1868
  msgid "Remark:"
1869
  msgstr ""
1870
 
1887
  msgid "Moderate photo"
1888
  msgstr "Moderiere Fotos"
1889
 
1890
+ #: wppa-album-admin-autosave.php:767 wppa-functions.php:2119
1891
  #: wppa-photo-admin-autosave.php:24
1892
  #, fuzzy
1893
  msgid "Edit photo"
1898
  msgid "Delete Album"
1899
  msgstr "Das Album konnte nicht erstellt werden."
1900
 
1901
+ #: wppa-album-admin-autosave.php:793 wppa-boxes-html.php:806
1902
+ #: wppa-breadcrumb.php:278 wppa-breadcrumb.php:296 wppa-breadcrumb.php:314
1903
+ #: wppa-breadcrumb.php:332 wppa-breadcrumb.php:387 wppa-breadcrumb.php:412
1904
+ #: wppa-breadcrumb.php:554 wppa-comment-admin.php:66 wppa-featen-widget.php:139
1905
  #: wppa-lasten-widget.php:172 wppa-slideshow-widget.php:201
1906
+ #: wppa-thumbnail-widget.php:191 wppa-topten-widget.php:220
1907
+ #: wppa-upload-widget.php:80 wppa-upload.php:116 wppa-upload.php:204
1908
  #: wppa-upload.php:251
1909
  #, fuzzy
1910
  msgid "Album:"
1928
  #: wppa-album-admin-autosave.php:1182 wppa-album-admin-autosave.php:1354
1929
  #: wppa-album-admin-autosave.php:1449 wppa-album-admin-autosave.php:1635
1930
  #: wppa-comment-admin.php:312 wppa-comment-admin.php:381
1931
+ #: wppa-comment-admin.php:399 wppa-functions.php:1931 wppa-links.php:724
1932
+ #: wppa-links.php:742 wppa-photo-admin-autosave.php:1278
1933
+ #: wppa-photo-admin-autosave.php:1346 wppa-thumbnails.php:590
1934
  #, fuzzy
1935
  msgid "Delete"
1936
  msgstr "Löschen"
1939
  msgid "Move to:"
1940
  msgstr ""
1941
 
1942
+ #: wppa-album-admin-autosave.php:809 wppa-settings-autosave.php:2666
1943
  msgid "Cancel"
1944
  msgstr "Kündigen"
1945
 
1972
 
1973
  #: wppa-album-admin-autosave.php:978 wppa-album-admin-autosave.php:1115
1974
  #: wppa-album-admin-autosave.php:1286 wppa-album-admin-autosave.php:1381
1975
+ #: wppa-photo-admin-autosave.php:1327 wppa-photo-admin-autosave.php:1446
1976
  msgid "ID"
1977
  msgstr ""
1978
 
2180
  msgid "album"
2181
  msgstr "Album"
2182
 
2183
+ #: wppa-album-covers.php:1207 wppa-settings-autosave.php:1233
2184
+ #: wppa-settings-autosave.php:5623
2185
  msgid "albums"
2186
  msgstr "Alben"
2187
 
2188
+ #: wppa-album-covers.php:1216 wppa-boxes-html.php:1133 wppa-breadcrumb.php:148
2189
+ #: wppa-breadcrumb.php:154 wppa-breadcrumb.php:161 wppa-breadcrumb.php:360
2190
+ #: wppa-breadcrumb.php:365 wppa-functions.php:4261 wppa-utils.php:1572
2191
  msgid "and"
2192
  msgstr "und"
2193
 
2196
  msgstr "Foto"
2197
 
2198
  #: wppa-album-covers.php:1224 wppa-album-covers.php:1228
2199
+ #: wppa-settings-autosave.php:699 wppa-settings-autosave.php:738
2200
+ #: wppa-settings-autosave.php:1153 wppa-settings-autosave.php:1193
2201
+ #: wppa-settings-autosave.php:1213 wppa-settings-autosave.php:1253
2202
+ #: wppa-settings-autosave.php:3764 wppa-settings-autosave.php:5607
2203
+ #: wppa-settings-autosave.php:7032
2204
  msgid "photos"
2205
  msgstr "Fotos"
2206
 
2209
  msgid "New!"
2210
  msgstr "Neues Album"
2211
 
2212
+ #: wppa-album-covers.php:1273 wppa-thumbnails.php:1876 wppa-thumbnails.php:1877
2213
  #, fuzzy
2214
  msgid "New"
2215
  msgstr "Neues Album"
2216
 
2217
+ #: wppa-album-covers.php:1295 wppa-boxes-html.php:830 wppa-non-admin.php:580
2218
+ #: wppa-settings-autosave.php:2138 wppa-settings-autosave.php:5084
2219
+ #: wppa-settings-autosave.php:7344
2220
  msgid "Slideshow"
2221
  msgstr "Diaschau"
2222
 
2228
  msgid "Categories:"
2229
  msgstr "Kategorien:"
2230
 
2231
+ #: wppa-album-covers.php:1333 wppa-breadcrumb.php:372 wppa-breadcrumb.php:377
2232
  msgid "Category:"
2233
  msgstr "Kategorie:"
2234
 
2241
  msgstr ""
2242
 
2243
  #: wppa-album-navigator-widget.php:92 wppa-album-widget.php:318
2244
+ #: wppa-bestof-widget.php:132 wppa-comment-widget.php:120
2245
+ #: wppa-featen-widget.php:136 wppa-gp-widget.php:89 wppa-lasten-widget.php:169
2246
+ #: wppa-multitag-widget.php:73 wppa-potd-widget.php:187 wppa-qr-widget.php:89
2247
+ #: wppa-search-widget.php:74 wppa-slideshow-widget.php:200
2248
+ #: wppa-stereo-widget.php:70 wppa-super-view-widget.php:75
2249
+ #: wppa-tagcloud-widget.php:69 wppa-thumbnail-widget.php:186
2250
+ #: wppa-topten-widget.php:217 wppa-upldr-widget.php:178
2251
+ #: wppa-upload-widget.php:78 wppa-widget-admin.php:177
2252
  msgid "Title:"
2253
  msgstr ""
2254
 
2324
  "Trage hier Schriftnamen, Größe, Farbe und Breite für die Album Cover Titel "
2325
  "ein."
2326
 
2327
+ #: wppa-album-widget.php:351 wppa-comment-widget.php:121
2328
+ #: wppa-featen-widget.php:147 wppa-lasten-widget.php:202
2329
+ #: wppa-thumbnail-widget.php:234 wppa-topten-widget.php:279
2330
  msgid ""
2331
  "You can set the sizes in this widget in the <b>Photo Albums -> Settings</b> "
2332
  "admin page."
2344
  msgstr "Fotos"
2345
 
2346
  #: wppa-bestof-widget.php:16 wppa-bestof-widget.php:50
2347
+ #: wppa-bestof-widget.php:110
2348
  #, fuzzy
2349
  msgid "Best Of Photos"
2350
  msgstr "Fotos"
2351
 
2352
+ #: wppa-bestof-widget.php:153
2353
  #, fuzzy
2354
  msgid "Photo(s)"
2355
  msgstr "Foto"
2356
 
2357
+ #: wppa-bestof-widget.php:154
2358
  msgid "Owner(s)"
2359
  msgstr ""
2360
 
2361
+ #: wppa-bestof-widget.php:159
2362
  #, fuzzy
2363
  msgid "Last week"
2364
  msgstr "1 Woche"
2365
 
2366
+ #: wppa-bestof-widget.php:160
2367
  #, fuzzy
2368
  msgid "This week"
2369
  msgstr "1 Woche"
2370
 
2371
+ #: wppa-bestof-widget.php:161
2372
  #, fuzzy
2373
  msgid "Last month"
2374
  msgstr "1 Monat"
2375
 
2376
+ #: wppa-bestof-widget.php:162
2377
  #, fuzzy
2378
  msgid "This month"
2379
  msgstr "1 Monat"
2380
 
2381
+ #: wppa-bestof-widget.php:163
2382
  #, fuzzy
2383
  msgid "Last year"
2384
  msgstr "1 Jahr"
2385
 
2386
+ #: wppa-bestof-widget.php:164
2387
  #, fuzzy
2388
  msgid "This year"
2389
  msgstr "1 Jahr"
2390
 
2391
+ #: wppa-bestof-widget.php:169
2392
  msgid "Number of max ratings"
2393
  msgstr ""
2394
 
2395
+ #: wppa-bestof-widget.php:170 wppa-topten-widget.php:238
2396
  #, fuzzy
2397
  msgid "Mean value"
2398
  msgstr "Mittelwert:"
2399
 
2400
+ #: wppa-bestof-widget.php:179 wppa-topten-widget.php:251
2401
  #: wppa-widget-admin.php:188
2402
  msgid "Subtitle:"
2403
  msgstr ""
2404
 
2405
+ #: wppa-bestof-widget.php:180
2406
  #, fuzzy
2407
  msgid "No of max ratings:"
2408
  msgstr "auto selekt max %s zufällig"
2409
 
2410
+ #: wppa-bestof-widget.php:185 wppa-topten-widget.php:262
2411
  #, fuzzy
2412
  msgid "Mean rating:"
2413
  msgstr "Der Raum zwischen avg und meine Bewertungssterne"
2414
 
2415
+ #: wppa-bestof-widget.php:190 wppa-topten-widget.php:267
2416
  #, fuzzy
2417
  msgid "Rating count:"
2418
  msgstr "Bewertung: %s"
2419
 
2420
+ #: wppa-bestof-widget.php:199 wppa-common-functions.php:1972 wppa-items.php:365
2421
+ #: wppa-settings-autosave.php:1302 wppa-settings-autosave.php:1623
2422
+ #: wppa-settings-autosave.php:3353 wppa-settings-autosave.php:3367
2423
+ #: wppa-settings-autosave.php:3555 wppa-settings-autosave.php:3669
2424
+ #: wppa-settings-autosave.php:5155 wppa-settings-autosave.php:6908
2425
+ #: wppa-settings-autosave.php:7050 wppa-settings-autosave.php:7106
2426
+ #: wppa-settings-autosave.php:7922 wppa-settings-autosave.php:8078
2427
  #: wppa-thumbnail-widget.php:202 wppa-tinymce-scripts.php:288
2428
+ #: wppa-tinymce-shortcodes.php:518 wppa-upload.php:1528 wppa-watermark.php:520
2429
  #: wppa-widget-admin.php:76 wppa-widget-admin.php:193
2430
  msgid "--- none ---"
2431
  msgstr "--- keine ---"
2432
 
2433
+ #: wppa-bestof-widget.php:200
2434
  #, fuzzy
2435
  msgid "The authors album(s)"
2436
  msgstr "--- multiple siehe unten---"
2437
 
2438
+ #: wppa-bestof-widget.php:201
2439
  #, fuzzy
2440
  msgid "The photos in the authors album(s)"
2441
  msgstr "--- multiple siehe unten---"
2442
 
2443
+ #: wppa-bestof-widget.php:202
2444
  #, fuzzy
2445
  msgid "All the authors photos"
2446
  msgstr "Klicken um das Foto im Vollbild und alle Kommentare zu sehen"
2447
 
2448
+ #: wppa-boxes-html.php:130 wppa-boxes-html.php:229
2449
  #, fuzzy
2450
  msgid "Photo search results"
2451
  msgstr "Suchergebnisse für: %s"
2452
 
2453
+ #: wppa-boxes-html.php:363 wppa-breadcrumb.php:136
2454
+ #: wppa-settings-autosave.php:385
 
 
 
 
 
 
 
 
 
 
2455
  #, fuzzy
2456
  msgid "Albums"
2457
  msgstr "Alben:"
2458
 
2459
+ #: wppa-boxes-html.php:369 wppa-breadcrumb.php:151
2460
  #, fuzzy
2461
  msgid "Photos"
2462
  msgstr "Foto"
2463
 
2464
+ #: wppa-boxes-html.php:388
2465
  #, fuzzy
2466
  msgid "Category"
2467
  msgstr "Kategorie:"
2468
 
2469
+ #: wppa-boxes-html.php:401 wppa-boxes-html.php:534
2470
  msgid "Text"
2471
  msgstr ""
2472
 
2473
+ #: wppa-boxes-html.php:417 wppa-boxes-html.php:471 wppa-boxes-html.php:617
2474
+ #: wppa-boxes-html.php:647
2475
  msgid "CTRL+Click to add/remove option."
2476
  msgstr ""
2477
 
2478
+ #: wppa-boxes-html.php:418 wppa-boxes-html.php:472 wppa-boxes-html.php:618
2479
+ #: wppa-boxes-html.php:648
2480
  msgid "Items must meet all selected options."
2481
  msgstr ""
2482
 
2483
+ #: wppa-boxes-html.php:526 wppa-settings-autosave.php:8182
2484
+ #: wppa-settings-autosave.php:8222 wppa-settings-autosave.php:8244
2485
+ #: wppa-settings-autosave.php:8290
2486
  msgid "Tag"
2487
  msgstr ""
2488
 
2489
+ #: wppa-boxes-html.php:542
2490
  msgid "Iptc"
2491
  msgstr ""
2492
 
2493
+ #: wppa-boxes-html.php:551
2494
  msgid "Exif"
2495
  msgstr ""
2496
 
2497
+ #: wppa-boxes-html.php:749 wppa-boxes-html.php:834
2498
  msgid "Submit"
2499
  msgstr ""
2500
 
2501
+ #: wppa-boxes-html.php:791 wppa-super-view-widget.php:14
2502
  #: wppa-super-view-widget.php:66
2503
  #, fuzzy
2504
  msgid "Super View Photos"
2505
  msgstr "Super View Fotos"
2506
 
2507
+ #: wppa-boxes-html.php:822 wppa-settings-autosave.php:401
2508
+ #: wppa-settings-autosave.php:4346
2509
  #, fuzzy
2510
  msgid "Thumbnails"
2511
  msgstr "Miniaturbild Fotos"
2512
 
2513
+ #: wppa-boxes-html.php:868
2514
  #, fuzzy
2515
  msgid "Tagged photos"
2516
  msgstr "Fotos"
2517
 
2518
+ #: wppa-boxes-html.php:882
2519
  #, fuzzy
2520
  msgid "Please select a tagcloud landing page in Table VI-C3b"
2521
  msgstr "Wähle die Zielseite für das Super View-Widget."
2522
 
2523
+ #: wppa-boxes-html.php:940
2524
  #, fuzzy
2525
  msgid "Multi Tagged photos"
2526
  msgstr "Multi Bewertung"
2527
 
2528
+ #: wppa-boxes-html.php:954
2529
  #, fuzzy
2530
  msgid "Please select a multitag landing page in Table VI-C4b"
2531
  msgstr "Wähle die Zielseite für das Super View-Widget."
2532
 
2533
+ #: wppa-boxes-html.php:992
2534
  #, fuzzy
2535
  msgid "Please check the tag(s) that the photos must have"
2536
  msgstr "--- bitte wähle Tag(s) aus ---"
2537
 
2538
+ #: wppa-boxes-html.php:1021
2539
  #, fuzzy
2540
  msgid "And"
2541
  msgstr "und"
2542
 
2543
+ #: wppa-boxes-html.php:1032
2544
  msgid "Or"
2545
  msgstr "Oder"
2546
 
2547
+ #: wppa-boxes-html.php:1082
2548
  #, fuzzy
2549
  msgid "Find!"
2550
  msgstr "Finde Remote Fotos"
2551
 
2552
+ #: wppa-boxes-html.php:1109
2553
  msgid "Social media landing page"
2554
  msgstr ""
2555
 
2556
+ #: wppa-boxes-html.php:1134 wppa-utils.php:1572
2557
  #, php-format
2558
  msgid "See this image on %s"
2559
  msgstr "Schau Dir das Bild an auf %s"
2560
 
2561
+ #: wppa-boxes-html.php:1159 wppa-qr-widget.php:40
2562
  msgid "QR code"
2563
  msgstr "QR Code"
2564
 
2565
+ #: wppa-boxes-html.php:1204
2566
  #, fuzzy, php-format
2567
  msgid "Tweet %s on Twitter"
2568
  msgstr "Zeigt Twitter Button"
2569
 
2570
+ #: wppa-boxes-html.php:1211
2571
  #, fuzzy
2572
  msgid "Share on Twitter"
2573
  msgstr "Zeigt den Twitter-Button in der Share - Box an."
2574
 
2575
+ #: wppa-boxes-html.php:1224
2576
  #, fuzzy, php-format
2577
  msgid "Share %s on Google+"
2578
  msgstr "Zeigt den Google-Button in der Share - Box an."
2579
 
2580
+ #: wppa-boxes-html.php:1232
2581
  #, fuzzy
2582
  msgid "Share on Google+"
2583
  msgstr "Zeigt den Google-Button in der Share - Box an."
2584
 
2585
+ #: wppa-boxes-html.php:1247
2586
  #, fuzzy, php-format
2587
  msgid "Share %s on Pinterest"
2588
  msgstr "Share, Teilen"
2589
 
2590
+ #: wppa-boxes-html.php:1256
2591
  #, fuzzy
2592
  msgid "Share on Pinterest"
2593
  msgstr "Share, Teilen"
2594
 
2595
+ #: wppa-boxes-html.php:1391
2596
  #, fuzzy
2597
  msgid "Comment on Facebook:"
2598
  msgstr "Zeigen die Facebook Kommentar-Feld"
2599
 
2600
+ #: wppa-boxes-html.php:1492 wppa-upload.php:1135
2601
  msgid "Working..."
2602
  msgstr ""
2603
 
2604
+ #: wppa-boxes-html.php:1494 wppa-boxes-html.php:1497
2605
  #, fuzzy
2606
  msgid "Delete album"
2607
  msgstr "Das Album konnte nicht erstellt werden."
2608
 
2609
+ #: wppa-boxes-html.php:1584
2610
  #, fuzzy
2611
  msgid "Create Album"
2612
  msgstr "Das Album konnte nicht erstellt werden."
2613
 
2614
+ #: wppa-boxes-html.php:1629 wppa-boxes-html.php:2372
2615
  #, fuzzy
2616
  msgid "Enter album name."
2617
  msgstr ""
2618
  "Trage hier Schriftnamen, Größe, Farbe und Breite für die Album Cover Titel "
2619
  "ein."
2620
 
2621
+ #: wppa-boxes-html.php:1631 wppa-boxes-html.php:2374
2622
  msgid "Don't leave this blank!"
2623
  msgstr "Hinterlasse einen Kommentar"
2624
 
2625
+ #: wppa-boxes-html.php:1650
2626
  #, fuzzy
2627
  msgid "Enter album description"
2628
  msgstr "Eintragen / ändern der Beschreibung des Albums"
2629
 
2630
+ #: wppa-boxes-html.php:1672
2631
  #, fuzzy
2632
  msgid "Create album"
2633
  msgstr "Das Album konnte nicht erstellt werden."
2634
 
2635
+ #: wppa-boxes-html.php:1728 wppa-boxes-html.php:1741 wppa-functions.php:3978
2636
  #, fuzzy
2637
  msgid "Max uploads reached"
2638
  msgstr ""
2639
  "Zeige wenn die Upload - Grenze erreicht ist.gegebenenfalls als Nachricht ."
2640
 
2641
+ #: wppa-boxes-html.php:1803 wppa-upload.php:134
2642
  msgid "Upload Photo"
2643
  msgstr "Upload Foto"
2644
 
2645
+ #: wppa-boxes-html.php:1950
2646
  #, fuzzy, php-format
2647
  msgid ""
2648
  "You may upload up to %s photos at once if your browser supports HTML-5 "
2651
  "Du benötigst einen modernen Browser, der HTML-5 unterstützt, um mehrere "
2652
  "Dateien auszuwählen"
2653
 
2654
+ #: wppa-boxes-html.php:1958
2655
  #, fuzzy, php-format
2656
  msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
2657
  msgstr "(max %d)"
2658
 
2659
+ #: wppa-boxes-html.php:1987 wppa-upload.php:123 wppa-upload.php:211
2660
  #: wppa-upload.php:258 wppa-upload.php:704
2661
  #, fuzzy
2662
  msgid "Apply watermark file:"
2663
  msgstr "Wende eine Wasserzeichen-Datei an:"
2664
 
2665
+ #: wppa-boxes-html.php:2009 wppa-upload.php:128 wppa-upload.php:216
2666
  #: wppa-upload.php:263 wppa-upload.php:708
2667
  #, fuzzy
2668
  msgid "Position:"
2669
  msgstr "Position/Ort:"
2670
 
2671
+ #: wppa-boxes-html.php:2037
2672
  #, fuzzy
2673
  msgid ""
2674
  "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
2678
  "Wenn das leer gelassen wird, wird der Originalname der Datei als Fotoname "
2679
  "verwendet."
2680
 
2681
+ #: wppa-boxes-html.php:2042
2682
  #, fuzzy
2683
  msgid ""
2684
  "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
2687
  "Wenn das leer gelassen wird, wird der Originalname der Datei als Fotoname "
2688
  "verwendet."
2689
 
2690
+ #: wppa-boxes-html.php:2047
2691
  msgid ""
2692
  "If you leave this blank, the original filename will be used as photo name."
2693
  msgstr ""
2694
  "Wenn das leer gelassen wird, wird der Originalname der Datei als Fotoname "
2695
  "verwendet."
2696
 
2697
+ #: wppa-boxes-html.php:2061
2698
  msgid "Enter photo name."
2699
  msgstr "Bitte gibt den Fotonamen an."
2700
 
2701
+ #: wppa-boxes-html.php:2082
2702
  msgid "Enter/modify photo description"
2703
  msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
2704
 
2705
+ #: wppa-boxes-html.php:2113
2706
  msgid "hidden"
2707
  msgstr ""
2708
 
2709
+ #: wppa-boxes-html.php:2182
2710
  msgid "Preview tags:"
2711
  msgstr ""
2712
 
2713
+ #: wppa-boxes-html.php:2195
2714
  #, fuzzy
2715
  msgid "Please select an album and try again"
2716
  msgstr "Bitte wähle Album"
2717
 
2718
+ #: wppa-boxes-html.php:2209
2719
  #, fuzzy
2720
  msgid "Upload photo"
2721
  msgstr "Fotos hochladen"
2722
 
2723
+ #: wppa-boxes-html.php:2265
2724
  #, fuzzy
2725
  msgid "ERROR: unable to upload files."
2726
  msgstr "<b>FEHLER: Ungültiger Versuch eine Datei hochzuladen</b>"
2727
 
2728
+ #: wppa-boxes-html.php:2314
2729
  #, fuzzy
2730
  msgid "Edit albuminfo"
2731
  msgstr "Bearbeiten"
2732
 
2733
+ #: wppa-boxes-html.php:2394
2734
  #, fuzzy
2735
  msgid "Album description:"
2736
  msgstr "Unsymmetrische Tags in der Album Beschreibung!"
2737
 
2738
+ #: wppa-boxes-html.php:2413
2739
  #, fuzzy
2740
  msgid "Update album"
2741
  msgstr "Erneuere die Plugin Beschreibung"
2742
 
2743
+ #: wppa-boxes-html.php:2487
2744
  msgid "wrote:"
2745
  msgstr ""
2746
 
2747
+ #: wppa-boxes-html.php:2541
2748
  msgid "Avatar"
2749
  msgstr ""
2750
 
2751
+ #: wppa-boxes-html.php:2584 wppa-links.php:768
2752
  #, fuzzy
2753
  msgid "Awaiting moderation"
2754
  msgstr "Dieses Foto wartet nicht mehr auf Moderation."
2755
 
2756
+ #: wppa-boxes-html.php:2587
2757
  #, fuzzy
2758
  msgid "Marked as spam"
2759
  msgstr "Spam:"
2760
 
2761
+ #: wppa-boxes-html.php:2611
2762
  msgid "Edit!"
2763
  msgstr "Bearbeiten!"
2764
 
2765
+ #: wppa-boxes-html.php:2615
2766
  msgid "Send!"
2767
  msgstr "Absenden!"
2768
 
2769
+ #: wppa-boxes-html.php:2676
2770
  msgid "Your name:"
2771
  msgstr "Dein Name:"
2772
 
2773
+ #: wppa-boxes-html.php:2691
2774
  msgid "Your email:"
2775
  msgstr "Deine E-mail:"
2776
 
2777
+ #: wppa-boxes-html.php:2707
2778
  msgid "Your comment:"
2779
  msgstr "Dein Kommentar:"
2780
 
2781
+ #: wppa-boxes-html.php:2752
2782
  #, php-format
2783
  msgid "You must <a href=\"%s\">login</a> to enter a comment"
2784
  msgstr ""
2785
  "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
2786
  "hinterlassen."
2787
 
2788
+ #: wppa-boxes-html.php:2755
2789
  #, fuzzy
2790
  msgid "You must login to enter a comment"
2791
  msgstr ""
2792
  "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
2793
  "hinterlassen."
2794
 
2795
+ #: wppa-boxes-html.php:2767
2796
  #, fuzzy, php-format
2797
  msgid "%d comments"
2798
  msgstr "%d Kommentare"
2799
 
2800
+ #: wppa-boxes-html.php:2771
2801
  msgid "Leave a comment"
2802
  msgstr "Hinterlasse einen Kommentar"
2803
 
2804
+ #: wppa-boxes-html.php:2812
2805
  #, fuzzy
2806
  msgid "Smilies are not available"
2807
  msgstr "Diese Seite ist nicht abrufbar."
2808
 
2809
+ #: wppa-boxes-html.php:2862
2810
  #, fuzzy
2811
  msgid "Show IPTC data"
2812
  msgstr "IPTC Daten"
2813
 
2814
+ #: wppa-boxes-html.php:2873
2815
  #, fuzzy
2816
  msgid "Hide IPTC data"
2817
  msgstr "IPTC Daten"
2818
 
2819
+ #: wppa-boxes-html.php:2913
2820
  #, fuzzy
2821
  msgid "No IPTC data"
2822
  msgstr "IPTC Daten"
2823
 
2824
+ #: wppa-boxes-html.php:2960
2825
  #, fuzzy
2826
  msgid "Show EXIF data"
2827
  msgstr "EXIF Daten"
2828
 
2829
+ #: wppa-boxes-html.php:2971
2830
  #, fuzzy
2831
  msgid "Hide EXIF data"
2832
  msgstr "EXIF Daten"
2833
 
2834
+ #: wppa-boxes-html.php:3013
2835
  #, fuzzy
2836
  msgid "No EXIF data"
2837
  msgstr "EXIF Daten"
2838
 
2839
+ #: wppa-boxes-html.php:3128 wppa-boxes-html.php:3133
2840
  #, fuzzy
2841
  msgid "< Previous"
2842
  msgstr "Vorheriges Foto"
2843
 
2844
+ #: wppa-boxes-html.php:3139 wppa-boxes-html.php:3144
2845
  #, fuzzy
2846
  msgid "Next >"
2847
  msgstr "Nächstes"
2848
 
2849
+ #: wppa-boxes-html.php:3241 wppa-boxes-html.php:3300
2850
  #, fuzzy
2851
  msgid "See the authors albums"
2852
  msgstr "--- multiple siehe unten---"
2853
 
2854
+ #: wppa-boxes-html.php:3245 wppa-boxes-html.php:3304
2855
  #, fuzzy
2856
  msgid "See the authors photos"
2857
  msgstr ""
2858
  "Der Besucher kann sich eine Übersicht mit Miniaturbildern der Fotos im Album "
2859
  "ansehen."
2860
 
2861
+ #: wppa-boxes-html.php:3249 wppa-boxes-html.php:3308
2862
  #, fuzzy
2863
  msgid "See all the authors photos"
2864
  msgstr "Klicken um das Foto im Vollbild und alle Kommentare zu sehen"
2865
 
2866
+ #: wppa-boxes-html.php:3272
2867
  #, fuzzy, php-format
2868
  msgid "Photo by: %s"
2869
  msgstr "Foto %s gedreht %s"
2870
 
2871
+ #: wppa-boxes-html.php:3273 wppa-boxes-html.php:3327
2872
  #, fuzzy, php-format
2873
  msgid "Max ratings: %s."
2874
  msgstr "auto selekt max %s zufällig"
2875
 
2876
+ #: wppa-boxes-html.php:3274 wppa-boxes-html.php:3328
2877
  #, fuzzy, php-format
2878
  msgid "Votes: %s."
2879
  msgstr "%s Stimme(n)"
2880
 
2881
+ #: wppa-boxes-html.php:3275 wppa-boxes-html.php:3329
2882
  #, fuzzy, php-format
2883
  msgid "Mean value: %4.2f."
2884
  msgstr "Mittelwert:"
2885
 
2886
+ #: wppa-boxes-html.php:3282
2887
  #, fuzzy, php-format
2888
  msgid "Photo %s not found."
2889
  msgstr "Foto wurde nicht gefunden."
2890
 
2891
+ #: wppa-boxes-html.php:3680 wppa-photo-admin-autosave.php:196
2892
+ #, fuzzy
2893
+ msgid "Refresh"
2894
+ msgstr "Erneuern"
2895
+
2896
+ #: wppa-breadcrumb.php:98 wppa-settings-autosave.php:1453
2897
  msgid "Home"
2898
  msgstr "Startseite"
2899
 
2900
+ #: wppa-breadcrumb.php:119
2901
  #, fuzzy
2902
  msgid "Post:"
2903
  msgstr "Beitrag"
2904
 
2905
+ #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:581
2906
  #, fuzzy
2907
  msgid "Page:"
2908
  msgstr "Seite"
2909
 
2910
+ #: wppa-breadcrumb.php:139
2911
  #, fuzzy
2912
  msgid "with category:"
2913
  msgstr "Kategorie:"
2914
 
2915
+ #: wppa-breadcrumb.php:142 wppa-breadcrumb.php:157
2916
  #, fuzzy
2917
  msgid "with name:"
2918
  msgstr "Dein Name:"
2919
 
2920
+ #: wppa-breadcrumb.php:145 wppa-breadcrumb.php:161
2921
  msgid "with words:"
2922
  msgstr ""
2923
 
2924
+ #: wppa-breadcrumb.php:154
2925
  msgid "with tag:"
2926
  msgstr ""
2927
 
2928
+ #: wppa-breadcrumb.php:165
2929
  msgid "of owner:"
2930
  msgstr ""
2931
 
2932
+ #: wppa-breadcrumb.php:170
2933
  #, fuzzy
2934
  msgid "with iptc tag:"
2935
  msgstr "Kategorie:"
2936
 
2937
+ #: wppa-breadcrumb.php:170 wppa-breadcrumb.php:175
2938
  #, fuzzy
2939
  msgid "with content:"
2940
  msgstr "Dein Name:"
2941
 
2942
+ #: wppa-breadcrumb.php:175
2943
  msgid "with exif tag:"
2944
  msgstr ""
2945
 
2946
+ #: wppa-breadcrumb.php:183 wppa-breadcrumb.php:209 wppa-breadcrumb.php:266
2947
+ #: wppa-breadcrumb.php:284 wppa-breadcrumb.php:302 wppa-breadcrumb.php:320
2948
+ #: wppa-breadcrumb.php:338 wppa-breadcrumb.php:350 wppa-breadcrumb.php:362
2949
+ #: wppa-breadcrumb.php:374 wppa-breadcrumb.php:393
2950
  #, fuzzy
2951
  msgid "View the thumbnails"
2952
  msgstr "Anzeigen..."
2953
 
2954
+ #: wppa-breadcrumb.php:203
2955
  #, fuzzy, php-format
2956
  msgid "Searchresults from album %s and its subalbums"
2957
  msgstr ""
2958
  "Das Foto %s existiert schon in der Album Nummer %s. Aus den Depot entfernt."
2959
 
2960
+ #: wppa-breadcrumb.php:207 wppa-breadcrumb.php:212
2961
  msgid "Searchstring:"
2962
  msgstr "Suchtext:"
2963
 
2964
+ #: wppa-breadcrumb.php:221 wppa-breadcrumb.php:239
2965
  #, fuzzy
2966
  msgid "Photos by EXIF date"
2967
  msgstr "EXIF Daten"
2968
 
2969
+ #: wppa-breadcrumb.php:225 wppa-breadcrumb.php:243
2970
  #, fuzzy
2971
  msgid "Photos by date of upload"
2972
  msgstr "Fotos hochgeladen zu Album Nr"
2973
 
2974
+ #: wppa-breadcrumb.php:229 wppa-breadcrumb.php:247
2975
  msgid "Photos by date last modified"
2976
  msgstr ""
2977
 
2978
+ #: wppa-breadcrumb.php:259 wppa-breadcrumb.php:269
2979
  #, fuzzy, php-format
2980
  msgid "Photos by %s"
2981
  msgstr "Mit insgesamt %s Fotos."
2982
 
2983
+ #: wppa-breadcrumb.php:276 wppa-breadcrumb