WP Photo Album Plus - Version 6.3.17

Version Description

Download this release

Release Info

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

Code changes from version 6.3.16 to 6.3.17

js/wppa-slideshow.js CHANGED
@@ -2,37 +2,37 @@
2
  //
3
  // Contains slideshow modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
- //
6
- var wppaJsSlideshowVersion = '6.3.14';
7
 
8
  // This is an entrypoint to load the slide data
9
- function wppaStoreSlideInfo(
10
- mocc, // The occurrance of a wppa invocation
11
  // ( php: $wppa['master_occur'] )
12
  id, // The index in the slide array
13
  url, // The url to the fs image file
14
- size,
15
- width,
16
- height,
17
- fullname,
18
- name,
19
- desc,
20
  photoid, // The photo id
21
  avgrat, // Average rating
22
  discount, // Dislike count
23
  myrat, // My rating
24
  rateurl, // The rating url
25
- linkurl,
26
- linktitle,
27
- linktarget,
28
- iwtimeout,
29
  commenthtml, // The html code for the comment box
30
- iptchtml,
31
- exifhtml,
32
  lbtitle, // Lightbox subtext
33
- shareurl,
34
- smhtml,
35
- ogdsc,
36
  hiresurl, // The url to the hi res ( source ) image file
37
  videohtml, // The html for the video, or ''
38
  audiohtml
@@ -85,7 +85,7 @@ function wppaStoreSlideInfo(
85
  wppaVideoPlaying[mocc] = false;
86
  wppaAudioPlaying[mocc] = false;
87
  }
88
-
89
  // Cursor
90
  cursor = 'default';
91
  if ( linkurl != '' ) {
@@ -97,7 +97,7 @@ function wppaStoreSlideInfo(
97
 
98
  // Is it a video?
99
  _wppaIsVideo[mocc][id] = ( '' != videohtml );
100
-
101
  // Fill _wppaSlides[mocc][id]
102
  if ( _wppaIsVideo[mocc][id] ) {
103
  _wppaSlides[mocc][id] = ' alt="' + wppaTrimAlt( name ) + '" class="theimg theimg-'+mocc+' big" ';
@@ -108,12 +108,12 @@ function wppaStoreSlideInfo(
108
  else {
109
  _wppaSlides[mocc][id] = ' src="' + url + '" alt="' + wppaTrimAlt( name ) + '" class="theimg theimg-'+mocc+' big stereo" ';
110
  }
111
-
112
  // Add swipe
113
  if ( wppaSlideSwipe ) {
114
  _wppaSlides[mocc][id] += 'ontouchstart="wppaTouchStart( event, this.id, '+mocc+' );" ontouchend="wppaTouchEnd( event );" ontouchmove="wppaTouchMove( event );" ontouchcancel="wppaTouchCancel( event );" ';
115
  }
116
-
117
  // Add 'old' width and height only for non-auto
118
  if ( ! wppaAutoColumnWidth[mocc] ) _wppaSlides[mocc][id] += 'width="' + width + '" height="' + height + '" ';
119
  if ( _wppaIsVideo[mocc][id] ) {
@@ -138,7 +138,7 @@ function wppaStoreSlideInfo(
138
  }
139
  */
140
  }
141
-
142
  _wppaFullNames[mocc][id] = fullname;
143
  _wppaNames[mocc][id] = name;
144
  _wppaDsc[mocc][id] = desc;
@@ -150,7 +150,7 @@ function wppaStoreSlideInfo(
150
  _wppaVRU[mocc][id] = rateurl; // url that performs the vote and returns to the page
151
  _wppaLinkUrl[mocc][id] = linkurl;
152
  _wppaLinkTitle[mocc][id] = linktitle;
153
-
154
  if ( linktarget != '' ) {
155
  _wppaLinkTarget[mocc][id] = linktarget;
156
  }
@@ -160,7 +160,7 @@ function wppaStoreSlideInfo(
160
  else {
161
  _wppaLinkTarget[mocc][id] = '_self';
162
  }
163
-
164
  _wppaCommentHtml[mocc][id] = commenthtml;
165
  _wppaIptcHtml[mocc][id] = iptchtml;
166
  _wppaExifHtml[mocc][id] = exifhtml;
@@ -193,10 +193,10 @@ function wppaStopShow( mocc ) {
193
  function wppaStartStop( mocc, index ) {
194
  if ( _wppaIsBusy[mocc] ) {
195
  // Remember there is a toggle pending
196
- _wppaTP[mocc] = index;
197
  }
198
  else {
199
- if ( _wppaSSRuns[mocc] ) {
200
  // Stop it
201
  _wppaStop( mocc );
202
  jQuery( '#wppa-startstop-icon-' + mocc ).attr( 'src', wppaStartSymbolUrl );
@@ -296,7 +296,7 @@ function wppaGotoFilmNoMove( mocc, idx ) {
296
  if ( ! _wppaSSRuns[mocc] ) {
297
  _wppaFilmNoMove[mocc] = true;
298
  _wppaGoto( mocc, idx );
299
- }
300
  }
301
 
302
  function wppaGotoKeepState( mocc, idx ) {
@@ -306,7 +306,7 @@ function wppaGotoKeepState( mocc, idx ) {
306
  _wppaGotoKeepState( mocc, idx );
307
  }
308
 
309
- function _wppaGotoKeepState( mocc, idx ) {
310
  if ( _wppaSSRuns[mocc] ) {
311
  _wppaGotoRunning( mocc,idx );
312
  }
@@ -335,13 +335,13 @@ function _wppaNextSlide( mocc, mode ) {
335
  setTimeout( '_wppaNextSlide( '+mocc+', \''+mode+'\' )', 500 ); // Retry after 500 ms
336
  return;
337
  }
338
-
339
  // Stop any playing video
340
  wppaStopVideo( mocc );
341
-
342
  // Stop any playing audio
343
  wppaStopAudio();
344
-
345
  // Paused??
346
  if ( 'auto' == mode ) {
347
  if ( wppaSlidePause[mocc] ) {
@@ -351,11 +351,11 @@ function _wppaNextSlide( mocc, mode ) {
351
  }
352
  }
353
  // Kill an old timed request, while stopped
354
- if ( ! _wppaSSRuns[mocc] && 'auto' == mode ) return;
355
  // Empty slideshow?
356
  if ( ! _wppaSlides[mocc] ) return;
357
  // Do not animate single image
358
- if ( _wppaSlides[mocc].length < 2 && ! _wppaFirst[mocc] ) return;
359
  // Reset request?
360
  if ( ! _wppaSSRuns[mocc] && 'reset' == mode ) {
361
  _wppaSSRuns[mocc] = true;
@@ -364,13 +364,13 @@ function _wppaNextSlide( mocc, mode ) {
364
 
365
  // No longer busy voting
366
  _wppaVoteInProgress = false;
367
-
368
  // Set the busy flag
369
  _wppaIsBusy[mocc] = true;
370
 
371
  // Hide metadata while changing image
372
  if ( _wppaSSRuns[mocc] ) _wppaShowMetaData( mocc, 'hide' );
373
-
374
  // Find index of next slide if in auto mode and not stop in progress
375
  if ( _wppaSSRuns[mocc] ) {
376
  _wppaNxtIdx[mocc] = _wppaCurIdx[mocc] + 1;
@@ -393,9 +393,9 @@ function _wppaNextSlide( mocc, mode ) {
393
  else jQuery( '#map-canvas-'+mocc ).css( 'display', 'none' );
394
  }
395
  else jQuery( '#map-canvas-'+mocc ).css( 'display', 'none' );
396
-
397
  // Set numbar backgrounds and fonts
398
- jQuery( '[id^=wppa-numbar-' + mocc + '-]' ).css( { backgroundColor: wppaBGcolorNumbar,
399
  borderColor: wppaBcolorNumbar,
400
  fontFamily: wppaFontFamilyNumbar,
401
  fontSize: wppaFontSizeNumbar,
@@ -403,7 +403,7 @@ function _wppaNextSlide( mocc, mode ) {
403
  fontWeight: wppaFontWeightNumbar
404
  });
405
 
406
- jQuery( "#wppa-numbar-" + mocc + "-" + _wppaNxtIdx[mocc] ).css( { backgroundColor: wppaBGcolorNumbarActive,
407
  borderColor: wppaBcolorNumbarActive,
408
  fontFamily: wppaFontFamilyNumbarActive,
409
  fontSize: wppaFontSizeNumbarActive,
@@ -416,21 +416,21 @@ function _wppaNextSlide( mocc, mode ) {
416
  jQuery( '[id^=wppa-numbar-' + mocc + '-]' ).html( ' . ' );
417
  jQuery( "#wppa-numbar-" + mocc + "-" + _wppaNxtIdx[mocc] ).html( ' ' + ( _wppaNxtIdx[mocc]+1 ) + ' ' );
418
  }
419
-
420
  // first:
421
  if ( _wppaFirst[mocc] ) {
422
  if ( _wppaCurIdx[mocc] != -1 ) {
423
  wppaMakeTheSlideHtml( mocc, '0', _wppaCurIdx[mocc] );
424
  }
425
  wppaMakeTheSlideHtml( mocc, '1', _wppaNxtIdx[mocc] );
426
-
427
  // Display name, description and comments
428
  jQuery( "#imagedesc-"+mocc ).html( _wppaDsc[mocc][_wppaCurIdx[mocc]] );
429
  jQuery( "#imagetitle-"+mocc ).html( wppaMakeNameHtml( mocc ) );
430
  jQuery( "#wppa-comments-"+mocc ).html( _wppaCommentHtml[mocc][_wppaCurIdx[mocc]] );
431
  jQuery( "#iptc-"+mocc ).html( _wppaIptcHtml[mocc][_wppaCurIdx[mocc]] );
432
  jQuery( "#exif-"+mocc ).html( _wppaExifHtml[mocc][_wppaCurIdx[mocc]] );
433
-
434
  // Display counter and arrow texts
435
  if ( wppaIsMini[mocc] || wppaGetContainerWidth( mocc ) < wppaMiniTreshold ) {
436
  jQuery( '#prev-arrow-'+mocc ).html( '&laquo;&nbsp;'+wppaPrevP );
@@ -449,11 +449,11 @@ function _wppaNextSlide( mocc, mode ) {
449
  else { // load next img ( backg )
450
  wppaMakeTheSlideHtml( mocc, bg, _wppaNxtIdx[mocc] );
451
  }
452
-
453
  _wppaLoadSpinner( mocc );
454
-
455
  _wppaFirst[mocc] = false;
456
-
457
  // See if the filmstrip needs wrap around before shifting to the right location
458
  _wppaCheckRewind( mocc );
459
 
@@ -468,7 +468,7 @@ function _wppaNextSlide_2( mocc ) {
468
 
469
  var fg = _wppaFg[mocc];
470
  var bg = 1 - fg;
471
-
472
  // Wait for load complete
473
  var elm = document.getElementById( 'theimg'+bg+"-"+mocc );
474
  if ( elm ) { // Exists
@@ -485,17 +485,17 @@ function _wppaNextSlide_2( mocc ) {
485
 
486
  // Update lightbox
487
  wppaUpdateLightboxes();
488
-
489
  // Remove spinner
490
  _wppaUnloadSpinner( mocc );
491
-
492
  // Hide subtitles
493
  if ( _wppaSSRuns[mocc] != -1 ) { // not stop in progress
494
  if ( ! _wppaToTheSame ) {
495
  _wppaShowMetaData( mocc, 'hide' );
496
  }
497
  }
498
-
499
  // change foreground
500
  _wppaFg[mocc] = 1 - _wppaFg[mocc];
501
  fg = _wppaFg[mocc];
@@ -507,16 +507,16 @@ function _wppaNextSlide_3( mocc ) {
507
 
508
  var nw = _wppaFg[mocc];
509
  var ol = 1 - nw;
510
-
511
  var olIdx = _wppaCurIdx[mocc];
512
  var nwIdx = _wppaNxtIdx[mocc];
513
-
514
  var olSli = "#theslide"+ol+"-"+mocc;
515
  var nwSli = "#theslide"+nw+"-"+mocc;
516
-
517
  var olImg = "#theimg"+ol+"-"+mocc;
518
  var nwImg = "#theimg"+nw+"-"+mocc;
519
-
520
  var w = parseInt( jQuery( olSli ).css( 'width' ) );
521
  var dir = 'nil';
522
 
@@ -525,7 +525,7 @@ function _wppaNextSlide_3( mocc ) {
525
  if ( olIdx == nwIdx+1 ) dir = 'right';
526
  if ( olIdx == _wppaSlides[mocc].length-1 && 0 == nwIdx && wppaSlideWrap ) dir = 'left';
527
  if ( 0 == olIdx && nwIdx == _wppaSlides[mocc].length-1 && wppaSlideWrap ) dir = 'right';
528
-
529
  // Not known yet?
530
  if ( 'nil' == dir ) {
531
  if ( olIdx < nwIdx ) dir = 'left';
@@ -537,19 +537,19 @@ function _wppaNextSlide_3( mocc ) {
537
  jQuery( nwSli ).css( {marginLeft:0, width:w});
538
 
539
  wppaFormatSlide( mocc );
540
-
541
  switch ( wppaAnimationType ) {
542
-
543
- case 'fadeover':
544
- jQuery( olImg ).fadeOut( wppaAnimationSpeed );
545
- jQuery( nwImg ).fadeIn( wppaAnimationSpeed, _wppaNextSlide_4( mocc ) );
546
  break;
547
-
548
- case 'fadeafter':
549
- jQuery( olImg ).fadeOut( wppaAnimationSpeed );
550
- jQuery( nwImg ).delay( wppaAnimationSpeed ).fadeIn( wppaAnimationSpeed, _wppaNextSlide_4( mocc ) );
551
  break;
552
-
553
  case 'swipe':
554
  switch ( dir ) {
555
  case 'left':
@@ -570,7 +570,7 @@ function _wppaNextSlide_3( mocc ) {
570
  break;
571
  }
572
  break;
573
-
574
  case 'stackon':
575
  switch ( dir ) {
576
  case 'left':
@@ -593,7 +593,7 @@ function _wppaNextSlide_3( mocc ) {
593
  break;
594
  }
595
  break;
596
-
597
  case 'stackoff':
598
  switch ( dir ) {
599
  case 'left':
@@ -616,7 +616,7 @@ function _wppaNextSlide_3( mocc ) {
616
  break;
617
  }
618
  break;
619
-
620
  case 'turnover':
621
  switch ( dir ) {
622
  case 'left':
@@ -647,10 +647,10 @@ function _wppaNextSlide_3( mocc ) {
647
  break;
648
  }
649
  break;
650
-
651
  default:
652
- alert( 'Animation type '+wppaAnimationType+' is not supported in this version' );
653
-
654
  }
655
  }
656
 
@@ -665,12 +665,12 @@ function _wppaNextSlide_4( mocc ) {
665
  // Make sure title and onclick of the new image ( slide ) are in sight
666
  jQuery( olSli ).css( {zIndex:80});
667
  jQuery( nwSli ).css( {zIndex:81});
668
-
669
  // Next is now current // put here for swipe
670
  _wppaCurIdx[mocc] = _wppaNxtIdx[mocc];
671
 
672
  wppaFormatSlide( mocc );
673
-
674
  // Display counter and arrow texts
675
  if ( wppaIsMini[mocc] || wppaGetContainerWidth( mocc ) < wppaMiniTreshold ) {
676
  jQuery( '#counter-'+mocc ).html( ( _wppaCurIdx[mocc]+1 )+' / '+_wppaSlides[mocc].length );
@@ -684,18 +684,18 @@ function _wppaNextSlide_4( mocc ) {
684
 
685
  // Adjust filmstrip
686
  _wppaAdjustFilmstrip( mocc );
687
-
688
  // Set rating mechanism
689
  _wppaSetRatingDisplay( mocc );
690
-
691
  // Wait for almost next slide
692
- setTimeout( '_wppaNextSlide_5( '+mocc+' )', _wppaTextDelay );
693
  }
694
  function _wppaNextSlide_5( mocc ) {
695
 
696
  // If we are going to the same slide, there is no need to hide and restore the subtitles and commentframe
697
  if ( ! _wppaToTheSame ) {
698
-
699
  // Restore subtitles
700
  jQuery( '#imagedesc-'+mocc ).html( _wppaDsc[mocc][_wppaCurIdx[mocc]] );
701
  if ( wppaHideWhenEmpty ) {
@@ -708,31 +708,31 @@ function _wppaNextSlide_5( mocc ) {
708
  }
709
  }
710
  jQuery( "#imagetitle-"+mocc ).html( wppaMakeNameHtml( mocc ) );
711
-
712
  // Restore comments html
713
  jQuery( "#wppa-comments-"+mocc ).html( _wppaCommentHtml[mocc][_wppaCurIdx[mocc]] );
714
-
715
  // Restor IPTC
716
  jQuery( "#iptc-"+mocc ).html( _wppaIptcHtml[mocc][_wppaCurIdx[mocc]] );
717
  jQuery( "#exif-"+mocc ).html( _wppaExifHtml[mocc][_wppaCurIdx[mocc]] );
718
-
719
  // Restore share html
720
  jQuery( "#wppa-share-"+mocc ).html( _wppaShareHtml[mocc][_wppaCurIdx[mocc]] );
721
  }
722
  _wppaToTheSame = false; // This has now been worked out
723
 
724
  // End of non wrapped show?
725
- if ( _wppaSSRuns[mocc] &&
726
- ! wppaSlideWrap &&
727
- ( ( _wppaCurIdx[mocc] + 1 ) == _wppaSlides[mocc].length ) ) {
728
  _wppaIsBusy[mocc] = false;
729
  _wppaStop( mocc ); // stop
730
  return;
731
  }
732
 
733
  // Re-display the metadata
734
- _wppaShowMetaData( mocc, 'show' );
735
-
736
  // Almost done, finalize
737
  if ( _wppaTP[mocc] != -2 ) { // A Toggle pending?
738
  var index = _wppaTP[mocc]; // Remember the pending startstop request argument
@@ -742,28 +742,28 @@ function _wppaNextSlide_5( mocc ) {
742
  if ( ! wppaIsMini[mocc] ) { // Not in a widget
743
  _bumpViewCount( _wppaId[mocc][_wppaCurIdx[mocc]] ); // Register a view
744
  }
745
- _wppaDoAutocol(mocc);
746
  wppaStartStop( mocc, index ); // Do as if the toggle request happens now
747
  return;
748
  }
749
  else { // No toggle pending
750
  wppaUpdateLightboxes(); // Refresh lightbox
751
-
752
- // Update url and title if ( ( this is non-mini ) AND
753
  // ( this is the only running non-mini OR there are no running non-minis ) )
754
  if ( ! wppaIsMini[mocc] ) { // This is NOT a widget
755
-
756
  // Prepare visual url ( for addressline )
757
  var visurl = wppaGetCurrentFullUrl( mocc, _wppaCurIdx[mocc] );
758
  if ( '' == visurl ) {
759
  visurl = _wppaShareUrl[mocc][_wppaCurIdx[mocc]];
760
  }
761
-
762
  // Update possible QR Widget
763
  if ( typeof( wppaQRUpdate ) != 'undefined' ) {
764
  wppaQRUpdate( _wppaShareUrl[mocc][_wppaCurIdx[mocc]] );
765
  }
766
-
767
  // Push state if not slphoto
768
  if ( ! _wppaSSRuns[mocc] ) { // This is not running
769
  if ( _wppaSlides[mocc].length > 1 ) {
@@ -771,26 +771,26 @@ function _wppaNextSlide_5( mocc ) {
771
  }
772
  }
773
  }
774
-
775
  // If running: Wait for next slide
776
- if ( _wppaSSRuns[mocc] ) {
777
- setTimeout( '_wppaNextSlide( '+mocc+', "auto" )', _wppaTimeOut[mocc] );
778
- }
779
  }
780
-
781
  // If glossery tooltip on board...
782
  jQuery(document).trigger( 'glossaryTooltipReady' );
783
-
784
  _wppaDidGoto[mocc] = false; // Is worked out now
785
  _wppaIsBusy[mocc] = false; // No longer busy
786
  if ( ! wppaIsMini[mocc] ) { // Not in a widget
787
  _bumpViewCount( _wppaId[mocc][_wppaCurIdx[mocc]] ); // Register a view
788
  }
789
-
790
  _wppaDoAutocol(mocc);
791
-
792
  wppaStopAudio();
793
-
794
  if ( wppaSlideAudioStart ) {
795
  var elms = jQuery( '.wppa-audio-'+_wppaId[mocc][_wppaCurIdx[mocc]]+'-'+mocc );
796
  if ( elms.length > 0 ) {
@@ -814,10 +814,10 @@ function wppaFormatSlide( mocc ) {
814
  var contw = wppaColWidth[mocc];
815
  var elm = document.getElementById( imgid );
816
  var audios = jQuery( '.wppa-audio-'+mocc );
817
-
818
  if ( ! elm ) return; // No slide present
819
  if ( typeof( contw ) == 'undefined' || contw == 0 ) {
820
- contw = wppaGetContainerWidth( mocc );
821
  wppaColWidth[mocc] = contw;
822
  }
823
  var natwidth = elm.naturalWidth;
@@ -833,13 +833,13 @@ function wppaFormatSlide( mocc ) {
833
  var valign = wppaFullValign[mocc]; if ( typeof( valign )=='undefined' ) valign = 'none';
834
  var halign = wppaFullHalign[mocc]; if ( typeof( halign )=='undefined' ) halign = 'none';
835
  var stretch = wppaStretch;
836
-
837
  // vars to be calculated:
838
  var imgw, imgh; // image width and height
839
  var margl, margt; // image margins
840
  var slidew, slideh; // slide width and height
841
  var framew, frameh; // frame
842
-
843
  // Calculate
844
  if ( ponly ) {
845
  imgw = contw - delta;
@@ -883,7 +883,7 @@ function wppaFormatSlide( mocc ) {
883
  // Align vertical
884
  if ( valign != 'default' && valign != 'none' ) {
885
  switch ( valign ) {
886
- case 'top':
887
  margt = 0;
888
  break;
889
  case 'center':
@@ -927,7 +927,7 @@ function wppaFormatSlide( mocc ) {
927
  jQuery( '#'+imgid ).css( {marginLeft:'auto', marginRight:'auto'});
928
  jQuery( '#'+frameid ).css( {marginLeft:margl});
929
  }
930
-
931
  // Size audio
932
  if ( audios.length > 0 ) {
933
  var i = 0;
@@ -935,11 +935,11 @@ function wppaFormatSlide( mocc ) {
935
  i++;
936
  }
937
  }
938
-
939
  // Size Big Browse Buttons
940
  var bbbwidth = parseInt( framew/3 );
941
  var leftmarg = bbbwidth*2;
942
-
943
  jQuery( '#bbb-'+mocc+'-l' ).css( {height:frameh, width:bbbwidth, left:0});
944
  jQuery( '#bbb-'+mocc+'-r' ).css( {height:frameh, width:bbbwidth, left:leftmarg});
945
  }
@@ -949,7 +949,7 @@ function wppaMakeNameHtml( mocc ) {
949
  var result = '';
950
 
951
  if ( _wppaCurIdx[mocc] < 0 ) return '';
952
-
953
  if ( wppaIsMini[mocc] || _wppaIsVideo[mocc][_wppaCurIdx[mocc]] ) {
954
  result = _wppaFullNames[mocc][_wppaCurIdx[mocc]];
955
  }
@@ -989,9 +989,9 @@ function wppaMakeTheSlideHtml( mocc, bgfg, idx ) {
989
  var theTitle = 'title';
990
  if ( wppaLightBox[mocc] == 'wppa') theTitle = 'data-lbtitle';
991
  var mmEvents = wppaLightBox[mocc] == '' ? ' onpause="wppaVideoPlaying['+mocc+'] = false;" onplay="wppaVideoPlaying['+mocc+'] = true;"' : '';
992
-
993
  // Link url explicitly given ?
994
- if ( _wppaLinkUrl[mocc][idx] != '' ) {
995
  if ( wppaSlideToFullpopup ) {
996
  theHtml = '<a onclick="wppaStopAudio();'+_wppaLinkUrl[mocc][idx]+'" target="'+_wppaLinkTarget[mocc][idx]+'" title="'+_wppaLinkTitle[mocc][idx]+'">'+
997
  '<'+imgVideo+mmEvents+' title="'+_wppaLinkTitle[mocc][idx]+'" id="theimg'+bgfg+'-'+mocc+'" '+_wppaSlides[mocc][idx]+
@@ -1003,22 +1003,22 @@ function wppaMakeTheSlideHtml( mocc, bgfg, idx ) {
1003
  '</a>';
1004
  }
1005
  }
1006
-
1007
  // No url, maybe lightbox?
1008
  else {
1009
-
1010
  // Lightbox ?
1011
- if ( wppaLightBox[mocc] == '' ) {
1012
  theHtml = '<'+imgVideo+mmEvents+' title="'+_wppaNames[mocc][idx]+'" id="theimg'+bgfg+'-'+mocc+'" '+_wppaSlides[mocc][idx];
1013
  }
1014
-
1015
  // Lightbox
1016
  else {
1017
  var html = '';
1018
  var i = 0;
1019
  var set = wppaLightboxSingle[mocc] ? '' : '[slide-'+mocc+'-'+bgfg+']';
1020
-
1021
- // Before current slide // This does NOT work on lightbox 3 !
1022
  // if ( wppaLightBox[mocc] == 'wppa' ) {
1023
  while ( i<idx ) {
1024
  // Make sure fullsize
@@ -1030,18 +1030,18 @@ function wppaMakeTheSlideHtml( mocc, bgfg, idx ) {
1030
  }
1031
 
1032
  html += '<a href="'+url+'"' +
1033
- ( ( _wppaIsVideo[mocc][i] ) ?
1034
  ' data-videonatwidth="'+_wppaVideoNatWidth[mocc][i]+'"' +
1035
  ' data-videonatheight="'+_wppaVideoNatHeight[mocc][i]+'"' +
1036
  ' data-videohtml="'+encodeURI( _wppaVideoHtml[mocc][i] )+'"' : '' ) +
1037
- ( ( _wppaAudioHtml[mocc][i] != '' ) ?
1038
  ' data-audiohtml="'+encodeURI( _wppaAudioHtml[mocc][i] )+'"' : '' ) +
1039
  ' '+theTitle+'="'+_wppaLbTitle[mocc][i]+'"' +
1040
  ' '+wppaRel+'="'+wppaLightBox[mocc]+set+'"></a>';
1041
  i++;
1042
  }
1043
  // }
1044
-
1045
  // Current slide
1046
  if ( ( wppaOvlHires && _wppaIsVideo[mocc][i] ) || ( wppaLightBox[mocc] != 'wppa' ) ) {
1047
  url = _wppaHiresUrl[mocc][idx];
@@ -1053,18 +1053,18 @@ function wppaMakeTheSlideHtml( mocc, bgfg, idx ) {
1053
  html += '<a href="'+url+'"' +
1054
  ' onclick="wppaStopAudio();"' +
1055
  ' target="'+_wppaLinkTarget[mocc][idx]+'"' +
1056
- ( ( _wppaIsVideo[mocc][i] ) ?
1057
  ' data-videonatwidth="'+_wppaVideoNatWidth[mocc][idx]+'"' +
1058
  ' data-videonatheight="'+_wppaVideoNatHeight[mocc][idx]+'"' +
1059
  ' data-videohtml="'+encodeURI( _wppaVideoHtml[mocc][idx] )+'"' : '' ) +
1060
- ( ( _wppaAudioHtml[mocc][i] != '' ) ?
1061
  ' data-audiohtml="'+encodeURI( _wppaAudioHtml[mocc][idx] )+'"' : '' ) +
1062
  ' '+theTitle+'="'+_wppaLbTitle[mocc][idx]+'"' +
1063
  ' '+wppaRel+'="'+wppaLightBox[mocc]+set+'">'+
1064
  '<'+imgVideo+mmEvents+' title="'+_wppaLinkTitle[mocc][idx]+'" id="theimg'+bgfg+'-'+mocc+'" '+_wppaSlides[mocc][idx]+
1065
  '</a>';
1066
-
1067
- // After current slide // This does NOT work on lightbox 3 !
1068
  // if ( wppaLightBox[mocc] == 'wppa' ) {
1069
  i = idx + 1;
1070
  while ( i<_wppaUrl[mocc].length ) {
@@ -1075,11 +1075,11 @@ function wppaMakeTheSlideHtml( mocc, bgfg, idx ) {
1075
  url = wppaMakeFullsizeUrl( _wppaUrl[mocc][i] );
1076
  }
1077
  html += '<a href="'+url+'"' +
1078
- ( ( _wppaIsVideo[mocc][i] ) ?
1079
  ' data-videonatwidth="'+_wppaVideoNatWidth[mocc][i]+'"' +
1080
  ' data-videonatheight="'+_wppaVideoNatHeight[mocc][i]+'"' +
1081
  ' data-videohtml="'+encodeURI( _wppaVideoHtml[mocc][i] )+'"' : '' ) +
1082
- ( ( _wppaAudioHtml[mocc][i] != '' ) ?
1083
  ' data-audiohtml="'+encodeURI( _wppaAudioHtml[mocc][i] )+'"' : '' ) +
1084
  ' '+theTitle+'="'+_wppaLbTitle[mocc][i]+'"' +
1085
  ' '+wppaRel+'="'+wppaLightBox[mocc]+set+'"></a>';
@@ -1089,7 +1089,7 @@ function wppaMakeTheSlideHtml( mocc, bgfg, idx ) {
1089
  theHtml = html; // nieuw
1090
  }
1091
  }
1092
-
1093
  if ( _wppaAudioHtml[mocc][idx] != '' ) {
1094
  // if ( idx == 0 ) wppaFirstSlideAudio = true;
1095
  theHtml += '<audio' +
@@ -1113,22 +1113,22 @@ function wppaMakeTheSlideHtml( mocc, bgfg, idx ) {
1113
  _wppaAudioHtml[mocc][idx] +
1114
  '</audio>';
1115
  }
1116
-
1117
  // Remove empty titles for browsers that display empty tooltip boxes
1118
  theHtml = theHtml.replace( /title=""/g, '' );
1119
-
1120
  jQuery( "#theslide"+bgfg+"-"+mocc ).html( theHtml ); // nieuw
1121
-
1122
  }
1123
 
1124
  // Adjust the filmstrip
1125
  function _wppaAdjustFilmstrip( mocc ) {
1126
 
1127
  if ( ! document.getElementById( 'wppa-filmstrip-'+mocc ) ) return; // No filmstrip this mocc
1128
-
1129
  // Remove class from active thumb
1130
  jQuery( '.wppa-film-'+mocc ).removeClass( 'wppa-filmthumb-active' );
1131
-
1132
  if ( ! _wppaFilmNoMove[mocc] ) {
1133
  var xoffset;
1134
  xoffset = wppaFilmStripLength[mocc] / 2 - ( _wppaCurIdx[mocc] + 0.5 + wppaPreambule ) * wppaThumbnailPitch[mocc] - wppaFilmStripMargin[mocc];
@@ -1138,7 +1138,7 @@ function _wppaAdjustFilmstrip( mocc ) {
1138
  else {
1139
  _wppaFilmNoMove[mocc] = false; // reset
1140
  }
1141
-
1142
  // make them visible...
1143
  if ( _wppaCurIdx[mocc] != -1 ) {
1144
  var from = _wppaCurIdx[mocc] - 10; if ( from < 0 ) from = 0;
@@ -1165,7 +1165,7 @@ function _wppaAdjustFilmstrip( mocc ) {
1165
  index++;
1166
  }
1167
  }
1168
-
1169
  // Apply class to active filmthumb
1170
  jQuery( '#wppa-film-'+_wppaCurIdx[mocc]+'-'+mocc ).addClass( 'wppa-filmthumb-active' );
1171
  }
@@ -1178,7 +1178,7 @@ function _wppaNext( mocc ) {
1178
  // Find next index
1179
  _wppaNxtIdx[mocc] = _wppaCurIdx[mocc] + 1;
1180
  if ( _wppaNxtIdx[mocc] == _wppaSlides[mocc].length ) _wppaNxtIdx[mocc] = 0;
1181
- // And go!
1182
  _wppaNextSlide( mocc, 0 );
1183
  }
1184
 
@@ -1189,7 +1189,7 @@ function _wppaNextN( mocc, n ) {
1189
  // Find next index
1190
  _wppaNxtIdx[mocc] = _wppaCurIdx[mocc] + n;
1191
  while ( _wppaNxtIdx[mocc] >= _wppaSlides[mocc].length ) _wppaNxtIdx[mocc] -= _wppaSlides[mocc].length;
1192
- // And go!
1193
  _wppaNextSlide( mocc, 0 );
1194
  }
1195
 
@@ -1222,29 +1222,29 @@ function _wppaNextOnCallback( mocc ) {
1222
  }
1223
 
1224
  function _wppaPrev( mocc ) {
1225
-
1226
  // Check for begin of non wrapped show
1227
  if ( ! wppaSlideWrap && _wppaCurIdx[mocc] == 0 ) return;
1228
  // Find previous index
1229
  _wppaNxtIdx[mocc] = _wppaCurIdx[mocc] - 1;
1230
  if ( _wppaNxtIdx[mocc] < 0 ) _wppaNxtIdx[mocc] = _wppaSlides[mocc].length - 1;
1231
- // And go!
1232
  _wppaNextSlide( mocc, 0 );
1233
  }
1234
 
1235
  function _wppaPrevN( mocc, n ) {
1236
-
1237
  // Check for begin of non wrapped show
1238
  if ( ! wppaSlideWrap && _wppaCurIdx[mocc] < n ) return;
1239
  // Find previous index
1240
  _wppaNxtIdx[mocc] = _wppaCurIdx[mocc] - n;
1241
  while ( _wppaNxtIdx[mocc] < 0 ) _wppaNxtIdx[mocc] += _wppaSlides[mocc].length;
1242
- // And go!
1243
  _wppaNextSlide( mocc, 0 );
1244
  }
1245
 
1246
  function _wppaGoto( mocc, idx ) {
1247
-
1248
  _wppaToTheSame = ( _wppaNxtIdx[mocc] == idx );
1249
  _wppaNxtIdx[mocc] = idx;
1250
  _wppaNextSlide( mocc, 0 );
@@ -1252,20 +1252,20 @@ function _wppaGoto( mocc, idx ) {
1252
 
1253
  function _wppaGotoRunning( mocc, idx ) {
1254
  //wait until not bussy
1255
- if ( _wppaIsBusy[mocc] ) {
1256
  setTimeout( '_wppaGotoRunning( '+mocc+',' + idx + ' )', 10 ); // Try again after 10 ms
1257
  return;
1258
  }
1259
-
1260
  wppaConsoleLog( 'GotoRunning '+mocc );
1261
 
1262
  _wppaSSRuns[mocc] = false; // we don't want timed loop to occur during our work
1263
-
1264
  _wppaToTheSame = ( _wppaNxtIdx[mocc] == idx );
1265
  _wppaNxtIdx[mocc] = idx;
1266
  __wppaOverruleRun = true;
1267
  _wppaNextSlide( mocc, "manual" ); // enqueue new transition
1268
-
1269
  _wppaGotoContinue( mocc );
1270
  }
1271
 
@@ -1278,7 +1278,7 @@ function _wppaGotoContinue( mocc ) {
1278
  }
1279
 
1280
  function _wppaStart( mocc, idx ) {
1281
-
1282
  if ( idx == -2 ) { // Init at first without my rating
1283
  var i = 0;
1284
  idx = 0;
@@ -1292,7 +1292,7 @@ function _wppaStart( mocc, idx ) {
1292
  }
1293
 
1294
  if ( idx > -1 ) { // Init still at index idx
1295
- jQuery( '#startstop-'+mocc ).html( wppaStart+' '+wppaSlideShow );
1296
  jQuery( '#speed0-'+mocc ).css( 'display', 'none' );
1297
  jQuery( '#speed1-'+mocc ).css( 'display', 'none' );
1298
  _wppaNxtIdx[mocc] = idx;
@@ -1306,18 +1306,18 @@ function _wppaStart( mocc, idx ) {
1306
  jQuery( '#startstop-'+mocc ).html( wppaStop );
1307
  jQuery( '#speed0-'+mocc ).css( 'display', 'inline' );
1308
  jQuery( '#speed1-'+mocc ).css( 'display', 'inline' );
1309
- _wppaShowMetaData( mocc, 'hide' );
1310
  jQuery( '#bc-pname-'+mocc ).html( wppaSlideShow );
1311
  }
1312
-
1313
  // Both cases:
1314
  _wppaSetRatingDisplay( mocc );
1315
  }
1316
 
1317
  function _wppaStop( mocc ) {
1318
-
1319
  _wppaSSRuns[mocc] = false;
1320
- jQuery( '#startstop-'+mocc ).html( wppaStart+' '+wppaSlideShow );
1321
  jQuery( '#speed0-'+mocc ).css( 'display', 'none' );
1322
  jQuery( '#speed1-'+mocc ).css( 'display', 'none' );
1323
  _wppaShowMetaData( mocc, 'show' );
@@ -1325,7 +1325,7 @@ function _wppaStop( mocc ) {
1325
  }
1326
 
1327
  function _wppaSpeed( mocc, faster ) {
1328
-
1329
  if ( faster ) {
1330
  if ( _wppaTimeOut[mocc] > 500 ) _wppaTimeOut[mocc] /= 1.5;
1331
  }
@@ -1335,19 +1335,19 @@ function _wppaSpeed( mocc, faster ) {
1335
  }
1336
 
1337
  function _wppaLoadSpinner( mocc ) {
1338
-
1339
  if ( ! document.getElementById( 'slide_frame-'+mocc ) ) return; // filmonly
1340
-
1341
  var top;
1342
  var lft;
1343
  var elm;
1344
-
1345
  var flag = true;
1346
-
1347
- if ( document.getElementById( 'theimg0-'+mocc ) ) {
1348
  if ( document.getElementById( 'theimg0-'+mocc ).complete ) flag = false;
1349
  }
1350
- if ( document.getElementById( 'theimg1-'+mocc ) ) {
1351
  if ( document.getElementById( 'theimg1-'+mocc ).complete ) flag = false;
1352
  }
1353
 
@@ -1370,18 +1370,18 @@ function _wppaCheckRewind( mocc ) {
1370
  var n_diff;
1371
  var l_substrate;
1372
  var x_marg;
1373
-
1374
  if ( ! document.getElementById( 'wppa-filmstrip-'+mocc ) ) return; // There is no filmstrip
1375
-
1376
  n_diff = Math.abs( _wppaCurIdx[mocc] - _wppaNxtIdx[mocc] );
1377
  if ( n_diff <= wppaFilmPageSize[mocc] ) return; // was 2
1378
-
1379
  var n_images = wppaFilmStripLength[mocc] / wppaThumbnailPitch[mocc];
1380
-
1381
  if ( n_diff >= ( ( n_images + 1 ) / 2 ) ) {
1382
  l_substrate = wppaThumbnailPitch[mocc] * _wppaSlides[mocc].length;
1383
  if ( wppaFilmShowGlue ) l_substrate += ( 2 + 2 * wppaFilmStripMargin[mocc] );
1384
-
1385
  x_marg = parseInt( jQuery( '#wppa-filmstrip-'+mocc ).css( 'margin-left' ) );
1386
 
1387
  if ( _wppaNxtIdx[mocc] > _wppaCurIdx[mocc] ) {
@@ -1399,50 +1399,53 @@ function _wppaSetRatingDisplay( mocc ) {
1399
 
1400
  var idx, avg, tmp, cnt, dsc, myr, dsctxt;
1401
  if ( ! document.getElementById( 'wppa-rating-'+mocc ) ) return; // No rating bar
1402
-
1403
  avg = _wppaAvg[mocc][_wppaCurIdx[mocc]];
1404
  if ( typeof( avg ) == 'undefined' ) return;
1405
  tmp = avg.split( '|' );
1406
  avg = tmp[0];
1407
  cnt = tmp[1];
1408
-
1409
  dsc = _wppaDisc[mocc][_wppaCurIdx[mocc]];
1410
  myr = _wppaMyr[mocc][_wppaCurIdx[mocc]];
1411
 
1412
- wppaConsoleLog( 'avg='+avg+' cnt='+cnt+' dsc='+dsc+' myr='+myr );
1413
-
1414
  // Graphic display ?
1415
  if ( wppaRatingDisplayType == 'graphic' ) {
1416
  // Set Avg rating
1417
  _wppaSetRd( mocc, avg, '#wppa-avg-' );
1418
  // Set My rating
1419
  _wppaSetRd( mocc, myr, '#wppa-rate-' );
1420
-
1421
  // Display dislike
1422
- if ( myr == 0 ) { // If i did not vote yet, enable the thumb down
 
 
1423
  jQuery( '#wppa-dislike-'+mocc ).css( 'display', 'inline' );
1424
  jQuery( '#wppa-dislike-imgdiv-'+mocc ).css( 'display', 'inline' );
 
1425
  // Hide the filler only when there is a thumbdown
1426
  if ( document.getElementById( 'wppa-dislike-'+mocc ) ) jQuery( '#wppa-filler-'+mocc ).css( 'display', 'none' );
1427
  jQuery( '#wppa-dislike-'+mocc ).stop().fadeTo( 100, wppaStarOpacity );
1428
  }
1429
- else { // If i voted, disable thumb down
 
 
1430
  jQuery( '#wppa-dislike-'+mocc ).css( 'display', 'none' );
1431
  jQuery( '#wppa-dislike-imgdiv-'+mocc ).css( 'display', 'none' );
1432
  jQuery( '#wppa-filler-'+mocc ).css( 'display', 'inline' );
1433
  jQuery( '#wppa-filler-'+mocc ).stop().fadeTo( 100, wppaStarOpacity );
1434
- // Show filler with dislike count
1435
- if ( wppaShowDislikeCount ) {
1436
- dsctxt = wppaGetDislikeText( dsc,myr,true );
1437
- jQuery( '#wppa-filler-'+mocc ).attr( 'title', dsctxt );
1438
- }
1439
  }
1440
  }
1441
  // Numeric display
1442
- else {
1443
  // Set avg rating
1444
  jQuery( '#wppa-numrate-avg-'+mocc ).html( avg+' ( '+cnt+' ) ' );
1445
-
1446
  // Set My rating
1447
  if ( wppaRatingOnce && myr > 0 ) { // I did a rating and one allowed
1448
  jQuery( '#wppa-numrate-mine-'+mocc ).html( myr );
@@ -1462,30 +1465,29 @@ if ( typeof( avg ) == 'undefined' ) return;
1462
  }
1463
  }
1464
  jQuery( '#wppa-numrate-mine-'+mocc ).html( htm );
1465
- }
1466
-
1467
  // Display dislike
1468
- if ( myr == 0 ) { // If i did not vote yet, enable the thumb down
 
 
1469
  jQuery( '#wppa-dislike-'+mocc ).css( 'display', 'inline' );
1470
  jQuery( '#wppa-dislike-imgdiv-'+mocc ).css( 'display', 'inline' );
1471
  jQuery( '#wppa-filler-'+mocc ).css( 'display', 'none' );
1472
  jQuery( '#wppa-dislike-'+mocc ).stop().fadeTo( 100, wppaStarOpacity );
1473
  }
1474
- else { // If i voted, disable thumb down
 
 
1475
  jQuery( '#wppa-dislike-'+mocc ).css( 'display', 'none' );
1476
  jQuery( '#wppa-dislike-imgdiv-'+mocc ).css( 'display', 'none' );
1477
  jQuery( '#wppa-filler-'+mocc ).css( 'display', 'inline' );
1478
  }
1479
- if ( wppaShowDislikeCount ) {
1480
- dsctxt = wppaGetDislikeText( dsc,myr,false );
1481
- dsctxt += '&bull; ';
1482
- jQuery( '#wppa-discount-'+mocc ).html( dsctxt ); // Show count
1483
- jQuery( '#wppa-filler-'+mocc ).css( 'display', 'none' );
1484
- }
1485
- else {
1486
- jQuery( '#wppa-discount-'+mocc ).html( '' );
1487
- // jQuery( '#wppa-filler-'+mocc ).css( 'display', 'inline' );
1488
- }
1489
  }
1490
  // One Button Vote only?
1491
  if ( myr == 0 ) {
@@ -1496,18 +1498,21 @@ if ( typeof( avg ) == 'undefined' ) return;
1496
  }
1497
  jQuery( '#wppa-vote-count-'+mocc ).html( cnt );
1498
  }
1499
-
1500
  function wppaGetDislikeText( dsc,myr,incmine ) {
1501
 
 
 
1502
  if ( dsc == 0 && myr != 0 ) dsctxt = ' '+wppaNoDislikes+' ';
1503
  else if ( dsc == 1 ) dsctxt = ' '+wppa1Dislike+' ';
1504
  else dsctxt = ' '+dsc+' '+wppaDislikes+' ';
1505
  if ( incmine && myr < 0 ) dsctxt+=wppaIncludingMine;
1506
  return dsctxt;
 
1507
  }
1508
-
1509
  function _wppaSetRd( mocc, avg, where ) {
1510
-
1511
  var idx1 = parseInt( avg );
1512
  var idx2 = idx1 + 1;
1513
  var frac = avg - idx1;
@@ -1523,7 +1528,7 @@ function _wppaSetRd( mocc, avg, where ) {
1523
  jQuery( where+mocc+'-'+idx ).stop().fadeTo( 100, 1.0 );
1524
  }
1525
  else if ( idx == idx2 ) {
1526
- jQuery( where+mocc+'-'+idx ).stop().fadeTo( 100, opac );
1527
  }
1528
  else {
1529
  jQuery( where+mocc+'-'+idx ).stop().fadeTo( 100, wppaStarOpacity );
@@ -1534,7 +1539,7 @@ function _wppaSetRd( mocc, avg, where ) {
1534
 
1535
  function _wppaFollowMe( mocc, idx ) {
1536
 
1537
- if ( _wppaSSRuns[mocc] ) return; // Do not rate on a running show, what only works properly in Firefox
1538
 
1539
  if ( _wppaMyr[mocc][_wppaCurIdx[mocc]] != 0 && wppaRatingOnce ) return; // Already rated
1540
  if ( _wppaMyr[mocc][_wppaCurIdx[mocc]] < 0 ) return; // Disliked aleady
@@ -1544,7 +1549,7 @@ function _wppaFollowMe( mocc, idx ) {
1544
 
1545
  function _wppaLeaveMe( mocc, idx ) {
1546
 
1547
- if ( _wppaSSRuns[mocc] ) return; // Do not rate on a running show, what only works properly in Firefox
1548
 
1549
  if ( _wppaMyr[mocc][_wppaCurIdx[mocc]] != 0 && wppaRatingOnce ) return; // Already rated
1550
  if ( _wppaMyr[mocc][_wppaCurIdx[mocc]] < 0 ) return; // Disliked aleady
@@ -1556,14 +1561,14 @@ function _wppaLeaveMe( mocc, idx ) {
1556
  function _wppaValidateComment( mocc ) {
1557
 
1558
  var photoid = _wppaId[mocc][_wppaCurIdx[mocc]];
1559
-
1560
  // Process name
1561
  var name = jQuery( '#wppa-comname-'+mocc ).val( );
1562
  if ( name.length<1 ) {
1563
  alert( wppaPleaseName );
1564
  return false;
1565
  }
1566
-
1567
  // Process email address
1568
  if ( wppaEmailRequired ) {
1569
  var email = jQuery( '#wppa-comemail-'+mocc ).val( );
@@ -1574,26 +1579,26 @@ function _wppaValidateComment( mocc ) {
1574
  return false;
1575
  }
1576
  }
1577
-
1578
  // Process comment
1579
  var text = jQuery( '#wppa-comment-'+mocc ).val( );
1580
  if ( text.length<1 ) {
1581
  alert( wppaPleaseComment );
1582
  return false;
1583
  }
1584
-
1585
  return true;
1586
  }
1587
 
1588
  function _wppaGo( url ) {
1589
-
1590
- document.location = url; // Go!
1591
  }
1592
 
1593
  function _wppaBbb( mocc,where,act ) {
1594
-
1595
  if ( _wppaSSRuns[mocc] ) return;
1596
-
1597
  var elm = '#bbb-'+mocc+'-'+where;
1598
  switch ( act ) {
1599
  case 'show':
@@ -1617,9 +1622,9 @@ function _wppaBbb( mocc,where,act ) {
1617
  }
1618
 
1619
  function _wppaUbb( mocc,where,act ) {
1620
-
1621
  // if ( _wppaSSRuns[mocc] ) return;
1622
-
1623
  var elm = '#ubb-'+mocc+'-'+where;
1624
 
1625
  switch ( act ) {
@@ -1666,25 +1671,25 @@ function _wppaUbb( mocc,where,act ) {
1666
  function wppaOpenComments( mocc ) {
1667
 
1668
  if ( _wppaSSRuns[mocc] ) _wppaStop( mocc );
1669
-
1670
  // Show existing comments
1671
  jQuery( '#wppa-comtable-wrap-'+mocc ).css( 'display', 'block' );
1672
-
1673
  // Show the input form table
1674
  jQuery( '#wppa-comform-wrap-'+mocc ).css( 'display', 'block' );
1675
-
1676
  // Hide the comment footer
1677
  jQuery( '#wppa-comfooter-wrap-'+mocc ).css( 'display', 'none' );
1678
-
1679
  // Do autocol to fix a layout problem
1680
- wppaColWidth[mocc] = 0;
1681
  setTimeout( '_wppaDoAutocol( '+mocc+' )', 100 );
1682
  }
1683
 
1684
  function _wppaShowMetaData( mocc, key ) {
1685
-
1686
  // What to do when the slideshow is NOT running
1687
- if ( ! _wppaSSRuns[mocc] && ! __wppaOverruleRun ) {
1688
  if ( key == 'show' ) { // Show
1689
  if ( wppaAutoOpenComments ) {
1690
  // Show existing comments
@@ -1703,7 +1708,7 @@ function _wppaShowMetaData( mocc, key ) {
1703
  if ( wppaShareHideWhenRunning ) {
1704
  jQuery( '#wppa-share-'+mocc ).css( 'display', '' );
1705
  }
1706
-
1707
  // Fotomoto
1708
  wppaFotomotoToolbar( mocc, _wppaHiresUrl[mocc][_wppaCurIdx[mocc]] );
1709
  // wppaFotomotoToolbar( mocc, _wppaUrl[mocc][_wppaCurIdx[mocc]] );
@@ -1722,7 +1727,7 @@ function _wppaShowMetaData( mocc, key ) {
1722
  // Show the comment footer
1723
  jQuery( '#wppa-comfooter-wrap-'+mocc ).css( 'display', 'block' );
1724
  // Fade the browse arrows out
1725
- // jQuery( '.wppa-prev-'+mocc ).fadeOut( 300 );
1726
  // jQuery( '.wppa-next-'+mocc ).fadeOut( 300 );
1727
  wppaFotomotoHide( mocc );
1728
  }
@@ -1739,11 +1744,11 @@ function _wppaShowMetaData( mocc, key ) {
1739
  jQuery( '#wppa-share-'+mocc ).css( 'display', 'none' );
1740
  }
1741
  // Fotomoto
1742
- // if ( wppaFotomotoHideWhenRunning )
1743
  // wppaFotomotoHide( mocc );
1744
  }
1745
  }
1746
-
1747
  // What to do always, independant of slideshow is running
1748
  if ( key == 'show' ) {
1749
  // Show title and description
@@ -1752,21 +1757,21 @@ function _wppaShowMetaData( mocc, key ) {
1752
  // Display counter
1753
  jQuery( "#counter-"+mocc ).css( 'visibility', 'visible' );
1754
  // Display iptc
1755
- jQuery( "#iptccontent-"+mocc ).css( 'visibility', 'visible' );
1756
- jQuery( "#exifcontent-"+mocc ).css( 'visibility', 'visible' );
1757
  }
1758
  else {
1759
  // Hide title and description
1760
- // jQuery( "#imagedesc-"+mocc ).css( 'visibility', 'hidden' );
1761
  // jQuery( "#imagetitle-"+mocc ).css( 'visibility', 'hidden' );
1762
- // Hide counter
1763
  jQuery( "#counter-"+mocc ).css( 'visibility', 'hidden' );
1764
  // Fade the browse arrows out
1765
- jQuery( '.wppa-prev-'+mocc ).css( 'visibility', 'hidden' ); // fadeOut( 300 );
1766
  jQuery( '.wppa-next-'+mocc ).css( 'visibility', 'hidden' ); // fadeOut( 300 );
1767
  // Hide iptc
1768
- jQuery( "#iptccontent-"+mocc ).css( 'visibility', 'hidden' );
1769
- jQuery( "#exifcontent-"+mocc ).css( 'visibility', 'hidden' );
1770
 
1771
  }
1772
  }
2
  //
3
  // Contains slideshow modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
+ //
6
+ var wppaJsSlideshowVersion = '6.3.17';
7
 
8
  // This is an entrypoint to load the slide data
9
+ function wppaStoreSlideInfo(
10
+ mocc, // The occurrance of a wppa invocation
11
  // ( php: $wppa['master_occur'] )
12
  id, // The index in the slide array
13
  url, // The url to the fs image file
14
+ size,
15
+ width,
16
+ height,
17
+ fullname,
18
+ name,
19
+ desc,
20
  photoid, // The photo id
21
  avgrat, // Average rating
22
  discount, // Dislike count
23
  myrat, // My rating
24
  rateurl, // The rating url
25
+ linkurl,
26
+ linktitle,
27
+ linktarget,
28
+ iwtimeout,
29
  commenthtml, // The html code for the comment box
30
+ iptchtml,
31
+ exifhtml,
32
  lbtitle, // Lightbox subtext
33
+ shareurl,
34
+ smhtml,
35
+ ogdsc,
36
  hiresurl, // The url to the hi res ( source ) image file
37
  videohtml, // The html for the video, or ''
38
  audiohtml
85
  wppaVideoPlaying[mocc] = false;
86
  wppaAudioPlaying[mocc] = false;
87
  }
88
+
89
  // Cursor
90
  cursor = 'default';
91
  if ( linkurl != '' ) {
97
 
98
  // Is it a video?
99
  _wppaIsVideo[mocc][id] = ( '' != videohtml );
100
+
101
  // Fill _wppaSlides[mocc][id]
102
  if ( _wppaIsVideo[mocc][id] ) {
103
  _wppaSlides[mocc][id] = ' alt="' + wppaTrimAlt( name ) + '" class="theimg theimg-'+mocc+' big" ';
108
  else {
109
  _wppaSlides[mocc][id] = ' src="' + url + '" alt="' + wppaTrimAlt( name ) + '" class="theimg theimg-'+mocc+' big stereo" ';
110
  }
111
+
112
  // Add swipe
113
  if ( wppaSlideSwipe ) {
114
  _wppaSlides[mocc][id] += 'ontouchstart="wppaTouchStart( event, this.id, '+mocc+' );" ontouchend="wppaTouchEnd( event );" ontouchmove="wppaTouchMove( event );" ontouchcancel="wppaTouchCancel( event );" ';
115
  }
116
+
117
  // Add 'old' width and height only for non-auto
118
  if ( ! wppaAutoColumnWidth[mocc] ) _wppaSlides[mocc][id] += 'width="' + width + '" height="' + height + '" ';
119
  if ( _wppaIsVideo[mocc][id] ) {
138
  }
139
  */
140
  }
141
+
142
  _wppaFullNames[mocc][id] = fullname;
143
  _wppaNames[mocc][id] = name;
144
  _wppaDsc[mocc][id] = desc;
150
  _wppaVRU[mocc][id] = rateurl; // url that performs the vote and returns to the page
151
  _wppaLinkUrl[mocc][id] = linkurl;
152
  _wppaLinkTitle[mocc][id] = linktitle;
153
+
154
  if ( linktarget != '' ) {
155
  _wppaLinkTarget[mocc][id] = linktarget;
156
  }
160
  else {
161
  _wppaLinkTarget[mocc][id] = '_self';
162
  }
163
+
164
  _wppaCommentHtml[mocc][id] = commenthtml;
165
  _wppaIptcHtml[mocc][id] = iptchtml;
166
  _wppaExifHtml[mocc][id] = exifhtml;
193
  function wppaStartStop( mocc, index ) {
194
  if ( _wppaIsBusy[mocc] ) {
195
  // Remember there is a toggle pending
196
+ _wppaTP[mocc] = index;
197
  }
198
  else {
199
+ if ( _wppaSSRuns[mocc] ) {
200
  // Stop it
201
  _wppaStop( mocc );
202
  jQuery( '#wppa-startstop-icon-' + mocc ).attr( 'src', wppaStartSymbolUrl );
296
  if ( ! _wppaSSRuns[mocc] ) {
297
  _wppaFilmNoMove[mocc] = true;
298
  _wppaGoto( mocc, idx );
299
+ }
300
  }
301
 
302
  function wppaGotoKeepState( mocc, idx ) {
306
  _wppaGotoKeepState( mocc, idx );
307
  }
308
 
309
+ function _wppaGotoKeepState( mocc, idx ) {
310
  if ( _wppaSSRuns[mocc] ) {
311
  _wppaGotoRunning( mocc,idx );
312
  }
335
  setTimeout( '_wppaNextSlide( '+mocc+', \''+mode+'\' )', 500 ); // Retry after 500 ms
336
  return;
337
  }
338
+
339
  // Stop any playing video
340
  wppaStopVideo( mocc );
341
+
342
  // Stop any playing audio
343
  wppaStopAudio();
344
+
345
  // Paused??
346
  if ( 'auto' == mode ) {
347
  if ( wppaSlidePause[mocc] ) {
351
  }
352
  }
353
  // Kill an old timed request, while stopped
354
+ if ( ! _wppaSSRuns[mocc] && 'auto' == mode ) return;
355
  // Empty slideshow?
356
  if ( ! _wppaSlides[mocc] ) return;
357
  // Do not animate single image
358
+ if ( _wppaSlides[mocc].length < 2 && ! _wppaFirst[mocc] ) return;
359
  // Reset request?
360
  if ( ! _wppaSSRuns[mocc] && 'reset' == mode ) {
361
  _wppaSSRuns[mocc] = true;
364
 
365
  // No longer busy voting
366
  _wppaVoteInProgress = false;
367
+
368
  // Set the busy flag
369
  _wppaIsBusy[mocc] = true;
370
 
371
  // Hide metadata while changing image
372
  if ( _wppaSSRuns[mocc] ) _wppaShowMetaData( mocc, 'hide' );
373
+
374
  // Find index of next slide if in auto mode and not stop in progress
375
  if ( _wppaSSRuns[mocc] ) {
376
  _wppaNxtIdx[mocc] = _wppaCurIdx[mocc] + 1;
393
  else jQuery( '#map-canvas-'+mocc ).css( 'display', 'none' );
394
  }
395
  else jQuery( '#map-canvas-'+mocc ).css( 'display', 'none' );
396
+
397
  // Set numbar backgrounds and fonts
398
+ jQuery( '[id^=wppa-numbar-' + mocc + '-]' ).css( { backgroundColor: wppaBGcolorNumbar,
399
  borderColor: wppaBcolorNumbar,
400
  fontFamily: wppaFontFamilyNumbar,
401
  fontSize: wppaFontSizeNumbar,
403
  fontWeight: wppaFontWeightNumbar
404
  });
405
 
406
+ jQuery( "#wppa-numbar-" + mocc + "-" + _wppaNxtIdx[mocc] ).css( { backgroundColor: wppaBGcolorNumbarActive,
407
  borderColor: wppaBcolorNumbarActive,
408
  fontFamily: wppaFontFamilyNumbarActive,
409
  fontSize: wppaFontSizeNumbarActive,
416
  jQuery( '[id^=wppa-numbar-' + mocc + '-]' ).html( ' . ' );
417
  jQuery( "#wppa-numbar-" + mocc + "-" + _wppaNxtIdx[mocc] ).html( ' ' + ( _wppaNxtIdx[mocc]+1 ) + ' ' );
418
  }
419
+
420
  // first:
421
  if ( _wppaFirst[mocc] ) {
422
  if ( _wppaCurIdx[mocc] != -1 ) {
423
  wppaMakeTheSlideHtml( mocc, '0', _wppaCurIdx[mocc] );
424
  }
425
  wppaMakeTheSlideHtml( mocc, '1', _wppaNxtIdx[mocc] );
426
+
427
  // Display name, description and comments
428
  jQuery( "#imagedesc-"+mocc ).html( _wppaDsc[mocc][_wppaCurIdx[mocc]] );
429
  jQuery( "#imagetitle-"+mocc ).html( wppaMakeNameHtml( mocc ) );
430
  jQuery( "#wppa-comments-"+mocc ).html( _wppaCommentHtml[mocc][_wppaCurIdx[mocc]] );
431
  jQuery( "#iptc-"+mocc ).html( _wppaIptcHtml[mocc][_wppaCurIdx[mocc]] );
432
  jQuery( "#exif-"+mocc ).html( _wppaExifHtml[mocc][_wppaCurIdx[mocc]] );
433
+
434
  // Display counter and arrow texts
435
  if ( wppaIsMini[mocc] || wppaGetContainerWidth( mocc ) < wppaMiniTreshold ) {
436
  jQuery( '#prev-arrow-'+mocc ).html( '&laquo;&nbsp;'+wppaPrevP );
449
  else { // load next img ( backg )
450
  wppaMakeTheSlideHtml( mocc, bg, _wppaNxtIdx[mocc] );
451
  }
452
+
453
  _wppaLoadSpinner( mocc );
454
+
455
  _wppaFirst[mocc] = false;
456
+
457
  // See if the filmstrip needs wrap around before shifting to the right location
458
  _wppaCheckRewind( mocc );
459
 
468
 
469
  var fg = _wppaFg[mocc];
470
  var bg = 1 - fg;
471
+
472
  // Wait for load complete
473
  var elm = document.getElementById( 'theimg'+bg+"-"+mocc );
474
  if ( elm ) { // Exists
485
 
486
  // Update lightbox
487
  wppaUpdateLightboxes();
488
+
489
  // Remove spinner
490
  _wppaUnloadSpinner( mocc );
491
+
492
  // Hide subtitles
493
  if ( _wppaSSRuns[mocc] != -1 ) { // not stop in progress
494
  if ( ! _wppaToTheSame ) {
495
  _wppaShowMetaData( mocc, 'hide' );
496
  }
497
  }
498
+
499
  // change foreground
500
  _wppaFg[mocc] = 1 - _wppaFg[mocc];
501
  fg = _wppaFg[mocc];
507
 
508
  var nw = _wppaFg[mocc];
509
  var ol = 1 - nw;
510
+
511
  var olIdx = _wppaCurIdx[mocc];
512
  var nwIdx = _wppaNxtIdx[mocc];
513
+
514
  var olSli = "#theslide"+ol+"-"+mocc;
515
  var nwSli = "#theslide"+nw+"-"+mocc;
516
+
517
  var olImg = "#theimg"+ol+"-"+mocc;
518
  var nwImg = "#theimg"+nw+"-"+mocc;
519
+
520
  var w = parseInt( jQuery( olSli ).css( 'width' ) );
521
  var dir = 'nil';
522
 
525
  if ( olIdx == nwIdx+1 ) dir = 'right';
526
  if ( olIdx == _wppaSlides[mocc].length-1 && 0 == nwIdx && wppaSlideWrap ) dir = 'left';
527
  if ( 0 == olIdx && nwIdx == _wppaSlides[mocc].length-1 && wppaSlideWrap ) dir = 'right';
528
+
529
  // Not known yet?
530
  if ( 'nil' == dir ) {
531
  if ( olIdx < nwIdx ) dir = 'left';
537
  jQuery( nwSli ).css( {marginLeft:0, width:w});
538
 
539
  wppaFormatSlide( mocc );
540
+
541
  switch ( wppaAnimationType ) {
542
+
543
+ case 'fadeover':
544
+ jQuery( olImg ).fadeOut( wppaAnimationSpeed );
545
+ jQuery( nwImg ).fadeIn( wppaAnimationSpeed, _wppaNextSlide_4( mocc ) );
546
  break;
547
+
548
+ case 'fadeafter':
549
+ jQuery( olImg ).fadeOut( wppaAnimationSpeed );
550
+ jQuery( nwImg ).delay( wppaAnimationSpeed ).fadeIn( wppaAnimationSpeed, _wppaNextSlide_4( mocc ) );
551
  break;
552
+
553
  case 'swipe':
554
  switch ( dir ) {
555
  case 'left':
570
  break;
571
  }
572
  break;
573
+
574
  case 'stackon':
575
  switch ( dir ) {
576
  case 'left':
593
  break;
594
  }
595
  break;
596
+
597
  case 'stackoff':
598
  switch ( dir ) {
599
  case 'left':
616
  break;
617
  }
618
  break;
619
+
620
  case 'turnover':
621
  switch ( dir ) {
622
  case 'left':
647
  break;
648
  }
649
  break;
650
+
651
  default:
652
+ alert( 'Animation type '+wppaAnimationType+' is not supported in this version' );
653
+
654
  }
655
  }
656
 
665
  // Make sure title and onclick of the new image ( slide ) are in sight
666
  jQuery( olSli ).css( {zIndex:80});
667
  jQuery( nwSli ).css( {zIndex:81});
668
+
669
  // Next is now current // put here for swipe
670
  _wppaCurIdx[mocc] = _wppaNxtIdx[mocc];
671
 
672
  wppaFormatSlide( mocc );
673
+
674
  // Display counter and arrow texts
675
  if ( wppaIsMini[mocc] || wppaGetContainerWidth( mocc ) < wppaMiniTreshold ) {
676
  jQuery( '#counter-'+mocc ).html( ( _wppaCurIdx[mocc]+1 )+' / '+_wppaSlides[mocc].length );
684
 
685
  // Adjust filmstrip
686
  _wppaAdjustFilmstrip( mocc );
687
+
688
  // Set rating mechanism
689
  _wppaSetRatingDisplay( mocc );
690
+
691
  // Wait for almost next slide
692
+ setTimeout( '_wppaNextSlide_5( '+mocc+' )', _wppaTextDelay );
693
  }
694
  function _wppaNextSlide_5( mocc ) {
695
 
696
  // If we are going to the same slide, there is no need to hide and restore the subtitles and commentframe
697
  if ( ! _wppaToTheSame ) {
698
+
699
  // Restore subtitles
700
  jQuery( '#imagedesc-'+mocc ).html( _wppaDsc[mocc][_wppaCurIdx[mocc]] );
701
  if ( wppaHideWhenEmpty ) {
708
  }
709
  }
710
  jQuery( "#imagetitle-"+mocc ).html( wppaMakeNameHtml( mocc ) );
711
+
712
  // Restore comments html
713
  jQuery( "#wppa-comments-"+mocc ).html( _wppaCommentHtml[mocc][_wppaCurIdx[mocc]] );
714
+
715
  // Restor IPTC
716
  jQuery( "#iptc-"+mocc ).html( _wppaIptcHtml[mocc][_wppaCurIdx[mocc]] );
717
  jQuery( "#exif-"+mocc ).html( _wppaExifHtml[mocc][_wppaCurIdx[mocc]] );
718
+
719
  // Restore share html
720
  jQuery( "#wppa-share-"+mocc ).html( _wppaShareHtml[mocc][_wppaCurIdx[mocc]] );
721
  }
722
  _wppaToTheSame = false; // This has now been worked out
723
 
724
  // End of non wrapped show?
725
+ if ( _wppaSSRuns[mocc] &&
726
+ ! wppaSlideWrap &&
727
+ ( ( _wppaCurIdx[mocc] + 1 ) == _wppaSlides[mocc].length ) ) {
728
  _wppaIsBusy[mocc] = false;
729
  _wppaStop( mocc ); // stop
730
  return;
731
  }
732
 
733
  // Re-display the metadata
734
+ _wppaShowMetaData( mocc, 'show' );
735
+
736
  // Almost done, finalize
737
  if ( _wppaTP[mocc] != -2 ) { // A Toggle pending?
738
  var index = _wppaTP[mocc]; // Remember the pending startstop request argument
742
  if ( ! wppaIsMini[mocc] ) { // Not in a widget
743
  _bumpViewCount( _wppaId[mocc][_wppaCurIdx[mocc]] ); // Register a view
744
  }
745
+ _wppaDoAutocol(mocc);
746
  wppaStartStop( mocc, index ); // Do as if the toggle request happens now
747
  return;
748
  }
749
  else { // No toggle pending
750
  wppaUpdateLightboxes(); // Refresh lightbox
751
+
752
+ // Update url and title if ( ( this is non-mini ) AND
753
  // ( this is the only running non-mini OR there are no running non-minis ) )
754
  if ( ! wppaIsMini[mocc] ) { // This is NOT a widget
755
+
756
  // Prepare visual url ( for addressline )
757
  var visurl = wppaGetCurrentFullUrl( mocc, _wppaCurIdx[mocc] );
758
  if ( '' == visurl ) {
759
  visurl = _wppaShareUrl[mocc][_wppaCurIdx[mocc]];
760
  }
761
+
762
  // Update possible QR Widget
763
  if ( typeof( wppaQRUpdate ) != 'undefined' ) {
764
  wppaQRUpdate( _wppaShareUrl[mocc][_wppaCurIdx[mocc]] );
765
  }
766
+
767
  // Push state if not slphoto
768
  if ( ! _wppaSSRuns[mocc] ) { // This is not running
769
  if ( _wppaSlides[mocc].length > 1 ) {
771
  }
772
  }
773
  }
774
+
775
  // If running: Wait for next slide
776
+ if ( _wppaSSRuns[mocc] ) {
777
+ setTimeout( '_wppaNextSlide( '+mocc+', "auto" )', _wppaTimeOut[mocc] );
778
+ }
779
  }
780
+
781
  // If glossery tooltip on board...
782
  jQuery(document).trigger( 'glossaryTooltipReady' );
783
+
784
  _wppaDidGoto[mocc] = false; // Is worked out now
785
  _wppaIsBusy[mocc] = false; // No longer busy
786
  if ( ! wppaIsMini[mocc] ) { // Not in a widget
787
  _bumpViewCount( _wppaId[mocc][_wppaCurIdx[mocc]] ); // Register a view
788
  }
789
+
790
  _wppaDoAutocol(mocc);
791
+
792
  wppaStopAudio();
793
+
794
  if ( wppaSlideAudioStart ) {
795
  var elms = jQuery( '.wppa-audio-'+_wppaId[mocc][_wppaCurIdx[mocc]]+'-'+mocc );
796
  if ( elms.length > 0 ) {
814
  var contw = wppaColWidth[mocc];
815
  var elm = document.getElementById( imgid );
816
  var audios = jQuery( '.wppa-audio-'+mocc );
817
+
818
  if ( ! elm ) return; // No slide present
819
  if ( typeof( contw ) == 'undefined' || contw == 0 ) {
820
+ contw = wppaGetContainerWidth( mocc );
821
  wppaColWidth[mocc] = contw;
822
  }
823
  var natwidth = elm.naturalWidth;
833
  var valign = wppaFullValign[mocc]; if ( typeof( valign )=='undefined' ) valign = 'none';
834
  var halign = wppaFullHalign[mocc]; if ( typeof( halign )=='undefined' ) halign = 'none';
835
  var stretch = wppaStretch;
836
+
837
  // vars to be calculated:
838
  var imgw, imgh; // image width and height
839
  var margl, margt; // image margins
840
  var slidew, slideh; // slide width and height
841
  var framew, frameh; // frame
842
+
843
  // Calculate
844
  if ( ponly ) {
845
  imgw = contw - delta;
883
  // Align vertical
884
  if ( valign != 'default' && valign != 'none' ) {
885
  switch ( valign ) {
886
+ case 'top':
887
  margt = 0;
888
  break;
889
  case 'center':
927
  jQuery( '#'+imgid ).css( {marginLeft:'auto', marginRight:'auto'});
928
  jQuery( '#'+frameid ).css( {marginLeft:margl});
929
  }
930
+
931
  // Size audio
932
  if ( audios.length > 0 ) {
933
  var i = 0;
935
  i++;
936
  }
937
  }
938
+
939
  // Size Big Browse Buttons
940
  var bbbwidth = parseInt( framew/3 );
941
  var leftmarg = bbbwidth*2;
942
+
943
  jQuery( '#bbb-'+mocc+'-l' ).css( {height:frameh, width:bbbwidth, left:0});
944
  jQuery( '#bbb-'+mocc+'-r' ).css( {height:frameh, width:bbbwidth, left:leftmarg});
945
  }
949
  var result = '';
950
 
951
  if ( _wppaCurIdx[mocc] < 0 ) return '';
952
+
953
  if ( wppaIsMini[mocc] || _wppaIsVideo[mocc][_wppaCurIdx[mocc]] ) {
954
  result = _wppaFullNames[mocc][_wppaCurIdx[mocc]];
955
  }
989
  var theTitle = 'title';
990
  if ( wppaLightBox[mocc] == 'wppa') theTitle = 'data-lbtitle';
991
  var mmEvents = wppaLightBox[mocc] == '' ? ' onpause="wppaVideoPlaying['+mocc+'] = false;" onplay="wppaVideoPlaying['+mocc+'] = true;"' : '';
992
+
993
  // Link url explicitly given ?
994
+ if ( _wppaLinkUrl[mocc][idx] != '' ) {
995
  if ( wppaSlideToFullpopup ) {
996
  theHtml = '<a onclick="wppaStopAudio();'+_wppaLinkUrl[mocc][idx]+'" target="'+_wppaLinkTarget[mocc][idx]+'" title="'+_wppaLinkTitle[mocc][idx]+'">'+
997
  '<'+imgVideo+mmEvents+' title="'+_wppaLinkTitle[mocc][idx]+'" id="theimg'+bgfg+'-'+mocc+'" '+_wppaSlides[mocc][idx]+
1003
  '</a>';
1004
  }
1005
  }
1006
+
1007
  // No url, maybe lightbox?
1008
  else {
1009
+
1010
  // Lightbox ?
1011
+ if ( wppaLightBox[mocc] == '' ) {
1012
  theHtml = '<'+imgVideo+mmEvents+' title="'+_wppaNames[mocc][idx]+'" id="theimg'+bgfg+'-'+mocc+'" '+_wppaSlides[mocc][idx];
1013
  }
1014
+
1015
  // Lightbox
1016
  else {
1017
  var html = '';
1018
  var i = 0;
1019
  var set = wppaLightboxSingle[mocc] ? '' : '[slide-'+mocc+'-'+bgfg+']';
1020
+
1021
+ // Before current slide // This does NOT work on lightbox 3 !
1022
  // if ( wppaLightBox[mocc] == 'wppa' ) {
1023
  while ( i<idx ) {
1024
  // Make sure fullsize
1030
  }
1031
 
1032
  html += '<a href="'+url+'"' +
1033
+ ( ( _wppaIsVideo[mocc][i] ) ?
1034
  ' data-videonatwidth="'+_wppaVideoNatWidth[mocc][i]+'"' +
1035
  ' data-videonatheight="'+_wppaVideoNatHeight[mocc][i]+'"' +
1036
  ' data-videohtml="'+encodeURI( _wppaVideoHtml[mocc][i] )+'"' : '' ) +
1037
+ ( ( _wppaAudioHtml[mocc][i] != '' ) ?
1038
  ' data-audiohtml="'+encodeURI( _wppaAudioHtml[mocc][i] )+'"' : '' ) +
1039
  ' '+theTitle+'="'+_wppaLbTitle[mocc][i]+'"' +
1040
  ' '+wppaRel+'="'+wppaLightBox[mocc]+set+'"></a>';
1041
  i++;
1042
  }
1043
  // }
1044
+
1045
  // Current slide
1046
  if ( ( wppaOvlHires && _wppaIsVideo[mocc][i] ) || ( wppaLightBox[mocc] != 'wppa' ) ) {
1047
  url = _wppaHiresUrl[mocc][idx];
1053
  html += '<a href="'+url+'"' +
1054
  ' onclick="wppaStopAudio();"' +
1055
  ' target="'+_wppaLinkTarget[mocc][idx]+'"' +
1056
+ ( ( _wppaIsVideo[mocc][i] ) ?
1057
  ' data-videonatwidth="'+_wppaVideoNatWidth[mocc][idx]+'"' +
1058
  ' data-videonatheight="'+_wppaVideoNatHeight[mocc][idx]+'"' +
1059
  ' data-videohtml="'+encodeURI( _wppaVideoHtml[mocc][idx] )+'"' : '' ) +
1060
+ ( ( _wppaAudioHtml[mocc][i] != '' ) ?
1061
  ' data-audiohtml="'+encodeURI( _wppaAudioHtml[mocc][idx] )+'"' : '' ) +
1062
  ' '+theTitle+'="'+_wppaLbTitle[mocc][idx]+'"' +
1063
  ' '+wppaRel+'="'+wppaLightBox[mocc]+set+'">'+
1064
  '<'+imgVideo+mmEvents+' title="'+_wppaLinkTitle[mocc][idx]+'" id="theimg'+bgfg+'-'+mocc+'" '+_wppaSlides[mocc][idx]+
1065
  '</a>';
1066
+
1067
+ // After current slide // This does NOT work on lightbox 3 !
1068
  // if ( wppaLightBox[mocc] == 'wppa' ) {
1069
  i = idx + 1;
1070
  while ( i<_wppaUrl[mocc].length ) {
1075
  url = wppaMakeFullsizeUrl( _wppaUrl[mocc][i] );
1076
  }
1077
  html += '<a href="'+url+'"' +
1078
+ ( ( _wppaIsVideo[mocc][i] ) ?
1079
  ' data-videonatwidth="'+_wppaVideoNatWidth[mocc][i]+'"' +
1080
  ' data-videonatheight="'+_wppaVideoNatHeight[mocc][i]+'"' +
1081
  ' data-videohtml="'+encodeURI( _wppaVideoHtml[mocc][i] )+'"' : '' ) +
1082
+ ( ( _wppaAudioHtml[mocc][i] != '' ) ?
1083
  ' data-audiohtml="'+encodeURI( _wppaAudioHtml[mocc][i] )+'"' : '' ) +
1084
  ' '+theTitle+'="'+_wppaLbTitle[mocc][i]+'"' +
1085
  ' '+wppaRel+'="'+wppaLightBox[mocc]+set+'"></a>';
1089
  theHtml = html; // nieuw
1090
  }
1091
  }
1092
+
1093
  if ( _wppaAudioHtml[mocc][idx] != '' ) {
1094
  // if ( idx == 0 ) wppaFirstSlideAudio = true;
1095
  theHtml += '<audio' +
1113
  _wppaAudioHtml[mocc][idx] +
1114
  '</audio>';
1115
  }
1116
+
1117
  // Remove empty titles for browsers that display empty tooltip boxes
1118
  theHtml = theHtml.replace( /title=""/g, '' );
1119
+
1120
  jQuery( "#theslide"+bgfg+"-"+mocc ).html( theHtml ); // nieuw
1121
+
1122
  }
1123
 
1124
  // Adjust the filmstrip
1125
  function _wppaAdjustFilmstrip( mocc ) {
1126
 
1127
  if ( ! document.getElementById( 'wppa-filmstrip-'+mocc ) ) return; // No filmstrip this mocc
1128
+
1129
  // Remove class from active thumb
1130
  jQuery( '.wppa-film-'+mocc ).removeClass( 'wppa-filmthumb-active' );
1131
+
1132
  if ( ! _wppaFilmNoMove[mocc] ) {
1133
  var xoffset;
1134
  xoffset = wppaFilmStripLength[mocc] / 2 - ( _wppaCurIdx[mocc] + 0.5 + wppaPreambule ) * wppaThumbnailPitch[mocc] - wppaFilmStripMargin[mocc];
1138
  else {
1139
  _wppaFilmNoMove[mocc] = false; // reset
1140
  }
1141
+
1142
  // make them visible...
1143
  if ( _wppaCurIdx[mocc] != -1 ) {
1144
  var from = _wppaCurIdx[mocc] - 10; if ( from < 0 ) from = 0;
1165
  index++;
1166
  }
1167
  }
1168
+
1169
  // Apply class to active filmthumb
1170
  jQuery( '#wppa-film-'+_wppaCurIdx[mocc]+'-'+mocc ).addClass( 'wppa-filmthumb-active' );
1171
  }
1178
  // Find next index
1179
  _wppaNxtIdx[mocc] = _wppaCurIdx[mocc] + 1;
1180
  if ( _wppaNxtIdx[mocc] == _wppaSlides[mocc].length ) _wppaNxtIdx[mocc] = 0;
1181
+ // And go!
1182
  _wppaNextSlide( mocc, 0 );
1183
  }
1184
 
1189
  // Find next index
1190
  _wppaNxtIdx[mocc] = _wppaCurIdx[mocc] + n;
1191
  while ( _wppaNxtIdx[mocc] >= _wppaSlides[mocc].length ) _wppaNxtIdx[mocc] -= _wppaSlides[mocc].length;
1192
+ // And go!
1193
  _wppaNextSlide( mocc, 0 );
1194
  }
1195
 
1222
  }
1223
 
1224
  function _wppaPrev( mocc ) {
1225
+
1226
  // Check for begin of non wrapped show
1227
  if ( ! wppaSlideWrap && _wppaCurIdx[mocc] == 0 ) return;
1228
  // Find previous index
1229
  _wppaNxtIdx[mocc] = _wppaCurIdx[mocc] - 1;
1230
  if ( _wppaNxtIdx[mocc] < 0 ) _wppaNxtIdx[mocc] = _wppaSlides[mocc].length - 1;
1231
+ // And go!
1232
  _wppaNextSlide( mocc, 0 );
1233
  }
1234
 
1235
  function _wppaPrevN( mocc, n ) {
1236
+
1237
  // Check for begin of non wrapped show
1238
  if ( ! wppaSlideWrap && _wppaCurIdx[mocc] < n ) return;
1239
  // Find previous index
1240
  _wppaNxtIdx[mocc] = _wppaCurIdx[mocc] - n;
1241
  while ( _wppaNxtIdx[mocc] < 0 ) _wppaNxtIdx[mocc] += _wppaSlides[mocc].length;
1242
+ // And go!
1243
  _wppaNextSlide( mocc, 0 );
1244
  }
1245
 
1246
  function _wppaGoto( mocc, idx ) {
1247
+
1248
  _wppaToTheSame = ( _wppaNxtIdx[mocc] == idx );
1249
  _wppaNxtIdx[mocc] = idx;
1250
  _wppaNextSlide( mocc, 0 );
1252
 
1253
  function _wppaGotoRunning( mocc, idx ) {
1254
  //wait until not bussy
1255
+ if ( _wppaIsBusy[mocc] ) {
1256
  setTimeout( '_wppaGotoRunning( '+mocc+',' + idx + ' )', 10 ); // Try again after 10 ms
1257
  return;
1258
  }
1259
+
1260
  wppaConsoleLog( 'GotoRunning '+mocc );
1261
 
1262
  _wppaSSRuns[mocc] = false; // we don't want timed loop to occur during our work
1263
+
1264
  _wppaToTheSame = ( _wppaNxtIdx[mocc] == idx );
1265
  _wppaNxtIdx[mocc] = idx;
1266
  __wppaOverruleRun = true;
1267
  _wppaNextSlide( mocc, "manual" ); // enqueue new transition
1268
+
1269
  _wppaGotoContinue( mocc );
1270
  }
1271
 
1278
  }
1279
 
1280
  function _wppaStart( mocc, idx ) {
1281
+
1282
  if ( idx == -2 ) { // Init at first without my rating
1283
  var i = 0;
1284
  idx = 0;
1292
  }
1293
 
1294
  if ( idx > -1 ) { // Init still at index idx
1295
+ jQuery( '#startstop-'+mocc ).html( wppaStart+' '+wppaSlideShow );
1296
  jQuery( '#speed0-'+mocc ).css( 'display', 'none' );
1297
  jQuery( '#speed1-'+mocc ).css( 'display', 'none' );
1298
  _wppaNxtIdx[mocc] = idx;
1306
  jQuery( '#startstop-'+mocc ).html( wppaStop );
1307
  jQuery( '#speed0-'+mocc ).css( 'display', 'inline' );
1308
  jQuery( '#speed1-'+mocc ).css( 'display', 'inline' );
1309
+ _wppaShowMetaData( mocc, 'hide' );
1310
  jQuery( '#bc-pname-'+mocc ).html( wppaSlideShow );
1311
  }
1312
+
1313
  // Both cases:
1314
  _wppaSetRatingDisplay( mocc );
1315
  }
1316
 
1317
  function _wppaStop( mocc ) {
1318
+
1319
  _wppaSSRuns[mocc] = false;
1320
+ jQuery( '#startstop-'+mocc ).html( wppaStart+' '+wppaSlideShow );
1321
  jQuery( '#speed0-'+mocc ).css( 'display', 'none' );
1322
  jQuery( '#speed1-'+mocc ).css( 'display', 'none' );
1323
  _wppaShowMetaData( mocc, 'show' );
1325
  }
1326
 
1327
  function _wppaSpeed( mocc, faster ) {
1328
+
1329
  if ( faster ) {
1330
  if ( _wppaTimeOut[mocc] > 500 ) _wppaTimeOut[mocc] /= 1.5;
1331
  }
1335
  }
1336
 
1337
  function _wppaLoadSpinner( mocc ) {
1338
+
1339
  if ( ! document.getElementById( 'slide_frame-'+mocc ) ) return; // filmonly
1340
+
1341
  var top;
1342
  var lft;
1343
  var elm;
1344
+
1345
  var flag = true;
1346
+
1347
+ if ( document.getElementById( 'theimg0-'+mocc ) ) {
1348
  if ( document.getElementById( 'theimg0-'+mocc ).complete ) flag = false;
1349
  }
1350
+ if ( document.getElementById( 'theimg1-'+mocc ) ) {
1351
  if ( document.getElementById( 'theimg1-'+mocc ).complete ) flag = false;
1352
  }
1353
 
1370
  var n_diff;
1371
  var l_substrate;
1372
  var x_marg;
1373
+
1374
  if ( ! document.getElementById( 'wppa-filmstrip-'+mocc ) ) return; // There is no filmstrip
1375
+
1376
  n_diff = Math.abs( _wppaCurIdx[mocc] - _wppaNxtIdx[mocc] );
1377
  if ( n_diff <= wppaFilmPageSize[mocc] ) return; // was 2
1378
+
1379
  var n_images = wppaFilmStripLength[mocc] / wppaThumbnailPitch[mocc];
1380
+
1381
  if ( n_diff >= ( ( n_images + 1 ) / 2 ) ) {
1382
  l_substrate = wppaThumbnailPitch[mocc] * _wppaSlides[mocc].length;
1383
  if ( wppaFilmShowGlue ) l_substrate += ( 2 + 2 * wppaFilmStripMargin[mocc] );
1384
+
1385
  x_marg = parseInt( jQuery( '#wppa-filmstrip-'+mocc ).css( 'margin-left' ) );
1386
 
1387
  if ( _wppaNxtIdx[mocc] > _wppaCurIdx[mocc] ) {
1399
 
1400
  var idx, avg, tmp, cnt, dsc, myr, dsctxt;
1401
  if ( ! document.getElementById( 'wppa-rating-'+mocc ) ) return; // No rating bar
1402
+
1403
  avg = _wppaAvg[mocc][_wppaCurIdx[mocc]];
1404
  if ( typeof( avg ) == 'undefined' ) return;
1405
  tmp = avg.split( '|' );
1406
  avg = tmp[0];
1407
  cnt = tmp[1];
1408
+
1409
  dsc = _wppaDisc[mocc][_wppaCurIdx[mocc]];
1410
  myr = _wppaMyr[mocc][_wppaCurIdx[mocc]];
1411
 
1412
+ wppaConsoleLog( 'avg='+avg+' cnt='+cnt+' dsc='+dsc+' myr='+myr );
1413
+
1414
  // Graphic display ?
1415
  if ( wppaRatingDisplayType == 'graphic' ) {
1416
  // Set Avg rating
1417
  _wppaSetRd( mocc, avg, '#wppa-avg-' );
1418
  // Set My rating
1419
  _wppaSetRd( mocc, myr, '#wppa-rate-' );
1420
+
1421
  // Display dislike
1422
+ if ( myr == 0 ) {
1423
+
1424
+ // If i did not vote yet, enable the thumb down
1425
  jQuery( '#wppa-dislike-'+mocc ).css( 'display', 'inline' );
1426
  jQuery( '#wppa-dislike-imgdiv-'+mocc ).css( 'display', 'inline' );
1427
+
1428
  // Hide the filler only when there is a thumbdown
1429
  if ( document.getElementById( 'wppa-dislike-'+mocc ) ) jQuery( '#wppa-filler-'+mocc ).css( 'display', 'none' );
1430
  jQuery( '#wppa-dislike-'+mocc ).stop().fadeTo( 100, wppaStarOpacity );
1431
  }
1432
+ else {
1433
+
1434
+ // If i voted, disable thumb down
1435
  jQuery( '#wppa-dislike-'+mocc ).css( 'display', 'none' );
1436
  jQuery( '#wppa-dislike-imgdiv-'+mocc ).css( 'display', 'none' );
1437
  jQuery( '#wppa-filler-'+mocc ).css( 'display', 'inline' );
1438
  jQuery( '#wppa-filler-'+mocc ).stop().fadeTo( 100, wppaStarOpacity );
1439
+
1440
+ // Show filler with dislike count
1441
+ jQuery( '#wppa-filler-'+mocc ).attr( 'title', dsc );
 
 
1442
  }
1443
  }
1444
  // Numeric display
1445
+ else {
1446
  // Set avg rating
1447
  jQuery( '#wppa-numrate-avg-'+mocc ).html( avg+' ( '+cnt+' ) ' );
1448
+
1449
  // Set My rating
1450
  if ( wppaRatingOnce && myr > 0 ) { // I did a rating and one allowed
1451
  jQuery( '#wppa-numrate-mine-'+mocc ).html( myr );
1465
  }
1466
  }
1467
  jQuery( '#wppa-numrate-mine-'+mocc ).html( htm );
1468
+ }
1469
+
1470
  // Display dislike
1471
+ if ( myr == 0 ) {
1472
+
1473
+ // If i did not vote yet, enable the thumb down
1474
  jQuery( '#wppa-dislike-'+mocc ).css( 'display', 'inline' );
1475
  jQuery( '#wppa-dislike-imgdiv-'+mocc ).css( 'display', 'inline' );
1476
  jQuery( '#wppa-filler-'+mocc ).css( 'display', 'none' );
1477
  jQuery( '#wppa-dislike-'+mocc ).stop().fadeTo( 100, wppaStarOpacity );
1478
  }
1479
+ else {
1480
+
1481
+ // If i voted, disable thumb down
1482
  jQuery( '#wppa-dislike-'+mocc ).css( 'display', 'none' );
1483
  jQuery( '#wppa-dislike-imgdiv-'+mocc ).css( 'display', 'none' );
1484
  jQuery( '#wppa-filler-'+mocc ).css( 'display', 'inline' );
1485
  }
1486
+
1487
+ // Disply text
1488
+ jQuery( '#wppa-discount-'+mocc ).html( dsc + '&bull; ' ); // Show count
1489
+ jQuery( '#wppa-filler-'+mocc ).css( 'display', 'none' );
1490
+
 
 
 
 
 
1491
  }
1492
  // One Button Vote only?
1493
  if ( myr == 0 ) {
1498
  }
1499
  jQuery( '#wppa-vote-count-'+mocc ).html( cnt );
1500
  }
1501
+
1502
  function wppaGetDislikeText( dsc,myr,incmine ) {
1503
 
1504
+ return dsc;
1505
+ /*
1506
  if ( dsc == 0 && myr != 0 ) dsctxt = ' '+wppaNoDislikes+' ';
1507
  else if ( dsc == 1 ) dsctxt = ' '+wppa1Dislike+' ';
1508
  else dsctxt = ' '+dsc+' '+wppaDislikes+' ';
1509
  if ( incmine && myr < 0 ) dsctxt+=wppaIncludingMine;
1510
  return dsctxt;
1511
+ */
1512
  }
1513
+
1514
  function _wppaSetRd( mocc, avg, where ) {
1515
+
1516
  var idx1 = parseInt( avg );
1517
  var idx2 = idx1 + 1;
1518
  var frac = avg - idx1;
1528
  jQuery( where+mocc+'-'+idx ).stop().fadeTo( 100, 1.0 );
1529
  }
1530
  else if ( idx == idx2 ) {
1531
+ jQuery( where+mocc+'-'+idx ).stop().fadeTo( 100, opac );
1532
  }
1533
  else {
1534
  jQuery( where+mocc+'-'+idx ).stop().fadeTo( 100, wppaStarOpacity );
1539
 
1540
  function _wppaFollowMe( mocc, idx ) {
1541
 
1542
+ if ( _wppaSSRuns[mocc] ) return; // Do not rate on a running show, what only works properly in Firefox
1543
 
1544
  if ( _wppaMyr[mocc][_wppaCurIdx[mocc]] != 0 && wppaRatingOnce ) return; // Already rated
1545
  if ( _wppaMyr[mocc][_wppaCurIdx[mocc]] < 0 ) return; // Disliked aleady
1549
 
1550
  function _wppaLeaveMe( mocc, idx ) {
1551
 
1552
+ if ( _wppaSSRuns[mocc] ) return; // Do not rate on a running show, what only works properly in Firefox
1553
 
1554
  if ( _wppaMyr[mocc][_wppaCurIdx[mocc]] != 0 && wppaRatingOnce ) return; // Already rated
1555
  if ( _wppaMyr[mocc][_wppaCurIdx[mocc]] < 0 ) return; // Disliked aleady
1561
  function _wppaValidateComment( mocc ) {
1562
 
1563
  var photoid = _wppaId[mocc][_wppaCurIdx[mocc]];
1564
+
1565
  // Process name
1566
  var name = jQuery( '#wppa-comname-'+mocc ).val( );
1567
  if ( name.length<1 ) {
1568
  alert( wppaPleaseName );
1569
  return false;
1570
  }
1571
+
1572
  // Process email address
1573
  if ( wppaEmailRequired ) {
1574
  var email = jQuery( '#wppa-comemail-'+mocc ).val( );
1579
  return false;
1580
  }
1581
  }
1582
+
1583
  // Process comment
1584
  var text = jQuery( '#wppa-comment-'+mocc ).val( );
1585
  if ( text.length<1 ) {
1586
  alert( wppaPleaseComment );
1587
  return false;
1588
  }
1589
+
1590
  return true;
1591
  }
1592
 
1593
  function _wppaGo( url ) {
1594
+
1595
+ document.location = url; // Go!
1596
  }
1597
 
1598
  function _wppaBbb( mocc,where,act ) {
1599
+
1600
  if ( _wppaSSRuns[mocc] ) return;
1601
+
1602
  var elm = '#bbb-'+mocc+'-'+where;
1603
  switch ( act ) {
1604
  case 'show':
1622
  }
1623
 
1624
  function _wppaUbb( mocc,where,act ) {
1625
+
1626
  // if ( _wppaSSRuns[mocc] ) return;
1627
+
1628
  var elm = '#ubb-'+mocc+'-'+where;
1629
 
1630
  switch ( act ) {
1671
  function wppaOpenComments( mocc ) {
1672
 
1673
  if ( _wppaSSRuns[mocc] ) _wppaStop( mocc );
1674
+
1675
  // Show existing comments
1676
  jQuery( '#wppa-comtable-wrap-'+mocc ).css( 'display', 'block' );
1677
+
1678
  // Show the input form table
1679
  jQuery( '#wppa-comform-wrap-'+mocc ).css( 'display', 'block' );
1680
+
1681
  // Hide the comment footer
1682
  jQuery( '#wppa-comfooter-wrap-'+mocc ).css( 'display', 'none' );
1683
+
1684
  // Do autocol to fix a layout problem
1685
+ wppaColWidth[mocc] = 0;
1686
  setTimeout( '_wppaDoAutocol( '+mocc+' )', 100 );
1687
  }
1688
 
1689
  function _wppaShowMetaData( mocc, key ) {
1690
+
1691
  // What to do when the slideshow is NOT running
1692
+ if ( ! _wppaSSRuns[mocc] && ! __wppaOverruleRun ) {
1693
  if ( key == 'show' ) { // Show
1694
  if ( wppaAutoOpenComments ) {
1695
  // Show existing comments
1708
  if ( wppaShareHideWhenRunning ) {
1709
  jQuery( '#wppa-share-'+mocc ).css( 'display', '' );
1710
  }
1711
+
1712
  // Fotomoto
1713
  wppaFotomotoToolbar( mocc, _wppaHiresUrl[mocc][_wppaCurIdx[mocc]] );
1714
  // wppaFotomotoToolbar( mocc, _wppaUrl[mocc][_wppaCurIdx[mocc]] );
1727
  // Show the comment footer
1728
  jQuery( '#wppa-comfooter-wrap-'+mocc ).css( 'display', 'block' );
1729
  // Fade the browse arrows out
1730
+ // jQuery( '.wppa-prev-'+mocc ).fadeOut( 300 );
1731
  // jQuery( '.wppa-next-'+mocc ).fadeOut( 300 );
1732
  wppaFotomotoHide( mocc );
1733
  }
1744
  jQuery( '#wppa-share-'+mocc ).css( 'display', 'none' );
1745
  }
1746
  // Fotomoto
1747
+ // if ( wppaFotomotoHideWhenRunning )
1748
  // wppaFotomotoHide( mocc );
1749
  }
1750
  }
1751
+
1752
  // What to do always, independant of slideshow is running
1753
  if ( key == 'show' ) {
1754
  // Show title and description
1757
  // Display counter
1758
  jQuery( "#counter-"+mocc ).css( 'visibility', 'visible' );
1759
  // Display iptc
1760
+ jQuery( "#iptccontent-"+mocc ).css( 'visibility', 'visible' );
1761
+ jQuery( "#exifcontent-"+mocc ).css( 'visibility', 'visible' );
1762
  }
1763
  else {
1764
  // Hide title and description
1765
+ // jQuery( "#imagedesc-"+mocc ).css( 'visibility', 'hidden' );
1766
  // jQuery( "#imagetitle-"+mocc ).css( 'visibility', 'hidden' );
1767
+ // Hide counter
1768
  jQuery( "#counter-"+mocc ).css( 'visibility', 'hidden' );
1769
  // Fade the browse arrows out
1770
+ jQuery( '.wppa-prev-'+mocc ).css( 'visibility', 'hidden' ); // fadeOut( 300 );
1771
  jQuery( '.wppa-next-'+mocc ).css( 'visibility', 'hidden' ); // fadeOut( 300 );
1772
  // Hide iptc
1773
+ jQuery( "#iptccontent-"+mocc ).css( 'visibility', 'hidden' );
1774
+ jQuery( "#exifcontent-"+mocc ).css( 'visibility', 'hidden' );
1775
 
1776
  }
1777
  }
js/wppa-slideshow.min.js CHANGED
@@ -4,7 +4,7 @@
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
- var wppaJsSlideshowVersion='6.3.14';function wppaStoreSlideInfo(mocc,id,url,size,width,height,fullname,name,desc,photoid,avgrat,discount,myrat,rateurl,linkurl,linktitle,linktarget,iwtimeout,commenthtml,iptchtml,exifhtml,lbtitle,shareurl,smhtml,ogdsc,hiresurl,videohtml,audiohtml){var cursor;desc=wppaRepairScriptTags(desc);if(!_wppaSlides[mocc]||'0'==id){_wppaSlides[mocc]=[];_wppaNames[mocc]=[];_wppaFullNames[mocc]=[];_wppaDsc[mocc]=[];_wppaOgDsc[mocc]=[];_wppaCurIdx[mocc]=-1;_wppaNxtIdx[mocc]=0;if(parseInt(iwtimeout)>0)_wppaTimeOut[mocc]=parseInt(iwtimeout);else _wppaTimeOut[mocc]=wppaSlideShowTimeOut;_wppaSSRuns[mocc]=false;_wppaTP[mocc]=-2;_wppaFg[mocc]=0;_wppaIsBusy[mocc]=false;_wppaFirst[mocc]=true;_wppaId[mocc]=[];_wppaAvg[mocc]=[];_wppaDisc[mocc]=[];_wppaMyr[mocc]=[];_wppaVRU[mocc]=[];_wppaLinkUrl[mocc]=[];_wppaLinkTitle[mocc]=[];_wppaLinkTarget[mocc]=[];_wppaCommentHtml[mocc]=[];_wppaIptcHtml[mocc]=[];_wppaExifHtml[mocc]=[];_wppaUrl[mocc]=[];_wppaSkipRated[mocc]=false;_wppaLbTitle[mocc]=[];_wppaDidGoto[mocc]=false;wppaSlidePause[mocc]=false;_wppaShareUrl[mocc]=[];_wppaShareHtml[mocc]=[];_wppaFilmNoMove[mocc]=false;_wppaHiresUrl[mocc]=[];_wppaIsVideo[mocc]=[];_wppaVideoHtml[mocc]=[];_wppaAudioHtml[mocc]=[];_wppaVideoNatWidth[mocc]=[];_wppaVideoNatHeight[mocc]=[];wppaVideoPlaying[mocc]=false;wppaAudioPlaying[mocc]=false;}
8
  cursor='default';if(linkurl!=''){cursor='pointer';}
9
  else if(wppaLightBox[mocc]!=''){cursor='url( '+wppaImageDirectory+wppaMagnifierCursor+' ),pointer';}
10
  _wppaIsVideo[mocc][id]=(''!=videohtml);if(_wppaIsVideo[mocc][id]){_wppaSlides[mocc][id]=' alt="'+wppaTrimAlt(name)+'" class="theimg theimg-'+mocc+' big" ';if(wppaSlideVideoStart&&wppaLightBox[mocc]==''){_wppaSlides[mocc][id]+=' autoplay ';}}
@@ -151,7 +151,7 @@ function _wppaCheckRewind(mocc){var n_images;var n_diff;var l_substrate;var x_ma
151
  else{x_marg+=l_substrate;}
152
  jQuery('#wppa-filmstrip-'+mocc).css('margin-left',x_marg+'px');}}
153
  function _wppaSetRatingDisplay(mocc){var idx,avg,tmp,cnt,dsc,myr,dsctxt;if(!document.getElementById('wppa-rating-'+mocc))return;avg=_wppaAvg[mocc][_wppaCurIdx[mocc]];if(typeof(avg)=='undefined')return;tmp=avg.split('|');avg=tmp[0];cnt=tmp[1];dsc=_wppaDisc[mocc][_wppaCurIdx[mocc]];myr=_wppaMyr[mocc][_wppaCurIdx[mocc]];wppaConsoleLog('avg='+avg+' cnt='+cnt+' dsc='+dsc+' myr='+myr);if(wppaRatingDisplayType=='graphic'){_wppaSetRd(mocc,avg,'#wppa-avg-');_wppaSetRd(mocc,myr,'#wppa-rate-');if(myr==0){jQuery('#wppa-dislike-'+mocc).css('display','inline');jQuery('#wppa-dislike-imgdiv-'+mocc).css('display','inline');if(document.getElementById('wppa-dislike-'+mocc))jQuery('#wppa-filler-'+mocc).css('display','none');jQuery('#wppa-dislike-'+mocc).stop().fadeTo(100,wppaStarOpacity);}
154
- else{jQuery('#wppa-dislike-'+mocc).css('display','none');jQuery('#wppa-dislike-imgdiv-'+mocc).css('display','none');jQuery('#wppa-filler-'+mocc).css('display','inline');jQuery('#wppa-filler-'+mocc).stop().fadeTo(100,wppaStarOpacity);if(wppaShowDislikeCount){dsctxt=wppaGetDislikeText(dsc,myr,true);jQuery('#wppa-filler-'+mocc).attr('title',dsctxt);}}}
155
  else{jQuery('#wppa-numrate-avg-'+mocc).html(avg+' ( '+cnt+' ) ');if(wppaRatingOnce&&myr>0){jQuery('#wppa-numrate-mine-'+mocc).html(myr);}
156
  else if(myr<0){jQuery('#wppa-numrate-mine-'+mocc).html(' dislike');}
157
  else{var htm='';for(i=1;i<=wppaRatingMax;i++){if(myr==i){htm+='<span style="cursor:pointer; font-weight:bold;" onclick="_wppaRateIt( '+mocc+', '+i+' )">&nbsp;'+i+'&nbsp;</span>';}
@@ -159,12 +159,11 @@ else{if(myr>(i-1)&&myr<i)htm+='&nbsp;( '+myr+' )&nbsp;';htm+='<span style="curso
159
  jQuery('#wppa-numrate-mine-'+mocc).html(htm);}
160
  if(myr==0){jQuery('#wppa-dislike-'+mocc).css('display','inline');jQuery('#wppa-dislike-imgdiv-'+mocc).css('display','inline');jQuery('#wppa-filler-'+mocc).css('display','none');jQuery('#wppa-dislike-'+mocc).stop().fadeTo(100,wppaStarOpacity);}
161
  else{jQuery('#wppa-dislike-'+mocc).css('display','none');jQuery('#wppa-dislike-imgdiv-'+mocc).css('display','none');jQuery('#wppa-filler-'+mocc).css('display','inline');}
162
- if(wppaShowDislikeCount){dsctxt=wppaGetDislikeText(dsc,myr,false);dsctxt+='&bull; ';jQuery('#wppa-discount-'+mocc).html(dsctxt);jQuery('#wppa-filler-'+mocc).css('display','none');}
163
- else{jQuery('#wppa-discount-'+mocc).html('');}}
164
  if(myr==0){jQuery('#wppa-vote-button-'+mocc).val(wppaVoteForMe);}
165
  else{jQuery('#wppa-vote-button-'+mocc).val(wppaVotedForMe);}
166
  jQuery('#wppa-vote-count-'+mocc).html(cnt);}
167
- function wppaGetDislikeText(dsc,myr,incmine){if(dsc==0&&myr!=0)dsctxt=' '+wppaNoDislikes+' ';else if(dsc==1)dsctxt=' '+wppa1Dislike+' ';else dsctxt=' '+dsc+' '+wppaDislikes+' ';if(incmine&&myr<0)dsctxt+=wppaIncludingMine;return dsctxt;}
168
  function _wppaSetRd(mocc,avg,where){var idx1=parseInt(avg);var idx2=idx1+1;var frac=avg-idx1;var opac=wppaStarOpacity+frac*(1.0-wppaStarOpacity);var ilow=1;var ihigh=wppaRatingMax;for(idx=ilow;idx<=ihigh;idx++){if(where=='#wppa-rate-'){jQuery(where+mocc+'-'+idx).attr('src',wppaImageDirectory+'star.png');}
169
  if(idx<=idx1){jQuery(where+mocc+'-'+idx).stop().fadeTo(100,1.0);}
170
  else if(idx==idx2){jQuery(where+mocc+'-'+idx).stop().fadeTo(100,opac);}
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
+ var wppaJsSlideshowVersion='6.3.17';function wppaStoreSlideInfo(mocc,id,url,size,width,height,fullname,name,desc,photoid,avgrat,discount,myrat,rateurl,linkurl,linktitle,linktarget,iwtimeout,commenthtml,iptchtml,exifhtml,lbtitle,shareurl,smhtml,ogdsc,hiresurl,videohtml,audiohtml){var cursor;desc=wppaRepairScriptTags(desc);if(!_wppaSlides[mocc]||'0'==id){_wppaSlides[mocc]=[];_wppaNames[mocc]=[];_wppaFullNames[mocc]=[];_wppaDsc[mocc]=[];_wppaOgDsc[mocc]=[];_wppaCurIdx[mocc]=-1;_wppaNxtIdx[mocc]=0;if(parseInt(iwtimeout)>0)_wppaTimeOut[mocc]=parseInt(iwtimeout);else _wppaTimeOut[mocc]=wppaSlideShowTimeOut;_wppaSSRuns[mocc]=false;_wppaTP[mocc]=-2;_wppaFg[mocc]=0;_wppaIsBusy[mocc]=false;_wppaFirst[mocc]=true;_wppaId[mocc]=[];_wppaAvg[mocc]=[];_wppaDisc[mocc]=[];_wppaMyr[mocc]=[];_wppaVRU[mocc]=[];_wppaLinkUrl[mocc]=[];_wppaLinkTitle[mocc]=[];_wppaLinkTarget[mocc]=[];_wppaCommentHtml[mocc]=[];_wppaIptcHtml[mocc]=[];_wppaExifHtml[mocc]=[];_wppaUrl[mocc]=[];_wppaSkipRated[mocc]=false;_wppaLbTitle[mocc]=[];_wppaDidGoto[mocc]=false;wppaSlidePause[mocc]=false;_wppaShareUrl[mocc]=[];_wppaShareHtml[mocc]=[];_wppaFilmNoMove[mocc]=false;_wppaHiresUrl[mocc]=[];_wppaIsVideo[mocc]=[];_wppaVideoHtml[mocc]=[];_wppaAudioHtml[mocc]=[];_wppaVideoNatWidth[mocc]=[];_wppaVideoNatHeight[mocc]=[];wppaVideoPlaying[mocc]=false;wppaAudioPlaying[mocc]=false;}
8
  cursor='default';if(linkurl!=''){cursor='pointer';}
9
  else if(wppaLightBox[mocc]!=''){cursor='url( '+wppaImageDirectory+wppaMagnifierCursor+' ),pointer';}
10
  _wppaIsVideo[mocc][id]=(''!=videohtml);if(_wppaIsVideo[mocc][id]){_wppaSlides[mocc][id]=' alt="'+wppaTrimAlt(name)+'" class="theimg theimg-'+mocc+' big" ';if(wppaSlideVideoStart&&wppaLightBox[mocc]==''){_wppaSlides[mocc][id]+=' autoplay ';}}
151
  else{x_marg+=l_substrate;}
152
  jQuery('#wppa-filmstrip-'+mocc).css('margin-left',x_marg+'px');}}
153
  function _wppaSetRatingDisplay(mocc){var idx,avg,tmp,cnt,dsc,myr,dsctxt;if(!document.getElementById('wppa-rating-'+mocc))return;avg=_wppaAvg[mocc][_wppaCurIdx[mocc]];if(typeof(avg)=='undefined')return;tmp=avg.split('|');avg=tmp[0];cnt=tmp[1];dsc=_wppaDisc[mocc][_wppaCurIdx[mocc]];myr=_wppaMyr[mocc][_wppaCurIdx[mocc]];wppaConsoleLog('avg='+avg+' cnt='+cnt+' dsc='+dsc+' myr='+myr);if(wppaRatingDisplayType=='graphic'){_wppaSetRd(mocc,avg,'#wppa-avg-');_wppaSetRd(mocc,myr,'#wppa-rate-');if(myr==0){jQuery('#wppa-dislike-'+mocc).css('display','inline');jQuery('#wppa-dislike-imgdiv-'+mocc).css('display','inline');if(document.getElementById('wppa-dislike-'+mocc))jQuery('#wppa-filler-'+mocc).css('display','none');jQuery('#wppa-dislike-'+mocc).stop().fadeTo(100,wppaStarOpacity);}
154
+ else{jQuery('#wppa-dislike-'+mocc).css('display','none');jQuery('#wppa-dislike-imgdiv-'+mocc).css('display','none');jQuery('#wppa-filler-'+mocc).css('display','inline');jQuery('#wppa-filler-'+mocc).stop().fadeTo(100,wppaStarOpacity);jQuery('#wppa-filler-'+mocc).attr('title',dsc);}}
155
  else{jQuery('#wppa-numrate-avg-'+mocc).html(avg+' ( '+cnt+' ) ');if(wppaRatingOnce&&myr>0){jQuery('#wppa-numrate-mine-'+mocc).html(myr);}
156
  else if(myr<0){jQuery('#wppa-numrate-mine-'+mocc).html(' dislike');}
157
  else{var htm='';for(i=1;i<=wppaRatingMax;i++){if(myr==i){htm+='<span style="cursor:pointer; font-weight:bold;" onclick="_wppaRateIt( '+mocc+', '+i+' )">&nbsp;'+i+'&nbsp;</span>';}
159
  jQuery('#wppa-numrate-mine-'+mocc).html(htm);}
160
  if(myr==0){jQuery('#wppa-dislike-'+mocc).css('display','inline');jQuery('#wppa-dislike-imgdiv-'+mocc).css('display','inline');jQuery('#wppa-filler-'+mocc).css('display','none');jQuery('#wppa-dislike-'+mocc).stop().fadeTo(100,wppaStarOpacity);}
161
  else{jQuery('#wppa-dislike-'+mocc).css('display','none');jQuery('#wppa-dislike-imgdiv-'+mocc).css('display','none');jQuery('#wppa-filler-'+mocc).css('display','inline');}
162
+ jQuery('#wppa-discount-'+mocc).html(dsc+'&bull; ');jQuery('#wppa-filler-'+mocc).css('display','none');}
 
163
  if(myr==0){jQuery('#wppa-vote-button-'+mocc).val(wppaVoteForMe);}
164
  else{jQuery('#wppa-vote-button-'+mocc).val(wppaVotedForMe);}
165
  jQuery('#wppa-vote-count-'+mocc).html(cnt);}
166
+ function wppaGetDislikeText(dsc,myr,incmine){return dsc;}
167
  function _wppaSetRd(mocc,avg,where){var idx1=parseInt(avg);var idx2=idx1+1;var frac=avg-idx1;var opac=wppaStarOpacity+frac*(1.0-wppaStarOpacity);var ilow=1;var ihigh=wppaRatingMax;for(idx=ilow;idx<=ihigh;idx++){if(where=='#wppa-rate-'){jQuery(where+mocc+'-'+idx).attr('src',wppaImageDirectory+'star.png');}
168
  if(idx<=idx1){jQuery(where+mocc+'-'+idx).stop().fadeTo(100,1.0);}
169
  else if(idx==idx2){jQuery(where+mocc+'-'+idx).stop().fadeTo(100,opac);}
js/wppa.js CHANGED
@@ -2,7 +2,7 @@
2
  //
3
  // conatins common vars and functions
4
  //
5
- var wppaJsVersion = '6.3.14';
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!!
@@ -46,11 +46,6 @@ var wppaMyRating;
46
  var wppaAvgRat;
47
  var wppaMyRat;
48
  var wppaDislikeMsg;
49
- var wppaShowDislikeCount = false;
50
- var wppaNoDislikes = 'no dislikes';
51
- var wppa1Dislike = '1 dislike';
52
- var wppaDislikes = 'dislikes';
53
- var wppaIncludingMine = 'including mine';
54
  var wppaMiniTreshold = 300;
55
  var wppaStart = 'Start'; // defaults
56
  var wppaStop = 'Stop'; //
2
  //
3
  // conatins common vars and functions
4
  //
5
+ var wppaJsVersion = '6.3.17';
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!!
46
  var wppaAvgRat;
47
  var wppaMyRat;
48
  var wppaDislikeMsg;
 
 
 
 
 
49
  var wppaMiniTreshold = 300;
50
  var wppaStart = 'Start'; // defaults
51
  var wppaStop = 'Stop'; //
js/wppa.min.js CHANGED
@@ -3,7 +3,7 @@
3
  // conatins common vars and functions
4
  //
5
 
6
- var wppaJsVersion='6.3.14';var wppaVersion='0';var wppaDebug;var wppaFullValign=[];var wppaFullHalign=[];var wppaFullFrameDelta=[];var wppaAnimationSpeed;var wppaImageDirectory;var wppaAutoColumnWidth=[];var wppaAutoColumnFrac=[];var wppaThumbnailAreaDelta;var wppaSlideShowTimeOut=2500;var wppaFadeInAfterFadeOut=false;var wppaTextFrameDelta=0;var wppaBoxDelta=0;var wppaPreambule;var wppaHideWhenEmpty=false;var wppaThumbnailPitch=[];var wppaFilmStripLength=[];var wppaFilmStripMargin=[];var wppaFilmStripAreaDelta=[];var wppaFilmShowGlue=false;var wppaIsMini=[];var wppaPortraitOnly=[];var wppaSlideShow;var wppaPhoto;var wppaOf;var wppaNextPhoto;var wppaPreviousPhoto;var wppaSlower;var wppaFaster;var wppaNextP;var wppaPrevP;var wppaAvgRating;var wppaMyRating;var wppaAvgRat;var wppaMyRat;var wppaDislikeMsg;var 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 wppaStartSymbolUrl='';var wppaPauseSymbolUrl='';var wppaStopSymbolUrl='';var wppaStartPauseSymbolSize='64';var wppaStartPauseSymbolBradius='32';var wppaStopSymbolSize='48';var wppaStopSumbolBradius='24';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 wppaOvlTitles;var wppaOvlIdx=0;var wppaOvlFirst=true;var wppaOvlKbHandler='';var wppaOvlSizeHandler='';var wppaOvlPadTop=5;var wppaOvlIsSingle;var wppaOvlRunning=false;var wppaOvlVideoHtmls;var wppaOvlAudioHtmls;var wppaOvlVideoNaturalWidths;var wppaOvlVideoNaturalHeights;var wppaOvlMode='normal';var wppaOvlVideoPlaying=false;var wppaOvlAudioPlaying=false;var wppaOvlShowLegenda=true;var wppaOvlShowStartStop=true;var wppaOvlRadius=0;var wppaOvlBorderWidth=16;var wppaOvlLeftSymbolUrl;var wppaOvlRightSymbolUrl;var wppaLeftRightSymbolSize=32;var wppaLeftRightSymbolBradius=4;var wppaOvlTxtHeight=36;var wppaOvlOpacity=0.8;var wppaOvlOnclickType='none';var wppaOvlTheme='black';var wppaOvlAnimSpeed=300;var wppaOvlSlideSpeed=3000;var wppaVer4WindowWidth=800;var wppaVer4WindowHeight=600;var wppaOvlFontFamily='Helvetica';var wppaOvlFontSize='10';var wppaOvlFontColor='';var wppaOvlFontWeight='bold';var wppaOvlLineHeight='12';var wppaOvlShowCounter=true;var wppaOvlIsVideo=false;var wppaShowLegenda='';var wppaOvlFsPhotoId=0;var wppaPhotoId=0;var wppaOvlVideoStart=false;var wppaOvlAudioStart=false;var wppaLastIptc='';var wppaLastExif='';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();}
3
  // conatins common vars and functions
4
  //
5
 
6
+ var wppaJsVersion='6.3.17';var wppaVersion='0';var wppaDebug;var wppaFullValign=[];var wppaFullHalign=[];var wppaFullFrameDelta=[];var wppaAnimationSpeed;var wppaImageDirectory;var wppaAutoColumnWidth=[];var wppaAutoColumnFrac=[];var wppaThumbnailAreaDelta;var wppaSlideShowTimeOut=2500;var wppaFadeInAfterFadeOut=false;var wppaTextFrameDelta=0;var wppaBoxDelta=0;var wppaPreambule;var wppaHideWhenEmpty=false;var wppaThumbnailPitch=[];var wppaFilmStripLength=[];var wppaFilmStripMargin=[];var wppaFilmStripAreaDelta=[];var wppaFilmShowGlue=false;var wppaIsMini=[];var wppaPortraitOnly=[];var wppaSlideShow;var wppaPhoto;var wppaOf;var wppaNextPhoto;var wppaPreviousPhoto;var wppaSlower;var wppaFaster;var wppaNextP;var wppaPrevP;var wppaAvgRating;var wppaMyRating;var wppaAvgRat;var wppaMyRat;var wppaDislikeMsg;var wppaMiniTreshold=300;var wppaStart='Start';var wppaStop='Stop';var wppaPleaseName;var wppaPleaseEmail;var wppaPleaseComment;var wppaRatingOnce=true;var wppaBGcolorNumbar='transparent';var wppaBcolorNumbar='transparent';var wppaBGcolorNumbarActive='transparent';var wppaBcolorNumbarActive='transparent';var wppaFontFamilyNumbar='';var wppaFontSizeNumbar='';var wppaFontColorNumbar='';var wppaFontWeightNumbar='';var wppaFontFamilyNumbarActive='';var wppaFontSizeNumbarActive='';var wppaFontColorNumbarActive='';var wppaFontWeightNumbarActive='';var wppaNumbarMax='10';var wppaAjaxUrl='';var wppaLang='';var wppaNextOnCallback=false;var wppaStarOpacity=0.2;var wppaSlideWrap=true;var wppaLightBox=[];var wppaEmailRequired=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 wppaStartSymbolUrl='';var wppaPauseSymbolUrl='';var wppaStopSymbolUrl='';var wppaStartPauseSymbolSize='64';var wppaStartPauseSymbolBradius='32';var wppaStopSymbolSize='48';var wppaStopSumbolBradius='24';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 wppaOvlTitles;var wppaOvlIdx=0;var wppaOvlFirst=true;var wppaOvlKbHandler='';var wppaOvlSizeHandler='';var wppaOvlPadTop=5;var wppaOvlIsSingle;var wppaOvlRunning=false;var wppaOvlVideoHtmls;var wppaOvlAudioHtmls;var wppaOvlVideoNaturalWidths;var wppaOvlVideoNaturalHeights;var wppaOvlMode='normal';var wppaOvlVideoPlaying=false;var wppaOvlAudioPlaying=false;var wppaOvlShowLegenda=true;var wppaOvlShowStartStop=true;var wppaOvlRadius=0;var wppaOvlBorderWidth=16;var wppaOvlLeftSymbolUrl;var wppaOvlRightSymbolUrl;var wppaLeftRightSymbolSize=32;var wppaLeftRightSymbolBradius=4;var wppaOvlTxtHeight=36;var wppaOvlOpacity=0.8;var wppaOvlOnclickType='none';var wppaOvlTheme='black';var wppaOvlAnimSpeed=300;var wppaOvlSlideSpeed=3000;var wppaVer4WindowWidth=800;var wppaVer4WindowHeight=600;var wppaOvlFontFamily='Helvetica';var wppaOvlFontSize='10';var wppaOvlFontColor='';var wppaOvlFontWeight='bold';var wppaOvlLineHeight='12';var wppaOvlShowCounter=true;var wppaOvlIsVideo=false;var wppaShowLegenda='';var wppaOvlFsPhotoId=0;var wppaPhotoId=0;var wppaOvlVideoStart=false;var wppaOvlAudioStart=false;var wppaLastIptc='';var wppaLastExif='';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();}
languages/wp-photo-album-plus-da_DK.mo CHANGED
Binary file
languages/wp-photo-album-plus-da_DK.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-11-17 09:04+0100\n"
5
- "PO-Revision-Date: 2015-11-17 09:04+0100\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"
@@ -21,17187 +21,1540 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
  #: theme/photo-album-page.php:30 theme/photo-album-search-page.php:52
24
- #, fuzzy
25
  msgid "Pages:"
26
- msgstr "N&aelig;ste&nbsp;side"
27
 
28
  #: theme/photo-album-page.php:31 theme/photo-album-search-page.php:53
29
- #: wppa-album-admin-autosave.php:1058 wppa-album-admin-autosave.php:1096
30
- #: wppa-album-admin-autosave.php:1195 wppa-album-admin-autosave.php:1367
31
- #: wppa-album-admin-autosave.php:1462 wppa-album-admin-autosave.php:1536
32
- #: wppa-album-admin-autosave.php:1646 wppa-comment-admin.php:310
33
- #: wppa-comment-admin.php:379 wppa-comment-admin.php:397
34
- #: wppa-functions.php:1909 wppa-thumbnails.php:597
35
  msgid "Edit"
36
- msgstr "Rediger!"
37
 
38
  #: theme/photo-album-search-page.php:30
39
  msgid "Warning. No page defined for search results!"
40
- msgstr ""
41
 
42
- #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:171
43
- #: wppa-settings-autosave.php:396 wppa-settings-autosave.php:3005
44
- #, fuzzy
45
  msgid "Search"
46
- msgstr "Cerca"
47
 
48
  #: theme/search.php:18
49
  #, php-format
50
  msgid "Search Results for: %s"
51
- msgstr ""
52
 
53
  #: theme/search.php:29
54
  msgid "Nothing Found"
55
- msgstr ""
56
 
57
  #: theme/search.php:31
58
  msgid ""
59
  "Sorry, but nothing matched your search criteria. Please try again with some "
60
  "different keywords."
61
  msgstr ""
 
62
 
63
- #: theme/wppa-theme.php:323 theme/wppa-theme.php:342
64
  msgid "No photos found matching your search criteria."
65
- msgstr ""
66
- "Ingen album eller fotos fundet der svarer til dine s&oslash;ge kriterier."
67
 
68
- #: theme/wppa-theme.php:326
69
- #, fuzzy
70
  msgid "No albums found matching your search criteria."
71
- msgstr "Nessun album o foto corrispondente ai criteri di ricerca."
72
 
73
- #: theme/wppa-theme.php:329
74
  msgid "No albums or photos found matching your search criteria."
75
- msgstr ""
76
- "Ingen album eller fotos fundet der svarer til dine s&oslash;ge kriterier."
77
-
78
- #: wppa-admin-functions.php:27
79
- #, fuzzy
80
- msgid "Settings successfully backed up"
81
- msgstr "Indsendelse af foto var en success."
82
-
83
- #: wppa-admin-functions.php:31
84
- msgid "Unable to backup settings"
85
- msgstr ""
86
 
87
- #: wppa-admin-functions.php:40
88
- msgid "Error writing to settings backup file"
89
- msgstr ""
90
 
91
- #: wppa-admin-functions.php:101
92
- msgid "Settings file not found"
93
- msgstr ""
 
94
 
95
- #: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2247
96
- #: wppa-ajax.php:2254
97
- msgid "Please supply a numeric value greater than or equal to"
98
- msgstr ""
 
99
 
100
- #: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2247
101
- #: wppa-ajax.php:2254
102
- msgid "for"
103
- msgstr ""
104
 
105
- #: wppa-admin-functions.php:208 wppa-ajax.php:2254
106
- msgid "and less than or equal to"
107
- msgstr ""
 
 
 
108
 
109
- #: wppa-admin-functions.php:223 wppa-album-admin-autosave.php:283
110
- #, fuzzy
111
- msgid "--- public ---"
112
- msgstr "--- ingen ---"
 
113
 
114
- #: wppa-admin-functions.php:462
115
- #, php-format
116
- msgid "File %s is of an unsupported filetype and has been removed."
117
- msgstr ""
 
 
118
 
119
- #: wppa-admin-functions.php:562 wppa-admin-functions.php:601
120
- #: wppa-admin-functions.php:605 wppa-admin-functions.php:609
121
- msgid "Unexpected error:"
122
- msgstr ""
123
 
124
- #: wppa-admin-functions.php:562
125
- msgid "Missing database table:"
126
- msgstr ""
127
 
128
- #: wppa-admin-functions.php:601
129
- msgid "Missing directory:"
130
- msgstr ""
131
 
132
- #: wppa-admin-functions.php:605
133
- msgid "Directory is not writable:"
134
- msgstr ""
135
 
136
- #: wppa-admin-functions.php:609
137
- msgid "Directory is not readable:"
138
- msgstr ""
 
 
 
139
 
140
- #: wppa-admin-functions.php:615
141
  msgid ""
142
- "Please de-activate and re-activate the plugin. If this problem persists, ask "
143
- "your administrator."
144
  msgstr ""
 
 
145
 
146
- #: wppa-admin-functions.php:634
147
- #, fuzzy
148
- msgid "Prev page"
149
- msgstr "Forrige&nbsp;side"
150
 
151
- #: wppa-admin-functions.php:647
152
- #, fuzzy
153
- msgid "Next page"
154
- msgstr "N&aelig;ste&nbsp;side"
155
 
156
- #: wppa-admin-functions.php:749 wppa-admin-functions.php:752
157
- #, php-format
158
- msgid "Album %s is full"
159
- msgstr ""
160
 
161
- #: wppa-admin-functions.php:770
162
- #, php-format
163
- msgid "Photo %s already exists in album number %s. Removed from depot."
164
- msgstr ""
165
 
166
- #: wppa-admin-functions.php:773
167
- #, fuzzy, php-format
168
- msgid "Photo %s already exists in album number %s."
169
- msgstr "Il file %s che hai caricato non è un file .png"
170
 
171
- #: wppa-admin-functions.php:803
172
- #, php-format
173
- msgid "ERROR: Attempt to upload a photo that is too large to process (%s)."
174
- msgstr ""
175
 
176
- #: wppa-admin-functions.php:804
177
- msgid "Too big"
178
- msgstr ""
 
179
 
180
- #: wppa-admin-functions.php:808
181
- msgid ""
182
- "WARNING: You are uploading photos that are too small. Photos must be larger "
183
- "than the thumbnail size and larger than the coverphotosize."
184
- msgstr ""
185
 
186
- #: wppa-admin-functions.php:809
187
- msgid "Too small"
188
- msgstr ""
189
 
190
- #: wppa-admin-functions.php:814
191
- msgid "ERROR: Unable to retrieve image size of"
192
- msgstr ""
193
 
194
- #: wppa-admin-functions.php:814
195
- #, fuzzy
196
- msgid "Are you sure it is a photo?"
197
- msgstr "Er du sikker p&aring;, at du vil udgive dette foto"
198
 
199
- #: wppa-admin-functions.php:815
200
- msgid "No imagesize"
201
- msgstr ""
202
 
203
- #: wppa-admin-functions.php:824
204
- msgid "Unsupported mime type encountered:"
205
- msgstr ""
206
 
207
- #: wppa-admin-functions.php:841
208
- msgid "Album not known while trying to add a photo"
209
- msgstr ""
210
 
211
- #: wppa-admin-functions.php:845
212
- #, php-format
213
- msgid ""
214
- "Album %s does not exist or is not accessable while trying to add a photo"
215
- msgstr ""
216
 
217
- #: wppa-admin-functions.php:864
218
- #, fuzzy
219
- msgid "Could not insert photo."
220
- msgstr "Kunne ikke inds&aelig;tte foto i databasen."
221
 
222
- #: wppa-admin-functions.php:899
223
- msgid "ERROR: Unknown file or album."
224
- msgstr ""
225
 
226
- #: wppa-admin.php:54
227
- #, fuzzy
228
- msgid "Photo&thinsp;Albums"
229
- msgstr "Foto Albums"
230
 
231
- #: wppa-admin.php:57 wppa-adminbar.php:40 wppa-settings-autosave.php:5520
232
- msgid "Album Admin"
233
- msgstr "Album administration"
234
 
235
- #: wppa-admin.php:58 wppa-adminbar.php:47 wppa-settings-autosave.php:5521
236
- #: wppa-upload-widget.php:71 wppa-upload.php:88
237
- msgid "Upload Photos"
238
- msgstr "Indsend foto"
239
 
240
- #: wppa-admin.php:61 wppa-adminbar.php:53
241
- msgid "Edit Photos"
242
- msgstr "&AElig;ndre foto"
243
 
244
- #: wppa-admin.php:63 wppa-adminbar.php:61 wppa-settings-autosave.php:5522
245
- #: wppa-upload.php:458
246
- msgid "Import Photos"
247
- msgstr "Importer foto"
248
 
249
- #: wppa-admin.php:64 wppa-adminbar.php:68
250
- #, fuzzy
251
- msgid "Moderate Photos"
252
- msgstr "Vedligehold"
253
 
254
- #: wppa-admin.php:65 wppa-adminbar.php:75 wppa-export.php:32
255
- #: wppa-settings-autosave.php:5524
256
- msgid "Export Photos"
257
- msgstr "Eksporter foto"
258
 
259
- #: wppa-admin.php:66 wppa-adminbar.php:82 wppa-comment-admin.php:215
260
- #: wppa-settings-autosave.php:5525
261
- msgid "Settings"
262
- msgstr "Indstillinger"
263
 
264
- #: wppa-admin.php:67
265
- #, fuzzy
266
- msgid "Photo of the day Widget"
267
- msgstr "Dagens foto"
268
 
269
- #: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:60
270
- #: wppa-settings-autosave.php:5526 wppa-setup.php:1387
271
- msgid "Photo of the day"
272
- msgstr "Dagens foto"
273
 
274
- #: wppa-admin.php:68
275
- #, fuzzy
276
- msgid "Manage comments"
277
- msgstr "%d kommentarer"
278
 
279
- #: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:386
280
- #: wppa-settings-autosave.php:2834 wppa-settings-autosave.php:7667
281
- #: wppa-settings-autosave.php:7712
282
- msgid "Comments"
283
- msgstr "%d kommentarer"
284
 
285
- #: wppa-admin.php:69
286
- #, fuzzy
287
- msgid "Help &amp; Info"
288
- msgstr "Hj&aelig;lp og info"
289
 
290
- #: wppa-admin.php:106
291
- msgid "Uploading is temporary diabled for you"
292
- msgstr ""
 
293
 
294
- #: wppa-admin.php:112
295
- msgid "Editing is temporary diabled for you"
296
- msgstr ""
297
 
298
- #: wppa-admin.php:119
299
- msgid "Importing is temporary diabled for you"
300
- msgstr ""
 
301
 
302
- #: wppa-admin.php:121 wppa-upload.php:1055
303
- #, fuzzy
304
- msgid "Import"
305
- msgstr "Importer foto"
306
 
307
- #: wppa-admin.php:121 wppa-settings-autosave.php:8734
308
- #, fuzzy
309
- msgid "Update"
310
- msgstr ""
311
- "Non hai i permessi per potere aggiornare le informazioni di questo album"
312
 
313
- #: wppa-adminbar.php:103 wppa-settings-autosave.php:5528
314
- msgid "Help & Info"
315
- msgstr "Hj&aelig;lp og info"
316
 
317
- #: wppa-adminbar.php:110
318
- msgid "Docs & Demos"
319
- msgstr "Dokumenter & Demoer"
320
 
321
- #: wppa-adminbar.php:118 wppa-album-navigator-widget.php:41
322
- #: wppa-album-navigator-widget.php:84 wppa-album-widget.php:47
323
- msgid "Photo Albums"
324
- msgstr "Foto Albums"
325
 
326
- #: wppa-ajax.php:154
327
- #, fuzzy
328
- msgid ""
329
- "All modifications are instantly updated on the server. The <b style=\"color:"
330
- "#070\" >Remark</b> field keeps you informed on the actions taken at the "
331
- "background."
332
- msgstr ""
333
- "<b>Avviso:</b> il tuo server ti permette di caricare <b>%s</b> file per un "
334
- "totale massimo di <b>%s</b> bytes e impiega <b>%s</b> secondi per completare "
335
- "l'operazione."
336
 
337
- #: wppa-ajax.php:157
338
- #, fuzzy
339
- msgid "Exit & Refresh"
340
- msgstr "Ricarica questa pagina per svuotare la tabella X"
341
 
342
- #: wppa-ajax.php:169 wppa-ajax.php:226 wppa-ajax.php:249 wppa-ajax.php:463
343
- #: wppa-ajax.php:724
344
- msgid "Security check failure"
345
- msgstr ""
346
 
347
- #: wppa-ajax.php:203 wppa-ajax.php:244
348
- msgid "You do not have the rights to moderate photos this way"
349
- msgstr ""
350
 
351
- #: wppa-ajax.php:223
352
- #, php-format
353
- msgid "Failed to update stutus of photo %s"
354
- msgstr ""
355
 
356
- #: wppa-ajax.php:223 wppa-ajax.php:230
357
- msgid "Please refresh the page"
358
- msgstr ""
359
 
360
- #: wppa-ajax.php:230
361
- #, php-format
362
- msgid "Failed to update stutus of comment %s"
363
- msgstr ""
 
 
 
 
364
 
365
- #: wppa-ajax.php:239 wppa-ajax.php:253
366
- #, fuzzy
367
- msgid "Photo removed"
368
- msgstr "Dagens foto"
369
 
370
- #: wppa-ajax.php:258
371
- #, fuzzy
372
- msgid "Comment removed"
373
- msgstr "Kommentarer redigeret"
374
 
375
- #: wppa-ajax.php:259
376
- #, fuzzy
377
- msgid "Could not remove comment"
378
- msgstr "Impossibile creare album. "
379
 
380
- #: wppa-ajax.php:262 wppa-ajax.php:596
381
- msgid "Unexpected error"
 
 
 
382
  msgstr ""
 
 
 
383
 
384
- #: wppa-ajax.php:268
385
- msgid "This feature is not enabled on this website"
 
 
386
  msgstr ""
 
 
 
387
 
388
- #: wppa-ajax.php:280
389
- msgid "The album is empty"
 
390
  msgstr ""
 
 
391
 
392
- #: wppa-ajax.php:289 wppa-ajax.php:426
393
- msgid "Unable to create zip archive"
394
- msgstr ""
 
395
 
396
- #: wppa-ajax.php:301
397
- #, php-format
398
- msgid "Unable to create zip archive. code = %s"
399
- msgstr ""
400
 
401
- #: wppa-ajax.php:338
402
- #, php-format
403
- msgid "Only %s out of %s photos could be added to the zipfile"
404
- msgstr ""
405
 
406
- #: wppa-ajax.php:367
407
- msgid "Unknown source of request"
408
- msgstr ""
409
 
410
- #: wppa-ajax.php:385
411
- msgid "Empty filename"
412
- msgstr ""
413
 
414
- #: wppa-ajax.php:412
415
- msgid "Unable to create tempdir"
416
- msgstr ""
417
 
418
- #: wppa-ajax.php:436
 
 
 
 
 
 
 
 
419
  #, fuzzy
420
- msgid "Unknown type"
421
- msgstr "sconosciuto"
422
 
423
- #: wppa-ajax.php:445
424
- msgid "The photo does no longer exist"
425
- msgstr ""
426
 
427
- #: wppa-ajax.php:477
428
- msgid "An error occurred while processing you rating request."
429
- msgstr ""
430
 
431
- #: wppa-ajax.php:478
432
- msgid "Maybe you opened the page too long ago to recognize you."
433
- msgstr ""
434
 
435
- #: wppa-ajax.php:479
436
- msgid "You may refresh the page and try again."
437
- msgstr ""
438
 
439
- #: wppa-ajax.php:480
440
- msgid ""
441
- "Althoug an error occurred while processing your rating, your vote has been "
442
- "registered."
443
- msgstr ""
444
 
445
- #: wppa-ajax.php:481
446
- msgid "However, this may not be reflected in the current pageview"
447
- msgstr ""
448
 
449
- #: wppa-ajax.php:503
450
- #, fuzzy
451
- msgid "Photo has been removed."
452
- msgstr "Il file %s no è supportato ed è stato rimosso."
453
 
454
- #: wppa-ajax.php:512
455
- msgid "Sorry, you can not rate your own photos"
456
- msgstr ""
457
 
458
- #: wppa-ajax.php:524
459
- #, fuzzy
460
- msgid "Please enter a comment."
461
- msgstr "Skriv en kommentar"
462
 
463
- #: wppa-ajax.php:549
464
- msgid "Security check failure."
465
- msgstr ""
466
 
467
- #: wppa-ajax.php:561 wppa-ajax.php:577
468
- #, fuzzy
469
- msgid "Photo rated"
470
- msgstr "Dagens foto"
471
 
472
- #: wppa-ajax.php:676
473
- msgid ""
474
- "Please explain your vote in a comment.\n"
475
- "Your vote will be discarded if you don't.\n"
476
- "\n"
477
- "After completing your comment,\n"
478
- "you can refresh the page to see\n"
479
- "your vote became effective."
480
- msgstr ""
481
 
482
- #: wppa-ajax.php:720
483
- msgid "You do not have the rights to delete a photo"
484
- msgstr ""
485
 
486
- #: wppa-ajax.php:730
487
  #, fuzzy, php-format
488
- msgid "Photo %s has been deleted"
489
- msgstr "Il file %s no è supportato ed è stato rimosso."
 
 
490
 
491
- #: wppa-ajax.php:746
492
- msgid "You do not have the rights to update album information"
493
- msgstr ""
494
 
495
- #: wppa-ajax.php:758
496
- msgid "<b>Ratings cleared</b>"
497
- msgstr ""
498
 
499
- #: wppa-ajax.php:758 wppa-ajax.php:764 wppa-photo-admin-autosave.php:317
500
- msgid "No ratings for this photo."
501
- msgstr ""
502
 
503
- #: wppa-ajax.php:761
504
- msgid "An error occurred while clearing ratings"
505
- msgstr ""
506
 
507
- #: wppa-ajax.php:764 wppa-ajax.php:785 wppa-ajax.php:807
508
- msgid "<b>No photos in this album</b>"
509
- msgstr ""
510
 
511
- #: wppa-ajax.php:779
512
- msgid "<b>Tags set to defaults</b> (reload)"
513
- msgstr ""
514
-
515
- #: wppa-ajax.php:782
516
- msgid "An error occurred while setting tags"
517
- msgstr ""
518
 
519
- #: wppa-ajax.php:801
520
- msgid "<b>Tags added width defaults</b> (reload)"
521
- msgstr ""
522
 
523
- #: wppa-ajax.php:804
524
- msgid "An error occurred while adding tags"
525
- msgstr ""
526
 
527
- #: wppa-ajax.php:816
528
- #, php-format
529
- msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
530
- msgstr ""
531
 
532
- #: wppa-ajax.php:818 wppa-ajax.php:1218 wppa-album-admin-autosave.php:352
533
- #: wppa-album-admin-autosave.php:409 wppa-album-admin-autosave.php:1005
534
- #: wppa-album-admin-autosave.php:1142 wppa-album-admin-autosave.php:1314
535
- #: wppa-album-admin-autosave.php:1409 wppa-boxes-html.php:402
536
- #: wppa-boxes-html.php:516 wppa-photo-admin-autosave.php:1334
537
- #: wppa-photo-admin-autosave.php:1453 wppa-settings-autosave.php:452
538
- #: wppa-settings-autosave.php:614 wppa-settings-autosave.php:636
539
- #: wppa-settings-autosave.php:1336 wppa-settings-autosave.php:1357
540
- #: wppa-settings-autosave.php:2731 wppa-settings-autosave.php:2752
541
- #: wppa-settings-autosave.php:3063 wppa-settings-autosave.php:3087
542
- #: wppa-settings-autosave.php:3556 wppa-settings-autosave.php:3670
543
- #: wppa-settings-autosave.php:4238 wppa-settings-autosave.php:4259
544
- #: wppa-settings-autosave.php:4435 wppa-settings-autosave.php:4459
545
- #: wppa-settings-autosave.php:5486 wppa-settings-autosave.php:5994
546
- #: wppa-settings-autosave.php:6016 wppa-settings-autosave.php:6596
547
- #: wppa-settings-autosave.php:6620 wppa-settings-autosave.php:7661
548
- #: wppa-settings-autosave.php:8292 wppa-settings-autosave.php:8448
549
- #: wppa-thumbnail-widget.php:202 wppa-upload.php:166
550
- msgid "Name"
551
- msgstr ""
552
 
553
- #: wppa-ajax.php:821 wppa-ajax.php:1221 wppa-album-admin-autosave.php:1015
554
- #: wppa-album-admin-autosave.php:1152 wppa-album-admin-autosave.php:1324
555
- #: wppa-album-admin-autosave.php:1419 wppa-photo-admin-autosave.php:1335
556
- #: wppa-photo-admin-autosave.php:1454 wppa-settings-autosave.php:453
557
- #: wppa-settings-autosave.php:615 wppa-settings-autosave.php:637
558
- #: wppa-settings-autosave.php:1337 wppa-settings-autosave.php:1358
559
- #: wppa-settings-autosave.php:2732 wppa-settings-autosave.php:2753
560
- #: wppa-settings-autosave.php:3064 wppa-settings-autosave.php:3088
561
- #: wppa-settings-autosave.php:4239 wppa-settings-autosave.php:4260
562
- #: wppa-settings-autosave.php:4436 wppa-settings-autosave.php:4460
563
- #: wppa-settings-autosave.php:5487 wppa-settings-autosave.php:5995
564
- #: wppa-settings-autosave.php:6017 wppa-settings-autosave.php:6597
565
- #: wppa-settings-autosave.php:6621 wppa-settings-autosave.php:8293
566
- #: wppa-settings-autosave.php:8315 wppa-settings-autosave.php:8355
567
- #: wppa-settings-autosave.php:8377 wppa-settings-autosave.php:8423
568
- #: wppa-settings-autosave.php:8449 wppa-widget-admin.php:195
569
- #, fuzzy
570
- msgid "Description"
571
- msgstr "Inserisci / modifica la descrizione per questo album."
572
 
573
- #: wppa-ajax.php:825
574
- #, fuzzy
575
- msgid "Unbalanced tags in album description!"
576
- msgstr "Inserisci / modifica la descrizione per questo album."
577
 
578
- #: wppa-ajax.php:832
579
- msgid "Album order #"
580
- msgstr ""
581
 
582
- #: wppa-ajax.php:835
583
- #, fuzzy
584
- msgid "Cover photo"
585
- msgstr "Se fotos"
586
 
587
- #: wppa-ajax.php:838
588
- #, fuzzy
589
- msgid "Parent album"
590
- msgstr "Impossibile creare album. "
 
 
591
 
592
- #: wppa-ajax.php:843 wppa-settings-autosave.php:3550
593
- #, fuzzy
594
- msgid "Photo order"
595
- msgstr "Dagens foto"
 
 
596
 
597
- #: wppa-ajax.php:846
598
- msgid "Use Alt thumbsize"
599
- msgstr ""
 
600
 
601
- #: wppa-ajax.php:849
602
- msgid "Cover Type"
603
- msgstr ""
 
604
 
605
- #: wppa-ajax.php:852 wppa-settings-autosave.php:4461
606
- #: wppa-settings-autosave.php:5488
607
- #, fuzzy
608
- msgid "Link type"
609
- msgstr "Link til"
610
 
611
- #: wppa-ajax.php:855 wppa-album-covers.php:1256
612
- msgid "Link to"
613
- msgstr "Link til"
614
 
615
- #: wppa-ajax.php:858 wppa-ajax.php:1242 wppa-album-admin-autosave.php:1026
616
- #: wppa-album-admin-autosave.php:1163 wppa-album-admin-autosave.php:1335
617
- #: wppa-album-admin-autosave.php:1430 wppa-boxes-html.php:524
618
- #: wppa-photo-admin-autosave.php:1337 wppa-photo-admin-autosave.php:1456
619
- #: wppa-widget-admin.php:196
620
- msgid "Owner"
621
- msgstr ""
622
 
623
- #: wppa-ajax.php:860
624
- #, php-format
625
- msgid "User %s does not exist"
626
- msgstr ""
627
 
628
- #: wppa-ajax.php:865 wppa-ajax.php:871
629
- #, fuzzy
630
- msgid "Upload limit count"
631
- msgstr "Indsend foto"
632
 
633
- #: wppa-ajax.php:878
634
- #, fuzzy
635
- msgid "Upload limit time"
636
- msgstr "Uploaded fil er ikke et billede"
637
 
638
- #: wppa-ajax.php:882
639
- msgid "Default tags"
640
- msgstr ""
641
 
642
- #: wppa-ajax.php:887
643
- msgid "Categories"
644
- msgstr ""
645
 
646
- #: wppa-ajax.php:890
647
- msgid "Sub albums sort order"
648
- msgstr ""
649
 
650
- #: wppa-ajax.php:898 wppa-ajax.php:1312
651
- msgid "Schedule date/time"
652
- msgstr ""
653
 
654
- #: wppa-ajax.php:911 wppa-ajax.php:937
655
- #, php-format
656
- msgid "<b>%s</b> of album %s updated"
657
- msgstr ""
658
 
659
- #: wppa-ajax.php:919
660
- msgid "All photos set to scheduled per date"
661
- msgstr ""
 
 
 
662
 
663
- #: wppa-ajax.php:946
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:947 wppa-ajax.php:1196 wppa-ajax.php:1302
669
- msgid "Press CTRL+F5 and try again."
670
- msgstr ""
671
 
672
- #: wppa-ajax.php:961
673
- msgid "You do not have the rights to update comment status"
674
- msgstr ""
675
 
676
- #: wppa-ajax.php:970
677
- #, php-format
678
- msgid "Status of comment #%s updated"
679
- msgstr ""
680
 
681
- #: wppa-ajax.php:973
 
 
 
 
682
  #, php-format
683
- msgid "Error updating status comment #%s"
684
- msgstr ""
685
 
686
- #: wppa-ajax.php:984
687
- msgid "You do not have the rights to change photos"
688
- msgstr ""
 
689
 
690
- #: wppa-ajax.php:993
691
- msgid "Watermark applied"
692
- msgstr ""
 
693
 
694
- #: wppa-ajax.php:997
695
- msgid "An error occured while trying to apply a watermark"
696
- msgstr ""
697
 
698
- #: wppa-ajax.php:1010
699
- msgid "You do not have the rights to update photo information"
700
- msgstr ""
701
 
702
- #: wppa-ajax.php:1016
703
- #, php-format
704
- msgid "%s updated to %s."
705
- msgstr ""
706
 
707
- #: wppa-ajax.php:1066
708
- #, php-format
709
- msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
710
- msgstr ""
711
 
712
- #: wppa-ajax.php:1070
713
- msgid "Exif date/time updated"
714
- msgstr ""
715
 
716
- #: wppa-ajax.php:1076
717
- msgid "Enter a value > -90 and < 90"
718
- msgstr ""
719
 
720
- #: wppa-ajax.php:1084
721
- msgid "Lattitude updated"
722
- msgstr ""
723
 
724
- #: wppa-ajax.php:1086
725
- #, fuzzy
726
- msgid "Could not update lattitude"
727
- msgstr "Impossibile creare album. "
728
 
729
- #: wppa-ajax.php:1092
730
- msgid "Enter a value > -180 and < 180"
731
- msgstr ""
732
 
733
- #: wppa-ajax.php:1100
734
- msgid "Longitude updated"
735
- msgstr ""
736
 
737
- #: wppa-ajax.php:1102
738
- #, fuzzy
739
- msgid "Could not update longitude"
740
- msgstr "Impossibile creare album. "
741
 
742
- #: wppa-ajax.php:1110
743
- #, fuzzy
744
- msgid "Photo files remade"
745
- msgstr "Dagens foto"
746
 
747
- #: wppa-ajax.php:1113
748
- #, fuzzy
749
- msgid "Could not remake files"
750
- msgstr "Impossibile creare album. "
751
 
752
- #: wppa-ajax.php:1119
753
- #, fuzzy
754
- msgid "Thumbnail remade"
755
- msgstr "Foto Top Ti"
756
 
757
- #: wppa-ajax.php:1122
758
- #, fuzzy
759
- msgid "Could not remake thumbnail"
760
- msgstr "Impossibile creare album. "
761
 
762
- #: wppa-ajax.php:1132 wppa-photo-admin-autosave.php:183
763
- #: wppa-settings-autosave.php:3366 wppa-tinymce-scripts.php:288
764
- #: wppa-tinymce-shortcodes.php:514 wppa-widget-admin.php:77
765
- msgid "left"
766
- msgstr ""
767
 
768
- #: wppa-ajax.php:1136 wppa-photo-admin-autosave.php:185
769
- msgid "180&deg;"
770
- msgstr ""
771
 
772
- #: wppa-ajax.php:1140 wppa-photo-admin-autosave.php:187
773
- #: wppa-settings-autosave.php:3366 wppa-tinymce-scripts.php:290
774
- #: wppa-tinymce-shortcodes.php:516 wppa-widget-admin.php:79
775
- msgid "right"
776
- msgstr ""
777
 
778
- #: wppa-ajax.php:1148
779
  #, fuzzy, php-format
780
- msgid "Photo %s rotated %s"
781
- msgstr "Foto %s af %s"
 
 
782
 
783
- #: wppa-ajax.php:1151
784
- #, php-format
785
- msgid "An error occurred while trying to rotate photo %s"
786
- msgstr ""
 
 
787
 
788
- #: wppa-ajax.php:1161 wppa-ajax.php:1184 wppa-photo-admin-autosave.php:1071
789
- #: wppa-photo-admin-autosave.php:1089
790
  #, fuzzy, php-format
791
- msgid "A photo with filename %s already exists in album %s."
792
- msgstr "Il file %s che hai caricato non è un file .png"
 
 
793
 
794
- #: wppa-ajax.php:1171
795
  #, fuzzy, php-format
796
- msgid "Photo %s has been moved to album %s (%s)"
797
- msgstr "Il file %s no è supportato ed è stato rimosso."
 
 
798
 
799
- #: wppa-ajax.php:1174
800
- #, php-format
801
- msgid "An error occurred while trying to move photo %s"
802
- msgstr ""
 
 
803
 
804
- #: wppa-ajax.php:1192
805
- #, php-format
806
- msgid "Photo %s copied to album %s (%s)"
807
- msgstr ""
 
 
808
 
809
- #: wppa-ajax.php:1195
810
- #, php-format
811
- msgid "An error occurred while trying to copy photo %s"
812
- msgstr ""
 
 
813
 
814
- #: wppa-ajax.php:1225 wppa-ajax.php:1774
815
- #, fuzzy
816
- msgid "Unbalanced tags in photo description!"
817
- msgstr "Inds&aelig;t/rediger beskrivelse af foto"
818
 
819
- #: wppa-ajax.php:1231
820
- #, fuzzy
821
- msgid "Photo order #"
822
- msgstr "Dagens foto"
823
 
824
- #: wppa-ajax.php:1236
825
  #, php-format
826
- msgid "User %s does not exists"
 
 
827
  msgstr ""
 
 
828
 
829
- #: wppa-ajax.php:1245
830
- #, fuzzy
831
- msgid "Link url"
832
- msgstr "Link til"
833
-
834
- #: wppa-ajax.php:1248
835
- #, fuzzy
836
- msgid "Link title"
837
- msgstr "Link til"
838
-
839
- #: wppa-ajax.php:1251
840
- #, fuzzy
841
- msgid "Link target"
842
- msgstr "Link til"
843
 
844
- #: wppa-ajax.php:1257 wppa-multitag-widget.php:34 wppa-multitag-widget.php:66
845
- #: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
846
- #, fuzzy
847
- msgid "Photo Tags"
848
- msgstr "Foto"
849
 
850
- #: wppa-ajax.php:1262 wppa-comment-admin.php:309 wppa-comment-admin.php:396
851
- #: wppa-photo-admin-autosave.php:1336 wppa-photo-admin-autosave.php:1455
852
- #: wppa-settings-autosave.php:6020 wppa-settings-autosave.php:6600
853
- #: wppa-settings-autosave.php:8316 wppa-settings-autosave.php:8356
854
- #: wppa-settings-autosave.php:8378 wppa-settings-autosave.php:8424
855
- msgid "Status"
856
- msgstr ""
857
 
858
- #: wppa-ajax.php:1265
859
- msgid "HTML Alt"
860
- msgstr ""
861
 
862
- #: wppa-ajax.php:1269
863
- msgid "Video width"
864
- msgstr ""
865
 
866
- #: wppa-ajax.php:1271 wppa-ajax.php:1278
867
- #, fuzzy
868
- msgid "Please enter an integer value >= 0"
869
- msgstr "Skriv en kommentar"
870
 
871
- #: wppa-ajax.php:1276
872
- msgid "Video height"
873
- msgstr ""
874
 
875
- #: wppa-ajax.php:1294 wppa-ajax.php:1328
876
- #, php-format
877
- msgid "<b>%s</b> of video %s updated"
878
- msgstr ""
879
 
880
- #: wppa-ajax.php:1297 wppa-ajax.php:1331
881
- #, php-format
882
- msgid "<b>%s</b> of photo %s updated"
883
- msgstr ""
884
 
885
- #: wppa-ajax.php:1301
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:1357
891
- #, php-format
892
- msgid "<b>Custom field %s</b> of photo %s updated"
893
- msgstr ""
894
 
895
- #: wppa-ajax.php:1364
896
- #, fuzzy
897
- msgid "<b>Error during upload.</b>"
898
- msgstr "Fejl under upload"
899
 
900
- #: wppa-ajax.php:1389
901
- #, fuzzy
902
- msgid "Photo files updated."
903
- msgstr "Dagens foto"
904
 
905
- #: wppa-ajax.php:1394
906
- #, fuzzy
907
- msgid "Could not update files."
908
- msgstr "Impossibile creare album. "
909
 
910
- #: wppa-ajax.php:1405
911
- #, php-format
912
- msgid "Stereo mode updated in %d milliseconds"
913
- msgstr ""
914
 
915
- #: wppa-ajax.php:1421
916
- msgid "You do not have the rights to update settings"
917
- msgstr ""
918
 
919
- #: wppa-ajax.php:1502
920
- msgid "Capability granted"
921
- msgstr ""
922
 
923
- #: wppa-ajax.php:1507
924
- msgid "Capability withdrawn"
925
- msgstr ""
926
 
927
- #: wppa-ajax.php:1518
928
- msgid "Column width."
929
- msgstr ""
930
 
931
- #: wppa-ajax.php:1521
932
- msgid "Initial width."
933
- msgstr ""
934
-
935
- #: wppa-ajax.php:1524
936
- msgid "Full size."
937
- msgstr ""
938
-
939
- #: wppa-ajax.php:1527
940
- msgid "Max height."
941
- msgstr ""
942
-
943
- #: wppa-ajax.php:1530
944
- #, fuzzy
945
- msgid "Thumbnail size."
946
- msgstr "Foto Top Ti"
947
-
948
- #: wppa-ajax.php:1533
949
- #, fuzzy
950
- msgid "Thumbnail frame width"
951
- msgstr "Foto Top Ti"
952
-
953
- #: wppa-ajax.php:1536
954
- #, fuzzy
955
- msgid "Thumbnail frame height"
956
- msgstr "Miniatura"
957
-
958
- #: wppa-ajax.php:1539
959
- #, fuzzy
960
- msgid "Thumbnail Spacing"
961
- msgstr "Foto Top Ti"
962
-
963
- #: wppa-ajax.php:1542
964
- #, fuzzy
965
- msgid "Photocount treshold."
966
- msgstr "Billede ikke fundet"
967
-
968
- #: wppa-ajax.php:1545
969
- #, fuzzy
970
- msgid "Thumb page size."
971
- msgstr "Foto Top Ti"
972
-
973
- #: wppa-ajax.php:1548
974
- #, fuzzy
975
- msgid "Cover photo size."
976
- msgstr "Indtast foto navn"
977
-
978
- #: wppa-ajax.php:1551
979
- msgid "Album page size."
980
- msgstr ""
981
-
982
- #: wppa-ajax.php:1554
983
- #, fuzzy
984
- msgid "Number of TopTen photos"
985
- msgstr "Foto Top Ti"
986
-
987
- #: wppa-ajax.php:1557
988
- #, fuzzy
989
- msgid "Widget image thumbnail size"
990
- msgstr "Se"
991
-
992
- #: wppa-ajax.php:1560 wppa-settings-autosave.php:1013
993
- msgid "Max Cover width"
994
- msgstr ""
995
-
996
- #: wppa-ajax.php:1563
997
- #, fuzzy
998
- msgid "Minimal description height"
999
- msgstr "Inserisci / modifica la descrizione per questo album."
1000
-
1001
- #: wppa-ajax.php:1566
1002
- msgid "Minimal cover height"
1003
- msgstr ""
1004
-
1005
- #: wppa-ajax.php:1569
1006
- msgid "Minimal text frame height"
1007
- msgstr ""
1008
-
1009
- #: wppa-ajax.php:1572
1010
- msgid "Border width"
1011
- msgstr ""
1012
-
1013
- #: wppa-ajax.php:1575 wppa-settings-autosave.php:713
1014
- msgid "Border radius"
1015
- msgstr ""
1016
-
1017
- #: wppa-ajax.php:1578 wppa-settings-autosave.php:724
1018
- msgid "Box spacing"
1019
- msgstr ""
1020
-
1021
- #: wppa-ajax.php:1584 wppa-settings-autosave.php:988
1022
- msgid "Popup size"
1023
- msgstr ""
1024
-
1025
- #: wppa-ajax.php:1587
1026
- msgid "Fullsize border width"
1027
- msgstr ""
1028
-
1029
- #: wppa-ajax.php:1590
1030
- msgid "Lightbox Bordersize"
1031
- msgstr ""
1032
-
1033
- #: wppa-ajax.php:1593
1034
- msgid "Number of Comment widget entries"
1035
- msgstr ""
1036
-
1037
- #: wppa-ajax.php:1596
1038
- msgid "Comment Widget image thumbnail size"
1039
- msgstr ""
1040
-
1041
- #: wppa-ajax.php:1599 wppa-ajax.php:1602 wppa-ajax.php:1605
1042
- msgid "Opacity."
1043
- msgstr ""
1044
-
1045
- #: wppa-ajax.php:1614 wppa-settings-autosave.php:1119
1046
- msgid "Avatar size"
1047
- msgstr ""
1048
-
1049
- #: wppa-ajax.php:1617 wppa-ajax.php:1620
1050
- msgid "Watermark opacity"
1051
- msgstr ""
1052
-
1053
- #: wppa-ajax.php:1623 wppa-settings-autosave.php:1288
1054
- msgid "Number of text lines"
1055
- msgstr ""
1056
-
1057
- #: wppa-ajax.php:1626 wppa-settings-autosave.php:4137
1058
- msgid "Overlay opacity"
1059
- msgstr ""
1060
-
1061
- #: wppa-ajax.php:1629 wppa-settings-autosave.php:7120
1062
- #, fuzzy
1063
- msgid "Upload limit"
1064
- msgstr "Indsend foto"
1065
-
1066
- #: wppa-ajax.php:1632 wppa-settings-autosave.php:3845
1067
- msgid "Notify inappropriate"
1068
- msgstr ""
1069
-
1070
- #: wppa-ajax.php:1635
1071
- msgid "Dislike pending"
1072
- msgstr ""
1073
-
1074
- #: wppa-ajax.php:1638
1075
- #, fuzzy
1076
- msgid "Dislike delete"
1077
- msgstr "Slet"
1078
-
1079
- #: wppa-ajax.php:1641 wppa-settings-autosave.php:6696
1080
- msgid "Max execution time"
1081
- msgstr ""
1082
-
1083
- #: wppa-ajax.php:1646
1084
- msgid "Cube Points points"
1085
- msgstr ""
1086
-
1087
- #: wppa-ajax.php:1649
1088
- msgid "JPG Image quality"
1089
- msgstr ""
1090
-
1091
- #: wppa-ajax.php:1655 wppa-settings-autosave.php:3759
1092
- #, fuzzy
1093
- msgid "Number of coverphotos"
1094
- msgstr "Se forside fotos"
1095
-
1096
- #: wppa-ajax.php:1658 wppa-settings-autosave.php:3816
1097
- msgid "Dislike value"
1098
- msgstr ""
1099
-
1100
- #: wppa-ajax.php:1661 wppa-settings-autosave.php:844
1101
- #, fuzzy
1102
- msgid "Slideshow pagesize"
1103
- msgstr "Slideshow"
1104
-
1105
- #: wppa-ajax.php:1664 wppa-settings-autosave.php:742
1106
- msgid "Max Pagelinks"
1107
- msgstr ""
1108
-
1109
- #: wppa-ajax.php:1671
1110
- msgid "Ratings cleared"
1111
- msgstr ""
1112
-
1113
- #: wppa-ajax.php:1674
1114
- #, fuzzy
1115
- msgid "Could not clear ratings"
1116
- msgstr "Impossibile creare album. "
1117
-
1118
- #: wppa-ajax.php:1683
1119
- msgid "Viewcounts cleared"
1120
- msgstr ""
1121
-
1122
- #: wppa-ajax.php:1686
1123
- #, fuzzy
1124
- msgid "Could not clear viewcounts"
1125
- msgstr "Impossibile creare album. "
1126
-
1127
- #: wppa-ajax.php:1696
1128
- #, fuzzy
1129
- msgid "IPTC data cleared"
1130
- msgstr "Ingen IPTC data"
1131
-
1132
- #: wppa-ajax.php:1697
1133
- msgid "Refresh this page to clear table X"
1134
- msgstr ""
1135
-
1136
- #: wppa-ajax.php:1701
1137
- #, fuzzy
1138
- msgid "Could not clear IPTC data"
1139
- msgstr "Impossibile creare album. "
1140
-
1141
- #: wppa-ajax.php:1711
1142
- #, fuzzy
1143
- msgid "EXIF data cleared"
1144
- msgstr "Ingen EXIF data"
1145
-
1146
- #: wppa-ajax.php:1712
1147
- msgid "Refresh this page to clear table XI"
1148
- msgstr ""
1149
-
1150
- #: wppa-ajax.php:1716
1151
- #, fuzzy
1152
- msgid "Could not clear EXIF data"
1153
- msgstr "Impossibile creare album. "
1154
-
1155
- #: wppa-ajax.php:1724
1156
- msgid "Recuperation performed"
1157
- msgstr ""
1158
-
1159
- #: wppa-ajax.php:1739
1160
- msgid ""
1161
- "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1162
- "#77bbff"
1163
- msgstr ""
1164
-
1165
- #: wppa-ajax.php:1765
1166
- msgid "You just changed a setting that requires the recalculation of ratings."
1167
- msgstr ""
1168
-
1169
- #: wppa-ajax.php:1766 wppa-ajax.php:2134
1170
- msgid "Please run the appropriate action in Table VIII."
1171
- msgstr ""
1172
-
1173
- #: wppa-ajax.php:1790 wppa-ajax.php:1806
1174
- #, php-format
1175
- msgid "Unable to create or write to %s"
1176
- msgstr ""
1177
-
1178
- #: wppa-ajax.php:1799
1179
- msgid "Source can not be inside the wppa folder."
1180
- msgstr ""
1181
-
1182
- #: wppa-ajax.php:1816
1183
- msgid "The content must contain w#album"
1184
- msgstr ""
1185
-
1186
- #: wppa-ajax.php:1823
1187
- msgid "The content must contain w#lat and w#lon"
1188
- msgstr ""
1189
-
1190
- #: wppa-ajax.php:1865 wppa-ajax.php:1871
1191
- msgid "Members"
1192
- msgstr ""
1193
-
1194
- #: wppa-ajax.php:1865
1195
- msgid "Parent of the member albums"
1196
- msgstr ""
1197
-
1198
- #: wppa-ajax.php:2009
1199
- #, php-format
1200
- msgid "User %s has been blacklisted."
1201
- msgstr ""
1202
-
1203
- #: wppa-ajax.php:2012
1204
- #, php-format
1205
- msgid "User %s does not exist."
1206
- msgstr ""
1207
-
1208
- #: wppa-ajax.php:2035
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:2039 wppa-ajax.php:2054
1215
- msgid "The display of the custom box has been enabled"
1216
- msgstr ""
1217
-
1218
- #: wppa-ajax.php:2050
1219
- msgid "The content of the Custom box has been changed to display maps."
1220
- msgstr ""
1221
-
1222
- #: wppa-ajax.php:2080
1223
- msgid "This value can not be empty"
1224
- msgstr ""
1225
-
1226
- #: wppa-ajax.php:2112
1227
- #, php-format
1228
- msgid "Failed to set %s to %s"
1229
- msgstr ""
1230
-
1231
- #: wppa-ajax.php:2117
1232
- #, php-format
1233
- msgid "Setting %s updated to %s"
1234
- msgstr ""
1235
-
1236
- #: wppa-ajax.php:2133
1237
- msgid ""
1238
- "You just changed a setting that requires the regeneration of thumbnails."
1239
- msgstr ""
1240
-
1241
- #: wppa-ajax.php:2188
1242
- msgid "Missing album id"
1243
- msgstr ""
1244
-
1245
- #: wppa-ajax.php:2208
1246
- msgid "You do not have the rights to delete this album"
1247
- msgstr ""
1248
-
1249
- #: wppa-ajax.php:2249 wppa-ajax.php:2256
1250
- #, fuzzy
1251
- msgid "You may also enter:"
1252
- msgstr "Du kan indsende efter"
1253
-
1254
- #: wppa-ajax.php:2250 wppa-ajax.php:2257
1255
- #, fuzzy
1256
- msgid "You may also leave/set this blank"
1257
- msgstr "Puoi anche lasciare/impostare a blank"
1258
-
1259
- #: wppa-album-admin-autosave.php:23 wppa-album-admin-autosave.php:706
1260
- #, fuzzy
1261
- msgid "Upload to this album"
1262
- msgstr "Indsend mindst %d fotos til dette album!"
1263
-
1264
- #: wppa-album-admin-autosave.php:37
1265
- msgid "Warning:"
1266
- msgstr ""
1267
-
1268
- #: wppa-album-admin-autosave.php:37
1269
- #, php-format
1270
- msgid ""
1271
- "The uploads directory does not exist or is not writable by the server. "
1272
- "Please make sure that %s is writeable by the server."
1273
- msgstr ""
1274
-
1275
- #: wppa-album-admin-autosave.php:75 wppa-album-admin-autosave.php:746
1276
- #, fuzzy
1277
- msgid "Manage Photos"
1278
- msgstr "Se fotos"
1279
-
1280
- #: wppa-album-admin-autosave.php:76 wppa-album-admin-autosave.php:747
1281
- msgid "Copy / move / delete / edit name / edit description / change status"
1282
- msgstr ""
1283
-
1284
- #: wppa-album-admin-autosave.php:77 wppa-album-admin-autosave.php:749
1285
- msgid "Edit photo information except copy and move"
1286
- msgstr ""
1287
-
1288
- #: wppa-album-admin-autosave.php:78 wppa-album-admin-autosave.php:750
1289
- #, fuzzy
1290
- msgid "Edit photo information"
1291
- msgstr "N&aelig;ste billede"
1292
-
1293
- #: wppa-album-admin-autosave.php:81 wppa-album-admin-autosave.php:88
1294
- msgid "Back to album table"
1295
- msgstr ""
1296
-
1297
- #: wppa-album-admin-autosave.php:87 wppa-album-admin-autosave.php:757
1298
- msgid "Top of page"
1299
- msgstr ""
1300
-
1301
- #: wppa-album-admin-autosave.php:114 wppa-functions.php:3871
1302
- #: wppa-settings-autosave.php:7006 wppa-wpdb-insert.php:329
1303
- #, fuzzy
1304
- msgid "New Album"
1305
- msgstr "Impossibile creare album. "
1306
-
1307
- #: wppa-album-admin-autosave.php:119 wppa-upload.php:1555 wppa-upload.php:1591
1308
- #: wppa-upload.php:2351
1309
- #, fuzzy
1310
- msgid "Could not create album."
1311
- msgstr "Impossibile creare album. "
1312
-
1313
- #: wppa-album-admin-autosave.php:127 wppa-upload.php:1561 wppa-upload.php:2359
1314
- #, fuzzy
1315
- msgid "Album #"
1316
- msgstr "album"
1317
-
1318
- #: wppa-album-admin-autosave.php:127 wppa-upload.php:1561 wppa-upload.php:2359
1319
- msgid "Added."
1320
- msgstr ""
1321
-
1322
- #: wppa-album-admin-autosave.php:172
1323
- #, fuzzy
1324
- msgid "Edit Album Information"
1325
- msgstr "Rediger!"
1326
-
1327
- #: wppa-album-admin-autosave.php:172 wppa-settings-autosave.php:292
1328
- #, fuzzy
1329
- msgid "Auto Save"
1330
- msgstr "Automatisk, afskudt"
1331
-
1332
- #: wppa-album-admin-autosave.php:174
1333
- #, fuzzy
1334
- msgid ""
1335
- "All modifications are instantly updated on the server, except for those that "
1336
- "require a button push."
1337
- msgstr ""
1338
- "<b>Avviso:</b> il tuo server ti permette di caricare <b>%s</b> file per un "
1339
- "totale massimo di <b>%s</b> bytes e impiega <b>%s</b> secondi per completare "
1340
- "l'operazione."
1341
-
1342
- #: wppa-album-admin-autosave.php:175
1343
- #, fuzzy
1344
- msgid ""
1345
- "The <b style=\"color:#070\" >Remark</b> fields keep you informed on the "
1346
- "actions taken at the background."
1347
- msgstr ""
1348
- "<b>Avviso:</b> il tuo server ti permette di caricare <b>%s</b> file per un "
1349
- "totale massimo di <b>%s</b> bytes e impiega <b>%s</b> secondi per completare "
1350
- "l'operazione."
1351
-
1352
- #: wppa-album-admin-autosave.php:179
1353
- #, fuzzy
1354
- msgid "Album number:"
1355
- msgstr "Album num."
1356
-
1357
- #: wppa-album-admin-autosave.php:188
1358
- msgid "Name:"
1359
- msgstr ""
1360
-
1361
- #: wppa-album-admin-autosave.php:195
1362
- #, fuzzy
1363
- msgid "Update Album name"
1364
- msgstr ""
1365
- "Non hai i permessi per potere aggiornare le informazioni di questo album"
1366
-
1367
- #: wppa-album-admin-autosave.php:203
1368
- msgid "Type the name of the album. Do not leave this empty."
1369
- msgstr ""
1370
-
1371
- #: wppa-album-admin-autosave.php:211 wppa-photo-admin-autosave.php:724
1372
- #: wppa-photo-admin-autosave.php:749
1373
- #, fuzzy
1374
- msgid "Description:"
1375
- msgstr "Inserisci / modifica la descrizione per questo album."
1376
-
1377
- #: wppa-album-admin-autosave.php:222
1378
- #, fuzzy
1379
- msgid "Update Album description"
1380
- msgstr "Inserisci / modifica la descrizione per questo album."
1381
-
1382
- #: wppa-album-admin-autosave.php:232
1383
- #, fuzzy
1384
- msgid "Enter / modify the description for this album."
1385
- msgstr "Inds&aelig;t/rediger beskrivelse af foto"
1386
-
1387
- #: wppa-album-admin-autosave.php:240
1388
- #, fuzzy
1389
- msgid "Created:"
1390
- msgstr "Impossibile creare album. "
1391
-
1392
- #: wppa-album-admin-autosave.php:243 wppa-album-admin-autosave.php:254
1393
- #: wppa-photo-admin-autosave.php:256 wppa-photo-admin-autosave.php:279
1394
- msgid "local time"
1395
- msgstr ""
1396
-
1397
- #: wppa-album-admin-autosave.php:249 wppa-photo-admin-autosave.php:274
1398
- msgid "Modified:"
1399
- msgstr ""
1400
-
1401
- #: wppa-album-admin-autosave.php:257 wppa-photo-admin-autosave.php:282
1402
- #: wppa-photo-admin-autosave.php:1443
1403
- #, fuzzy
1404
- msgid "Not modified"
1405
- msgstr "Ikke Defineret"
1406
-
1407
- #: wppa-album-admin-autosave.php:266 wppa-thumbnails.php:645
1408
- #: wppa-thumbnails.php:1420
1409
- #, fuzzy
1410
- msgid "Views:"
1411
- msgstr "Se"
1412
-
1413
- #: wppa-album-admin-autosave.php:279 wppa-photo-admin-autosave.php:260
1414
- msgid "Owned by:"
1415
- msgstr ""
1416
-
1417
- #: wppa-album-admin-autosave.php:297
1418
- msgid ""
1419
- "WARNING If you change the owner, you will no longer be able to modify this "
1420
- "album and upload or import photos to it!"
1421
- msgstr ""
1422
-
1423
- #: wppa-album-admin-autosave.php:299
1424
- msgid "Enter user login name or <b>--- public ---</b>"
1425
- msgstr ""
1426
-
1427
- #: wppa-album-admin-autosave.php:308
1428
- msgid "Album sort order #:"
1429
- msgstr ""
1430
-
1431
- #: wppa-album-admin-autosave.php:316
1432
- msgid ""
1433
- "Album order # has only effect if you set the album sort order method to "
1434
- "<b>Order #</b> in the Photo Albums -> Settings screen.<br />"
1435
- msgstr ""
1436
-
1437
- #: wppa-album-admin-autosave.php:319
1438
- msgid ""
1439
- "If you want to sort the albums by order #, enter / modify the order number "
1440
- "here."
1441
- msgstr ""
1442
-
1443
- #: wppa-album-admin-autosave.php:326 wppa-tinymce-shortcodes.php:294
1444
- #: wppa-tinymce-shortcodes.php:320 wppa-tinymce-shortcodes.php:459
1445
- #, fuzzy
1446
- msgid "Parent album:"
1447
- msgstr "Impossibile creare album. "
1448
-
1449
- #: wppa-album-admin-autosave.php:337
1450
- msgid ""
1451
- "If this is a sub album, select the album in which this album will appear."
1452
- msgstr ""
1453
-
1454
- #: wppa-album-admin-autosave.php:346
1455
- #, fuzzy
1456
- msgid "Photo order:"
1457
- msgstr "Dagens foto"
1458
-
1459
- #: wppa-album-admin-autosave.php:350 wppa-album-admin-autosave.php:451
1460
- #: wppa-settings-autosave.php:3593 wppa-settings-autosave.php:3617
1461
- #, fuzzy
1462
- msgid "--- default ---"
1463
- msgstr "--- vises ikke ---"
1464
-
1465
- #: wppa-album-admin-autosave.php:351 wppa-album-admin-autosave.php:407
1466
- #: wppa-settings-autosave.php:3555 wppa-settings-autosave.php:3669
1467
- #: wppa-thumbnail-widget.php:201
1468
- msgid "Order #"
1469
- msgstr ""
1470
-
1471
- #: wppa-album-admin-autosave.php:353 wppa-album-admin-autosave.php:406
1472
- #: wppa-settings-autosave.php:3557 wppa-settings-autosave.php:3671
1473
- #: wppa-thumbnail-widget.php:203 wppa-widget-admin.php:142
1474
- msgid "Random"
1475
- msgstr ""
1476
-
1477
- #: wppa-album-admin-autosave.php:354 wppa-settings-autosave.php:3558
1478
- msgid "Rating mean value"
1479
- msgstr ""
1480
-
1481
- #: wppa-album-admin-autosave.php:355 wppa-bestof-widget.php:170
1482
- #: wppa-settings-autosave.php:3559 wppa-topten-widget.php:237
1483
- msgid "Number of votes"
1484
- msgstr ""
1485
-
1486
- #: wppa-album-admin-autosave.php:356 wppa-album-admin-autosave.php:411
1487
- #: wppa-settings-autosave.php:3560 wppa-settings-autosave.php:3672
1488
- msgid "Timestamp"
1489
- msgstr ""
1490
-
1491
- #: wppa-album-admin-autosave.php:357 wppa-photo-admin-autosave.php:291
1492
- #: wppa-settings-autosave.php:3561
1493
- #, fuzzy
1494
- msgid "EXIF Date"
1495
- msgstr "Ingen EXIF data"
1496
-
1497
- #: wppa-album-admin-autosave.php:358 wppa-settings-autosave.php:3562
1498
- #: wppa-settings-autosave.php:3673
1499
- msgid "Order # desc"
1500
- msgstr ""
1501
-
1502
- #: wppa-album-admin-autosave.php:359 wppa-settings-autosave.php:3563
1503
- #: wppa-settings-autosave.php:3674
1504
- msgid "Name desc"
1505
- msgstr ""
1506
-
1507
- #: wppa-album-admin-autosave.php:360 wppa-settings-autosave.php:3564
1508
- #: wppa-thumbnail-widget.php:204
1509
- msgid "Rating mean value desc"
1510
- msgstr ""
1511
-
1512
- #: wppa-album-admin-autosave.php:361 wppa-settings-autosave.php:3565
1513
- #: wppa-thumbnail-widget.php:205
1514
- msgid "Number of votes desc"
1515
- msgstr ""
1516
-
1517
- #: wppa-album-admin-autosave.php:362 wppa-settings-autosave.php:3566
1518
- #: wppa-settings-autosave.php:3675 wppa-thumbnail-widget.php:206
1519
- msgid "Timestamp desc"
1520
- msgstr ""
1521
-
1522
- #: wppa-album-admin-autosave.php:363 wppa-settings-autosave.php:3567
1523
- msgid "EXIF Date desc"
1524
- msgstr ""
1525
-
1526
- #: wppa-album-admin-autosave.php:392
1527
- msgid "Specify the way the photos should be ordered in this album."
1528
- msgstr ""
1529
-
1530
- #: wppa-album-admin-autosave.php:393
1531
- msgid ""
1532
- "The default setting can be changed in the <b>Photo Albums -> Settings</b> "
1533
- "page <b>Table IV-C1</b>."
1534
- msgstr ""
1535
-
1536
- #: wppa-album-admin-autosave.php:401
1537
- msgid "Sub album sort order:"
1538
- msgstr ""
1539
-
1540
- #: wppa-album-admin-autosave.php:405
1541
- msgid "See Table IV-D1"
1542
- msgstr ""
1543
-
1544
- #: wppa-album-admin-autosave.php:408
1545
- msgid "Order # reverse"
1546
- msgstr ""
1547
-
1548
- #: wppa-album-admin-autosave.php:410
1549
- msgid "Name reverse"
1550
- msgstr ""
1551
-
1552
- #: wppa-album-admin-autosave.php:412
1553
- msgid "Timestamp reverse"
1554
- msgstr ""
1555
-
1556
- #: wppa-album-admin-autosave.php:417
1557
- msgid ""
1558
- "Specify the sequence order method to be used for the sub albums of this "
1559
- "album."
1560
- msgstr ""
1561
-
1562
- #: wppa-album-admin-autosave.php:426
1563
- msgid "Use alt thumbsize:"
1564
- msgstr ""
1565
-
1566
- #: wppa-album-admin-autosave.php:430 wppa-bestof-widget.php:182
1567
- #: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
1568
- #: wppa-topten-widget.php:245 wppa-topten-widget.php:253
1569
- #: wppa-topten-widget.php:258 wppa-topten-widget.php:263
1570
- #: wppa-topten-widget.php:268 wppa-topten-widget.php:273
1571
- #, fuzzy
1572
- msgid "no"
1573
- msgstr "--- ingen ---"
1574
-
1575
- #: wppa-album-admin-autosave.php:431 wppa-bestof-widget.php:181
1576
- #: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
1577
- #: wppa-super-view-widget.php:85 wppa-topten-widget.php:244
1578
- #: wppa-topten-widget.php:252 wppa-topten-widget.php:257
1579
- #: wppa-topten-widget.php:262 wppa-topten-widget.php:267
1580
- #: wppa-topten-widget.php:272
1581
- #, fuzzy
1582
- msgid "yes"
1583
- msgstr "&aring;r"
1584
-
1585
- #: wppa-album-admin-autosave.php:436
1586
- msgid ""
1587
- "If set to <b>yes</b> The settings in <b>Table I-C1a,3a</b> and <b>4a</b> "
1588
- "apply rather than <b>I-C1,3</b> and <b>4</b>."
1589
- msgstr ""
1590
-
1591
- #: wppa-album-admin-autosave.php:446
1592
- msgid "Cover Type:"
1593
- msgstr ""
1594
-
1595
- #: wppa-album-admin-autosave.php:452 wppa-settings-autosave.php:1887
1596
- #: wppa-settings-autosave.php:3739
1597
- msgid "Standard"
1598
- msgstr ""
1599
-
1600
- #: wppa-album-admin-autosave.php:453 wppa-settings-autosave.php:3740
1601
- #, fuzzy
1602
- msgid "Long Descriptions"
1603
- msgstr "Inserisci / modifica la descrizione per questo album."
1604
-
1605
- #: wppa-album-admin-autosave.php:454 wppa-settings-autosave.php:3741
1606
- msgid "Image Factory"
1607
- msgstr ""
1608
-
1609
- #: wppa-album-admin-autosave.php:455 wppa-settings-autosave.php:3742
1610
- msgid "Standard mcr"
1611
- msgstr ""
1612
-
1613
- #: wppa-album-admin-autosave.php:456 wppa-settings-autosave.php:3743
1614
- msgid "Long Descriptions mcr"
1615
- msgstr ""
1616
-
1617
- #: wppa-album-admin-autosave.php:457 wppa-settings-autosave.php:3744
1618
- msgid "Image Factory mcr"
1619
- msgstr ""
1620
-
1621
- #: wppa-album-admin-autosave.php:463
1622
- msgid ""
1623
- "The default cover type is the systems standard set in the <b>Photo Albums -> "
1624
- "Settings</b> page <b>Table IV-D6</b>."
1625
- msgstr ""
1626
-
1627
- #: wppa-album-admin-autosave.php:473
1628
- #, fuzzy
1629
- msgid "Cover Photo:"
1630
- msgstr "Vedligehold"
1631
-
1632
- #: wppa-album-admin-autosave.php:481
1633
- msgid "Select the photo you want to appear on the cover of this album."
1634
- msgstr ""
1635
-
1636
- #: wppa-album-admin-autosave.php:482
1637
- msgid ""
1638
- "Select the way the cover photos of this album are selected, or select a "
1639
- "single image."
1640
- msgstr ""
1641
-
1642
- #: wppa-album-admin-autosave.php:491
1643
- #, fuzzy
1644
- msgid "Upload limit:"
1645
- msgstr "Indsend foto"
1646
-
1647
- #: wppa-album-admin-autosave.php:499 wppa-settings-autosave.php:5613
1648
- #: wppa-settings-autosave.php:7127
1649
- msgid "for ever"
1650
- msgstr ""
1651
-
1652
- #: wppa-album-admin-autosave.php:500 wppa-album-admin-autosave.php:517
1653
- #: wppa-settings-autosave.php:5614 wppa-settings-autosave.php:7128
1654
- #, fuzzy
1655
- msgid "per hour"
1656
- msgstr "1 time"
1657
-
1658
- #: wppa-album-admin-autosave.php:501 wppa-album-admin-autosave.php:518
1659
- #: wppa-settings-autosave.php:5615 wppa-settings-autosave.php:7129
1660
- #, fuzzy
1661
- msgid "per day"
1662
- msgstr "1 dag"
1663
-
1664
- #: wppa-album-admin-autosave.php:502 wppa-album-admin-autosave.php:519
1665
- #: wppa-settings-autosave.php:5616 wppa-settings-autosave.php:7130
1666
- #, fuzzy
1667
- msgid "per week"
1668
- msgstr "1 uge"
1669
-
1670
- #: wppa-album-admin-autosave.php:503 wppa-album-admin-autosave.php:520
1671
- #: wppa-settings-autosave.php:5617 wppa-settings-autosave.php:7131
1672
- #, fuzzy
1673
- msgid "per month"
1674
- msgstr "1 m&aring;ned"
1675
-
1676
- #: wppa-album-admin-autosave.php:504 wppa-album-admin-autosave.php:521
1677
- #: wppa-settings-autosave.php:5618 wppa-settings-autosave.php:7132
1678
- #, fuzzy
1679
- msgid "per year"
1680
- msgstr "1 &aring;r"
1681
-
1682
- #: wppa-album-admin-autosave.php:508
1683
- msgid "Set the upload limit (0 means unlimited) and the upload limit period."
1684
- msgstr ""
1685
-
1686
- #: wppa-album-admin-autosave.php:513
1687
- msgid "Unlimited"
1688
- msgstr ""
1689
-
1690
- #: wppa-album-admin-autosave.php:532
1691
- msgid "Catogories:"
1692
- msgstr ""
1693
-
1694
- #: wppa-album-admin-autosave.php:542
1695
- msgid "Separate categories with commas."
1696
- msgstr ""
1697
-
1698
- #: wppa-album-admin-autosave.php:543 wppa-photo-admin-autosave.php:803
1699
- msgid "Examples:"
1700
- msgstr ""
1701
-
1702
- #: wppa-album-admin-autosave.php:549 wppa-photo-admin-autosave.php:807
1703
- #, fuzzy
1704
- msgid "- select -"
1705
- msgstr ""
1706
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
1707
- "di ricerca differente."
1708
-
1709
- #: wppa-album-admin-autosave.php:555
1710
- #, fuzzy
1711
- msgid "No categories yet"
1712
- msgstr "Intet album er defineret."
1713
-
1714
- #: wppa-album-admin-autosave.php:559 wppa-photo-admin-autosave.php:817
1715
- msgid "Select to add"
1716
- msgstr ""
1717
-
1718
- #: wppa-album-admin-autosave.php:567
1719
- #, fuzzy
1720
- msgid "Default photo tags:"
1721
- msgstr "Standard foto album for"
1722
-
1723
- #: wppa-album-admin-autosave.php:573
1724
- msgid ""
1725
- "Enter the tags that you want to be assigned to new photos in this album."
1726
- msgstr ""
1727
-
1728
- #: wppa-album-admin-autosave.php:578
1729
- #, fuzzy
1730
- msgid ""
1731
- "Are you sure you want to set the default tags to all photos in this album?"
1732
- msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
1733
-
1734
- #: wppa-album-admin-autosave.php:579
1735
- #, fuzzy
1736
- msgid ""
1737
- "Are you sure you want to add the default tags to all photos in this album?"
1738
- msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
1739
-
1740
- #: wppa-album-admin-autosave.php:582
1741
- msgid "Apply default tags"
1742
- msgstr ""
1743
-
1744
- #: wppa-album-admin-autosave.php:587
1745
- msgid "Tag all photos in this album with the default tags."
1746
- msgstr ""
1747
-
1748
- #: wppa-album-admin-autosave.php:592
1749
- msgid "Add default tags"
1750
- msgstr ""
1751
-
1752
- #: wppa-album-admin-autosave.php:597
1753
- #, fuzzy
1754
- msgid "Add the default tags to all photos in this album."
1755
- msgstr "Indsend mindst %d fotos til dette album!"
1756
-
1757
- #: wppa-album-admin-autosave.php:604
1758
- #, fuzzy
1759
- msgid "Link type:"
1760
- msgstr "Link til"
1761
-
1762
- #: wppa-album-admin-autosave.php:611 wppa-settings-autosave.php:7288
1763
- msgid "the sub-albums and thumbnails"
1764
- msgstr ""
1765
-
1766
- #: wppa-album-admin-autosave.php:612 wppa-settings-autosave.php:7289
1767
- #, fuzzy
1768
- msgid "the sub-albums"
1769
- msgstr "Se album"
1770
-
1771
- #: wppa-album-admin-autosave.php:613 wppa-settings-autosave.php:7290
1772
- #, fuzzy
1773
- msgid "the thumbnails"
1774
- msgstr "Se"
1775
-
1776
- #: wppa-album-admin-autosave.php:614 wppa-settings-autosave.php:7291
1777
- msgid "the album photos as slideshow"
1778
- msgstr ""
1779
-
1780
- #: wppa-album-admin-autosave.php:615
1781
- msgid "the link page with a clean url"
1782
- msgstr ""
1783
-
1784
- #: wppa-album-admin-autosave.php:616 wppa-settings-autosave.php:7292
1785
- msgid "no link at all"
1786
- msgstr ""
1787
-
1788
- #: wppa-album-admin-autosave.php:621
1789
- msgid ""
1790
- "If you select \"the link page with a clean url\", select an Auto Page of one "
1791
- "of the photos in this album."
1792
- msgstr ""
1793
-
1794
- #: wppa-album-admin-autosave.php:622
1795
- msgid ""
1796
- "If you select \"the link page with a clean url\", make sure you enter the "
1797
- "correct shortcode on the target page."
1798
- msgstr ""
1799
-
1800
- #: wppa-album-admin-autosave.php:631 wppa-bestof-widget.php:196
1801
- #: wppa-slideshow-widget.php:221 wppa-widget-admin.php:164
1802
- #: wppa-widget-admin.php:174
1803
- #, fuzzy
1804
- msgid "Link to:"
1805
- msgstr "Link til"
1806
-
1807
- #: wppa-album-admin-autosave.php:637 wppa-settings-autosave.php:8882
1808
- #: wppa-settings-autosave.php:8931
1809
- msgid "There are no pages (yet) to link to."
1810
- msgstr ""
1811
-
1812
- #: wppa-album-admin-autosave.php:642
1813
- #, fuzzy
1814
- msgid "--- the same page or post ---"
1815
- msgstr "--- vis ikke ---"
1816
-
1817
- #: wppa-album-admin-autosave.php:650
1818
- msgid ""
1819
- "If you want, you can link the title to a WP page in stead of the album's "
1820
- "content. If so, select the page the title links to."
1821
- msgstr ""
1822
-
1823
- #: wppa-album-admin-autosave.php:660
1824
- msgid "Schedule:"
1825
- msgstr ""
1826
-
1827
- #: wppa-album-admin-autosave.php:671
1828
- msgid ""
1829
- "If enabled, new photos will have their status set to the dat/time specified "
1830
- "here."
1831
- msgstr ""
1832
-
1833
- #: wppa-album-admin-autosave.php:677
1834
- #, fuzzy
1835
- msgid "Are you sure you want to schedule all photos in this album?"
1836
- msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
1837
-
1838
- #: wppa-album-admin-autosave.php:677
1839
- msgid "Schedule all"
1840
- msgstr ""
1841
-
1842
- #: wppa-album-admin-autosave.php:685
1843
- #, fuzzy
1844
- msgid "Are you sure you want to clear the ratings in this album?"
1845
- msgstr "Er du sikker p&aring;, at du vil udgive denne kommentar?"
1846
-
1847
- #: wppa-album-admin-autosave.php:685
1848
- #, fuzzy
1849
- msgid "Reset ratings"
1850
- msgstr "Indstillinger"
1851
-
1852
- #: wppa-album-admin-autosave.php:702
1853
- msgid "Change the upload limit or remove photos to enable new uploads."
1854
- msgstr ""
1855
-
1856
- #: wppa-album-admin-autosave.php:706
1857
- #, php-format
1858
- msgid "(max %d)"
1859
- msgstr ""
1860
-
1861
- #: wppa-album-admin-autosave.php:707
1862
- #, fuzzy
1863
- msgid "Album is full"
1864
- msgstr "album"
1865
-
1866
- #: wppa-album-admin-autosave.php:718
1867
- msgid "Apply new photo desc"
1868
- msgstr ""
1869
-
1870
- #: wppa-album-admin-autosave.php:729
1871
- msgid "Remake all"
1872
- msgstr ""
1873
-
1874
- #: wppa-album-admin-autosave.php:737 wppa-photo-admin-autosave.php:917
1875
- msgid "Remark:"
1876
- msgstr ""
1877
-
1878
- #: wppa-album-admin-autosave.php:740
1879
- #, php-format
1880
- msgid "Album %s is not modified yet"
1881
- msgstr ""
1882
-
1883
- #: wppa-album-admin-autosave.php:748
1884
- msgid "Change sequence order by drag and drop"
1885
- msgstr ""
1886
-
1887
- #: wppa-album-admin-autosave.php:767
1888
- #, fuzzy
1889
- msgid "Moderate comment"
1890
- msgstr "Godkend kommentar administration"
1891
-
1892
- #: wppa-album-admin-autosave.php:783
1893
- #, fuzzy
1894
- msgid "Moderate photo"
1895
- msgstr "Vedligehold"
1896
-
1897
- #: wppa-album-admin-autosave.php:784 wppa-functions.php:2108
1898
- #: wppa-photo-admin-autosave.php:24
1899
- msgid "Edit photo"
1900
- msgstr "N&aelig;ste billede"
1901
-
1902
- #: wppa-album-admin-autosave.php:808
1903
- #, fuzzy
1904
- msgid "Delete Album"
1905
- msgstr "Impossibile creare album. "
1906
-
1907
- #: wppa-album-admin-autosave.php:810 wppa-boxes-html.php:807
1908
- #: wppa-breadcrumb.php:276 wppa-breadcrumb.php:294 wppa-breadcrumb.php:322
1909
- #: wppa-breadcrumb.php:340 wppa-breadcrumb.php:404 wppa-breadcrumb.php:429
1910
- #: wppa-breadcrumb.php:577 wppa-comment-admin.php:65 wppa-featen-widget.php:137
1911
- #: wppa-lasten-widget.php:177 wppa-slideshow-widget.php:199
1912
- #: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:218
1913
- #: wppa-upload-widget.php:77 wppa-upload.php:116 wppa-upload.php:204
1914
- #: wppa-upload.php:251
1915
- #, fuzzy
1916
- msgid "Album:"
1917
- msgstr "Album num."
1918
-
1919
- #: wppa-album-admin-autosave.php:811
1920
- #, fuzzy
1921
- msgid "Are you sure you want to delete this album?"
1922
- msgstr "Er du sikker p&aring;, at du vil fjerne denne kommentar?"
1923
-
1924
- #: wppa-album-admin-autosave.php:812
1925
- msgid "Press Delete to continue, and Cancel to go back."
1926
- msgstr ""
1927
-
1928
- #: wppa-album-admin-autosave.php:817
1929
- msgid "What would you like to do with photos currently in the album?"
1930
- msgstr ""
1931
-
1932
- #: wppa-album-admin-autosave.php:818 wppa-album-admin-autosave.php:827
1933
- #: wppa-album-admin-autosave.php:1062 wppa-album-admin-autosave.php:1102
1934
- #: wppa-album-admin-autosave.php:1199 wppa-album-admin-autosave.php:1371
1935
- #: wppa-album-admin-autosave.php:1466 wppa-album-admin-autosave.php:1652
1936
- #: wppa-comment-admin.php:311 wppa-comment-admin.php:380
1937
- #: wppa-comment-admin.php:398 wppa-functions.php:1921 wppa-links.php:740
1938
- #: wppa-links.php:758 wppa-photo-admin-autosave.php:1283
1939
- #: wppa-photo-admin-autosave.php:1351 wppa-thumbnails.php:590
1940
- msgid "Delete"
1941
- msgstr "Slet"
1942
-
1943
- #: wppa-album-admin-autosave.php:819
1944
- msgid "Move to:"
1945
- msgstr ""
1946
-
1947
- #: wppa-album-admin-autosave.php:826 wppa-settings-autosave.php:2665
1948
- msgid "Cancel"
1949
- msgstr "Cancella"
1950
-
1951
- #: wppa-album-admin-autosave.php:857
1952
- msgid "Unable to move photos. Album not deleted."
1953
- msgstr ""
1954
-
1955
- #: wppa-album-admin-autosave.php:879
1956
- #, fuzzy
1957
- msgid "Manage Albums"
1958
- msgstr "Impossibile creare album. "
1959
-
1960
- #: wppa-album-admin-autosave.php:885
1961
- #, fuzzy
1962
- msgid "Are you sure you want to create a new album?"
1963
- msgstr "Er du sikker p&aring;, at du vil fjerne denne kommentar?"
1964
-
1965
- #: wppa-album-admin-autosave.php:890
1966
- #, fuzzy
1967
- msgid "Create New Empty Album"
1968
- msgstr "Impossibile creare album. "
1969
-
1970
- #: wppa-album-admin-autosave.php:896
1971
- msgid "Switch to Collapsable table"
1972
- msgstr ""
1973
-
1974
- #: wppa-album-admin-autosave.php:899
1975
- msgid "Switch to Flat table"
1976
- msgstr ""
1977
-
1978
- #: wppa-album-admin-autosave.php:995 wppa-album-admin-autosave.php:1132
1979
- #: wppa-album-admin-autosave.php:1303 wppa-album-admin-autosave.php:1398
1980
- #: wppa-photo-admin-autosave.php:1332 wppa-photo-admin-autosave.php:1451
1981
- msgid "ID"
1982
- msgstr ""
1983
-
1984
- #: wppa-album-admin-autosave.php:1037 wppa-album-admin-autosave.php:1174
1985
- #: wppa-album-admin-autosave.php:1346 wppa-album-admin-autosave.php:1441
1986
- msgid "Order"
1987
- msgstr ""
1988
-
1989
- #: wppa-album-admin-autosave.php:1047 wppa-album-admin-autosave.php:1184
1990
- #: wppa-album-admin-autosave.php:1356 wppa-album-admin-autosave.php:1451
1991
- msgid "Parent"
1992
- msgstr ""
1993
-
1994
- #: wppa-album-admin-autosave.php:1055 wppa-album-admin-autosave.php:1192
1995
- #: wppa-album-admin-autosave.php:1364 wppa-album-admin-autosave.php:1459
1996
- msgid "Albums/Photos/Moderation required/Scheduled"
1997
- msgstr ""
1998
-
1999
- #: wppa-album-admin-autosave.php:1056 wppa-album-admin-autosave.php:1193
2000
- #: wppa-album-admin-autosave.php:1365 wppa-album-admin-autosave.php:1460
2001
- msgid "A/P/PM/S"
2002
- msgstr ""
2003
-
2004
- #: wppa-album-admin-autosave.php:1059 wppa-album-admin-autosave.php:1097
2005
- #: wppa-album-admin-autosave.php:1196 wppa-album-admin-autosave.php:1368
2006
- #: wppa-album-admin-autosave.php:1463 wppa-album-admin-autosave.php:1541
2007
- #: wppa-album-admin-autosave.php:1647
2008
- msgid "Quick"
2009
- msgstr ""
2010
-
2011
- #: wppa-album-admin-autosave.php:1060 wppa-album-admin-autosave.php:1098
2012
- #: wppa-album-admin-autosave.php:1197 wppa-album-admin-autosave.php:1369
2013
- #: wppa-album-admin-autosave.php:1464 wppa-album-admin-autosave.php:1546
2014
- #: wppa-album-admin-autosave.php:1648
2015
- msgid "Bulk"
2016
- msgstr ""
2017
-
2018
- #: wppa-album-admin-autosave.php:1061 wppa-album-admin-autosave.php:1099
2019
- #: wppa-album-admin-autosave.php:1198 wppa-album-admin-autosave.php:1370
2020
- #: wppa-album-admin-autosave.php:1465 wppa-album-admin-autosave.php:1649
2021
- msgid "Seq"
2022
- msgstr ""
2023
-
2024
- #: wppa-album-admin-autosave.php:1063 wppa-album-admin-autosave.php:1107
2025
- #: wppa-album-admin-autosave.php:1110 wppa-album-admin-autosave.php:1200
2026
- #: wppa-album-admin-autosave.php:1372 wppa-album-admin-autosave.php:1467
2027
- #: wppa-album-admin-autosave.php:1657 wppa-album-admin-autosave.php:1660
2028
- #, fuzzy
2029
- msgid "Create"
2030
- msgstr "Impossibile creare album. "
2031
-
2032
- #: wppa-album-admin-autosave.php:1106 wppa-album-admin-autosave.php:1656
2033
- #, fuzzy
2034
- msgid "Are you sure you want to create a subalbum?"
2035
- msgstr "Er du sikker p&aring;, at du vil fjerne denne kommentar?"
2036
-
2037
- #: wppa-album-admin-autosave.php:1213 wppa-album-admin-autosave.php:1494
2038
- #, fuzzy
2039
- msgid "No albums yet."
2040
- msgstr "Intet album er defineret."
2041
-
2042
- #: wppa-album-admin-autosave.php:1297 wppa-album-admin-autosave.php:1620
2043
- #, fuzzy
2044
- msgid "Collapse subalbums"
2045
- msgstr "album"
2046
-
2047
- #: wppa-album-admin-autosave.php:1298 wppa-album-admin-autosave.php:1621
2048
- #, fuzzy
2049
- msgid "Expand subalbums"
2050
- msgstr ", et underalbum til"
2051
-
2052
- #: wppa-album-admin-autosave.php:1380
2053
- msgid ""
2054
- "The following albums are ---separate--- and do not show up in the generic "
2055
- "album display"
2056
- msgstr ""
2057
-
2058
- #: wppa-album-admin-autosave.php:1510
2059
- msgid "Search for photos to edit"
2060
- msgstr ""
2061
-
2062
- #: wppa-album-admin-autosave.php:1511
2063
- msgid ""
2064
- "Enter search words seperated by commas. Photos will meet all search words by "
2065
- "their names, descriptions, translated keywords and/or tags."
2066
- msgstr ""
2067
-
2068
- #: wppa-album-admin-autosave.php:1517
2069
- #, fuzzy
2070
- msgid "Any"
2071
- msgstr "og"
2072
-
2073
- #: wppa-album-admin-autosave.php:1521
2074
- #, fuzzy
2075
- msgid "Search for"
2076
- msgstr "Cerca"
2077
-
2078
- #: wppa-album-admin-autosave.php:1563
2079
- #, php-format
2080
- msgid ""
2081
- "There are <strong>%d</strong> albums and <strong>%d</strong> photos in the "
2082
- "system."
2083
- msgstr ""
2084
-
2085
- #: wppa-album-admin-autosave.php:1564
2086
- #, php-format
2087
- msgid "<strong>%d</strong> photos are pending moderation."
2088
- msgstr ""
2089
-
2090
- #: wppa-album-admin-autosave.php:1565
2091
- #, php-format
2092
- msgid "<strong>%d</strong> photos are scheduled for later publishing."
2093
- msgstr ""
2094
-
2095
- #: wppa-album-admin-autosave.php:1568
2096
- #, php-format
2097
- msgid "The most recently added album is <strong>%s</strong> (%d)."
2098
- msgstr ""
2099
-
2100
- #: wppa-album-admin-autosave.php:1572
2101
- #, php-format
2102
- msgid "The most recently added photo is <strong>%s</strong> (%d)"
2103
- msgstr ""
2104
-
2105
- #: wppa-album-admin-autosave.php:1573
2106
- #, php-format
2107
- msgid "in album <strong>%s</strong> (%d)."
2108
- msgstr ""
2109
-
2110
- #: wppa-album-admin-autosave.php:1694
2111
- #, php-format
2112
- msgid "Unable to move photos to album %s. Album not deleted."
2113
- msgstr ""
2114
-
2115
- #: wppa-album-admin-autosave.php:1715
2116
- #, php-format
2117
- msgid "Time is out after %d photo deletes. Please redo this operation"
2118
- msgstr ""
2119
-
2120
- #: wppa-album-admin-autosave.php:1750
2121
- #, fuzzy
2122
- msgid "Album Deleted."
2123
- msgstr "Carica foto: per caricare le foto in un album che hai creato."
2124
-
2125
- #: wppa-album-admin-autosave.php:1772
2126
- #, php-format
2127
- msgid "auto select max %s random"
2128
- msgstr ""
2129
-
2130
- #: wppa-album-admin-autosave.php:1774
2131
- #, php-format
2132
- msgid "auto select max %s featured"
2133
- msgstr ""
2134
-
2135
- #: wppa-album-admin-autosave.php:1776
2136
- #, fuzzy, php-format
2137
- msgid "max %s most recent added"
2138
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
2139
-
2140
- #: wppa-album-admin-autosave.php:1778
2141
- #, php-format
2142
- msgid "max %s from (grand)child albums"
2143
- msgstr ""
2144
-
2145
- #: wppa-album-admin-autosave.php:1780
2146
- #, fuzzy, php-format
2147
- msgid "max %s most recent from (grand)child albums"
2148
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
2149
-
2150
- #: wppa-album-admin-autosave.php:1784
2151
- #, fuzzy
2152
- msgid "--- random ---"
2153
- msgstr "--- ingen ---"
2154
-
2155
- #: wppa-album-admin-autosave.php:1786
2156
- #, fuzzy
2157
- msgid "--- random featured ---"
2158
- msgstr "--- vises ikke ---"
2159
-
2160
- #: wppa-album-admin-autosave.php:1788
2161
- #, fuzzy
2162
- msgid "--- most recent added ---"
2163
- msgstr "--- vises ikke ---"
2164
-
2165
- #: wppa-album-admin-autosave.php:1790
2166
- msgid "--- random from (grand)children ---"
2167
- msgstr ""
2168
-
2169
- #: wppa-album-admin-autosave.php:1792
2170
- #, fuzzy
2171
- msgid "--- most recent from (grand)children ---"
2172
- msgstr "--- vises ikke ---"
2173
-
2174
- #: wppa-album-admin-autosave.php:1804
2175
- msgid "Nameless, filename = "
2176
- msgstr ""
2177
-
2178
- #: wppa-album-covers.php:1286 wppa-album-covers.php:1345
2179
- #: wppa-album-covers.php:1353
2180
- msgid "View the album"
2181
- msgstr "Se album"
2182
-
2183
- #: wppa-album-covers.php:1306
2184
- #, fuzzy
2185
- msgid "View the cover photo"
2186
- msgid_plural "View the cover photos"
2187
- msgstr[0] "Se forside foto"
2188
- msgstr[1] "Se forside foto"
2189
-
2190
- #: wppa-album-covers.php:1359
2191
- msgid "View"
2192
- msgstr "Se"
2193
-
2194
- #: wppa-album-covers.php:1362
2195
- msgid "album"
2196
- msgstr "album"
2197
-
2198
- #: wppa-album-covers.php:1365 wppa-settings-autosave.php:1232
2199
- #: wppa-settings-autosave.php:5650
2200
- msgid "albums"
2201
- msgstr "album"
2202
-
2203
- #: wppa-album-covers.php:1374 wppa-boxes-html.php:1162 wppa-breadcrumb.php:148
2204
- #: wppa-breadcrumb.php:154 wppa-breadcrumb.php:161 wppa-breadcrumb.php:368
2205
- #: wppa-breadcrumb.php:379 wppa-functions.php:4270 wppa-utils.php:1605
2206
- msgid "and"
2207
- msgstr "og"
2208
-
2209
- #: wppa-album-covers.php:1379 wppa-comment-admin.php:253
2210
- msgid "photo"
2211
- msgstr "foto"
2212
-
2213
- #: wppa-album-covers.php:1382 wppa-album-covers.php:1386
2214
- #: wppa-settings-autosave.php:698 wppa-settings-autosave.php:737
2215
- #: wppa-settings-autosave.php:1152 wppa-settings-autosave.php:1192
2216
- #: wppa-settings-autosave.php:1212 wppa-settings-autosave.php:1252
2217
- #: wppa-settings-autosave.php:3763 wppa-settings-autosave.php:5634
2218
- #: wppa-settings-autosave.php:7125
2219
- msgid "photos"
2220
- msgstr "fotos"
2221
-
2222
- #: wppa-album-covers.php:1565 wppa-boxes-html.php:831 wppa-non-admin.php:577
2223
- #: wppa-settings-autosave.php:2137 wppa-settings-autosave.php:5083
2224
- #: wppa-settings-autosave.php:7447
2225
- msgid "Slideshow"
2226
- msgstr "Slideshow"
2227
-
2228
- #: wppa-album-covers.php:1566
2229
- msgid "Browse photos"
2230
- msgstr "Se fotos"
2231
-
2232
- #: wppa-album-covers.php:1601
2233
- msgid "Categories:"
2234
- msgstr ""
2235
-
2236
- #: wppa-album-covers.php:1604 wppa-breadcrumb.php:389 wppa-breadcrumb.php:394
2237
- msgid "Category:"
2238
- msgstr ""
2239
-
2240
- #: wppa-album-navigator-widget.php:12
2241
- msgid "WPPA+ Album navigator"
2242
- msgstr ""
2243
-
2244
- #: wppa-album-navigator-widget.php:13
2245
- msgid "Album navigator"
2246
- msgstr ""
2247
-
2248
- #: wppa-album-navigator-widget.php:91 wppa-album-widget.php:317
2249
- #: wppa-bestof-widget.php:131 wppa-comment-widget.php:119
2250
- #: wppa-featen-widget.php:134 wppa-gp-widget.php:88 wppa-lasten-widget.php:174
2251
- #: wppa-multitag-widget.php:72 wppa-potd-widget.php:186 wppa-qr-widget.php:94
2252
- #: wppa-search-widget.php:73 wppa-slideshow-widget.php:198
2253
- #: wppa-stereo-widget.php:68 wppa-super-view-widget.php:73
2254
- #: wppa-tagcloud-widget.php:68 wppa-thumbnail-widget.php:184
2255
- #: wppa-topten-widget.php:215 wppa-upldr-widget.php:175
2256
- #: wppa-upload-widget.php:75 wppa-widget-admin.php:177
2257
- msgid "Title:"
2258
- msgstr ""
2259
-
2260
- #: wppa-album-navigator-widget.php:92 wppa-album-widget.php:318
2261
- #, fuzzy
2262
- msgid "Album selection or Parent album:"
2263
- msgstr ""
2264
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
2265
- "di ricerca differente."
2266
-
2267
- #: wppa-album-navigator-widget.php:95 wppa-album-widget.php:321
2268
- #, fuzzy
2269
- msgid "--- all albums ---"
2270
- msgstr "--- ingen ---"
2271
-
2272
- #: wppa-album-navigator-widget.php:96 wppa-album-widget.php:322
2273
- #, fuzzy
2274
- msgid "--- all generic albums ---"
2275
- msgstr "--- ingen ---"
2276
-
2277
- #: wppa-album-navigator-widget.php:97 wppa-album-widget.php:323
2278
- #, fuzzy
2279
- msgid "--- all separate albums ---"
2280
- msgstr "--- vis ikke ---"
2281
-
2282
- #: wppa-album-navigator-widget.php:109 wppa-album-widget.php:343
2283
- msgid "Skip \"empty\" albums:"
2284
- msgstr ""
2285
-
2286
- #: wppa-album-navigator-widget.php:111 wppa-album-widget.php:338
2287
- #: wppa-album-widget.php:345 wppa-lasten-widget.php:202
2288
- #: wppa-slideshow-widget.php:206 wppa-slideshow-widget.php:226
2289
- #: wppa-slideshow-widget.php:233 wppa-slideshow-widget.php:240
2290
- #: wppa-slideshow-widget.php:247 wppa-slideshow-widget.php:254
2291
- #: wppa-thumbnail-widget.php:227
2292
- msgid "no."
2293
- msgstr ""
2294
-
2295
- #: wppa-album-navigator-widget.php:112 wppa-album-widget.php:339
2296
- #: wppa-album-widget.php:346 wppa-lasten-widget.php:203
2297
- #: wppa-slideshow-widget.php:207 wppa-slideshow-widget.php:227
2298
- #: wppa-slideshow-widget.php:234 wppa-slideshow-widget.php:241
2299
- #: wppa-slideshow-widget.php:248 wppa-slideshow-widget.php:255
2300
- #: wppa-thumbnail-widget.php:228
2301
- msgid "yes."
2302
- msgstr ""
2303
-
2304
- #: wppa-album-widget.php:15
2305
- #, fuzzy
2306
- msgid "WPPA+ Albums"
2307
- msgstr "Alle albums"
2308
-
2309
- #: wppa-album-widget.php:16 wppa-album-widget.php:308
2310
- #, fuzzy
2311
- msgid "Thumbnail Albums"
2312
- msgstr "Miniatura"
2313
-
2314
- #: wppa-album-widget.php:109
2315
- #, php-format
2316
- msgid "Upload at least %d photos to this album!"
2317
- msgstr "Indsend mindst %d fotos til dette album!"
2318
-
2319
- #: wppa-album-widget.php:324
2320
- #, fuzzy
2321
- msgid "--- most recently added albums ---"
2322
- msgstr "Le impostazioni sono state aggiornate"
2323
-
2324
- #: wppa-album-widget.php:336
2325
- #, fuzzy
2326
- msgid "Show album names:"
2327
- msgstr ""
2328
- "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
2329
- "per i titoli delle copertine degli album."
2330
-
2331
- #: wppa-album-widget.php:350 wppa-comment-widget.php:120
2332
- #: wppa-featen-widget.php:145 wppa-lasten-widget.php:207
2333
- #: wppa-thumbnail-widget.php:232 wppa-topten-widget.php:277
2334
- msgid ""
2335
- "You can set the sizes in this widget in the <b>Photo Albums -> Settings</b> "
2336
- "admin page."
2337
- msgstr ""
2338
-
2339
- #: wppa-audio.php:183
2340
- msgid ""
2341
- "There is no filetype available for your browser, or your browser does not "
2342
- "support html5 audio"
2343
- msgstr ""
2344
-
2345
- #: wppa-bestof-widget.php:15
2346
- #, fuzzy
2347
- msgid "WPPA+ Best Of Rated Photos"
2348
- msgstr "fotos"
2349
-
2350
- #: wppa-bestof-widget.php:16 wppa-bestof-widget.php:49
2351
- #: wppa-bestof-widget.php:109
2352
- #, fuzzy
2353
- msgid "Best Of Photos"
2354
- msgstr "fotos"
2355
-
2356
- #: wppa-bestof-widget.php:152
2357
- #, fuzzy
2358
- msgid "Photo(s)"
2359
- msgstr "Foto"
2360
-
2361
- #: wppa-bestof-widget.php:153
2362
- msgid "Owner(s)"
2363
- msgstr ""
2364
-
2365
- #: wppa-bestof-widget.php:158
2366
- #, fuzzy
2367
- msgid "Last week"
2368
- msgstr "1 uge"
2369
-
2370
- #: wppa-bestof-widget.php:159
2371
- #, fuzzy
2372
- msgid "This week"
2373
- msgstr "1 uge"
2374
-
2375
- #: wppa-bestof-widget.php:160
2376
- #, fuzzy
2377
- msgid "Last month"
2378
- msgstr "1 m&aring;ned"
2379
-
2380
- #: wppa-bestof-widget.php:161
2381
- #, fuzzy
2382
- msgid "This month"
2383
- msgstr "1 m&aring;ned"
2384
-
2385
- #: wppa-bestof-widget.php:162
2386
- #, fuzzy
2387
- msgid "Last year"
2388
- msgstr "1 &aring;r"
2389
-
2390
- #: wppa-bestof-widget.php:163
2391
- #, fuzzy
2392
- msgid "This year"
2393
- msgstr "1 &aring;r"
2394
-
2395
- #: wppa-bestof-widget.php:168
2396
- msgid "Number of max ratings"
2397
- msgstr ""
2398
-
2399
- #: wppa-bestof-widget.php:169 wppa-topten-widget.php:236
2400
- #, fuzzy
2401
- msgid "Mean value"
2402
- msgstr "Mean value:"
2403
-
2404
- #: wppa-bestof-widget.php:178 wppa-topten-widget.php:249
2405
- #: wppa-widget-admin.php:188
2406
- msgid "Subtitle:"
2407
- msgstr ""
2408
-
2409
- #: wppa-bestof-widget.php:179
2410
- #, fuzzy
2411
- msgid "No of max ratings:"
2412
- msgstr "Altezza massima."
2413
-
2414
- #: wppa-bestof-widget.php:184 wppa-topten-widget.php:260
2415
- #, fuzzy
2416
- msgid "Mean rating:"
2417
- msgstr "Valutazione:"
2418
-
2419
- #: wppa-bestof-widget.php:189 wppa-topten-widget.php:265
2420
- #, fuzzy
2421
- msgid "Rating count:"
2422
- msgstr "Bed&oslash;mmelse: %s"
2423
-
2424
- #: wppa-bestof-widget.php:198 wppa-common-functions.php:2016 wppa-items.php:365
2425
- #: wppa-settings-autosave.php:1301 wppa-settings-autosave.php:1622
2426
- #: wppa-settings-autosave.php:3352 wppa-settings-autosave.php:3366
2427
- #: wppa-settings-autosave.php:3554 wppa-settings-autosave.php:3668
2428
- #: wppa-settings-autosave.php:5154 wppa-settings-autosave.php:6964
2429
- #: wppa-settings-autosave.php:7143 wppa-settings-autosave.php:7199
2430
- #: wppa-settings-autosave.php:8053 wppa-settings-autosave.php:8209
2431
- #: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
2432
- #: wppa-tinymce-shortcodes.php:513 wppa-upload.php:1515 wppa-watermark.php:520
2433
- #: wppa-widget-admin.php:76 wppa-widget-admin.php:193
2434
- msgid "--- none ---"
2435
- msgstr "--- ingen ---"
2436
-
2437
- #: wppa-bestof-widget.php:199
2438
- #, fuzzy
2439
- msgid "The authors album(s)"
2440
- msgstr "Se dette billed p&aring; %s"
2441
-
2442
- #: wppa-bestof-widget.php:200
2443
- #, fuzzy
2444
- msgid "The photos in the authors album(s)"
2445
- msgstr "Se dette billed p&aring; %s"
2446
-
2447
- #: wppa-bestof-widget.php:201
2448
- #, fuzzy
2449
- msgid "All the authors photos"
2450
- msgstr ""
2451
- "I visitatori possono ottenere una panoramica delle immagini contenute in un "
2452
- "album grazie alle miniature."
2453
-
2454
- #: wppa-boxes-html.php:133 wppa-boxes-html.php:238
2455
- #, fuzzy
2456
- msgid "Photo search results"
2457
- msgstr "Risultati della ricerca per: %s"
2458
-
2459
- #: wppa-boxes-html.php:370 wppa-breadcrumb.php:136
2460
- #: wppa-settings-autosave.php:384
2461
- #, fuzzy
2462
- msgid "Albums"
2463
- msgstr "album"
2464
-
2465
- #: wppa-boxes-html.php:376 wppa-breadcrumb.php:151
2466
- #, fuzzy
2467
- msgid "Photos"
2468
- msgstr "Foto"
2469
-
2470
- #: wppa-boxes-html.php:395
2471
- msgid "Category"
2472
- msgstr ""
2473
-
2474
- #: wppa-boxes-html.php:408 wppa-boxes-html.php:541
2475
- msgid "Text"
2476
- msgstr ""
2477
-
2478
- #: wppa-boxes-html.php:424 wppa-boxes-html.php:478 wppa-boxes-html.php:624
2479
- #: wppa-boxes-html.php:654
2480
- msgid "CTRL+Click to add/remove option."
2481
- msgstr ""
2482
-
2483
- #: wppa-boxes-html.php:425 wppa-boxes-html.php:479 wppa-boxes-html.php:625
2484
- #: wppa-boxes-html.php:655
2485
- msgid "Items must meet all selected options."
2486
- msgstr ""
2487
-
2488
- #: wppa-boxes-html.php:533 wppa-settings-autosave.php:8313
2489
- #: wppa-settings-autosave.php:8353 wppa-settings-autosave.php:8375
2490
- #: wppa-settings-autosave.php:8421
2491
- msgid "Tag"
2492
- msgstr ""
2493
-
2494
- #: wppa-boxes-html.php:549
2495
- msgid "Iptc"
2496
- msgstr ""
2497
-
2498
- #: wppa-boxes-html.php:558
2499
- msgid "Exif"
2500
- msgstr ""
2501
-
2502
- #: wppa-boxes-html.php:756 wppa-boxes-html.php:835
2503
- msgid "Submit"
2504
- msgstr ""
2505
-
2506
- #: wppa-boxes-html.php:798 wppa-super-view-widget.php:14
2507
- #: wppa-super-view-widget.php:64
2508
- #, fuzzy
2509
- msgid "Super View Photos"
2510
- msgstr "Se forside fotos"
2511
-
2512
- #: wppa-boxes-html.php:823 wppa-settings-autosave.php:400
2513
- #: wppa-settings-autosave.php:4345
2514
- #, fuzzy
2515
- msgid "Thumbnails"
2516
- msgstr "Miniatura"
2517
-
2518
- #: wppa-boxes-html.php:869
2519
- #, fuzzy
2520
- msgid "Tagged photos"
2521
- msgstr "Top fotos"
2522
-
2523
- #: wppa-boxes-html.php:883
2524
- msgid "Please select a tagcloud landing page in Table VI-C3b"
2525
- msgstr "V&aelig;lg en side, hvor tag-skyen skal vises i Tabel VI-C3b"
2526
-
2527
- #: wppa-boxes-html.php:942
2528
- #, fuzzy
2529
- msgid "Multi Tagged photos"
2530
- msgstr "Top fotos"
2531
-
2532
- #: wppa-boxes-html.php:956
2533
- msgid "Please select a multitag landing page in Table VI-C4b"
2534
- msgstr "V&aelig;lg en side, hvor multi-tag skal vises i Tabel VI-C4b"
2535
-
2536
- #: wppa-boxes-html.php:1001
2537
- msgid "Please check the tag(s) that the photos must have"
2538
- msgstr "Unders&oslash;g de tag(s) som dine fotos har"
2539
-
2540
- #: wppa-boxes-html.php:1032
2541
- msgid "And"
2542
- msgstr "og"
2543
-
2544
- #: wppa-boxes-html.php:1043
2545
- msgid "Or"
2546
- msgstr "Eller"
2547
-
2548
- #: wppa-boxes-html.php:1058
2549
- msgid "Inverse selection"
2550
- msgstr ""
2551
-
2552
- #: wppa-boxes-html.php:1111
2553
- msgid "Find!"
2554
- msgstr "Find!"
2555
-
2556
- #: wppa-boxes-html.php:1138
2557
- msgid "Social media landing page"
2558
- msgstr ""
2559
-
2560
- #: wppa-boxes-html.php:1163 wppa-utils.php:1605
2561
- #, php-format
2562
- msgid "See this image on %s"
2563
- msgstr "Se dette billed p&aring; %s"
2564
-
2565
- #: wppa-boxes-html.php:1188 wppa-qr-widget.php:39
2566
- msgid "QR code"
2567
- msgstr ""
2568
-
2569
- #: wppa-boxes-html.php:1233
2570
- #, php-format
2571
- msgid "Tweet %s on Twitter"
2572
- msgstr "Tweet %s p&aring; Twitter"
2573
-
2574
- #: wppa-boxes-html.php:1240
2575
- #, fuzzy
2576
- msgid "Share on Twitter"
2577
- msgstr "Condividi su Twitter"
2578
-
2579
- #: wppa-boxes-html.php:1253
2580
- #, php-format
2581
- msgid "Share %s on Google+"
2582
- msgstr "Del %s p&aring; Google+"
2583
-
2584
- #: wppa-boxes-html.php:1261
2585
- #, fuzzy
2586
- msgid "Share on Google+"
2587
- msgstr "Condividi su Google+"
2588
-
2589
- #: wppa-boxes-html.php:1276
2590
- #, php-format
2591
- msgid "Share %s on Pinterest"
2592
- msgstr "Del %s p&aring; Pinterest"
2593
-
2594
- #: wppa-boxes-html.php:1285
2595
- #, fuzzy
2596
- msgid "Share on Pinterest"
2597
- msgstr "Condividi on Pinterest"
2598
-
2599
- #: wppa-boxes-html.php:1420
2600
- #, fuzzy
2601
- msgid "Comment on Facebook:"
2602
- msgstr "Commenta su Facebook:"
2603
-
2604
- #: wppa-boxes-html.php:1521 wppa-upload.php:1125
2605
- msgid "Working..."
2606
- msgstr ""
2607
-
2608
- #: wppa-boxes-html.php:1523 wppa-boxes-html.php:1526
2609
- #, fuzzy
2610
- msgid "Delete album"
2611
- msgstr "Impossibile creare album. "
2612
-
2613
- #: wppa-boxes-html.php:1613
2614
- #, fuzzy
2615
- msgid "Create Album"
2616
- msgstr "Impossibile creare album. "
2617
-
2618
- #: wppa-boxes-html.php:1658 wppa-boxes-html.php:2406
2619
- #, fuzzy
2620
- msgid "Enter album name."
2621
- msgstr ""
2622
- "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
2623
- "per i titoli delle copertine degli album."
2624
-
2625
- #: wppa-boxes-html.php:1660 wppa-boxes-html.php:2408
2626
- #, fuzzy
2627
- msgid "Don't leave this blank!"
2628
- msgstr "Puoi anche lasciare/impostare a blank"
2629
-
2630
- #: wppa-boxes-html.php:1679
2631
- #, fuzzy
2632
- msgid "Enter album description"
2633
- msgstr "Inserisci / modifica la descrizione per questo album."
2634
-
2635
- #: wppa-boxes-html.php:1701
2636
- #, fuzzy
2637
- msgid "Create album"
2638
- msgstr "Impossibile creare album. "
2639
-
2640
- #: wppa-boxes-html.php:1757 wppa-boxes-html.php:1770 wppa-functions.php:3992
2641
- msgid "Max uploads reached"
2642
- msgstr "Maks. antal indsendinger er opn&aring;et"
2643
-
2644
- #: wppa-boxes-html.php:1836 wppa-upload.php:134
2645
- msgid "Upload Photo"
2646
- msgstr "Indsend foto"
2647
-
2648
- #: wppa-boxes-html.php:1983
2649
- #, php-format
2650
- msgid ""
2651
- "You may upload up to %s photos at once if your browser supports HTML-5 "
2652
- "multiple file upload"
2653
- msgstr ""
2654
- "Du m&aring; indsende op til %s fotos med det samme, hvis din fremviser "
2655
- "underst&oslash;tter HTML-5 multi fil indsendelse"
2656
-
2657
- #: wppa-boxes-html.php:1991
2658
- #, php-format
2659
- msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
2660
- msgstr "Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
2661
-
2662
- #: wppa-boxes-html.php:2020 wppa-upload.php:123 wppa-upload.php:211
2663
- #: wppa-upload.php:258 wppa-upload.php:694
2664
- msgid "Apply watermark file:"
2665
- msgstr "Inds&aelig;t vandm&aelig;rke:"
2666
-
2667
- #: wppa-boxes-html.php:2042 wppa-upload.php:128 wppa-upload.php:216
2668
- #: wppa-upload.php:263 wppa-upload.php:698
2669
- msgid "Position:"
2670
- msgstr "Position:"
2671
-
2672
- #: wppa-boxes-html.php:2070
2673
- #, fuzzy
2674
- msgid ""
2675
- "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
2676
- "photoname if available, else the original filename will be used as photo "
2677
- "name."
2678
- msgstr ""
2679
- "Hvis du ikke udfylder dette felt, s&aring; vil filens navn blive brugt som "
2680
- "foto navn"
2681
-
2682
- #: wppa-boxes-html.php:2075
2683
- #, fuzzy
2684
- msgid ""
2685
- "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
2686
- "available, else the original filename will be used as photo name."
2687
- msgstr ""
2688
- "Hvis du ikke udfylder dette felt, s&aring; vil filens navn blive brugt som "
2689
- "foto navn"
2690
-
2691
- #: wppa-boxes-html.php:2080
2692
- msgid ""
2693
- "If you leave this blank, the original filename will be used as photo name."
2694
- msgstr ""
2695
- "Hvis du ikke udfylder dette felt, s&aring; vil filens navn blive brugt som "
2696
- "foto navn"
2697
-
2698
- #: wppa-boxes-html.php:2094
2699
- msgid "Enter photo name."
2700
- msgstr "Indtast foto navn"
2701
-
2702
- #: wppa-boxes-html.php:2115
2703
- msgid "Enter/modify photo description"
2704
- msgstr "Inds&aelig;t/rediger beskrivelse af foto"
2705
-
2706
- #: wppa-boxes-html.php:2146
2707
- msgid "hidden"
2708
- msgstr ""
2709
-
2710
- #: wppa-boxes-html.php:2215
2711
- msgid "Preview tags:"
2712
- msgstr ""
2713
-
2714
- #: wppa-boxes-html.php:2228
2715
- #, fuzzy
2716
- msgid "Please select an album and try again"
2717
- msgstr ""
2718
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
2719
- "di ricerca differente."
2720
-
2721
- #: wppa-boxes-html.php:2242
2722
- #, fuzzy
2723
- msgid "Upload photo"
2724
- msgstr "Indsend foto"
2725
-
2726
- #: wppa-boxes-html.php:2298
2727
- #, fuzzy
2728
- msgid "ERROR: unable to upload files."
2729
- msgstr "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at uploade en fil.</b>"
2730
-
2731
- #: wppa-boxes-html.php:2348
2732
- #, fuzzy
2733
- msgid "Edit albuminfo"
2734
- msgstr "Rediger!"
2735
-
2736
- #: wppa-boxes-html.php:2428
2737
- #, fuzzy
2738
- msgid "Album description:"
2739
- msgstr "Inserisci / modifica la descrizione per questo album."
2740
-
2741
- #: wppa-boxes-html.php:2447
2742
- #, fuzzy
2743
- msgid "Update album"
2744
- msgstr ""
2745
- "Non hai i permessi per potere aggiornare le informazioni di questo album"
2746
-
2747
- #: wppa-boxes-html.php:2521
2748
- msgid "wrote:"
2749
- msgstr "skrev:"
2750
-
2751
- #: wppa-boxes-html.php:2575
2752
- msgid "Avatar"
2753
- msgstr ""
2754
-
2755
- #: wppa-boxes-html.php:2618 wppa-links.php:784
2756
- msgid "Awaiting moderation"
2757
- msgstr "Venter p&aring; godkendelse"
2758
-
2759
- #: wppa-boxes-html.php:2621
2760
- msgid "Marked as spam"
2761
- msgstr "Markeret som spam"
2762
-
2763
- #: wppa-boxes-html.php:2645
2764
- msgid "Edit!"
2765
- msgstr "Rediger!"
2766
-
2767
- #: wppa-boxes-html.php:2649
2768
- msgid "Send!"
2769
- msgstr "Send"
2770
-
2771
- #: wppa-boxes-html.php:2710
2772
- msgid "Your name:"
2773
- msgstr "Dit navn"
2774
-
2775
- #: wppa-boxes-html.php:2725
2776
- msgid "Your email:"
2777
- msgstr "Din email"
2778
-
2779
- #: wppa-boxes-html.php:2741
2780
- msgid "Your comment:"
2781
- msgstr "Din kommentar"
2782
-
2783
- #: wppa-boxes-html.php:2786
2784
- #, php-format
2785
- msgid "You must <a href=\"%s\">login</a> to enter a comment"
2786
- msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
2787
-
2788
- #: wppa-boxes-html.php:2789
2789
- #, fuzzy
2790
- msgid "You must login to enter a comment"
2791
- msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
2792
-
2793
- #: wppa-boxes-html.php:2801
2794
- #, fuzzy, php-format
2795
- msgid "%d comments"
2796
- msgstr "%d kommentarer"
2797
-
2798
- #: wppa-boxes-html.php:2805
2799
- msgid "Leave a comment"
2800
- msgstr "Skriv en kommentar"
2801
-
2802
- #: wppa-boxes-html.php:2846
2803
- #, fuzzy
2804
- msgid "Smilies are not available"
2805
- msgstr "Pagina non disponibile."
2806
-
2807
- #: wppa-boxes-html.php:2896
2808
- msgid "Show IPTC data"
2809
- msgstr "Vis IPTC data"
2810
-
2811
- #: wppa-boxes-html.php:2907
2812
- msgid "Hide IPTC data"
2813
- msgstr "Skjul IPTC data"
2814
-
2815
- #: wppa-boxes-html.php:2947
2816
- msgid "No IPTC data"
2817
- msgstr "Ingen IPTC data"
2818
-
2819
- #: wppa-boxes-html.php:2994
2820
- msgid "Show EXIF data"
2821
- msgstr "Vis EXIF data"
2822
-
2823
- #: wppa-boxes-html.php:3005
2824
- msgid "Hide EXIF data"
2825
- msgstr "Skjul EXIF data"
2826
-
2827
- #: wppa-boxes-html.php:3047
2828
- msgid "No EXIF data"
2829
- msgstr "Ingen EXIF data"
2830
-
2831
- #: wppa-boxes-html.php:3162 wppa-boxes-html.php:3167
2832
- #, fuzzy
2833
- msgid "< Previous"
2834
- msgstr "Forrige billede"
2835
-
2836
- #: wppa-boxes-html.php:3173 wppa-boxes-html.php:3178
2837
- #, fuzzy
2838
- msgid "Next >"
2839
- msgstr "N&aelig;ste"
2840
-
2841
- #: wppa-boxes-html.php:3275 wppa-boxes-html.php:3334
2842
- #, fuzzy
2843
- msgid "See the authors albums"
2844
- msgstr "Se dette billed p&aring; %s"
2845
-
2846
- #: wppa-boxes-html.php:3279 wppa-boxes-html.php:3338
2847
- #, fuzzy
2848
- msgid "See the authors photos"
2849
- msgstr ""
2850
- "I visitatori possono ottenere una panoramica delle immagini contenute in un "
2851
- "album grazie alle miniature."
2852
-
2853
- #: wppa-boxes-html.php:3283 wppa-boxes-html.php:3342
2854
- #, fuzzy
2855
- msgid "See all the authors photos"
2856
- msgstr ""
2857
- "I visitatori possono ottenere una panoramica delle immagini contenute in un "
2858
- "album grazie alle miniature."
2859
-
2860
- #: wppa-boxes-html.php:3306
2861
- #, fuzzy, php-format
2862
- msgid "Photo by: %s"
2863
- msgstr "Foto %s af %s"
2864
-
2865
- #: wppa-boxes-html.php:3307 wppa-boxes-html.php:3361
2866
- #, fuzzy, php-format
2867
- msgid "Max ratings: %s."
2868
- msgstr "Altezza massima."
2869
-
2870
- #: wppa-boxes-html.php:3308 wppa-boxes-html.php:3362
2871
- #, fuzzy, php-format
2872
- msgid "Votes: %s."
2873
- msgstr "Gli utenti possono esprimere più voti."
2874
-
2875
- #: wppa-boxes-html.php:3309 wppa-boxes-html.php:3363
2876
- #, fuzzy, php-format
2877
- msgid "Mean value: %4.2f."
2878
- msgstr "Mean value:"
2879
-
2880
- #: wppa-boxes-html.php:3316
2881
- #, fuzzy, php-format
2882
- msgid "Photo %s not found."
2883
- msgstr "Billede ikke fundet"
2884
-
2885
- #: wppa-boxes-html.php:3714 wppa-photo-admin-autosave.php:195
2886
- #, fuzzy
2887
- msgid "Refresh"
2888
- msgstr "Ricarica questa pagina per svuotare la tabella X"
2889
-
2890
- #: wppa-breadcrumb.php:98 wppa-settings-autosave.php:1452
2891
- msgid "Home"
2892
- msgstr "Hjem"
2893
-
2894
- #: wppa-breadcrumb.php:119
2895
- #, fuzzy
2896
- msgid "Post:"
2897
- msgstr "--- lo stesso articolo/pagina ---"
2898
-
2899
- #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:604
2900
- #, fuzzy
2901
- msgid "Page:"
2902
- msgstr "N&aelig;ste&nbsp;side"
2903
-
2904
- #: wppa-breadcrumb.php:139
2905
- msgid "with category:"
2906
- msgstr ""
2907
-
2908
- #: wppa-breadcrumb.php:142 wppa-breadcrumb.php:157
2909
- #, fuzzy
2910
- msgid "with name:"
2911
- msgstr "Dit navn"
2912
-
2913
- #: wppa-breadcrumb.php:145 wppa-breadcrumb.php:161
2914
- msgid "with words:"
2915
- msgstr ""
2916
-
2917
- #: wppa-breadcrumb.php:154
2918
- msgid "with tag:"
2919
- msgstr ""
2920
-
2921
- #: wppa-breadcrumb.php:165
2922
- msgid "of owner:"
2923
- msgstr ""
2924
-
2925
- #: wppa-breadcrumb.php:170
2926
- msgid "with iptc tag:"
2927
- msgstr ""
2928
-
2929
- #: wppa-breadcrumb.php:170 wppa-breadcrumb.php:175
2930
- #, fuzzy
2931
- msgid "with content:"
2932
- msgstr "Dit navn"
2933
-
2934
- #: wppa-breadcrumb.php:175
2935
- msgid "with exif tag:"
2936
- msgstr ""
2937
-
2938
- #: wppa-breadcrumb.php:183 wppa-breadcrumb.php:207 wppa-breadcrumb.php:264
2939
- #: wppa-breadcrumb.php:282 wppa-breadcrumb.php:305 wppa-breadcrumb.php:328
2940
- #: wppa-breadcrumb.php:346 wppa-breadcrumb.php:358 wppa-breadcrumb.php:376
2941
- #: wppa-breadcrumb.php:391 wppa-breadcrumb.php:410
2942
- #, fuzzy
2943
- msgid "View the thumbnails"
2944
- msgstr "Se"
2945
-
2946
- #: wppa-breadcrumb.php:201
2947
- #, fuzzy, php-format
2948
- msgid "Searchresults from album %s and its subalbums"
2949
- msgstr "Risultati Ricerca da album %s e tutti i sotto album"
2950
-
2951
- #: wppa-breadcrumb.php:205 wppa-breadcrumb.php:210
2952
- msgid "Searchstring:"
2953
- msgstr "S&oslash;gestreng:"
2954
-
2955
- #: wppa-breadcrumb.php:219 wppa-breadcrumb.php:237
2956
- #, fuzzy
2957
- msgid "Photos by EXIF date"
2958
- msgstr "Vis EXIF data"
2959
-
2960
- #: wppa-breadcrumb.php:223 wppa-breadcrumb.php:241
2961
- #, fuzzy
2962
- msgid "Photos by date of upload"
2963
- msgstr "Foto caricate nell'album numero"
2964
-
2965
- #: wppa-breadcrumb.php:227 wppa-breadcrumb.php:245
2966
- msgid "Photos by date last modified"
2967
- msgstr ""
2968
-
2969
- #: wppa-breadcrumb.php:257 wppa-breadcrumb.php:267
2970
- #, fuzzy, php-format
2971
- msgid "Photos by %s"
2972
- msgstr "Indsendelse af %s fotos var en success."
2973
-
2974
- #: wppa-breadcrumb.php:274 wppa-breadcrumb.php:292 wppa-breadcrumb.php:320
2975
- #: wppa-breadcrumb.php:338 wppa-breadcrumb.php:425
2976
- #, fuzzy
2977
- msgid "Various albums"
2978
- msgstr ""
2979
- "Puoi creare dei vari album che contengono delle foto così come creare allo "
2980
- "stesso tempo dei sotto-album."
2981
-
2982
- #: wppa-breadcrumb.php:276 wppa-breadcrumb.php:294 wppa-breadcrumb.php:322
2983
- #: wppa-breadcrumb.php:340 wppa-breadcrumb.php:429 wppa-lasten-widget.php:185
2984
- #, fuzzy
2985
- msgid "Albums:"
2986
- msgstr "album"
2987
-
2988
- #: wppa-breadcrumb.php:280 wppa-breadcrumb.php:285
2989
- msgid "Top rated photos"
2990
- msgstr "Top fotos"
2991
-
2992
- #: wppa-breadcrumb.php:299 wppa-breadcrumb.php:309
2993
- #, fuzzy
2994
- msgid "Recently modified photos"
2995
- msgstr "Nyligt kommenterede fotos"
2996
-
2997
- #: wppa-breadcrumb.php:302 wppa-breadcrumb.php:312
2998
- msgid "Recently uploaded photos"
2999
- msgstr "Nyligt kommenterede fotos"
3000
-
3001
- #: wppa-breadcrumb.php:326 wppa-breadcrumb.php:331 wppa-comment-widget.php:40
3002
- msgid "Recently commented photos"
3003
- msgstr "Nyligt kommenterede fotos"
3004
-
3005
- #: wppa-breadcrumb.php:344 wppa-breadcrumb.php:349 wppa-featen-widget.php:38
3006
- msgid "Featured photos"
3007
- msgstr "Top fotos"
3008
-
3009
- #: wppa-breadcrumb.php:356 wppa-breadcrumb.php:361
3010
- #, fuzzy
3011
- msgid "Related photos"
3012
- msgstr "fotos"
3013
-
3014
- #: wppa-breadcrumb.php:368 wppa-breadcrumb.php:379
3015
- msgid "Tagged photos:"
3016
- msgstr "Top fotos"
3017
-
3018
- #: wppa-breadcrumb.php:368 wppa-breadcrumb.php:379
3019
- msgid "or"
3020
- msgstr ""
3021
-
3022
- #: wppa-breadcrumb.php:370 wppa-breadcrumb.php:381
3023
- msgid "Inverted"
3024
- msgstr ""
3025
-
3026
- #: wppa-breadcrumb.php:408 wppa-breadcrumb.php:413
3027
- #, fuzzy
3028
- msgid "Recently updated albums"
3029
- msgstr "Le impostazioni sono state aggiornate"
3030
-
3031
- #: wppa-breadcrumb.php:423
3032
- #, fuzzy, php-format
3033
- msgid "Various albums by %s"
3034
- msgstr ""
3035
- "Puoi creare dei vari album che contengono delle foto così come creare allo "
3036
- "stesso tempo dei sotto-album."
3037
-
3038
- #: wppa-breadcrumb.php:450 wppa-breadcrumb.php:465
3039
- msgid "Thumbnail view"
3040
- msgstr "Foto Top Ti"
3041
-
3042
- #: wppa-breadcrumb.php:454 wppa-breadcrumb.php:455 wppa-breadcrumb.php:470
3043
- #: wppa-breadcrumb.php:471
3044
- msgid "Thumbs"
3045
- msgstr "Miniature"
3046
-
3047
- #: wppa-breadcrumb.php:602
3048
- msgid "Unpublished"
3049
- msgstr ""
3050
-
3051
- #: wppa-breadcrumb.php:632
3052
- msgid "Found photos will meet the search criteria as follows:"
3053
- msgstr ""
3054
-
3055
- #: wppa-breadcrumb.php:635
3056
- msgid "AND"
3057
- msgstr ""
3058
-
3059
- #: wppa-breadcrumb.php:639
3060
- msgid "OR"
3061
- msgstr ""
3062
-
3063
- #: wppa-cart.php:25
3064
- msgid "Buy now"
3065
- msgstr "K&oslash;b nu"
3066
-
3067
- #: wppa-cart.php:89
3068
- #, php-format
3069
- msgid "Unit Price: %s each"
3070
- msgstr "Enhedspris: %s pr. stk."
3071
-
3072
- #: wppa-cart.php:93
3073
- msgid "Qty:"
3074
- msgstr "M&aelig;ngde:"
3075
-
3076
- #: wppa-comment-admin.php:35
3077
- #, fuzzy
3078
- msgid "Photo Albums -> Edit Comment"
3079
- msgstr "Foto Albums"
3080
-
3081
- #: wppa-comment-admin.php:61
3082
- #, fuzzy
3083
- msgid "Photo:"
3084
- msgstr "Foto"
3085
-
3086
- #: wppa-comment-admin.php:72
3087
- msgid "User:"
3088
- msgstr ""
3089
-
3090
- #: wppa-comment-admin.php:76
3091
- msgid "Email:"
3092
- msgstr ""
3093
-
3094
- #: wppa-comment-admin.php:80
3095
- #, fuzzy
3096
- msgid "Comment:"
3097
- msgstr "%d kommentarer"
3098
-
3099
- #: wppa-comment-admin.php:86 wppa-widget-admin.php:204
3100
- #: wppa-widget-admin.php:268
3101
- msgid "Save Changes"
3102
- msgstr ""
3103
-
3104
- #: wppa-comment-admin.php:99
3105
- #, fuzzy
3106
- msgid "Comment deleted"
3107
- msgstr "Kommentarer redigeret"
3108
-
3109
- #: wppa-comment-admin.php:127 wppa-comment-admin.php:135
3110
- #, fuzzy
3111
- msgid "Could not bulk update status"
3112
- msgstr "Impossibile creare album. "
3113
-
3114
- #: wppa-comment-admin.php:143
3115
- #, fuzzy
3116
- msgid "Could not bulk delete spam"
3117
- msgstr "Impossibile creare album. "
3118
-
3119
- #: wppa-comment-admin.php:149
3120
- msgid "Changes Saved"
3121
- msgstr ""
3122
-
3123
- #: wppa-comment-admin.php:176
3124
- msgid "Photo Albums -> Moderate Comment"
3125
- msgstr ""
3126
-
3127
- #: wppa-comment-admin.php:177
3128
- msgid "Photo Albums -> Comment admin"
3129
- msgstr ""
3130
-
3131
- #: wppa-comment-admin.php:181
3132
- msgid ""
3133
- "<h3>The Comment system is not activated</h3><p>To activate: check Table II "
3134
- "item 18 on the <b>Photo Albums -> Settings</b> screen and press <b>Save "
3135
- "Changes</b>"
3136
- msgstr ""
3137
-
3138
- #: wppa-comment-admin.php:188
3139
- msgid "Total:"
3140
- msgstr ""
3141
-
3142
- #: wppa-comment-admin.php:192
3143
- #, fuzzy
3144
- msgid "Approved:"
3145
- msgstr "Godkend"
3146
-
3147
- #: wppa-comment-admin.php:196
3148
- msgid "Pending:"
3149
- msgstr ""
3150
-
3151
- #: wppa-comment-admin.php:200
3152
- msgid "Spam:"
3153
- msgstr ""
3154
-
3155
- #: wppa-comment-admin.php:205
3156
- msgid "Auto deleted spam:"
3157
- msgstr ""
3158
-
3159
- #: wppa-comment-admin.php:220
3160
- msgid "Linkpage:"
3161
- msgstr ""
3162
-
3163
- #: wppa-comment-admin.php:223 wppa-settings-autosave.php:4516
3164
- #: wppa-settings-autosave.php:7317
3165
- #, fuzzy
3166
- msgid "--- Please select a page ---"
3167
- msgstr "--- vises ikke ---"
3168
-
3169
- #: wppa-comment-admin.php:238
3170
- msgid ""
3171
- "You can see the photo and all its comments on the selected page by clicking "
3172
- "on the thumbnail image"
3173
- msgstr ""
3174
-
3175
- #: wppa-comment-admin.php:242
3176
- msgid "Display status:"
3177
- msgstr ""
3178
-
3179
- #: wppa-comment-admin.php:244
3180
- msgid "all"
3181
- msgstr ""
3182
-
3183
- #: wppa-comment-admin.php:245
3184
- msgid "pending"
3185
- msgstr ""
3186
-
3187
- #: wppa-comment-admin.php:246
3188
- #, fuzzy
3189
- msgid "approved"
3190
- msgstr "Godkend"
3191
-
3192
- #: wppa-comment-admin.php:247
3193
- msgid "spam"
3194
- msgstr ""
3195
-
3196
- #: wppa-comment-admin.php:250
3197
- msgid "Display order:"
3198
- msgstr ""
3199
-
3200
- #: wppa-comment-admin.php:252
3201
- msgid "timestamp"
3202
- msgstr ""
3203
-
3204
- #: wppa-comment-admin.php:255 wppa-photo-admin-autosave.php:1280
3205
- msgid "Bulk action:"
3206
- msgstr ""
3207
-
3208
- #: wppa-comment-admin.php:258
3209
- msgid "Approve all pending"
3210
- msgstr ""
3211
-
3212
- #: wppa-comment-admin.php:259
3213
- msgid "Move all pending to spam"
3214
- msgstr ""
3215
-
3216
- #: wppa-comment-admin.php:260
3217
- #, fuzzy
3218
- msgid "Delete all spam"
3219
- msgstr "Impossibile creare album. "
3220
-
3221
- #: wppa-comment-admin.php:262
3222
- msgid "Save Settings / Perform bulk action"
3223
- msgstr ""
3224
-
3225
- #: wppa-comment-admin.php:301 wppa-comment-admin.php:388 wppa-non-admin.php:582
3226
- msgid "Photo"
3227
- msgstr "Foto"
3228
-
3229
- #: wppa-comment-admin.php:302 wppa-comment-admin.php:389
3230
- #, fuzzy
3231
- msgid "(Album)"
3232
- msgstr "album"
3233
-
3234
- #: wppa-comment-admin.php:303 wppa-comment-admin.php:390
3235
- #: wppa-settings-autosave.php:451 wppa-settings-autosave.php:613
3236
- #: wppa-settings-autosave.php:635 wppa-settings-autosave.php:1335
3237
- #: wppa-settings-autosave.php:1356 wppa-settings-autosave.php:2730
3238
- #: wppa-settings-autosave.php:2751 wppa-settings-autosave.php:3062
3239
- #: wppa-settings-autosave.php:3086 wppa-settings-autosave.php:4237
3240
- #: wppa-settings-autosave.php:4258 wppa-settings-autosave.php:4434
3241
- #: wppa-settings-autosave.php:4458 wppa-settings-autosave.php:5485
3242
- #: wppa-settings-autosave.php:5993 wppa-settings-autosave.php:6015
3243
- #: wppa-settings-autosave.php:6595 wppa-settings-autosave.php:6619
3244
- #: wppa-settings-autosave.php:8291 wppa-settings-autosave.php:8312
3245
- #: wppa-settings-autosave.php:8352 wppa-settings-autosave.php:8374
3246
- #: wppa-settings-autosave.php:8420
3247
- msgid "#"
3248
- msgstr ""
3249
-
3250
- #: wppa-comment-admin.php:304 wppa-comment-admin.php:391
3251
- msgid "IP"
3252
- msgstr ""
3253
-
3254
- #: wppa-comment-admin.php:305 wppa-comment-admin.php:392
3255
- msgid "User"
3256
- msgstr ""
3257
-
3258
- #: wppa-comment-admin.php:306 wppa-comment-admin.php:393
3259
- msgid "Email"
3260
- msgstr ""
3261
-
3262
- #: wppa-comment-admin.php:307 wppa-comment-admin.php:394
3263
- msgid "Time since"
3264
- msgstr ""
3265
-
3266
- #: wppa-comment-admin.php:308 wppa-comment-admin.php:395
3267
- #, fuzzy
3268
- msgid "Comment"
3269
- msgstr "%d kommentarer"
3270
-
3271
- #: wppa-comment-admin.php:346
3272
- msgid "Click to see the fullsize photo and all comments"
3273
- msgstr ""
3274
-
3275
- #: wppa-comment-admin.php:357
3276
- #, php-format
3277
- msgid "Reply to your comment on photo: %s on %s"
3278
- msgstr ""
3279
-
3280
- #: wppa-comment-admin.php:358 wppa-functions.php:2100
3281
- msgid "Reply"
3282
- msgstr ""
3283
-
3284
- #: wppa-comment-admin.php:369 wppa-photo-admin-autosave.php:833
3285
- #: wppa-photo-admin-autosave.php:856 wppa-photo-admin-autosave.php:1007
3286
- #: wppa-photo-admin-autosave.php:1017 wppa-photo-admin-autosave.php:1298
3287
- #: wppa-photo-admin-autosave.php:1415 wppa-photo-admin-autosave.php:1427
3288
- msgid "Pending"
3289
- msgstr ""
3290
-
3291
- #: wppa-comment-admin.php:370 wppa-photo-admin-autosave.php:1008
3292
- #: wppa-photo-admin-autosave.php:1018
3293
- #, fuzzy
3294
- msgid "Approved"
3295
- msgstr "Godkend"
3296
-
3297
- #: wppa-comment-admin.php:371 wppa-photo-admin-autosave.php:1009
3298
- #: wppa-photo-admin-autosave.php:1019
3299
- msgid "Spam"
3300
- msgstr ""
3301
-
3302
- #: wppa-comment-admin.php:380
3303
- #, fuzzy
3304
- msgid "Are you sure you want to delete this comment?"
3305
- msgstr "Er du sikker p&aring;, at du vil fjerne denne kommentar?"
3306
-
3307
- #: wppa-comment-admin.php:420 wppa-comment-admin.php:426
3308
- msgid "Unable to update comment. Err ="
3309
- msgstr ""
3310
-
3311
- #: wppa-comment-widget.php:14
3312
- #, fuzzy
3313
- msgid "WPPA+ Comments on Photos"
3314
- msgstr "Kommentar til billeder"
3315
-
3316
- #: wppa-comment-widget.php:15 wppa-comment-widget.php:116
3317
- #, fuzzy
3318
- msgid "Comments on Photos"
3319
- msgstr "Kommentar til billeder"
3320
-
3321
- #: wppa-comment-widget.php:73 wppa-thumbnails.php:493
3322
- #, fuzzy
3323
- msgid "wrote"
3324
- msgstr "skrev:"
3325
-
3326
- #: wppa-comment-widget.php:87 wppa-featen-widget.php:95
3327
- #: wppa-lasten-widget.php:125 wppa-potd-widget.php:133
3328
- #: wppa-thumbnail-widget.php:114 wppa-topten-widget.php:153
3329
- msgid "Photo not found."
3330
- msgstr "Billede ikke fundet"
3331
-
3332
- #: wppa-common-functions.php:76 wppa-common-functions.php:79
3333
- msgid "Default photo album for"
3334
- msgstr "Standard foto album for"
3335
-
3336
- #: wppa-common-functions.php:581 wppa-common-functions.php:617
3337
- msgid "1 second"
3338
- msgstr "1 sekund"
3339
-
3340
- #: wppa-common-functions.php:582 wppa-common-functions.php:618
3341
- #: wppa-functions.php:4271
3342
- msgid "seconds"
3343
- msgstr "sekunder"
3344
-
3345
- #: wppa-common-functions.php:586 wppa-common-functions.php:622
3346
- msgid "1 minute"
3347
- msgstr "1 minut"
3348
-
3349
- #: wppa-common-functions.php:587 wppa-common-functions.php:623
3350
- #: wppa-functions.php:4270
3351
- msgid "minutes"
3352
- msgstr "minutter"
3353
-
3354
- #: wppa-common-functions.php:591 wppa-common-functions.php:627
3355
- msgid "1 hour"
3356
- msgstr "1 time"
3357
-
3358
- #: wppa-common-functions.php:592 wppa-common-functions.php:628
3359
- #: wppa-functions.php:4269
3360
- msgid "hours"
3361
- msgstr "timer"
3362
-
3363
- #: wppa-common-functions.php:596 wppa-common-functions.php:632
3364
- msgid "1 day"
3365
- msgstr "1 dag"
3366
-
3367
- #: wppa-common-functions.php:597 wppa-common-functions.php:633
3368
- #: wppa-functions.php:4268
3369
- msgid "days"
3370
- msgstr "dage"
3371
-
3372
- #: wppa-common-functions.php:601 wppa-common-functions.php:637
3373
- msgid "1 week"
3374
- msgstr "1 uge"
3375
-
3376
- #: wppa-common-functions.php:602 wppa-common-functions.php:638
3377
- #: wppa-functions.php:4267
3378
- msgid "weeks"
3379
- msgstr "uger"
3380
-
3381
- #: wppa-common-functions.php:606 wppa-common-functions.php:642
3382
- msgid "1 month"
3383
- msgstr "1 m&aring;ned"
3384
-
3385
- #: wppa-common-functions.php:607 wppa-common-functions.php:643
3386
- msgid "months"
3387
- msgstr "m&aring;neder"
3388
-
3389
- #: wppa-common-functions.php:610 wppa-common-functions.php:646
3390
- msgid "1 year"
3391
- msgstr "1 &aring;r"
3392
-
3393
- #: wppa-common-functions.php:611 wppa-common-functions.php:647
3394
- msgid "years"
3395
- msgstr "&aring;r"
3396
-
3397
- #: wppa-common-functions.php:870 wppa-common-functions.php:871
3398
- msgid "ERROR: Resized or copied image could not be created."
3399
- msgstr ""
3400
-
3401
- #: wppa-common-functions.php:916 wppa-common-functions.php:917
3402
- #, php-format
3403
- msgid "ERROR: File %s is not a valid picture file."
3404
- msgstr ""
3405
-
3406
- #: wppa-common-functions.php:1735
3407
- #, php-format
3408
- msgid ""
3409
- "Based on your server memory limit you should not upload images larger then "
3410
- "<strong>%d x %d (%2.1f MP)</strong>"
3411
- msgstr ""
3412
-
3413
- #: wppa-common-functions.php:2010
3414
- #, fuzzy
3415
- msgid "- select an album -"
3416
- msgstr ""
3417
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
3418
- "di ricerca differente."
3419
-
3420
- #: wppa-common-functions.php:2022 wppa-items.php:373
3421
- #: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
3422
- #: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
3423
- #: wppa-tagcloud-widget.php:79
3424
- msgid "--- all ---"
3425
- msgstr "--- ingen ---"
3426
-
3427
- #: wppa-common-functions.php:2028
3428
- #, fuzzy
3429
- msgid "--- generic ---"
3430
- msgstr "--- ingen ---"
3431
-
3432
- #: wppa-common-functions.php:2039
3433
- msgid "--- multiple see below ---"
3434
- msgstr ""
3435
-
3436
- #: wppa-common-functions.php:2045
3437
- #, fuzzy
3438
- msgid "--- a selection box ---"
3439
- msgstr "--- vises ikke ---"
3440
-
3441
- #: wppa-common-functions.php:2079 wppa-items.php:369
3442
- #: wppa-settings-autosave.php:7143 wppa-settings-autosave.php:7199
3443
- #: wppa-upload.php:1516
3444
- msgid "--- separate ---"
3445
- msgstr "--- vis ikke ---"
3446
-
3447
- #: wppa-common-functions.php:2177
3448
- #, fuzzy
3449
- msgid "Photo id ="
3450
- msgstr "Dagens foto"
3451
-
3452
- #: wppa-common-functions.php:2177
3453
- msgid "Value ="
3454
- msgstr ""
3455
-
3456
- #: wppa-date-time.php:85 wppa-date-time.php:196
3457
- #, fuzzy
3458
- msgid "Jan"
3459
- msgstr "og"
3460
-
3461
- #: wppa-date-time.php:85 wppa-date-time.php:196
3462
- msgid "Feb"
3463
- msgstr ""
3464
-
3465
- #: wppa-date-time.php:85 wppa-date-time.php:196
3466
- msgid "Mar"
3467
- msgstr ""
3468
-
3469
- #: wppa-date-time.php:85 wppa-date-time.php:196
3470
- #, fuzzy
3471
- msgid "Apr"
3472
- msgstr "Anv."
3473
-
3474
- #: wppa-date-time.php:85 wppa-date-time.php:196
3475
- msgid "May"
3476
- msgstr ""
3477
-
3478
- #: wppa-date-time.php:85 wppa-date-time.php:196
3479
- msgid "Jun"
3480
- msgstr ""
3481
-
3482
- #: wppa-date-time.php:85 wppa-date-time.php:196
3483
- msgid "Jul"
3484
- msgstr ""
3485
-
3486
- #: wppa-date-time.php:85 wppa-date-time.php:196
3487
- msgid "Aug"
3488
- msgstr ""
3489
-
3490
- #: wppa-date-time.php:85 wppa-date-time.php:196
3491
- msgid "Sep"
3492
- msgstr ""
3493
-
3494
- #: wppa-date-time.php:85 wppa-date-time.php:196
3495
- msgid "Oct"
3496
- msgstr ""
3497
-
3498
- #: wppa-date-time.php:85 wppa-date-time.php:196
3499
- msgid "Nov"
3500
- msgstr ""
3501
-
3502
- #: wppa-date-time.php:85 wppa-date-time.php:196
3503
- #, fuzzy
3504
- msgid "Dec"
3505
- msgstr "Slet"
3506
-
3507
- #: wppa-exif-iptc-common.php:70 wppa-exif-iptc-common.php:136
3508
- msgid "n.a."
3509
- msgstr "Ikke brugbar"
3510
-
3511
- #: wppa-exif-iptc-common.php:214 wppa-utils.php:2397
3512
- msgid "Not Defined"
3513
- msgstr "Ikke Defineret"
3514
-
3515
- #: wppa-exif-iptc-common.php:215 wppa-utils.php:2398
3516
- msgid "Manual"
3517
- msgstr "Manual"
3518
-
3519
- #: wppa-exif-iptc-common.php:216 wppa-utils.php:2399
3520
- msgid "Program AE"
3521
- msgstr "Program AE"
3522
-
3523
- #: wppa-exif-iptc-common.php:217 wppa-utils.php:2400
3524
- msgid "Aperture-priority AE"
3525
- msgstr "Bl&aelig;ndeprioriteret AE"
3526
-
3527
- #: wppa-exif-iptc-common.php:218 wppa-utils.php:2401
3528
- msgid "Shutter speed priority AE"
3529
- msgstr "Lukkerhastighedsprioritet AE"
3530
-
3531
- #: wppa-exif-iptc-common.php:219 wppa-utils.php:2402
3532
- msgid "Creative (Slow speed)"
3533
- msgstr "Kreativ (Langsom hastighed)"
3534
-
3535
- #: wppa-exif-iptc-common.php:220 wppa-utils.php:2403
3536
- msgid "Action (High speed)"
3537
- msgstr "Handling (h&oslash;j hastighed)"
3538
-
3539
- #: wppa-exif-iptc-common.php:221 wppa-utils.php:2404
3540
- msgid "Portrait"
3541
- msgstr "Portr&aelig;t"
3542
-
3543
- #: wppa-exif-iptc-common.php:222 wppa-utils.php:2405
3544
- msgid "Landscape"
3545
- msgstr "Landskab"
3546
-
3547
- #: wppa-exif-iptc-common.php:223 wppa-utils.php:2406
3548
- msgid "Bulb"
3549
- msgstr "Bulb"
3550
-
3551
- #: wppa-exif-iptc-common.php:245 wppa-utils.php:2407
3552
- msgid "Average"
3553
- msgstr "gennemsnitlig"
3554
-
3555
- #: wppa-exif-iptc-common.php:246 wppa-utils.php:2408
3556
- msgid "Center-weighted average"
3557
- msgstr "Centerv&aelig;gtet gennemsnit"
3558
-
3559
- #: wppa-exif-iptc-common.php:247 wppa-utils.php:2409
3560
- msgid "Spot"
3561
- msgstr "Spot"
3562
-
3563
- #: wppa-exif-iptc-common.php:248 wppa-utils.php:2410
3564
- msgid "Multi-spot"
3565
- msgstr "Multi-spot"
3566
-
3567
- #: wppa-exif-iptc-common.php:249 wppa-utils.php:2411
3568
- msgid "Multi-segment"
3569
- msgstr "Multi-segment"
3570
-
3571
- #: wppa-exif-iptc-common.php:250 wppa-utils.php:2412
3572
- msgid "Partial"
3573
- msgstr "Delvist"
3574
-
3575
- #: wppa-exif-iptc-common.php:251 wppa-settings-autosave.php:4362
3576
- #: wppa-utils.php:2413
3577
- msgid "Other"
3578
- msgstr "Andet"
3579
-
3580
- #: wppa-exif-iptc-common.php:287 wppa-utils.php:2414
3581
- msgid "No Flash"
3582
- msgstr "Ingen blitz"
3583
-
3584
- #: wppa-exif-iptc-common.php:289 wppa-utils.php:2415
3585
- msgid "Fired"
3586
- msgstr "Afskudt"
3587
-
3588
- #: wppa-exif-iptc-common.php:291 wppa-utils.php:2416
3589
- msgid "Fired, Return not detected"
3590
- msgstr "Afskudt, returnering er ikke opdaget "
3591
-
3592
- #: wppa-exif-iptc-common.php:293 wppa-utils.php:2417
3593
- msgid "Fired, Return detected"
3594
- msgstr "Afskudt, returnering er opdaget "
3595
-
3596
- #: wppa-exif-iptc-common.php:295 wppa-utils.php:2418
3597
- msgid "On, Did not fire"
3598
- msgstr "Tilsluttet, afsk&oslash;d ikke"
3599
-
3600
- #: wppa-exif-iptc-common.php:297 wppa-utils.php:2419
3601
- msgid "On, Fired"
3602
- msgstr "Tilsluttet, afskudt"
3603
-
3604
- #: wppa-exif-iptc-common.php:299 wppa-utils.php:2420
3605
- msgid "On, Return not detected"
3606
- msgstr "Tilsluttet, returnering er ikke opdaget "
3607
-
3608
- #: wppa-exif-iptc-common.php:301 wppa-utils.php:2421
3609
- msgid "On, Return detected"
3610
- msgstr "Tilsluttet, returnering er opdaget "
3611
-
3612
- #: wppa-exif-iptc-common.php:303 wppa-utils.php:2422
3613
- msgid "Off, Did not fire"
3614
- msgstr "Slukket, afsk&oslash;d ikke"
3615
-
3616
- #: wppa-exif-iptc-common.php:305 wppa-utils.php:2423
3617
- msgid "Off, Did not fire, Return not detected"
3618
- msgstr "Slukket, afsk&oslash;d ikke, returnering er ikke opdaget "
3619
-
3620
- #: wppa-exif-iptc-common.php:307 wppa-utils.php:2424
3621
- msgid "Auto, Did not fire"
3622
- msgstr "Automatisk, afsk&oslash;d ikke"
3623
-
3624
- #: wppa-exif-iptc-common.php:309 wppa-utils.php:2425
3625
- msgid "Auto, Fired"
3626
- msgstr "Automatisk, afskudt"
3627
-
3628
- #: wppa-exif-iptc-common.php:311 wppa-utils.php:2426
3629
- msgid "Auto, Fired, Return not detected"
3630
- msgstr "Automatisk, afskudt, returnering er ikke opdaget "
3631
-
3632
- #: wppa-exif-iptc-common.php:313 wppa-utils.php:2427
3633
- msgid "Auto, Fired, Return detected"
3634
- msgstr "Automatisk, afskudt, returnering er opdaget "
3635
-
3636
- #: wppa-exif-iptc-common.php:315 wppa-utils.php:2428
3637
- msgid "No flash function"
3638
- msgstr "Ingen blitz funktion"
3639
-
3640
- #: wppa-exif-iptc-common.php:317 wppa-utils.php:2429
3641
- msgid "Off, No flash function"
3642
- msgstr "Slukket, ingen blitz funktion"
3643
-
3644
- #: wppa-exif-iptc-common.php:319 wppa-utils.php:2430
3645
- msgid "Fired, Red-eye reduction"
3646
- msgstr "Afskudt, R&oslash;d-&oslash;je reduktion"
3647
-
3648
- #: wppa-exif-iptc-common.php:321 wppa-utils.php:2431
3649
- msgid "Fired, Red-eye reduction, Return not detected"
3650
- msgstr "Afskudt, R&oslash;d-&oslash;je reduktion, returnering er ikke opdaget "
3651
-
3652
- #: wppa-exif-iptc-common.php:323 wppa-utils.php:2432
3653
- msgid "Fired, Red-eye reduction, Return detected"
3654
- msgstr "Afskudt, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3655
-
3656
- #: wppa-exif-iptc-common.php:325 wppa-utils.php:2433
3657
- msgid "On, Red-eye reduction"
3658
- msgstr "Tilstuttet, R&oslash;d-&oslash;je reduktion"
3659
-
3660
- #: wppa-exif-iptc-common.php:327 wppa-utils.php:2434
3661
- msgid "Red-eye reduction, Return not detected"
3662
- msgstr "R&oslash;d-&oslash;je reduktion, returnering er ikke opdaget "
3663
-
3664
- #: wppa-exif-iptc-common.php:329 wppa-utils.php:2435
3665
- msgid "On, Red-eye reduction, Return detected"
3666
- msgstr "Tilstuttet, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3667
-
3668
- #: wppa-exif-iptc-common.php:331 wppa-utils.php:2436
3669
- msgid "Off, Red-eye reduction"
3670
- msgstr "Slukket, R&oslash;d-&oslash;je reduktion"
3671
-
3672
- #: wppa-exif-iptc-common.php:333 wppa-utils.php:2437
3673
- msgid "Auto, Did not fire, Red-eye reduction"
3674
- msgstr "Automatisk, Afsk&oslash;d ikke, R&oslash;d-&oslash;je reduktion"
3675
-
3676
- #: wppa-exif-iptc-common.php:335 wppa-utils.php:2438
3677
- msgid "Auto, Fired, Red-eye reduction"
3678
- msgstr "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion"
3679
-
3680
- #: wppa-exif-iptc-common.php:337 wppa-utils.php:2439
3681
- msgid "Auto, Fired, Red-eye reduction, Return not detected"
3682
- msgstr ""
3683
- "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion, returnering er ikke "
3684
- "opdaget "
3685
-
3686
- #: wppa-exif-iptc-common.php:339 wppa-utils.php:2440
3687
- msgid "Auto, Fired, Red-eye reduction, Return detected"
3688
- msgstr ""
3689
- "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
3690
-
3691
- #: wppa-export.php:36
3692
- #, php-format
3693
- msgid "Photos will be exported to: <b>%s</b>."
3694
- msgstr ""
3695
-
3696
- #: wppa-export.php:37
3697
- msgid ""
3698
- "Export photos from album <span style=\"font-size:12px;\">(Including Album "
3699
- "information)</span>:"
3700
- msgstr ""
3701
-
3702
- #: wppa-export.php:66
3703
- #, fuzzy
3704
- msgid "Export"
3705
- msgstr "Eksporter foto"
3706
-
3707
- #: wppa-export.php:81
3708
- msgid "Exporting...<br/>"
3709
- msgstr ""
3710
-
3711
- #: wppa-export.php:90
3712
- msgid "ok, <br/>Filling"
3713
- msgstr ""
3714
-
3715
- #: wppa-export.php:92
3716
- msgid "failed<br/>"
3717
- msgstr ""
3718
-
3719
- #: wppa-export.php:98
3720
- msgid ""
3721
- "Can export albums and photos, but cannot make a zipfile. Your php version is "
3722
- "< 5.2.7."
3723
- msgstr ""
3724
-
3725
- #: wppa-export.php:99
3726
- msgid ""
3727
- "Can export albums and photos, but cannot make a zipfile. Your php version "
3728
- "does not support ZipArchive."
3729
- msgstr ""
3730
-
3731
- #: wppa-export.php:109
3732
- msgid "<br/>Processing album"
3733
- msgstr ""
3734
-
3735
- #: wppa-export.php:129
3736
- msgid "done."
3737
- msgstr ""
3738
-
3739
- #: wppa-export.php:129 wppa-upload.php:2116
3740
- msgid "photos processed."
3741
- msgstr ""
3742
-
3743
- #: wppa-export.php:133
3744
- msgid "<br/>Done export albums."
3745
- msgstr ""
3746
-
3747
- #: wppa-export.php:136
3748
- msgid "Nothing to export"
3749
- msgstr ""
3750
-
3751
- #: wppa-export.php:140
3752
- msgid "<br/>Closing zip."
3753
- msgstr ""
3754
-
3755
- #: wppa-export.php:141
3756
- msgid "<br/>Deleting temp files."
3757
- msgstr ""
3758
-
3759
- #: wppa-export.php:150
3760
- msgid "<br/>Done!"
3761
- msgstr ""
3762
-
3763
- #: wppa-export.php:196 wppa-export.php:265
3764
- #, php-format
3765
- msgid "Cannot write to file %s."
3766
- msgstr ""
3767
-
3768
- #: wppa-export.php:210
3769
- #, fuzzy
3770
- msgid "Could not open album output file."
3771
- msgstr "Impossibile creare album. "
3772
-
3773
- #: wppa-export.php:215
3774
- #, fuzzy
3775
- msgid "Could not read album data."
3776
- msgstr "Impossibile creare album. "
3777
-
3778
- #: wppa-export.php:279
3779
- #, fuzzy
3780
- msgid "Could not open photo output file."
3781
- msgstr "Kunne ikke inds&aelig;tte foto i databasen."
3782
-
3783
- #: wppa-export.php:284
3784
- #, fuzzy
3785
- msgid "Could not read photo data."
3786
- msgstr "Kunne ikke inds&aelig;tte foto i databasen."
3787
-
3788
- #: wppa-featen-widget.php:14
3789
- #, fuzzy
3790
- msgid "WPPA+ Featured Photos"
3791
- msgstr "Top fotos"
3792
-
3793
- #: wppa-featen-widget.php:15 wppa-featen-widget.php:129
3794
- #, fuzzy
3795
- msgid "Featured Photos"
3796
- msgstr "Top fotos"
3797
-
3798
- #: wppa-featen-widget.php:73
3799
- msgid "View the featured photos"
3800
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
3801
-
3802
- #: wppa-functions.php:551
3803
- #, fuzzy
3804
- msgid "No related photos found."
3805
- msgstr ""
3806
- "Ingen album eller fotos fundet der svarer til dine s&oslash;ge kriterier."
3807
-
3808
- #: wppa-functions.php:900
3809
- #, fuzzy, php-format
3810
- msgid ""
3811
- "There are %s albums found. Only the first %s will be shown. Please refine "
3812
- "your search criteria."
3813
- msgstr ""
3814
- "Trovati %s album. Solo le prime %s saranno visualizzate. Per favore affinate "
3815
- "la ricerca.ie cercate anche per data."
3816
-
3817
- #: wppa-functions.php:1918 wppa-links.php:733 wppa-links.php:750
3818
- #: wppa-thumbnails.php:588
3819
- msgid "Are you sure you want to remove this photo?"
3820
- msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
3821
-
3822
- #: wppa-functions.php:2078
3823
- msgid "Comment edited"
3824
- msgstr "Kommentarer redigeret"
3825
-
3826
- #: wppa-functions.php:2083
3827
- #, fuzzy
3828
- msgid "Photo comment"
3829
- msgstr "Din kommentar"
3830
-
3831
- #: wppa-functions.php:2087
3832
- msgid "Comment on photo:"
3833
- msgstr "Kommentar til billeder"
3834
-
3835
- #: wppa-functions.php:2098
3836
- msgid "wrote on photo"
3837
- msgstr "Se fotos"
3838
-
3839
- #: wppa-functions.php:2102
3840
- msgid "Moderate comment admin"
3841
- msgstr "Godkend kommentar administration"
3842
-
3843
- #: wppa-functions.php:2105 wppa-functions.php:4124 wppa-upload.php:1415
3844
- msgid "Moderate manage photo"
3845
- msgstr "Se fotos"
3846
-
3847
- #: wppa-functions.php:2119
3848
- msgid "You receive this email as you are assigned to moderate"
3849
- msgstr "Du modtager denne e-mail, fordi du er sat til at godkende"
3850
-
3851
- #: wppa-functions.php:2131
3852
- msgid "You receive this email as administrator of the site"
3853
- msgstr ""
3854
- "Du modtager denne e-mail, fordi du er administrator p&aring; hjemmesiden"
3855
-
3856
- #: wppa-functions.php:2148
3857
- msgid "You receive this email as uploader of the photo"
3858
- msgstr "Du modtager denne e-mail, fordi du indsendte et foto"
3859
-
3860
- #: wppa-functions.php:2165
3861
- msgid "You receive this email as owner of the album"
3862
- msgstr "Du modtager denne e-mail, fordi du er ejer af albumet"
3863
-
3864
- #: wppa-functions.php:2182
3865
- #, fuzzy
3866
- msgid "You receive this email because you commented this photo earlier."
3867
- msgstr "Du modtager denne e-mail, fordi du er sat til at godkende"
3868
-
3869
- #: wppa-functions.php:2208
3870
- msgid "Comment added"
3871
- msgstr "Kommentarer tilf&oslash;jet"
3872
-
3873
- #: wppa-functions.php:2214
3874
- msgid ""
3875
- "Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the "
3876
- "computation."
3877
- msgstr ""
3878
- "Beklager, du gav et forkert svar.\\n\\nPr&oslash;v venligst igen, at "
3879
- "l&oslash;se beregningen."
3880
-
3881
- #: wppa-functions.php:2225
3882
- msgid "Could not process comment.\\nProbably timed out."
3883
- msgstr "Kommentar kunne ikke bearbejdes"
3884
-
3885
- #: wppa-functions.php:2307
3886
- #, fuzzy, php-format
3887
- msgid "1 Comment"
3888
- msgid_plural "%s Comments"
3889
- msgstr[0] "%d kommentarer"
3890
- msgstr[1] "%d kommentarer"
3891
-
3892
- #: wppa-functions.php:2343 wppa-links.php:1423
3893
- msgid "A video can not be printed or downloaded"
3894
- msgstr ""
3895
-
3896
- #: wppa-functions.php:2778
3897
- #, fuzzy
3898
- msgid "ERROR: Illegal attempt to enter a rating."
3899
- msgstr ""
3900
- "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at give en bed&oslash;mmelse.</b>"
3901
-
3902
- #: wppa-functions.php:2791
3903
- #, fuzzy
3904
- msgid "ERROR: Illegal attempt to enter a comment."
3905
- msgstr "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at give en kommentar.</b>"
3906
-
3907
- #: wppa-functions.php:3874
3908
- #, fuzzy
3909
- msgid "ERROR: Illegal attempt to create an album."
3910
- msgstr ""
3911
- "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at give en bed&oslash;mmelse.</b>"
3912
-
3913
- #: wppa-functions.php:3878
3914
- #, fuzzy
3915
- msgid "Wrong captcha, please try again"
3916
- msgstr ""
3917
- "Beklager, du gav et forkert svar.\\n\\nPr&oslash;v venligst igen, at "
3918
- "l&oslash;se beregningen."
3919
-
3920
- #: wppa-functions.php:3891
3921
- #, fuzzy, php-format
3922
- msgid "Album #%s created"
3923
- msgstr "Carica foto: per caricare le foto in un album che hai creato."
3924
-
3925
- #: wppa-functions.php:3896
3926
- #, fuzzy
3927
- msgid "Could not create album"
3928
- msgstr "Impossibile creare album. "
3929
-
3930
- #: wppa-functions.php:3907
3931
- #, fuzzy
3932
- msgid "ERROR: Illegal attempt to upload a file."
3933
- msgstr "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at uploade en fil.</b>"
3934
-
3935
- #: wppa-functions.php:3947
3936
- #, fuzzy
3937
- msgid "Photo upload"
3938
- msgstr "Foto caricate nell'album numero"
3939
-
3940
- #: wppa-functions.php:3948
3941
- #, fuzzy, php-format
3942
- msgid "Photo successfully uploaded."
3943
- msgid_plural "%s photos successfully uploaded."
3944
- msgstr[0] "Indsendelse af foto var en success."
3945
- msgstr[1] "Indsendelse af foto var en success."
3946
-
3947
- #: wppa-functions.php:3949
3948
- #, php-format
3949
- msgid "%s points added."
3950
- msgstr "%s kommentarer tilf&oslash;jet"
3951
-
3952
- #: wppa-functions.php:3953
3953
- msgid "Upload failed"
3954
- msgstr "Indl&aelig;sning fejlede"
3955
-
3956
- #: wppa-functions.php:3956
3957
- #, fuzzy, php-format
3958
- msgid "1 Upload failed"
3959
- msgid_plural "%s uploads failed."
3960
- msgstr[0] "Indl&aelig;sning fejlede"
3961
- msgstr[1] "Indl&aelig;sning fejlede"
3962
-
3963
- #: wppa-functions.php:3996
3964
- msgid "Error during upload"
3965
- msgstr "Fejl under upload"
3966
-
3967
- #: wppa-functions.php:4001
3968
- msgid "Uploaded file is not an image"
3969
- msgstr "Uploaded fil er ikke et billede"
3970
-
3971
- #: wppa-functions.php:4005
3972
- #, php-format
3973
- msgid ""
3974
- "Only gif, jpg and png image files are supported. Returned filetype = %d."
3975
- msgstr ""
3976
- "Kun gif, jpg og png filer underst&oslash;ttes. Den forkerte filtype er %d."
3977
-
3978
- #: wppa-functions.php:4011
3979
- #, fuzzy, php-format
3980
- msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
3981
- msgstr "Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
3982
-
3983
- #: wppa-functions.php:4017
3984
- #, fuzzy, php-format
3985
- msgid "Uploaded file %s already exists in this album."
3986
- msgstr "Il file %s che hai caricato non è un file .png"
3987
-
3988
- #: wppa-functions.php:4025
3989
- #, php-format
3990
- msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
3991
- msgstr ""
3992
- "Billedet er for stort. Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
3993
-
3994
- #: wppa-functions.php:4048
3995
- msgid "Could not insert photo into db."
3996
- msgstr "Kunne ikke inds&aelig;tte foto i databasen."
3997
-
3998
- #: wppa-functions.php:4120 wppa-upload.php:1411
3999
- #, php-format
4000
- msgid "New photo uploaded: %s"
4001
- msgstr "Nyt foto indsendt: %s"
4002
-
4003
- #: wppa-functions.php:4121 wppa-upload.php:1412
4004
- #, fuzzy, php-format
4005
- msgid "User %1$s uploaded photo %2$s into album %3$s"
4006
- msgstr "Bruger %s indsendte foto %s ind i album %s"
4007
-
4008
- #: wppa-functions.php:4123 wppa-upload.php:1414
4009
- msgid "This upload requires moderation"
4010
- msgstr "Denne indsendelse kr&aelig;ver godkendelse"
4011
-
4012
- #: wppa-functions.php:4127 wppa-upload.php:1418
4013
- msgid "Details:"
4014
- msgstr "Detaljer:"
4015
-
4016
- #: wppa-functions.php:4128 wppa-upload.php:1419 wppa-utils.php:848
4017
- #: wppa-utils.php:860
4018
- msgid "Manage photo"
4019
- msgstr "Se fotos"
4020
-
4021
- #: wppa-functions.php:4265
4022
- msgid "You can upload after"
4023
- msgstr "Du kan indsende efter"
4024
-
4025
- #: wppa-functions.php:4294 wppa-functions.php:4305 wppa-links.php:1053
4026
- #: wppa-non-admin.php:641
4027
- #, fuzzy
4028
- msgid "Download"
4029
- msgstr ""
4030
- "Questa impostazione farà sì che cliccando sulla immagine con il tasto destro "
4031
- "non permetterà all'utente di scaricare l'immagine."
4032
-
4033
- #: wppa-functions.php:4298 wppa-functions.php:4309
4034
- #, fuzzy
4035
- msgid "Download:"
4036
- msgstr ""
4037
- "Questa impostazione farà sì che cliccando sulla immagine con il tasto destro "
4038
- "non permetterà all'utente di scaricare l'immagine."
4039
-
4040
- #: wppa-functions.php:4332
4041
- msgid "Zoom in"
4042
- msgstr "Zoom ind"
4043
-
4044
- #: wppa-gp-widget.php:15
4045
- msgid "WPPA+ General purpose widget"
4046
- msgstr ""
4047
-
4048
- #: wppa-gp-widget.php:16 wppa-gp-widget.php:31 wppa-gp-widget.php:83
4049
- msgid "WPPA+ Text"
4050
- msgstr ""
4051
-
4052
- #: wppa-gp-widget.php:91
4053
- msgid ""
4054
- "Enter the content just like a normal text widget. This widget will "
4055
- "interprete [wppa] shortcodes."
4056
- msgstr ""
4057
-
4058
- #: wppa-gp-widget.php:92
4059
- #, php-format
4060
- msgid "Don't forget size=\"%s\""
4061
- msgstr ""
4062
-
4063
- #: wppa-gp-widget.php:98
4064
- msgid "Automatically add paragraphs"
4065
- msgstr ""
4066
-
4067
- #: wppa-gp-widget.php:102
4068
- msgid "Show to logged in users only"
4069
- msgstr ""
4070
-
4071
- #: wppa-help.php:21
4072
- #, fuzzy
4073
- msgid "Help and Information"
4074
- msgstr "Hj&aelig;lp og info"
4075
-
4076
- #: wppa-help.php:23
4077
- #, fuzzy
4078
- msgid "Plugin Description"
4079
- msgstr "Inserisci / modifica la descrizione per questo album."
4080
-
4081
- #: wppa-help.php:24
4082
- msgid ""
4083
- "This plugin is designed to easily manage and display your photo albums "
4084
- "within your WordPress site."
4085
- msgstr ""
4086
-
4087
- #: wppa-help.php:25
4088
- #, fuzzy
4089
- msgid "Features:"
4090
- msgstr "Top fotos"
4091
-
4092
- #: wppa-help.php:27
4093
- msgid ""
4094
- "You can create various albums that contain photos as well as sub albums at "
4095
- "the same time."
4096
- msgstr ""
4097
-
4098
- #: wppa-help.php:28
4099
- msgid "There is no limitation to the number of albums and photos."
4100
- msgstr ""
4101
-
4102
- #: wppa-help.php:29
4103
- msgid "There is no limitation to the nesting depth of sub-albums."
4104
- msgstr ""
4105
-
4106
- #: wppa-help.php:30
4107
- msgid "You have full control over the display sizes of the photos."
4108
- msgstr ""
4109
-
4110
- #: wppa-help.php:31
4111
- msgid "You can specify the way the albums are ordered."
4112
- msgstr ""
4113
-
4114
- #: wppa-help.php:32
4115
- msgid ""
4116
- "You can specify the way the photos are ordered within the albums, both on a "
4117
- "system-wide as well as an per album basis."
4118
- msgstr ""
4119
-
4120
- #: wppa-help.php:33
4121
- msgid ""
4122
- "The visitor of your site can run a slideshow from the photos in an album by "
4123
- "a single mouseclick."
4124
- msgstr ""
4125
-
4126
- #: wppa-help.php:34
4127
- msgid ""
4128
- "The visitor can see an overview of thumbnail images of the photos in album."
4129
- msgstr ""
4130
-
4131
- #: wppa-help.php:35
4132
- msgid ""
4133
- "The visitor can browse through the photos in each album you decide to "
4134
- "publish."
4135
- msgstr ""
4136
-
4137
- #: wppa-help.php:36
4138
- msgid ""
4139
- "You can add a Sidebar Widget that displays a photo which can be changed "
4140
- "every hour, day or week."
4141
- msgstr ""
4142
-
4143
- #: wppa-help.php:37
4144
- msgid ""
4145
- "You can add a Sidebar Search Widget, a Tagcloud widget and many others. See "
4146
- "the WP Widgets admin page."
4147
- msgstr ""
4148
-
4149
- #: wppa-help.php:40
4150
- msgid "Plugin Admin Features"
4151
- msgstr ""
4152
-
4153
- #: wppa-help.php:41
4154
- msgid ""
4155
- "You can find the plugin admin section under Menu Photo Albums on the admin "
4156
- "screen."
4157
- msgstr ""
4158
-
4159
- #: wppa-help.php:42
4160
- msgid "The following submenus exist."
4161
- msgstr ""
4162
-
4163
- #: wppa-help.php:44
4164
- msgid "Photo Albums: Create and manage Albums."
4165
- msgstr ""
4166
-
4167
- #: wppa-help.php:45
4168
- #, fuzzy
4169
- msgid "Upload photos: To upload photos to an album you created."
4170
- msgstr "Indsend mindst %d fotos til dette album!"
4171
-
4172
- #: wppa-help.php:46
4173
- msgid ""
4174
- "Import photos: To bulk import photos that have been uploaded by an ftp "
4175
- "program."
4176
- msgstr ""
4177
-
4178
- #: wppa-help.php:47
4179
- msgid "Settings: To control the various settings to customize your needs."
4180
- msgstr ""
4181
-
4182
- #: wppa-help.php:48
4183
- msgid ""
4184
- "Photo of the Day: To specify the behaviour for an optional potd sidebar "
4185
- "widget."
4186
- msgstr ""
4187
-
4188
- #: wppa-help.php:49
4189
- msgid "Comments: The comments on photos management admin page."
4190
- msgstr ""
4191
-
4192
- #: wppa-help.php:50
4193
- msgid "Help & Info: The screen you are watching now."
4194
- msgstr ""
4195
-
4196
- #: wppa-help.php:53
4197
- msgid "Installation"
4198
- msgstr ""
4199
-
4200
- #: wppa-help.php:55
4201
- msgid "You can install the plugin via the standard WP plugins admin page."
4202
- msgstr ""
4203
-
4204
- #: wppa-help.php:56
4205
- msgid "If you want to do it manually, follow the next steps:"
4206
- msgstr ""
4207
-
4208
- #: wppa-help.php:63
4209
- msgid "Unzip and upload the wppa plugin folder to"
4210
- msgstr ""
4211
-
4212
- #: wppa-help.php:64
4213
- msgid "Make sure that the folder"
4214
- msgstr ""
4215
-
4216
- #: wppa-help.php:64
4217
- msgid "exists and is writable by the server (CHMOD 755)"
4218
- msgstr ""
4219
-
4220
- #: wppa-help.php:65
4221
- msgid "Activate the plugin in WP Admin -> Plugins."
4222
- msgstr ""
4223
-
4224
- #: wppa-help.php:68
4225
- msgid "Upgrading WP Photo Album Plus"
4226
- msgstr ""
4227
-
4228
- #: wppa-help.php:69
4229
- msgid "When upgrading WP Photo Album Plus be aware of:"
4230
- msgstr ""
4231
-
4232
- #: wppa-help.php:71
4233
- msgid ""
4234
- "The revision number consists of 3 parts, Major, minor and fix revision. The "
4235
- "current version is:"
4236
- msgstr ""
4237
-
4238
- #: wppa-help.php:72
4239
- msgid ""
4240
- "When an update implies a major or minor version change and you have copied "
4241
- "wppa-theme.php or wppa-style.css to your themes directory, you will have to "
4242
- "remove them and make new copies and/or alterations if that should still be "
4243
- "needed."
4244
- msgstr ""
4245
-
4246
- #: wppa-help.php:73
4247
- msgid ""
4248
- "You will get a one-time reminder after upgrading, the first time you open a "
4249
- "wppa admin page."
4250
- msgstr ""
4251
-
4252
- #: wppa-help.php:76
4253
- msgid "How to start"
4254
- msgstr ""
4255
-
4256
- #: wppa-help.php:78
4257
- msgid "Install WP Photo Album Plus as described above under \"Installation\"."
4258
- msgstr ""
4259
-
4260
- #: wppa-help.php:79
4261
- msgid ""
4262
- "Create at least two albums in the \"Photo Albums\" tab. Leave \"Parent\" at "
4263
- "\"--- none ---\"."
4264
- msgstr ""
4265
-
4266
- #: wppa-help.php:80
4267
- msgid ""
4268
- "In the uploads tab, you can now upload you photots. Upload at least 2 photos "
4269
- "to each album. Make sure the photos you are uploading are of reasonable size "
4270
- "(say up to 1024x768 pixels)."
4271
- msgstr ""
4272
-
4273
- #: wppa-help.php:81
4274
- msgid ""
4275
- "Create a new WP Page, name it something like \"Photo Gallery\" and put in "
4276
- "the content:"
4277
- msgstr ""
4278
-
4279
- #: wppa-help.php:82
4280
- msgid "Publish the page, and view the page from your WP site."
4281
- msgstr ""
4282
-
4283
- #: wppa-help.php:83
4284
- msgid ""
4285
- "Now, go playing with the settings in the \"Settings\" panel, discover all "
4286
- "the configurable options and watch what is happening when you re-open the "
4287
- "\"Photo Gallery\" page."
4288
- msgstr ""
4289
-
4290
- #: wppa-help.php:84
4291
- msgid ""
4292
- "If you want a \"Photo of the day\" sidebar widget you can use an album for "
4293
- "that purpose. See all the options in the \"Photo of the day\" submenu."
4294
- msgstr ""
4295
-
4296
- #: wppa-help.php:87
4297
- msgid "Creating a Photo Album Page or a Post with photos - Advanced"
4298
- msgstr ""
4299
-
4300
- #: wppa-help.php:89
4301
- msgid ""
4302
- "Create a page like you normally would in WordPress, using the \"Default "
4303
- "Template\". In my example, give it the page title of \"Photo Gallery\". In "
4304
- "the Page Content section add the following code:"
4305
- msgstr ""
4306
-
4307
- #: wppa-help.php:91
4308
- msgid ""
4309
- "This will result in a gallery of all Albums that have their parent set to "
4310
- "\"--- none ---\"."
4311
- msgstr ""
4312
-
4313
- #: wppa-help.php:92
4314
- msgid ""
4315
- "If you want to display a single album - say album number 19 - in a WP page "
4316
- "or WP post (they act exactly the same), modify the shortcode like this:"
4317
- msgstr ""
4318
-
4319
- #: wppa-help.php:94
4320
- msgid "This will result in the display of the <b>contents</b> of album nr 19."
4321
- msgstr ""
4322
-
4323
- #: wppa-help.php:95
4324
- msgid ""
4325
- "If you want to display the <b>cover</b> of the album, i.e. like one of the "
4326
- "albums in the \"Photo Gallery\" as used above, use a schortcode like this:"
4327
- msgstr ""
4328
-
4329
- #: wppa-help.php:97
4330
- msgid "If you want to display the <b>slideshow</b> directly, use:"
4331
- msgstr ""
4332
-
4333
- #: wppa-help.php:99
4334
- msgid ""
4335
- "You can add a third argument if you want the photos to be displayed at a "
4336
- "different size than normal. You can \"overrule\" the \"Full size\" setting "
4337
- "by adding the line (for e.g. 300px):"
4338
- msgstr ""
4339
-
4340
- #: wppa-help.php:101
4341
- msgid "The shortcode may be used more than once in a single page or post."
4342
- msgstr ""
4343
-
4344
- #: wppa-help.php:102
4345
- msgid ""
4346
- "For more information see <a href=\"http://wppa.opajaap.nl/shortcode-"
4347
- "reference/\" >the documentation</a>"
4348
- msgstr ""
4349
-
4350
- #: wppa-help.php:104
4351
- msgid ""
4352
- "You can also create a custom page template by dropping the following code "
4353
- "into a page template:"
4354
- msgstr ""
4355
-
4356
- #: wppa-help.php:106
4357
- msgid ""
4358
- "If you want to display the <b>contents</b> of a single album in the template "
4359
- "- say album number 19 - the code would be:"
4360
- msgstr ""
4361
-
4362
- #: wppa-help.php:108
4363
- msgid ""
4364
- "If you want the <b>cover</b> to be displayed instead, use the following code:"
4365
- msgstr ""
4366
-
4367
- #: wppa-help.php:110
4368
- msgid "And to display the <b>slideshow</b> it would be:"
4369
- msgstr ""
4370
-
4371
- #: wppa-help.php:112
4372
- msgid "If you want to specify a size, add another argument:"
4373
- msgstr ""
4374
-
4375
- #: wppa-help.php:114
4376
- msgid ""
4377
- "In order to work properly, the wppa_albums() tag needs to be within the <a "
4378
- "href=\"http://codex.wordpress.org/The_Loop\" target=\"_blank\">WordPress "
4379
- "loop</a>."
4380
- msgstr ""
4381
-
4382
- #: wppa-help.php:115
4383
- msgid "For more information on creating custom page templates, click"
4384
- msgstr ""
4385
-
4386
- #: wppa-help.php:115
4387
- #, fuzzy
4388
- msgid "here"
4389
- msgstr "Der er"
4390
-
4391
- #: wppa-help.php:118
4392
- msgid "Facts to remember"
4393
- msgstr ""
4394
-
4395
- #: wppa-help.php:120
4396
- msgid ""
4397
- "You can remove the plugin and re-install the latest version always. This "
4398
- "will not affect your photos or albums."
4399
- msgstr ""
4400
-
4401
- #: wppa-help.php:121
4402
- msgid ""
4403
- "If you go back in version no, run the Setup procedure in <b>Table VIII-A1</"
4404
- "b> of the Photo Albums->Settings admin page."
4405
- msgstr ""
4406
-
4407
- #: wppa-help.php:124
4408
- msgid "Plugin Support And Feature Request"
4409
- msgstr ""
4410
-
4411
- #: wppa-help.php:126
4412
- msgid ""
4413
- "If you've read over this readme carefully and are still having issues, if "
4414
- "you've discovered a bug,"
4415
- msgstr ""
4416
-
4417
- #: wppa-help.php:127
4418
- msgid ""
4419
- "or have a feature request, please check the <a href=\"http://wordpress.org/"
4420
- "tags/wp-photo-album-plus\">forum</a> for this plugin and/or leave a question "
4421
- "there."
4422
- msgstr ""
4423
-
4424
- #: wppa-help.php:129
4425
- msgid ""
4426
- "For hot fixes check the <a href=\"http://plugins.trac.wordpress.org/log/wp-"
4427
- "photo-album-plus/\">development log</a> for this plugin."
4428
- msgstr ""
4429
-
4430
- #: wppa-help.php:131
4431
- msgid ""
4432
- "You may also visit the <a href=\"http://wppa.opajaap.nl/\" target=\"_blank"
4433
- "\">WPPA+ Docs & Demos site</a> that also contains the <a href=\"http://wppa."
4434
- "opajaap.nl/?page_id=39\" target=\"_blank\">WPPA+ Tutorial</a>."
4435
- msgstr ""
4436
-
4437
- #: wppa-help.php:134
4438
- msgid ""
4439
- "If you love this plugin, I would appreciate a donation, either in <a href="
4440
- "\"https://www.paypal.com/cgi-bin/webscr?"
4441
- "cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-"
4442
- "Plus&item_number=Support-Open-Source&currency_code=USD&lc=US\">USD</a> or in "
4443
- "<a href=\"https://www.paypal.com/cgi-bin/webscr?"
4444
- "cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-"
4445
- "Plus&item_number=Support-Open-Source&currency_code=EUR&lc=US\">EURO</a>."
4446
- msgstr ""
4447
-
4448
- #: wppa-help.php:137
4449
- msgid "About and credits"
4450
- msgstr ""
4451
-
4452
- #: wppa-help.php:139
4453
- msgid ""
4454
- "WP Photo Album Plus is extended with many new features and is maintained by "
4455
- "J.N. Breetvelt, a.k.a. (<a href=\"http://www.opajaap.nl/\">OpaJaap</a>)"
4456
- msgstr ""
4457
-
4458
- #: wppa-help.php:140
4459
- msgid "Thanx to R.J. Kaplan for WP Photo Album 1.5.1."
4460
- msgstr ""
4461
-
4462
- #: wppa-help.php:141
4463
- msgid "Thanx to E.S. Rosenberg for programming tips on security issues."
4464
- msgstr ""
4465
-
4466
- #: wppa-help.php:142
4467
- msgid "Thanx to Pavel &#352;orejs for the Numbar code."
4468
- msgstr ""
4469
-
4470
- #: wppa-help.php:143
4471
- msgid ""
4472
- "Thanx to the users who reported bugs and asked for enhancements. Without "
4473
- "them WPPA should not have been what it is now!"
4474
- msgstr ""
4475
-
4476
- #: wppa-help.php:146
4477
- msgid "Licence"
4478
- msgstr ""
4479
-
4480
- #: wppa-help.php:148
4481
- msgid "WP Photo Album is released under the"
4482
- msgstr ""
4483
-
4484
- #: wppa-help.php:148
4485
- msgid "licence."
4486
- msgstr ""
4487
-
4488
- #: wppa-items.php:226 wppa-thumbnails.php:1836
4489
- msgid "Gold medal"
4490
- msgstr ""
4491
-
4492
- #: wppa-items.php:226 wppa-photo-admin-autosave.php:837
4493
- #: wppa-photo-admin-autosave.php:859 wppa-photo-admin-autosave.php:1302
4494
- #: wppa-photo-admin-autosave.php:1419 wppa-photo-admin-autosave.php:1430
4495
- #: wppa-widget-admin.php:126
4496
- msgid "Gold"
4497
- msgstr ""
4498
-
4499
- #: wppa-items.php:227 wppa-thumbnails.php:1837
4500
- msgid "Silver medal"
4501
- msgstr ""
4502
-
4503
- #: wppa-items.php:227 wppa-photo-admin-autosave.php:838
4504
- #: wppa-photo-admin-autosave.php:860 wppa-photo-admin-autosave.php:1303
4505
- #: wppa-photo-admin-autosave.php:1420 wppa-photo-admin-autosave.php:1431
4506
- #: wppa-widget-admin.php:127
4507
- msgid "Silver"
4508
- msgstr ""
4509
-
4510
- #: wppa-items.php:228 wppa-thumbnails.php:1838
4511
- msgid "Bronze medal"
4512
- msgstr ""
4513
-
4514
- #: wppa-items.php:228 wppa-photo-admin-autosave.php:839
4515
- #: wppa-photo-admin-autosave.php:861 wppa-photo-admin-autosave.php:1304
4516
- #: wppa-photo-admin-autosave.php:1421 wppa-photo-admin-autosave.php:1432
4517
- #: wppa-widget-admin.php:128
4518
- msgid "Bronze"
4519
- msgstr ""
4520
-
4521
- #: wppa-items.php:277 wppa-items.php:431 wppa-settings-autosave.php:3219
4522
- #, fuzzy
4523
- msgid "none"
4524
- msgstr "--- ingen ---"
4525
-
4526
- #: wppa-items.php:307 wppa-items.php:442 wppa-upload.php:99 wppa-upload.php:104
4527
- #, fuzzy
4528
- msgid "unknown"
4529
- msgstr "sconosciuto"
4530
-
4531
- #: wppa-items.php:377 wppa-items.php:398
4532
- msgid "--- deleted ---"
4533
- msgstr "--- vises ikke ---"
4534
-
4535
- #: wppa-items.php:387
4536
- msgid "All Albums"
4537
- msgstr "Alle albums"
4538
-
4539
- #: wppa-lasten-widget.php:12
4540
- #, fuzzy
4541
- msgid "WPPA+ Last Ten Uploaded Photos"
4542
- msgstr "Foto Top Ti"
4543
-
4544
- #: wppa-lasten-widget.php:13 wppa-lasten-widget.php:162
4545
- #, fuzzy
4546
- msgid "Last Ten Photos"
4547
- msgstr "Foto Top Ti"
4548
-
4549
- #: wppa-lasten-widget.php:44
4550
- #, fuzzy
4551
- msgid "Last Ten Uploaded Photos"
4552
- msgstr "Foto Top Ti"
4553
-
4554
- #: wppa-lasten-widget.php:108
4555
- msgid "View the most recent uploaded photos"
4556
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
4557
-
4558
- #: wppa-lasten-widget.php:186
4559
- msgid ""
4560
- "Select --- multiple see below --- in the Album selection box. Then enter "
4561
- "album numbers seperated by commas"
4562
- msgstr ""
4563
-
4564
- #: wppa-lasten-widget.php:191 wppa-thumbnail-widget.php:216
4565
- #: wppa-topten-widget.php:226
4566
- msgid "Display:"
4567
- msgstr ""
4568
-
4569
- #: wppa-lasten-widget.php:193 wppa-thumbnail-widget.php:218
4570
- #: wppa-topten-widget.php:228
4571
- #, fuzzy
4572
- msgid "thumbnail images"
4573
- msgstr "Foto Top Ti"
4574
-
4575
- #: wppa-lasten-widget.php:194 wppa-thumbnail-widget.php:219
4576
- #: wppa-topten-widget.php:229
4577
- #, fuzzy
4578
- msgid "photo names"
4579
- msgstr "Indtast foto navn"
4580
-
4581
- #: wppa-lasten-widget.php:200
4582
- msgid "Show time since:"
4583
- msgstr ""
4584
-
4585
- #: wppa-links.php:721
4586
- msgid "App"
4587
- msgstr "Anv."
4588
-
4589
- #: wppa-links.php:722
4590
- msgid "Mod"
4591
- msgstr "Ret"
4592
-
4593
- #: wppa-links.php:723
4594
- msgid "Del"
4595
- msgstr "Slet"
4596
-
4597
- #: wppa-links.php:727 wppa-links.php:744
4598
- msgid "Are you sure you want to publish this photo?"
4599
- msgstr "Er du sikker p&aring;, at du vil udgive dette foto"
4600
-
4601
- #: wppa-links.php:738 wppa-links.php:755
4602
- msgid "Approve"
4603
- msgstr "Godkend"
4604
-
4605
- #: wppa-links.php:739
4606
- msgid "Moderate"
4607
- msgstr "Vedligehold"
4608
-
4609
- #: wppa-links.php:756
4610
- msgid "PhotoAdmin"
4611
- msgstr "Foto"
4612
-
4613
- #: wppa-links.php:757
4614
- msgid "CommentAdmin"
4615
- msgstr "%d kommentarer"
4616
-
4617
- #: wppa-links.php:761
4618
- msgid "Are you sure you want to publish this comment?"
4619
- msgstr "Er du sikker p&aring;, at du vil udgive denne kommentar?"
4620
-
4621
- #: wppa-links.php:773
4622
- msgid "Are you sure you want to remove this comment?"
4623
- msgstr "Er du sikker p&aring;, at du vil fjerne denne kommentar?"
4624
-
4625
- #: wppa-links.php:787
4626
- #, php-format
4627
- msgid "Scheduled for %s"
4628
- msgstr ""
4629
-
4630
- #: wppa-links.php:994 wppa-links.php:997 wppa-slideshow.php:953
4631
- msgid "Previous"
4632
- msgstr "Forrige billede"
4633
-
4634
- #: wppa-links.php:1004 wppa-links.php:1007 wppa-non-admin.php:587
4635
- #: wppa-slideshow.php:966
4636
- msgid "Next"
4637
- msgstr "N&aelig;ste"
4638
-
4639
- #: wppa-links.php:1053
4640
- #, fuzzy
4641
- msgid "Download album"
4642
- msgstr ""
4643
- "Questa impostazione farà sì che cliccando sulla immagine con il tasto destro "
4644
- "non permetterà all'utente di scaricare l'immagine."
4645
-
4646
- #: wppa-links.php:1189
4647
- #, fuzzy
4648
- msgid "View thumbnails"
4649
- msgstr "Se"
4650
-
4651
- #: wppa-maintenance.php:60
4652
- msgid "You can run only one maintenance procedure at a time"
4653
- msgstr ""
4654
-
4655
- #: wppa-maintenance.php:60 wppa-upload.php:1440
4656
- msgid "Error"
4657
- msgstr ""
4658
-
4659
- #: wppa-maintenance.php:120
4660
- #, fuzzy
4661
- msgid "Orphan photos"
4662
- msgstr "Indsend foto"
4663
-
4664
- #: wppa-maintenance.php:120
4665
- msgid "This album contains refound lost photos"
4666
- msgstr ""
4667
-
4668
- #: wppa-maintenance.php:668 wppa-maintenance.php:684
4669
- #: wppa-photo-admin-autosave.php:1713 wppa-photo-admin-autosave.php:1734
4670
- #: wppa-setup.php:343 wppa.php:369 wppa.php:370
4671
- #, fuzzy
4672
- msgid "Required"
4673
- msgstr "Afskudt"
4674
-
4675
- #: wppa-maintenance.php:753
4676
- msgid "There are no index items."
4677
- msgstr ""
4678
-
4679
- #: wppa-maintenance.php:767
4680
- msgid "There are no error log messages"
4681
- msgstr ""
4682
-
4683
- #: wppa-maintenance.php:835
4684
- #, fuzzy
4685
- msgid "There are no ratings"
4686
- msgstr "Der er"
4687
-
4688
- #: wppa-maintenance.php:891
4689
- msgid "There are no active sessions"
4690
- msgstr ""
4691
-
4692
- #: wppa-multitag-widget.php:13 wppa-tagcloud-widget.php:13
4693
- msgid "WPPA+ Photo Tags"
4694
- msgstr ""
4695
-
4696
- #: wppa-multitag-widget.php:14
4697
- #, fuzzy
4698
- msgid "Photo Tags Filter"
4699
- msgstr "Dagens foto"
4700
-
4701
- #: wppa-multitag-widget.php:73
4702
- msgid "No of columns:"
4703
- msgstr ""
4704
-
4705
- #: wppa-multitag-widget.php:74 wppa-tagcloud-widget.php:69
4706
- msgid "Select multiple tags or --- all ---:"
4707
- msgstr ""
4708
-
4709
- #: wppa-non-admin.php:315
4710
- msgid "Press f for fullscreen."
4711
- msgstr ""
4712
-
4713
- #: wppa-non-admin.php:349
4714
- msgid ""
4715
- "Keys: f = next mode; escape = exit; p = previous, n = next, s = start/stop, "
4716
- "d = dismiss this notice."
4717
- msgstr ""
4718
-
4719
- #: wppa-non-admin.php:350
4720
- msgid "Keys: f = next mode; escape = exit; d = dismiss this notice."
4721
- msgstr ""
4722
-
4723
- #: wppa-non-admin.php:578 wppa-settings-autosave.php:3373
4724
- #: wppa-slideshow.php:228
4725
- msgid "Start"
4726
- msgstr "Start"
4727
-
4728
- #: wppa-non-admin.php:579
4729
- msgid "Stop"
4730
- msgstr "Stop"
4731
-
4732
- #: wppa-non-admin.php:580 wppa-slideshow.php:220
4733
- msgid "Slower"
4734
- msgstr "Langsommere"
4735
-
4736
- #: wppa-non-admin.php:581 wppa-slideshow.php:236
4737
- msgid "Faster"
4738
- msgstr "Hurtigere"
4739
-
4740
- #: wppa-non-admin.php:583
4741
- msgid "of"
4742
- msgstr "af"
4743
-
4744
- #: wppa-non-admin.php:584
4745
- msgid "Previous photo"
4746
- msgstr "Forrige billede"
4747
-
4748
- #: wppa-non-admin.php:585
4749
- msgid "Next photo"
4750
- msgstr "N&aelig;ste billede"
4751
-
4752
- #: wppa-non-admin.php:586
4753
- msgid "Prev."
4754
- msgstr "Forrige"
4755
-
4756
- #: wppa-non-admin.php:588 wppa-slideshow.php:705 wppa-slideshow.php:717
4757
- #: wppa-slideshow.php:808
4758
- msgid "Average&nbsp;rating"
4759
- msgstr "Bed&oslash;mmelse&nbsp;gennemsnitlig"
4760
-
4761
- #: wppa-non-admin.php:589 wppa-slideshow.php:767 wppa-slideshow.php:779
4762
- #: wppa-slideshow.php:790
4763
- msgid "My&nbsp;rating"
4764
- msgstr "Min&nbsp;bed&oslash;mmelse"
4765
-
4766
- #: wppa-non-admin.php:590
4767
- msgid "Avg."
4768
- msgstr "Gnsn."
4769
-
4770
- #: wppa-non-admin.php:591
4771
- msgid "Mine"
4772
- msgstr "Mit"
4773
-
4774
- #: wppa-non-admin.php:592
4775
- msgid "You marked this image as inappropriate."
4776
- msgstr "Du har markeret dette billed som v&aelig;rende upassende."
4777
-
4778
- #: wppa-non-admin.php:594
4779
- msgid "No dislikes"
4780
- msgstr ""
4781
-
4782
- #: wppa-non-admin.php:595
4783
- #, fuzzy
4784
- msgid "1 dislike"
4785
- msgstr "1 sekund"
4786
-
4787
- #: wppa-non-admin.php:596
4788
- msgid "dislikes"
4789
- msgstr ""
4790
-
4791
- #: wppa-non-admin.php:597
4792
- #, fuzzy
4793
- msgid "including mine"
4794
- msgstr "Mit"
4795
-
4796
- #: wppa-non-admin.php:600
4797
- msgid "Please enter your name"
4798
- msgstr "Skriv dit navn"
4799
-
4800
- #: wppa-non-admin.php:601
4801
- msgid "Please enter a valid email address"
4802
- msgstr "Skriv en gyldig email adresse"
4803
-
4804
- #: wppa-non-admin.php:602
4805
- msgid "Please enter a comment"
4806
- msgstr "Skriv en kommentar"
4807
-
4808
- #: wppa-non-admin.php:636
4809
- msgid "Double click to start/stop slideshow running"
4810
- msgstr "Dobbeltklik for at starte/slutte slideshow"
4811
-
4812
- #: wppa-photo-admin-autosave.php:35
4813
- #, fuzzy
4814
- msgid "Edit photos"
4815
- msgstr "N&aelig;ste billede"
4816
-
4817
- #: wppa-photo-admin-autosave.php:54
4818
- #, fuzzy
4819
- msgid "Moderate photos"
4820
- msgstr "Vedligehold"
4821
-
4822
- #: wppa-photo-admin-autosave.php:96
4823
- msgid "You do not have the rights to do this"
4824
- msgstr ""
4825
-
4826
- #: wppa-photo-admin-autosave.php:118
4827
- msgid "This photo is no longer awaiting moderation."
4828
- msgstr ""
4829
-
4830
- #: wppa-photo-admin-autosave.php:119
4831
- msgid "There are no photos awaiting moderation at this time."
4832
- msgstr ""
4833
-
4834
- #: wppa-photo-admin-autosave.php:121
4835
- msgid "Manage all photos by timestamp"
4836
- msgstr ""
4837
-
4838
- #: wppa-photo-admin-autosave.php:138
4839
- #, fuzzy, php-format
4840
- msgid "Photo %s has been removed."
4841
- msgstr "Il file %s no è supportato ed è stato rimosso."
4842
-
4843
- #: wppa-photo-admin-autosave.php:143 wppa-photo-admin-autosave.php:1467
4844
- #, fuzzy
4845
- msgid "No photos matching your search criteria."
4846
- msgstr ""
4847
- "Ingen album eller fotos fundet der svarer til dine s&oslash;ge kriterier."
4848
-
4849
- #: wppa-photo-admin-autosave.php:146 wppa-photo-admin-autosave.php:1470
4850
- #: wppa-widget-admin.php:210
4851
- #, fuzzy
4852
- msgid "No photos yet in this album."
4853
- msgstr "Indsend mindst %d fotos til dette album!"
4854
-
4855
- #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:544
4856
- msgid "top - left"
4857
- msgstr ""
4858
-
4859
- #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:544
4860
- msgid "top - center"
4861
- msgstr ""
4862
-
4863
- #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:544
4864
- msgid "top - right"
4865
- msgstr ""
4866
-
4867
- #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:545
4868
- msgid "center - left"
4869
- msgstr ""
4870
-
4871
- #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:545
4872
- msgid "center - center"
4873
- msgstr ""
4874
-
4875
- #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:545
4876
- msgid "center - right"
4877
- msgstr ""
4878
-
4879
- #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:546
4880
- msgid "bottom - left"
4881
- msgstr ""
4882
-
4883
- #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:546
4884
- msgid "bottom - center"
4885
- msgstr ""
4886
-
4887
- #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:546
4888
- msgid "bottom - right"
4889
- msgstr ""
4890
-
4891
- #: wppa-photo-admin-autosave.php:177
4892
- #, fuzzy
4893
- msgid "Preview:"
4894
- msgstr "Forrige billede"
4895
-
4896
- #: wppa-photo-admin-autosave.php:179
4897
- #, php-format
4898
- msgid "Album: %d<br />(%s)"
4899
- msgstr ""
4900
-
4901
- #: wppa-photo-admin-autosave.php:182
4902
- msgid "Rotate"
4903
- msgstr ""
4904
-
4905
- #: wppa-photo-admin-autosave.php:183
4906
- #, fuzzy
4907
- msgid "Are you sure you want to rotate this photo left?"
4908
- msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
4909
-
4910
- #: wppa-photo-admin-autosave.php:185
4911
- #, fuzzy
4912
- msgid "Are you sure you want to rotate this photo 180&deg;?"
4913
- msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
4914
-
4915
- #: wppa-photo-admin-autosave.php:187
4916
- #, fuzzy
4917
- msgid "Are you sure you want to rotate this photo right?"
4918
- msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
4919
-
4920
- #: wppa-photo-admin-autosave.php:192
4921
- msgid "If it says 'Photo rotated', the photo is rotated."
4922
- msgstr ""
4923
-
4924
- #: wppa-photo-admin-autosave.php:196
4925
- #, php-format
4926
- msgid "If it says 'Photo rotated', the photo is rotated. %s the page."
4927
- msgstr ""
4928
-
4929
- #: wppa-photo-admin-autosave.php:210
4930
- msgid "Preview fullsize video"
4931
- msgstr ""
4932
-
4933
- #: wppa-photo-admin-autosave.php:225
4934
- #, fuzzy
4935
- msgid "Preview fullsize photo"
4936
- msgstr "Forrige billede"
4937
-
4938
- #: wppa-photo-admin-autosave.php:240
4939
- msgid "Audio disabled"
4940
- msgstr ""
4941
-
4942
- #: wppa-photo-admin-autosave.php:250
4943
- #, fuzzy
4944
- msgid "Upload:"
4945
- msgstr "Indsend"
4946
-
4947
- #: wppa-photo-admin-autosave.php:264 wppa-potd-widget.php:156
4948
- msgid "By:"
4949
- msgstr ""
4950
-
4951
- #: wppa-photo-admin-autosave.php:308
4952
- #, fuzzy
4953
- msgid "Rating:"
4954
- msgstr "Bed&oslash;mmelse: %s"
4955
-
4956
- #: wppa-photo-admin-autosave.php:314
4957
- msgid "Entries:"
4958
- msgstr ""
4959
-
4960
- #: wppa-photo-admin-autosave.php:314
4961
- #, fuzzy
4962
- msgid "Mean value:"
4963
- msgstr "Mean value:"
4964
-
4965
- #: wppa-photo-admin-autosave.php:321
4966
- #, php-format
4967
- msgid "Disliked by %d visitors"
4968
- msgstr ""
4969
-
4970
- #: wppa-photo-admin-autosave.php:325
4971
- #, php-format
4972
- msgid "%d pending votes."
4973
- msgstr ""
4974
-
4975
- #: wppa-photo-admin-autosave.php:335
4976
- #, fuzzy
4977
- msgid "Views"
4978
- msgstr "Se"
4979
-
4980
- #: wppa-photo-admin-autosave.php:346
4981
- #, fuzzy
4982
- msgid "Photo sort order #:"
4983
- msgstr "Billede ikke fundet"
4984
-
4985
- #: wppa-photo-admin-autosave.php:359
4986
- #, fuzzy
4987
- msgid "Are you sure you want to move this photo?"
4988
- msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
4989
-
4990
- #: wppa-photo-admin-autosave.php:359
4991
- #, fuzzy
4992
- msgid "Please select an album to move the photo to first."
4993
- msgstr ""
4994
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
4995
- "di ricerca differente."
4996
-
4997
- #: wppa-photo-admin-autosave.php:359
4998
- #, fuzzy
4999
- msgid "Move photo to"
5000
- msgstr "Se fotos"
5001
-
5002
- #: wppa-photo-admin-autosave.php:368
5003
- #, fuzzy
5004
- msgid "Are you sure you want to copy this photo?"
5005
- msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
5006
-
5007
- #: wppa-photo-admin-autosave.php:368
5008
- #, fuzzy
5009
- msgid "Please select an album to copy the photo to first."
5010
- msgstr ""
5011
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
5012
- "di ricerca differente."
5013
-
5014
- #: wppa-photo-admin-autosave.php:368
5015
- msgid "Copy photo to"
5016
- msgstr ""
5017
-
5018
- #: wppa-photo-admin-autosave.php:380 wppa-photo-admin-autosave.php:1351
5019
- #, fuzzy
5020
- msgid "Are you sure you want to delete this photo?"
5021
- msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
5022
-
5023
- #: wppa-photo-admin-autosave.php:380
5024
- #, fuzzy
5025
- msgid "Delete photo"
5026
- msgstr "fotos"
5027
-
5028
- #: wppa-photo-admin-autosave.php:390
5029
- msgid "Autopage Permalink:"
5030
- msgstr ""
5031
-
5032
- #: wppa-photo-admin-autosave.php:403
5033
- #, fuzzy
5034
- msgid "Link url:"
5035
- msgstr "Link til"
5036
-
5037
- #: wppa-photo-admin-autosave.php:408
5038
- msgid "Same tab"
5039
- msgstr ""
5040
-
5041
- #: wppa-photo-admin-autosave.php:409 wppa-settings-autosave.php:4463
5042
- #: wppa-settings-autosave.php:5490
5043
- #, fuzzy
5044
- msgid "New tab"
5045
- msgstr "Impossibile creare album. "
5046
-
5047
- #: wppa-photo-admin-autosave.php:417
5048
- #, fuzzy
5049
- msgid "Link title:"
5050
- msgstr "Link til"
5051
-
5052
- #: wppa-photo-admin-autosave.php:426
5053
- msgid ""
5054
- "If you want this link to be used, check 'PS Overrule' checkbox in table VI."
5055
- msgstr ""
5056
-
5057
- #: wppa-photo-admin-autosave.php:437
5058
- msgid "HTML Alt attribute:"
5059
- msgstr ""
5060
-
5061
- #: wppa-photo-admin-autosave.php:457
5062
- #, fuzzy
5063
- msgid "Filename:"
5064
- msgstr "Dit navn"
5065
-
5066
- #: wppa-photo-admin-autosave.php:463
5067
- #, fuzzy
5068
- msgid "Update file"
5069
- msgstr ""
5070
- "Non hai i permessi per potere aggiornare le informazioni di questo album"
5071
-
5072
- #: wppa-photo-admin-autosave.php:474 wppa-settings-autosave.php:2953
5073
- msgid "Upload"
5074
- msgstr "Indsend"
5075
-
5076
- #: wppa-photo-admin-autosave.php:484
5077
- msgid "Video size:"
5078
- msgstr ""
5079
-
5080
- #: wppa-photo-admin-autosave.php:490 wppa-slideshow-widget.php:201
5081
- msgid "Width:"
5082
- msgstr ""
5083
-
5084
- #: wppa-photo-admin-autosave.php:493 wppa-photo-admin-autosave.php:501
5085
- #, php-format
5086
- msgid "pix, (0=default:%s)"
5087
- msgstr ""
5088
-
5089
- #: wppa-photo-admin-autosave.php:498 wppa-slideshow-widget.php:202
5090
- msgid "Height:"
5091
- msgstr ""
5092
-
5093
- #: wppa-photo-admin-autosave.php:509 wppa-photo-admin-autosave.php:531
5094
- msgid "Formats:"
5095
- msgstr ""
5096
-
5097
- #: wppa-photo-admin-autosave.php:517 wppa-photo-admin-autosave.php:539
5098
- msgid "Filesize:"
5099
- msgstr ""
5100
-
5101
- #: wppa-photo-admin-autosave.php:552
5102
- #, fuzzy
5103
- msgid "Poster:"
5104
- msgstr "--- lo stesso articolo/pagina ---"
5105
-
5106
- #: wppa-photo-admin-autosave.php:552
5107
- #, fuzzy
5108
- msgid "Photo sizes:"
5109
- msgstr "Foto"
5110
-
5111
- #: wppa-photo-admin-autosave.php:558
5112
- msgid "Source file:"
5113
- msgstr ""
5114
-
5115
- #: wppa-photo-admin-autosave.php:571
5116
- msgid "Remake display file and thumbnail file"
5117
- msgstr ""
5118
-
5119
- #: wppa-photo-admin-autosave.php:571
5120
- msgid "Remake files"
5121
- msgstr ""
5122
-
5123
- #: wppa-photo-admin-autosave.php:576 wppa-photo-admin-autosave.php:601
5124
- #: wppa-photo-admin-autosave.php:624
5125
- msgid "Unavailable"
5126
- msgstr ""
5127
-
5128
- #: wppa-photo-admin-autosave.php:586
5129
- msgid "Display file:"
5130
- msgstr ""
5131
-
5132
- #: wppa-photo-admin-autosave.php:611
5133
- #, fuzzy
5134
- msgid "Thumbnail file:"
5135
- msgstr "Foto Top Ti"
5136
-
5137
- #: wppa-photo-admin-autosave.php:630
5138
- #, fuzzy
5139
- msgid "Remake thumbnail file"
5140
- msgstr "Foto Top Ti"
5141
-
5142
- #: wppa-photo-admin-autosave.php:630 wppa-settings-autosave.php:6208
5143
- msgid "Remake"
5144
- msgstr ""
5145
-
5146
- #: wppa-photo-admin-autosave.php:641
5147
- #, fuzzy
5148
- msgid "Stereophoto:"
5149
- msgstr "foto"
5150
-
5151
- #: wppa-photo-admin-autosave.php:645
5152
- msgid "no stereo image or ready anaglyph"
5153
- msgstr ""
5154
-
5155
- #: wppa-photo-admin-autosave.php:646
5156
- msgid "Left - right stereo image"
5157
- msgstr ""
5158
-
5159
- #: wppa-photo-admin-autosave.php:647
5160
- msgid "Right - left stereo image"
5161
- msgstr ""
5162
-
5163
- #: wppa-photo-admin-autosave.php:653
5164
- #, fuzzy
5165
- msgid "Images:"
5166
- msgstr "N&aelig;ste&nbsp;side"
5167
-
5168
- #: wppa-photo-admin-autosave.php:683
5169
- #, fuzzy
5170
- msgid "Location:"
5171
- msgstr "Position:"
5172
-
5173
- #: wppa-photo-admin-autosave.php:691
5174
- msgid "Lat:"
5175
- msgstr ""
5176
-
5177
- #: wppa-photo-admin-autosave.php:692
5178
- msgid "Lon:"
5179
- msgstr ""
5180
-
5181
- #: wppa-photo-admin-autosave.php:694
5182
- msgid "Refresh the page after changing to see the degrees being updated"
5183
- msgstr ""
5184
-
5185
- #: wppa-photo-admin-autosave.php:704
5186
- #, fuzzy
5187
- msgid "Photoname:"
5188
- msgstr "Dagens foto"
5189
-
5190
- #: wppa-photo-admin-autosave.php:710
5191
- #, fuzzy
5192
- msgid "Update Photo name"
5193
- msgstr "Indtast foto navn"
5194
-
5195
- #: wppa-photo-admin-autosave.php:736
5196
- #, fuzzy
5197
- msgid "Update Photo description"
5198
- msgstr "Inds&aelig;t/rediger beskrivelse af foto"
5199
-
5200
- #: wppa-photo-admin-autosave.php:794
5201
- msgid "Tags:"
5202
- msgstr ""
5203
-
5204
- #: wppa-photo-admin-autosave.php:802
5205
- msgid "Separate tags with commas."
5206
- msgstr ""
5207
-
5208
- #: wppa-photo-admin-autosave.php:813
5209
- #, fuzzy
5210
- msgid "No tags yet"
5211
- msgstr "Intet album er defineret."
5212
-
5213
- #: wppa-photo-admin-autosave.php:825
5214
- msgid "Status:"
5215
- msgstr ""
5216
-
5217
- #: wppa-photo-admin-autosave.php:834 wppa-photo-admin-autosave.php:857
5218
- #: wppa-photo-admin-autosave.php:1299 wppa-photo-admin-autosave.php:1416
5219
- #: wppa-photo-admin-autosave.php:1428 wppa-widget-admin.php:124
5220
- msgid "Publish"
5221
- msgstr ""
5222
-
5223
- #: wppa-photo-admin-autosave.php:836 wppa-photo-admin-autosave.php:858
5224
- #: wppa-photo-admin-autosave.php:1301 wppa-photo-admin-autosave.php:1418
5225
- #: wppa-widget-admin.php:125
5226
- #, fuzzy
5227
- msgid "Featured"
5228
- msgstr "Top fotos"
5229
-
5230
- #: wppa-photo-admin-autosave.php:840 wppa-photo-admin-autosave.php:862
5231
- #: wppa-photo-admin-autosave.php:1305 wppa-photo-admin-autosave.php:1422
5232
- #: wppa-photo-admin-autosave.php:1433
5233
- msgid "Scheduled"
5234
- msgstr ""
5235
-
5236
- #: wppa-photo-admin-autosave.php:841 wppa-photo-admin-autosave.php:863
5237
- #: wppa-photo-admin-autosave.php:1306 wppa-photo-admin-autosave.php:1423
5238
- #: wppa-photo-admin-autosave.php:1434
5239
- msgid "Private"
5240
- msgstr ""
5241
-
5242
- #: wppa-photo-admin-autosave.php:872
5243
- msgid ""
5244
- "Note: Featured photos should have a descriptive name; a name a search engine "
5245
- "will look for!"
5246
- msgstr ""
5247
-
5248
- #: wppa-photo-admin-autosave.php:882
5249
- msgid "Watermark:"
5250
- msgstr ""
5251
-
5252
- #: wppa-photo-admin-autosave.php:889 wppa-photo-admin-autosave.php:902
5253
- msgid "File:"
5254
- msgstr ""
5255
-
5256
- #: wppa-photo-admin-autosave.php:894 wppa-photo-admin-autosave.php:903
5257
- msgid "Pos:"
5258
- msgstr ""
5259
-
5260
- #: wppa-photo-admin-autosave.php:898
5261
- #, fuzzy
5262
- msgid "Apply watermark"
5263
- msgstr "Inds&aelig;t vandm&aelig;rke:"
5264
-
5265
- #: wppa-photo-admin-autosave.php:898
5266
- msgid "Are you sure? Once applied it can not be removed!"
5267
- msgstr ""
5268
-
5269
- #: wppa-photo-admin-autosave.php:898
5270
- msgid "And I do not know if there is already a watermark on this photo"
5271
- msgstr ""
5272
-
5273
- #: wppa-photo-admin-autosave.php:908
5274
- #, fuzzy
5275
- msgid "Not configured"
5276
- msgstr "Ikke Defineret"
5277
-
5278
- #: wppa-photo-admin-autosave.php:922
5279
- #, php-format
5280
- msgid "Video %s is not modified yet"
5281
- msgstr ""
5282
-
5283
- #: wppa-photo-admin-autosave.php:925
5284
- #, fuzzy, php-format
5285
- msgid "Photo %s is not modified yet"
5286
- msgstr "Billede ikke fundet"
5287
-
5288
- #: wppa-photo-admin-autosave.php:944
5289
- msgid "Single image shortcode"
5290
- msgstr ""
5291
-
5292
- #: wppa-photo-admin-autosave.php:950
5293
- msgid "Permalink"
5294
- msgstr ""
5295
-
5296
- #: wppa-photo-admin-autosave.php:955
5297
- msgid "Hi resolution url"
5298
- msgstr ""
5299
-
5300
- #: wppa-photo-admin-autosave.php:960
5301
- msgid "Display file url"
5302
- msgstr ""
5303
-
5304
- #: wppa-photo-admin-autosave.php:966
5305
- #, fuzzy
5306
- msgid "Thumbnail file url"
5307
- msgstr "Foto Top Ti"
5308
-
5309
- #: wppa-photo-admin-autosave.php:1010 wppa-photo-admin-autosave.php:1020
5310
- msgid "Trash"
5311
- msgstr ""
5312
-
5313
- #: wppa-photo-admin-autosave.php:1136
5314
- #, php-format
5315
- msgid "Time is out after processing %d out of %d items."
5316
- msgstr ""
5317
-
5318
- #: wppa-photo-admin-autosave.php:1149
5319
- #, php-format
5320
- msgid "%d photos deleted."
5321
- msgstr ""
5322
-
5323
- #: wppa-photo-admin-autosave.php:1152
5324
- #, php-format
5325
- msgid "%1$s photos moved to album %2$s."
5326
- msgstr ""
5327
-
5328
- #: wppa-photo-admin-autosave.php:1155
5329
- #, fuzzy, php-format
5330
- msgid "%1$s photos copied to album %2$s."
5331
- msgstr "Bruger %s indsendte foto %s ind i album %s"
5332
-
5333
- #: wppa-photo-admin-autosave.php:1158
5334
- #, php-format
5335
- msgid "Changed status to %1$s on %2$s photos."
5336
- msgstr ""
5337
-
5338
- #: wppa-photo-admin-autosave.php:1161
5339
- #, php-format
5340
- msgid "Changed owner to %1$s on %2$s photos."
5341
- msgstr ""
5342
-
5343
- #: wppa-photo-admin-autosave.php:1164
5344
- #, fuzzy, php-format
5345
- msgid "%d photos processed."
5346
- msgstr "Indsendelse af %s fotos var en success."
5347
-
5348
- #: wppa-photo-admin-autosave.php:1284
5349
- msgid "Move to"
5350
- msgstr ""
5351
-
5352
- #: wppa-photo-admin-autosave.php:1285
5353
- msgid "Copy to"
5354
- msgstr ""
5355
-
5356
- #: wppa-photo-admin-autosave.php:1287
5357
- msgid "Set status to"
5358
- msgstr ""
5359
-
5360
- #: wppa-photo-admin-autosave.php:1290
5361
- msgid "Set owner to"
5362
- msgstr ""
5363
-
5364
- #: wppa-photo-admin-autosave.php:1297
5365
- #, fuzzy
5366
- msgid "- select a status -"
5367
- msgstr ""
5368
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
5369
- "di ricerca differente."
5370
-
5371
- #: wppa-photo-admin-autosave.php:1312
5372
- #, fuzzy
5373
- msgid "- select an owner -"
5374
- msgstr ""
5375
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
5376
- "di ricerca differente."
5377
-
5378
- #: wppa-photo-admin-autosave.php:1324
5379
- msgid "Doit!"
5380
- msgstr ""
5381
-
5382
- #: wppa-photo-admin-autosave.php:1326
5383
- msgid ""
5384
- "Pressing this button will reload the page after executing the selected action"
5385
- msgstr ""
5386
-
5387
- #: wppa-photo-admin-autosave.php:1333 wppa-photo-admin-autosave.php:1452
5388
- #: wppa-settings-autosave.php:7632
5389
- #, fuzzy
5390
- msgid "Preview"
5391
- msgstr "Forrige billede"
5392
-
5393
- #: wppa-photo-admin-autosave.php:1338 wppa-photo-admin-autosave.php:1457
5394
- msgid "Remark"
5395
- msgstr ""
5396
-
5397
- #: wppa-photo-admin-autosave.php:1475
5398
- #, php-format
5399
- msgid "Page %d is empty, try <a href=\"%s\" >page %d</a>."
5400
- msgstr ""
5401
-
5402
- #: wppa-photo-admin-autosave.php:1585
5403
- msgid ""
5404
- "Setting photo sequence order has only effect if the photo order method is "
5405
- "set to <b>Order#</b>"
5406
- msgstr ""
5407
-
5408
- #: wppa-photo-admin-autosave.php:1644
5409
- msgid "Id: "
5410
- msgstr ""
5411
-
5412
- #: wppa-photo-admin-autosave.php:1645 wppa-settings-autosave.php:404
5413
- msgid "Video"
5414
- msgstr ""
5415
-
5416
- #: wppa-photo-admin-autosave.php:1646 wppa-settings-autosave.php:385
5417
- msgid "Audio"
5418
- msgstr ""
5419
-
5420
- #: wppa-photo-admin-autosave.php:1647
5421
- msgid "Ord: "
5422
- msgstr ""
5423
-
5424
- #: wppa-photo-admin-autosave.php:1660
5425
- #, fuzzy
5426
- msgid "The album is empty."
5427
- msgstr "Intet album er defineret."
5428
-
5429
- #: wppa-photo-admin-autosave.php:1760
5430
- msgid "Combined"
5431
- msgstr ""
5432
-
5433
- #: wppa-photo-admin-autosave.php:1797
5434
- msgid "Word"
5435
- msgstr ""
5436
-
5437
- #: wppa-photo-admin-autosave.php:1800
5438
- msgid "Count"
5439
- msgstr ""
5440
-
5441
- #: wppa-potd-widget.php:14
5442
- #, fuzzy
5443
- msgid "WPPA+ Photo Of The Day"
5444
- msgstr "Dagens foto"
5445
-
5446
- #: wppa-potd-widget.php:15
5447
- #, fuzzy
5448
- msgid "Photo Of The Day"
5449
- msgstr "Dagens foto"
5450
-
5451
- #: wppa-potd-widget.php:187
5452
- msgid ""
5453
- "You can set the content and the sizes in this widget in the <b>Photo Albums -"
5454
- "> Sidebar Widget</b> admin page."
5455
- msgstr ""
5456
-
5457
- #: wppa-qr-widget.php:13
5458
- msgid "WPPA+ QR Widget"
5459
- msgstr ""
5460
-
5461
- #: wppa-qr-widget.php:14 wppa-qr-widget.php:32
5462
- msgid "QR Widget"
5463
- msgstr ""
5464
-
5465
- #: wppa-qr-widget.php:95
5466
- msgid ""
5467
- "You can set the sizes and colors in this widget in the <b>Photo Albums -> "
5468
- "Settings</b> admin page."
5469
- msgstr ""
5470
-
5471
- #: wppa-search-widget.php:13
5472
- msgid "WPPA+ Search Photos"
5473
- msgstr ""
5474
-
5475
- #: wppa-search-widget.php:14 wppa-search-widget.php:35
5476
- #: wppa-search-widget.php:65
5477
- #, fuzzy
5478
- msgid "Search Photos"
5479
- msgstr "Se forside fotos"
5480
-
5481
- #: wppa-search-widget.php:79
5482
- msgid "Text:"
5483
- msgstr ""
5484
-
5485
- #: wppa-search-widget.php:83
5486
- msgid ""
5487
- "Enter optional text that will appear before the input box. This may contain "
5488
- "HTML so you can change font size and color."
5489
- msgstr ""
5490
-
5491
- #: wppa-search-widget.php:87
5492
- msgid "Enable rootsearch"
5493
- msgstr ""
5494
-
5495
- #: wppa-search-widget.php:93
5496
- msgid "Enable subsearch"
5497
- msgstr ""
5498
-
5499
- #: wppa-settings-autosave.php:118
5500
- msgid "Saved settings restored"
5501
- msgstr ""
5502
-
5503
- #: wppa-settings-autosave.php:121
5504
- msgid "Unable to restore saved settings"
5505
- msgstr ""
5506
-
5507
- #: wppa-settings-autosave.php:127
5508
- msgid "Reset to default settings"
5509
- msgstr ""
5510
-
5511
- #: wppa-settings-autosave.php:130
5512
- msgid "Unable to set defaults"
5513
- msgstr ""
5514
-
5515
- #: wppa-settings-autosave.php:135
5516
- #, php-format
5517
- msgid "Skinfile %s loaded"
5518
- msgstr ""
5519
-
5520
- #: wppa-settings-autosave.php:146 wppa-settings-autosave.php:168
5521
- #: wppa-settings-autosave.php:189
5522
- #, fuzzy, php-format
5523
- msgid "Upload error %s"
5524
- msgstr "Indsend foto"
5525
-
5526
- #: wppa-settings-autosave.php:151
5527
- #, fuzzy, php-format
5528
- msgid "Uploaded file %s is not a .png file"
5529
- msgstr "Uploaded fil er ikke et billede"
5530
-
5531
- #: wppa-settings-autosave.php:155 wppa-settings-autosave.php:176
5532
- #: wppa-settings-autosave.php:212
5533
- #, fuzzy, php-format
5534
- msgid "Upload of %s done"
5535
- msgstr "Indsend foto"
5536
-
5537
- #: wppa-settings-autosave.php:160 wppa-settings-autosave.php:181
5538
- #: wppa-settings-autosave.php:217
5539
- msgid "No file selected or error on upload"
5540
- msgstr ""
5541
-
5542
- #: wppa-settings-autosave.php:172
5543
- #, fuzzy, php-format
5544
- msgid "Uploaded file %s is not a .ttf file"
5545
- msgstr "Uploaded fil er ikke et billede"
5546
-
5547
- #: wppa-settings-autosave.php:194
5548
- #, fuzzy, php-format
5549
- msgid "Uploaded file %s is not a valid image file"
5550
- msgstr "Uploaded fil er ikke et billede"
5551
-
5552
- #: wppa-settings-autosave.php:273
5553
- #, php-format
5554
- msgid ""
5555
- "%s invalid ratings removed. Please run Table VIII-A5: Rerate to fix the "
5556
- "averages."
5557
- msgstr ""
5558
-
5559
- #: wppa-settings-autosave.php:283
5560
- #, php-format
5561
- msgid "%s obsolete settings removed."
5562
- msgstr ""
5563
-
5564
- #: wppa-settings-autosave.php:292
5565
- #, fuzzy
5566
- msgid "WP Photo Album Plus Settings"
5567
- msgstr "Foto Albums"
5568
-
5569
- #: wppa-settings-autosave.php:293
5570
- msgid "Database revision:"
5571
- msgstr ""
5572
-
5573
- #: wppa-settings-autosave.php:293
5574
- msgid "WP Charset:"
5575
- msgstr ""
5576
-
5577
- #: wppa-settings-autosave.php:296
5578
- msgid "Multisite in singlesite mode."
5579
- msgstr ""
5580
-
5581
- #: wppa-settings-autosave.php:299
5582
- msgid "Multisite enabled."
5583
- msgstr ""
5584
-
5585
- #: wppa-settings-autosave.php:301
5586
- msgid "Blogid ="
5587
- msgstr ""
5588
-
5589
- #: wppa-settings-autosave.php:318
5590
- msgid "Please de-activate plugin <i style=\"font-size:14px;\">"
5591
- msgstr ""
5592
-
5593
- #: wppa-settings-autosave.php:318
5594
- msgid ". </i>This plugin will cause wppa+ to function not properly."
5595
- msgstr ""
5596
-
5597
- #: wppa-settings-autosave.php:328
5598
- msgid "Please note that plugin <i style=\"font-size:14px;\">"
5599
- msgstr ""
5600
-
5601
- #: wppa-settings-autosave.php:328
5602
- msgid "</i> can cause wppa+ to function not properly if it is misconfigured."
5603
- msgstr ""
5604
-
5605
- #: wppa-settings-autosave.php:333 wppa-upload.php:93
5606
- msgid ""
5607
- "There is a serious misconfiguration in your servers PHP config. Function "
5608
- "imagecreatefromjpeg() does not exist. You will encounter problems when "
5609
- "uploading photos and not be able to generate thumbnail images. Ask your "
5610
- "hosting provider to add GD support with a minimal version 1.8."
5611
- msgstr ""
5612
-
5613
- #: wppa-settings-autosave.php:338
5614
- msgid "Rebuilding the Album index needs completion. See Table VIII"
5615
- msgstr ""
5616
-
5617
- #: wppa-settings-autosave.php:339
5618
- msgid "Rebuilding the Photo index needs completion. See Table VIII"
5619
- msgstr ""
5620
-
5621
- #: wppa-settings-autosave.php:341
5622
- msgid "Remove empty albums needs completion. See Table VIII"
5623
- msgstr ""
5624
-
5625
- #: wppa-settings-autosave.php:342
5626
- msgid "Applying new photo description needs completion. See Table VIII"
5627
- msgstr ""
5628
-
5629
- #: wppa-settings-autosave.php:343
5630
- msgid "Appending to photo description needs completion. See Table VIII"
5631
- msgstr ""
5632
-
5633
- #: wppa-settings-autosave.php:344
5634
- msgid "Removing from photo description needs completion. See Table VIII"
5635
- msgstr ""
5636
-
5637
- #: wppa-settings-autosave.php:345
5638
- msgid "Removing file extensions needs completion. See Table VIII"
5639
- msgstr ""
5640
-
5641
- #: wppa-settings-autosave.php:346
5642
- msgid "Regenerating the Thumbnails needs completion. See Table VIII"
5643
- msgstr ""
5644
-
5645
- #: wppa-settings-autosave.php:347
5646
- msgid "Rerating needs completion. See Table VIII"
5647
- msgstr ""
5648
-
5649
- #: wppa-settings-autosave.php:355
5650
- msgid ""
5651
- "A thumbframe width or height should not be smaller than a thumbnail size. "
5652
- "Please correct the corresponding setting(s) in Table I-C"
5653
- msgstr ""
5654
-
5655
- #: wppa-settings-autosave.php:360
5656
- msgid "Show legenda"
5657
- msgstr ""
5658
-
5659
- #: wppa-settings-autosave.php:362
5660
- msgid "Legenda:"
5661
- msgstr ""
5662
-
5663
- #: wppa-settings-autosave.php:363 wppa-settings-autosave.php:365
5664
- #: wppa-settings-autosave.php:1887 wppa-settings-autosave.php:5184
5665
- msgid "Button"
5666
- msgstr ""
5667
-
5668
- #: wppa-settings-autosave.php:363
5669
- msgid "action that causes page reload."
5670
- msgstr ""
5671
-
5672
- #: wppa-settings-autosave.php:365 wppa-settings-autosave.php:9000
5673
- #: wppa-settings-autosave.php:9019
5674
- msgid "Are you sure?"
5675
- msgstr ""
5676
-
5677
- #: wppa-settings-autosave.php:366
5678
- msgid "action that does not cause page reload."
5679
- msgstr ""
5680
-
5681
- #: wppa-settings-autosave.php:368 wppa-settings-autosave.php:7521
5682
- #: wppa-settings-autosave.php:7523 wppa-settings-autosave.php:8703
5683
- #: wppa-settings-autosave.php:8719 wppa-settings-autosave.php:8747
5684
- #: wppa-settings-autosave.php:8771 wppa-settings-autosave.php:8801
5685
- #: wppa-settings-autosave.php:8828 wppa-settings-autosave.php:8854
5686
- #: wppa-settings-autosave.php:8870 wppa-settings-autosave.php:8923
5687
- #: wppa-settings-autosave.php:8953
5688
- msgid "Setting unmodified"
5689
- msgstr ""
5690
-
5691
- #: wppa-settings-autosave.php:370
5692
- msgid "Update in progress"
5693
- msgstr ""
5694
-
5695
- #: wppa-settings-autosave.php:372
5696
- #, fuzzy
5697
- msgid "Setting updated"
5698
- msgstr "Indstillinger"
5699
-
5700
- #: wppa-settings-autosave.php:374
5701
- #, fuzzy
5702
- msgid "Update failed"
5703
- msgstr "Indl&aelig;sning fejlede"
5704
-
5705
- #: wppa-settings-autosave.php:376
5706
- msgid "Hide this"
5707
- msgstr ""
5708
-
5709
- #: wppa-settings-autosave.php:382
5710
- msgid "System"
5711
- msgstr ""
5712
-
5713
- #: wppa-settings-autosave.php:383
5714
- msgid "Access"
5715
- msgstr ""
5716
-
5717
- #: wppa-settings-autosave.php:387
5718
- msgid "Counts"
5719
- msgstr ""
5720
-
5721
- #: wppa-settings-autosave.php:388
5722
- msgid "Covers"
5723
- msgstr ""
5724
-
5725
- #: wppa-settings-autosave.php:389
5726
- msgid "Layout"
5727
- msgstr ""
5728
-
5729
- #: wppa-settings-autosave.php:390 wppa-settings-autosave.php:4413
5730
- msgid "Lightbox"
5731
- msgstr ""
5732
-
5733
- #: wppa-settings-autosave.php:391
5734
- #, fuzzy
5735
- msgid "Links"
5736
- msgstr "Link til"
5737
-
5738
- #: wppa-settings-autosave.php:392
5739
- msgid "Metadata"
5740
- msgstr ""
5741
-
5742
- #: wppa-settings-autosave.php:393
5743
- msgid "Navigation"
5744
- msgstr ""
5745
-
5746
- #: wppa-settings-autosave.php:394 wppa-settings-autosave.php:1461
5747
- #: wppa-settings-autosave.php:7868
5748
- #, fuzzy
5749
- msgid "Page"
5750
- msgstr "N&aelig;ste&nbsp;side"
5751
-
5752
- #: wppa-settings-autosave.php:395 wppa-settings-autosave.php:7664
5753
- #: wppa-settings-autosave.php:7709
5754
- #, fuzzy
5755
- msgid "Rating"
5756
- msgstr "Bed&oslash;mmelse: %s"
5757
-
5758
- #: wppa-settings-autosave.php:397
5759
- msgid "Sizes"
5760
- msgstr ""
5761
-
5762
- #: wppa-settings-autosave.php:398
5763
- #, fuzzy
5764
- msgid "Slideshows"
5765
- msgstr "Slideshow"
5766
-
5767
- #: wppa-settings-autosave.php:399
5768
- msgid "Social Media"
5769
- msgstr ""
5770
-
5771
- #: wppa-settings-autosave.php:401
5772
- #, fuzzy
5773
- msgid "Uploads"
5774
- msgstr "Indsend"
5775
-
5776
- #: wppa-settings-autosave.php:402
5777
- msgid "Widgets"
5778
- msgstr ""
5779
-
5780
- #: wppa-settings-autosave.php:403 wppa-settings-autosave.php:7502
5781
- msgid "Watermark"
5782
- msgstr ""
5783
-
5784
- #: wppa-settings-autosave.php:411
5785
- msgid "Click on the banner of a (sub)table to open/close it, or"
5786
- msgstr ""
5787
-
5788
- #: wppa-settings-autosave.php:413
5789
- msgid "Show settings related to:"
5790
- msgstr ""
5791
-
5792
- #: wppa-settings-autosave.php:419
5793
- msgid "and ( optionally ) to:"
5794
- msgstr ""
5795
-
5796
- #: wppa-settings-autosave.php:433
5797
- msgid "Quick setup"
5798
- msgstr ""
5799
-
5800
- #: wppa-settings-autosave.php:435
5801
- msgid "Do a quick initial setup"
5802
- msgstr ""
5803
-
5804
- #: wppa-settings-autosave.php:436
5805
- msgid "Close quick setup"
5806
- msgstr ""
5807
-
5808
- #: wppa-settings-autosave.php:443
5809
- msgid "Table O:"
5810
- msgstr ""
5811
-
5812
- #: wppa-settings-autosave.php:443
5813
- msgid "Quick Setup:"
5814
- msgstr ""
5815
-
5816
- #: wppa-settings-autosave.php:444
5817
- msgid "This table enables you to quickly do an inital setup."
5818
- msgstr ""
5819
-
5820
- #: wppa-settings-autosave.php:454 wppa-settings-autosave.php:616
5821
- #: wppa-settings-autosave.php:638 wppa-settings-autosave.php:1338
5822
- #: wppa-settings-autosave.php:1359 wppa-settings-autosave.php:2733
5823
- #: wppa-settings-autosave.php:3089 wppa-settings-autosave.php:4240
5824
- #: wppa-settings-autosave.php:5996 wppa-settings-autosave.php:6622
5825
- #: wppa-settings-autosave.php:8294
5826
- #, fuzzy
5827
- msgid "Setting"
5828
- msgstr "Indstillinger"
5829
-
5830
- #: wppa-settings-autosave.php:455 wppa-settings-autosave.php:617
5831
- #: wppa-settings-autosave.php:639 wppa-settings-autosave.php:1339
5832
- #: wppa-settings-autosave.php:1360 wppa-settings-autosave.php:2734
5833
- #: wppa-settings-autosave.php:2758 wppa-settings-autosave.php:3069
5834
- #: wppa-settings-autosave.php:3090 wppa-settings-autosave.php:4241
5835
- #: wppa-settings-autosave.php:4265 wppa-settings-autosave.php:4441
5836
- #: wppa-settings-autosave.php:4465 wppa-settings-autosave.php:5492
5837
- #: wppa-settings-autosave.php:5998 wppa-settings-autosave.php:6022
5838
- #: wppa-settings-autosave.php:6602 wppa-settings-autosave.php:6623
5839
- #: wppa-settings-autosave.php:8295 wppa-settings-autosave.php:8317
5840
- #: wppa-settings-autosave.php:8357 wppa-settings-autosave.php:8379
5841
- #: wppa-settings-autosave.php:8425
5842
- msgid "Help"
5843
- msgstr ""
5844
-
5845
- #: wppa-settings-autosave.php:466
5846
- msgid ""
5847
- "To quickly setup WPPA+ please answer the following questions. You can alway "
5848
- "change any setting later. <span style=\"color:#700\">Click on me!</span>"
5849
- msgstr ""
5850
-
5851
- #: wppa-settings-autosave.php:468
5852
- msgid "Is your theme <i>responsive</i>?"
5853
- msgstr ""
5854
-
5855
- #: wppa-settings-autosave.php:469
5856
- msgid ""
5857
- "Responsive themes have a layout that varies with the size of the browser "
5858
- "window."
5859
- msgstr ""
5860
-
5861
- #: wppa-settings-autosave.php:470
5862
- msgid ""
5863
- "WPPA+ needs to know this to automaticly adept the width of the display to "
5864
- "the available width on the page."
5865
- msgstr ""
5866
-
5867
- #: wppa-settings-autosave.php:477
5868
- msgid "Do you want to downsize photos during upload?"
5869
- msgstr ""
5870
-
5871
- #: wppa-settings-autosave.php:478
5872
- msgid ""
5873
- "Downsizing photos make them load faster to the visitor, without loosing "
5874
- "display quality"
5875
- msgstr ""
5876
-
5877
- #: wppa-settings-autosave.php:479
5878
- msgid ""
5879
- "If you answer yes, the photos will be downsized to max 1024 x 768 pixels. "
5880
- "You can change this later, if you like"
5881
- msgstr ""
5882
-
5883
- #: wppa-settings-autosave.php:486
5884
- #, fuzzy
5885
- msgid "Do you want to save the original photofiles?"
5886
- msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
5887
-
5888
- #: wppa-settings-autosave.php:487
5889
- msgid "This will require considerable disk space on the server."
5890
- msgstr ""
5891
-
5892
- #: wppa-settings-autosave.php:488
5893
- msgid ""
5894
- "If you answer yes, you will be able to remove watermarks you applied with "
5895
- "wppa+ in a later stage, redo downsizing to a larger size afterwards, and "
5896
- "supply fullsize images for download."
5897
- msgstr ""
5898
-
5899
- #: wppa-settings-autosave.php:495
5900
- #, fuzzy
5901
- msgid "May visitors upload photos?"
5902
- msgstr "Bruger %s indsendte foto %s ind i album %s"
5903
-
5904
- #: wppa-settings-autosave.php:496
5905
- msgid ""
5906
- "It is safe to do so, but i will have to do some settings to keep it safe!"
5907
- msgstr ""
5908
-
5909
- #: wppa-settings-autosave.php:497
5910
- msgid ""
5911
- "If you answer yes, i will assume you want to enable logged in users to "
5912
- "upload photos at the front-end of the website and allow them to edit their "
5913
- "photos name and descriptions."
5914
- msgstr ""
5915
-
5916
- #: wppa-settings-autosave.php:498
5917
- msgid ""
5918
- "The photos will be hold for moderation, the admin will get notified by email."
5919
- msgstr ""
5920
-
5921
- #: wppa-settings-autosave.php:499
5922
- msgid ""
5923
- "Each user will get his own album to upload to. These settings can be changed "
5924
- "later."
5925
- msgstr ""
5926
-
5927
- #: wppa-settings-autosave.php:506
5928
- msgid "Do you want the rating system active?"
5929
- msgstr ""
5930
-
5931
- #: wppa-settings-autosave.php:507
5932
- msgid "Enable the rating system and show the votes in the slideshow."
5933
- msgstr ""
5934
-
5935
- #: wppa-settings-autosave.php:508
5936
- msgid "You can configure the details of the rating system later"
5937
- msgstr ""
5938
-
5939
- #: wppa-settings-autosave.php:515
5940
- msgid "Do you want the comment system active?"
5941
- msgstr ""
5942
-
5943
- #: wppa-settings-autosave.php:516
5944
- msgid "Enable the comment system and show the comments in the slideshow."
5945
- msgstr ""
5946
-
5947
- #: wppa-settings-autosave.php:517
5948
- msgid "You can configure the details of the comment system later"
5949
- msgstr ""
5950
-
5951
- #: wppa-settings-autosave.php:524
5952
- msgid "Do you want the social media share buttons displayed?"
5953
- msgstr ""
5954
-
5955
- #: wppa-settings-autosave.php:525
5956
- msgid "Display the social media buttons in the slideshow"
5957
- msgstr ""
5958
-
5959
- #: wppa-settings-autosave.php:526
5960
- msgid ""
5961
- "These buttons share the specific photo rather than the page where it is "
5962
- "displayed on"
5963
- msgstr ""
5964
-
5965
- #: wppa-settings-autosave.php:533
5966
- msgid "Are you going to use IPTC data?"
5967
- msgstr ""
5968
-
5969
- #: wppa-settings-autosave.php:534
5970
- msgid ""
5971
- "IPTC data is information you may have added in a photo manipulation program."
5972
- msgstr ""
5973
-
5974
- #: wppa-settings-autosave.php:535 wppa-settings-autosave.php:544
5975
- msgid ""
5976
- "The information can be displayed in slideshows and in photo descriptions."
5977
- msgstr ""
5978
-
5979
- #: wppa-settings-autosave.php:542
5980
- msgid "Are you going to use EXIF data?"
5981
- msgstr ""
5982
-
5983
- #: wppa-settings-autosave.php:543
5984
- msgid ""
5985
- "EXIF data is information from the camera like model no, focal distance and "
5986
- "aperture used."
5987
- msgstr ""
5988
-
5989
- #: wppa-settings-autosave.php:551
5990
- msgid "Are you going to use GPX data?"
5991
- msgstr ""
5992
-
5993
- #: wppa-settings-autosave.php:552
5994
- msgid ""
5995
- "Some cameras and mobile devices save the geographic location where the photo "
5996
- "is taken."
5997
- msgstr ""
5998
-
5999
- #: wppa-settings-autosave.php:553
6000
- msgid "A Google map can be displayed in slideshows."
6001
- msgstr ""
6002
-
6003
- #: wppa-settings-autosave.php:560
6004
- msgid "Are you going to use Fotomoto?"
6005
- msgstr ""
6006
-
6007
- #: wppa-settings-autosave.php:561
6008
- msgid ""
6009
- "<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> is an "
6010
- "on-line print service."
6011
- msgstr ""
6012
-
6013
- #: wppa-settings-autosave.php:562
6014
- msgid "If you answer Yes, you will have to open an account on Fotomoto."
6015
- msgstr ""
6016
-
6017
- #: wppa-settings-autosave.php:569
6018
- msgid "Are you going to add videofiles?"
6019
- msgstr ""
6020
-
6021
- #: wppa-settings-autosave.php:570
6022
- msgid "You can mix videos and photos in any album."
6023
- msgstr ""
6024
-
6025
- #: wppa-settings-autosave.php:571 wppa-settings-autosave.php:580
6026
- #: wppa-settings-autosave.php:589
6027
- msgid "You can configure the details later"
6028
- msgstr ""
6029
-
6030
- #: wppa-settings-autosave.php:578
6031
- msgid "Are you going to add audiofiles?"
6032
- msgstr ""
6033
-
6034
- #: wppa-settings-autosave.php:579
6035
- msgid "You can add audio to photos in any album."
6036
- msgstr ""
6037
-
6038
- #: wppa-settings-autosave.php:587
6039
- #, fuzzy
6040
- msgid "Are you going to upload 3D stereo photos?"
6041
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
6042
-
6043
- #: wppa-settings-autosave.php:588
6044
- msgid "You can add l-r and r-l stereo photo pairs."
6045
- msgstr ""
6046
-
6047
- #: wppa-settings-autosave.php:596
6048
- msgid "Done?"
6049
- msgstr ""
6050
-
6051
- #: wppa-settings-autosave.php:597
6052
- msgid "If you are ready answering these questions, select <b>yes</b>"
6053
- msgstr ""
6054
-
6055
- #: wppa-settings-autosave.php:598
6056
- msgid ""
6057
- "You can change any setting later, and be more specific and add a lot of "
6058
- "settings. For now it is enough, go create albums and upload photos!"
6059
- msgstr ""
6060
-
6061
- #: wppa-settings-autosave.php:602
6062
- msgid ""
6063
- "Thank you!. The most important settings are done now. You can refine your "
6064
- "settings, the behaviour and appearance of WPPA+ in the Tables below."
6065
- msgstr ""
6066
-
6067
- #: wppa-settings-autosave.php:627
6068
- msgid "Table I:"
6069
- msgstr ""
6070
-
6071
- #: wppa-settings-autosave.php:627
6072
- msgid "Sizes:"
6073
- msgstr ""
6074
-
6075
- #: wppa-settings-autosave.php:628
6076
- msgid ""
6077
- "This table describes all the sizes and size options (except fontsizes) for "
6078
- "the generation and display of the WPPA+ elements."
6079
- msgstr ""
6080
-
6081
- #: wppa-settings-autosave.php:646
6082
- msgid "WPPA+ global system related size settings"
6083
- msgstr ""
6084
-
6085
- #: wppa-settings-autosave.php:648
6086
- msgid "Column Width"
6087
- msgstr ""
6088
-
6089
- #: wppa-settings-autosave.php:649
6090
- msgid "The width of the main column in your theme's display area."
6091
- msgstr ""
6092
-
6093
- #: wppa-settings-autosave.php:650
6094
- msgid "Enter the width of the main column in your theme's display area."
6095
- msgstr ""
6096
-
6097
- #: wppa-settings-autosave.php:651
6098
- msgid ""
6099
- "You should set this value correctly to make sure the fullsize images are "
6100
- "properly aligned horizontally."
6101
- msgstr ""
6102
-
6103
- #: wppa-settings-autosave.php:652
6104
- msgid ""
6105
- "You may enter 'auto' for use in themes that have a floating content column."
6106
- msgstr ""
6107
-
6108
- #: wppa-settings-autosave.php:653
6109
- msgid "The use of 'auto' is required for responsive themes."
6110
- msgstr ""
6111
-
6112
- #: wppa-settings-autosave.php:656 wppa-settings-autosave.php:665
6113
- #: wppa-settings-autosave.php:777 wppa-settings-autosave.php:920
6114
- #: wppa-settings-autosave.php:931
6115
- msgid "pixels wide"
6116
- msgstr ""
6117
-
6118
- #: wppa-settings-autosave.php:661
6119
- msgid "Initial Width"
6120
- msgstr ""
6121
-
6122
- #: wppa-settings-autosave.php:662
6123
- msgid "The most often displayed colun width in responsive theme"
6124
- msgstr ""
6125
-
6126
- #: wppa-settings-autosave.php:663
6127
- msgid ""
6128
- "Change this value only if your responsive theme shows initially a wrong "
6129
- "column width."
6130
- msgstr ""
6131
-
6132
- #: wppa-settings-autosave.php:670
6133
- msgid "Resize on Upload"
6134
- msgstr ""
6135
-
6136
- #: wppa-settings-autosave.php:671
6137
- msgid "Indicate if the photos should be resized during upload."
6138
- msgstr ""
6139
-
6140
- #: wppa-settings-autosave.php:672
6141
- msgid ""
6142
- "If you check this item, the size of the photos will be reduced to the "
6143
- "dimension specified in the next item during the upload/import process."
6144
- msgstr ""
6145
-
6146
- #: wppa-settings-autosave.php:673
6147
- msgid "The photos will never be stretched during upload if they are smaller."
6148
- msgstr ""
6149
-
6150
- #: wppa-settings-autosave.php:681
6151
- msgid "Resize to"
6152
- msgstr ""
6153
-
6154
- #: wppa-settings-autosave.php:682
6155
- msgid "Resize photos to fit within a given area."
6156
- msgstr ""
6157
-
6158
- #: wppa-settings-autosave.php:683
6159
- msgid "Specify the screensize for the unscaled photos."
6160
- msgstr ""
6161
-
6162
- #: wppa-settings-autosave.php:684
6163
- msgid ""
6164
- "The use of a non-default value is particularly usefull when you make use of "
6165
- "lightbox functionality."
6166
- msgstr ""
6167
-
6168
- #: wppa-settings-autosave.php:686 wppa-settings-autosave.php:708
6169
- #: wppa-settings-autosave.php:719 wppa-settings-autosave.php:728
6170
- #: wppa-settings-autosave.php:809 wppa-settings-autosave.php:832
6171
- #: wppa-settings-autosave.php:839 wppa-settings-autosave.php:860
6172
- #: wppa-settings-autosave.php:870 wppa-settings-autosave.php:964
6173
- #: wppa-settings-autosave.php:998 wppa-settings-autosave.php:1018
6174
- #: wppa-settings-autosave.php:1027 wppa-settings-autosave.php:1038
6175
- #: wppa-settings-autosave.php:1050 wppa-settings-autosave.php:1060
6176
- #: wppa-settings-autosave.php:1070 wppa-settings-autosave.php:1123
6177
- #: wppa-settings-autosave.php:1132 wppa-settings-autosave.php:1143
6178
- #: wppa-settings-autosave.php:1163 wppa-settings-autosave.php:1183
6179
- #: wppa-settings-autosave.php:1203 wppa-settings-autosave.php:1223
6180
- #: wppa-settings-autosave.php:1243 wppa-settings-autosave.php:1263
6181
- #: wppa-settings-autosave.php:1272 wppa-settings-autosave.php:1281
6182
- #: wppa-settings-autosave.php:1316 wppa-settings-autosave.php:1325
6183
- #: wppa-settings-autosave.php:2677 wppa-settings-autosave.php:4286
6184
- #: wppa-settings-autosave.php:4303 wppa-settings-autosave.php:4320
6185
- #: wppa-settings-autosave.php:4337 wppa-settings-autosave.php:4354
6186
- #: wppa-settings-autosave.php:4371 wppa-settings-autosave.php:4388
6187
- #: wppa-settings-autosave.php:4405 wppa-settings-autosave.php:4422
6188
- #: wppa-settings-autosave.php:5709 wppa-settings-autosave.php:8026
6189
- #: wppa-settings-autosave.php:8221 wppa-settings-autosave.php:8263
6190
- #: wppa-settings-autosave.php:8281
6191
- msgid "pixels"
6192
- msgstr ""
6193
-
6194
- #: wppa-settings-autosave.php:687
6195
- msgid "Fit within rectangle as set in Table I-B1,2"
6196
- msgstr ""
6197
-
6198
- #: wppa-settings-autosave.php:694
6199
- #, fuzzy
6200
- msgid "Photocount threshold"
6201
- msgstr "Dagens foto"
6202
-
6203
- #: wppa-settings-autosave.php:695
6204
- msgid "Number of photos in an album must exceed."
6205
- msgstr ""
6206
-
6207
- #: wppa-settings-autosave.php:696
6208
- msgid ""
6209
- "Photos do not show up in the album unless there are more than this number of "
6210
- "photos in the album. This allows you to have cover photos on an album that "
6211
- "contains only sub albums without seeing them in the list of sub albums. "
6212
- "Usually set to 0 (always show) or 1 (for one cover photo)."
6213
- msgstr ""
6214
-
6215
- #: wppa-settings-autosave.php:703
6216
- msgid "Border thickness"
6217
- msgstr ""
6218
-
6219
- #: wppa-settings-autosave.php:704
6220
- msgid "Thickness of wppa+ box borders."
6221
- msgstr ""
6222
-
6223
- #: wppa-settings-autosave.php:705
6224
- msgid ""
6225
- "Enter the thickness for the border of the WPPA+ boxes. A number of 0 means: "
6226
- "no border."
6227
- msgstr ""
6228
-
6229
- #: wppa-settings-autosave.php:706 wppa-settings-autosave.php:716
6230
- msgid "WPPA+ boxes are: the navigation bars and the filmstrip."
6231
- msgstr ""
6232
-
6233
- #: wppa-settings-autosave.php:714
6234
- msgid "Radius of wppa+ box borders."
6235
- msgstr ""
6236
-
6237
- #: wppa-settings-autosave.php:715
6238
- msgid ""
6239
- "Enter the corner radius for the border of the WPPA+ boxes. A number of 0 "
6240
- "means: no rounded corners."
6241
- msgstr ""
6242
-
6243
- #: wppa-settings-autosave.php:717
6244
- msgid "Note that rounded corners are only supported by modern browsers."
6245
- msgstr ""
6246
-
6247
- #: wppa-settings-autosave.php:725
6248
- msgid "Distance between wppa+ boxes."
6249
- msgstr ""
6250
-
6251
- #: wppa-settings-autosave.php:733
6252
- #, fuzzy
6253
- msgid "Related count"
6254
- msgstr "fotos"
6255
-
6256
- #: wppa-settings-autosave.php:734
6257
- msgid "The default maximum number of related photos to find."
6258
- msgstr ""
6259
-
6260
- #: wppa-settings-autosave.php:735
6261
- msgid ""
6262
- "When using shortcodes like [wppa type=\"album\" album=\"#related,desc,23\"][/"
6263
- "wppa], the maximum number is 23. Omitting the number gives the maximum of "
6264
- "this setting."
6265
- msgstr ""
6266
-
6267
- #: wppa-settings-autosave.php:743
6268
- msgid "The maximum number of pagelinks to be displayed."
6269
- msgstr ""
6270
-
6271
- #: wppa-settings-autosave.php:746
6272
- msgid "pages"
6273
- msgstr ""
6274
-
6275
- #: wppa-settings-autosave.php:751
6276
- msgid "Max file name length"
6277
- msgstr ""
6278
-
6279
- #: wppa-settings-autosave.php:752
6280
- msgid "The max length of a photo file name excluding the extension."
6281
- msgstr ""
6282
-
6283
- #: wppa-settings-autosave.php:753 wppa-settings-autosave.php:762
6284
- msgid "A setting of 0 means: unlimited."
6285
- msgstr ""
6286
-
6287
- #: wppa-settings-autosave.php:755 wppa-settings-autosave.php:764
6288
- msgid "chars"
6289
- msgstr ""
6290
-
6291
- #: wppa-settings-autosave.php:760
6292
- msgid "Max photo name length"
6293
- msgstr ""
6294
-
6295
- #: wppa-settings-autosave.php:761
6296
- msgid "The max length of a photo name."
6297
- msgstr ""
6298
-
6299
- #: wppa-settings-autosave.php:769
6300
- msgid "Slideshow related size settings"
6301
- msgstr ""
6302
-
6303
- #: wppa-settings-autosave.php:771
6304
- msgid "Maximum Width"
6305
- msgstr ""
6306
-
6307
- #: wppa-settings-autosave.php:772
6308
- msgid "The maximum width photos will be displayed in slideshows."
6309
- msgstr ""
6310
-
6311
- #: wppa-settings-autosave.php:773 wppa-settings-autosave.php:784
6312
- msgid ""
6313
- "Enter the largest size in pixels as how you want your photos to be displayed."
6314
- msgstr ""
6315
-
6316
- #: wppa-settings-autosave.php:774
6317
- msgid ""
6318
- "This is usually the same as the Column Width (Table I-A1), but it may differ."
6319
- msgstr ""
6320
-
6321
- #: wppa-settings-autosave.php:782
6322
- msgid "Maximum Height"
6323
- msgstr ""
6324
-
6325
- #: wppa-settings-autosave.php:783
6326
- msgid "The maximum height photos will be displayed in slideshows."
6327
- msgstr ""
6328
-
6329
- #: wppa-settings-autosave.php:785
6330
- msgid ""
6331
- "This setting defines the height of the space reserved for photos in "
6332
- "slideshows."
6333
- msgstr ""
6334
-
6335
- #: wppa-settings-autosave.php:786
6336
- #, php-format
6337
- msgid ""
6338
- "If you change the width of a display by the %%size= command, this value "
6339
- "changes proportionally to match the aspect ratio as defined by this and the "
6340
- "previous setting."
6341
- msgstr ""
6342
-
6343
- #: wppa-settings-autosave.php:788 wppa-settings-autosave.php:942
6344
- #: wppa-settings-autosave.php:953
6345
- #, fuzzy
6346
- msgid "pixels high"
6347
- msgstr "meget h&oslash;j"
6348
-
6349
- #: wppa-settings-autosave.php:793
6350
- msgid "Stretch to fit"
6351
- msgstr ""
6352
-
6353
- #: wppa-settings-autosave.php:794
6354
- msgid "Stretch photos that are too small."
6355
- msgstr ""
6356
-
6357
- #: wppa-settings-autosave.php:795
6358
- msgid ""
6359
- "Images will be stretched to the Maximum Size at display time if they are "
6360
- "smaller. Leaving unchecked is recommended. It is better to upload photos "
6361
- "that fit well the sizes you use!"
6362
- msgstr ""
6363
-
6364
- #: wppa-settings-autosave.php:802
6365
- #, fuzzy
6366
- msgid "Slideshow borderwidth"
6367
- msgstr "Slideshow"
6368
-
6369
- #: wppa-settings-autosave.php:803
6370
- msgid "The width of the border around slideshow images."
6371
- msgstr ""
6372
-
6373
- #: wppa-settings-autosave.php:804
6374
- msgid ""
6375
- "The border is made by the image background being larger than the image "
6376
- "itsself (padding)."
6377
- msgstr ""
6378
-
6379
- #: wppa-settings-autosave.php:805
6380
- msgid ""
6381
- "Additionally there may be a one pixel outline of a different color. See "
6382
- "Table III-A2."
6383
- msgstr ""
6384
-
6385
- #: wppa-settings-autosave.php:806
6386
- msgid "The number you enter here is exclusive the one pixel outline."
6387
- msgstr ""
6388
-
6389
- #: wppa-settings-autosave.php:807
6390
- msgid "If you leave this entry empty, there will be no outline either."
6391
- msgstr ""
6392
-
6393
- #: wppa-settings-autosave.php:814
6394
- msgid "Numbar Max"
6395
- msgstr ""
6396
-
6397
- #: wppa-settings-autosave.php:815
6398
- msgid "Maximum numbers to display."
6399
- msgstr ""
6400
-
6401
- #: wppa-settings-autosave.php:816
6402
- msgid ""
6403
- "In order to attemt to fit on one line, the numbers will be replaced by dots "
6404
- "- except the current - when there are more than this number of photos in a "
6405
- "slideshow."
6406
- msgstr ""
6407
-
6408
- #: wppa-settings-autosave.php:818
6409
- msgid "numbers"
6410
- msgstr ""
6411
-
6412
- #: wppa-settings-autosave.php:823
6413
- #, fuzzy
6414
- msgid "Share button size"
6415
- msgstr "Condividi su Twitter"
6416
-
6417
- #: wppa-settings-autosave.php:824
6418
- msgid "The size of the social media icons in the Share box"
6419
- msgstr ""
6420
-
6421
- #: wppa-settings-autosave.php:834
6422
- msgid "Mini Treshold"
6423
- msgstr ""
6424
-
6425
- #: wppa-settings-autosave.php:835
6426
- msgid "Show mini text at slideshow smaller then."
6427
- msgstr ""
6428
-
6429
- #: wppa-settings-autosave.php:836
6430
- msgid ""
6431
- "Display Next and Prev. as opposed to Next photo and Previous photo when the "
6432
- "cotainer is smaller than this size."
6433
- msgstr ""
6434
-
6435
- #: wppa-settings-autosave.php:837
6436
- msgid "Special use in responsive themes."
6437
- msgstr ""
6438
-
6439
- #: wppa-settings-autosave.php:845
6440
- msgid "The maximum number of slides in a certain view. 0 means no pagination"
6441
- msgstr ""
6442
-
6443
- #: wppa-settings-autosave.php:848
6444
- #, fuzzy
6445
- msgid "slides"
6446
- msgstr "Slideshow"
6447
-
6448
- #: wppa-settings-autosave.php:853
6449
- msgid "Thumbnail photos related size settings"
6450
- msgstr ""
6451
-
6452
- #: wppa-settings-autosave.php:855
6453
- #, fuzzy
6454
- msgid "Thumbnail Size"
6455
- msgstr "Foto Top Ti"
6456
-
6457
- #: wppa-settings-autosave.php:856
6458
- #, fuzzy
6459
- msgid "The size of the thumbnail images."
6460
- msgstr "Se"
6461
-
6462
- #: wppa-settings-autosave.php:857 wppa-settings-autosave.php:867
6463
- #: wppa-settings-autosave.php:1057 wppa-settings-autosave.php:1067
6464
- msgid "This size applies to the width or height, whichever is the largest."
6465
- msgstr ""
6466
-
6467
- #: wppa-settings-autosave.php:858 wppa-settings-autosave.php:868
6468
- msgid ""
6469
- "Changing the thumbnail size may result in all thumbnails being regenerated. "
6470
- "this may take a while."
6471
- msgstr ""
6472
-
6473
- #: wppa-settings-autosave.php:865
6474
- #, fuzzy
6475
- msgid "Thumbnail Size Alt"
6476
- msgstr "Foto Top Ti"
6477
-
6478
- #: wppa-settings-autosave.php:866
6479
- msgid "The alternative size of the thumbnail images."
6480
- msgstr ""
6481
-
6482
- #: wppa-settings-autosave.php:875
6483
- #, fuzzy
6484
- msgid "Thumbnail Aspect"
6485
- msgstr "Miniatura"
6486
-
6487
- #: wppa-settings-autosave.php:876
6488
- msgid "Aspect ration of thumbnail image"
6489
- msgstr ""
6490
-
6491
- #: wppa-settings-autosave.php:880
6492
- #, fuzzy
6493
- msgid "--- same as fullsize ---"
6494
- msgstr "--- ingen ---"
6495
-
6496
- #: wppa-settings-autosave.php:881
6497
- #, fuzzy
6498
- msgid "--- square clipped ---"
6499
- msgstr "--- vises ikke ---"
6500
-
6501
- #: wppa-settings-autosave.php:882
6502
- msgid "4:5 landscape clipped"
6503
- msgstr ""
6504
-
6505
- #: wppa-settings-autosave.php:883
6506
- msgid "3:4 landscape clipped"
6507
- msgstr ""
6508
-
6509
- #: wppa-settings-autosave.php:884
6510
- msgid "2:3 landscape clipped"
6511
- msgstr ""
6512
-
6513
- #: wppa-settings-autosave.php:885
6514
- msgid "9:16 landscape clipped"
6515
- msgstr ""
6516
-
6517
- #: wppa-settings-autosave.php:886
6518
- msgid "1:2 landscape clipped"
6519
- msgstr ""
6520
-
6521
- #: wppa-settings-autosave.php:887
6522
- #, fuzzy
6523
- msgid "--- square padded ---"
6524
- msgstr "--- vis ikke ---"
6525
-
6526
- #: wppa-settings-autosave.php:888
6527
- msgid "4:5 landscape padded"
6528
- msgstr ""
6529
-
6530
- #: wppa-settings-autosave.php:889
6531
- msgid "3:4 landscape padded"
6532
- msgstr ""
6533
-
6534
- #: wppa-settings-autosave.php:890
6535
- msgid "2:3 landscape padded"
6536
- msgstr ""
6537
-
6538
- #: wppa-settings-autosave.php:891
6539
- msgid "9:16 landscape padded"
6540
- msgstr ""
6541
-
6542
- #: wppa-settings-autosave.php:892
6543
- msgid "1:2 landscape padded"
6544
- msgstr ""
6545
-
6546
- #: wppa-settings-autosave.php:914
6547
- msgid "Thumbframe width"
6548
- msgstr ""
6549
-
6550
- #: wppa-settings-autosave.php:915
6551
- #, fuzzy
6552
- msgid "The width of the thumbnail frame."
6553
- msgstr "Se"
6554
-
6555
- #: wppa-settings-autosave.php:916 wppa-settings-autosave.php:927
6556
- msgid "Set the width of the thumbnail frame."
6557
- msgstr ""
6558
-
6559
- #: wppa-settings-autosave.php:917 wppa-settings-autosave.php:928
6560
- #: wppa-settings-autosave.php:939 wppa-settings-autosave.php:950
6561
- #: wppa-settings-autosave.php:961
6562
- msgid "Set width, height and spacing for the thumbnail frames."
6563
- msgstr ""
6564
-
6565
- #: wppa-settings-autosave.php:918 wppa-settings-autosave.php:929
6566
- #: wppa-settings-autosave.php:940 wppa-settings-autosave.php:951
6567
- #: wppa-settings-autosave.php:962
6568
- msgid ""
6569
- "These sizes should be large enough for a thumbnail image and - optionally - "
6570
- "the text under it."
6571
- msgstr ""
6572
-
6573
- #: wppa-settings-autosave.php:925
6574
- msgid "Thumbframe width Alt"
6575
- msgstr ""
6576
-
6577
- #: wppa-settings-autosave.php:926
6578
- msgid "The width of the alternative thumbnail frame."
6579
- msgstr ""
6580
-
6581
- #: wppa-settings-autosave.php:936
6582
- msgid "Thumbframe height"
6583
- msgstr ""
6584
-
6585
- #: wppa-settings-autosave.php:937
6586
- msgid "The height of the thumbnail frame."
6587
- msgstr ""
6588
-
6589
- #: wppa-settings-autosave.php:938 wppa-settings-autosave.php:949
6590
- msgid "Set the height of the thumbnail frame."
6591
- msgstr ""
6592
-
6593
- #: wppa-settings-autosave.php:947
6594
- msgid "Thumbframe height Alt"
6595
- msgstr ""
6596
-
6597
- #: wppa-settings-autosave.php:948
6598
- msgid "The height of the alternative thumbnail frame."
6599
- msgstr ""
6600
-
6601
- #: wppa-settings-autosave.php:958
6602
- #, fuzzy
6603
- msgid "Thumbnail spacing"
6604
- msgstr "Miniatura"
6605
-
6606
- #: wppa-settings-autosave.php:959
6607
- msgid "The spacing between adjacent thumbnail frames."
6608
- msgstr ""
6609
-
6610
- #: wppa-settings-autosave.php:960
6611
- msgid "Set the minimal spacing between the adjacent thumbnail frames"
6612
- msgstr ""
6613
-
6614
- #: wppa-settings-autosave.php:969
6615
- msgid "Auto spacing"
6616
- msgstr ""
6617
-
6618
- #: wppa-settings-autosave.php:970
6619
- msgid "Space the thumbnail frames automatic."
6620
- msgstr ""
6621
-
6622
- #: wppa-settings-autosave.php:971
6623
- msgid ""
6624
- "If you check this box, the thumbnail images will be evenly distributed over "
6625
- "the available width."
6626
- msgstr ""
6627
-
6628
- #: wppa-settings-autosave.php:972
6629
- msgid ""
6630
- "In this case, the thumbnail spacing value (setting I-9) will be regarded as "
6631
- "a minimum value."
6632
- msgstr ""
6633
-
6634
- #: wppa-settings-autosave.php:979 wppa-settings-autosave.php:1086
6635
- msgid "Page size"
6636
- msgstr ""
6637
-
6638
- #: wppa-settings-autosave.php:980
6639
- msgid "Max number of thumbnails per page."
6640
- msgstr ""
6641
-
6642
- #: wppa-settings-autosave.php:981
6643
- msgid ""
6644
- "Enter the maximum number of thumbnail images per page. A value of 0 "
6645
- "indicates no pagination."
6646
- msgstr ""
6647
-
6648
- #: wppa-settings-autosave.php:983 wppa-settings-autosave.php:5255
6649
- #: wppa-settings-autosave.php:5286 wppa-settings-autosave.php:5381
6650
- #, fuzzy
6651
- msgid "thumbnails"
6652
- msgstr "Miniatura"
6653
-
6654
- #: wppa-settings-autosave.php:989
6655
- msgid "The size of the thumbnail popup images."
6656
- msgstr ""
6657
-
6658
- #: wppa-settings-autosave.php:990
6659
- msgid ""
6660
- "Enter the size of the popup images. This size should be larger than the "
6661
- "thumbnail size."
6662
- msgstr ""
6663
-
6664
- #: wppa-settings-autosave.php:991
6665
- msgid "This size should also be at least the cover image size."
6666
- msgstr ""
6667
-
6668
- #: wppa-settings-autosave.php:992
6669
- msgid ""
6670
- "Changing the popup size may result in all thumbnails being regenerated. this "
6671
- "may take a while."
6672
- msgstr ""
6673
-
6674
- #: wppa-settings-autosave.php:993
6675
- msgid ""
6676
- "Although this setting has only visual effect if \"Thumb popup\" (Table IV-"
6677
- "C8) is checked,"
6678
- msgstr ""
6679
-
6680
- #: wppa-settings-autosave.php:994
6681
- msgid ""
6682
- "the value must be right as it is the physical size of the thumbnail and "
6683
- "coverphoto images."
6684
- msgstr ""
6685
-
6686
- #: wppa-settings-autosave.php:1001
6687
- msgid "Use thumbs if fit"
6688
- msgstr ""
6689
-
6690
- #: wppa-settings-autosave.php:1002
6691
- msgid "Use the thumbnail image files if they are large enough."
6692
- msgstr ""
6693
-
6694
- #: wppa-settings-autosave.php:1003
6695
- msgid "This setting speeds up page loading for small photos."
6696
- msgstr ""
6697
-
6698
- #: wppa-settings-autosave.php:1004
6699
- msgid ""
6700
- "Do NOT use this when your thumbnails have a forced aspect ratio (when Table "
6701
- "I-C2 is set to anything different from --- same as fullsize ---)"
6702
- msgstr ""
6703
-
6704
- #: wppa-settings-autosave.php:1011
6705
- msgid "Album cover related size settings"
6706
- msgstr ""
6707
-
6708
- #: wppa-settings-autosave.php:1014
6709
- msgid "Maximum width for a album cover display."
6710
- msgstr ""
6711
-
6712
- #: wppa-settings-autosave.php:1015
6713
- msgid ""
6714
- "Display covers in 2 or more columns if the display area is wider than the "
6715
- "given width."
6716
- msgstr ""
6717
-
6718
- #: wppa-settings-autosave.php:1016
6719
- msgid ""
6720
- "This also applies for 'thumbnails as covers', and will NOT apply to single "
6721
- "items."
6722
- msgstr ""
6723
-
6724
- #: wppa-settings-autosave.php:1023
6725
- msgid "Min Cover height"
6726
- msgstr ""
6727
-
6728
- #: wppa-settings-autosave.php:1024
6729
- msgid "Minimal height of an album cover."
6730
- msgstr ""
6731
-
6732
- #: wppa-settings-autosave.php:1025
6733
- msgid ""
6734
- "If you use this setting to make the albums the same height and you are not "
6735
- "satisfied about the lay-out, try increasing the value in the next setting"
6736
- msgstr ""
6737
-
6738
- #: wppa-settings-autosave.php:1032
6739
- msgid "Min Text frame height"
6740
- msgstr ""
6741
-
6742
- #: wppa-settings-autosave.php:1033
6743
- msgid "The minimal cover text frame height incl header."
6744
- msgstr ""
6745
-
6746
- #: wppa-settings-autosave.php:1034
6747
- msgid ""
6748
- "The height starting with the album title up to and including the view- and "
6749
- "the slideshow- links."
6750
- msgstr ""
6751
-
6752
- #: wppa-settings-autosave.php:1035
6753
- msgid ""
6754
- "This setting enables you to give the album covers the same height while the "
6755
- "title does not need to fit on one line."
6756
- msgstr ""
6757
-
6758
- #: wppa-settings-autosave.php:1036
6759
- msgid "This is the recommended setting to line-up your covers!"
6760
- msgstr ""
6761
-
6762
- #: wppa-settings-autosave.php:1043
6763
- msgid "Min Description height"
6764
- msgstr ""
6765
-
6766
- #: wppa-settings-autosave.php:1044
6767
- msgid "The minimal height of the album description text frame."
6768
- msgstr ""
6769
-
6770
- #: wppa-settings-autosave.php:1045
6771
- msgid "The minimal height of the description field in an album cover display."
6772
- msgstr ""
6773
-
6774
- #: wppa-settings-autosave.php:1046
6775
- msgid ""
6776
- "This setting enables you to give the album covers the same height provided "
6777
- "that the cover images are equally sized and the titles fit on one line."
6778
- msgstr ""
6779
-
6780
- #: wppa-settings-autosave.php:1047
6781
- msgid ""
6782
- "To force the coverphotos have equal heights, tick the box in Table I-D7."
6783
- msgstr ""
6784
-
6785
- #: wppa-settings-autosave.php:1048
6786
- msgid ""
6787
- "You may need this setting if changing the previous setting is not sufficient "
6788
- "to line-up the covers."
6789
- msgstr ""
6790
-
6791
- #: wppa-settings-autosave.php:1055
6792
- msgid "Coverphoto size"
6793
- msgstr ""
6794
-
6795
- #: wppa-settings-autosave.php:1056
6796
- #, fuzzy
6797
- msgid "The size of the coverphoto."
6798
- msgstr "Se forside foto"
6799
-
6800
- #: wppa-settings-autosave.php:1058 wppa-settings-autosave.php:1068
6801
- msgid ""
6802
- "Changing the coverphoto size may result in all thumbnails being regenerated. "
6803
- "this may take a while."
6804
- msgstr ""
6805
-
6806
- #: wppa-settings-autosave.php:1065
6807
- msgid "Coverphoto size multi"
6808
- msgstr ""
6809
-
6810
- #: wppa-settings-autosave.php:1066
6811
- msgid "The size of coverphotos if more than one."
6812
- msgstr ""
6813
-
6814
- #: wppa-settings-autosave.php:1075
6815
- msgid "Size is height"
6816
- msgstr ""
6817
-
6818
- #: wppa-settings-autosave.php:1076
6819
- msgid "The size of the coverphoto is the height of it."
6820
- msgstr ""
6821
-
6822
- #: wppa-settings-autosave.php:1077
6823
- msgid ""
6824
- "If set: the previous setting is the height, if unset: the largest of width "
6825
- "and height."
6826
- msgstr ""
6827
-
6828
- #: wppa-settings-autosave.php:1078
6829
- msgid ""
6830
- "This setting applies for coverphoto position top or bottom only (Table IV-"
6831
- "D3)."
6832
- msgstr ""
6833
-
6834
- #: wppa-settings-autosave.php:1079
6835
- msgid "This makes it easyer to make the covers of equal height."
6836
- msgstr ""
6837
-
6838
- #: wppa-settings-autosave.php:1087
6839
- msgid "Max number of covers per page."
6840
- msgstr ""
6841
-
6842
- #: wppa-settings-autosave.php:1088
6843
- msgid ""
6844
- "Enter the maximum number of album covers per page. A value of 0 indicates no "
6845
- "pagination."
6846
- msgstr ""
6847
-
6848
- #: wppa-settings-autosave.php:1090
6849
- msgid "covers"
6850
- msgstr ""
6851
-
6852
- #: wppa-settings-autosave.php:1095
6853
- msgid "Rating and comment related size settings"
6854
- msgstr ""
6855
-
6856
- #: wppa-settings-autosave.php:1097
6857
- #, fuzzy
6858
- msgid "Rating size"
6859
- msgstr "Bed&oslash;mmelse: %s"
6860
-
6861
- #: wppa-settings-autosave.php:1098
6862
- msgid "Select the number of voting stars."
6863
- msgstr ""
6864
-
6865
- #: wppa-settings-autosave.php:1101
6866
- msgid "Standard: 5 stars"
6867
- msgstr ""
6868
-
6869
- #: wppa-settings-autosave.php:1101
6870
- msgid "Extended: 10 stars"
6871
- msgstr ""
6872
-
6873
- #: wppa-settings-autosave.php:1101
6874
- msgid "One button vote"
6875
- msgstr ""
6876
-
6877
- #: wppa-settings-autosave.php:1108
6878
- msgid "Display precision"
6879
- msgstr ""
6880
-
6881
- #: wppa-settings-autosave.php:1109
6882
- msgid "Select the desired rating display precision."
6883
- msgstr ""
6884
-
6885
- #: wppa-settings-autosave.php:1112
6886
- msgid "decimal places"
6887
- msgstr ""
6888
-
6889
- #: wppa-settings-autosave.php:1120
6890
- msgid "Size of Avatar images."
6891
- msgstr ""
6892
-
6893
- #: wppa-settings-autosave.php:1121
6894
- msgid "The size of the square avatar; must be > 0 and < 256"
6895
- msgstr ""
6896
-
6897
- #: wppa-settings-autosave.php:1128
6898
- #, fuzzy
6899
- msgid "Rating space"
6900
- msgstr "Bed&oslash;mmelse: %s"
6901
-
6902
- #: wppa-settings-autosave.php:1129
6903
- msgid "Space between avg and my rating stars"
6904
- msgstr ""
6905
-
6906
- #: wppa-settings-autosave.php:1137
6907
- msgid "Widget related size settings"
6908
- msgstr ""
6909
-
6910
- #: wppa-settings-autosave.php:1139
6911
- msgid "Widget width"
6912
- msgstr ""
6913
-
6914
- #: wppa-settings-autosave.php:1140
6915
- msgid "The useable width within widgets."
6916
- msgstr ""
6917
-
6918
- #: wppa-settings-autosave.php:1141
6919
- msgid ""
6920
- "Widget width for photo of the day, general purpose (default), slideshow "
6921
- "(default) and upload widgets."
6922
- msgstr ""
6923
-
6924
- #: wppa-settings-autosave.php:1148
6925
- #, fuzzy
6926
- msgid "TopTen count"
6927
- msgstr "Foto Top Ti"
6928
-
6929
- #: wppa-settings-autosave.php:1149
6930
- msgid "Number of photos in TopTen widget."
6931
- msgstr ""
6932
-
6933
- #: wppa-settings-autosave.php:1150
6934
- msgid "Enter the maximum number of rated photos in the TopTen widget."
6935
- msgstr ""
6936
-
6937
- #: wppa-settings-autosave.php:1157
6938
- #, fuzzy
6939
- msgid "TopTen size"
6940
- msgstr "Foto Top Ti"
6941
-
6942
- #: wppa-settings-autosave.php:1158
6943
- msgid "Size of thumbnails in TopTen widget."
6944
- msgstr ""
6945
-
6946
- #: wppa-settings-autosave.php:1159
6947
- msgid "Enter the size for the mini photos in the TopTen widget."
6948
- msgstr ""
6949
-
6950
- #: wppa-settings-autosave.php:1160 wppa-settings-autosave.php:1180
6951
- #: wppa-settings-autosave.php:1200 wppa-settings-autosave.php:1220
6952
- #: wppa-settings-autosave.php:1240 wppa-settings-autosave.php:1260
6953
- msgid "The size applies to the width or height, whatever is the largest."
6954
- msgstr ""
6955
-
6956
- #: wppa-settings-autosave.php:1161 wppa-settings-autosave.php:1181
6957
- #: wppa-settings-autosave.php:1201 wppa-settings-autosave.php:1221
6958
- #: wppa-settings-autosave.php:1241 wppa-settings-autosave.php:1261
6959
- msgid ""
6960
- "Recommended values: 86 for a two column and 56 for a three column display."
6961
- msgstr ""
6962
-
6963
- #: wppa-settings-autosave.php:1168
6964
- #, fuzzy
6965
- msgid "Comment count"
6966
- msgstr "Kommentar til billeder"
6967
-
6968
- #: wppa-settings-autosave.php:1169
6969
- msgid "Number of entries in Comment widget."
6970
- msgstr ""
6971
-
6972
- #: wppa-settings-autosave.php:1170
6973
- msgid "Enter the maximum number of entries in the Comment widget."
6974
- msgstr ""
6975
-
6976
- #: wppa-settings-autosave.php:1172
6977
- msgid "entries"
6978
- msgstr ""
6979
-
6980
- #: wppa-settings-autosave.php:1177
6981
- #, fuzzy
6982
- msgid "Comment size"
6983
- msgstr "%d kommentarer"
6984
-
6985
- #: wppa-settings-autosave.php:1178
6986
- msgid "Size of thumbnails in Comment widget."
6987
- msgstr ""
6988
-
6989
- #: wppa-settings-autosave.php:1179
6990
- msgid "Enter the size for the mini photos in the Comment widget."
6991
- msgstr ""
6992
-
6993
- #: wppa-settings-autosave.php:1188
6994
- #, fuzzy
6995
- msgid "Thumbnail count"
6996
- msgstr "Miniatura"
6997
-
6998
- #: wppa-settings-autosave.php:1189
6999
- msgid "Number of photos in Thumbnail widget."
7000
- msgstr ""
7001
-
7002
- #: wppa-settings-autosave.php:1190
7003
- msgid "Enter the maximum number of rated photos in the Thumbnail widget."
7004
- msgstr ""
7005
-
7006
- #: wppa-settings-autosave.php:1197
7007
- #, fuzzy
7008
- msgid "Thumbnail widget size"
7009
- msgstr "Foto Top Ti"
7010
-
7011
- #: wppa-settings-autosave.php:1198
7012
- msgid "Size of thumbnails in Thumbnail widget."
7013
- msgstr ""
7014
-
7015
- #: wppa-settings-autosave.php:1199
7016
- msgid "Enter the size for the mini photos in the Thumbnail widget."
7017
- msgstr ""
7018
-
7019
- #: wppa-settings-autosave.php:1208
7020
- msgid "LasTen count"
7021
- msgstr ""
7022
-
7023
- #: wppa-settings-autosave.php:1209
7024
- msgid "Number of photos in Last Ten widget."
7025
- msgstr ""
7026
-
7027
- #: wppa-settings-autosave.php:1210
7028
- msgid "Enter the maximum number of photos in the LasTen widget."
7029
- msgstr ""
7030
-
7031
- #: wppa-settings-autosave.php:1217
7032
- msgid "LasTen size"
7033
- msgstr ""
7034
-
7035
- #: wppa-settings-autosave.php:1218
7036
- msgid "Size of thumbnails in Last Ten widget."
7037
- msgstr ""
7038
-
7039
- #: wppa-settings-autosave.php:1219
7040
- msgid "Enter the size for the mini photos in the LasTen widget."
7041
- msgstr ""
7042
-
7043
- #: wppa-settings-autosave.php:1228
7044
- #, fuzzy
7045
- msgid "Album widget count"
7046
- msgstr "Inserisci / modifica la descrizione per questo album."
7047
-
7048
- #: wppa-settings-autosave.php:1229
7049
- msgid "Number of albums in Album widget."
7050
- msgstr ""
7051
-
7052
- #: wppa-settings-autosave.php:1230
7053
- msgid ""
7054
- "Enter the maximum number of thumbnail photos of albums in the Album widget."
7055
- msgstr ""
7056
-
7057
- #: wppa-settings-autosave.php:1237
7058
- msgid "Album widget size"
7059
- msgstr ""
7060
-
7061
- #: wppa-settings-autosave.php:1238
7062
- msgid "Size of thumbnails in Album widget."
7063
- msgstr ""
7064
-
7065
- #: wppa-settings-autosave.php:1239
7066
- msgid "Enter the size for the mini photos in the Album widget."
7067
- msgstr ""
7068
-
7069
- #: wppa-settings-autosave.php:1248
7070
- msgid "FeaTen count"
7071
- msgstr ""
7072
-
7073
- #: wppa-settings-autosave.php:1249
7074
- msgid "Number of photos in Featured Ten widget."
7075
- msgstr ""
7076
-
7077
- #: wppa-settings-autosave.php:1250
7078
- msgid "Enter the maximum number of photos in the FeaTen widget."
7079
- msgstr ""
7080
-
7081
- #: wppa-settings-autosave.php:1257
7082
- msgid "FeaTen size"
7083
- msgstr ""
7084
-
7085
- #: wppa-settings-autosave.php:1258
7086
- msgid "Size of thumbnails in Featured Ten widget."
7087
- msgstr ""
7088
-
7089
- #: wppa-settings-autosave.php:1259
7090
- msgid "Enter the size for the mini photos in the FeaTen widget."
7091
- msgstr ""
7092
-
7093
- #: wppa-settings-autosave.php:1268
7094
- msgid "Tagcloud min size"
7095
- msgstr ""
7096
-
7097
- #: wppa-settings-autosave.php:1269
7098
- msgid "Minimal fontsize in tagclouds"
7099
- msgstr ""
7100
-
7101
- #: wppa-settings-autosave.php:1277
7102
- msgid "Tagcloud max size"
7103
- msgstr ""
7104
-
7105
- #: wppa-settings-autosave.php:1278
7106
- msgid "Maximal fontsize in tagclouds"
7107
- msgstr ""
7108
-
7109
- #: wppa-settings-autosave.php:1286
7110
- msgid ""
7111
- "Lightbox related size settings. These settings have effect only when Table "
7112
- "IX-J3 is set to wppa"
7113
- msgstr ""
7114
-
7115
- #: wppa-settings-autosave.php:1289
7116
- msgid ""
7117
- "Number of lines on the lightbox description area, exclusive the n/m line."
7118
- msgstr ""
7119
-
7120
- #: wppa-settings-autosave.php:1290
7121
- msgid "Enter a number in the range from 0 to 24 or auto"
7122
- msgstr ""
7123
-
7124
- #: wppa-settings-autosave.php:1292
7125
- msgid "lines"
7126
- msgstr ""
7127
-
7128
- #: wppa-settings-autosave.php:1297
7129
- msgid "Magnifier cursor size"
7130
- msgstr ""
7131
-
7132
- #: wppa-settings-autosave.php:1298
7133
- msgid "Select the size of the magnifier cursor."
7134
- msgstr ""
7135
-
7136
- #: wppa-settings-autosave.php:1301
7137
- msgid "small"
7138
- msgstr ""
7139
-
7140
- #: wppa-settings-autosave.php:1301
7141
- msgid "medium"
7142
- msgstr ""
7143
-
7144
- #: wppa-settings-autosave.php:1301
7145
- msgid "large"
7146
- msgstr ""
7147
-
7148
- #: wppa-settings-autosave.php:1310
7149
- msgid "Video related size settings"
7150
- msgstr ""
7151
-
7152
- #: wppa-settings-autosave.php:1312
7153
- msgid "Default width"
7154
- msgstr ""
7155
-
7156
- #: wppa-settings-autosave.php:1313
7157
- msgid "The width of most videos"
7158
- msgstr ""
7159
-
7160
- #: wppa-settings-autosave.php:1321
7161
- msgid "Default height"
7162
- msgstr ""
7163
-
7164
- #: wppa-settings-autosave.php:1322
7165
- msgid "The height of most videos"
7166
- msgstr ""
7167
-
7168
- #: wppa-settings-autosave.php:1348
7169
- msgid "Table II:"
7170
- msgstr ""
7171
-
7172
- #: wppa-settings-autosave.php:1348
7173
- msgid "Visibility:"
7174
- msgstr ""
7175
-
7176
- #: wppa-settings-autosave.php:1349
7177
- msgid "This table describes the visibility of certain wppa+ elements."
7178
- msgstr ""
7179
-
7180
- #: wppa-settings-autosave.php:1367
7181
- msgid "Breadcrumb related visibility settings"
7182
- msgstr ""
7183
-
7184
- #: wppa-settings-autosave.php:1369
7185
- msgid "Breadcrumb on posts"
7186
- msgstr ""
7187
-
7188
- #: wppa-settings-autosave.php:1370 wppa-settings-autosave.php:1380
7189
- msgid "Show breadcrumb navigation bars."
7190
- msgstr ""
7191
-
7192
- #: wppa-settings-autosave.php:1371 wppa-settings-autosave.php:1381
7193
- msgid "Indicate whether a breadcrumb navigation should be displayed"
7194
- msgstr ""
7195
-
7196
- #: wppa-settings-autosave.php:1379
7197
- msgid "Breadcrumb on pages"
7198
- msgstr ""
7199
-
7200
- #: wppa-settings-autosave.php:1389
7201
- #, fuzzy
7202
- msgid "Breadcrumb on search results"
7203
- msgstr "Risultati della ricerca per: %s"
7204
-
7205
- #: wppa-settings-autosave.php:1390
7206
- msgid "Show breadcrumb navigation bars on the search results page."
7207
- msgstr ""
7208
-
7209
- #: wppa-settings-autosave.php:1391
7210
- msgid ""
7211
- "Indicate whether a breadcrumb navigation should be displayed above the "
7212
- "search results."
7213
- msgstr ""
7214
-
7215
- #: wppa-settings-autosave.php:1398
7216
- msgid "Breadcrumb on topten displays"
7217
- msgstr ""
7218
-
7219
- #: wppa-settings-autosave.php:1399
7220
- msgid "Show breadcrumb navigation bars on topten displays."
7221
- msgstr ""
7222
-
7223
- #: wppa-settings-autosave.php:1400
7224
- msgid ""
7225
- "Indicate whether a breadcrumb navigation should be displayed above the "
7226
- "topten displays."
7227
- msgstr ""
7228
-
7229
- #: wppa-settings-autosave.php:1407
7230
- msgid "Breadcrumb on last ten displays"
7231
- msgstr ""
7232
-
7233
- #: wppa-settings-autosave.php:1408
7234
- msgid "Show breadcrumb navigation bars on last ten displays."
7235
- msgstr ""
7236
-
7237
- #: wppa-settings-autosave.php:1409
7238
- msgid ""
7239
- "Indicate whether a breadcrumb navigation should be displayed above the last "
7240
- "ten displays."
7241
- msgstr ""
7242
-
7243
- #: wppa-settings-autosave.php:1416
7244
- msgid "Breadcrumb on comment ten displays"
7245
- msgstr ""
7246
-
7247
- #: wppa-settings-autosave.php:1417
7248
- msgid "Show breadcrumb navigation bars on comment ten displays."
7249
- msgstr ""
7250
-
7251
- #: wppa-settings-autosave.php:1418
7252
- msgid ""
7253
- "Indicate whether a breadcrumb navigation should be displayed above the "
7254
- "comment ten displays."
7255
- msgstr ""
7256
-
7257
- #: wppa-settings-autosave.php:1425
7258
- msgid "Breadcrumb on tag result displays"
7259
- msgstr ""
7260
-
7261
- #: wppa-settings-autosave.php:1426
7262
- msgid "Show breadcrumb navigation bars on tag result displays."
7263
- msgstr ""
7264
-
7265
- #: wppa-settings-autosave.php:1427
7266
- msgid ""
7267
- "Indicate whether a breadcrumb navigation should be displayed above the tag "
7268
- "result displays."
7269
- msgstr ""
7270
-
7271
- #: wppa-settings-autosave.php:1434
7272
- msgid "Breadcrumb on featured ten displays"
7273
- msgstr ""
7274
-
7275
- #: wppa-settings-autosave.php:1435
7276
- msgid "Show breadcrumb navigation bars on featured ten displays."
7277
- msgstr ""
7278
-
7279
- #: wppa-settings-autosave.php:1436
7280
- msgid ""
7281
- "Indicate whether a breadcrumb navigation should be displayed above the "
7282
- "featured ten displays."
7283
- msgstr ""
7284
-
7285
- #: wppa-settings-autosave.php:1443
7286
- msgid "Breadcrumb on related photos displays"
7287
- msgstr ""
7288
-
7289
- #: wppa-settings-autosave.php:1444
7290
- msgid "Show breadcrumb navigation bars on related photos displays."
7291
- msgstr ""
7292
-
7293
- #: wppa-settings-autosave.php:1445
7294
- msgid ""
7295
- "Indicate whether a breadcrumb navigation should be displayed above the "
7296
- "related photos displays."
7297
- msgstr ""
7298
-
7299
- #: wppa-settings-autosave.php:1453
7300
- msgid "Show \"Home\" in breadcrumb."
7301
- msgstr ""
7302
-
7303
- #: wppa-settings-autosave.php:1454
7304
- msgid ""
7305
- "Indicate whether the breadcrumb navigation should start with a \"Home\"-link"
7306
- msgstr ""
7307
-
7308
- #: wppa-settings-autosave.php:1462
7309
- msgid "Show the page(s) in breadcrumb."
7310
- msgstr ""
7311
-
7312
- #: wppa-settings-autosave.php:1463
7313
- msgid ""
7314
- "Indicate whether the breadcrumb navigation should show the page(hierarchy)"
7315
- msgstr ""
7316
-
7317
- #: wppa-settings-autosave.php:1470
7318
- msgid "Separator"
7319
- msgstr ""
7320
-
7321
- #: wppa-settings-autosave.php:1471
7322
- msgid "Breadcrumb separator symbol."
7323
- msgstr ""
7324
-
7325
- #: wppa-settings-autosave.php:1472
7326
- msgid "Select the desired breadcrumb separator element."
7327
- msgstr ""
7328
-
7329
- #: wppa-settings-autosave.php:1473
7330
- msgid "A text string may contain valid html."
7331
- msgstr ""
7332
-
7333
- #: wppa-settings-autosave.php:1474
7334
- msgid ""
7335
- "An image will be scaled automatically if you set the navigation font size."
7336
- msgstr ""
7337
-
7338
- #: wppa-settings-autosave.php:1476
7339
- msgid "Text (html):"
7340
- msgstr ""
7341
-
7342
- #: wppa-settings-autosave.php:1476
7343
- msgid "Image (url):"
7344
- msgstr ""
7345
-
7346
- #: wppa-settings-autosave.php:1484
7347
- msgid "Html"
7348
- msgstr ""
7349
-
7350
- #: wppa-settings-autosave.php:1485
7351
- msgid "Breadcrumb separator text."
7352
- msgstr ""
7353
-
7354
- #: wppa-settings-autosave.php:1486
7355
- msgid "Enter the HTML code that produces the separator symbol you want."
7356
- msgstr ""
7357
-
7358
- #: wppa-settings-autosave.php:1487
7359
- msgid ""
7360
- "It may be as simple as '-' (without the quotes) or as complex as a tag like "
7361
- "<div>..</div>."
7362
- msgstr ""
7363
-
7364
- #: wppa-settings-autosave.php:1494
7365
- #, fuzzy
7366
- msgid "Image Url"
7367
- msgstr "Billede"
7368
-
7369
- #: wppa-settings-autosave.php:1495
7370
- msgid "Full url to separator image."
7371
- msgstr ""
7372
-
7373
- #: wppa-settings-autosave.php:1496
7374
- msgid ""
7375
- "Enter the full url to the image you want to use for the separator symbol."
7376
- msgstr ""
7377
-
7378
- #: wppa-settings-autosave.php:1503
7379
- #, fuzzy
7380
- msgid "Pagelink position"
7381
- msgstr "Position:"
7382
-
7383
- #: wppa-settings-autosave.php:1504
7384
- msgid "The location for the pagelinks bar."
7385
- msgstr ""
7386
-
7387
- #: wppa-settings-autosave.php:1507 wppa-settings-autosave.php:3708
7388
- msgid "Top"
7389
- msgstr ""
7390
-
7391
- #: wppa-settings-autosave.php:1507 wppa-settings-autosave.php:3708
7392
- msgid "Bottom"
7393
- msgstr ""
7394
-
7395
- #: wppa-settings-autosave.php:1507
7396
- msgid "Both"
7397
- msgstr ""
7398
-
7399
- #: wppa-settings-autosave.php:1514
7400
- msgid "Thumblink on slideshow"
7401
- msgstr ""
7402
-
7403
- #: wppa-settings-autosave.php:1515
7404
- msgid "Show a thumb link on slideshow bc."
7405
- msgstr ""
7406
-
7407
- #: wppa-settings-autosave.php:1516
7408
- msgid "Show a link to thumbnail display on an breadcrumb above a slideshow"
7409
- msgstr ""
7410
-
7411
- #: wppa-settings-autosave.php:1523
7412
- msgid "Slideshow related visibility settings"
7413
- msgstr ""
7414
-
7415
- #: wppa-settings-autosave.php:1525
7416
- #, fuzzy
7417
- msgid "Start/stop"
7418
- msgstr "Start"
7419
-
7420
- #: wppa-settings-autosave.php:1526
7421
- #, fuzzy
7422
- msgid "Show the Start/Stop slideshow bar."
7423
- msgstr "Dobbeltklik for at starte/slutte slideshow"
7424
-
7425
- #: wppa-settings-autosave.php:1527
7426
- msgid ""
7427
- "If checked: display the start/stop slideshow navigation bar above the full-"
7428
- "size images and slideshow"
7429
- msgstr ""
7430
-
7431
- #: wppa-settings-autosave.php:1534
7432
- #, fuzzy
7433
- msgid "Browse bar"
7434
- msgstr "Se fotos"
7435
-
7436
- #: wppa-settings-autosave.php:1535
7437
- #, fuzzy
7438
- msgid "Show Browse photos bar."
7439
- msgstr "Se fotos"
7440
-
7441
- #: wppa-settings-autosave.php:1536
7442
- msgid ""
7443
- "If checked: display the preveous/next navigation bar under the full-size "
7444
- "images and slideshow"
7445
- msgstr ""
7446
-
7447
- #: wppa-settings-autosave.php:1543
7448
- msgid "Filmstrip"
7449
- msgstr ""
7450
-
7451
- #: wppa-settings-autosave.php:1544
7452
- msgid "Show Filmstrip navigation bar."
7453
- msgstr ""
7454
-
7455
- #: wppa-settings-autosave.php:1545
7456
- msgid ""
7457
- "If checked: display the filmstrip navigation bar under the full_size images "
7458
- "and slideshow"
7459
- msgstr ""
7460
-
7461
- #: wppa-settings-autosave.php:1552
7462
- msgid "Film seam"
7463
- msgstr ""
7464
-
7465
- #: wppa-settings-autosave.php:1553
7466
- msgid "Show seam between end and start of film."
7467
- msgstr ""
7468
-
7469
- #: wppa-settings-autosave.php:1554
7470
- msgid "If checked: display the wrap-around point in the filmstrip"
7471
- msgstr ""
7472
-
7473
- #: wppa-settings-autosave.php:1561
7474
- #, fuzzy
7475
- msgid "Photo name"
7476
- msgstr "Dagens foto"
7477
-
7478
- #: wppa-settings-autosave.php:1562
7479
- #, fuzzy
7480
- msgid "Display photo name."
7481
- msgstr "Indtast foto navn"
7482
-
7483
- #: wppa-settings-autosave.php:1563
7484
- msgid "If checked: display the name of the photo under the slideshow image."
7485
- msgstr ""
7486
-
7487
- #: wppa-settings-autosave.php:1570 wppa-settings-autosave.php:1950
7488
- msgid "Add (Owner)"
7489
- msgstr ""
7490
-
7491
- #: wppa-settings-autosave.php:1571 wppa-settings-autosave.php:1951
7492
- msgid "Add the uploaders display name in parenthesis to the name."
7493
- msgstr ""
7494
-
7495
- #: wppa-settings-autosave.php:1579
7496
- #, fuzzy
7497
- msgid "Photo desc"
7498
- msgstr "Foto"
7499
-
7500
- #: wppa-settings-autosave.php:1580
7501
- #, fuzzy
7502
- msgid "Display Photo description."
7503
- msgstr "Inds&aelig;t/rediger beskrivelse af foto"
7504
-
7505
- #: wppa-settings-autosave.php:1581
7506
- msgid ""
7507
- "If checked: display the description of the photo under the slideshow image."
7508
- msgstr ""
7509
-
7510
- #: wppa-settings-autosave.php:1588
7511
- msgid "Hide when empty"
7512
- msgstr ""
7513
-
7514
- #: wppa-settings-autosave.php:1589
7515
- msgid "Hide the descriptionbox when empty."
7516
- msgstr ""
7517
-
7518
- #: wppa-settings-autosave.php:1597
7519
- #, fuzzy
7520
- msgid "Rating system"
7521
- msgstr "Bed&oslash;mmelse: %s"
7522
-
7523
- #: wppa-settings-autosave.php:1598
7524
- msgid "Enable the rating system."
7525
- msgstr ""
7526
-
7527
- #: wppa-settings-autosave.php:1599
7528
- msgid "If checked, the photo rating system will be enabled."
7529
- msgstr ""
7530
-
7531
- #: wppa-settings-autosave.php:1607
7532
- #, fuzzy
7533
- msgid "Comments system"
7534
- msgstr "%d kommentarer"
7535
-
7536
- #: wppa-settings-autosave.php:1608
7537
- msgid "Enable the comments system."
7538
- msgstr ""
7539
-
7540
- #: wppa-settings-autosave.php:1609
7541
- msgid ""
7542
- "Display the comments box under the fullsize images and let users enter their "
7543
- "comments on individual photos."
7544
- msgstr ""
7545
-
7546
- #: wppa-settings-autosave.php:1617
7547
- #, fuzzy
7548
- msgid "Comment Avatar default"
7549
- msgstr "Kommentarer tilf&oslash;jet"
7550
-
7551
- #: wppa-settings-autosave.php:1618
7552
- msgid "Show Avatars with the comments if not --- none ---"
7553
- msgstr ""
7554
-
7555
- #: wppa-settings-autosave.php:1623
7556
- msgid "mystery man"
7557
- msgstr ""
7558
-
7559
- #: wppa-settings-autosave.php:1624
7560
- msgid "identicon"
7561
- msgstr ""
7562
-
7563
- #: wppa-settings-autosave.php:1625
7564
- msgid "monsterid"
7565
- msgstr ""
7566
-
7567
- #: wppa-settings-autosave.php:1626
7568
- msgid "wavatar"
7569
- msgstr ""
7570
-
7571
- #: wppa-settings-autosave.php:1627
7572
- msgid "retro"
7573
- msgstr ""
7574
-
7575
- #: wppa-settings-autosave.php:1628
7576
- #, fuzzy
7577
- msgid "--- url ---"
7578
- msgstr "--- ingen ---"
7579
-
7580
- #: wppa-settings-autosave.php:1643
7581
- msgid "Comment Avatar url"
7582
- msgstr ""
7583
-
7584
- #: wppa-settings-autosave.php:1644
7585
- msgid "Comment Avatar default url."
7586
- msgstr ""
7587
-
7588
- #: wppa-settings-autosave.php:1652
7589
- #, fuzzy
7590
- msgid "Big Browse Buttons"
7591
- msgstr "Se fotos"
7592
-
7593
- #: wppa-settings-autosave.php:1653
7594
- msgid "Enable invisible browsing buttons."
7595
- msgstr ""
7596
-
7597
- #: wppa-settings-autosave.php:1654 wppa-settings-autosave.php:2197
7598
- #, fuzzy
7599
- msgid ""
7600
- "If checked, the fullsize image is covered by two invisible areas that act as "
7601
- "browse buttons."
7602
- msgstr ""
7603
- "For at se billeder i fuld st&oslash;rrelse skal du tillade javascript in din "
7604
- "browser."
7605
-
7606
- #: wppa-settings-autosave.php:1655 wppa-settings-autosave.php:2198
7607
- #: wppa-settings-autosave.php:2208
7608
- msgid ""
7609
- "Make sure the Full height (Table I-B2) is properly configured to prevent "
7610
- "these areas to overlap unwanted space."
7611
- msgstr ""
7612
-
7613
- #: wppa-settings-autosave.php:1662
7614
- #, fuzzy
7615
- msgid "Ugly Browse Buttons"
7616
- msgstr "Se fotos"
7617
-
7618
- #: wppa-settings-autosave.php:1663
7619
- msgid "Enable the ugly browsing buttons."
7620
- msgstr ""
7621
-
7622
- #: wppa-settings-autosave.php:1664
7623
- msgid "If checked, the fullsize image is covered by two browse buttons."
7624
- msgstr ""
7625
-
7626
- #: wppa-settings-autosave.php:1668 wppa-settings-autosave.php:2239
7627
- #: wppa-settings-autosave.php:2250
7628
- msgid "Black"
7629
- msgstr ""
7630
-
7631
- #: wppa-settings-autosave.php:1668
7632
- msgid "Light gray"
7633
- msgstr ""
7634
-
7635
- #: wppa-settings-autosave.php:1675
7636
- #, fuzzy
7637
- msgid "Start/stop icons"
7638
- msgstr "Start"
7639
-
7640
- #: wppa-settings-autosave.php:1676
7641
- msgid "Show start and stop icons at the center of the slide"
7642
- msgstr ""
7643
-
7644
- #: wppa-settings-autosave.php:1681
7645
- msgid "Black square"
7646
- msgstr ""
7647
-
7648
- #: wppa-settings-autosave.php:1681
7649
- msgid "Blue square"
7650
- msgstr ""
7651
-
7652
- #: wppa-settings-autosave.php:1681
7653
- msgid "Black round"
7654
- msgstr ""
7655
-
7656
- #: wppa-settings-autosave.php:1688
7657
- msgid "Show custom box"
7658
- msgstr ""
7659
-
7660
- #: wppa-settings-autosave.php:1689
7661
- msgid "Display the custom box in the slideshow"
7662
- msgstr ""
7663
-
7664
- #: wppa-settings-autosave.php:1690 wppa-settings-autosave.php:1701
7665
- msgid ""
7666
- "You can fill the custom box with any html you like. It will not be checked, "
7667
- "so it is your own responsability to close tags properly."
7668
- msgstr ""
7669
-
7670
- #: wppa-settings-autosave.php:1691 wppa-settings-autosave.php:1702
7671
- msgid "The position of the box can be defined in Table IX-E."
7672
- msgstr ""
7673
-
7674
- #: wppa-settings-autosave.php:1699
7675
- msgid "Custom content"
7676
- msgstr ""
7677
-
7678
- #: wppa-settings-autosave.php:1700
7679
- msgid "The content (html) of the custom box."
7680
- msgstr ""
7681
-
7682
- #: wppa-settings-autosave.php:1709
7683
- #, fuzzy
7684
- msgid "Slideshow/Number bar"
7685
- msgstr "Slideshow"
7686
-
7687
- #: wppa-settings-autosave.php:1710
7688
- msgid "Display the Slideshow / Number bar."
7689
- msgstr ""
7690
-
7691
- #: wppa-settings-autosave.php:1711
7692
- msgid "If checked: display the number boxes on slideshow"
7693
- msgstr ""
7694
-
7695
- #: wppa-settings-autosave.php:1719
7696
- msgid "IPTC system"
7697
- msgstr ""
7698
-
7699
- #: wppa-settings-autosave.php:1720
7700
- msgid "Enable the iptc system."
7701
- msgstr ""
7702
-
7703
- #: wppa-settings-autosave.php:1721
7704
- msgid "Display the iptc box under the fullsize images."
7705
- msgstr ""
7706
-
7707
- #: wppa-settings-autosave.php:1729
7708
- msgid "IPTC open"
7709
- msgstr ""
7710
-
7711
- #: wppa-settings-autosave.php:1730
7712
- msgid "Display the iptc box initially opened."
7713
- msgstr ""
7714
-
7715
- #: wppa-settings-autosave.php:1731
7716
- msgid "Display the iptc box under the fullsize images initially open."
7717
- msgstr ""
7718
-
7719
- #: wppa-settings-autosave.php:1739
7720
- msgid "EXIF system"
7721
- msgstr ""
7722
-
7723
- #: wppa-settings-autosave.php:1740
7724
- msgid "Enable the exif system."
7725
- msgstr ""
7726
-
7727
- #: wppa-settings-autosave.php:1741
7728
- msgid "Display the exif box under the fullsize images."
7729
- msgstr ""
7730
-
7731
- #: wppa-settings-autosave.php:1749
7732
- msgid "EXIF open"
7733
- msgstr ""
7734
-
7735
- #: wppa-settings-autosave.php:1750
7736
- msgid "Display the exif box initially opened."
7737
- msgstr ""
7738
-
7739
- #: wppa-settings-autosave.php:1751
7740
- msgid "Display the exif box under the fullsize images initially open."
7741
- msgstr ""
7742
-
7743
- #: wppa-settings-autosave.php:1759
7744
- msgid "Social media share box related visibility settings"
7745
- msgstr ""
7746
-
7747
- #: wppa-settings-autosave.php:1761
7748
- msgid "Show Share Box"
7749
- msgstr ""
7750
-
7751
- #: wppa-settings-autosave.php:1762
7752
- msgid "Display the share social media buttons box."
7753
- msgstr ""
7754
-
7755
- #: wppa-settings-autosave.php:1771 wppa-settings-autosave.php:8268
7756
- msgid "Hide when running"
7757
- msgstr ""
7758
-
7759
- #: wppa-settings-autosave.php:1772
7760
- msgid "Hide the SM box when slideshow runs."
7761
- msgstr ""
7762
-
7763
- #: wppa-settings-autosave.php:1780
7764
- msgid "Show Share Box Widget"
7765
- msgstr ""
7766
-
7767
- #: wppa-settings-autosave.php:1781
7768
- msgid "Display the share social media buttons box in widgets."
7769
- msgstr ""
7770
-
7771
- #: wppa-settings-autosave.php:1782
7772
- msgid ""
7773
- "This setting applies to normal slideshows in widgets, not to the "
7774
- "slideshowwidget as that is a slideonly display."
7775
- msgstr ""
7776
-
7777
- #: wppa-settings-autosave.php:1790
7778
- msgid "Show Share Buttons Thumbs"
7779
- msgstr ""
7780
-
7781
- #: wppa-settings-autosave.php:1791
7782
- msgid "Display the share social media buttons under thumbnails."
7783
- msgstr ""
7784
-
7785
- #: wppa-settings-autosave.php:1800
7786
- msgid "Show Share Buttons Lightbox"
7787
- msgstr ""
7788
-
7789
- #: wppa-settings-autosave.php:1801
7790
- msgid "Display the share social media buttons on lightbox displays."
7791
- msgstr ""
7792
-
7793
- #: wppa-settings-autosave.php:1810
7794
- #, fuzzy
7795
- msgid "Show Share Buttons Mphoto"
7796
- msgstr ""
7797
- "I visitatori possono ottenere una panoramica delle immagini contenute in un "
7798
- "album grazie alle miniature."
7799
-
7800
- #: wppa-settings-autosave.php:1811
7801
- msgid "Display the share social media buttons on mphoto displays."
7802
- msgstr ""
7803
-
7804
- #: wppa-settings-autosave.php:1820
7805
- msgid "Show QR Code"
7806
- msgstr ""
7807
-
7808
- #: wppa-settings-autosave.php:1821
7809
- msgid "Display the QR code in the share box."
7810
- msgstr ""
7811
-
7812
- #: wppa-settings-autosave.php:1829
7813
- #, fuzzy
7814
- msgid "Show Twitter button"
7815
- msgstr "Condividi su Twitter"
7816
-
7817
- #: wppa-settings-autosave.php:1830
7818
- msgid "Display the Twitter button in the share box."
7819
- msgstr ""
7820
-
7821
- #: wppa-settings-autosave.php:1838
7822
- #, fuzzy
7823
- msgid "Show Google+ button"
7824
- msgstr "Condividi su Google+"
7825
-
7826
- #: wppa-settings-autosave.php:1839
7827
- msgid "Display the Google+ button in the share box."
7828
- msgstr ""
7829
-
7830
- #: wppa-settings-autosave.php:1847
7831
- #, fuzzy
7832
- msgid "Show Pinterest button"
7833
- msgstr "Condividi on Pinterest"
7834
-
7835
- #: wppa-settings-autosave.php:1848
7836
- msgid "Display the Pintrest button in the share box."
7837
- msgstr ""
7838
-
7839
- #: wppa-settings-autosave.php:1856
7840
- msgid "Show LinkedIn button"
7841
- msgstr ""
7842
-
7843
- #: wppa-settings-autosave.php:1857
7844
- msgid "Display the LinkedIn button in the share box."
7845
- msgstr ""
7846
-
7847
- #: wppa-settings-autosave.php:1865
7848
- msgid "Show Facebook share button"
7849
- msgstr ""
7850
-
7851
- #: wppa-settings-autosave.php:1866 wppa-settings-autosave.php:1875
7852
- msgid "Display the Facebook button in the share box."
7853
- msgstr ""
7854
-
7855
- #: wppa-settings-autosave.php:1874
7856
- msgid "Show Facebook like button"
7857
- msgstr ""
7858
-
7859
- #: wppa-settings-autosave.php:1883
7860
- msgid "Display type"
7861
- msgstr ""
7862
-
7863
- #: wppa-settings-autosave.php:1884
7864
- msgid "Select the Facebook button display type."
7865
- msgstr ""
7866
-
7867
- #: wppa-settings-autosave.php:1887
7868
- msgid "Button with counter"
7869
- msgstr ""
7870
-
7871
- #: wppa-settings-autosave.php:1887
7872
- msgid "Box with counter"
7873
- msgstr ""
7874
-
7875
- #: wppa-settings-autosave.php:1894
7876
- msgid "Show Facebook comment box"
7877
- msgstr ""
7878
-
7879
- #: wppa-settings-autosave.php:1895
7880
- msgid "Display the Facebook comment dialog box in the share box."
7881
- msgstr ""
7882
-
7883
- #: wppa-settings-autosave.php:1903
7884
- msgid "Facebook User Id"
7885
- msgstr ""
7886
-
7887
- #: wppa-settings-autosave.php:1904
7888
- msgid "Enter your facebook user id to be able to moderate comments and sends"
7889
- msgstr ""
7890
-
7891
- #: wppa-settings-autosave.php:1912
7892
- msgid "Facebook App Id"
7893
- msgstr ""
7894
-
7895
- #: wppa-settings-autosave.php:1913
7896
- msgid "Enter your facebook app id to be able to moderate comments and sends"
7897
- msgstr ""
7898
-
7899
- #: wppa-settings-autosave.php:1921
7900
- msgid "Facebook js SDK"
7901
- msgstr ""
7902
-
7903
- #: wppa-settings-autosave.php:1922
7904
- msgid "Load Facebook js SDK"
7905
- msgstr ""
7906
-
7907
- #: wppa-settings-autosave.php:1923
7908
- msgid ""
7909
- "Uncheck this box only when there is a conflict with an other plugin that "
7910
- "also loads the Facebook js SDK."
7911
- msgstr ""
7912
-
7913
- #: wppa-settings-autosave.php:1930
7914
- msgid "Share single image"
7915
- msgstr ""
7916
-
7917
- #: wppa-settings-autosave.php:1931
7918
- msgid "Share a link to a single image, not the slideshow."
7919
- msgstr ""
7920
-
7921
- #: wppa-settings-autosave.php:1932
7922
- msgid ""
7923
- "The sharelink points to a page with a single image rather than to the page "
7924
- "with the photo in the slideshow."
7925
- msgstr ""
7926
-
7927
- #: wppa-settings-autosave.php:1939
7928
- msgid "Thumbnail display related visibility settings"
7929
- msgstr ""
7930
-
7931
- #: wppa-settings-autosave.php:1941
7932
- #, fuzzy
7933
- msgid "Thumbnail name"
7934
- msgstr "Foto Top Ti"
7935
-
7936
- #: wppa-settings-autosave.php:1942
7937
- msgid "Display Thumbnail name."
7938
- msgstr ""
7939
-
7940
- #: wppa-settings-autosave.php:1943
7941
- msgid "Display photo name under thumbnail images."
7942
- msgstr ""
7943
-
7944
- #: wppa-settings-autosave.php:1959
7945
- #, fuzzy
7946
- msgid "Thumbnail desc"
7947
- msgstr "Miniatura"
7948
-
7949
- #: wppa-settings-autosave.php:1960
7950
- #, fuzzy
7951
- msgid "Display Thumbnail description."
7952
- msgstr "Inserisci / modifica la descrizione per questo album."
7953
-
7954
- #: wppa-settings-autosave.php:1961
7955
- msgid "Display description of the photo under thumbnail images."
7956
- msgstr ""
7957
-
7958
- #: wppa-settings-autosave.php:1968
7959
- #, fuzzy
7960
- msgid "Thumbnail rating"
7961
- msgstr "Foto Top Ti"
7962
-
7963
- #: wppa-settings-autosave.php:1969
7964
- msgid "Display Thumbnail Rating."
7965
- msgstr ""
7966
-
7967
- #: wppa-settings-autosave.php:1970
7968
- msgid "Display the rating of the photo under the thumbnail image."
7969
- msgstr ""
7970
-
7971
- #: wppa-settings-autosave.php:1977
7972
- #, fuzzy
7973
- msgid "Thumbnail comcount"
7974
- msgstr "Miniatura"
7975
-
7976
- #: wppa-settings-autosave.php:1978
7977
- msgid "Display Thumbnail Comment count."
7978
- msgstr ""
7979
-
7980
- #: wppa-settings-autosave.php:1979
7981
- msgid "Display the number of comments to the photo under the thumbnail image."
7982
- msgstr ""
7983
-
7984
- #: wppa-settings-autosave.php:1986
7985
- #, fuzzy
7986
- msgid "Thumbnail viewcount"
7987
- msgstr "Foto Top Ti"
7988
-
7989
- #: wppa-settings-autosave.php:1987
7990
- msgid "Display the number of views."
7991
- msgstr ""
7992
-
7993
- #: wppa-settings-autosave.php:1988
7994
- msgid "Display the number of views under the thumbnail image."
7995
- msgstr ""
7996
-
7997
- #: wppa-settings-autosave.php:1995
7998
- #, fuzzy
7999
- msgid "Thumbnail virt album"
8000
- msgstr "Miniatura"
8001
-
8002
- #: wppa-settings-autosave.php:1996
8003
- msgid "Display the real album name on virtual album display."
8004
- msgstr ""
8005
-
8006
- #: wppa-settings-autosave.php:1997
8007
- msgid ""
8008
- "Display the album name of the photo in parenthesis under the thumbnail on "
8009
- "virtual album displays like search results etc."
8010
- msgstr ""
8011
-
8012
- #: wppa-settings-autosave.php:2004
8013
- #, fuzzy
8014
- msgid "Thumbnail video"
8015
- msgstr "Foto Top Ti"
8016
-
8017
- #: wppa-settings-autosave.php:2005
8018
- msgid "Show video controls on thumbnail displays."
8019
- msgstr ""
8020
-
8021
- #: wppa-settings-autosave.php:2006
8022
- msgid ""
8023
- "Works on default thumbnail type only. You can play the video only when the "
8024
- "link is set to no link at all."
8025
- msgstr ""
8026
-
8027
- #: wppa-settings-autosave.php:2013
8028
- #, fuzzy
8029
- msgid "Thumbnail audio"
8030
- msgstr "Foto Top Ti"
8031
-
8032
- #: wppa-settings-autosave.php:2014
8033
- msgid "Show audio controls on thumbnail displays."
8034
- msgstr ""
8035
-
8036
- #: wppa-settings-autosave.php:2015
8037
- msgid "Works on default thumbnail type only."
8038
- msgstr ""
8039
-
8040
- #: wppa-settings-autosave.php:2022
8041
- #, fuzzy
8042
- msgid "Popup name"
8043
- msgstr "Dit navn"
8044
-
8045
- #: wppa-settings-autosave.php:2023
8046
- msgid "Display Thumbnail name on popup."
8047
- msgstr ""
8048
-
8049
- #: wppa-settings-autosave.php:2024
8050
- msgid "Display photo name under thumbnail images on the popup."
8051
- msgstr ""
8052
-
8053
- #: wppa-settings-autosave.php:2031
8054
- msgid "Popup (owner)"
8055
- msgstr ""
8056
-
8057
- #: wppa-settings-autosave.php:2032
8058
- msgid "Display owner on popup."
8059
- msgstr ""
8060
-
8061
- #: wppa-settings-autosave.php:2033
8062
- msgid "Display photo owner under thumbnail images on the popup."
8063
- msgstr ""
8064
-
8065
- #: wppa-settings-autosave.php:2040
8066
- msgid "Popup desc"
8067
- msgstr ""
8068
-
8069
- #: wppa-settings-autosave.php:2041
8070
- msgid "Display Thumbnail description on popup."
8071
- msgstr ""
8072
-
8073
- #: wppa-settings-autosave.php:2042
8074
- msgid "Display description of the photo under thumbnail images on the popup."
8075
- msgstr ""
8076
-
8077
- #: wppa-settings-autosave.php:2049
8078
- msgid "Popup desc no links"
8079
- msgstr ""
8080
-
8081
- #: wppa-settings-autosave.php:2050
8082
- msgid "Strip html anchor tags from descriptions on popups"
8083
- msgstr ""
8084
-
8085
- #: wppa-settings-autosave.php:2051
8086
- msgid ""
8087
- "Use this option to prevent the display of links that cannot be activated."
8088
- msgstr ""
8089
-
8090
- #: wppa-settings-autosave.php:2058
8091
- #, fuzzy
8092
- msgid "Popup rating"
8093
- msgstr "Valutazione:"
8094
-
8095
- #: wppa-settings-autosave.php:2059
8096
- msgid "Display Thumbnail Rating on popup."
8097
- msgstr ""
8098
-
8099
- #: wppa-settings-autosave.php:2060
8100
- msgid "Display the rating of the photo under the thumbnail image on the popup."
8101
- msgstr ""
8102
-
8103
- #: wppa-settings-autosave.php:2067
8104
- msgid "Popup comcount"
8105
- msgstr ""
8106
-
8107
- #: wppa-settings-autosave.php:2068
8108
- msgid "Display Thumbnail Comment count on popup."
8109
- msgstr ""
8110
-
8111
- #: wppa-settings-autosave.php:2069
8112
- msgid ""
8113
- "Display the number of comments of the photo under the thumbnail image on the "
8114
- "popup."
8115
- msgstr ""
8116
-
8117
- #: wppa-settings-autosave.php:2076
8118
- msgid "Show rating count"
8119
- msgstr ""
8120
-
8121
- #: wppa-settings-autosave.php:2077
8122
- msgid "Display the number of votes along with average ratings."
8123
- msgstr ""
8124
-
8125
- #: wppa-settings-autosave.php:2078
8126
- msgid ""
8127
- "If checked, the number of votes is displayed along with average rating "
8128
- "displays on thumbnail and popup displays."
8129
- msgstr ""
8130
-
8131
- #: wppa-settings-autosave.php:2085
8132
- msgid "Show name on thumb area"
8133
- msgstr ""
8134
-
8135
- #: wppa-settings-autosave.php:2086
8136
- msgid "Select if and where to display the album name on the thumbnail display."
8137
- msgstr ""
8138
-
8139
- #: wppa-settings-autosave.php:2089 wppa-settings-autosave.php:2100
8140
- msgid "None"
8141
- msgstr ""
8142
-
8143
- #: wppa-settings-autosave.php:2089 wppa-settings-autosave.php:2100
8144
- #: wppa-settings-autosave.php:3219
8145
- msgid "At the top"
8146
- msgstr ""
8147
-
8148
- #: wppa-settings-autosave.php:2089 wppa-settings-autosave.php:2100
8149
- #: wppa-settings-autosave.php:3219
8150
- msgid "At the bottom"
8151
- msgstr ""
8152
-
8153
- #: wppa-settings-autosave.php:2096
8154
- msgid "Show desc on thumb area"
8155
- msgstr ""
8156
-
8157
- #: wppa-settings-autosave.php:2097
8158
- msgid ""
8159
- "Select if and where to display the album description on the thumbnail "
8160
- "display."
8161
- msgstr ""
8162
-
8163
- #: wppa-settings-autosave.php:2107
8164
- msgid "Show Edit/Delete links"
8165
- msgstr ""
8166
-
8167
- #: wppa-settings-autosave.php:2108
8168
- msgid "Show these links under default thumbnails for owner and admin."
8169
- msgstr ""
8170
-
8171
- #: wppa-settings-autosave.php:2116
8172
- msgid "Show empty thumbnail area"
8173
- msgstr ""
8174
-
8175
- #: wppa-settings-autosave.php:2117
8176
- msgid "Display thumbnail areas with upload link only for empty albums."
8177
- msgstr ""
8178
-
8179
- #: wppa-settings-autosave.php:2126
8180
- msgid "Album cover related visibility settings"
8181
- msgstr ""
8182
-
8183
- #: wppa-settings-autosave.php:2128
8184
- msgid "Covertext"
8185
- msgstr ""
8186
-
8187
- #: wppa-settings-autosave.php:2129
8188
- msgid "Show the text on the album cover."
8189
- msgstr ""
8190
-
8191
- #: wppa-settings-autosave.php:2130
8192
- msgid "Display the album decription on the album cover"
8193
- msgstr ""
8194
-
8195
- #: wppa-settings-autosave.php:2138
8196
- msgid "Enable the slideshow."
8197
- msgstr ""
8198
-
8199
- #: wppa-settings-autosave.php:2139
8200
- msgid ""
8201
- "If you do not want slideshows: uncheck this box. Browsing full size images "
8202
- "will remain possible."
8203
- msgstr ""
8204
-
8205
- #: wppa-settings-autosave.php:2146
8206
- #, fuzzy
8207
- msgid "Slideshow/Browse"
8208
- msgstr "Slideshow"
8209
-
8210
- #: wppa-settings-autosave.php:2147
8211
- msgid "Display the Slideshow / Browse photos link on album covers"
8212
- msgstr ""
8213
-
8214
- #: wppa-settings-autosave.php:2148
8215
- msgid ""
8216
- "This setting causes the Slideshow link to be displayed on the album cover."
8217
- msgstr ""
8218
-
8219
- #: wppa-settings-autosave.php:2149
8220
- msgid ""
8221
- "If slideshows are disabled in item 2 in this table, you will see a browse "
8222
- "link to fullsize images."
8223
- msgstr ""
8224
-
8225
- #: wppa-settings-autosave.php:2150
8226
- msgid "If you do not want the browse link either, uncheck this item."
8227
- msgstr ""
8228
-
8229
- #: wppa-settings-autosave.php:2157
8230
- #, fuzzy
8231
- msgid "View ..."
8232
- msgstr "Se"
8233
-
8234
- #: wppa-settings-autosave.php:2158
8235
- msgid "Display the View xx albums and yy photos link on album covers"
8236
- msgstr ""
8237
-
8238
- #: wppa-settings-autosave.php:2166
8239
- msgid "Treecount"
8240
- msgstr ""
8241
-
8242
- #: wppa-settings-autosave.php:2167
8243
- msgid "Disaplay the total number of (sub)albums and photos in subalbums"
8244
- msgstr ""
8245
-
8246
- #: wppa-settings-autosave.php:2168
8247
- msgid ""
8248
- "Displays the total number of sub albums and photos in the entire album tree "
8249
- "in parenthesis if the numbers differ from the direct content of the album."
8250
- msgstr ""
8251
-
8252
- #: wppa-settings-autosave.php:2175
8253
- msgid "Show categories"
8254
- msgstr ""
8255
-
8256
- #: wppa-settings-autosave.php:2176
8257
- msgid "Display the album categories on the covers."
8258
- msgstr ""
8259
-
8260
- #: wppa-settings-autosave.php:2184
8261
- msgid "Skip empty albums"
8262
- msgstr ""
8263
-
8264
- #: wppa-settings-autosave.php:2185
8265
- msgid "Do not show empty albums, except for admin and owner."
8266
- msgstr ""
8267
-
8268
- #: wppa-settings-autosave.php:2193
8269
- msgid "Widget related visibility settings"
8270
- msgstr ""
8271
-
8272
- #: wppa-settings-autosave.php:2195
8273
- msgid "Big Browse Buttons in widget"
8274
- msgstr ""
8275
-
8276
- #: wppa-settings-autosave.php:2196
8277
- msgid "Enable invisible browsing buttons in widget slideshows."
8278
- msgstr ""
8279
-
8280
- #: wppa-settings-autosave.php:2205
8281
- msgid "Ugly Browse Buttons in widget"
8282
- msgstr ""
8283
-
8284
- #: wppa-settings-autosave.php:2206
8285
- msgid "Enable ugly browsing buttons in widget slideshows."
8286
- msgstr ""
8287
-
8288
- #: wppa-settings-autosave.php:2207
8289
- msgid "If checked, the fullsize image is covered by browse buttons."
8290
- msgstr ""
8291
-
8292
- #: wppa-settings-autosave.php:2215
8293
- msgid "Album widget tooltip"
8294
- msgstr ""
8295
-
8296
- #: wppa-settings-autosave.php:2216
8297
- msgid "Show the album description on hoovering thumbnail in album widget"
8298
- msgstr ""
8299
-
8300
- #: wppa-settings-autosave.php:2224 wppa-settings-autosave.php:4135
8301
- msgid ""
8302
- "Lightbox related settings. These settings have effect only when Table IX-J3 "
8303
- "is set to wppa"
8304
- msgstr ""
8305
-
8306
- #: wppa-settings-autosave.php:2226
8307
- msgid "Overlay Close label text"
8308
- msgstr ""
8309
-
8310
- #: wppa-settings-autosave.php:2227
8311
- msgid "The text label for the cross exit symbol."
8312
- msgstr ""
8313
-
8314
- #: wppa-settings-autosave.php:2228
8315
- msgid ""
8316
- "This text may be multilingual according to the qTranslate short tags specs."
8317
- msgstr ""
8318
-
8319
- #: wppa-settings-autosave.php:2235
8320
- msgid "Overlay theme color"
8321
- msgstr ""
8322
-
8323
- #: wppa-settings-autosave.php:2236
8324
- msgid "The color of the image border and text background."
8325
- msgstr ""
8326
-
8327
- #: wppa-settings-autosave.php:2239 wppa-settings-autosave.php:2250
8328
- msgid "White"
8329
- msgstr ""
8330
-
8331
- #: wppa-settings-autosave.php:2246
8332
- msgid "Overlay background color"
8333
- msgstr ""
8334
-
8335
- #: wppa-settings-autosave.php:2247
8336
- msgid "The color of the outer background."
8337
- msgstr ""
8338
-
8339
- #: wppa-settings-autosave.php:2257
8340
- msgid "Overlay slide name"
8341
- msgstr ""
8342
-
8343
- #: wppa-settings-autosave.php:2258
8344
- msgid "Show name if from slide."
8345
- msgstr ""
8346
-
8347
- #: wppa-settings-autosave.php:2259
8348
- msgid ""
8349
- "Shows the photos name on a lightbox display when initiated from a slide."
8350
- msgstr ""
8351
-
8352
- #: wppa-settings-autosave.php:2260 wppa-settings-autosave.php:2270
8353
- msgid ""
8354
- "This setting also applies to film thumbnails if Table VI-11 is set to "
8355
- "lightbox overlay."
8356
- msgstr ""
8357
-
8358
- #: wppa-settings-autosave.php:2267
8359
- msgid "Overlay slide desc"
8360
- msgstr ""
8361
-
8362
- #: wppa-settings-autosave.php:2268
8363
- msgid "Show description if from slide."
8364
- msgstr ""
8365
-
8366
- #: wppa-settings-autosave.php:2269
8367
- msgid ""
8368
- "Shows the photos description on a lightbox display when initiated from a "
8369
- "slide."
8370
- msgstr ""
8371
-
8372
- #: wppa-settings-autosave.php:2277
8373
- msgid "Overlay thumb name"
8374
- msgstr ""
8375
-
8376
- #: wppa-settings-autosave.php:2278
8377
- msgid "Show the photos name if from thumb."
8378
- msgstr ""
8379
-
8380
- #: wppa-settings-autosave.php:2279
8381
- msgid ""
8382
- "Shows the name on a lightbox display when initiated from a standard "
8383
- "thumbnail or a widget thumbnail."
8384
- msgstr ""
8385
-
8386
- #: wppa-settings-autosave.php:2280 wppa-settings-autosave.php:2290
8387
- msgid ""
8388
- "This setting applies to standard thumbnails, thumbnail-, comment-, topten- "
8389
- "and lasten-widget."
8390
- msgstr ""
8391
-
8392
- #: wppa-settings-autosave.php:2287
8393
- msgid "Overlay thumb desc"
8394
- msgstr ""
8395
-
8396
- #: wppa-settings-autosave.php:2288
8397
- msgid "Show description if from thumb."
8398
- msgstr ""
8399
-
8400
- #: wppa-settings-autosave.php:2289
8401
- msgid ""
8402
- "Shows the photos description on a lightbox display when initiated from a "
8403
- "standard thumbnail or a widget thumbnail."
8404
- msgstr ""
8405
-
8406
- #: wppa-settings-autosave.php:2297
8407
- #, fuzzy
8408
- msgid "Overlay potd name"
8409
- msgstr "Indtast foto navn"
8410
-
8411
- #: wppa-settings-autosave.php:2298
8412
- msgid "Show the photos name if from photo of the day."
8413
- msgstr ""
8414
-
8415
- #: wppa-settings-autosave.php:2299
8416
- msgid ""
8417
- "Shows the name on a lightbox display when initiated from the photo of the "
8418
- "day."
8419
- msgstr ""
8420
-
8421
- #: wppa-settings-autosave.php:2306
8422
- msgid "Overlay potd desc"
8423
- msgstr ""
8424
-
8425
- #: wppa-settings-autosave.php:2307
8426
- msgid "Show description if from from photo of the day."
8427
- msgstr ""
8428
-
8429
- #: wppa-settings-autosave.php:2308
8430
- msgid ""
8431
- "Shows the photos description on a lightbox display when initiated from the "
8432
- "photo of the day."
8433
- msgstr ""
8434
-
8435
- #: wppa-settings-autosave.php:2315
8436
- #, fuzzy
8437
- msgid "Overlay sphoto name"
8438
- msgstr "Indtast foto navn"
8439
-
8440
- #: wppa-settings-autosave.php:2316
8441
- msgid "Show the photos name if from a single photo."
8442
- msgstr ""
8443
-
8444
- #: wppa-settings-autosave.php:2317
8445
- msgid ""
8446
- "Shows the name on a lightbox display when initiated from a single photo."
8447
- msgstr ""
8448
-
8449
- #: wppa-settings-autosave.php:2324
8450
- #, fuzzy
8451
- msgid "Overlay sphoto desc"
8452
- msgstr "fotos"
8453
-
8454
- #: wppa-settings-autosave.php:2325
8455
- msgid "Show description if from from a single photo."
8456
- msgstr ""
8457
-
8458
- #: wppa-settings-autosave.php:2326
8459
- msgid ""
8460
- "Shows the photos description on a lightbox display when initiated from a "
8461
- "single photo."
8462
- msgstr ""
8463
-
8464
- #: wppa-settings-autosave.php:2333
8465
- #, fuzzy
8466
- msgid "Overlay mphoto name"
8467
- msgstr "Indtast foto navn"
8468
-
8469
- #: wppa-settings-autosave.php:2334
8470
- msgid "Show the photos name if from a single media style photo."
8471
- msgstr ""
8472
-
8473
- #: wppa-settings-autosave.php:2335
8474
- msgid ""
8475
- "Shows the name on a lightbox display when initiated from a single media "
8476
- "style photo."
8477
- msgstr ""
8478
-
8479
- #: wppa-settings-autosave.php:2342
8480
- #, fuzzy
8481
- msgid "Overlay mphoto desc"
8482
- msgstr "fotos"
8483
-
8484
- #: wppa-settings-autosave.php:2343
8485
- msgid "Show description if from from a media style photo."
8486
- msgstr ""
8487
-
8488
- #: wppa-settings-autosave.php:2344
8489
- msgid ""
8490
- "Shows the photos description on a lightbox display when initiated from a "
8491
- "single media style photo."
8492
- msgstr ""
8493
-
8494
- #: wppa-settings-autosave.php:2351
8495
- #, fuzzy
8496
- msgid "Overlay albumwidget name"
8497
- msgstr ""
8498
- "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
8499
- "per i titoli delle copertine degli album."
8500
-
8501
- #: wppa-settings-autosave.php:2352
8502
- msgid "Show the photos name if from the album widget."
8503
- msgstr ""
8504
-
8505
- #: wppa-settings-autosave.php:2353
8506
- msgid ""
8507
- "Shows the name on a lightbox display when initiated from the album widget."
8508
- msgstr ""
8509
-
8510
- #: wppa-settings-autosave.php:2360
8511
- msgid "Overlay albumwidget desc"
8512
- msgstr ""
8513
-
8514
- #: wppa-settings-autosave.php:2361
8515
- msgid "Show description if from from the album widget."
8516
- msgstr ""
8517
-
8518
- #: wppa-settings-autosave.php:2362
8519
- msgid ""
8520
- "Shows the photos description on a lightbox display when initiated from the "
8521
- "album widget."
8522
- msgstr ""
8523
-
8524
- #: wppa-settings-autosave.php:2369
8525
- #, fuzzy
8526
- msgid "Overlay coverphoto name"
8527
- msgstr "Indtast foto navn"
8528
-
8529
- #: wppa-settings-autosave.php:2370
8530
- msgid "Show the photos name if from the album cover."
8531
- msgstr ""
8532
-
8533
- #: wppa-settings-autosave.php:2371
8534
- msgid ""
8535
- "Shows the name on a lightbox display when initiated from the album "
8536
- "coverphoto."
8537
- msgstr ""
8538
-
8539
- #: wppa-settings-autosave.php:2378
8540
- msgid "Overlay coverphoto desc"
8541
- msgstr ""
8542
-
8543
- #: wppa-settings-autosave.php:2379
8544
- msgid "Show description if from from the album cover."
8545
- msgstr ""
8546
-
8547
- #: wppa-settings-autosave.php:2380
8548
- msgid ""
8549
- "Shows the photos description on a lightbox display when initiated from the "
8550
- "album coverphoto."
8551
- msgstr ""
8552
-
8553
- #: wppa-settings-autosave.php:2387
8554
- msgid "Overlay add owner"
8555
- msgstr ""
8556
-
8557
- #: wppa-settings-autosave.php:2388
8558
- msgid "Add the owner to the photo name on lightbox displays."
8559
- msgstr ""
8560
-
8561
- #: wppa-settings-autosave.php:2389
8562
- msgid ""
8563
- "This setting is independant of the show name switches and is a global "
8564
- "setting."
8565
- msgstr ""
8566
-
8567
- #: wppa-settings-autosave.php:2396
8568
- #, fuzzy
8569
- msgid "Overlay show start/stop"
8570
- msgstr "Klik for start/stop"
8571
-
8572
- #: wppa-settings-autosave.php:2397
8573
- msgid "Show Start and Stop for running slideshow on lightbox."
8574
- msgstr ""
8575
-
8576
- #: wppa-settings-autosave.php:2405
8577
- msgid "Overlay show legenda"
8578
- msgstr ""
8579
-
8580
- #: wppa-settings-autosave.php:2406
8581
- msgid "Show \"Press f for fullsize\" etc. on lightbox."
8582
- msgstr ""
8583
-
8584
- #: wppa-settings-autosave.php:2407
8585
- msgid "Independant of this setting, it will not show up on mobile devices."
8586
- msgstr ""
8587
-
8588
- #: wppa-settings-autosave.php:2414
8589
- msgid "Show fullscreen icons"
8590
- msgstr ""
8591
-
8592
- #: wppa-settings-autosave.php:2415
8593
- msgid "Shows fullscreen and back to normal icon buttons on upper right corner"
8594
- msgstr ""
8595
-
8596
- #: wppa-settings-autosave.php:2423
8597
- msgid "Overlay show counter"
8598
- msgstr ""
8599
-
8600
- #: wppa-settings-autosave.php:2424
8601
- msgid "Show the x/y counter below the image."
8602
- msgstr ""
8603
-
8604
- #: wppa-settings-autosave.php:2432
8605
- #, fuzzy
8606
- msgid "Show Zoom in"
8607
- msgstr "Zoom ind"
8608
-
8609
- #: wppa-settings-autosave.php:2433
8610
- msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
8611
- msgstr ""
8612
-
8613
- #: wppa-settings-autosave.php:2434
8614
- msgid ""
8615
- "If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
8616
- "contains the photo name."
8617
- msgstr ""
8618
-
8619
- #: wppa-settings-autosave.php:2442
8620
- msgid "Frontend upload configuration settings"
8621
- msgstr ""
8622
-
8623
- #: wppa-settings-autosave.php:2444
8624
- #, fuzzy
8625
- msgid "User upload Photos"
8626
- msgstr "Bruger %s indsendte foto %s ind i album %s"
8627
-
8628
- #: wppa-settings-autosave.php:2445
8629
- #, fuzzy
8630
- msgid "Enable frontend upload."
8631
- msgstr "<b>FEJL: Ugyldigt fors&oslash;g p&aring; at uploade en fil.</b>"
8632
-
8633
- #: wppa-settings-autosave.php:2446
8634
- msgid ""
8635
- "If you check this item, frontend upload will be enabled according to the "
8636
- "rules set in the following items of this table."
8637
- msgstr ""
8638
-
8639
- #: wppa-settings-autosave.php:2454
8640
- #, fuzzy
8641
- msgid "User upload Photos login"
8642
- msgstr "Bruger %s indsendte foto %s ind i album %s"
8643
-
8644
- #: wppa-settings-autosave.php:2455
8645
- msgid "Frontend upload requires the user is logged in."
8646
- msgstr ""
8647
-
8648
- #: wppa-settings-autosave.php:2456
8649
- msgid ""
8650
- "If you uncheck this box, make sure you check the item Owners only in Table "
8651
- "VII-D1."
8652
- msgstr ""
8653
-
8654
- #: wppa-settings-autosave.php:2457
8655
- msgid ""
8656
- "Also: set the owner to ---public--- of the albums that are allowed to be "
8657
- "uploaded to."
8658
- msgstr ""
8659
-
8660
- #: wppa-settings-autosave.php:2464
8661
- #, fuzzy
8662
- msgid "User upload Ajax"
8663
- msgstr "Bruger %s indsendte foto %s ind i album %s"
8664
-
8665
- #: wppa-settings-autosave.php:2465
8666
- msgid "Shows the upload progression bar."
8667
- msgstr ""
8668
-
8669
- #: wppa-settings-autosave.php:2473
8670
- msgid "Show Copyright"
8671
- msgstr ""
8672
-
8673
- #: wppa-settings-autosave.php:2474
8674
- msgid "Show a copyright warning on frontend upload locations."
8675
- msgstr ""
8676
-
8677
- #: wppa-settings-autosave.php:2483
8678
- msgid "Copyright notice"
8679
- msgstr ""
8680
-
8681
- #: wppa-settings-autosave.php:2484
8682
- msgid "The message to be displayed."
8683
- msgstr ""
8684
-
8685
- #: wppa-settings-autosave.php:2492
8686
- msgid "User Watermark"
8687
- msgstr ""
8688
-
8689
- #: wppa-settings-autosave.php:2493
8690
- msgid "Uploading users may select watermark settings"
8691
- msgstr ""
8692
-
8693
- #: wppa-settings-autosave.php:2494
8694
- msgid ""
8695
- "If checked, anyone who can upload and/or import photos can overrule the "
8696
- "default watermark settings."
8697
- msgstr ""
8698
-
8699
- #: wppa-settings-autosave.php:2501
8700
- #, fuzzy
8701
- msgid "User name"
8702
- msgstr "Dit navn"
8703
-
8704
- #: wppa-settings-autosave.php:2502
8705
- msgid "Uploading users may overrule the default name."
8706
- msgstr ""
8707
-
8708
- #: wppa-settings-autosave.php:2503
8709
- msgid ""
8710
- "If checked, the default photo name as defined in Table IX-D13 may be "
8711
- "overruled by the user."
8712
- msgstr ""
8713
-
8714
- #: wppa-settings-autosave.php:2510
8715
- msgid "Apply Newphoto desc user"
8716
- msgstr ""
8717
-
8718
- #: wppa-settings-autosave.php:2511
8719
- msgid "Give each new frontend uploaded photo a standard description."
8720
- msgstr ""
8721
-
8722
- #: wppa-settings-autosave.php:2512
8723
- msgid ""
8724
- "If checked, each new photo will get the description (template) as specified "
8725
- "in Table IX-D5."
8726
- msgstr ""
8727
-
8728
- #: wppa-settings-autosave.php:2519
8729
- msgid "User desc"
8730
- msgstr ""
8731
-
8732
- #: wppa-settings-autosave.php:2520
8733
- msgid "Uploading users may overrule the default description."
8734
- msgstr ""
8735
-
8736
- #: wppa-settings-autosave.php:2528
8737
- #, fuzzy
8738
- msgid "User upload custom"
8739
- msgstr "Bruger %s indsendte foto %s ind i album %s"
8740
-
8741
- #: wppa-settings-autosave.php:2529
8742
- msgid "Frontend upload can fill in custom data fields."
8743
- msgstr ""
8744
-
8745
- #: wppa-settings-autosave.php:2537
8746
- #, fuzzy
8747
- msgid "User upload tags"
8748
- msgstr "Bruger %s indsendte foto %s ind i album %s"
8749
-
8750
- #: wppa-settings-autosave.php:2538
8751
- msgid "Frontend upload can add tags."
8752
- msgstr ""
8753
-
8754
- #: wppa-settings-autosave.php:2539
8755
- msgid "You can configure the details of tag addition in Table IX-D18.x"
8756
- msgstr ""
8757
-
8758
- #: wppa-settings-autosave.php:2547 wppa-settings-autosave.php:2575
8759
- #: wppa-settings-autosave.php:2603
8760
- #, fuzzy
8761
- msgid "Tag selection box"
8762
- msgstr "--- vises ikke ---"
8763
-
8764
- #: wppa-settings-autosave.php:2548 wppa-settings-autosave.php:2576
8765
- #: wppa-settings-autosave.php:2604
8766
- msgid "Front-end upload tags selecion box."
8767
- msgstr ""
8768
-
8769
- #: wppa-settings-autosave.php:2552 wppa-settings-autosave.php:2580
8770
- #: wppa-settings-autosave.php:2608
8771
- msgid "On:"
8772
- msgstr ""
8773
-
8774
- #: wppa-settings-autosave.php:2552 wppa-settings-autosave.php:2580
8775
- #: wppa-settings-autosave.php:2608
8776
- #, fuzzy
8777
- msgid "Multi:"
8778
- msgstr "Multi-spot"
8779
-
8780
- #: wppa-settings-autosave.php:2557 wppa-settings-autosave.php:2585
8781
- #: wppa-settings-autosave.php:2613
8782
- msgid "Caption box"
8783
- msgstr ""
8784
-
8785
- #: wppa-settings-autosave.php:2558 wppa-settings-autosave.php:2586
8786
- #: wppa-settings-autosave.php:2614
8787
- msgid "The title of the tag selection box."
8788
- msgstr ""
8789
-
8790
- #: wppa-settings-autosave.php:2566 wppa-settings-autosave.php:2594
8791
- #: wppa-settings-autosave.php:2622
8792
- msgid "Tags box"
8793
- msgstr ""
8794
-
8795
- #: wppa-settings-autosave.php:2567 wppa-settings-autosave.php:2595
8796
- #: wppa-settings-autosave.php:2623
8797
- #, fuzzy
8798
- msgid "The tags in the selection box."
8799
- msgstr "--- vises ikke ---"
8800
-
8801
- #: wppa-settings-autosave.php:2568 wppa-settings-autosave.php:2596
8802
- #: wppa-settings-autosave.php:2624
8803
- msgid ""
8804
- "Enter the tags you want to appear in the selection box. Empty means: all "
8805
- "existing tags"
8806
- msgstr ""
8807
-
8808
- #: wppa-settings-autosave.php:2631
8809
- msgid "New tags"
8810
- msgstr ""
8811
-
8812
- #: wppa-settings-autosave.php:2632
8813
- msgid "Input field for any user defined tags."
8814
- msgstr ""
8815
-
8816
- #: wppa-settings-autosave.php:2640
8817
- #, fuzzy
8818
- msgid "New tags caption"
8819
- msgstr "Ingen blitz funktion"
8820
-
8821
- #: wppa-settings-autosave.php:2641
8822
- msgid "The caption above the tags input field."
8823
- msgstr ""
8824
-
8825
- #: wppa-settings-autosave.php:2649
8826
- #, fuzzy
8827
- msgid "Preview tags"
8828
- msgstr "Forrige billede"
8829
-
8830
- #: wppa-settings-autosave.php:2650
8831
- msgid "Show a preview of all tags that will be added to the photo info."
8832
- msgstr ""
8833
-
8834
- #: wppa-settings-autosave.php:2659
8835
- msgid "Miscellaneous visibility settings"
8836
- msgstr ""
8837
-
8838
- #: wppa-settings-autosave.php:2661
8839
- msgid "Frontend ending label"
8840
- msgstr ""
8841
-
8842
- #: wppa-settings-autosave.php:2662
8843
- msgid "Frontend upload / create / edit dialog closing label text."
8844
- msgstr ""
8845
-
8846
- #: wppa-settings-autosave.php:2665
8847
- msgid "Abort"
8848
- msgstr "Aborto"
8849
-
8850
- #: wppa-settings-autosave.php:2665
8851
- msgid "Close"
8852
- msgstr "Chiudi"
8853
-
8854
- #: wppa-settings-autosave.php:2665
8855
- msgid "Exit"
8856
- msgstr "Uscita"
8857
-
8858
- #: wppa-settings-autosave.php:2665
8859
- msgid "Quit"
8860
- msgstr "Esci"
8861
-
8862
- #: wppa-settings-autosave.php:2673
8863
- msgid "Widget thumbs fontsize"
8864
- msgstr ""
8865
-
8866
- #: wppa-settings-autosave.php:2674
8867
- msgid "Font size for thumbnail subtext in widgets."
8868
- msgstr ""
8869
-
8870
- #: wppa-settings-autosave.php:2682
8871
- msgid "Arrow color"
8872
- msgstr ""
8873
-
8874
- #: wppa-settings-autosave.php:2683
8875
- msgid "Left/right browsing arrow color."
8876
- msgstr ""
8877
-
8878
- #: wppa-settings-autosave.php:2684
8879
- msgid "Enter the color of the filmstrip navigation arrows."
8880
- msgstr ""
8881
-
8882
- #: wppa-settings-autosave.php:2691
8883
- msgid "Owner on new line"
8884
- msgstr ""
8885
-
8886
- #: wppa-settings-autosave.php:2692
8887
- msgid "Place the (owner) text on a new line."
8888
- msgstr ""
8889
-
8890
- #: wppa-settings-autosave.php:2700
8891
- msgid "Custom datafields"
8892
- msgstr ""
8893
-
8894
- #: wppa-settings-autosave.php:2701
8895
- msgid "Define up to 10 custom data fields for photos."
8896
- msgstr ""
8897
-
8898
- #: wppa-settings-autosave.php:2711
8899
- #, php-format
8900
- msgid "Name and visibility %s"
8901
- msgstr ""
8902
-
8903
- #: wppa-settings-autosave.php:2712
8904
- #, php-format
8905
- msgid "The caption for field %s and visibility at frontend."
8906
- msgstr ""
8907
-
8908
- #: wppa-settings-autosave.php:2713
8909
- #, php-format
8910
- msgid ""
8911
- "If you check the box, the value of this field is displayable in photo "
8912
- "descriptions at the frontend with keyword w#c%s"
8913
- msgstr ""
8914
-
8915
- #: wppa-settings-autosave.php:2743
8916
- msgid "Table III:"
8917
- msgstr ""
8918
-
8919
- #: wppa-settings-autosave.php:2743
8920
- msgid "Backgrounds:"
8921
- msgstr ""
8922
-
8923
- #: wppa-settings-autosave.php:2744
8924
- msgid "This table describes the backgrounds of wppa+ elements."
8925
- msgstr ""
8926
-
8927
- #: wppa-settings-autosave.php:2754 wppa-settings-autosave.php:3065
8928
- msgid "Background color"
8929
- msgstr ""
8930
-
8931
- #: wppa-settings-autosave.php:2755 wppa-settings-autosave.php:2757
8932
- #: wppa-settings-autosave.php:3066 wppa-settings-autosave.php:3068
8933
- msgid "Sample"
8934
- msgstr ""
8935
-
8936
- #: wppa-settings-autosave.php:2756 wppa-settings-autosave.php:3067
8937
- msgid "Border color"
8938
- msgstr ""
8939
-
8940
- #: wppa-settings-autosave.php:2765
8941
- msgid "Slideshow elements backgrounds"
8942
- msgstr ""
8943
-
8944
- #: wppa-settings-autosave.php:2767
8945
- msgid "Nav"
8946
- msgstr ""
8947
-
8948
- #: wppa-settings-autosave.php:2768
8949
- msgid "Navigation bars."
8950
- msgstr ""
8951
-
8952
- #: wppa-settings-autosave.php:2769
8953
- msgid "Enter valid CSS colors for navigation backgrounds and borders."
8954
- msgstr ""
8955
-
8956
- #: wppa-settings-autosave.php:2780
8957
- msgid "SlideImg"
8958
- msgstr ""
8959
-
8960
- #: wppa-settings-autosave.php:2781
8961
- #, fuzzy
8962
- msgid "Fullsize Slideshow Photos."
8963
- msgstr "Se forside fotos"
8964
-
8965
- #: wppa-settings-autosave.php:2782
8966
- msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
8967
- msgstr ""
8968
-
8969
- #: wppa-settings-autosave.php:2783
8970
- msgid "The colors may be equal or \"transparent\""
8971
- msgstr ""
8972
-
8973
- #: wppa-settings-autosave.php:2784
8974
- msgid ""
8975
- "For more information about slideshow image borders see the help on Table I-B4"
8976
- msgstr ""
8977
-
8978
- #: wppa-settings-autosave.php:2795 wppa-settings-autosave.php:4379
8979
- msgid "Numbar"
8980
- msgstr ""
8981
-
8982
- #: wppa-settings-autosave.php:2796
8983
- msgid "Number bar box background."
8984
- msgstr ""
8985
-
8986
- #: wppa-settings-autosave.php:2797
8987
- msgid "Enter valid CSS colors for numbar box backgrounds and borders."
8988
- msgstr ""
8989
-
8990
- #: wppa-settings-autosave.php:2808
8991
- msgid "Numbar active"
8992
- msgstr ""
8993
-
8994
- #: wppa-settings-autosave.php:2809
8995
- msgid "Number bar active box background."
8996
- msgstr ""
8997
-
8998
- #: wppa-settings-autosave.php:2810
8999
- msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
9000
- msgstr ""
9001
-
9002
- #: wppa-settings-autosave.php:2821
9003
- msgid "Name/desc"
9004
- msgstr ""
9005
-
9006
- #: wppa-settings-autosave.php:2822
9007
- msgid "Name and Description bars."
9008
- msgstr ""
9009
-
9010
- #: wppa-settings-autosave.php:2823
9011
- msgid ""
9012
- "Enter valid CSS colors for name and description box backgrounds and borders."
9013
- msgstr ""
9014
-
9015
- #: wppa-settings-autosave.php:2835
9016
- msgid "Comment input and display areas."
9017
- msgstr ""
9018
-
9019
- #: wppa-settings-autosave.php:2836
9020
- msgid "Enter valid CSS colors for comment box backgrounds and borders."
9021
- msgstr ""
9022
-
9023
- #: wppa-settings-autosave.php:2847 wppa-settings-autosave.php:7663
9024
- #: wppa-settings-autosave.php:7708
9025
- msgid "Custom"
9026
- msgstr ""
9027
-
9028
- #: wppa-settings-autosave.php:2848
9029
- msgid "Custom box background."
9030
- msgstr ""
9031
-
9032
- #: wppa-settings-autosave.php:2849
9033
- msgid "Enter valid CSS colors for custom box backgrounds and borders."
9034
- msgstr ""
9035
-
9036
- #: wppa-settings-autosave.php:2860
9037
- msgid "IPTC"
9038
- msgstr ""
9039
-
9040
- #: wppa-settings-autosave.php:2861
9041
- msgid "IPTC display box background."
9042
- msgstr ""
9043
-
9044
- #: wppa-settings-autosave.php:2862
9045
- msgid "Enter valid CSS colors for iptc box backgrounds and borders."
9046
- msgstr ""
9047
-
9048
- #: wppa-settings-autosave.php:2873
9049
- msgid "EXIF"
9050
- msgstr ""
9051
-
9052
- #: wppa-settings-autosave.php:2874
9053
- msgid "EXIF display box background."
9054
- msgstr ""
9055
-
9056
- #: wppa-settings-autosave.php:2875
9057
- msgid "Enter valid CSS colors for exif box backgrounds and borders."
9058
- msgstr ""
9059
-
9060
- #: wppa-settings-autosave.php:2886
9061
- msgid "Share"
9062
- msgstr ""
9063
-
9064
- #: wppa-settings-autosave.php:2887
9065
- msgid "Share box display background."
9066
- msgstr ""
9067
-
9068
- #: wppa-settings-autosave.php:2888
9069
- msgid "Enter valid CSS colors for share box backgrounds and borders."
9070
- msgstr ""
9071
-
9072
- #: wppa-settings-autosave.php:2899
9073
- msgid "Other backgrounds"
9074
- msgstr ""
9075
-
9076
- #: wppa-settings-autosave.php:2901
9077
- msgid "Even"
9078
- msgstr ""
9079
-
9080
- #: wppa-settings-autosave.php:2902
9081
- msgid "Even background."
9082
- msgstr ""
9083
-
9084
- #: wppa-settings-autosave.php:2903
9085
- msgid ""
9086
- "Enter valid CSS colors for even numbered backgrounds and borders of album "
9087
- "covers and thumbnail displays 'As covers'."
9088
- msgstr ""
9089
-
9090
- #: wppa-settings-autosave.php:2914
9091
- msgid "Odd"
9092
- msgstr ""
9093
-
9094
- #: wppa-settings-autosave.php:2915
9095
- msgid "Odd background."
9096
- msgstr ""
9097
-
9098
- #: wppa-settings-autosave.php:2916
9099
- msgid ""
9100
- "Enter valid CSS colors for odd numbered backgrounds and borders of album "
9101
- "covers and thumbnail displays 'As covers'."
9102
- msgstr ""
9103
-
9104
- #: wppa-settings-autosave.php:2927
9105
- #, fuzzy
9106
- msgid "Thumbnail padding"
9107
- msgstr "Foto Top Ti"
9108
-
9109
- #: wppa-settings-autosave.php:2928
9110
- msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
9111
- msgstr ""
9112
-
9113
- #: wppa-settings-autosave.php:2929
9114
- msgid ""
9115
- "Enter valid CSS color hexadecimal like #000000 for black or #ffffff for "
9116
- "white for the padded thumbnails."
9117
- msgstr ""
9118
-
9119
- #: wppa-settings-autosave.php:2940
9120
- #, fuzzy
9121
- msgid "Img"
9122
- msgstr "Billede"
9123
-
9124
- #: wppa-settings-autosave.php:2941
9125
- msgid "Cover Photos and popups."
9126
- msgstr ""
9127
-
9128
- #: wppa-settings-autosave.php:2942
9129
- msgid ""
9130
- "Enter valid CSS colors for Cover photo and popup backgrounds and borders."
9131
- msgstr ""
9132
-
9133
- #: wppa-settings-autosave.php:2954
9134
- msgid "Upload box background."
9135
- msgstr ""
9136
-
9137
- #: wppa-settings-autosave.php:2955
9138
- msgid "Enter valid CSS colors for upload box backgrounds and borders."
9139
- msgstr ""
9140
-
9141
- #: wppa-settings-autosave.php:2966
9142
- #, fuzzy
9143
- msgid "Multitag"
9144
- msgstr "Multi-spot"
9145
-
9146
- #: wppa-settings-autosave.php:2967
9147
- msgid "Multitag box background."
9148
- msgstr ""
9149
-
9150
- #: wppa-settings-autosave.php:2968
9151
- msgid "Enter valid CSS colors for multitag box backgrounds and borders."
9152
- msgstr ""
9153
-
9154
- #: wppa-settings-autosave.php:2979
9155
- msgid "Tagcloud"
9156
- msgstr ""
9157
-
9158
- #: wppa-settings-autosave.php:2980
9159
- msgid "Tagcloud box background."
9160
- msgstr ""
9161
-
9162
- #: wppa-settings-autosave.php:2981
9163
- msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
9164
- msgstr ""
9165
-
9166
- #: wppa-settings-autosave.php:2992
9167
- #, fuzzy
9168
- msgid "Superview"
9169
- msgstr "Se forside fotos"
9170
-
9171
- #: wppa-settings-autosave.php:2993
9172
- msgid "Superview box background."
9173
- msgstr ""
9174
-
9175
- #: wppa-settings-autosave.php:2994
9176
- msgid "Enter valid CSS colors for superview box backgrounds and borders."
9177
- msgstr ""
9178
-
9179
- #: wppa-settings-autosave.php:3006
9180
- msgid "Search box background."
9181
- msgstr ""
9182
-
9183
- #: wppa-settings-autosave.php:3007
9184
- msgid "Enter valid CSS colors for search box backgrounds and borders."
9185
- msgstr ""
9186
-
9187
- #: wppa-settings-autosave.php:3018
9188
- #, fuzzy
9189
- msgid "BestOf"
9190
- msgstr "fotos"
9191
-
9192
- #: wppa-settings-autosave.php:3019
9193
- msgid "BestOf box background."
9194
- msgstr ""
9195
-
9196
- #: wppa-settings-autosave.php:3020
9197
- msgid "Enter valid CSS colors for bestof box backgrounds and borders."
9198
- msgstr ""
9199
-
9200
- #: wppa-settings-autosave.php:3031
9201
- msgid "Calendar"
9202
- msgstr ""
9203
-
9204
- #: wppa-settings-autosave.php:3032
9205
- msgid "Calendar box background."
9206
- msgstr ""
9207
-
9208
- #: wppa-settings-autosave.php:3033
9209
- msgid "Enter valid CSS colors for calendar box backgrounds and borders."
9210
- msgstr ""
9211
-
9212
- #: wppa-settings-autosave.php:3044
9213
- msgid "Stereo"
9214
- msgstr ""
9215
-
9216
- #: wppa-settings-autosave.php:3045
9217
- msgid "Stereo mode selection box background."
9218
- msgstr ""
9219
-
9220
- #: wppa-settings-autosave.php:3046
9221
- msgid ""
9222
- "Enter valid CSS colors for stereo mode selection box backgrounds and borders."
9223
- msgstr ""
9224
-
9225
- #: wppa-settings-autosave.php:3078
9226
- msgid "Table IV:"
9227
- msgstr ""
9228
-
9229
- #: wppa-settings-autosave.php:3078
9230
- msgid "Behaviour:"
9231
- msgstr ""
9232
-
9233
- #: wppa-settings-autosave.php:3079
9234
- msgid "This table describes the dynamic behaviour of certain wppa+ elements."
9235
- msgstr ""
9236
-
9237
- #: wppa-settings-autosave.php:3097
9238
- msgid "System related settings"
9239
- msgstr ""
9240
-
9241
- #: wppa-settings-autosave.php:3099
9242
- msgid "Use Ajax"
9243
- msgstr ""
9244
-
9245
- #: wppa-settings-autosave.php:3100
9246
- msgid "Use Ajax as much as is possible and implemented."
9247
- msgstr ""
9248
-
9249
- #: wppa-settings-autosave.php:3101
9250
- msgid ""
9251
- "If this box is ticked, page content updates from within wppa+ displays will "
9252
- "be Ajax based as much as possible."
9253
- msgstr ""
9254
-
9255
- #: wppa-settings-autosave.php:3109
9256
- msgid "Ajax NON Admin"
9257
- msgstr ""
9258
-
9259
- #: wppa-settings-autosave.php:3110
9260
- msgid "Frontend ajax use no admin files."
9261
- msgstr ""
9262
-
9263
- #: wppa-settings-autosave.php:3111
9264
- msgid "If you want to password protect wp-admin, check this box."
9265
- msgstr ""
9266
-
9267
- #: wppa-settings-autosave.php:3112
9268
- msgid ""
9269
- "In rare cases changing page content does not work when this box is checked. "
9270
- "Verify the functionality!"
9271
- msgstr ""
9272
-
9273
- #: wppa-settings-autosave.php:3119
9274
- #, fuzzy
9275
- msgid "Photo names in urls"
9276
- msgstr "Risultati della ricerca per: %s"
9277
-
9278
- #: wppa-settings-autosave.php:3120
9279
- msgid "Display photo names in urls."
9280
- msgstr ""
9281
-
9282
- #: wppa-settings-autosave.php:3121
9283
- msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
9284
- msgstr ""
9285
-
9286
- #: wppa-settings-autosave.php:3122
9287
- msgid ""
9288
- "It is your responsability to avoid duplicate names of photos in the same "
9289
- "album."
9290
- msgstr ""
9291
-
9292
- #: wppa-settings-autosave.php:3129
9293
- #, fuzzy
9294
- msgid "Album names in urls"
9295
- msgstr "Album administration"
9296
-
9297
- #: wppa-settings-autosave.php:3130
9298
- msgid "Display album names in urls."
9299
- msgstr ""
9300
-
9301
- #: wppa-settings-autosave.php:3131
9302
- msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
9303
- msgstr ""
9304
-
9305
- #: wppa-settings-autosave.php:3132
9306
- msgid ""
9307
- "It is your responsability to avoid duplicate names of albums in the system."
9308
- msgstr ""
9309
-
9310
- #: wppa-settings-autosave.php:3139
9311
- msgid "Use short query args"
9312
- msgstr ""
9313
-
9314
- #: wppa-settings-autosave.php:3140
9315
- msgid "Use &album=... &photo=..."
9316
- msgstr ""
9317
-
9318
- #: wppa-settings-autosave.php:3141
9319
- msgid ""
9320
- "Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
9321
- "album=... &wppa-photo=..."
9322
- msgstr ""
9323
-
9324
- #: wppa-settings-autosave.php:3142
9325
- msgid ""
9326
- "Use this setting only when there are no conflicts with other plugins that "
9327
- "may interprete arguments like &album= etc."
9328
- msgstr ""
9329
-
9330
- #: wppa-settings-autosave.php:3149
9331
- msgid "Enable pretty links"
9332
- msgstr ""
9333
-
9334
- #: wppa-settings-autosave.php:3150
9335
- msgid "Enable the generation and understanding of pretty links."
9336
- msgstr ""
9337
-
9338
- #: wppa-settings-autosave.php:3151
9339
- msgid ""
9340
- "If checked, links to social media and the qr code will have \"/token1/token2/"
9341
- "\" etc in stead of \"&arg1=..&arg2=..\" etc."
9342
- msgstr ""
9343
-
9344
- #: wppa-settings-autosave.php:3152
9345
- msgid ""
9346
- "These types of links will be interpreted and cause a redirection on entering."
9347
- msgstr ""
9348
-
9349
- #: wppa-settings-autosave.php:3153
9350
- msgid ""
9351
- "It is recommended to check this box. It shortens links dramatically and "
9352
- "simplifies qr codes."
9353
- msgstr ""
9354
-
9355
- #: wppa-settings-autosave.php:3154
9356
- msgid ""
9357
- "However, you may encounter conflicts with themes and/or other plugins, so "
9358
- "test it troughly!"
9359
- msgstr ""
9360
-
9361
- #: wppa-settings-autosave.php:3155
9362
- msgid ""
9363
- "Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
9364
- msgstr ""
9365
-
9366
- #: wppa-settings-autosave.php:3162
9367
- #, fuzzy
9368
- msgid "Update addressline"
9369
- msgstr ""
9370
- "Non hai i permessi per potere aggiornare le informazioni di questo album"
9371
-
9372
- #: wppa-settings-autosave.php:3163
9373
- msgid "Update the addressline after an ajax action or next slide."
9374
- msgstr ""
9375
-
9376
- #: wppa-settings-autosave.php:3164
9377
- msgid ""
9378
- "If checked, refreshing the page will show the current content and the "
9379
- "browsers back and forth arrows will browse the history on the page."
9380
- msgstr ""
9381
-
9382
- #: wppa-settings-autosave.php:3165
9383
- msgid ""
9384
- "If unchecked, refreshing the page will re-display the content of the "
9385
- "original page."
9386
- msgstr ""
9387
-
9388
- #: wppa-settings-autosave.php:3166
9389
- msgid ""
9390
- "This will only work on browsers that support history.pushState() and "
9391
- "therefor NOT in IE"
9392
- msgstr ""
9393
-
9394
- #: wppa-settings-autosave.php:3167
9395
- msgid "Switching this off will affect the browsers behaviour."
9396
- msgstr ""
9397
-
9398
- #: wppa-settings-autosave.php:3174
9399
- msgid "Render shortcode always"
9400
- msgstr ""
9401
-
9402
- #: wppa-settings-autosave.php:3175
9403
- msgid "This will skip the check on proper initialisation."
9404
- msgstr ""
9405
-
9406
- #: wppa-settings-autosave.php:3176
9407
- msgid ""
9408
- "This setting is required for certain themes like Gantry to prevent the "
9409
- "display of wppa placeholders like [WPPA+ Photo display]."
9410
- msgstr ""
9411
-
9412
- #: wppa-settings-autosave.php:3177
9413
- #, php-format
9414
- msgid ""
9415
- "If this check is needed, you can use shortcodes like [wppa ...] only, not "
9416
- "scripts like %%wppa%%."
9417
- msgstr ""
9418
-
9419
- #: wppa-settings-autosave.php:3184
9420
- msgid "Track viewcounts"
9421
- msgstr ""
9422
-
9423
- #: wppa-settings-autosave.php:3185
9424
- msgid "Register number of views of albums and photos."
9425
- msgstr ""
9426
-
9427
- #: wppa-settings-autosave.php:3193
9428
- #, fuzzy
9429
- msgid "Auto page"
9430
- msgstr "Automatisk, afskudt"
9431
-
9432
- #: wppa-settings-autosave.php:3194
9433
- msgid "Create a wp page for every fullsize image."
9434
- msgstr ""
9435
-
9436
- #: wppa-settings-autosave.php:3198
9437
- msgid "Please reload this page after changing!"
9438
- msgstr ""
9439
-
9440
- #: wppa-settings-autosave.php:3204
9441
- msgid "Auto page display"
9442
- msgstr ""
9443
-
9444
- #: wppa-settings-autosave.php:3205
9445
- msgid "The type of display on the autopage pages."
9446
- msgstr ""
9447
-
9448
- #: wppa-settings-autosave.php:3208
9449
- #, fuzzy
9450
- msgid "Single photo"
9451
- msgstr "Se fotos"
9452
-
9453
- #: wppa-settings-autosave.php:3208
9454
- #, fuzzy
9455
- msgid "Media type photo"
9456
- msgstr "N&aelig;ste billede"
9457
-
9458
- #: wppa-settings-autosave.php:3208
9459
- msgid "In the style of a slideshow"
9460
- msgstr ""
9461
-
9462
- #: wppa-settings-autosave.php:3215
9463
- msgid "Auto page links"
9464
- msgstr ""
9465
-
9466
- #: wppa-settings-autosave.php:3216
9467
- msgid "The location for the pagelinks."
9468
- msgstr ""
9469
-
9470
- #: wppa-settings-autosave.php:3219
9471
- msgid "At top and bottom"
9472
- msgstr ""
9473
-
9474
- #: wppa-settings-autosave.php:3226
9475
- msgid "Defer javascript"
9476
- msgstr ""
9477
-
9478
- #: wppa-settings-autosave.php:3227
9479
- msgid "Put javascript near the end of the page."
9480
- msgstr ""
9481
-
9482
- #: wppa-settings-autosave.php:3228
9483
- msgid ""
9484
- "If checkd: May fix layout problems and broken slideshows. May speed up or "
9485
- "slow down page appearing."
9486
- msgstr ""
9487
-
9488
- #: wppa-settings-autosave.php:3235
9489
- msgid "Inline styles"
9490
- msgstr ""
9491
-
9492
- #: wppa-settings-autosave.php:3236
9493
- msgid "Set style specifications inline."
9494
- msgstr ""
9495
-
9496
- #: wppa-settings-autosave.php:3237
9497
- msgid "If checked: May fix layout problems, but slows down page appearing."
9498
- msgstr ""
9499
-
9500
- #: wppa-settings-autosave.php:3244
9501
- msgid "Custom style"
9502
- msgstr ""
9503
-
9504
- #: wppa-settings-autosave.php:3245
9505
- msgid "Enter custom style specs here."
9506
- msgstr ""
9507
-
9508
- #: wppa-settings-autosave.php:3253
9509
- msgid "Use customized style file"
9510
- msgstr ""
9511
-
9512
- #: wppa-settings-autosave.php:3254 wppa-settings-autosave.php:3263
9513
- msgid "This feature is highly discouraged."
9514
- msgstr ""
9515
-
9516
- #: wppa-settings-autosave.php:3262
9517
- msgid "Use customized theme file"
9518
- msgstr ""
9519
-
9520
- #: wppa-settings-autosave.php:3271
9521
- msgid "Enable photo html access"
9522
- msgstr ""
9523
-
9524
- #: wppa-settings-autosave.php:3272
9525
- msgid "Creates an .htaccess file in .../uploads/wppa/"
9526
- msgstr ""
9527
-
9528
- #: wppa-settings-autosave.php:3273
9529
- msgid ""
9530
- "If checked: assures http access to your wppa photo files, despite other ."
9531
- "htaccess settings that may protect these files."
9532
- msgstr ""
9533
-
9534
- #: wppa-settings-autosave.php:3280
9535
- msgid "Lazy or HTML comp"
9536
- msgstr ""
9537
-
9538
- #: wppa-settings-autosave.php:3281
9539
- msgid "Tick this box when you use lazy load or html compression."
9540
- msgstr ""
9541
-
9542
- #: wppa-settings-autosave.php:3282
9543
- msgid ""
9544
- "If the filmstrip images do not show up and you have a lazy load or html "
9545
- "optimizing plugin active: Check this box"
9546
- msgstr ""
9547
-
9548
- #: wppa-settings-autosave.php:3289
9549
- #, fuzzy
9550
- msgid "Thumbs first"
9551
- msgstr "Miniature"
9552
-
9553
- #: wppa-settings-autosave.php:3290
9554
- msgid "When displaying album content: thumbnails before subalbums."
9555
- msgstr ""
9556
-
9557
- #: wppa-settings-autosave.php:3298
9558
- msgid "Login links"
9559
- msgstr ""
9560
-
9561
- #: wppa-settings-autosave.php:3299
9562
- #, fuzzy
9563
- msgid "You must login to... links to login page."
9564
- msgstr "Du skal <a href=\"%s\">logge ind</a> for at stemme"
9565
-
9566
- #: wppa-settings-autosave.php:3307
9567
- msgid "Enable Video"
9568
- msgstr ""
9569
-
9570
- #: wppa-settings-autosave.php:3308
9571
- msgid "Enables video support."
9572
- msgstr ""
9573
-
9574
- #: wppa-settings-autosave.php:3317
9575
- msgid "Enable Audio"
9576
- msgstr ""
9577
-
9578
- #: wppa-settings-autosave.php:3318
9579
- msgid "Enables audio support."
9580
- msgstr ""
9581
-
9582
- #: wppa-settings-autosave.php:3326
9583
- msgid "Enable 3D Stereo"
9584
- msgstr ""
9585
-
9586
- #: wppa-settings-autosave.php:3327
9587
- msgid "Enables 3D stereo photo support."
9588
- msgstr ""
9589
-
9590
- #: wppa-settings-autosave.php:3335
9591
- msgid "Relative urls"
9592
- msgstr ""
9593
-
9594
- #: wppa-settings-autosave.php:3336
9595
- msgid "Use relative urls only."
9596
- msgstr ""
9597
-
9598
- #: wppa-settings-autosave.php:3345
9599
- msgid "Slideshow related settings"
9600
- msgstr ""
9601
-
9602
- #: wppa-settings-autosave.php:3347
9603
- msgid "V align"
9604
- msgstr ""
9605
-
9606
- #: wppa-settings-autosave.php:3348
9607
- msgid "Vertical alignment of slideshow images."
9608
- msgstr ""
9609
-
9610
- #: wppa-settings-autosave.php:3349
9611
- msgid "Specify the vertical alignment of slideshow images."
9612
- msgstr ""
9613
-
9614
- #: wppa-settings-autosave.php:3350
9615
- msgid ""
9616
- "If you select --- none ---, the photos will not be centered horizontally "
9617
- "either."
9618
- msgstr ""
9619
-
9620
- #: wppa-settings-autosave.php:3352 wppa-settings-autosave.php:3617
9621
- #: wppa-slideshow-widget.php:214
9622
- #, fuzzy
9623
- msgid "top"
9624
- msgstr "Stop"
9625
-
9626
- #: wppa-settings-autosave.php:3352 wppa-settings-autosave.php:3366
9627
- #: wppa-settings-autosave.php:3617 wppa-slideshow-widget.php:215
9628
- #: wppa-tinymce-scripts.php:289 wppa-tinymce-shortcodes.php:515
9629
- #: wppa-widget-admin.php:78
9630
- msgid "center"
9631
- msgstr ""
9632
-
9633
- #: wppa-settings-autosave.php:3352 wppa-settings-autosave.php:3617
9634
- #: wppa-slideshow-widget.php:216
9635
- msgid "bottom"
9636
- msgstr ""
9637
-
9638
- #: wppa-settings-autosave.php:3352 wppa-slideshow-widget.php:217
9639
- msgid "fit"
9640
- msgstr ""
9641
-
9642
- #: wppa-settings-autosave.php:3360
9643
- msgid "H align"
9644
- msgstr ""
9645
-
9646
- #: wppa-settings-autosave.php:3361
9647
- msgid "Horizontal alignment of slideshow images."
9648
- msgstr ""
9649
-
9650
- #: wppa-settings-autosave.php:3362
9651
- msgid ""
9652
- "Specify the horizontal alignment of slideshow images. If you specify --- "
9653
- "none --- , no horizontal alignment will take place."
9654
- msgstr ""
9655
-
9656
- #: wppa-settings-autosave.php:3363
9657
- msgid ""
9658
- "This setting is only usefull when the Column Width differs from the Maximum "
9659
- "Width."
9660
- msgstr ""
9661
-
9662
- #: wppa-settings-autosave.php:3364
9663
- msgid "(Settings I-A1 and I-B1)"
9664
- msgstr ""
9665
-
9666
- #: wppa-settings-autosave.php:3374
9667
- #, fuzzy
9668
- msgid "Start slideshow running."
9669
- msgstr "Dobbeltklik for at starte/slutte slideshow"
9670
-
9671
- #: wppa-settings-autosave.php:3375
9672
- msgid ""
9673
- "If you select \"running\", the slideshow will start running immediately, if "
9674
- "you select \"still at first photo\", the first photo will be displayed in "
9675
- "browse mode."
9676
- msgstr ""
9677
-
9678
- #: wppa-settings-autosave.php:3376
9679
- msgid ""
9680
- "If you select \"still at first norated\", the first photo that the visitor "
9681
- "did not gave a rating will be displayed in browse mode."
9682
- msgstr ""
9683
-
9684
- #: wppa-settings-autosave.php:3378
9685
- msgid "running"
9686
- msgstr ""
9687
-
9688
- #: wppa-settings-autosave.php:3379
9689
- msgid "still at first photo"
9690
- msgstr ""
9691
-
9692
- #: wppa-settings-autosave.php:3380
9693
- msgid "still at first norated"
9694
- msgstr ""
9695
-
9696
- #: wppa-settings-autosave.php:3391
9697
- msgid "Start slideonly"
9698
- msgstr ""
9699
-
9700
- #: wppa-settings-autosave.php:3392
9701
- #, fuzzy
9702
- msgid "Start slideonly slideshow running."
9703
- msgstr "Dobbeltklik for at starte/slutte slideshow"
9704
-
9705
- #: wppa-settings-autosave.php:3400 wppa-settings-autosave.php:4215
9706
- msgid "Video autostart"
9707
- msgstr ""
9708
-
9709
- #: wppa-settings-autosave.php:3401
9710
- msgid "Autoplay videos in slideshows."
9711
- msgstr ""
9712
-
9713
- #: wppa-settings-autosave.php:3410 wppa-settings-autosave.php:4224
9714
- msgid "Audio autostart"
9715
- msgstr ""
9716
-
9717
- #: wppa-settings-autosave.php:3411
9718
- msgid "Autoplay audios in slideshows."
9719
- msgstr ""
9720
-
9721
- #: wppa-settings-autosave.php:3419
9722
- msgid "Animation type"
9723
- msgstr ""
9724
-
9725
- #: wppa-settings-autosave.php:3420
9726
- msgid "The way successive slides appear."
9727
- msgstr ""
9728
-
9729
- #: wppa-settings-autosave.php:3421
9730
- msgid ""
9731
- "Select the way the old slide is to be replaced by the new one in the "
9732
- "slideshow/browse fullsize display."
9733
- msgstr ""
9734
-
9735
- #: wppa-settings-autosave.php:3423
9736
- msgid "Fade out and in simultaneous"
9737
- msgstr ""
9738
-
9739
- #: wppa-settings-autosave.php:3424
9740
- msgid "Fade in after fade out"
9741
- msgstr ""
9742
-
9743
- #: wppa-settings-autosave.php:3425
9744
- msgid "Shift adjacent"
9745
- msgstr ""
9746
-
9747
- #: wppa-settings-autosave.php:3426
9748
- msgid "Stack on"
9749
- msgstr ""
9750
-
9751
- #: wppa-settings-autosave.php:3427
9752
- msgid "Stack off"
9753
- msgstr ""
9754
-
9755
- #: wppa-settings-autosave.php:3428
9756
- msgid "Turn over"
9757
- msgstr ""
9758
-
9759
- #: wppa-settings-autosave.php:3442
9760
- msgid "Timeout"
9761
- msgstr ""
9762
-
9763
- #: wppa-settings-autosave.php:3443
9764
- #, fuzzy
9765
- msgid "Slideshow timeout."
9766
- msgstr "Slideshow"
9767
-
9768
- #: wppa-settings-autosave.php:3444
9769
- msgid ""
9770
- "Select the time a single slide will be visible when the slideshow is started."
9771
- msgstr ""
9772
-
9773
- #: wppa-settings-autosave.php:3446
9774
- msgid "very short (1 s.)"
9775
- msgstr ""
9776
-
9777
- #: wppa-settings-autosave.php:3446
9778
- msgid "short (1.5 s.)"
9779
- msgstr ""
9780
-
9781
- #: wppa-settings-autosave.php:3446
9782
- msgid "normal (2.5 s.)"
9783
- msgstr ""
9784
-
9785
- #: wppa-settings-autosave.php:3446
9786
- msgid "long (4 s.)"
9787
- msgstr ""
9788
-
9789
- #: wppa-settings-autosave.php:3446
9790
- msgid "very long (6 s.)"
9791
- msgstr ""
9792
-
9793
- #: wppa-settings-autosave.php:3453
9794
- msgid "Speed"
9795
- msgstr ""
9796
-
9797
- #: wppa-settings-autosave.php:3454
9798
- msgid "Slideshow animation speed."
9799
- msgstr ""
9800
-
9801
- #: wppa-settings-autosave.php:3455
9802
- msgid "Specify the animation speed to be used in slideshows."
9803
- msgstr ""
9804
-
9805
- #: wppa-settings-autosave.php:3456
9806
- msgid "This is the time it takes a photo to fade in or out."
9807
- msgstr ""
9808
-
9809
- #: wppa-settings-autosave.php:3458 wppa-settings-autosave.php:4161
9810
- #: wppa-settings-autosave.php:5904 wppa-settings-autosave.php:6800
9811
- #: wppa-settings-autosave.php:6811 wppa-settings-autosave.php:6973
9812
- #, fuzzy
9813
- msgid "--- off ---"
9814
- msgstr "--- ingen ---"
9815
-
9816
- #: wppa-settings-autosave.php:3458
9817
- msgid "very fast (200 ms.)"
9818
- msgstr ""
9819
-
9820
- #: wppa-settings-autosave.php:3458
9821
- msgid "fast (400 ms.)"
9822
- msgstr ""
9823
-
9824
- #: wppa-settings-autosave.php:3458
9825
- msgid "normal (800 ms.)"
9826
- msgstr ""
9827
-
9828
- #: wppa-settings-autosave.php:3458
9829
- msgid "slow (1.2 s.)"
9830
- msgstr ""
9831
-
9832
- #: wppa-settings-autosave.php:3458
9833
- #, fuzzy
9834
- msgid "very slow (2 s.)"
9835
- msgstr "meget lav"
9836
-
9837
- #: wppa-settings-autosave.php:3458
9838
- msgid "extremely slow (4 s.)"
9839
- msgstr ""
9840
-
9841
- #: wppa-settings-autosave.php:3465
9842
- msgid "Slide hover pause"
9843
- msgstr ""
9844
-
9845
- #: wppa-settings-autosave.php:3466
9846
- msgid "Running Slideshow suspends during mouse hover."
9847
- msgstr ""
9848
-
9849
- #: wppa-settings-autosave.php:3474
9850
- #, fuzzy
9851
- msgid "Slideshow wrap around"
9852
- msgstr "Slideshow"
9853
-
9854
- #: wppa-settings-autosave.php:3475
9855
- msgid "The slideshow wraps around the start and end"
9856
- msgstr ""
9857
-
9858
- #: wppa-settings-autosave.php:3483
9859
- msgid "Full desc align"
9860
- msgstr ""
9861
-
9862
- #: wppa-settings-autosave.php:3484
9863
- msgid "The alignment of the descriptions under fullsize images and slideshows."
9864
- msgstr ""
9865
-
9866
- #: wppa-settings-autosave.php:3487 wppa-settings-autosave.php:3605
9867
- #: wppa-settings-autosave.php:3708
9868
- msgid "Left"
9869
- msgstr ""
9870
-
9871
- #: wppa-settings-autosave.php:3487
9872
- msgid "Center"
9873
- msgstr ""
9874
-
9875
- #: wppa-settings-autosave.php:3487 wppa-settings-autosave.php:3605
9876
- #: wppa-settings-autosave.php:3708
9877
- msgid "Right"
9878
- msgstr ""
9879
-
9880
- #: wppa-settings-autosave.php:3494
9881
- msgid "Remove redundant space"
9882
- msgstr ""
9883
-
9884
- #: wppa-settings-autosave.php:3495
9885
- msgid "Removes unwanted &lt;p> and &lt;br> tags in fullsize descriptions."
9886
- msgstr ""
9887
-
9888
- #: wppa-settings-autosave.php:3496
9889
- msgid ""
9890
- "This setting has only effect when Table IX-A7 (foreign shortcodes) is "
9891
- "checked."
9892
- msgstr ""
9893
-
9894
- #: wppa-settings-autosave.php:3503
9895
- #, fuzzy
9896
- msgid "Run wpautop on description"
9897
- msgstr "Inserisci / modifica la descrizione per questo album."
9898
-
9899
- #: wppa-settings-autosave.php:3504
9900
- msgid "Adds &lt;p> and &lt;br> tags in fullsize descriptions."
9901
- msgstr ""
9902
-
9903
- #: wppa-settings-autosave.php:3512
9904
- #, fuzzy
9905
- msgid "Auto open comments"
9906
- msgstr "Din kommentar"
9907
-
9908
- #: wppa-settings-autosave.php:3513
9909
- msgid "Automatic opens comments box when slideshow does not run."
9910
- msgstr ""
9911
-
9912
- #: wppa-settings-autosave.php:3521
9913
- #, fuzzy
9914
- msgid "Film hover goto"
9915
- msgstr "Se forside foto"
9916
-
9917
- #: wppa-settings-autosave.php:3522
9918
- msgid "Go to slide when hovering filmstrip thumbnail."
9919
- msgstr ""
9920
-
9921
- #: wppa-settings-autosave.php:3523
9922
- msgid "Do not use this setting when slides have different aspect ratios!"
9923
- msgstr ""
9924
-
9925
- #: wppa-settings-autosave.php:3530
9926
- #, fuzzy
9927
- msgid "Slide swipe"
9928
- msgstr "Slideshow"
9929
-
9930
- #: wppa-settings-autosave.php:3531
9931
- msgid "Enable touch events swipe left-right on slides on touch screens."
9932
- msgstr ""
9933
-
9934
- #: wppa-settings-autosave.php:3539
9935
- msgid "Slide page Ajax"
9936
- msgstr ""
9937
-
9938
- #: wppa-settings-autosave.php:3540
9939
- msgid "Pagelinks slideshow use Ajax"
9940
- msgstr ""
9941
-
9942
- #: wppa-settings-autosave.php:3541
9943
- msgid "On some systems you need to disable ajax here."
9944
- msgstr ""
9945
-
9946
- #: wppa-settings-autosave.php:3548
9947
- msgid "Thumbnail related settings"
9948
- msgstr ""
9949
-
9950
- #: wppa-settings-autosave.php:3551
9951
- msgid "Photo ordering sequence method."
9952
- msgstr ""
9953
-
9954
- #: wppa-settings-autosave.php:3552
9955
- msgid ""
9956
- "Specify the way the photos should be ordered. This is the default setting. "
9957
- "You can overrule the default sorting order on a per album basis."
9958
- msgstr ""
9959
-
9960
- #: wppa-settings-autosave.php:3589
9961
- #, fuzzy
9962
- msgid "Thumbnail type"
9963
- msgstr "Foto Top Ti"
9964
-
9965
- #: wppa-settings-autosave.php:3590
9966
- msgid "The way the thumbnail images are displayed."
9967
- msgstr ""
9968
-
9969
- #: wppa-settings-autosave.php:3591
9970
- msgid ""
9971
- "You may select an altenative display method for thumbnails. Note that some "
9972
- "of the thumbnail settings do not apply to all available display methods."
9973
- msgstr ""
9974
-
9975
- #: wppa-settings-autosave.php:3593
9976
- msgid "like album covers"
9977
- msgstr ""
9978
-
9979
- #: wppa-settings-autosave.php:3593
9980
- msgid "like album covers mcr"
9981
- msgstr ""
9982
-
9983
- #: wppa-settings-autosave.php:3593
9984
- msgid "masonry style columns"
9985
- msgstr ""
9986
-
9987
- #: wppa-settings-autosave.php:3593
9988
- msgid "masonry style rows"
9989
- msgstr ""
9990
-
9991
- #: wppa-settings-autosave.php:3601 wppa-settings-autosave.php:3702
9992
- msgid "Placement"
9993
- msgstr ""
9994
-
9995
- #: wppa-settings-autosave.php:3602
9996
- msgid "Thumbnail image left or right."
9997
- msgstr ""
9998
-
9999
- #: wppa-settings-autosave.php:3603
10000
- msgid "Indicate the placement position of the thumbnailphoto you wish."
10001
- msgstr ""
10002
-
10003
- #: wppa-settings-autosave.php:3612
10004
- msgid "Vertical alignment"
10005
- msgstr ""
10006
-
10007
- #: wppa-settings-autosave.php:3613
10008
- msgid "Vertical alignment of thumbnails."
10009
- msgstr ""
10010
-
10011
- #: wppa-settings-autosave.php:3614
10012
- msgid ""
10013
- "Specify the vertical alignment of thumbnail images. Use this setting when "
10014
- "albums contain both portrait and landscape photos."
10015
- msgstr ""
10016
-
10017
- #: wppa-settings-autosave.php:3615
10018
- msgid ""
10019
- "It is NOT recommended to use the value --- default ---; it will affect the "
10020
- "horizontal alignment also and is meant to be used with custom css."
10021
- msgstr ""
10022
-
10023
- #: wppa-settings-autosave.php:3624
10024
- msgid "Thumb mouseover"
10025
- msgstr ""
10026
-
10027
- #: wppa-settings-autosave.php:3625
10028
- msgid "Apply thumbnail mouseover effect."
10029
- msgstr ""
10030
-
10031
- #: wppa-settings-autosave.php:3626
10032
- msgid "Check this box to use mouseover effect on thumbnail images."
10033
- msgstr ""
10034
-
10035
- #: wppa-settings-autosave.php:3634
10036
- #, fuzzy
10037
- msgid "Thumb opacity"
10038
- msgstr "Miniatura"
10039
-
10040
- #: wppa-settings-autosave.php:3635 wppa-settings-autosave.php:3727
10041
- msgid "Initial opacity value."
10042
- msgstr ""
10043
-
10044
- #: wppa-settings-autosave.php:3636 wppa-settings-autosave.php:3728
10045
- #: wppa-settings-autosave.php:3837
10046
- msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
10047
- msgstr ""
10048
-
10049
- #: wppa-settings-autosave.php:3638 wppa-settings-autosave.php:3730
10050
- #: wppa-settings-autosave.php:3840 wppa-settings-autosave.php:4141
10051
- msgid "%"
10052
- msgstr ""
10053
-
10054
- #: wppa-settings-autosave.php:3643
10055
- msgid "Thumb popup"
10056
- msgstr ""
10057
-
10058
- #: wppa-settings-autosave.php:3644
10059
- msgid "Use popup effect on thumbnail images."
10060
- msgstr ""
10061
-
10062
- #: wppa-settings-autosave.php:3645
10063
- msgid "Thumbnails pop-up to a larger image when hovered."
10064
- msgstr ""
10065
-
10066
- #: wppa-settings-autosave.php:3653
10067
- msgid "Align subtext"
10068
- msgstr ""
10069
-
10070
- #: wppa-settings-autosave.php:3654
10071
- msgid "Set thumbnail subtext on equal height."
10072
- msgstr ""
10073
-
10074
- #: wppa-settings-autosave.php:3662
10075
- msgid "Album and covers related settings"
10076
- msgstr ""
10077
-
10078
- #: wppa-settings-autosave.php:3664
10079
- #, fuzzy
10080
- msgid "Album order"
10081
- msgstr "Album administration"
10082
-
10083
- #: wppa-settings-autosave.php:3665
10084
- msgid "Album ordering sequence method."
10085
- msgstr ""
10086
-
10087
- #: wppa-settings-autosave.php:3666
10088
- msgid "Specify the way the albums should be ordered."
10089
- msgstr ""
10090
-
10091
- #: wppa-settings-autosave.php:3691
10092
- #, fuzzy
10093
- msgid "Default coverphoto selection"
10094
- msgstr "Standard foto album for"
10095
-
10096
- #: wppa-settings-autosave.php:3692
10097
- msgid "Default select cover photo method."
10098
- msgstr ""
10099
-
10100
- #: wppa-settings-autosave.php:3693
10101
- msgid ""
10102
- "This is the initial value on album creation only. It can be overruled on the "
10103
- "edit album page."
10104
- msgstr ""
10105
-
10106
- #: wppa-settings-autosave.php:3694
10107
- msgid "Random from album"
10108
- msgstr ""
10109
-
10110
- #: wppa-settings-autosave.php:3694
10111
- msgid "Random featured from album"
10112
- msgstr ""
10113
-
10114
- #: wppa-settings-autosave.php:3694
10115
- #, fuzzy
10116
- msgid "Most recently added to album"
10117
- msgstr "Le impostazioni sono state aggiornate"
10118
-
10119
- #: wppa-settings-autosave.php:3694
10120
- #, fuzzy
10121
- msgid "Random from album or any sub album"
10122
- msgstr "Risultati Ricerca da album %s e tutti i sotto album"
10123
-
10124
- #: wppa-settings-autosave.php:3703
10125
- #, fuzzy
10126
- msgid "Cover image position."
10127
- msgstr "Se fotos"
10128
-
10129
- #: wppa-settings-autosave.php:3704
10130
- msgid ""
10131
- "Enter the position that you want to be used for the default album cover "
10132
- "selected in Table IV-D6."
10133
- msgstr ""
10134
-
10135
- #: wppa-settings-autosave.php:3705
10136
- msgid ""
10137
- "For covertype Image Factory: left will be treated as top and right will be "
10138
- "treted as bottom."
10139
- msgstr ""
10140
-
10141
- #: wppa-settings-autosave.php:3706
10142
- msgid ""
10143
- "For covertype Long Descriptions: top will be treated as left and bottom will "
10144
- "be treted as right."
10145
- msgstr ""
10146
-
10147
- #: wppa-settings-autosave.php:3716
10148
- msgid "Cover mouseover"
10149
- msgstr ""
10150
-
10151
- #: wppa-settings-autosave.php:3717
10152
- msgid "Apply coverphoto mouseover effect."
10153
- msgstr ""
10154
-
10155
- #: wppa-settings-autosave.php:3718
10156
- msgid "Check this box to use mouseover effect on cover images."
10157
- msgstr ""
10158
-
10159
- #: wppa-settings-autosave.php:3726
10160
- msgid "Cover opacity"
10161
- msgstr ""
10162
-
10163
- #: wppa-settings-autosave.php:3735
10164
- msgid "Cover type"
10165
- msgstr ""
10166
-
10167
- #: wppa-settings-autosave.php:3736
10168
- msgid "Select the default cover type."
10169
- msgstr ""
10170
-
10171
- #: wppa-settings-autosave.php:3737
10172
- msgid ""
10173
- "Types with the addition mcr are suitable for Multi Column in a Responsive "
10174
- "theme"
10175
- msgstr ""
10176
-
10177
- #: wppa-settings-autosave.php:3760
10178
- msgid "The umber of coverphotos. Must be > 1 and < 25."
10179
- msgstr ""
10180
-
10181
- #: wppa-settings-autosave.php:3768
10182
- msgid "Rating related settings"
10183
- msgstr ""
10184
-
10185
- #: wppa-settings-autosave.php:3770
10186
- #, fuzzy
10187
- msgid "Rating login"
10188
- msgstr "Bed&oslash;mmelse: %s"
10189
-
10190
- #: wppa-settings-autosave.php:3771
10191
- #, fuzzy
10192
- msgid "Users must login to rate photos."
10193
- msgstr "Bruger %s indsendte foto %s ind i album %s"
10194
-
10195
- #: wppa-settings-autosave.php:3772
10196
- msgid ""
10197
- "If users want to vote for a photo (rating 1..5 stars) the must login first. "
10198
- "The avarage rating will always be displayed as long as the rating system is "
10199
- "enabled."
10200
- msgstr ""
10201
-
10202
- #: wppa-settings-autosave.php:3779
10203
- #, fuzzy
10204
- msgid "Rating change"
10205
- msgstr "Bed&oslash;mmelse: %s"
10206
-
10207
- #: wppa-settings-autosave.php:3780 wppa-settings-autosave.php:3781
10208
- msgid "Users may change their ratings."
10209
- msgstr ""
10210
-
10211
- #: wppa-settings-autosave.php:3782 wppa-settings-autosave.php:3819
10212
- #: wppa-settings-autosave.php:3838 wppa-settings-autosave.php:3851
10213
- #: wppa-settings-autosave.php:3861 wppa-settings-autosave.php:3871
10214
- #: wppa-settings-autosave.php:3881 wppa-settings-autosave.php:3890
10215
- msgid ""
10216
- "If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
10217
- msgstr ""
10218
-
10219
- #: wppa-settings-autosave.php:3789
10220
- #, fuzzy
10221
- msgid "Rating multi"
10222
- msgstr "Bed&oslash;mmelse: %s"
10223
-
10224
- #: wppa-settings-autosave.php:3790
10225
- msgid "Users may give multiple votes."
10226
- msgstr ""
10227
-
10228
- #: wppa-settings-autosave.php:3791
10229
- msgid ""
10230
- "Users may give multiple votes. (This has no effect when users may change "
10231
- "their votes.)"
10232
- msgstr ""
10233
-
10234
- #: wppa-settings-autosave.php:3798
10235
- #, fuzzy
10236
- msgid "Rate own photos"
10237
- msgstr "Se fotos"
10238
-
10239
- #: wppa-settings-autosave.php:3799
10240
- msgid "It is allowed to rate photos by the uploader himself."
10241
- msgstr ""
10242
-
10243
- #: wppa-settings-autosave.php:3807
10244
- msgid "Rating requires comment"
10245
- msgstr ""
10246
-
10247
- #: wppa-settings-autosave.php:3808
10248
- #, fuzzy
10249
- msgid "Users must clarify their vote in a comment."
10250
- msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
10251
-
10252
- #: wppa-settings-autosave.php:3817
10253
- msgid "This value counts dislike rating."
10254
- msgstr ""
10255
-
10256
- #: wppa-settings-autosave.php:3818
10257
- msgid ""
10258
- "This value will be used for a dislike rating on calculation of avarage "
10259
- "ratings."
10260
- msgstr ""
10261
-
10262
- #: wppa-settings-autosave.php:3821
10263
- msgid "points"
10264
- msgstr ""
10265
-
10266
- #: wppa-settings-autosave.php:3826
10267
- msgid "Next after vote"
10268
- msgstr ""
10269
-
10270
- #: wppa-settings-autosave.php:3827
10271
- msgid "Goto next slide after voting"
10272
- msgstr ""
10273
-
10274
- #: wppa-settings-autosave.php:3828
10275
- msgid ""
10276
- "If checked, the visitor goes straight to the slide following the slide he "
10277
- "voted. This will speed up mass voting."
10278
- msgstr ""
10279
-
10280
- #: wppa-settings-autosave.php:3835
10281
- msgid "Star off opacity"
10282
- msgstr ""
10283
-
10284
- #: wppa-settings-autosave.php:3836
10285
- msgid "Rating star off state opacity value."
10286
- msgstr ""
10287
-
10288
- #: wppa-settings-autosave.php:3846
10289
- msgid "Notify admin every x times."
10290
- msgstr ""
10291
-
10292
- #: wppa-settings-autosave.php:3847
10293
- msgid ""
10294
- "If this number is positive, there will be a thumb down icon in the rating "
10295
- "bar."
10296
- msgstr ""
10297
-
10298
- #: wppa-settings-autosave.php:3848
10299
- msgid ""
10300
- "Cicking the icon indicates a user wants to report that an image is "
10301
- "inappropiate."
10302
- msgstr ""
10303
-
10304
- #: wppa-settings-autosave.php:3849
10305
- msgid "Admin will be notified by email after every x reports."
10306
- msgstr ""
10307
-
10308
- #: wppa-settings-autosave.php:3850 wppa-settings-autosave.php:3860
10309
- #: wppa-settings-autosave.php:3870
10310
- msgid "A value of 0 disables this feature."
10311
- msgstr ""
10312
-
10313
- #: wppa-settings-autosave.php:3853 wppa-settings-autosave.php:3863
10314
- #: wppa-settings-autosave.php:3873
10315
- msgid "reports"
10316
- msgstr ""
10317
-
10318
- #: wppa-settings-autosave.php:3858
10319
- msgid "Pending after"
10320
- msgstr ""
10321
-
10322
- #: wppa-settings-autosave.php:3859
10323
- msgid "Set status to pending after xx dislike votes."
10324
- msgstr ""
10325
-
10326
- #: wppa-settings-autosave.php:3868
10327
- #, fuzzy
10328
- msgid "Delete after"
10329
- msgstr "Impossibile creare album. "
10330
-
10331
- #: wppa-settings-autosave.php:3869
10332
- msgid "Deete photo after xx dislike votes."
10333
- msgstr ""
10334
-
10335
- #: wppa-settings-autosave.php:3878
10336
- msgid "Show dislike count"
10337
- msgstr ""
10338
-
10339
- #: wppa-settings-autosave.php:3879
10340
- msgid "Show the number of dislikes in the rating bar."
10341
- msgstr ""
10342
-
10343
- #: wppa-settings-autosave.php:3880
10344
- msgid "Displayes the total number of dislike votes for the current photo."
10345
- msgstr ""
10346
-
10347
- #: wppa-settings-autosave.php:3888
10348
- msgid "Rating display type"
10349
- msgstr ""
10350
-
10351
- #: wppa-settings-autosave.php:3889
10352
- msgid "Specify the type of the rating display."
10353
- msgstr ""
10354
-
10355
- #: wppa-settings-autosave.php:3892
10356
- msgid "Graphic"
10357
- msgstr ""
10358
-
10359
- #: wppa-settings-autosave.php:3892
10360
- msgid "Numeric"
10361
- msgstr ""
10362
-
10363
- #: wppa-settings-autosave.php:3899
10364
- #, fuzzy
10365
- msgid "Show average rating"
10366
- msgstr "Bed&oslash;mmelse&nbsp;gennemsnitlig"
10367
-
10368
- #: wppa-settings-autosave.php:3900
10369
- msgid "Display the avarage rating and/or vote count on the rating bar"
10370
- msgstr ""
10371
-
10372
- #: wppa-settings-autosave.php:3901
10373
- msgid ""
10374
- "If checked, the average rating as well as the current users rating is "
10375
- "displayed in max 5 or 10 stars."
10376
- msgstr ""
10377
-
10378
- #: wppa-settings-autosave.php:3902
10379
- msgid "If unchecked, only the current users rating is displayed (if any)."
10380
- msgstr ""
10381
-
10382
- #: wppa-settings-autosave.php:3903
10383
- msgid ""
10384
- "If \"One button vote\" is selected in Table I-E1, this box checked will "
10385
- "display the vote count."
10386
- msgstr ""
10387
-
10388
- #: wppa-settings-autosave.php:3910
10389
- msgid "Single vote button text"
10390
- msgstr ""
10391
-
10392
- #: wppa-settings-autosave.php:3911
10393
- msgid "The text on the voting button."
10394
- msgstr ""
10395
-
10396
- #: wppa-settings-autosave.php:3912 wppa-settings-autosave.php:3921
10397
- msgid "This text may contain qTranslate compatible language tags."
10398
- msgstr ""
10399
-
10400
- #: wppa-settings-autosave.php:3919
10401
- msgid "Single vote button text voted"
10402
- msgstr ""
10403
-
10404
- #: wppa-settings-autosave.php:3920
10405
- msgid "The text on the voting button when voted."
10406
- msgstr ""
10407
-
10408
- #: wppa-settings-autosave.php:3928
10409
- #, fuzzy
10410
- msgid "Single vote button thumbnail"
10411
- msgstr "Se"
10412
-
10413
- #: wppa-settings-autosave.php:3929
10414
- msgid "Display single vote button below thumbnails."
10415
- msgstr ""
10416
-
10417
- #: wppa-settings-autosave.php:3930
10418
- msgid ""
10419
- "This works only in single vote mode: Table I-E1 set to \"one button vote\""
10420
- msgstr ""
10421
-
10422
- #: wppa-settings-autosave.php:3937
10423
- msgid "Medal bronze when"
10424
- msgstr ""
10425
-
10426
- #: wppa-settings-autosave.php:3938 wppa-settings-autosave.php:3956
10427
- msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
10428
- msgstr ""
10429
-
10430
- #: wppa-settings-autosave.php:3939 wppa-settings-autosave.php:3957
10431
- msgid ""
10432
- "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10433
- "bronze medal. A value of 0 indicates that you do not want this feature."
10434
- msgstr ""
10435
-
10436
- #: wppa-settings-autosave.php:3941 wppa-settings-autosave.php:3950
10437
- #: wppa-settings-autosave.php:3959
10438
- msgid "Topscores"
10439
- msgstr ""
10440
-
10441
- #: wppa-settings-autosave.php:3946
10442
- msgid "Medal silver when"
10443
- msgstr ""
10444
-
10445
- #: wppa-settings-autosave.php:3947
10446
- msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
10447
- msgstr ""
10448
-
10449
- #: wppa-settings-autosave.php:3948
10450
- msgid ""
10451
- "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10452
- "silver medal. A value of 0 indicates that you do not want this feature."
10453
- msgstr ""
10454
-
10455
- #: wppa-settings-autosave.php:3955
10456
- msgid "Medal gold when"
10457
- msgstr ""
10458
-
10459
- #: wppa-settings-autosave.php:3964
10460
- msgid "Medal tag color"
10461
- msgstr ""
10462
-
10463
- #: wppa-settings-autosave.php:3965
10464
- msgid "The color of the tag on the medal."
10465
- msgstr ""
10466
-
10467
- #: wppa-settings-autosave.php:3968 wppa-settings-autosave.php:7043
10468
- msgid "Red"
10469
- msgstr ""
10470
-
10471
- #: wppa-settings-autosave.php:3968 wppa-settings-autosave.php:7046
10472
- msgid "Green"
10473
- msgstr ""
10474
-
10475
- #: wppa-settings-autosave.php:3968 wppa-settings-autosave.php:7047
10476
- msgid "Blue"
10477
- msgstr ""
10478
-
10479
- #: wppa-settings-autosave.php:3975
10480
- #, fuzzy
10481
- msgid "Medal position"
10482
- msgstr "Position:"
10483
-
10484
- #: wppa-settings-autosave.php:3976
10485
- msgid "The position of the medal on the image."
10486
- msgstr ""
10487
-
10488
- #: wppa-settings-autosave.php:3979
10489
- msgid "Top left"
10490
- msgstr ""
10491
-
10492
- #: wppa-settings-autosave.php:3979
10493
- msgid "Top right"
10494
- msgstr ""
10495
-
10496
- #: wppa-settings-autosave.php:3979
10497
- msgid "Bottom left"
10498
- msgstr ""
10499
-
10500
- #: wppa-settings-autosave.php:3979
10501
- msgid "Bottom right"
10502
- msgstr ""
10503
-
10504
- #: wppa-settings-autosave.php:3986
10505
- msgid "Top criterium"
10506
- msgstr ""
10507
-
10508
- #: wppa-settings-autosave.php:3987
10509
- msgid "The top sort item used for topten results from shortcodes."
10510
- msgstr ""
10511
-
10512
- #: wppa-settings-autosave.php:3990
10513
- #, fuzzy
10514
- msgid "Mean raiting"
10515
- msgstr "Valutazione:"
10516
-
10517
- #: wppa-settings-autosave.php:3990
10518
- #, fuzzy
10519
- msgid "Rating count"
10520
- msgstr "Bed&oslash;mmelse: %s"
10521
-
10522
- #: wppa-settings-autosave.php:3990
10523
- #, fuzzy
10524
- msgid "Viewcount"
10525
- msgstr "Se"
10526
-
10527
- #: wppa-settings-autosave.php:3997
10528
- #, fuzzy
10529
- msgid "Comments related settings"
10530
- msgstr "Kommentarer redigeret"
10531
-
10532
- #: wppa-settings-autosave.php:3999
10533
- #, fuzzy
10534
- msgid "Commenting login"
10535
- msgstr "%d kommentarer"
10536
-
10537
- #: wppa-settings-autosave.php:4000
10538
- msgid "Users must be logged in to comment on photos."
10539
- msgstr ""
10540
-
10541
- #: wppa-settings-autosave.php:4001
10542
- msgid ""
10543
- "Check this box if you want users to be logged in to be able to enter "
10544
- "comments on individual photos."
10545
- msgstr ""
10546
-
10547
- #: wppa-settings-autosave.php:4008
10548
- #, fuzzy
10549
- msgid "Comments view login"
10550
- msgstr "Kommentarer redigeret"
10551
-
10552
- #: wppa-settings-autosave.php:4009
10553
- #, fuzzy
10554
- msgid "Users must be logged in to see comments on photos."
10555
- msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
10556
-
10557
- #: wppa-settings-autosave.php:4010
10558
- msgid ""
10559
- "Check this box if you want users to be logged in to be able to see existing "
10560
- "comments on individual photos."
10561
- msgstr ""
10562
-
10563
- #: wppa-settings-autosave.php:4017
10564
- #, fuzzy
10565
- msgid "Last comment first"
10566
- msgstr "%d kommentarer"
10567
-
10568
- #: wppa-settings-autosave.php:4018
10569
- msgid "Display the newest comment on top."
10570
- msgstr ""
10571
-
10572
- #: wppa-settings-autosave.php:4019
10573
- msgid "If checked: Display the newest comment on top."
10574
- msgstr ""
10575
-
10576
- #: wppa-settings-autosave.php:4020
10577
- msgid "If unchecked, the comments are listed in the ordere they were entered."
10578
- msgstr ""
10579
-
10580
- #: wppa-settings-autosave.php:4027
10581
- #, fuzzy
10582
- msgid "Comment moderation"
10583
- msgstr "%d kommentarer"
10584
-
10585
- #: wppa-settings-autosave.php:4028
10586
- msgid "Comments from what users need approval."
10587
- msgstr ""
10588
-
10589
- #: wppa-settings-autosave.php:4029
10590
- msgid "Select the desired users of which the comments need approval."
10591
- msgstr ""
10592
-
10593
- #: wppa-settings-autosave.php:4031 wppa-settings-autosave.php:5890
10594
- #, fuzzy
10595
- msgid "All users"
10596
- msgstr "Alle albums"
10597
-
10598
- #: wppa-settings-autosave.php:4031 wppa-settings-autosave.php:5890
10599
- msgid "Logged out users"
10600
- msgstr ""
10601
-
10602
- #: wppa-settings-autosave.php:4031 wppa-settings-autosave.php:5890
10603
- msgid "No users"
10604
- msgstr ""
10605
-
10606
- #: wppa-settings-autosave.php:4038
10607
- #, fuzzy
10608
- msgid "Comment email required"
10609
- msgstr "Kommentarer redigeret"
10610
-
10611
- #: wppa-settings-autosave.php:4039
10612
- msgid "Commenting users must enter their email addresses."
10613
- msgstr ""
10614
-
10615
- #: wppa-settings-autosave.php:4047
10616
- #, fuzzy
10617
- msgid "Comment notify"
10618
- msgstr "Kommentar til billeder"
10619
-
10620
- #: wppa-settings-autosave.php:4048
10621
- msgid "Select who must receive an e-mail notification of a new comment."
10622
- msgstr ""
10623
-
10624
- #: wppa-settings-autosave.php:4051
10625
- #, fuzzy
10626
- msgid "--- None ---"
10627
- msgstr "--- ingen ---"
10628
-
10629
- #: wppa-settings-autosave.php:4052
10630
- #, fuzzy
10631
- msgid "--- Admin ---"
10632
- msgstr "--- ingen ---"
10633
-
10634
- #: wppa-settings-autosave.php:4053
10635
- #, fuzzy
10636
- msgid "--- Album owner ---"
10637
- msgstr "--- ingen ---"
10638
-
10639
- #: wppa-settings-autosave.php:4054
10640
- #, fuzzy
10641
- msgid "--- Admin & Owner ---"
10642
- msgstr "--- ingen ---"
10643
-
10644
- #: wppa-settings-autosave.php:4055
10645
- #, fuzzy
10646
- msgid "--- Uploader ---"
10647
- msgstr "--- ingen ---"
10648
-
10649
- #: wppa-settings-autosave.php:4056
10650
- #, fuzzy
10651
- msgid "--- Up & admin ---"
10652
- msgstr "--- ingen ---"
10653
-
10654
- #: wppa-settings-autosave.php:4057
10655
- #, fuzzy
10656
- msgid "--- Up & Owner ---"
10657
- msgstr "--- ingen ---"
10658
-
10659
- #: wppa-settings-autosave.php:4080
10660
- #, fuzzy
10661
- msgid "Comment notify previous"
10662
- msgstr "Kommentar til billeder"
10663
-
10664
- #: wppa-settings-autosave.php:4081
10665
- #, fuzzy
10666
- msgid "Notify users who has commented this photo earlier."
10667
- msgstr "Du modtager denne e-mail, fordi du er sat til at godkende"
10668
-
10669
- #: wppa-settings-autosave.php:4089
10670
- #, fuzzy
10671
- msgid "Comment ntfy added"
10672
- msgstr "Kommentarer tilf&oslash;jet"
10673
-
10674
- #: wppa-settings-autosave.php:4090
10675
- msgid "Show \"Comment added\" after successfull adding a comment."
10676
- msgstr ""
10677
-
10678
- #: wppa-settings-autosave.php:4098
10679
- msgid "ComTen alt display"
10680
- msgstr ""
10681
-
10682
- #: wppa-settings-autosave.php:4099
10683
- msgid "Display comments at comten thumbnails."
10684
- msgstr ""
10685
-
10686
- #: wppa-settings-autosave.php:4107
10687
- #, fuzzy
10688
- msgid "Comten Thumbnail width"
10689
- msgstr "Foto Top Ti"
10690
-
10691
- #: wppa-settings-autosave.php:4108
10692
- msgid "The width of the thumbnail in the alt comment display."
10693
- msgstr ""
10694
-
10695
- #: wppa-settings-autosave.php:4111
10696
- msgid "Pixels"
10697
- msgstr ""
10698
-
10699
- #: wppa-settings-autosave.php:4116
10700
- msgid "Show smiley picker"
10701
- msgstr ""
10702
-
10703
- #: wppa-settings-autosave.php:4117
10704
- msgid "Display a clickable row of smileys."
10705
- msgstr ""
10706
-
10707
- #: wppa-settings-autosave.php:4125
10708
- #, fuzzy
10709
- msgid "Show commenter email"
10710
- msgstr "Din kommentar"
10711
-
10712
- #: wppa-settings-autosave.php:4126
10713
- msgid "Show the commenter's email in the notify emails."
10714
- msgstr ""
10715
-
10716
- #: wppa-settings-autosave.php:4127
10717
- msgid "Shows the email address of the commenter in all notify emails."
10718
- msgstr ""
10719
-
10720
- #: wppa-settings-autosave.php:4128
10721
- msgid ""
10722
- "If switched off, admin will still receive the senders email in the "
10723
- "notification mail"
10724
- msgstr ""
10725
-
10726
- #: wppa-settings-autosave.php:4138
10727
- msgid "The opacity of the lightbox overlay background."
10728
- msgstr ""
10729
-
10730
- #: wppa-settings-autosave.php:4146
10731
- msgid "Click on background"
10732
- msgstr ""
10733
-
10734
- #: wppa-settings-autosave.php:4147
10735
- msgid "Select the action to be taken on click on background."
10736
- msgstr ""
10737
-
10738
- #: wppa-settings-autosave.php:4150
10739
- msgid "Nothing"
10740
- msgstr ""
10741
-
10742
- #: wppa-settings-autosave.php:4150
10743
- msgid "Exit (close)"
10744
- msgstr ""
10745
-
10746
- #: wppa-settings-autosave.php:4150
10747
- msgid "Browse (left/right)"
10748
- msgstr ""
10749
-
10750
- #: wppa-settings-autosave.php:4157
10751
- msgid "Overlay animation speed"
10752
- msgstr ""
10753
-
10754
- #: wppa-settings-autosave.php:4158
10755
- msgid "The fade-in time of the lightbox images"
10756
- msgstr ""
10757
-
10758
- #: wppa-settings-autosave.php:4161
10759
- msgid "very fast (100 ms.)"
10760
- msgstr ""
10761
-
10762
- #: wppa-settings-autosave.php:4161
10763
- msgid "fast (200 ms.)"
10764
- msgstr ""
10765
-
10766
- #: wppa-settings-autosave.php:4161
10767
- msgid "normal (300 ms.)"
10768
- msgstr ""
10769
-
10770
- #: wppa-settings-autosave.php:4161
10771
- msgid "slow (500 ms.)"
10772
- msgstr ""
10773
-
10774
- #: wppa-settings-autosave.php:4161
10775
- #, fuzzy
10776
- msgid "very slow (1 s.)"
10777
- msgstr "meget lav"
10778
-
10779
- #: wppa-settings-autosave.php:4161
10780
- msgid "extremely slow (2 s.)"
10781
- msgstr ""
10782
-
10783
- #: wppa-settings-autosave.php:4168
10784
- msgid "Overlay slideshow speed"
10785
- msgstr ""
10786
-
10787
- #: wppa-settings-autosave.php:4169
10788
- msgid "The time the lightbox images stay"
10789
- msgstr ""
10790
-
10791
- #: wppa-settings-autosave.php:4172
10792
- msgid "fast (3 s.)"
10793
- msgstr ""
10794
-
10795
- #: wppa-settings-autosave.php:4172
10796
- msgid "normal (5 s.)"
10797
- msgstr ""
10798
-
10799
- #: wppa-settings-autosave.php:4172
10800
- msgid "slow (8 s.)"
10801
- msgstr ""
10802
-
10803
- #: wppa-settings-autosave.php:4172
10804
- #, fuzzy
10805
- msgid "very slow (13 s.)"
10806
- msgstr "meget lav"
10807
-
10808
- #: wppa-settings-autosave.php:4172
10809
- msgid "extremely slow (20 s.)"
10810
- msgstr ""
10811
-
10812
- #: wppa-settings-autosave.php:4179
10813
- msgid "Overlay at top in Chrome"
10814
- msgstr ""
10815
-
10816
- #: wppa-settings-autosave.php:4180
10817
- msgid ""
10818
- "Place the overlay (lightbox) image at the top of the page in Chrome browsers."
10819
- msgstr ""
10820
-
10821
- #: wppa-settings-autosave.php:4181
10822
- msgid "This is required for certain mobile devices."
10823
- msgstr ""
10824
-
10825
- #: wppa-settings-autosave.php:4188
10826
- msgid "WPPA+ Lightbox global"
10827
- msgstr ""
10828
-
10829
- #: wppa-settings-autosave.php:4189
10830
- msgid "Use the wppa+ lightbox also for non-wppa images."
10831
- msgstr ""
10832
-
10833
- #: wppa-settings-autosave.php:4197
10834
- msgid "WPPA+ Lightbox global is a set"
10835
- msgstr ""
10836
-
10837
- #: wppa-settings-autosave.php:4198
10838
- msgid "Treat the other images as a set."
10839
- msgstr ""
10840
-
10841
- #: wppa-settings-autosave.php:4199
10842
- msgid ""
10843
- "If checked, you can scroll through the images in the lightbox view. Requires "
10844
- "item 5 to be checked."
10845
- msgstr ""
10846
-
10847
- #: wppa-settings-autosave.php:4206
10848
- msgid "Use hires files"
10849
- msgstr ""
10850
-
10851
- #: wppa-settings-autosave.php:4207
10852
- msgid "Use the highest resolution available for lightbox."
10853
- msgstr ""
10854
-
10855
- #: wppa-settings-autosave.php:4208
10856
- msgid "Ticking this box is recommended for lightbox fullscreen modes."
10857
- msgstr ""
10858
-
10859
- #: wppa-settings-autosave.php:4216
10860
- msgid "Videos on lightbox start automaticly."
10861
- msgstr ""
10862
-
10863
- #: wppa-settings-autosave.php:4225
10864
- msgid "Audio on lightbox start automaticly."
10865
- msgstr ""
10866
-
10867
- #: wppa-settings-autosave.php:4250
10868
- msgid "Table V:"
10869
- msgstr ""
10870
-
10871
- #: wppa-settings-autosave.php:4250
10872
- #, fuzzy
10873
- msgid "Fonts:"
10874
- msgstr "%d kommentarer"
10875
-
10876
- #: wppa-settings-autosave.php:4251
10877
- msgid "This table describes the Fonts used for the wppa+ elements."
10878
- msgstr ""
10879
-
10880
- #: wppa-settings-autosave.php:4261 wppa-settings-autosave.php:4437
10881
- msgid "Font family"
10882
- msgstr ""
10883
-
10884
- #: wppa-settings-autosave.php:4262 wppa-settings-autosave.php:4438
10885
- msgid "Font size"
10886
- msgstr ""
10887
-
10888
- #: wppa-settings-autosave.php:4263 wppa-settings-autosave.php:4439
10889
- msgid "Font color"
10890
- msgstr ""
10891
-
10892
- #: wppa-settings-autosave.php:4264 wppa-settings-autosave.php:4440
10893
- msgid "Font weight"
10894
- msgstr ""
10895
-
10896
- #: wppa-settings-autosave.php:4274
10897
- msgid "normal"
10898
- msgstr ""
10899
-
10900
- #: wppa-settings-autosave.php:4274
10901
- msgid "bold"
10902
- msgstr ""
10903
-
10904
- #: wppa-settings-autosave.php:4274
10905
- msgid "bolder"
10906
- msgstr ""
10907
-
10908
- #: wppa-settings-autosave.php:4274
10909
- msgid "lighter"
10910
- msgstr ""
10911
-
10912
- #: wppa-settings-autosave.php:4277
10913
- #, fuzzy
10914
- msgid "Album titles"
10915
- msgstr "album"
10916
-
10917
- #: wppa-settings-autosave.php:4278
10918
- msgid "Font used for Album titles."
10919
- msgstr ""
10920
-
10921
- #: wppa-settings-autosave.php:4279
10922
- msgid "Enter font name, size, color and weight for album cover titles."
10923
- msgstr ""
10924
-
10925
- #: wppa-settings-autosave.php:4294
10926
- #, fuzzy
10927
- msgid "Slideshow desc"
10928
- msgstr "Slideshow"
10929
-
10930
- #: wppa-settings-autosave.php:4295
10931
- #, fuzzy
10932
- msgid "Font for slideshow photo descriptions."
10933
- msgstr "Inds&aelig;t/rediger beskrivelse af foto"
10934
-
10935
- #: wppa-settings-autosave.php:4296
10936
- msgid ""
10937
- "Enter font name, size, color and weight for slideshow photo descriptions."
10938
- msgstr ""
10939
-
10940
- #: wppa-settings-autosave.php:4311
10941
- #, fuzzy
10942
- msgid "Slideshow name"
10943
- msgstr "Slideshow"
10944
-
10945
- #: wppa-settings-autosave.php:4312
10946
- #, fuzzy
10947
- msgid "Font for slideshow photo names."
10948
- msgstr "Indtast foto navn"
10949
-
10950
- #: wppa-settings-autosave.php:4313
10951
- msgid "Enter font name, size, color and weight for slideshow photo names."
10952
- msgstr ""
10953
-
10954
- #: wppa-settings-autosave.php:4328
10955
- msgid "Navigations"
10956
- msgstr ""
10957
-
10958
- #: wppa-settings-autosave.php:4329
10959
- msgid "Font for navigations."
10960
- msgstr ""
10961
-
10962
- #: wppa-settings-autosave.php:4330
10963
- msgid "Enter font name, size, color and weight for navigation items."
10964
- msgstr ""
10965
-
10966
- #: wppa-settings-autosave.php:4346
10967
- msgid "Font for text under thumbnails."
10968
- msgstr ""
10969
-
10970
- #: wppa-settings-autosave.php:4347
10971
- msgid ""
10972
- "Enter font name, size, color and weight for text under thumbnail images."
10973
- msgstr ""
10974
-
10975
- #: wppa-settings-autosave.php:4363
10976
- msgid "General font in wppa boxes."
10977
- msgstr ""
10978
-
10979
- #: wppa-settings-autosave.php:4364
10980
- msgid "Enter font name, size, color and weight for all other items."
10981
- msgstr ""
10982
-
10983
- #: wppa-settings-autosave.php:4380
10984
- msgid "Font in wppa number bars."
10985
- msgstr ""
10986
-
10987
- #: wppa-settings-autosave.php:4381 wppa-settings-autosave.php:4398
10988
- msgid "Enter font name, size, color and weight for numberbar navigation."
10989
- msgstr ""
10990
-
10991
- #: wppa-settings-autosave.php:4396
10992
- msgid "Numbar Active"
10993
- msgstr ""
10994
-
10995
- #: wppa-settings-autosave.php:4397
10996
- msgid "Font in wppa number bars, active item."
10997
- msgstr ""
10998
-
10999
- #: wppa-settings-autosave.php:4414
11000
- msgid "Font in wppa lightbox overlays."
11001
- msgstr ""
11002
-
11003
- #: wppa-settings-autosave.php:4415
11004
- msgid "Enter font name, size, color and weight for wppa lightbox overlays."
11005
- msgstr ""
11006
-
11007
- #: wppa-settings-autosave.php:4450
11008
- msgid "Table VI:"
11009
- msgstr ""
11010
-
11011
- #: wppa-settings-autosave.php:4450
11012
- #, fuzzy
11013
- msgid "Links:"
11014
- msgstr "Link til"
11015
-
11016
- #: wppa-settings-autosave.php:4451
11017
- msgid "This table defines the link types and pages."
11018
- msgstr ""
11019
-
11020
- #: wppa-settings-autosave.php:4462 wppa-settings-autosave.php:5489
11021
- #, fuzzy
11022
- msgid "Link page"
11023
- msgstr "Link til"
11024
-
11025
- #: wppa-settings-autosave.php:4464 wppa-settings-autosave.php:5491
11026
- msgid "Photo specific link overrules"
11027
- msgstr ""
11028
-
11029
- #: wppa-settings-autosave.php:4464 wppa-settings-autosave.php:5491
11030
- msgid "PSO"
11031
- msgstr ""
11032
-
11033
- #: wppa-settings-autosave.php:4514
11034
- #, fuzzy
11035
- msgid "--- The same post or page ---"
11036
- msgstr "--- vis ikke ---"
11037
-
11038
- #: wppa-settings-autosave.php:4545
11039
- msgid "--- No page to link to (yet) ---"
11040
- msgstr ""
11041
-
11042
- #: wppa-settings-autosave.php:4550
11043
- #, fuzzy
11044
- msgid "--- Will be auto created ---"
11045
- msgstr "--- vis ikke ---"
11046
-
11047
- #: wppa-settings-autosave.php:4552
11048
- msgid "Links from images in WPPA+ Widgets"
11049
- msgstr ""
11050
-
11051
- #: wppa-settings-autosave.php:4554
11052
- msgid "PotdWidget"
11053
- msgstr ""
11054
-
11055
- #: wppa-settings-autosave.php:4555
11056
- msgid "Photo Of The Day widget link."
11057
- msgstr ""
11058
-
11059
- #: wppa-settings-autosave.php:4556
11060
- msgid "Select the type of link the photo of the day points to."
11061
- msgstr ""
11062
-
11063
- #: wppa-settings-autosave.php:4557
11064
- msgid ""
11065
- "If you select 'defined on widget admin page' you can manually enter a link "
11066
- "and title on the Photo of the day Widget Admin page."
11067
- msgstr ""
11068
-
11069
- #: wppa-settings-autosave.php:4566 wppa-settings-autosave.php:4609
11070
- #: wppa-settings-autosave.php:4687 wppa-settings-autosave.php:4730
11071
- #: wppa-settings-autosave.php:4778 wppa-settings-autosave.php:4825
11072
- #: wppa-settings-autosave.php:4872 wppa-settings-autosave.php:4924
11073
- #: wppa-settings-autosave.php:4962 wppa-settings-autosave.php:5012
11074
- #: wppa-settings-autosave.php:5054 wppa-settings-autosave.php:5094
11075
- #: wppa-settings-autosave.php:8971
11076
- msgid "no link at all."
11077
- msgstr ""
11078
-
11079
- #: wppa-settings-autosave.php:4567 wppa-settings-autosave.php:4610
11080
- #: wppa-settings-autosave.php:4688 wppa-settings-autosave.php:4731
11081
- #: wppa-settings-autosave.php:4779 wppa-settings-autosave.php:4826
11082
- #: wppa-settings-autosave.php:4873 wppa-settings-autosave.php:4925
11083
- #: wppa-settings-autosave.php:4963 wppa-settings-autosave.php:5013
11084
- #: wppa-settings-autosave.php:5055 wppa-settings-autosave.php:5095
11085
- #: wppa-settings-autosave.php:8972
11086
- msgid "the plain photo (file)."
11087
- msgstr ""
11088
-
11089
- #: wppa-settings-autosave.php:4568 wppa-settings-autosave.php:8978
11090
- msgid "defined on widget admin page."
11091
- msgstr ""
11092
-
11093
- #: wppa-settings-autosave.php:4569 wppa-settings-autosave.php:4612
11094
- #: wppa-settings-autosave.php:5014 wppa-settings-autosave.php:5056
11095
- #: wppa-settings-autosave.php:8976
11096
- msgid "the content of the album."
11097
- msgstr ""
11098
-
11099
- #: wppa-settings-autosave.php:4570 wppa-settings-autosave.php:4613
11100
- #: wppa-settings-autosave.php:4689 wppa-settings-autosave.php:4734
11101
- #: wppa-settings-autosave.php:4782 wppa-settings-autosave.php:4829
11102
- #: wppa-settings-autosave.php:4876 wppa-settings-autosave.php:4964
11103
- #: wppa-settings-autosave.php:5015 wppa-settings-autosave.php:5057
11104
- #: wppa-settings-autosave.php:8973
11105
- msgid "the full size photo in a slideshow."
11106
- msgstr ""
11107
-
11108
- #: wppa-settings-autosave.php:4571 wppa-settings-autosave.php:4614
11109
- #: wppa-settings-autosave.php:4690 wppa-settings-autosave.php:4735
11110
- #: wppa-settings-autosave.php:4783 wppa-settings-autosave.php:4830
11111
- #: wppa-settings-autosave.php:4877 wppa-settings-autosave.php:4965
11112
- #: wppa-settings-autosave.php:5016 wppa-settings-autosave.php:5058
11113
- #: wppa-settings-autosave.php:5096 wppa-settings-autosave.php:8974
11114
- msgid "the fullsize photo on its own."
11115
- msgstr ""
11116
-
11117
- #: wppa-settings-autosave.php:4572 wppa-settings-autosave.php:4615
11118
- #: wppa-settings-autosave.php:4654 wppa-settings-autosave.php:4693
11119
- #: wppa-settings-autosave.php:4738 wppa-settings-autosave.php:4786
11120
- #: wppa-settings-autosave.php:4833 wppa-settings-autosave.php:4880
11121
- #: wppa-settings-autosave.php:4968
11122
- msgid "a plain page without a querystring."
11123
- msgstr ""
11124
-
11125
- #: wppa-settings-autosave.php:4573 wppa-settings-autosave.php:4616
11126
- #: wppa-settings-autosave.php:4655 wppa-settings-autosave.php:4694
11127
- #: wppa-settings-autosave.php:4739 wppa-settings-autosave.php:4787
11128
- #: wppa-settings-autosave.php:4834 wppa-settings-autosave.php:4881
11129
- #: wppa-settings-autosave.php:4927 wppa-settings-autosave.php:4969
11130
- #: wppa-settings-autosave.php:5017 wppa-settings-autosave.php:5059
11131
- #: wppa-settings-autosave.php:5097
11132
- msgid "lightbox."
11133
- msgstr ""
11134
-
11135
- #: wppa-settings-autosave.php:4598
11136
- msgid "SlideWidget"
11137
- msgstr ""
11138
-
11139
- #: wppa-settings-autosave.php:4599
11140
- msgid "Slideshow widget photo link."
11141
- msgstr ""
11142
-
11143
- #: wppa-settings-autosave.php:4600
11144
- msgid "Select the type of link the slideshow photos point to."
11145
- msgstr ""
11146
-
11147
- #: wppa-settings-autosave.php:4611 wppa-settings-autosave.php:8977
11148
- msgid "defined at widget activation."
11149
- msgstr ""
11150
-
11151
- #: wppa-settings-autosave.php:4641
11152
- #, fuzzy
11153
- msgid "Album widget"
11154
- msgstr "Album administration"
11155
-
11156
- #: wppa-settings-autosave.php:4642
11157
- msgid "Album widget thumbnail link"
11158
- msgstr ""
11159
-
11160
- #: wppa-settings-autosave.php:4643
11161
- msgid "Select the type of link the album widget photos point to."
11162
- msgstr ""
11163
-
11164
- #: wppa-settings-autosave.php:4652
11165
- msgid "subalbums and thumbnails."
11166
- msgstr ""
11167
-
11168
- #: wppa-settings-autosave.php:4653
11169
- #, fuzzy
11170
- msgid "slideshow."
11171
- msgstr "Slideshow"
11172
-
11173
- #: wppa-settings-autosave.php:4676
11174
- #, fuzzy
11175
- msgid "ThumbnailWidget"
11176
- msgstr "Foto Top Ti"
11177
-
11178
- #: wppa-settings-autosave.php:4677
11179
- #, fuzzy
11180
- msgid "Thumbnail widget photo link."
11181
- msgstr "Miniatura"
11182
-
11183
- #: wppa-settings-autosave.php:4678
11184
- msgid "Select the type of link the thumbnail photos point to."
11185
- msgstr ""
11186
-
11187
- #: wppa-settings-autosave.php:4691 wppa-settings-autosave.php:4736
11188
- #: wppa-settings-autosave.php:4784 wppa-settings-autosave.php:4831
11189
- #: wppa-settings-autosave.php:4878 wppa-settings-autosave.php:4966
11190
- msgid "the single photo in the style of a slideshow."
11191
- msgstr ""
11192
-
11193
- #: wppa-settings-autosave.php:4692 wppa-settings-autosave.php:4737
11194
- #: wppa-settings-autosave.php:4785 wppa-settings-autosave.php:4832
11195
- #: wppa-settings-autosave.php:4879 wppa-settings-autosave.php:4967
11196
- #: wppa-settings-autosave.php:5099
11197
- msgid "the fs photo with download and print buttons."
11198
- msgstr ""
11199
-
11200
- #: wppa-settings-autosave.php:4719
11201
- msgid "TopTenWidget"
11202
- msgstr ""
11203
-
11204
- #: wppa-settings-autosave.php:4720
11205
- msgid "TopTen widget photo link."
11206
- msgstr ""
11207
-
11208
- #: wppa-settings-autosave.php:4721
11209
- msgid "Select the type of link the top ten photos point to."
11210
- msgstr ""
11211
-
11212
- #: wppa-settings-autosave.php:4732
11213
- msgid "the content of the virtual topten album."
11214
- msgstr ""
11215
-
11216
- #: wppa-settings-autosave.php:4733 wppa-settings-autosave.php:4781
11217
- #: wppa-settings-autosave.php:4828 wppa-settings-autosave.php:4875
11218
- msgid "the content of the thumbnails album."
11219
- msgstr ""
11220
-
11221
- #: wppa-settings-autosave.php:4767
11222
- msgid "LasTenWidget"
11223
- msgstr ""
11224
-
11225
- #: wppa-settings-autosave.php:4768
11226
- #, fuzzy
11227
- msgid "Last Ten widget photo link."
11228
- msgstr "Foto Top Ti"
11229
-
11230
- #: wppa-settings-autosave.php:4769
11231
- msgid "Select the type of link the last ten photos point to."
11232
- msgstr ""
11233
-
11234
- #: wppa-settings-autosave.php:4780
11235
- msgid "the content of the virtual lasten album."
11236
- msgstr ""
11237
-
11238
- #: wppa-settings-autosave.php:4814
11239
- #, fuzzy
11240
- msgid "CommentWidget"
11241
- msgstr "Kommentarer tilf&oslash;jet"
11242
-
11243
- #: wppa-settings-autosave.php:4815
11244
- #, fuzzy
11245
- msgid "Comment widget photo link."
11246
- msgstr "Kommentar til billeder"
11247
-
11248
- #: wppa-settings-autosave.php:4816
11249
- msgid "Select the type of link the comment widget photos point to."
11250
- msgstr ""
11251
-
11252
- #: wppa-settings-autosave.php:4827
11253
- msgid "the content of the virtual comten album."
11254
- msgstr ""
11255
-
11256
- #: wppa-settings-autosave.php:4861
11257
- msgid "FeaTenWidget"
11258
- msgstr ""
11259
-
11260
- #: wppa-settings-autosave.php:4862
11261
- msgid "FeaTen widget photo link."
11262
- msgstr ""
11263
-
11264
- #: wppa-settings-autosave.php:4863
11265
- msgid "Select the type of link the featured ten photos point to."
11266
- msgstr ""
11267
-
11268
- #: wppa-settings-autosave.php:4874
11269
- msgid "the content of the virtual featen album."
11270
- msgstr ""
11271
-
11272
- #: wppa-settings-autosave.php:4907
11273
- msgid "Links from other WPPA+ images"
11274
- msgstr ""
11275
-
11276
- #: wppa-settings-autosave.php:4909
11277
- #, fuzzy
11278
- msgid "Cover Image"
11279
- msgstr "Billede"
11280
-
11281
- #: wppa-settings-autosave.php:4910
11282
- msgid "The link from the cover image of an album."
11283
- msgstr ""
11284
-
11285
- #: wppa-settings-autosave.php:4911
11286
- msgid "Select the type of link the coverphoto points to."
11287
- msgstr ""
11288
-
11289
- #: wppa-settings-autosave.php:4912
11290
- msgid "The link from the album title can be configured on the Edit Album page."
11291
- msgstr ""
11292
-
11293
- #: wppa-settings-autosave.php:4913
11294
- msgid "This link will be used for the photo also if you select: same as title."
11295
- msgstr ""
11296
-
11297
- #: wppa-settings-autosave.php:4914
11298
- msgid ""
11299
- "If you specify New Tab on this line, all links from the cover will open a "
11300
- "new tab,"
11301
- msgstr ""
11302
-
11303
- #: wppa-settings-autosave.php:4915
11304
- msgid "except when Ajax is activated on Table IV-A1."
11305
- msgstr ""
11306
-
11307
- #: wppa-settings-autosave.php:4926 wppa-settings-autosave.php:8979
11308
- msgid "same as title."
11309
- msgstr ""
11310
-
11311
- #: wppa-settings-autosave.php:4928
11312
- msgid "a slideshow starting at the photo"
11313
- msgstr ""
11314
-
11315
- #: wppa-settings-autosave.php:4949
11316
- #, fuzzy
11317
- msgid "Thumbnail"
11318
- msgstr "Miniatura"
11319
-
11320
- #: wppa-settings-autosave.php:4950
11321
- #, fuzzy
11322
- msgid "Thumbnail link."
11323
- msgstr "Foto Top Ti"
11324
-
11325
- #: wppa-settings-autosave.php:4951 wppa-settings-autosave.php:5001
11326
- #: wppa-settings-autosave.php:5043
11327
- msgid "Select the type of link you want, or no link at all."
11328
- msgstr ""
11329
-
11330
- #: wppa-settings-autosave.php:4952 wppa-settings-autosave.php:5002
11331
- #: wppa-settings-autosave.php:5044
11332
- msgid ""
11333
- "If you select the fullsize photo on its own, it will be stretched to fit, "
11334
- "regardless of that setting."
11335
- msgstr ""
11336
-
11337
- #: wppa-settings-autosave.php:4953 wppa-settings-autosave.php:5003
11338
- #: wppa-settings-autosave.php:5045
11339
- #, php-format
11340
- msgid ""
11341
- "Note that a page must have at least %%wppa%% or [wppa][/wppa] in its content "
11342
- "to show up the photo(s)."
11343
- msgstr ""
11344
-
11345
- #: wppa-settings-autosave.php:4982
11346
- #, fuzzy
11347
- msgid "Auto Page"
11348
- msgstr "Automatisk, afskudt"
11349
-
11350
- #: wppa-settings-autosave.php:4999
11351
- #, fuzzy
11352
- msgid "Sphoto"
11353
- msgstr "foto"
11354
-
11355
- #: wppa-settings-autosave.php:5000
11356
- #, fuzzy
11357
- msgid "Single photo link."
11358
- msgstr "Indtast foto navn"
11359
-
11360
- #: wppa-settings-autosave.php:5041
11361
- #, fuzzy
11362
- msgid "Mphoto"
11363
- msgstr "foto"
11364
-
11365
- #: wppa-settings-autosave.php:5042
11366
- msgid "Media-like photo link."
11367
- msgstr ""
11368
-
11369
- #: wppa-settings-autosave.php:5084
11370
- msgid "Slideshow fullsize link"
11371
- msgstr ""
11372
-
11373
- #: wppa-settings-autosave.php:5085
11374
- msgid ""
11375
- "You can overrule lightbox but not big browse buttons with the photo specifc "
11376
- "link."
11377
- msgstr ""
11378
-
11379
- #: wppa-settings-autosave.php:5098
11380
- msgid "lightbox single photos."
11381
- msgstr ""
11382
-
11383
- #: wppa-settings-autosave.php:5100
11384
- #, fuzzy
11385
- msgid "the thumbnails."
11386
- msgstr "Se"
11387
-
11388
- #: wppa-settings-autosave.php:5124
11389
- msgid "Film linktype"
11390
- msgstr ""
11391
-
11392
- #: wppa-settings-autosave.php:5125
11393
- msgid "Direct access goto image in:"
11394
- msgstr ""
11395
-
11396
- #: wppa-settings-autosave.php:5126
11397
- msgid ""
11398
- "Select the action to be taken when the user clicks on a filmstrip image."
11399
- msgstr ""
11400
-
11401
- #: wppa-settings-autosave.php:5131
11402
- #, fuzzy
11403
- msgid "slideshow window"
11404
- msgstr "Slideshow"
11405
-
11406
- #: wppa-settings-autosave.php:5132
11407
- msgid "lightbox overlay"
11408
- msgstr ""
11409
-
11410
- #: wppa-settings-autosave.php:5147
11411
- #, fuzzy
11412
- msgid "Other links"
11413
- msgstr "Andet"
11414
-
11415
- #: wppa-settings-autosave.php:5149
11416
- msgid "Download Link (aka Art Monkey link)"
11417
- msgstr ""
11418
-
11419
- #: wppa-settings-autosave.php:5150
11420
- msgid "Makes the photo name a download button."
11421
- msgstr ""
11422
-
11423
- #: wppa-settings-autosave.php:5151
11424
- msgid "Link Photo name in slideshow to file or zip with photoname as filename."
11425
- msgstr ""
11426
-
11427
- #: wppa-settings-autosave.php:5155 wppa-settings-autosave.php:5202
11428
- msgid "image file"
11429
- msgstr ""
11430
-
11431
- #: wppa-settings-autosave.php:5156 wppa-settings-autosave.php:5203
11432
- msgid "zipped image"
11433
- msgstr ""
11434
-
11435
- #: wppa-settings-autosave.php:5169
11436
- msgid "Art Monkey Source"
11437
- msgstr ""
11438
-
11439
- #: wppa-settings-autosave.php:5170
11440
- msgid "Use Source file for art monkey link if available."
11441
- msgstr ""
11442
-
11443
- #: wppa-settings-autosave.php:5179
11444
- msgid "Art Monkey Display"
11445
- msgstr ""
11446
-
11447
- #: wppa-settings-autosave.php:5180
11448
- msgid "Select button or link ( text )."
11449
- msgstr ""
11450
-
11451
- #: wppa-settings-autosave.php:5185
11452
- msgid "Textlink"
11453
- msgstr ""
11454
-
11455
- #: wppa-settings-autosave.php:5197
11456
- msgid "Popup Download Link"
11457
- msgstr ""
11458
-
11459
- #: wppa-settings-autosave.php:5198
11460
- msgid "Configure the download link on fullsize popups."
11461
- msgstr ""
11462
-
11463
- #: wppa-settings-autosave.php:5199
11464
- msgid "Link fullsize popup download button to either image or zip file."
11465
- msgstr ""
11466
-
11467
- #: wppa-settings-autosave.php:5215
11468
- msgid "Download link on lightbox"
11469
- msgstr ""
11470
-
11471
- #: wppa-settings-autosave.php:5216
11472
- msgid "Art monkey link on lightbox photo names."
11473
- msgstr ""
11474
-
11475
- #: wppa-settings-autosave.php:5225
11476
- #, fuzzy
11477
- msgid "Album download link"
11478
- msgstr "Album administration"
11479
-
11480
- #: wppa-settings-autosave.php:5226
11481
- msgid "Place an album download link on the album covers"
11482
- msgstr ""
11483
-
11484
- #: wppa-settings-autosave.php:5227
11485
- msgid "Creates a download zipfile containing the photos of the album"
11486
- msgstr ""
11487
-
11488
- #: wppa-settings-autosave.php:5235
11489
- msgid "Album download Source"
11490
- msgstr ""
11491
-
11492
- #: wppa-settings-autosave.php:5236
11493
- msgid "Use Source file for album download link if available."
11494
- msgstr ""
11495
-
11496
- #: wppa-settings-autosave.php:5245
11497
- msgid "Tagcloud Link"
11498
- msgstr ""
11499
-
11500
- #: wppa-settings-autosave.php:5246
11501
- msgid "Configure the link from the tags in the tag cloud."
11502
- msgstr ""
11503
-
11504
- #: wppa-settings-autosave.php:5247
11505
- msgid "Link the tag words to ether the thumbnails or the slideshow."
11506
- msgstr ""
11507
-
11508
- #: wppa-settings-autosave.php:5256 wppa-settings-autosave.php:5287
11509
- #: wppa-settings-autosave.php:5382
11510
- #, fuzzy
11511
- msgid "slideshow"
11512
- msgstr "Slideshow"
11513
-
11514
- #: wppa-settings-autosave.php:5276
11515
- msgid "Multitag Link"
11516
- msgstr ""
11517
-
11518
- #: wppa-settings-autosave.php:5277
11519
- msgid "Configure the link from the multitag selection."
11520
- msgstr ""
11521
-
11522
- #: wppa-settings-autosave.php:5278
11523
- msgid "Link to ether the thumbnails or the slideshow."
11524
- msgstr ""
11525
-
11526
- #: wppa-settings-autosave.php:5307
11527
- #, fuzzy
11528
- msgid "Super View Landing"
11529
- msgstr "Se forside fotos"
11530
-
11531
- #: wppa-settings-autosave.php:5308
11532
- msgid "The landing page for the Super View widget."
11533
- msgstr ""
11534
-
11535
- #: wppa-settings-autosave.php:5316
11536
- msgid "Defined by the visitor"
11537
- msgstr ""
11538
-
11539
- #: wppa-settings-autosave.php:5329
11540
- #, fuzzy
11541
- msgid "Uploader Landing"
11542
- msgstr "Indl&aelig;sning fejlede"
11543
-
11544
- #: wppa-settings-autosave.php:5330
11545
- msgid "Select the landing page for the Uploader Widget"
11546
- msgstr ""
11547
-
11548
- #: wppa-settings-autosave.php:5350
11549
- msgid "Bestof Landing"
11550
- msgstr ""
11551
-
11552
- #: wppa-settings-autosave.php:5351
11553
- msgid "Select the landing page for the BestOf Widget / Box"
11554
- msgstr ""
11555
-
11556
- #: wppa-settings-autosave.php:5371
11557
- msgid "Album navigator Link"
11558
- msgstr ""
11559
-
11560
- #: wppa-settings-autosave.php:5372
11561
- msgid "Select link type and page for the Album navigator Widget"
11562
- msgstr ""
11563
-
11564
- #: wppa-settings-autosave.php:5400
11565
- msgid "Supersearch Landing"
11566
- msgstr ""
11567
-
11568
- #: wppa-settings-autosave.php:5401
11569
- msgid "Select the landing page for the Supersearch Box"
11570
- msgstr ""
11571
-
11572
- #: wppa-settings-autosave.php:5421
11573
- msgid "SM widget return"
11574
- msgstr ""
11575
-
11576
- #: wppa-settings-autosave.php:5422
11577
- msgid "Select the return link for social media from widgets"
11578
- msgstr ""
11579
-
11580
- #: wppa-settings-autosave.php:5423
11581
- msgid ""
11582
- "If you select Landing page, and it wont work, it may be required to set the "
11583
- "Occur to the sequence number of the landing shortcode on the page."
11584
- msgstr ""
11585
-
11586
- #: wppa-settings-autosave.php:5424
11587
- msgid ""
11588
- "Normally it is 1, but you can try 2 etc. Always create a new shared link to "
11589
- "test a setting."
11590
- msgstr ""
11591
-
11592
- #: wppa-settings-autosave.php:5432
11593
- #, fuzzy
11594
- msgid "Home page"
11595
- msgstr "Hjem"
11596
-
11597
- #: wppa-settings-autosave.php:5433
11598
- msgid "Landing page"
11599
- msgstr ""
11600
-
11601
- #: wppa-settings-autosave.php:5444
11602
- msgid "Occur"
11603
- msgstr ""
11604
-
11605
- #: wppa-settings-autosave.php:5453
11606
- msgid "Album cover subalbums link"
11607
- msgstr ""
11608
-
11609
- #: wppa-settings-autosave.php:5454
11610
- msgid "Select the linktype for sub-albums on parent album covers."
11611
- msgstr ""
11612
-
11613
- #: wppa-settings-autosave.php:5462
11614
- msgid "No link at all"
11615
- msgstr ""
11616
-
11617
- #: wppa-settings-autosave.php:5463
11618
- #, fuzzy
11619
- msgid "Thumbnails and covers"
11620
- msgstr "Miniatura"
11621
-
11622
- #: wppa-settings-autosave.php:5464
11623
- #, fuzzy
11624
- msgid "Slideshow or covers"
11625
- msgstr "Slideshow"
11626
-
11627
- #: wppa-settings-autosave.php:5472
11628
- msgid "Recursive"
11629
- msgstr ""
11630
-
11631
- #: wppa-settings-autosave.php:5501
11632
- msgid "Table VII:"
11633
- msgstr ""
11634
-
11635
- #: wppa-settings-autosave.php:5501
11636
- msgid "Permissions and Restrictions:"
11637
- msgstr ""
11638
-
11639
- #: wppa-settings-autosave.php:5502
11640
- msgid ""
11641
- "This table describes the access settings for admin and front-end activities."
11642
- msgstr ""
11643
-
11644
- #: wppa-settings-autosave.php:5523
11645
- #, fuzzy
11646
- msgid "Moderate P+C"
11647
- msgstr "Vedligehold"
11648
-
11649
- #: wppa-settings-autosave.php:5527
11650
- #, fuzzy
11651
- msgid "Comment&nbsp;Admin"
11652
- msgstr "%d kommentarer"
11653
-
11654
- #: wppa-settings-autosave.php:5530
11655
- msgid "Role"
11656
- msgstr ""
11657
-
11658
- #: wppa-settings-autosave.php:5539
11659
- msgid ""
11660
- "Admin settings per user role. Enabling these settings will overrule the "
11661
- "front-end settings for the specific user role"
11662
- msgstr ""
11663
-
11664
- #: wppa-settings-autosave.php:5563
11665
- msgid "Frontend create Albums and upload Photos enabling and limiting settings"
11666
- msgstr ""
11667
-
11668
- #: wppa-settings-autosave.php:5565
11669
- #, fuzzy
11670
- msgid "User create Albums"
11671
- msgstr "Impossibile creare album. "
11672
-
11673
- #: wppa-settings-autosave.php:5566
11674
- #, fuzzy
11675
- msgid "Enable frontend album creation."
11676
- msgstr "Inserisci / modifica la descrizione per questo album."
11677
-
11678
- #: wppa-settings-autosave.php:5567
11679
- msgid "If you check this item, frontend album creation will be enabled."
11680
- msgstr ""
11681
-
11682
- #: wppa-settings-autosave.php:5577
11683
- #, fuzzy
11684
- msgid "User edit album"
11685
- msgstr "Impossibile creare album. "
11686
-
11687
- #: wppa-settings-autosave.php:5578
11688
- #, fuzzy
11689
- msgid "Enable frontent edit album name and description."
11690
- msgstr "Inserisci / modifica la descrizione per questo album."
11691
-
11692
- #: wppa-settings-autosave.php:5588
11693
- #, fuzzy
11694
- msgid "User delete Albums"
11695
- msgstr "Impossibile creare album. "
11696
-
11697
- #: wppa-settings-autosave.php:5589
11698
- #, fuzzy
11699
- msgid "Enable frontend album deletion"
11700
- msgstr "Inserisci / modifica la descrizione per questo album."
11701
-
11702
- #: wppa-settings-autosave.php:5590
11703
- msgid "If you check this item, frontend album deletion will be enabled."
11704
- msgstr ""
11705
-
11706
- #: wppa-settings-autosave.php:5600
11707
- #, fuzzy
11708
- msgid "User create Albums login"
11709
- msgstr "Impossibile creare album. "
11710
-
11711
- #: wppa-settings-autosave.php:5601
11712
- msgid "Frontend album creation requires the user is logged in."
11713
- msgstr ""
11714
-
11715
- #: wppa-settings-autosave.php:5627
11716
- #, fuzzy, php-format
11717
- msgid "Upload limit %s"
11718
- msgstr "Indsend foto"
11719
-
11720
- #: wppa-settings-autosave.php:5628
11721
- msgid "Limit upload capacity for logged out users."
11722
- msgstr ""
11723
-
11724
- #: wppa-settings-autosave.php:5629
11725
- #, php-format
11726
- msgid "Limit upload capacity for the user role %s."
11727
- msgstr ""
11728
-
11729
- #: wppa-settings-autosave.php:5630
11730
- msgid "This setting has only effect when Table VII-B2 is unchecked."
11731
- msgstr ""
11732
-
11733
- #: wppa-settings-autosave.php:5631
11734
- msgid ""
11735
- "This limitation only applies to frontend uploads when the same userrole does "
11736
- "not have the Upload checkbox checked in Table VII-A."
11737
- msgstr ""
11738
-
11739
- #: wppa-settings-autosave.php:5632 wppa-settings-autosave.php:5648
11740
- #: wppa-settings-autosave.php:7123
11741
- msgid "A value of 0 means: no limit."
11742
- msgstr ""
11743
-
11744
- #: wppa-settings-autosave.php:5645
11745
- #, fuzzy, php-format
11746
- msgid "Album limit %s"
11747
- msgstr "Album administration"
11748
-
11749
- #: wppa-settings-autosave.php:5646
11750
- #, php-format
11751
- msgid "Limit number of albums for the user role %s."
11752
- msgstr ""
11753
-
11754
- #: wppa-settings-autosave.php:5647
11755
- msgid ""
11756
- "This limitation only applies to frontend create albums when the same "
11757
- "userrole does not have the Album admin checkbox checked in Table VII-A."
11758
- msgstr ""
11759
-
11760
- #: wppa-settings-autosave.php:5659
11761
- #, fuzzy
11762
- msgid "Upload one only"
11763
- msgstr "Indsend foto"
11764
-
11765
- #: wppa-settings-autosave.php:5660
11766
- msgid "Non admin users can upload only one photo at a time."
11767
- msgstr ""
11768
-
11769
- #: wppa-settings-autosave.php:5670
11770
- #, fuzzy
11771
- msgid "Upload moderation"
11772
- msgstr "Indsend foto"
11773
-
11774
- #: wppa-settings-autosave.php:5671
11775
- #, fuzzy
11776
- msgid "Uploaded photos need moderation."
11777
- msgstr "Denne indsendelse kr&aelig;ver godkendelse"
11778
-
11779
- #: wppa-settings-autosave.php:5672
11780
- msgid ""
11781
- "If checked, photos uploaded by users who do not have photo album admin "
11782
- "access rights need moderation."
11783
- msgstr ""
11784
-
11785
- #: wppa-settings-autosave.php:5673
11786
- msgid ""
11787
- "Users who have photo album admin access rights can change the photo status "
11788
- "to publish or featured."
11789
- msgstr ""
11790
-
11791
- #: wppa-settings-autosave.php:5674
11792
- msgid "You can set the album admin access rights in Table VII-A."
11793
- msgstr ""
11794
-
11795
- #: wppa-settings-autosave.php:5683
11796
- #, fuzzy
11797
- msgid "Upload notify"
11798
- msgstr "Indsend foto"
11799
-
11800
- #: wppa-settings-autosave.php:5684
11801
- msgid "Notify admin at frontend upload."
11802
- msgstr ""
11803
-
11804
- #: wppa-settings-autosave.php:5685 wppa-settings-autosave.php:5696
11805
- msgid "If checked, admin will receive a notification by email."
11806
- msgstr ""
11807
-
11808
- #: wppa-settings-autosave.php:5694
11809
- msgid "Upload backend notify"
11810
- msgstr ""
11811
-
11812
- #: wppa-settings-autosave.php:5695
11813
- msgid "Notify admin at backend upload."
11814
- msgstr ""
11815
-
11816
- #: wppa-settings-autosave.php:5705
11817
- msgid "Max size in pixels"
11818
- msgstr ""
11819
-
11820
- #: wppa-settings-autosave.php:5706
11821
- msgid "Max size for height and width for front-end uploads."
11822
- msgstr ""
11823
-
11824
- #: wppa-settings-autosave.php:5707
11825
- msgid "Enter the maximum size. 0 is unlimited"
11826
- msgstr ""
11827
-
11828
- #: wppa-settings-autosave.php:5716
11829
- msgid "Home after Upload"
11830
- msgstr ""
11831
-
11832
- #: wppa-settings-autosave.php:5717
11833
- msgid "After successfull front-end upload, go to the home page."
11834
- msgstr ""
11835
-
11836
- #: wppa-settings-autosave.php:5727
11837
- msgid "Admin Functionality restrictions for non administrators"
11838
- msgstr ""
11839
-
11840
- #: wppa-settings-autosave.php:5729
11841
- msgid "Alt thumb is restricted"
11842
- msgstr ""
11843
-
11844
- #: wppa-settings-autosave.php:5730
11845
- msgid "Using <b>alt thumbsize</b> is a restricted action."
11846
- msgstr ""
11847
-
11848
- #: wppa-settings-autosave.php:5731
11849
- msgid ""
11850
- "If checked: alt thumbsize can not be set in album admin by users not having "
11851
- "admin rights."
11852
- msgstr ""
11853
-
11854
- #: wppa-settings-autosave.php:5740
11855
- msgid "Link is restricted"
11856
- msgstr ""
11857
-
11858
- #: wppa-settings-autosave.php:5741
11859
- msgid "Using <b>Link to</b> is a restricted action."
11860
- msgstr ""
11861
-
11862
- #: wppa-settings-autosave.php:5742
11863
- msgid ""
11864
- "If checked: Link to: can not be set in album admin by users not having admin "
11865
- "rights."
11866
- msgstr ""
11867
-
11868
- #: wppa-settings-autosave.php:5751
11869
- msgid "CoverType is restricted"
11870
- msgstr ""
11871
-
11872
- #: wppa-settings-autosave.php:5752
11873
- msgid "Changing <b>Cover Type</b> is a restricted action."
11874
- msgstr ""
11875
-
11876
- #: wppa-settings-autosave.php:5753
11877
- msgid ""
11878
- "If checked: Cover Type: can not be set in album admin by users not having "
11879
- "admin rights."
11880
- msgstr ""
11881
-
11882
- #: wppa-settings-autosave.php:5762
11883
- msgid "Photo order# is restricted"
11884
- msgstr ""
11885
-
11886
- #: wppa-settings-autosave.php:5763
11887
- msgid "Changing <b>Photo sort order #</b> is a restricted action."
11888
- msgstr ""
11889
-
11890
- #: wppa-settings-autosave.php:5764
11891
- msgid ""
11892
- "If checked: Photo sort order #: can not be set in photo admin by users not "
11893
- "having admin rights."
11894
- msgstr ""
11895
-
11896
- #: wppa-settings-autosave.php:5773
11897
- msgid "Change source restricted"
11898
- msgstr ""
11899
-
11900
- #: wppa-settings-autosave.php:5774
11901
- msgid "Changing the import source dir requires admin rights."
11902
- msgstr ""
11903
-
11904
- #: wppa-settings-autosave.php:5775
11905
- msgid ""
11906
- "If checked, the imput source for importing photos and albums is restricted "
11907
- "to user role administrator."
11908
- msgstr ""
11909
-
11910
- #: wppa-settings-autosave.php:5784
11911
- msgid "Extended status restricted"
11912
- msgstr ""
11913
-
11914
- #: wppa-settings-autosave.php:5785
11915
- msgid "Setting status other than pending or publish requires admin rights."
11916
- msgstr ""
11917
-
11918
- #: wppa-settings-autosave.php:5795
11919
- msgid "Photo description restricted"
11920
- msgstr ""
11921
-
11922
- #: wppa-settings-autosave.php:5796
11923
- msgid "Edit photo description requires admin rights."
11924
- msgstr ""
11925
-
11926
- #: wppa-settings-autosave.php:5806
11927
- msgid "Update photofiles restricted"
11928
- msgstr ""
11929
-
11930
- #: wppa-settings-autosave.php:5807
11931
- msgid "Re-upload files requires admin rights"
11932
- msgstr ""
11933
-
11934
- #: wppa-settings-autosave.php:5817
11935
- msgid "Miscellaneous limiting settings"
11936
- msgstr ""
11937
-
11938
- #: wppa-settings-autosave.php:5819
11939
- msgid "Owners only"
11940
- msgstr ""
11941
-
11942
- #: wppa-settings-autosave.php:5820
11943
- msgid "Limit edit album access to the album owners only."
11944
- msgstr ""
11945
-
11946
- #: wppa-settings-autosave.php:5821
11947
- msgid "If checked, non-admin users can edit their own albums only."
11948
- msgstr ""
11949
-
11950
- #: wppa-settings-autosave.php:5830
11951
- msgid "Upload Owners only"
11952
- msgstr ""
11953
-
11954
- #: wppa-settings-autosave.php:5831
11955
- msgid "Limit uploads to the album owners only."
11956
- msgstr ""
11957
-
11958
- #: wppa-settings-autosave.php:5832
11959
- msgid ""
11960
- "If checked, users can upload to their own own albums and --- public --- only."
11961
- msgstr ""
11962
-
11963
- #: wppa-settings-autosave.php:5841
11964
- #, fuzzy
11965
- msgid "Uploader Edit"
11966
- msgstr "Indsend foto"
11967
-
11968
- #: wppa-settings-autosave.php:5842
11969
- msgid "Allow the uploader to edit the photo info"
11970
- msgstr ""
11971
-
11972
- #: wppa-settings-autosave.php:5843
11973
- msgid ""
11974
- "If checked, any logged in user that has upload rights and uploads an image "
11975
- "has the capability to edit the photo information."
11976
- msgstr ""
11977
-
11978
- #: wppa-settings-autosave.php:5844
11979
- msgid "Note: This may be AFTER moderation!!"
11980
- msgstr ""
11981
-
11982
- #: wppa-settings-autosave.php:5853
11983
- #, fuzzy
11984
- msgid "Uploader Moderate Comment"
11985
- msgstr "Godkend kommentar administration"
11986
-
11987
- #: wppa-settings-autosave.php:5854
11988
- msgid "The owner of the photo can moderate the photos comments."
11989
- msgstr ""
11990
-
11991
- #: wppa-settings-autosave.php:5855
11992
- msgid "This setting requires \"Uploader edit\" to be enabled also."
11993
- msgstr ""
11994
-
11995
- #: wppa-settings-autosave.php:5864
11996
- msgid "Upload memory check frontend"
11997
- msgstr ""
11998
-
11999
- #: wppa-settings-autosave.php:5865 wppa-settings-autosave.php:5876
12000
- msgid "Disable uploading photos that are too large."
12001
- msgstr ""
12002
-
12003
- #: wppa-settings-autosave.php:5866 wppa-settings-autosave.php:5877
12004
- msgid ""
12005
- "To prevent out of memory crashes during upload and possible database "
12006
- "inconsistencies, uploads can be prevented if the photos are too big."
12007
- msgstr ""
12008
-
12009
- #: wppa-settings-autosave.php:5875
12010
- msgid "Upload memory check admin"
12011
- msgstr ""
12012
-
12013
- #: wppa-settings-autosave.php:5886
12014
- #, fuzzy
12015
- msgid "Comment captcha"
12016
- msgstr "Kommentarer tilf&oslash;jet"
12017
-
12018
- #: wppa-settings-autosave.php:5887
12019
- msgid "Use a simple calculate captcha on comments form."
12020
- msgstr ""
12021
-
12022
- #: wppa-settings-autosave.php:5900
12023
- msgid "Spam lifetime"
12024
- msgstr ""
12025
-
12026
- #: wppa-settings-autosave.php:5901
12027
- msgid "Delete spam comments when older than."
12028
- msgstr ""
12029
-
12030
- #: wppa-settings-autosave.php:5904
12031
- #, fuzzy
12032
- msgid "10 minutes"
12033
- msgstr "1 minut"
12034
-
12035
- #: wppa-settings-autosave.php:5904
12036
- msgid "half an hour"
12037
- msgstr ""
12038
-
12039
- #: wppa-settings-autosave.php:5904
12040
- #, fuzzy
12041
- msgid "one hour"
12042
- msgstr "1 time"
12043
-
12044
- #: wppa-settings-autosave.php:5904
12045
- #, fuzzy
12046
- msgid "one day"
12047
- msgstr "1 dag"
12048
-
12049
- #: wppa-settings-autosave.php:5904
12050
- #, fuzzy
12051
- msgid "one week"
12052
- msgstr "1 uge"
12053
-
12054
- #: wppa-settings-autosave.php:5914
12055
- msgid "Avoid duplicates"
12056
- msgstr ""
12057
-
12058
- #: wppa-settings-autosave.php:5915
12059
- msgid "Prevent the creation of duplicate photos."
12060
- msgstr ""
12061
-
12062
- #: wppa-settings-autosave.php:5916
12063
- msgid ""
12064
- "If checked: uploading, importing, copying or moving photos to other albums "
12065
- "will be prevented when the desitation album already contains a photo with "
12066
- "the same filename."
12067
- msgstr ""
12068
-
12069
- #: wppa-settings-autosave.php:5925
12070
- msgid "Blacklist user"
12071
- msgstr ""
12072
-
12073
- #: wppa-settings-autosave.php:5926 wppa-settings-autosave.php:5927
12074
- msgid "Set the status of all the users photos to 'pending'."
12075
- msgstr ""
12076
-
12077
- #: wppa-settings-autosave.php:5928
12078
- msgid "Also inhibits further uploads."
12079
- msgstr ""
12080
-
12081
- #: wppa-settings-autosave.php:5934
12082
- msgid "--- select a user to blacklist ---"
12083
- msgstr ""
12084
-
12085
- #: wppa-settings-autosave.php:5944 wppa-settings-autosave.php:5949
12086
- #: wppa-settings-autosave.php:5970 wppa-settings-autosave.php:8211
12087
- #: wppa-settings-autosave.php:8253
12088
- msgid "The page will be reloaded after the action has taken place."
12089
- msgstr ""
12090
-
12091
- #: wppa-settings-autosave.php:5950
12092
- msgid "User login name <b>( case sensitive! )</b>:"
12093
- msgstr ""
12094
-
12095
- #: wppa-settings-autosave.php:5958
12096
- msgid "Unblacklist user"
12097
- msgstr ""
12098
-
12099
- #: wppa-settings-autosave.php:5959
12100
- msgid "Set the status of all the users photos to 'publish'."
12101
- msgstr ""
12102
-
12103
- #: wppa-settings-autosave.php:5963
12104
- msgid "--- select a user to unblacklist ---"
12105
- msgstr ""
12106
-
12107
- #: wppa-settings-autosave.php:5978
12108
- #, fuzzy
12109
- msgid "Photo owner change"
12110
- msgstr "Dagens foto"
12111
-
12112
- #: wppa-settings-autosave.php:5979
12113
- msgid "Administrators can change photo owner"
12114
- msgstr ""
12115
-
12116
- #: wppa-settings-autosave.php:6007
12117
- msgid "Table VIII:"
12118
- msgstr ""
12119
-
12120
- #: wppa-settings-autosave.php:6007
12121
- msgid "Actions:"
12122
- msgstr ""
12123
-
12124
- #: wppa-settings-autosave.php:6008
12125
- msgid "This table lists all actions that can be taken to the wppa+ system"
12126
- msgstr ""
12127
-
12128
- #: wppa-settings-autosave.php:6018 wppa-settings-autosave.php:6598
12129
- msgid "Specification"
12130
- msgstr ""
12131
-
12132
- #: wppa-settings-autosave.php:6019 wppa-settings-autosave.php:6599
12133
- #: wppa-settings-autosave.php:8993 wppa-settings-autosave.php:9015
12134
- msgid "Do it!"
12135
- msgstr ""
12136
-
12137
- #: wppa-settings-autosave.php:6021 wppa-settings-autosave.php:6601
12138
- msgid "To Go"
12139
- msgstr ""
12140
-
12141
- #: wppa-settings-autosave.php:6029
12142
- msgid "Harmless and reverseable actions"
12143
- msgstr ""
12144
-
12145
- #: wppa-settings-autosave.php:6031
12146
- msgid "Ignore concurrency"
12147
- msgstr ""
12148
-
12149
- #: wppa-settings-autosave.php:6032
12150
- msgid "Ignore the prevention of concurrent actions."
12151
- msgstr ""
12152
-
12153
- #: wppa-settings-autosave.php:6033
12154
- msgid ""
12155
- "This setting is meant to recover from deadlock situations only. Use with "
12156
- "care!"
12157
- msgstr ""
12158
-
12159
- #: wppa-settings-autosave.php:6044
12160
- msgid "Setup"
12161
- msgstr ""
12162
-
12163
- #: wppa-settings-autosave.php:6045
12164
- msgid "Re-initialize plugin."
12165
- msgstr ""
12166
-
12167
- #: wppa-settings-autosave.php:6046
12168
- msgid ""
12169
- "Re-initilizes the plugin, (re)creates database tables and sets up default "
12170
- "settings and directories if required."
12171
- msgstr ""
12172
-
12173
- #: wppa-settings-autosave.php:6047
12174
- msgid ""
12175
- "This action may be required to setup blogs in a multiblog (network) site as "
12176
- "well as in rare cases to correct initilization errors."
12177
- msgstr ""
12178
-
12179
- #: wppa-settings-autosave.php:6058
12180
- #, fuzzy
12181
- msgid "Backup settings"
12182
- msgstr "Indstillinger"
12183
-
12184
- #: wppa-settings-autosave.php:6059
12185
- msgid "Save all settings into a backup file."
12186
- msgstr ""
12187
-
12188
- #: wppa-settings-autosave.php:6060
12189
- msgid "Saves all the settings into a backup file"
12190
- msgstr ""
12191
-
12192
- #: wppa-settings-autosave.php:6071
12193
- #, fuzzy
12194
- msgid "Load settings"
12195
- msgstr "Indstillinger"
12196
-
12197
- #: wppa-settings-autosave.php:6072
12198
- msgid "Restore all settings from defaults, a backup or skin file."
12199
- msgstr ""
12200
-
12201
- #: wppa-settings-autosave.php:6073
12202
- msgid ""
12203
- "Restores all the settings from the factory supplied defaults, the backup you "
12204
- "created or from a skin file."
12205
- msgstr ""
12206
-
12207
- #: wppa-settings-autosave.php:6079
12208
- #, fuzzy
12209
- msgid "--- set to defaults ---"
12210
- msgstr "--- vises ikke ---"
12211
-
12212
- #: wppa-settings-autosave.php:6082
12213
- msgid "--- restore backup ---"
12214
- msgstr ""
12215
-
12216
- #: wppa-settings-autosave.php:6104
12217
- msgid "Regenerate"
12218
- msgstr ""
12219
-
12220
- #: wppa-settings-autosave.php:6105 wppa-settings-autosave.php:6106
12221
- #, fuzzy
12222
- msgid "Regenerate all thumbnails."
12223
- msgstr "Se"
12224
-
12225
- #: wppa-settings-autosave.php:6109 wppa-settings-autosave.php:6213
12226
- msgid "Skip one"
12227
- msgstr ""
12228
-
12229
- #: wppa-settings-autosave.php:6118
12230
- #, fuzzy
12231
- msgid "Rerate"
12232
- msgstr "Vedligehold"
12233
-
12234
- #: wppa-settings-autosave.php:6119
12235
- msgid "Recalculate ratings."
12236
- msgstr ""
12237
-
12238
- #: wppa-settings-autosave.php:6120
12239
- msgid ""
12240
- "This function will recalculate all mean photo ratings from the ratings table."
12241
- msgstr ""
12242
-
12243
- #: wppa-settings-autosave.php:6121
12244
- msgid ""
12245
- "You may need this function after the re-import of previously exported photos"
12246
- msgstr ""
12247
-
12248
- #: wppa-settings-autosave.php:6132
12249
- #, fuzzy
12250
- msgid "Lost and found"
12251
- msgstr "Billede ikke fundet"
12252
-
12253
- #: wppa-settings-autosave.php:6133
12254
- msgid "Find \"lost\" photos."
12255
- msgstr ""
12256
-
12257
- #: wppa-settings-autosave.php:6134
12258
- msgid "This function will attempt to find lost photos."
12259
- msgstr ""
12260
-
12261
- #: wppa-settings-autosave.php:6145
12262
- msgid "Recuperate"
12263
- msgstr ""
12264
-
12265
- #: wppa-settings-autosave.php:6147
12266
- msgid ""
12267
- "This action will attempt to find and register IPTC and EXIF data from photos "
12268
- "in the WPPA+ system."
12269
- msgstr ""
12270
-
12271
- #: wppa-settings-autosave.php:6158
12272
- msgid "Remake Index Albums"
12273
- msgstr ""
12274
-
12275
- #: wppa-settings-autosave.php:6159
12276
- msgid "Remakes the index database table for albums."
12277
- msgstr ""
12278
-
12279
- #: wppa-settings-autosave.php:6171
12280
- #, fuzzy
12281
- msgid "Remake Index Photos"
12282
- msgstr "fotos"
12283
-
12284
- #: wppa-settings-autosave.php:6172
12285
- msgid "Remakes the index database table for photos."
12286
- msgstr ""
12287
-
12288
- #: wppa-settings-autosave.php:6190
12289
- msgid "Convert to tree"
12290
- msgstr ""
12291
-
12292
- #: wppa-settings-autosave.php:6191
12293
- msgid "Convert filesystem to tree structure."
12294
- msgstr ""
12295
-
12296
- #: wppa-settings-autosave.php:6194
12297
- msgid "Convert to flat"
12298
- msgstr ""
12299
-
12300
- #: wppa-settings-autosave.php:6195
12301
- msgid "Convert filesystem to flat structure."
12302
- msgstr ""
12303
-
12304
- #: wppa-settings-autosave.php:6197
12305
- msgid ""
12306
- "If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
12307
- "to flat first."
12308
- msgstr ""
12309
-
12310
- #: wppa-settings-autosave.php:6209
12311
- msgid "Remake the photofiles from photo sourcefiles."
12312
- msgstr ""
12313
-
12314
- #: wppa-settings-autosave.php:6210
12315
- msgid ""
12316
- "This action will remake the fullsize images, thumbnail images, and will "
12317
- "refresh the iptc and exif data for all photos where the source is found in "
12318
- "the corresponding album sub-directory of the source directory."
12319
- msgstr ""
12320
-
12321
- #: wppa-settings-autosave.php:6222
12322
- msgid "Recalc sizes"
12323
- msgstr ""
12324
-
12325
- #: wppa-settings-autosave.php:6223
12326
- msgid "Recalculate photosizes and save to db."
12327
- msgstr ""
12328
-
12329
- #: wppa-settings-autosave.php:6235
12330
- msgid "Clearing and other irreverseable actions"
12331
- msgstr ""
12332
-
12333
- #: wppa-settings-autosave.php:6237
12334
- #, fuzzy
12335
- msgid "Clear ratings"
12336
- msgstr "Altezza massima."
12337
-
12338
- #: wppa-settings-autosave.php:6238
12339
- msgid "Reset all ratings."
12340
- msgstr ""
12341
-
12342
- #: wppa-settings-autosave.php:6239
12343
- msgid "WARNING: If checked, this will clear all ratings in the system!"
12344
- msgstr ""
12345
-
12346
- #: wppa-settings-autosave.php:6250
12347
- msgid "Clear viewcounts"
12348
- msgstr ""
12349
-
12350
- #: wppa-settings-autosave.php:6251
12351
- msgid "Reset all viewcounts."
12352
- msgstr ""
12353
-
12354
- #: wppa-settings-autosave.php:6252
12355
- msgid "WARNING: If checked, this will clear all viewcounts in the system!"
12356
- msgstr ""
12357
-
12358
- #: wppa-settings-autosave.php:6263
12359
- msgid "Reset IPTC"
12360
- msgstr ""
12361
-
12362
- #: wppa-settings-autosave.php:6264
12363
- #, fuzzy
12364
- msgid "Clear all IPTC data."
12365
- msgstr "Skjul IPTC data"
12366
-
12367
- #: wppa-settings-autosave.php:6265
12368
- msgid "WARNING: If checked, this will clear all IPTC data in the system!"
12369
- msgstr ""
12370
-
12371
- #: wppa-settings-autosave.php:6276
12372
- msgid "Reset EXIF"
12373
- msgstr ""
12374
-
12375
- #: wppa-settings-autosave.php:6277
12376
- #, fuzzy
12377
- msgid "Clear all EXIF data."
12378
- msgstr "Skjul EXIF data"
12379
-
12380
- #: wppa-settings-autosave.php:6278
12381
- msgid "WARNING: If checked, this will clear all EXIF data in the system!"
12382
- msgstr ""
12383
-
12384
- #: wppa-settings-autosave.php:6289
12385
- #, fuzzy
12386
- msgid "Apply New Photodesc"
12387
- msgstr "Se forside fotos"
12388
-
12389
- #: wppa-settings-autosave.php:6290
12390
- msgid "Apply New photo description on all photos in the system."
12391
- msgstr ""
12392
-
12393
- #: wppa-settings-autosave.php:6302
12394
- msgid "Append to photodesc"
12395
- msgstr ""
12396
-
12397
- #: wppa-settings-autosave.php:6303
12398
- #, fuzzy
12399
- msgid "Append this text to all photo descriptions."
12400
- msgstr "Inds&aelig;t/rediger beskrivelse af foto"
12401
-
12402
- #: wppa-settings-autosave.php:6317
12403
- msgid "Remove from photodesc"
12404
- msgstr ""
12405
-
12406
- #: wppa-settings-autosave.php:6318
12407
- #, fuzzy
12408
- msgid "Remove this text from all photo descriptions."
12409
- msgstr "Inds&aelig;t/rediger beskrivelse af foto"
12410
-
12411
- #: wppa-settings-autosave.php:6332
12412
- #, fuzzy
12413
- msgid "Remove empty albums"
12414
- msgstr "Le impostazioni sono state aggiornate"
12415
-
12416
- #: wppa-settings-autosave.php:6333
12417
- msgid "Removes albums that are not used."
12418
- msgstr ""
12419
-
12420
- #: wppa-settings-autosave.php:6345
12421
- msgid "Remove file-ext"
12422
- msgstr ""
12423
-
12424
- #: wppa-settings-autosave.php:6346
12425
- msgid "Remove possible file extension from photo name."
12426
- msgstr ""
12427
-
12428
- #: wppa-settings-autosave.php:6347
12429
- msgid ""
12430
- "This may be required for old photos, uploaded when the option in Table IX-D3 "
12431
- "was not yet available/selected."
12432
- msgstr ""
12433
-
12434
- #: wppa-settings-autosave.php:6358
12435
- msgid "Re-add file-ext"
12436
- msgstr ""
12437
-
12438
- #: wppa-settings-autosave.php:6359
12439
- msgid "Revert the <i>Remove file-ext</i> action."
12440
- msgstr ""
12441
-
12442
- #: wppa-settings-autosave.php:6371
12443
- msgid "Watermark all"
12444
- msgstr ""
12445
-
12446
- #: wppa-settings-autosave.php:6372
12447
- msgid "Apply watermark according to current settings to all photos."
12448
- msgstr ""
12449
-
12450
- #: wppa-settings-autosave.php:6373
12451
- msgid "See Table IX_F for the current watermark settings"
12452
- msgstr ""
12453
-
12454
- #: wppa-settings-autosave.php:6384
12455
- #, fuzzy
12456
- msgid "Create all autopages"
12457
- msgstr "Impossibile creare album. "
12458
-
12459
- #: wppa-settings-autosave.php:6385
12460
- msgid "Create all the pages to display slides individually."
12461
- msgstr ""
12462
-
12463
- #: wppa-settings-autosave.php:6386 wppa-settings-autosave.php:6400
12464
- msgid "See also Table IV-A10."
12465
- msgstr ""
12466
-
12467
- #: wppa-settings-autosave.php:6387
12468
- msgid ""
12469
- "Make sure you have a custom menu and the \"Automatically add new top-level "
12470
- "pages to this menu\" box UNticked!!"
12471
- msgstr ""
12472
-
12473
- #: wppa-settings-autosave.php:6398
12474
- #, fuzzy
12475
- msgid "Delete all autopages"
12476
- msgstr "Impossibile creare album. "
12477
-
12478
- #: wppa-settings-autosave.php:6399
12479
- msgid "Delete all the pages to display slides individually."
12480
- msgstr ""
12481
-
12482
- #: wppa-settings-autosave.php:6412
12483
- msgid "Leading zeroes"
12484
- msgstr ""
12485
-
12486
- #: wppa-settings-autosave.php:6413
12487
- msgid "If photoname numeric, add leading zeros"
12488
- msgstr ""
12489
-
12490
- #: wppa-settings-autosave.php:6414
12491
- msgid ""
12492
- "You can extend the name with leading zeros, so alphabetic sort becomes equal "
12493
- "to numeric sort order."
12494
- msgstr ""
12495
-
12496
- #: wppa-settings-autosave.php:6417
12497
- msgid "Total chars"
12498
- msgstr ""
12499
-
12500
- #: wppa-settings-autosave.php:6426
12501
- msgid "Add GPX tag"
12502
- msgstr ""
12503
-
12504
- #: wppa-settings-autosave.php:6427
12505
- msgid "Make sure photos with gpx data have a Gpx tag"
12506
- msgstr ""
12507
-
12508
- #: wppa-settings-autosave.php:6440 wppa-settings-autosave.php:7275
12509
- msgid "Optimize files"
12510
- msgstr ""
12511
-
12512
- #: wppa-settings-autosave.php:6441
12513
- msgid "Optimize with EWWW image optimizer"
12514
- msgstr ""
12515
-
12516
- #: wppa-settings-autosave.php:6454
12517
- #, fuzzy
12518
- msgid "Edit tag"
12519
- msgstr "N&aelig;ste billede"
12520
-
12521
- #: wppa-settings-autosave.php:6455
12522
- msgid "Globally change a tagname."
12523
- msgstr ""
12524
-
12525
- #: wppa-settings-autosave.php:6461
12526
- #, fuzzy
12527
- msgid "-select a tag-"
12528
- msgstr ""
12529
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
12530
- "di ricerca differente."
12531
-
12532
- #: wppa-settings-autosave.php:6467
12533
- msgid "Tag:"
12534
- msgstr ""
12535
-
12536
- #: wppa-settings-autosave.php:6468
12537
- msgid "Change to:"
12538
- msgstr ""
12539
-
12540
- #: wppa-settings-autosave.php:6477
12541
- msgid "Synchronize Cloudinary"
12542
- msgstr ""
12543
-
12544
- #: wppa-settings-autosave.php:6478
12545
- msgid "Removes/adds images in the cloud."
12546
- msgstr ""
12547
-
12548
- #: wppa-settings-autosave.php:6479
12549
- msgid "Removes old images and verifies/adds new images to Cloudinary."
12550
- msgstr ""
12551
-
12552
- #: wppa-settings-autosave.php:6480
12553
- msgid "See Table IX-K4.7 for the configured lifetime."
12554
- msgstr ""
12555
-
12556
- #: wppa-settings-autosave.php:6491
12557
- msgid "Fix tags"
12558
- msgstr ""
12559
-
12560
- #: wppa-settings-autosave.php:6492
12561
- msgid "Make sure photo tags format is uptodate"
12562
- msgstr ""
12563
-
12564
- #: wppa-settings-autosave.php:6493
12565
- msgid "Fixes tags to be conform current database rules."
12566
- msgstr ""
12567
-
12568
- #: wppa-settings-autosave.php:6504
12569
- msgid "Fix cats"
12570
- msgstr ""
12571
-
12572
- #: wppa-settings-autosave.php:6505
12573
- msgid "Make sure album cats format is uptodate"
12574
- msgstr ""
12575
-
12576
- #: wppa-settings-autosave.php:6506
12577
- msgid "Fixes cats to be conform current database rules."
12578
- msgstr ""
12579
-
12580
- #: wppa-settings-autosave.php:6532
12581
- #, fuzzy
12582
- msgid "Listings"
12583
- msgstr "Indstillinger"
12584
-
12585
- #: wppa-settings-autosave.php:6534
12586
- msgid "List Logfile"
12587
- msgstr ""
12588
-
12589
- #: wppa-settings-autosave.php:6535
12590
- msgid "Show the content of wppa+ (error) log."
12591
- msgstr ""
12592
-
12593
- #: wppa-settings-autosave.php:6539
12594
- msgid "Purge logfile"
12595
- msgstr ""
12596
-
12597
- #: wppa-settings-autosave.php:6548
12598
- #, fuzzy
12599
- msgid "List Ratings"
12600
- msgstr "Bed&oslash;mmelse: %s"
12601
-
12602
- #: wppa-settings-autosave.php:6549
12603
- #, fuzzy
12604
- msgid "Show the most recent ratings."
12605
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
12606
-
12607
- #: wppa-settings-autosave.php:6562
12608
- msgid "List Index"
12609
- msgstr ""
12610
-
12611
- #: wppa-settings-autosave.php:6563
12612
- msgid "Show the content if the index table."
12613
- msgstr ""
12614
-
12615
- #: wppa-settings-autosave.php:6567
12616
- msgid "Start at text:"
12617
- msgstr ""
12618
-
12619
- #: wppa-settings-autosave.php:6577
12620
- msgid "List active sessions"
12621
- msgstr ""
12622
-
12623
- #: wppa-settings-autosave.php:6578
12624
- msgid "Show the content of the sessions table."
12625
- msgstr ""
12626
-
12627
- #: wppa-settings-autosave.php:6611
12628
- msgid "Table IX:"
12629
- msgstr ""
12630
-
12631
- #: wppa-settings-autosave.php:6611
12632
- msgid "Miscellaneous:"
12633
- msgstr ""
12634
-
12635
- #: wppa-settings-autosave.php:6612
12636
- msgid "This table lists all settings that do not fit into an other table"
12637
- msgstr ""
12638
-
12639
- #: wppa-settings-autosave.php:6630
12640
- msgid "Internal engine related settings"
12641
- msgstr ""
12642
-
12643
- #: wppa-settings-autosave.php:6632
12644
- msgid "WPPA+ Filter priority"
12645
- msgstr ""
12646
-
12647
- #: wppa-settings-autosave.php:6633
12648
- msgid "Sets the priority of the wppa+ content filter."
12649
- msgstr ""
12650
-
12651
- #: wppa-settings-autosave.php:6634 wppa-settings-autosave.php:6643
12652
- msgid ""
12653
- "If you encounter conflicts with the theme or other plugins, increasing this "
12654
- "value sometimes helps. Use with great care!"
12655
- msgstr ""
12656
-
12657
- #: wppa-settings-autosave.php:6641
12658
- msgid "Do_shortcode priority"
12659
- msgstr ""
12660
-
12661
- #: wppa-settings-autosave.php:6642
12662
- msgid "Sets the priority of the do_shortcode() content filter."
12663
- msgstr ""
12664
-
12665
- #: wppa-settings-autosave.php:6650
12666
- #, fuzzy
12667
- msgid "WPPA shortcode at Filter priority"
12668
- msgstr "Lukkerhastighedsprioritet AE"
12669
-
12670
- #: wppa-settings-autosave.php:6651
12671
- msgid "Execute shortcode expansion on filter priority in posts and pages."
12672
- msgstr ""
12673
-
12674
- #: wppa-settings-autosave.php:6652 wppa-settings-autosave.php:6661
12675
- msgid "Use to fix certain layout problems"
12676
- msgstr ""
12677
-
12678
- #: wppa-settings-autosave.php:6659
12679
- msgid "WPPA shortcode at Filter priority widget"
12680
- msgstr ""
12681
-
12682
- #: wppa-settings-autosave.php:6660
12683
- msgid "Execute shortcode expansion on filter priority in widgets."
12684
- msgstr ""
12685
-
12686
- #: wppa-settings-autosave.php:6668
12687
- msgid "JPG image quality"
12688
- msgstr ""
12689
-
12690
- #: wppa-settings-autosave.php:6669
12691
- msgid "The jpg quality when photos are downsized"
12692
- msgstr ""
12693
-
12694
- #: wppa-settings-autosave.php:6670
12695
- msgid "The higher the number the better the quality but the larger the file"
12696
- msgstr ""
12697
-
12698
- #: wppa-settings-autosave.php:6671
12699
- msgid "Possible values 20..100"
12700
- msgstr ""
12701
-
12702
- #: wppa-settings-autosave.php:6678
12703
- msgid "Allow WPPA+ Debugging"
12704
- msgstr ""
12705
-
12706
- #: wppa-settings-autosave.php:6679
12707
- msgid "Allow the use of &amp;debug=.. in urls to this site."
12708
- msgstr ""
12709
-
12710
- #: wppa-settings-autosave.php:6680
12711
- msgid ""
12712
- "If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
12713
- "site will generate the display of special WPPA+ diagnostics, as well as php "
12714
- "warnings"
12715
- msgstr ""
12716
-
12717
- #: wppa-settings-autosave.php:6687
12718
- msgid "Auto continue"
12719
- msgstr ""
12720
-
12721
- #: wppa-settings-autosave.php:6688
12722
- msgid "Continue automatic after time out"
12723
- msgstr ""
12724
-
12725
- #: wppa-settings-autosave.php:6689
12726
- msgid ""
12727
- "If checked, an attempt will be made to restart an admin process when the "
12728
- "time is out."
12729
- msgstr ""
12730
-
12731
- #: wppa-settings-autosave.php:6697
12732
- msgid "Set max execution time here."
12733
- msgstr ""
12734
-
12735
- #: wppa-settings-autosave.php:6698
12736
- msgid ""
12737
- "If your php config does not properly set the max execution time, you can set "
12738
- "it here. Seconds, 0 means do not change."
12739
- msgstr ""
12740
-
12741
- #: wppa-settings-autosave.php:6699
12742
- msgid "A safe value is 45 in most cases"
12743
- msgstr ""
12744
-
12745
- #: wppa-settings-autosave.php:6700
12746
- #, php-format
12747
- msgid "The PHP setting max_execution_time is set to %s."
12748
- msgstr ""
12749
-
12750
- #: wppa-settings-autosave.php:6708
12751
- msgid "Feed use thumb"
12752
- msgstr ""
12753
-
12754
- #: wppa-settings-autosave.php:6709
12755
- msgid "Feeds use thumbnail pictures always."
12756
- msgstr ""
12757
-
12758
- #: wppa-settings-autosave.php:6717
12759
- msgid "Enable <i>in-line</i> settings"
12760
- msgstr ""
12761
-
12762
- #: wppa-settings-autosave.php:6718
12763
- msgid "Activates shortcode [wppa_set][/wppa_set]."
12764
- msgstr ""
12765
-
12766
- #: wppa-settings-autosave.php:6719
12767
- msgid ""
12768
- "Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
12769
- msgstr ""
12770
-
12771
- #: wppa-settings-autosave.php:6720
12772
- msgid ""
12773
- "Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
12774
- "sets the thumbnail type to vertical masonry style"
12775
- msgstr ""
12776
-
12777
- #: wppa-settings-autosave.php:6721
12778
- msgid "Do not forget to reset with [wppa_set][/wppa_set]"
12779
- msgstr ""
12780
-
12781
- #: wppa-settings-autosave.php:6722
12782
- msgid "Use with great care! There is no check on validity of values!"
12783
- msgstr ""
12784
-
12785
- #: wppa-settings-autosave.php:6729
12786
- msgid "Runtime modifyable settings"
12787
- msgstr ""
12788
-
12789
- #: wppa-settings-autosave.php:6730
12790
- msgid "The setting slugs that may be altered using [wppa_set] shortcode."
12791
- msgstr ""
12792
-
12793
- #: wppa-settings-autosave.php:6738
12794
- #, fuzzy
12795
- msgid "Use translations"
12796
- msgstr "Ingen blitz funktion"
12797
-
12798
- #: wppa-settings-autosave.php:6739
12799
- msgid "If UNticked, wppa is in english always."
12800
- msgstr ""
12801
-
12802
- #: wppa-settings-autosave.php:6740
12803
- msgid "Used to bypass the loading of any language file for wppa."
12804
- msgstr ""
12805
-
12806
- #: wppa-settings-autosave.php:6748
12807
- msgid "WPPA+ Admin related miscellaneous settings"
12808
- msgstr ""
12809
-
12810
- #: wppa-settings-autosave.php:6750
12811
- msgid "Allow HTML"
12812
- msgstr ""
12813
-
12814
- #: wppa-settings-autosave.php:6751
12815
- msgid "Allow HTML in album and photo descriptions."
12816
- msgstr ""
12817
-
12818
- #: wppa-settings-autosave.php:6752
12819
- msgid ""
12820
- "If checked: html is allowed. WARNING: No checks on syntax, it is your own "
12821
- "responsability to close tags properly!"
12822
- msgstr ""
12823
-
12824
- #: wppa-settings-autosave.php:6759
12825
- msgid "Check tag balance"
12826
- msgstr ""
12827
-
12828
- #: wppa-settings-autosave.php:6760
12829
- msgid "Check if the HTML tags are properly closed: \"balanced\"."
12830
- msgstr ""
12831
-
12832
- #: wppa-settings-autosave.php:6761
12833
- msgid ""
12834
- "If the HTML tags in an album or a photo description are not in balance, the "
12835
- "description is not updated, an errormessage is displayed"
12836
- msgstr ""
12837
-
12838
- #: wppa-settings-autosave.php:6768
12839
- msgid "Use WP editor"
12840
- msgstr ""
12841
-
12842
- #: wppa-settings-autosave.php:6769
12843
- msgid "Use the wp editor for multiline text fields."
12844
- msgstr ""
12845
-
12846
- #: wppa-settings-autosave.php:6777
12847
- msgid "Album sel hierarchic"
12848
- msgstr ""
12849
-
12850
- #: wppa-settings-autosave.php:6778
12851
- msgid "Show albums with (grand)parents in selection lists."
12852
- msgstr ""
12853
-
12854
- #: wppa-settings-autosave.php:6786
12855
- msgid "Page sel hierarchic"
12856
- msgstr ""
12857
-
12858
- #: wppa-settings-autosave.php:6787
12859
- msgid "Show pages with (grand)parents in selection lists."
12860
- msgstr ""
12861
-
12862
- #: wppa-settings-autosave.php:6796
12863
- msgid "Photo admin page size"
12864
- msgstr ""
12865
-
12866
- #: wppa-settings-autosave.php:6797
12867
- msgid ""
12868
- "The number of photos per page on the <br/>Edit Album -> Manage photos and "
12869
- "Edit Photos admin pages."
12870
- msgstr ""
12871
-
12872
- #: wppa-settings-autosave.php:6807
12873
- #, fuzzy
12874
- msgid "Comment admin page size"
12875
- msgstr "%d kommentarer"
12876
-
12877
- #: wppa-settings-autosave.php:6808
12878
- msgid "The number of comments per page on the Comments admin pages."
12879
- msgstr ""
12880
-
12881
- #: wppa-settings-autosave.php:6818
12882
- msgid "Geo info edit"
12883
- msgstr ""
12884
-
12885
- #: wppa-settings-autosave.php:6819
12886
- msgid "Lattitude and longitude may be edited in photo admin."
12887
- msgstr ""
12888
-
12889
- #: wppa-settings-autosave.php:6827
12890
- msgid "Admin bar menu admin"
12891
- msgstr ""
12892
-
12893
- #: wppa-settings-autosave.php:6828
12894
- msgid "Show menu on admin bar on admin pages."
12895
- msgstr ""
12896
-
12897
- #: wppa-settings-autosave.php:6836
12898
- msgid "Admin bar menu frontend"
12899
- msgstr ""
12900
-
12901
- #: wppa-settings-autosave.php:6837
12902
- msgid "Show menu on admin bar on frontend pages."
12903
- msgstr ""
12904
-
12905
- #: wppa-settings-autosave.php:6845
12906
- msgid "Add shortcode to posts"
12907
- msgstr ""
12908
-
12909
- #: wppa-settings-autosave.php:6846
12910
- msgid "Add a shortcode to the end of all posts."
12911
- msgstr ""
12912
-
12913
- #: wppa-settings-autosave.php:6854
12914
- msgid "Shortcode to add"
12915
- msgstr ""
12916
-
12917
- #: wppa-settings-autosave.php:6855
12918
- msgid "The shortcode to be added to the posts."
12919
- msgstr ""
12920
-
12921
- #: wppa-settings-autosave.php:6863
12922
- msgid "We use Scripts"
12923
- msgstr ""
12924
-
12925
- #: wppa-settings-autosave.php:6864
12926
- msgid "Use scripting syntax in shortcode generator."
12927
- msgstr ""
12928
-
12929
- #: wppa-settings-autosave.php:6865
12930
- msgid ""
12931
- "This setting defines if the shortcode generator outputs old style script "
12932
- "tags or new style shortcodes."
12933
- msgstr ""
12934
-
12935
- #: wppa-settings-autosave.php:6873
12936
- msgid "Import page prieviews"
12937
- msgstr ""
12938
-
12939
- #: wppa-settings-autosave.php:6874
12940
- msgid "Show thumbnail previews in import admin page."
12941
- msgstr ""
12942
-
12943
- #: wppa-settings-autosave.php:6882
12944
- #, fuzzy
12945
- msgid "Upload audiostub"
12946
- msgstr "Indsend foto"
12947
-
12948
- #: wppa-settings-autosave.php:6883
12949
- msgid "Upload a new audio stub file"
12950
- msgstr ""
12951
-
12952
- #: wppa-settings-autosave.php:6887
12953
- #, fuzzy
12954
- msgid "Upload audio stub image"
12955
- msgstr "Uploaded fil er ikke et billede"
12956
-
12957
- #: wppa-settings-autosave.php:6892
12958
- msgid "Confirm create"
12959
- msgstr ""
12960
-
12961
- #: wppa-settings-autosave.php:6893
12962
- msgid "Display confirmation dialog before creating album."
12963
- msgstr ""
12964
-
12965
- #: wppa-settings-autosave.php:6901
12966
- msgid "Import source root"
12967
- msgstr ""
12968
-
12969
- #: wppa-settings-autosave.php:6902
12970
- msgid "Specify the highest level in the filesystem where to import from"
12971
- msgstr ""
12972
-
12973
- #: wppa-settings-autosave.php:6919
12974
- msgid "Allow import from WPPA+ source folders"
12975
- msgstr ""
12976
-
12977
- #: wppa-settings-autosave.php:6920
12978
- msgid "Only switch this on if you know what you are doing!"
12979
- msgstr ""
12980
-
12981
- #: wppa-settings-autosave.php:6929
12982
- msgid "SEO related settings"
12983
- msgstr ""
12984
-
12985
- #: wppa-settings-autosave.php:6931
12986
- msgid "Meta on page"
12987
- msgstr ""
12988
-
12989
- #: wppa-settings-autosave.php:6932
12990
- msgid "Meta tags for photos on the page."
12991
- msgstr ""
12992
-
12993
- #: wppa-settings-autosave.php:6933
12994
- msgid ""
12995
- "If checked, the header of the page will contain metatags that refer to "
12996
- "featured photos on the page in the page context."
12997
- msgstr ""
12998
-
12999
- #: wppa-settings-autosave.php:6940
13000
- msgid "Meta all"
13001
- msgstr ""
13002
-
13003
- #: wppa-settings-autosave.php:6941
13004
- #, fuzzy
13005
- msgid "Meta tags for all featured photos."
13006
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
13007
-
13008
- #: wppa-settings-autosave.php:6942
13009
- msgid ""
13010
- "If checked, the header of the page will contain metatags that refer to all "
13011
- "featured photo files."
13012
- msgstr ""
13013
-
13014
- #: wppa-settings-autosave.php:6943
13015
- msgid ""
13016
- "If you have many featured photos, you might wish to uncheck this item to "
13017
- "reduce the size of the page header."
13018
- msgstr ""
13019
-
13020
- #: wppa-settings-autosave.php:6950
13021
- msgid "Add og meta tags"
13022
- msgstr ""
13023
-
13024
- #: wppa-settings-autosave.php:6951
13025
- msgid "Add og meta tags to the page header."
13026
- msgstr ""
13027
-
13028
- #: wppa-settings-autosave.php:6954
13029
- msgid ""
13030
- "Turning this off may affect the functionality of social media items in the "
13031
- "share box that rely on open graph tags information."
13032
- msgstr ""
13033
-
13034
- #: wppa-settings-autosave.php:6960
13035
- msgid "Image Alt attribute type"
13036
- msgstr ""
13037
-
13038
- #: wppa-settings-autosave.php:6961
13039
- msgid "Select kind of HTML alt=\"\" content for images."
13040
- msgstr ""
13041
-
13042
- #: wppa-settings-autosave.php:6964
13043
- #, fuzzy
13044
- msgid "photo name"
13045
- msgstr "Indtast foto navn"
13046
-
13047
- #: wppa-settings-autosave.php:6964
13048
- msgid "name without file-ext"
13049
- msgstr ""
13050
-
13051
- #: wppa-settings-autosave.php:6964
13052
- #, fuzzy
13053
- msgid "set in album admin"
13054
- msgstr ""
13055
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
13056
- "di ricerca differente."
13057
-
13058
- #: wppa-settings-autosave.php:6971
13059
- msgid "New Album and New Photo related miscellaneous settings"
13060
- msgstr ""
13061
-
13062
- #: wppa-settings-autosave.php:6974
13063
- #, fuzzy
13064
- msgid "One hour"
13065
- msgstr "1 time"
13066
-
13067
- #: wppa-settings-autosave.php:6975 wppa-settings-autosave.php:8113
13068
- #, fuzzy
13069
- msgid "One day"
13070
- msgstr "1 dag"
13071
-
13072
- #: wppa-settings-autosave.php:6976
13073
- #, fuzzy
13074
- msgid "Two days"
13075
- msgstr "dage"
13076
-
13077
- #: wppa-settings-autosave.php:6977
13078
- msgid "Three days"
13079
- msgstr ""
13080
-
13081
- #: wppa-settings-autosave.php:6978
13082
- #, fuzzy
13083
- msgid "Four days"
13084
- msgstr "dage"
13085
-
13086
- #: wppa-settings-autosave.php:6979
13087
- #, fuzzy
13088
- msgid "Five days"
13089
- msgstr "dage"
13090
-
13091
- #: wppa-settings-autosave.php:6980
13092
- #, fuzzy
13093
- msgid "Six days"
13094
- msgstr "dage"
13095
-
13096
- #: wppa-settings-autosave.php:6981 wppa-settings-autosave.php:8114
13097
- #, fuzzy
13098
- msgid "One week"
13099
- msgstr "1 uge"
13100
-
13101
- #: wppa-settings-autosave.php:6982
13102
- msgid "Eight days"
13103
- msgstr ""
13104
-
13105
- #: wppa-settings-autosave.php:6983
13106
- #, fuzzy
13107
- msgid "Nine days"
13108
- msgstr "dage"
13109
-
13110
- #: wppa-settings-autosave.php:6984
13111
- #, fuzzy
13112
- msgid "Ten days"
13113
- msgstr "dage"
13114
-
13115
- #: wppa-settings-autosave.php:6985
13116
- #, fuzzy
13117
- msgid "Two weeks"
13118
- msgstr "uger"
13119
-
13120
- #: wppa-settings-autosave.php:6986
13121
- #, fuzzy
13122
- msgid "Three weeks"
13123
- msgstr "uger"
13124
-
13125
- #: wppa-settings-autosave.php:6987
13126
- #, fuzzy
13127
- msgid "Four weeks"
13128
- msgstr "uger"
13129
-
13130
- #: wppa-settings-autosave.php:6988 wppa-settings-autosave.php:8115
13131
- #, fuzzy
13132
- msgid "One month"
13133
- msgstr "1 m&aring;ned"
13134
-
13135
- #: wppa-settings-autosave.php:7007
13136
- msgid "Maximum time an album is indicated as New"
13137
- msgstr ""
13138
-
13139
- #: wppa-settings-autosave.php:7015
13140
- #, fuzzy
13141
- msgid "New Photo"
13142
- msgstr "N&aelig;ste billede"
13143
-
13144
- #: wppa-settings-autosave.php:7016
13145
- msgid "Maximum time a photo is indicated as New"
13146
- msgstr ""
13147
-
13148
- #: wppa-settings-autosave.php:7024
13149
- #, fuzzy
13150
- msgid "Modified Album"
13151
- msgstr "Impossibile creare album. "
13152
-
13153
- #: wppa-settings-autosave.php:7025
13154
- msgid "Maximum time an album is indicated as Modified"
13155
- msgstr ""
13156
-
13157
- #: wppa-settings-autosave.php:7033
13158
- #, fuzzy
13159
- msgid "Modified Photo"
13160
- msgstr "Vedligehold"
13161
-
13162
- #: wppa-settings-autosave.php:7034
13163
- msgid "Maximum time a photo is indicated as Modofied"
13164
- msgstr ""
13165
-
13166
- #: wppa-settings-autosave.php:7044
13167
- msgid "Orange"
13168
- msgstr ""
13169
-
13170
- #: wppa-settings-autosave.php:7045
13171
- msgid "Yellow"
13172
- msgstr ""
13173
-
13174
- #: wppa-settings-autosave.php:7048
13175
- msgid "Purple"
13176
- msgstr ""
13177
-
13178
- #: wppa-settings-autosave.php:7049
13179
- msgid "Black/white"
13180
- msgstr ""
13181
-
13182
- #: wppa-settings-autosave.php:7061
13183
- #, fuzzy
13184
- msgid "New label"
13185
- msgstr "Impossibile creare album. "
13186
-
13187
- #: wppa-settings-autosave.php:7062
13188
- msgid "Specify the \"New\" indicator details."
13189
- msgstr ""
13190
-
13191
- #: wppa-settings-autosave.php:7063 wppa-settings-autosave.php:7074
13192
- msgid "If you use qTranslate, the text may be multilingual."
13193
- msgstr ""
13194
-
13195
- #: wppa-settings-autosave.php:7066 wppa-settings-autosave.php:7077
13196
- msgid "Label text"
13197
- msgstr ""
13198
-
13199
- #: wppa-settings-autosave.php:7067 wppa-settings-autosave.php:7078
13200
- msgid "Label color"
13201
- msgstr ""
13202
-
13203
- #: wppa-settings-autosave.php:7072
13204
- msgid "Modified label"
13205
- msgstr ""
13206
-
13207
- #: wppa-settings-autosave.php:7073
13208
- msgid "Specify the \"Modified\" indicator details."
13209
- msgstr ""
13210
-
13211
- #: wppa-settings-autosave.php:7083
13212
- msgid "Limit LasTen New"
13213
- msgstr ""
13214
-
13215
- #: wppa-settings-autosave.php:7084
13216
- msgid "Limits the LasTen photos to those that are 'New', or newly modified."
13217
- msgstr ""
13218
-
13219
- #: wppa-settings-autosave.php:7085
13220
- msgid ""
13221
- "If you tick this box and configured the new photo time, you can even limit "
13222
- "the number by the setting in Table I-F7, or set that number to an unlikely "
13223
- "high value."
13224
- msgstr ""
13225
-
13226
- #: wppa-settings-autosave.php:7092
13227
- msgid "LasTen use Modified"
13228
- msgstr ""
13229
-
13230
- #: wppa-settings-autosave.php:7093
13231
- msgid ""
13232
- "Use the time modified rather than time upload for LasTen widget/shortcode."
13233
- msgstr ""
13234
-
13235
- #: wppa-settings-autosave.php:7101
13236
- msgid "Apply Newphoto desc"
13237
- msgstr ""
13238
-
13239
- #: wppa-settings-autosave.php:7102
13240
- msgid "Give each new photo a standard description."
13241
- msgstr ""
13242
-
13243
- #: wppa-settings-autosave.php:7103
13244
- msgid ""
13245
- "If checked, each new photo will get the description (template) as specified "
13246
- "in the next item."
13247
- msgstr ""
13248
-
13249
- #: wppa-settings-autosave.php:7110
13250
- #, fuzzy
13251
- msgid "New photo desc"
13252
- msgstr "Nyt foto indsendt: %s"
13253
-
13254
- #: wppa-settings-autosave.php:7111
13255
- msgid "The description (template) to add to a new photo."
13256
- msgstr ""
13257
-
13258
- #: wppa-settings-autosave.php:7112
13259
- #, fuzzy
13260
- msgid "Enter the default description."
13261
- msgstr "Inserisci / modifica la descrizione per questo album."
13262
-
13263
- #: wppa-settings-autosave.php:7113
13264
- msgid "If you use html, please check item A-1 of this table."
13265
- msgstr ""
13266
-
13267
- #: wppa-settings-autosave.php:7121
13268
- msgid "New albums are created with this upload limit."
13269
- msgstr ""
13270
-
13271
- #: wppa-settings-autosave.php:7122
13272
- msgid ""
13273
- "Administrators can change the limit settings in the \"Edit Album Information"
13274
- "\" admin page."
13275
- msgstr ""
13276
-
13277
- #: wppa-settings-autosave.php:7139
13278
- msgid "Default parent"
13279
- msgstr ""
13280
-
13281
- #: wppa-settings-autosave.php:7140
13282
- msgid "The parent album of new albums."
13283
- msgstr ""
13284
-
13285
- #: wppa-settings-autosave.php:7157
13286
- msgid "Default parent always"
13287
- msgstr ""
13288
-
13289
- #: wppa-settings-autosave.php:7158
13290
- msgid ""
13291
- "The parent album of new albums is always the default, except for "
13292
- "administrators."
13293
- msgstr ""
13294
-
13295
- #: wppa-settings-autosave.php:7166
13296
- msgid "Show album full"
13297
- msgstr ""
13298
-
13299
- #: wppa-settings-autosave.php:7167
13300
- msgid "Show the Upload limit reached message if appropriate."
13301
- msgstr ""
13302
-
13303
- #: wppa-settings-autosave.php:7175
13304
- #, fuzzy
13305
- msgid "Grant an album"
13306
- msgstr "Impossibile creare album. "
13307
-
13308
- #: wppa-settings-autosave.php:7176
13309
- msgid "Create an album for each user logging in."
13310
- msgstr ""
13311
-
13312
- #: wppa-settings-autosave.php:7184
13313
- #, fuzzy
13314
- msgid "Grant album name"
13315
- msgstr ""
13316
- "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
13317
- "per i titoli delle copertine degli album."
13318
-
13319
- #: wppa-settings-autosave.php:7185
13320
- msgid "The name to be used for the album."
13321
- msgstr ""
13322
-
13323
- #: wppa-settings-autosave.php:7188
13324
- #, fuzzy
13325
- msgid "Login name"
13326
- msgstr "Dit navn"
13327
-
13328
- #: wppa-settings-autosave.php:7188 wppa-upldr-widget.php:181
13329
- msgid "Display name"
13330
- msgstr ""
13331
-
13332
- #: wppa-settings-autosave.php:7188
13333
- msgid "Id"
13334
- msgstr ""
13335
-
13336
- #: wppa-settings-autosave.php:7188
13337
- msgid "Firstname Lastname"
13338
- msgstr ""
13339
-
13340
- #: wppa-settings-autosave.php:7195
13341
- msgid "Grant parent"
13342
- msgstr ""
13343
-
13344
- #: wppa-settings-autosave.php:7196
13345
- msgid "The parent album of the auto created albums."
13346
- msgstr ""
13347
-
13348
- #: wppa-settings-autosave.php:7213
13349
- #, fuzzy
13350
- msgid "Max user albums"
13351
- msgstr ""
13352
- "Puoi creare dei vari album che contengono delle foto così come creare allo "
13353
- "stesso tempo dei sotto-album."
13354
-
13355
- #: wppa-settings-autosave.php:7214
13356
- msgid "The max number of albums a user can create."
13357
- msgstr ""
13358
-
13359
- #: wppa-settings-autosave.php:7215
13360
- msgid ""
13361
- "The maximum number of albums a user can create when he is not admin and "
13362
- "owner only is active"
13363
- msgstr ""
13364
-
13365
- #: wppa-settings-autosave.php:7216
13366
- msgid "A number of 0 means No limit"
13367
- msgstr ""
13368
-
13369
- #: wppa-settings-autosave.php:7223
13370
- #, fuzzy
13371
- msgid "Default photo name"
13372
- msgstr "Standard foto album for"
13373
-
13374
- #: wppa-settings-autosave.php:7224
13375
- msgid "Select the way the name of a new uploaded photo should be determined."
13376
- msgstr ""
13377
-
13378
- #: wppa-settings-autosave.php:7227
13379
- msgid "Filename"
13380
- msgstr ""
13381
-
13382
- #: wppa-settings-autosave.php:7228
13383
- msgid "Filename without extension"
13384
- msgstr ""
13385
-
13386
- #: wppa-settings-autosave.php:7229
13387
- msgid "IPTC Tag 2#005 (Graphic name)"
13388
- msgstr ""
13389
-
13390
- #: wppa-settings-autosave.php:7230
13391
- msgid "IPTC Tag 2#120 (Caption)"
13392
- msgstr ""
13393
-
13394
- #: wppa-settings-autosave.php:7231
13395
- msgid "No name at all"
13396
- msgstr ""
13397
-
13398
- #: wppa-settings-autosave.php:7239
13399
- #, fuzzy
13400
- msgid "Default coverphoto"
13401
- msgstr "Se forside foto"
13402
-
13403
- #: wppa-settings-autosave.php:7240
13404
- msgid "Name of photofile to become cover image"
13405
- msgstr ""
13406
-
13407
- #: wppa-settings-autosave.php:7241
13408
- msgid ""
13409
- "If you name a photofile like this setting before upload, it will become the "
13410
- "coverimage automaticly."
13411
- msgstr ""
13412
-
13413
- #: wppa-settings-autosave.php:7248
13414
- msgid "Copy Timestamp"
13415
- msgstr ""
13416
-
13417
- #: wppa-settings-autosave.php:7249
13418
- msgid "Copy timestamp when copying photo."
13419
- msgstr ""
13420
-
13421
- #: wppa-settings-autosave.php:7250
13422
- msgid "If checked, the copied photo is not \"new\""
13423
- msgstr ""
13424
-
13425
- #: wppa-settings-autosave.php:7257
13426
- msgid "Copy Owner"
13427
- msgstr ""
13428
-
13429
- #: wppa-settings-autosave.php:7258
13430
- msgid "Copy the owner when copying photo."
13431
- msgstr ""
13432
-
13433
- #: wppa-settings-autosave.php:7266
13434
- msgid "FE Albums public"
13435
- msgstr ""
13436
-
13437
- #: wppa-settings-autosave.php:7267
13438
- msgid "Frontend created albums are --- public ---"
13439
- msgstr ""
13440
-
13441
- #: wppa-settings-autosave.php:7276
13442
- msgid "Optimize image files right after upload/import"
13443
- msgstr ""
13444
-
13445
- #: wppa-settings-autosave.php:7277
13446
- msgid "This option requires the plugin EWWW Image Optimizer to be activated"
13447
- msgstr ""
13448
-
13449
- #: wppa-settings-autosave.php:7284
13450
- #, fuzzy
13451
- msgid "Default album linktype"
13452
- msgstr "Standard foto album for"
13453
-
13454
- #: wppa-settings-autosave.php:7285
13455
- msgid "The album linktype for new albums"
13456
- msgstr ""
13457
-
13458
- #: wppa-settings-autosave.php:7304
13459
- msgid "Search Albums and Photos related settings"
13460
- msgstr ""
13461
-
13462
- #: wppa-settings-autosave.php:7306
13463
- #, fuzzy
13464
- msgid "Search page"
13465
- msgstr "Cerca"
13466
-
13467
- #: wppa-settings-autosave.php:7307
13468
- msgid "Display the search results on page."
13469
- msgstr ""
13470
-
13471
- #: wppa-settings-autosave.php:7308
13472
- #, php-format
13473
- msgid ""
13474
- "Select the page to be used to display search results. The page MUST contain "
13475
- "%%wppa%% or [wppa][/wppa]."
13476
- msgstr ""
13477
-
13478
- #: wppa-settings-autosave.php:7309
13479
- msgid "You may give it the title \"Search results\" or something alike."
13480
- msgstr ""
13481
-
13482
- #: wppa-settings-autosave.php:7310
13483
- msgid ""
13484
- "Or you ou may use the standard page on which you display the generic album."
13485
- msgstr ""
13486
-
13487
- #: wppa-settings-autosave.php:7343
13488
- msgid "Exclude separate"
13489
- msgstr ""
13490
-
13491
- #: wppa-settings-autosave.php:7344
13492
- #, fuzzy
13493
- msgid "Do not search 'separate' albums."
13494
- msgstr "Impossibile creare album. "
13495
-
13496
- #: wppa-settings-autosave.php:7345
13497
- msgid ""
13498
- "When checked, albums (and photos in them) that have the parent set to --- "
13499
- "separate --- will be excluded from being searched."
13500
- msgstr ""
13501
-
13502
- #: wppa-settings-autosave.php:7346
13503
- msgid ""
13504
- "Except when you start searching in a 'saparate' album, with the \"search in "
13505
- "current section\" box ticked."
13506
- msgstr ""
13507
-
13508
- #: wppa-settings-autosave.php:7353
13509
- msgid "Include tags"
13510
- msgstr ""
13511
-
13512
- #: wppa-settings-autosave.php:7354
13513
- msgid "Do also search the photo tags."
13514
- msgstr ""
13515
-
13516
- #: wppa-settings-autosave.php:7355
13517
- msgid "When checked, the tags of the photo will also be searched."
13518
- msgstr ""
13519
-
13520
- #: wppa-settings-autosave.php:7362
13521
- msgid "Include categories"
13522
- msgstr ""
13523
-
13524
- #: wppa-settings-autosave.php:7363
13525
- msgid "Do also search the album categories."
13526
- msgstr ""
13527
-
13528
- #: wppa-settings-autosave.php:7364
13529
- msgid "When checked, the categories of the album will also be searched."
13530
- msgstr ""
13531
-
13532
- #: wppa-settings-autosave.php:7371
13533
- #, fuzzy
13534
- msgid "Include comments"
13535
- msgstr "%d kommentarer"
13536
-
13537
- #: wppa-settings-autosave.php:7372
13538
- msgid "Do also search the comments on photos."
13539
- msgstr ""
13540
-
13541
- #: wppa-settings-autosave.php:7373
13542
- msgid "When checked, the comments of the photos will also be searched."
13543
- msgstr ""
13544
-
13545
- #: wppa-settings-autosave.php:7380
13546
- #, fuzzy
13547
- msgid "Photos only"
13548
- msgstr "Foto"
13549
-
13550
- #: wppa-settings-autosave.php:7381
13551
- msgid "Search for photos only."
13552
- msgstr ""
13553
-
13554
- #: wppa-settings-autosave.php:7382
13555
- msgid "When checked, only photos will be searched for."
13556
- msgstr ""
13557
-
13558
- #: wppa-settings-autosave.php:7397
13559
- msgid "Max albums found"
13560
- msgstr ""
13561
-
13562
- #: wppa-settings-autosave.php:7398
13563
- msgid "The maximum number of albums to be displayed."
13564
- msgstr ""
13565
-
13566
- #: wppa-settings-autosave.php:7406
13567
- #, fuzzy
13568
- msgid "Max photos found"
13569
- msgstr ""
13570
- "Ingen album eller fotos fundet der svarer til dine s&oslash;ge kriterier."
13571
-
13572
- #: wppa-settings-autosave.php:7407
13573
- msgid "The maximum number of photos to be displayed."
13574
- msgstr ""
13575
-
13576
- #: wppa-settings-autosave.php:7415
13577
- msgid "Tags OR only"
13578
- msgstr ""
13579
-
13580
- #: wppa-settings-autosave.php:7416
13581
- msgid "No and / or buttons"
13582
- msgstr ""
13583
-
13584
- #: wppa-settings-autosave.php:7417
13585
- msgid ""
13586
- "Hide the and/or radiobuttons and do the or method in the multitag widget and "
13587
- "shortcode."
13588
- msgstr ""
13589
-
13590
- #: wppa-settings-autosave.php:7424
13591
- msgid "Tags add Inverse"
13592
- msgstr ""
13593
-
13594
- #: wppa-settings-autosave.php:7425
13595
- #, fuzzy
13596
- msgid "Add a checkbox to invert the selection."
13597
- msgstr "--- vises ikke ---"
13598
-
13599
- #: wppa-settings-autosave.php:7426
13600
- msgid "Adds an Invert (NOT) checkbox on the multitag widget and shortcode."
13601
- msgstr ""
13602
-
13603
- #: wppa-settings-autosave.php:7433
13604
- msgid "Floating searchtoken"
13605
- msgstr ""
13606
-
13607
- #: wppa-settings-autosave.php:7434
13608
- msgid "A match need not start at the first char."
13609
- msgstr ""
13610
-
13611
- #: wppa-settings-autosave.php:7435
13612
- msgid ""
13613
- "A match is found while searching also when the entered token is somewhere in "
13614
- "the middle of a word."
13615
- msgstr ""
13616
-
13617
- #: wppa-settings-autosave.php:7436
13618
- msgid "This works in indexed search only!"
13619
- msgstr ""
13620
-
13621
- #: wppa-settings-autosave.php:7443
13622
- #, fuzzy
13623
- msgid "Search results display"
13624
- msgstr "Risultati della ricerca per: %s"
13625
-
13626
- #: wppa-settings-autosave.php:7444
13627
- msgid "Select the way the search results should be displayed."
13628
- msgstr ""
13629
-
13630
- #: wppa-settings-autosave.php:7445
13631
- msgid ""
13632
- "If you select anything different from \"Albums and thumbnails\", \"Photos "
13633
- "only\" is assumed (Table IX-E6)."
13634
- msgstr ""
13635
-
13636
- #: wppa-settings-autosave.php:7447
13637
- #, fuzzy
13638
- msgid "Albums and thumbnails"
13639
- msgstr "Se"
13640
-
13641
- #: wppa-settings-autosave.php:7447
13642
- #, fuzzy
13643
- msgid "Slideonly slideshow"
13644
- msgstr "Slideshow barra laterale"
13645
-
13646
- #: wppa-settings-autosave.php:7454
13647
- msgid "Name max length"
13648
- msgstr ""
13649
-
13650
- #: wppa-settings-autosave.php:7455
13651
- msgid "Max length of displayed photonames in supersearch selectionlist"
13652
- msgstr ""
13653
-
13654
- #: wppa-settings-autosave.php:7456 wppa-settings-autosave.php:7465
13655
- msgid ""
13656
- "To limit the length of the selectionlist, enter the number of characters to "
13657
- "show."
13658
- msgstr ""
13659
-
13660
- #: wppa-settings-autosave.php:7463
13661
- msgid "Text max length"
13662
- msgstr ""
13663
-
13664
- #: wppa-settings-autosave.php:7464
13665
- msgid "Max length of displayed photo text in supersearch selectionlist"
13666
- msgstr ""
13667
-
13668
- #: wppa-settings-autosave.php:7472
13669
- #, fuzzy
13670
- msgid "Search toptext"
13671
- msgstr "Cerca"
13672
-
13673
- #: wppa-settings-autosave.php:7473
13674
- msgid "The text at the top of the search box."
13675
- msgstr ""
13676
-
13677
- #: wppa-settings-autosave.php:7474
13678
- msgid "May contain unfiltered HTML."
13679
- msgstr ""
13680
-
13681
- #: wppa-settings-autosave.php:7481
13682
- #, fuzzy
13683
- msgid "Section search text"
13684
- msgstr "Risultati della ricerca per: %s"
13685
-
13686
- #: wppa-settings-autosave.php:7482 wppa-settings-autosave.php:7491
13687
- msgid "The labeltext at the checkbox."
13688
- msgstr ""
13689
-
13690
- #: wppa-settings-autosave.php:7490
13691
- #, fuzzy
13692
- msgid "Results search text"
13693
- msgstr ""
13694
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
13695
- "di ricerca differente."
13696
-
13697
- #: wppa-settings-autosave.php:7500
13698
- msgid "Watermark related settings"
13699
- msgstr ""
13700
-
13701
- #: wppa-settings-autosave.php:7503
13702
- msgid "Enable the application of watermarks."
13703
- msgstr ""
13704
-
13705
- #: wppa-settings-autosave.php:7504
13706
- msgid "If checked, photos can be watermarked during upload / import."
13707
- msgstr ""
13708
-
13709
- #: wppa-settings-autosave.php:7513
13710
- #, fuzzy
13711
- msgid "Watermark file"
13712
- msgstr "Inds&aelig;t vandm&aelig;rke:"
13713
-
13714
- #: wppa-settings-autosave.php:7514
13715
- msgid "The default watermarkfile to be used."
13716
- msgstr ""
13717
-
13718
- #: wppa-settings-autosave.php:7515
13719
- msgid "Watermark files are of type png and reside in"
13720
- msgstr ""
13721
-
13722
- #: wppa-settings-autosave.php:7516
13723
- msgid ""
13724
- "A suitable watermarkfile typically consists of a transparent background and "
13725
- "a black text or drawing."
13726
- msgstr ""
13727
-
13728
- #: wppa-settings-autosave.php:7518
13729
- msgid ""
13730
- "You may also select one of the textual watermark types at the bottom of the "
13731
- "selection list."
13732
- msgstr ""
13733
-
13734
- #: wppa-settings-autosave.php:7522
13735
- #, fuzzy
13736
- msgid "position:"
13737
- msgstr "Position:"
13738
-
13739
- #: wppa-settings-autosave.php:7528
13740
- #, fuzzy
13741
- msgid "Upload watermark"
13742
- msgstr "Inds&aelig;t vandm&aelig;rke:"
13743
-
13744
- #: wppa-settings-autosave.php:7529
13745
- #, fuzzy
13746
- msgid "Upload a new watermark file"
13747
- msgstr "Inds&aelig;t vandm&aelig;rke:"
13748
-
13749
- #: wppa-settings-autosave.php:7533
13750
- #, fuzzy
13751
- msgid "Upload watermark image"
13752
- msgstr "Inds&aelig;t vandm&aelig;rke:"
13753
-
13754
- #: wppa-settings-autosave.php:7538
13755
- msgid "Watermark opacity image"
13756
- msgstr ""
13757
-
13758
- #: wppa-settings-autosave.php:7539
13759
- msgid "You can set the intensity of image watermarks here."
13760
- msgstr ""
13761
-
13762
- #: wppa-settings-autosave.php:7540 wppa-settings-autosave.php:7625
13763
- msgid ""
13764
- "The higher the number, the intenser the watermark. Value must be > 0 and <= "
13765
- "100."
13766
- msgstr ""
13767
-
13768
- #: wppa-settings-autosave.php:7547
13769
- #, fuzzy
13770
- msgid "Textual watermark style"
13771
- msgstr "Inds&aelig;t vandm&aelig;rke:"
13772
-
13773
- #: wppa-settings-autosave.php:7548
13774
- msgid "The way the textual watermarks look like"
13775
- msgstr ""
13776
-
13777
- #: wppa-settings-autosave.php:7552
13778
- msgid "TV subtitle style"
13779
- msgstr ""
13780
-
13781
- #: wppa-settings-autosave.php:7552
13782
- msgid "White text on black background"
13783
- msgstr ""
13784
-
13785
- #: wppa-settings-autosave.php:7552
13786
- msgid "Black text on white background"
13787
- msgstr ""
13788
-
13789
- #: wppa-settings-autosave.php:7552
13790
- msgid "Reverse TV style (Utopia)"
13791
- msgstr ""
13792
-
13793
- #: wppa-settings-autosave.php:7552
13794
- msgid "White on transparent background"
13795
- msgstr ""
13796
-
13797
- #: wppa-settings-autosave.php:7552
13798
- msgid "Black on transparent background"
13799
- msgstr ""
13800
-
13801
- #: wppa-settings-autosave.php:7562
13802
- msgid "Predefined watermark text"
13803
- msgstr ""
13804
-
13805
- #: wppa-settings-autosave.php:7563
13806
- msgid "The text to use when --- pre-defined --- is selected."
13807
- msgstr ""
13808
-
13809
- #: wppa-settings-autosave.php:7564
13810
- msgid "You may use the following keywords:"
13811
- msgstr ""
13812
-
13813
- #: wppa-settings-autosave.php:7565
13814
- msgid "w#site, w#owner, w#name, w#filename"
13815
- msgstr ""
13816
-
13817
- #: wppa-settings-autosave.php:7572
13818
- #, fuzzy
13819
- msgid "Textual watermark font"
13820
- msgstr "Inds&aelig;t vandm&aelig;rke:"
13821
-
13822
- #: wppa-settings-autosave.php:7573
13823
- msgid "The font to use with textusl watermarks."
13824
- msgstr ""
13825
-
13826
- #: wppa-settings-autosave.php:7574
13827
- msgid "Except for the system font, are font files of type ttf and reside in"
13828
- msgstr ""
13829
-
13830
- #: wppa-settings-autosave.php:7602
13831
- #, fuzzy
13832
- msgid "Textual watermark font size"
13833
- msgstr "Inds&aelig;t vandm&aelig;rke:"
13834
-
13835
- #: wppa-settings-autosave.php:7603
13836
- msgid "You can set the size of the truetype fonts only."
13837
- msgstr ""
13838
-
13839
- #: wppa-settings-autosave.php:7604
13840
- msgid ""
13841
- "System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
13842
- "value > 5 will be treated as 5."
13843
- msgstr ""
13844
-
13845
- #: wppa-settings-autosave.php:7605
13846
- msgid ""
13847
- "Truetype fonts can have any positive integer size, if your PHPs GD version "
13848
- "is 1, in pixels, in GD2 in points."
13849
- msgstr ""
13850
-
13851
- #: wppa-settings-autosave.php:7606
13852
- msgid "It is unclear howmany pixels a point is..."
13853
- msgstr ""
13854
-
13855
- #: wppa-settings-autosave.php:7613
13856
- #, fuzzy
13857
- msgid "Upload watermark font"
13858
- msgstr "Inds&aelig;t vandm&aelig;rke:"
13859
-
13860
- #: wppa-settings-autosave.php:7614
13861
- #, fuzzy
13862
- msgid "Upload a new watermark font file"
13863
- msgstr "Inds&aelig;t vandm&aelig;rke:"
13864
-
13865
- #: wppa-settings-autosave.php:7615
13866
- msgid ""
13867
- "Upload truetype fonts (.ttf) only, and test if they work on your server "
13868
- "platform."
13869
- msgstr ""
13870
-
13871
- #: wppa-settings-autosave.php:7618
13872
- #, fuzzy
13873
- msgid "Upload TrueType font"
13874
- msgstr "Indsend foto"
13875
-
13876
- #: wppa-settings-autosave.php:7623
13877
- msgid "Watermark opacity text"
13878
- msgstr ""
13879
-
13880
- #: wppa-settings-autosave.php:7624
13881
- msgid "You can set the intensity of a text watermarks here."
13882
- msgstr ""
13883
-
13884
- #: wppa-settings-autosave.php:7633
13885
- msgid "A real life preview. To update: refresh the page."
13886
- msgstr ""
13887
-
13888
- #: wppa-settings-autosave.php:7644
13889
- #, fuzzy
13890
- msgid "Watermark thumbnails"
13891
- msgstr "Se"
13892
-
13893
- #: wppa-settings-autosave.php:7645
13894
- msgid "Watermark also the thumbnail image files."
13895
- msgstr ""
13896
-
13897
- #: wppa-settings-autosave.php:7653
13898
- msgid "Slideshow elements sequence order settings"
13899
- msgstr ""
13900
-
13901
- #: wppa-settings-autosave.php:7659 wppa-settings-autosave.php:7705
13902
- #, fuzzy
13903
- msgid "StartStop"
13904
- msgstr "Start"
13905
-
13906
- #: wppa-settings-autosave.php:7660 wppa-settings-autosave.php:7706
13907
- msgid "SlideFrame"
13908
- msgstr ""
13909
-
13910
- #: wppa-settings-autosave.php:7662
13911
- msgid "Desc"
13912
- msgstr ""
13913
-
13914
- #: wppa-settings-autosave.php:7665 wppa-settings-autosave.php:7710
13915
- msgid "FilmStrip"
13916
- msgstr ""
13917
-
13918
- #: wppa-settings-autosave.php:7666 wppa-settings-autosave.php:7711
13919
- msgid "Browsebar"
13920
- msgstr ""
13921
-
13922
- #: wppa-settings-autosave.php:7668 wppa-settings-autosave.php:7713
13923
- #, fuzzy
13924
- msgid "IPTC data"
13925
- msgstr "Ingen IPTC data"
13926
-
13927
- #: wppa-settings-autosave.php:7669 wppa-settings-autosave.php:7714
13928
- #, fuzzy
13929
- msgid "EXIF data"
13930
- msgstr "Ingen EXIF data"
13931
-
13932
- #: wppa-settings-autosave.php:7670 wppa-settings-autosave.php:7715
13933
- #, fuzzy
13934
- msgid "Share box"
13935
- msgstr "Condividi su Facebook"
13936
-
13937
- #: wppa-settings-autosave.php:7672 wppa-settings-autosave.php:7717
13938
- msgid "Enabled"
13939
- msgstr ""
13940
-
13941
- #: wppa-settings-autosave.php:7673 wppa-settings-autosave.php:7718
13942
- msgid "Disabled"
13943
- msgstr ""
13944
-
13945
- #: wppa-settings-autosave.php:7675 wppa-settings-autosave.php:7720
13946
- msgid "Start/Stop & Slower/Faster navigation bar"
13947
- msgstr ""
13948
-
13949
- #: wppa-settings-autosave.php:7676 wppa-settings-autosave.php:7721
13950
- msgid "The Slide Frame"
13951
- msgstr ""
13952
-
13953
- #: wppa-settings-autosave.php:7676 wppa-settings-autosave.php:7721
13954
- msgid "( Always )"
13955
- msgstr ""
13956
-
13957
- #: wppa-settings-autosave.php:7677
13958
- #, fuzzy
13959
- msgid "Photo Name Box"
13960
- msgstr "Dagens foto"
13961
-
13962
- #: wppa-settings-autosave.php:7678
13963
- msgid "Photo Description Box"
13964
- msgstr ""
13965
-
13966
- #: wppa-settings-autosave.php:7679 wppa-settings-autosave.php:7723
13967
- msgid "Custom Box"
13968
- msgstr ""
13969
-
13970
- #: wppa-settings-autosave.php:7680 wppa-settings-autosave.php:7724
13971
- #, fuzzy
13972
- msgid "Rating Bar"
13973
- msgstr "Bed&oslash;mmelse: %s"
13974
-
13975
- #: wppa-settings-autosave.php:7681 wppa-settings-autosave.php:7725
13976
- msgid "Film Strip with embedded Start/Stop and Goto functionality"
13977
- msgstr ""
13978
-
13979
- #: wppa-settings-autosave.php:7682 wppa-settings-autosave.php:7726
13980
- msgid "Browse Bar with Photo X of Y counter"
13981
- msgstr ""
13982
-
13983
- #: wppa-settings-autosave.php:7683 wppa-settings-autosave.php:7727
13984
- #, fuzzy
13985
- msgid "Comments Box"
13986
- msgstr "%d kommentarer"
13987
-
13988
- #: wppa-settings-autosave.php:7684 wppa-settings-autosave.php:7728
13989
- msgid "IPTC box"
13990
- msgstr ""
13991
-
13992
- #: wppa-settings-autosave.php:7685 wppa-settings-autosave.php:7729
13993
- msgid "EXIF box"
13994
- msgstr ""
13995
-
13996
- #: wppa-settings-autosave.php:7686 wppa-settings-autosave.php:7730
13997
- msgid "Social media share box"
13998
- msgstr ""
13999
-
14000
- #: wppa-settings-autosave.php:7692 wppa-settings-autosave.php:7736
14001
- msgid "Move Up"
14002
- msgstr ""
14003
-
14004
- #: wppa-settings-autosave.php:7707
14005
- msgid "NameDesc"
14006
- msgstr ""
14007
-
14008
- #: wppa-settings-autosave.php:7722
14009
- msgid "Photo Name & Description Box"
14010
- msgstr ""
14011
-
14012
- #: wppa-settings-autosave.php:7746
14013
- msgid "Swap Namedesc"
14014
- msgstr ""
14015
-
14016
- #: wppa-settings-autosave.php:7747
14017
- msgid "Swap the order sequence of name and description"
14018
- msgstr ""
14019
-
14020
- #: wppa-settings-autosave.php:7755
14021
- msgid "Split Name and Desc"
14022
- msgstr ""
14023
-
14024
- #: wppa-settings-autosave.php:7756
14025
- msgid "Put Name and Description in separate boxes"
14026
- msgstr ""
14027
-
14028
- #: wppa-settings-autosave.php:7759
14029
- msgid "Please reload this page after the green checkmark appears!"
14030
- msgstr ""
14031
-
14032
- #: wppa-settings-autosave.php:7764
14033
- msgid "Source file management and other upload/import settings and actions."
14034
- msgstr ""
14035
-
14036
- #: wppa-settings-autosave.php:7766
14037
- msgid "Keep sourcefiles admin"
14038
- msgstr ""
14039
-
14040
- #: wppa-settings-autosave.php:7767
14041
- msgid "Keep the original uploaded and imported photo files."
14042
- msgstr ""
14043
-
14044
- #: wppa-settings-autosave.php:7768 wppa-settings-autosave.php:7778
14045
- msgid ""
14046
- "The files will be kept in a separate directory with subdirectories for each "
14047
- "album"
14048
- msgstr ""
14049
-
14050
- #: wppa-settings-autosave.php:7769 wppa-settings-autosave.php:7779
14051
- msgid ""
14052
- "These files can be used to update the photos used in displaying in wppa+ and "
14053
- "optionally for downloading original, un-downsized images."
14054
- msgstr ""
14055
-
14056
- #: wppa-settings-autosave.php:7776
14057
- msgid "Keep sourcefiles frontend"
14058
- msgstr ""
14059
-
14060
- #: wppa-settings-autosave.php:7777
14061
- #, fuzzy
14062
- msgid "Keep the original frontend uploaded photo files."
14063
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
14064
-
14065
- #: wppa-settings-autosave.php:7786
14066
- msgid "Source directory"
14067
- msgstr ""
14068
-
14069
- #: wppa-settings-autosave.php:7787
14070
- msgid "The path to the directory where the original photofiles will be saved."
14071
- msgstr ""
14072
-
14073
- #: wppa-settings-autosave.php:7788
14074
- msgid "You may change the directory path, but it can not be an url."
14075
- msgstr ""
14076
-
14077
- #: wppa-settings-autosave.php:7789
14078
- msgid ""
14079
- "The parent of the directory that you enter here must exist and be writable."
14080
- msgstr ""
14081
-
14082
- #: wppa-settings-autosave.php:7790
14083
- msgid "The directory itsself will be created if it does not exist yet."
14084
- msgstr ""
14085
-
14086
- #: wppa-settings-autosave.php:7797
14087
- msgid "Keep sync"
14088
- msgstr ""
14089
-
14090
- #: wppa-settings-autosave.php:7798
14091
- msgid "Keep source synchronously with wppa system."
14092
- msgstr ""
14093
-
14094
- #: wppa-settings-autosave.php:7799
14095
- msgid ""
14096
- "If checked, photos that are deleted from wppa, will also be removed from the "
14097
- "sourcefiles."
14098
- msgstr ""
14099
-
14100
- #: wppa-settings-autosave.php:7800
14101
- msgid ""
14102
- "Also, copying or moving photos to different albums, will also copy/move the "
14103
- "sourcefiles."
14104
- msgstr ""
14105
-
14106
- #: wppa-settings-autosave.php:7807
14107
- msgid "Remake add"
14108
- msgstr ""
14109
-
14110
- #: wppa-settings-autosave.php:7808
14111
- msgid "Photos will be added from the source pool"
14112
- msgstr ""
14113
-
14114
- #: wppa-settings-autosave.php:7809
14115
- msgid ""
14116
- "If checked: If photo files are found in the source directory that do not "
14117
- "exist in the corresponding album, they will be added to the album."
14118
- msgstr ""
14119
-
14120
- #: wppa-settings-autosave.php:7816
14121
- #, fuzzy
14122
- msgid "Save IPTC data"
14123
- msgstr "Skjul IPTC data"
14124
-
14125
- #: wppa-settings-autosave.php:7817
14126
- msgid "Store the iptc data from the photo into the iptc db table"
14127
- msgstr ""
14128
-
14129
- #: wppa-settings-autosave.php:7818
14130
- msgid ""
14131
- "You will need this if you enabled the display of iptc data in Table II-B17 "
14132
- "or if you use it in the photo descriptions."
14133
- msgstr ""
14134
-
14135
- #: wppa-settings-autosave.php:7825
14136
- #, fuzzy
14137
- msgid "Save EXIF data"
14138
- msgstr "Skjul EXIF data"
14139
-
14140
- #: wppa-settings-autosave.php:7826
14141
- msgid "Store the exif data from the photo into the exif db table"
14142
- msgstr ""
14143
-
14144
- #: wppa-settings-autosave.php:7827
14145
- msgid ""
14146
- "You will need this if you enabled the display of exif data in Table II-B18 "
14147
- "or if you use it in the photo descriptions."
14148
- msgstr ""
14149
-
14150
- #: wppa-settings-autosave.php:7834
14151
- msgid "Max EXIF tag array size"
14152
- msgstr ""
14153
-
14154
- #: wppa-settings-autosave.php:7835
14155
- msgid "Truncate array tags to ..."
14156
- msgstr ""
14157
-
14158
- #: wppa-settings-autosave.php:7836
14159
- msgid "A value of 0 disables this feature"
14160
- msgstr ""
14161
-
14162
- #: wppa-settings-autosave.php:7838
14163
- #, fuzzy
14164
- msgid "elements"
14165
- msgstr "%d kommentarer"
14166
-
14167
- #: wppa-settings-autosave.php:7843
14168
- msgid "Import Create page"
14169
- msgstr ""
14170
-
14171
- #: wppa-settings-autosave.php:7844
14172
- msgid "Create wp page when a directory to album is imported."
14173
- msgstr ""
14174
-
14175
- #: wppa-settings-autosave.php:7845
14176
- msgid ""
14177
- "As soon as an album is created when a directory is imported, a wp page is "
14178
- "made that displays the album content."
14179
- msgstr ""
14180
-
14181
- #: wppa-settings-autosave.php:7853
14182
- msgid "Page content"
14183
- msgstr ""
14184
-
14185
- #: wppa-settings-autosave.php:7854
14186
- msgid "The content of the page. Must contain <b>w#album</b>"
14187
- msgstr ""
14188
-
14189
- #: wppa-settings-autosave.php:7855
14190
- msgid ""
14191
- "The content of the page. Note: it must contain w#album. This will be "
14192
- "replaced by the album number in the generated shortcode."
14193
- msgstr ""
14194
-
14195
- #: wppa-settings-autosave.php:7863
14196
- msgid "Page type"
14197
- msgstr ""
14198
-
14199
- #: wppa-settings-autosave.php:7864
14200
- msgid "Select the type of page to create."
14201
- msgstr ""
14202
-
14203
- #: wppa-settings-autosave.php:7868
14204
- #, fuzzy
14205
- msgid "Post"
14206
- msgstr "--- lo stesso articolo/pagina ---"
14207
-
14208
- #: wppa-settings-autosave.php:7875
14209
- msgid "Page status"
14210
- msgstr ""
14211
-
14212
- #: wppa-settings-autosave.php:7876
14213
- msgid "Select the initial status of the page."
14214
- msgstr ""
14215
-
14216
- #: wppa-settings-autosave.php:7880
14217
- msgid "Published"
14218
- msgstr ""
14219
-
14220
- #: wppa-settings-autosave.php:7880
14221
- msgid "Draft"
14222
- msgstr ""
14223
-
14224
- #: wppa-settings-autosave.php:7888
14225
- msgid "Permalink root"
14226
- msgstr ""
14227
-
14228
- #: wppa-settings-autosave.php:7889
14229
- msgid "The name of the root for the photofile ermalink structure."
14230
- msgstr ""
14231
-
14232
- #: wppa-settings-autosave.php:7890
14233
- msgid ""
14234
- "Choose a convenient name like \"albums\" or so; this will be the name of a "
14235
- "folder inside .../wp-content/. Make sure you choose a unique name"
14236
- msgstr ""
14237
-
14238
- #: wppa-settings-autosave.php:7898
14239
- msgid "Import parent check"
14240
- msgstr ""
14241
-
14242
- #: wppa-settings-autosave.php:7899
14243
- msgid "On import dirs to albums: keep dir tree as albums."
14244
- msgstr ""
14245
-
14246
- #: wppa-settings-autosave.php:7900
14247
- msgid ""
14248
- "Untick only if all your albums have unique names. Then: additional photos "
14249
- "may be ftp'd to toplevel depot subdirs."
14250
- msgstr ""
14251
-
14252
- #: wppa-settings-autosave.php:7907
14253
- msgid "IPTC need utf8 conversion"
14254
- msgstr ""
14255
-
14256
- #: wppa-settings-autosave.php:7908
14257
- msgid "This setting converts iso to utf8 in iptc text."
14258
- msgstr ""
14259
-
14260
- #: wppa-settings-autosave.php:7909
14261
- msgid "Untick if you have funny characters in iptc data"
14262
- msgstr ""
14263
-
14264
- #: wppa-settings-autosave.php:7916
14265
- msgid "Keep dir to album files"
14266
- msgstr ""
14267
-
14268
- #: wppa-settings-autosave.php:7917
14269
- msgid "Keep imported files after dir to album import"
14270
- msgstr ""
14271
-
14272
- #: wppa-settings-autosave.php:7926
14273
- msgid "Other plugins related settings"
14274
- msgstr ""
14275
-
14276
- #: wppa-settings-autosave.php:7928
14277
- msgid "Foreign shortcodes general"
14278
- msgstr ""
14279
-
14280
- #: wppa-settings-autosave.php:7929
14281
- msgid "Enable foreign shortcodes in album names, albums desc and photo names"
14282
- msgstr ""
14283
-
14284
- #: wppa-settings-autosave.php:7937
14285
- msgid "Foreign shortcodes fullsize"
14286
- msgstr ""
14287
-
14288
- #: wppa-settings-autosave.php:7938
14289
- msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
14290
- msgstr ""
14291
-
14292
- #: wppa-settings-autosave.php:7939 wppa-settings-autosave.php:7950
14293
- msgid ""
14294
- "When checked, you can use shortcodes from other plugins in the description "
14295
- "of photos."
14296
- msgstr ""
14297
-
14298
- #: wppa-settings-autosave.php:7940
14299
- msgid "The shortcodes will be expanded in the descriptions of fullsize images."
14300
- msgstr ""
14301
-
14302
- #: wppa-settings-autosave.php:7941 wppa-settings-autosave.php:7952
14303
- msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
14304
- msgstr ""
14305
-
14306
- #: wppa-settings-autosave.php:7948
14307
- #, fuzzy
14308
- msgid "Foreign shortcodes thumbnails"
14309
- msgstr "Se"
14310
-
14311
- #: wppa-settings-autosave.php:7949
14312
- msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
14313
- msgstr ""
14314
-
14315
- #: wppa-settings-autosave.php:7951
14316
- msgid ""
14317
- "The shortcodes will be expanded in the descriptions of thumbnail images."
14318
- msgstr ""
14319
-
14320
- #: wppa-settings-autosave.php:7959
14321
- msgid "Lightbox keyname"
14322
- msgstr ""
14323
-
14324
- #: wppa-settings-autosave.php:7960
14325
- msgid "The identifier of lightbox."
14326
- msgstr ""
14327
-
14328
- #: wppa-settings-autosave.php:7961
14329
- msgid ""
14330
- "If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
14331
- "lbox-id here."
14332
- msgstr ""
14333
-
14334
- #: wppa-settings-autosave.php:7968
14335
- msgid "myCRED / Cube Points: Comment"
14336
- msgstr ""
14337
-
14338
- #: wppa-settings-autosave.php:7969
14339
- #, fuzzy
14340
- msgid "Number of points for a comment"
14341
- msgstr "<a href=\"%s\">Log ind</a> for at skrive en kommentar"
14342
-
14343
- #: wppa-settings-autosave.php:7970 wppa-settings-autosave.php:7979
14344
- #: wppa-settings-autosave.php:7988
14345
- msgid "This setting requires the plugin myCRED or Cube Points"
14346
- msgstr ""
14347
-
14348
- #: wppa-settings-autosave.php:7972
14349
- #, fuzzy
14350
- msgid "points per comment"
14351
- msgstr "Din kommentar"
14352
-
14353
- #: wppa-settings-autosave.php:7977
14354
- msgid "myCRED / Cube Points: Rating"
14355
- msgstr ""
14356
-
14357
- #: wppa-settings-autosave.php:7978
14358
- msgid "Number of points for a rating vote"
14359
- msgstr ""
14360
-
14361
- #: wppa-settings-autosave.php:7981
14362
- msgid "points per vote"
14363
- msgstr ""
14364
-
14365
- #: wppa-settings-autosave.php:7986
14366
- msgid "myCRED / Cube Points: Upload"
14367
- msgstr ""
14368
-
14369
- #: wppa-settings-autosave.php:7987
14370
- msgid "Number of points for a successfull frontend upload"
14371
- msgstr ""
14372
-
14373
- #: wppa-settings-autosave.php:7990
14374
- #, fuzzy
14375
- msgid "points per upload"
14376
- msgstr "Foto caricate nell'album numero"
14377
-
14378
- #: wppa-settings-autosave.php:7995
14379
- msgid "Use SCABN"
14380
- msgstr ""
14381
-
14382
- #: wppa-settings-autosave.php:7996
14383
- msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
14384
- msgstr ""
14385
-
14386
- #: wppa-settings-autosave.php:7997
14387
- msgid ""
14388
- "If checked, the shortcode to use for the \"add to cart\" button in photo "
14389
- "descriptions is [cart ...]"
14390
- msgstr ""
14391
-
14392
- #: wppa-settings-autosave.php:7998
14393
- msgid ""
14394
- "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
14395
- msgstr ""
14396
-
14397
- #: wppa-settings-autosave.php:7999
14398
- msgid "The shortcode for the check-out page is still [scabn]"
14399
- msgstr ""
14400
-
14401
- #: wppa-settings-autosave.php:8000
14402
- msgid ""
14403
- "The arguments are the same, the defaults are: name = photoname, price = 0.01."
14404
- msgstr ""
14405
-
14406
- #: wppa-settings-autosave.php:8001
14407
- msgid ""
14408
- "Supplying the price should be sufficient; supply a name only when it differs "
14409
- "from the photo name."
14410
- msgstr ""
14411
-
14412
- #: wppa-settings-autosave.php:8002
14413
- msgid "This shortcode handler will also work with Ajax enabled."
14414
- msgstr ""
14415
-
14416
- #: wppa-settings-autosave.php:8003
14417
- msgid ""
14418
- "Using this interface makes sure that the item urls and callback action urls "
14419
- "are correct."
14420
- msgstr ""
14421
-
14422
- #: wppa-settings-autosave.php:8010
14423
- msgid "Use CM Tooltip Glossary"
14424
- msgstr ""
14425
-
14426
- #: wppa-settings-autosave.php:8011
14427
- msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
14428
- msgstr ""
14429
-
14430
- #: wppa-settings-autosave.php:8012
14431
- msgid ""
14432
- "You MUST set Table IV-A13: Defer javascript, also if you do not want this "
14433
- "plugin to act on album and photo descriptions!"
14434
- msgstr ""
14435
-
14436
- #: wppa-settings-autosave.php:8020
14437
- msgid "External services related settings and actions."
14438
- msgstr ""
14439
-
14440
- #: wppa-settings-autosave.php:8022
14441
- msgid "QR Code widget size"
14442
- msgstr ""
14443
-
14444
- #: wppa-settings-autosave.php:8023
14445
- msgid "The size of the QR code display."
14446
- msgstr ""
14447
-
14448
- #: wppa-settings-autosave.php:8031
14449
- msgid "QR color"
14450
- msgstr ""
14451
-
14452
- #: wppa-settings-autosave.php:8032
14453
- msgid "The display color of the qr code (dark)"
14454
- msgstr ""
14455
-
14456
- #: wppa-settings-autosave.php:8033
14457
- msgid "This color MUST be given in hexadecimal format!"
14458
- msgstr ""
14459
-
14460
- #: wppa-settings-autosave.php:8040
14461
- msgid "QR background color"
14462
- msgstr ""
14463
-
14464
- #: wppa-settings-autosave.php:8041
14465
- msgid "The background color of the qr code (light)"
14466
- msgstr ""
14467
-
14468
- #: wppa-settings-autosave.php:8049
14469
- msgid "CDN Service"
14470
- msgstr ""
14471
-
14472
- #: wppa-settings-autosave.php:8050
14473
- msgid "Select a CDN Service you want to use."
14474
- msgstr ""
14475
-
14476
- #: wppa-settings-autosave.php:8053
14477
- msgid "Cloudinary in maintenance mode"
14478
- msgstr ""
14479
-
14480
- #: wppa-settings-autosave.php:8063
14481
- #, fuzzy
14482
- msgid "Cloud name"
14483
- msgstr "Dit navn"
14484
-
14485
- #: wppa-settings-autosave.php:8072
14486
- msgid "API key"
14487
- msgstr ""
14488
-
14489
- #: wppa-settings-autosave.php:8081
14490
- msgid "API secret"
14491
- msgstr ""
14492
-
14493
- #: wppa-settings-autosave.php:8090
14494
- #, fuzzy
14495
- msgid "Delete all"
14496
- msgstr "Impossibile creare album. "
14497
-
14498
- #: wppa-settings-autosave.php:8091
14499
- msgid "Deletes them all !!!"
14500
- msgstr ""
14501
-
14502
- #: wppa-settings-autosave.php:8099
14503
- msgid "Delete derived images"
14504
- msgstr ""
14505
-
14506
- #: wppa-settings-autosave.php:8100
14507
- msgid "Deletes all derived images !!!"
14508
- msgstr ""
14509
-
14510
- #: wppa-settings-autosave.php:8108
14511
- msgid "Max lifetime"
14512
- msgstr ""
14513
-
14514
- #: wppa-settings-autosave.php:8109
14515
- msgid "Old images from local server, new images from Cloudinary."
14516
- msgstr ""
14517
-
14518
- #: wppa-settings-autosave.php:8110
14519
- msgid ""
14520
- "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
14521
- msgstr ""
14522
-
14523
- #: wppa-settings-autosave.php:8112
14524
- msgid "Forever"
14525
- msgstr ""
14526
-
14527
- #: wppa-settings-autosave.php:8116
14528
- #, fuzzy
14529
- msgid "Two months"
14530
- msgstr "m&aring;neder"
14531
-
14532
- #: wppa-settings-autosave.php:8117
14533
- #, fuzzy
14534
- msgid "Three months"
14535
- msgstr "m&aring;neder"
14536
-
14537
- #: wppa-settings-autosave.php:8118
14538
- #, fuzzy
14539
- msgid "Six months"
14540
- msgstr "m&aring;neder"
14541
-
14542
- #: wppa-settings-autosave.php:8119
14543
- #, fuzzy
14544
- msgid "Nine months"
14545
- msgstr "m&aring;neder"
14546
-
14547
- #: wppa-settings-autosave.php:8120
14548
- #, fuzzy
14549
- msgid "One year"
14550
- msgstr "1 &aring;r"
14551
-
14552
- #: wppa-settings-autosave.php:8121
14553
- #, fuzzy
14554
- msgid "18 months"
14555
- msgstr "1 m&aring;ned"
14556
-
14557
- #: wppa-settings-autosave.php:8122
14558
- #, fuzzy
14559
- msgid "Two years"
14560
- msgstr "&aring;r"
14561
-
14562
- #: wppa-settings-autosave.php:8142
14563
- msgid "Cloudinary usage"
14564
- msgstr ""
14565
-
14566
- #: wppa-settings-autosave.php:8178
14567
- #, fuzzy
14568
- msgid "Cloudinary usage data not available"
14569
- msgstr "Pagina non disponibile."
14570
-
14571
- #: wppa-settings-autosave.php:8182
14572
- msgid "Cloudinary routines not installed."
14573
- msgstr ""
14574
-
14575
- #: wppa-settings-autosave.php:8193
14576
- msgid "Cloudinary"
14577
- msgstr ""
14578
-
14579
- #: wppa-settings-autosave.php:8194
14580
- msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
14581
- msgstr ""
14582
-
14583
- #: wppa-settings-autosave.php:8203
14584
- msgid "GPX Implementation"
14585
- msgstr ""
14586
-
14587
- #: wppa-settings-autosave.php:8204
14588
- msgid "The way the maps are produced."
14589
- msgstr ""
14590
-
14591
- #: wppa-settings-autosave.php:8205
14592
- msgid "Select the way the maps are produced."
14593
- msgstr ""
14594
-
14595
- #: wppa-settings-autosave.php:8206
14596
- msgid ""
14597
- "When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
14598
- msgstr ""
14599
-
14600
- #: wppa-settings-autosave.php:8207
14601
- msgid ""
14602
- "When using WPPA+ Embedded code, you can use Ajax, but there are less display "
14603
- "options."
14604
- msgstr ""
14605
-
14606
- #: wppa-settings-autosave.php:8209
14607
- msgid "WPPA+ Embedded code"
14608
- msgstr ""
14609
-
14610
- #: wppa-settings-autosave.php:8209
14611
- msgid "Google maps GPX viewer plugin"
14612
- msgstr ""
14613
-
14614
- #: wppa-settings-autosave.php:8217
14615
- msgid "Map height"
14616
- msgstr ""
14617
-
14618
- #: wppa-settings-autosave.php:8218
14619
- msgid "The height of the map display."
14620
- msgstr ""
14621
-
14622
- #: wppa-settings-autosave.php:8226
14623
- msgid "Google maps API key"
14624
- msgstr ""
14625
-
14626
- #: wppa-settings-autosave.php:8227
14627
- msgid "Enter your Google maps api key here if you have one."
14628
- msgstr ""
14629
-
14630
- #: wppa-settings-autosave.php:8235
14631
- msgid "GPX Shortcode"
14632
- msgstr ""
14633
-
14634
- #: wppa-settings-autosave.php:8236
14635
- msgid "The shortcode to be used for the gpx feature."
14636
- msgstr ""
14637
-
14638
- #: wppa-settings-autosave.php:8237
14639
- msgid ""
14640
- "Enter / modify the shortcode to be generated for the gpx plugin. It must "
14641
- "contain w#lat and w#lon as placeholders for the lattitude and longitude."
14642
- msgstr ""
14643
-
14644
- #: wppa-settings-autosave.php:8238
14645
- msgid "This item is required for using Google maps GPX viewer plugin only"
14646
- msgstr ""
14647
-
14648
- #: wppa-settings-autosave.php:8245
14649
- msgid "Fotomoto"
14650
- msgstr ""
14651
-
14652
- #: wppa-settings-autosave.php:8246
14653
- msgid "Yes, we use Fotomoto on this site. Read the help text!"
14654
- msgstr ""
14655
-
14656
- #: wppa-settings-autosave.php:8247
14657
- msgid "In order to function properly:"
14658
- msgstr ""
14659
-
14660
- #: wppa-settings-autosave.php:8248
14661
- msgid "1. Get yourself a Fotomoto account."
14662
- msgstr ""
14663
-
14664
- #: wppa-settings-autosave.php:8249
14665
- msgid ""
14666
- "2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
14667
- "the \"Use API Mode:\" checkbox."
14668
- msgstr ""
14669
-
14670
- #: wppa-settings-autosave.php:8250
14671
- msgid "Note: Do NOT Disable the Custom box in Table II-B14."
14672
- msgstr ""
14673
-
14674
- #: wppa-settings-autosave.php:8251
14675
- msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
14676
- msgstr ""
14677
-
14678
- #: wppa-settings-autosave.php:8259
14679
- msgid "Fotomoto fontsize"
14680
- msgstr ""
14681
-
14682
- #: wppa-settings-autosave.php:8260
14683
- msgid "Fontsize for the Fotomoto toolbar."
14684
- msgstr ""
14685
-
14686
- #: wppa-settings-autosave.php:8261
14687
- msgid ""
14688
- "If you set it here, it overrules a possible setting for font-size in ."
14689
- "FotomotoToolbarClass on the Fotomoto dashboard."
14690
- msgstr ""
14691
-
14692
- #: wppa-settings-autosave.php:8269
14693
- msgid "Hide toolbar on running slideshows"
14694
- msgstr ""
14695
-
14696
- #: wppa-settings-autosave.php:8270
14697
- msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
14698
- msgstr ""
14699
-
14700
- #: wppa-settings-autosave.php:8277
14701
- msgid "Fotomoto minwidth"
14702
- msgstr ""
14703
-
14704
- #: wppa-settings-autosave.php:8278
14705
- msgid "Minimum width to display Fotomoto toolbar."
14706
- msgstr ""
14707
-
14708
- #: wppa-settings-autosave.php:8279
14709
- msgid ""
14710
- "The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
14711
- msgstr ""
14712
-
14713
- #: wppa-settings-autosave.php:8304
14714
- msgid "Table X:"
14715
- msgstr ""
14716
-
14717
- #: wppa-settings-autosave.php:8304
14718
- msgid "IPTC Configuration:"
14719
- msgstr ""
14720
-
14721
- #: wppa-settings-autosave.php:8305
14722
- msgid "This table defines the IPTC configuration"
14723
- msgstr ""
14724
-
14725
- #: wppa-settings-autosave.php:8336 wppa-settings-autosave.php:8404
14726
- msgid "Display"
14727
- msgstr ""
14728
-
14729
- #: wppa-settings-autosave.php:8336 wppa-settings-autosave.php:8404
14730
- msgid "Hide"
14731
- msgstr ""
14732
-
14733
- #: wppa-settings-autosave.php:8336 wppa-settings-autosave.php:8404
14734
- msgid "Optional"
14735
- msgstr ""
14736
-
14737
- #: wppa-settings-autosave.php:8366
14738
- msgid "Table XI:"
14739
- msgstr ""
14740
-
14741
- #: wppa-settings-autosave.php:8366
14742
- msgid "EXIF Configuration:"
14743
- msgstr ""
14744
-
14745
- #: wppa-settings-autosave.php:8367
14746
- msgid "This table defines the EXIF configuration"
14747
- msgstr ""
14748
-
14749
- #: wppa-settings-autosave.php:8390
14750
- msgid ""
14751
- "Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
14752
- "enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to "
14753
- "add <b>'--enable-exif'</b> to the php <b>Configure Command</b>."
14754
- msgstr ""
14755
-
14756
- #: wppa-settings-autosave.php:8434
14757
- msgid "Table XII:"
14758
- msgstr ""
14759
-
14760
- #: wppa-settings-autosave.php:8434
14761
- msgid "WPPA+ and PHP Configuration:"
14762
- msgstr ""
14763
-
14764
- #: wppa-settings-autosave.php:8435
14765
- msgid ""
14766
- "This table lists all WPPA+ constants and PHP server configuration parameters "
14767
- "and is read only"
14768
- msgstr ""
14769
-
14770
- #: wppa-settings-autosave.php:8450
14771
- msgid "Value"
14772
- msgstr ""
14773
-
14774
- #: wppa-settings-autosave.php:8455
14775
- msgid "Albums db table name."
14776
- msgstr ""
14777
-
14778
- #: wppa-settings-autosave.php:8460
14779
- #, fuzzy
14780
- msgid "Photos db table name."
14781
- msgstr "Vis EXIF data"
14782
-
14783
- #: wppa-settings-autosave.php:8465
14784
- msgid "Rating db table name."
14785
- msgstr ""
14786
-
14787
- #: wppa-settings-autosave.php:8470
14788
- msgid "Comments db table name."
14789
- msgstr ""
14790
-
14791
- #: wppa-settings-autosave.php:8475
14792
- msgid "IPTC db table name."
14793
- msgstr ""
14794
-
14795
- #: wppa-settings-autosave.php:8480
14796
- msgid "EXIF db table name."
14797
- msgstr ""
14798
-
14799
- #: wppa-settings-autosave.php:8485
14800
- msgid "Index db table name."
14801
- msgstr ""
14802
-
14803
- #: wppa-settings-autosave.php:8490
14804
- msgid "Plugins main file name."
14805
- msgstr ""
14806
-
14807
- #: wppa-settings-autosave.php:8495
14808
- msgid "Path to plugins directory."
14809
- msgstr ""
14810
-
14811
- #: wppa-settings-autosave.php:8500
14812
- msgid "Plugins directory name."
14813
- msgstr ""
14814
-
14815
- #: wppa-settings-autosave.php:8505
14816
- msgid "Plugins directory url."
14817
- msgstr ""
14818
-
14819
- #: wppa-settings-autosave.php:8510
14820
- msgid "The relative upload directory."
14821
- msgstr ""
14822
-
14823
- #: wppa-settings-autosave.php:8515
14824
- msgid "The upload directory path."
14825
- msgstr ""
14826
-
14827
- #: wppa-settings-autosave.php:8520
14828
- msgid "The upload directory url."
14829
- msgstr ""
14830
-
14831
- #: wppa-settings-autosave.php:8525
14832
- msgid "The relative depot directory."
14833
- msgstr ""
14834
-
14835
- #: wppa-settings-autosave.php:8530
14836
- msgid "The depot directory path."
14837
- msgstr ""
14838
-
14839
- #: wppa-settings-autosave.php:8535
14840
- msgid "The depot directory url."
14841
- msgstr ""
14842
-
14843
- #: wppa-settings-autosave.php:8540
14844
- msgid "The path to wp-content."
14845
- msgstr ""
14846
-
14847
- #: wppa-settings-autosave.php:8545
14848
- msgid "WP Base upload dir."
14849
- msgstr ""
14850
-
14851
- #: wppa-settings-autosave.php:8551
14852
- msgid "ABSPATH windows proof"
14853
- msgstr ""
14854
-
14855
- #: wppa-settings-autosave.php:8563
14856
- #, php-format
14857
- msgid "<br />Memory used on this page: %6.2f Mb."
14858
- msgstr ""
14859
-
14860
- #: wppa-settings-autosave.php:8564
14861
- #, php-format
14862
- msgid "<br />There are %d settings and %d runtime parameters."
14863
- msgstr ""
14864
-
14865
- #: wppa-settings-autosave.php:8641
14866
- msgid "The default for this setting is:"
14867
- msgstr ""
14868
-
14869
- #: wppa-settings-autosave.php:8650
14870
- msgid "Click for help"
14871
- msgstr ""
14872
-
14873
- #: wppa-settings-autosave.php:8694 wppa-settings-autosave.php:8711
14874
- #: wppa-settings-autosave.php:8740 wppa-settings-autosave.php:8763
14875
- #: wppa-settings-autosave.php:8793 wppa-settings-autosave.php:8820
14876
- #: wppa-settings-autosave.php:8846 wppa-settings-autosave.php:8894
14877
- msgid "Slug ="
14878
- msgstr ""
14879
-
14880
- #: wppa-settings-autosave.php:8763 wppa-settings-autosave.php:8793
14881
- #: wppa-settings-autosave.php:8820 wppa-settings-autosave.php:8846
14882
- msgid "Values = yes, no"
14883
- msgstr ""
14884
-
14885
- #: wppa-settings-autosave.php:8792 wppa-settings-autosave.php:8818
14886
- #: wppa-settings-autosave.php:8845
14887
- msgid "Warning!"
14888
- msgstr ""
14889
-
14890
- #: wppa-settings-autosave.php:8819 wppa-settings-autosave.php:8845
14891
- msgid "Please read the help"
14892
- msgstr ""
14893
-
14894
- #: wppa-settings-autosave.php:8894
14895
- msgid "Values = "
14896
- msgstr ""
14897
-
14898
- #: wppa-settings-autosave.php:8969
14899
- msgid "Checked"
14900
- msgstr ""
14901
-
14902
- #: wppa-settings-autosave.php:8970
14903
- msgid "Unchecked"
14904
- msgstr ""
14905
-
14906
- #: wppa-settings-autosave.php:8975
14907
- msgid "the photo specific link."
14908
- msgstr ""
14909
-
14910
- #: wppa-settings-autosave.php:9007
14911
- msgid "Show!"
14912
- msgstr ""
14913
-
14914
- #: wppa-settings-autosave.php:9027
14915
- #, fuzzy
14916
- msgid "Not done yet"
14917
- msgstr "Intet album er defineret."
14918
-
14919
- #: wppa-settings-autosave.php:9034
14920
- #, fuzzy
14921
- msgid "Start!"
14922
- msgstr "Start"
14923
-
14924
- #: wppa-settings-autosave.php:9039
14925
- msgid "Locked!"
14926
- msgstr ""
14927
-
14928
- #: wppa-settings-autosave.php:9070
14929
- msgid ""
14930
- "You can not have popup and lightbox on thumbnails at the same time. Uncheck "
14931
- "either Table IV-C8 or choose a different linktype in Table VI-2."
14932
- msgstr ""
14933
-
14934
- #: wppa-settings-autosave.php:9073
14935
- #, php-format
14936
- msgid ""
14937
- "It is important that you select a page that contains at least %%wppa%% or "
14938
- "[wppa][/wppa]."
14939
- msgstr ""
14940
-
14941
- #: wppa-settings-autosave.php:9074
14942
- msgid ""
14943
- "If you ommit this, the link will not work at all or simply refresh the "
14944
- "(home)page."
14945
- msgstr ""
14946
-
14947
- #: wppa-setup.php:442
14948
- msgid "IMPORTANT UPGRADE NOTICE"
14949
- msgstr ""
14950
-
14951
- #: wppa-setup.php:443
14952
- msgid ""
14953
- "Please CHECK your customized WPPA-STYLE.CSS file against the newly supplied "
14954
- "one. You may wish to add or modify some attributes. Be aware of the fact "
14955
- "that most settings can now be set in the admin settings page."
14956
- msgstr ""
14957
-
14958
- #: wppa-setup.php:444
14959
- msgid ""
14960
- "Please REPLACE your customized WPPA-THEME.PHP file by the newly supplied "
14961
- "one, or just remove it from your theme directory. You may modify it later if "
14962
- "you wish. Your current customized version is NOT compatible with this "
14963
- "version of the plugin software."
14964
- msgstr ""
14965
-
14966
- #: wppa-setup.php:470
14967
- #, php-format
14968
- msgid "WPPA+ successfully updated in multi site mode to db version %s."
14969
- msgstr ""
14970
-
14971
- #: wppa-setup.php:473
14972
- #, php-format
14973
- msgid "WPPA+ successfully updated in single site mode to db version %s."
14974
- msgstr ""
14975
-
14976
- #: wppa-setup.php:478
14977
- #, fuzzy
14978
- msgid "An error occurred during update"
14979
- msgstr "Fejl under upload"
14980
-
14981
- #: wppa-setup.php:777
14982
- msgid ""
14983
- "<span style=\"color:red\" >Warning: Do not upload copyrighted material!</"
14984
- "span>"
14985
- msgstr ""
14986
-
14987
- #: wppa-setup.php:786 wppa-setup.php:790 wppa-setup.php:794
14988
- msgid "Select tags:"
14989
- msgstr ""
14990
-
14991
- #: wppa-setup.php:797
14992
- msgid "Enter new tags:"
14993
- msgstr ""
14994
-
14995
- #: wppa-setup.php:947
14996
- msgid "Vote for me!"
14997
- msgstr ""
14998
-
14999
- #: wppa-setup.php:948
15000
- msgid "Voted for me"
15001
- msgstr ""
15002
-
15003
- #: wppa-setup.php:1269
15004
- msgid "NEW"
15005
- msgstr ""
15006
-
15007
- #: wppa-setup.php:1271
15008
- msgid "MODIFIED"
15009
- msgstr ""
15010
-
15011
- #: wppa-setup.php:1318
15012
- #, fuzzy
15013
- msgid "Search in current section"
15014
- msgstr "Ricerca nella sezione corrente"
15015
-
15016
- #: wppa-setup.php:1319
15017
- #, fuzzy
15018
- msgid "Search in current results"
15019
- msgstr "Ricerca in risultati correnti"
15020
-
15021
- #: wppa-setup.php:1388
15022
- msgid "Type your custom url here"
15023
- msgstr ""
15024
-
15025
- #: wppa-setup.php:1389
15026
- msgid "Type the title here"
15027
- msgstr ""
15028
-
15029
- #: wppa-setup.php:1401 wppa-topten-widget.php:13 wppa-topten-widget.php:47
15030
- #: wppa-topten-widget.php:192
15031
- msgid "Top Ten Photos"
15032
- msgstr "Foto Top Ti"
15033
-
15034
- #: wppa-setup.php:1404 wppa-thumbnail-widget.php:13
15035
- #: wppa-thumbnail-widget.php:166
15036
- #, fuzzy
15037
- msgid "Thumbnail Photos"
15038
- msgstr "Miniatura"
15039
-
15040
- #: wppa-setup.php:1407
15041
- #, fuzzy
15042
- msgid "Search photos"
15043
- msgstr "Top fotos"
15044
-
15045
- #: wppa-setup.php:1450
15046
- msgid ""
15047
- "The uploads directory does not exist, please do a regular WP upload first."
15048
- msgstr ""
15049
-
15050
- #: wppa-setup.php:1454
15051
- msgid "Successfully created uploads directory."
15052
- msgstr ""
15053
-
15054
- #: wppa-setup.php:1465
15055
- #, fuzzy
15056
- msgid "Could not create the wppa directory."
15057
- msgstr "Impossibile creare album. "
15058
-
15059
- #: wppa-setup.php:1469
15060
- msgid "Successfully created wppa directory."
15061
- msgstr ""
15062
-
15063
- #: wppa-setup.php:1479
15064
- #, fuzzy
15065
- msgid "Could not create the wppa thumbs directory."
15066
- msgstr "Impossibile creare album. "
15067
-
15068
- #: wppa-setup.php:1483
15069
- msgid "Successfully created wppa thumbs directory."
15070
- msgstr ""
15071
-
15072
- #: wppa-setup.php:1493
15073
- msgid "Could not create the wppa watermarks directory."
15074
- msgstr ""
15075
-
15076
- #: wppa-setup.php:1497
15077
- msgid "Successfully created wppa watermarks directory."
15078
- msgstr ""
15079
-
15080
- #: wppa-setup.php:1507
15081
- msgid "Could not create the wppa fonts directory."
15082
- msgstr ""
15083
-
15084
- #: wppa-setup.php:1511
15085
- msgid "Successfully created wppa fonts directory."
15086
- msgstr ""
15087
-
15088
- #: wppa-setup.php:1523
15089
- msgid "Unable to create depot directory."
15090
- msgstr ""
15091
-
15092
- #: wppa-setup.php:1527
15093
- msgid "Successfully created wppa depot directory."
15094
- msgstr ""
15095
-
15096
- #: wppa-setup.php:1538
15097
- msgid "Unable to create user depot directory"
15098
- msgstr ""
15099
-
15100
- #: wppa-setup.php:1542
15101
- msgid "Successfully created wppa user depot directory."
15102
- msgstr ""
15103
-
15104
- #: wppa-setup.php:1552
15105
- msgid "Unable to create temp directory"
15106
- msgstr ""
15107
-
15108
- #: wppa-setup.php:1556
15109
- msgid "Successfully created temp directory."
15110
- msgstr ""
15111
-
15112
- #: wppa-setup.php:1564
15113
- #, php-format
15114
- msgid ""
15115
- "Ask your administrator to give you more rights, or create <b>%s</b> manually "
15116
- "using an FTP program."
15117
- msgstr ""
15118
-
15119
- #: wppa-slideshow-widget.php:17
15120
- #, fuzzy
15121
- msgid "WPPA+ Sidebar Slideshow"
15122
- msgstr "Slideshow barra laterale"
15123
-
15124
- #: wppa-slideshow-widget.php:18 wppa-slideshow-widget.php:162
15125
- msgid "Sidebar Slideshow"
15126
- msgstr "Slideshow barra laterale"
15127
-
15128
- #: wppa-slideshow-widget.php:71
15129
- msgid "Widget landing page"
15130
- msgstr ""
15131
-
15132
- #: wppa-slideshow-widget.php:124
15133
- msgid "No album defined yet."
15134
- msgstr "Intet album er defineret."
15135
-
15136
- #: wppa-slideshow-widget.php:200
15137
- msgid ""
15138
- "Enter the width and optionally the height of the area wherein the slides "
15139
- "will appear. If you specify a 0 for the height, it will be calculated. The "
15140
- "value for the height will be ignored if you set the vertical alignment to "
15141
- "'fit'."
15142
- msgstr ""
15143
-
15144
- #: wppa-slideshow-widget.php:201 wppa-slideshow-widget.php:202
15145
- #: wppa-widget-admin.php:72
15146
- msgid "pixels."
15147
- msgstr ""
15148
-
15149
- #: wppa-slideshow-widget.php:204
15150
- #, fuzzy
15151
- msgid "Portrait only:"
15152
- msgstr "Portr&aelig;t"
15153
-
15154
- #: wppa-slideshow-widget.php:208
15155
- msgid ""
15156
- "Set to 'yes' if there are only portrait images in the album and you want the "
15157
- "photos to fill the full width of the widget.<br/>Set to 'no' otherwise."
15158
- msgstr ""
15159
-
15160
- #: wppa-slideshow-widget.php:209
15161
- msgid "If set to 'yes', Vertical alignment will be forced to 'fit'."
15162
- msgstr ""
15163
-
15164
- #: wppa-slideshow-widget.php:212
15165
- msgid "Vertical alignment:"
15166
- msgstr ""
15167
-
15168
- #: wppa-slideshow-widget.php:218
15169
- msgid "Set the desired vertical alignment method."
15170
- msgstr ""
15171
-
15172
- #: wppa-slideshow-widget.php:220
15173
- #, fuzzy
15174
- msgid "Slideshow timeout:"
15175
- msgstr "Slideshow"
15176
-
15177
- #: wppa-slideshow-widget.php:220
15178
- msgid "sec."
15179
- msgstr ""
15180
-
15181
- #: wppa-slideshow-widget.php:224
15182
- #, fuzzy
15183
- msgid "Show name:"
15184
- msgstr "Dit navn"
15185
-
15186
- #: wppa-slideshow-widget.php:231
15187
- #, fuzzy
15188
- msgid "Show description:"
15189
- msgstr "Inserisci / modifica la descrizione per questo album."
15190
-
15191
- #: wppa-slideshow-widget.php:238
15192
- msgid "Show filmstrip:"
15193
- msgstr ""
15194
-
15195
- #: wppa-slideshow-widget.php:245
15196
- msgid "Show browsebar:"
15197
- msgstr ""
15198
-
15199
- #: wppa-slideshow-widget.php:252
15200
- msgid "Show numbar:"
15201
- msgstr ""
15202
-
15203
- #: wppa-slideshow-widget.php:259
15204
- msgid "The following text fields support qTranslate"
15205
- msgstr ""
15206
-
15207
- #: wppa-slideshow-widget.php:260
15208
- msgid "Tooltip text:"
15209
- msgstr ""
15210
-
15211
- #: wppa-slideshow-widget.php:261
15212
- #, fuzzy
15213
- msgid "Text above photos:"
15214
- msgstr "Top fotos"
15215
-
15216
- #: wppa-slideshow-widget.php:262
15217
- #, fuzzy
15218
- msgid "Text below photos:"
15219
- msgstr "N&aelig;ste billede"
15220
-
15221
- #: wppa-slideshow.php:247
15222
- msgid "Paused"
15223
- msgstr "Pause"
15224
-
15225
- #: wppa-slideshow.php:255
15226
- msgid ""
15227
- "To see the full size images, you need to enable javascript in your browser."
15228
- msgstr ""
15229
- "For at se billeder i fuld st&oslash;rrelse skal du tillade javascript in din "
15230
- "browser."
15231
-
15232
- #: wppa-slideshow.php:576
15233
- msgid "Checkout"
15234
- msgstr ""
15235
-
15236
- #: wppa-slideshow.php:636
15237
- #, fuzzy, php-format
15238
- msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
15239
- msgstr ""
15240
- "<span style=\"color:red\" >Attenzione: non caricare materiale protetto da "
15241
- "copyright!</span>"
15242
-
15243
- #: wppa-slideshow.php:652 wppa-slideshow.php:795 wppa-slideshow.php:857
15244
- #, php-format
15245
- msgid "You must <a href=\"%s\">login</a> to vote"
15246
- msgstr "Du skal <a href=\"%s\">logge ind</a> for at stemme"
15247
-
15248
- #: wppa-slideshow.php:655 wppa-slideshow.php:798 wppa-slideshow.php:860
15249
- #, fuzzy
15250
- msgid "You must login to vote"
15251
- msgstr "Du skal <a href=\"%s\">logge ind</a> for at stemme"
15252
-
15253
- #: wppa-slideshow.php:691
15254
- msgid "very low"
15255
- msgstr "meget lav"
15256
-
15257
- #: wppa-slideshow.php:692
15258
- msgid "low"
15259
- msgstr "lav"
15260
-
15261
- #: wppa-slideshow.php:693
15262
- msgid "average"
15263
- msgstr "gennemsnitlig"
15264
-
15265
- #: wppa-slideshow.php:694
15266
- msgid "high"
15267
- msgstr "h&oslash;j"
15268
-
15269
- #: wppa-slideshow.php:695
15270
- msgid "very high"
15271
- msgstr "meget h&oslash;j"
15272
-
15273
- #: wppa-slideshow.php:742 wppa-slideshow.php:828
15274
- msgid "Click this if you do NOT like this image!"
15275
- msgstr "Klik her hvis du IKKE kan lide dette billed!"
15276
-
15277
- #: wppa-slideshow.php:750 wppa-slideshow.php:836
15278
- msgid "Are you sure you want to mark this image as inappropriate?"
15279
- msgstr ""
15280
- "Er du sikker p&aring;, at du vil markere dette billed som v&aelig;rende "
15281
- "upassende."
15282
-
15283
- #: wppa-slideshow.php:758 wppa-slideshow.php:845
15284
- #, fuzzy
15285
- msgid "Number of people who marked this photo as inappropriate"
15286
- msgstr "Markeret som spam"
15287
-
15288
- #: wppa-slideshow.php:852
15289
- #, fuzzy
15290
- msgid "My rating:"
15291
- msgstr "Valutazione:"
15292
-
15293
- #: wppa-slideshow.php:944
15294
- msgid "First"
15295
- msgstr ""
15296
-
15297
- #: wppa-slideshow.php:975
15298
- msgid "Last"
15299
- msgstr ""
15300
-
15301
- #: wppa-slideshow.php:1175
15302
- #, php-format
15303
- msgid "Photo %s of %s"
15304
- msgstr "Foto %s af %s"
15305
-
15306
- #: wppa-slideshow.php:1227
15307
- msgid "Click to start/stop"
15308
- msgstr "Klik for start/stop"
15309
-
15310
- #: wppa-slideshow.php:1239
15311
- msgid "- - - Comments box activated - - -"
15312
- msgstr "- - - Kommentar boks aktiveret - - -"
15313
-
15314
- #: wppa-slideshow.php:1263
15315
- msgid "- - - IPTC box activated - - -"
15316
- msgstr "- - - IPTC boks aktiveret - - -"
15317
-
15318
- #: wppa-slideshow.php:1287
15319
- msgid "- - - EXIF box activated - - -"
15320
- msgstr "- - - EXIF boks aktiveret - - -"
15321
-
15322
- #: wppa-statistics.php:27 wppa-upload.php:577 wppa-upload.php:624
15323
- #: wppa-upload.php:670 wppa-upload.php:807 wppa-upload.php:864
15324
- #: wppa-upload.php:921 wppa-upload.php:966
15325
- msgid "There are"
15326
- msgstr "Der er"
15327
-
15328
- #: wppa-statistics.php:27
15329
- msgid "photo albums. The last album added is"
15330
- msgstr "fotoalbum. Det senest tilf&oslash;jede album er"
15331
-
15332
- #: wppa-statistics.php:31
15333
- msgid ", a subalbum of"
15334
- msgstr ", et underalbum til"
15335
-
15336
- #: wppa-stereo-widget.php:12
15337
- msgid "WPPA+ Stereo settings"
15338
- msgstr ""
15339
-
15340
- #: wppa-stereo-widget.php:13
15341
- #, fuzzy
15342
- msgid "3D Settings"
15343
- msgstr "Indstillinger"
15344
-
15345
- #: wppa-stereo-widget.php:33 wppa-stereo-widget.php:64
15346
- #, fuzzy
15347
- msgid "3D Stereo Settings"
15348
- msgstr "Indstillinger"
15349
-
15350
- #: wppa-stereo.php:31
15351
- msgid "Color"
15352
- msgstr ""
15353
-
15354
- #: wppa-stereo.php:32
15355
- msgid "Half color"
15356
- msgstr ""
15357
-
15358
- #: wppa-stereo.php:33
15359
- msgid "Gray"
15360
- msgstr ""
15361
-
15362
- #: wppa-stereo.php:34
15363
- msgid "True anaglyph"
15364
- msgstr ""
15365
-
15366
- #: wppa-stereo.php:35
15367
- msgid "Optimized"
15368
- msgstr ""
15369
-
15370
- #: wppa-stereo.php:36
15371
- msgid "Flat"
15372
- msgstr ""
15373
-
15374
- #: wppa-stereo.php:38
15375
- msgid "Red - Cyan"
15376
- msgstr ""
15377
-
15378
- #: wppa-stereo.php:39
15379
- msgid "Green - Magenta"
15380
- msgstr ""
15381
-
15382
- #: wppa-super-view-widget.php:13
15383
- msgid "WPPA+ Selectable display"
15384
- msgstr ""
15385
-
15386
- #: wppa-super-view-widget.php:77
15387
- #, fuzzy
15388
- msgid "Enable (sub)albums of:"
15389
- msgstr ", et underalbum til"
15390
-
15391
- #: wppa-super-view-widget.php:82
15392
- msgid "Sort alphabeticly:"
15393
- msgstr ""
15394
-
15395
- #: wppa-super-view-widget.php:84
15396
- msgid "no, use album sort method"
15397
- msgstr ""
15398
-
15399
- #: wppa-tagcloud-widget.php:14
15400
- #, fuzzy
15401
- msgid "Photo Tag Cloud"
15402
- msgstr "Foto caricate nell'album numero"
15403
-
15404
- #: wppa-thumbnail-widget.php:12
15405
- #, fuzzy
15406
- msgid "WPPA+ Thumbnails"
15407
- msgstr "Miniatura"
15408
-
15409
- #: wppa-thumbnail-widget.php:48
15410
- #, fuzzy
15411
- msgid "Thumbnail photos"
15412
- msgstr "Miniatura"
15413
-
15414
- #: wppa-thumbnail-widget.php:186
15415
- msgid "Link from the title:"
15416
- msgstr ""
15417
-
15418
- #: wppa-thumbnail-widget.php:187
15419
- msgid "Link Title ( tooltip ):"
15420
- msgstr ""
15421
-
15422
- #: wppa-thumbnail-widget.php:198 wppa-topten-widget.php:234
15423
- #: wppa-upldr-widget.php:179
15424
- #, fuzzy
15425
- msgid "Sort by:"
15426
- msgstr "Foto %s af %s"
15427
-
15428
- #: wppa-thumbnail-widget.php:211
15429
- msgid "Max number:"
15430
- msgstr ""
15431
-
15432
- #: wppa-thumbnail-widget.php:225
15433
- msgid "Show photo names <small>under thumbnails only</small>:"
15434
- msgstr ""
15435
-
15436
- #: wppa-thumbnails.php:174 wppa-thumbnails.php:1059 wppa-topten-widget.php:108
15437
- msgid "View the top rated photos"
15438
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
15439
-
15440
- #: wppa-thumbnails.php:635
15441
- #, fuzzy
15442
- msgid "Comments:"
15443
- msgstr "%d kommentarer"
15444
-
15445
- #: wppa-thumbnails.php:966
15446
- #, php-format
15447
- msgid "Missing thumbnail image #%s"
15448
- msgstr ""
15449
-
15450
- #: wppa-tinymce-scripts.php:64 wppa-tinymce-shortcodes.php:59
15451
- msgid "No Preview available"
15452
- msgstr ""
15453
-
15454
- #: wppa-tinymce-scripts.php:80
15455
- #, fuzzy
15456
- msgid "Album Preview"
15457
- msgstr "Carica foto: per caricare le foto in un album che hai creato."
15458
-
15459
- #: wppa-tinymce-scripts.php:80
15460
- msgid "A maximum of 100 photos can be previewd"
15461
- msgstr ""
15462
-
15463
- #: wppa-tinymce-scripts.php:82
15464
- #, fuzzy
15465
- msgid "Photo Preview"
15466
- msgstr "Dagens foto"
15467
-
15468
- #: wppa-tinymce-scripts.php:87
15469
- msgid "Type of Gallery display:"
15470
- msgstr ""
15471
-
15472
- #: wppa-tinymce-scripts.php:90
15473
- msgid "The cover of an album"
15474
- msgstr ""
15475
-
15476
- #: wppa-tinymce-scripts.php:91
15477
- msgid "The sub-albums and/or thumbnails in an album"
15478
- msgstr ""
15479
-
15480
- #: wppa-tinymce-scripts.php:92
15481
- msgid "A slideshow of the photos in an album"
15482
- msgstr ""
15483
-
15484
- #: wppa-tinymce-scripts.php:93 wppa-tinymce-shortcodes.php:131
15485
- msgid "A slideshow without supporting boxes"
15486
- msgstr ""
15487
-
15488
- #: wppa-tinymce-scripts.php:94 wppa-tinymce-shortcodes.php:132
15489
- msgid "A slideshow with a filmstrip only"
15490
- msgstr ""
15491
-
15492
- #: wppa-tinymce-scripts.php:95
15493
- #, fuzzy
15494
- msgid "A single photo"
15495
- msgstr "Se fotos"
15496
-
15497
- #: wppa-tinymce-scripts.php:96 wppa-tinymce-shortcodes.php:145
15498
- msgid "A single photo with caption"
15499
- msgstr ""
15500
-
15501
- #: wppa-tinymce-scripts.php:97 wppa-tinymce-shortcodes.php:146
15502
- msgid "A single photo in the style of a slideshow"
15503
- msgstr ""
15504
-
15505
- #: wppa-tinymce-scripts.php:98 wppa-tinymce-shortcodes.php:173
15506
- msgid "A generic albums display"
15507
- msgstr ""
15508
-
15509
- #: wppa-tinymce-scripts.php:101
15510
- msgid "Specify the type of gallery"
15511
- msgstr ""
15512
-
15513
- #: wppa-tinymce-scripts.php:106
15514
- msgid "Explanation:"
15515
- msgstr ""
15516
-
15517
- #: wppa-tinymce-scripts.php:108
15518
- msgid "Use this gallerytype to display all the top-level album covers."
15519
- msgstr ""
15520
-
15521
- #: wppa-tinymce-scripts.php:113
15522
- msgid "The Album to be used:"
15523
- msgstr ""
15524
-
15525
- #: wppa-tinymce-scripts.php:124 wppa-upload.php:134 wppa-upload.php:222
15526
- #: wppa-upload.php:269
15527
- #, fuzzy
15528
- msgid "Please select an album"
15529
- msgstr ""
15530
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
15531
- "di ricerca differente."
15532
-
15533
- #: wppa-tinymce-scripts.php:148
15534
- #, fuzzy
15535
- msgid "- The latest created album -"
15536
- msgstr ""
15537
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
15538
- "di ricerca differente."
15539
-
15540
- #: wppa-tinymce-scripts.php:157
15541
- #, fuzzy
15542
- msgid "--- The top rated photos ---"
15543
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
15544
-
15545
- #: wppa-tinymce-scripts.php:166
15546
- #, fuzzy
15547
- msgid "--- The most recently uploaded photos ---"
15548
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
15549
-
15550
- #: wppa-tinymce-scripts.php:175
15551
- #, fuzzy
15552
- msgid "--- A random selection of featured photos ---"
15553
- msgstr "--- vises ikke ---"
15554
-
15555
- #: wppa-tinymce-scripts.php:192
15556
- #, fuzzy
15557
- msgid "--- The most recently commented photos ---"
15558
- msgstr "Nyligt kommenterede fotos"
15559
-
15560
- #: wppa-tinymce-scripts.php:195
15561
- msgid "--- Photos that have certain tags ---"
15562
- msgstr ""
15563
-
15564
- #: wppa-tinymce-scripts.php:204
15565
- msgid "--- All photos in the system ---"
15566
- msgstr ""
15567
-
15568
- #: wppa-tinymce-scripts.php:207 wppa-tinymce-shortcodes.php:244
15569
- #: wppa-tinymce-shortcodes.php:267 wppa-tinymce-shortcodes.php:312
15570
- #: wppa-tinymce-shortcodes.php:335 wppa-tinymce-shortcodes.php:474
15571
- msgid "There are no albums yet"
15572
- msgstr ""
15573
-
15574
- #: wppa-tinymce-scripts.php:215
15575
- msgid "Specify the album to be used or --- A special selection of photos ---"
15576
- msgstr ""
15577
-
15578
- #: wppa-tinymce-scripts.php:216
15579
- msgid ""
15580
- "In an upload box, the album is optional. When no album is specified: a "
15581
- "selection box will be displayed of the albums the user has the right to "
15582
- "upload."
15583
- msgstr ""
15584
-
15585
- #: wppa-tinymce-scripts.php:217
15586
- msgid "* Album contains less than the minimun number of photos"
15587
- msgstr ""
15588
-
15589
- #: wppa-tinymce-scripts.php:223 wppa-tinymce-shortcodes.php:373
15590
- msgid "The Photo to be used:"
15591
- msgstr ""
15592
-
15593
- #: wppa-tinymce-scripts.php:228 wppa-tinymce-shortcodes.php:379
15594
- #, fuzzy
15595
- msgid "Please select a photo"
15596
- msgstr "Skriv en kommentar"
15597
-
15598
- #: wppa-tinymce-scripts.php:239
15599
- #, fuzzy
15600
- msgid "--- The most recently uploaded photo ---"
15601
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
15602
-
15603
- #: wppa-tinymce-scripts.php:240
15604
- #, fuzzy
15605
- msgid "--- The photo of the day ---"
15606
- msgstr "Dagens foto"
15607
-
15608
- #: wppa-tinymce-scripts.php:243 wppa-tinymce-shortcodes.php:396
15609
- msgid "There are no photos yet"
15610
- msgstr ""
15611
-
15612
- #: wppa-tinymce-scripts.php:249 wppa-tinymce-shortcodes.php:402
15613
- msgid "Specify the photo to be used"
15614
- msgstr ""
15615
-
15616
- #: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:403
15617
- msgid "You can select from a maximum of 100 most recently added photos"
15618
- msgstr ""
15619
-
15620
- #: wppa-tinymce-scripts.php:256 wppa-tinymce-shortcodes.php:417
15621
- #, fuzzy
15622
- msgid "The tags the photos should have:"
15623
- msgstr "Unders&oslash;g de tag(s) som dine fotos har"
15624
-
15625
- #: wppa-tinymce-scripts.php:259 wppa-tinymce-shortcodes.php:420
15626
- #, fuzzy
15627
- msgid "--- please select tag(s) ---"
15628
- msgstr "--- vises ikke ---"
15629
-
15630
- #: wppa-tinymce-scripts.php:267
15631
- msgid ""
15632
- "If you want that the photos have all the selected tags, check this box. "
15633
- "Leave it unchecked if the photo must have atleast only one of the selected "
15634
- "tags"
15635
- msgstr ""
15636
-
15637
- #: wppa-tinymce-scripts.php:272 wppa-tinymce-shortcodes.php:497
15638
- #, fuzzy
15639
- msgid "The size of the display:"
15640
- msgstr "Dagens foto"
15641
-
15642
- #: wppa-tinymce-scripts.php:277 wppa-tinymce-shortcodes.php:502
15643
- msgid ""
15644
- "Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
15645
- "span>."
15646
- msgstr ""
15647
-
15648
- #: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:503
15649
- msgid ""
15650
- "A value less than <span style=\"color:blue\" >100</span> will automaticly be "
15651
- "interpreted as a <span style=\"color:blue\" >percentage</span> of the "
15652
- "available space."
15653
- msgstr ""
15654
-
15655
- #: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:504
15656
- msgid "Leave this blank for default size"
15657
- msgstr ""
15658
-
15659
- #: wppa-tinymce-scripts.php:284 wppa-tinymce-shortcodes.php:510
15660
- #: wppa-widget-admin.php:72
15661
- msgid "Horizontal alignment:"
15662
- msgstr ""
15663
-
15664
- #: wppa-tinymce-scripts.php:293 wppa-tinymce-shortcodes.php:519
15665
- msgid "Specify the alignment to be used or --- none ---"
15666
- msgstr ""
15667
-
15668
- #: wppa-tinymce-scripts.php:299 wppa-tinymce-shortcodes.php:529
15669
- msgid "Insert Gallery"
15670
- msgstr ""
15671
-
15672
- #: wppa-tinymce-shortcodes.php:97
15673
- msgid "Type of WPPA display:"
15674
- msgstr ""
15675
-
15676
- #: wppa-tinymce-shortcodes.php:100
15677
- #, fuzzy
15678
- msgid "Please select a display type"
15679
- msgstr ""
15680
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
15681
- "di ricerca differente."
15682
-
15683
- #: wppa-tinymce-shortcodes.php:101
15684
- msgid "A gallery with covers and/or thumbnails"
15685
- msgstr ""
15686
-
15687
- #: wppa-tinymce-shortcodes.php:102
15688
- #, fuzzy
15689
- msgid "A slideshow"
15690
- msgstr "Slideshow"
15691
-
15692
- #: wppa-tinymce-shortcodes.php:103
15693
- msgid "A single image"
15694
- msgstr ""
15695
-
15696
- #: wppa-tinymce-shortcodes.php:104
15697
- #, fuzzy
15698
- msgid "A search/selection box"
15699
- msgstr "--- vises ikke ---"
15700
-
15701
- #: wppa-tinymce-shortcodes.php:105
15702
- msgid "An other box type"
15703
- msgstr ""
15704
-
15705
- #: wppa-tinymce-shortcodes.php:112
15706
- msgid "Type of gallery display:"
15707
- msgstr ""
15708
-
15709
- #: wppa-tinymce-shortcodes.php:115
15710
- #, fuzzy
15711
- msgid "Please select a gallery type"
15712
- msgstr ""
15713
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
15714
- "di ricerca differente."
15715
-
15716
- #: wppa-tinymce-shortcodes.php:116
15717
- msgid "The cover(s) of specific album(s)"
15718
- msgstr ""
15719
-
15720
- #: wppa-tinymce-shortcodes.php:117
15721
- msgid "The content of specific album(s)"
15722
- msgstr ""
15723
-
15724
- #: wppa-tinymce-shortcodes.php:118
15725
- msgid "The covers of the subalbums of specific album(s)"
15726
- msgstr ""
15727
-
15728
- #: wppa-tinymce-shortcodes.php:119
15729
- msgid "The thumbnails of specific album(s)"
15730
- msgstr ""
15731
-
15732
- #: wppa-tinymce-shortcodes.php:126
15733
- msgid "Type of slideshow:"
15734
- msgstr ""
15735
-
15736
- #: wppa-tinymce-shortcodes.php:129
15737
- #, fuzzy
15738
- msgid "Please select a slideshow type"
15739
- msgstr ""
15740
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
15741
- "di ricerca differente."
15742
-
15743
- #: wppa-tinymce-shortcodes.php:130
15744
- msgid "A fully featured slideshow"
15745
- msgstr ""
15746
-
15747
- #: wppa-tinymce-shortcodes.php:133
15748
- msgid "A filmstrip only"
15749
- msgstr ""
15750
-
15751
- #: wppa-tinymce-shortcodes.php:140
15752
- msgid "Type of single image:"
15753
- msgstr ""
15754
-
15755
- #: wppa-tinymce-shortcodes.php:143
15756
- #, fuzzy
15757
- msgid "Please select a single image type"
15758
- msgstr ""
15759
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
15760
- "di ricerca differente."
15761
-
15762
- #: wppa-tinymce-shortcodes.php:144
15763
- #, fuzzy
15764
- msgid "A plain single photo"
15765
- msgstr "Se fotos"
15766
-
15767
- #: wppa-tinymce-shortcodes.php:153
15768
- msgid "Type of search:"
15769
- msgstr ""
15770
-
15771
- #: wppa-tinymce-shortcodes.php:156
15772
- #, fuzzy
15773
- msgid "Please select a search type"
15774
- msgstr ""
15775
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
15776
- "di ricerca differente."
15777
-
15778
- #: wppa-tinymce-shortcodes.php:157
15779
- msgid "A search box"
15780
- msgstr ""
15781
-
15782
- #: wppa-tinymce-shortcodes.php:158
15783
- msgid "A supersearch box"
15784
- msgstr ""
15785
-
15786
- #: wppa-tinymce-shortcodes.php:159
15787
- msgid "A tagcloud box"
15788
- msgstr ""
15789
-
15790
- #: wppa-tinymce-shortcodes.php:160
15791
- msgid "A multitag box"
15792
- msgstr ""
15793
-
15794
- #: wppa-tinymce-shortcodes.php:161
15795
- msgid "A superview box"
15796
- msgstr ""
15797
-
15798
- #: wppa-tinymce-shortcodes.php:162
15799
- msgid "A calendar box"
15800
- msgstr ""
15801
-
15802
- #: wppa-tinymce-shortcodes.php:169
15803
- msgid "Type miscellaneous:"
15804
- msgstr ""
15805
-
15806
- #: wppa-tinymce-shortcodes.php:172
15807
- msgid "Please select a miscellaneous display"
15808
- msgstr ""
15809
-
15810
- #: wppa-tinymce-shortcodes.php:174
15811
- msgid "An upload box"
15812
- msgstr ""
15813
-
15814
- #: wppa-tinymce-shortcodes.php:175
15815
- msgid "A landing page shortcode"
15816
- msgstr ""
15817
-
15818
- #: wppa-tinymce-shortcodes.php:176
15819
- #, fuzzy
15820
- msgid "A 3D stereo settings box"
15821
- msgstr "--- vises ikke ---"
15822
-
15823
- #: wppa-tinymce-shortcodes.php:183
15824
- msgid "Kind of selection:"
15825
- msgstr ""
15826
-
15827
- #: wppa-tinymce-shortcodes.php:186
15828
- msgid "Please select a type of selection to be used"
15829
- msgstr ""
15830
-
15831
- #: wppa-tinymce-shortcodes.php:187
15832
- msgid "One or more wppa+ albums"
15833
- msgstr ""
15834
-
15835
- #: wppa-tinymce-shortcodes.php:188
15836
- msgid "A special selection"
15837
- msgstr ""
15838
-
15839
- #: wppa-tinymce-shortcodes.php:195 wppa-tinymce-shortcodes.php:215
15840
- msgid "The selection to be used:"
15841
- msgstr ""
15842
-
15843
- #: wppa-tinymce-shortcodes.php:198 wppa-tinymce-shortcodes.php:218
15844
- #, fuzzy
15845
- msgid "Please select a virtual album"
15846
- msgstr ""
15847
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
15848
- "di ricerca differente."
15849
-
15850
- #: wppa-tinymce-shortcodes.php:199 wppa-tinymce-shortcodes.php:219
15851
- #, fuzzy
15852
- msgid "The most recently modified album"
15853
- msgstr "Le impostazioni sono state aggiornate"
15854
-
15855
- #: wppa-tinymce-shortcodes.php:200
15856
- #, fuzzy
15857
- msgid "The top rated photos"
15858
- msgstr "Top fotos"
15859
-
15860
- #: wppa-tinymce-shortcodes.php:201
15861
- #, fuzzy
15862
- msgid "The most recently uploaded photos"
15863
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
15864
-
15865
- #: wppa-tinymce-shortcodes.php:202
15866
- msgid "A random selection of featured photos"
15867
- msgstr ""
15868
-
15869
- #: wppa-tinymce-shortcodes.php:203
15870
- #, fuzzy
15871
- msgid "The most recently commented photos"
15872
- msgstr "Nyligt kommenterede fotos"
15873
-
15874
- #: wppa-tinymce-shortcodes.php:204
15875
- msgid "Photos that have certain tags"
15876
- msgstr ""
15877
-
15878
- #: wppa-tinymce-shortcodes.php:205 wppa-tinymce-shortcodes.php:221
15879
- msgid "Albums tagged with a certain category"
15880
- msgstr ""
15881
-
15882
- #: wppa-tinymce-shortcodes.php:206
15883
- msgid "Photos in albums owned by a certain user"
15884
- msgstr ""
15885
-
15886
- #: wppa-tinymce-shortcodes.php:207
15887
- #, fuzzy
15888
- msgid "Photos uploaded by a certain user"
15889
- msgstr "Foto caricate nell'album numero"
15890
-
15891
- #: wppa-tinymce-shortcodes.php:208
15892
- msgid "All photos in the system"
15893
- msgstr ""
15894
-
15895
- #: wppa-tinymce-shortcodes.php:220
15896
- msgid "Albums owned by a certain user"
15897
- msgstr ""
15898
-
15899
- #: wppa-tinymce-shortcodes.php:222
15900
- msgid "All albums in the system"
15901
- msgstr ""
15902
-
15903
- #: wppa-tinymce-shortcodes.php:229 wppa-tinymce-shortcodes.php:252
15904
- msgid "The Album(s) to be used:"
15905
- msgstr ""
15906
-
15907
- #: wppa-tinymce-shortcodes.php:235
15908
- #, fuzzy
15909
- msgid "Please select one or more albums"
15910
- msgstr "Skriv dit navn"
15911
-
15912
- #: wppa-tinymce-shortcodes.php:258 wppa-upldr-widget.php:209 wppa-utils.php:412
15913
- msgid "All albums"
15914
- msgstr "album"
15915
-
15916
- #: wppa-tinymce-shortcodes.php:275
15917
- #, fuzzy
15918
- msgid "The album owner:"
15919
- msgstr ""
15920
- "Inserisci nome, colore, dimensione e peso per il font che sarà utilizzato "
15921
- "per i titoli delle copertine degli album."
15922
-
15923
- #: wppa-tinymce-shortcodes.php:278
15924
- #, fuzzy
15925
- msgid "Please select a user"
15926
- msgstr ""
15927
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
15928
- "di ricerca differente."
15929
-
15930
- #: wppa-tinymce-shortcodes.php:279
15931
- msgid "The logged in visitor"
15932
- msgstr ""
15933
-
15934
- #: wppa-tinymce-shortcodes.php:285
15935
- msgid "Too many users, edit manually"
15936
- msgstr ""
15937
-
15938
- #: wppa-tinymce-shortcodes.php:300
15939
- msgid "No parent specification"
15940
- msgstr ""
15941
-
15942
- #: wppa-tinymce-shortcodes.php:303 wppa-tinymce-shortcodes.php:326
15943
- #: wppa-tinymce-shortcodes.php:465
15944
- msgid "The generic parent"
15945
- msgstr ""
15946
-
15947
- #: wppa-tinymce-shortcodes.php:343
15948
- #, fuzzy
15949
- msgid "Max Albums:"
15950
- msgstr "album"
15951
-
15952
- #: wppa-tinymce-shortcodes.php:351
15953
- #, fuzzy
15954
- msgid "Max Photos:"
15955
- msgstr "Foto"
15956
-
15957
- #: wppa-tinymce-shortcodes.php:359
15958
- msgid "The cat the albums should have:"
15959
- msgstr ""
15960
-
15961
- #: wppa-tinymce-shortcodes.php:362
15962
- #, fuzzy
15963
- msgid "--- please select category ---"
15964
- msgstr "--- vises ikke ---"
15965
-
15966
- #: wppa-tinymce-shortcodes.php:392
15967
- #, fuzzy
15968
- msgid "The most recently uploaded photo"
15969
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
15970
-
15971
- #: wppa-tinymce-shortcodes.php:393
15972
- #, fuzzy
15973
- msgid "The photo of the day"
15974
- msgstr "Dagens foto"
15975
-
15976
- #: wppa-tinymce-shortcodes.php:410
15977
- msgid "Preview image:"
15978
- msgstr ""
15979
-
15980
- #: wppa-tinymce-shortcodes.php:431 wppa-tinymce-shortcodes.php:440
15981
- msgid "Additional features:"
15982
- msgstr ""
15983
-
15984
- #: wppa-tinymce-shortcodes.php:433
15985
- msgid "Enable Subsearch"
15986
- msgstr ""
15987
-
15988
- #: wppa-tinymce-shortcodes.php:434
15989
- msgid "Enable Rootsearch"
15990
- msgstr ""
15991
-
15992
- #: wppa-tinymce-shortcodes.php:442
15993
- msgid "Enable all tags"
15994
- msgstr ""
15995
-
15996
- #: wppa-tinymce-shortcodes.php:445
15997
- #, fuzzy
15998
- msgid "Please select the tags to show"
15999
- msgstr "Unders&oslash;g de tag(s) som dine fotos har"
16000
-
16001
- #: wppa-tinymce-shortcodes.php:451
16002
- #, fuzzy
16003
- msgid "There are no tags"
16004
- msgstr "Der er"
16005
-
16006
- #: wppa-tinymce-shortcodes.php:482
16007
- msgid "Calendar type:"
16008
- msgstr ""
16009
-
16010
- #: wppa-tinymce-shortcodes.php:485
16011
- #, fuzzy
16012
- msgid "By EXIF date"
16013
- msgstr "Ingen EXIF data"
16014
-
16015
- #: wppa-tinymce-shortcodes.php:486
16016
- #, fuzzy
16017
- msgid "By date of upload"
16018
- msgstr "Foto caricate nell'album numero"
16019
-
16020
- #: wppa-tinymce-shortcodes.php:487
16021
- msgid "By date last modified"
16022
- msgstr ""
16023
-
16024
- #: wppa-tinymce-shortcodes.php:490
16025
- msgid "Last date first"
16026
- msgstr ""
16027
-
16028
- #: wppa-tinymce-shortcodes.php:491
16029
- msgid "Initially display all"
16030
- msgstr ""
16031
-
16032
- #: wppa-tinymce-shortcodes.php:527
16033
- msgid ""
16034
- "This is a preview of the shortcode that is being generated. You may edit the "
16035
- "comment"
16036
- msgstr ""
16037
-
16038
- #: wppa-tinymce-shortcodes.php:530
16039
- msgid "insert Gallery"
16040
- msgstr ""
16041
-
16042
- #: wppa-tinymce-shortcodes.php:530
16043
- msgid "Please complete the shortcode specs"
16044
- msgstr ""
16045
-
16046
- #: wppa-topten-widget.php:12
16047
- #, fuzzy
16048
- msgid "WPPA+ Top Ten Rated Photos"
16049
- msgstr "Foto Top Ti"
16050
-
16051
- #: wppa-topten-widget.php:48
16052
- #, fuzzy
16053
- msgid "Top Ten Photo album"
16054
- msgstr "Foto Top Ti"
16055
-
16056
- #: wppa-topten-widget.php:136 wppa-topten-widget.php:140
16057
- #: wppa-topten-widget.php:147
16058
- #, fuzzy, php-format
16059
- msgid "%s Votes"
16060
- msgstr "Gli utenti possono esprimere più voti."
16061
-
16062
- #: wppa-topten-widget.php:137 wppa-topten-widget.php:142
16063
- #: wppa-topten-widget.php:145
16064
- #, fuzzy, php-format
16065
- msgid "Views: %s times"
16066
- msgstr "Visite: %s"
16067
-
16068
- #: wppa-topten-widget.php:238
16069
- msgid "Number of views"
16070
- msgstr ""
16071
-
16072
- #: wppa-topten-widget.php:242
16073
- msgid "Include sub albums:"
16074
- msgstr ""
16075
-
16076
- #: wppa-topten-widget.php:250
16077
- msgid "Show owner:"
16078
- msgstr ""
16079
-
16080
- #: wppa-topten-widget.php:255
16081
- #, fuzzy
16082
- msgid "Show album:"
16083
- msgstr ""
16084
- "Questa impostazione farà sì che cliccando sulla immagine con il tasto destro "
16085
- "non permetterà all'utente di scaricare l'immagine."
16086
-
16087
- #: wppa-topten-widget.php:270
16088
- msgid "View count:"
16089
- msgstr ""
16090
-
16091
- #: wppa-upldr-widget.php:14
16092
- #, fuzzy
16093
- msgid "WPPA+ Uploader Photos"
16094
- msgstr "Indsend foto"
16095
-
16096
- #: wppa-upldr-widget.php:15
16097
- #, fuzzy
16098
- msgid "Uploader Photos"
16099
- msgstr "Indsend foto"
16100
-
16101
- #: wppa-upldr-widget.php:42
16102
- #, fuzzy
16103
- msgid "User uploaded photos"
16104
- msgstr "Bruger %s indsendte foto %s ind i album %s"
16105
-
16106
- #: wppa-upldr-widget.php:90
16107
- msgid "There are too many registered users in the system for this widget"
16108
- msgstr ""
16109
-
16110
- #: wppa-upldr-widget.php:124 wppa-upldr-widget.php:131
16111
- #, fuzzy
16112
- msgid "Photos uploaded by"
16113
- msgstr "Foto caricate nell'album numero"
16114
-
16115
- #: wppa-upldr-widget.php:167
16116
- #, fuzzy
16117
- msgid "User Photos"
16118
- msgstr "Foto"
16119
-
16120
- #: wppa-upldr-widget.php:182
16121
- #, fuzzy
16122
- msgid "Number of photos"
16123
- msgstr "Miniatura"
16124
-
16125
- #: wppa-upldr-widget.php:183
16126
- #, fuzzy
16127
- msgid "Most recent photo"
16128
- msgstr "Se fotos"
16129
-
16130
- #: wppa-upldr-widget.php:187
16131
- msgid "Ignore:"
16132
- msgstr ""
16133
-
16134
- #: wppa-upldr-widget.php:189
16135
- msgid "Enter loginnames seperated by commas"
16136
- msgstr ""
16137
-
16138
- #: wppa-upldr-widget.php:192
16139
- msgid "Look only in albums (including sub-albums):"
16140
- msgstr ""
16141
-
16142
- #: wppa-upload-widget.php:15
16143
- #, fuzzy
16144
- msgid "WPPA+ Upload photos widget"
16145
- msgstr "Indsend foto"
16146
-
16147
- #: wppa-upload-widget.php:16
16148
- #, fuzzy
16149
- msgid "WPPA+ Upload"
16150
- msgstr "Indsend"
16151
-
16152
- #: wppa-upload.php:37 wppa-upload.php:52
16153
- msgid "Connecting to edit album..."
16154
- msgstr ""
16155
-
16156
- #: wppa-upload.php:41 wppa-upload.php:56
16157
- msgid "Connecting to edit photos..."
16158
- msgstr ""
16159
-
16160
- #: wppa-upload.php:66
16161
- msgid "Connecting to your depot..."
16162
- msgstr ""
16163
-
16164
- #: wppa-upload.php:111
16165
- #, fuzzy
16166
- msgid "Upload a single photo"
16167
- msgstr "Indsend foto"
16168
-
16169
- #: wppa-upload.php:141
16170
- #, php-format
16171
- msgid ""
16172
- "<b>Notice:</b> your server allows you to upload <b>%s</b> files of maximum "
16173
- "total <b>%s</b> bytes and allows <b>%s</b> seconds to complete."
16174
- msgstr ""
16175
-
16176
- #: wppa-upload.php:142
16177
- msgid ""
16178
- "If your request exceeds these limitations, it will fail, probably without an "
16179
- "errormessage."
16180
- msgstr ""
16181
-
16182
- #: wppa-upload.php:143
16183
- msgid ""
16184
- "Additionally your hosting provider may have set other limitations on "
16185
- "uploading files."
16186
- msgstr ""
16187
-
16188
- #: wppa-upload.php:148
16189
- msgid "Box A:"
16190
- msgstr ""
16191
-
16192
- #: wppa-upload.php:148
16193
- msgid "Multiple Photos in one selection"
16194
- msgstr ""
16195
-
16196
- #: wppa-upload.php:149
16197
- #, php-format
16198
- msgid "You can select up to %s photos in one selection and upload them."
16199
- msgstr ""
16200
-
16201
- #: wppa-upload.php:150
16202
- #, fuzzy
16203
- msgid "You need a modern browser that supports HTML-5 to select multiple files"
16204
- msgstr ""
16205
- "Du m&aring; indsende op til %s fotos med det samme, hvis din fremviser "
16206
- "underst&oslash;tter HTML-5 multi fil indsendelse"
16207
-
16208
- #: wppa-upload.php:155 wppa-upload.php:164 wppa-upload.php:247
16209
- msgid "Selected Files:"
16210
- msgstr ""
16211
-
16212
- #: wppa-upload.php:166
16213
- msgid "Size"
16214
- msgstr ""
16215
-
16216
- #: wppa-upload.php:166
16217
- msgid "Type"
16218
- msgstr ""
16219
-
16220
- #: wppa-upload.php:187
16221
- msgid "Too many!"
16222
- msgstr ""
16223
-
16224
- #: wppa-upload.php:191
16225
- msgid "Too big!"
16226
- msgstr ""
16227
-
16228
- #: wppa-upload.php:195
16229
- msgid "Try again!"
16230
- msgstr ""
16231
-
16232
- #: wppa-upload.php:197
16233
- msgid "Total"
16234
- msgstr ""
16235
-
16236
- #: wppa-upload.php:222
16237
- #, fuzzy
16238
- msgid "Upload Multiple Photos"
16239
- msgstr "Indsend foto"
16240
-
16241
- #: wppa-upload.php:229 wppa-upload.php:276
16242
- msgid "After upload: Go to the <b>Edit Album</b> page."
16243
- msgstr ""
16244
-
16245
- #: wppa-upload.php:232 wppa-upload.php:279
16246
- msgid "After upload: Go to the <b>Edit Photos</b> page."
16247
- msgstr ""
16248
-
16249
- #: wppa-upload.php:241
16250
- msgid "Box B:"
16251
- msgstr ""
16252
-
16253
- #: wppa-upload.php:241
16254
- msgid "Single Photos in multiple selections"
16255
- msgstr ""
16256
-
16257
- #: wppa-upload.php:242
16258
- #, php-format
16259
- msgid "You can select up to %s photos one by one and upload them at once."
16260
- msgstr ""
16261
-
16262
- #: wppa-upload.php:269
16263
- #, fuzzy
16264
- msgid "Upload Single Photos"
16265
- msgstr "Indsend foto"
16266
-
16267
- #: wppa-upload.php:296
16268
- msgid "Box C:"
16269
- msgstr ""
16270
-
16271
- #: wppa-upload.php:296
16272
- msgid "Zipped Photos in one selection"
16273
- msgstr ""
16274
-
16275
- #: wppa-upload.php:297
16276
- #, php-format
16277
- msgid ""
16278
- "You can upload one zipfile. It will be placed in your personal wppa-depot: "
16279
- "<b>.../%s</b><br/>Once uploaded, use <b>Import Photos</b> to unzip the file "
16280
- "and place the photos in any album."
16281
- msgstr ""
16282
-
16283
- #: wppa-upload.php:301
16284
- #, fuzzy
16285
- msgid "Upload Zipped Photos"
16286
- msgstr "Indsend foto"
16287
-
16288
- #: wppa-upload.php:306
16289
- msgid "After upload: Go to the <b>Import Photos</b> page."
16290
- msgstr ""
16291
-
16292
- #: wppa-upload.php:312
16293
- msgid ""
16294
- "<small>Ask your administrator to upgrade php to version 5.2.7 or later. This "
16295
- "will enable you to upload zipped photos.</small>"
16296
- msgstr ""
16297
-
16298
- #: wppa-upload.php:320 wppa-upload.php:1191
16299
- msgid "No albums exist. You must"
16300
- msgstr ""
16301
-
16302
- #: wppa-upload.php:320 wppa-upload.php:1191
16303
- msgid "create one"
16304
- msgstr ""
16305
-
16306
- #: wppa-upload.php:320 wppa-upload.php:1191
16307
- #, fuzzy
16308
- msgid "beofre you can upload your photos."
16309
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
16310
-
16311
- #: wppa-upload.php:437
16312
- msgid "Done!"
16313
- msgstr ""
16314
-
16315
- #: wppa-upload.php:443
16316
- msgid "Failed!"
16317
- msgstr ""
16318
-
16319
- #: wppa-upload.php:527
16320
- msgid "Select Local or Remote"
16321
- msgstr ""
16322
-
16323
- #: wppa-upload.php:531
16324
- msgid "Local"
16325
- msgstr ""
16326
-
16327
- #: wppa-upload.php:532
16328
- msgid "Remote"
16329
- msgstr ""
16330
-
16331
- #: wppa-upload.php:535
16332
- msgid "Set Local/Remote"
16333
- msgstr ""
16334
-
16335
- #: wppa-upload.php:538
16336
- msgid ""
16337
- "The server does not allow you to import from remote locations. ( The php "
16338
- "directive allow_url_fopen is not set to 1 )"
16339
- msgstr ""
16340
-
16341
- #: wppa-upload.php:540
16342
- msgid ""
16343
- "The server does not allow you to import from remote locations. ( The curl "
16344
- "functions are not set up )"
16345
- msgstr ""
16346
-
16347
- #: wppa-upload.php:545
16348
- #, fuzzy
16349
- msgid "Import photos from:"
16350
- msgstr "Importer foto"
16351
 
16352
- #: wppa-upload.php:550
16353
- msgid "Set source directory"
16354
- msgstr ""
16355
 
16356
- #: wppa-upload.php:553
16357
- msgid "Max:"
16358
- msgstr ""
16359
 
16360
- #: wppa-upload.php:555
16361
- #, fuzzy
16362
- msgid "Find remote photos"
16363
- msgstr "Top fotos"
16364
 
16365
- #: wppa-upload.php:556
16366
- msgid "Working, please wait..."
16367
- msgstr ""
16368
 
16369
- #: wppa-upload.php:557
16370
- msgid ""
16371
- "<br />You can enter either a web page address like <i>http://mysite.com/"
16372
- "mypage/</i> or a full url to an image file like <i>http://mysite.com/wp-"
16373
- "content/uploads/wppa/4711.jpg</i>"
16374
- msgstr ""
16375
 
16376
- #: wppa-upload.php:577
16377
- msgid "zipfiles in the depot."
16378
- msgstr ""
16379
 
16380
- #: wppa-upload.php:583 wppa-upload.php:630 wppa-upload.php:708
16381
- #: wppa-upload.php:824 wppa-upload.php:881 wppa-upload.php:927
16382
- #: wppa-upload.php:972
16383
- msgid "Check/uncheck all"
16384
- msgstr ""
16385
 
16386
- #: wppa-upload.php:587
16387
- msgid "Delete after successful extraction."
16388
- msgstr ""
16389
 
16390
- #: wppa-upload.php:624
16391
- msgid "albumdefinitions in the depot."
16392
- msgstr ""
16393
 
16394
- #: wppa-upload.php:634
16395
- msgid ""
16396
- "Remove from depot after successful import, or if the album already exists."
16397
- msgstr ""
16398
 
16399
- #: wppa-upload.php:673
16400
- msgid "photos in the ngg gallery."
16401
- msgstr ""
16402
 
16403
- #: wppa-upload.php:675
16404
- #, fuzzy
16405
- msgid "photos in the depot."
16406
- msgstr "Dagens foto"
16407
 
16408
- #: wppa-upload.php:677
16409
- #, fuzzy
16410
- msgid "possible photos found remote."
16411
- msgstr ""
16412
- "Ingen album eller fotos fundet der svarer til dine s&oslash;ge kriterier."
16413
 
16414
- #: wppa-upload.php:678
16415
- msgid "Photos will be downsized during import."
16416
- msgstr ""
16417
 
16418
- #: wppa-upload.php:681
16419
- #, fuzzy
16420
- msgid "Default album for import:"
16421
- msgstr "Standard foto album for"
16422
 
16423
- #: wppa-upload.php:690
16424
- msgid ""
16425
- "Photos that have (<em>name</em>)[<em>album</em>] will be imported by that "
16426
- "<em>name</em> in that <em>album</em>."
16427
- msgstr ""
16428
 
16429
- #: wppa-upload.php:712 wppa-upload.php:828 wppa-upload.php:885
16430
- #: wppa-upload.php:975
16431
- msgid "Remove from depot after successful import."
16432
- msgstr ""
16433
 
16434
- #: wppa-upload.php:717
16435
- #, php-format
16436
- msgid "Import into album <i>%s</i>."
16437
- msgstr ""
16438
 
16439
- #: wppa-upload.php:718
16440
- msgid "The album will be created if it does not exist"
16441
- msgstr ""
16442
 
16443
- #: wppa-upload.php:721
16444
- msgid "Use backup if available"
16445
- msgstr ""
16446
 
16447
- #: wppa-upload.php:725
16448
- #, fuzzy
16449
- msgid "Update existing photos"
16450
- msgstr "Se fotos"
16451
 
16452
- #: wppa-upload.php:731
16453
- #, fuzzy
16454
- msgid "Do not create duplicates"
16455
- msgstr "Impossibile creare album. "
16456
 
16457
- #: wppa-upload.php:737
16458
- #, fuzzy
16459
- msgid "Zoom previews"
16460
- msgstr "Zoom ind"
16461
 
16462
- #: wppa-upload.php:807
16463
- msgid "videos in the depot."
16464
- msgstr ""
16465
 
16466
- #: wppa-upload.php:810 wppa-upload.php:867
16467
- msgid "Album to import to:"
16468
- msgstr ""
16469
 
16470
- #: wppa-upload.php:864
16471
- msgid "audios in the depot."
16472
- msgstr ""
16473
 
16474
- #: wppa-upload.php:921
16475
- msgid "albumdirectories in the depot."
16476
- msgstr ""
16477
 
16478
- #: wppa-upload.php:966
16479
- msgid "csv files in the depot."
16480
- msgstr ""
16481
 
16482
- #: wppa-upload.php:1136
16483
- msgid "Start Ajax Import"
16484
- msgstr ""
16485
 
16486
- #: wppa-upload.php:1137
16487
- msgid "Stop Ajax Import"
16488
- msgstr ""
16489
 
16490
- #: wppa-upload.php:1145
16491
- msgid "There are no importable files found in directory:"
16492
- msgstr ""
16493
 
16494
- #: wppa-upload.php:1148
16495
- msgid "There are no photos found or left to process at url:"
16496
- msgstr ""
16497
 
16498
- #: wppa-upload.php:1152
16499
- msgid "You can import the following file types:"
16500
  msgstr ""
 
 
16501
 
16502
- #: wppa-upload.php:1156
16503
- msgid "Compressed file types: .zip"
16504
  msgstr ""
 
16505
 
16506
- #: wppa-upload.php:1160
16507
- #, fuzzy
16508
- msgid "Photo file types:"
16509
- msgstr "Dagens foto"
16510
 
16511
- #: wppa-upload.php:1167
16512
- msgid "Video file types:"
 
 
 
16513
  msgstr ""
 
 
16514
 
16515
- #: wppa-upload.php:1174
16516
- msgid "Audio file types:"
16517
- msgstr ""
16518
 
16519
- #: wppa-upload.php:1180
16520
- msgid "WPPA+ file types: .amf .pmf"
16521
- msgstr ""
16522
 
16523
- #: wppa-upload.php:1182
16524
- msgid "Directories with optional subdirs containig photos"
16525
- msgstr ""
 
 
 
16526
 
16527
- #: wppa-upload.php:1184
16528
- msgid "Custom data files of type .csv"
16529
- msgstr ""
16530
 
16531
- #: wppa-upload.php:1186
16532
- msgid "Your depot directory is:"
16533
- msgstr ""
16534
 
16535
- #: wppa-upload.php:1194
16536
- msgid "Trying to continue..."
16537
- msgstr ""
16538
 
16539
- #: wppa-upload.php:1346
16540
- #, fuzzy, php-format
16541
- msgid "Time out. %s photos uploaded in album nr %s."
16542
- msgstr "Bruger %s indsendte foto %s ind i album %s"
16543
 
16544
- #: wppa-upload.php:1358 wppa-upload.php:1391 wppa-upload.php:1737
16545
- #, fuzzy
16546
- msgid "Error inserting photo"
16547
- msgstr "Fejl under upload"
16548
 
16549
- #: wppa-upload.php:1367 wppa-upload.php:1398
16550
- #, fuzzy
16551
- msgid "Photos Uploaded in album nr"
16552
- msgstr "Foto caricate nell'album numero"
16553
 
16554
- #: wppa-upload.php:1439
16555
- msgid "Zipfile"
16556
- msgstr ""
16557
 
16558
- #: wppa-upload.php:1439
16559
- #, fuzzy
16560
- msgid "sucessfully uploaded."
16561
- msgstr "Indsendelse af foto var en success."
16562
 
16563
- #: wppa-upload.php:1440
16564
- #, fuzzy
16565
- msgid "during upload."
16566
- msgstr "Fejl under upload"
16567
 
16568
- #: wppa-upload.php:1524
16569
- #, fuzzy
16570
- msgid "Unknown parent album:"
 
 
 
16571
  msgstr ""
16572
- "Non hai i permessi per potere aggiornare le informazioni di questo album"
16573
 
16574
- #: wppa-upload.php:1524
16575
- #, fuzzy
16576
- msgid "--- none --- used."
16577
- msgstr "--- ingen ---"
16578
 
16579
- #: wppa-upload.php:1584
16580
- #, php-format
16581
- msgid "This album has been converted from ngg gallery %s"
16582
- msgstr ""
16583
 
16584
- #: wppa-upload.php:1602
16585
- msgid "Processing files, please wait..."
16586
  msgstr ""
 
16587
 
16588
- #: wppa-upload.php:1602
 
 
 
 
16589
  msgid ""
16590
- "If the line of dots stops growing or your browser reports Ready, your server "
16591
- "has given up. In that case: try again"
16592
  msgstr ""
 
 
16593
 
16594
- #: wppa-upload.php:1602
16595
- msgid "here."
16596
- msgstr ""
16597
 
16598
- #: wppa-upload.php:1720
16599
- #, fuzzy, php-format
16600
- msgid "Photo %s already exists in album %s. (1)"
16601
- msgstr "Il file %s che hai caricato non è un file .png"
16602
 
16603
- #: wppa-upload.php:1721
16604
- msgid "Duplicate"
16605
- msgstr ""
16606
 
16607
- #: wppa-upload.php:1742
16608
- #, php-format
16609
- msgid "Error inserting photo %s, unknown or non existent album."
16610
- msgstr ""
16611
 
16612
- #: wppa-upload.php:1750
16613
- #, php-format
16614
- msgid "Time out. %s photos imported. Please restart this operation."
16615
- msgstr ""
16616
 
16617
- #: wppa-upload.php:1784 wppa-upload.php:1845
16618
- #, fuzzy
16619
- msgid "Unknown album"
16620
- msgstr ""
16621
- "Questa impostazione farà sì che cliccando sulla immagine con il tasto destro "
16622
- "non permetterà all'utente di scaricare l'immagine."
16623
 
16624
- #: wppa-upload.php:1835
16625
- #, php-format
16626
- msgid "Error inserting video %s, unknown or non existent album."
16627
- msgstr ""
16628
 
16629
- #: wppa-upload.php:1896
16630
  #, php-format
16631
- msgid "Error inserting audio %s, unknown or non existent album."
16632
- msgstr ""
16633
-
16634
- #: wppa-upload.php:1912
16635
- msgid "Custom datafields enabled"
16636
- msgstr ""
16637
 
16638
- #: wppa-upload.php:1943 wppa-upload.php:1944
16639
- msgid "Processing"
16640
- msgstr ""
16641
 
16642
- #: wppa-upload.php:1953
16643
- msgid "Can not open file. Can not continue. (1)"
16644
- msgstr ""
16645
 
16646
- #: wppa-upload.php:1958
16647
- msgid "Can not open file. Can not continue. (2)"
16648
- msgstr ""
16649
 
16650
- #: wppa-upload.php:1965
16651
- msgid "Can not read header. Can not continue."
16652
- msgstr ""
 
 
 
16653
 
16654
- #: wppa-upload.php:1970
16655
- msgid "Read header:"
16656
- msgstr ""
 
16657
 
16658
- #: wppa-upload.php:1975
16659
- msgid "Invalid header. Can not continue."
16660
- msgstr ""
16661
 
16662
- #: wppa-upload.php:1982
16663
- msgid "Invalid header. First item must be 'name', 'photoname' or 'filename'"
16664
- msgstr ""
 
 
 
16665
 
16666
- #: wppa-upload.php:1989
16667
- msgid "All available custom data fields are in use. There is no space for"
16668
- msgstr ""
16669
 
16670
- #: wppa-upload.php:2000
16671
- #, fuzzy, php-format
16672
- msgid "New caption %s added."
16673
- msgstr "%s kommentarer tilf&oslash;jet"
16674
 
16675
- #: wppa-upload.php:2018
16676
- msgid "Read data:"
 
 
16677
  msgstr ""
 
16678
 
16679
- #: wppa-upload.php:2087
16680
- msgid "Done processing files."
16681
- msgstr ""
 
16682
 
16683
- #: wppa-upload.php:2090
16684
- msgid "No files to import."
16685
- msgstr ""
 
16686
 
16687
- #: wppa-upload.php:2094
16688
- msgid "Zipfiles extracted."
 
16689
  msgstr ""
 
16690
 
16691
- #: wppa-upload.php:2095
16692
- #, fuzzy
16693
- msgid "Albums created."
16694
- msgstr "Carica foto: per caricare le foto in un album che hai creato."
16695
 
16696
- #: wppa-upload.php:2096
16697
- #, fuzzy
16698
- msgid "Directory to album imports."
16699
- msgstr "Standard foto album for"
16700
 
16701
- #: wppa-upload.php:2097
16702
- #, fuzzy, php-format
16703
- msgid "With total %s photos."
16704
- msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
16705
 
16706
- #: wppa-upload.php:2100
16707
- #, fuzzy
16708
- msgid "Photos updated"
16709
- msgstr "Dagens foto"
16710
 
16711
- #: wppa-upload.php:2102
16712
- #, php-format
16713
- msgid "to %s locations"
16714
- msgstr ""
16715
 
16716
- #: wppa-upload.php:2106
16717
- #, fuzzy
16718
- msgid "single photos imported."
16719
- msgstr "Indtast foto navn"
 
 
 
16720
 
16721
- #: wppa-upload.php:2109
16722
- msgid "Videos imported."
16723
- msgstr ""
 
16724
 
16725
- #: wppa-upload.php:2112
16726
- msgid "Audios imported."
16727
- msgstr ""
16728
 
16729
- #: wppa-upload.php:2115
16730
- msgid "CSVs imported,"
16731
- msgstr ""
16732
 
16733
- #: wppa-upload.php:2117
16734
- msgid "photos skipped."
 
 
16735
  msgstr ""
 
 
16736
 
16737
- #: wppa-upload.php:2247
16738
- msgid "Error: unexpected fgets() fail in wppa_get_meta_data()."
16739
- msgstr ""
16740
 
16741
- #: wppa-upload.php:2268
16742
- msgid "Class ZipArchive does not exist! Check your php configuration"
16743
- msgstr ""
16744
 
16745
- #: wppa-upload.php:2298
16746
- #, php-format
16747
- msgid ""
16748
- "File %s is of an unsupported filetype and has been ignored during extraction."
16749
- msgstr ""
16750
 
16751
- #: wppa-upload.php:2304
16752
- #, php-format
16753
- msgid "Zipfile %s processed. %s files extracted, %s files skipped."
16754
- msgstr ""
16755
 
16756
- #: wppa-upload.php:2307
16757
- msgid "Failed to extract"
16758
- msgstr ""
16759
 
16760
- #: wppa-upload.php:2373
16761
- #, php-format
16762
- msgid "Page <a href=\"%s\" target=\"_blank\" >%s</a> created."
16763
- msgstr ""
16764
 
16765
- #: wppa-upload.php:2377
16766
- #, fuzzy
16767
- msgid "Could not create page."
16768
- msgstr "Impossibile creare album. "
16769
 
16770
- #: wppa-upload.php:2490
16771
- #, fuzzy
16772
- msgid "--- My depot --- "
16773
- msgstr "--- vises ikke ---"
16774
 
16775
- #: wppa-upload.php:2499
16776
- #, fuzzy
16777
- msgid "--- Ngg Galleries --- "
16778
- msgstr "--- ingen ---"
16779
 
16780
- #: wppa-utils.php:282
16781
- #, php-format
16782
- msgid "Rating: %s"
16783
- msgstr "Bed&oslash;mmelse: %s"
16784
 
16785
- #: wppa-utils.php:846 wppa-utils.php:857 wppa-utils.php:868
16786
- msgid "Notification of inappropriate image"
16787
- msgstr ""
16788
 
16789
- #: wppa-utils.php:847 wppa-utils.php:858 wppa-utils.php:869
16790
- #, php-format
16791
- msgid "Photo %s has been marked as inappropriate by %s different visitors."
16792
- msgstr ""
16793
 
16794
- #: wppa-utils.php:859
16795
- msgid "The status has been changed to 'pending'."
16796
- msgstr ""
 
16797
 
16798
- #: wppa-utils.php:870
16799
- #, fuzzy
16800
- msgid "It has been deleted."
16801
- msgstr "Il file %s no è supportato ed è stato rimosso."
16802
 
16803
- #: wppa-utils.php:931
16804
- #, php-format
16805
- msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
16806
- msgstr "G&aelig;stens e-mail adresse er: <a href=\"mailto:%s\">%s</a>"
16807
 
16808
- #: wppa-utils.php:936
16809
- #, php-format
16810
- msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
16811
- msgstr ""
16812
- "G&aelig;sten siger, at hans e-mail adresse er: <a href=\"mailto:%s\">%s</a>"
16813
 
16814
- #: wppa-utils.php:944
16815
- #, php-format
16816
- msgid ""
16817
- "This message is automaticly generated at %s. It is useless to respond to it."
16818
- msgstr ""
16819
- "Denne besked er automatisk genereret af %s. Det er un&oslash;dvendigt at "
16820
- "reagere p&aring; den."
16821
 
16822
- #: wppa-utils.php:1195
16823
- #, php-format
16824
- msgid "Time out after processing %s items."
16825
- msgstr ""
16826
 
16827
- #: wppa-utils.php:1198 wppa-utils.php:1202
16828
- #, php-format
16829
- msgid "Time out after processing %s items. Please restart this operation"
16830
- msgstr ""
16831
 
16832
- #: wppa-video.php:188
16833
- msgid ""
16834
- "There is no filetype available for your browser, or your browser does not "
16835
- "support html5 video"
16836
- msgstr ""
16837
 
16838
- #: wppa-watermark.php:528
16839
- #, fuzzy
16840
- msgid "--- text: name ---"
16841
- msgstr "--- ingen ---"
16842
 
16843
- #: wppa-watermark.php:530
 
16844
  #, fuzzy
16845
- msgid "--- text: filename ---"
16846
- msgstr "--- vises ikke ---"
16847
 
16848
- #: wppa-watermark.php:532
16849
  #, fuzzy
16850
- msgid "--- text: description ---"
16851
- msgstr "--- vises ikke ---"
16852
 
16853
- #: wppa-watermark.php:534
16854
  #, fuzzy
16855
- msgid "--- text: pre-defined ---"
16856
- msgstr "--- vises ikke ---"
16857
 
16858
- #: wppa-widget-admin.php:34
16859
- msgid "Widget Photo Width."
16860
  msgstr ""
16861
 
16862
- #: wppa-widget-admin.php:39
16863
- msgid "Changes Saved. Don't forget to activate the widget!"
16864
- msgstr ""
 
16865
 
16866
- #: wppa-widget-admin.php:49
16867
  #, fuzzy
16868
- msgid "Photo of the Day Widget Settings"
16869
- msgstr "Dagens foto"
16870
 
16871
- #: wppa-widget-admin.php:58
16872
- msgid "Widget Title:"
16873
  msgstr ""
16874
 
16875
- #: wppa-widget-admin.php:62
16876
- msgid ""
16877
- "Enter/modify the title for the widget. This is a default and can be "
16878
- "overriden at widget activation."
16879
  msgstr ""
16880
 
16881
- #: wppa-widget-admin.php:68
16882
- msgid "Widget Photo Width:"
16883
  msgstr ""
16884
 
16885
- #: wppa-widget-admin.php:81
16886
- msgid ""
16887
- "Enter the desired display width and alignment of the photo in the sidebar."
16888
  msgstr ""
16889
 
16890
- #: wppa-widget-admin.php:87
16891
  #, fuzzy
16892
- msgid "Use album(s):"
16893
- msgstr ""
16894
- "Non hai i permessi per potere aggiornare le informazioni di questo album"
16895
-
16896
- #: wppa-widget-admin.php:103
16897
- msgid "Select:"
16898
- msgstr ""
16899
 
16900
- #: wppa-widget-admin.php:105
16901
- #, fuzzy
16902
- msgid "Or Edit:"
16903
- msgstr "Rediger!"
 
 
16904
 
16905
- #: wppa-widget-admin.php:106
16906
  #, fuzzy
16907
- msgid "Update thumbnails"
16908
- msgstr "Se"
16909
 
16910
- #: wppa-widget-admin.php:108
16911
- msgid ""
16912
- "Select or edit the album(s) you want to use the photos of for the widget."
16913
- msgstr ""
16914
 
16915
- #: wppa-widget-admin.php:110
16916
  msgid ""
16917
- "If you want a <b>- special -</b> selection or get rid of it, you may need to "
16918
- "use <b>- start over -</b> first."
16919
- msgstr ""
16920
-
16921
- #: wppa-widget-admin.php:117
16922
- msgid "Status filter:"
16923
  msgstr ""
 
 
16924
 
16925
- #: wppa-widget-admin.php:123
16926
- #, fuzzy
16927
- msgid "- none -"
16928
- msgstr "--- ingen ---"
16929
-
16930
- #: wppa-widget-admin.php:129
16931
- msgid "Any medal"
16932
- msgstr ""
16933
 
16934
- #: wppa-widget-admin.php:135
16935
- msgid "Display method:"
16936
- msgstr ""
 
16937
 
16938
- #: wppa-widget-admin.php:141
16939
- #, fuzzy
16940
- msgid "Fixed photo"
16941
- msgstr "Top fotos"
16942
 
16943
- #: wppa-widget-admin.php:143
16944
- #, fuzzy
16945
- msgid "Last upload"
16946
- msgstr "Foto caricate nell'album numero"
16947
 
16948
- #: wppa-widget-admin.php:144
16949
- msgid "Change every"
16950
- msgstr ""
16951
 
16952
- #: wppa-widget-admin.php:148
16953
- msgid "pageview."
16954
- msgstr ""
16955
 
16956
- #: wppa-widget-admin.php:149
16957
- #, fuzzy
16958
- msgid "hour."
16959
- msgstr "timer"
16960
 
16961
- #: wppa-widget-admin.php:150
16962
- msgid "day."
16963
- msgstr ""
16964
 
16965
- #: wppa-widget-admin.php:151
16966
- #, fuzzy
16967
- msgid "week."
16968
- msgstr "uger"
16969
 
16970
- #: wppa-widget-admin.php:152
16971
- #, fuzzy
16972
- msgid "month."
16973
- msgstr "m&aring;neder"
16974
 
16975
- #: wppa-widget-admin.php:153
16976
- msgid "day of week is order#"
16977
  msgstr ""
 
 
16978
 
16979
- #: wppa-widget-admin.php:154
16980
- msgid "day of month is order#"
16981
- msgstr ""
16982
 
16983
- #: wppa-widget-admin.php:156
16984
- msgid "Select how the widget should display."
16985
- msgstr ""
16986
 
16987
- #: wppa-widget-admin.php:167
16988
- msgid "Links are set on the <b>Photo Albums -> Settings</b> screen."
16989
- msgstr ""
16990
 
16991
- #: wppa-widget-admin.php:179
16992
- msgid "Url:"
16993
- msgstr ""
16994
 
16995
- #: wppa-widget-admin.php:181
16996
- msgid "Enter the title and the url. Do'nt forget the HTTP://"
16997
- msgstr ""
16998
 
16999
- #: wppa-widget-admin.php:194
17000
- #, fuzzy
17001
- msgid "Photo Name"
17002
- msgstr "Dagens foto"
17003
 
17004
- #: wppa-widget-admin.php:198
17005
- msgid "Select the content of the subtitle."
17006
- msgstr ""
17007
 
17008
- #: wppa-widget-functions.php:151
17009
- #, fuzzy
17010
- msgid "- select (another) album or a set -"
17011
- msgstr ""
17012
- "Nessuna corrispondenza con i tuoi termini di ricerca. Riprova con una chiave "
17013
- "di ricerca differente."
17014
 
17015
- #: wppa-widget-functions.php:186
17016
- #, fuzzy
17017
- msgid "- all albums -"
17018
- msgstr "album"
17019
 
17020
- #: wppa-widget-functions.php:188
17021
- msgid "- all -separate- albums -"
17022
- msgstr ""
17023
 
17024
- #: wppa-widget-functions.php:190
17025
- msgid "- all albums except -separate-"
17026
- msgstr ""
 
 
 
17027
 
17028
- #: wppa-widget-functions.php:192
17029
  #, fuzzy
17030
- msgid "- top rated photos -"
17031
- msgstr "Top fotos"
17032
-
17033
- #: wppa-widget-functions.php:193
17034
- msgid "- start over -"
17035
- msgstr ""
17036
-
17037
- #: wppa.php:358
17038
- msgid ""
17039
- "</strong><h3>WP Photo ALbum Plus Error message</h3>This is a multi site "
17040
- "installation. One of the following 3 lines must be entered in wp-config.php:"
17041
- msgstr ""
17042
-
17043
- #: wppa.php:359
17044
- msgid ""
17045
- "<br /><br /><b>define( 'WPPA_MULTISITE_INDIVIDUAL', true );</b> <small>// "
17046
- "Multisite WP 3.5 or later with every site its own albums and photos</small>"
17047
- msgstr ""
17048
-
17049
- #: wppa.php:360
17050
- msgid ""
17051
- "<br /><b>define( 'WPPA_MULTISITE_BLOGSDIR', true );</b> <small>// Multisite "
17052
- "prior to WP 3.5 with every site its own albums and photos</small>"
17053
- msgstr ""
17054
-
17055
- #: wppa.php:361
17056
- msgid ""
17057
- "<br /><b>define( 'WPPA_MULTISITE_GLOBAL', true );</b> <small>// Multisite "
17058
- "with one common set of albums and photos</small>"
17059
- msgstr ""
17060
 
17061
- #: wppa.php:362
17062
- msgid ""
17063
- "<br /><br />For more information see: <a href=\"https://wordpress.org/"
17064
- "plugins/wp-photo-album-plus/faq/\">the faq</a>"
17065
- msgstr ""
17066
 
17067
- #: wppa.php:363
17068
- msgid ""
17069
- "<br /><br /><em>If you upload photos, they will be placed in the wrong "
17070
- "location and will not be visible for visitors!</em><strong>"
17071
- msgstr ""
17072
 
17073
- #: wppa.php:380
17074
- msgid ""
17075
- "</strong>The photo index table needs to be rebuilt. Please run <b>Photo "
17076
- "Albums -> Settings</b> admin page <b>Table VIII-A9</b><strong>"
17077
- msgstr ""
17078
 
17079
- #: wppa.php:384
17080
- msgid ""
17081
- "</strong>The album index table needs to be rebuilt. Please run <b>Photo "
17082
- "Albums -> Settings</b> admin page <b>Table VIII-A8</b><strong>"
17083
- msgstr ""
17084
 
17085
- #: wppa.php:388
17086
- msgid ""
17087
- "</strong>The avarage ratings need to be recalculated. Please run <b>Photo "
17088
- "Albums -> Settings</b> admin page <b>Table VIII-A5</b><strong>"
17089
- msgstr ""
17090
 
17091
- #: wppa.php:408
17092
- msgid ""
17093
- "</strong>The tags system needs to be converted. Please run <b>Photo Albums -"
17094
- "> Settings</b> admin page <b>Table VIII-B16</b><strong>"
17095
- msgstr ""
17096
 
17097
- #: wppa.php:426
17098
  msgid ""
17099
- "</strong>The cats system needs to be converted. Please run <b>Photo Albums -"
17100
- "> Settings</b> admin page <b>Table VIII-B17</b><strong>"
17101
  msgstr ""
 
 
17102
 
17103
  #. Plugin Name of the plugin/theme
17104
- #, fuzzy
17105
  msgid "WP Photo Album Plus"
17106
- msgstr "Foto Albums"
17107
 
17108
  #. Plugin URI of the plugin/theme
17109
  msgid "http://wordpress.org/extend/plugins/wp-photo-album-plus/"
17110
- msgstr ""
17111
 
17112
  #. Description of the plugin/theme
17113
  msgid ""
17114
  "Easily manage and display your photo albums and slideshows within your "
17115
  "WordPress site."
17116
  msgstr ""
 
 
17117
 
17118
  #. Author of the plugin/theme
17119
  msgid "J.N. Breetvelt a.k.a. OpaJaap"
17120
- msgstr ""
17121
 
17122
  #. Author URI of the plugin/theme
17123
  msgid "http://wppa.opajaap.nl/"
17124
- msgstr ""
17125
-
17126
- #, fuzzy
17127
- #~ msgid "New!"
17128
- #~ msgstr "Nuovo!"
17129
-
17130
- #, fuzzy
17131
- #~ msgid "New"
17132
- #~ msgstr "Nuovo!"
17133
-
17134
- #, fuzzy
17135
- #~ msgid "- - - Voting enabled - - -"
17136
- #~ msgstr "Attivo"
17137
-
17138
- #~ msgid "- - - Rating enabled - - -"
17139
- #~ msgstr "- - - Bed&oslash;mmelse aktiveret - - -"
17140
-
17141
- #, fuzzy
17142
- #~ msgid "--- My depot ---"
17143
- #~ msgstr "--- vises ikke ---"
17144
-
17145
- #, fuzzy
17146
- #~ msgid "Filter priority"
17147
- #~ msgstr "Lukkerhastighedsprioritet AE"
17148
-
17149
- #, fuzzy
17150
- #~ msgid "Shortcode_priority"
17151
- #~ msgstr "Lukkerhastighedsprioritet AE"
17152
-
17153
- #, fuzzy
17154
- #~ msgid "Update uploads"
17155
- #~ msgstr ""
17156
- #~ "Non hai i permessi per potere aggiornare le informazioni di questo album"
17157
-
17158
- #, fuzzy
17159
- #~ msgid "- featured photos -"
17160
- #~ msgstr "Top fotos"
17161
-
17162
- #~ msgid "%s Comments"
17163
- #~ msgstr "%s kommentarer"
17164
-
17165
- #, fuzzy
17166
- #~ msgid "%s uploads failed."
17167
- #~ msgstr "Impossibile impostare %s a %s"
17168
-
17169
- #, fuzzy
17170
- #~ msgid ""
17171
- #~ "There are %s photos found. Only the first %s will be shown. Please refine "
17172
- #~ "your search criteria."
17173
- #~ msgstr ""
17174
- #~ "Trovati %s foto. Solo le prime %s saranno visualizzate. Per favore "
17175
- #~ "affinate la ricerca.ie cercate anche per data."
17176
-
17177
- #~ msgid "%s back"
17178
- #~ msgstr "%s tilbage"
17179
-
17180
- #~ msgid "%s forward"
17181
- #~ msgstr "%s frem"
17182
-
17183
- #~ msgid "Share %s on Facebook"
17184
- #~ msgstr "Del %s p&aring; Facebook"
17185
-
17186
- #~ msgid "Please select a search results landing page in Table IX-C1"
17187
- #~ msgstr ""
17188
- #~ "V&aelig;lg den side, hvor s&oslash;ge resultater skal vises i Tabel IX-C1"
17189
-
17190
- #, fuzzy
17191
- #~ msgid "Please select a super view widget landing page in Table VI-C"
17192
- #~ msgstr "V&aelig;lg en side, hvor tag-skyen skal vises i Tabel VI-C3b"
17193
-
17194
- #~ msgid "Tip %s on Hyves"
17195
- #~ msgstr "Tip %s p&aring; Hyves"
17196
-
17197
- #, fuzzy
17198
- #~ msgid "Share on Hyves"
17199
- #~ msgstr "Del %s p&aring; Pinterest"
17200
-
17201
- #~ msgid "<b>ERROR: Attempt to enter an invalid rating.</b>"
17202
- #~ msgstr ""
17203
- #~ "<b>FEJL: Fors&oslash;g p&aring; at skrive en ugyldig bed&oslash;mmelse.</"
17204
- #~ "b>"
17205
-
17206
- #~ msgid "Upload Photo(s)"
17207
- #~ msgstr "Indsend foto"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2015-12-25 13:09+0100\n"
5
+ "PO-Revision-Date: 2015-12-25 13:09+0100\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"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
  #: theme/photo-album-page.php:30 theme/photo-album-search-page.php:52
 
24
  msgid "Pages:"
25
+ msgstr "Sider:"
26
 
27
  #: theme/photo-album-page.php:31 theme/photo-album-search-page.php:53
28
+ #: wppa-functions.php:1914 wppa-thumbnails.php:597
 
 
 
 
 
29
  msgid "Edit"
30
+ msgstr "Rediger"
31
 
32
  #: theme/photo-album-search-page.php:30
33
  msgid "Warning. No page defined for search results!"
34
+ msgstr "Advarsel. Ingen side defineret for søgeresultater!"
35
 
36
+ #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:168
 
 
37
  msgid "Search"
38
+ msgstr "Søg"
39
 
40
  #: theme/search.php:18
41
  #, php-format
42
  msgid "Search Results for: %s"
43
+ msgstr "Søgeresultater for: %s"
44
 
45
  #: theme/search.php:29
46
  msgid "Nothing Found"
47
+ msgstr "Intet fundet"
48
 
49
  #: theme/search.php:31
50
  msgid ""
51
  "Sorry, but nothing matched your search criteria. Please try again with some "
52
  "different keywords."
53
  msgstr ""
54
+ "Beklager, men vi fandt ikke det du leder efter. Prøv med andre søgeord."
55
 
56
+ #: theme/wppa-theme.php:328 theme/wppa-theme.php:347
57
  msgid "No photos found matching your search criteria."
58
+ msgstr "Ingen billeder fundet der passer til søgekriterierne."
 
59
 
60
+ #: theme/wppa-theme.php:331
 
61
  msgid "No albums found matching your search criteria."
62
+ msgstr "Ingen albums fundet matcher dine søgekriterier."
63
 
64
+ #: theme/wppa-theme.php:334
65
  msgid "No albums or photos found matching your search criteria."
66
+ msgstr "Ingen album eller billeder fundet der passer til søgekriterierne."
 
 
 
 
 
 
 
 
 
 
67
 
68
+ #: wppa-album-covers.php:1256
69
+ msgid "Link to"
70
+ msgstr "Link til"
71
 
72
+ #: wppa-album-covers.php:1286 wppa-album-covers.php:1345
73
+ #: wppa-album-covers.php:1353 wppa-album-covers.php:1588
74
+ msgid "View the album"
75
+ msgstr "Se album"
76
 
77
+ #: wppa-album-covers.php:1306
78
+ msgid "View the cover photo"
79
+ msgid_plural "View the cover photos"
80
+ msgstr[0] "Se forside foto"
81
+ msgstr[1] "Se forside foto's"
82
 
83
+ #: wppa-album-covers.php:1363
84
+ msgid "View"
85
+ msgstr "Vis"
 
86
 
87
+ #: wppa-album-covers.php:1365
88
+ #, fuzzy, php-format
89
+ msgid "%d album"
90
+ msgid_plural "%d albums"
91
+ msgstr[0] "album"
92
+ msgstr[1] "album"
93
 
94
+ #: wppa-album-covers.php:1371 wppa-boxes-html.php:1159 wppa-breadcrumb.php:148
95
+ #: wppa-breadcrumb.php:154 wppa-breadcrumb.php:161 wppa-breadcrumb.php:368
96
+ #: wppa-breadcrumb.php:379
97
+ msgid "and"
98
+ msgstr "og"
99
 
100
+ #: wppa-album-covers.php:1374
101
+ #, fuzzy, php-format
102
+ msgid "%d photo"
103
+ msgid_plural "%d photos"
104
+ msgstr[0] "N&aelig;ste billede"
105
+ msgstr[1] "N&aelig;ste billede"
106
 
107
+ #: wppa-album-covers.php:1437
108
+ msgid "New!"
109
+ msgstr "Nyt!"
 
110
 
111
+ #: wppa-album-covers.php:1440 wppa-thumbnails.php:1899 wppa-thumbnails.php:1900
112
+ msgid "New"
113
+ msgstr "Ny"
114
 
115
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
116
+ msgid "Slideshow"
117
+ msgstr "Slideshow"
118
 
119
+ #: wppa-album-covers.php:1682
120
+ msgid "Browse photos"
121
+ msgstr "Se fotos"
122
 
123
+ #: wppa-album-covers.php:1719 wppa-breadcrumb.php:389 wppa-breadcrumb.php:394
124
+ #, fuzzy
125
+ msgid "Category:"
126
+ msgid_plural "Categories:"
127
+ msgstr[0] "Kategori:"
128
+ msgstr[1] "Kategori:"
129
 
130
+ #: wppa-audio.php:183
131
  msgid ""
132
+ "There is no filetype available for your browser, or your browser does not "
133
+ "support html5 audio"
134
  msgstr ""
135
+ "Der er ingen filtype til rådighed for din browser, eller din browser "
136
+ "understøtter ikke HTML5 lyd"
137
 
138
+ #: wppa-boxes-html.php:133 wppa-boxes-html.php:235
139
+ msgid "Photo search results"
140
+ msgstr "Foto søgeresultater"
 
141
 
142
+ #: wppa-boxes-html.php:367 wppa-breadcrumb.php:136
143
+ msgid "Albums"
144
+ msgstr "Album"
 
145
 
146
+ #: wppa-boxes-html.php:373 wppa-breadcrumb.php:151
147
+ msgid "Photos"
148
+ msgstr "Foto's"
 
149
 
150
+ #: wppa-boxes-html.php:392
151
+ msgid "Category"
152
+ msgstr "Kategori"
 
153
 
154
+ #: wppa-boxes-html.php:399 wppa-boxes-html.php:513
155
+ msgid "Name"
156
+ msgstr "Navn"
 
157
 
158
+ #: wppa-boxes-html.php:405 wppa-boxes-html.php:538
159
+ msgid "Text"
160
+ msgstr "Tekst"
 
161
 
162
+ #: wppa-boxes-html.php:421 wppa-boxes-html.php:475 wppa-boxes-html.php:621
163
+ #: wppa-boxes-html.php:651
164
+ msgid "CTRL+Click to add/remove option."
165
+ msgstr "CTRL + Klik for at tilføje / fjerne mulighed."
166
 
167
+ #: wppa-boxes-html.php:422 wppa-boxes-html.php:476 wppa-boxes-html.php:622
168
+ #: wppa-boxes-html.php:652
169
+ msgid "Items must meet all selected options."
170
+ msgstr "Elementer skal opfylde alle valgte indstillinger."
 
171
 
172
+ #: wppa-boxes-html.php:521
173
+ msgid "Owner"
174
+ msgstr "Ejer"
175
 
176
+ #: wppa-boxes-html.php:530
177
+ msgid "Tag"
178
+ msgstr "Tag"
179
 
180
+ #: wppa-boxes-html.php:546
181
+ msgid "Iptc"
182
+ msgstr "Iptc"
 
183
 
184
+ #: wppa-boxes-html.php:555
185
+ msgid "Exif"
186
+ msgstr "Exif"
187
 
188
+ #: wppa-boxes-html.php:753 wppa-boxes-html.php:832
189
+ msgid "Submit"
190
+ msgstr "Indsend"
191
 
192
+ #: wppa-boxes-html.php:795
193
+ msgid "Super View Photos"
194
+ msgstr "Super View Billeder"
195
 
196
+ #: wppa-boxes-html.php:804 wppa-breadcrumb.php:276 wppa-breadcrumb.php:294
197
+ #: wppa-breadcrumb.php:322 wppa-breadcrumb.php:340 wppa-breadcrumb.php:404
198
+ #: wppa-breadcrumb.php:429 wppa-breadcrumb.php:577
199
+ msgid "Album:"
200
+ msgstr "Album:"
201
 
202
+ #: wppa-boxes-html.php:820
203
+ msgid "Thumbnails"
204
+ msgstr "Miniatyrbilder"
 
205
 
206
+ #: wppa-boxes-html.php:866
207
+ msgid "Tagged photos"
208
+ msgstr "Tagged fotos"
209
 
210
+ #: wppa-boxes-html.php:880
211
+ msgid "Please select a tagcloud landing page in Table VI-C3b"
212
+ msgstr "V&aelig;lg en side, hvor tag-skyen skal vises i Tabel VI-C3b"
 
213
 
214
+ #: wppa-boxes-html.php:939
215
+ msgid "Multi Tagged photos"
216
+ msgstr "Multi Tagged billeder"
217
 
218
+ #: wppa-boxes-html.php:953
219
+ msgid "Please select a multitag landing page in Table VI-C4b"
220
+ msgstr "V&aelig;lg en side, hvor multi-tag skal vises i Tabel VI-C4b"
 
221
 
222
+ #: wppa-boxes-html.php:998
223
+ msgid "Please check the tag(s) that the photos must have"
224
+ msgstr "Unders&oslash;g de tag(s) som dine fotos har"
225
 
226
+ #: wppa-boxes-html.php:1029
227
+ msgid "And"
228
+ msgstr "og"
 
229
 
230
+ #: wppa-boxes-html.php:1040
231
+ msgid "Or"
232
+ msgstr "Eller"
 
233
 
234
+ #: wppa-boxes-html.php:1055
235
+ msgid "Inverse selection"
236
+ msgstr "Invertér udvalg"
 
237
 
238
+ #: wppa-boxes-html.php:1108
239
+ msgid "Find!"
240
+ msgstr "Find!"
 
241
 
242
+ #: wppa-boxes-html.php:1135
243
+ msgid "Social media landing page"
244
+ msgstr "Sociale medier destinationsside"
 
245
 
246
+ #: wppa-boxes-html.php:1160
247
+ #, php-format
248
+ msgid "See this image on %s"
249
+ msgstr "Se dette billed p&aring; %s"
250
 
251
+ #: wppa-boxes-html.php:1185
252
+ msgid "QR code"
253
+ msgstr "QR kode"
 
254
 
255
+ #: wppa-boxes-html.php:1230
256
+ #, php-format
257
+ msgid "Tweet %s on Twitter"
258
+ msgstr "Tweet %s p&aring; Twitter"
 
259
 
260
+ #: wppa-boxes-html.php:1237
261
+ msgid "Share on Twitter"
262
+ msgstr "Del Twitter"
 
263
 
264
+ #: wppa-boxes-html.php:1250
265
+ #, php-format
266
+ msgid "Share %s on Google+"
267
+ msgstr "Del %s p&aring; Google+"
268
 
269
+ #: wppa-boxes-html.php:1258
270
+ msgid "Share on Google+"
271
+ msgstr "Del på Google+"
272
 
273
+ #: wppa-boxes-html.php:1273
274
+ #, php-format
275
+ msgid "Share %s on Pinterest"
276
+ msgstr "Del %s p&aring; Pinterest"
277
 
278
+ #: wppa-boxes-html.php:1282
279
+ msgid "Share on Pinterest"
280
+ msgstr "Del på Pinterest"
 
281
 
282
+ #: wppa-boxes-html.php:1417
283
+ msgid "Comment on Facebook:"
284
+ msgstr "Kommentar på Facebook:"
 
 
285
 
286
+ #: wppa-boxes-html.php:1518
287
+ msgid "Working..."
288
+ msgstr "Arbejder…"
289
 
290
+ #: wppa-boxes-html.php:1520 wppa-boxes-html.php:1523
291
+ msgid "Delete album"
292
+ msgstr "Slet album"
293
 
294
+ #: wppa-boxes-html.php:1610
295
+ msgid "Create Album"
296
+ msgstr "Opret album"
 
297
 
298
+ #: wppa-boxes-html.php:1655
299
+ msgid "Enter album name."
300
+ msgstr "Indtast albummets navn."
 
 
 
 
 
 
 
301
 
302
+ #: wppa-boxes-html.php:1657 wppa-boxes-html.php:2371
303
+ msgid "Don't leave this blank!"
304
+ msgstr "Lad ikke dette tomt!"
 
305
 
306
+ #: wppa-boxes-html.php:1676
307
+ msgid "Enter album description"
308
+ msgstr "Indtast album beskrivelse"
 
309
 
310
+ #: wppa-boxes-html.php:1698
311
+ msgid "Create album"
312
+ msgstr "Opret album"
313
 
314
+ #: wppa-boxes-html.php:1754 wppa-boxes-html.php:1767 wppa-functions.php:4011
315
+ msgid "Max uploads reached"
316
+ msgstr "Maks. antal indsendinger er opn&aring;et"
 
317
 
318
+ #: wppa-boxes-html.php:1834
319
+ msgid "Upload Photo"
320
+ msgstr "Indsend foto"
321
 
322
+ #: wppa-boxes-html.php:1942
323
+ #, fuzzy, php-format
324
+ msgid "You may upload %d photo"
325
+ msgid_plural ""
326
+ "You may upload up to %d photos at once if your browser supports HTML-5 "
327
+ "multiple file upload"
328
+ msgstr[0] "Du kan indsende efter"
329
+ msgstr[1] "Du kan indsende efter"
330
 
331
+ #: wppa-boxes-html.php:1951
332
+ #, php-format
333
+ msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
334
+ msgstr "Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
335
 
336
+ #: wppa-boxes-html.php:1980
337
+ msgid "Apply watermark file:"
338
+ msgstr "Inds&aelig;t vandm&aelig;rke:"
 
339
 
340
+ #: wppa-boxes-html.php:2002
341
+ msgid "Position:"
342
+ msgstr "Position:"
 
343
 
344
+ #: wppa-boxes-html.php:2030
345
+ msgid ""
346
+ "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
347
+ "photoname if available, else the original filename will be used as photo "
348
+ "name."
349
  msgstr ""
350
+ "Hvis du efterlader dette blankt, IPTC tag 005 (Graphic navn) vil blive brugt "
351
+ "som photoname hvis tilgængelig, ellers det oprindelige filnavn vil blive "
352
+ "brugt som foto navn."
353
 
354
+ #: wppa-boxes-html.php:2035
355
+ msgid ""
356
+ "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
357
+ "available, else the original filename will be used as photo name."
358
  msgstr ""
359
+ "Hvis du efterlader dette blankt, IPTC tag 120 (Caption) vil blive brugt som "
360
+ "photoname hvis tilgængelig, ellers det oprindelige filnavn vil blive brugt "
361
+ "som foto navn."
362
 
363
+ #: wppa-boxes-html.php:2040
364
+ msgid ""
365
+ "If you leave this blank, the original filename will be used as photo name."
366
  msgstr ""
367
+ "Hvis du ikke udfylder dette felt, s&aring; vil filens navn blive brugt som "
368
+ "foto navn"
369
 
370
+ #: wppa-boxes-html.php:2054
371
+ #, fuzzy
372
+ msgid "Enter photo name"
373
+ msgstr "Indtast foto navn"
374
 
375
+ #: wppa-boxes-html.php:2075
376
+ msgid "Enter/modify photo description"
377
+ msgstr "Inds&aelig;t/rediger beskrivelse af foto"
 
378
 
379
+ #: wppa-boxes-html.php:2106
380
+ msgid "hidden"
381
+ msgstr "skjult"
 
382
 
383
+ #: wppa-boxes-html.php:2176
384
+ msgid "Preview tags:"
385
+ msgstr "Eksempel tags:"
386
 
387
+ #: wppa-boxes-html.php:2191
388
+ msgid "Please select an album and try again"
389
+ msgstr "Vælg et album, og prøv igen"
390
 
391
+ #: wppa-boxes-html.php:2205
392
+ msgid "Upload photo"
393
+ msgstr "Upload foto"
394
 
395
+ #: wppa-boxes-html.php:2261
396
+ msgid "ERROR: unable to upload files."
397
+ msgstr "FEJL: ude af stand til at uploade filer."
398
+
399
+ #: wppa-boxes-html.php:2311
400
+ msgid "Edit albuminfo"
401
+ msgstr "Rediger albuminfo"
402
+
403
+ #: wppa-boxes-html.php:2369
404
  #, fuzzy
405
+ msgid "Enter album name"
406
+ msgstr "Indtast albummets navn."
407
 
408
+ #: wppa-boxes-html.php:2391
409
+ msgid "Album description:"
410
+ msgstr "Album beskrivelse:"
411
 
412
+ #: wppa-boxes-html.php:2410
413
+ msgid "Update album"
414
+ msgstr "Opdater album"
415
 
416
+ #: wppa-boxes-html.php:2484
417
+ msgid "wrote:"
418
+ msgstr "skrev:"
419
 
420
+ #: wppa-boxes-html.php:2538
421
+ msgid "Avatar"
422
+ msgstr "Profilbillede"
423
 
424
+ #: wppa-boxes-html.php:2581
425
+ msgid "Awaiting moderation"
426
+ msgstr "Venter p&aring; godkendelse"
 
 
427
 
428
+ #: wppa-boxes-html.php:2584
429
+ msgid "Marked as spam"
430
+ msgstr "Markeret som spam"
431
 
432
+ #: wppa-boxes-html.php:2608
433
+ msgid "Edit!"
434
+ msgstr "Rediger!"
 
435
 
436
+ #: wppa-boxes-html.php:2612
437
+ msgid "Send!"
438
+ msgstr "Send"
439
 
440
+ #: wppa-boxes-html.php:2673
441
+ msgid "Your name:"
442
+ msgstr "Dit navn"
 
443
 
444
+ #: wppa-boxes-html.php:2688
445
+ msgid "Your email:"
446
+ msgstr "Din email"
447
 
448
+ #: wppa-boxes-html.php:2704
449
+ msgid "Your comment:"
450
+ msgstr "Din kommentar"
 
451
 
452
+ #: wppa-boxes-html.php:2749
453
+ #, php-format
454
+ msgid "You must <a href=\"%s\">login</a> to enter a comment"
455
+ msgstr "Du skal <a href=\"%s\">logge ind</a> for at indtaste en kommentar"
 
 
 
 
 
456
 
457
+ #: wppa-boxes-html.php:2752
458
+ msgid "You must login to enter a comment"
459
+ msgstr "Du skal logge ind for at indtaste en kommentar"
460
 
461
+ #: wppa-boxes-html.php:2764 wppa-functions.php:2326 wppa-thumbnails.php:635
462
  #, fuzzy, php-format
463
+ msgid "%d comment"
464
+ msgid_plural "%d comments"
465
+ msgstr[0] "%d kommentarer"
466
+ msgstr[1] "%d kommentarer"
467
 
468
+ #: wppa-boxes-html.php:2768
469
+ msgid "Leave a comment"
470
+ msgstr "Skriv en kommentar"
471
 
472
+ #: wppa-boxes-html.php:2809
473
+ msgid "Smilies are not available"
474
+ msgstr "Smilies er ikke tilgængelige"
475
 
476
+ #: wppa-boxes-html.php:2859
477
+ msgid "Show IPTC data"
478
+ msgstr "Vis IPTC data"
479
 
480
+ #: wppa-boxes-html.php:2870
481
+ msgid "Hide IPTC data"
482
+ msgstr "Skjul IPTC data"
483
 
484
+ #: wppa-boxes-html.php:2910
485
+ msgid "No IPTC data"
486
+ msgstr "Ingen IPTC data"
487
 
488
+ #: wppa-boxes-html.php:2957
489
+ msgid "Show EXIF data"
490
+ msgstr "Vis EXIF data"
 
 
 
 
491
 
492
+ #: wppa-boxes-html.php:2968
493
+ msgid "Hide EXIF data"
494
+ msgstr "Skjul EXIF data"
495
 
496
+ #: wppa-boxes-html.php:3010
497
+ msgid "No EXIF data"
498
+ msgstr "Ingen EXIF data"
499
 
500
+ #: wppa-boxes-html.php:3125 wppa-boxes-html.php:3130
501
+ msgid "< Previous"
502
+ msgstr "< Forrige"
 
503
 
504
+ #: wppa-boxes-html.php:3136 wppa-boxes-html.php:3141
505
+ msgid "Next >"
506
+ msgstr "Næste >"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
507
 
508
+ #: wppa-boxes-html.php:3238 wppa-boxes-html.php:3306
509
+ msgid "See the authors albums"
510
+ msgstr "Se forfatternes album"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
511
 
512
+ #: wppa-boxes-html.php:3242 wppa-boxes-html.php:3310
513
+ msgid "See the authors photos"
514
+ msgstr "Se forfatternes billeder"
 
515
 
516
+ #: wppa-boxes-html.php:3246 wppa-boxes-html.php:3314
517
+ msgid "See all the authors photos"
518
+ msgstr "Se alle forfatternes billeder"
519
 
520
+ #: wppa-boxes-html.php:3269
521
+ #, php-format
522
+ msgid "Photo by: %s"
523
+ msgstr "Foto af: %s"
524
 
525
+ #: wppa-boxes-html.php:3272 wppa-boxes-html.php:3335
526
+ #, fuzzy, php-format
527
+ msgid "%d max rating"
528
+ msgid_plural "%d max ratings"
529
+ msgstr[0] "Min vurdering:"
530
+ msgstr[1] "Min vurdering:"
531
 
532
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
533
+ #, php-format
534
+ msgid "%d vote"
535
+ msgid_plural "%d votes"
536
+ msgstr[0] ""
537
+ msgstr[1] ""
538
 
539
+ #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
540
+ #, php-format
541
+ msgid "Mean value: %4.2f."
542
+ msgstr "Middelværdi: %4.2f."
543
 
544
+ #: wppa-boxes-html.php:3288
545
+ #, php-format
546
+ msgid "Photo %s not found."
547
+ msgstr "Foto %s ikke fundet."
548
 
549
+ #: wppa-boxes-html.php:3695
550
+ msgid "Refresh"
551
+ msgstr "Opdater"
 
 
552
 
553
+ #: wppa-breadcrumb.php:119
554
+ msgid "Post:"
555
+ msgstr "Indlæg:"
556
 
557
+ #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:604
558
+ msgid "Page:"
559
+ msgstr "Side:"
 
 
 
 
560
 
561
+ #: wppa-breadcrumb.php:139
562
+ msgid "with category:"
563
+ msgstr "med kategori:"
 
564
 
565
+ #: wppa-breadcrumb.php:142 wppa-breadcrumb.php:157
566
+ msgid "with name:"
567
+ msgstr "med navn:"
 
568
 
569
+ #: wppa-breadcrumb.php:145 wppa-breadcrumb.php:161
570
+ msgid "with words:"
571
+ msgstr "med ordene:"
 
572
 
573
+ #: wppa-breadcrumb.php:154
574
+ msgid "with tag:"
575
+ msgstr "med tag:"
576
 
577
+ #: wppa-breadcrumb.php:165
578
+ msgid "of owner:"
579
+ msgstr "af ejer:"
580
 
581
+ #: wppa-breadcrumb.php:170
582
+ msgid "with iptc tag:"
583
+ msgstr "med iptc tag:"
584
 
585
+ #: wppa-breadcrumb.php:170 wppa-breadcrumb.php:175
586
+ msgid "with content:"
587
+ msgstr "med indhold:"
588
 
589
+ #: wppa-breadcrumb.php:175
590
+ msgid "with exif tag:"
591
+ msgstr "med exif tag:"
 
592
 
593
+ #: wppa-breadcrumb.php:183 wppa-breadcrumb.php:207 wppa-breadcrumb.php:264
594
+ #: wppa-breadcrumb.php:282 wppa-breadcrumb.php:305 wppa-breadcrumb.php:328
595
+ #: wppa-breadcrumb.php:346 wppa-breadcrumb.php:358 wppa-breadcrumb.php:376
596
+ #: wppa-breadcrumb.php:391 wppa-breadcrumb.php:410
597
+ msgid "View the thumbnails"
598
+ msgstr "Se miniatyrbilder"
599
 
600
+ #: wppa-breadcrumb.php:201
601
  #, php-format
602
+ msgid "Searchresults from album %s and its subalbums"
603
+ msgstr "Søgeresultater fra albummet %s og dets underalbummer"
604
 
605
+ #: wppa-breadcrumb.php:205 wppa-breadcrumb.php:210
606
+ msgid "Searchstring:"
607
+ msgstr "S&oslash;gestreng:"
608
 
609
+ #: wppa-breadcrumb.php:219 wppa-breadcrumb.php:237
610
+ msgid "Photos by EXIF date"
611
+ msgstr "Fotos efter EXIF dato"
612
 
613
+ #: wppa-breadcrumb.php:223 wppa-breadcrumb.php:241
614
+ msgid "Photos by date of upload"
615
+ msgstr "Billeder efter dato for upload"
 
616
 
617
+ #: wppa-breadcrumb.php:227 wppa-breadcrumb.php:245
618
+ msgid "Photos by date last modified"
619
+ msgstr "Billeder efter dato for sidste ændring"
620
+
621
+ #: wppa-breadcrumb.php:257 wppa-breadcrumb.php:267
622
  #, php-format
623
+ msgid "Photos by %s"
624
+ msgstr "Fotos af %s"
625
 
626
+ #: wppa-breadcrumb.php:274 wppa-breadcrumb.php:292 wppa-breadcrumb.php:320
627
+ #: wppa-breadcrumb.php:338 wppa-breadcrumb.php:425
628
+ msgid "Various albums"
629
+ msgstr "Forskellige album"
630
 
631
+ #: wppa-breadcrumb.php:276 wppa-breadcrumb.php:294 wppa-breadcrumb.php:322
632
+ #: wppa-breadcrumb.php:340 wppa-breadcrumb.php:429
633
+ msgid "Albums:"
634
+ msgstr "Album:"
635
 
636
+ #: wppa-breadcrumb.php:280 wppa-breadcrumb.php:285
637
+ msgid "Top rated photos"
638
+ msgstr "Top fotos"
639
 
640
+ #: wppa-breadcrumb.php:299 wppa-breadcrumb.php:309
641
+ msgid "Recently modified photos"
642
+ msgstr "Nyligt modificerede fotos"
643
 
644
+ #: wppa-breadcrumb.php:302 wppa-breadcrumb.php:312
645
+ msgid "Recently uploaded photos"
646
+ msgstr "Nyligt kommenterede fotos"
 
647
 
648
+ #: wppa-breadcrumb.php:326 wppa-breadcrumb.php:331
649
+ msgid "Recently commented photos"
650
+ msgstr "Nyligt kommenterede fotos"
 
651
 
652
+ #: wppa-breadcrumb.php:344 wppa-breadcrumb.php:349
653
+ msgid "Featured photos"
654
+ msgstr "Top fotos"
655
 
656
+ #: wppa-breadcrumb.php:356 wppa-breadcrumb.php:361
657
+ msgid "Related photos"
658
+ msgstr "Relaterede billeder"
659
 
660
+ #: wppa-breadcrumb.php:368 wppa-breadcrumb.php:379
661
+ msgid "Tagged photos:"
662
+ msgstr "Tagged fotos:"
663
 
664
+ #: wppa-breadcrumb.php:368 wppa-breadcrumb.php:379
665
+ msgid "or"
666
+ msgstr "eller"
 
667
 
668
+ #: wppa-breadcrumb.php:370 wppa-breadcrumb.php:381
669
+ msgid "Inverted"
670
+ msgstr "Invers"
671
 
672
+ #: wppa-breadcrumb.php:408 wppa-breadcrumb.php:413
673
+ msgid "Recently updated albums"
674
+ msgstr "Nyligt opdaterede albums"
675
 
676
+ #: wppa-breadcrumb.php:423
677
+ #, php-format
678
+ msgid "Various albums by %s"
679
+ msgstr "Forskellige album af %s"
680
 
681
+ #: wppa-breadcrumb.php:450 wppa-breadcrumb.php:465
682
+ msgid "Thumbnail view"
683
+ msgstr "Miniaturevisning"
 
684
 
685
+ #: wppa-breadcrumb.php:454 wppa-breadcrumb.php:455 wppa-breadcrumb.php:470
686
+ #: wppa-breadcrumb.php:471
687
+ msgid "Thumbs"
688
+ msgstr "Miniature"
689
 
690
+ #: wppa-breadcrumb.php:602
691
+ msgid "Unpublished"
692
+ msgstr "Ikke publiceret"
 
693
 
694
+ #: wppa-breadcrumb.php:632
695
+ msgid "Found photos will meet the search criteria as follows:"
696
+ msgstr "Fundet fotos vil opfylde søgekriterierne som følger:"
 
697
 
698
+ #: wppa-breadcrumb.php:635
699
+ msgid "AND"
700
+ msgstr "OG"
 
 
701
 
702
+ #: wppa-breadcrumb.php:639
703
+ msgid "OR"
704
+ msgstr "ELLER"
705
 
706
+ #: wppa-common-functions.php:76 wppa-common-functions.php:79
707
+ msgid "Default photo album for"
708
+ msgstr "Standard fotoalbum for"
 
 
709
 
710
+ #: wppa-common-functions.php:603 wppa-functions.php:4302
711
  #, fuzzy, php-format
712
+ msgid "%d second"
713
+ msgid_plural "%d seconds"
714
+ msgstr[0] "1 sekund"
715
+ msgstr[1] "1 sekund"
716
 
717
+ #: wppa-common-functions.php:607 wppa-functions.php:4298
718
+ #, fuzzy, php-format
719
+ msgid "%d minute"
720
+ msgid_plural "%d minutes"
721
+ msgstr[0] "1 minut"
722
+ msgstr[1] "1 minut"
723
 
724
+ #: wppa-common-functions.php:611 wppa-functions.php:4294
 
725
  #, fuzzy, php-format
726
+ msgid "%d hour"
727
+ msgid_plural "%d hours"
728
+ msgstr[0] "1 time"
729
+ msgstr[1] "1 time"
730
 
731
+ #: wppa-common-functions.php:615 wppa-functions.php:4290
732
  #, fuzzy, php-format
733
+ msgid "%d day"
734
+ msgid_plural "%d days"
735
+ msgstr[0] "1 dag"
736
+ msgstr[1] "1 dag"
737
 
738
+ #: wppa-common-functions.php:619 wppa-functions.php:4286
739
+ #, fuzzy, php-format
740
+ msgid "%d week"
741
+ msgid_plural "%d weeks"
742
+ msgstr[0] "1 uge"
743
+ msgstr[1] "1 uge"
744
 
745
+ #: wppa-common-functions.php:623
746
+ #, fuzzy, php-format
747
+ msgid "%d month"
748
+ msgid_plural "%d months"
749
+ msgstr[0] "1 m&aring;ned"
750
+ msgstr[1] "1 m&aring;ned"
751
 
752
+ #: wppa-common-functions.php:626
753
+ #, fuzzy, php-format
754
+ msgid "%d year"
755
+ msgid_plural "%d years"
756
+ msgstr[0] "1 &aring;r"
757
+ msgstr[1] "1 &aring;r"
758
 
759
+ #: wppa-common-functions.php:849 wppa-common-functions.php:850
760
+ msgid "ERROR: Resized or copied image could not be created."
761
+ msgstr "FEJL: Resized eller kopierede billede kunne ikke oprettes."
 
762
 
763
+ #: wppa-common-functions.php:895 wppa-common-functions.php:896
764
+ #, php-format
765
+ msgid "ERROR: File %s is not a valid picture file."
766
+ msgstr "FEJL: Fil %s er ikke en gyldig billedfil."
767
 
768
+ #: wppa-common-functions.php:1714
769
  #, php-format
770
+ msgid ""
771
+ "Based on your server memory limit you should not upload images larger then "
772
+ "<strong>%d x %d (%2.1f MP)</strong>"
773
  msgstr ""
774
+ "Baseret på din server hukommelse grænse bør du ikke uploade billeder større "
775
+ "derefter <strong>%d x %d (% 2.1f MP)</strong>"
776
 
777
+ #: wppa-common-functions.php:1989
778
+ msgid "- select an album -"
779
+ msgstr "- vælg et album -"
 
 
 
 
 
 
 
 
 
 
 
780
 
781
+ #: wppa-common-functions.php:1995
782
+ msgid "--- none ---"
783
+ msgstr "--- ingen ---"
 
 
784
 
785
+ #: wppa-common-functions.php:2001
786
+ msgid "--- all ---"
787
+ msgstr "--- alle ---"
 
 
 
 
788
 
789
+ #: wppa-common-functions.php:2007
790
+ msgid "--- generic ---"
791
+ msgstr "--- generisk ---"
792
 
793
+ #: wppa-common-functions.php:2018
794
+ msgid "--- multiple see below ---"
795
+ msgstr "--- multipel se nedenfor ---"
796
 
797
+ #: wppa-common-functions.php:2024
798
+ msgid "--- a selection box ---"
799
+ msgstr "--- et valgboksen ---"
 
800
 
801
+ #: wppa-common-functions.php:2058
802
+ msgid "--- separate ---"
803
+ msgstr "--- adskille ---"
804
 
805
+ #: wppa-common-functions.php:2156
806
+ msgid "Photo id ="
807
+ msgstr "Foto id ="
 
808
 
809
+ #: wppa-common-functions.php:2156
810
+ msgid "Value ="
811
+ msgstr "Værdi ="
 
812
 
813
+ #: wppa-exif-iptc-common.php:70 wppa-exif-iptc-common.php:136
814
+ msgid "n.a."
815
+ msgstr "n.a."
 
816
 
817
+ #: wppa-exif-iptc-common.php:214
818
+ msgid "Not Defined"
819
+ msgstr "Ikke Defineret"
 
820
 
821
+ #: wppa-exif-iptc-common.php:215
822
+ msgid "Manual"
823
+ msgstr "Manual"
 
824
 
825
+ #: wppa-exif-iptc-common.php:216
826
+ msgid "Program AE"
827
+ msgstr "Program AE"
 
828
 
829
+ #: wppa-exif-iptc-common.php:217
830
+ msgid "Aperture-priority AE"
831
+ msgstr "Bl&aelig;ndeprioriteret AE"
 
832
 
833
+ #: wppa-exif-iptc-common.php:218
834
+ msgid "Shutter speed priority AE"
835
+ msgstr "Lukkerhastighedsprioritet AE"
 
836
 
837
+ #: wppa-exif-iptc-common.php:219
838
+ msgid "Creative (Slow speed)"
839
+ msgstr "Kreativ (Langsom hastighed)"
840
 
841
+ #: wppa-exif-iptc-common.php:220
842
+ msgid "Action (High speed)"
843
+ msgstr "Handling (h&oslash;j hastighed)"
844
 
845
+ #: wppa-exif-iptc-common.php:221
846
+ msgid "Portrait"
847
+ msgstr "Portr&aelig;t"
848
 
849
+ #: wppa-exif-iptc-common.php:222
850
+ msgid "Landscape"
851
+ msgstr "Landskab"
852
 
853
+ #: wppa-exif-iptc-common.php:223
854
+ msgid "Bulb"
855
+ msgstr "Bulb"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
856
 
857
+ #: wppa-exif-iptc-common.php:245
858
+ msgid "Average"
859
+ msgstr "gennemsnitlig"
860
 
861
+ #: wppa-exif-iptc-common.php:246
862
+ msgid "Center-weighted average"
863
+ msgstr "Centerv&aelig;gtet gennemsnit"
864
 
865
+ #: wppa-exif-iptc-common.php:247
866
+ msgid "Spot"
867
+ msgstr "Spot"
 
868
 
869
+ #: wppa-exif-iptc-common.php:248
870
+ msgid "Multi-spot"
871
+ msgstr "Multi-spot"
872
 
873
+ #: wppa-exif-iptc-common.php:249
874
+ msgid "Multi-segment"
875
+ msgstr "Multi-segment"
 
 
 
876
 
877
+ #: wppa-exif-iptc-common.php:250
878
+ msgid "Partial"
879
+ msgstr "Delvist"
880
 
881
+ #: wppa-exif-iptc-common.php:251
882
+ msgid "Other"
883
+ msgstr "Andet"
 
 
884
 
885
+ #: wppa-exif-iptc-common.php:287
886
+ msgid "No Flash"
887
+ msgstr "Ingen blitz"
888
 
889
+ #: wppa-exif-iptc-common.php:289
890
+ msgid "Fired"
891
+ msgstr "Afskudt"
892
 
893
+ #: wppa-exif-iptc-common.php:291
894
+ msgid "Fired, Return not detected"
895
+ msgstr "Afskudt, returnering er ikke opdaget "
 
896
 
897
+ #: wppa-exif-iptc-common.php:293
898
+ msgid "Fired, Return detected"
899
+ msgstr "Afskudt, returnering er opdaget "
900
 
901
+ #: wppa-exif-iptc-common.php:295
902
+ msgid "On, Did not fire"
903
+ msgstr "Tilsluttet, afsk&oslash;d ikke"
 
904
 
905
+ #: wppa-exif-iptc-common.php:297
906
+ msgid "On, Fired"
907
+ msgstr "Tilsluttet, afskudt"
 
 
908
 
909
+ #: wppa-exif-iptc-common.php:299
910
+ msgid "On, Return not detected"
911
+ msgstr "Tilsluttet, returnering er ikke opdaget "
912
 
913
+ #: wppa-exif-iptc-common.php:301
914
+ msgid "On, Return detected"
915
+ msgstr "Tilsluttet, returnering er opdaget "
 
916
 
917
+ #: wppa-exif-iptc-common.php:303
918
+ msgid "Off, Did not fire"
919
+ msgstr "Slukket, afsk&oslash;d ikke"
 
 
920
 
921
+ #: wppa-exif-iptc-common.php:305
922
+ msgid "Off, Did not fire, Return not detected"
923
+ msgstr "Slukket, afsk&oslash;d ikke, returnering er ikke opdaget "
 
924
 
925
+ #: wppa-exif-iptc-common.php:307
926
+ msgid "Auto, Did not fire"
927
+ msgstr "Automatisk, afsk&oslash;d ikke"
 
928
 
929
+ #: wppa-exif-iptc-common.php:309
930
+ msgid "Auto, Fired"
931
+ msgstr "Automatisk, afskudt"
932
 
933
+ #: wppa-exif-iptc-common.php:311
934
+ msgid "Auto, Fired, Return not detected"
935
+ msgstr "Automatisk, afskudt, returnering er ikke opdaget "
936
 
937
+ #: wppa-exif-iptc-common.php:313
938
+ msgid "Auto, Fired, Return detected"
939
+ msgstr "Automatisk, afskudt, returnering er opdaget "
 
940
 
941
+ #: wppa-exif-iptc-common.php:315
942
+ msgid "No flash function"
943
+ msgstr "Ingen blitz funktion"
 
944
 
945
+ #: wppa-exif-iptc-common.php:317
946
+ msgid "Off, No flash function"
947
+ msgstr "Slukket, ingen blitz funktion"
 
948
 
949
+ #: wppa-exif-iptc-common.php:319
950
+ msgid "Fired, Red-eye reduction"
951
+ msgstr "Afskudt, R&oslash;d-&oslash;je reduktion"
952
 
953
+ #: wppa-exif-iptc-common.php:321
954
+ msgid "Fired, Red-eye reduction, Return not detected"
955
+ msgstr "Afskudt, R&oslash;d-&oslash;je reduktion, returnering er ikke opdaget "
956
 
957
+ #: wppa-exif-iptc-common.php:323
958
+ msgid "Fired, Red-eye reduction, Return detected"
959
+ msgstr "Afskudt, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
960
 
961
+ #: wppa-exif-iptc-common.php:325
962
+ msgid "On, Red-eye reduction"
963
+ msgstr "Tilstuttet, R&oslash;d-&oslash;je reduktion"
964
 
965
+ #: wppa-exif-iptc-common.php:327
966
+ msgid "Red-eye reduction, Return not detected"
967
+ msgstr "R&oslash;d-&oslash;je reduktion, returnering er ikke opdaget "
968
 
969
+ #: wppa-exif-iptc-common.php:329
970
+ msgid "On, Red-eye reduction, Return detected"
971
+ msgstr "Tilstuttet, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
972
 
973
+ #: wppa-exif-iptc-common.php:331
974
+ msgid "Off, Red-eye reduction"
975
+ msgstr "Slukket, R&oslash;d-&oslash;je reduktion"
976
 
977
+ #: wppa-exif-iptc-common.php:333
978
+ msgid "Auto, Did not fire, Red-eye reduction"
979
+ msgstr "Automatisk, Afsk&oslash;d ikke, R&oslash;d-&oslash;je reduktion"
980
 
981
+ #: wppa-exif-iptc-common.php:335
982
+ msgid "Auto, Fired, Red-eye reduction"
983
+ msgstr "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion"
984
 
985
+ #: wppa-exif-iptc-common.php:337
986
+ msgid "Auto, Fired, Red-eye reduction, Return not detected"
987
  msgstr ""
988
+ "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion, returnering er ikke "
989
+ "opdaget "
990
 
991
+ #: wppa-exif-iptc-common.php:339
992
+ msgid "Auto, Fired, Red-eye reduction, Return detected"
993
  msgstr ""
994
+ "Automatisk, Afskudt, R&oslash;d-&oslash;je reduktion, returnering er opdaget "
995
 
996
+ #: wppa-functions.php:551
997
+ msgid "No related photos found."
998
+ msgstr "Ingen relaterede billeder fundet."
 
999
 
1000
+ #: wppa-functions.php:900
1001
+ #, php-format
1002
+ msgid ""
1003
+ "There are %s albums found. Only the first %s will be shown. Please refine "
1004
+ "your search criteria."
1005
  msgstr ""
1006
+ "Der er %s album fundet. Kun den første %s vil blive vist. Venligst forfine "
1007
+ "dine søgekriterier."
1008
 
1009
+ #: wppa-functions.php:1923 wppa-thumbnails.php:588
1010
+ msgid "Are you sure you want to remove this photo?"
1011
+ msgstr "Er du sikker p&aring;, at du vil fjerne dette foto"
1012
 
1013
+ #: wppa-functions.php:1926 wppa-thumbnails.php:590
1014
+ msgid "Delete"
1015
+ msgstr "Slet"
1016
 
1017
+ #: wppa-functions.php:1993
1018
+ #, fuzzy, php-format
1019
+ msgid "%d dislike"
1020
+ msgid_plural "%d dislikes"
1021
+ msgstr[0] "1 antipatier"
1022
+ msgstr[1] "1 antipatier"
1023
 
1024
+ #: wppa-functions.php:1995
1025
+ msgid "including mine"
1026
+ msgstr "herunder minen"
1027
 
1028
+ #: wppa-functions.php:2097
1029
+ msgid "Comment edited"
1030
+ msgstr "Kommentarer redigeret"
1031
 
1032
+ #: wppa-functions.php:2102
1033
+ msgid "Photo comment"
1034
+ msgstr "Foto kommentar"
1035
 
1036
+ #: wppa-functions.php:2106
1037
+ msgid "Comment on photo:"
1038
+ msgstr "Kommentar til billeder"
 
1039
 
1040
+ #: wppa-functions.php:2117
1041
+ msgid "wrote on photo"
1042
+ msgstr "Se fotos"
 
1043
 
1044
+ #: wppa-functions.php:2119
1045
+ msgid "Reply"
1046
+ msgstr "Besvar"
 
1047
 
1048
+ #: wppa-functions.php:2121
1049
+ msgid "Moderate comment admin"
1050
+ msgstr "Godkend kommentar administration"
1051
 
1052
+ #: wppa-functions.php:2124 wppa-functions.php:4143
1053
+ msgid "Moderate manage photo"
1054
+ msgstr "Se fotos"
 
1055
 
1056
+ #: wppa-functions.php:2127
1057
+ msgid "Edit photo"
1058
+ msgstr "N&aelig;ste billede"
 
1059
 
1060
+ #: wppa-functions.php:2138
1061
+ msgid "You receive this email as you are assigned to moderate"
1062
+ msgstr "Du modtager denne e-mail, fordi du er sat til at godkende"
1063
+
1064
+ #: wppa-functions.php:2150
1065
+ msgid "You receive this email as administrator of the site"
1066
  msgstr ""
1067
+ "Du modtager denne e-mail, fordi du er administrator p&aring; hjemmesiden"
1068
 
1069
+ #: wppa-functions.php:2167
1070
+ msgid "You receive this email as uploader of the photo"
1071
+ msgstr "Du modtager denne e-mail, fordi du indsendte et foto"
 
1072
 
1073
+ #: wppa-functions.php:2184
1074
+ msgid "You receive this email as owner of the album"
1075
+ msgstr "Du modtager denne e-mail, fordi du er ejer af albumet"
 
1076
 
1077
+ #: wppa-functions.php:2201
1078
+ msgid "You receive this email because you commented this photo earlier."
1079
  msgstr ""
1080
+ "Du modtager denne e-mail, fordi du kommenterede dette billede tidligere."
1081
 
1082
+ #: wppa-functions.php:2227
1083
+ msgid "Comment added"
1084
+ msgstr "Kommentar tilføjet"
1085
+
1086
+ #: wppa-functions.php:2233
1087
  msgid ""
1088
+ "Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the "
1089
+ "computation."
1090
  msgstr ""
1091
+ "Beklager, du gav et forkert svar.\\n\\nPr&oslash;v venligst igen, at "
1092
+ "l&oslash;se beregningen."
1093
 
1094
+ #: wppa-functions.php:2244
1095
+ msgid "Could not process comment.\\nProbably timed out."
1096
+ msgstr "Kommentar kunne ikke bearbejdes"
1097
 
1098
+ #: wppa-functions.php:2362
1099
+ msgid "A video can not be printed or downloaded"
1100
+ msgstr "En video kan ikke udskrives eller downloades"
 
1101
 
1102
+ #: wppa-functions.php:2797
1103
+ msgid "ERROR: Illegal attempt to enter a rating."
1104
+ msgstr "FEJL: Ulovlig forsøg på at indtaste en rating."
1105
 
1106
+ #: wppa-functions.php:2810
1107
+ msgid "ERROR: Illegal attempt to enter a comment."
1108
+ msgstr "FEJL: Ulovlig forsøg at indtaste en kommentar."
 
1109
 
1110
+ #: wppa-functions.php:3890
1111
+ msgid "New Album"
1112
+ msgstr "Nyt Album"
 
1113
 
1114
+ #: wppa-functions.php:3893
1115
+ msgid "ERROR: Illegal attempt to create an album."
1116
+ msgstr "FEJL: Ulovlig forsøg på at skabe et album."
 
 
 
1117
 
1118
+ #: wppa-functions.php:3897
1119
+ msgid "Wrong captcha, please try again"
1120
+ msgstr "Forkert captcha, prøv igen"
 
1121
 
1122
+ #: wppa-functions.php:3910
1123
  #, php-format
1124
+ msgid "Album #%s created"
1125
+ msgstr "Album #%s oprettet"
 
 
 
 
1126
 
1127
+ #: wppa-functions.php:3915
1128
+ msgid "Could not create album"
1129
+ msgstr "Kunne ikke oprette album"
1130
 
1131
+ #: wppa-functions.php:3926
1132
+ msgid "ERROR: Illegal attempt to upload a file."
1133
+ msgstr "FEJL: Ulovlig forsøg på at uploade en fil."
1134
 
1135
+ #: wppa-functions.php:3966
1136
+ msgid "Photo upload"
1137
+ msgstr "Foto upload"
1138
 
1139
+ #: wppa-functions.php:3967
1140
+ #, fuzzy, php-format
1141
+ msgid "%d photo successfully uploaded"
1142
+ msgid_plural "%d photos successfully uploaded"
1143
+ msgstr[0] "Foto uploadet."
1144
+ msgstr[1] "%s foto's uploadet."
1145
 
1146
+ #: wppa-functions.php:3968
1147
+ #, fuzzy, php-format
1148
+ msgid "%s points added"
1149
+ msgstr "%s kommentarer tilf&oslash;jet"
1150
 
1151
+ #: wppa-functions.php:3972
1152
+ msgid "Upload failed"
1153
+ msgstr "Indl&aelig;sning fejlede"
1154
 
1155
+ #: wppa-functions.php:3975
1156
+ #, fuzzy, php-format
1157
+ msgid "%d upload failed"
1158
+ msgid_plural "%d uploads failed"
1159
+ msgstr[0] "1 Upload mislykkedes"
1160
+ msgstr[1] "%s Uploads mislykkedes"
1161
 
1162
+ #: wppa-functions.php:4015
1163
+ msgid "Error during upload"
1164
+ msgstr "Fejl under upload"
1165
 
1166
+ #: wppa-functions.php:4020
1167
+ msgid "Uploaded file is not an image"
1168
+ msgstr "Uploaded fil er ikke et billede"
 
1169
 
1170
+ #: wppa-functions.php:4024
1171
+ #, php-format
1172
+ msgid ""
1173
+ "Only gif, jpg and png image files are supported. Returned filetype = %d."
1174
  msgstr ""
1175
+ "Kun gif, jpg og png filer underst&oslash;ttes. Den forkerte filtype er %d."
1176
 
1177
+ #: wppa-functions.php:4030
1178
+ #, php-format
1179
+ msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
1180
+ msgstr "Uploadede fil er større end den tilladte maksimum på %d x %d pixel."
1181
 
1182
+ #: wppa-functions.php:4036
1183
+ #, php-format
1184
+ msgid "Uploaded file %s already exists in this album."
1185
+ msgstr "Uploadet fil %s findes allerede i dette album."
1186
 
1187
+ #: wppa-functions.php:4044
1188
+ #, php-format
1189
+ msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
1190
  msgstr ""
1191
+ "Billedet er for stort. Maks. foto st&oslash;rrelse: %d x %d (%2.1f MegaPixel)"
1192
 
1193
+ #: wppa-functions.php:4067
1194
+ msgid "Could not insert photo into db."
1195
+ msgstr "Kunne ikke inds&aelig;tte foto i databasen."
 
1196
 
1197
+ #: wppa-functions.php:4139
1198
+ #, php-format
1199
+ msgid "New photo uploaded: %s"
1200
+ msgstr "Nyt foto indsendt: %s"
1201
 
1202
+ #: wppa-functions.php:4140
1203
+ #, php-format
1204
+ msgid "User %1$s uploaded photo %2$s into album %3$s"
1205
+ msgstr "Bruger %1$s indsendte foto %2$s ind i album %3$s"
1206
 
1207
+ #: wppa-functions.php:4142
1208
+ msgid "This upload requires moderation"
1209
+ msgstr "Denne indsendelse kr&aelig;ver godkendelse"
 
1210
 
1211
+ #: wppa-functions.php:4146
1212
+ msgid "Details:"
1213
+ msgstr "Detaljer:"
 
1214
 
1215
+ #: wppa-functions.php:4147
1216
+ msgid "Manage photo"
1217
+ msgstr "Se fotos"
1218
+
1219
+ #: wppa-functions.php:4283
1220
+ msgid "You can upload after"
1221
+ msgstr "Du kan indsende efter"
1222
 
1223
+ #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1224
+ #: wppa-functions.php:4341 wppa-non-admin.php:720
1225
+ msgid "Download"
1226
+ msgstr "Download"
1227
 
1228
+ #: wppa-functions.php:4364
1229
+ msgid "Zoom in"
1230
+ msgstr "Zoom ind"
1231
 
1232
+ #: wppa-non-admin.php:349
1233
+ msgid "Press f for fullscreen."
1234
+ msgstr "Tryk på f for fuldskærm."
1235
 
1236
+ #: wppa-non-admin.php:422
1237
+ msgid ""
1238
+ "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1239
+ "dismiss this notice."
1240
  msgstr ""
1241
+ "Nøgler: f = næste tilstand; q, x = exit; p = forrige, n = næste, s = start / "
1242
+ "stop, d = afvise denne meddelelse."
1243
 
1244
+ #: wppa-non-admin.php:423
1245
+ msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1246
+ msgstr "Nøgler: f = næste tilstand; q, x = exit; d = afvise denne meddelelse."
1247
 
1248
+ #: wppa-non-admin.php:662 wppa-slideshow.php:228
1249
+ msgid "Start"
1250
+ msgstr "Start"
1251
 
1252
+ #: wppa-non-admin.php:663
1253
+ msgid "Stop"
1254
+ msgstr "Stop"
 
 
1255
 
1256
+ #: wppa-non-admin.php:664 wppa-slideshow.php:220
1257
+ msgid "Slower"
1258
+ msgstr "Langsommere"
 
1259
 
1260
+ #: wppa-non-admin.php:665 wppa-slideshow.php:236
1261
+ msgid "Faster"
1262
+ msgstr "Hurtigere"
1263
 
1264
+ #: wppa-non-admin.php:666
1265
+ msgid "Photo"
1266
+ msgstr "Foto"
 
1267
 
1268
+ #: wppa-non-admin.php:667
1269
+ msgid "of"
1270
+ msgstr "af"
 
1271
 
1272
+ #: wppa-non-admin.php:668
1273
+ msgid "Previous photo"
1274
+ msgstr "Forrige foto"
 
1275
 
1276
+ #: wppa-non-admin.php:669
1277
+ msgid "Next photo"
1278
+ msgstr "Næste foto"
 
1279
 
1280
+ #: wppa-non-admin.php:670
1281
+ msgid "Prev."
1282
+ msgstr "Forrige"
 
1283
 
1284
+ #: wppa-non-admin.php:671 wppa-slideshow.php:990
1285
+ msgid "Next"
1286
+ msgstr "N&aelig;ste"
1287
 
1288
+ #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1289
+ #: wppa-slideshow.php:832
1290
+ msgid "Average&nbsp;rating"
1291
+ msgstr "Bed&oslash;mmelse&nbsp;gennemsnitlig"
1292
 
1293
+ #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1294
+ #: wppa-slideshow.php:814
1295
+ msgid "My&nbsp;rating"
1296
+ msgstr "Min&nbsp;bed&oslash;mmelse"
1297
 
1298
+ #: wppa-non-admin.php:674
1299
+ msgid "Avg."
1300
+ msgstr "Gns."
 
1301
 
1302
+ #: wppa-non-admin.php:675
1303
+ msgid "Mine"
1304
+ msgstr "Mine"
 
1305
 
1306
+ #: wppa-non-admin.php:676
1307
+ msgid "You marked this image as inappropriate."
1308
+ msgstr "Du markeret billedet som upassende."
 
 
1309
 
1310
+ #: wppa-non-admin.php:679
1311
+ msgid "Please enter your name"
1312
+ msgstr "Indtast venligst dit navn."
 
 
 
 
1313
 
1314
+ #: wppa-non-admin.php:680
1315
+ msgid "Please enter a valid email address"
1316
+ msgstr "Indtast venligst en gyldig e-mail adresse"
 
1317
 
1318
+ #: wppa-non-admin.php:681
1319
+ msgid "Please enter a comment"
1320
+ msgstr "Indtast venligst en kommentar"
 
1321
 
1322
+ #: wppa-non-admin.php:715
1323
+ msgid "Double click to start/stop slideshow running"
1324
+ msgstr "Dobbeltklik for at starte / stoppe diasshowet kører"
 
 
1325
 
1326
+ #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1327
+ msgid "wrote"
1328
+ msgstr "skrev"
 
1329
 
1330
+ #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1331
+ #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1332
  #, fuzzy
1333
+ msgid "Photo not found"
1334
+ msgstr "Foto %s ikke fundet."
1335
 
1336
+ #: wppa-non-admin.php:794
1337
  #, fuzzy
1338
+ msgid "There are no commented photos (yet)"
1339
+ msgstr "Nyligt kommenterede fotos"
1340
 
1341
+ #: wppa-non-admin.php:797
1342
  #, fuzzy
1343
+ msgid "View the featured photos"
1344
+ msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
1345
 
1346
+ #: wppa-non-admin.php:799
1347
+ msgid "There are no featured photos (yet)"
1348
  msgstr ""
1349
 
1350
+ #: wppa-non-admin.php:802
1351
+ #, fuzzy
1352
+ msgid "View the most recent uploaded photos"
1353
+ msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
1354
 
1355
+ #: wppa-non-admin.php:804
1356
  #, fuzzy
1357
+ msgid "There are no uploaded photos (yet)"
1358
+ msgstr "Nyligt kommenterede fotos"
1359
 
1360
+ #: wppa-non-admin.php:808
1361
+ msgid "By:"
1362
  msgstr ""
1363
 
1364
+ #: wppa-non-admin.php:811
1365
+ msgid "No album defined (yet)"
 
 
1366
  msgstr ""
1367
 
1368
+ #: wppa-non-admin.php:815
1369
+ msgid "There are no photos (yet)"
1370
  msgstr ""
1371
 
1372
+ #: wppa-non-admin.php:818
1373
+ msgid "There are too many registered users in the system for this widget"
 
1374
  msgstr ""
1375
 
1376
+ #: wppa-non-admin.php:819
1377
  #, fuzzy
1378
+ msgid "Photos uploaded by"
1379
+ msgstr "Foto upload"
 
 
 
 
 
1380
 
1381
+ #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1382
+ #, php-format
1383
+ msgid "%d view"
1384
+ msgid_plural "%d views"
1385
+ msgstr[0] ""
1386
+ msgstr[1] ""
1387
 
1388
+ #: wppa-non-admin.php:825
1389
  #, fuzzy
1390
+ msgid "There are no rated photos (yet)"
1391
+ msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
1392
 
1393
+ #: wppa-slideshow.php:247
1394
+ msgid "Paused"
1395
+ msgstr "Pause"
 
1396
 
1397
+ #: wppa-slideshow.php:255
1398
  msgid ""
1399
+ "To see the full size images, you need to enable javascript in your browser."
 
 
 
 
 
1400
  msgstr ""
1401
+ "For at se billeder i fuld st&oslash;rrelse skal du tillade javascript in din "
1402
+ "browser."
1403
 
1404
+ #: wppa-slideshow.php:600
1405
+ msgid "Checkout"
1406
+ msgstr " til kassen"
 
 
 
 
 
1407
 
1408
+ #: wppa-slideshow.php:660
1409
+ #, php-format
1410
+ msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
1411
+ msgstr "Antal stemmer: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
1412
 
1413
+ #: wppa-slideshow.php:676 wppa-slideshow.php:819 wppa-slideshow.php:881
1414
+ #, php-format
1415
+ msgid "You must <a href=\"%s\">login</a> to vote"
1416
+ msgstr "Du skal <a href=\"%s\">logge ind</a> for at stemme"
1417
 
1418
+ #: wppa-slideshow.php:679 wppa-slideshow.php:822 wppa-slideshow.php:884
1419
+ msgid "You must login to vote"
1420
+ msgstr "Du skal logge ind for at stemme"
 
1421
 
1422
+ #: wppa-slideshow.php:715
1423
+ msgid "very low"
1424
+ msgstr "meget lav"
1425
 
1426
+ #: wppa-slideshow.php:716
1427
+ msgid "low"
1428
+ msgstr "lav"
1429
 
1430
+ #: wppa-slideshow.php:717
1431
+ msgid "average"
1432
+ msgstr "gennemsnitlig"
 
1433
 
1434
+ #: wppa-slideshow.php:718
1435
+ msgid "high"
1436
+ msgstr "h&oslash;j"
1437
 
1438
+ #: wppa-slideshow.php:719
1439
+ msgid "very high"
1440
+ msgstr "meget h&oslash;j"
 
1441
 
1442
+ #: wppa-slideshow.php:766 wppa-slideshow.php:852
1443
+ msgid "Click this if you do NOT like this image!"
1444
+ msgstr "Klik her hvis du IKKE kan lide dette billed!"
 
1445
 
1446
+ #: wppa-slideshow.php:774 wppa-slideshow.php:860
1447
+ msgid "Are you sure you want to mark this image as inappropriate?"
1448
  msgstr ""
1449
+ "Er du sikker p&aring;, at du vil markere dette billed som v&aelig;rende "
1450
+ "upassende."
1451
 
1452
+ #: wppa-slideshow.php:782 wppa-slideshow.php:869
1453
+ msgid "Number of people who marked this photo as inappropriate"
1454
+ msgstr "Antallet af mennesker, der markerede dette billede som upassende"
1455
 
1456
+ #: wppa-slideshow.php:876
1457
+ msgid "My rating:"
1458
+ msgstr "Min vurdering:"
1459
 
1460
+ #: wppa-slideshow.php:968
1461
+ msgid "First"
1462
+ msgstr "Første"
1463
 
1464
+ #: wppa-slideshow.php:977
1465
+ msgid "Previous"
1466
+ msgstr "Forrige"
1467
 
1468
+ #: wppa-slideshow.php:999
1469
+ msgid "Last"
1470
+ msgstr "Sidste"
1471
 
1472
+ #: wppa-slideshow.php:1201
1473
+ #, php-format
1474
+ msgid "Photo %s of %s"
1475
+ msgstr "Foto %s af %s"
1476
 
1477
+ #: wppa-slideshow.php:1253
1478
+ msgid "Click to start/stop"
1479
+ msgstr "Klik for start/stop"
1480
 
1481
+ #: wppa-slideshow.php:1265
1482
+ msgid "- - - Comments box activated - - -"
1483
+ msgstr "- - - Kommentar boks aktiveret - - -"
 
 
 
1484
 
1485
+ #: wppa-slideshow.php:1289
1486
+ msgid "- - - IPTC box activated - - -"
1487
+ msgstr "- - - IPTC boks aktiveret - - -"
 
1488
 
1489
+ #: wppa-slideshow.php:1313
1490
+ msgid "- - - EXIF box activated - - -"
1491
+ msgstr "- - - EXIF boks aktiveret - - -"
1492
 
1493
+ #: wppa-statistics.php:27
1494
+ #, php-format
1495
+ msgid "There is %d photo album"
1496
+ msgid_plural "There are %d photo albums"
1497
+ msgstr[0] ""
1498
+ msgstr[1] ""
1499
 
1500
+ #: wppa-statistics.php:28
1501
  #, fuzzy
1502
+ msgid "The last album added is"
1503
+ msgstr "fotoalbum. Det senest tilf&oslash;jede album er"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1504
 
1505
+ #: wppa-statistics.php:32
1506
+ msgid ", a subalbum of"
1507
+ msgstr ", et underalbum til"
 
 
1508
 
1509
+ #: wppa-thumbnails.php:174 wppa-thumbnails.php:1059
1510
+ msgid "View the top rated photos"
1511
+ msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
 
 
1512
 
1513
+ #: wppa-thumbnails.php:966
1514
+ #, php-format
1515
+ msgid "Missing thumbnail image #%s"
1516
+ msgstr "Manglende miniaturebillede #%s"
 
1517
 
1518
+ #: wppa-thumbnails.php:1841
1519
+ msgid "Gold medal"
1520
+ msgstr "Guldmedalje"
 
 
1521
 
1522
+ #: wppa-thumbnails.php:1842
1523
+ msgid "Silver medal"
1524
+ msgstr "Sølvmedalje"
 
 
1525
 
1526
+ #: wppa-thumbnails.php:1843
1527
+ msgid "Bronze medal"
1528
+ msgstr "Bronzemedalje"
 
 
1529
 
1530
+ #: wppa-video.php:188
1531
  msgid ""
1532
+ "There is no filetype available for your browser, or your browser does not "
1533
+ "support html5 video"
1534
  msgstr ""
1535
+ "Der er ingen filtype til rådighed for din browser, eller din browser "
1536
+ "understøtter ikke HTML5-video"
1537
 
1538
  #. Plugin Name of the plugin/theme
 
1539
  msgid "WP Photo Album Plus"
1540
+ msgstr "WP Photo Album Plus"
1541
 
1542
  #. Plugin URI of the plugin/theme
1543
  msgid "http://wordpress.org/extend/plugins/wp-photo-album-plus/"
1544
+ msgstr "http://wordpress.org/extend/plugins/wp-photo-album-plus/"
1545
 
1546
  #. Description of the plugin/theme
1547
  msgid ""
1548
  "Easily manage and display your photo albums and slideshows within your "
1549
  "WordPress site."
1550
  msgstr ""
1551
+ "Easily manage and display your photo albums and slideshows within your "
1552
+ "WordPress site."
1553
 
1554
  #. Author of the plugin/theme
1555
  msgid "J.N. Breetvelt a.k.a. OpaJaap"
1556
+ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
1557
 
1558
  #. Author URI of the plugin/theme
1559
  msgid "http://wppa.opajaap.nl/"
1560
+ msgstr "http://wppa.opajaap.nl/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wp-photo-album-plus-de_DE.mo CHANGED
Binary file
languages/wp-photo-album-plus-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-11-17 09:04+0100\n"
5
- "PO-Revision-Date: 2015-11-17 09:04+0100\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"
@@ -21,18 +21,11 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
  #: theme/photo-album-page.php:30 theme/photo-album-search-page.php:52
24
- #, fuzzy
25
  msgid "Pages:"
26
- msgstr "Seite"
27
 
28
  #: theme/photo-album-page.php:31 theme/photo-album-search-page.php:53
29
- #: wppa-album-admin-autosave.php:1058 wppa-album-admin-autosave.php:1096
30
- #: wppa-album-admin-autosave.php:1195 wppa-album-admin-autosave.php:1367
31
- #: wppa-album-admin-autosave.php:1462 wppa-album-admin-autosave.php:1536
32
- #: wppa-album-admin-autosave.php:1646 wppa-comment-admin.php:310
33
- #: wppa-comment-admin.php:379 wppa-comment-admin.php:397
34
- #: wppa-functions.php:1909 wppa-thumbnails.php:597
35
- #, fuzzy
36
  msgid "Edit"
37
  msgstr "Bearbeiten"
38
 
@@ -40,9 +33,7 @@ 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:171
44
- #: wppa-settings-autosave.php:396 wppa-settings-autosave.php:3005
45
- #, fuzzy
46
  msgid "Search"
47
  msgstr "Suche"
48
 
@@ -63,17202 +54,1497 @@ msgstr ""
63
  "Entschuldigung. Leider konnte nichts zum angegebenen Schlüsselwort gefunden "
64
  "werden. Bitte versuch es erneut."
65
 
66
- #: theme/wppa-theme.php:323 theme/wppa-theme.php:342
67
- #, fuzzy
68
  msgid "No photos found matching your search criteria."
69
- msgstr "Es wurde kein Album oder Foto mit Deinen Suchangaben gefunden."
70
 
71
- #: theme/wppa-theme.php:326
72
- #, fuzzy
73
  msgid "No albums found matching your search criteria."
74
- msgstr "Es wurde kein Album oder Foto mit Deinen Suchangaben gefunden."
75
 
76
- #: theme/wppa-theme.php:329
77
  msgid "No albums or photos found matching your search criteria."
78
- msgstr "Es wurde kein Album oder Foto mit Deinen Suchangaben gefunden."
79
 
80
- #: wppa-admin-functions.php:27
81
- #, fuzzy
82
- msgid "Settings successfully backed up"
83
- msgstr "--- Das zuletzt hochgeladenen Foto ---"
84
-
85
- #: wppa-admin-functions.php:31
86
- msgid "Unable to backup settings"
87
- msgstr "Nicht in der Lage zu Sicherungseinstellungen"
88
-
89
- #: wppa-admin-functions.php:40
90
- msgid "Error writing to settings backup file"
91
- msgstr "Fehler beim Schreiben in Einstellungen-Sicherungsdatei"
92
 
93
- #: wppa-admin-functions.php:101
94
- msgid "Settings file not found"
95
- msgstr "Einstellungsdatei nicht gefunden"
 
96
 
97
- #: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2247
98
- #: wppa-ajax.php:2254
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:204 wppa-admin-functions.php:208 wppa-ajax.php:2247
103
- #: wppa-ajax.php:2254
104
- msgid "for"
105
- msgstr "für"
106
 
107
- #: wppa-admin-functions.php:208 wppa-ajax.php:2254
108
- msgid "and less than or equal to"
109
- msgstr "und kleiner oder gleich"
 
 
 
110
 
111
- #: wppa-admin-functions.php:223 wppa-album-admin-autosave.php:283
112
- #, fuzzy
113
- msgid "--- public ---"
114
- msgstr "--- alle---"
 
115
 
116
- #: wppa-admin-functions.php:462
117
  #, php-format
118
- msgid "File %s is of an unsupported filetype and has been removed."
119
- msgstr "Datei %s ist ein nicht unterstützter Dateityp und wurde entfernt."
 
 
120
 
121
- #: wppa-admin-functions.php:562 wppa-admin-functions.php:601
122
- #: wppa-admin-functions.php:605 wppa-admin-functions.php:609
123
- msgid "Unexpected error:"
124
- msgstr "Unerwarteter Fehler:"
125
 
126
- #: wppa-admin-functions.php:562
127
- msgid "Missing database table:"
128
- msgstr "Fehlende Datenbanktabelle:"
129
 
130
- #: wppa-admin-functions.php:601
131
- msgid "Missing directory:"
132
- msgstr "Fehlende Verzeichnis:"
133
 
134
- #: wppa-admin-functions.php:605
135
- msgid "Directory is not writable:"
136
- msgstr "Verzeichnis ist nicht beschreibbar:"
137
 
138
- #: wppa-admin-functions.php:609
139
- msgid "Directory is not readable:"
140
- msgstr "Verzeichnis ist nicht lesbar:"
 
 
141
 
142
- #: wppa-admin-functions.php:615
143
  msgid ""
144
- "Please de-activate and re-activate the plugin. If this problem persists, ask "
145
- "your administrator."
146
- msgstr ""
147
-
148
- #: wppa-admin-functions.php:634
149
- #, fuzzy
150
- msgid "Prev page"
151
- msgstr "Vorherige&nbsp;Seite"
152
-
153
- #: wppa-admin-functions.php:647
154
- #, fuzzy
155
- msgid "Next page"
156
- msgstr "Nächste&nbsp;Seite"
157
-
158
- #: wppa-admin-functions.php:749 wppa-admin-functions.php:752
159
- #, php-format
160
- msgid "Album %s is full"
161
- msgstr "Album %s ist voll"
162
-
163
- #: wppa-admin-functions.php:770
164
- #, php-format
165
- msgid "Photo %s already exists in album number %s. Removed from depot."
166
  msgstr ""
 
 
167
 
168
- #: wppa-admin-functions.php:773
169
- #, fuzzy, php-format
170
- msgid "Photo %s already exists in album number %s."
171
- msgstr "Fotos %s hochgeladen zu Album Nr. %s"
172
-
173
- #: wppa-admin-functions.php:803
174
- #, php-format
175
- msgid "ERROR: Attempt to upload a photo that is too large to process (%s)."
176
- msgstr ""
177
 
178
- #: wppa-admin-functions.php:804
179
- msgid "Too big"
180
- msgstr ""
181
 
182
- #: wppa-admin-functions.php:808
183
- msgid ""
184
- "WARNING: You are uploading photos that are too small. Photos must be larger "
185
- "than the thumbnail size and larger than the coverphotosize."
186
- msgstr ""
187
 
188
- #: wppa-admin-functions.php:809
189
- msgid "Too small"
190
- msgstr "Zu klein"
191
 
192
- #: wppa-admin-functions.php:814
193
- msgid "ERROR: Unable to retrieve image size of"
194
- msgstr ""
195
 
196
- #: wppa-admin-functions.php:814
197
- #, fuzzy
198
- msgid "Are you sure it is a photo?"
199
- msgstr "Bist du sicher, das du dieses Foto drehen möchtest?"
200
 
201
- #: wppa-admin-functions.php:815
202
- msgid "No imagesize"
203
- msgstr ""
 
204
 
205
- #: wppa-admin-functions.php:824
206
- msgid "Unsupported mime type encountered:"
207
- msgstr ""
 
208
 
209
- #: wppa-admin-functions.php:841
210
- msgid "Album not known while trying to add a photo"
211
- msgstr ""
212
 
213
- #: wppa-admin-functions.php:845
214
- #, php-format
215
- msgid ""
216
- "Album %s does not exist or is not accessable while trying to add a photo"
217
- msgstr ""
218
 
219
- #: wppa-admin-functions.php:864
220
- #, fuzzy
221
- msgid "Could not insert photo."
222
- msgstr "Konnte Foto nicht einfügen. query="
223
 
224
- #: wppa-admin-functions.php:899
225
- msgid "ERROR: Unknown file or album."
226
- msgstr ""
227
 
228
- #: wppa-admin.php:54
229
- #, fuzzy
230
- msgid "Photo&thinsp;Albums"
231
- msgstr "Foto Alben"
232
 
233
- #: wppa-admin.php:57 wppa-adminbar.php:40 wppa-settings-autosave.php:5520
234
- msgid "Album Admin"
235
- msgstr "Album Admin"
236
 
237
- #: wppa-admin.php:58 wppa-adminbar.php:47 wppa-settings-autosave.php:5521
238
- #: wppa-upload-widget.php:71 wppa-upload.php:88
239
- msgid "Upload Photos"
240
- msgstr "Fotos Hochladen"
 
241
 
242
- #: wppa-admin.php:61 wppa-adminbar.php:53
243
- msgid "Edit Photos"
244
- msgstr "Fotos Bearbeiten"
245
 
246
- #: wppa-admin.php:63 wppa-adminbar.php:61 wppa-settings-autosave.php:5522
247
- #: wppa-upload.php:458
248
- msgid "Import Photos"
249
- msgstr "Fotos Importieren"
250
 
251
- #: wppa-admin.php:64 wppa-adminbar.php:68
252
- msgid "Moderate Photos"
253
- msgstr "Moderiere Fotos"
254
 
255
- #: wppa-admin.php:65 wppa-adminbar.php:75 wppa-export.php:32
256
- #: wppa-settings-autosave.php:5524
257
- msgid "Export Photos"
258
- msgstr "Fotos Exportieren"
259
-
260
- #: wppa-admin.php:66 wppa-adminbar.php:82 wppa-comment-admin.php:215
261
- #: wppa-settings-autosave.php:5525
262
- msgid "Settings"
263
- msgstr "Einstellungen"
264
-
265
- #: wppa-admin.php:67
266
- #, fuzzy
267
- msgid "Photo of the day Widget"
268
- msgstr "Foto des Tages"
269
-
270
- #: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:60
271
- #: wppa-settings-autosave.php:5526 wppa-setup.php:1387
272
- msgid "Photo of the day"
273
- msgstr "Foto des Tages"
274
-
275
- #: wppa-admin.php:68
276
- #, fuzzy
277
- msgid "Manage comments"
278
- msgstr "%d Kommentare"
279
-
280
- #: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:386
281
- #: wppa-settings-autosave.php:2834 wppa-settings-autosave.php:7667
282
- #: wppa-settings-autosave.php:7712
283
- msgid "Comments"
284
- msgstr "Kommentare"
285
-
286
- #: wppa-admin.php:69
287
- #, fuzzy
288
- msgid "Help &amp; Info"
289
- msgstr "Hilfe & Info"
290
-
291
- #: wppa-admin.php:106
292
- msgid "Uploading is temporary diabled for you"
293
- msgstr ""
294
 
295
- #: wppa-admin.php:112
296
- msgid "Editing is temporary diabled for you"
297
- msgstr ""
298
 
299
- #: wppa-admin.php:119
300
- msgid "Importing is temporary diabled for you"
301
- msgstr ""
302
 
303
- #: wppa-admin.php:121 wppa-upload.php:1055
304
- #, fuzzy
305
- msgid "Import"
306
- msgstr "Fotos Importieren"
307
 
308
- #: wppa-admin.php:121 wppa-settings-autosave.php:8734
309
- #, fuzzy
310
- msgid "Update"
311
- msgstr "Erneuere die Plugin Beschreibung"
312
 
313
- #: wppa-adminbar.php:103 wppa-settings-autosave.php:5528
314
- msgid "Help & Info"
315
- msgstr "Hilfe & Info"
316
 
317
- #: wppa-adminbar.php:110
318
- msgid "Docs & Demos"
319
- msgstr "Dokumentationen & Beispiele"
320
 
321
- #: wppa-adminbar.php:118 wppa-album-navigator-widget.php:41
322
- #: wppa-album-navigator-widget.php:84 wppa-album-widget.php:47
323
- msgid "Photo Albums"
324
- msgstr "Foto Alben"
325
 
326
- #: wppa-ajax.php:154
327
- #, fuzzy
328
- msgid ""
329
- "All modifications are instantly updated on the server. The <b style=\"color:"
330
- "#070\" >Remark</b> field keeps you informed on the actions taken at the "
331
- "background."
332
- msgstr ""
333
- "<b>Notiz:</b> Ihren Server erlaubt uploads<b>%s</b> Dateien von insgesamt "
334
- "maximal <b>%s</b> Bytes und es darf <b>%s</b> Sekunden dauern."
335
 
336
- #: wppa-ajax.php:157
337
- #, fuzzy
338
- msgid "Exit & Refresh"
339
- msgstr "Erneuern"
340
 
341
- #: wppa-ajax.php:169 wppa-ajax.php:226 wppa-ajax.php:249 wppa-ajax.php:463
342
- #: wppa-ajax.php:724
343
- msgid "Security check failure"
344
- msgstr ""
345
 
346
- #: wppa-ajax.php:203 wppa-ajax.php:244
347
- msgid "You do not have the rights to moderate photos this way"
348
- msgstr ""
349
 
350
- #: wppa-ajax.php:223
351
  #, php-format
352
- msgid "Failed to update stutus of photo %s"
353
- msgstr ""
354
 
355
- #: wppa-ajax.php:223 wppa-ajax.php:230
356
- msgid "Please refresh the page"
357
- msgstr ""
358
 
359
- #: wppa-ajax.php:230
360
  #, php-format
361
- msgid "Failed to update stutus of comment %s"
362
- msgstr ""
363
 
364
- #: wppa-ajax.php:239 wppa-ajax.php:253
365
- #, fuzzy
366
- msgid "Photo removed"
367
- msgstr "Foto des Tages"
368
 
369
- #: wppa-ajax.php:258
370
- #, fuzzy
371
- msgid "Comment removed"
372
- msgstr "Kommentar bearbeitet"
373
 
374
- #: wppa-ajax.php:259
375
- #, fuzzy
376
- msgid "Could not remove comment"
377
- msgstr "Das Album konnte nicht erstellt werden."
378
 
379
- #: wppa-ajax.php:262 wppa-ajax.php:596
380
- msgid "Unexpected error"
381
- msgstr ""
382
 
383
- #: wppa-ajax.php:268
384
- msgid "This feature is not enabled on this website"
385
- msgstr ""
386
 
387
- #: wppa-ajax.php:280
388
- msgid "The album is empty"
389
- msgstr ""
390
 
391
- #: wppa-ajax.php:289 wppa-ajax.php:426
392
- msgid "Unable to create zip archive"
393
- msgstr ""
394
 
395
- #: wppa-ajax.php:301
396
- #, php-format
397
- msgid "Unable to create zip archive. code = %s"
398
- msgstr ""
399
 
400
- #: wppa-ajax.php:338
401
- #, php-format
402
- msgid "Only %s out of %s photos could be added to the zipfile"
403
- msgstr ""
404
 
405
- #: wppa-ajax.php:367
406
- msgid "Unknown source of request"
407
- msgstr ""
408
 
409
- #: wppa-ajax.php:385
410
- msgid "Empty filename"
411
- msgstr ""
412
 
413
- #: wppa-ajax.php:412
414
- msgid "Unable to create tempdir"
415
- msgstr ""
 
 
 
 
 
 
 
416
 
417
- #: wppa-ajax.php:436
418
- #, fuzzy
419
- msgid "Unknown type"
420
- msgstr "unbekannt"
421
 
422
- #: wppa-ajax.php:445
423
- msgid "The photo does no longer exist"
424
- msgstr ""
425
 
426
- #: wppa-ajax.php:477
427
- msgid "An error occurred while processing you rating request."
428
- msgstr ""
429
 
430
- #: wppa-ajax.php:478
431
- msgid "Maybe you opened the page too long ago to recognize you."
 
 
 
432
  msgstr ""
 
 
433
 
434
- #: wppa-ajax.php:479
435
- msgid "You may refresh the page and try again."
 
 
436
  msgstr ""
 
 
437
 
438
- #: wppa-ajax.php:480
439
  msgid ""
440
- "Althoug an error occurred while processing your rating, your vote has been "
441
- "registered."
442
  msgstr ""
 
 
443
 
444
- #: wppa-ajax.php:481
445
- msgid "However, this may not be reflected in the current pageview"
446
- msgstr ""
447
 
448
- #: wppa-ajax.php:503
449
- #, fuzzy
450
- msgid "Photo has been removed."
451
- msgstr "Foto wurde entfernt."
452
 
453
- #: wppa-ajax.php:512
454
- msgid "Sorry, you can not rate your own photos"
455
- msgstr ""
456
 
457
- #: wppa-ajax.php:524
458
- #, fuzzy
459
- msgid "Please enter a comment."
460
- msgstr "Bitte hinterlasse einen Kommentar"
461
 
462
- #: wppa-ajax.php:549
463
- msgid "Security check failure."
464
- msgstr ""
465
 
466
- #: wppa-ajax.php:561 wppa-ajax.php:577
467
- #, fuzzy
468
- msgid "Photo rated"
469
- msgstr "Foto des Tages"
470
 
471
- #: wppa-ajax.php:676
472
- msgid ""
473
- "Please explain your vote in a comment.\n"
474
- "Your vote will be discarded if you don't.\n"
475
- "\n"
476
- "After completing your comment,\n"
477
- "you can refresh the page to see\n"
478
- "your vote became effective."
479
- msgstr ""
480
 
481
- #: wppa-ajax.php:720
482
- msgid "You do not have the rights to delete a photo"
483
- msgstr ""
484
 
485
- #: wppa-ajax.php:730
486
- #, fuzzy, php-format
487
- msgid "Photo %s has been deleted"
488
- msgstr "Foto wurde entfernt."
489
 
490
- #: wppa-ajax.php:746
491
- msgid "You do not have the rights to update album information"
492
- msgstr ""
493
 
494
- #: wppa-ajax.php:758
495
- msgid "<b>Ratings cleared</b>"
496
- msgstr ""
497
 
498
- #: wppa-ajax.php:758 wppa-ajax.php:764 wppa-photo-admin-autosave.php:317
499
- msgid "No ratings for this photo."
500
- msgstr ""
501
 
502
- #: wppa-ajax.php:761
503
- msgid "An error occurred while clearing ratings"
504
- msgstr ""
505
 
506
- #: wppa-ajax.php:764 wppa-ajax.php:785 wppa-ajax.php:807
507
- msgid "<b>No photos in this album</b>"
508
- msgstr ""
509
 
510
- #: wppa-ajax.php:779
511
- msgid "<b>Tags set to defaults</b> (reload)"
512
- msgstr ""
513
 
514
- #: wppa-ajax.php:782
515
- msgid "An error occurred while setting tags"
516
- msgstr ""
517
 
518
- #: wppa-ajax.php:801
519
- msgid "<b>Tags added width defaults</b> (reload)"
520
- msgstr ""
521
 
522
- #: wppa-ajax.php:804
523
- msgid "An error occurred while adding tags"
524
- msgstr ""
525
 
526
- #: wppa-ajax.php:816
527
- #, php-format
528
- msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
529
- msgstr ""
530
 
531
- #: wppa-ajax.php:818 wppa-ajax.php:1218 wppa-album-admin-autosave.php:352
532
- #: wppa-album-admin-autosave.php:409 wppa-album-admin-autosave.php:1005
533
- #: wppa-album-admin-autosave.php:1142 wppa-album-admin-autosave.php:1314
534
- #: wppa-album-admin-autosave.php:1409 wppa-boxes-html.php:402
535
- #: wppa-boxes-html.php:516 wppa-photo-admin-autosave.php:1334
536
- #: wppa-photo-admin-autosave.php:1453 wppa-settings-autosave.php:452
537
- #: wppa-settings-autosave.php:614 wppa-settings-autosave.php:636
538
- #: wppa-settings-autosave.php:1336 wppa-settings-autosave.php:1357
539
- #: wppa-settings-autosave.php:2731 wppa-settings-autosave.php:2752
540
- #: wppa-settings-autosave.php:3063 wppa-settings-autosave.php:3087
541
- #: wppa-settings-autosave.php:3556 wppa-settings-autosave.php:3670
542
- #: wppa-settings-autosave.php:4238 wppa-settings-autosave.php:4259
543
- #: wppa-settings-autosave.php:4435 wppa-settings-autosave.php:4459
544
- #: wppa-settings-autosave.php:5486 wppa-settings-autosave.php:5994
545
- #: wppa-settings-autosave.php:6016 wppa-settings-autosave.php:6596
546
- #: wppa-settings-autosave.php:6620 wppa-settings-autosave.php:7661
547
- #: wppa-settings-autosave.php:8292 wppa-settings-autosave.php:8448
548
- #: wppa-thumbnail-widget.php:202 wppa-upload.php:166
549
- msgid "Name"
550
- msgstr ""
551
 
552
- #: wppa-ajax.php:821 wppa-ajax.php:1221 wppa-album-admin-autosave.php:1015
553
- #: wppa-album-admin-autosave.php:1152 wppa-album-admin-autosave.php:1324
554
- #: wppa-album-admin-autosave.php:1419 wppa-photo-admin-autosave.php:1335
555
- #: wppa-photo-admin-autosave.php:1454 wppa-settings-autosave.php:453
556
- #: wppa-settings-autosave.php:615 wppa-settings-autosave.php:637
557
- #: wppa-settings-autosave.php:1337 wppa-settings-autosave.php:1358
558
- #: wppa-settings-autosave.php:2732 wppa-settings-autosave.php:2753
559
- #: wppa-settings-autosave.php:3064 wppa-settings-autosave.php:3088
560
- #: wppa-settings-autosave.php:4239 wppa-settings-autosave.php:4260
561
- #: wppa-settings-autosave.php:4436 wppa-settings-autosave.php:4460
562
- #: wppa-settings-autosave.php:5487 wppa-settings-autosave.php:5995
563
- #: wppa-settings-autosave.php:6017 wppa-settings-autosave.php:6597
564
- #: wppa-settings-autosave.php:6621 wppa-settings-autosave.php:8293
565
- #: wppa-settings-autosave.php:8315 wppa-settings-autosave.php:8355
566
- #: wppa-settings-autosave.php:8377 wppa-settings-autosave.php:8423
567
- #: wppa-settings-autosave.php:8449 wppa-widget-admin.php:195
568
- #, fuzzy
569
- msgid "Description"
570
- msgstr "Unsymmetrische Tags in der Album Beschreibung!"
571
-
572
- #: wppa-ajax.php:825
573
- #, fuzzy
574
- msgid "Unbalanced tags in album description!"
575
- msgstr "Eintragen / ändern der Beschreibung des Albums"
576
-
577
- #: wppa-ajax.php:832
578
- msgid "Album order #"
579
  msgstr ""
 
 
580
 
581
- #: wppa-ajax.php:835
582
- #, fuzzy
583
- msgid "Cover photo"
584
- msgstr "Durchsuche Fotos"
585
 
586
- #: wppa-ajax.php:838
587
- #, fuzzy
588
- msgid "Parent album"
589
- msgstr "Das Album konnte nicht erstellt werden."
 
 
590
 
591
- #: wppa-ajax.php:843 wppa-settings-autosave.php:3550
592
- #, fuzzy
593
- msgid "Photo order"
594
- msgstr "Foto des Tages"
595
 
596
- #: wppa-ajax.php:846
597
- msgid "Use Alt thumbsize"
598
- msgstr ""
599
 
600
- #: wppa-ajax.php:849
601
- msgid "Cover Type"
602
- msgstr ""
603
 
604
- #: wppa-ajax.php:852 wppa-settings-autosave.php:4461
605
- #: wppa-settings-autosave.php:5488
606
- #, fuzzy
607
- msgid "Link type"
608
- msgstr "Verweis zu"
609
 
610
- #: wppa-ajax.php:855 wppa-album-covers.php:1256
611
- msgid "Link to"
612
- msgstr "Verweis zu"
613
 
614
- #: wppa-ajax.php:858 wppa-ajax.php:1242 wppa-album-admin-autosave.php:1026
615
- #: wppa-album-admin-autosave.php:1163 wppa-album-admin-autosave.php:1335
616
- #: wppa-album-admin-autosave.php:1430 wppa-boxes-html.php:524
617
- #: wppa-photo-admin-autosave.php:1337 wppa-photo-admin-autosave.php:1456
618
- #: wppa-widget-admin.php:196
619
- msgid "Owner"
620
- msgstr ""
621
 
622
- #: wppa-ajax.php:860
623
- #, php-format
624
- msgid "User %s does not exist"
625
- msgstr ""
626
 
627
- #: wppa-ajax.php:865 wppa-ajax.php:871
628
- #, fuzzy
629
- msgid "Upload limit count"
630
- msgstr "Upload Foto"
631
 
632
- #: wppa-ajax.php:878
633
- #, fuzzy
634
- msgid "Upload limit time"
635
- msgstr "Hochgeladenen datei ist kein Bild"
636
 
637
- #: wppa-ajax.php:882
638
- msgid "Default tags"
639
- msgstr ""
640
 
641
- #: wppa-ajax.php:887
642
- #, fuzzy
643
- msgid "Categories"
644
- msgstr "Kategorien:"
645
 
646
- #: wppa-ajax.php:890
647
- msgid "Sub albums sort order"
648
- msgstr ""
649
 
650
- #: wppa-ajax.php:898 wppa-ajax.php:1312
651
- msgid "Schedule date/time"
652
- msgstr ""
653
 
654
- #: wppa-ajax.php:911 wppa-ajax.php:937
655
  #, php-format
656
- msgid "<b>%s</b> of album %s updated"
657
- msgstr ""
658
-
659
- #: wppa-ajax.php:919
660
- msgid "All photos set to scheduled per date"
661
- msgstr ""
662
 
663
- #: wppa-ajax.php:946
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:947 wppa-ajax.php:1196 wppa-ajax.php:1302
669
- msgid "Press CTRL+F5 and try again."
670
- msgstr ""
671
 
672
- #: wppa-ajax.php:961
673
- msgid "You do not have the rights to update comment status"
674
- msgstr ""
 
 
 
675
 
676
- #: wppa-ajax.php:970
677
  #, php-format
678
- msgid "Status of comment #%s updated"
679
- msgstr ""
680
 
681
- #: wppa-ajax.php:973
682
  #, php-format
683
- msgid "Error updating status comment #%s"
684
- msgstr ""
685
 
686
- #: wppa-ajax.php:984
687
- msgid "You do not have the rights to change photos"
688
- msgstr ""
689
 
690
- #: wppa-ajax.php:993
691
- msgid "Watermark applied"
692
- msgstr ""
693
 
694
- #: wppa-ajax.php:997
695
- msgid "An error occured while trying to apply a watermark"
696
- msgstr ""
697
 
698
- #: wppa-ajax.php:1010
699
- msgid "You do not have the rights to update photo information"
700
- msgstr ""
701
 
702
- #: wppa-ajax.php:1016
703
- #, php-format
704
- msgid "%s updated to %s."
705
- msgstr ""
706
 
707
- #: wppa-ajax.php:1066
708
- #, php-format
709
- msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
710
- msgstr ""
711
 
712
- #: wppa-ajax.php:1070
713
- msgid "Exif date/time updated"
714
- msgstr ""
715
 
716
- #: wppa-ajax.php:1076
717
- msgid "Enter a value > -90 and < 90"
718
- msgstr ""
719
 
720
- #: wppa-ajax.php:1084
721
- msgid "Lattitude updated"
722
- msgstr ""
723
 
724
- #: wppa-ajax.php:1086
725
- #, fuzzy
726
- msgid "Could not update lattitude"
727
- msgstr "Das Album konnte nicht erstellt werden."
728
 
729
- #: wppa-ajax.php:1092
730
- msgid "Enter a value > -180 and < 180"
731
- msgstr ""
732
 
733
- #: wppa-ajax.php:1100
734
- msgid "Longitude updated"
735
- msgstr ""
 
 
 
736
 
737
- #: wppa-ajax.php:1102
738
- #, fuzzy
739
- msgid "Could not update longitude"
740
- msgstr "Das Album konnte nicht erstellt werden."
741
-
742
- #: wppa-ajax.php:1110
743
- #, fuzzy
744
- msgid "Photo files remade"
745
- msgstr "Foto des Tages"
746
-
747
- #: wppa-ajax.php:1113
748
- #, fuzzy
749
- msgid "Could not remake files"
750
- msgstr "Das Album konnte nicht erstellt werden."
751
-
752
- #: wppa-ajax.php:1119
753
- #, fuzzy
754
- msgid "Thumbnail remade"
755
- msgstr "Anzeigen..."
756
-
757
- #: wppa-ajax.php:1122
758
- #, fuzzy
759
- msgid "Could not remake thumbnail"
760
- msgstr "Das Album konnte nicht erstellt werden."
761
-
762
- #: wppa-ajax.php:1132 wppa-photo-admin-autosave.php:183
763
- #: wppa-settings-autosave.php:3366 wppa-tinymce-scripts.php:288
764
- #: wppa-tinymce-shortcodes.php:514 wppa-widget-admin.php:77
765
- msgid "left"
766
- msgstr ""
767
 
768
- #: wppa-ajax.php:1136 wppa-photo-admin-autosave.php:185
769
- msgid "180&deg;"
770
- msgstr ""
771
 
772
- #: wppa-ajax.php:1140 wppa-photo-admin-autosave.php:187
773
- #: wppa-settings-autosave.php:3366 wppa-tinymce-scripts.php:290
774
- #: wppa-tinymce-shortcodes.php:516 wppa-widget-admin.php:79
775
- msgid "right"
776
- msgstr ""
 
 
777
 
778
- #: wppa-ajax.php:1148
779
- #, fuzzy, php-format
780
- msgid "Photo %s rotated %s"
781
- msgstr "Foto %s gedreht %s"
782
 
783
- #: wppa-ajax.php:1151
784
  #, php-format
785
- msgid "An error occurred while trying to rotate photo %s"
786
- msgstr ""
787
 
788
- #: wppa-ajax.php:1161 wppa-ajax.php:1184 wppa-photo-admin-autosave.php:1071
789
- #: wppa-photo-admin-autosave.php:1089
790
- #, fuzzy, php-format
791
- msgid "A photo with filename %s already exists in album %s."
792
- msgstr "Fotos %s hochgeladen zu Album Nr. %s"
793
 
794
- #: wppa-ajax.php:1171
795
- #, fuzzy, php-format
796
- msgid "Photo %s has been moved to album %s (%s)"
797
- msgstr "Foto wurde entfernt."
798
 
799
- #: wppa-ajax.php:1174
800
- #, php-format
801
- msgid "An error occurred while trying to move photo %s"
802
- msgstr ""
803
 
804
- #: wppa-ajax.php:1192
805
- #, php-format
806
- msgid "Photo %s copied to album %s (%s)"
807
- msgstr ""
808
 
809
- #: wppa-ajax.php:1195
810
- #, php-format
811
- msgid "An error occurred while trying to copy photo %s"
812
- msgstr ""
813
 
814
- #: wppa-ajax.php:1225 wppa-ajax.php:1774
815
- #, fuzzy
816
- msgid "Unbalanced tags in photo description!"
817
- msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
818
 
819
- #: wppa-ajax.php:1231
820
- #, fuzzy
821
- msgid "Photo order #"
822
- msgstr "Foto des Tages"
823
 
824
- #: wppa-ajax.php:1236
825
  #, php-format
826
- msgid "User %s does not exists"
827
- msgstr ""
828
 
829
- #: wppa-ajax.php:1245
830
- #, fuzzy
831
- msgid "Link url"
832
- msgstr "Verweis zu"
833
-
834
- #: wppa-ajax.php:1248
835
- #, fuzzy
836
- msgid "Link title"
837
- msgstr "Verweis zu"
838
-
839
- #: wppa-ajax.php:1251
840
- #, fuzzy
841
- msgid "Link target"
842
- msgstr "Verweis zu"
843
-
844
- #: wppa-ajax.php:1257 wppa-multitag-widget.php:34 wppa-multitag-widget.php:66
845
- #: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
846
- #, fuzzy
847
- msgid "Photo Tags"
848
- msgstr "Foto"
849
 
850
- #: wppa-ajax.php:1262 wppa-comment-admin.php:309 wppa-comment-admin.php:396
851
- #: wppa-photo-admin-autosave.php:1336 wppa-photo-admin-autosave.php:1455
852
- #: wppa-settings-autosave.php:6020 wppa-settings-autosave.php:6600
853
- #: wppa-settings-autosave.php:8316 wppa-settings-autosave.php:8356
854
- #: wppa-settings-autosave.php:8378 wppa-settings-autosave.php:8424
855
- msgid "Status"
856
- msgstr ""
857
 
858
- #: wppa-ajax.php:1265
859
- msgid "HTML Alt"
860
- msgstr ""
861
 
862
- #: wppa-ajax.php:1269
863
- msgid "Video width"
864
- msgstr ""
865
 
866
- #: wppa-ajax.php:1271 wppa-ajax.php:1278
867
- #, fuzzy
868
- msgid "Please enter an integer value >= 0"
869
- msgstr "Bitte hinterlasse einen Kommentar"
870
 
871
- #: wppa-ajax.php:1276
872
- msgid "Video height"
873
- msgstr ""
874
 
875
- #: wppa-ajax.php:1294 wppa-ajax.php:1328
876
- #, php-format
877
- msgid "<b>%s</b> of video %s updated"
878
- msgstr ""
879
 
880
- #: wppa-ajax.php:1297 wppa-ajax.php:1331
881
  #, php-format
882
- msgid "<b>%s</b> of photo %s updated"
883
- msgstr ""
 
 
884
 
885
- #: wppa-ajax.php:1301
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:1357
891
  #, php-format
892
- msgid "<b>Custom field %s</b> of photo %s updated"
893
- msgstr ""
894
-
895
- #: wppa-ajax.php:1364
896
- #, fuzzy
897
- msgid "<b>Error during upload.</b>"
898
- msgstr "Fehler beim Hochladen"
899
 
900
- #: wppa-ajax.php:1389
901
- #, fuzzy
902
- msgid "Photo files updated."
903
- msgstr "Foto des Tages"
 
 
904
 
905
- #: wppa-ajax.php:1394
906
- #, fuzzy
907
- msgid "Could not update files."
908
- msgstr "Das Album konnte nicht erstellt werden."
 
 
909
 
910
- #: wppa-ajax.php:1405
911
  #, php-format
912
- msgid "Stereo mode updated in %d milliseconds"
913
- msgstr ""
 
 
914
 
915
- #: wppa-ajax.php:1421
916
- msgid "You do not have the rights to update settings"
917
- msgstr ""
 
 
 
918
 
919
- #: wppa-ajax.php:1502
920
- msgid "Capability granted"
921
- msgstr ""
922
 
923
- #: wppa-ajax.php:1507
924
- msgid "Capability withdrawn"
925
- msgstr ""
 
926
 
927
- #: wppa-ajax.php:1518
928
- msgid "Column width."
 
 
 
929
  msgstr ""
 
 
930
 
931
- #: wppa-ajax.php:1521
932
- msgid "Initial width."
933
- msgstr ""
934
 
935
- #: wppa-ajax.php:1524
936
- msgid "Full size."
937
- msgstr ""
938
 
939
- #: wppa-ajax.php:1527
940
- msgid "Max height."
941
- msgstr ""
942
 
943
- #: wppa-ajax.php:1530
944
- #, fuzzy
945
- msgid "Thumbnail size."
946
- msgstr "Anzeigen..."
947
-
948
- #: wppa-ajax.php:1533
949
- #, fuzzy
950
- msgid "Thumbnail frame width"
951
- msgstr "Anzeigen..."
952
-
953
- #: wppa-ajax.php:1536
954
- #, fuzzy
955
- msgid "Thumbnail frame height"
956
- msgstr "Miniaturbild Fotos"
957
-
958
- #: wppa-ajax.php:1539
959
- #, fuzzy
960
- msgid "Thumbnail Spacing"
961
- msgstr "Anzeigen..."
962
-
963
- #: wppa-ajax.php:1542
964
- #, fuzzy
965
- msgid "Photocount treshold."
966
- msgstr "Foto wurde nicht gefunden."
967
-
968
- #: wppa-ajax.php:1545
969
- #, fuzzy
970
- msgid "Thumb page size."
971
- msgstr "Anzeigen..."
972
-
973
- #: wppa-ajax.php:1548
974
- #, fuzzy
975
- msgid "Cover photo size."
976
- msgstr "Bitte gibt den Fotonamen an."
977
-
978
- #: wppa-ajax.php:1551
979
- msgid "Album page size."
980
- msgstr ""
981
 
982
- #: wppa-ajax.php:1554
983
- #, fuzzy
984
- msgid "Number of TopTen photos"
985
- msgstr "Besten 10 Fotos"
986
 
987
- #: wppa-ajax.php:1557
988
- #, fuzzy
989
- msgid "Widget image thumbnail size"
990
- msgstr "Anzeigen..."
991
 
992
- #: wppa-ajax.php:1560 wppa-settings-autosave.php:1013
993
- msgid "Max Cover width"
994
- msgstr ""
995
 
996
- #: wppa-ajax.php:1563
997
- #, fuzzy
998
- msgid "Minimal description height"
999
- msgstr "Eintragen / ändern der Beschreibung des Albums"
1000
 
1001
- #: wppa-ajax.php:1566
1002
- msgid "Minimal cover height"
1003
- msgstr ""
1004
 
1005
- #: wppa-ajax.php:1569
1006
- msgid "Minimal text frame height"
1007
- msgstr ""
1008
 
1009
- #: wppa-ajax.php:1572
1010
- msgid "Border width"
1011
- msgstr ""
1012
 
1013
- #: wppa-ajax.php:1575 wppa-settings-autosave.php:713
1014
- msgid "Border radius"
1015
- msgstr ""
1016
 
1017
- #: wppa-ajax.php:1578 wppa-settings-autosave.php:724
1018
- msgid "Box spacing"
1019
- msgstr ""
1020
 
1021
- #: wppa-ajax.php:1584 wppa-settings-autosave.php:988
1022
- msgid "Popup size"
1023
- msgstr ""
1024
 
1025
- #: wppa-ajax.php:1587
1026
- msgid "Fullsize border width"
1027
- msgstr ""
1028
 
1029
- #: wppa-ajax.php:1590
1030
- msgid "Lightbox Bordersize"
1031
- msgstr ""
1032
 
1033
- #: wppa-ajax.php:1593
1034
- msgid "Number of Comment widget entries"
1035
- msgstr ""
1036
 
1037
- #: wppa-ajax.php:1596
1038
- msgid "Comment Widget image thumbnail size"
1039
- msgstr ""
1040
 
1041
- #: wppa-ajax.php:1599 wppa-ajax.php:1602 wppa-ajax.php:1605
1042
- msgid "Opacity."
1043
- msgstr ""
1044
 
1045
- #: wppa-ajax.php:1614 wppa-settings-autosave.php:1119
1046
- msgid "Avatar size"
1047
- msgstr ""
1048
 
1049
- #: wppa-ajax.php:1617 wppa-ajax.php:1620
1050
- msgid "Watermark opacity"
1051
- msgstr ""
1052
 
1053
- #: wppa-ajax.php:1623 wppa-settings-autosave.php:1288
1054
- msgid "Number of text lines"
1055
- msgstr ""
1056
 
1057
- #: wppa-ajax.php:1626 wppa-settings-autosave.php:4137
1058
- msgid "Overlay opacity"
1059
- msgstr ""
1060
 
1061
- #: wppa-ajax.php:1629 wppa-settings-autosave.php:7120
1062
- #, fuzzy
1063
- msgid "Upload limit"
1064
- msgstr "Upload Foto"
1065
 
1066
- #: wppa-ajax.php:1632 wppa-settings-autosave.php:3845
1067
- msgid "Notify inappropriate"
1068
- msgstr ""
1069
 
1070
- #: wppa-ajax.php:1635
1071
- msgid "Dislike pending"
1072
- msgstr ""
1073
 
1074
- #: wppa-ajax.php:1638
1075
- #, fuzzy
1076
- msgid "Dislike delete"
1077
- msgstr "Löschen"
1078
 
1079
- #: wppa-ajax.php:1641 wppa-settings-autosave.php:6696
1080
- msgid "Max execution time"
1081
- msgstr ""
1082
 
1083
- #: wppa-ajax.php:1646
1084
- msgid "Cube Points points"
1085
- msgstr ""
1086
 
1087
- #: wppa-ajax.php:1649
1088
- msgid "JPG Image quality"
1089
- msgstr ""
1090
 
1091
- #: wppa-ajax.php:1655 wppa-settings-autosave.php:3759
1092
- #, fuzzy
1093
- msgid "Number of coverphotos"
1094
- msgstr "Titelfotos ansehen"
1095
 
1096
- #: wppa-ajax.php:1658 wppa-settings-autosave.php:3816
1097
- msgid "Dislike value"
1098
- msgstr ""
1099
 
1100
- #: wppa-ajax.php:1661 wppa-settings-autosave.php:844
1101
- #, fuzzy
1102
- msgid "Slideshow pagesize"
1103
- msgstr "Diaschau"
1104
 
1105
- #: wppa-ajax.php:1664 wppa-settings-autosave.php:742
1106
- msgid "Max Pagelinks"
1107
- msgstr ""
1108
 
1109
- #: wppa-ajax.php:1671
1110
- msgid "Ratings cleared"
1111
- msgstr ""
1112
 
1113
- #: wppa-ajax.php:1674
1114
- #, fuzzy
1115
- msgid "Could not clear ratings"
1116
- msgstr "Das Album konnte nicht erstellt werden."
1117
 
1118
- #: wppa-ajax.php:1683
1119
- msgid "Viewcounts cleared"
1120
- msgstr ""
1121
 
1122
- #: wppa-ajax.php:1686
1123
- #, fuzzy
1124
- msgid "Could not clear viewcounts"
1125
- msgstr "Das Album konnte nicht erstellt werden."
1126
 
1127
- #: wppa-ajax.php:1696
1128
- #, fuzzy
1129
- msgid "IPTC data cleared"
1130
- msgstr "IPTC Daten"
1131
 
1132
- #: wppa-ajax.php:1697
1133
- msgid "Refresh this page to clear table X"
1134
- msgstr ""
1135
 
1136
- #: wppa-ajax.php:1701
1137
- #, fuzzy
1138
- msgid "Could not clear IPTC data"
1139
- msgstr "Das Album konnte nicht erstellt werden."
1140
 
1141
- #: wppa-ajax.php:1711
1142
- #, fuzzy
1143
- msgid "EXIF data cleared"
1144
- msgstr "EXIF Daten"
1145
 
1146
- #: wppa-ajax.php:1712
1147
- msgid "Refresh this page to clear table XI"
1148
- msgstr ""
1149
 
1150
- #: wppa-ajax.php:1716
1151
- #, fuzzy
1152
- msgid "Could not clear EXIF data"
1153
- msgstr "Das Album konnte nicht erstellt werden."
1154
 
1155
- #: wppa-ajax.php:1724
1156
- msgid "Recuperation performed"
1157
- msgstr ""
1158
 
1159
- #: wppa-ajax.php:1739
1160
- msgid ""
1161
- "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1162
- "#77bbff"
1163
- msgstr ""
1164
 
1165
- #: wppa-ajax.php:1765
1166
- msgid "You just changed a setting that requires the recalculation of ratings."
1167
- msgstr ""
1168
 
1169
- #: wppa-ajax.php:1766 wppa-ajax.php:2134
1170
- msgid "Please run the appropriate action in Table VIII."
1171
- msgstr ""
1172
 
1173
- #: wppa-ajax.php:1790 wppa-ajax.php:1806
1174
- #, php-format
1175
- msgid "Unable to create or write to %s"
1176
- msgstr ""
1177
 
1178
- #: wppa-ajax.php:1799
1179
- msgid "Source can not be inside the wppa folder."
1180
- msgstr ""
1181
 
1182
- #: wppa-ajax.php:1816
1183
- msgid "The content must contain w#album"
1184
- msgstr ""
1185
 
1186
- #: wppa-ajax.php:1823
1187
- msgid "The content must contain w#lat and w#lon"
1188
- msgstr ""
1189
 
1190
- #: wppa-ajax.php:1865 wppa-ajax.php:1871
1191
- msgid "Members"
1192
- msgstr ""
1193
 
1194
- #: wppa-ajax.php:1865
1195
- msgid "Parent of the member albums"
1196
- msgstr ""
1197
 
1198
- #: wppa-ajax.php:2009
1199
- #, php-format
1200
- msgid "User %s has been blacklisted."
1201
- msgstr ""
1202
 
1203
- #: wppa-ajax.php:2012
1204
  #, php-format
1205
- msgid "User %s does not exist."
1206
- msgstr ""
1207
-
1208
- #: wppa-ajax.php:2035
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:2039 wppa-ajax.php:2054
1215
- msgid "The display of the custom box has been enabled"
1216
- msgstr ""
1217
-
1218
- #: wppa-ajax.php:2050
1219
- msgid "The content of the Custom box has been changed to display maps."
1220
  msgstr ""
 
 
1221
 
1222
- #: wppa-ajax.php:2080
1223
- msgid "This value can not be empty"
1224
- msgstr ""
1225
 
1226
- #: wppa-ajax.php:2112
1227
- #, php-format
1228
- msgid "Failed to set %s to %s"
1229
- msgstr ""
1230
 
1231
- #: wppa-ajax.php:2117
1232
  #, php-format
1233
- msgid "Setting %s updated to %s"
1234
- msgstr ""
 
 
1235
 
1236
- #: wppa-ajax.php:2133
1237
- msgid ""
1238
- "You just changed a setting that requires the regeneration of thumbnails."
1239
- msgstr ""
1240
 
1241
- #: wppa-ajax.php:2188
1242
- msgid "Missing album id"
1243
- msgstr ""
1244
 
1245
- #: wppa-ajax.php:2208
1246
- msgid "You do not have the rights to delete this album"
1247
- msgstr ""
1248
 
1249
- #: wppa-ajax.php:2249 wppa-ajax.php:2256
1250
- #, fuzzy
1251
- msgid "You may also enter:"
1252
- msgstr "bevor Du Deine Fotos hochladen kannst."
1253
 
1254
- #: wppa-ajax.php:2250 wppa-ajax.php:2257
1255
- #, fuzzy
1256
- msgid "You may also leave/set this blank"
1257
- msgstr "Hinterlasse einen Kommentar"
1258
 
1259
- #: wppa-album-admin-autosave.php:23 wppa-album-admin-autosave.php:706
1260
- #, fuzzy
1261
- msgid "Upload to this album"
1262
- msgstr ""
1263
- "Unter Foto Alben -> Fotos hochladen kannst Du nun Deine Fotos hochladen. "
1264
- "Lade mindestens 2 Fotos für jedes Album hoch. Stelle sicher das Deine Fotos "
1265
- "eine brauchbare Auflösung haben (ca. bis zu 1024x768 Pixel)."
1266
 
1267
- #: wppa-album-admin-autosave.php:37
1268
- msgid "Warning:"
1269
- msgstr ""
1270
 
1271
- #: wppa-album-admin-autosave.php:37
1272
- #, php-format
1273
- msgid ""
1274
- "The uploads directory does not exist or is not writable by the server. "
1275
- "Please make sure that %s is writeable by the server."
1276
- msgstr ""
1277
-
1278
- #: wppa-album-admin-autosave.php:75 wppa-album-admin-autosave.php:746
1279
- #, fuzzy
1280
- msgid "Manage Photos"
1281
- msgstr "Verwalte Fotos"
1282
-
1283
- #: wppa-album-admin-autosave.php:76 wppa-album-admin-autosave.php:747
1284
- msgid "Copy / move / delete / edit name / edit description / change status"
1285
- msgstr ""
1286
-
1287
- #: wppa-album-admin-autosave.php:77 wppa-album-admin-autosave.php:749
1288
- msgid "Edit photo information except copy and move"
1289
- msgstr ""
1290
-
1291
- #: wppa-album-admin-autosave.php:78 wppa-album-admin-autosave.php:750
1292
- #, fuzzy
1293
- msgid "Edit photo information"
1294
- msgstr "Foto bearbeiten"
1295
-
1296
- #: wppa-album-admin-autosave.php:81 wppa-album-admin-autosave.php:88
1297
- msgid "Back to album table"
1298
- msgstr ""
1299
-
1300
- #: wppa-album-admin-autosave.php:87 wppa-album-admin-autosave.php:757
1301
- msgid "Top of page"
1302
- msgstr ""
1303
-
1304
- #: wppa-album-admin-autosave.php:114 wppa-functions.php:3871
1305
- #: wppa-settings-autosave.php:7006 wppa-wpdb-insert.php:329
1306
- #, fuzzy
1307
- msgid "New Album"
1308
- msgstr "Das Album konnte nicht erstellt werden."
1309
-
1310
- #: wppa-album-admin-autosave.php:119 wppa-upload.php:1555 wppa-upload.php:1591
1311
- #: wppa-upload.php:2351
1312
- #, fuzzy
1313
- msgid "Could not create album."
1314
- msgstr "Das Album konnte nicht erstellt werden."
1315
-
1316
- #: wppa-album-admin-autosave.php:127 wppa-upload.php:1561 wppa-upload.php:2359
1317
- #, fuzzy
1318
- msgid "Album #"
1319
- msgstr "Alben:"
1320
-
1321
- #: wppa-album-admin-autosave.php:127 wppa-upload.php:1561 wppa-upload.php:2359
1322
- msgid "Added."
1323
- msgstr ""
1324
-
1325
- #: wppa-album-admin-autosave.php:172
1326
- #, fuzzy
1327
- msgid "Edit Album Information"
1328
- msgstr "Bearbeiten"
1329
-
1330
- #: wppa-album-admin-autosave.php:172 wppa-settings-autosave.php:292
1331
- #, fuzzy
1332
- msgid "Auto Save"
1333
- msgstr "Automatisch Gespeichert"
1334
-
1335
- #: wppa-album-admin-autosave.php:174
1336
- #, fuzzy
1337
- msgid ""
1338
- "All modifications are instantly updated on the server, except for those that "
1339
- "require a button push."
1340
- msgstr ""
1341
- "<b>Notiz:</b> Ihren Server erlaubt uploads<b>%s</b> Dateien von insgesamt "
1342
- "maximal <b>%s</b> Bytes und es darf <b>%s</b> Sekunden dauern."
1343
-
1344
- #: wppa-album-admin-autosave.php:175
1345
- #, fuzzy
1346
- msgid ""
1347
- "The <b style=\"color:#070\" >Remark</b> fields keep you informed on the "
1348
- "actions taken at the background."
1349
- msgstr ""
1350
- "<b>Notiz:</b> Ihren Server erlaubt uploads<b>%s</b> Dateien von insgesamt "
1351
- "maximal <b>%s</b> Bytes und es darf <b>%s</b> Sekunden dauern."
1352
-
1353
- #: wppa-album-admin-autosave.php:179
1354
- #, fuzzy
1355
- msgid "Album number:"
1356
- msgstr "Album #"
1357
-
1358
- #: wppa-album-admin-autosave.php:188
1359
- msgid "Name:"
1360
- msgstr ""
1361
-
1362
- #: wppa-album-admin-autosave.php:195
1363
- #, fuzzy
1364
- msgid "Update Album name"
1365
- msgstr "Erneuere die Plugin Beschreibung"
1366
-
1367
- #: wppa-album-admin-autosave.php:203
1368
- msgid "Type the name of the album. Do not leave this empty."
1369
- msgstr ""
1370
-
1371
- #: wppa-album-admin-autosave.php:211 wppa-photo-admin-autosave.php:724
1372
- #: wppa-photo-admin-autosave.php:749
1373
- #, fuzzy
1374
- msgid "Description:"
1375
- msgstr "Unsymmetrische Tags in der Album Beschreibung!"
1376
-
1377
- #: wppa-album-admin-autosave.php:222
1378
- #, fuzzy
1379
- msgid "Update Album description"
1380
- msgstr "Unsymmetrische Tags in der Album Beschreibung!"
1381
-
1382
- #: wppa-album-admin-autosave.php:232
1383
- #, fuzzy
1384
- msgid "Enter / modify the description for this album."
1385
- msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
1386
-
1387
- #: wppa-album-admin-autosave.php:240
1388
- #, fuzzy
1389
- msgid "Created:"
1390
- msgstr "Das Album konnte nicht erstellt werden."
1391
-
1392
- #: wppa-album-admin-autosave.php:243 wppa-album-admin-autosave.php:254
1393
- #: wppa-photo-admin-autosave.php:256 wppa-photo-admin-autosave.php:279
1394
- msgid "local time"
1395
- msgstr ""
1396
-
1397
- #: wppa-album-admin-autosave.php:249 wppa-photo-admin-autosave.php:274
1398
- msgid "Modified:"
1399
- msgstr ""
1400
-
1401
- #: wppa-album-admin-autosave.php:257 wppa-photo-admin-autosave.php:282
1402
- #: wppa-photo-admin-autosave.php:1443
1403
- #, fuzzy
1404
- msgid "Not modified"
1405
- msgstr "definiert, bei Widget-Aktivierung."
1406
-
1407
- #: wppa-album-admin-autosave.php:266 wppa-thumbnails.php:645
1408
- #: wppa-thumbnails.php:1420
1409
- #, fuzzy
1410
- msgid "Views:"
1411
- msgstr "Ansehen"
1412
-
1413
- #: wppa-album-admin-autosave.php:279 wppa-photo-admin-autosave.php:260
1414
- msgid "Owned by:"
1415
- msgstr ""
1416
-
1417
- #: wppa-album-admin-autosave.php:297
1418
- msgid ""
1419
- "WARNING If you change the owner, you will no longer be able to modify this "
1420
- "album and upload or import photos to it!"
1421
- msgstr ""
1422
-
1423
- #: wppa-album-admin-autosave.php:299
1424
- msgid "Enter user login name or <b>--- public ---</b>"
1425
- msgstr ""
1426
-
1427
- #: wppa-album-admin-autosave.php:308
1428
- msgid "Album sort order #:"
1429
- msgstr ""
1430
-
1431
- #: wppa-album-admin-autosave.php:316
1432
- msgid ""
1433
- "Album order # has only effect if you set the album sort order method to "
1434
- "<b>Order #</b> in the Photo Albums -> Settings screen.<br />"
1435
- msgstr ""
1436
-
1437
- #: wppa-album-admin-autosave.php:319
1438
- msgid ""
1439
- "If you want to sort the albums by order #, enter / modify the order number "
1440
- "here."
1441
- msgstr ""
1442
-
1443
- #: wppa-album-admin-autosave.php:326 wppa-tinymce-shortcodes.php:294
1444
- #: wppa-tinymce-shortcodes.php:320 wppa-tinymce-shortcodes.php:459
1445
- #, fuzzy
1446
- msgid "Parent album:"
1447
- msgstr "Das Album konnte nicht erstellt werden."
1448
-
1449
- #: wppa-album-admin-autosave.php:337
1450
- msgid ""
1451
- "If this is a sub album, select the album in which this album will appear."
1452
- msgstr ""
1453
-
1454
- #: wppa-album-admin-autosave.php:346
1455
- #, fuzzy
1456
- msgid "Photo order:"
1457
- msgstr "Foto des Tages"
1458
-
1459
- #: wppa-album-admin-autosave.php:350 wppa-album-admin-autosave.php:451
1460
- #: wppa-settings-autosave.php:3593 wppa-settings-autosave.php:3617
1461
- #, fuzzy
1462
- msgid "--- default ---"
1463
- msgstr "--- gelöscht ---"
1464
-
1465
- #: wppa-album-admin-autosave.php:351 wppa-album-admin-autosave.php:407
1466
- #: wppa-settings-autosave.php:3555 wppa-settings-autosave.php:3669
1467
- #: wppa-thumbnail-widget.php:201
1468
- msgid "Order #"
1469
- msgstr ""
1470
-
1471
- #: wppa-album-admin-autosave.php:353 wppa-album-admin-autosave.php:406
1472
- #: wppa-settings-autosave.php:3557 wppa-settings-autosave.php:3671
1473
- #: wppa-thumbnail-widget.php:203 wppa-widget-admin.php:142
1474
- msgid "Random"
1475
- msgstr ""
1476
-
1477
- #: wppa-album-admin-autosave.php:354 wppa-settings-autosave.php:3558
1478
- msgid "Rating mean value"
1479
- msgstr ""
1480
-
1481
- #: wppa-album-admin-autosave.php:355 wppa-bestof-widget.php:170
1482
- #: wppa-settings-autosave.php:3559 wppa-topten-widget.php:237
1483
- msgid "Number of votes"
1484
- msgstr ""
1485
-
1486
- #: wppa-album-admin-autosave.php:356 wppa-album-admin-autosave.php:411
1487
- #: wppa-settings-autosave.php:3560 wppa-settings-autosave.php:3672
1488
- msgid "Timestamp"
1489
- msgstr ""
1490
-
1491
- #: wppa-album-admin-autosave.php:357 wppa-photo-admin-autosave.php:291
1492
- #: wppa-settings-autosave.php:3561
1493
- #, fuzzy
1494
- msgid "EXIF Date"
1495
- msgstr "EXIF Daten"
1496
-
1497
- #: wppa-album-admin-autosave.php:358 wppa-settings-autosave.php:3562
1498
- #: wppa-settings-autosave.php:3673
1499
- msgid "Order # desc"
1500
- msgstr ""
1501
-
1502
- #: wppa-album-admin-autosave.php:359 wppa-settings-autosave.php:3563
1503
- #: wppa-settings-autosave.php:3674
1504
- msgid "Name desc"
1505
- msgstr ""
1506
-
1507
- #: wppa-album-admin-autosave.php:360 wppa-settings-autosave.php:3564
1508
- #: wppa-thumbnail-widget.php:204
1509
- msgid "Rating mean value desc"
1510
- msgstr ""
1511
-
1512
- #: wppa-album-admin-autosave.php:361 wppa-settings-autosave.php:3565
1513
- #: wppa-thumbnail-widget.php:205
1514
- msgid "Number of votes desc"
1515
- msgstr ""
1516
-
1517
- #: wppa-album-admin-autosave.php:362 wppa-settings-autosave.php:3566
1518
- #: wppa-settings-autosave.php:3675 wppa-thumbnail-widget.php:206
1519
- msgid "Timestamp desc"
1520
- msgstr ""
1521
-
1522
- #: wppa-album-admin-autosave.php:363 wppa-settings-autosave.php:3567
1523
- msgid "EXIF Date desc"
1524
- msgstr ""
1525
-
1526
- #: wppa-album-admin-autosave.php:392
1527
- msgid "Specify the way the photos should be ordered in this album."
1528
- msgstr ""
1529
-
1530
- #: wppa-album-admin-autosave.php:393
1531
- msgid ""
1532
- "The default setting can be changed in the <b>Photo Albums -> Settings</b> "
1533
- "page <b>Table IV-C1</b>."
1534
- msgstr ""
1535
-
1536
- #: wppa-album-admin-autosave.php:401
1537
- msgid "Sub album sort order:"
1538
- msgstr ""
1539
-
1540
- #: wppa-album-admin-autosave.php:405
1541
- msgid "See Table IV-D1"
1542
- msgstr ""
1543
-
1544
- #: wppa-album-admin-autosave.php:408
1545
- msgid "Order # reverse"
1546
- msgstr ""
1547
-
1548
- #: wppa-album-admin-autosave.php:410
1549
- msgid "Name reverse"
1550
- msgstr ""
1551
-
1552
- #: wppa-album-admin-autosave.php:412
1553
- msgid "Timestamp reverse"
1554
- msgstr ""
1555
-
1556
- #: wppa-album-admin-autosave.php:417
1557
- msgid ""
1558
- "Specify the sequence order method to be used for the sub albums of this "
1559
- "album."
1560
- msgstr ""
1561
-
1562
- #: wppa-album-admin-autosave.php:426
1563
- msgid "Use alt thumbsize:"
1564
- msgstr ""
1565
-
1566
- #: wppa-album-admin-autosave.php:430 wppa-bestof-widget.php:182
1567
- #: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
1568
- #: wppa-topten-widget.php:245 wppa-topten-widget.php:253
1569
- #: wppa-topten-widget.php:258 wppa-topten-widget.php:263
1570
- #: wppa-topten-widget.php:268 wppa-topten-widget.php:273
1571
- #, fuzzy
1572
- msgid "no"
1573
- msgstr "--- kein ---"
1574
-
1575
- #: wppa-album-admin-autosave.php:431 wppa-bestof-widget.php:181
1576
- #: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
1577
- #: wppa-super-view-widget.php:85 wppa-topten-widget.php:244
1578
- #: wppa-topten-widget.php:252 wppa-topten-widget.php:257
1579
- #: wppa-topten-widget.php:262 wppa-topten-widget.php:267
1580
- #: wppa-topten-widget.php:272
1581
- #, fuzzy
1582
- msgid "yes"
1583
- msgstr "Jahre"
1584
-
1585
- #: wppa-album-admin-autosave.php:436
1586
- msgid ""
1587
- "If set to <b>yes</b> The settings in <b>Table I-C1a,3a</b> and <b>4a</b> "
1588
- "apply rather than <b>I-C1,3</b> and <b>4</b>."
1589
- msgstr ""
1590
-
1591
- #: wppa-album-admin-autosave.php:446
1592
- msgid "Cover Type:"
1593
- msgstr ""
1594
-
1595
- #: wppa-album-admin-autosave.php:452 wppa-settings-autosave.php:1887
1596
- #: wppa-settings-autosave.php:3739
1597
- msgid "Standard"
1598
- msgstr ""
1599
-
1600
- #: wppa-album-admin-autosave.php:453 wppa-settings-autosave.php:3740
1601
- #, fuzzy
1602
- msgid "Long Descriptions"
1603
- msgstr "Unsymmetrische Tags in der Album Beschreibung!"
1604
-
1605
- #: wppa-album-admin-autosave.php:454 wppa-settings-autosave.php:3741
1606
- msgid "Image Factory"
1607
- msgstr ""
1608
-
1609
- #: wppa-album-admin-autosave.php:455 wppa-settings-autosave.php:3742
1610
- msgid "Standard mcr"
1611
- msgstr ""
1612
-
1613
- #: wppa-album-admin-autosave.php:456 wppa-settings-autosave.php:3743
1614
- msgid "Long Descriptions mcr"
1615
- msgstr ""
1616
-
1617
- #: wppa-album-admin-autosave.php:457 wppa-settings-autosave.php:3744
1618
- msgid "Image Factory mcr"
1619
- msgstr ""
1620
-
1621
- #: wppa-album-admin-autosave.php:463
1622
- msgid ""
1623
- "The default cover type is the systems standard set in the <b>Photo Albums -> "
1624
- "Settings</b> page <b>Table IV-D6</b>."
1625
- msgstr ""
1626
-
1627
- #: wppa-album-admin-autosave.php:473
1628
- #, fuzzy
1629
- msgid "Cover Photo:"
1630
- msgstr "Moderiere Fotos"
1631
-
1632
- #: wppa-album-admin-autosave.php:481
1633
- msgid "Select the photo you want to appear on the cover of this album."
1634
- msgstr ""
1635
-
1636
- #: wppa-album-admin-autosave.php:482
1637
- msgid ""
1638
- "Select the way the cover photos of this album are selected, or select a "
1639
- "single image."
1640
- msgstr ""
1641
-
1642
- #: wppa-album-admin-autosave.php:491
1643
- #, fuzzy
1644
- msgid "Upload limit:"
1645
- msgstr "Upload Foto"
1646
-
1647
- #: wppa-album-admin-autosave.php:499 wppa-settings-autosave.php:5613
1648
- #: wppa-settings-autosave.php:7127
1649
- msgid "for ever"
1650
- msgstr ""
1651
-
1652
- #: wppa-album-admin-autosave.php:500 wppa-album-admin-autosave.php:517
1653
- #: wppa-settings-autosave.php:5614 wppa-settings-autosave.php:7128
1654
- #, fuzzy
1655
- msgid "per hour"
1656
- msgstr "1 Stunde"
1657
-
1658
- #: wppa-album-admin-autosave.php:501 wppa-album-admin-autosave.php:518
1659
- #: wppa-settings-autosave.php:5615 wppa-settings-autosave.php:7129
1660
- #, fuzzy
1661
- msgid "per day"
1662
- msgstr "1 Tag"
1663
-
1664
- #: wppa-album-admin-autosave.php:502 wppa-album-admin-autosave.php:519
1665
- #: wppa-settings-autosave.php:5616 wppa-settings-autosave.php:7130
1666
- #, fuzzy
1667
- msgid "per week"
1668
- msgstr "1 Woche"
1669
-
1670
- #: wppa-album-admin-autosave.php:503 wppa-album-admin-autosave.php:520
1671
- #: wppa-settings-autosave.php:5617 wppa-settings-autosave.php:7131
1672
- #, fuzzy
1673
- msgid "per month"
1674
- msgstr "1 Monat"
1675
-
1676
- #: wppa-album-admin-autosave.php:504 wppa-album-admin-autosave.php:521
1677
- #: wppa-settings-autosave.php:5618 wppa-settings-autosave.php:7132
1678
- #, fuzzy
1679
- msgid "per year"
1680
- msgstr "1 Jahr"
1681
-
1682
- #: wppa-album-admin-autosave.php:508
1683
- msgid "Set the upload limit (0 means unlimited) and the upload limit period."
1684
- msgstr ""
1685
-
1686
- #: wppa-album-admin-autosave.php:513
1687
- msgid "Unlimited"
1688
- msgstr ""
1689
-
1690
- #: wppa-album-admin-autosave.php:532
1691
- #, fuzzy
1692
- msgid "Catogories:"
1693
- msgstr "Kategorien:"
1694
-
1695
- #: wppa-album-admin-autosave.php:542
1696
- msgid "Separate categories with commas."
1697
- msgstr ""
1698
-
1699
- #: wppa-album-admin-autosave.php:543 wppa-photo-admin-autosave.php:803
1700
- msgid "Examples:"
1701
- msgstr ""
1702
-
1703
- #: wppa-album-admin-autosave.php:549 wppa-photo-admin-autosave.php:807
1704
- #, fuzzy
1705
- msgid "- select -"
1706
- msgstr "Bitte wähle Album"
1707
-
1708
- #: wppa-album-admin-autosave.php:555
1709
- #, fuzzy
1710
- msgid "No categories yet"
1711
- msgstr "Kategorien:"
1712
-
1713
- #: wppa-album-admin-autosave.php:559 wppa-photo-admin-autosave.php:817
1714
- msgid "Select to add"
1715
- msgstr ""
1716
-
1717
- #: wppa-album-admin-autosave.php:567
1718
- #, fuzzy
1719
- msgid "Default photo tags:"
1720
- msgstr "Standardfotoalbum für"
1721
-
1722
- #: wppa-album-admin-autosave.php:573
1723
- msgid ""
1724
- "Enter the tags that you want to be assigned to new photos in this album."
1725
- msgstr ""
1726
-
1727
- #: wppa-album-admin-autosave.php:578
1728
- #, fuzzy
1729
- msgid ""
1730
- "Are you sure you want to set the default tags to all photos in this album?"
1731
- msgstr "Bist du sicher, das du dieses Foto drehen möchtest?"
1732
-
1733
- #: wppa-album-admin-autosave.php:579
1734
- #, fuzzy
1735
- msgid ""
1736
- "Are you sure you want to add the default tags to all photos in this album?"
1737
- msgstr "Bist du sicher, das du dieses Foto drehen möchtest?"
1738
-
1739
- #: wppa-album-admin-autosave.php:582
1740
- msgid "Apply default tags"
1741
- msgstr ""
1742
-
1743
- #: wppa-album-admin-autosave.php:587
1744
- msgid "Tag all photos in this album with the default tags."
1745
- msgstr ""
1746
-
1747
- #: wppa-album-admin-autosave.php:592
1748
- msgid "Add default tags"
1749
- msgstr ""
1750
-
1751
- #: wppa-album-admin-autosave.php:597
1752
- #, fuzzy
1753
- msgid "Add the default tags to all photos in this album."
1754
- msgstr ""
1755
- "Unter Foto Alben -> Fotos hochladen kannst Du nun Deine Fotos hochladen. "
1756
- "Lade mindestens 2 Fotos für jedes Album hoch. Stelle sicher das Deine Fotos "
1757
- "eine brauchbare Auflösung haben (ca. bis zu 1024x768 Pixel)."
1758
-
1759
- #: wppa-album-admin-autosave.php:604
1760
- #, fuzzy
1761
- msgid "Link type:"
1762
- msgstr "Verweis zu"
1763
-
1764
- #: wppa-album-admin-autosave.php:611 wppa-settings-autosave.php:7288
1765
- msgid "the sub-albums and thumbnails"
1766
- msgstr ""
1767
-
1768
- #: wppa-album-admin-autosave.php:612 wppa-settings-autosave.php:7289
1769
- #, fuzzy
1770
- msgid "the sub-albums"
1771
- msgstr "Das Album ansehen"
1772
-
1773
- #: wppa-album-admin-autosave.php:613 wppa-settings-autosave.php:7290
1774
- #, fuzzy
1775
- msgid "the thumbnails"
1776
- msgstr "Anzeigen..."
1777
-
1778
- #: wppa-album-admin-autosave.php:614 wppa-settings-autosave.php:7291
1779
- msgid "the album photos as slideshow"
1780
- msgstr ""
1781
-
1782
- #: wppa-album-admin-autosave.php:615
1783
- msgid "the link page with a clean url"
1784
- msgstr ""
1785
-
1786
- #: wppa-album-admin-autosave.php:616 wppa-settings-autosave.php:7292
1787
- msgid "no link at all"
1788
- msgstr ""
1789
-
1790
- #: wppa-album-admin-autosave.php:621
1791
- msgid ""
1792
- "If you select \"the link page with a clean url\", select an Auto Page of one "
1793
- "of the photos in this album."
1794
- msgstr ""
1795
-
1796
- #: wppa-album-admin-autosave.php:622
1797
- msgid ""
1798
- "If you select \"the link page with a clean url\", make sure you enter the "
1799
- "correct shortcode on the target page."
1800
- msgstr ""
1801
-
1802
- #: wppa-album-admin-autosave.php:631 wppa-bestof-widget.php:196
1803
- #: wppa-slideshow-widget.php:221 wppa-widget-admin.php:164
1804
- #: wppa-widget-admin.php:174
1805
- #, fuzzy
1806
- msgid "Link to:"
1807
- msgstr "Verweis zu"
1808
-
1809
- #: wppa-album-admin-autosave.php:637 wppa-settings-autosave.php:8882
1810
- #: wppa-settings-autosave.php:8931
1811
- msgid "There are no pages (yet) to link to."
1812
- msgstr ""
1813
-
1814
- #: wppa-album-admin-autosave.php:642
1815
- #, fuzzy
1816
- msgid "--- the same page or post ---"
1817
- msgstr "--- separat ---"
1818
-
1819
- #: wppa-album-admin-autosave.php:650
1820
- msgid ""
1821
- "If you want, you can link the title to a WP page in stead of the album's "
1822
- "content. If so, select the page the title links to."
1823
- msgstr ""
1824
-
1825
- #: wppa-album-admin-autosave.php:660
1826
- msgid "Schedule:"
1827
- msgstr ""
1828
-
1829
- #: wppa-album-admin-autosave.php:671
1830
- msgid ""
1831
- "If enabled, new photos will have their status set to the dat/time specified "
1832
- "here."
1833
- msgstr ""
1834
-
1835
- #: wppa-album-admin-autosave.php:677
1836
- #, fuzzy
1837
- msgid "Are you sure you want to schedule all photos in this album?"
1838
- msgstr "Bist du sicher, das du dieses Foto drehen möchtest?"
1839
-
1840
- #: wppa-album-admin-autosave.php:677
1841
- msgid "Schedule all"
1842
- msgstr ""
1843
-
1844
- #: wppa-album-admin-autosave.php:685
1845
- #, fuzzy
1846
- msgid "Are you sure you want to clear the ratings in this album?"
1847
- msgstr "Möchtest Du diesen Kommentar wirklich löschen?"
1848
-
1849
- #: wppa-album-admin-autosave.php:685
1850
- #, fuzzy
1851
- msgid "Reset ratings"
1852
- msgstr "Einstellungen"
1853
-
1854
- #: wppa-album-admin-autosave.php:702
1855
- msgid "Change the upload limit or remove photos to enable new uploads."
1856
- msgstr ""
1857
-
1858
- #: wppa-album-admin-autosave.php:706
1859
- #, php-format
1860
- msgid "(max %d)"
1861
- msgstr ""
1862
-
1863
- #: wppa-album-admin-autosave.php:707
1864
- #, fuzzy
1865
- msgid "Album is full"
1866
- msgstr "Alben:"
1867
-
1868
- #: wppa-album-admin-autosave.php:718
1869
- msgid "Apply new photo desc"
1870
- msgstr ""
1871
-
1872
- #: wppa-album-admin-autosave.php:729
1873
- msgid "Remake all"
1874
- msgstr ""
1875
-
1876
- #: wppa-album-admin-autosave.php:737 wppa-photo-admin-autosave.php:917
1877
- msgid "Remark:"
1878
- msgstr ""
1879
-
1880
- #: wppa-album-admin-autosave.php:740
1881
- #, php-format
1882
- msgid "Album %s is not modified yet"
1883
- msgstr ""
1884
-
1885
- #: wppa-album-admin-autosave.php:748
1886
- msgid "Change sequence order by drag and drop"
1887
- msgstr ""
1888
-
1889
- #: wppa-album-admin-autosave.php:767
1890
- #, fuzzy
1891
- msgid "Moderate comment"
1892
- msgstr "Moderiere Kommentare"
1893
-
1894
- #: wppa-album-admin-autosave.php:783
1895
- #, fuzzy
1896
- msgid "Moderate photo"
1897
  msgstr "Moderiere Fotos"
1898
 
1899
- #: wppa-album-admin-autosave.php:784 wppa-functions.php:2108
1900
- #: wppa-photo-admin-autosave.php:24
1901
- #, fuzzy
1902
  msgid "Edit photo"
1903
  msgstr "Foto bearbeiten"
1904
 
1905
- #: wppa-album-admin-autosave.php:808
1906
- #, fuzzy
1907
- msgid "Delete Album"
1908
- msgstr "Das Album konnte nicht erstellt werden."
1909
-
1910
- #: wppa-album-admin-autosave.php:810 wppa-boxes-html.php:807
1911
- #: wppa-breadcrumb.php:276 wppa-breadcrumb.php:294 wppa-breadcrumb.php:322
1912
- #: wppa-breadcrumb.php:340 wppa-breadcrumb.php:404 wppa-breadcrumb.php:429
1913
- #: wppa-breadcrumb.php:577 wppa-comment-admin.php:65 wppa-featen-widget.php:137
1914
- #: wppa-lasten-widget.php:177 wppa-slideshow-widget.php:199
1915
- #: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:218
1916
- #: wppa-upload-widget.php:77 wppa-upload.php:116 wppa-upload.php:204
1917
- #: wppa-upload.php:251
1918
- #, fuzzy
1919
- msgid "Album:"
1920
- msgstr "Album #"
1921
-
1922
- #: wppa-album-admin-autosave.php:811
1923
- #, fuzzy
1924
- msgid "Are you sure you want to delete this album?"
1925
- msgstr "Möchtest Du diesen Kommentar wirklich löschen?"
1926
-
1927
- #: wppa-album-admin-autosave.php:812
1928
- msgid "Press Delete to continue, and Cancel to go back."
1929
- msgstr ""
1930
-
1931
- #: wppa-album-admin-autosave.php:817
1932
- msgid "What would you like to do with photos currently in the album?"
1933
- msgstr ""
1934
-
1935
- #: wppa-album-admin-autosave.php:818 wppa-album-admin-autosave.php:827
1936
- #: wppa-album-admin-autosave.php:1062 wppa-album-admin-autosave.php:1102
1937
- #: wppa-album-admin-autosave.php:1199 wppa-album-admin-autosave.php:1371
1938
- #: wppa-album-admin-autosave.php:1466 wppa-album-admin-autosave.php:1652
1939
- #: wppa-comment-admin.php:311 wppa-comment-admin.php:380
1940
- #: wppa-comment-admin.php:398 wppa-functions.php:1921 wppa-links.php:740
1941
- #: wppa-links.php:758 wppa-photo-admin-autosave.php:1283
1942
- #: wppa-photo-admin-autosave.php:1351 wppa-thumbnails.php:590
1943
- #, fuzzy
1944
- msgid "Delete"
1945
- msgstr "Löschen"
1946
-
1947
- #: wppa-album-admin-autosave.php:819
1948
- msgid "Move to:"
1949
- msgstr ""
1950
-
1951
- #: wppa-album-admin-autosave.php:826 wppa-settings-autosave.php:2665
1952
- msgid "Cancel"
1953
- msgstr "Kündigen"
1954
-
1955
- #: wppa-album-admin-autosave.php:857
1956
- msgid "Unable to move photos. Album not deleted."
1957
- msgstr ""
1958
-
1959
- #: wppa-album-admin-autosave.php:879
1960
- #, fuzzy
1961
- msgid "Manage Albums"
1962
- msgstr "Das Album konnte nicht erstellt werden."
1963
-
1964
- #: wppa-album-admin-autosave.php:885
1965
- #, fuzzy
1966
- msgid "Are you sure you want to create a new album?"
1967
- msgstr "Möchtest Du diesen Kommentar wirklich löschen?"
1968
-
1969
- #: wppa-album-admin-autosave.php:890
1970
- #, fuzzy
1971
- msgid "Create New Empty Album"
1972
- msgstr "Das Album konnte nicht erstellt werden."
1973
-
1974
- #: wppa-album-admin-autosave.php:896
1975
- msgid "Switch to Collapsable table"
1976
- msgstr ""
1977
-
1978
- #: wppa-album-admin-autosave.php:899
1979
- msgid "Switch to Flat table"
1980
- msgstr ""
1981
-
1982
- #: wppa-album-admin-autosave.php:995 wppa-album-admin-autosave.php:1132
1983
- #: wppa-album-admin-autosave.php:1303 wppa-album-admin-autosave.php:1398
1984
- #: wppa-photo-admin-autosave.php:1332 wppa-photo-admin-autosave.php:1451
1985
- msgid "ID"
1986
- msgstr ""
1987
-
1988
- #: wppa-album-admin-autosave.php:1037 wppa-album-admin-autosave.php:1174
1989
- #: wppa-album-admin-autosave.php:1346 wppa-album-admin-autosave.php:1441
1990
- msgid "Order"
1991
- msgstr ""
1992
-
1993
- #: wppa-album-admin-autosave.php:1047 wppa-album-admin-autosave.php:1184
1994
- #: wppa-album-admin-autosave.php:1356 wppa-album-admin-autosave.php:1451
1995
- msgid "Parent"
1996
- msgstr ""
1997
-
1998
- #: wppa-album-admin-autosave.php:1055 wppa-album-admin-autosave.php:1192
1999
- #: wppa-album-admin-autosave.php:1364 wppa-album-admin-autosave.php:1459
2000
- msgid "Albums/Photos/Moderation required/Scheduled"
2001
- msgstr ""
2002
-
2003
- #: wppa-album-admin-autosave.php:1056 wppa-album-admin-autosave.php:1193
2004
- #: wppa-album-admin-autosave.php:1365 wppa-album-admin-autosave.php:1460
2005
- msgid "A/P/PM/S"
2006
- msgstr ""
2007
-
2008
- #: wppa-album-admin-autosave.php:1059 wppa-album-admin-autosave.php:1097
2009
- #: wppa-album-admin-autosave.php:1196 wppa-album-admin-autosave.php:1368
2010
- #: wppa-album-admin-autosave.php:1463 wppa-album-admin-autosave.php:1541
2011
- #: wppa-album-admin-autosave.php:1647
2012
- msgid "Quick"
2013
- msgstr ""
2014
-
2015
- #: wppa-album-admin-autosave.php:1060 wppa-album-admin-autosave.php:1098
2016
- #: wppa-album-admin-autosave.php:1197 wppa-album-admin-autosave.php:1369
2017
- #: wppa-album-admin-autosave.php:1464 wppa-album-admin-autosave.php:1546
2018
- #: wppa-album-admin-autosave.php:1648
2019
- msgid "Bulk"
2020
- msgstr ""
2021
-
2022
- #: wppa-album-admin-autosave.php:1061 wppa-album-admin-autosave.php:1099
2023
- #: wppa-album-admin-autosave.php:1198 wppa-album-admin-autosave.php:1370
2024
- #: wppa-album-admin-autosave.php:1465 wppa-album-admin-autosave.php:1649
2025
- msgid "Seq"
2026
- msgstr ""
2027
-
2028
- #: wppa-album-admin-autosave.php:1063 wppa-album-admin-autosave.php:1107
2029
- #: wppa-album-admin-autosave.php:1110 wppa-album-admin-autosave.php:1200
2030
- #: wppa-album-admin-autosave.php:1372 wppa-album-admin-autosave.php:1467
2031
- #: wppa-album-admin-autosave.php:1657 wppa-album-admin-autosave.php:1660
2032
- #, fuzzy
2033
- msgid "Create"
2034
- msgstr "Das Album konnte nicht erstellt werden."
2035
-
2036
- #: wppa-album-admin-autosave.php:1106 wppa-album-admin-autosave.php:1656
2037
- #, fuzzy
2038
- msgid "Are you sure you want to create a subalbum?"
2039
- msgstr "Möchtest Du diesen Kommentar wirklich löschen?"
2040
-
2041
- #: wppa-album-admin-autosave.php:1213 wppa-album-admin-autosave.php:1494
2042
- #, fuzzy
2043
- msgid "No albums yet."
2044
- msgstr "Noch kein Album ausgewählt."
2045
-
2046
- #: wppa-album-admin-autosave.php:1297 wppa-album-admin-autosave.php:1620
2047
- #, fuzzy
2048
- msgid "Collapse subalbums"
2049
- msgstr ", ein Unter-Album von"
2050
-
2051
- #: wppa-album-admin-autosave.php:1298 wppa-album-admin-autosave.php:1621
2052
- #, fuzzy
2053
- msgid "Expand subalbums"
2054
- msgstr ", ein Unter-Album von"
2055
-
2056
- #: wppa-album-admin-autosave.php:1380
2057
- msgid ""
2058
- "The following albums are ---separate--- and do not show up in the generic "
2059
- "album display"
2060
- msgstr ""
2061
-
2062
- #: wppa-album-admin-autosave.php:1510
2063
- msgid "Search for photos to edit"
2064
- msgstr ""
2065
-
2066
- #: wppa-album-admin-autosave.php:1511
2067
- msgid ""
2068
- "Enter search words seperated by commas. Photos will meet all search words by "
2069
- "their names, descriptions, translated keywords and/or tags."
2070
- msgstr ""
2071
-
2072
- #: wppa-album-admin-autosave.php:1517
2073
- #, fuzzy
2074
- msgid "Any"
2075
- msgstr "und"
2076
-
2077
- #: wppa-album-admin-autosave.php:1521
2078
- #, fuzzy
2079
- msgid "Search for"
2080
- msgstr "Suche"
2081
-
2082
- #: wppa-album-admin-autosave.php:1563
2083
- #, php-format
2084
- msgid ""
2085
- "There are <strong>%d</strong> albums and <strong>%d</strong> photos in the "
2086
- "system."
2087
- msgstr ""
2088
-
2089
- #: wppa-album-admin-autosave.php:1564
2090
- #, php-format
2091
- msgid "<strong>%d</strong> photos are pending moderation."
2092
- msgstr ""
2093
-
2094
- #: wppa-album-admin-autosave.php:1565
2095
- #, php-format
2096
- msgid "<strong>%d</strong> photos are scheduled for later publishing."
2097
- msgstr ""
2098
-
2099
- #: wppa-album-admin-autosave.php:1568
2100
- #, php-format
2101
- msgid "The most recently added album is <strong>%s</strong> (%d)."
2102
- msgstr ""
2103
-
2104
- #: wppa-album-admin-autosave.php:1572
2105
- #, php-format
2106
- msgid "The most recently added photo is <strong>%s</strong> (%d)"
2107
- msgstr ""
2108
-
2109
- #: wppa-album-admin-autosave.php:1573
2110
- #, php-format
2111
- msgid "in album <strong>%s</strong> (%d)."
2112
- msgstr ""
2113
-
2114
- #: wppa-album-admin-autosave.php:1694
2115
- #, php-format
2116
- msgid "Unable to move photos to album %s. Album not deleted."
2117
- msgstr ""
2118
-
2119
- #: wppa-album-admin-autosave.php:1715
2120
- #, php-format
2121
- msgid "Time is out after %d photo deletes. Please redo this operation"
2122
- msgstr ""
2123
-
2124
- #: wppa-album-admin-autosave.php:1750
2125
- #, fuzzy
2126
- msgid "Album Deleted."
2127
- msgstr "- Das zuletzt erstellte Album -"
2128
-
2129
- #: wppa-album-admin-autosave.php:1772
2130
- #, php-format
2131
- msgid "auto select max %s random"
2132
- msgstr ""
2133
-
2134
- #: wppa-album-admin-autosave.php:1774
2135
- #, php-format
2136
- msgid "auto select max %s featured"
2137
- msgstr ""
2138
-
2139
- #: wppa-album-admin-autosave.php:1776
2140
- #, fuzzy, php-format
2141
- msgid "max %s most recent added"
2142
- msgstr "--- Die zuletzt hochgeladenen Fotos---"
2143
-
2144
- #: wppa-album-admin-autosave.php:1778
2145
- #, php-format
2146
- msgid "max %s from (grand)child albums"
2147
- msgstr ""
2148
-
2149
- #: wppa-album-admin-autosave.php:1780
2150
- #, fuzzy, php-format
2151
- msgid "max %s most recent from (grand)child albums"
2152
- msgstr "--- Die zuletzt hochgeladenen Fotos---"
2153
-
2154
- #: wppa-album-admin-autosave.php:1784
2155
- #, fuzzy
2156
- msgid "--- random ---"
2157
- msgstr "--- keine ---"
2158
-
2159
- #: wppa-album-admin-autosave.php:1786
2160
- #, fuzzy
2161
- msgid "--- random featured ---"
2162
- msgstr "--- gelöscht ---"
2163
-
2164
- #: wppa-album-admin-autosave.php:1788
2165
- #, fuzzy
2166
- msgid "--- most recent added ---"
2167
- msgstr "--- gelöscht ---"
2168
-
2169
- #: wppa-album-admin-autosave.php:1790
2170
- msgid "--- random from (grand)children ---"
2171
- msgstr ""
2172
-
2173
- #: wppa-album-admin-autosave.php:1792
2174
- #, fuzzy
2175
- msgid "--- most recent from (grand)children ---"
2176
- msgstr "--- gelöscht ---"
2177
-
2178
- #: wppa-album-admin-autosave.php:1804
2179
- msgid "Nameless, filename = "
2180
- msgstr ""
2181
-
2182
- #: wppa-album-covers.php:1286 wppa-album-covers.php:1345
2183
- #: wppa-album-covers.php:1353
2184
- msgid "View the album"
2185
- msgstr "Das Album ansehen"
2186
-
2187
- #: wppa-album-covers.php:1306
2188
- #, fuzzy
2189
- msgid "View the cover photo"
2190
- msgid_plural "View the cover photos"
2191
- msgstr[0] "Titelfoto ansehen"
2192
- msgstr[1] "Titelfoto ansehen"
2193
-
2194
- #: wppa-album-covers.php:1359
2195
- msgid "View"
2196
- msgstr "Ansehen"
2197
-
2198
- #: wppa-album-covers.php:1362
2199
- msgid "album"
2200
- msgstr "Album"
2201
-
2202
- #: wppa-album-covers.php:1365 wppa-settings-autosave.php:1232
2203
- #: wppa-settings-autosave.php:5650
2204
- msgid "albums"
2205
- msgstr "Alben"
2206
-
2207
- #: wppa-album-covers.php:1374 wppa-boxes-html.php:1162 wppa-breadcrumb.php:148
2208
- #: wppa-breadcrumb.php:154 wppa-breadcrumb.php:161 wppa-breadcrumb.php:368
2209
- #: wppa-breadcrumb.php:379 wppa-functions.php:4270 wppa-utils.php:1605
2210
- msgid "and"
2211
- msgstr "und"
2212
-
2213
- #: wppa-album-covers.php:1379 wppa-comment-admin.php:253
2214
- msgid "photo"
2215
- msgstr "Foto"
2216
-
2217
- #: wppa-album-covers.php:1382 wppa-album-covers.php:1386
2218
- #: wppa-settings-autosave.php:698 wppa-settings-autosave.php:737
2219
- #: wppa-settings-autosave.php:1152 wppa-settings-autosave.php:1192
2220
- #: wppa-settings-autosave.php:1212 wppa-settings-autosave.php:1252
2221
- #: wppa-settings-autosave.php:3763 wppa-settings-autosave.php:5634
2222
- #: wppa-settings-autosave.php:7125
2223
- msgid "photos"
2224
- msgstr "Fotos"
2225
-
2226
- #: wppa-album-covers.php:1565 wppa-boxes-html.php:831 wppa-non-admin.php:577
2227
- #: wppa-settings-autosave.php:2137 wppa-settings-autosave.php:5083
2228
- #: wppa-settings-autosave.php:7447
2229
- msgid "Slideshow"
2230
- msgstr "Diaschau"
2231
-
2232
- #: wppa-album-covers.php:1566
2233
- msgid "Browse photos"
2234
- msgstr "Durchsuche Fotos"
2235
-
2236
- #: wppa-album-covers.php:1601
2237
- msgid "Categories:"
2238
- msgstr "Kategorien:"
2239
-
2240
- #: wppa-album-covers.php:1604 wppa-breadcrumb.php:389 wppa-breadcrumb.php:394
2241
- msgid "Category:"
2242
- msgstr "Kategorie:"
2243
-
2244
- #: wppa-album-navigator-widget.php:12
2245
- msgid "WPPA+ Album navigator"
2246
- msgstr ""
2247
-
2248
- #: wppa-album-navigator-widget.php:13
2249
- msgid "Album navigator"
2250
- msgstr ""
2251
-
2252
- #: wppa-album-navigator-widget.php:91 wppa-album-widget.php:317
2253
- #: wppa-bestof-widget.php:131 wppa-comment-widget.php:119
2254
- #: wppa-featen-widget.php:134 wppa-gp-widget.php:88 wppa-lasten-widget.php:174
2255
- #: wppa-multitag-widget.php:72 wppa-potd-widget.php:186 wppa-qr-widget.php:94
2256
- #: wppa-search-widget.php:73 wppa-slideshow-widget.php:198
2257
- #: wppa-stereo-widget.php:68 wppa-super-view-widget.php:73
2258
- #: wppa-tagcloud-widget.php:68 wppa-thumbnail-widget.php:184
2259
- #: wppa-topten-widget.php:215 wppa-upldr-widget.php:175
2260
- #: wppa-upload-widget.php:75 wppa-widget-admin.php:177
2261
- msgid "Title:"
2262
- msgstr ""
2263
-
2264
- #: wppa-album-navigator-widget.php:92 wppa-album-widget.php:318
2265
- #, fuzzy
2266
- msgid "Album selection or Parent album:"
2267
- msgstr "Bitte wähle Album"
2268
-
2269
- #: wppa-album-navigator-widget.php:95 wppa-album-widget.php:321
2270
- #, fuzzy
2271
- msgid "--- all albums ---"
2272
- msgstr "--- alle---"
2273
-
2274
- #: wppa-album-navigator-widget.php:96 wppa-album-widget.php:322
2275
- #, fuzzy
2276
- msgid "--- all generic albums ---"
2277
- msgstr "--- keine ---"
2278
-
2279
- #: wppa-album-navigator-widget.php:97 wppa-album-widget.php:323
2280
- #, fuzzy
2281
- msgid "--- all separate albums ---"
2282
- msgstr "--- separat ---"
2283
-
2284
- #: wppa-album-navigator-widget.php:109 wppa-album-widget.php:343
2285
- msgid "Skip \"empty\" albums:"
2286
- msgstr ""
2287
-
2288
- #: wppa-album-navigator-widget.php:111 wppa-album-widget.php:338
2289
- #: wppa-album-widget.php:345 wppa-lasten-widget.php:202
2290
- #: wppa-slideshow-widget.php:206 wppa-slideshow-widget.php:226
2291
- #: wppa-slideshow-widget.php:233 wppa-slideshow-widget.php:240
2292
- #: wppa-slideshow-widget.php:247 wppa-slideshow-widget.php:254
2293
- #: wppa-thumbnail-widget.php:227
2294
- msgid "no."
2295
- msgstr ""
2296
-
2297
- #: wppa-album-navigator-widget.php:112 wppa-album-widget.php:339
2298
- #: wppa-album-widget.php:346 wppa-lasten-widget.php:203
2299
- #: wppa-slideshow-widget.php:207 wppa-slideshow-widget.php:227
2300
- #: wppa-slideshow-widget.php:234 wppa-slideshow-widget.php:241
2301
- #: wppa-slideshow-widget.php:248 wppa-slideshow-widget.php:255
2302
- #: wppa-thumbnail-widget.php:228
2303
- msgid "yes."
2304
- msgstr ""
2305
-
2306
- #: wppa-album-widget.php:15
2307
- #, fuzzy
2308
- msgid "WPPA+ Albums"
2309
- msgstr "- alle Alben -"
2310
-
2311
- #: wppa-album-widget.php:16 wppa-album-widget.php:308
2312
- #, fuzzy
2313
- msgid "Thumbnail Albums"
2314
- msgstr "Miniaturbild Fotos"
2315
-
2316
- #: wppa-album-widget.php:109
2317
- #, fuzzy, php-format
2318
- msgid "Upload at least %d photos to this album!"
2319
- msgstr ""
2320
- "Unter Foto Alben -> Fotos hochladen kannst Du nun Deine Fotos hochladen. "
2321
- "Lade mindestens 2 Fotos für jedes Album hoch. Stelle sicher das Deine Fotos "
2322
- "eine brauchbare Auflösung haben (ca. bis zu 1024x768 Pixel)."
2323
-
2324
- #: wppa-album-widget.php:324
2325
- #, fuzzy
2326
- msgid "--- most recently added albums ---"
2327
- msgstr "--- die zuletzt hinzugefügten Alben ---"
2328
-
2329
- #: wppa-album-widget.php:336
2330
- #, fuzzy
2331
- msgid "Show album names:"
2332
- msgstr ""
2333
- "Trage hier Schriftnamen, Größe, Farbe und Breite für die Album Cover Titel "
2334
- "ein."
2335
-
2336
- #: wppa-album-widget.php:350 wppa-comment-widget.php:120
2337
- #: wppa-featen-widget.php:145 wppa-lasten-widget.php:207
2338
- #: wppa-thumbnail-widget.php:232 wppa-topten-widget.php:277
2339
- msgid ""
2340
- "You can set the sizes in this widget in the <b>Photo Albums -> Settings</b> "
2341
- "admin page."
2342
- msgstr ""
2343
-
2344
- #: wppa-audio.php:183
2345
- msgid ""
2346
- "There is no filetype available for your browser, or your browser does not "
2347
- "support html5 audio"
2348
- msgstr ""
2349
-
2350
- #: wppa-bestof-widget.php:15
2351
- #, fuzzy
2352
- msgid "WPPA+ Best Of Rated Photos"
2353
- msgstr "Fotos"
2354
-
2355
- #: wppa-bestof-widget.php:16 wppa-bestof-widget.php:49
2356
- #: wppa-bestof-widget.php:109
2357
- #, fuzzy
2358
- msgid "Best Of Photos"
2359
- msgstr "Fotos"
2360
-
2361
- #: wppa-bestof-widget.php:152
2362
- #, fuzzy
2363
- msgid "Photo(s)"
2364
- msgstr "Foto"
2365
-
2366
- #: wppa-bestof-widget.php:153
2367
- msgid "Owner(s)"
2368
- msgstr ""
2369
-
2370
- #: wppa-bestof-widget.php:158
2371
- #, fuzzy
2372
- msgid "Last week"
2373
- msgstr "1 Woche"
2374
-
2375
- #: wppa-bestof-widget.php:159
2376
- #, fuzzy
2377
- msgid "This week"
2378
- msgstr "1 Woche"
2379
-
2380
- #: wppa-bestof-widget.php:160
2381
- #, fuzzy
2382
- msgid "Last month"
2383
- msgstr "1 Monat"
2384
-
2385
- #: wppa-bestof-widget.php:161
2386
- #, fuzzy
2387
- msgid "This month"
2388
- msgstr "1 Monat"
2389
-
2390
- #: wppa-bestof-widget.php:162
2391
- #, fuzzy
2392
- msgid "Last year"
2393
- msgstr "1 Jahr"
2394
-
2395
- #: wppa-bestof-widget.php:163
2396
- #, fuzzy
2397
- msgid "This year"
2398
- msgstr "1 Jahr"
2399
-
2400
- #: wppa-bestof-widget.php:168
2401
- msgid "Number of max ratings"
2402
- msgstr ""
2403
-
2404
- #: wppa-bestof-widget.php:169 wppa-topten-widget.php:236
2405
- #, fuzzy
2406
- msgid "Mean value"
2407
- msgstr "Mittelwert:"
2408
-
2409
- #: wppa-bestof-widget.php:178 wppa-topten-widget.php:249
2410
- #: wppa-widget-admin.php:188
2411
- msgid "Subtitle:"
2412
- msgstr ""
2413
-
2414
- #: wppa-bestof-widget.php:179
2415
- #, fuzzy
2416
- msgid "No of max ratings:"
2417
- msgstr "auto selekt max %s zufällig"
2418
-
2419
- #: wppa-bestof-widget.php:184 wppa-topten-widget.php:260
2420
- #, fuzzy
2421
- msgid "Mean rating:"
2422
- msgstr "Der Raum zwischen avg und meine Bewertungssterne"
2423
-
2424
- #: wppa-bestof-widget.php:189 wppa-topten-widget.php:265
2425
- #, fuzzy
2426
- msgid "Rating count:"
2427
- msgstr "Bewertung: %s"
2428
-
2429
- #: wppa-bestof-widget.php:198 wppa-common-functions.php:2016 wppa-items.php:365
2430
- #: wppa-settings-autosave.php:1301 wppa-settings-autosave.php:1622
2431
- #: wppa-settings-autosave.php:3352 wppa-settings-autosave.php:3366
2432
- #: wppa-settings-autosave.php:3554 wppa-settings-autosave.php:3668
2433
- #: wppa-settings-autosave.php:5154 wppa-settings-autosave.php:6964
2434
- #: wppa-settings-autosave.php:7143 wppa-settings-autosave.php:7199
2435
- #: wppa-settings-autosave.php:8053 wppa-settings-autosave.php:8209
2436
- #: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
2437
- #: wppa-tinymce-shortcodes.php:513 wppa-upload.php:1515 wppa-watermark.php:520
2438
- #: wppa-widget-admin.php:76 wppa-widget-admin.php:193
2439
- msgid "--- none ---"
2440
- msgstr "--- keine ---"
2441
-
2442
- #: wppa-bestof-widget.php:199
2443
- #, fuzzy
2444
- msgid "The authors album(s)"
2445
- msgstr "--- multiple siehe unten---"
2446
-
2447
- #: wppa-bestof-widget.php:200
2448
- #, fuzzy
2449
- msgid "The photos in the authors album(s)"
2450
- msgstr "--- multiple siehe unten---"
2451
-
2452
- #: wppa-bestof-widget.php:201
2453
- #, fuzzy
2454
- msgid "All the authors photos"
2455
- msgstr "Klicken um das Foto im Vollbild und alle Kommentare zu sehen"
2456
-
2457
- #: wppa-boxes-html.php:133 wppa-boxes-html.php:238
2458
- #, fuzzy
2459
- msgid "Photo search results"
2460
- msgstr "Suchergebnisse für: %s"
2461
-
2462
- #: wppa-boxes-html.php:370 wppa-breadcrumb.php:136
2463
- #: wppa-settings-autosave.php:384
2464
- #, fuzzy
2465
- msgid "Albums"
2466
- msgstr "Alben:"
2467
-
2468
- #: wppa-boxes-html.php:376 wppa-breadcrumb.php:151
2469
- #, fuzzy
2470
- msgid "Photos"
2471
- msgstr "Foto"
2472
-
2473
- #: wppa-boxes-html.php:395
2474
- #, fuzzy
2475
- msgid "Category"
2476
- msgstr "Kategorie:"
2477
-
2478
- #: wppa-boxes-html.php:408 wppa-boxes-html.php:541
2479
- msgid "Text"
2480
- msgstr ""
2481
-
2482
- #: wppa-boxes-html.php:424 wppa-boxes-html.php:478 wppa-boxes-html.php:624
2483
- #: wppa-boxes-html.php:654
2484
- msgid "CTRL+Click to add/remove option."
2485
- msgstr ""
2486
-
2487
- #: wppa-boxes-html.php:425 wppa-boxes-html.php:479 wppa-boxes-html.php:625
2488
- #: wppa-boxes-html.php:655
2489
- msgid "Items must meet all selected options."
2490
- msgstr ""
2491
-
2492
- #: wppa-boxes-html.php:533 wppa-settings-autosave.php:8313
2493
- #: wppa-settings-autosave.php:8353 wppa-settings-autosave.php:8375
2494
- #: wppa-settings-autosave.php:8421
2495
- msgid "Tag"
2496
- msgstr ""
2497
-
2498
- #: wppa-boxes-html.php:549
2499
- msgid "Iptc"
2500
- msgstr ""
2501
-
2502
- #: wppa-boxes-html.php:558
2503
- msgid "Exif"
2504
- msgstr ""
2505
-
2506
- #: wppa-boxes-html.php:756 wppa-boxes-html.php:835
2507
- msgid "Submit"
2508
- msgstr ""
2509
-
2510
- #: wppa-boxes-html.php:798 wppa-super-view-widget.php:14
2511
- #: wppa-super-view-widget.php:64
2512
- #, fuzzy
2513
- msgid "Super View Photos"
2514
- msgstr "Super View Fotos"
2515
-
2516
- #: wppa-boxes-html.php:823 wppa-settings-autosave.php:400
2517
- #: wppa-settings-autosave.php:4345
2518
- #, fuzzy
2519
- msgid "Thumbnails"
2520
- msgstr "Miniaturbild Fotos"
2521
-
2522
- #: wppa-boxes-html.php:869
2523
- #, fuzzy
2524
- msgid "Tagged photos"
2525
- msgstr "Fotos"
2526
-
2527
- #: wppa-boxes-html.php:883
2528
- #, fuzzy
2529
- msgid "Please select a tagcloud landing page in Table VI-C3b"
2530
- msgstr "Wähle die Zielseite für das Super View-Widget."
2531
-
2532
- #: wppa-boxes-html.php:942
2533
- #, fuzzy
2534
- msgid "Multi Tagged photos"
2535
- msgstr "Multi Bewertung"
2536
-
2537
- #: wppa-boxes-html.php:956
2538
- #, fuzzy
2539
- msgid "Please select a multitag landing page in Table VI-C4b"
2540
- msgstr "Wähle die Zielseite für das Super View-Widget."
2541
-
2542
- #: wppa-boxes-html.php:1001
2543
- #, fuzzy
2544
- msgid "Please check the tag(s) that the photos must have"
2545
- msgstr "--- bitte wähle Tag(s) aus ---"
2546
-
2547
- #: wppa-boxes-html.php:1032
2548
- #, fuzzy
2549
- msgid "And"
2550
- msgstr "und"
2551
-
2552
- #: wppa-boxes-html.php:1043
2553
- msgid "Or"
2554
- msgstr "Oder"
2555
-
2556
- #: wppa-boxes-html.php:1058
2557
- msgid "Inverse selection"
2558
- msgstr ""
2559
-
2560
- #: wppa-boxes-html.php:1111
2561
- #, fuzzy
2562
- msgid "Find!"
2563
- msgstr "Finde Remote Fotos"
2564
-
2565
- #: wppa-boxes-html.php:1138
2566
- msgid "Social media landing page"
2567
- msgstr ""
2568
-
2569
- #: wppa-boxes-html.php:1163 wppa-utils.php:1605
2570
- #, php-format
2571
- msgid "See this image on %s"
2572
- msgstr "Schau Dir das Bild an auf %s"
2573
-
2574
- #: wppa-boxes-html.php:1188 wppa-qr-widget.php:39
2575
- msgid "QR code"
2576
- msgstr "QR Code"
2577
-
2578
- #: wppa-boxes-html.php:1233
2579
- #, fuzzy, php-format
2580
- msgid "Tweet %s on Twitter"
2581
- msgstr "Zeigt Twitter Button"
2582
-
2583
- #: wppa-boxes-html.php:1240
2584
- #, fuzzy
2585
- msgid "Share on Twitter"
2586
- msgstr "Zeigt den Twitter-Button in der Share - Box an."
2587
-
2588
- #: wppa-boxes-html.php:1253
2589
- #, fuzzy, php-format
2590
- msgid "Share %s on Google+"
2591
- msgstr "Zeigt den Google-Button in der Share - Box an."
2592
-
2593
- #: wppa-boxes-html.php:1261
2594
- #, fuzzy
2595
- msgid "Share on Google+"
2596
- msgstr "Zeigt den Google-Button in der Share - Box an."
2597
-
2598
- #: wppa-boxes-html.php:1276
2599
- #, fuzzy, php-format
2600
- msgid "Share %s on Pinterest"
2601
- msgstr "Share, Teilen"
2602
-
2603
- #: wppa-boxes-html.php:1285
2604
- #, fuzzy
2605
- msgid "Share on Pinterest"
2606
- msgstr "Share, Teilen"
2607
-
2608
- #: wppa-boxes-html.php:1420
2609
- #, fuzzy
2610
- msgid "Comment on Facebook:"
2611
- msgstr "Zeigen die Facebook Kommentar-Feld"
2612
-
2613
- #: wppa-boxes-html.php:1521 wppa-upload.php:1125
2614
- msgid "Working..."
2615
- msgstr ""
2616
-
2617
- #: wppa-boxes-html.php:1523 wppa-boxes-html.php:1526
2618
- #, fuzzy
2619
- msgid "Delete album"
2620
- msgstr "Das Album konnte nicht erstellt werden."
2621
-
2622
- #: wppa-boxes-html.php:1613
2623
- #, fuzzy
2624
- msgid "Create Album"
2625
- msgstr "Das Album konnte nicht erstellt werden."
2626
-
2627
- #: wppa-boxes-html.php:1658 wppa-boxes-html.php:2406
2628
- #, fuzzy
2629
- msgid "Enter album name."
2630
- msgstr ""
2631
- "Trage hier Schriftnamen, Größe, Farbe und Breite für die Album Cover Titel "
2632
- "ein."
2633
-
2634
- #: wppa-boxes-html.php:1660 wppa-boxes-html.php:2408
2635
- msgid "Don't leave this blank!"
2636
- msgstr "Hinterlasse einen Kommentar"
2637
-
2638
- #: wppa-boxes-html.php:1679
2639
- #, fuzzy
2640
- msgid "Enter album description"
2641
- msgstr "Eintragen / ändern der Beschreibung des Albums"
2642
-
2643
- #: wppa-boxes-html.php:1701
2644
- #, fuzzy
2645
- msgid "Create album"
2646
- msgstr "Das Album konnte nicht erstellt werden."
2647
-
2648
- #: wppa-boxes-html.php:1757 wppa-boxes-html.php:1770 wppa-functions.php:3992
2649
- #, fuzzy
2650
- msgid "Max uploads reached"
2651
- msgstr ""
2652
- "Zeige wenn die Upload - Grenze erreicht ist.gegebenenfalls als Nachricht ."
2653
-
2654
- #: wppa-boxes-html.php:1836 wppa-upload.php:134
2655
- msgid "Upload Photo"
2656
- msgstr "Upload Foto"
2657
-
2658
- #: wppa-boxes-html.php:1983
2659
- #, fuzzy, php-format
2660
- msgid ""
2661
- "You may upload up to %s photos at once if your browser supports HTML-5 "
2662
- "multiple file upload"
2663
- msgstr ""
2664
- "Du benötigst einen modernen Browser, der HTML-5 unterstützt, um mehrere "
2665
- "Dateien auszuwählen"
2666
-
2667
- #: wppa-boxes-html.php:1991
2668
- #, fuzzy, php-format
2669
- msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
2670
- msgstr "(max %d)"
2671
-
2672
- #: wppa-boxes-html.php:2020 wppa-upload.php:123 wppa-upload.php:211
2673
- #: wppa-upload.php:258 wppa-upload.php:694
2674
- #, fuzzy
2675
- msgid "Apply watermark file:"
2676
- msgstr "Wende eine Wasserzeichen-Datei an:"
2677
-
2678
- #: wppa-boxes-html.php:2042 wppa-upload.php:128 wppa-upload.php:216
2679
- #: wppa-upload.php:263 wppa-upload.php:698
2680
- #, fuzzy
2681
- msgid "Position:"
2682
- msgstr "Position/Ort:"
2683
-
2684
- #: wppa-boxes-html.php:2070
2685
- #, fuzzy
2686
- msgid ""
2687
- "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
2688
- "photoname if available, else the original filename will be used as photo "
2689
- "name."
2690
- msgstr ""
2691
- "Wenn das leer gelassen wird, wird der Originalname der Datei als Fotoname "
2692
- "verwendet."
2693
-
2694
- #: wppa-boxes-html.php:2075
2695
- #, fuzzy
2696
- msgid ""
2697
- "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
2698
- "available, else the original filename will be used as photo name."
2699
- msgstr ""
2700
- "Wenn das leer gelassen wird, wird der Originalname der Datei als Fotoname "
2701
- "verwendet."
2702
-
2703
- #: wppa-boxes-html.php:2080
2704
- msgid ""
2705
- "If you leave this blank, the original filename will be used as photo name."
2706
- msgstr ""
2707
- "Wenn das leer gelassen wird, wird der Originalname der Datei als Fotoname "
2708
- "verwendet."
2709
-
2710
- #: wppa-boxes-html.php:2094
2711
- msgid "Enter photo name."
2712
- msgstr "Bitte gibt den Fotonamen an."
2713
-
2714
- #: wppa-boxes-html.php:2115
2715
- msgid "Enter/modify photo description"
2716
- msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
2717
-
2718
- #: wppa-boxes-html.php:2146
2719
- msgid "hidden"
2720
- msgstr ""
2721
-
2722
- #: wppa-boxes-html.php:2215
2723
- msgid "Preview tags:"
2724
- msgstr ""
2725
-
2726
- #: wppa-boxes-html.php:2228
2727
- #, fuzzy
2728
- msgid "Please select an album and try again"
2729
- msgstr "Bitte wähle Album"
2730
-
2731
- #: wppa-boxes-html.php:2242
2732
- #, fuzzy
2733
- msgid "Upload photo"
2734
- msgstr "Fotos hochladen"
2735
-
2736
- #: wppa-boxes-html.php:2298
2737
- #, fuzzy
2738
- msgid "ERROR: unable to upload files."
2739
- msgstr "<b>FEHLER: Ungültiger Versuch eine Datei hochzuladen</b>"
2740
-
2741
- #: wppa-boxes-html.php:2348
2742
- #, fuzzy
2743
- msgid "Edit albuminfo"
2744
- msgstr "Bearbeiten"
2745
-
2746
- #: wppa-boxes-html.php:2428
2747
- #, fuzzy
2748
- msgid "Album description:"
2749
- msgstr "Unsymmetrische Tags in der Album Beschreibung!"
2750
-
2751
- #: wppa-boxes-html.php:2447
2752
- #, fuzzy
2753
- msgid "Update album"
2754
- msgstr "Erneuere die Plugin Beschreibung"
2755
-
2756
- #: wppa-boxes-html.php:2521
2757
- msgid "wrote:"
2758
- msgstr ""
2759
-
2760
- #: wppa-boxes-html.php:2575
2761
- msgid "Avatar"
2762
- msgstr ""
2763
-
2764
- #: wppa-boxes-html.php:2618 wppa-links.php:784
2765
- #, fuzzy
2766
- msgid "Awaiting moderation"
2767
- msgstr "Dieses Foto wartet nicht mehr auf Moderation."
2768
-
2769
- #: wppa-boxes-html.php:2621
2770
- #, fuzzy
2771
- msgid "Marked as spam"
2772
- msgstr "Spam:"
2773
-
2774
- #: wppa-boxes-html.php:2645
2775
- msgid "Edit!"
2776
- msgstr "Bearbeiten!"
2777
-
2778
- #: wppa-boxes-html.php:2649
2779
- msgid "Send!"
2780
- msgstr "Absenden!"
2781
-
2782
- #: wppa-boxes-html.php:2710
2783
- msgid "Your name:"
2784
- msgstr "Dein Name:"
2785
-
2786
- #: wppa-boxes-html.php:2725
2787
- msgid "Your email:"
2788
- msgstr "Deine E-mail:"
2789
-
2790
- #: wppa-boxes-html.php:2741
2791
- msgid "Your comment:"
2792
- msgstr "Dein Kommentar:"
2793
-
2794
- #: wppa-boxes-html.php:2786
2795
- #, php-format
2796
- msgid "You must <a href=\"%s\">login</a> to enter a comment"
2797
- msgstr ""
2798
- "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
2799
- "hinterlassen."
2800
-
2801
- #: wppa-boxes-html.php:2789
2802
- #, fuzzy
2803
- msgid "You must login to enter a comment"
2804
- msgstr ""
2805
- "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
2806
- "hinterlassen."
2807
-
2808
- #: wppa-boxes-html.php:2801
2809
- #, fuzzy, php-format
2810
- msgid "%d comments"
2811
- msgstr "%d Kommentare"
2812
-
2813
- #: wppa-boxes-html.php:2805
2814
- msgid "Leave a comment"
2815
- msgstr "Hinterlasse einen Kommentar"
2816
-
2817
- #: wppa-boxes-html.php:2846
2818
- #, fuzzy
2819
- msgid "Smilies are not available"
2820
- msgstr "Diese Seite ist nicht abrufbar."
2821
-
2822
- #: wppa-boxes-html.php:2896
2823
- #, fuzzy
2824
- msgid "Show IPTC data"
2825
- msgstr "IPTC Daten"
2826
-
2827
- #: wppa-boxes-html.php:2907
2828
- #, fuzzy
2829
- msgid "Hide IPTC data"
2830
- msgstr "IPTC Daten"
2831
-
2832
- #: wppa-boxes-html.php:2947
2833
- #, fuzzy
2834
- msgid "No IPTC data"
2835
- msgstr "IPTC Daten"
2836
-
2837
- #: wppa-boxes-html.php:2994
2838
- #, fuzzy
2839
- msgid "Show EXIF data"
2840
- msgstr "EXIF Daten"
2841
-
2842
- #: wppa-boxes-html.php:3005
2843
- #, fuzzy
2844
- msgid "Hide EXIF data"
2845
- msgstr "EXIF Daten"
2846
-
2847
- #: wppa-boxes-html.php:3047
2848
- #, fuzzy
2849
- msgid "No EXIF data"
2850
- msgstr "EXIF Daten"
2851
-
2852
- #: wppa-boxes-html.php:3162 wppa-boxes-html.php:3167
2853
- #, fuzzy
2854
- msgid "< Previous"
2855
- msgstr "Vorheriges Foto"
2856
-
2857
- #: wppa-boxes-html.php:3173 wppa-boxes-html.php:3178
2858
- #, fuzzy
2859
- msgid "Next >"
2860
- msgstr "Nächstes"
2861
-
2862
- #: wppa-boxes-html.php:3275 wppa-boxes-html.php:3334
2863
- #, fuzzy
2864
- msgid "See the authors albums"
2865
- msgstr "--- multiple siehe unten---"
2866
-
2867
- #: wppa-boxes-html.php:3279 wppa-boxes-html.php:3338
2868
- #, fuzzy
2869
- msgid "See the authors photos"
2870
- msgstr ""
2871
- "Der Besucher kann sich eine Übersicht mit Miniaturbildern der Fotos im Album "
2872
- "ansehen."
2873
-
2874
- #: wppa-boxes-html.php:3283 wppa-boxes-html.php:3342
2875
- #, fuzzy
2876
- msgid "See all the authors photos"
2877
- msgstr "Klicken um das Foto im Vollbild und alle Kommentare zu sehen"
2878
-
2879
- #: wppa-boxes-html.php:3306
2880
- #, fuzzy, php-format
2881
- msgid "Photo by: %s"
2882
- msgstr "Foto %s gedreht %s"
2883
-
2884
- #: wppa-boxes-html.php:3307 wppa-boxes-html.php:3361
2885
- #, fuzzy, php-format
2886
- msgid "Max ratings: %s."
2887
- msgstr "auto selekt max %s zufällig"
2888
-
2889
- #: wppa-boxes-html.php:3308 wppa-boxes-html.php:3362
2890
- #, fuzzy, php-format
2891
- msgid "Votes: %s."
2892
- msgstr "%s Stimme(n)"
2893
-
2894
- #: wppa-boxes-html.php:3309 wppa-boxes-html.php:3363
2895
- #, fuzzy, php-format
2896
- msgid "Mean value: %4.2f."
2897
- msgstr "Mittelwert:"
2898
-
2899
- #: wppa-boxes-html.php:3316
2900
- #, fuzzy, php-format
2901
- msgid "Photo %s not found."
2902
- msgstr "Foto wurde nicht gefunden."
2903
-
2904
- #: wppa-boxes-html.php:3714 wppa-photo-admin-autosave.php:195
2905
- #, fuzzy
2906
- msgid "Refresh"
2907
- msgstr "Erneuern"
2908
-
2909
- #: wppa-breadcrumb.php:98 wppa-settings-autosave.php:1452
2910
- msgid "Home"
2911
- msgstr "Startseite"
2912
-
2913
- #: wppa-breadcrumb.php:119
2914
- #, fuzzy
2915
- msgid "Post:"
2916
- msgstr "Beitrag"
2917
-
2918
- #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:604
2919
- #, fuzzy
2920
- msgid "Page:"
2921
- msgstr "Seite"
2922
-
2923
- #: wppa-breadcrumb.php:139
2924
- #, fuzzy
2925
- msgid "with category:"
2926
- msgstr "Kategorie:"
2927
-
2928
- #: wppa-breadcrumb.php:142 wppa-breadcrumb.php:157
2929
- #, fuzzy
2930
- msgid "with name:"
2931
- msgstr "Dein Name:"
2932
-
2933
- #: wppa-breadcrumb.php:145 wppa-breadcrumb.php:161
2934
- msgid "with words:"
2935
- msgstr ""
2936
-
2937
- #: wppa-breadcrumb.php:154
2938
- msgid "with tag:"
2939
- msgstr ""
2940
-
2941
- #: wppa-breadcrumb.php:165
2942
- msgid "of owner:"
2943
- msgstr ""
2944
-
2945
- #: wppa-breadcrumb.php:170
2946
- #, fuzzy
2947
- msgid "with iptc tag:"
2948
- msgstr "Kategorie:"
2949
-
2950
- #: wppa-breadcrumb.php:170 wppa-breadcrumb.php:175
2951
- #, fuzzy
2952
- msgid "with content:"
2953
- msgstr "Dein Name:"
2954
-
2955
- #: wppa-breadcrumb.php:175
2956
- msgid "with exif tag:"
2957
- msgstr ""
2958
-
2959
- #: wppa-breadcrumb.php:183 wppa-breadcrumb.php:207 wppa-breadcrumb.php:264
2960
- #: wppa-breadcrumb.php:282 wppa-breadcrumb.php:305 wppa-breadcrumb.php:328
2961
- #: wppa-breadcrumb.php:346 wppa-breadcrumb.php:358 wppa-breadcrumb.php:376
2962
- #: wppa-breadcrumb.php:391 wppa-breadcrumb.php:410
2963
- #, fuzzy
2964
- msgid "View the thumbnails"
2965
- msgstr "Anzeigen..."
2966
-
2967
- #: wppa-breadcrumb.php:201
2968
- #, fuzzy, php-format
2969
- msgid "Searchresults from album %s and its subalbums"
2970
- msgstr ""
2971
- "Das Foto %s existiert schon in der Album Nummer %s. Aus den Depot entfernt."
2972
-
2973
- #: wppa-breadcrumb.php:205 wppa-breadcrumb.php:210
2974
- msgid "Searchstring:"
2975
- msgstr "Suchtext:"
2976
-
2977
- #: wppa-breadcrumb.php:219 wppa-breadcrumb.php:237
2978
- #, fuzzy
2979
- msgid "Photos by EXIF date"
2980
- msgstr "EXIF Daten"
2981
-
2982
- #: wppa-breadcrumb.php:223 wppa-breadcrumb.php:241
2983
- #, fuzzy
2984
- msgid "Photos by date of upload"
2985
- msgstr "Fotos hochgeladen zu Album Nr"
2986
-
2987
- #: wppa-breadcrumb.php:227 wppa-breadcrumb.php:245
2988
- msgid "Photos by date last modified"
2989
- msgstr ""
2990
-
2991
- #: wppa-breadcrumb.php:257 wppa-breadcrumb.php:267
2992
- #, fuzzy, php-format
2993
- msgid "Photos by %s"
2994
- msgstr "Mit insgesamt %s Fotos."
2995
-
2996
- #: wppa-breadcrumb.php:274 wppa-breadcrumb.php:292 wppa-breadcrumb.php:320
2997
- #: wppa-breadcrumb.php:338 wppa-breadcrumb.php:425
2998
- #, fuzzy
2999
- msgid "Various albums"
3000
- msgstr ""
3001
- "Du kannst verschiedene Alben erstellen, die Fotos und auch Unter-Alben zur "
3002
- "gleichen Zeit enthalten."
3003
-
3004
- #: wppa-breadcrumb.php:276 wppa-breadcrumb.php:294 wppa-breadcrumb.php:322
3005
- #: wppa-breadcrumb.php:340 wppa-breadcrumb.php:429 wppa-lasten-widget.php:185
3006
- #, fuzzy
3007
- msgid "Albums:"
3008
- msgstr "Alben:"
3009
-
3010
- #: wppa-breadcrumb.php:280 wppa-breadcrumb.php:285
3011
- msgid "Top rated photos"
3012
- msgstr "Hoch bewertete Fotos"
3013
-
3014
- #: wppa-breadcrumb.php:299 wppa-breadcrumb.php:309
3015
- #, fuzzy
3016
- msgid "Recently modified photos"
3017
- msgstr "--- Die zuletzt hochgeladenen Fotos---"
3018
-
3019
- #: wppa-breadcrumb.php:302 wppa-breadcrumb.php:312
3020
- #, fuzzy
3021
- msgid "Recently uploaded photos"
3022
- msgstr "--- Die zuletzt hochgeladenen Fotos---"
3023
-
3024
- #: wppa-breadcrumb.php:326 wppa-breadcrumb.php:331 wppa-comment-widget.php:40
3025
- #, fuzzy
3026
- msgid "Recently commented photos"
3027
- msgstr "--- Die zuletzt kommentierten Fotos ---"
3028
-
3029
- #: wppa-breadcrumb.php:344 wppa-breadcrumb.php:349 wppa-featen-widget.php:38
3030
- #, fuzzy
3031
- msgid "Featured photos"
3032
- msgstr "Ausgewählte Fotos"
3033
-
3034
- #: wppa-breadcrumb.php:356 wppa-breadcrumb.php:361
3035
- #, fuzzy
3036
- msgid "Related photos"
3037
- msgstr "Thumbnail Fotos verwandte Einstellungen"
3038
-
3039
- #: wppa-breadcrumb.php:368 wppa-breadcrumb.php:379
3040
- #, fuzzy
3041
- msgid "Tagged photos:"
3042
- msgstr "Fotos"
3043
-
3044
- #: wppa-breadcrumb.php:368 wppa-breadcrumb.php:379
3045
- msgid "or"
3046
- msgstr ""
3047
-
3048
- #: wppa-breadcrumb.php:370 wppa-breadcrumb.php:381
3049
- msgid "Inverted"
3050
- msgstr ""
3051
-
3052
- #: wppa-breadcrumb.php:408 wppa-breadcrumb.php:413
3053
- #, fuzzy
3054
- msgid "Recently updated albums"
3055
- msgstr "--- die zuletzt hinzugefügten Alben ---"
3056
-
3057
- #: wppa-breadcrumb.php:423
3058
- #, fuzzy, php-format
3059
- msgid "Various albums by %s"
3060
- msgstr ""
3061
- "Du kannst verschiedene Alben erstellen, die Fotos und auch Unter-Alben zur "
3062
- "gleichen Zeit enthalten."
3063
-
3064
- #: wppa-breadcrumb.php:450 wppa-breadcrumb.php:465
3065
- #, fuzzy
3066
- msgid "Thumbnail view"
3067
- msgstr "Anzeigen..."
3068
-
3069
- #: wppa-breadcrumb.php:454 wppa-breadcrumb.php:455 wppa-breadcrumb.php:470
3070
- #: wppa-breadcrumb.php:471
3071
- #, fuzzy
3072
- msgid "Thumbs"
3073
- msgstr "Miniaturbild Widget "
3074
-
3075
- #: wppa-breadcrumb.php:602
3076
- msgid "Unpublished"
3077
- msgstr ""
3078
-
3079
- #: wppa-breadcrumb.php:632
3080
- msgid "Found photos will meet the search criteria as follows:"
3081
- msgstr ""
3082
-
3083
- #: wppa-breadcrumb.php:635
3084
- msgid "AND"
3085
- msgstr ""
3086
-
3087
- #: wppa-breadcrumb.php:639
3088
- msgid "OR"
3089
- msgstr ""
3090
-
3091
- #: wppa-cart.php:25
3092
- #, fuzzy
3093
- msgid "Buy now"
3094
- msgstr ""
3095
- "Verwenden Sie die Schnittstelle zu WPPA Einfacher Warenkorb & Jetzt Kaufen "
3096
- "Plugin."
3097
-
3098
- #: wppa-cart.php:89
3099
- #, fuzzy, php-format
3100
- msgid "Unit Price: %s each"
3101
- msgstr ""
3102
- "Die Argumente sind die gleichen, wie die Standardeinstellungen: name = "
3103
- "photoname, Preis = 0,01."
3104
-
3105
- #: wppa-cart.php:93
3106
- msgid "Qty:"
3107
- msgstr ""
3108
-
3109
- #: wppa-comment-admin.php:35
3110
- #, fuzzy
3111
- msgid "Photo Albums -> Edit Comment"
3112
- msgstr "Foto Alben"
3113
-
3114
- #: wppa-comment-admin.php:61
3115
- #, fuzzy
3116
- msgid "Photo:"
3117
- msgstr "Foto"
3118
-
3119
- #: wppa-comment-admin.php:72
3120
- msgid "User:"
3121
- msgstr ""
3122
-
3123
- #: wppa-comment-admin.php:76
3124
- msgid "Email:"
3125
- msgstr ""
3126
-
3127
- #: wppa-comment-admin.php:80
3128
- #, fuzzy
3129
- msgid "Comment:"
3130
- msgstr "Kommentare"
3131
-
3132
- #: wppa-comment-admin.php:86 wppa-widget-admin.php:204
3133
- #: wppa-widget-admin.php:268
3134
- msgid "Save Changes"
3135
- msgstr ""
3136
-
3137
- #: wppa-comment-admin.php:99
3138
- #, fuzzy
3139
- msgid "Comment deleted"
3140
- msgstr "Kommentar bearbeitet"
3141
-
3142
- #: wppa-comment-admin.php:127 wppa-comment-admin.php:135
3143
- #, fuzzy
3144
- msgid "Could not bulk update status"
3145
- msgstr "Das Album konnte nicht erstellt werden."
3146
-
3147
- #: wppa-comment-admin.php:143
3148
- #, fuzzy
3149
- msgid "Could not bulk delete spam"
3150
- msgstr "Das Album konnte nicht erstellt werden."
3151
-
3152
- #: wppa-comment-admin.php:149
3153
- msgid "Changes Saved"
3154
- msgstr ""
3155
-
3156
- #: wppa-comment-admin.php:176
3157
- msgid "Photo Albums -> Moderate Comment"
3158
- msgstr ""
3159
-
3160
- #: wppa-comment-admin.php:177
3161
- msgid "Photo Albums -> Comment admin"
3162
- msgstr ""
3163
-
3164
- #: wppa-comment-admin.php:181
3165
- msgid ""
3166
- "<h3>The Comment system is not activated</h3><p>To activate: check Table II "
3167
- "item 18 on the <b>Photo Albums -> Settings</b> screen and press <b>Save "
3168
- "Changes</b>"
3169
- msgstr ""
3170
-
3171
- #: wppa-comment-admin.php:188
3172
- msgid "Total:"
3173
- msgstr ""
3174
-
3175
- #: wppa-comment-admin.php:192
3176
- #, fuzzy
3177
- msgid "Approved:"
3178
- msgstr "Alle anstehende Genehmigen"
3179
-
3180
- #: wppa-comment-admin.php:196
3181
- msgid "Pending:"
3182
- msgstr ""
3183
-
3184
- #: wppa-comment-admin.php:200
3185
- msgid "Spam:"
3186
- msgstr ""
3187
-
3188
- #: wppa-comment-admin.php:205
3189
- msgid "Auto deleted spam:"
3190
- msgstr ""
3191
-
3192
- #: wppa-comment-admin.php:220
3193
- msgid "Linkpage:"
3194
- msgstr ""
3195
-
3196
- #: wppa-comment-admin.php:223 wppa-settings-autosave.php:4516
3197
- #: wppa-settings-autosave.php:7317
3198
- #, fuzzy
3199
- msgid "--- Please select a page ---"
3200
- msgstr "--- gelöscht ---"
3201
-
3202
- #: wppa-comment-admin.php:238
3203
- msgid ""
3204
- "You can see the photo and all its comments on the selected page by clicking "
3205
- "on the thumbnail image"
3206
- msgstr ""
3207
-
3208
- #: wppa-comment-admin.php:242
3209
- msgid "Display status:"
3210
- msgstr ""
3211
-
3212
- #: wppa-comment-admin.php:244
3213
- msgid "all"
3214
- msgstr ""
3215
-
3216
- #: wppa-comment-admin.php:245
3217
- msgid "pending"
3218
- msgstr ""
3219
-
3220
- #: wppa-comment-admin.php:246
3221
- #, fuzzy
3222
- msgid "approved"
3223
- msgstr "Alle anstehende Genehmigen"
3224
-
3225
- #: wppa-comment-admin.php:247
3226
- msgid "spam"
3227
- msgstr ""
3228
-
3229
- #: wppa-comment-admin.php:250
3230
- msgid "Display order:"
3231
- msgstr ""
3232
-
3233
- #: wppa-comment-admin.php:252
3234
- msgid "timestamp"
3235
- msgstr ""
3236
-
3237
- #: wppa-comment-admin.php:255 wppa-photo-admin-autosave.php:1280
3238
- msgid "Bulk action:"
3239
- msgstr ""
3240
-
3241
- #: wppa-comment-admin.php:258
3242
- msgid "Approve all pending"
3243
- msgstr ""
3244
-
3245
- #: wppa-comment-admin.php:259
3246
- msgid "Move all pending to spam"
3247
- msgstr ""
3248
-
3249
- #: wppa-comment-admin.php:260
3250
- #, fuzzy
3251
- msgid "Delete all spam"
3252
- msgstr "Das Album konnte nicht erstellt werden."
3253
-
3254
- #: wppa-comment-admin.php:262
3255
- msgid "Save Settings / Perform bulk action"
3256
- msgstr ""
3257
-
3258
- #: wppa-comment-admin.php:301 wppa-comment-admin.php:388 wppa-non-admin.php:582
3259
- msgid "Photo"
3260
- msgstr "Foto"
3261
-
3262
- #: wppa-comment-admin.php:302 wppa-comment-admin.php:389
3263
- #, fuzzy
3264
- msgid "(Album)"
3265
- msgstr "Alben:"
3266
-
3267
- #: wppa-comment-admin.php:303 wppa-comment-admin.php:390
3268
- #: wppa-settings-autosave.php:451 wppa-settings-autosave.php:613
3269
- #: wppa-settings-autosave.php:635 wppa-settings-autosave.php:1335
3270
- #: wppa-settings-autosave.php:1356 wppa-settings-autosave.php:2730
3271
- #: wppa-settings-autosave.php:2751 wppa-settings-autosave.php:3062
3272
- #: wppa-settings-autosave.php:3086 wppa-settings-autosave.php:4237
3273
- #: wppa-settings-autosave.php:4258 wppa-settings-autosave.php:4434
3274
- #: wppa-settings-autosave.php:4458 wppa-settings-autosave.php:5485
3275
- #: wppa-settings-autosave.php:5993 wppa-settings-autosave.php:6015
3276
- #: wppa-settings-autosave.php:6595 wppa-settings-autosave.php:6619
3277
- #: wppa-settings-autosave.php:8291 wppa-settings-autosave.php:8312
3278
- #: wppa-settings-autosave.php:8352 wppa-settings-autosave.php:8374
3279
- #: wppa-settings-autosave.php:8420
3280
- msgid "#"
3281
- msgstr ""
3282
-
3283
- #: wppa-comment-admin.php:304 wppa-comment-admin.php:391
3284
- msgid "IP"
3285
- msgstr ""
3286
-
3287
- #: wppa-comment-admin.php:305 wppa-comment-admin.php:392
3288
- msgid "User"
3289
- msgstr ""
3290
-
3291
- #: wppa-comment-admin.php:306 wppa-comment-admin.php:393
3292
- msgid "Email"
3293
- msgstr ""
3294
-
3295
- #: wppa-comment-admin.php:307 wppa-comment-admin.php:394
3296
- msgid "Time since"
3297
- msgstr ""
3298
-
3299
- #: wppa-comment-admin.php:308 wppa-comment-admin.php:395
3300
- #, fuzzy
3301
- msgid "Comment"
3302
- msgstr "Kommentare"
3303
-
3304
- #: wppa-comment-admin.php:346
3305
- msgid "Click to see the fullsize photo and all comments"
3306
- msgstr ""
3307
-
3308
- #: wppa-comment-admin.php:357
3309
- #, php-format
3310
- msgid "Reply to your comment on photo: %s on %s"
3311
- msgstr ""
3312
-
3313
- #: wppa-comment-admin.php:358 wppa-functions.php:2100
3314
- msgid "Reply"
3315
- msgstr "Antwort"
3316
-
3317
- #: wppa-comment-admin.php:369 wppa-photo-admin-autosave.php:833
3318
- #: wppa-photo-admin-autosave.php:856 wppa-photo-admin-autosave.php:1007
3319
- #: wppa-photo-admin-autosave.php:1017 wppa-photo-admin-autosave.php:1298
3320
- #: wppa-photo-admin-autosave.php:1415 wppa-photo-admin-autosave.php:1427
3321
- msgid "Pending"
3322
- msgstr ""
3323
-
3324
- #: wppa-comment-admin.php:370 wppa-photo-admin-autosave.php:1008
3325
- #: wppa-photo-admin-autosave.php:1018
3326
- #, fuzzy
3327
- msgid "Approved"
3328
- msgstr "Alle anstehende Genehmigen"
3329
-
3330
- #: wppa-comment-admin.php:371 wppa-photo-admin-autosave.php:1009
3331
- #: wppa-photo-admin-autosave.php:1019
3332
- msgid "Spam"
3333
- msgstr ""
3334
-
3335
- #: wppa-comment-admin.php:380
3336
- #, fuzzy
3337
- msgid "Are you sure you want to delete this comment?"
3338
- msgstr "Möchtest Du diesen Kommentar wirklich löschen?"
3339
-
3340
- #: wppa-comment-admin.php:420 wppa-comment-admin.php:426
3341
- msgid "Unable to update comment. Err ="
3342
- msgstr ""
3343
-
3344
- #: wppa-comment-widget.php:14
3345
- #, fuzzy
3346
- msgid "WPPA+ Comments on Photos"
3347
- msgstr "Kommentar Widget Foto-Link."
3348
-
3349
- #: wppa-comment-widget.php:15 wppa-comment-widget.php:116
3350
- #, fuzzy
3351
- msgid "Comments on Photos"
3352
- msgstr "Kommentar Widget Foto-Link."
3353
-
3354
- #: wppa-comment-widget.php:73 wppa-thumbnails.php:493
3355
- msgid "wrote"
3356
- msgstr ""
3357
-
3358
- #: wppa-comment-widget.php:87 wppa-featen-widget.php:95
3359
- #: wppa-lasten-widget.php:125 wppa-potd-widget.php:133
3360
- #: wppa-thumbnail-widget.php:114 wppa-topten-widget.php:153
3361
- msgid "Photo not found."
3362
- msgstr "Foto wurde nicht gefunden."
3363
-
3364
- #: wppa-common-functions.php:76 wppa-common-functions.php:79
3365
- #, fuzzy
3366
- msgid "Default photo album for"
3367
- msgstr "Standardfotoalbum für"
3368
-
3369
- #: wppa-common-functions.php:581 wppa-common-functions.php:617
3370
- msgid "1 second"
3371
- msgstr "1 Sekunde"
3372
-
3373
- #: wppa-common-functions.php:582 wppa-common-functions.php:618
3374
- #: wppa-functions.php:4271
3375
- msgid "seconds"
3376
- msgstr "Sekunden"
3377
-
3378
- #: wppa-common-functions.php:586 wppa-common-functions.php:622
3379
- msgid "1 minute"
3380
- msgstr "1 Minute"
3381
-
3382
- #: wppa-common-functions.php:587 wppa-common-functions.php:623
3383
- #: wppa-functions.php:4270
3384
- msgid "minutes"
3385
- msgstr "Minuten"
3386
-
3387
- #: wppa-common-functions.php:591 wppa-common-functions.php:627
3388
- msgid "1 hour"
3389
- msgstr "1 Stunde"
3390
-
3391
- #: wppa-common-functions.php:592 wppa-common-functions.php:628
3392
- #: wppa-functions.php:4269
3393
- msgid "hours"
3394
- msgstr "Stunden"
3395
-
3396
- #: wppa-common-functions.php:596 wppa-common-functions.php:632
3397
- msgid "1 day"
3398
- msgstr "1 Tag"
3399
-
3400
- #: wppa-common-functions.php:597 wppa-common-functions.php:633
3401
- #: wppa-functions.php:4268
3402
- msgid "days"
3403
- msgstr "Tage"
3404
-
3405
- #: wppa-common-functions.php:601 wppa-common-functions.php:637
3406
- msgid "1 week"
3407
- msgstr "1 Woche"
3408
-
3409
- #: wppa-common-functions.php:602 wppa-common-functions.php:638
3410
- #: wppa-functions.php:4267
3411
- msgid "weeks"
3412
- msgstr "Wochen"
3413
-
3414
- #: wppa-common-functions.php:606 wppa-common-functions.php:642
3415
- msgid "1 month"
3416
- msgstr "1 Monat"
3417
-
3418
- #: wppa-common-functions.php:607 wppa-common-functions.php:643
3419
- msgid "months"
3420
- msgstr "Monate"
3421
-
3422
- #: wppa-common-functions.php:610 wppa-common-functions.php:646
3423
- msgid "1 year"
3424
- msgstr "1 Jahr"
3425
-
3426
- #: wppa-common-functions.php:611 wppa-common-functions.php:647
3427
- msgid "years"
3428
- msgstr "Jahre"
3429
-
3430
- #: wppa-common-functions.php:870 wppa-common-functions.php:871
3431
- msgid "ERROR: Resized or copied image could not be created."
3432
- msgstr ""
3433
-
3434
- #: wppa-common-functions.php:916 wppa-common-functions.php:917
3435
- #, php-format
3436
- msgid "ERROR: File %s is not a valid picture file."
3437
- msgstr ""
3438
-
3439
- #: wppa-common-functions.php:1735
3440
- #, php-format
3441
- msgid ""
3442
- "Based on your server memory limit you should not upload images larger then "
3443
- "<strong>%d x %d (%2.1f MP)</strong>"
3444
- msgstr ""
3445
-
3446
- #: wppa-common-functions.php:2010
3447
- #, fuzzy
3448
- msgid "- select an album -"
3449
- msgstr "Bitte wähle Album"
3450
-
3451
- #: wppa-common-functions.php:2022 wppa-items.php:373
3452
- #: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
3453
- #: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
3454
- #: wppa-tagcloud-widget.php:79
3455
- #, fuzzy
3456
- msgid "--- all ---"
3457
- msgstr "--- alle---"
3458
-
3459
- #: wppa-common-functions.php:2028
3460
- #, fuzzy
3461
- msgid "--- generic ---"
3462
- msgstr "--- keine ---"
3463
-
3464
- #: wppa-common-functions.php:2039
3465
- msgid "--- multiple see below ---"
3466
- msgstr ""
3467
-
3468
- #: wppa-common-functions.php:2045
3469
- #, fuzzy
3470
- msgid "--- a selection box ---"
3471
- msgstr "--- gelöscht ---"
3472
-
3473
- #: wppa-common-functions.php:2079 wppa-items.php:369
3474
- #: wppa-settings-autosave.php:7143 wppa-settings-autosave.php:7199
3475
- #: wppa-upload.php:1516
3476
- msgid "--- separate ---"
3477
- msgstr "--- separat ---"
3478
-
3479
- #: wppa-common-functions.php:2177
3480
- #, fuzzy
3481
- msgid "Photo id ="
3482
- msgstr "Foto des Tages"
3483
-
3484
- #: wppa-common-functions.php:2177
3485
- msgid "Value ="
3486
- msgstr ""
3487
-
3488
- #: wppa-date-time.php:85 wppa-date-time.php:196
3489
- #, fuzzy
3490
- msgid "Jan"
3491
- msgstr "und"
3492
-
3493
- #: wppa-date-time.php:85 wppa-date-time.php:196
3494
- msgid "Feb"
3495
- msgstr ""
3496
-
3497
- #: wppa-date-time.php:85 wppa-date-time.php:196
3498
- msgid "Mar"
3499
- msgstr ""
3500
-
3501
- #: wppa-date-time.php:85 wppa-date-time.php:196
3502
- #, fuzzy
3503
- msgid "Apr"
3504
- msgstr "Alle anstehende Genehmigen"
3505
-
3506
- #: wppa-date-time.php:85 wppa-date-time.php:196
3507
- msgid "May"
3508
- msgstr ""
3509
-
3510
- #: wppa-date-time.php:85 wppa-date-time.php:196
3511
- msgid "Jun"
3512
- msgstr ""
3513
-
3514
- #: wppa-date-time.php:85 wppa-date-time.php:196
3515
- msgid "Jul"
3516
- msgstr ""
3517
-
3518
- #: wppa-date-time.php:85 wppa-date-time.php:196
3519
- msgid "Aug"
3520
- msgstr ""
3521
-
3522
- #: wppa-date-time.php:85 wppa-date-time.php:196
3523
- msgid "Sep"
3524
- msgstr ""
3525
-
3526
- #: wppa-date-time.php:85 wppa-date-time.php:196
3527
- msgid "Oct"
3528
- msgstr ""
3529
-
3530
- #: wppa-date-time.php:85 wppa-date-time.php:196
3531
- msgid "Nov"
3532
- msgstr ""
3533
-
3534
- #: wppa-date-time.php:85 wppa-date-time.php:196
3535
- msgid "Dec"
3536
- msgstr ""
3537
-
3538
- #: wppa-exif-iptc-common.php:70 wppa-exif-iptc-common.php:136
3539
- msgid "n.a."
3540
- msgstr ""
3541
-
3542
- #: wppa-exif-iptc-common.php:214 wppa-utils.php:2397
3543
- #, fuzzy
3544
- msgid "Not Defined"
3545
- msgstr "definiert, bei Widget-Aktivierung."
3546
-
3547
- #: wppa-exif-iptc-common.php:215 wppa-utils.php:2398
3548
- msgid "Manual"
3549
- msgstr ""
3550
-
3551
- #: wppa-exif-iptc-common.php:216 wppa-utils.php:2399
3552
- #, fuzzy
3553
- msgid "Program AE"
3554
- msgstr ""
3555
- "Fotos importieren: Sammelimport von Fotos, die mit einem Ftp Programm "
3556
- "hochgeladen wurden."
3557
-
3558
- #: wppa-exif-iptc-common.php:217 wppa-utils.php:2400
3559
- #, fuzzy
3560
- msgid "Aperture-priority AE"
3561
- msgstr "Filter Priorität"
3562
-
3563
- #: wppa-exif-iptc-common.php:218 wppa-utils.php:2401
3564
- #, fuzzy
3565
- msgid "Shutter speed priority AE"
3566
- msgstr "Speed Ein-Ausblenden"
3567
-
3568
- #: wppa-exif-iptc-common.php:219 wppa-utils.php:2402
3569
- #, fuzzy
3570
- msgid "Creative (Slow speed)"
3571
- msgstr "Speed Ein-Ausblenden"
3572
-
3573
- #: wppa-exif-iptc-common.php:220 wppa-utils.php:2403
3574
- #, fuzzy
3575
- msgid "Action (High speed)"
3576
- msgstr "hoch"
3577
-
3578
- #: wppa-exif-iptc-common.php:221 wppa-utils.php:2404
3579
- #, fuzzy
3580
- msgid "Portrait"
3581
- msgstr "Nur Hochformat:"
3582
-
3583
- #: wppa-exif-iptc-common.php:222 wppa-utils.php:2405
3584
- #, fuzzy
3585
- msgid "Landscape"
3586
- msgstr "4:5 Querformat abgeschnitten"
3587
-
3588
- #: wppa-exif-iptc-common.php:223 wppa-utils.php:2406
3589
- msgid "Bulb"
3590
- msgstr ""
3591
-
3592
- #: wppa-exif-iptc-common.php:245 wppa-utils.php:2407
3593
- #, fuzzy
3594
- msgid "Average"
3595
- msgstr "durchschnittlich"
3596
-
3597
- #: wppa-exif-iptc-common.php:246 wppa-utils.php:2408
3598
- #, fuzzy
3599
- msgid "Center-weighted average"
3600
- msgstr "durchschnittlich"
3601
-
3602
- #: wppa-exif-iptc-common.php:247 wppa-utils.php:2409
3603
- msgid "Spot"
3604
- msgstr ""
3605
-
3606
- #: wppa-exif-iptc-common.php:248 wppa-utils.php:2410
3607
- #, fuzzy
3608
- msgid "Multi-spot"
3609
- msgstr "Multi Bewertung"
3610
-
3611
- #: wppa-exif-iptc-common.php:249 wppa-utils.php:2411
3612
- #, fuzzy
3613
- msgid "Multi-segment"
3614
- msgstr "Multi Bewertung"
3615
-
3616
- #: wppa-exif-iptc-common.php:250 wppa-utils.php:2412
3617
- msgid "Partial"
3618
- msgstr ""
3619
-
3620
- #: wppa-exif-iptc-common.php:251 wppa-settings-autosave.php:4362
3621
- #: wppa-utils.php:2413
3622
- #, fuzzy
3623
- msgid "Other"
3624
- msgstr "Andere"
3625
-
3626
- #: wppa-exif-iptc-common.php:287 wppa-utils.php:2414
3627
- msgid "No Flash"
3628
- msgstr ""
3629
-
3630
- #: wppa-exif-iptc-common.php:289 wppa-utils.php:2415
3631
- msgid "Fired"
3632
- msgstr ""
3633
-
3634
- #: wppa-exif-iptc-common.php:291 wppa-utils.php:2416
3635
- msgid "Fired, Return not detected"
3636
- msgstr ""
3637
-
3638
- #: wppa-exif-iptc-common.php:293 wppa-utils.php:2417
3639
- msgid "Fired, Return detected"
3640
- msgstr ""
3641
-
3642
- #: wppa-exif-iptc-common.php:295 wppa-utils.php:2418
3643
- #, fuzzy
3644
- msgid "On, Did not fire"
3645
- msgstr ""
3646
- "Wenn Sie die Option \"still at first norated\", wird das erste Foto, dass "
3647
- "der Besucher kein Rating gegeben hat im Blättern-Modus angezeigt werden."
3648
-
3649
- #: wppa-exif-iptc-common.php:297 wppa-utils.php:2419
3650
- msgid "On, Fired"
3651
- msgstr ""
3652
-
3653
- #: wppa-exif-iptc-common.php:299 wppa-utils.php:2420
3654
- msgid "On, Return not detected"
3655
- msgstr ""
3656
-
3657
- #: wppa-exif-iptc-common.php:301 wppa-utils.php:2421
3658
- msgid "On, Return detected"
3659
- msgstr ""
3660
-
3661
- #: wppa-exif-iptc-common.php:303 wppa-utils.php:2422
3662
- #, fuzzy
3663
- msgid "Off, Did not fire"
3664
- msgstr "--- aus ---"
3665
-
3666
- #: wppa-exif-iptc-common.php:305 wppa-utils.php:2423
3667
- #, fuzzy
3668
- msgid "Off, Did not fire, Return not detected"
3669
- msgstr "--- aus ---"
3670
-
3671
- #: wppa-exif-iptc-common.php:307 wppa-utils.php:2424
3672
- #, fuzzy
3673
- msgid "Auto, Did not fire"
3674
- msgstr "Automatisch Gespeichert"
3675
-
3676
- #: wppa-exif-iptc-common.php:309 wppa-utils.php:2425
3677
- #, fuzzy
3678
- msgid "Auto, Fired"
3679
- msgstr "Automatisch Gespeichert"
3680
-
3681
- #: wppa-exif-iptc-common.php:311 wppa-utils.php:2426
3682
- #, fuzzy
3683
- msgid "Auto, Fired, Return not detected"
3684
- msgstr "Automatisch Gespeichert"
3685
-
3686
- #: wppa-exif-iptc-common.php:313 wppa-utils.php:2427
3687
- #, fuzzy
3688
- msgid "Auto, Fired, Return detected"
3689
- msgstr "Automatisch Gespeichert"
3690
-
3691
- #: wppa-exif-iptc-common.php:315 wppa-utils.php:2428
3692
- #, fuzzy
3693
- msgid "No flash function"
3694
- msgstr ""
3695
- ". </i>Dieses Plugin wird dazu führen, das wppa+ nicht richtig funktioniert ."
3696
-
3697
- #: wppa-exif-iptc-common.php:317 wppa-utils.php:2429
3698
- #, fuzzy
3699
- msgid "Off, No flash function"
3700
- msgstr "--- aus ---"
3701
-
3702
- #: wppa-exif-iptc-common.php:319 wppa-utils.php:2430
3703
- #, fuzzy
3704
- msgid "Fired, Red-eye reduction"
3705
- msgstr ""
3706
- "<span style=\"color:red\" >Warnung: Laden Sie keine urheberrechtlich "
3707
- "geschütztes Material!</span>"
3708
-
3709
- #: wppa-exif-iptc-common.php:321 wppa-utils.php:2431
3710
- #, fuzzy
3711
- msgid "Fired, Red-eye reduction, Return not detected"
3712
- msgstr ""
3713
- "<span style=\"color:red\" >Warnung: Laden Sie keine urheberrechtlich "
3714
- "geschütztes Material!</span>"
3715
-
3716
- #: wppa-exif-iptc-common.php:323 wppa-utils.php:2432
3717
- #, fuzzy
3718
- msgid "Fired, Red-eye reduction, Return detected"
3719
- msgstr ""
3720
- "<span style=\"color:red\" >Warnung: Laden Sie keine urheberrechtlich "
3721
- "geschütztes Material!</span>"
3722
-
3723
- #: wppa-exif-iptc-common.php:325 wppa-utils.php:2433
3724
- #, fuzzy
3725
- msgid "On, Red-eye reduction"
3726
- msgstr ""
3727
- "<span style=\"color:red\" >Warnung: Laden Sie keine urheberrechtlich "
3728
- "geschütztes Material!</span>"
3729
-
3730
- #: wppa-exif-iptc-common.php:327 wppa-utils.php:2434
3731
- #, fuzzy
3732
- msgid "Red-eye reduction, Return not detected"
3733
- msgstr ""
3734
- "<span style=\"color:red\" >Warnung: Laden Sie keine urheberrechtlich "
3735
- "geschütztes Material!</span>"
3736
-
3737
- #: wppa-exif-iptc-common.php:329 wppa-utils.php:2435
3738
- #, fuzzy
3739
- msgid "On, Red-eye reduction, Return detected"
3740
- msgstr ""
3741
- "<span style=\"color:red\" >Warnung: Laden Sie keine urheberrechtlich "
3742
- "geschütztes Material!</span>"
3743
-
3744
- #: wppa-exif-iptc-common.php:331 wppa-utils.php:2436
3745
- #, fuzzy
3746
- msgid "Off, Red-eye reduction"
3747
- msgstr "--- aus ---"
3748
-
3749
- #: wppa-exif-iptc-common.php:333 wppa-utils.php:2437
3750
- #, fuzzy
3751
- msgid "Auto, Did not fire, Red-eye reduction"
3752
- msgstr "Automatisch Gespeichert"
3753
-
3754
- #: wppa-exif-iptc-common.php:335 wppa-utils.php:2438
3755
- #, fuzzy
3756
- msgid "Auto, Fired, Red-eye reduction"
3757
- msgstr "Automatisch Gespeichert"
3758
-
3759
- #: wppa-exif-iptc-common.php:337 wppa-utils.php:2439
3760
- #, fuzzy
3761
- msgid "Auto, Fired, Red-eye reduction, Return not detected"
3762
- msgstr "Automatisch Gespeichert"
3763
-
3764
- #: wppa-exif-iptc-common.php:339 wppa-utils.php:2440
3765
- #, fuzzy
3766
- msgid "Auto, Fired, Red-eye reduction, Return detected"
3767
- msgstr "Automatisch Gespeichert"
3768
-
3769
- #: wppa-export.php:36
3770
- #, php-format
3771
- msgid "Photos will be exported to: <b>%s</b>."
3772
- msgstr ""
3773
-
3774
- #: wppa-export.php:37
3775
- msgid ""
3776
- "Export photos from album <span style=\"font-size:12px;\">(Including Album "
3777
- "information)</span>:"
3778
- msgstr ""
3779
-
3780
- #: wppa-export.php:66
3781
- #, fuzzy
3782
- msgid "Export"
3783
- msgstr "Fotos Exportieren"
3784
-
3785
- #: wppa-export.php:81
3786
- msgid "Exporting...<br/>"
3787
- msgstr ""
3788
-
3789
- #: wppa-export.php:90
3790
- msgid "ok, <br/>Filling"
3791
- msgstr ""
3792
-
3793
- #: wppa-export.php:92
3794
- msgid "failed<br/>"
3795
- msgstr ""
3796
-
3797
- #: wppa-export.php:98
3798
- msgid ""
3799
- "Can export albums and photos, but cannot make a zipfile. Your php version is "
3800
- "< 5.2.7."
3801
- msgstr ""
3802
-
3803
- #: wppa-export.php:99
3804
- msgid ""
3805
- "Can export albums and photos, but cannot make a zipfile. Your php version "
3806
- "does not support ZipArchive."
3807
- msgstr ""
3808
-
3809
- #: wppa-export.php:109
3810
- msgid "<br/>Processing album"
3811
- msgstr ""
3812
-
3813
- #: wppa-export.php:129
3814
- msgid "done."
3815
- msgstr ""
3816
-
3817
- #: wppa-export.php:129 wppa-upload.php:2116
3818
- msgid "photos processed."
3819
- msgstr ""
3820
-
3821
- #: wppa-export.php:133
3822
- msgid "<br/>Done export albums."
3823
- msgstr ""
3824
-
3825
- #: wppa-export.php:136
3826
- msgid "Nothing to export"
3827
- msgstr ""
3828
-
3829
- #: wppa-export.php:140
3830
- msgid "<br/>Closing zip."
3831
- msgstr ""
3832
-
3833
- #: wppa-export.php:141
3834
- msgid "<br/>Deleting temp files."
3835
- msgstr ""
3836
-
3837
- #: wppa-export.php:150
3838
- msgid "<br/>Done!"
3839
- msgstr ""
3840
-
3841
- #: wppa-export.php:196 wppa-export.php:265
3842
- #, php-format
3843
- msgid "Cannot write to file %s."
3844
- msgstr ""
3845
-
3846
- #: wppa-export.php:210
3847
- #, fuzzy
3848
- msgid "Could not open album output file."
3849
- msgstr "Das Album konnte nicht erstellt werden."
3850
-
3851
- #: wppa-export.php:215
3852
- #, fuzzy
3853
- msgid "Could not read album data."
3854
- msgstr "Das Album konnte nicht erstellt werden."
3855
-
3856
- #: wppa-export.php:279
3857
- #, fuzzy
3858
- msgid "Could not open photo output file."
3859
- msgstr "Konnte Foto nicht einfügen. query="
3860
-
3861
- #: wppa-export.php:284
3862
- #, fuzzy
3863
- msgid "Could not read photo data."
3864
- msgstr "Konnte Foto nicht einfügen. query="
3865
-
3866
- #: wppa-featen-widget.php:14
3867
- #, fuzzy
3868
- msgid "WPPA+ Featured Photos"
3869
- msgstr "Ausgewählte Fotos"
3870
-
3871
- #: wppa-featen-widget.php:15 wppa-featen-widget.php:129
3872
- #, fuzzy
3873
- msgid "Featured Photos"
3874
- msgstr "Ausgewählte Fotos"
3875
-
3876
- #: wppa-featen-widget.php:73
3877
- #, fuzzy
3878
- msgid "View the featured photos"
3879
- msgstr "Ausgewählte Fotos"
3880
-
3881
- #: wppa-functions.php:551
3882
- #, fuzzy
3883
- msgid "No related photos found."
3884
- msgstr "Thumbnail Fotos verwandte Einstellungen"
3885
-
3886
- #: wppa-functions.php:900
3887
- #, fuzzy, php-format
3888
- msgid ""
3889
- "There are %s albums found. Only the first %s will be shown. Please refine "
3890
- "your search criteria."
3891
- msgstr "Es wurde kein Album oder Foto mit Deinen Suchangaben gefunden."
3892
-
3893
- #: wppa-functions.php:1918 wppa-links.php:733 wppa-links.php:750
3894
- #: wppa-thumbnails.php:588
3895
- #, fuzzy
3896
- msgid "Are you sure you want to remove this photo?"
3897
- msgstr "Bist du sicher, das du dieses Foto drehen möchtest?"
3898
-
3899
- #: wppa-functions.php:2078
3900
- msgid "Comment edited"
3901
- msgstr "Kommentar bearbeitet"
3902
-
3903
- #: wppa-functions.php:2083
3904
- #, fuzzy
3905
- msgid "Photo comment"
3906
- msgstr "Dein Kommentar:"
3907
-
3908
- #: wppa-functions.php:2087
3909
- #, fuzzy
3910
- msgid "Comment on photo:"
3911
- msgstr "Kommentar Widget Foto-Link."
3912
-
3913
- #: wppa-functions.php:2098
3914
- #, fuzzy
3915
- msgid "wrote on photo"
3916
- msgstr "Foto:"
3917
-
3918
- #: wppa-functions.php:2102
3919
- #, fuzzy
3920
- msgid "Moderate comment admin"
3921
- msgstr "Moderiere Kommentare"
3922
-
3923
- #: wppa-functions.php:2105 wppa-functions.php:4124 wppa-upload.php:1415
3924
- #, fuzzy
3925
- msgid "Moderate manage photo"
3926
- msgstr "Moderiere Fotos"
3927
-
3928
- #: wppa-functions.php:2119
3929
- #, fuzzy
3930
- msgid "You receive this email as you are assigned to moderate"
3931
- msgstr ""
3932
- "Gebe die Tags ein, die den neuen Fotos in diesem Album zugeordnet werden."
3933
-
3934
- #: wppa-functions.php:2131
3935
- #, fuzzy
3936
- msgid "You receive this email as administrator of the site"
3937
- msgstr ""
3938
- "Wenn aktiviert, wird der Admin eine Benachrichtigung per E-Mail erhalten."
3939
-
3940
- #: wppa-functions.php:2148
3941
- #, fuzzy
3942
- msgid "You receive this email as uploader of the photo"
3943
- msgstr ""
3944
- "Wenn aktiviert, wird der Admin eine Benachrichtigung per E-Mail erhalten."
3945
-
3946
- #: wppa-functions.php:2165
3947
- #, fuzzy
3948
- msgid "You receive this email as owner of the album"
3949
- msgstr ""
3950
- "Wenn aktiviert, wird der Admin eine Benachrichtigung per E-Mail erhalten."
3951
-
3952
- #: wppa-functions.php:2182
3953
- #, fuzzy
3954
- msgid "You receive this email because you commented this photo earlier."
3955
- msgstr ""
3956
- "Gebe die Tags ein, die den neuen Fotos in diesem Album zugeordnet werden."
3957
-
3958
- #: wppa-functions.php:2208
3959
- msgid "Comment added"
3960
- msgstr "Kommentar hinzugefügt"
3961
-
3962
- #: wppa-functions.php:2214
3963
- #, fuzzy
3964
- msgid ""
3965
- "Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the "
3966
- "computation."
3967
- msgstr "Du können die Seite aktualisieren und es erneut versuchen."
3968
-
3969
- #: wppa-functions.php:2225
3970
- #, fuzzy
3971
- msgid "Could not process comment.\\nProbably timed out."
3972
- msgstr ""
3973
- "Wenn aktiviert, wird der Versuch unternommen, einen Admin-Prozess neu zu "
3974
- "starten, wenn die Zeit abgelaufen ist."
3975
-
3976
- #: wppa-functions.php:2307
3977
- #, fuzzy, php-format
3978
- msgid "1 Comment"
3979
- msgid_plural "%s Comments"
3980
- msgstr[0] "Kommentar:"
3981
- msgstr[1] "Kommentar:"
3982
-
3983
- #: wppa-functions.php:2343 wppa-links.php:1423
3984
- msgid "A video can not be printed or downloaded"
3985
- msgstr ""
3986
-
3987
- #: wppa-functions.php:2778
3988
- #, fuzzy
3989
- msgid "ERROR: Illegal attempt to enter a rating."
3990
- msgstr "<b>FEHLER: Ungültiger Versuch zu bewerten</b>"
3991
-
3992
- #: wppa-functions.php:2791
3993
- #, fuzzy
3994
- msgid "ERROR: Illegal attempt to enter a comment."
3995
- msgstr "<b>FEHLER: Ungültiger Versuch zu kommentieren</b>"
3996
-
3997
- #: wppa-functions.php:3874
3998
- #, fuzzy
3999
- msgid "ERROR: Illegal attempt to create an album."
4000
- msgstr "<b>FEHLER: Ungültiger Versuch zu bewerten</b>"
4001
-
4002
- #: wppa-functions.php:3878
4003
- #, fuzzy
4004
- msgid "Wrong captcha, please try again"
4005
- msgstr "Versuche es erneut!"
4006
-
4007
- #: wppa-functions.php:3891
4008
- #, fuzzy, php-format
4009
- msgid "Album #%s created"
4010
- msgstr "- Das zuletzt erstellte Album -"
4011
-
4012
- #: wppa-functions.php:3896
4013
- #, fuzzy
4014
- msgid "Could not create album"
4015
- msgstr "Das Album konnte nicht erstellt werden."
4016
-
4017
- #: wppa-functions.php:3907
4018
- #, fuzzy
4019
- msgid "ERROR: Illegal attempt to upload a file."
4020
- msgstr "<b>FEHLER: Ungültiger Versuch eine Datei hochzuladen</b>"
4021
-
4022
- #: wppa-functions.php:3947
4023
- #, fuzzy
4024
- msgid "Photo upload"
4025
- msgstr "Fotos hochgeladen zu Album Nr"
4026
-
4027
- #: wppa-functions.php:3948
4028
- #, fuzzy, php-format
4029
- msgid "Photo successfully uploaded."
4030
- msgid_plural "%s photos successfully uploaded."
4031
- msgstr[0] "--- Das zuletzt hochgeladenen Foto ---"
4032
- msgstr[1] "--- Das zuletzt hochgeladenen Foto ---"
4033
-
4034
- #: wppa-functions.php:3949
4035
- #, fuzzy, php-format
4036
- msgid "%s points added."
4037
- msgstr "--- max %s der zuletzt hinzugefügten ---"
4038
-
4039
- #: wppa-functions.php:3953
4040
- #, fuzzy
4041
- msgid "Upload failed"
4042
- msgstr "Fehlgeschlagen!"
4043
-
4044
- #: wppa-functions.php:3956
4045
- #, fuzzy, php-format
4046
- msgid "1 Upload failed"
4047
- msgid_plural "%s uploads failed."
4048
- msgstr[0] "Fehlgeschlagen!"
4049
- msgstr[1] "Fehlgeschlagen!"
4050
-
4051
- #: wppa-functions.php:3996
4052
- msgid "Error during upload"
4053
- msgstr "Fehler beim Hochladen"
4054
-
4055
- #: wppa-functions.php:4001
4056
- msgid "Uploaded file is not an image"
4057
- msgstr "Hochgeladenen datei ist kein Bild"
4058
-
4059
- #: wppa-functions.php:4005
4060
- #, fuzzy, php-format
4061
- msgid ""
4062
- "Only gif, jpg and png image files are supported. Returned filetype = %d."
4063
- msgstr "JPG Bildqualität"
4064
-
4065
- #: wppa-functions.php:4011
4066
- #, fuzzy, php-format
4067
- msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
4068
- msgstr ""
4069
- "Basierend auf Ihrem Server memory limit sollte man nicht Bildern größer als "
4070
- "<strong>%d x %d (%2.1f MP) </strong> hochladen"
4071
-
4072
- #: wppa-functions.php:4017
4073
- #, fuzzy, php-format
4074
- msgid "Uploaded file %s already exists in this album."
4075
- msgstr "Fotos %s hochgeladen zu Album Nr. %s"
4076
-
4077
- #: wppa-functions.php:4025
4078
- #, fuzzy, php-format
4079
- msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
4080
- msgstr "(max %d)"
4081
-
4082
- #: wppa-functions.php:4048
4083
- #, fuzzy
4084
- msgid "Could not insert photo into db."
4085
- msgstr "Konnte Foto nicht einfügen. query="
4086
-
4087
- #: wppa-functions.php:4120 wppa-upload.php:1411
4088
- #, fuzzy, php-format
4089
- msgid "New photo uploaded: %s"
4090
- msgstr ""
4091
- "Gebe jedem neuen im Frontend hochgeladen Foto eine standardisierte "
4092
- "Beschreibung."
4093
-
4094
- #: wppa-functions.php:4121 wppa-upload.php:1412
4095
- #, fuzzy, php-format
4096
- msgid "User %1$s uploaded photo %2$s into album %3$s"
4097
- msgstr "Foto %s kopiert zum Album %s (%s)"
4098
-
4099
- #: wppa-functions.php:4123 wppa-upload.php:1414
4100
- #, fuzzy
4101
- msgid "This upload requires moderation"
4102
- msgstr "Upload Moderation"
4103
-
4104
- #: wppa-functions.php:4127 wppa-upload.php:1418
4105
- msgid "Details:"
4106
- msgstr ""
4107
-
4108
- #: wppa-functions.php:4128 wppa-upload.php:1419 wppa-utils.php:848
4109
- #: wppa-utils.php:860
4110
- #, fuzzy
4111
- msgid "Manage photo"
4112
- msgstr "Verwalte Fotos"
4113
-
4114
- #: wppa-functions.php:4265
4115
- #, fuzzy
4116
- msgid "You can upload after"
4117
- msgstr "bevor Du Deine Fotos hochladen kannst."
4118
-
4119
- #: wppa-functions.php:4294 wppa-functions.php:4305 wppa-links.php:1053
4120
- #: wppa-non-admin.php:641
4121
- #, fuzzy
4122
- msgid "Download"
4123
- msgstr "Popup Download Link"
4124
-
4125
- #: wppa-functions.php:4298 wppa-functions.php:4309
4126
- #, fuzzy
4127
- msgid "Download:"
4128
- msgstr "Popup Download Link"
4129
-
4130
- #: wppa-functions.php:4332
4131
- #, fuzzy
4132
- msgid "Zoom in"
4133
- msgstr "Zeigt Zoom in"
4134
-
4135
- #: wppa-gp-widget.php:15
4136
- msgid "WPPA+ General purpose widget"
4137
- msgstr ""
4138
-
4139
- #: wppa-gp-widget.php:16 wppa-gp-widget.php:31 wppa-gp-widget.php:83
4140
- msgid "WPPA+ Text"
4141
- msgstr ""
4142
-
4143
- #: wppa-gp-widget.php:91
4144
- msgid ""
4145
- "Enter the content just like a normal text widget. This widget will "
4146
- "interprete [wppa] shortcodes."
4147
- msgstr ""
4148
-
4149
- #: wppa-gp-widget.php:92
4150
- #, php-format
4151
- msgid "Don't forget size=\"%s\""
4152
- msgstr ""
4153
-
4154
- #: wppa-gp-widget.php:98
4155
- msgid "Automatically add paragraphs"
4156
- msgstr ""
4157
-
4158
- #: wppa-gp-widget.php:102
4159
- msgid "Show to logged in users only"
4160
- msgstr ""
4161
-
4162
- #: wppa-help.php:21
4163
- #, fuzzy
4164
- msgid "Help and Information"
4165
- msgstr "Hilfe & Info"
4166
-
4167
- #: wppa-help.php:23
4168
- #, fuzzy
4169
- msgid "Plugin Description"
4170
- msgstr "Unsymmetrische Tags in der Album Beschreibung!"
4171
-
4172
- #: wppa-help.php:24
4173
- msgid ""
4174
- "This plugin is designed to easily manage and display your photo albums "
4175
- "within your WordPress site."
4176
- msgstr ""
4177
-
4178
- #: wppa-help.php:25
4179
- #, fuzzy
4180
- msgid "Features:"
4181
- msgstr "Ausgewählte Fotos"
4182
-
4183
- #: wppa-help.php:27
4184
- msgid ""
4185
- "You can create various albums that contain photos as well as sub albums at "
4186
- "the same time."
4187
- msgstr ""
4188
-
4189
- #: wppa-help.php:28
4190
- msgid "There is no limitation to the number of albums and photos."
4191
- msgstr ""
4192
-
4193
- #: wppa-help.php:29
4194
- msgid "There is no limitation to the nesting depth of sub-albums."
4195
- msgstr ""
4196
-
4197
- #: wppa-help.php:30
4198
- msgid "You have full control over the display sizes of the photos."
4199
- msgstr ""
4200
-
4201
- #: wppa-help.php:31
4202
- msgid "You can specify the way the albums are ordered."
4203
- msgstr ""
4204
-
4205
- #: wppa-help.php:32
4206
- msgid ""
4207
- "You can specify the way the photos are ordered within the albums, both on a "
4208
- "system-wide as well as an per album basis."
4209
- msgstr ""
4210
-
4211
- #: wppa-help.php:33
4212
- msgid ""
4213
- "The visitor of your site can run a slideshow from the photos in an album by "
4214
- "a single mouseclick."
4215
- msgstr ""
4216
-
4217
- #: wppa-help.php:34
4218
- msgid ""
4219
- "The visitor can see an overview of thumbnail images of the photos in album."
4220
- msgstr ""
4221
-
4222
- #: wppa-help.php:35
4223
- msgid ""
4224
- "The visitor can browse through the photos in each album you decide to "
4225
- "publish."
4226
- msgstr ""
4227
-
4228
- #: wppa-help.php:36
4229
- msgid ""
4230
- "You can add a Sidebar Widget that displays a photo which can be changed "
4231
- "every hour, day or week."
4232
- msgstr ""
4233
-
4234
- #: wppa-help.php:37
4235
- msgid ""
4236
- "You can add a Sidebar Search Widget, a Tagcloud widget and many others. See "
4237
- "the WP Widgets admin page."
4238
- msgstr ""
4239
-
4240
- #: wppa-help.php:40
4241
- msgid "Plugin Admin Features"
4242
- msgstr ""
4243
-
4244
- #: wppa-help.php:41
4245
- msgid ""
4246
- "You can find the plugin admin section under Menu Photo Albums on the admin "
4247
- "screen."
4248
- msgstr ""
4249
-
4250
- #: wppa-help.php:42
4251
- msgid "The following submenus exist."
4252
- msgstr ""
4253
-
4254
- #: wppa-help.php:44
4255
- msgid "Photo Albums: Create and manage Albums."
4256
- msgstr ""
4257
-
4258
- #: wppa-help.php:45
4259
- #, fuzzy
4260
- msgid "Upload photos: To upload photos to an album you created."
4261
- msgstr ""
4262
- "Unter Foto Alben -> Fotos hochladen kannst Du nun Deine Fotos hochladen. "
4263
- "Lade mindestens 2 Fotos für jedes Album hoch. Stelle sicher das Deine Fotos "
4264
- "eine brauchbare Auflösung haben (ca. bis zu 1024x768 Pixel)."
4265
-
4266
- #: wppa-help.php:46
4267
- msgid ""
4268
- "Import photos: To bulk import photos that have been uploaded by an ftp "
4269
- "program."
4270
- msgstr ""
4271
-
4272
- #: wppa-help.php:47
4273
- msgid "Settings: To control the various settings to customize your needs."
4274
- msgstr ""
4275
-
4276
- #: wppa-help.php:48
4277
- msgid ""
4278
- "Photo of the Day: To specify the behaviour for an optional potd sidebar "
4279
- "widget."
4280
- msgstr ""
4281
-
4282
- #: wppa-help.php:49
4283
- msgid "Comments: The comments on photos management admin page."
4284
- msgstr ""
4285
-
4286
- #: wppa-help.php:50
4287
- msgid "Help & Info: The screen you are watching now."
4288
- msgstr ""
4289
-
4290
- #: wppa-help.php:53
4291
- msgid "Installation"
4292
- msgstr ""
4293
-
4294
- #: wppa-help.php:55
4295
- msgid "You can install the plugin via the standard WP plugins admin page."
4296
- msgstr ""
4297
-
4298
- #: wppa-help.php:56
4299
- msgid "If you want to do it manually, follow the next steps:"
4300
- msgstr ""
4301
-
4302
- #: wppa-help.php:63
4303
- msgid "Unzip and upload the wppa plugin folder to"
4304
- msgstr ""
4305
-
4306
- #: wppa-help.php:64
4307
- msgid "Make sure that the folder"
4308
- msgstr ""
4309
-
4310
- #: wppa-help.php:64
4311
- msgid "exists and is writable by the server (CHMOD 755)"
4312
- msgstr ""
4313
-
4314
- #: wppa-help.php:65
4315
- msgid "Activate the plugin in WP Admin -> Plugins."
4316
- msgstr ""
4317
-
4318
- #: wppa-help.php:68
4319
- msgid "Upgrading WP Photo Album Plus"
4320
- msgstr ""
4321
-
4322
- #: wppa-help.php:69
4323
- msgid "When upgrading WP Photo Album Plus be aware of:"
4324
- msgstr ""
4325
-
4326
- #: wppa-help.php:71
4327
- msgid ""
4328
- "The revision number consists of 3 parts, Major, minor and fix revision. The "
4329
- "current version is:"
4330
- msgstr ""
4331
-
4332
- #: wppa-help.php:72
4333
- msgid ""
4334
- "When an update implies a major or minor version change and you have copied "
4335
- "wppa-theme.php or wppa-style.css to your themes directory, you will have to "
4336
- "remove them and make new copies and/or alterations if that should still be "
4337
- "needed."
4338
- msgstr ""
4339
-
4340
- #: wppa-help.php:73
4341
- msgid ""
4342
- "You will get a one-time reminder after upgrading, the first time you open a "
4343
- "wppa admin page."
4344
- msgstr ""
4345
-
4346
- #: wppa-help.php:76
4347
- msgid "How to start"
4348
- msgstr ""
4349
-
4350
- #: wppa-help.php:78
4351
- msgid "Install WP Photo Album Plus as described above under \"Installation\"."
4352
- msgstr ""
4353
-
4354
- #: wppa-help.php:79
4355
- msgid ""
4356
- "Create at least two albums in the \"Photo Albums\" tab. Leave \"Parent\" at "
4357
- "\"--- none ---\"."
4358
- msgstr ""
4359
-
4360
- #: wppa-help.php:80
4361
- msgid ""
4362
- "In the uploads tab, you can now upload you photots. Upload at least 2 photos "
4363
- "to each album. Make sure the photos you are uploading are of reasonable size "
4364
- "(say up to 1024x768 pixels)."
4365
- msgstr ""
4366
-
4367
- #: wppa-help.php:81
4368
- msgid ""
4369
- "Create a new WP Page, name it something like \"Photo Gallery\" and put in "
4370
- "the content:"
4371
- msgstr ""
4372
-
4373
- #: wppa-help.php:82
4374
- msgid "Publish the page, and view the page from your WP site."
4375
- msgstr ""
4376
-
4377
- #: wppa-help.php:83
4378
- msgid ""
4379
- "Now, go playing with the settings in the \"Settings\" panel, discover all "
4380
- "the configurable options and watch what is happening when you re-open the "
4381
- "\"Photo Gallery\" page."
4382
- msgstr ""
4383
-
4384
- #: wppa-help.php:84
4385
- msgid ""
4386
- "If you want a \"Photo of the day\" sidebar widget you can use an album for "
4387
- "that purpose. See all the options in the \"Photo of the day\" submenu."
4388
- msgstr ""
4389
-
4390
- #: wppa-help.php:87
4391
- msgid "Creating a Photo Album Page or a Post with photos - Advanced"
4392
- msgstr ""
4393
-
4394
- #: wppa-help.php:89
4395
- msgid ""
4396
- "Create a page like you normally would in WordPress, using the \"Default "
4397
- "Template\". In my example, give it the page title of \"Photo Gallery\". In "
4398
- "the Page Content section add the following code:"
4399
- msgstr ""
4400
-
4401
- #: wppa-help.php:91
4402
- msgid ""
4403
- "This will result in a gallery of all Albums that have their parent set to "
4404
- "\"--- none ---\"."
4405
- msgstr ""
4406
-
4407
- #: wppa-help.php:92
4408
- msgid ""
4409
- "If you want to display a single album - say album number 19 - in a WP page "
4410
- "or WP post (they act exactly the same), modify the shortcode like this:"
4411
- msgstr ""
4412
-
4413
- #: wppa-help.php:94
4414
- msgid "This will result in the display of the <b>contents</b> of album nr 19."
4415
- msgstr ""
4416
-
4417
- #: wppa-help.php:95
4418
- msgid ""
4419
- "If you want to display the <b>cover</b> of the album, i.e. like one of the "
4420
- "albums in the \"Photo Gallery\" as used above, use a schortcode like this:"
4421
- msgstr ""
4422
-
4423
- #: wppa-help.php:97
4424
- msgid "If you want to display the <b>slideshow</b> directly, use:"
4425
- msgstr ""
4426
-
4427
- #: wppa-help.php:99
4428
- msgid ""
4429
- "You can add a third argument if you want the photos to be displayed at a "
4430
- "different size than normal. You can \"overrule\" the \"Full size\" setting "
4431
- "by adding the line (for e.g. 300px):"
4432
- msgstr ""
4433
-
4434
- #: wppa-help.php:101
4435
- msgid "The shortcode may be used more than once in a single page or post."
4436
- msgstr ""
4437
-
4438
- #: wppa-help.php:102
4439
- msgid ""
4440
- "For more information see <a href=\"http://wppa.opajaap.nl/shortcode-"
4441
- "reference/\" >the documentation</a>"
4442
- msgstr ""
4443
-
4444
- #: wppa-help.php:104
4445
- msgid ""
4446
- "You can also create a custom page template by dropping the following code "
4447
- "into a page template:"
4448
- msgstr ""
4449
-
4450
- #: wppa-help.php:106
4451
- msgid ""
4452
- "If you want to display the <b>contents</b> of a single album in the template "
4453
- "- say album number 19 - the code would be:"
4454
- msgstr ""
4455
-
4456
- #: wppa-help.php:108
4457
- msgid ""
4458
- "If you want the <b>cover</b> to be displayed instead, use the following code:"
4459
- msgstr ""
4460
-
4461
- #: wppa-help.php:110
4462
- msgid "And to display the <b>slideshow</b> it would be:"
4463
- msgstr ""
4464
-
4465
- #: wppa-help.php:112
4466
- msgid "If you want to specify a size, add another argument:"
4467
- msgstr ""
4468
-
4469
- #: wppa-help.php:114
4470
- msgid ""
4471
- "In order to work properly, the wppa_albums() tag needs to be within the <a "
4472
- "href=\"http://codex.wordpress.org/The_Loop\" target=\"_blank\">WordPress "
4473
- "loop</a>."
4474
- msgstr ""
4475
-
4476
- #: wppa-help.php:115
4477
- msgid "For more information on creating custom page templates, click"
4478
- msgstr ""
4479
-
4480
- #: wppa-help.php:115
4481
- #, fuzzy
4482
- msgid "here"
4483
- msgstr "Hier sind"
4484
-
4485
- #: wppa-help.php:118
4486
- msgid "Facts to remember"
4487
- msgstr ""
4488
-
4489
- #: wppa-help.php:120
4490
- msgid ""
4491
- "You can remove the plugin and re-install the latest version always. This "
4492
- "will not affect your photos or albums."
4493
- msgstr ""
4494
-
4495
- #: wppa-help.php:121
4496
- msgid ""
4497
- "If you go back in version no, run the Setup procedure in <b>Table VIII-A1</"
4498
- "b> of the Photo Albums->Settings admin page."
4499
- msgstr ""
4500
-
4501
- #: wppa-help.php:124
4502
- msgid "Plugin Support And Feature Request"
4503
- msgstr ""
4504
-
4505
- #: wppa-help.php:126
4506
- msgid ""
4507
- "If you've read over this readme carefully and are still having issues, if "
4508
- "you've discovered a bug,"
4509
- msgstr ""
4510
-
4511
- #: wppa-help.php:127
4512
- msgid ""
4513
- "or have a feature request, please check the <a href=\"http://wordpress.org/"
4514
- "tags/wp-photo-album-plus\">forum</a> for this plugin and/or leave a question "
4515
- "there."
4516
- msgstr ""
4517
-
4518
- #: wppa-help.php:129
4519
- msgid ""
4520
- "For hot fixes check the <a href=\"http://plugins.trac.wordpress.org/log/wp-"
4521
- "photo-album-plus/\">development log</a> for this plugin."
4522
- msgstr ""
4523
-
4524
- #: wppa-help.php:131
4525
- msgid ""
4526
- "You may also visit the <a href=\"http://wppa.opajaap.nl/\" target=\"_blank"
4527
- "\">WPPA+ Docs & Demos site</a> that also contains the <a href=\"http://wppa."
4528
- "opajaap.nl/?page_id=39\" target=\"_blank\">WPPA+ Tutorial</a>."
4529
- msgstr ""
4530
-
4531
- #: wppa-help.php:134
4532
- msgid ""
4533
- "If you love this plugin, I would appreciate a donation, either in <a href="
4534
- "\"https://www.paypal.com/cgi-bin/webscr?"
4535
- "cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-"
4536
- "Plus&item_number=Support-Open-Source&currency_code=USD&lc=US\">USD</a> or in "
4537
- "<a href=\"https://www.paypal.com/cgi-bin/webscr?"
4538
- "cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-"
4539
- "Plus&item_number=Support-Open-Source&currency_code=EUR&lc=US\">EURO</a>."
4540
- msgstr ""
4541
-
4542
- #: wppa-help.php:137
4543
- msgid "About and credits"
4544
- msgstr ""
4545
-
4546
- #: wppa-help.php:139
4547
- msgid ""
4548
- "WP Photo Album Plus is extended with many new features and is maintained by "
4549
- "J.N. Breetvelt, a.k.a. (<a href=\"http://www.opajaap.nl/\">OpaJaap</a>)"
4550
- msgstr ""
4551
-
4552
- #: wppa-help.php:140
4553
- msgid "Thanx to R.J. Kaplan for WP Photo Album 1.5.1."
4554
- msgstr ""
4555
-
4556
- #: wppa-help.php:141
4557
- msgid "Thanx to E.S. Rosenberg for programming tips on security issues."
4558
- msgstr ""
4559
-
4560
- #: wppa-help.php:142
4561
- msgid "Thanx to Pavel &#352;orejs for the Numbar code."
4562
- msgstr ""
4563
-
4564
- #: wppa-help.php:143
4565
- msgid ""
4566
- "Thanx to the users who reported bugs and asked for enhancements. Without "
4567
- "them WPPA should not have been what it is now!"
4568
- msgstr ""
4569
-
4570
- #: wppa-help.php:146
4571
- msgid "Licence"
4572
- msgstr ""
4573
-
4574
- #: wppa-help.php:148
4575
- msgid "WP Photo Album is released under the"
4576
- msgstr ""
4577
-
4578
- #: wppa-help.php:148
4579
- msgid "licence."
4580
- msgstr ""
4581
-
4582
- #: wppa-items.php:226 wppa-thumbnails.php:1836
4583
- msgid "Gold medal"
4584
- msgstr ""
4585
-
4586
- #: wppa-items.php:226 wppa-photo-admin-autosave.php:837
4587
- #: wppa-photo-admin-autosave.php:859 wppa-photo-admin-autosave.php:1302
4588
- #: wppa-photo-admin-autosave.php:1419 wppa-photo-admin-autosave.php:1430
4589
- #: wppa-widget-admin.php:126
4590
- msgid "Gold"
4591
- msgstr ""
4592
-
4593
- #: wppa-items.php:227 wppa-thumbnails.php:1837
4594
- msgid "Silver medal"
4595
- msgstr ""
4596
-
4597
- #: wppa-items.php:227 wppa-photo-admin-autosave.php:838
4598
- #: wppa-photo-admin-autosave.php:860 wppa-photo-admin-autosave.php:1303
4599
- #: wppa-photo-admin-autosave.php:1420 wppa-photo-admin-autosave.php:1431
4600
- #: wppa-widget-admin.php:127
4601
- msgid "Silver"
4602
- msgstr ""
4603
-
4604
- #: wppa-items.php:228 wppa-thumbnails.php:1838
4605
- msgid "Bronze medal"
4606
- msgstr ""
4607
-
4608
- #: wppa-items.php:228 wppa-photo-admin-autosave.php:839
4609
- #: wppa-photo-admin-autosave.php:861 wppa-photo-admin-autosave.php:1304
4610
- #: wppa-photo-admin-autosave.php:1421 wppa-photo-admin-autosave.php:1432
4611
- #: wppa-widget-admin.php:128
4612
- msgid "Bronze"
4613
- msgstr ""
4614
-
4615
- #: wppa-items.php:277 wppa-items.php:431 wppa-settings-autosave.php:3219
4616
- #, fuzzy
4617
- msgid "none"
4618
- msgstr "--- kein ---"
4619
-
4620
- #: wppa-items.php:307 wppa-items.php:442 wppa-upload.php:99 wppa-upload.php:104
4621
- #, fuzzy
4622
- msgid "unknown"
4623
- msgstr "unbekannt"
4624
-
4625
- #: wppa-items.php:377 wppa-items.php:398
4626
- #, fuzzy
4627
- msgid "--- deleted ---"
4628
- msgstr "--- gelöscht ---"
4629
-
4630
- #: wppa-items.php:387
4631
- #, fuzzy
4632
- msgid "All Albums"
4633
- msgstr "- alle Alben -"
4634
-
4635
- #: wppa-lasten-widget.php:12
4636
- #, fuzzy
4637
- msgid "WPPA+ Last Ten Uploaded Photos"
4638
- msgstr "WPPA+ Die Zehn höchst bewertesten Fotos"
4639
-
4640
- #: wppa-lasten-widget.php:13 wppa-lasten-widget.php:162
4641
- #, fuzzy
4642
- msgid "Last Ten Photos"
4643
- msgstr "WPPA+ Die Zehn höchst bewertesten Fotos"
4644
-
4645
- #: wppa-lasten-widget.php:44
4646
- #, fuzzy
4647
- msgid "Last Ten Uploaded Photos"
4648
- msgstr "WPPA+ Die Zehn höchst bewertesten Fotos"
4649
-
4650
- #: wppa-lasten-widget.php:108
4651
- #, fuzzy
4652
- msgid "View the most recent uploaded photos"
4653
- msgstr "--- Die zuletzt hochgeladenen Fotos---"
4654
-
4655
- #: wppa-lasten-widget.php:186
4656
- msgid ""
4657
- "Select --- multiple see below --- in the Album selection box. Then enter "
4658
- "album numbers seperated by commas"
4659
- msgstr ""
4660
-
4661
- #: wppa-lasten-widget.php:191 wppa-thumbnail-widget.php:216
4662
- #: wppa-topten-widget.php:226
4663
- msgid "Display:"
4664
- msgstr ""
4665
-
4666
- #: wppa-lasten-widget.php:193 wppa-thumbnail-widget.php:218
4667
- #: wppa-topten-widget.php:228
4668
- #, fuzzy
4669
- msgid "thumbnail images"
4670
- msgstr "Anzeigen..."
4671
-
4672
- #: wppa-lasten-widget.php:194 wppa-thumbnail-widget.php:219
4673
- #: wppa-topten-widget.php:229
4674
- #, fuzzy
4675
- msgid "photo names"
4676
- msgstr "Bitte gibt den Fotonamen an."
4677
-
4678
- #: wppa-lasten-widget.php:200
4679
- msgid "Show time since:"
4680
- msgstr ""
4681
-
4682
- #: wppa-links.php:721
4683
- msgid "App"
4684
- msgstr ""
4685
-
4686
- #: wppa-links.php:722
4687
- msgid "Mod"
4688
- msgstr ""
4689
-
4690
- #: wppa-links.php:723
4691
- msgid "Del"
4692
- msgstr ""
4693
-
4694
- #: wppa-links.php:727 wppa-links.php:744
4695
- #, fuzzy
4696
- msgid "Are you sure you want to publish this photo?"
4697
- msgstr "Bist du sicher, das du dieses Foto drehen möchtest?"
4698
-
4699
- #: wppa-links.php:738 wppa-links.php:755
4700
- #, fuzzy
4701
- msgid "Approve"
4702
- msgstr "Alle anstehende Genehmigen"
4703
-
4704
- #: wppa-links.php:739
4705
- #, fuzzy
4706
- msgid "Moderate"
4707
- msgstr "Moderiere Kommentare"
4708
-
4709
- #: wppa-links.php:756
4710
- #, fuzzy
4711
- msgid "PhotoAdmin"
4712
- msgstr "Foto"
4713
-
4714
- #: wppa-links.php:757
4715
- #, fuzzy
4716
- msgid "CommentAdmin"
4717
- msgstr "%d Kommentare"
4718
-
4719
- #: wppa-links.php:761
4720
- #, fuzzy
4721
- msgid "Are you sure you want to publish this comment?"
4722
- msgstr "Möchtest Du diesen Kommentar wirklich löschen?"
4723
-
4724
- #: wppa-links.php:773
4725
- #, fuzzy
4726
- msgid "Are you sure you want to remove this comment?"
4727
- msgstr "Möchtest Du diesen Kommentar wirklich löschen?"
4728
-
4729
- #: wppa-links.php:787
4730
- #, php-format
4731
- msgid "Scheduled for %s"
4732
- msgstr ""
4733
-
4734
- #: wppa-links.php:994 wppa-links.php:997 wppa-slideshow.php:953
4735
- #, fuzzy
4736
- msgid "Previous"
4737
- msgstr "Vorheriges Foto"
4738
-
4739
- #: wppa-links.php:1004 wppa-links.php:1007 wppa-non-admin.php:587
4740
- #: wppa-slideshow.php:966
4741
- msgid "Next"
4742
- msgstr "Nächstes"
4743
-
4744
- #: wppa-links.php:1053
4745
- #, fuzzy
4746
- msgid "Download album"
4747
- msgstr "Popup Download Link"
4748
-
4749
- #: wppa-links.php:1189
4750
- #, fuzzy
4751
- msgid "View thumbnails"
4752
- msgstr "Anzeigen..."
4753
-
4754
- #: wppa-maintenance.php:60
4755
- msgid "You can run only one maintenance procedure at a time"
4756
- msgstr ""
4757
-
4758
- #: wppa-maintenance.php:60 wppa-upload.php:1440
4759
- msgid "Error"
4760
- msgstr ""
4761
-
4762
- #: wppa-maintenance.php:120
4763
- #, fuzzy
4764
- msgid "Orphan photos"
4765
- msgstr "Fotos hochladen"
4766
-
4767
- #: wppa-maintenance.php:120
4768
- msgid "This album contains refound lost photos"
4769
- msgstr ""
4770
-
4771
- #: wppa-maintenance.php:668 wppa-maintenance.php:684
4772
- #: wppa-photo-admin-autosave.php:1713 wppa-photo-admin-autosave.php:1734
4773
- #: wppa-setup.php:343 wppa.php:369 wppa.php:370
4774
- msgid "Required"
4775
- msgstr ""
4776
-
4777
- #: wppa-maintenance.php:753
4778
- msgid "There are no index items."
4779
- msgstr ""
4780
-
4781
- #: wppa-maintenance.php:767
4782
- msgid "There are no error log messages"
4783
- msgstr ""
4784
-
4785
- #: wppa-maintenance.php:835
4786
- #, fuzzy
4787
- msgid "There are no ratings"
4788
- msgstr "Hier sind"
4789
-
4790
- #: wppa-maintenance.php:891
4791
- msgid "There are no active sessions"
4792
- msgstr ""
4793
-
4794
- #: wppa-multitag-widget.php:13 wppa-tagcloud-widget.php:13
4795
- msgid "WPPA+ Photo Tags"
4796
- msgstr ""
4797
-
4798
- #: wppa-multitag-widget.php:14
4799
- #, fuzzy
4800
- msgid "Photo Tags Filter"
4801
- msgstr "Foto des Tages"
4802
-
4803
- #: wppa-multitag-widget.php:73
4804
- msgid "No of columns:"
4805
- msgstr ""
4806
-
4807
- #: wppa-multitag-widget.php:74 wppa-tagcloud-widget.php:69
4808
- msgid "Select multiple tags or --- all ---:"
4809
- msgstr ""
4810
-
4811
- #: wppa-non-admin.php:315
4812
- msgid "Press f for fullscreen."
4813
- msgstr ""
4814
-
4815
- #: wppa-non-admin.php:349
4816
- msgid ""
4817
- "Keys: f = next mode; escape = exit; p = previous, n = next, s = start/stop, "
4818
- "d = dismiss this notice."
4819
- msgstr ""
4820
-
4821
- #: wppa-non-admin.php:350
4822
- msgid "Keys: f = next mode; escape = exit; d = dismiss this notice."
4823
- msgstr ""
4824
-
4825
- #: wppa-non-admin.php:578 wppa-settings-autosave.php:3373
4826
- #: wppa-slideshow.php:228
4827
- msgid "Start"
4828
- msgstr "Starte"
4829
-
4830
- #: wppa-non-admin.php:579
4831
- msgid "Stop"
4832
- msgstr "Beenden"
4833
-
4834
- #: wppa-non-admin.php:580 wppa-slideshow.php:220
4835
- msgid "Slower"
4836
- msgstr "Langsamer"
4837
-
4838
- #: wppa-non-admin.php:581 wppa-slideshow.php:236
4839
- msgid "Faster"
4840
- msgstr "Schneller"
4841
-
4842
- #: wppa-non-admin.php:583
4843
- msgid "of"
4844
- msgstr "von"
4845
-
4846
- #: wppa-non-admin.php:584
4847
- msgid "Previous photo"
4848
- msgstr "Vorheriges Foto"
4849
-
4850
- #: wppa-non-admin.php:585
4851
- msgid "Next photo"
4852
- msgstr "Nächstes Foto"
4853
-
4854
- #: wppa-non-admin.php:586
4855
- msgid "Prev."
4856
- msgstr "Vorheriges"
4857
-
4858
- #: wppa-non-admin.php:588 wppa-slideshow.php:705 wppa-slideshow.php:717
4859
- #: wppa-slideshow.php:808
4860
- msgid "Average&nbsp;rating"
4861
- msgstr "Durchschnittliche Bewertung"
4862
-
4863
- #: wppa-non-admin.php:589 wppa-slideshow.php:767 wppa-slideshow.php:779
4864
- #: wppa-slideshow.php:790
4865
- msgid "My&nbsp;rating"
4866
- msgstr "Meine&nbsp;Bewertung"
4867
-
4868
- #: wppa-non-admin.php:590
4869
- #, fuzzy
4870
- msgid "Avg."
4871
- msgstr "Der Raum zwischen avg und meine Bewertungssterne"
4872
-
4873
- #: wppa-non-admin.php:591
4874
- msgid "Mine"
4875
- msgstr ""
4876
-
4877
- #: wppa-non-admin.php:592
4878
- #, fuzzy
4879
- msgid "You marked this image as inappropriate."
4880
- msgstr "Mitteilung über ein unangemessenen Bild"
4881
-
4882
- #: wppa-non-admin.php:594
4883
- #, fuzzy
4884
- msgid "No dislikes"
4885
- msgstr "Zeigt die Anzahl der Abneigungen in der Bewertungs Zeile."
4886
-
4887
- #: wppa-non-admin.php:595
4888
- #, fuzzy
4889
- msgid "1 dislike"
4890
- msgstr "Unerledigte Ablehnung"
4891
-
4892
- #: wppa-non-admin.php:596
4893
- #, fuzzy
4894
- msgid "dislikes"
4895
- msgstr "Zeigt die Anzahl der Abneigungen in der Bewertungs Zeile."
4896
-
4897
- #: wppa-non-admin.php:597
4898
- #, fuzzy
4899
- msgid "including mine"
4900
- msgstr ""
4901
- "Exportiere Fotos von Album <span style=\"font-size:12px;\">(Einschließlich "
4902
- "der Informationen des Albums)</span>:"
4903
-
4904
- #: wppa-non-admin.php:600
4905
- msgid "Please enter your name"
4906
- msgstr "Bitte gibt deinen Namen an"
4907
-
4908
- #: wppa-non-admin.php:601
4909
- msgid "Please enter a valid email address"
4910
- msgstr "Bitte gib eine gültige E-Mail Adress an"
4911
-
4912
- #: wppa-non-admin.php:602
4913
- msgid "Please enter a comment"
4914
- msgstr "Bitte hinterlasse einen Kommentar"
4915
-
4916
- #: wppa-non-admin.php:636
4917
- msgid "Double click to start/stop slideshow running"
4918
- msgstr "Doppelklick zum Starten/Stoppen der Slideshow"
4919
-
4920
- #: wppa-photo-admin-autosave.php:35
4921
- #, fuzzy
4922
- msgid "Edit photos"
4923
- msgstr "Foto bearbeiten"
4924
-
4925
- #: wppa-photo-admin-autosave.php:54
4926
- #, fuzzy
4927
- msgid "Moderate photos"
4928
- msgstr "Moderiere Fotos"
4929
-
4930
- #: wppa-photo-admin-autosave.php:96
4931
- msgid "You do not have the rights to do this"
4932
- msgstr ""
4933
-
4934
- #: wppa-photo-admin-autosave.php:118
4935
- msgid "This photo is no longer awaiting moderation."
4936
- msgstr ""
4937
-
4938
- #: wppa-photo-admin-autosave.php:119
4939
- msgid "There are no photos awaiting moderation at this time."
4940
- msgstr ""
4941
-
4942
- #: wppa-photo-admin-autosave.php:121
4943
- msgid "Manage all photos by timestamp"
4944
- msgstr ""
4945
-
4946
- #: wppa-photo-admin-autosave.php:138
4947
- #, fuzzy, php-format
4948
- msgid "Photo %s has been removed."
4949
- msgstr "Foto wurde entfernt."
4950
-
4951
- #: wppa-photo-admin-autosave.php:143 wppa-photo-admin-autosave.php:1467
4952
- #, fuzzy
4953
- msgid "No photos matching your search criteria."
4954
- msgstr "Es wurde kein Album oder Foto mit Deinen Suchangaben gefunden."
4955
-
4956
- #: wppa-photo-admin-autosave.php:146 wppa-photo-admin-autosave.php:1470
4957
- #: wppa-widget-admin.php:210
4958
- #, fuzzy
4959
- msgid "No photos yet in this album."
4960
- msgstr ""
4961
- "Unter Foto Alben -> Fotos hochladen kannst Du nun Deine Fotos hochladen. "
4962
- "Lade mindestens 2 Fotos für jedes Album hoch. Stelle sicher das Deine Fotos "
4963
- "eine brauchbare Auflösung haben (ca. bis zu 1024x768 Pixel)."
4964
-
4965
- #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:544
4966
- msgid "top - left"
4967
- msgstr ""
4968
-
4969
- #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:544
4970
- msgid "top - center"
4971
- msgstr ""
4972
-
4973
- #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:544
4974
- msgid "top - right"
4975
- msgstr ""
4976
-
4977
- #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:545
4978
- msgid "center - left"
4979
- msgstr ""
4980
-
4981
- #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:545
4982
- msgid "center - center"
4983
- msgstr ""
4984
-
4985
- #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:545
4986
- msgid "center - right"
4987
- msgstr ""
4988
-
4989
- #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:546
4990
- msgid "bottom - left"
4991
- msgstr ""
4992
-
4993
- #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:546
4994
- msgid "bottom - center"
4995
- msgstr ""
4996
-
4997
- #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:546
4998
- msgid "bottom - right"
4999
- msgstr ""
5000
-
5001
- #: wppa-photo-admin-autosave.php:177
5002
- #, fuzzy
5003
- msgid "Preview:"
5004
- msgstr "Vorheriges Foto"
5005
-
5006
- #: wppa-photo-admin-autosave.php:179
5007
- #, php-format
5008
- msgid "Album: %d<br />(%s)"
5009
- msgstr ""
5010
-
5011
- #: wppa-photo-admin-autosave.php:182
5012
- msgid "Rotate"
5013
- msgstr ""
5014
-
5015
- #: wppa-photo-admin-autosave.php:183
5016
- #, fuzzy
5017
- msgid "Are you sure you want to rotate this photo left?"
5018
- msgstr "Bist du sicher, das du dieses Foto drehen möchtest?"
5019
-
5020
- #: wppa-photo-admin-autosave.php:185
5021
- #, fuzzy
5022
- msgid "Are you sure you want to rotate this photo 180&deg;?"
5023
- msgstr "Bist du sicher, das du dieses Foto drehen möchtest?"
5024
-
5025
- #: wppa-photo-admin-autosave.php:187
5026
- #, fuzzy
5027
- msgid "Are you sure you want to rotate this photo right?"
5028
- msgstr "Bist du sicher, das du dieses Foto drehen möchtest?"
5029
-
5030
- #: wppa-photo-admin-autosave.php:192
5031
- msgid "If it says 'Photo rotated', the photo is rotated."
5032
- msgstr ""
5033
-
5034
- #: wppa-photo-admin-autosave.php:196
5035
- #, php-format
5036
- msgid "If it says 'Photo rotated', the photo is rotated. %s the page."
5037
- msgstr ""
5038
-
5039
- #: wppa-photo-admin-autosave.php:210
5040
- msgid "Preview fullsize video"
5041
- msgstr ""
5042
-
5043
- #: wppa-photo-admin-autosave.php:225
5044
- #, fuzzy
5045
- msgid "Preview fullsize photo"
5046
- msgstr "Vorheriges Foto"
5047
-
5048
- #: wppa-photo-admin-autosave.php:240
5049
- msgid "Audio disabled"
5050
- msgstr ""
5051
-
5052
- #: wppa-photo-admin-autosave.php:250
5053
- #, fuzzy
5054
- msgid "Upload:"
5055
- msgstr "Upload Foto"
5056
-
5057
- #: wppa-photo-admin-autosave.php:264 wppa-potd-widget.php:156
5058
- msgid "By:"
5059
- msgstr ""
5060
-
5061
- #: wppa-photo-admin-autosave.php:308
5062
- #, fuzzy
5063
- msgid "Rating:"
5064
- msgstr "Bewertung: %s"
5065
-
5066
- #: wppa-photo-admin-autosave.php:314
5067
- #, fuzzy
5068
- msgid "Entries:"
5069
- msgstr "Kategorien:"
5070
-
5071
- #: wppa-photo-admin-autosave.php:314
5072
- #, fuzzy
5073
- msgid "Mean value:"
5074
- msgstr "Mittelwert:"
5075
-
5076
- #: wppa-photo-admin-autosave.php:321
5077
- #, php-format
5078
- msgid "Disliked by %d visitors"
5079
- msgstr ""
5080
-
5081
- #: wppa-photo-admin-autosave.php:325
5082
- #, php-format
5083
- msgid "%d pending votes."
5084
- msgstr ""
5085
-
5086
- #: wppa-photo-admin-autosave.php:335
5087
- #, fuzzy
5088
- msgid "Views"
5089
- msgstr "Ansehen"
5090
-
5091
- #: wppa-photo-admin-autosave.php:346
5092
- #, fuzzy
5093
- msgid "Photo sort order #:"
5094
- msgstr "Foto wurde nicht gefunden."
5095
-
5096
- #: wppa-photo-admin-autosave.php:359
5097
- #, fuzzy
5098
- msgid "Are you sure you want to move this photo?"
5099
- msgstr "Bist du sicher, das du dieses Foto drehen möchtest?"
5100
-
5101
- #: wppa-photo-admin-autosave.php:359
5102
- #, fuzzy
5103
- msgid "Please select an album to move the photo to first."
5104
- msgstr "Bitte wähle Album"
5105
-
5106
- #: wppa-photo-admin-autosave.php:359
5107
- #, fuzzy
5108
- msgid "Move photo to"
5109
- msgstr "Verwalte Fotos"
5110
-
5111
- #: wppa-photo-admin-autosave.php:368
5112
- #, fuzzy
5113
- msgid "Are you sure you want to copy this photo?"
5114
- msgstr "Bist du sicher, das du dieses Foto drehen möchtest?"
5115
-
5116
- #: wppa-photo-admin-autosave.php:368
5117
- #, fuzzy
5118
- msgid "Please select an album to copy the photo to first."
5119
- msgstr "Bitte wähle Album"
5120
-
5121
- #: wppa-photo-admin-autosave.php:368
5122
- msgid "Copy photo to"
5123
- msgstr ""
5124
-
5125
- #: wppa-photo-admin-autosave.php:380 wppa-photo-admin-autosave.php:1351
5126
- #, fuzzy
5127
- msgid "Are you sure you want to delete this photo?"
5128
- msgstr "Bist du sicher, das du dieses Foto drehen möchtest?"
5129
-
5130
- #: wppa-photo-admin-autosave.php:380
5131
- #, fuzzy
5132
- msgid "Delete photo"
5133
- msgstr "Thumbnail Fotos verwandte Einstellungen"
5134
-
5135
- #: wppa-photo-admin-autosave.php:390
5136
- msgid "Autopage Permalink:"
5137
- msgstr ""
5138
-
5139
- #: wppa-photo-admin-autosave.php:403
5140
- #, fuzzy
5141
- msgid "Link url:"
5142
- msgstr "Verweis zu"
5143
-
5144
- #: wppa-photo-admin-autosave.php:408
5145
- msgid "Same tab"
5146
- msgstr ""
5147
-
5148
- #: wppa-photo-admin-autosave.php:409 wppa-settings-autosave.php:4463
5149
- #: wppa-settings-autosave.php:5490
5150
- #, fuzzy
5151
- msgid "New tab"
5152
- msgstr "Das Album konnte nicht erstellt werden."
5153
-
5154
- #: wppa-photo-admin-autosave.php:417
5155
- #, fuzzy
5156
- msgid "Link title:"
5157
- msgstr "Verweis zu"
5158
-
5159
- #: wppa-photo-admin-autosave.php:426
5160
- msgid ""
5161
- "If you want this link to be used, check 'PS Overrule' checkbox in table VI."
5162
- msgstr ""
5163
-
5164
- #: wppa-photo-admin-autosave.php:437
5165
- msgid "HTML Alt attribute:"
5166
- msgstr ""
5167
-
5168
- #: wppa-photo-admin-autosave.php:457
5169
- #, fuzzy
5170
- msgid "Filename:"
5171
- msgstr "Dein Name:"
5172
-
5173
- #: wppa-photo-admin-autosave.php:463
5174
- #, fuzzy
5175
- msgid "Update file"
5176
- msgstr "Erneuere die Plugin Beschreibung"
5177
-
5178
- #: wppa-photo-admin-autosave.php:474 wppa-settings-autosave.php:2953
5179
- #, fuzzy
5180
- msgid "Upload"
5181
- msgstr "Upload Foto"
5182
-
5183
- #: wppa-photo-admin-autosave.php:484
5184
- msgid "Video size:"
5185
- msgstr ""
5186
-
5187
- #: wppa-photo-admin-autosave.php:490 wppa-slideshow-widget.php:201
5188
- msgid "Width:"
5189
- msgstr ""
5190
-
5191
- #: wppa-photo-admin-autosave.php:493 wppa-photo-admin-autosave.php:501
5192
- #, php-format
5193
- msgid "pix, (0=default:%s)"
5194
- msgstr ""
5195
-
5196
- #: wppa-photo-admin-autosave.php:498 wppa-slideshow-widget.php:202
5197
- msgid "Height:"
5198
- msgstr ""
5199
-
5200
- #: wppa-photo-admin-autosave.php:509 wppa-photo-admin-autosave.php:531
5201
- msgid "Formats:"
5202
- msgstr ""
5203
-
5204
- #: wppa-photo-admin-autosave.php:517 wppa-photo-admin-autosave.php:539
5205
- msgid "Filesize:"
5206
- msgstr ""
5207
-
5208
- #: wppa-photo-admin-autosave.php:552
5209
- #, fuzzy
5210
- msgid "Poster:"
5211
- msgstr "Beitrag"
5212
-
5213
- #: wppa-photo-admin-autosave.php:552
5214
- #, fuzzy
5215
- msgid "Photo sizes:"
5216
- msgstr "Foto"
5217
-
5218
- #: wppa-photo-admin-autosave.php:558
5219
- msgid "Source file:"
5220
- msgstr ""
5221
-
5222
- #: wppa-photo-admin-autosave.php:571
5223
- msgid "Remake display file and thumbnail file"
5224
- msgstr ""
5225
-
5226
- #: wppa-photo-admin-autosave.php:571
5227
- msgid "Remake files"
5228
- msgstr ""
5229
-
5230
- #: wppa-photo-admin-autosave.php:576 wppa-photo-admin-autosave.php:601
5231
- #: wppa-photo-admin-autosave.php:624
5232
- msgid "Unavailable"
5233
- msgstr ""
5234
-
5235
- #: wppa-photo-admin-autosave.php:586
5236
- msgid "Display file:"
5237
- msgstr ""
5238
-
5239
- #: wppa-photo-admin-autosave.php:611
5240
- #, fuzzy
5241
- msgid "Thumbnail file:"
5242
- msgstr "Anzeigen..."
5243
-
5244
- #: wppa-photo-admin-autosave.php:630
5245
- #, fuzzy
5246
- msgid "Remake thumbnail file"
5247
- msgstr "Anzeigen..."
5248
-
5249
- #: wppa-photo-admin-autosave.php:630 wppa-settings-autosave.php:6208
5250
- msgid "Remake"
5251
- msgstr ""
5252
-
5253
- #: wppa-photo-admin-autosave.php:641
5254
- #, fuzzy
5255
- msgid "Stereophoto:"
5256
- msgstr "Foto"
5257
-
5258
- #: wppa-photo-admin-autosave.php:645
5259
- msgid "no stereo image or ready anaglyph"
5260
- msgstr ""
5261
-
5262
- #: wppa-photo-admin-autosave.php:646
5263
- msgid "Left - right stereo image"
5264
- msgstr ""
5265
-
5266
- #: wppa-photo-admin-autosave.php:647
5267
- msgid "Right - left stereo image"
5268
- msgstr ""
5269
-
5270
- #: wppa-photo-admin-autosave.php:653
5271
- #, fuzzy
5272
- msgid "Images:"
5273
- msgstr "Seite"
5274
-
5275
- #: wppa-photo-admin-autosave.php:683
5276
- #, fuzzy
5277
- msgid "Location:"
5278
- msgstr "Position/Ort:"
5279
-
5280
- #: wppa-photo-admin-autosave.php:691
5281
- msgid "Lat:"
5282
- msgstr ""
5283
-
5284
- #: wppa-photo-admin-autosave.php:692
5285
- msgid "Lon:"
5286
- msgstr ""
5287
-
5288
- #: wppa-photo-admin-autosave.php:694
5289
- msgid "Refresh the page after changing to see the degrees being updated"
5290
- msgstr ""
5291
-
5292
- #: wppa-photo-admin-autosave.php:704
5293
- #, fuzzy
5294
- msgid "Photoname:"
5295
- msgstr "Foto des Tages"
5296
-
5297
- #: wppa-photo-admin-autosave.php:710
5298
- #, fuzzy
5299
- msgid "Update Photo name"
5300
- msgstr "Bitte gibt den Fotonamen an."
5301
-
5302
- #: wppa-photo-admin-autosave.php:736
5303
- #, fuzzy
5304
- msgid "Update Photo description"
5305
- msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
5306
-
5307
- #: wppa-photo-admin-autosave.php:794
5308
- msgid "Tags:"
5309
- msgstr ""
5310
-
5311
- #: wppa-photo-admin-autosave.php:802
5312
- msgid "Separate tags with commas."
5313
- msgstr ""
5314
-
5315
- #: wppa-photo-admin-autosave.php:813
5316
- msgid "No tags yet"
5317
- msgstr ""
5318
-
5319
- #: wppa-photo-admin-autosave.php:825
5320
- msgid "Status:"
5321
- msgstr ""
5322
-
5323
- #: wppa-photo-admin-autosave.php:834 wppa-photo-admin-autosave.php:857
5324
- #: wppa-photo-admin-autosave.php:1299 wppa-photo-admin-autosave.php:1416
5325
- #: wppa-photo-admin-autosave.php:1428 wppa-widget-admin.php:124
5326
- msgid "Publish"
5327
- msgstr ""
5328
-
5329
- #: wppa-photo-admin-autosave.php:836 wppa-photo-admin-autosave.php:858
5330
- #: wppa-photo-admin-autosave.php:1301 wppa-photo-admin-autosave.php:1418
5331
- #: wppa-widget-admin.php:125
5332
- #, fuzzy
5333
- msgid "Featured"
5334
- msgstr "Ausgewählte Fotos"
5335
-
5336
- #: wppa-photo-admin-autosave.php:840 wppa-photo-admin-autosave.php:862
5337
- #: wppa-photo-admin-autosave.php:1305 wppa-photo-admin-autosave.php:1422
5338
- #: wppa-photo-admin-autosave.php:1433
5339
- msgid "Scheduled"
5340
- msgstr ""
5341
-
5342
- #: wppa-photo-admin-autosave.php:841 wppa-photo-admin-autosave.php:863
5343
- #: wppa-photo-admin-autosave.php:1306 wppa-photo-admin-autosave.php:1423
5344
- #: wppa-photo-admin-autosave.php:1434
5345
- msgid "Private"
5346
- msgstr ""
5347
-
5348
- #: wppa-photo-admin-autosave.php:872
5349
- msgid ""
5350
- "Note: Featured photos should have a descriptive name; a name a search engine "
5351
- "will look for!"
5352
- msgstr ""
5353
-
5354
- #: wppa-photo-admin-autosave.php:882
5355
- msgid "Watermark:"
5356
- msgstr ""
5357
-
5358
- #: wppa-photo-admin-autosave.php:889 wppa-photo-admin-autosave.php:902
5359
- msgid "File:"
5360
- msgstr ""
5361
-
5362
- #: wppa-photo-admin-autosave.php:894 wppa-photo-admin-autosave.php:903
5363
- msgid "Pos:"
5364
- msgstr ""
5365
-
5366
- #: wppa-photo-admin-autosave.php:898
5367
- #, fuzzy
5368
- msgid "Apply watermark"
5369
- msgstr "Wende eine Wasserzeichen-Datei an:"
5370
-
5371
- #: wppa-photo-admin-autosave.php:898
5372
- msgid "Are you sure? Once applied it can not be removed!"
5373
- msgstr ""
5374
-
5375
- #: wppa-photo-admin-autosave.php:898
5376
- msgid "And I do not know if there is already a watermark on this photo"
5377
- msgstr ""
5378
-
5379
- #: wppa-photo-admin-autosave.php:908
5380
- #, fuzzy
5381
- msgid "Not configured"
5382
- msgstr "definiert, bei Widget-Aktivierung."
5383
-
5384
- #: wppa-photo-admin-autosave.php:922
5385
- #, php-format
5386
- msgid "Video %s is not modified yet"
5387
- msgstr ""
5388
-
5389
- #: wppa-photo-admin-autosave.php:925
5390
- #, fuzzy, php-format
5391
- msgid "Photo %s is not modified yet"
5392
- msgstr "Foto wurde nicht gefunden."
5393
-
5394
- #: wppa-photo-admin-autosave.php:944
5395
- msgid "Single image shortcode"
5396
- msgstr ""
5397
-
5398
- #: wppa-photo-admin-autosave.php:950
5399
- msgid "Permalink"
5400
- msgstr ""
5401
-
5402
- #: wppa-photo-admin-autosave.php:955
5403
- msgid "Hi resolution url"
5404
- msgstr ""
5405
-
5406
- #: wppa-photo-admin-autosave.php:960
5407
- msgid "Display file url"
5408
- msgstr ""
5409
-
5410
- #: wppa-photo-admin-autosave.php:966
5411
- #, fuzzy
5412
- msgid "Thumbnail file url"
5413
- msgstr "Anzeigen..."
5414
-
5415
- #: wppa-photo-admin-autosave.php:1010 wppa-photo-admin-autosave.php:1020
5416
- msgid "Trash"
5417
- msgstr ""
5418
-
5419
- #: wppa-photo-admin-autosave.php:1136
5420
- #, php-format
5421
- msgid "Time is out after processing %d out of %d items."
5422
- msgstr ""
5423
-
5424
- #: wppa-photo-admin-autosave.php:1149
5425
- #, php-format
5426
- msgid "%d photos deleted."
5427
- msgstr ""
5428
-
5429
- #: wppa-photo-admin-autosave.php:1152
5430
- #, php-format
5431
- msgid "%1$s photos moved to album %2$s."
5432
- msgstr ""
5433
-
5434
- #: wppa-photo-admin-autosave.php:1155
5435
- #, fuzzy, php-format
5436
- msgid "%1$s photos copied to album %2$s."
5437
- msgstr "Foto %s kopiert zum Album %s (%s)"
5438
-
5439
- #: wppa-photo-admin-autosave.php:1158
5440
- #, php-format
5441
- msgid "Changed status to %1$s on %2$s photos."
5442
- msgstr ""
5443
-
5444
- #: wppa-photo-admin-autosave.php:1161
5445
- #, php-format
5446
- msgid "Changed owner to %1$s on %2$s photos."
5447
- msgstr ""
5448
-
5449
- #: wppa-photo-admin-autosave.php:1164
5450
- #, fuzzy, php-format
5451
- msgid "%d photos processed."
5452
- msgstr ""
5453
- "Die Zeit ist abgelaufen. Beim hochgeladen der %s Fotos in das Album Nr. %s ."
5454
-
5455
- #: wppa-photo-admin-autosave.php:1284
5456
- msgid "Move to"
5457
- msgstr ""
5458
-
5459
- #: wppa-photo-admin-autosave.php:1285
5460
- msgid "Copy to"
5461
- msgstr ""
5462
-
5463
- #: wppa-photo-admin-autosave.php:1287
5464
- msgid "Set status to"
5465
- msgstr ""
5466
-
5467
- #: wppa-photo-admin-autosave.php:1290
5468
- msgid "Set owner to"
5469
- msgstr ""
5470
-
5471
- #: wppa-photo-admin-autosave.php:1297
5472
- #, fuzzy
5473
- msgid "- select a status -"
5474
- msgstr "Bitte wähle Album"
5475
-
5476
- #: wppa-photo-admin-autosave.php:1312
5477
- #, fuzzy
5478
- msgid "- select an owner -"
5479
- msgstr "Bitte wähle Album"
5480
-
5481
- #: wppa-photo-admin-autosave.php:1324
5482
- msgid "Doit!"
5483
- msgstr ""
5484
-
5485
- #: wppa-photo-admin-autosave.php:1326
5486
- msgid ""
5487
- "Pressing this button will reload the page after executing the selected action"
5488
- msgstr ""
5489
-
5490
- #: wppa-photo-admin-autosave.php:1333 wppa-photo-admin-autosave.php:1452
5491
- #: wppa-settings-autosave.php:7632
5492
- #, fuzzy
5493
- msgid "Preview"
5494
- msgstr "Vorheriges Foto"
5495
-
5496
- #: wppa-photo-admin-autosave.php:1338 wppa-photo-admin-autosave.php:1457
5497
- msgid "Remark"
5498
- msgstr ""
5499
-
5500
- #: wppa-photo-admin-autosave.php:1475
5501
- #, php-format
5502
- msgid "Page %d is empty, try <a href=\"%s\" >page %d</a>."
5503
- msgstr ""
5504
-
5505
- #: wppa-photo-admin-autosave.php:1585
5506
- msgid ""
5507
- "Setting photo sequence order has only effect if the photo order method is "
5508
- "set to <b>Order#</b>"
5509
- msgstr ""
5510
-
5511
- #: wppa-photo-admin-autosave.php:1644
5512
- msgid "Id: "
5513
- msgstr ""
5514
-
5515
- #: wppa-photo-admin-autosave.php:1645 wppa-settings-autosave.php:404
5516
- msgid "Video"
5517
- msgstr ""
5518
-
5519
- #: wppa-photo-admin-autosave.php:1646 wppa-settings-autosave.php:385
5520
- msgid "Audio"
5521
- msgstr ""
5522
-
5523
- #: wppa-photo-admin-autosave.php:1647
5524
- msgid "Ord: "
5525
- msgstr ""
5526
-
5527
- #: wppa-photo-admin-autosave.php:1660
5528
- #, fuzzy
5529
- msgid "The album is empty."
5530
- msgstr "Noch kein Album ausgewählt."
5531
-
5532
- #: wppa-photo-admin-autosave.php:1760
5533
- msgid "Combined"
5534
- msgstr ""
5535
-
5536
- #: wppa-photo-admin-autosave.php:1797
5537
- msgid "Word"
5538
- msgstr ""
5539
-
5540
- #: wppa-photo-admin-autosave.php:1800
5541
- msgid "Count"
5542
- msgstr ""
5543
-
5544
- #: wppa-potd-widget.php:14
5545
- #, fuzzy
5546
- msgid "WPPA+ Photo Of The Day"
5547
- msgstr "Foto des Tages"
5548
-
5549
- #: wppa-potd-widget.php:15
5550
- #, fuzzy
5551
- msgid "Photo Of The Day"
5552
- msgstr "Foto des Tages"
5553
-
5554
- #: wppa-potd-widget.php:187
5555
- msgid ""
5556
- "You can set the content and the sizes in this widget in the <b>Photo Albums -"
5557
- "> Sidebar Widget</b> admin page."
5558
- msgstr ""
5559
-
5560
- #: wppa-qr-widget.php:13
5561
- msgid "WPPA+ QR Widget"
5562
- msgstr ""
5563
-
5564
- #: wppa-qr-widget.php:14 wppa-qr-widget.php:32
5565
- msgid "QR Widget"
5566
- msgstr ""
5567
-
5568
- #: wppa-qr-widget.php:95
5569
- msgid ""
5570
- "You can set the sizes and colors in this widget in the <b>Photo Albums -> "
5571
- "Settings</b> admin page."
5572
- msgstr ""
5573
-
5574
- #: wppa-search-widget.php:13
5575
- msgid "WPPA+ Search Photos"
5576
- msgstr ""
5577
-
5578
- #: wppa-search-widget.php:14 wppa-search-widget.php:35
5579
- #: wppa-search-widget.php:65
5580
- #, fuzzy
5581
- msgid "Search Photos"
5582
- msgstr "Super View Fotos"
5583
-
5584
- #: wppa-search-widget.php:79
5585
- msgid "Text:"
5586
- msgstr ""
5587
-
5588
- #: wppa-search-widget.php:83
5589
- msgid ""
5590
- "Enter optional text that will appear before the input box. This may contain "
5591
- "HTML so you can change font size and color."
5592
- msgstr ""
5593
-
5594
- #: wppa-search-widget.php:87
5595
- msgid "Enable rootsearch"
5596
- msgstr ""
5597
-
5598
- #: wppa-search-widget.php:93
5599
- msgid "Enable subsearch"
5600
- msgstr ""
5601
-
5602
- #: wppa-settings-autosave.php:118
5603
- msgid "Saved settings restored"
5604
- msgstr ""
5605
-
5606
- #: wppa-settings-autosave.php:121
5607
- msgid "Unable to restore saved settings"
5608
- msgstr ""
5609
-
5610
- #: wppa-settings-autosave.php:127
5611
- msgid "Reset to default settings"
5612
- msgstr ""
5613
-
5614
- #: wppa-settings-autosave.php:130
5615
- msgid "Unable to set defaults"
5616
- msgstr ""
5617
-
5618
- #: wppa-settings-autosave.php:135
5619
- #, php-format
5620
- msgid "Skinfile %s loaded"
5621
- msgstr ""
5622
-
5623
- #: wppa-settings-autosave.php:146 wppa-settings-autosave.php:168
5624
- #: wppa-settings-autosave.php:189
5625
- #, fuzzy, php-format
5626
- msgid "Upload error %s"
5627
- msgstr "Fotos Hochladen"
5628
-
5629
- #: wppa-settings-autosave.php:151
5630
- #, fuzzy, php-format
5631
- msgid "Uploaded file %s is not a .png file"
5632
- msgstr "Hochgeladenen datei ist kein Bild"
5633
-
5634
- #: wppa-settings-autosave.php:155 wppa-settings-autosave.php:176
5635
- #: wppa-settings-autosave.php:212
5636
- #, fuzzy, php-format
5637
- msgid "Upload of %s done"
5638
- msgstr "Upload Foto"
5639
-
5640
- #: wppa-settings-autosave.php:160 wppa-settings-autosave.php:181
5641
- #: wppa-settings-autosave.php:217
5642
- msgid "No file selected or error on upload"
5643
- msgstr ""
5644
-
5645
- #: wppa-settings-autosave.php:172
5646
- #, fuzzy, php-format
5647
- msgid "Uploaded file %s is not a .ttf file"
5648
- msgstr "Hochgeladenen datei ist kein Bild"
5649
-
5650
- #: wppa-settings-autosave.php:194
5651
- #, fuzzy, php-format
5652
- msgid "Uploaded file %s is not a valid image file"
5653
- msgstr "Hochgeladenen datei ist kein Bild"
5654
-
5655
- #: wppa-settings-autosave.php:273
5656
- #, php-format
5657
- msgid ""
5658
- "%s invalid ratings removed. Please run Table VIII-A5: Rerate to fix the "
5659
- "averages."
5660
- msgstr ""
5661
-
5662
- #: wppa-settings-autosave.php:283
5663
- #, php-format
5664
- msgid "%s obsolete settings removed."
5665
- msgstr ""
5666
-
5667
- #: wppa-settings-autosave.php:292
5668
- #, fuzzy
5669
- msgid "WP Photo Album Plus Settings"
5670
- msgstr "Foto Alben"
5671
-
5672
- #: wppa-settings-autosave.php:293
5673
- msgid "Database revision:"
5674
- msgstr ""
5675
-
5676
- #: wppa-settings-autosave.php:293
5677
- msgid "WP Charset:"
5678
- msgstr ""
5679
-
5680
- #: wppa-settings-autosave.php:296
5681
- msgid "Multisite in singlesite mode."
5682
- msgstr ""
5683
-
5684
- #: wppa-settings-autosave.php:299
5685
- msgid "Multisite enabled."
5686
- msgstr ""
5687
-
5688
- #: wppa-settings-autosave.php:301
5689
- msgid "Blogid ="
5690
- msgstr ""
5691
-
5692
- #: wppa-settings-autosave.php:318
5693
- msgid "Please de-activate plugin <i style=\"font-size:14px;\">"
5694
- msgstr ""
5695
-
5696
- #: wppa-settings-autosave.php:318
5697
- msgid ". </i>This plugin will cause wppa+ to function not properly."
5698
- msgstr ""
5699
-
5700
- #: wppa-settings-autosave.php:328
5701
- msgid "Please note that plugin <i style=\"font-size:14px;\">"
5702
- msgstr ""
5703
-
5704
- #: wppa-settings-autosave.php:328
5705
- msgid "</i> can cause wppa+ to function not properly if it is misconfigured."
5706
- msgstr ""
5707
-
5708
- #: wppa-settings-autosave.php:333 wppa-upload.php:93
5709
- msgid ""
5710
- "There is a serious misconfiguration in your servers PHP config. Function "
5711
- "imagecreatefromjpeg() does not exist. You will encounter problems when "
5712
- "uploading photos and not be able to generate thumbnail images. Ask your "
5713
- "hosting provider to add GD support with a minimal version 1.8."
5714
- msgstr ""
5715
-
5716
- #: wppa-settings-autosave.php:338
5717
- msgid "Rebuilding the Album index needs completion. See Table VIII"
5718
- msgstr ""
5719
-
5720
- #: wppa-settings-autosave.php:339
5721
- msgid "Rebuilding the Photo index needs completion. See Table VIII"
5722
- msgstr ""
5723
-
5724
- #: wppa-settings-autosave.php:341
5725
- msgid "Remove empty albums needs completion. See Table VIII"
5726
- msgstr ""
5727
-
5728
- #: wppa-settings-autosave.php:342
5729
- msgid "Applying new photo description needs completion. See Table VIII"
5730
- msgstr ""
5731
-
5732
- #: wppa-settings-autosave.php:343
5733
- msgid "Appending to photo description needs completion. See Table VIII"
5734
- msgstr ""
5735
-
5736
- #: wppa-settings-autosave.php:344
5737
- msgid "Removing from photo description needs completion. See Table VIII"
5738
- msgstr ""
5739
-
5740
- #: wppa-settings-autosave.php:345
5741
- msgid "Removing file extensions needs completion. See Table VIII"
5742
- msgstr ""
5743
-
5744
- #: wppa-settings-autosave.php:346
5745
- msgid "Regenerating the Thumbnails needs completion. See Table VIII"
5746
- msgstr ""
5747
-
5748
- #: wppa-settings-autosave.php:347
5749
- msgid "Rerating needs completion. See Table VIII"
5750
- msgstr ""
5751
-
5752
- #: wppa-settings-autosave.php:355
5753
- msgid ""
5754
- "A thumbframe width or height should not be smaller than a thumbnail size. "
5755
- "Please correct the corresponding setting(s) in Table I-C"
5756
- msgstr ""
5757
-
5758
- #: wppa-settings-autosave.php:360
5759
- msgid "Show legenda"
5760
- msgstr ""
5761
-
5762
- #: wppa-settings-autosave.php:362
5763
- msgid "Legenda:"
5764
- msgstr ""
5765
-
5766
- #: wppa-settings-autosave.php:363 wppa-settings-autosave.php:365
5767
- #: wppa-settings-autosave.php:1887 wppa-settings-autosave.php:5184
5768
- msgid "Button"
5769
- msgstr ""
5770
-
5771
- #: wppa-settings-autosave.php:363
5772
- msgid "action that causes page reload."
5773
- msgstr ""
5774
-
5775
- #: wppa-settings-autosave.php:365 wppa-settings-autosave.php:9000
5776
- #: wppa-settings-autosave.php:9019
5777
- msgid "Are you sure?"
5778
- msgstr ""
5779
-
5780
- #: wppa-settings-autosave.php:366
5781
- msgid "action that does not cause page reload."
5782
- msgstr ""
5783
-
5784
- #: wppa-settings-autosave.php:368 wppa-settings-autosave.php:7521
5785
- #: wppa-settings-autosave.php:7523 wppa-settings-autosave.php:8703
5786
- #: wppa-settings-autosave.php:8719 wppa-settings-autosave.php:8747
5787
- #: wppa-settings-autosave.php:8771 wppa-settings-autosave.php:8801
5788
- #: wppa-settings-autosave.php:8828 wppa-settings-autosave.php:8854
5789
- #: wppa-settings-autosave.php:8870 wppa-settings-autosave.php:8923
5790
- #: wppa-settings-autosave.php:8953
5791
- msgid "Setting unmodified"
5792
- msgstr ""
5793
-
5794
- #: wppa-settings-autosave.php:370
5795
- msgid "Update in progress"
5796
- msgstr ""
5797
-
5798
- #: wppa-settings-autosave.php:372
5799
- #, fuzzy
5800
- msgid "Setting updated"
5801
- msgstr "Einstellungen"
5802
-
5803
- #: wppa-settings-autosave.php:374
5804
- #, fuzzy
5805
- msgid "Update failed"
5806
- msgstr "Fehlgeschlagen!"
5807
-
5808
- #: wppa-settings-autosave.php:376
5809
- msgid "Hide this"
5810
- msgstr ""
5811
-
5812
- #: wppa-settings-autosave.php:382
5813
- msgid "System"
5814
- msgstr ""
5815
-
5816
- #: wppa-settings-autosave.php:383
5817
- msgid "Access"
5818
- msgstr ""
5819
-
5820
- #: wppa-settings-autosave.php:387
5821
- msgid "Counts"
5822
- msgstr ""
5823
-
5824
- #: wppa-settings-autosave.php:388
5825
- msgid "Covers"
5826
- msgstr ""
5827
-
5828
- #: wppa-settings-autosave.php:389
5829
- msgid "Layout"
5830
- msgstr ""
5831
-
5832
- #: wppa-settings-autosave.php:390 wppa-settings-autosave.php:4413
5833
- msgid "Lightbox"
5834
- msgstr ""
5835
-
5836
- #: wppa-settings-autosave.php:391
5837
- #, fuzzy
5838
- msgid "Links"
5839
- msgstr "Verweis zu"
5840
-
5841
- #: wppa-settings-autosave.php:392
5842
- msgid "Metadata"
5843
- msgstr ""
5844
-
5845
- #: wppa-settings-autosave.php:393
5846
- msgid "Navigation"
5847
- msgstr ""
5848
-
5849
- #: wppa-settings-autosave.php:394 wppa-settings-autosave.php:1461
5850
- #: wppa-settings-autosave.php:7868
5851
- #, fuzzy
5852
- msgid "Page"
5853
- msgstr "Seite"
5854
-
5855
- #: wppa-settings-autosave.php:395 wppa-settings-autosave.php:7664
5856
- #: wppa-settings-autosave.php:7709
5857
- #, fuzzy
5858
- msgid "Rating"
5859
- msgstr "Bewertung: %s"
5860
-
5861
- #: wppa-settings-autosave.php:397
5862
- msgid "Sizes"
5863
- msgstr ""
5864
-
5865
- #: wppa-settings-autosave.php:398
5866
- #, fuzzy
5867
- msgid "Slideshows"
5868
- msgstr "Diaschau"
5869
-
5870
- #: wppa-settings-autosave.php:399
5871
- msgid "Social Media"
5872
- msgstr ""
5873
-
5874
- #: wppa-settings-autosave.php:401
5875
- #, fuzzy
5876
- msgid "Uploads"
5877
- msgstr "Fotos Hochladen"
5878
-
5879
- #: wppa-settings-autosave.php:402
5880
- msgid "Widgets"
5881
- msgstr ""
5882
-
5883
- #: wppa-settings-autosave.php:403 wppa-settings-autosave.php:7502
5884
- msgid "Watermark"
5885
- msgstr ""
5886
-
5887
- #: wppa-settings-autosave.php:411
5888
- msgid "Click on the banner of a (sub)table to open/close it, or"
5889
- msgstr ""
5890
-
5891
- #: wppa-settings-autosave.php:413
5892
- msgid "Show settings related to:"
5893
- msgstr ""
5894
-
5895
- #: wppa-settings-autosave.php:419
5896
- msgid "and ( optionally ) to:"
5897
- msgstr ""
5898
-
5899
- #: wppa-settings-autosave.php:433
5900
- msgid "Quick setup"
5901
- msgstr ""
5902
-
5903
- #: wppa-settings-autosave.php:435
5904
- msgid "Do a quick initial setup"
5905
- msgstr ""
5906
-
5907
- #: wppa-settings-autosave.php:436
5908
- msgid "Close quick setup"
5909
- msgstr ""
5910
-
5911
- #: wppa-settings-autosave.php:443
5912
- msgid "Table O:"
5913
- msgstr ""
5914
-
5915
- #: wppa-settings-autosave.php:443
5916
- msgid "Quick Setup:"
5917
- msgstr ""
5918
-
5919
- #: wppa-settings-autosave.php:444
5920
- msgid "This table enables you to quickly do an inital setup."
5921
- msgstr ""
5922
-
5923
- #: wppa-settings-autosave.php:454 wppa-settings-autosave.php:616
5924
- #: wppa-settings-autosave.php:638 wppa-settings-autosave.php:1338
5925
- #: wppa-settings-autosave.php:1359 wppa-settings-autosave.php:2733
5926
- #: wppa-settings-autosave.php:3089 wppa-settings-autosave.php:4240
5927
- #: wppa-settings-autosave.php:5996 wppa-settings-autosave.php:6622
5928
- #: wppa-settings-autosave.php:8294
5929
- #, fuzzy
5930
- msgid "Setting"
5931
- msgstr "Einstellungen"
5932
-
5933
- #: wppa-settings-autosave.php:455 wppa-settings-autosave.php:617
5934
- #: wppa-settings-autosave.php:639 wppa-settings-autosave.php:1339
5935
- #: wppa-settings-autosave.php:1360 wppa-settings-autosave.php:2734
5936
- #: wppa-settings-autosave.php:2758 wppa-settings-autosave.php:3069
5937
- #: wppa-settings-autosave.php:3090 wppa-settings-autosave.php:4241
5938
- #: wppa-settings-autosave.php:4265 wppa-settings-autosave.php:4441
5939
- #: wppa-settings-autosave.php:4465 wppa-settings-autosave.php:5492
5940
- #: wppa-settings-autosave.php:5998 wppa-settings-autosave.php:6022
5941
- #: wppa-settings-autosave.php:6602 wppa-settings-autosave.php:6623
5942
- #: wppa-settings-autosave.php:8295 wppa-settings-autosave.php:8317
5943
- #: wppa-settings-autosave.php:8357 wppa-settings-autosave.php:8379
5944
- #: wppa-settings-autosave.php:8425
5945
- msgid "Help"
5946
- msgstr ""
5947
-
5948
- #: wppa-settings-autosave.php:466
5949
- msgid ""
5950
- "To quickly setup WPPA+ please answer the following questions. You can alway "
5951
- "change any setting later. <span style=\"color:#700\">Click on me!</span>"
5952
- msgstr ""
5953
-
5954
- #: wppa-settings-autosave.php:468
5955
- msgid "Is your theme <i>responsive</i>?"
5956
- msgstr ""
5957
-
5958
- #: wppa-settings-autosave.php:469
5959
- msgid ""
5960
- "Responsive themes have a layout that varies with the size of the browser "
5961
- "window."
5962
- msgstr ""
5963
-
5964
- #: wppa-settings-autosave.php:470
5965
- msgid ""
5966
- "WPPA+ needs to know this to automaticly adept the width of the display to "
5967
- "the available width on the page."
5968
- msgstr ""
5969
-
5970
- #: wppa-settings-autosave.php:477
5971
- msgid "Do you want to downsize photos during upload?"
5972
- msgstr ""
5973
-
5974
- #: wppa-settings-autosave.php:478
5975
- msgid ""
5976
- "Downsizing photos make them load faster to the visitor, without loosing "
5977
- "display quality"
5978
- msgstr ""
5979
-
5980
- #: wppa-settings-autosave.php:479
5981
- msgid ""
5982
- "If you answer yes, the photos will be downsized to max 1024 x 768 pixels. "
5983
- "You can change this later, if you like"
5984
- msgstr ""
5985
-
5986
- #: wppa-settings-autosave.php:486
5987
- #, fuzzy
5988
- msgid "Do you want to save the original photofiles?"
5989
- msgstr "Bist du sicher, das du dieses Foto drehen möchtest?"
5990
-
5991
- #: wppa-settings-autosave.php:487
5992
- msgid "This will require considerable disk space on the server."
5993
- msgstr ""
5994
-
5995
- #: wppa-settings-autosave.php:488
5996
- msgid ""
5997
- "If you answer yes, you will be able to remove watermarks you applied with "
5998
- "wppa+ in a later stage, redo downsizing to a larger size afterwards, and "
5999
- "supply fullsize images for download."
6000
- msgstr ""
6001
-
6002
- #: wppa-settings-autosave.php:495
6003
- #, fuzzy
6004
- msgid "May visitors upload photos?"
6005
- msgstr "Hochgeladen Fotos benötigen eine Moderation."
6006
-
6007
- #: wppa-settings-autosave.php:496
6008
- msgid ""
6009
- "It is safe to do so, but i will have to do some settings to keep it safe!"
6010
- msgstr ""
6011
-
6012
- #: wppa-settings-autosave.php:497
6013
- msgid ""
6014
- "If you answer yes, i will assume you want to enable logged in users to "
6015
- "upload photos at the front-end of the website and allow them to edit their "
6016
- "photos name and descriptions."
6017
- msgstr ""
6018
-
6019
- #: wppa-settings-autosave.php:498
6020
- msgid ""
6021
- "The photos will be hold for moderation, the admin will get notified by email."
6022
- msgstr ""
6023
-
6024
- #: wppa-settings-autosave.php:499
6025
- msgid ""
6026
- "Each user will get his own album to upload to. These settings can be changed "
6027
- "later."
6028
- msgstr ""
6029
-
6030
- #: wppa-settings-autosave.php:506
6031
- msgid "Do you want the rating system active?"
6032
- msgstr ""
6033
-
6034
- #: wppa-settings-autosave.php:507
6035
- msgid "Enable the rating system and show the votes in the slideshow."
6036
- msgstr ""
6037
-
6038
- #: wppa-settings-autosave.php:508
6039
- msgid "You can configure the details of the rating system later"
6040
- msgstr ""
6041
-
6042
- #: wppa-settings-autosave.php:515
6043
- msgid "Do you want the comment system active?"
6044
- msgstr ""
6045
-
6046
- #: wppa-settings-autosave.php:516
6047
- msgid "Enable the comment system and show the comments in the slideshow."
6048
- msgstr ""
6049
-
6050
- #: wppa-settings-autosave.php:517
6051
- msgid "You can configure the details of the comment system later"
6052
- msgstr ""
6053
-
6054
- #: wppa-settings-autosave.php:524
6055
- msgid "Do you want the social media share buttons displayed?"
6056
- msgstr ""
6057
-
6058
- #: wppa-settings-autosave.php:525
6059
- msgid "Display the social media buttons in the slideshow"
6060
- msgstr ""
6061
-
6062
- #: wppa-settings-autosave.php:526
6063
- msgid ""
6064
- "These buttons share the specific photo rather than the page where it is "
6065
- "displayed on"
6066
- msgstr ""
6067
-
6068
- #: wppa-settings-autosave.php:533
6069
- msgid "Are you going to use IPTC data?"
6070
- msgstr ""
6071
-
6072
- #: wppa-settings-autosave.php:534
6073
- msgid ""
6074
- "IPTC data is information you may have added in a photo manipulation program."
6075
- msgstr ""
6076
-
6077
- #: wppa-settings-autosave.php:535 wppa-settings-autosave.php:544
6078
- msgid ""
6079
- "The information can be displayed in slideshows and in photo descriptions."
6080
- msgstr ""
6081
-
6082
- #: wppa-settings-autosave.php:542
6083
- msgid "Are you going to use EXIF data?"
6084
- msgstr ""
6085
-
6086
- #: wppa-settings-autosave.php:543
6087
- msgid ""
6088
- "EXIF data is information from the camera like model no, focal distance and "
6089
- "aperture used."
6090
- msgstr ""
6091
-
6092
- #: wppa-settings-autosave.php:551
6093
- msgid "Are you going to use GPX data?"
6094
- msgstr ""
6095
-
6096
- #: wppa-settings-autosave.php:552
6097
- msgid ""
6098
- "Some cameras and mobile devices save the geographic location where the photo "
6099
- "is taken."
6100
- msgstr ""
6101
-
6102
- #: wppa-settings-autosave.php:553
6103
- msgid "A Google map can be displayed in slideshows."
6104
- msgstr ""
6105
-
6106
- #: wppa-settings-autosave.php:560
6107
- msgid "Are you going to use Fotomoto?"
6108
- msgstr ""
6109
-
6110
- #: wppa-settings-autosave.php:561
6111
- msgid ""
6112
- "<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> is an "
6113
- "on-line print service."
6114
- msgstr ""
6115
-
6116
- #: wppa-settings-autosave.php:562
6117
- msgid "If you answer Yes, you will have to open an account on Fotomoto."
6118
- msgstr ""
6119
-
6120
- #: wppa-settings-autosave.php:569
6121
- msgid "Are you going to add videofiles?"
6122
- msgstr ""
6123
-
6124
- #: wppa-settings-autosave.php:570
6125
- msgid "You can mix videos and photos in any album."
6126
- msgstr ""
6127
-
6128
- #: wppa-settings-autosave.php:571 wppa-settings-autosave.php:580
6129
- #: wppa-settings-autosave.php:589
6130
- msgid "You can configure the details later"
6131
- msgstr ""
6132
-
6133
- #: wppa-settings-autosave.php:578
6134
- msgid "Are you going to add audiofiles?"
6135
- msgstr ""
6136
-
6137
- #: wppa-settings-autosave.php:579
6138
- msgid "You can add audio to photos in any album."
6139
- msgstr ""
6140
-
6141
- #: wppa-settings-autosave.php:587
6142
- #, fuzzy
6143
- msgid "Are you going to upload 3D stereo photos?"
6144
- msgstr "--- Die zuletzt hochgeladenen Fotos---"
6145
-
6146
- #: wppa-settings-autosave.php:588
6147
- msgid "You can add l-r and r-l stereo photo pairs."
6148
- msgstr ""
6149
-
6150
- #: wppa-settings-autosave.php:596
6151
- msgid "Done?"
6152
- msgstr ""
6153
-
6154
- #: wppa-settings-autosave.php:597
6155
- msgid "If you are ready answering these questions, select <b>yes</b>"
6156
- msgstr ""
6157
-
6158
- #: wppa-settings-autosave.php:598
6159
- msgid ""
6160
- "You can change any setting later, and be more specific and add a lot of "
6161
- "settings. For now it is enough, go create albums and upload photos!"
6162
- msgstr ""
6163
-
6164
- #: wppa-settings-autosave.php:602
6165
- msgid ""
6166
- "Thank you!. The most important settings are done now. You can refine your "
6167
- "settings, the behaviour and appearance of WPPA+ in the Tables below."
6168
- msgstr ""
6169
-
6170
- #: wppa-settings-autosave.php:627
6171
- msgid "Table I:"
6172
- msgstr ""
6173
-
6174
- #: wppa-settings-autosave.php:627
6175
- msgid "Sizes:"
6176
- msgstr ""
6177
-
6178
- #: wppa-settings-autosave.php:628
6179
- msgid ""
6180
- "This table describes all the sizes and size options (except fontsizes) for "
6181
- "the generation and display of the WPPA+ elements."
6182
- msgstr ""
6183
-
6184
- #: wppa-settings-autosave.php:646
6185
- msgid "WPPA+ global system related size settings"
6186
- msgstr ""
6187
-
6188
- #: wppa-settings-autosave.php:648
6189
- msgid "Column Width"
6190
- msgstr ""
6191
-
6192
- #: wppa-settings-autosave.php:649
6193
- msgid "The width of the main column in your theme's display area."
6194
- msgstr ""
6195
-
6196
- #: wppa-settings-autosave.php:650
6197
- msgid "Enter the width of the main column in your theme's display area."
6198
- msgstr ""
6199
-
6200
- #: wppa-settings-autosave.php:651
6201
- msgid ""
6202
- "You should set this value correctly to make sure the fullsize images are "
6203
- "properly aligned horizontally."
6204
- msgstr ""
6205
-
6206
- #: wppa-settings-autosave.php:652
6207
- msgid ""
6208
- "You may enter 'auto' for use in themes that have a floating content column."
6209
- msgstr ""
6210
-
6211
- #: wppa-settings-autosave.php:653
6212
- msgid "The use of 'auto' is required for responsive themes."
6213
- msgstr ""
6214
-
6215
- #: wppa-settings-autosave.php:656 wppa-settings-autosave.php:665
6216
- #: wppa-settings-autosave.php:777 wppa-settings-autosave.php:920
6217
- #: wppa-settings-autosave.php:931
6218
- msgid "pixels wide"
6219
- msgstr ""
6220
-
6221
- #: wppa-settings-autosave.php:661
6222
- msgid "Initial Width"
6223
- msgstr ""
6224
-
6225
- #: wppa-settings-autosave.php:662
6226
- msgid "The most often displayed colun width in responsive theme"
6227
- msgstr ""
6228
-
6229
- #: wppa-settings-autosave.php:663
6230
- msgid ""
6231
- "Change this value only if your responsive theme shows initially a wrong "
6232
- "column width."
6233
- msgstr ""
6234
-
6235
- #: wppa-settings-autosave.php:670
6236
- msgid "Resize on Upload"
6237
- msgstr ""
6238
-
6239
- #: wppa-settings-autosave.php:671
6240
- msgid "Indicate if the photos should be resized during upload."
6241
- msgstr ""
6242
-
6243
- #: wppa-settings-autosave.php:672
6244
- msgid ""
6245
- "If you check this item, the size of the photos will be reduced to the "
6246
- "dimension specified in the next item during the upload/import process."
6247
- msgstr ""
6248
-
6249
- #: wppa-settings-autosave.php:673
6250
- msgid "The photos will never be stretched during upload if they are smaller."
6251
- msgstr ""
6252
-
6253
- #: wppa-settings-autosave.php:681
6254
- msgid "Resize to"
6255
- msgstr ""
6256
-
6257
- #: wppa-settings-autosave.php:682
6258
- msgid "Resize photos to fit within a given area."
6259
- msgstr ""
6260
-
6261
- #: wppa-settings-autosave.php:683
6262
- msgid "Specify the screensize for the unscaled photos."
6263
- msgstr ""
6264
-
6265
- #: wppa-settings-autosave.php:684
6266
- msgid ""
6267
- "The use of a non-default value is particularly usefull when you make use of "
6268
- "lightbox functionality."
6269
- msgstr ""
6270
-
6271
- #: wppa-settings-autosave.php:686 wppa-settings-autosave.php:708
6272
- #: wppa-settings-autosave.php:719 wppa-settings-autosave.php:728
6273
- #: wppa-settings-autosave.php:809 wppa-settings-autosave.php:832
6274
- #: wppa-settings-autosave.php:839 wppa-settings-autosave.php:860
6275
- #: wppa-settings-autosave.php:870 wppa-settings-autosave.php:964
6276
- #: wppa-settings-autosave.php:998 wppa-settings-autosave.php:1018
6277
- #: wppa-settings-autosave.php:1027 wppa-settings-autosave.php:1038
6278
- #: wppa-settings-autosave.php:1050 wppa-settings-autosave.php:1060
6279
- #: wppa-settings-autosave.php:1070 wppa-settings-autosave.php:1123
6280
- #: wppa-settings-autosave.php:1132 wppa-settings-autosave.php:1143
6281
- #: wppa-settings-autosave.php:1163 wppa-settings-autosave.php:1183
6282
- #: wppa-settings-autosave.php:1203 wppa-settings-autosave.php:1223
6283
- #: wppa-settings-autosave.php:1243 wppa-settings-autosave.php:1263
6284
- #: wppa-settings-autosave.php:1272 wppa-settings-autosave.php:1281
6285
- #: wppa-settings-autosave.php:1316 wppa-settings-autosave.php:1325
6286
- #: wppa-settings-autosave.php:2677 wppa-settings-autosave.php:4286
6287
- #: wppa-settings-autosave.php:4303 wppa-settings-autosave.php:4320
6288
- #: wppa-settings-autosave.php:4337 wppa-settings-autosave.php:4354
6289
- #: wppa-settings-autosave.php:4371 wppa-settings-autosave.php:4388
6290
- #: wppa-settings-autosave.php:4405 wppa-settings-autosave.php:4422
6291
- #: wppa-settings-autosave.php:5709 wppa-settings-autosave.php:8026
6292
- #: wppa-settings-autosave.php:8221 wppa-settings-autosave.php:8263
6293
- #: wppa-settings-autosave.php:8281
6294
- msgid "pixels"
6295
- msgstr ""
6296
-
6297
- #: wppa-settings-autosave.php:687
6298
- msgid "Fit within rectangle as set in Table I-B1,2"
6299
- msgstr ""
6300
-
6301
- #: wppa-settings-autosave.php:694
6302
- #, fuzzy
6303
- msgid "Photocount threshold"
6304
- msgstr "Foto des Tages"
6305
-
6306
- #: wppa-settings-autosave.php:695
6307
- msgid "Number of photos in an album must exceed."
6308
- msgstr ""
6309
-
6310
- #: wppa-settings-autosave.php:696
6311
- msgid ""
6312
- "Photos do not show up in the album unless there are more than this number of "
6313
- "photos in the album. This allows you to have cover photos on an album that "
6314
- "contains only sub albums without seeing them in the list of sub albums. "
6315
- "Usually set to 0 (always show) or 1 (for one cover photo)."
6316
- msgstr ""
6317
-
6318
- #: wppa-settings-autosave.php:703
6319
- msgid "Border thickness"
6320
- msgstr ""
6321
-
6322
- #: wppa-settings-autosave.php:704
6323
- msgid "Thickness of wppa+ box borders."
6324
- msgstr ""
6325
-
6326
- #: wppa-settings-autosave.php:705
6327
- msgid ""
6328
- "Enter the thickness for the border of the WPPA+ boxes. A number of 0 means: "
6329
- "no border."
6330
- msgstr ""
6331
-
6332
- #: wppa-settings-autosave.php:706 wppa-settings-autosave.php:716
6333
- msgid "WPPA+ boxes are: the navigation bars and the filmstrip."
6334
- msgstr ""
6335
-
6336
- #: wppa-settings-autosave.php:714
6337
- msgid "Radius of wppa+ box borders."
6338
- msgstr ""
6339
-
6340
- #: wppa-settings-autosave.php:715
6341
- msgid ""
6342
- "Enter the corner radius for the border of the WPPA+ boxes. A number of 0 "
6343
- "means: no rounded corners."
6344
- msgstr ""
6345
-
6346
- #: wppa-settings-autosave.php:717
6347
- msgid "Note that rounded corners are only supported by modern browsers."
6348
- msgstr ""
6349
-
6350
- #: wppa-settings-autosave.php:725
6351
- msgid "Distance between wppa+ boxes."
6352
- msgstr ""
6353
-
6354
- #: wppa-settings-autosave.php:733
6355
- #, fuzzy
6356
- msgid "Related count"
6357
- msgstr "Thumbnail Fotos verwandte Einstellungen"
6358
-
6359
- #: wppa-settings-autosave.php:734
6360
- msgid "The default maximum number of related photos to find."
6361
- msgstr ""
6362
-
6363
- #: wppa-settings-autosave.php:735
6364
- msgid ""
6365
- "When using shortcodes like [wppa type=\"album\" album=\"#related,desc,23\"][/"
6366
- "wppa], the maximum number is 23. Omitting the number gives the maximum of "
6367
- "this setting."
6368
- msgstr ""
6369
-
6370
- #: wppa-settings-autosave.php:743
6371
- msgid "The maximum number of pagelinks to be displayed."
6372
- msgstr ""
6373
-
6374
- #: wppa-settings-autosave.php:746
6375
- msgid "pages"
6376
- msgstr ""
6377
-
6378
- #: wppa-settings-autosave.php:751
6379
- msgid "Max file name length"
6380
- msgstr ""
6381
-
6382
- #: wppa-settings-autosave.php:752
6383
- msgid "The max length of a photo file name excluding the extension."
6384
- msgstr ""
6385
-
6386
- #: wppa-settings-autosave.php:753 wppa-settings-autosave.php:762
6387
- msgid "A setting of 0 means: unlimited."
6388
- msgstr ""
6389
-
6390
- #: wppa-settings-autosave.php:755 wppa-settings-autosave.php:764
6391
- msgid "chars"
6392
- msgstr ""
6393
-
6394
- #: wppa-settings-autosave.php:760
6395
- msgid "Max photo name length"
6396
- msgstr ""
6397
-
6398
- #: wppa-settings-autosave.php:761
6399
- msgid "The max length of a photo name."
6400
- msgstr ""
6401
-
6402
- #: wppa-settings-autosave.php:769
6403
- msgid "Slideshow related size settings"
6404
- msgstr ""
6405
-
6406
- #: wppa-settings-autosave.php:771
6407
- msgid "Maximum Width"
6408
- msgstr ""
6409
-
6410
- #: wppa-settings-autosave.php:772
6411
- msgid "The maximum width photos will be displayed in slideshows."
6412
- msgstr ""
6413
-
6414
- #: wppa-settings-autosave.php:773 wppa-settings-autosave.php:784
6415
- msgid ""
6416
- "Enter the largest size in pixels as how you want your photos to be displayed."
6417
- msgstr ""
6418
-
6419
- #: wppa-settings-autosave.php:774
6420
- msgid ""
6421
- "This is usually the same as the Column Width (Table I-A1), but it may differ."
6422
- msgstr ""
6423
-
6424
- #: wppa-settings-autosave.php:782
6425
- msgid "Maximum Height"
6426
- msgstr ""
6427
-
6428
- #: wppa-settings-autosave.php:783
6429
- msgid "The maximum height photos will be displayed in slideshows."
6430
- msgstr ""
6431
-
6432
- #: wppa-settings-autosave.php:785
6433
- msgid ""
6434
- "This setting defines the height of the space reserved for photos in "
6435
- "slideshows."
6436
- msgstr ""
6437
-
6438
- #: wppa-settings-autosave.php:786
6439
- #, php-format
6440
- msgid ""
6441
- "If you change the width of a display by the %%size= command, this value "
6442
- "changes proportionally to match the aspect ratio as defined by this and the "
6443
- "previous setting."
6444
- msgstr ""
6445
-
6446
- #: wppa-settings-autosave.php:788 wppa-settings-autosave.php:942
6447
- #: wppa-settings-autosave.php:953
6448
- #, fuzzy
6449
- msgid "pixels high"
6450
- msgstr "sehr hoch"
6451
-
6452
- #: wppa-settings-autosave.php:793
6453
- msgid "Stretch to fit"
6454
- msgstr ""
6455
-
6456
- #: wppa-settings-autosave.php:794
6457
- msgid "Stretch photos that are too small."
6458
- msgstr ""
6459
-
6460
- #: wppa-settings-autosave.php:795
6461
- msgid ""
6462
- "Images will be stretched to the Maximum Size at display time if they are "
6463
- "smaller. Leaving unchecked is recommended. It is better to upload photos "
6464
- "that fit well the sizes you use!"
6465
- msgstr ""
6466
-
6467
- #: wppa-settings-autosave.php:802
6468
- #, fuzzy
6469
- msgid "Slideshow borderwidth"
6470
- msgstr "Diaschau"
6471
-
6472
- #: wppa-settings-autosave.php:803
6473
- msgid "The width of the border around slideshow images."
6474
- msgstr ""
6475
-
6476
- #: wppa-settings-autosave.php:804
6477
- msgid ""
6478
- "The border is made by the image background being larger than the image "
6479
- "itsself (padding)."
6480
- msgstr ""
6481
-
6482
- #: wppa-settings-autosave.php:805
6483
- msgid ""
6484
- "Additionally there may be a one pixel outline of a different color. See "
6485
- "Table III-A2."
6486
- msgstr ""
6487
-
6488
- #: wppa-settings-autosave.php:806
6489
- msgid "The number you enter here is exclusive the one pixel outline."
6490
- msgstr ""
6491
-
6492
- #: wppa-settings-autosave.php:807
6493
- msgid "If you leave this entry empty, there will be no outline either."
6494
- msgstr ""
6495
-
6496
- #: wppa-settings-autosave.php:814
6497
- msgid "Numbar Max"
6498
- msgstr ""
6499
-
6500
- #: wppa-settings-autosave.php:815
6501
- msgid "Maximum numbers to display."
6502
- msgstr ""
6503
-
6504
- #: wppa-settings-autosave.php:816
6505
- msgid ""
6506
- "In order to attemt to fit on one line, the numbers will be replaced by dots "
6507
- "- except the current - when there are more than this number of photos in a "
6508
- "slideshow."
6509
- msgstr ""
6510
-
6511
- #: wppa-settings-autosave.php:818
6512
- msgid "numbers"
6513
- msgstr ""
6514
-
6515
- #: wppa-settings-autosave.php:823
6516
- #, fuzzy
6517
- msgid "Share button size"
6518
- msgstr "Zeigt den Twitter-Button in der Share - Box an."
6519
-
6520
- #: wppa-settings-autosave.php:824
6521
- msgid "The size of the social media icons in the Share box"
6522
- msgstr ""
6523
-
6524
- #: wppa-settings-autosave.php:834
6525
- msgid "Mini Treshold"
6526
- msgstr ""
6527
-
6528
- #: wppa-settings-autosave.php:835
6529
- msgid "Show mini text at slideshow smaller then."
6530
- msgstr ""
6531
-
6532
- #: wppa-settings-autosave.php:836
6533
- msgid ""
6534
- "Display Next and Prev. as opposed to Next photo and Previous photo when the "
6535
- "cotainer is smaller than this size."
6536
- msgstr ""
6537
-
6538
- #: wppa-settings-autosave.php:837
6539
- msgid "Special use in responsive themes."
6540
- msgstr ""
6541
-
6542
- #: wppa-settings-autosave.php:845
6543
- msgid "The maximum number of slides in a certain view. 0 means no pagination"
6544
- msgstr ""
6545
-
6546
- #: wppa-settings-autosave.php:848
6547
- #, fuzzy
6548
- msgid "slides"
6549
- msgstr "Diaschau"
6550
-
6551
- #: wppa-settings-autosave.php:853
6552
- msgid "Thumbnail photos related size settings"
6553
- msgstr ""
6554
-
6555
- #: wppa-settings-autosave.php:855
6556
- #, fuzzy
6557
- msgid "Thumbnail Size"
6558
- msgstr "Anzeigen..."
6559
-
6560
- #: wppa-settings-autosave.php:856
6561
- #, fuzzy
6562
- msgid "The size of the thumbnail images."
6563
- msgstr "Anzeigen..."
6564
-
6565
- #: wppa-settings-autosave.php:857 wppa-settings-autosave.php:867
6566
- #: wppa-settings-autosave.php:1057 wppa-settings-autosave.php:1067
6567
- msgid "This size applies to the width or height, whichever is the largest."
6568
- msgstr ""
6569
-
6570
- #: wppa-settings-autosave.php:858 wppa-settings-autosave.php:868
6571
- msgid ""
6572
- "Changing the thumbnail size may result in all thumbnails being regenerated. "
6573
- "this may take a while."
6574
- msgstr ""
6575
-
6576
- #: wppa-settings-autosave.php:865
6577
- #, fuzzy
6578
- msgid "Thumbnail Size Alt"
6579
- msgstr "Anzeigen..."
6580
-
6581
- #: wppa-settings-autosave.php:866
6582
- msgid "The alternative size of the thumbnail images."
6583
- msgstr ""
6584
-
6585
- #: wppa-settings-autosave.php:875
6586
- #, fuzzy
6587
- msgid "Thumbnail Aspect"
6588
- msgstr "Miniaturbild Fotos"
6589
-
6590
- #: wppa-settings-autosave.php:876
6591
- msgid "Aspect ration of thumbnail image"
6592
- msgstr ""
6593
-
6594
- #: wppa-settings-autosave.php:880
6595
- #, fuzzy
6596
- msgid "--- same as fullsize ---"
6597
- msgstr "--- alle---"
6598
-
6599
- #: wppa-settings-autosave.php:881
6600
- #, fuzzy
6601
- msgid "--- square clipped ---"
6602
- msgstr "--- gelöscht ---"
6603
-
6604
- #: wppa-settings-autosave.php:882
6605
- msgid "4:5 landscape clipped"
6606
- msgstr ""
6607
-
6608
- #: wppa-settings-autosave.php:883
6609
- msgid "3:4 landscape clipped"
6610
- msgstr ""
6611
-
6612
- #: wppa-settings-autosave.php:884
6613
- msgid "2:3 landscape clipped"
6614
- msgstr ""
6615
-
6616
- #: wppa-settings-autosave.php:885
6617
- msgid "9:16 landscape clipped"
6618
- msgstr ""
6619
-
6620
- #: wppa-settings-autosave.php:886
6621
- msgid "1:2 landscape clipped"
6622
- msgstr ""
6623
-
6624
- #: wppa-settings-autosave.php:887
6625
- #, fuzzy
6626
- msgid "--- square padded ---"
6627
- msgstr "--- separat ---"
6628
-
6629
- #: wppa-settings-autosave.php:888
6630
- msgid "4:5 landscape padded"
6631
- msgstr ""
6632
-
6633
- #: wppa-settings-autosave.php:889
6634
- msgid "3:4 landscape padded"
6635
- msgstr ""
6636
-
6637
- #: wppa-settings-autosave.php:890
6638
- msgid "2:3 landscape padded"
6639
- msgstr ""
6640
-
6641
- #: wppa-settings-autosave.php:891
6642
- msgid "9:16 landscape padded"
6643
- msgstr ""
6644
-
6645
- #: wppa-settings-autosave.php:892
6646
- msgid "1:2 landscape padded"
6647
- msgstr ""
6648
-
6649
- #: wppa-settings-autosave.php:914
6650
- msgid "Thumbframe width"
6651
- msgstr ""
6652
-
6653
- #: wppa-settings-autosave.php:915
6654
- #, fuzzy
6655
- msgid "The width of the thumbnail frame."
6656
- msgstr "Anzeigen..."
6657
-
6658
- #: wppa-settings-autosave.php:916 wppa-settings-autosave.php:927
6659
- msgid "Set the width of the thumbnail frame."
6660
- msgstr ""
6661
-
6662
- #: wppa-settings-autosave.php:917 wppa-settings-autosave.php:928
6663
- #: wppa-settings-autosave.php:939 wppa-settings-autosave.php:950
6664
- #: wppa-settings-autosave.php:961
6665
- msgid "Set width, height and spacing for the thumbnail frames."
6666
- msgstr ""
6667
-
6668
- #: wppa-settings-autosave.php:918 wppa-settings-autosave.php:929
6669
- #: wppa-settings-autosave.php:940 wppa-settings-autosave.php:951
6670
- #: wppa-settings-autosave.php:962
6671
- msgid ""
6672
- "These sizes should be large enough for a thumbnail image and - optionally - "
6673
- "the text under it."
6674
- msgstr ""
6675
-
6676
- #: wppa-settings-autosave.php:925
6677
- msgid "Thumbframe width Alt"
6678
- msgstr ""
6679
-
6680
- #: wppa-settings-autosave.php:926
6681
- msgid "The width of the alternative thumbnail frame."
6682
- msgstr ""
6683
-
6684
- #: wppa-settings-autosave.php:936
6685
- msgid "Thumbframe height"
6686
- msgstr ""
6687
-
6688
- #: wppa-settings-autosave.php:937
6689
- msgid "The height of the thumbnail frame."
6690
- msgstr ""
6691
-
6692
- #: wppa-settings-autosave.php:938 wppa-settings-autosave.php:949
6693
- msgid "Set the height of the thumbnail frame."
6694
- msgstr ""
6695
-
6696
- #: wppa-settings-autosave.php:947
6697
- msgid "Thumbframe height Alt"
6698
- msgstr ""
6699
-
6700
- #: wppa-settings-autosave.php:948
6701
- msgid "The height of the alternative thumbnail frame."
6702
- msgstr ""
6703
-
6704
- #: wppa-settings-autosave.php:958
6705
- #, fuzzy
6706
- msgid "Thumbnail spacing"
6707
- msgstr "Miniaturbild Fotos"
6708
-
6709
- #: wppa-settings-autosave.php:959
6710
- msgid "The spacing between adjacent thumbnail frames."
6711
- msgstr ""
6712
-
6713
- #: wppa-settings-autosave.php:960
6714
- msgid "Set the minimal spacing between the adjacent thumbnail frames"
6715
- msgstr ""
6716
-
6717
- #: wppa-settings-autosave.php:969
6718
- msgid "Auto spacing"
6719
- msgstr ""
6720
-
6721
- #: wppa-settings-autosave.php:970
6722
- msgid "Space the thumbnail frames automatic."
6723
- msgstr ""
6724
-
6725
- #: wppa-settings-autosave.php:971
6726
- msgid ""
6727
- "If you check this box, the thumbnail images will be evenly distributed over "
6728
- "the available width."
6729
- msgstr ""
6730
-
6731
- #: wppa-settings-autosave.php:972
6732
- msgid ""
6733
- "In this case, the thumbnail spacing value (setting I-9) will be regarded as "
6734
- "a minimum value."
6735
- msgstr ""
6736
-
6737
- #: wppa-settings-autosave.php:979 wppa-settings-autosave.php:1086
6738
- msgid "Page size"
6739
- msgstr ""
6740
-
6741
- #: wppa-settings-autosave.php:980
6742
- msgid "Max number of thumbnails per page."
6743
- msgstr ""
6744
-
6745
- #: wppa-settings-autosave.php:981
6746
- msgid ""
6747
- "Enter the maximum number of thumbnail images per page. A value of 0 "
6748
- "indicates no pagination."
6749
- msgstr ""
6750
-
6751
- #: wppa-settings-autosave.php:983 wppa-settings-autosave.php:5255
6752
- #: wppa-settings-autosave.php:5286 wppa-settings-autosave.php:5381
6753
- #, fuzzy
6754
- msgid "thumbnails"
6755
- msgstr "Miniaturbild Fotos"
6756
-
6757
- #: wppa-settings-autosave.php:989
6758
- msgid "The size of the thumbnail popup images."
6759
- msgstr ""
6760
-
6761
- #: wppa-settings-autosave.php:990
6762
- msgid ""
6763
- "Enter the size of the popup images. This size should be larger than the "
6764
- "thumbnail size."
6765
- msgstr ""
6766
-
6767
- #: wppa-settings-autosave.php:991
6768
- msgid "This size should also be at least the cover image size."
6769
- msgstr ""
6770
-
6771
- #: wppa-settings-autosave.php:992
6772
- msgid ""
6773
- "Changing the popup size may result in all thumbnails being regenerated. this "
6774
- "may take a while."
6775
- msgstr ""
6776
-
6777
- #: wppa-settings-autosave.php:993
6778
- msgid ""
6779
- "Although this setting has only visual effect if \"Thumb popup\" (Table IV-"
6780
- "C8) is checked,"
6781
- msgstr ""
6782
-
6783
- #: wppa-settings-autosave.php:994
6784
- msgid ""
6785
- "the value must be right as it is the physical size of the thumbnail and "
6786
- "coverphoto images."
6787
- msgstr ""
6788
-
6789
- #: wppa-settings-autosave.php:1001
6790
- msgid "Use thumbs if fit"
6791
- msgstr ""
6792
-
6793
- #: wppa-settings-autosave.php:1002
6794
- msgid "Use the thumbnail image files if they are large enough."
6795
- msgstr ""
6796
-
6797
- #: wppa-settings-autosave.php:1003
6798
- msgid "This setting speeds up page loading for small photos."
6799
- msgstr ""
6800
-
6801
- #: wppa-settings-autosave.php:1004
6802
- msgid ""
6803
- "Do NOT use this when your thumbnails have a forced aspect ratio (when Table "
6804
- "I-C2 is set to anything different from --- same as fullsize ---)"
6805
- msgstr ""
6806
-
6807
- #: wppa-settings-autosave.php:1011
6808
- msgid "Album cover related size settings"
6809
- msgstr ""
6810
-
6811
- #: wppa-settings-autosave.php:1014
6812
- msgid "Maximum width for a album cover display."
6813
- msgstr ""
6814
-
6815
- #: wppa-settings-autosave.php:1015
6816
- msgid ""
6817
- "Display covers in 2 or more columns if the display area is wider than the "
6818
- "given width."
6819
- msgstr ""
6820
-
6821
- #: wppa-settings-autosave.php:1016
6822
- msgid ""
6823
- "This also applies for 'thumbnails as covers', and will NOT apply to single "
6824
- "items."
6825
- msgstr ""
6826
-
6827
- #: wppa-settings-autosave.php:1023
6828
- msgid "Min Cover height"
6829
- msgstr ""
6830
-
6831
- #: wppa-settings-autosave.php:1024
6832
- msgid "Minimal height of an album cover."
6833
- msgstr ""
6834
-
6835
- #: wppa-settings-autosave.php:1025
6836
- msgid ""
6837
- "If you use this setting to make the albums the same height and you are not "
6838
- "satisfied about the lay-out, try increasing the value in the next setting"
6839
- msgstr ""
6840
-
6841
- #: wppa-settings-autosave.php:1032
6842
- msgid "Min Text frame height"
6843
- msgstr ""
6844
-
6845
- #: wppa-settings-autosave.php:1033
6846
- msgid "The minimal cover text frame height incl header."
6847
- msgstr ""
6848
-
6849
- #: wppa-settings-autosave.php:1034
6850
- msgid ""
6851
- "The height starting with the album title up to and including the view- and "
6852
- "the slideshow- links."
6853
- msgstr ""
6854
-
6855
- #: wppa-settings-autosave.php:1035
6856
- msgid ""
6857
- "This setting enables you to give the album covers the same height while the "
6858
- "title does not need to fit on one line."
6859
- msgstr ""
6860
-
6861
- #: wppa-settings-autosave.php:1036
6862
- msgid "This is the recommended setting to line-up your covers!"
6863
- msgstr ""
6864
-
6865
- #: wppa-settings-autosave.php:1043
6866
- msgid "Min Description height"
6867
- msgstr ""
6868
-
6869
- #: wppa-settings-autosave.php:1044
6870
- msgid "The minimal height of the album description text frame."
6871
- msgstr ""
6872
-
6873
- #: wppa-settings-autosave.php:1045
6874
- msgid "The minimal height of the description field in an album cover display."
6875
- msgstr ""
6876
-
6877
- #: wppa-settings-autosave.php:1046
6878
- msgid ""
6879
- "This setting enables you to give the album covers the same height provided "
6880
- "that the cover images are equally sized and the titles fit on one line."
6881
- msgstr ""
6882
-
6883
- #: wppa-settings-autosave.php:1047
6884
- msgid ""
6885
- "To force the coverphotos have equal heights, tick the box in Table I-D7."
6886
- msgstr ""
6887
-
6888
- #: wppa-settings-autosave.php:1048
6889
- msgid ""
6890
- "You may need this setting if changing the previous setting is not sufficient "
6891
- "to line-up the covers."
6892
- msgstr ""
6893
-
6894
- #: wppa-settings-autosave.php:1055
6895
- msgid "Coverphoto size"
6896
- msgstr ""
6897
-
6898
- #: wppa-settings-autosave.php:1056
6899
- #, fuzzy
6900
- msgid "The size of the coverphoto."
6901
- msgstr "Titelfoto ansehen"
6902
-
6903
- #: wppa-settings-autosave.php:1058 wppa-settings-autosave.php:1068
6904
- msgid ""
6905
- "Changing the coverphoto size may result in all thumbnails being regenerated. "
6906
- "this may take a while."
6907
- msgstr ""
6908
-
6909
- #: wppa-settings-autosave.php:1065
6910
- msgid "Coverphoto size multi"
6911
- msgstr ""
6912
-
6913
- #: wppa-settings-autosave.php:1066
6914
- msgid "The size of coverphotos if more than one."
6915
- msgstr ""
6916
-
6917
- #: wppa-settings-autosave.php:1075
6918
- msgid "Size is height"
6919
- msgstr ""
6920
-
6921
- #: wppa-settings-autosave.php:1076
6922
- msgid "The size of the coverphoto is the height of it."
6923
- msgstr ""
6924
-
6925
- #: wppa-settings-autosave.php:1077
6926
- msgid ""
6927
- "If set: the previous setting is the height, if unset: the largest of width "
6928
- "and height."
6929
- msgstr ""
6930
-
6931
- #: wppa-settings-autosave.php:1078
6932
- msgid ""
6933
- "This setting applies for coverphoto position top or bottom only (Table IV-"
6934
- "D3)."
6935
- msgstr ""
6936
-
6937
- #: wppa-settings-autosave.php:1079
6938
- msgid "This makes it easyer to make the covers of equal height."
6939
- msgstr ""
6940
-
6941
- #: wppa-settings-autosave.php:1087
6942
- msgid "Max number of covers per page."
6943
- msgstr ""
6944
-
6945
- #: wppa-settings-autosave.php:1088
6946
- msgid ""
6947
- "Enter the maximum number of album covers per page. A value of 0 indicates no "
6948
- "pagination."
6949
- msgstr ""
6950
-
6951
- #: wppa-settings-autosave.php:1090
6952
- msgid "covers"
6953
- msgstr ""
6954
-
6955
- #: wppa-settings-autosave.php:1095
6956
- msgid "Rating and comment related size settings"
6957
- msgstr ""
6958
-
6959
- #: wppa-settings-autosave.php:1097
6960
- #, fuzzy
6961
- msgid "Rating size"
6962
- msgstr "Bewertung: %s"
6963
-
6964
- #: wppa-settings-autosave.php:1098
6965
- msgid "Select the number of voting stars."
6966
- msgstr ""
6967
-
6968
- #: wppa-settings-autosave.php:1101
6969
- msgid "Standard: 5 stars"
6970
- msgstr ""
6971
-
6972
- #: wppa-settings-autosave.php:1101
6973
- msgid "Extended: 10 stars"
6974
- msgstr ""
6975
-
6976
- #: wppa-settings-autosave.php:1101
6977
- msgid "One button vote"
6978
- msgstr ""
6979
-
6980
- #: wppa-settings-autosave.php:1108
6981
- msgid "Display precision"
6982
- msgstr ""
6983
-
6984
- #: wppa-settings-autosave.php:1109
6985
- msgid "Select the desired rating display precision."
6986
- msgstr ""
6987
-
6988
- #: wppa-settings-autosave.php:1112
6989
- msgid "decimal places"
6990
- msgstr ""
6991
-
6992
- #: wppa-settings-autosave.php:1120
6993
- msgid "Size of Avatar images."
6994
- msgstr ""
6995
-
6996
- #: wppa-settings-autosave.php:1121
6997
- msgid "The size of the square avatar; must be > 0 and < 256"
6998
- msgstr ""
6999
-
7000
- #: wppa-settings-autosave.php:1128
7001
- #, fuzzy
7002
- msgid "Rating space"
7003
- msgstr "Bewertung: %s"
7004
-
7005
- #: wppa-settings-autosave.php:1129
7006
- msgid "Space between avg and my rating stars"
7007
- msgstr ""
7008
-
7009
- #: wppa-settings-autosave.php:1137
7010
- msgid "Widget related size settings"
7011
- msgstr ""
7012
-
7013
- #: wppa-settings-autosave.php:1139
7014
- msgid "Widget width"
7015
- msgstr ""
7016
-
7017
- #: wppa-settings-autosave.php:1140
7018
- msgid "The useable width within widgets."
7019
- msgstr ""
7020
-
7021
- #: wppa-settings-autosave.php:1141
7022
- msgid ""
7023
- "Widget width for photo of the day, general purpose (default), slideshow "
7024
- "(default) and upload widgets."
7025
- msgstr ""
7026
-
7027
- #: wppa-settings-autosave.php:1148
7028
- #, fuzzy
7029
- msgid "TopTen count"
7030
- msgstr "Besten 10 Fotos"
7031
-
7032
- #: wppa-settings-autosave.php:1149
7033
- msgid "Number of photos in TopTen widget."
7034
- msgstr ""
7035
-
7036
- #: wppa-settings-autosave.php:1150
7037
- msgid "Enter the maximum number of rated photos in the TopTen widget."
7038
- msgstr ""
7039
-
7040
- #: wppa-settings-autosave.php:1157
7041
- #, fuzzy
7042
- msgid "TopTen size"
7043
- msgstr "Besten 10 Fotos"
7044
-
7045
- #: wppa-settings-autosave.php:1158
7046
- msgid "Size of thumbnails in TopTen widget."
7047
- msgstr ""
7048
-
7049
- #: wppa-settings-autosave.php:1159
7050
- msgid "Enter the size for the mini photos in the TopTen widget."
7051
- msgstr ""
7052
-
7053
- #: wppa-settings-autosave.php:1160 wppa-settings-autosave.php:1180
7054
- #: wppa-settings-autosave.php:1200 wppa-settings-autosave.php:1220
7055
- #: wppa-settings-autosave.php:1240 wppa-settings-autosave.php:1260
7056
- msgid "The size applies to the width or height, whatever is the largest."
7057
- msgstr ""
7058
-
7059
- #: wppa-settings-autosave.php:1161 wppa-settings-autosave.php:1181
7060
- #: wppa-settings-autosave.php:1201 wppa-settings-autosave.php:1221
7061
- #: wppa-settings-autosave.php:1241 wppa-settings-autosave.php:1261
7062
- msgid ""
7063
- "Recommended values: 86 for a two column and 56 for a three column display."
7064
- msgstr ""
7065
-
7066
- #: wppa-settings-autosave.php:1168
7067
- #, fuzzy
7068
- msgid "Comment count"
7069
- msgstr "Kommentar Widget Foto-Link."
7070
-
7071
- #: wppa-settings-autosave.php:1169
7072
- msgid "Number of entries in Comment widget."
7073
- msgstr ""
7074
-
7075
- #: wppa-settings-autosave.php:1170
7076
- msgid "Enter the maximum number of entries in the Comment widget."
7077
- msgstr ""
7078
-
7079
- #: wppa-settings-autosave.php:1172
7080
- msgid "entries"
7081
- msgstr ""
7082
-
7083
- #: wppa-settings-autosave.php:1177
7084
- #, fuzzy
7085
- msgid "Comment size"
7086
- msgstr "Kommentare"
7087
-
7088
- #: wppa-settings-autosave.php:1178
7089
- msgid "Size of thumbnails in Comment widget."
7090
- msgstr ""
7091
-
7092
- #: wppa-settings-autosave.php:1179
7093
- msgid "Enter the size for the mini photos in the Comment widget."
7094
- msgstr ""
7095
-
7096
- #: wppa-settings-autosave.php:1188
7097
- #, fuzzy
7098
- msgid "Thumbnail count"
7099
- msgstr "Miniaturbild Fotos"
7100
-
7101
- #: wppa-settings-autosave.php:1189
7102
- msgid "Number of photos in Thumbnail widget."
7103
- msgstr ""
7104
-
7105
- #: wppa-settings-autosave.php:1190
7106
- msgid "Enter the maximum number of rated photos in the Thumbnail widget."
7107
- msgstr ""
7108
-
7109
- #: wppa-settings-autosave.php:1197
7110
- #, fuzzy
7111
- msgid "Thumbnail widget size"
7112
- msgstr "Anzeigen..."
7113
-
7114
- #: wppa-settings-autosave.php:1198
7115
- msgid "Size of thumbnails in Thumbnail widget."
7116
- msgstr ""
7117
-
7118
- #: wppa-settings-autosave.php:1199
7119
- msgid "Enter the size for the mini photos in the Thumbnail widget."
7120
- msgstr ""
7121
-
7122
- #: wppa-settings-autosave.php:1208
7123
- msgid "LasTen count"
7124
- msgstr ""
7125
-
7126
- #: wppa-settings-autosave.php:1209
7127
- msgid "Number of photos in Last Ten widget."
7128
- msgstr ""
7129
-
7130
- #: wppa-settings-autosave.php:1210
7131
- msgid "Enter the maximum number of photos in the LasTen widget."
7132
- msgstr ""
7133
-
7134
- #: wppa-settings-autosave.php:1217
7135
- msgid "LasTen size"
7136
- msgstr ""
7137
-
7138
- #: wppa-settings-autosave.php:1218
7139
- msgid "Size of thumbnails in Last Ten widget."
7140
- msgstr ""
7141
-
7142
- #: wppa-settings-autosave.php:1219
7143
- msgid "Enter the size for the mini photos in the LasTen widget."
7144
- msgstr ""
7145
-
7146
- #: wppa-settings-autosave.php:1228
7147
- #, fuzzy
7148
- msgid "Album widget count"
7149
- msgstr "Unsymmetrische Tags in der Album Beschreibung!"
7150
-
7151
- #: wppa-settings-autosave.php:1229
7152
- msgid "Number of albums in Album widget."
7153
- msgstr ""
7154
-
7155
- #: wppa-settings-autosave.php:1230
7156
- msgid ""
7157
- "Enter the maximum number of thumbnail photos of albums in the Album widget."
7158
- msgstr ""
7159
-
7160
- #: wppa-settings-autosave.php:1237
7161
- msgid "Album widget size"
7162
- msgstr ""
7163
-
7164
- #: wppa-settings-autosave.php:1238
7165
- msgid "Size of thumbnails in Album widget."
7166
- msgstr ""
7167
-
7168
- #: wppa-settings-autosave.php:1239
7169
- msgid "Enter the size for the mini photos in the Album widget."
7170
- msgstr ""
7171
-
7172
- #: wppa-settings-autosave.php:1248
7173
- msgid "FeaTen count"
7174
- msgstr ""
7175
-
7176
- #: wppa-settings-autosave.php:1249
7177
- msgid "Number of photos in Featured Ten widget."
7178
- msgstr ""
7179
-
7180
- #: wppa-settings-autosave.php:1250
7181
- msgid "Enter the maximum number of photos in the FeaTen widget."
7182
- msgstr ""
7183
-
7184
- #: wppa-settings-autosave.php:1257
7185
- msgid "FeaTen size"
7186
- msgstr ""
7187
-
7188
- #: wppa-settings-autosave.php:1258
7189
- msgid "Size of thumbnails in Featured Ten widget."
7190
- msgstr ""
7191
-
7192
- #: wppa-settings-autosave.php:1259
7193
- msgid "Enter the size for the mini photos in the FeaTen widget."
7194
- msgstr ""
7195
-
7196
- #: wppa-settings-autosave.php:1268
7197
- msgid "Tagcloud min size"
7198
- msgstr ""
7199
-
7200
- #: wppa-settings-autosave.php:1269
7201
- msgid "Minimal fontsize in tagclouds"
7202
- msgstr ""
7203
-
7204
- #: wppa-settings-autosave.php:1277
7205
- msgid "Tagcloud max size"
7206
- msgstr ""
7207
-
7208
- #: wppa-settings-autosave.php:1278
7209
- msgid "Maximal fontsize in tagclouds"
7210
- msgstr ""
7211
-
7212
- #: wppa-settings-autosave.php:1286
7213
- msgid ""
7214
- "Lightbox related size settings. These settings have effect only when Table "
7215
- "IX-J3 is set to wppa"
7216
- msgstr ""
7217
-
7218
- #: wppa-settings-autosave.php:1289
7219
- msgid ""
7220
- "Number of lines on the lightbox description area, exclusive the n/m line."
7221
- msgstr ""
7222
-
7223
- #: wppa-settings-autosave.php:1290
7224
- msgid "Enter a number in the range from 0 to 24 or auto"
7225
- msgstr ""
7226
-
7227
- #: wppa-settings-autosave.php:1292
7228
- msgid "lines"
7229
- msgstr ""
7230
-
7231
- #: wppa-settings-autosave.php:1297
7232
- msgid "Magnifier cursor size"
7233
- msgstr ""
7234
-
7235
- #: wppa-settings-autosave.php:1298
7236
- msgid "Select the size of the magnifier cursor."
7237
- msgstr ""
7238
-
7239
- #: wppa-settings-autosave.php:1301
7240
- msgid "small"
7241
- msgstr ""
7242
-
7243
- #: wppa-settings-autosave.php:1301
7244
- msgid "medium"
7245
- msgstr ""
7246
-
7247
- #: wppa-settings-autosave.php:1301
7248
- msgid "large"
7249
- msgstr ""
7250
-
7251
- #: wppa-settings-autosave.php:1310
7252
- msgid "Video related size settings"
7253
- msgstr ""
7254
-
7255
- #: wppa-settings-autosave.php:1312
7256
- msgid "Default width"
7257
- msgstr ""
7258
-
7259
- #: wppa-settings-autosave.php:1313
7260
- msgid "The width of most videos"
7261
- msgstr ""
7262
-
7263
- #: wppa-settings-autosave.php:1321
7264
- msgid "Default height"
7265
- msgstr ""
7266
-
7267
- #: wppa-settings-autosave.php:1322
7268
- msgid "The height of most videos"
7269
- msgstr ""
7270
-
7271
- #: wppa-settings-autosave.php:1348
7272
- msgid "Table II:"
7273
- msgstr ""
7274
-
7275
- #: wppa-settings-autosave.php:1348
7276
- msgid "Visibility:"
7277
- msgstr ""
7278
-
7279
- #: wppa-settings-autosave.php:1349
7280
- msgid "This table describes the visibility of certain wppa+ elements."
7281
- msgstr ""
7282
-
7283
- #: wppa-settings-autosave.php:1367
7284
- msgid "Breadcrumb related visibility settings"
7285
- msgstr ""
7286
-
7287
- #: wppa-settings-autosave.php:1369
7288
- msgid "Breadcrumb on posts"
7289
- msgstr ""
7290
-
7291
- #: wppa-settings-autosave.php:1370 wppa-settings-autosave.php:1380
7292
- msgid "Show breadcrumb navigation bars."
7293
- msgstr ""
7294
-
7295
- #: wppa-settings-autosave.php:1371 wppa-settings-autosave.php:1381
7296
- msgid "Indicate whether a breadcrumb navigation should be displayed"
7297
- msgstr ""
7298
-
7299
- #: wppa-settings-autosave.php:1379
7300
- msgid "Breadcrumb on pages"
7301
- msgstr ""
7302
-
7303
- #: wppa-settings-autosave.php:1389
7304
- #, fuzzy
7305
- msgid "Breadcrumb on search results"
7306
- msgstr "Suchergebnisse für: %s"
7307
-
7308
- #: wppa-settings-autosave.php:1390
7309
- msgid "Show breadcrumb navigation bars on the search results page."
7310
- msgstr ""
7311
-
7312
- #: wppa-settings-autosave.php:1391
7313
- msgid ""
7314
- "Indicate whether a breadcrumb navigation should be displayed above the "
7315
- "search results."
7316
- msgstr ""
7317
-
7318
- #: wppa-settings-autosave.php:1398
7319
- msgid "Breadcrumb on topten displays"
7320
- msgstr ""
7321
-
7322
- #: wppa-settings-autosave.php:1399
7323
- msgid "Show breadcrumb navigation bars on topten displays."
7324
- msgstr ""
7325
-
7326
- #: wppa-settings-autosave.php:1400
7327
- msgid ""
7328
- "Indicate whether a breadcrumb navigation should be displayed above the "
7329
- "topten displays."
7330
- msgstr ""
7331
-
7332
- #: wppa-settings-autosave.php:1407
7333
- msgid "Breadcrumb on last ten displays"
7334
- msgstr ""
7335
-
7336
- #: wppa-settings-autosave.php:1408
7337
- msgid "Show breadcrumb navigation bars on last ten displays."
7338
- msgstr ""
7339
-
7340
- #: wppa-settings-autosave.php:1409
7341
- msgid ""
7342
- "Indicate whether a breadcrumb navigation should be displayed above the last "
7343
- "ten displays."
7344
- msgstr ""
7345
-
7346
- #: wppa-settings-autosave.php:1416
7347
- msgid "Breadcrumb on comment ten displays"
7348
- msgstr ""
7349
-
7350
- #: wppa-settings-autosave.php:1417
7351
- msgid "Show breadcrumb navigation bars on comment ten displays."
7352
- msgstr ""
7353
-
7354
- #: wppa-settings-autosave.php:1418
7355
- msgid ""
7356
- "Indicate whether a breadcrumb navigation should be displayed above the "
7357
- "comment ten displays."
7358
- msgstr ""
7359
-
7360
- #: wppa-settings-autosave.php:1425
7361
- msgid "Breadcrumb on tag result displays"
7362
- msgstr ""
7363
-
7364
- #: wppa-settings-autosave.php:1426
7365
- msgid "Show breadcrumb navigation bars on tag result displays."
7366
- msgstr ""
7367
-
7368
- #: wppa-settings-autosave.php:1427
7369
- msgid ""
7370
- "Indicate whether a breadcrumb navigation should be displayed above the tag "
7371
- "result displays."
7372
- msgstr ""
7373
-
7374
- #: wppa-settings-autosave.php:1434
7375
- msgid "Breadcrumb on featured ten displays"
7376
- msgstr ""
7377
-
7378
- #: wppa-settings-autosave.php:1435
7379
- msgid "Show breadcrumb navigation bars on featured ten displays."
7380
- msgstr ""
7381
-
7382
- #: wppa-settings-autosave.php:1436
7383
- msgid ""
7384
- "Indicate whether a breadcrumb navigation should be displayed above the "
7385
- "featured ten displays."
7386
- msgstr ""
7387
-
7388
- #: wppa-settings-autosave.php:1443
7389
- msgid "Breadcrumb on related photos displays"
7390
- msgstr ""
7391
-
7392
- #: wppa-settings-autosave.php:1444
7393
- msgid "Show breadcrumb navigation bars on related photos displays."
7394
- msgstr ""
7395
-
7396
- #: wppa-settings-autosave.php:1445
7397
- msgid ""
7398
- "Indicate whether a breadcrumb navigation should be displayed above the "
7399
- "related photos displays."
7400
- msgstr ""
7401
-
7402
- #: wppa-settings-autosave.php:1453
7403
- msgid "Show \"Home\" in breadcrumb."
7404
- msgstr ""
7405
-
7406
- #: wppa-settings-autosave.php:1454
7407
- msgid ""
7408
- "Indicate whether the breadcrumb navigation should start with a \"Home\"-link"
7409
- msgstr ""
7410
-
7411
- #: wppa-settings-autosave.php:1462
7412
- msgid "Show the page(s) in breadcrumb."
7413
- msgstr ""
7414
-
7415
- #: wppa-settings-autosave.php:1463
7416
- msgid ""
7417
- "Indicate whether the breadcrumb navigation should show the page(hierarchy)"
7418
- msgstr ""
7419
-
7420
- #: wppa-settings-autosave.php:1470
7421
- msgid "Separator"
7422
- msgstr ""
7423
-
7424
- #: wppa-settings-autosave.php:1471
7425
- msgid "Breadcrumb separator symbol."
7426
- msgstr ""
7427
-
7428
- #: wppa-settings-autosave.php:1472
7429
- msgid "Select the desired breadcrumb separator element."
7430
- msgstr ""
7431
-
7432
- #: wppa-settings-autosave.php:1473
7433
- msgid "A text string may contain valid html."
7434
- msgstr ""
7435
-
7436
- #: wppa-settings-autosave.php:1474
7437
- msgid ""
7438
- "An image will be scaled automatically if you set the navigation font size."
7439
- msgstr ""
7440
-
7441
- #: wppa-settings-autosave.php:1476
7442
- msgid "Text (html):"
7443
- msgstr ""
7444
-
7445
- #: wppa-settings-autosave.php:1476
7446
- msgid "Image (url):"
7447
- msgstr ""
7448
-
7449
- #: wppa-settings-autosave.php:1484
7450
- msgid "Html"
7451
- msgstr ""
7452
-
7453
- #: wppa-settings-autosave.php:1485
7454
- msgid "Breadcrumb separator text."
7455
- msgstr ""
7456
-
7457
- #: wppa-settings-autosave.php:1486
7458
- msgid "Enter the HTML code that produces the separator symbol you want."
7459
- msgstr ""
7460
-
7461
- #: wppa-settings-autosave.php:1487
7462
- msgid ""
7463
- "It may be as simple as '-' (without the quotes) or as complex as a tag like "
7464
- "<div>..</div>."
7465
- msgstr ""
7466
-
7467
- #: wppa-settings-autosave.php:1494
7468
- msgid "Image Url"
7469
- msgstr ""
7470
-
7471
- #: wppa-settings-autosave.php:1495
7472
- msgid "Full url to separator image."
7473
- msgstr ""
7474
-
7475
- #: wppa-settings-autosave.php:1496
7476
- msgid ""
7477
- "Enter the full url to the image you want to use for the separator symbol."
7478
- msgstr ""
7479
-
7480
- #: wppa-settings-autosave.php:1503
7481
- #, fuzzy
7482
- msgid "Pagelink position"
7483
- msgstr "Position/Ort:"
7484
-
7485
- #: wppa-settings-autosave.php:1504
7486
- msgid "The location for the pagelinks bar."
7487
- msgstr ""
7488
-
7489
- #: wppa-settings-autosave.php:1507 wppa-settings-autosave.php:3708
7490
- msgid "Top"
7491
- msgstr ""
7492
-
7493
- #: wppa-settings-autosave.php:1507 wppa-settings-autosave.php:3708
7494
- msgid "Bottom"
7495
- msgstr ""
7496
-
7497
- #: wppa-settings-autosave.php:1507
7498
- msgid "Both"
7499
- msgstr ""
7500
-
7501
- #: wppa-settings-autosave.php:1514
7502
- msgid "Thumblink on slideshow"
7503
- msgstr ""
7504
-
7505
- #: wppa-settings-autosave.php:1515
7506
- msgid "Show a thumb link on slideshow bc."
7507
- msgstr ""
7508
-
7509
- #: wppa-settings-autosave.php:1516
7510
- msgid "Show a link to thumbnail display on an breadcrumb above a slideshow"
7511
- msgstr ""
7512
-
7513
- #: wppa-settings-autosave.php:1523
7514
- msgid "Slideshow related visibility settings"
7515
- msgstr ""
7516
-
7517
- #: wppa-settings-autosave.php:1525
7518
- #, fuzzy
7519
- msgid "Start/stop"
7520
- msgstr "Starte"
7521
-
7522
- #: wppa-settings-autosave.php:1526
7523
- #, fuzzy
7524
- msgid "Show the Start/Stop slideshow bar."
7525
- msgstr "Doppelklick zum Starten/Stoppen der Slideshow"
7526
-
7527
- #: wppa-settings-autosave.php:1527
7528
- msgid ""
7529
- "If checked: display the start/stop slideshow navigation bar above the full-"
7530
- "size images and slideshow"
7531
- msgstr ""
7532
-
7533
- #: wppa-settings-autosave.php:1534
7534
- #, fuzzy
7535
- msgid "Browse bar"
7536
- msgstr "Durchsuche Fotos"
7537
-
7538
- #: wppa-settings-autosave.php:1535
7539
- #, fuzzy
7540
- msgid "Show Browse photos bar."
7541
- msgstr "Durchsuche Fotos"
7542
-
7543
- #: wppa-settings-autosave.php:1536
7544
- msgid ""
7545
- "If checked: display the preveous/next navigation bar under the full-size "
7546
- "images and slideshow"
7547
- msgstr ""
7548
-
7549
- #: wppa-settings-autosave.php:1543
7550
- msgid "Filmstrip"
7551
- msgstr ""
7552
-
7553
- #: wppa-settings-autosave.php:1544
7554
- msgid "Show Filmstrip navigation bar."
7555
- msgstr ""
7556
-
7557
- #: wppa-settings-autosave.php:1545
7558
- msgid ""
7559
- "If checked: display the filmstrip navigation bar under the full_size images "
7560
- "and slideshow"
7561
- msgstr ""
7562
-
7563
- #: wppa-settings-autosave.php:1552
7564
- msgid "Film seam"
7565
- msgstr ""
7566
-
7567
- #: wppa-settings-autosave.php:1553
7568
- msgid "Show seam between end and start of film."
7569
- msgstr ""
7570
-
7571
- #: wppa-settings-autosave.php:1554
7572
- msgid "If checked: display the wrap-around point in the filmstrip"
7573
- msgstr ""
7574
-
7575
- #: wppa-settings-autosave.php:1561
7576
- #, fuzzy
7577
- msgid "Photo name"
7578
- msgstr "Foto des Tages"
7579
-
7580
- #: wppa-settings-autosave.php:1562
7581
- #, fuzzy
7582
- msgid "Display photo name."
7583
- msgstr "Bitte gibt den Fotonamen an."
7584
-
7585
- #: wppa-settings-autosave.php:1563
7586
- msgid "If checked: display the name of the photo under the slideshow image."
7587
- msgstr ""
7588
-
7589
- #: wppa-settings-autosave.php:1570 wppa-settings-autosave.php:1950
7590
- msgid "Add (Owner)"
7591
- msgstr ""
7592
-
7593
- #: wppa-settings-autosave.php:1571 wppa-settings-autosave.php:1951
7594
- msgid "Add the uploaders display name in parenthesis to the name."
7595
- msgstr ""
7596
-
7597
- #: wppa-settings-autosave.php:1579
7598
- #, fuzzy
7599
- msgid "Photo desc"
7600
- msgstr "Foto"
7601
-
7602
- #: wppa-settings-autosave.php:1580
7603
- #, fuzzy
7604
- msgid "Display Photo description."
7605
- msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
7606
-
7607
- #: wppa-settings-autosave.php:1581
7608
- msgid ""
7609
- "If checked: display the description of the photo under the slideshow image."
7610
- msgstr ""
7611
-
7612
- #: wppa-settings-autosave.php:1588
7613
- msgid "Hide when empty"
7614
- msgstr ""
7615
-
7616
- #: wppa-settings-autosave.php:1589
7617
- msgid "Hide the descriptionbox when empty."
7618
- msgstr ""
7619
-
7620
- #: wppa-settings-autosave.php:1597
7621
- #, fuzzy
7622
- msgid "Rating system"
7623
- msgstr "Bewertung: %s"
7624
-
7625
- #: wppa-settings-autosave.php:1598
7626
- msgid "Enable the rating system."
7627
- msgstr ""
7628
-
7629
- #: wppa-settings-autosave.php:1599
7630
- msgid "If checked, the photo rating system will be enabled."
7631
- msgstr ""
7632
-
7633
- #: wppa-settings-autosave.php:1607
7634
- #, fuzzy
7635
- msgid "Comments system"
7636
- msgstr "Kommentare"
7637
-
7638
- #: wppa-settings-autosave.php:1608
7639
- msgid "Enable the comments system."
7640
- msgstr ""
7641
-
7642
- #: wppa-settings-autosave.php:1609
7643
- msgid ""
7644
- "Display the comments box under the fullsize images and let users enter their "
7645
- "comments on individual photos."
7646
- msgstr ""
7647
-
7648
- #: wppa-settings-autosave.php:1617
7649
- #, fuzzy
7650
- msgid "Comment Avatar default"
7651
- msgstr "Kommentar hinzugefügt"
7652
-
7653
- #: wppa-settings-autosave.php:1618
7654
- msgid "Show Avatars with the comments if not --- none ---"
7655
- msgstr ""
7656
-
7657
- #: wppa-settings-autosave.php:1623
7658
- msgid "mystery man"
7659
- msgstr ""
7660
-
7661
- #: wppa-settings-autosave.php:1624
7662
- msgid "identicon"
7663
- msgstr ""
7664
-
7665
- #: wppa-settings-autosave.php:1625
7666
- msgid "monsterid"
7667
- msgstr ""
7668
-
7669
- #: wppa-settings-autosave.php:1626
7670
- msgid "wavatar"
7671
- msgstr ""
7672
-
7673
- #: wppa-settings-autosave.php:1627
7674
- msgid "retro"
7675
- msgstr ""
7676
-
7677
- #: wppa-settings-autosave.php:1628
7678
- #, fuzzy
7679
- msgid "--- url ---"
7680
- msgstr "--- alle---"
7681
-
7682
- #: wppa-settings-autosave.php:1643
7683
- msgid "Comment Avatar url"
7684
- msgstr ""
7685
-
7686
- #: wppa-settings-autosave.php:1644
7687
- msgid "Comment Avatar default url."
7688
- msgstr ""
7689
-
7690
- #: wppa-settings-autosave.php:1652
7691
- #, fuzzy
7692
- msgid "Big Browse Buttons"
7693
- msgstr "Durchsuche Fotos"
7694
-
7695
- #: wppa-settings-autosave.php:1653
7696
- msgid "Enable invisible browsing buttons."
7697
- msgstr ""
7698
-
7699
- #: wppa-settings-autosave.php:1654 wppa-settings-autosave.php:2197
7700
- #, fuzzy
7701
- msgid ""
7702
- "If checked, the fullsize image is covered by two invisible areas that act as "
7703
- "browse buttons."
7704
- msgstr ""
7705
- "Um das Komplette Bild zu sehen musst du Javaskript in deinem Browser "
7706
- "aktivieren."
7707
-
7708
- #: wppa-settings-autosave.php:1655 wppa-settings-autosave.php:2198
7709
- #: wppa-settings-autosave.php:2208
7710
- msgid ""
7711
- "Make sure the Full height (Table I-B2) is properly configured to prevent "
7712
- "these areas to overlap unwanted space."
7713
- msgstr ""
7714
-
7715
- #: wppa-settings-autosave.php:1662
7716
- #, fuzzy
7717
- msgid "Ugly Browse Buttons"
7718
- msgstr "Durchsuche Fotos"
7719
-
7720
- #: wppa-settings-autosave.php:1663
7721
- msgid "Enable the ugly browsing buttons."
7722
- msgstr ""
7723
-
7724
- #: wppa-settings-autosave.php:1664
7725
- msgid "If checked, the fullsize image is covered by two browse buttons."
7726
- msgstr ""
7727
-
7728
- #: wppa-settings-autosave.php:1668 wppa-settings-autosave.php:2239
7729
- #: wppa-settings-autosave.php:2250
7730
- msgid "Black"
7731
- msgstr ""
7732
-
7733
- #: wppa-settings-autosave.php:1668
7734
- msgid "Light gray"
7735
- msgstr ""
7736
-
7737
- #: wppa-settings-autosave.php:1675
7738
- #, fuzzy
7739
- msgid "Start/stop icons"
7740
- msgstr "Starte"
7741
-
7742
- #: wppa-settings-autosave.php:1676
7743
- msgid "Show start and stop icons at the center of the slide"
7744
- msgstr ""
7745
-
7746
- #: wppa-settings-autosave.php:1681
7747
- msgid "Black square"
7748
- msgstr ""
7749
-
7750
- #: wppa-settings-autosave.php:1681
7751
- msgid "Blue square"
7752
- msgstr ""
7753
-
7754
- #: wppa-settings-autosave.php:1681
7755
- msgid "Black round"
7756
- msgstr ""
7757
-
7758
- #: wppa-settings-autosave.php:1688
7759
- msgid "Show custom box"
7760
- msgstr ""
7761
-
7762
- #: wppa-settings-autosave.php:1689
7763
- msgid "Display the custom box in the slideshow"
7764
- msgstr ""
7765
-
7766
- #: wppa-settings-autosave.php:1690 wppa-settings-autosave.php:1701
7767
- msgid ""
7768
- "You can fill the custom box with any html you like. It will not be checked, "
7769
- "so it is your own responsability to close tags properly."
7770
- msgstr ""
7771
-
7772
- #: wppa-settings-autosave.php:1691 wppa-settings-autosave.php:1702
7773
- msgid "The position of the box can be defined in Table IX-E."
7774
- msgstr ""
7775
-
7776
- #: wppa-settings-autosave.php:1699
7777
- msgid "Custom content"
7778
- msgstr ""
7779
-
7780
- #: wppa-settings-autosave.php:1700
7781
- msgid "The content (html) of the custom box."
7782
- msgstr ""
7783
-
7784
- #: wppa-settings-autosave.php:1709
7785
- #, fuzzy
7786
- msgid "Slideshow/Number bar"
7787
- msgstr "Diaschau"
7788
-
7789
- #: wppa-settings-autosave.php:1710
7790
- msgid "Display the Slideshow / Number bar."
7791
- msgstr ""
7792
-
7793
- #: wppa-settings-autosave.php:1711
7794
- msgid "If checked: display the number boxes on slideshow"
7795
- msgstr ""
7796
-
7797
- #: wppa-settings-autosave.php:1719
7798
- msgid "IPTC system"
7799
- msgstr ""
7800
-
7801
- #: wppa-settings-autosave.php:1720
7802
- msgid "Enable the iptc system."
7803
- msgstr ""
7804
-
7805
- #: wppa-settings-autosave.php:1721
7806
- msgid "Display the iptc box under the fullsize images."
7807
- msgstr ""
7808
-
7809
- #: wppa-settings-autosave.php:1729
7810
- msgid "IPTC open"
7811
- msgstr ""
7812
-
7813
- #: wppa-settings-autosave.php:1730
7814
- msgid "Display the iptc box initially opened."
7815
- msgstr ""
7816
-
7817
- #: wppa-settings-autosave.php:1731
7818
- msgid "Display the iptc box under the fullsize images initially open."
7819
- msgstr ""
7820
-
7821
- #: wppa-settings-autosave.php:1739
7822
- msgid "EXIF system"
7823
- msgstr ""
7824
-
7825
- #: wppa-settings-autosave.php:1740
7826
- msgid "Enable the exif system."
7827
- msgstr ""
7828
-
7829
- #: wppa-settings-autosave.php:1741
7830
- msgid "Display the exif box under the fullsize images."
7831
- msgstr ""
7832
-
7833
- #: wppa-settings-autosave.php:1749
7834
- msgid "EXIF open"
7835
- msgstr ""
7836
-
7837
- #: wppa-settings-autosave.php:1750
7838
- msgid "Display the exif box initially opened."
7839
- msgstr ""
7840
-
7841
- #: wppa-settings-autosave.php:1751
7842
- msgid "Display the exif box under the fullsize images initially open."
7843
- msgstr ""
7844
-
7845
- #: wppa-settings-autosave.php:1759
7846
- msgid "Social media share box related visibility settings"
7847
- msgstr ""
7848
-
7849
- #: wppa-settings-autosave.php:1761
7850
- msgid "Show Share Box"
7851
- msgstr ""
7852
-
7853
- #: wppa-settings-autosave.php:1762
7854
- msgid "Display the share social media buttons box."
7855
- msgstr ""
7856
-
7857
- #: wppa-settings-autosave.php:1771 wppa-settings-autosave.php:8268
7858
- msgid "Hide when running"
7859
- msgstr ""
7860
-
7861
- #: wppa-settings-autosave.php:1772
7862
- msgid "Hide the SM box when slideshow runs."
7863
- msgstr ""
7864
-
7865
- #: wppa-settings-autosave.php:1780
7866
- msgid "Show Share Box Widget"
7867
- msgstr ""
7868
-
7869
- #: wppa-settings-autosave.php:1781
7870
- msgid "Display the share social media buttons box in widgets."
7871
- msgstr ""
7872
-
7873
- #: wppa-settings-autosave.php:1782
7874
- msgid ""
7875
- "This setting applies to normal slideshows in widgets, not to the "
7876
- "slideshowwidget as that is a slideonly display."
7877
- msgstr ""
7878
-
7879
- #: wppa-settings-autosave.php:1790
7880
- msgid "Show Share Buttons Thumbs"
7881
- msgstr ""
7882
-
7883
- #: wppa-settings-autosave.php:1791
7884
- msgid "Display the share social media buttons under thumbnails."
7885
- msgstr ""
7886
-
7887
- #: wppa-settings-autosave.php:1800
7888
- msgid "Show Share Buttons Lightbox"
7889
- msgstr ""
7890
-
7891
- #: wppa-settings-autosave.php:1801
7892
- msgid "Display the share social media buttons on lightbox displays."
7893
- msgstr ""
7894
-
7895
- #: wppa-settings-autosave.php:1810
7896
- #, fuzzy
7897
- msgid "Show Share Buttons Mphoto"
7898
- msgstr ""
7899
- "Der Besucher kann sich eine Übersicht mit Miniaturbildern der Fotos im Album "
7900
- "ansehen."
7901
-
7902
- #: wppa-settings-autosave.php:1811
7903
- msgid "Display the share social media buttons on mphoto displays."
7904
- msgstr ""
7905
-
7906
- #: wppa-settings-autosave.php:1820
7907
- msgid "Show QR Code"
7908
- msgstr ""
7909
-
7910
- #: wppa-settings-autosave.php:1821
7911
- msgid "Display the QR code in the share box."
7912
- msgstr ""
7913
-
7914
- #: wppa-settings-autosave.php:1829
7915
- #, fuzzy
7916
- msgid "Show Twitter button"
7917
- msgstr "Zeigt den Twitter-Button in der Share - Box an."
7918
-
7919
- #: wppa-settings-autosave.php:1830
7920
- msgid "Display the Twitter button in the share box."
7921
- msgstr ""
7922
-
7923
- #: wppa-settings-autosave.php:1838
7924
- #, fuzzy
7925
- msgid "Show Google+ button"
7926
- msgstr "Zeigt den Google-Button in der Share - Box an."
7927
-
7928
- #: wppa-settings-autosave.php:1839
7929
- msgid "Display the Google+ button in the share box."
7930
- msgstr ""
7931
-
7932
- #: wppa-settings-autosave.php:1847
7933
- #, fuzzy
7934
- msgid "Show Pinterest button"
7935
- msgstr "Share, Teilen"
7936
-
7937
- #: wppa-settings-autosave.php:1848
7938
- msgid "Display the Pintrest button in the share box."
7939
- msgstr ""
7940
-
7941
- #: wppa-settings-autosave.php:1856
7942
- msgid "Show LinkedIn button"
7943
- msgstr ""
7944
-
7945
- #: wppa-settings-autosave.php:1857
7946
- msgid "Display the LinkedIn button in the share box."
7947
- msgstr ""
7948
-
7949
- #: wppa-settings-autosave.php:1865
7950
- msgid "Show Facebook share button"
7951
- msgstr ""
7952
-
7953
- #: wppa-settings-autosave.php:1866 wppa-settings-autosave.php:1875
7954
- msgid "Display the Facebook button in the share box."
7955
- msgstr ""
7956
-
7957
- #: wppa-settings-autosave.php:1874
7958
- msgid "Show Facebook like button"
7959
- msgstr ""
7960
-
7961
- #: wppa-settings-autosave.php:1883
7962
- msgid "Display type"
7963
- msgstr ""
7964
-
7965
- #: wppa-settings-autosave.php:1884
7966
- msgid "Select the Facebook button display type."
7967
- msgstr ""
7968
-
7969
- #: wppa-settings-autosave.php:1887
7970
- msgid "Button with counter"
7971
- msgstr ""
7972
-
7973
- #: wppa-settings-autosave.php:1887
7974
- #, fuzzy
7975
- msgid "Box with counter"
7976
- msgstr "Kategorie:"
7977
-
7978
- #: wppa-settings-autosave.php:1894
7979
- msgid "Show Facebook comment box"
7980
- msgstr ""
7981
-
7982
- #: wppa-settings-autosave.php:1895
7983
- msgid "Display the Facebook comment dialog box in the share box."
7984
- msgstr ""
7985
-
7986
- #: wppa-settings-autosave.php:1903
7987
- msgid "Facebook User Id"
7988
- msgstr ""
7989
-
7990
- #: wppa-settings-autosave.php:1904
7991
- msgid "Enter your facebook user id to be able to moderate comments and sends"
7992
- msgstr ""
7993
-
7994
- #: wppa-settings-autosave.php:1912
7995
- msgid "Facebook App Id"
7996
- msgstr ""
7997
-
7998
- #: wppa-settings-autosave.php:1913
7999
- msgid "Enter your facebook app id to be able to moderate comments and sends"
8000
- msgstr ""
8001
-
8002
- #: wppa-settings-autosave.php:1921
8003
- msgid "Facebook js SDK"
8004
- msgstr ""
8005
-
8006
- #: wppa-settings-autosave.php:1922
8007
- msgid "Load Facebook js SDK"
8008
- msgstr ""
8009
-
8010
- #: wppa-settings-autosave.php:1923
8011
- msgid ""
8012
- "Uncheck this box only when there is a conflict with an other plugin that "
8013
- "also loads the Facebook js SDK."
8014
- msgstr ""
8015
-
8016
- #: wppa-settings-autosave.php:1930
8017
- msgid "Share single image"
8018
- msgstr ""
8019
-
8020
- #: wppa-settings-autosave.php:1931
8021
- msgid "Share a link to a single image, not the slideshow."
8022
- msgstr ""
8023
-
8024
- #: wppa-settings-autosave.php:1932
8025
- msgid ""
8026
- "The sharelink points to a page with a single image rather than to the page "
8027
- "with the photo in the slideshow."
8028
- msgstr ""
8029
-
8030
- #: wppa-settings-autosave.php:1939
8031
- msgid "Thumbnail display related visibility settings"
8032
- msgstr ""
8033
-
8034
- #: wppa-settings-autosave.php:1941
8035
- #, fuzzy
8036
- msgid "Thumbnail name"
8037
- msgstr "Anzeigen..."
8038
-
8039
- #: wppa-settings-autosave.php:1942
8040
- msgid "Display Thumbnail name."
8041
- msgstr ""
8042
-
8043
- #: wppa-settings-autosave.php:1943
8044
- msgid "Display photo name under thumbnail images."
8045
- msgstr ""
8046
-
8047
- #: wppa-settings-autosave.php:1959
8048
- #, fuzzy
8049
- msgid "Thumbnail desc"
8050
- msgstr "Miniaturbild Fotos"
8051
-
8052
- #: wppa-settings-autosave.php:1960
8053
- #, fuzzy
8054
- msgid "Display Thumbnail description."
8055
- msgstr "Unsymmetrische Tags in der Album Beschreibung!"
8056
-
8057
- #: wppa-settings-autosave.php:1961
8058
- msgid "Display description of the photo under thumbnail images."
8059
- msgstr ""
8060
-
8061
- #: wppa-settings-autosave.php:1968
8062
- #, fuzzy
8063
- msgid "Thumbnail rating"
8064
- msgstr "Anzeigen..."
8065
-
8066
- #: wppa-settings-autosave.php:1969
8067
- msgid "Display Thumbnail Rating."
8068
- msgstr ""
8069
-
8070
- #: wppa-settings-autosave.php:1970
8071
- msgid "Display the rating of the photo under the thumbnail image."
8072
- msgstr ""
8073
-
8074
- #: wppa-settings-autosave.php:1977
8075
- #, fuzzy
8076
- msgid "Thumbnail comcount"
8077
- msgstr "Miniaturbild Fotos"
8078
-
8079
- #: wppa-settings-autosave.php:1978
8080
- msgid "Display Thumbnail Comment count."
8081
- msgstr ""
8082
-
8083
- #: wppa-settings-autosave.php:1979
8084
- msgid "Display the number of comments to the photo under the thumbnail image."
8085
- msgstr ""
8086
-
8087
- #: wppa-settings-autosave.php:1986
8088
- #, fuzzy
8089
- msgid "Thumbnail viewcount"
8090
- msgstr "Anzeigen..."
8091
-
8092
- #: wppa-settings-autosave.php:1987
8093
- msgid "Display the number of views."
8094
- msgstr ""
8095
-
8096
- #: wppa-settings-autosave.php:1988
8097
- msgid "Display the number of views under the thumbnail image."
8098
- msgstr ""
8099
-
8100
- #: wppa-settings-autosave.php:1995
8101
- #, fuzzy
8102
- msgid "Thumbnail virt album"
8103
- msgstr "Miniaturbild Fotos"
8104
-
8105
- #: wppa-settings-autosave.php:1996
8106
- msgid "Display the real album name on virtual album display."
8107
- msgstr ""
8108
-
8109
- #: wppa-settings-autosave.php:1997
8110
- msgid ""
8111
- "Display the album name of the photo in parenthesis under the thumbnail on "
8112
- "virtual album displays like search results etc."
8113
- msgstr ""
8114
-
8115
- #: wppa-settings-autosave.php:2004
8116
- #, fuzzy
8117
- msgid "Thumbnail video"
8118
- msgstr "Anzeigen..."
8119
-
8120
- #: wppa-settings-autosave.php:2005
8121
- msgid "Show video controls on thumbnail displays."
8122
- msgstr ""
8123
-
8124
- #: wppa-settings-autosave.php:2006
8125
- msgid ""
8126
- "Works on default thumbnail type only. You can play the video only when the "
8127
- "link is set to no link at all."
8128
- msgstr ""
8129
-
8130
- #: wppa-settings-autosave.php:2013
8131
- #, fuzzy
8132
- msgid "Thumbnail audio"
8133
- msgstr "Anzeigen..."
8134
-
8135
- #: wppa-settings-autosave.php:2014
8136
- msgid "Show audio controls on thumbnail displays."
8137
- msgstr ""
8138
-
8139
- #: wppa-settings-autosave.php:2015
8140
- msgid "Works on default thumbnail type only."
8141
- msgstr ""
8142
-
8143
- #: wppa-settings-autosave.php:2022
8144
- #, fuzzy
8145
- msgid "Popup name"
8146
- msgstr "Dein Name:"
8147
-
8148
- #: wppa-settings-autosave.php:2023
8149
- msgid "Display Thumbnail name on popup."
8150
- msgstr ""
8151
-
8152
- #: wppa-settings-autosave.php:2024
8153
- msgid "Display photo name under thumbnail images on the popup."
8154
- msgstr ""
8155
-
8156
- #: wppa-settings-autosave.php:2031
8157
- msgid "Popup (owner)"
8158
- msgstr ""
8159
-
8160
- #: wppa-settings-autosave.php:2032
8161
- msgid "Display owner on popup."
8162
- msgstr ""
8163
-
8164
- #: wppa-settings-autosave.php:2033
8165
- msgid "Display photo owner under thumbnail images on the popup."
8166
- msgstr ""
8167
-
8168
- #: wppa-settings-autosave.php:2040
8169
- msgid "Popup desc"
8170
- msgstr ""
8171
-
8172
- #: wppa-settings-autosave.php:2041
8173
- msgid "Display Thumbnail description on popup."
8174
- msgstr ""
8175
-
8176
- #: wppa-settings-autosave.php:2042
8177
- msgid "Display description of the photo under thumbnail images on the popup."
8178
- msgstr ""
8179
-
8180
- #: wppa-settings-autosave.php:2049
8181
- msgid "Popup desc no links"
8182
- msgstr ""
8183
-
8184
- #: wppa-settings-autosave.php:2050
8185
- msgid "Strip html anchor tags from descriptions on popups"
8186
- msgstr ""
8187
-
8188
- #: wppa-settings-autosave.php:2051
8189
- msgid ""
8190
- "Use this option to prevent the display of links that cannot be activated."
8191
- msgstr ""
8192
-
8193
- #: wppa-settings-autosave.php:2058
8194
- #, fuzzy
8195
- msgid "Popup rating"
8196
- msgstr "Der Raum zwischen avg und meine Bewertungssterne"
8197
-
8198
- #: wppa-settings-autosave.php:2059
8199
- msgid "Display Thumbnail Rating on popup."
8200
- msgstr ""
8201
-
8202
- #: wppa-settings-autosave.php:2060
8203
- msgid "Display the rating of the photo under the thumbnail image on the popup."
8204
- msgstr ""
8205
-
8206
- #: wppa-settings-autosave.php:2067
8207
- msgid "Popup comcount"
8208
- msgstr ""
8209
-
8210
- #: wppa-settings-autosave.php:2068
8211
- msgid "Display Thumbnail Comment count on popup."
8212
- msgstr ""
8213
-
8214
- #: wppa-settings-autosave.php:2069
8215
- msgid ""
8216
- "Display the number of comments of the photo under the thumbnail image on the "
8217
- "popup."
8218
- msgstr ""
8219
-
8220
- #: wppa-settings-autosave.php:2076
8221
- msgid "Show rating count"
8222
- msgstr ""
8223
-
8224
- #: wppa-settings-autosave.php:2077
8225
- msgid "Display the number of votes along with average ratings."
8226
- msgstr ""
8227
-
8228
- #: wppa-settings-autosave.php:2078
8229
- msgid ""
8230
- "If checked, the number of votes is displayed along with average rating "
8231
- "displays on thumbnail and popup displays."
8232
- msgstr ""
8233
-
8234
- #: wppa-settings-autosave.php:2085
8235
- msgid "Show name on thumb area"
8236
- msgstr ""
8237
-
8238
- #: wppa-settings-autosave.php:2086
8239
- msgid "Select if and where to display the album name on the thumbnail display."
8240
- msgstr ""
8241
-
8242
- #: wppa-settings-autosave.php:2089 wppa-settings-autosave.php:2100
8243
- msgid "None"
8244
- msgstr ""
8245
-
8246
- #: wppa-settings-autosave.php:2089 wppa-settings-autosave.php:2100
8247
- #: wppa-settings-autosave.php:3219
8248
- msgid "At the top"
8249
- msgstr ""
8250
-
8251
- #: wppa-settings-autosave.php:2089 wppa-settings-autosave.php:2100
8252
- #: wppa-settings-autosave.php:3219
8253
- msgid "At the bottom"
8254
- msgstr ""
8255
-
8256
- #: wppa-settings-autosave.php:2096
8257
- msgid "Show desc on thumb area"
8258
- msgstr ""
8259
-
8260
- #: wppa-settings-autosave.php:2097
8261
- msgid ""
8262
- "Select if and where to display the album description on the thumbnail "
8263
- "display."
8264
- msgstr ""
8265
-
8266
- #: wppa-settings-autosave.php:2107
8267
- msgid "Show Edit/Delete links"
8268
- msgstr ""
8269
-
8270
- #: wppa-settings-autosave.php:2108
8271
- msgid "Show these links under default thumbnails for owner and admin."
8272
- msgstr ""
8273
-
8274
- #: wppa-settings-autosave.php:2116
8275
- msgid "Show empty thumbnail area"
8276
- msgstr ""
8277
-
8278
- #: wppa-settings-autosave.php:2117
8279
- msgid "Display thumbnail areas with upload link only for empty albums."
8280
- msgstr ""
8281
-
8282
- #: wppa-settings-autosave.php:2126
8283
- msgid "Album cover related visibility settings"
8284
- msgstr ""
8285
-
8286
- #: wppa-settings-autosave.php:2128
8287
- msgid "Covertext"
8288
- msgstr ""
8289
-
8290
- #: wppa-settings-autosave.php:2129
8291
- msgid "Show the text on the album cover."
8292
- msgstr ""
8293
-
8294
- #: wppa-settings-autosave.php:2130
8295
- msgid "Display the album decription on the album cover"
8296
- msgstr ""
8297
-
8298
- #: wppa-settings-autosave.php:2138
8299
- msgid "Enable the slideshow."
8300
- msgstr ""
8301
-
8302
- #: wppa-settings-autosave.php:2139
8303
- msgid ""
8304
- "If you do not want slideshows: uncheck this box. Browsing full size images "
8305
- "will remain possible."
8306
- msgstr ""
8307
-
8308
- #: wppa-settings-autosave.php:2146
8309
- #, fuzzy
8310
- msgid "Slideshow/Browse"
8311
- msgstr "Diaschau"
8312
-
8313
- #: wppa-settings-autosave.php:2147
8314
- msgid "Display the Slideshow / Browse photos link on album covers"
8315
- msgstr ""
8316
-
8317
- #: wppa-settings-autosave.php:2148
8318
- msgid ""
8319
- "This setting causes the Slideshow link to be displayed on the album cover."
8320
- msgstr ""
8321
-
8322
- #: wppa-settings-autosave.php:2149
8323
- msgid ""
8324
- "If slideshows are disabled in item 2 in this table, you will see a browse "
8325
- "link to fullsize images."
8326
- msgstr ""
8327
-
8328
- #: wppa-settings-autosave.php:2150
8329
- msgid "If you do not want the browse link either, uncheck this item."
8330
- msgstr ""
8331
-
8332
- #: wppa-settings-autosave.php:2157
8333
- #, fuzzy
8334
- msgid "View ..."
8335
- msgstr "Ansehen"
8336
-
8337
- #: wppa-settings-autosave.php:2158
8338
- msgid "Display the View xx albums and yy photos link on album covers"
8339
- msgstr ""
8340
-
8341
- #: wppa-settings-autosave.php:2166
8342
- msgid "Treecount"
8343
- msgstr ""
8344
-
8345
- #: wppa-settings-autosave.php:2167
8346
- msgid "Disaplay the total number of (sub)albums and photos in subalbums"
8347
- msgstr ""
8348
-
8349
- #: wppa-settings-autosave.php:2168
8350
- msgid ""
8351
- "Displays the total number of sub albums and photos in the entire album tree "
8352
- "in parenthesis if the numbers differ from the direct content of the album."
8353
- msgstr ""
8354
-
8355
- #: wppa-settings-autosave.php:2175
8356
- #, fuzzy
8357
- msgid "Show categories"
8358
- msgstr "Kategorien:"
8359
-
8360
- #: wppa-settings-autosave.php:2176
8361
- msgid "Display the album categories on the covers."
8362
- msgstr ""
8363
-
8364
- #: wppa-settings-autosave.php:2184
8365
- msgid "Skip empty albums"
8366
- msgstr ""
8367
-
8368
- #: wppa-settings-autosave.php:2185
8369
- msgid "Do not show empty albums, except for admin and owner."
8370
- msgstr ""
8371
-
8372
- #: wppa-settings-autosave.php:2193
8373
- msgid "Widget related visibility settings"
8374
- msgstr ""
8375
-
8376
- #: wppa-settings-autosave.php:2195
8377
- msgid "Big Browse Buttons in widget"
8378
- msgstr ""
8379
-
8380
- #: wppa-settings-autosave.php:2196
8381
- msgid "Enable invisible browsing buttons in widget slideshows."
8382
- msgstr ""
8383
-
8384
- #: wppa-settings-autosave.php:2205
8385
- msgid "Ugly Browse Buttons in widget"
8386
- msgstr ""
8387
-
8388
- #: wppa-settings-autosave.php:2206
8389
- msgid "Enable ugly browsing buttons in widget slideshows."
8390
- msgstr ""
8391
-
8392
- #: wppa-settings-autosave.php:2207
8393
- msgid "If checked, the fullsize image is covered by browse buttons."
8394
- msgstr ""
8395
-
8396
- #: wppa-settings-autosave.php:2215
8397
- msgid "Album widget tooltip"
8398
- msgstr ""
8399
-
8400
- #: wppa-settings-autosave.php:2216
8401
- msgid "Show the album description on hoovering thumbnail in album widget"
8402
- msgstr ""
8403
-
8404
- #: wppa-settings-autosave.php:2224 wppa-settings-autosave.php:4135
8405
- msgid ""
8406
- "Lightbox related settings. These settings have effect only when Table IX-J3 "
8407
- "is set to wppa"
8408
- msgstr ""
8409
-
8410
- #: wppa-settings-autosave.php:2226
8411
- msgid "Overlay Close label text"
8412
- msgstr ""
8413
-
8414
- #: wppa-settings-autosave.php:2227
8415
- msgid "The text label for the cross exit symbol."
8416
- msgstr ""
8417
-
8418
- #: wppa-settings-autosave.php:2228
8419
- msgid ""
8420
- "This text may be multilingual according to the qTranslate short tags specs."
8421
- msgstr ""
8422
-
8423
- #: wppa-settings-autosave.php:2235
8424
- msgid "Overlay theme color"
8425
- msgstr ""
8426
-
8427
- #: wppa-settings-autosave.php:2236
8428
- msgid "The color of the image border and text background."
8429
- msgstr ""
8430
-
8431
- #: wppa-settings-autosave.php:2239 wppa-settings-autosave.php:2250
8432
- msgid "White"
8433
- msgstr ""
8434
-
8435
- #: wppa-settings-autosave.php:2246
8436
- msgid "Overlay background color"
8437
- msgstr ""
8438
-
8439
- #: wppa-settings-autosave.php:2247
8440
- msgid "The color of the outer background."
8441
- msgstr ""
8442
-
8443
- #: wppa-settings-autosave.php:2257
8444
- msgid "Overlay slide name"
8445
- msgstr ""
8446
-
8447
- #: wppa-settings-autosave.php:2258
8448
- msgid "Show name if from slide."
8449
- msgstr ""
8450
-
8451
- #: wppa-settings-autosave.php:2259
8452
- msgid ""
8453
- "Shows the photos name on a lightbox display when initiated from a slide."
8454
- msgstr ""
8455
-
8456
- #: wppa-settings-autosave.php:2260 wppa-settings-autosave.php:2270
8457
- msgid ""
8458
- "This setting also applies to film thumbnails if Table VI-11 is set to "
8459
- "lightbox overlay."
8460
- msgstr ""
8461
-
8462
- #: wppa-settings-autosave.php:2267
8463
- msgid "Overlay slide desc"
8464
- msgstr ""
8465
-
8466
- #: wppa-settings-autosave.php:2268
8467
- msgid "Show description if from slide."
8468
- msgstr ""
8469
-
8470
- #: wppa-settings-autosave.php:2269
8471
- msgid ""
8472
- "Shows the photos description on a lightbox display when initiated from a "
8473
- "slide."
8474
- msgstr ""
8475
-
8476
- #: wppa-settings-autosave.php:2277
8477
- msgid "Overlay thumb name"
8478
- msgstr ""
8479
-
8480
- #: wppa-settings-autosave.php:2278
8481
- msgid "Show the photos name if from thumb."
8482
- msgstr ""
8483
-
8484
- #: wppa-settings-autosave.php:2279
8485
- msgid ""
8486
- "Shows the name on a lightbox display when initiated from a standard "
8487
- "thumbnail or a widget thumbnail."
8488
- msgstr ""
8489
-
8490
- #: wppa-settings-autosave.php:2280 wppa-settings-autosave.php:2290
8491
- msgid ""
8492
- "This setting applies to standard thumbnails, thumbnail-, comment-, topten- "
8493
- "and lasten-widget."
8494
- msgstr ""
8495
-
8496
- #: wppa-settings-autosave.php:2287
8497
- msgid "Overlay thumb desc"
8498
- msgstr ""
8499
-
8500
- #: wppa-settings-autosave.php:2288
8501
- msgid "Show description if from thumb."
8502
- msgstr ""
8503
-
8504
- #: wppa-settings-autosave.php:2289
8505
- msgid ""
8506
- "Shows the photos description on a lightbox display when initiated from a "
8507
- "standard thumbnail or a widget thumbnail."
8508
- msgstr ""
8509
-
8510
- #: wppa-settings-autosave.php:2297
8511
- #, fuzzy
8512
- msgid "Overlay potd name"
8513
- msgstr "Bitte gibt den Fotonamen an."
8514
-
8515
- #: wppa-settings-autosave.php:2298
8516
- msgid "Show the photos name if from photo of the day."
8517
- msgstr ""
8518
-
8519
- #: wppa-settings-autosave.php:2299
8520
- msgid ""
8521
- "Shows the name on a lightbox display when initiated from the photo of the "
8522
- "day."
8523
- msgstr ""
8524
-
8525
- #: wppa-settings-autosave.php:2306
8526
- msgid "Overlay potd desc"
8527
- msgstr ""
8528
-
8529
- #: wppa-settings-autosave.php:2307
8530
- msgid "Show description if from from photo of the day."
8531
- msgstr ""
8532
-
8533
- #: wppa-settings-autosave.php:2308
8534
- msgid ""
8535
- "Shows the photos description on a lightbox display when initiated from the "
8536
- "photo of the day."
8537
- msgstr ""
8538
-
8539
- #: wppa-settings-autosave.php:2315
8540
- #, fuzzy
8541
- msgid "Overlay sphoto name"
8542
- msgstr "Bitte gibt den Fotonamen an."
8543
-
8544
- #: wppa-settings-autosave.php:2316
8545
- msgid "Show the photos name if from a single photo."
8546
- msgstr ""
8547
-
8548
- #: wppa-settings-autosave.php:2317
8549
- msgid ""
8550
- "Shows the name on a lightbox display when initiated from a single photo."
8551
- msgstr ""
8552
-
8553
- #: wppa-settings-autosave.php:2324
8554
- #, fuzzy
8555
- msgid "Overlay sphoto desc"
8556
- msgstr "Thumbnail Fotos verwandte Einstellungen"
8557
-
8558
- #: wppa-settings-autosave.php:2325
8559
- msgid "Show description if from from a single photo."
8560
- msgstr ""
8561
-
8562
- #: wppa-settings-autosave.php:2326
8563
- msgid ""
8564
- "Shows the photos description on a lightbox display when initiated from a "
8565
- "single photo."
8566
- msgstr ""
8567
-
8568
- #: wppa-settings-autosave.php:2333
8569
- #, fuzzy
8570
- msgid "Overlay mphoto name"
8571
- msgstr "Bitte gibt den Fotonamen an."
8572
-
8573
- #: wppa-settings-autosave.php:2334
8574
- msgid "Show the photos name if from a single media style photo."
8575
- msgstr ""
8576
-
8577
- #: wppa-settings-autosave.php:2335
8578
- msgid ""
8579
- "Shows the name on a lightbox display when initiated from a single media "
8580
- "style photo."
8581
- msgstr ""
8582
-
8583
- #: wppa-settings-autosave.php:2342
8584
- #, fuzzy
8585
- msgid "Overlay mphoto desc"
8586
- msgstr "Thumbnail Fotos verwandte Einstellungen"
8587
-
8588
- #: wppa-settings-autosave.php:2343
8589
- msgid "Show description if from from a media style photo."
8590
- msgstr ""
8591
-
8592
- #: wppa-settings-autosave.php:2344
8593
- msgid ""
8594
- "Shows the photos description on a lightbox display when initiated from a "
8595
- "single media style photo."
8596
- msgstr ""
8597
-
8598
- #: wppa-settings-autosave.php:2351
8599
- #, fuzzy
8600
- msgid "Overlay albumwidget name"
8601
- msgstr ""
8602
- "Trage hier Schriftnamen, Größe, Farbe und Breite für die Album Cover Titel "
8603
- "ein."
8604
-
8605
- #: wppa-settings-autosave.php:2352
8606
- msgid "Show the photos name if from the album widget."
8607
- msgstr ""
8608
-
8609
- #: wppa-settings-autosave.php:2353
8610
- msgid ""
8611
- "Shows the name on a lightbox display when initiated from the album widget."
8612
- msgstr ""
8613
-
8614
- #: wppa-settings-autosave.php:2360
8615
- msgid "Overlay albumwidget desc"
8616
- msgstr ""
8617
-
8618
- #: wppa-settings-autosave.php:2361
8619
- msgid "Show description if from from the album widget."
8620
- msgstr ""
8621
-
8622
- #: wppa-settings-autosave.php:2362
8623
- msgid ""
8624
- "Shows the photos description on a lightbox display when initiated from the "
8625
- "album widget."
8626
- msgstr ""
8627
-
8628
- #: wppa-settings-autosave.php:2369
8629
- #, fuzzy
8630
- msgid "Overlay coverphoto name"
8631
- msgstr "Bitte gibt den Fotonamen an."
8632
-
8633
- #: wppa-settings-autosave.php:2370
8634
- msgid "Show the photos name if from the album cover."
8635
- msgstr ""
8636
-
8637
- #: wppa-settings-autosave.php:2371
8638
- msgid ""
8639
- "Shows the name on a lightbox display when initiated from the album "
8640
- "coverphoto."
8641
- msgstr ""
8642
-
8643
- #: wppa-settings-autosave.php:2378
8644
- msgid "Overlay coverphoto desc"
8645
- msgstr ""
8646
-
8647
- #: wppa-settings-autosave.php:2379
8648
- msgid "Show description if from from the album cover."
8649
- msgstr ""
8650
-
8651
- #: wppa-settings-autosave.php:2380
8652
- msgid ""
8653
- "Shows the photos description on a lightbox display when initiated from the "
8654
- "album coverphoto."
8655
- msgstr ""
8656
-
8657
- #: wppa-settings-autosave.php:2387
8658
- msgid "Overlay add owner"
8659
- msgstr ""
8660
-
8661
- #: wppa-settings-autosave.php:2388
8662
- msgid "Add the owner to the photo name on lightbox displays."
8663
- msgstr ""
8664
-
8665
- #: wppa-settings-autosave.php:2389
8666
- msgid ""
8667
- "This setting is independant of the show name switches and is a global "
8668
- "setting."
8669
- msgstr ""
8670
-
8671
- #: wppa-settings-autosave.php:2396
8672
- #, fuzzy
8673
- msgid "Overlay show start/stop"
8674
- msgstr "Klicke zum Starten/Stoppen"
8675
-
8676
- #: wppa-settings-autosave.php:2397
8677
- msgid "Show Start and Stop for running slideshow on lightbox."
8678
- msgstr ""
8679
-
8680
- #: wppa-settings-autosave.php:2405
8681
- msgid "Overlay show legenda"
8682
- msgstr ""
8683
-
8684
- #: wppa-settings-autosave.php:2406
8685
- msgid "Show \"Press f for fullsize\" etc. on lightbox."
8686
- msgstr ""
8687
-
8688
- #: wppa-settings-autosave.php:2407
8689
- msgid "Independant of this setting, it will not show up on mobile devices."
8690
- msgstr ""
8691
-
8692
- #: wppa-settings-autosave.php:2414
8693
- msgid "Show fullscreen icons"
8694
- msgstr ""
8695
-
8696
- #: wppa-settings-autosave.php:2415
8697
- msgid "Shows fullscreen and back to normal icon buttons on upper right corner"
8698
- msgstr ""
8699
-
8700
- #: wppa-settings-autosave.php:2423
8701
- msgid "Overlay show counter"
8702
- msgstr ""
8703
-
8704
- #: wppa-settings-autosave.php:2424
8705
- msgid "Show the x/y counter below the image."
8706
- msgstr ""
8707
-
8708
- #: wppa-settings-autosave.php:2432
8709
- #, fuzzy
8710
- msgid "Show Zoom in"
8711
- msgstr "Zeigt Zoom in"
8712
-
8713
- #: wppa-settings-autosave.php:2433
8714
- msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
8715
- msgstr ""
8716
-
8717
- #: wppa-settings-autosave.php:2434
8718
- msgid ""
8719
- "If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
8720
- "contains the photo name."
8721
- msgstr ""
8722
-
8723
- #: wppa-settings-autosave.php:2442
8724
- msgid "Frontend upload configuration settings"
8725
- msgstr ""
8726
-
8727
- #: wppa-settings-autosave.php:2444
8728
- #, fuzzy
8729
- msgid "User upload Photos"
8730
- msgstr "Hochgeladen Fotos benötigen eine Moderation."
8731
-
8732
- #: wppa-settings-autosave.php:2445
8733
- #, fuzzy
8734
- msgid "Enable frontend upload."
8735
- msgstr "<b>FEHLER: Ungültiger Versuch eine Datei hochzuladen</b>"
8736
-
8737
- #: wppa-settings-autosave.php:2446
8738
- msgid ""
8739
- "If you check this item, frontend upload will be enabled according to the "
8740
- "rules set in the following items of this table."
8741
- msgstr ""
8742
-
8743
- #: wppa-settings-autosave.php:2454
8744
- #, fuzzy
8745
- msgid "User upload Photos login"
8746
- msgstr "Hochgeladen Fotos benötigen eine Moderation."
8747
-
8748
- #: wppa-settings-autosave.php:2455
8749
- msgid "Frontend upload requires the user is logged in."
8750
- msgstr ""
8751
-
8752
- #: wppa-settings-autosave.php:2456
8753
- msgid ""
8754
- "If you uncheck this box, make sure you check the item Owners only in Table "
8755
- "VII-D1."
8756
- msgstr ""
8757
-
8758
- #: wppa-settings-autosave.php:2457
8759
- msgid ""
8760
- "Also: set the owner to ---public--- of the albums that are allowed to be "
8761
- "uploaded to."
8762
- msgstr ""
8763
-
8764
- #: wppa-settings-autosave.php:2464
8765
- #, fuzzy
8766
- msgid "User upload Ajax"
8767
- msgstr "Hochgeladen Fotos benötigen eine Moderation."
8768
-
8769
- #: wppa-settings-autosave.php:2465
8770
- msgid "Shows the upload progression bar."
8771
- msgstr ""
8772
-
8773
- #: wppa-settings-autosave.php:2473
8774
- msgid "Show Copyright"
8775
- msgstr ""
8776
-
8777
- #: wppa-settings-autosave.php:2474
8778
- msgid "Show a copyright warning on frontend upload locations."
8779
- msgstr ""
8780
-
8781
- #: wppa-settings-autosave.php:2483
8782
- msgid "Copyright notice"
8783
- msgstr ""
8784
-
8785
- #: wppa-settings-autosave.php:2484
8786
- msgid "The message to be displayed."
8787
- msgstr ""
8788
-
8789
- #: wppa-settings-autosave.php:2492
8790
- msgid "User Watermark"
8791
- msgstr ""
8792
-
8793
- #: wppa-settings-autosave.php:2493
8794
- msgid "Uploading users may select watermark settings"
8795
- msgstr ""
8796
-
8797
- #: wppa-settings-autosave.php:2494
8798
- msgid ""
8799
- "If checked, anyone who can upload and/or import photos can overrule the "
8800
- "default watermark settings."
8801
- msgstr ""
8802
-
8803
- #: wppa-settings-autosave.php:2501
8804
- #, fuzzy
8805
- msgid "User name"
8806
- msgstr "Dein Name:"
8807
-
8808
- #: wppa-settings-autosave.php:2502
8809
- msgid "Uploading users may overrule the default name."
8810
- msgstr ""
8811
-
8812
- #: wppa-settings-autosave.php:2503
8813
- msgid ""
8814
- "If checked, the default photo name as defined in Table IX-D13 may be "
8815
- "overruled by the user."
8816
- msgstr ""
8817
-
8818
- #: wppa-settings-autosave.php:2510
8819
- msgid "Apply Newphoto desc user"
8820
- msgstr ""
8821
-
8822
- #: wppa-settings-autosave.php:2511
8823
- msgid "Give each new frontend uploaded photo a standard description."
8824
- msgstr ""
8825
-
8826
- #: wppa-settings-autosave.php:2512
8827
- msgid ""
8828
- "If checked, each new photo will get the description (template) as specified "
8829
- "in Table IX-D5."
8830
- msgstr ""
8831
-
8832
- #: wppa-settings-autosave.php:2519
8833
- msgid "User desc"
8834
- msgstr ""
8835
-
8836
- #: wppa-settings-autosave.php:2520
8837
- msgid "Uploading users may overrule the default description."
8838
- msgstr ""
8839
-
8840
- #: wppa-settings-autosave.php:2528
8841
- #, fuzzy
8842
- msgid "User upload custom"
8843
- msgstr "Hochgeladen Fotos benötigen eine Moderation."
8844
-
8845
- #: wppa-settings-autosave.php:2529
8846
- msgid "Frontend upload can fill in custom data fields."
8847
- msgstr ""
8848
-
8849
- #: wppa-settings-autosave.php:2537
8850
- #, fuzzy
8851
- msgid "User upload tags"
8852
- msgstr "Hochgeladen Fotos benötigen eine Moderation."
8853
-
8854
- #: wppa-settings-autosave.php:2538
8855
- msgid "Frontend upload can add tags."
8856
- msgstr ""
8857
-
8858
- #: wppa-settings-autosave.php:2539
8859
- msgid "You can configure the details of tag addition in Table IX-D18.x"
8860
- msgstr ""
8861
-
8862
- #: wppa-settings-autosave.php:2547 wppa-settings-autosave.php:2575
8863
- #: wppa-settings-autosave.php:2603
8864
- #, fuzzy
8865
- msgid "Tag selection box"
8866
- msgstr "--- gelöscht ---"
8867
-
8868
- #: wppa-settings-autosave.php:2548 wppa-settings-autosave.php:2576
8869
- #: wppa-settings-autosave.php:2604
8870
- msgid "Front-end upload tags selecion box."
8871
- msgstr ""
8872
-
8873
- #: wppa-settings-autosave.php:2552 wppa-settings-autosave.php:2580
8874
- #: wppa-settings-autosave.php:2608
8875
- msgid "On:"
8876
- msgstr ""
8877
-
8878
- #: wppa-settings-autosave.php:2552 wppa-settings-autosave.php:2580
8879
- #: wppa-settings-autosave.php:2608
8880
- #, fuzzy
8881
- msgid "Multi:"
8882
- msgstr "Multi Bewertung"
8883
-
8884
- #: wppa-settings-autosave.php:2557 wppa-settings-autosave.php:2585
8885
- #: wppa-settings-autosave.php:2613
8886
- msgid "Caption box"
8887
- msgstr ""
8888
-
8889
- #: wppa-settings-autosave.php:2558 wppa-settings-autosave.php:2586
8890
- #: wppa-settings-autosave.php:2614
8891
- msgid "The title of the tag selection box."
8892
- msgstr ""
8893
-
8894
- #: wppa-settings-autosave.php:2566 wppa-settings-autosave.php:2594
8895
- #: wppa-settings-autosave.php:2622
8896
- msgid "Tags box"
8897
- msgstr ""
8898
-
8899
- #: wppa-settings-autosave.php:2567 wppa-settings-autosave.php:2595
8900
- #: wppa-settings-autosave.php:2623
8901
- #, fuzzy
8902
- msgid "The tags in the selection box."
8903
- msgstr "--- gelöscht ---"
8904
-
8905
- #: wppa-settings-autosave.php:2568 wppa-settings-autosave.php:2596
8906
- #: wppa-settings-autosave.php:2624
8907
- msgid ""
8908
- "Enter the tags you want to appear in the selection box. Empty means: all "
8909
- "existing tags"
8910
- msgstr ""
8911
-
8912
- #: wppa-settings-autosave.php:2631
8913
- msgid "New tags"
8914
- msgstr ""
8915
-
8916
- #: wppa-settings-autosave.php:2632
8917
- msgid "Input field for any user defined tags."
8918
- msgstr ""
8919
-
8920
- #: wppa-settings-autosave.php:2640
8921
- #, fuzzy
8922
- msgid "New tags caption"
8923
- msgstr ""
8924
- ". </i>Dieses Plugin wird dazu führen, das wppa+ nicht richtig funktioniert ."
8925
-
8926
- #: wppa-settings-autosave.php:2641
8927
- msgid "The caption above the tags input field."
8928
- msgstr ""
8929
-
8930
- #: wppa-settings-autosave.php:2649
8931
- #, fuzzy
8932
- msgid "Preview tags"
8933
- msgstr "Vorheriges Foto"
8934
-
8935
- #: wppa-settings-autosave.php:2650
8936
- msgid "Show a preview of all tags that will be added to the photo info."
8937
- msgstr ""
8938
-
8939
- #: wppa-settings-autosave.php:2659
8940
- msgid "Miscellaneous visibility settings"
8941
- msgstr ""
8942
-
8943
- #: wppa-settings-autosave.php:2661
8944
- msgid "Frontend ending label"
8945
- msgstr ""
8946
-
8947
- #: wppa-settings-autosave.php:2662
8948
- msgid "Frontend upload / create / edit dialog closing label text."
8949
- msgstr ""
8950
-
8951
- #: wppa-settings-autosave.php:2665
8952
- msgid "Abort"
8953
- msgstr "Abbrechen"
8954
-
8955
- #: wppa-settings-autosave.php:2665
8956
- msgid "Close"
8957
- msgstr "Schließen"
8958
-
8959
- #: wppa-settings-autosave.php:2665
8960
- msgid "Exit"
8961
- msgstr "Beenden"
8962
-
8963
- #: wppa-settings-autosave.php:2665
8964
- msgid "Quit"
8965
- msgstr "Verlassen"
8966
-
8967
- #: wppa-settings-autosave.php:2673
8968
- msgid "Widget thumbs fontsize"
8969
- msgstr ""
8970
-
8971
- #: wppa-settings-autosave.php:2674
8972
- msgid "Font size for thumbnail subtext in widgets."
8973
- msgstr ""
8974
-
8975
- #: wppa-settings-autosave.php:2682
8976
- msgid "Arrow color"
8977
- msgstr ""
8978
-
8979
- #: wppa-settings-autosave.php:2683
8980
- msgid "Left/right browsing arrow color."
8981
- msgstr ""
8982
-
8983
- #: wppa-settings-autosave.php:2684
8984
- msgid "Enter the color of the filmstrip navigation arrows."
8985
- msgstr ""
8986
-
8987
- #: wppa-settings-autosave.php:2691
8988
- msgid "Owner on new line"
8989
- msgstr ""
8990
-
8991
- #: wppa-settings-autosave.php:2692
8992
- msgid "Place the (owner) text on a new line."
8993
- msgstr ""
8994
-
8995
- #: wppa-settings-autosave.php:2700
8996
- msgid "Custom datafields"
8997
- msgstr ""
8998
-
8999
- #: wppa-settings-autosave.php:2701
9000
- msgid "Define up to 10 custom data fields for photos."
9001
- msgstr ""
9002
-
9003
- #: wppa-settings-autosave.php:2711
9004
- #, php-format
9005
- msgid "Name and visibility %s"
9006
- msgstr ""
9007
-
9008
- #: wppa-settings-autosave.php:2712
9009
- #, php-format
9010
- msgid "The caption for field %s and visibility at frontend."
9011
- msgstr ""
9012
-
9013
- #: wppa-settings-autosave.php:2713
9014
- #, php-format
9015
- msgid ""
9016
- "If you check the box, the value of this field is displayable in photo "
9017
- "descriptions at the frontend with keyword w#c%s"
9018
- msgstr ""
9019
-
9020
- #: wppa-settings-autosave.php:2743
9021
- msgid "Table III:"
9022
- msgstr ""
9023
-
9024
- #: wppa-settings-autosave.php:2743
9025
- msgid "Backgrounds:"
9026
- msgstr ""
9027
-
9028
- #: wppa-settings-autosave.php:2744
9029
- msgid "This table describes the backgrounds of wppa+ elements."
9030
- msgstr ""
9031
-
9032
- #: wppa-settings-autosave.php:2754 wppa-settings-autosave.php:3065
9033
- msgid "Background color"
9034
- msgstr ""
9035
-
9036
- #: wppa-settings-autosave.php:2755 wppa-settings-autosave.php:2757
9037
- #: wppa-settings-autosave.php:3066 wppa-settings-autosave.php:3068
9038
- msgid "Sample"
9039
- msgstr ""
9040
-
9041
- #: wppa-settings-autosave.php:2756 wppa-settings-autosave.php:3067
9042
- msgid "Border color"
9043
- msgstr ""
9044
-
9045
- #: wppa-settings-autosave.php:2765
9046
- msgid "Slideshow elements backgrounds"
9047
- msgstr ""
9048
-
9049
- #: wppa-settings-autosave.php:2767
9050
- msgid "Nav"
9051
- msgstr ""
9052
-
9053
- #: wppa-settings-autosave.php:2768
9054
- msgid "Navigation bars."
9055
- msgstr ""
9056
-
9057
- #: wppa-settings-autosave.php:2769
9058
- msgid "Enter valid CSS colors for navigation backgrounds and borders."
9059
- msgstr ""
9060
-
9061
- #: wppa-settings-autosave.php:2780
9062
- msgid "SlideImg"
9063
- msgstr ""
9064
-
9065
- #: wppa-settings-autosave.php:2781
9066
- #, fuzzy
9067
- msgid "Fullsize Slideshow Photos."
9068
- msgstr "Super View Fotos"
9069
-
9070
- #: wppa-settings-autosave.php:2782
9071
- msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
9072
- msgstr ""
9073
-
9074
- #: wppa-settings-autosave.php:2783
9075
- msgid "The colors may be equal or \"transparent\""
9076
- msgstr ""
9077
-
9078
- #: wppa-settings-autosave.php:2784
9079
- msgid ""
9080
- "For more information about slideshow image borders see the help on Table I-B4"
9081
- msgstr ""
9082
-
9083
- #: wppa-settings-autosave.php:2795 wppa-settings-autosave.php:4379
9084
- msgid "Numbar"
9085
- msgstr ""
9086
-
9087
- #: wppa-settings-autosave.php:2796
9088
- msgid "Number bar box background."
9089
- msgstr ""
9090
-
9091
- #: wppa-settings-autosave.php:2797
9092
- msgid "Enter valid CSS colors for numbar box backgrounds and borders."
9093
- msgstr ""
9094
-
9095
- #: wppa-settings-autosave.php:2808
9096
- msgid "Numbar active"
9097
- msgstr ""
9098
-
9099
- #: wppa-settings-autosave.php:2809
9100
- msgid "Number bar active box background."
9101
- msgstr ""
9102
-
9103
- #: wppa-settings-autosave.php:2810
9104
- msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
9105
- msgstr ""
9106
-
9107
- #: wppa-settings-autosave.php:2821
9108
- msgid "Name/desc"
9109
- msgstr ""
9110
-
9111
- #: wppa-settings-autosave.php:2822
9112
- msgid "Name and Description bars."
9113
- msgstr ""
9114
-
9115
- #: wppa-settings-autosave.php:2823
9116
- msgid ""
9117
- "Enter valid CSS colors for name and description box backgrounds and borders."
9118
- msgstr ""
9119
-
9120
- #: wppa-settings-autosave.php:2835
9121
- msgid "Comment input and display areas."
9122
- msgstr ""
9123
-
9124
- #: wppa-settings-autosave.php:2836
9125
- msgid "Enter valid CSS colors for comment box backgrounds and borders."
9126
- msgstr ""
9127
-
9128
- #: wppa-settings-autosave.php:2847 wppa-settings-autosave.php:7663
9129
- #: wppa-settings-autosave.php:7708
9130
- msgid "Custom"
9131
- msgstr ""
9132
-
9133
- #: wppa-settings-autosave.php:2848
9134
- msgid "Custom box background."
9135
- msgstr ""
9136
-
9137
- #: wppa-settings-autosave.php:2849
9138
- msgid "Enter valid CSS colors for custom box backgrounds and borders."
9139
- msgstr ""
9140
-
9141
- #: wppa-settings-autosave.php:2860
9142
- msgid "IPTC"
9143
- msgstr ""
9144
-
9145
- #: wppa-settings-autosave.php:2861
9146
- msgid "IPTC display box background."
9147
- msgstr ""
9148
-
9149
- #: wppa-settings-autosave.php:2862
9150
- msgid "Enter valid CSS colors for iptc box backgrounds and borders."
9151
- msgstr ""
9152
-
9153
- #: wppa-settings-autosave.php:2873
9154
- msgid "EXIF"
9155
- msgstr ""
9156
-
9157
- #: wppa-settings-autosave.php:2874
9158
- msgid "EXIF display box background."
9159
- msgstr ""
9160
-
9161
- #: wppa-settings-autosave.php:2875
9162
- msgid "Enter valid CSS colors for exif box backgrounds and borders."
9163
- msgstr ""
9164
-
9165
- #: wppa-settings-autosave.php:2886
9166
- msgid "Share"
9167
- msgstr ""
9168
-
9169
- #: wppa-settings-autosave.php:2887
9170
- msgid "Share box display background."
9171
- msgstr ""
9172
-
9173
- #: wppa-settings-autosave.php:2888
9174
- msgid "Enter valid CSS colors for share box backgrounds and borders."
9175
- msgstr ""
9176
-
9177
- #: wppa-settings-autosave.php:2899
9178
- msgid "Other backgrounds"
9179
- msgstr ""
9180
-
9181
- #: wppa-settings-autosave.php:2901
9182
- msgid "Even"
9183
- msgstr ""
9184
-
9185
- #: wppa-settings-autosave.php:2902
9186
- msgid "Even background."
9187
- msgstr ""
9188
-
9189
- #: wppa-settings-autosave.php:2903
9190
- msgid ""
9191
- "Enter valid CSS colors for even numbered backgrounds and borders of album "
9192
- "covers and thumbnail displays 'As covers'."
9193
- msgstr ""
9194
-
9195
- #: wppa-settings-autosave.php:2914
9196
- msgid "Odd"
9197
- msgstr ""
9198
-
9199
- #: wppa-settings-autosave.php:2915
9200
- msgid "Odd background."
9201
- msgstr ""
9202
-
9203
- #: wppa-settings-autosave.php:2916
9204
- msgid ""
9205
- "Enter valid CSS colors for odd numbered backgrounds and borders of album "
9206
- "covers and thumbnail displays 'As covers'."
9207
- msgstr ""
9208
-
9209
- #: wppa-settings-autosave.php:2927
9210
- #, fuzzy
9211
- msgid "Thumbnail padding"
9212
- msgstr "Anzeigen..."
9213
-
9214
- #: wppa-settings-autosave.php:2928
9215
- msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
9216
- msgstr ""
9217
-
9218
- #: wppa-settings-autosave.php:2929
9219
- msgid ""
9220
- "Enter valid CSS color hexadecimal like #000000 for black or #ffffff for "
9221
- "white for the padded thumbnails."
9222
- msgstr ""
9223
-
9224
- #: wppa-settings-autosave.php:2940
9225
- msgid "Img"
9226
- msgstr ""
9227
-
9228
- #: wppa-settings-autosave.php:2941
9229
- msgid "Cover Photos and popups."
9230
- msgstr ""
9231
-
9232
- #: wppa-settings-autosave.php:2942
9233
- msgid ""
9234
- "Enter valid CSS colors for Cover photo and popup backgrounds and borders."
9235
- msgstr ""
9236
-
9237
- #: wppa-settings-autosave.php:2954
9238
- msgid "Upload box background."
9239
- msgstr ""
9240
-
9241
- #: wppa-settings-autosave.php:2955
9242
- msgid "Enter valid CSS colors for upload box backgrounds and borders."
9243
- msgstr ""
9244
-
9245
- #: wppa-settings-autosave.php:2966
9246
- #, fuzzy
9247
- msgid "Multitag"
9248
- msgstr "Multi Bewertung"
9249
-
9250
- #: wppa-settings-autosave.php:2967
9251
- msgid "Multitag box background."
9252
- msgstr ""
9253
-
9254
- #: wppa-settings-autosave.php:2968
9255
- msgid "Enter valid CSS colors for multitag box backgrounds and borders."
9256
- msgstr ""
9257
-
9258
- #: wppa-settings-autosave.php:2979
9259
- msgid "Tagcloud"
9260
- msgstr ""
9261
-
9262
- #: wppa-settings-autosave.php:2980
9263
- msgid "Tagcloud box background."
9264
- msgstr ""
9265
-
9266
- #: wppa-settings-autosave.php:2981
9267
- msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
9268
- msgstr ""
9269
-
9270
- #: wppa-settings-autosave.php:2992
9271
- #, fuzzy
9272
- msgid "Superview"
9273
- msgstr "Super View Fotos"
9274
-
9275
- #: wppa-settings-autosave.php:2993
9276
- msgid "Superview box background."
9277
- msgstr ""
9278
-
9279
- #: wppa-settings-autosave.php:2994
9280
- msgid "Enter valid CSS colors for superview box backgrounds and borders."
9281
- msgstr ""
9282
-
9283
- #: wppa-settings-autosave.php:3006
9284
- msgid "Search box background."
9285
- msgstr ""
9286
-
9287
- #: wppa-settings-autosave.php:3007
9288
- msgid "Enter valid CSS colors for search box backgrounds and borders."
9289
- msgstr ""
9290
-
9291
- #: wppa-settings-autosave.php:3018
9292
- #, fuzzy
9293
- msgid "BestOf"
9294
- msgstr "Fotos"
9295
-
9296
- #: wppa-settings-autosave.php:3019
9297
- msgid "BestOf box background."
9298
- msgstr ""
9299
-
9300
- #: wppa-settings-autosave.php:3020
9301
- msgid "Enter valid CSS colors for bestof box backgrounds and borders."
9302
- msgstr ""
9303
-
9304
- #: wppa-settings-autosave.php:3031
9305
- msgid "Calendar"
9306
- msgstr ""
9307
-
9308
- #: wppa-settings-autosave.php:3032
9309
- msgid "Calendar box background."
9310
- msgstr ""
9311
-
9312
- #: wppa-settings-autosave.php:3033
9313
- msgid "Enter valid CSS colors for calendar box backgrounds and borders."
9314
- msgstr ""
9315
-
9316
- #: wppa-settings-autosave.php:3044
9317
- msgid "Stereo"
9318
- msgstr ""
9319
-
9320
- #: wppa-settings-autosave.php:3045
9321
- msgid "Stereo mode selection box background."
9322
- msgstr ""
9323
-
9324
- #: wppa-settings-autosave.php:3046
9325
- msgid ""
9326
- "Enter valid CSS colors for stereo mode selection box backgrounds and borders."
9327
- msgstr ""
9328
-
9329
- #: wppa-settings-autosave.php:3078
9330
- msgid "Table IV:"
9331
- msgstr ""
9332
-
9333
- #: wppa-settings-autosave.php:3078
9334
- msgid "Behaviour:"
9335
- msgstr ""
9336
-
9337
- #: wppa-settings-autosave.php:3079
9338
- msgid "This table describes the dynamic behaviour of certain wppa+ elements."
9339
- msgstr ""
9340
-
9341
- #: wppa-settings-autosave.php:3097
9342
- msgid "System related settings"
9343
- msgstr ""
9344
-
9345
- #: wppa-settings-autosave.php:3099
9346
- msgid "Use Ajax"
9347
- msgstr ""
9348
-
9349
- #: wppa-settings-autosave.php:3100
9350
- msgid "Use Ajax as much as is possible and implemented."
9351
- msgstr ""
9352
-
9353
- #: wppa-settings-autosave.php:3101
9354
- msgid ""
9355
- "If this box is ticked, page content updates from within wppa+ displays will "
9356
- "be Ajax based as much as possible."
9357
- msgstr ""
9358
-
9359
- #: wppa-settings-autosave.php:3109
9360
- msgid "Ajax NON Admin"
9361
- msgstr ""
9362
-
9363
- #: wppa-settings-autosave.php:3110
9364
- msgid "Frontend ajax use no admin files."
9365
- msgstr ""
9366
-
9367
- #: wppa-settings-autosave.php:3111
9368
- msgid "If you want to password protect wp-admin, check this box."
9369
- msgstr ""
9370
-
9371
- #: wppa-settings-autosave.php:3112
9372
- msgid ""
9373
- "In rare cases changing page content does not work when this box is checked. "
9374
- "Verify the functionality!"
9375
- msgstr ""
9376
-
9377
- #: wppa-settings-autosave.php:3119
9378
- #, fuzzy
9379
- msgid "Photo names in urls"
9380
- msgstr "Suchergebnisse für: %s"
9381
-
9382
- #: wppa-settings-autosave.php:3120
9383
- msgid "Display photo names in urls."
9384
- msgstr ""
9385
-
9386
- #: wppa-settings-autosave.php:3121
9387
- msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
9388
- msgstr ""
9389
-
9390
- #: wppa-settings-autosave.php:3122
9391
- msgid ""
9392
- "It is your responsability to avoid duplicate names of photos in the same "
9393
- "album."
9394
- msgstr ""
9395
-
9396
- #: wppa-settings-autosave.php:3129
9397
- #, fuzzy
9398
- msgid "Album names in urls"
9399
- msgstr "Album Admin"
9400
-
9401
- #: wppa-settings-autosave.php:3130
9402
- msgid "Display album names in urls."
9403
- msgstr ""
9404
-
9405
- #: wppa-settings-autosave.php:3131
9406
- msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
9407
- msgstr ""
9408
-
9409
- #: wppa-settings-autosave.php:3132
9410
- msgid ""
9411
- "It is your responsability to avoid duplicate names of albums in the system."
9412
- msgstr ""
9413
-
9414
- #: wppa-settings-autosave.php:3139
9415
- msgid "Use short query args"
9416
- msgstr ""
9417
-
9418
- #: wppa-settings-autosave.php:3140
9419
- msgid "Use &album=... &photo=..."
9420
- msgstr ""
9421
-
9422
- #: wppa-settings-autosave.php:3141
9423
- msgid ""
9424
- "Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
9425
- "album=... &wppa-photo=..."
9426
- msgstr ""
9427
-
9428
- #: wppa-settings-autosave.php:3142
9429
- msgid ""
9430
- "Use this setting only when there are no conflicts with other plugins that "
9431
- "may interprete arguments like &album= etc."
9432
- msgstr ""
9433
-
9434
- #: wppa-settings-autosave.php:3149
9435
- msgid "Enable pretty links"
9436
- msgstr ""
9437
-
9438
- #: wppa-settings-autosave.php:3150
9439
- msgid "Enable the generation and understanding of pretty links."
9440
- msgstr ""
9441
-
9442
- #: wppa-settings-autosave.php:3151
9443
- msgid ""
9444
- "If checked, links to social media and the qr code will have \"/token1/token2/"
9445
- "\" etc in stead of \"&arg1=..&arg2=..\" etc."
9446
- msgstr ""
9447
-
9448
- #: wppa-settings-autosave.php:3152
9449
- msgid ""
9450
- "These types of links will be interpreted and cause a redirection on entering."
9451
- msgstr ""
9452
-
9453
- #: wppa-settings-autosave.php:3153
9454
- msgid ""
9455
- "It is recommended to check this box. It shortens links dramatically and "
9456
- "simplifies qr codes."
9457
- msgstr ""
9458
-
9459
- #: wppa-settings-autosave.php:3154
9460
- msgid ""
9461
- "However, you may encounter conflicts with themes and/or other plugins, so "
9462
- "test it troughly!"
9463
- msgstr ""
9464
-
9465
- #: wppa-settings-autosave.php:3155
9466
- msgid ""
9467
- "Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
9468
- msgstr ""
9469
-
9470
- #: wppa-settings-autosave.php:3162
9471
- #, fuzzy
9472
- msgid "Update addressline"
9473
- msgstr "Erneuere die Plugin Beschreibung"
9474
-
9475
- #: wppa-settings-autosave.php:3163
9476
- msgid "Update the addressline after an ajax action or next slide."
9477
- msgstr ""
9478
-
9479
- #: wppa-settings-autosave.php:3164
9480
- msgid ""
9481
- "If checked, refreshing the page will show the current content and the "
9482
- "browsers back and forth arrows will browse the history on the page."
9483
- msgstr ""
9484
-
9485
- #: wppa-settings-autosave.php:3165
9486
- msgid ""
9487
- "If unchecked, refreshing the page will re-display the content of the "
9488
- "original page."
9489
- msgstr ""
9490
-
9491
- #: wppa-settings-autosave.php:3166
9492
- msgid ""
9493
- "This will only work on browsers that support history.pushState() and "
9494
- "therefor NOT in IE"
9495
- msgstr ""
9496
-
9497
- #: wppa-settings-autosave.php:3167
9498
- msgid "Switching this off will affect the browsers behaviour."
9499
- msgstr ""
9500
-
9501
- #: wppa-settings-autosave.php:3174
9502
- msgid "Render shortcode always"
9503
- msgstr ""
9504
-
9505
- #: wppa-settings-autosave.php:3175
9506
- msgid "This will skip the check on proper initialisation."
9507
- msgstr ""
9508
-
9509
- #: wppa-settings-autosave.php:3176
9510
- msgid ""
9511
- "This setting is required for certain themes like Gantry to prevent the "
9512
- "display of wppa placeholders like [WPPA+ Photo display]."
9513
- msgstr ""
9514
-
9515
- #: wppa-settings-autosave.php:3177
9516
- #, php-format
9517
- msgid ""
9518
- "If this check is needed, you can use shortcodes like [wppa ...] only, not "
9519
- "scripts like %%wppa%%."
9520
- msgstr ""
9521
-
9522
- #: wppa-settings-autosave.php:3184
9523
- msgid "Track viewcounts"
9524
- msgstr ""
9525
-
9526
- #: wppa-settings-autosave.php:3185
9527
- msgid "Register number of views of albums and photos."
9528
- msgstr ""
9529
-
9530
- #: wppa-settings-autosave.php:3193
9531
- #, fuzzy
9532
- msgid "Auto page"
9533
- msgstr "Automatisch Gespeichert"
9534
-
9535
- #: wppa-settings-autosave.php:3194
9536
- msgid "Create a wp page for every fullsize image."
9537
- msgstr ""
9538
-
9539
- #: wppa-settings-autosave.php:3198
9540
- msgid "Please reload this page after changing!"
9541
- msgstr ""
9542
-
9543
- #: wppa-settings-autosave.php:3204
9544
- msgid "Auto page display"
9545
- msgstr ""
9546
-
9547
- #: wppa-settings-autosave.php:3205
9548
- msgid "The type of display on the autopage pages."
9549
- msgstr ""
9550
-
9551
- #: wppa-settings-autosave.php:3208
9552
- #, fuzzy
9553
- msgid "Single photo"
9554
- msgstr "Verwalte Fotos"
9555
-
9556
- #: wppa-settings-autosave.php:3208
9557
- #, fuzzy
9558
- msgid "Media type photo"
9559
- msgstr "Foto bearbeiten"
9560
-
9561
- #: wppa-settings-autosave.php:3208
9562
- msgid "In the style of a slideshow"
9563
- msgstr ""
9564
-
9565
- #: wppa-settings-autosave.php:3215
9566
- msgid "Auto page links"
9567
- msgstr ""
9568
-
9569
- #: wppa-settings-autosave.php:3216
9570
- msgid "The location for the pagelinks."
9571
- msgstr ""
9572
-
9573
- #: wppa-settings-autosave.php:3219
9574
- msgid "At top and bottom"
9575
- msgstr ""
9576
-
9577
- #: wppa-settings-autosave.php:3226
9578
- msgid "Defer javascript"
9579
- msgstr ""
9580
-
9581
- #: wppa-settings-autosave.php:3227
9582
- msgid "Put javascript near the end of the page."
9583
- msgstr ""
9584
-
9585
- #: wppa-settings-autosave.php:3228
9586
- msgid ""
9587
- "If checkd: May fix layout problems and broken slideshows. May speed up or "
9588
- "slow down page appearing."
9589
- msgstr ""
9590
-
9591
- #: wppa-settings-autosave.php:3235
9592
- msgid "Inline styles"
9593
- msgstr ""
9594
-
9595
- #: wppa-settings-autosave.php:3236
9596
- msgid "Set style specifications inline."
9597
- msgstr ""
9598
-
9599
- #: wppa-settings-autosave.php:3237
9600
- msgid "If checked: May fix layout problems, but slows down page appearing."
9601
- msgstr ""
9602
-
9603
- #: wppa-settings-autosave.php:3244
9604
- msgid "Custom style"
9605
- msgstr ""
9606
-
9607
- #: wppa-settings-autosave.php:3245
9608
- msgid "Enter custom style specs here."
9609
- msgstr ""
9610
-
9611
- #: wppa-settings-autosave.php:3253
9612
- msgid "Use customized style file"
9613
- msgstr ""
9614
-
9615
- #: wppa-settings-autosave.php:3254 wppa-settings-autosave.php:3263
9616
- msgid "This feature is highly discouraged."
9617
- msgstr ""
9618
-
9619
- #: wppa-settings-autosave.php:3262
9620
- msgid "Use customized theme file"
9621
- msgstr ""
9622
-
9623
- #: wppa-settings-autosave.php:3271
9624
- msgid "Enable photo html access"
9625
- msgstr ""
9626
-
9627
- #: wppa-settings-autosave.php:3272
9628
- msgid "Creates an .htaccess file in .../uploads/wppa/"
9629
- msgstr ""
9630
-
9631
- #: wppa-settings-autosave.php:3273
9632
- msgid ""
9633
- "If checked: assures http access to your wppa photo files, despite other ."
9634
- "htaccess settings that may protect these files."
9635
- msgstr ""
9636
-
9637
- #: wppa-settings-autosave.php:3280
9638
- msgid "Lazy or HTML comp"
9639
- msgstr ""
9640
-
9641
- #: wppa-settings-autosave.php:3281
9642
- msgid "Tick this box when you use lazy load or html compression."
9643
- msgstr ""
9644
-
9645
- #: wppa-settings-autosave.php:3282
9646
- msgid ""
9647
- "If the filmstrip images do not show up and you have a lazy load or html "
9648
- "optimizing plugin active: Check this box"
9649
- msgstr ""
9650
-
9651
- #: wppa-settings-autosave.php:3289
9652
- #, fuzzy
9653
- msgid "Thumbs first"
9654
- msgstr "Miniaturbild Widget "
9655
-
9656
- #: wppa-settings-autosave.php:3290
9657
- msgid "When displaying album content: thumbnails before subalbums."
9658
- msgstr ""
9659
-
9660
- #: wppa-settings-autosave.php:3298
9661
- msgid "Login links"
9662
- msgstr ""
9663
-
9664
- #: wppa-settings-autosave.php:3299
9665
- #, fuzzy
9666
- msgid "You must login to... links to login page."
9667
- msgstr ""
9668
- "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
9669
- "hinterlassen."
9670
-
9671
- #: wppa-settings-autosave.php:3307
9672
- msgid "Enable Video"
9673
- msgstr ""
9674
-
9675
- #: wppa-settings-autosave.php:3308
9676
- msgid "Enables video support."
9677
- msgstr ""
9678
-
9679
- #: wppa-settings-autosave.php:3317
9680
- msgid "Enable Audio"
9681
- msgstr ""
9682
-
9683
- #: wppa-settings-autosave.php:3318
9684
- msgid "Enables audio support."
9685
- msgstr ""
9686
-
9687
- #: wppa-settings-autosave.php:3326
9688
- msgid "Enable 3D Stereo"
9689
- msgstr ""
9690
-
9691
- #: wppa-settings-autosave.php:3327
9692
- msgid "Enables 3D stereo photo support."
9693
- msgstr ""
9694
-
9695
- #: wppa-settings-autosave.php:3335
9696
- msgid "Relative urls"
9697
- msgstr ""
9698
-
9699
- #: wppa-settings-autosave.php:3336
9700
- msgid "Use relative urls only."
9701
- msgstr ""
9702
-
9703
- #: wppa-settings-autosave.php:3345
9704
- msgid "Slideshow related settings"
9705
- msgstr ""
9706
-
9707
- #: wppa-settings-autosave.php:3347
9708
- msgid "V align"
9709
- msgstr ""
9710
-
9711
- #: wppa-settings-autosave.php:3348
9712
- msgid "Vertical alignment of slideshow images."
9713
- msgstr ""
9714
-
9715
- #: wppa-settings-autosave.php:3349
9716
- msgid "Specify the vertical alignment of slideshow images."
9717
- msgstr ""
9718
-
9719
- #: wppa-settings-autosave.php:3350
9720
- msgid ""
9721
- "If you select --- none ---, the photos will not be centered horizontally "
9722
- "either."
9723
- msgstr ""
9724
-
9725
- #: wppa-settings-autosave.php:3352 wppa-settings-autosave.php:3617
9726
- #: wppa-slideshow-widget.php:214
9727
- #, fuzzy
9728
- msgid "top"
9729
- msgstr "Beenden"
9730
-
9731
- #: wppa-settings-autosave.php:3352 wppa-settings-autosave.php:3366
9732
- #: wppa-settings-autosave.php:3617 wppa-slideshow-widget.php:215
9733
- #: wppa-tinymce-scripts.php:289 wppa-tinymce-shortcodes.php:515
9734
- #: wppa-widget-admin.php:78
9735
- msgid "center"
9736
- msgstr ""
9737
-
9738
- #: wppa-settings-autosave.php:3352 wppa-settings-autosave.php:3617
9739
- #: wppa-slideshow-widget.php:216
9740
- msgid "bottom"
9741
- msgstr ""
9742
-
9743
- #: wppa-settings-autosave.php:3352 wppa-slideshow-widget.php:217
9744
- msgid "fit"
9745
- msgstr ""
9746
-
9747
- #: wppa-settings-autosave.php:3360
9748
- msgid "H align"
9749
- msgstr ""
9750
-
9751
- #: wppa-settings-autosave.php:3361
9752
- msgid "Horizontal alignment of slideshow images."
9753
- msgstr ""
9754
-
9755
- #: wppa-settings-autosave.php:3362
9756
- msgid ""
9757
- "Specify the horizontal alignment of slideshow images. If you specify --- "
9758
- "none --- , no horizontal alignment will take place."
9759
- msgstr ""
9760
-
9761
- #: wppa-settings-autosave.php:3363
9762
- msgid ""
9763
- "This setting is only usefull when the Column Width differs from the Maximum "
9764
- "Width."
9765
- msgstr ""
9766
-
9767
- #: wppa-settings-autosave.php:3364
9768
- msgid "(Settings I-A1 and I-B1)"
9769
- msgstr ""
9770
-
9771
- #: wppa-settings-autosave.php:3374
9772
- #, fuzzy
9773
- msgid "Start slideshow running."
9774
- msgstr "Doppelklick zum Starten/Stoppen der Slideshow"
9775
-
9776
- #: wppa-settings-autosave.php:3375
9777
- msgid ""
9778
- "If you select \"running\", the slideshow will start running immediately, if "
9779
- "you select \"still at first photo\", the first photo will be displayed in "
9780
- "browse mode."
9781
- msgstr ""
9782
-
9783
- #: wppa-settings-autosave.php:3376
9784
- msgid ""
9785
- "If you select \"still at first norated\", the first photo that the visitor "
9786
- "did not gave a rating will be displayed in browse mode."
9787
- msgstr ""
9788
-
9789
- #: wppa-settings-autosave.php:3378
9790
- msgid "running"
9791
- msgstr ""
9792
-
9793
- #: wppa-settings-autosave.php:3379
9794
- msgid "still at first photo"
9795
- msgstr ""
9796
-
9797
- #: wppa-settings-autosave.php:3380
9798
- msgid "still at first norated"
9799
- msgstr ""
9800
-
9801
- #: wppa-settings-autosave.php:3391
9802
- msgid "Start slideonly"
9803
- msgstr ""
9804
-
9805
- #: wppa-settings-autosave.php:3392
9806
- #, fuzzy
9807
- msgid "Start slideonly slideshow running."
9808
- msgstr "Doppelklick zum Starten/Stoppen der Slideshow"
9809
-
9810
- #: wppa-settings-autosave.php:3400 wppa-settings-autosave.php:4215
9811
- msgid "Video autostart"
9812
- msgstr ""
9813
-
9814
- #: wppa-settings-autosave.php:3401
9815
- msgid "Autoplay videos in slideshows."
9816
- msgstr ""
9817
-
9818
- #: wppa-settings-autosave.php:3410 wppa-settings-autosave.php:4224
9819
- msgid "Audio autostart"
9820
- msgstr ""
9821
-
9822
- #: wppa-settings-autosave.php:3411
9823
- msgid "Autoplay audios in slideshows."
9824
- msgstr ""
9825
-
9826
- #: wppa-settings-autosave.php:3419
9827
- msgid "Animation type"
9828
- msgstr ""
9829
-
9830
- #: wppa-settings-autosave.php:3420
9831
- msgid "The way successive slides appear."
9832
- msgstr ""
9833
-
9834
- #: wppa-settings-autosave.php:3421
9835
- msgid ""
9836
- "Select the way the old slide is to be replaced by the new one in the "
9837
- "slideshow/browse fullsize display."
9838
- msgstr ""
9839
-
9840
- #: wppa-settings-autosave.php:3423
9841
- msgid "Fade out and in simultaneous"
9842
- msgstr ""
9843
-
9844
- #: wppa-settings-autosave.php:3424
9845
- msgid "Fade in after fade out"
9846
- msgstr ""
9847
-
9848
- #: wppa-settings-autosave.php:3425
9849
- msgid "Shift adjacent"
9850
- msgstr ""
9851
-
9852
- #: wppa-settings-autosave.php:3426
9853
- msgid "Stack on"
9854
- msgstr ""
9855
-
9856
- #: wppa-settings-autosave.php:3427
9857
- msgid "Stack off"
9858
- msgstr ""
9859
-
9860
- #: wppa-settings-autosave.php:3428
9861
- msgid "Turn over"
9862
- msgstr ""
9863
-
9864
- #: wppa-settings-autosave.php:3442
9865
- msgid "Timeout"
9866
- msgstr ""
9867
-
9868
- #: wppa-settings-autosave.php:3443
9869
- #, fuzzy
9870
- msgid "Slideshow timeout."
9871
- msgstr "Diaschau"
9872
-
9873
- #: wppa-settings-autosave.php:3444
9874
- msgid ""
9875
- "Select the time a single slide will be visible when the slideshow is started."
9876
- msgstr ""
9877
-
9878
- #: wppa-settings-autosave.php:3446
9879
- msgid "very short (1 s.)"
9880
- msgstr ""
9881
-
9882
- #: wppa-settings-autosave.php:3446
9883
- msgid "short (1.5 s.)"
9884
- msgstr ""
9885
-
9886
- #: wppa-settings-autosave.php:3446
9887
- msgid "normal (2.5 s.)"
9888
- msgstr ""
9889
-
9890
- #: wppa-settings-autosave.php:3446
9891
- msgid "long (4 s.)"
9892
- msgstr ""
9893
-
9894
- #: wppa-settings-autosave.php:3446
9895
- msgid "very long (6 s.)"
9896
- msgstr ""
9897
-
9898
- #: wppa-settings-autosave.php:3453
9899
- msgid "Speed"
9900
- msgstr ""
9901
-
9902
- #: wppa-settings-autosave.php:3454
9903
- msgid "Slideshow animation speed."
9904
- msgstr ""
9905
-
9906
- #: wppa-settings-autosave.php:3455
9907
- msgid "Specify the animation speed to be used in slideshows."
9908
- msgstr ""
9909
-
9910
- #: wppa-settings-autosave.php:3456
9911
- msgid "This is the time it takes a photo to fade in or out."
9912
- msgstr ""
9913
-
9914
- #: wppa-settings-autosave.php:3458 wppa-settings-autosave.php:4161
9915
- #: wppa-settings-autosave.php:5904 wppa-settings-autosave.php:6800
9916
- #: wppa-settings-autosave.php:6811 wppa-settings-autosave.php:6973
9917
- #, fuzzy
9918
- msgid "--- off ---"
9919
- msgstr "--- keine ---"
9920
-
9921
- #: wppa-settings-autosave.php:3458
9922
- msgid "very fast (200 ms.)"
9923
- msgstr ""
9924
-
9925
- #: wppa-settings-autosave.php:3458
9926
- msgid "fast (400 ms.)"
9927
- msgstr ""
9928
-
9929
- #: wppa-settings-autosave.php:3458
9930
- msgid "normal (800 ms.)"
9931
- msgstr ""
9932
-
9933
- #: wppa-settings-autosave.php:3458
9934
- msgid "slow (1.2 s.)"
9935
- msgstr ""
9936
-
9937
- #: wppa-settings-autosave.php:3458
9938
- #, fuzzy
9939
- msgid "very slow (2 s.)"
9940
- msgstr "sehr niedrig"
9941
-
9942
- #: wppa-settings-autosave.php:3458
9943
- msgid "extremely slow (4 s.)"
9944
- msgstr ""
9945
-
9946
- #: wppa-settings-autosave.php:3465
9947
- msgid "Slide hover pause"
9948
- msgstr ""
9949
-
9950
- #: wppa-settings-autosave.php:3466
9951
- msgid "Running Slideshow suspends during mouse hover."
9952
- msgstr ""
9953
-
9954
- #: wppa-settings-autosave.php:3474
9955
- #, fuzzy
9956
- msgid "Slideshow wrap around"
9957
- msgstr "Diaschau"
9958
-
9959
- #: wppa-settings-autosave.php:3475
9960
- msgid "The slideshow wraps around the start and end"
9961
- msgstr ""
9962
-
9963
- #: wppa-settings-autosave.php:3483
9964
- msgid "Full desc align"
9965
- msgstr ""
9966
-
9967
- #: wppa-settings-autosave.php:3484
9968
- msgid "The alignment of the descriptions under fullsize images and slideshows."
9969
- msgstr ""
9970
-
9971
- #: wppa-settings-autosave.php:3487 wppa-settings-autosave.php:3605
9972
- #: wppa-settings-autosave.php:3708
9973
- msgid "Left"
9974
- msgstr ""
9975
-
9976
- #: wppa-settings-autosave.php:3487
9977
- msgid "Center"
9978
- msgstr ""
9979
-
9980
- #: wppa-settings-autosave.php:3487 wppa-settings-autosave.php:3605
9981
- #: wppa-settings-autosave.php:3708
9982
- msgid "Right"
9983
- msgstr ""
9984
-
9985
- #: wppa-settings-autosave.php:3494
9986
- msgid "Remove redundant space"
9987
- msgstr ""
9988
-
9989
- #: wppa-settings-autosave.php:3495
9990
- msgid "Removes unwanted &lt;p> and &lt;br> tags in fullsize descriptions."
9991
- msgstr ""
9992
-
9993
- #: wppa-settings-autosave.php:3496
9994
- msgid ""
9995
- "This setting has only effect when Table IX-A7 (foreign shortcodes) is "
9996
- "checked."
9997
- msgstr ""
9998
-
9999
- #: wppa-settings-autosave.php:3503
10000
- #, fuzzy
10001
- msgid "Run wpautop on description"
10002
- msgstr "Eintragen / ändern der Beschreibung des Albums"
10003
-
10004
- #: wppa-settings-autosave.php:3504
10005
- msgid "Adds &lt;p> and &lt;br> tags in fullsize descriptions."
10006
- msgstr ""
10007
-
10008
- #: wppa-settings-autosave.php:3512
10009
- #, fuzzy
10010
- msgid "Auto open comments"
10011
- msgstr "Dein Kommentar:"
10012
-
10013
- #: wppa-settings-autosave.php:3513
10014
- msgid "Automatic opens comments box when slideshow does not run."
10015
- msgstr ""
10016
-
10017
- #: wppa-settings-autosave.php:3521
10018
- #, fuzzy
10019
- msgid "Film hover goto"
10020
- msgstr "Titelfoto ansehen"
10021
-
10022
- #: wppa-settings-autosave.php:3522
10023
- msgid "Go to slide when hovering filmstrip thumbnail."
10024
- msgstr ""
10025
-
10026
- #: wppa-settings-autosave.php:3523
10027
- msgid "Do not use this setting when slides have different aspect ratios!"
10028
- msgstr ""
10029
-
10030
- #: wppa-settings-autosave.php:3530
10031
- #, fuzzy
10032
- msgid "Slide swipe"
10033
- msgstr "Diaschau"
10034
-
10035
- #: wppa-settings-autosave.php:3531
10036
- msgid "Enable touch events swipe left-right on slides on touch screens."
10037
- msgstr ""
10038
-
10039
- #: wppa-settings-autosave.php:3539
10040
- msgid "Slide page Ajax"
10041
- msgstr ""
10042
-
10043
- #: wppa-settings-autosave.php:3540
10044
- msgid "Pagelinks slideshow use Ajax"
10045
- msgstr ""
10046
-
10047
- #: wppa-settings-autosave.php:3541
10048
- msgid "On some systems you need to disable ajax here."
10049
- msgstr ""
10050
-
10051
- #: wppa-settings-autosave.php:3548
10052
- msgid "Thumbnail related settings"
10053
- msgstr ""
10054
-
10055
- #: wppa-settings-autosave.php:3551
10056
- msgid "Photo ordering sequence method."
10057
- msgstr ""
10058
-
10059
- #: wppa-settings-autosave.php:3552
10060
- msgid ""
10061
- "Specify the way the photos should be ordered. This is the default setting. "
10062
- "You can overrule the default sorting order on a per album basis."
10063
- msgstr ""
10064
-
10065
- #: wppa-settings-autosave.php:3589
10066
- #, fuzzy
10067
- msgid "Thumbnail type"
10068
- msgstr "Anzeigen..."
10069
-
10070
- #: wppa-settings-autosave.php:3590
10071
- msgid "The way the thumbnail images are displayed."
10072
- msgstr ""
10073
-
10074
- #: wppa-settings-autosave.php:3591
10075
- msgid ""
10076
- "You may select an altenative display method for thumbnails. Note that some "
10077
- "of the thumbnail settings do not apply to all available display methods."
10078
- msgstr ""
10079
-
10080
- #: wppa-settings-autosave.php:3593
10081
- msgid "like album covers"
10082
- msgstr ""
10083
-
10084
- #: wppa-settings-autosave.php:3593
10085
- msgid "like album covers mcr"
10086
- msgstr ""
10087
-
10088
- #: wppa-settings-autosave.php:3593
10089
- msgid "masonry style columns"
10090
- msgstr ""
10091
-
10092
- #: wppa-settings-autosave.php:3593
10093
- msgid "masonry style rows"
10094
- msgstr ""
10095
-
10096
- #: wppa-settings-autosave.php:3601 wppa-settings-autosave.php:3702
10097
- msgid "Placement"
10098
- msgstr ""
10099
-
10100
- #: wppa-settings-autosave.php:3602
10101
- msgid "Thumbnail image left or right."
10102
- msgstr ""
10103
-
10104
- #: wppa-settings-autosave.php:3603
10105
- msgid "Indicate the placement position of the thumbnailphoto you wish."
10106
- msgstr ""
10107
-
10108
- #: wppa-settings-autosave.php:3612
10109
- msgid "Vertical alignment"
10110
- msgstr ""
10111
-
10112
- #: wppa-settings-autosave.php:3613
10113
- msgid "Vertical alignment of thumbnails."
10114
- msgstr ""
10115
-
10116
- #: wppa-settings-autosave.php:3614
10117
- msgid ""
10118
- "Specify the vertical alignment of thumbnail images. Use this setting when "
10119
- "albums contain both portrait and landscape photos."
10120
- msgstr ""
10121
-
10122
- #: wppa-settings-autosave.php:3615
10123
- msgid ""
10124
- "It is NOT recommended to use the value --- default ---; it will affect the "
10125
- "horizontal alignment also and is meant to be used with custom css."
10126
- msgstr ""
10127
-
10128
- #: wppa-settings-autosave.php:3624
10129
- msgid "Thumb mouseover"
10130
- msgstr ""
10131
-
10132
- #: wppa-settings-autosave.php:3625
10133
- msgid "Apply thumbnail mouseover effect."
10134
- msgstr ""
10135
-
10136
- #: wppa-settings-autosave.php:3626
10137
- msgid "Check this box to use mouseover effect on thumbnail images."
10138
- msgstr ""
10139
-
10140
- #: wppa-settings-autosave.php:3634
10141
- #, fuzzy
10142
- msgid "Thumb opacity"
10143
- msgstr "Miniaturbild Fotos"
10144
-
10145
- #: wppa-settings-autosave.php:3635 wppa-settings-autosave.php:3727
10146
- msgid "Initial opacity value."
10147
- msgstr ""
10148
-
10149
- #: wppa-settings-autosave.php:3636 wppa-settings-autosave.php:3728
10150
- #: wppa-settings-autosave.php:3837
10151
- msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
10152
- msgstr ""
10153
-
10154
- #: wppa-settings-autosave.php:3638 wppa-settings-autosave.php:3730
10155
- #: wppa-settings-autosave.php:3840 wppa-settings-autosave.php:4141
10156
- msgid "%"
10157
- msgstr ""
10158
-
10159
- #: wppa-settings-autosave.php:3643
10160
- msgid "Thumb popup"
10161
- msgstr ""
10162
-
10163
- #: wppa-settings-autosave.php:3644
10164
- msgid "Use popup effect on thumbnail images."
10165
- msgstr ""
10166
-
10167
- #: wppa-settings-autosave.php:3645
10168
- msgid "Thumbnails pop-up to a larger image when hovered."
10169
- msgstr ""
10170
-
10171
- #: wppa-settings-autosave.php:3653
10172
- msgid "Align subtext"
10173
- msgstr ""
10174
-
10175
- #: wppa-settings-autosave.php:3654
10176
- msgid "Set thumbnail subtext on equal height."
10177
- msgstr ""
10178
-
10179
- #: wppa-settings-autosave.php:3662
10180
- msgid "Album and covers related settings"
10181
- msgstr ""
10182
-
10183
- #: wppa-settings-autosave.php:3664
10184
- #, fuzzy
10185
- msgid "Album order"
10186
- msgstr "Album Admin"
10187
-
10188
- #: wppa-settings-autosave.php:3665
10189
- msgid "Album ordering sequence method."
10190
- msgstr ""
10191
-
10192
- #: wppa-settings-autosave.php:3666
10193
- msgid "Specify the way the albums should be ordered."
10194
- msgstr ""
10195
-
10196
- #: wppa-settings-autosave.php:3691
10197
- #, fuzzy
10198
- msgid "Default coverphoto selection"
10199
- msgstr "Standardfotoalbum für"
10200
-
10201
- #: wppa-settings-autosave.php:3692
10202
- msgid "Default select cover photo method."
10203
- msgstr ""
10204
-
10205
- #: wppa-settings-autosave.php:3693
10206
- msgid ""
10207
- "This is the initial value on album creation only. It can be overruled on the "
10208
- "edit album page."
10209
- msgstr ""
10210
-
10211
- #: wppa-settings-autosave.php:3694
10212
- msgid "Random from album"
10213
- msgstr ""
10214
-
10215
- #: wppa-settings-autosave.php:3694
10216
- msgid "Random featured from album"
10217
- msgstr ""
10218
-
10219
- #: wppa-settings-autosave.php:3694
10220
- #, fuzzy
10221
- msgid "Most recently added to album"
10222
- msgstr "--- die zuletzt hinzugefügten Alben ---"
10223
-
10224
- #: wppa-settings-autosave.php:3694
10225
- #, fuzzy
10226
- msgid "Random from album or any sub album"
10227
- msgstr ""
10228
- "Das Foto %s existiert schon in der Album Nummer %s. Aus den Depot entfernt."
10229
-
10230
- #: wppa-settings-autosave.php:3703
10231
- #, fuzzy
10232
- msgid "Cover image position."
10233
- msgstr "Moderiere Fotos"
10234
-
10235
- #: wppa-settings-autosave.php:3704
10236
- msgid ""
10237
- "Enter the position that you want to be used for the default album cover "
10238
- "selected in Table IV-D6."
10239
- msgstr ""
10240
-
10241
- #: wppa-settings-autosave.php:3705
10242
- msgid ""
10243
- "For covertype Image Factory: left will be treated as top and right will be "
10244
- "treted as bottom."
10245
- msgstr ""
10246
-
10247
- #: wppa-settings-autosave.php:3706
10248
- msgid ""
10249
- "For covertype Long Descriptions: top will be treated as left and bottom will "
10250
- "be treted as right."
10251
- msgstr ""
10252
-
10253
- #: wppa-settings-autosave.php:3716
10254
- msgid "Cover mouseover"
10255
- msgstr ""
10256
-
10257
- #: wppa-settings-autosave.php:3717
10258
- msgid "Apply coverphoto mouseover effect."
10259
- msgstr ""
10260
-
10261
- #: wppa-settings-autosave.php:3718
10262
- msgid "Check this box to use mouseover effect on cover images."
10263
- msgstr ""
10264
-
10265
- #: wppa-settings-autosave.php:3726
10266
- msgid "Cover opacity"
10267
- msgstr ""
10268
-
10269
- #: wppa-settings-autosave.php:3735
10270
- msgid "Cover type"
10271
- msgstr ""
10272
-
10273
- #: wppa-settings-autosave.php:3736
10274
- msgid "Select the default cover type."
10275
- msgstr ""
10276
-
10277
- #: wppa-settings-autosave.php:3737
10278
- msgid ""
10279
- "Types with the addition mcr are suitable for Multi Column in a Responsive "
10280
- "theme"
10281
- msgstr ""
10282
-
10283
- #: wppa-settings-autosave.php:3760
10284
- msgid "The umber of coverphotos. Must be > 1 and < 25."
10285
- msgstr ""
10286
-
10287
- #: wppa-settings-autosave.php:3768
10288
- msgid "Rating related settings"
10289
- msgstr ""
10290
-
10291
- #: wppa-settings-autosave.php:3770
10292
- #, fuzzy
10293
- msgid "Rating login"
10294
- msgstr "Bewertung: %s"
10295
-
10296
- #: wppa-settings-autosave.php:3771
10297
- #, fuzzy
10298
- msgid "Users must login to rate photos."
10299
- msgstr "Hochgeladen Fotos benötigen eine Moderation."
10300
-
10301
- #: wppa-settings-autosave.php:3772
10302
- msgid ""
10303
- "If users want to vote for a photo (rating 1..5 stars) the must login first. "
10304
- "The avarage rating will always be displayed as long as the rating system is "
10305
- "enabled."
10306
- msgstr ""
10307
-
10308
- #: wppa-settings-autosave.php:3779
10309
- #, fuzzy
10310
- msgid "Rating change"
10311
- msgstr "Bewertung: %s"
10312
-
10313
- #: wppa-settings-autosave.php:3780 wppa-settings-autosave.php:3781
10314
- msgid "Users may change their ratings."
10315
- msgstr ""
10316
-
10317
- #: wppa-settings-autosave.php:3782 wppa-settings-autosave.php:3819
10318
- #: wppa-settings-autosave.php:3838 wppa-settings-autosave.php:3851
10319
- #: wppa-settings-autosave.php:3861 wppa-settings-autosave.php:3871
10320
- #: wppa-settings-autosave.php:3881 wppa-settings-autosave.php:3890
10321
- msgid ""
10322
- "If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
10323
- msgstr ""
10324
-
10325
- #: wppa-settings-autosave.php:3789
10326
- #, fuzzy
10327
- msgid "Rating multi"
10328
- msgstr "Bewertung: %s"
10329
-
10330
- #: wppa-settings-autosave.php:3790
10331
- msgid "Users may give multiple votes."
10332
- msgstr ""
10333
-
10334
- #: wppa-settings-autosave.php:3791
10335
- msgid ""
10336
- "Users may give multiple votes. (This has no effect when users may change "
10337
- "their votes.)"
10338
- msgstr ""
10339
-
10340
- #: wppa-settings-autosave.php:3798
10341
- #, fuzzy
10342
- msgid "Rate own photos"
10343
- msgstr "Foto:"
10344
-
10345
- #: wppa-settings-autosave.php:3799
10346
- msgid "It is allowed to rate photos by the uploader himself."
10347
- msgstr ""
10348
-
10349
- #: wppa-settings-autosave.php:3807
10350
- msgid "Rating requires comment"
10351
- msgstr ""
10352
-
10353
- #: wppa-settings-autosave.php:3808
10354
- #, fuzzy
10355
- msgid "Users must clarify their vote in a comment."
10356
- msgstr ""
10357
- "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
10358
- "hinterlassen."
10359
-
10360
- #: wppa-settings-autosave.php:3817
10361
- msgid "This value counts dislike rating."
10362
- msgstr ""
10363
-
10364
- #: wppa-settings-autosave.php:3818
10365
- msgid ""
10366
- "This value will be used for a dislike rating on calculation of avarage "
10367
- "ratings."
10368
- msgstr ""
10369
-
10370
- #: wppa-settings-autosave.php:3821
10371
- msgid "points"
10372
- msgstr ""
10373
-
10374
- #: wppa-settings-autosave.php:3826
10375
- msgid "Next after vote"
10376
- msgstr ""
10377
-
10378
- #: wppa-settings-autosave.php:3827
10379
- msgid "Goto next slide after voting"
10380
- msgstr ""
10381
-
10382
- #: wppa-settings-autosave.php:3828
10383
- msgid ""
10384
- "If checked, the visitor goes straight to the slide following the slide he "
10385
- "voted. This will speed up mass voting."
10386
- msgstr ""
10387
-
10388
- #: wppa-settings-autosave.php:3835
10389
- msgid "Star off opacity"
10390
- msgstr ""
10391
-
10392
- #: wppa-settings-autosave.php:3836
10393
- msgid "Rating star off state opacity value."
10394
- msgstr ""
10395
-
10396
- #: wppa-settings-autosave.php:3846
10397
- msgid "Notify admin every x times."
10398
- msgstr ""
10399
-
10400
- #: wppa-settings-autosave.php:3847
10401
- msgid ""
10402
- "If this number is positive, there will be a thumb down icon in the rating "
10403
- "bar."
10404
- msgstr ""
10405
-
10406
- #: wppa-settings-autosave.php:3848
10407
- msgid ""
10408
- "Cicking the icon indicates a user wants to report that an image is "
10409
- "inappropiate."
10410
- msgstr ""
10411
-
10412
- #: wppa-settings-autosave.php:3849
10413
- msgid "Admin will be notified by email after every x reports."
10414
- msgstr ""
10415
-
10416
- #: wppa-settings-autosave.php:3850 wppa-settings-autosave.php:3860
10417
- #: wppa-settings-autosave.php:3870
10418
- msgid "A value of 0 disables this feature."
10419
- msgstr ""
10420
-
10421
- #: wppa-settings-autosave.php:3853 wppa-settings-autosave.php:3863
10422
- #: wppa-settings-autosave.php:3873
10423
- msgid "reports"
10424
- msgstr ""
10425
-
10426
- #: wppa-settings-autosave.php:3858
10427
- msgid "Pending after"
10428
- msgstr ""
10429
-
10430
- #: wppa-settings-autosave.php:3859
10431
- msgid "Set status to pending after xx dislike votes."
10432
- msgstr ""
10433
-
10434
- #: wppa-settings-autosave.php:3868
10435
- #, fuzzy
10436
- msgid "Delete after"
10437
- msgstr "Das Album konnte nicht erstellt werden."
10438
-
10439
- #: wppa-settings-autosave.php:3869
10440
- msgid "Deete photo after xx dislike votes."
10441
- msgstr ""
10442
-
10443
- #: wppa-settings-autosave.php:3878
10444
- #, fuzzy
10445
- msgid "Show dislike count"
10446
- msgstr "Zeigt die Anzahl der Abneigungen in der Bewertungs Zeile."
10447
-
10448
- #: wppa-settings-autosave.php:3879
10449
- msgid "Show the number of dislikes in the rating bar."
10450
- msgstr ""
10451
-
10452
- #: wppa-settings-autosave.php:3880
10453
- msgid "Displayes the total number of dislike votes for the current photo."
10454
- msgstr ""
10455
-
10456
- #: wppa-settings-autosave.php:3888
10457
- msgid "Rating display type"
10458
- msgstr ""
10459
-
10460
- #: wppa-settings-autosave.php:3889
10461
- msgid "Specify the type of the rating display."
10462
- msgstr ""
10463
-
10464
- #: wppa-settings-autosave.php:3892
10465
- msgid "Graphic"
10466
- msgstr ""
10467
-
10468
- #: wppa-settings-autosave.php:3892
10469
- msgid "Numeric"
10470
- msgstr ""
10471
-
10472
- #: wppa-settings-autosave.php:3899
10473
- #, fuzzy
10474
- msgid "Show average rating"
10475
- msgstr "Durchschnittliche Bewertung"
10476
-
10477
- #: wppa-settings-autosave.php:3900
10478
- msgid "Display the avarage rating and/or vote count on the rating bar"
10479
- msgstr ""
10480
-
10481
- #: wppa-settings-autosave.php:3901
10482
- msgid ""
10483
- "If checked, the average rating as well as the current users rating is "
10484
- "displayed in max 5 or 10 stars."
10485
- msgstr ""
10486
-
10487
- #: wppa-settings-autosave.php:3902
10488
- msgid "If unchecked, only the current users rating is displayed (if any)."
10489
- msgstr ""
10490
-
10491
- #: wppa-settings-autosave.php:3903
10492
- msgid ""
10493
- "If \"One button vote\" is selected in Table I-E1, this box checked will "
10494
- "display the vote count."
10495
- msgstr ""
10496
-
10497
- #: wppa-settings-autosave.php:3910
10498
- msgid "Single vote button text"
10499
- msgstr ""
10500
-
10501
- #: wppa-settings-autosave.php:3911
10502
- msgid "The text on the voting button."
10503
- msgstr ""
10504
-
10505
- #: wppa-settings-autosave.php:3912 wppa-settings-autosave.php:3921
10506
- msgid "This text may contain qTranslate compatible language tags."
10507
- msgstr ""
10508
-
10509
- #: wppa-settings-autosave.php:3919
10510
- msgid "Single vote button text voted"
10511
- msgstr ""
10512
-
10513
- #: wppa-settings-autosave.php:3920
10514
- msgid "The text on the voting button when voted."
10515
- msgstr ""
10516
-
10517
- #: wppa-settings-autosave.php:3928
10518
- #, fuzzy
10519
- msgid "Single vote button thumbnail"
10520
- msgstr "Anzeigen..."
10521
-
10522
- #: wppa-settings-autosave.php:3929
10523
- msgid "Display single vote button below thumbnails."
10524
- msgstr ""
10525
-
10526
- #: wppa-settings-autosave.php:3930
10527
- msgid ""
10528
- "This works only in single vote mode: Table I-E1 set to \"one button vote\""
10529
- msgstr ""
10530
-
10531
- #: wppa-settings-autosave.php:3937
10532
- msgid "Medal bronze when"
10533
- msgstr ""
10534
-
10535
- #: wppa-settings-autosave.php:3938 wppa-settings-autosave.php:3956
10536
- msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
10537
- msgstr ""
10538
-
10539
- #: wppa-settings-autosave.php:3939 wppa-settings-autosave.php:3957
10540
- msgid ""
10541
- "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10542
- "bronze medal. A value of 0 indicates that you do not want this feature."
10543
- msgstr ""
10544
-
10545
- #: wppa-settings-autosave.php:3941 wppa-settings-autosave.php:3950
10546
- #: wppa-settings-autosave.php:3959
10547
- msgid "Topscores"
10548
- msgstr ""
10549
-
10550
- #: wppa-settings-autosave.php:3946
10551
- msgid "Medal silver when"
10552
- msgstr ""
10553
-
10554
- #: wppa-settings-autosave.php:3947
10555
- msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
10556
- msgstr ""
10557
-
10558
- #: wppa-settings-autosave.php:3948
10559
- msgid ""
10560
- "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10561
- "silver medal. A value of 0 indicates that you do not want this feature."
10562
- msgstr ""
10563
-
10564
- #: wppa-settings-autosave.php:3955
10565
- msgid "Medal gold when"
10566
- msgstr ""
10567
-
10568
- #: wppa-settings-autosave.php:3964
10569
- msgid "Medal tag color"
10570
- msgstr ""
10571
-
10572
- #: wppa-settings-autosave.php:3965
10573
- msgid "The color of the tag on the medal."
10574
- msgstr ""
10575
-
10576
- #: wppa-settings-autosave.php:3968 wppa-settings-autosave.php:7043
10577
- msgid "Red"
10578
- msgstr ""
10579
-
10580
- #: wppa-settings-autosave.php:3968 wppa-settings-autosave.php:7046
10581
- msgid "Green"
10582
- msgstr ""
10583
-
10584
- #: wppa-settings-autosave.php:3968 wppa-settings-autosave.php:7047
10585
- msgid "Blue"
10586
- msgstr ""
10587
-
10588
- #: wppa-settings-autosave.php:3975
10589
- #, fuzzy
10590
- msgid "Medal position"
10591
- msgstr "Position/Ort:"
10592
-
10593
- #: wppa-settings-autosave.php:3976
10594
- msgid "The position of the medal on the image."
10595
- msgstr ""
10596
-
10597
- #: wppa-settings-autosave.php:3979
10598
- msgid "Top left"
10599
- msgstr ""
10600
-
10601
- #: wppa-settings-autosave.php:3979
10602
- msgid "Top right"
10603
- msgstr ""
10604
-
10605
- #: wppa-settings-autosave.php:3979
10606
- msgid "Bottom left"
10607
- msgstr ""
10608
-
10609
- #: wppa-settings-autosave.php:3979
10610
- msgid "Bottom right"
10611
- msgstr ""
10612
-
10613
- #: wppa-settings-autosave.php:3986
10614
- msgid "Top criterium"
10615
- msgstr ""
10616
-
10617
- #: wppa-settings-autosave.php:3987
10618
- msgid "The top sort item used for topten results from shortcodes."
10619
- msgstr ""
10620
-
10621
- #: wppa-settings-autosave.php:3990
10622
- #, fuzzy
10623
- msgid "Mean raiting"
10624
- msgstr "Der Raum zwischen avg und meine Bewertungssterne"
10625
-
10626
- #: wppa-settings-autosave.php:3990
10627
- #, fuzzy
10628
- msgid "Rating count"
10629
- msgstr "Bewertung: %s"
10630
-
10631
- #: wppa-settings-autosave.php:3990
10632
- #, fuzzy
10633
- msgid "Viewcount"
10634
- msgstr "Ansehen"
10635
-
10636
- #: wppa-settings-autosave.php:3997
10637
- #, fuzzy
10638
- msgid "Comments related settings"
10639
- msgstr "Kommentar bearbeitet"
10640
-
10641
- #: wppa-settings-autosave.php:3999
10642
- #, fuzzy
10643
- msgid "Commenting login"
10644
- msgstr "%d Kommentare"
10645
-
10646
- #: wppa-settings-autosave.php:4000
10647
- msgid "Users must be logged in to comment on photos."
10648
- msgstr ""
10649
-
10650
- #: wppa-settings-autosave.php:4001
10651
- msgid ""
10652
- "Check this box if you want users to be logged in to be able to enter "
10653
- "comments on individual photos."
10654
- msgstr ""
10655
-
10656
- #: wppa-settings-autosave.php:4008
10657
- #, fuzzy
10658
- msgid "Comments view login"
10659
- msgstr "Kommentar bearbeitet"
10660
-
10661
- #: wppa-settings-autosave.php:4009
10662
- #, fuzzy
10663
- msgid "Users must be logged in to see comments on photos."
10664
- msgstr ""
10665
- "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
10666
- "hinterlassen."
10667
-
10668
- #: wppa-settings-autosave.php:4010
10669
- msgid ""
10670
- "Check this box if you want users to be logged in to be able to see existing "
10671
- "comments on individual photos."
10672
- msgstr ""
10673
-
10674
- #: wppa-settings-autosave.php:4017
10675
- #, fuzzy
10676
- msgid "Last comment first"
10677
- msgstr "%d Kommentare"
10678
-
10679
- #: wppa-settings-autosave.php:4018
10680
- msgid "Display the newest comment on top."
10681
- msgstr ""
10682
-
10683
- #: wppa-settings-autosave.php:4019
10684
- msgid "If checked: Display the newest comment on top."
10685
- msgstr ""
10686
-
10687
- #: wppa-settings-autosave.php:4020
10688
- msgid "If unchecked, the comments are listed in the ordere they were entered."
10689
- msgstr ""
10690
-
10691
- #: wppa-settings-autosave.php:4027
10692
- #, fuzzy
10693
- msgid "Comment moderation"
10694
- msgstr "%d Kommentare"
10695
-
10696
- #: wppa-settings-autosave.php:4028
10697
- msgid "Comments from what users need approval."
10698
- msgstr ""
10699
-
10700
- #: wppa-settings-autosave.php:4029
10701
- msgid "Select the desired users of which the comments need approval."
10702
- msgstr ""
10703
-
10704
- #: wppa-settings-autosave.php:4031 wppa-settings-autosave.php:5890
10705
- #, fuzzy
10706
- msgid "All users"
10707
- msgstr "- alle Alben -"
10708
-
10709
- #: wppa-settings-autosave.php:4031 wppa-settings-autosave.php:5890
10710
- msgid "Logged out users"
10711
- msgstr ""
10712
-
10713
- #: wppa-settings-autosave.php:4031 wppa-settings-autosave.php:5890
10714
- msgid "No users"
10715
- msgstr ""
10716
-
10717
- #: wppa-settings-autosave.php:4038
10718
- #, fuzzy
10719
- msgid "Comment email required"
10720
- msgstr "Kommentar bearbeitet"
10721
-
10722
- #: wppa-settings-autosave.php:4039
10723
- msgid "Commenting users must enter their email addresses."
10724
- msgstr ""
10725
-
10726
- #: wppa-settings-autosave.php:4047
10727
- #, fuzzy
10728
- msgid "Comment notify"
10729
- msgstr "Kommentar Widget Foto-Link."
10730
-
10731
- #: wppa-settings-autosave.php:4048
10732
- msgid "Select who must receive an e-mail notification of a new comment."
10733
- msgstr ""
10734
-
10735
- #: wppa-settings-autosave.php:4051
10736
- #, fuzzy
10737
- msgid "--- None ---"
10738
- msgstr "--- keine ---"
10739
-
10740
- #: wppa-settings-autosave.php:4052
10741
- #, fuzzy
10742
- msgid "--- Admin ---"
10743
- msgstr "--- keine ---"
10744
-
10745
- #: wppa-settings-autosave.php:4053
10746
- #, fuzzy
10747
- msgid "--- Album owner ---"
10748
- msgstr "--- keine ---"
10749
-
10750
- #: wppa-settings-autosave.php:4054
10751
- #, fuzzy
10752
- msgid "--- Admin & Owner ---"
10753
- msgstr "--- keine ---"
10754
-
10755
- #: wppa-settings-autosave.php:4055
10756
- #, fuzzy
10757
- msgid "--- Uploader ---"
10758
- msgstr "--- keine ---"
10759
-
10760
- #: wppa-settings-autosave.php:4056
10761
- #, fuzzy
10762
- msgid "--- Up & admin ---"
10763
- msgstr "--- alle---"
10764
-
10765
- #: wppa-settings-autosave.php:4057
10766
- #, fuzzy
10767
- msgid "--- Up & Owner ---"
10768
- msgstr "--- keine ---"
10769
-
10770
- #: wppa-settings-autosave.php:4080
10771
- #, fuzzy
10772
- msgid "Comment notify previous"
10773
- msgstr "Kommentar Widget Foto-Link."
10774
-
10775
- #: wppa-settings-autosave.php:4081
10776
- #, fuzzy
10777
- msgid "Notify users who has commented this photo earlier."
10778
- msgstr ""
10779
- "Gebe die Tags ein, die den neuen Fotos in diesem Album zugeordnet werden."
10780
-
10781
- #: wppa-settings-autosave.php:4089
10782
- #, fuzzy
10783
- msgid "Comment ntfy added"
10784
- msgstr "Kommentar hinzugefügt"
10785
-
10786
- #: wppa-settings-autosave.php:4090
10787
- msgid "Show \"Comment added\" after successfull adding a comment."
10788
- msgstr ""
10789
-
10790
- #: wppa-settings-autosave.php:4098
10791
- msgid "ComTen alt display"
10792
- msgstr ""
10793
-
10794
- #: wppa-settings-autosave.php:4099
10795
- msgid "Display comments at comten thumbnails."
10796
- msgstr ""
10797
-
10798
- #: wppa-settings-autosave.php:4107
10799
- #, fuzzy
10800
- msgid "Comten Thumbnail width"
10801
- msgstr "Anzeigen..."
10802
-
10803
- #: wppa-settings-autosave.php:4108
10804
- msgid "The width of the thumbnail in the alt comment display."
10805
- msgstr ""
10806
-
10807
- #: wppa-settings-autosave.php:4111
10808
- msgid "Pixels"
10809
- msgstr ""
10810
-
10811
- #: wppa-settings-autosave.php:4116
10812
- msgid "Show smiley picker"
10813
- msgstr ""
10814
-
10815
- #: wppa-settings-autosave.php:4117
10816
- msgid "Display a clickable row of smileys."
10817
- msgstr ""
10818
-
10819
- #: wppa-settings-autosave.php:4125
10820
- #, fuzzy
10821
- msgid "Show commenter email"
10822
- msgstr "Dein Kommentar:"
10823
-
10824
- #: wppa-settings-autosave.php:4126
10825
- msgid "Show the commenter's email in the notify emails."
10826
- msgstr ""
10827
-
10828
- #: wppa-settings-autosave.php:4127
10829
- msgid "Shows the email address of the commenter in all notify emails."
10830
- msgstr ""
10831
-
10832
- #: wppa-settings-autosave.php:4128
10833
- msgid ""
10834
- "If switched off, admin will still receive the senders email in the "
10835
- "notification mail"
10836
- msgstr ""
10837
-
10838
- #: wppa-settings-autosave.php:4138
10839
- msgid "The opacity of the lightbox overlay background."
10840
- msgstr ""
10841
-
10842
- #: wppa-settings-autosave.php:4146
10843
- msgid "Click on background"
10844
- msgstr ""
10845
-
10846
- #: wppa-settings-autosave.php:4147
10847
- msgid "Select the action to be taken on click on background."
10848
- msgstr ""
10849
-
10850
- #: wppa-settings-autosave.php:4150
10851
- msgid "Nothing"
10852
- msgstr ""
10853
-
10854
- #: wppa-settings-autosave.php:4150
10855
- msgid "Exit (close)"
10856
- msgstr ""
10857
-
10858
- #: wppa-settings-autosave.php:4150
10859
- msgid "Browse (left/right)"
10860
- msgstr ""
10861
-
10862
- #: wppa-settings-autosave.php:4157
10863
- msgid "Overlay animation speed"
10864
- msgstr ""
10865
-
10866
- #: wppa-settings-autosave.php:4158
10867
- msgid "The fade-in time of the lightbox images"
10868
- msgstr ""
10869
-
10870
- #: wppa-settings-autosave.php:4161
10871
- msgid "very fast (100 ms.)"
10872
- msgstr ""
10873
-
10874
- #: wppa-settings-autosave.php:4161
10875
- msgid "fast (200 ms.)"
10876
- msgstr ""
10877
-
10878
- #: wppa-settings-autosave.php:4161
10879
- msgid "normal (300 ms.)"
10880
- msgstr ""
10881
-
10882
- #: wppa-settings-autosave.php:4161
10883
- msgid "slow (500 ms.)"
10884
- msgstr ""
10885
-
10886
- #: wppa-settings-autosave.php:4161
10887
- #, fuzzy
10888
- msgid "very slow (1 s.)"
10889
- msgstr "sehr niedrig"
10890
-
10891
- #: wppa-settings-autosave.php:4161
10892
- msgid "extremely slow (2 s.)"
10893
- msgstr ""
10894
-
10895
- #: wppa-settings-autosave.php:4168
10896
- msgid "Overlay slideshow speed"
10897
- msgstr ""
10898
-
10899
- #: wppa-settings-autosave.php:4169
10900
- msgid "The time the lightbox images stay"
10901
- msgstr ""
10902
-
10903
- #: wppa-settings-autosave.php:4172
10904
- msgid "fast (3 s.)"
10905
- msgstr ""
10906
-
10907
- #: wppa-settings-autosave.php:4172
10908
- msgid "normal (5 s.)"
10909
- msgstr ""
10910
-
10911
- #: wppa-settings-autosave.php:4172
10912
- msgid "slow (8 s.)"
10913
- msgstr ""
10914
-
10915
- #: wppa-settings-autosave.php:4172
10916
- #, fuzzy
10917
- msgid "very slow (13 s.)"
10918
- msgstr "sehr niedrig"
10919
-
10920
- #: wppa-settings-autosave.php:4172
10921
- msgid "extremely slow (20 s.)"
10922
- msgstr ""
10923
-
10924
- #: wppa-settings-autosave.php:4179
10925
- msgid "Overlay at top in Chrome"
10926
- msgstr ""
10927
-
10928
- #: wppa-settings-autosave.php:4180
10929
- msgid ""
10930
- "Place the overlay (lightbox) image at the top of the page in Chrome browsers."
10931
- msgstr ""
10932
-
10933
- #: wppa-settings-autosave.php:4181
10934
- msgid "This is required for certain mobile devices."
10935
- msgstr ""
10936
-
10937
- #: wppa-settings-autosave.php:4188
10938
- msgid "WPPA+ Lightbox global"
10939
- msgstr ""
10940
-
10941
- #: wppa-settings-autosave.php:4189
10942
- msgid "Use the wppa+ lightbox also for non-wppa images."
10943
- msgstr ""
10944
-
10945
- #: wppa-settings-autosave.php:4197
10946
- msgid "WPPA+ Lightbox global is a set"
10947
- msgstr ""
10948
-
10949
- #: wppa-settings-autosave.php:4198
10950
- msgid "Treat the other images as a set."
10951
- msgstr ""
10952
-
10953
- #: wppa-settings-autosave.php:4199
10954
- msgid ""
10955
- "If checked, you can scroll through the images in the lightbox view. Requires "
10956
- "item 5 to be checked."
10957
- msgstr ""
10958
-
10959
- #: wppa-settings-autosave.php:4206
10960
- msgid "Use hires files"
10961
- msgstr ""
10962
-
10963
- #: wppa-settings-autosave.php:4207
10964
- msgid "Use the highest resolution available for lightbox."
10965
- msgstr ""
10966
-
10967
- #: wppa-settings-autosave.php:4208
10968
- msgid "Ticking this box is recommended for lightbox fullscreen modes."
10969
- msgstr ""
10970
-
10971
- #: wppa-settings-autosave.php:4216
10972
- msgid "Videos on lightbox start automaticly."
10973
- msgstr ""
10974
-
10975
- #: wppa-settings-autosave.php:4225
10976
- msgid "Audio on lightbox start automaticly."
10977
- msgstr ""
10978
-
10979
- #: wppa-settings-autosave.php:4250
10980
- msgid "Table V:"
10981
- msgstr ""
10982
-
10983
- #: wppa-settings-autosave.php:4250
10984
- #, fuzzy
10985
- msgid "Fonts:"
10986
- msgstr "Kommentare"
10987
-
10988
- #: wppa-settings-autosave.php:4251
10989
- msgid "This table describes the Fonts used for the wppa+ elements."
10990
- msgstr ""
10991
-
10992
- #: wppa-settings-autosave.php:4261 wppa-settings-autosave.php:4437
10993
- msgid "Font family"
10994
- msgstr ""
10995
-
10996
- #: wppa-settings-autosave.php:4262 wppa-settings-autosave.php:4438
10997
- msgid "Font size"
10998
- msgstr ""
10999
-
11000
- #: wppa-settings-autosave.php:4263 wppa-settings-autosave.php:4439
11001
- msgid "Font color"
11002
- msgstr ""
11003
-
11004
- #: wppa-settings-autosave.php:4264 wppa-settings-autosave.php:4440
11005
- msgid "Font weight"
11006
- msgstr ""
11007
-
11008
- #: wppa-settings-autosave.php:4274
11009
- msgid "normal"
11010
- msgstr ""
11011
-
11012
- #: wppa-settings-autosave.php:4274
11013
- msgid "bold"
11014
- msgstr ""
11015
-
11016
- #: wppa-settings-autosave.php:4274
11017
- msgid "bolder"
11018
- msgstr ""
11019
-
11020
- #: wppa-settings-autosave.php:4274
11021
- msgid "lighter"
11022
- msgstr ""
11023
-
11024
- #: wppa-settings-autosave.php:4277
11025
- #, fuzzy
11026
- msgid "Album titles"
11027
- msgstr "Alben:"
11028
-
11029
- #: wppa-settings-autosave.php:4278
11030
- msgid "Font used for Album titles."
11031
- msgstr ""
11032
-
11033
- #: wppa-settings-autosave.php:4279
11034
- msgid "Enter font name, size, color and weight for album cover titles."
11035
- msgstr ""
11036
-
11037
- #: wppa-settings-autosave.php:4294
11038
- #, fuzzy
11039
- msgid "Slideshow desc"
11040
- msgstr "Diaschau"
11041
-
11042
- #: wppa-settings-autosave.php:4295
11043
- #, fuzzy
11044
- msgid "Font for slideshow photo descriptions."
11045
- msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
11046
-
11047
- #: wppa-settings-autosave.php:4296
11048
- msgid ""
11049
- "Enter font name, size, color and weight for slideshow photo descriptions."
11050
- msgstr ""
11051
-
11052
- #: wppa-settings-autosave.php:4311
11053
- #, fuzzy
11054
- msgid "Slideshow name"
11055
- msgstr "Diaschau"
11056
-
11057
- #: wppa-settings-autosave.php:4312
11058
- #, fuzzy
11059
- msgid "Font for slideshow photo names."
11060
- msgstr "Bitte gibt den Fotonamen an."
11061
-
11062
- #: wppa-settings-autosave.php:4313
11063
- msgid "Enter font name, size, color and weight for slideshow photo names."
11064
- msgstr ""
11065
-
11066
- #: wppa-settings-autosave.php:4328
11067
- msgid "Navigations"
11068
- msgstr ""
11069
-
11070
- #: wppa-settings-autosave.php:4329
11071
- msgid "Font for navigations."
11072
- msgstr ""
11073
-
11074
- #: wppa-settings-autosave.php:4330
11075
- msgid "Enter font name, size, color and weight for navigation items."
11076
- msgstr ""
11077
-
11078
- #: wppa-settings-autosave.php:4346
11079
- msgid "Font for text under thumbnails."
11080
- msgstr ""
11081
-
11082
- #: wppa-settings-autosave.php:4347
11083
- msgid ""
11084
- "Enter font name, size, color and weight for text under thumbnail images."
11085
- msgstr ""
11086
-
11087
- #: wppa-settings-autosave.php:4363
11088
- msgid "General font in wppa boxes."
11089
- msgstr ""
11090
-
11091
- #: wppa-settings-autosave.php:4364
11092
- msgid "Enter font name, size, color and weight for all other items."
11093
- msgstr ""
11094
-
11095
- #: wppa-settings-autosave.php:4380
11096
- msgid "Font in wppa number bars."
11097
- msgstr ""
11098
-
11099
- #: wppa-settings-autosave.php:4381 wppa-settings-autosave.php:4398
11100
- msgid "Enter font name, size, color and weight for numberbar navigation."
11101
- msgstr ""
11102
-
11103
- #: wppa-settings-autosave.php:4396
11104
- msgid "Numbar Active"
11105
- msgstr ""
11106
-
11107
- #: wppa-settings-autosave.php:4397
11108
- msgid "Font in wppa number bars, active item."
11109
- msgstr ""
11110
-
11111
- #: wppa-settings-autosave.php:4414
11112
- msgid "Font in wppa lightbox overlays."
11113
- msgstr ""
11114
-
11115
- #: wppa-settings-autosave.php:4415
11116
- msgid "Enter font name, size, color and weight for wppa lightbox overlays."
11117
- msgstr ""
11118
-
11119
- #: wppa-settings-autosave.php:4450
11120
- msgid "Table VI:"
11121
- msgstr ""
11122
-
11123
- #: wppa-settings-autosave.php:4450
11124
- #, fuzzy
11125
- msgid "Links:"
11126
- msgstr "Verweis zu"
11127
-
11128
- #: wppa-settings-autosave.php:4451
11129
- msgid "This table defines the link types and pages."
11130
- msgstr ""
11131
-
11132
- #: wppa-settings-autosave.php:4462 wppa-settings-autosave.php:5489
11133
- #, fuzzy
11134
- msgid "Link page"
11135
- msgstr "Verweis zu"
11136
-
11137
- #: wppa-settings-autosave.php:4464 wppa-settings-autosave.php:5491
11138
- msgid "Photo specific link overrules"
11139
- msgstr ""
11140
-
11141
- #: wppa-settings-autosave.php:4464 wppa-settings-autosave.php:5491
11142
- msgid "PSO"
11143
- msgstr ""
11144
-
11145
- #: wppa-settings-autosave.php:4514
11146
- #, fuzzy
11147
- msgid "--- The same post or page ---"
11148
- msgstr "--- separat ---"
11149
-
11150
- #: wppa-settings-autosave.php:4545
11151
- msgid "--- No page to link to (yet) ---"
11152
- msgstr ""
11153
-
11154
- #: wppa-settings-autosave.php:4550
11155
- #, fuzzy
11156
- msgid "--- Will be auto created ---"
11157
- msgstr "--- separat ---"
11158
-
11159
- #: wppa-settings-autosave.php:4552
11160
- msgid "Links from images in WPPA+ Widgets"
11161
- msgstr ""
11162
-
11163
- #: wppa-settings-autosave.php:4554
11164
- msgid "PotdWidget"
11165
- msgstr ""
11166
-
11167
- #: wppa-settings-autosave.php:4555
11168
- msgid "Photo Of The Day widget link."
11169
- msgstr ""
11170
-
11171
- #: wppa-settings-autosave.php:4556
11172
- msgid "Select the type of link the photo of the day points to."
11173
- msgstr ""
11174
-
11175
- #: wppa-settings-autosave.php:4557
11176
- msgid ""
11177
- "If you select 'defined on widget admin page' you can manually enter a link "
11178
- "and title on the Photo of the day Widget Admin page."
11179
- msgstr ""
11180
-
11181
- #: wppa-settings-autosave.php:4566 wppa-settings-autosave.php:4609
11182
- #: wppa-settings-autosave.php:4687 wppa-settings-autosave.php:4730
11183
- #: wppa-settings-autosave.php:4778 wppa-settings-autosave.php:4825
11184
- #: wppa-settings-autosave.php:4872 wppa-settings-autosave.php:4924
11185
- #: wppa-settings-autosave.php:4962 wppa-settings-autosave.php:5012
11186
- #: wppa-settings-autosave.php:5054 wppa-settings-autosave.php:5094
11187
- #: wppa-settings-autosave.php:8971
11188
- msgid "no link at all."
11189
- msgstr ""
11190
-
11191
- #: wppa-settings-autosave.php:4567 wppa-settings-autosave.php:4610
11192
- #: wppa-settings-autosave.php:4688 wppa-settings-autosave.php:4731
11193
- #: wppa-settings-autosave.php:4779 wppa-settings-autosave.php:4826
11194
- #: wppa-settings-autosave.php:4873 wppa-settings-autosave.php:4925
11195
- #: wppa-settings-autosave.php:4963 wppa-settings-autosave.php:5013
11196
- #: wppa-settings-autosave.php:5055 wppa-settings-autosave.php:5095
11197
- #: wppa-settings-autosave.php:8972
11198
- msgid "the plain photo (file)."
11199
- msgstr ""
11200
-
11201
- #: wppa-settings-autosave.php:4568 wppa-settings-autosave.php:8978
11202
- msgid "defined on widget admin page."
11203
- msgstr ""
11204
-
11205
- #: wppa-settings-autosave.php:4569 wppa-settings-autosave.php:4612
11206
- #: wppa-settings-autosave.php:5014 wppa-settings-autosave.php:5056
11207
- #: wppa-settings-autosave.php:8976
11208
- msgid "the content of the album."
11209
- msgstr ""
11210
-
11211
- #: wppa-settings-autosave.php:4570 wppa-settings-autosave.php:4613
11212
- #: wppa-settings-autosave.php:4689 wppa-settings-autosave.php:4734
11213
- #: wppa-settings-autosave.php:4782 wppa-settings-autosave.php:4829
11214
- #: wppa-settings-autosave.php:4876 wppa-settings-autosave.php:4964
11215
- #: wppa-settings-autosave.php:5015 wppa-settings-autosave.php:5057
11216
- #: wppa-settings-autosave.php:8973
11217
- msgid "the full size photo in a slideshow."
11218
- msgstr ""
11219
-
11220
- #: wppa-settings-autosave.php:4571 wppa-settings-autosave.php:4614
11221
- #: wppa-settings-autosave.php:4690 wppa-settings-autosave.php:4735
11222
- #: wppa-settings-autosave.php:4783 wppa-settings-autosave.php:4830
11223
- #: wppa-settings-autosave.php:4877 wppa-settings-autosave.php:4965
11224
- #: wppa-settings-autosave.php:5016 wppa-settings-autosave.php:5058
11225
- #: wppa-settings-autosave.php:5096 wppa-settings-autosave.php:8974
11226
- msgid "the fullsize photo on its own."
11227
- msgstr ""
11228
-
11229
- #: wppa-settings-autosave.php:4572 wppa-settings-autosave.php:4615
11230
- #: wppa-settings-autosave.php:4654 wppa-settings-autosave.php:4693
11231
- #: wppa-settings-autosave.php:4738 wppa-settings-autosave.php:4786
11232
- #: wppa-settings-autosave.php:4833 wppa-settings-autosave.php:4880
11233
- #: wppa-settings-autosave.php:4968
11234
- msgid "a plain page without a querystring."
11235
- msgstr ""
11236
-
11237
- #: wppa-settings-autosave.php:4573 wppa-settings-autosave.php:4616
11238
- #: wppa-settings-autosave.php:4655 wppa-settings-autosave.php:4694
11239
- #: wppa-settings-autosave.php:4739 wppa-settings-autosave.php:4787
11240
- #: wppa-settings-autosave.php:4834 wppa-settings-autosave.php:4881
11241
- #: wppa-settings-autosave.php:4927 wppa-settings-autosave.php:4969
11242
- #: wppa-settings-autosave.php:5017 wppa-settings-autosave.php:5059
11243
- #: wppa-settings-autosave.php:5097
11244
- msgid "lightbox."
11245
- msgstr ""
11246
-
11247
- #: wppa-settings-autosave.php:4598
11248
- msgid "SlideWidget"
11249
- msgstr ""
11250
-
11251
- #: wppa-settings-autosave.php:4599
11252
- msgid "Slideshow widget photo link."
11253
- msgstr ""
11254
-
11255
- #: wppa-settings-autosave.php:4600
11256
- msgid "Select the type of link the slideshow photos point to."
11257
- msgstr ""
11258
-
11259
- #: wppa-settings-autosave.php:4611 wppa-settings-autosave.php:8977
11260
- msgid "defined at widget activation."
11261
- msgstr ""
11262
-
11263
- #: wppa-settings-autosave.php:4641
11264
- #, fuzzy
11265
- msgid "Album widget"
11266
- msgstr "Album Admin"
11267
-
11268
- #: wppa-settings-autosave.php:4642
11269
- msgid "Album widget thumbnail link"
11270
- msgstr ""
11271
-
11272
- #: wppa-settings-autosave.php:4643
11273
- msgid "Select the type of link the album widget photos point to."
11274
- msgstr ""
11275
-
11276
- #: wppa-settings-autosave.php:4652
11277
- msgid "subalbums and thumbnails."
11278
- msgstr ""
11279
-
11280
- #: wppa-settings-autosave.php:4653
11281
- #, fuzzy
11282
- msgid "slideshow."
11283
- msgstr "Diaschau"
11284
-
11285
- #: wppa-settings-autosave.php:4676
11286
- #, fuzzy
11287
- msgid "ThumbnailWidget"
11288
- msgstr "Anzeigen..."
11289
-
11290
- #: wppa-settings-autosave.php:4677
11291
- #, fuzzy
11292
- msgid "Thumbnail widget photo link."
11293
- msgstr "Miniaturbild Fotos"
11294
-
11295
- #: wppa-settings-autosave.php:4678
11296
- msgid "Select the type of link the thumbnail photos point to."
11297
- msgstr ""
11298
-
11299
- #: wppa-settings-autosave.php:4691 wppa-settings-autosave.php:4736
11300
- #: wppa-settings-autosave.php:4784 wppa-settings-autosave.php:4831
11301
- #: wppa-settings-autosave.php:4878 wppa-settings-autosave.php:4966
11302
- msgid "the single photo in the style of a slideshow."
11303
- msgstr ""
11304
-
11305
- #: wppa-settings-autosave.php:4692 wppa-settings-autosave.php:4737
11306
- #: wppa-settings-autosave.php:4785 wppa-settings-autosave.php:4832
11307
- #: wppa-settings-autosave.php:4879 wppa-settings-autosave.php:4967
11308
- #: wppa-settings-autosave.php:5099
11309
- msgid "the fs photo with download and print buttons."
11310
- msgstr ""
11311
-
11312
- #: wppa-settings-autosave.php:4719
11313
- msgid "TopTenWidget"
11314
- msgstr ""
11315
-
11316
- #: wppa-settings-autosave.php:4720
11317
- msgid "TopTen widget photo link."
11318
- msgstr ""
11319
-
11320
- #: wppa-settings-autosave.php:4721
11321
- msgid "Select the type of link the top ten photos point to."
11322
- msgstr ""
11323
-
11324
- #: wppa-settings-autosave.php:4732
11325
- msgid "the content of the virtual topten album."
11326
- msgstr ""
11327
-
11328
- #: wppa-settings-autosave.php:4733 wppa-settings-autosave.php:4781
11329
- #: wppa-settings-autosave.php:4828 wppa-settings-autosave.php:4875
11330
- msgid "the content of the thumbnails album."
11331
- msgstr ""
11332
-
11333
- #: wppa-settings-autosave.php:4767
11334
- msgid "LasTenWidget"
11335
- msgstr ""
11336
-
11337
- #: wppa-settings-autosave.php:4768
11338
- #, fuzzy
11339
- msgid "Last Ten widget photo link."
11340
- msgstr "WPPA+ Die Zehn höchst bewertesten Fotos"
11341
-
11342
- #: wppa-settings-autosave.php:4769
11343
- msgid "Select the type of link the last ten photos point to."
11344
- msgstr ""
11345
-
11346
- #: wppa-settings-autosave.php:4780
11347
- msgid "the content of the virtual lasten album."
11348
- msgstr ""
11349
-
11350
- #: wppa-settings-autosave.php:4814
11351
- #, fuzzy
11352
- msgid "CommentWidget"
11353
- msgstr "Kommentar hinzugefügt"
11354
-
11355
- #: wppa-settings-autosave.php:4815
11356
- #, fuzzy
11357
- msgid "Comment widget photo link."
11358
- msgstr "Kommentar Widget Foto-Link."
11359
-
11360
- #: wppa-settings-autosave.php:4816
11361
- msgid "Select the type of link the comment widget photos point to."
11362
- msgstr ""
11363
-
11364
- #: wppa-settings-autosave.php:4827
11365
- msgid "the content of the virtual comten album."
11366
- msgstr ""
11367
-
11368
- #: wppa-settings-autosave.php:4861
11369
- msgid "FeaTenWidget"
11370
- msgstr ""
11371
-
11372
- #: wppa-settings-autosave.php:4862
11373
- msgid "FeaTen widget photo link."
11374
- msgstr ""
11375
-
11376
- #: wppa-settings-autosave.php:4863
11377
- msgid "Select the type of link the featured ten photos point to."
11378
- msgstr ""
11379
-
11380
- #: wppa-settings-autosave.php:4874
11381
- msgid "the content of the virtual featen album."
11382
- msgstr ""
11383
-
11384
- #: wppa-settings-autosave.php:4907
11385
- msgid "Links from other WPPA+ images"
11386
- msgstr ""
11387
-
11388
- #: wppa-settings-autosave.php:4909
11389
- msgid "Cover Image"
11390
- msgstr ""
11391
-
11392
- #: wppa-settings-autosave.php:4910
11393
- msgid "The link from the cover image of an album."
11394
- msgstr ""
11395
-
11396
- #: wppa-settings-autosave.php:4911
11397
- msgid "Select the type of link the coverphoto points to."
11398
- msgstr ""
11399
-
11400
- #: wppa-settings-autosave.php:4912
11401
- msgid "The link from the album title can be configured on the Edit Album page."
11402
- msgstr ""
11403
-
11404
- #: wppa-settings-autosave.php:4913
11405
- msgid "This link will be used for the photo also if you select: same as title."
11406
- msgstr ""
11407
-
11408
- #: wppa-settings-autosave.php:4914
11409
- msgid ""
11410
- "If you specify New Tab on this line, all links from the cover will open a "
11411
- "new tab,"
11412
- msgstr ""
11413
-
11414
- #: wppa-settings-autosave.php:4915
11415
- msgid "except when Ajax is activated on Table IV-A1."
11416
- msgstr ""
11417
-
11418
- #: wppa-settings-autosave.php:4926 wppa-settings-autosave.php:8979
11419
- msgid "same as title."
11420
- msgstr ""
11421
-
11422
- #: wppa-settings-autosave.php:4928
11423
- msgid "a slideshow starting at the photo"
11424
- msgstr ""
11425
-
11426
- #: wppa-settings-autosave.php:4949
11427
- #, fuzzy
11428
- msgid "Thumbnail"
11429
- msgstr "Miniaturbild Fotos"
11430
-
11431
- #: wppa-settings-autosave.php:4950
11432
- #, fuzzy
11433
- msgid "Thumbnail link."
11434
- msgstr "Anzeigen..."
11435
-
11436
- #: wppa-settings-autosave.php:4951 wppa-settings-autosave.php:5001
11437
- #: wppa-settings-autosave.php:5043
11438
- msgid "Select the type of link you want, or no link at all."
11439
- msgstr ""
11440
-
11441
- #: wppa-settings-autosave.php:4952 wppa-settings-autosave.php:5002
11442
- #: wppa-settings-autosave.php:5044
11443
- msgid ""
11444
- "If you select the fullsize photo on its own, it will be stretched to fit, "
11445
- "regardless of that setting."
11446
- msgstr ""
11447
-
11448
- #: wppa-settings-autosave.php:4953 wppa-settings-autosave.php:5003
11449
- #: wppa-settings-autosave.php:5045
11450
- #, php-format
11451
- msgid ""
11452
- "Note that a page must have at least %%wppa%% or [wppa][/wppa] in its content "
11453
- "to show up the photo(s)."
11454
- msgstr ""
11455
-
11456
- #: wppa-settings-autosave.php:4982
11457
- #, fuzzy
11458
- msgid "Auto Page"
11459
- msgstr "Automatisch Gespeichert"
11460
-
11461
- #: wppa-settings-autosave.php:4999
11462
- #, fuzzy
11463
- msgid "Sphoto"
11464
- msgstr "Foto"
11465
-
11466
- #: wppa-settings-autosave.php:5000
11467
- #, fuzzy
11468
- msgid "Single photo link."
11469
- msgstr "Bitte gibt den Fotonamen an."
11470
-
11471
- #: wppa-settings-autosave.php:5041
11472
- #, fuzzy
11473
- msgid "Mphoto"
11474
- msgstr "Foto"
11475
-
11476
- #: wppa-settings-autosave.php:5042
11477
- msgid "Media-like photo link."
11478
- msgstr ""
11479
-
11480
- #: wppa-settings-autosave.php:5084
11481
- msgid "Slideshow fullsize link"
11482
- msgstr ""
11483
-
11484
- #: wppa-settings-autosave.php:5085
11485
- msgid ""
11486
- "You can overrule lightbox but not big browse buttons with the photo specifc "
11487
- "link."
11488
- msgstr ""
11489
-
11490
- #: wppa-settings-autosave.php:5098
11491
- msgid "lightbox single photos."
11492
- msgstr ""
11493
-
11494
- #: wppa-settings-autosave.php:5100
11495
- #, fuzzy
11496
- msgid "the thumbnails."
11497
- msgstr "Anzeigen..."
11498
-
11499
- #: wppa-settings-autosave.php:5124
11500
- msgid "Film linktype"
11501
- msgstr ""
11502
-
11503
- #: wppa-settings-autosave.php:5125
11504
- msgid "Direct access goto image in:"
11505
- msgstr ""
11506
-
11507
- #: wppa-settings-autosave.php:5126
11508
- msgid ""
11509
- "Select the action to be taken when the user clicks on a filmstrip image."
11510
- msgstr ""
11511
-
11512
- #: wppa-settings-autosave.php:5131
11513
- #, fuzzy
11514
- msgid "slideshow window"
11515
- msgstr "Diaschau"
11516
-
11517
- #: wppa-settings-autosave.php:5132
11518
- msgid "lightbox overlay"
11519
- msgstr ""
11520
-
11521
- #: wppa-settings-autosave.php:5147
11522
- #, fuzzy
11523
- msgid "Other links"
11524
- msgstr "Andere"
11525
-
11526
- #: wppa-settings-autosave.php:5149
11527
- msgid "Download Link (aka Art Monkey link)"
11528
- msgstr ""
11529
-
11530
- #: wppa-settings-autosave.php:5150
11531
- msgid "Makes the photo name a download button."
11532
- msgstr ""
11533
-
11534
- #: wppa-settings-autosave.php:5151
11535
- msgid "Link Photo name in slideshow to file or zip with photoname as filename."
11536
- msgstr ""
11537
-
11538
- #: wppa-settings-autosave.php:5155 wppa-settings-autosave.php:5202
11539
- msgid "image file"
11540
- msgstr ""
11541
-
11542
- #: wppa-settings-autosave.php:5156 wppa-settings-autosave.php:5203
11543
- msgid "zipped image"
11544
- msgstr ""
11545
-
11546
- #: wppa-settings-autosave.php:5169
11547
- msgid "Art Monkey Source"
11548
- msgstr ""
11549
-
11550
- #: wppa-settings-autosave.php:5170
11551
- msgid "Use Source file for art monkey link if available."
11552
- msgstr ""
11553
-
11554
- #: wppa-settings-autosave.php:5179
11555
- msgid "Art Monkey Display"
11556
- msgstr ""
11557
-
11558
- #: wppa-settings-autosave.php:5180
11559
- msgid "Select button or link ( text )."
11560
- msgstr ""
11561
-
11562
- #: wppa-settings-autosave.php:5185
11563
- msgid "Textlink"
11564
- msgstr ""
11565
-
11566
- #: wppa-settings-autosave.php:5197
11567
- msgid "Popup Download Link"
11568
- msgstr ""
11569
-
11570
- #: wppa-settings-autosave.php:5198
11571
- msgid "Configure the download link on fullsize popups."
11572
- msgstr ""
11573
-
11574
- #: wppa-settings-autosave.php:5199
11575
- msgid "Link fullsize popup download button to either image or zip file."
11576
- msgstr ""
11577
-
11578
- #: wppa-settings-autosave.php:5215
11579
- msgid "Download link on lightbox"
11580
- msgstr ""
11581
-
11582
- #: wppa-settings-autosave.php:5216
11583
- msgid "Art monkey link on lightbox photo names."
11584
- msgstr ""
11585
-
11586
- #: wppa-settings-autosave.php:5225
11587
- #, fuzzy
11588
- msgid "Album download link"
11589
- msgstr "Album Admin"
11590
-
11591
- #: wppa-settings-autosave.php:5226
11592
- msgid "Place an album download link on the album covers"
11593
- msgstr ""
11594
-
11595
- #: wppa-settings-autosave.php:5227
11596
- msgid "Creates a download zipfile containing the photos of the album"
11597
- msgstr ""
11598
-
11599
- #: wppa-settings-autosave.php:5235
11600
- msgid "Album download Source"
11601
- msgstr ""
11602
-
11603
- #: wppa-settings-autosave.php:5236
11604
- msgid "Use Source file for album download link if available."
11605
- msgstr ""
11606
-
11607
- #: wppa-settings-autosave.php:5245
11608
- msgid "Tagcloud Link"
11609
- msgstr ""
11610
-
11611
- #: wppa-settings-autosave.php:5246
11612
- msgid "Configure the link from the tags in the tag cloud."
11613
- msgstr ""
11614
-
11615
- #: wppa-settings-autosave.php:5247
11616
- msgid "Link the tag words to ether the thumbnails or the slideshow."
11617
- msgstr ""
11618
-
11619
- #: wppa-settings-autosave.php:5256 wppa-settings-autosave.php:5287
11620
- #: wppa-settings-autosave.php:5382
11621
- #, fuzzy
11622
- msgid "slideshow"
11623
- msgstr "Diaschau"
11624
-
11625
- #: wppa-settings-autosave.php:5276
11626
- msgid "Multitag Link"
11627
- msgstr ""
11628
-
11629
- #: wppa-settings-autosave.php:5277
11630
- msgid "Configure the link from the multitag selection."
11631
- msgstr ""
11632
-
11633
- #: wppa-settings-autosave.php:5278
11634
- msgid "Link to ether the thumbnails or the slideshow."
11635
- msgstr ""
11636
-
11637
- #: wppa-settings-autosave.php:5307
11638
- #, fuzzy
11639
- msgid "Super View Landing"
11640
- msgstr "Super View Fotos"
11641
-
11642
- #: wppa-settings-autosave.php:5308
11643
- msgid "The landing page for the Super View widget."
11644
- msgstr ""
11645
-
11646
- #: wppa-settings-autosave.php:5316
11647
- msgid "Defined by the visitor"
11648
- msgstr ""
11649
-
11650
- #: wppa-settings-autosave.php:5329
11651
- #, fuzzy
11652
- msgid "Uploader Landing"
11653
- msgstr "Fehlgeschlagen!"
11654
-
11655
- #: wppa-settings-autosave.php:5330
11656
- msgid "Select the landing page for the Uploader Widget"
11657
- msgstr ""
11658
-
11659
- #: wppa-settings-autosave.php:5350
11660
- msgid "Bestof Landing"
11661
- msgstr ""
11662
-
11663
- #: wppa-settings-autosave.php:5351
11664
- msgid "Select the landing page for the BestOf Widget / Box"
11665
- msgstr ""
11666
-
11667
- #: wppa-settings-autosave.php:5371
11668
- msgid "Album navigator Link"
11669
- msgstr ""
11670
-
11671
- #: wppa-settings-autosave.php:5372
11672
- msgid "Select link type and page for the Album navigator Widget"
11673
- msgstr ""
11674
-
11675
- #: wppa-settings-autosave.php:5400
11676
- msgid "Supersearch Landing"
11677
- msgstr ""
11678
-
11679
- #: wppa-settings-autosave.php:5401
11680
- msgid "Select the landing page for the Supersearch Box"
11681
- msgstr ""
11682
-
11683
- #: wppa-settings-autosave.php:5421
11684
- msgid "SM widget return"
11685
- msgstr ""
11686
-
11687
- #: wppa-settings-autosave.php:5422
11688
- msgid "Select the return link for social media from widgets"
11689
- msgstr ""
11690
-
11691
- #: wppa-settings-autosave.php:5423
11692
- msgid ""
11693
- "If you select Landing page, and it wont work, it may be required to set the "
11694
- "Occur to the sequence number of the landing shortcode on the page."
11695
- msgstr ""
11696
-
11697
- #: wppa-settings-autosave.php:5424
11698
- msgid ""
11699
- "Normally it is 1, but you can try 2 etc. Always create a new shared link to "
11700
- "test a setting."
11701
- msgstr ""
11702
-
11703
- #: wppa-settings-autosave.php:5432
11704
- #, fuzzy
11705
- msgid "Home page"
11706
- msgstr "Startseite"
11707
-
11708
- #: wppa-settings-autosave.php:5433
11709
- msgid "Landing page"
11710
- msgstr ""
11711
-
11712
- #: wppa-settings-autosave.php:5444
11713
- msgid "Occur"
11714
- msgstr ""
11715
-
11716
- #: wppa-settings-autosave.php:5453
11717
- msgid "Album cover subalbums link"
11718
- msgstr ""
11719
-
11720
- #: wppa-settings-autosave.php:5454
11721
- msgid "Select the linktype for sub-albums on parent album covers."
11722
- msgstr ""
11723
-
11724
- #: wppa-settings-autosave.php:5462
11725
- msgid "No link at all"
11726
- msgstr ""
11727
-
11728
- #: wppa-settings-autosave.php:5463
11729
- #, fuzzy
11730
- msgid "Thumbnails and covers"
11731
- msgstr "Miniaturbild Fotos"
11732
-
11733
- #: wppa-settings-autosave.php:5464
11734
- #, fuzzy
11735
- msgid "Slideshow or covers"
11736
- msgstr "Diaschau"
11737
-
11738
- #: wppa-settings-autosave.php:5472
11739
- msgid "Recursive"
11740
- msgstr ""
11741
-
11742
- #: wppa-settings-autosave.php:5501
11743
- msgid "Table VII:"
11744
- msgstr ""
11745
-
11746
- #: wppa-settings-autosave.php:5501
11747
- msgid "Permissions and Restrictions:"
11748
- msgstr ""
11749
-
11750
- #: wppa-settings-autosave.php:5502
11751
- msgid ""
11752
- "This table describes the access settings for admin and front-end activities."
11753
- msgstr ""
11754
-
11755
- #: wppa-settings-autosave.php:5523
11756
- #, fuzzy
11757
- msgid "Moderate P+C"
11758
- msgstr "Moderiere Kommentare"
11759
-
11760
- #: wppa-settings-autosave.php:5527
11761
- #, fuzzy
11762
- msgid "Comment&nbsp;Admin"
11763
- msgstr "%d Kommentare"
11764
-
11765
- #: wppa-settings-autosave.php:5530
11766
- msgid "Role"
11767
- msgstr ""
11768
-
11769
- #: wppa-settings-autosave.php:5539
11770
- msgid ""
11771
- "Admin settings per user role. Enabling these settings will overrule the "
11772
- "front-end settings for the specific user role"
11773
- msgstr ""
11774
-
11775
- #: wppa-settings-autosave.php:5563
11776
- msgid "Frontend create Albums and upload Photos enabling and limiting settings"
11777
- msgstr ""
11778
-
11779
- #: wppa-settings-autosave.php:5565
11780
- #, fuzzy
11781
- msgid "User create Albums"
11782
- msgstr "Das Album konnte nicht erstellt werden."
11783
-
11784
- #: wppa-settings-autosave.php:5566
11785
- #, fuzzy
11786
- msgid "Enable frontend album creation."
11787
- msgstr "Eintragen / ändern der Beschreibung des Albums"
11788
-
11789
- #: wppa-settings-autosave.php:5567
11790
- msgid "If you check this item, frontend album creation will be enabled."
11791
- msgstr ""
11792
-
11793
- #: wppa-settings-autosave.php:5577
11794
- #, fuzzy
11795
- msgid "User edit album"
11796
- msgstr "Das Album konnte nicht erstellt werden."
11797
-
11798
- #: wppa-settings-autosave.php:5578
11799
- #, fuzzy
11800
- msgid "Enable frontent edit album name and description."
11801
- msgstr "Eintragen / ändern der Beschreibung des Albums"
11802
-
11803
- #: wppa-settings-autosave.php:5588
11804
- #, fuzzy
11805
- msgid "User delete Albums"
11806
- msgstr "Das Album konnte nicht erstellt werden."
11807
-
11808
- #: wppa-settings-autosave.php:5589
11809
- #, fuzzy
11810
- msgid "Enable frontend album deletion"
11811
- msgstr "Eintragen / ändern der Beschreibung des Albums"
11812
-
11813
- #: wppa-settings-autosave.php:5590
11814
- msgid "If you check this item, frontend album deletion will be enabled."
11815
- msgstr ""
11816
-
11817
- #: wppa-settings-autosave.php:5600
11818
- #, fuzzy
11819
- msgid "User create Albums login"
11820
- msgstr "Das Album konnte nicht erstellt werden."
11821
-
11822
- #: wppa-settings-autosave.php:5601
11823
- msgid "Frontend album creation requires the user is logged in."
11824
- msgstr ""
11825
-
11826
- #: wppa-settings-autosave.php:5627
11827
- #, fuzzy, php-format
11828
- msgid "Upload limit %s"
11829
- msgstr "Fotos Hochladen"
11830
-
11831
- #: wppa-settings-autosave.php:5628
11832
- msgid "Limit upload capacity for logged out users."
11833
- msgstr ""
11834
-
11835
- #: wppa-settings-autosave.php:5629
11836
- #, php-format
11837
- msgid "Limit upload capacity for the user role %s."
11838
- msgstr ""
11839
-
11840
- #: wppa-settings-autosave.php:5630
11841
- msgid "This setting has only effect when Table VII-B2 is unchecked."
11842
- msgstr ""
11843
-
11844
- #: wppa-settings-autosave.php:5631
11845
- msgid ""
11846
- "This limitation only applies to frontend uploads when the same userrole does "
11847
- "not have the Upload checkbox checked in Table VII-A."
11848
- msgstr ""
11849
-
11850
- #: wppa-settings-autosave.php:5632 wppa-settings-autosave.php:5648
11851
- #: wppa-settings-autosave.php:7123
11852
- msgid "A value of 0 means: no limit."
11853
- msgstr ""
11854
-
11855
- #: wppa-settings-autosave.php:5645
11856
- #, fuzzy, php-format
11857
- msgid "Album limit %s"
11858
- msgstr "Album Admin"
11859
-
11860
- #: wppa-settings-autosave.php:5646
11861
- #, php-format
11862
- msgid "Limit number of albums for the user role %s."
11863
- msgstr ""
11864
-
11865
- #: wppa-settings-autosave.php:5647
11866
- msgid ""
11867
- "This limitation only applies to frontend create albums when the same "
11868
- "userrole does not have the Album admin checkbox checked in Table VII-A."
11869
- msgstr ""
11870
-
11871
- #: wppa-settings-autosave.php:5659
11872
- #, fuzzy
11873
- msgid "Upload one only"
11874
- msgstr "Upload Foto"
11875
-
11876
- #: wppa-settings-autosave.php:5660
11877
- msgid "Non admin users can upload only one photo at a time."
11878
- msgstr ""
11879
-
11880
- #: wppa-settings-autosave.php:5670
11881
- #, fuzzy
11882
- msgid "Upload moderation"
11883
- msgstr "Upload Foto"
11884
-
11885
- #: wppa-settings-autosave.php:5671
11886
- #, fuzzy
11887
- msgid "Uploaded photos need moderation."
11888
- msgstr "Upload Moderation"
11889
-
11890
- #: wppa-settings-autosave.php:5672
11891
- msgid ""
11892
- "If checked, photos uploaded by users who do not have photo album admin "
11893
- "access rights need moderation."
11894
- msgstr ""
11895
-
11896
- #: wppa-settings-autosave.php:5673
11897
- msgid ""
11898
- "Users who have photo album admin access rights can change the photo status "
11899
- "to publish or featured."
11900
- msgstr ""
11901
-
11902
- #: wppa-settings-autosave.php:5674
11903
- msgid "You can set the album admin access rights in Table VII-A."
11904
- msgstr ""
11905
-
11906
- #: wppa-settings-autosave.php:5683
11907
- #, fuzzy
11908
- msgid "Upload notify"
11909
- msgstr "Upload Foto"
11910
-
11911
- #: wppa-settings-autosave.php:5684
11912
- msgid "Notify admin at frontend upload."
11913
- msgstr ""
11914
-
11915
- #: wppa-settings-autosave.php:5685 wppa-settings-autosave.php:5696
11916
- msgid "If checked, admin will receive a notification by email."
11917
- msgstr ""
11918
-
11919
- #: wppa-settings-autosave.php:5694
11920
- msgid "Upload backend notify"
11921
- msgstr ""
11922
-
11923
- #: wppa-settings-autosave.php:5695
11924
- msgid "Notify admin at backend upload."
11925
- msgstr ""
11926
-
11927
- #: wppa-settings-autosave.php:5705
11928
- msgid "Max size in pixels"
11929
- msgstr ""
11930
-
11931
- #: wppa-settings-autosave.php:5706
11932
- msgid "Max size for height and width for front-end uploads."
11933
- msgstr ""
11934
-
11935
- #: wppa-settings-autosave.php:5707
11936
- msgid "Enter the maximum size. 0 is unlimited"
11937
- msgstr ""
11938
-
11939
- #: wppa-settings-autosave.php:5716
11940
- msgid "Home after Upload"
11941
- msgstr ""
11942
-
11943
- #: wppa-settings-autosave.php:5717
11944
- msgid "After successfull front-end upload, go to the home page."
11945
- msgstr ""
11946
-
11947
- #: wppa-settings-autosave.php:5727
11948
- msgid "Admin Functionality restrictions for non administrators"
11949
- msgstr ""
11950
-
11951
- #: wppa-settings-autosave.php:5729
11952
- msgid "Alt thumb is restricted"
11953
- msgstr ""
11954
-
11955
- #: wppa-settings-autosave.php:5730
11956
- msgid "Using <b>alt thumbsize</b> is a restricted action."
11957
- msgstr ""
11958
-
11959
- #: wppa-settings-autosave.php:5731
11960
- msgid ""
11961
- "If checked: alt thumbsize can not be set in album admin by users not having "
11962
- "admin rights."
11963
- msgstr ""
11964
-
11965
- #: wppa-settings-autosave.php:5740
11966
- msgid "Link is restricted"
11967
- msgstr ""
11968
-
11969
- #: wppa-settings-autosave.php:5741
11970
- msgid "Using <b>Link to</b> is a restricted action."
11971
- msgstr ""
11972
-
11973
- #: wppa-settings-autosave.php:5742
11974
- msgid ""
11975
- "If checked: Link to: can not be set in album admin by users not having admin "
11976
- "rights."
11977
- msgstr ""
11978
-
11979
- #: wppa-settings-autosave.php:5751
11980
- msgid "CoverType is restricted"
11981
- msgstr ""
11982
-
11983
- #: wppa-settings-autosave.php:5752
11984
- msgid "Changing <b>Cover Type</b> is a restricted action."
11985
- msgstr ""
11986
-
11987
- #: wppa-settings-autosave.php:5753
11988
- msgid ""
11989
- "If checked: Cover Type: can not be set in album admin by users not having "
11990
- "admin rights."
11991
- msgstr ""
11992
-
11993
- #: wppa-settings-autosave.php:5762
11994
- msgid "Photo order# is restricted"
11995
- msgstr ""
11996
-
11997
- #: wppa-settings-autosave.php:5763
11998
- msgid "Changing <b>Photo sort order #</b> is a restricted action."
11999
- msgstr ""
12000
-
12001
- #: wppa-settings-autosave.php:5764
12002
- msgid ""
12003
- "If checked: Photo sort order #: can not be set in photo admin by users not "
12004
- "having admin rights."
12005
- msgstr ""
12006
-
12007
- #: wppa-settings-autosave.php:5773
12008
- msgid "Change source restricted"
12009
- msgstr ""
12010
-
12011
- #: wppa-settings-autosave.php:5774
12012
- msgid "Changing the import source dir requires admin rights."
12013
- msgstr ""
12014
-
12015
- #: wppa-settings-autosave.php:5775
12016
- msgid ""
12017
- "If checked, the imput source for importing photos and albums is restricted "
12018
- "to user role administrator."
12019
- msgstr ""
12020
-
12021
- #: wppa-settings-autosave.php:5784
12022
- msgid "Extended status restricted"
12023
- msgstr ""
12024
-
12025
- #: wppa-settings-autosave.php:5785
12026
- msgid "Setting status other than pending or publish requires admin rights."
12027
- msgstr ""
12028
-
12029
- #: wppa-settings-autosave.php:5795
12030
- msgid "Photo description restricted"
12031
- msgstr ""
12032
-
12033
- #: wppa-settings-autosave.php:5796
12034
- msgid "Edit photo description requires admin rights."
12035
- msgstr ""
12036
-
12037
- #: wppa-settings-autosave.php:5806
12038
- msgid "Update photofiles restricted"
12039
- msgstr ""
12040
-
12041
- #: wppa-settings-autosave.php:5807
12042
- msgid "Re-upload files requires admin rights"
12043
- msgstr ""
12044
-
12045
- #: wppa-settings-autosave.php:5817
12046
- msgid "Miscellaneous limiting settings"
12047
- msgstr ""
12048
-
12049
- #: wppa-settings-autosave.php:5819
12050
- msgid "Owners only"
12051
- msgstr ""
12052
-
12053
- #: wppa-settings-autosave.php:5820
12054
- msgid "Limit edit album access to the album owners only."
12055
- msgstr ""
12056
-
12057
- #: wppa-settings-autosave.php:5821
12058
- msgid "If checked, non-admin users can edit their own albums only."
12059
- msgstr ""
12060
-
12061
- #: wppa-settings-autosave.php:5830
12062
- msgid "Upload Owners only"
12063
- msgstr ""
12064
-
12065
- #: wppa-settings-autosave.php:5831
12066
- msgid "Limit uploads to the album owners only."
12067
- msgstr ""
12068
-
12069
- #: wppa-settings-autosave.php:5832
12070
- msgid ""
12071
- "If checked, users can upload to their own own albums and --- public --- only."
12072
- msgstr ""
12073
-
12074
- #: wppa-settings-autosave.php:5841
12075
- #, fuzzy
12076
- msgid "Uploader Edit"
12077
- msgstr "Upload Foto"
12078
-
12079
- #: wppa-settings-autosave.php:5842
12080
- msgid "Allow the uploader to edit the photo info"
12081
- msgstr ""
12082
-
12083
- #: wppa-settings-autosave.php:5843
12084
- msgid ""
12085
- "If checked, any logged in user that has upload rights and uploads an image "
12086
- "has the capability to edit the photo information."
12087
- msgstr ""
12088
-
12089
- #: wppa-settings-autosave.php:5844
12090
- msgid "Note: This may be AFTER moderation!!"
12091
- msgstr ""
12092
-
12093
- #: wppa-settings-autosave.php:5853
12094
- #, fuzzy
12095
- msgid "Uploader Moderate Comment"
12096
- msgstr "Moderiere Kommentare"
12097
-
12098
- #: wppa-settings-autosave.php:5854
12099
- msgid "The owner of the photo can moderate the photos comments."
12100
- msgstr ""
12101
-
12102
- #: wppa-settings-autosave.php:5855
12103
- msgid "This setting requires \"Uploader edit\" to be enabled also."
12104
- msgstr ""
12105
-
12106
- #: wppa-settings-autosave.php:5864
12107
- msgid "Upload memory check frontend"
12108
- msgstr ""
12109
-
12110
- #: wppa-settings-autosave.php:5865 wppa-settings-autosave.php:5876
12111
- msgid "Disable uploading photos that are too large."
12112
- msgstr ""
12113
-
12114
- #: wppa-settings-autosave.php:5866 wppa-settings-autosave.php:5877
12115
- msgid ""
12116
- "To prevent out of memory crashes during upload and possible database "
12117
- "inconsistencies, uploads can be prevented if the photos are too big."
12118
- msgstr ""
12119
-
12120
- #: wppa-settings-autosave.php:5875
12121
- msgid "Upload memory check admin"
12122
- msgstr ""
12123
-
12124
- #: wppa-settings-autosave.php:5886
12125
- #, fuzzy
12126
- msgid "Comment captcha"
12127
- msgstr "Kommentar hinzugefügt"
12128
-
12129
- #: wppa-settings-autosave.php:5887
12130
- msgid "Use a simple calculate captcha on comments form."
12131
- msgstr ""
12132
-
12133
- #: wppa-settings-autosave.php:5900
12134
- msgid "Spam lifetime"
12135
- msgstr ""
12136
-
12137
- #: wppa-settings-autosave.php:5901
12138
- msgid "Delete spam comments when older than."
12139
- msgstr ""
12140
-
12141
- #: wppa-settings-autosave.php:5904
12142
- #, fuzzy
12143
- msgid "10 minutes"
12144
- msgstr "1 Minute"
12145
-
12146
- #: wppa-settings-autosave.php:5904
12147
- msgid "half an hour"
12148
- msgstr ""
12149
-
12150
- #: wppa-settings-autosave.php:5904
12151
- #, fuzzy
12152
- msgid "one hour"
12153
- msgstr "1 Stunde"
12154
-
12155
- #: wppa-settings-autosave.php:5904
12156
- #, fuzzy
12157
- msgid "one day"
12158
- msgstr "1 Tag"
12159
-
12160
- #: wppa-settings-autosave.php:5904
12161
- #, fuzzy
12162
- msgid "one week"
12163
- msgstr "1 Woche"
12164
-
12165
- #: wppa-settings-autosave.php:5914
12166
- msgid "Avoid duplicates"
12167
- msgstr ""
12168
-
12169
- #: wppa-settings-autosave.php:5915
12170
- msgid "Prevent the creation of duplicate photos."
12171
- msgstr ""
12172
-
12173
- #: wppa-settings-autosave.php:5916
12174
- msgid ""
12175
- "If checked: uploading, importing, copying or moving photos to other albums "
12176
- "will be prevented when the desitation album already contains a photo with "
12177
- "the same filename."
12178
- msgstr ""
12179
-
12180
- #: wppa-settings-autosave.php:5925
12181
- msgid "Blacklist user"
12182
- msgstr ""
12183
-
12184
- #: wppa-settings-autosave.php:5926 wppa-settings-autosave.php:5927
12185
- msgid "Set the status of all the users photos to 'pending'."
12186
- msgstr ""
12187
-
12188
- #: wppa-settings-autosave.php:5928
12189
- msgid "Also inhibits further uploads."
12190
- msgstr ""
12191
-
12192
- #: wppa-settings-autosave.php:5934
12193
- msgid "--- select a user to blacklist ---"
12194
- msgstr ""
12195
-
12196
- #: wppa-settings-autosave.php:5944 wppa-settings-autosave.php:5949
12197
- #: wppa-settings-autosave.php:5970 wppa-settings-autosave.php:8211
12198
- #: wppa-settings-autosave.php:8253
12199
- msgid "The page will be reloaded after the action has taken place."
12200
- msgstr ""
12201
-
12202
- #: wppa-settings-autosave.php:5950
12203
- msgid "User login name <b>( case sensitive! )</b>:"
12204
- msgstr ""
12205
-
12206
- #: wppa-settings-autosave.php:5958
12207
- msgid "Unblacklist user"
12208
- msgstr ""
12209
-
12210
- #: wppa-settings-autosave.php:5959
12211
- msgid "Set the status of all the users photos to 'publish'."
12212
- msgstr ""
12213
-
12214
- #: wppa-settings-autosave.php:5963
12215
- msgid "--- select a user to unblacklist ---"
12216
- msgstr ""
12217
-
12218
- #: wppa-settings-autosave.php:5978
12219
- #, fuzzy
12220
- msgid "Photo owner change"
12221
- msgstr "Foto des Tages"
12222
-
12223
- #: wppa-settings-autosave.php:5979
12224
- msgid "Administrators can change photo owner"
12225
- msgstr ""
12226
-
12227
- #: wppa-settings-autosave.php:6007
12228
- msgid "Table VIII:"
12229
- msgstr ""
12230
-
12231
- #: wppa-settings-autosave.php:6007
12232
- msgid "Actions:"
12233
- msgstr ""
12234
-
12235
- #: wppa-settings-autosave.php:6008
12236
- msgid "This table lists all actions that can be taken to the wppa+ system"
12237
- msgstr ""
12238
-
12239
- #: wppa-settings-autosave.php:6018 wppa-settings-autosave.php:6598
12240
- msgid "Specification"
12241
- msgstr ""
12242
-
12243
- #: wppa-settings-autosave.php:6019 wppa-settings-autosave.php:6599
12244
- #: wppa-settings-autosave.php:8993 wppa-settings-autosave.php:9015
12245
- msgid "Do it!"
12246
- msgstr ""
12247
-
12248
- #: wppa-settings-autosave.php:6021 wppa-settings-autosave.php:6601
12249
- msgid "To Go"
12250
- msgstr ""
12251
-
12252
- #: wppa-settings-autosave.php:6029
12253
- msgid "Harmless and reverseable actions"
12254
- msgstr ""
12255
-
12256
- #: wppa-settings-autosave.php:6031
12257
- msgid "Ignore concurrency"
12258
- msgstr ""
12259
-
12260
- #: wppa-settings-autosave.php:6032
12261
- msgid "Ignore the prevention of concurrent actions."
12262
- msgstr ""
12263
-
12264
- #: wppa-settings-autosave.php:6033
12265
- msgid ""
12266
- "This setting is meant to recover from deadlock situations only. Use with "
12267
- "care!"
12268
- msgstr ""
12269
-
12270
- #: wppa-settings-autosave.php:6044
12271
- msgid "Setup"
12272
- msgstr ""
12273
-
12274
- #: wppa-settings-autosave.php:6045
12275
- msgid "Re-initialize plugin."
12276
- msgstr ""
12277
-
12278
- #: wppa-settings-autosave.php:6046
12279
- msgid ""
12280
- "Re-initilizes the plugin, (re)creates database tables and sets up default "
12281
- "settings and directories if required."
12282
- msgstr ""
12283
-
12284
- #: wppa-settings-autosave.php:6047
12285
- msgid ""
12286
- "This action may be required to setup blogs in a multiblog (network) site as "
12287
- "well as in rare cases to correct initilization errors."
12288
- msgstr ""
12289
-
12290
- #: wppa-settings-autosave.php:6058
12291
- #, fuzzy
12292
- msgid "Backup settings"
12293
- msgstr "Einstellungen"
12294
-
12295
- #: wppa-settings-autosave.php:6059
12296
- msgid "Save all settings into a backup file."
12297
- msgstr ""
12298
-
12299
- #: wppa-settings-autosave.php:6060
12300
- msgid "Saves all the settings into a backup file"
12301
- msgstr ""
12302
-
12303
- #: wppa-settings-autosave.php:6071
12304
- #, fuzzy
12305
- msgid "Load settings"
12306
- msgstr "Einstellungen"
12307
-
12308
- #: wppa-settings-autosave.php:6072
12309
- msgid "Restore all settings from defaults, a backup or skin file."
12310
- msgstr ""
12311
-
12312
- #: wppa-settings-autosave.php:6073
12313
- msgid ""
12314
- "Restores all the settings from the factory supplied defaults, the backup you "
12315
- "created or from a skin file."
12316
- msgstr ""
12317
-
12318
- #: wppa-settings-autosave.php:6079
12319
- #, fuzzy
12320
- msgid "--- set to defaults ---"
12321
- msgstr "--- gelöscht ---"
12322
-
12323
- #: wppa-settings-autosave.php:6082
12324
- msgid "--- restore backup ---"
12325
- msgstr ""
12326
-
12327
- #: wppa-settings-autosave.php:6104
12328
- msgid "Regenerate"
12329
- msgstr ""
12330
-
12331
- #: wppa-settings-autosave.php:6105 wppa-settings-autosave.php:6106
12332
- #, fuzzy
12333
- msgid "Regenerate all thumbnails."
12334
- msgstr "Anzeigen..."
12335
-
12336
- #: wppa-settings-autosave.php:6109 wppa-settings-autosave.php:6213
12337
- msgid "Skip one"
12338
- msgstr ""
12339
-
12340
- #: wppa-settings-autosave.php:6118
12341
- #, fuzzy
12342
- msgid "Rerate"
12343
- msgstr "Moderiere Kommentare"
12344
-
12345
- #: wppa-settings-autosave.php:6119
12346
- msgid "Recalculate ratings."
12347
- msgstr ""
12348
-
12349
- #: wppa-settings-autosave.php:6120
12350
- msgid ""
12351
- "This function will recalculate all mean photo ratings from the ratings table."
12352
- msgstr ""
12353
-
12354
- #: wppa-settings-autosave.php:6121
12355
- msgid ""
12356
- "You may need this function after the re-import of previously exported photos"
12357
- msgstr ""
12358
-
12359
- #: wppa-settings-autosave.php:6132
12360
- #, fuzzy
12361
- msgid "Lost and found"
12362
- msgstr "Foto wurde nicht gefunden."
12363
-
12364
- #: wppa-settings-autosave.php:6133
12365
- msgid "Find \"lost\" photos."
12366
- msgstr ""
12367
-
12368
- #: wppa-settings-autosave.php:6134
12369
- msgid "This function will attempt to find lost photos."
12370
- msgstr ""
12371
-
12372
- #: wppa-settings-autosave.php:6145
12373
- msgid "Recuperate"
12374
- msgstr ""
12375
-
12376
- #: wppa-settings-autosave.php:6147
12377
- msgid ""
12378
- "This action will attempt to find and register IPTC and EXIF data from photos "
12379
- "in the WPPA+ system."
12380
- msgstr ""
12381
-
12382
- #: wppa-settings-autosave.php:6158
12383
- msgid "Remake Index Albums"
12384
- msgstr ""
12385
-
12386
- #: wppa-settings-autosave.php:6159
12387
- msgid "Remakes the index database table for albums."
12388
- msgstr ""
12389
-
12390
- #: wppa-settings-autosave.php:6171
12391
- #, fuzzy
12392
- msgid "Remake Index Photos"
12393
- msgstr "Thumbnail Fotos verwandte Einstellungen"
12394
-
12395
- #: wppa-settings-autosave.php:6172
12396
- msgid "Remakes the index database table for photos."
12397
- msgstr ""
12398
-
12399
- #: wppa-settings-autosave.php:6190
12400
- msgid "Convert to tree"
12401
- msgstr ""
12402
-
12403
- #: wppa-settings-autosave.php:6191
12404
- msgid "Convert filesystem to tree structure."
12405
- msgstr ""
12406
-
12407
- #: wppa-settings-autosave.php:6194
12408
- msgid "Convert to flat"
12409
- msgstr ""
12410
-
12411
- #: wppa-settings-autosave.php:6195
12412
- msgid "Convert filesystem to flat structure."
12413
- msgstr ""
12414
-
12415
- #: wppa-settings-autosave.php:6197
12416
- msgid ""
12417
- "If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
12418
- "to flat first."
12419
- msgstr ""
12420
-
12421
- #: wppa-settings-autosave.php:6209
12422
- msgid "Remake the photofiles from photo sourcefiles."
12423
- msgstr ""
12424
-
12425
- #: wppa-settings-autosave.php:6210
12426
- msgid ""
12427
- "This action will remake the fullsize images, thumbnail images, and will "
12428
- "refresh the iptc and exif data for all photos where the source is found in "
12429
- "the corresponding album sub-directory of the source directory."
12430
- msgstr ""
12431
-
12432
- #: wppa-settings-autosave.php:6222
12433
- msgid "Recalc sizes"
12434
- msgstr ""
12435
-
12436
- #: wppa-settings-autosave.php:6223
12437
- msgid "Recalculate photosizes and save to db."
12438
- msgstr ""
12439
-
12440
- #: wppa-settings-autosave.php:6235
12441
- msgid "Clearing and other irreverseable actions"
12442
- msgstr ""
12443
-
12444
- #: wppa-settings-autosave.php:6237
12445
- #, fuzzy
12446
- msgid "Clear ratings"
12447
- msgstr "auto selekt max %s zufällig"
12448
-
12449
- #: wppa-settings-autosave.php:6238
12450
- msgid "Reset all ratings."
12451
- msgstr ""
12452
-
12453
- #: wppa-settings-autosave.php:6239
12454
- msgid "WARNING: If checked, this will clear all ratings in the system!"
12455
- msgstr ""
12456
-
12457
- #: wppa-settings-autosave.php:6250
12458
- msgid "Clear viewcounts"
12459
- msgstr ""
12460
-
12461
- #: wppa-settings-autosave.php:6251
12462
- msgid "Reset all viewcounts."
12463
- msgstr ""
12464
-
12465
- #: wppa-settings-autosave.php:6252
12466
- msgid "WARNING: If checked, this will clear all viewcounts in the system!"
12467
- msgstr ""
12468
-
12469
- #: wppa-settings-autosave.php:6263
12470
- msgid "Reset IPTC"
12471
- msgstr ""
12472
-
12473
- #: wppa-settings-autosave.php:6264
12474
- #, fuzzy
12475
- msgid "Clear all IPTC data."
12476
- msgstr "IPTC Daten"
12477
-
12478
- #: wppa-settings-autosave.php:6265
12479
- msgid "WARNING: If checked, this will clear all IPTC data in the system!"
12480
- msgstr ""
12481
-
12482
- #: wppa-settings-autosave.php:6276
12483
- msgid "Reset EXIF"
12484
- msgstr ""
12485
-
12486
- #: wppa-settings-autosave.php:6277
12487
- #, fuzzy
12488
- msgid "Clear all EXIF data."
12489
- msgstr "EXIF Daten"
12490
-
12491
- #: wppa-settings-autosave.php:6278
12492
- msgid "WARNING: If checked, this will clear all EXIF data in the system!"
12493
- msgstr ""
12494
-
12495
- #: wppa-settings-autosave.php:6289
12496
- #, fuzzy
12497
- msgid "Apply New Photodesc"
12498
- msgstr "Super View Fotos"
12499
-
12500
- #: wppa-settings-autosave.php:6290
12501
- msgid "Apply New photo description on all photos in the system."
12502
- msgstr ""
12503
-
12504
- #: wppa-settings-autosave.php:6302
12505
- msgid "Append to photodesc"
12506
- msgstr ""
12507
-
12508
- #: wppa-settings-autosave.php:6303
12509
- #, fuzzy
12510
- msgid "Append this text to all photo descriptions."
12511
- msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
12512
-
12513
- #: wppa-settings-autosave.php:6317
12514
- msgid "Remove from photodesc"
12515
- msgstr ""
12516
-
12517
- #: wppa-settings-autosave.php:6318
12518
- #, fuzzy
12519
- msgid "Remove this text from all photo descriptions."
12520
- msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
12521
-
12522
- #: wppa-settings-autosave.php:6332
12523
- #, fuzzy
12524
- msgid "Remove empty albums"
12525
- msgstr "--- die zuletzt hinzugefügten Alben ---"
12526
-
12527
- #: wppa-settings-autosave.php:6333
12528
- msgid "Removes albums that are not used."
12529
- msgstr ""
12530
-
12531
- #: wppa-settings-autosave.php:6345
12532
- msgid "Remove file-ext"
12533
- msgstr ""
12534
-
12535
- #: wppa-settings-autosave.php:6346
12536
- msgid "Remove possible file extension from photo name."
12537
- msgstr ""
12538
-
12539
- #: wppa-settings-autosave.php:6347
12540
- msgid ""
12541
- "This may be required for old photos, uploaded when the option in Table IX-D3 "
12542
- "was not yet available/selected."
12543
- msgstr ""
12544
-
12545
- #: wppa-settings-autosave.php:6358
12546
- msgid "Re-add file-ext"
12547
- msgstr ""
12548
-
12549
- #: wppa-settings-autosave.php:6359
12550
- msgid "Revert the <i>Remove file-ext</i> action."
12551
- msgstr ""
12552
-
12553
- #: wppa-settings-autosave.php:6371
12554
- msgid "Watermark all"
12555
- msgstr ""
12556
-
12557
- #: wppa-settings-autosave.php:6372
12558
- msgid "Apply watermark according to current settings to all photos."
12559
- msgstr ""
12560
-
12561
- #: wppa-settings-autosave.php:6373
12562
- msgid "See Table IX_F for the current watermark settings"
12563
- msgstr ""
12564
-
12565
- #: wppa-settings-autosave.php:6384
12566
- #, fuzzy
12567
- msgid "Create all autopages"
12568
- msgstr "Das Album konnte nicht erstellt werden."
12569
-
12570
- #: wppa-settings-autosave.php:6385
12571
- msgid "Create all the pages to display slides individually."
12572
- msgstr ""
12573
-
12574
- #: wppa-settings-autosave.php:6386 wppa-settings-autosave.php:6400
12575
- msgid "See also Table IV-A10."
12576
- msgstr ""
12577
-
12578
- #: wppa-settings-autosave.php:6387
12579
- msgid ""
12580
- "Make sure you have a custom menu and the \"Automatically add new top-level "
12581
- "pages to this menu\" box UNticked!!"
12582
- msgstr ""
12583
-
12584
- #: wppa-settings-autosave.php:6398
12585
- #, fuzzy
12586
- msgid "Delete all autopages"
12587
- msgstr "Das Album konnte nicht erstellt werden."
12588
-
12589
- #: wppa-settings-autosave.php:6399
12590
- msgid "Delete all the pages to display slides individually."
12591
- msgstr ""
12592
-
12593
- #: wppa-settings-autosave.php:6412
12594
- msgid "Leading zeroes"
12595
- msgstr ""
12596
-
12597
- #: wppa-settings-autosave.php:6413
12598
- msgid "If photoname numeric, add leading zeros"
12599
- msgstr ""
12600
-
12601
- #: wppa-settings-autosave.php:6414
12602
- msgid ""
12603
- "You can extend the name with leading zeros, so alphabetic sort becomes equal "
12604
- "to numeric sort order."
12605
- msgstr ""
12606
-
12607
- #: wppa-settings-autosave.php:6417
12608
- msgid "Total chars"
12609
- msgstr ""
12610
-
12611
- #: wppa-settings-autosave.php:6426
12612
- msgid "Add GPX tag"
12613
- msgstr ""
12614
-
12615
- #: wppa-settings-autosave.php:6427
12616
- msgid "Make sure photos with gpx data have a Gpx tag"
12617
- msgstr ""
12618
-
12619
- #: wppa-settings-autosave.php:6440 wppa-settings-autosave.php:7275
12620
- msgid "Optimize files"
12621
- msgstr ""
12622
-
12623
- #: wppa-settings-autosave.php:6441
12624
- msgid "Optimize with EWWW image optimizer"
12625
- msgstr ""
12626
-
12627
- #: wppa-settings-autosave.php:6454
12628
- #, fuzzy
12629
- msgid "Edit tag"
12630
- msgstr "Foto bearbeiten"
12631
-
12632
- #: wppa-settings-autosave.php:6455
12633
- msgid "Globally change a tagname."
12634
- msgstr ""
12635
-
12636
- #: wppa-settings-autosave.php:6461
12637
- #, fuzzy
12638
- msgid "-select a tag-"
12639
- msgstr "Bitte wähle Album"
12640
-
12641
- #: wppa-settings-autosave.php:6467
12642
- msgid "Tag:"
12643
- msgstr ""
12644
-
12645
- #: wppa-settings-autosave.php:6468
12646
- msgid "Change to:"
12647
- msgstr ""
12648
-
12649
- #: wppa-settings-autosave.php:6477
12650
- msgid "Synchronize Cloudinary"
12651
- msgstr ""
12652
-
12653
- #: wppa-settings-autosave.php:6478
12654
- msgid "Removes/adds images in the cloud."
12655
- msgstr ""
12656
-
12657
- #: wppa-settings-autosave.php:6479
12658
- msgid "Removes old images and verifies/adds new images to Cloudinary."
12659
- msgstr ""
12660
-
12661
- #: wppa-settings-autosave.php:6480
12662
- msgid "See Table IX-K4.7 for the configured lifetime."
12663
- msgstr ""
12664
-
12665
- #: wppa-settings-autosave.php:6491
12666
- msgid "Fix tags"
12667
- msgstr ""
12668
-
12669
- #: wppa-settings-autosave.php:6492
12670
- msgid "Make sure photo tags format is uptodate"
12671
- msgstr ""
12672
-
12673
- #: wppa-settings-autosave.php:6493
12674
- msgid "Fixes tags to be conform current database rules."
12675
- msgstr ""
12676
-
12677
- #: wppa-settings-autosave.php:6504
12678
- msgid "Fix cats"
12679
- msgstr ""
12680
-
12681
- #: wppa-settings-autosave.php:6505
12682
- msgid "Make sure album cats format is uptodate"
12683
- msgstr ""
12684
-
12685
- #: wppa-settings-autosave.php:6506
12686
- msgid "Fixes cats to be conform current database rules."
12687
- msgstr ""
12688
-
12689
- #: wppa-settings-autosave.php:6532
12690
- #, fuzzy
12691
- msgid "Listings"
12692
- msgstr "Einstellungen"
12693
-
12694
- #: wppa-settings-autosave.php:6534
12695
- msgid "List Logfile"
12696
- msgstr ""
12697
-
12698
- #: wppa-settings-autosave.php:6535
12699
- msgid "Show the content of wppa+ (error) log."
12700
- msgstr ""
12701
-
12702
- #: wppa-settings-autosave.php:6539
12703
- msgid "Purge logfile"
12704
- msgstr ""
12705
-
12706
- #: wppa-settings-autosave.php:6548
12707
- #, fuzzy
12708
- msgid "List Ratings"
12709
- msgstr "Bewertung: %s"
12710
-
12711
- #: wppa-settings-autosave.php:6549
12712
- #, fuzzy
12713
- msgid "Show the most recent ratings."
12714
- msgstr "--- Die zuletzt hochgeladenen Fotos---"
12715
-
12716
- #: wppa-settings-autosave.php:6562
12717
- msgid "List Index"
12718
- msgstr ""
12719
-
12720
- #: wppa-settings-autosave.php:6563
12721
- msgid "Show the content if the index table."
12722
- msgstr ""
12723
-
12724
- #: wppa-settings-autosave.php:6567
12725
- msgid "Start at text:"
12726
- msgstr ""
12727
-
12728
- #: wppa-settings-autosave.php:6577
12729
- msgid "List active sessions"
12730
- msgstr ""
12731
-
12732
- #: wppa-settings-autosave.php:6578
12733
- msgid "Show the content of the sessions table."
12734
- msgstr ""
12735
-
12736
- #: wppa-settings-autosave.php:6611
12737
- msgid "Table IX:"
12738
- msgstr ""
12739
-
12740
- #: wppa-settings-autosave.php:6611
12741
- msgid "Miscellaneous:"
12742
- msgstr ""
12743
-
12744
- #: wppa-settings-autosave.php:6612
12745
- msgid "This table lists all settings that do not fit into an other table"
12746
- msgstr ""
12747
-
12748
- #: wppa-settings-autosave.php:6630
12749
- msgid "Internal engine related settings"
12750
- msgstr ""
12751
-
12752
- #: wppa-settings-autosave.php:6632
12753
- msgid "WPPA+ Filter priority"
12754
- msgstr ""
12755
-
12756
- #: wppa-settings-autosave.php:6633
12757
- msgid "Sets the priority of the wppa+ content filter."
12758
- msgstr ""
12759
-
12760
- #: wppa-settings-autosave.php:6634 wppa-settings-autosave.php:6643
12761
- msgid ""
12762
- "If you encounter conflicts with the theme or other plugins, increasing this "
12763
- "value sometimes helps. Use with great care!"
12764
- msgstr ""
12765
-
12766
- #: wppa-settings-autosave.php:6641
12767
- msgid "Do_shortcode priority"
12768
- msgstr ""
12769
-
12770
- #: wppa-settings-autosave.php:6642
12771
- msgid "Sets the priority of the do_shortcode() content filter."
12772
- msgstr ""
12773
-
12774
- #: wppa-settings-autosave.php:6650
12775
- #, fuzzy
12776
- msgid "WPPA shortcode at Filter priority"
12777
- msgstr "Speed Ein-Ausblenden"
12778
-
12779
- #: wppa-settings-autosave.php:6651
12780
- msgid "Execute shortcode expansion on filter priority in posts and pages."
12781
- msgstr ""
12782
-
12783
- #: wppa-settings-autosave.php:6652 wppa-settings-autosave.php:6661
12784
- msgid "Use to fix certain layout problems"
12785
- msgstr ""
12786
-
12787
- #: wppa-settings-autosave.php:6659
12788
- msgid "WPPA shortcode at Filter priority widget"
12789
- msgstr ""
12790
-
12791
- #: wppa-settings-autosave.php:6660
12792
- msgid "Execute shortcode expansion on filter priority in widgets."
12793
- msgstr ""
12794
-
12795
- #: wppa-settings-autosave.php:6668
12796
- msgid "JPG image quality"
12797
- msgstr ""
12798
-
12799
- #: wppa-settings-autosave.php:6669
12800
- msgid "The jpg quality when photos are downsized"
12801
- msgstr ""
12802
-
12803
- #: wppa-settings-autosave.php:6670
12804
- msgid "The higher the number the better the quality but the larger the file"
12805
- msgstr ""
12806
-
12807
- #: wppa-settings-autosave.php:6671
12808
- msgid "Possible values 20..100"
12809
- msgstr ""
12810
-
12811
- #: wppa-settings-autosave.php:6678
12812
- msgid "Allow WPPA+ Debugging"
12813
- msgstr ""
12814
-
12815
- #: wppa-settings-autosave.php:6679
12816
- msgid "Allow the use of &amp;debug=.. in urls to this site."
12817
- msgstr ""
12818
-
12819
- #: wppa-settings-autosave.php:6680
12820
- msgid ""
12821
- "If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
12822
- "site will generate the display of special WPPA+ diagnostics, as well as php "
12823
- "warnings"
12824
- msgstr ""
12825
-
12826
- #: wppa-settings-autosave.php:6687
12827
- msgid "Auto continue"
12828
- msgstr ""
12829
-
12830
- #: wppa-settings-autosave.php:6688
12831
- msgid "Continue automatic after time out"
12832
- msgstr ""
12833
-
12834
- #: wppa-settings-autosave.php:6689
12835
- msgid ""
12836
- "If checked, an attempt will be made to restart an admin process when the "
12837
- "time is out."
12838
- msgstr ""
12839
-
12840
- #: wppa-settings-autosave.php:6697
12841
- msgid "Set max execution time here."
12842
- msgstr ""
12843
-
12844
- #: wppa-settings-autosave.php:6698
12845
- msgid ""
12846
- "If your php config does not properly set the max execution time, you can set "
12847
- "it here. Seconds, 0 means do not change."
12848
- msgstr ""
12849
-
12850
- #: wppa-settings-autosave.php:6699
12851
- msgid "A safe value is 45 in most cases"
12852
- msgstr ""
12853
-
12854
- #: wppa-settings-autosave.php:6700
12855
- #, php-format
12856
- msgid "The PHP setting max_execution_time is set to %s."
12857
- msgstr ""
12858
-
12859
- #: wppa-settings-autosave.php:6708
12860
- msgid "Feed use thumb"
12861
- msgstr ""
12862
-
12863
- #: wppa-settings-autosave.php:6709
12864
- msgid "Feeds use thumbnail pictures always."
12865
- msgstr ""
12866
-
12867
- #: wppa-settings-autosave.php:6717
12868
- msgid "Enable <i>in-line</i> settings"
12869
- msgstr ""
12870
-
12871
- #: wppa-settings-autosave.php:6718
12872
- msgid "Activates shortcode [wppa_set][/wppa_set]."
12873
- msgstr ""
12874
-
12875
- #: wppa-settings-autosave.php:6719
12876
- msgid ""
12877
- "Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
12878
- msgstr ""
12879
-
12880
- #: wppa-settings-autosave.php:6720
12881
- msgid ""
12882
- "Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
12883
- "sets the thumbnail type to vertical masonry style"
12884
- msgstr ""
12885
-
12886
- #: wppa-settings-autosave.php:6721
12887
- msgid "Do not forget to reset with [wppa_set][/wppa_set]"
12888
- msgstr ""
12889
-
12890
- #: wppa-settings-autosave.php:6722
12891
- msgid "Use with great care! There is no check on validity of values!"
12892
- msgstr ""
12893
-
12894
- #: wppa-settings-autosave.php:6729
12895
- msgid "Runtime modifyable settings"
12896
- msgstr ""
12897
-
12898
- #: wppa-settings-autosave.php:6730
12899
- msgid "The setting slugs that may be altered using [wppa_set] shortcode."
12900
- msgstr ""
12901
-
12902
- #: wppa-settings-autosave.php:6738
12903
- #, fuzzy
12904
- msgid "Use translations"
12905
- msgstr ""
12906
- ". </i>Dieses Plugin wird dazu führen, das wppa+ nicht richtig funktioniert ."
12907
-
12908
- #: wppa-settings-autosave.php:6739
12909
- msgid "If UNticked, wppa is in english always."
12910
- msgstr ""
12911
-
12912
- #: wppa-settings-autosave.php:6740
12913
- msgid "Used to bypass the loading of any language file for wppa."
12914
- msgstr ""
12915
-
12916
- #: wppa-settings-autosave.php:6748
12917
- msgid "WPPA+ Admin related miscellaneous settings"
12918
- msgstr ""
12919
-
12920
- #: wppa-settings-autosave.php:6750
12921
- msgid "Allow HTML"
12922
- msgstr ""
12923
-
12924
- #: wppa-settings-autosave.php:6751
12925
- msgid "Allow HTML in album and photo descriptions."
12926
- msgstr ""
12927
-
12928
- #: wppa-settings-autosave.php:6752
12929
- msgid ""
12930
- "If checked: html is allowed. WARNING: No checks on syntax, it is your own "
12931
- "responsability to close tags properly!"
12932
- msgstr ""
12933
-
12934
- #: wppa-settings-autosave.php:6759
12935
- msgid "Check tag balance"
12936
- msgstr ""
12937
-
12938
- #: wppa-settings-autosave.php:6760
12939
- msgid "Check if the HTML tags are properly closed: \"balanced\"."
12940
- msgstr ""
12941
-
12942
- #: wppa-settings-autosave.php:6761
12943
- msgid ""
12944
- "If the HTML tags in an album or a photo description are not in balance, the "
12945
- "description is not updated, an errormessage is displayed"
12946
- msgstr ""
12947
-
12948
- #: wppa-settings-autosave.php:6768
12949
- msgid "Use WP editor"
12950
- msgstr ""
12951
-
12952
- #: wppa-settings-autosave.php:6769
12953
- msgid "Use the wp editor for multiline text fields."
12954
- msgstr ""
12955
-
12956
- #: wppa-settings-autosave.php:6777
12957
- msgid "Album sel hierarchic"
12958
- msgstr ""
12959
-
12960
- #: wppa-settings-autosave.php:6778
12961
- msgid "Show albums with (grand)parents in selection lists."
12962
- msgstr ""
12963
-
12964
- #: wppa-settings-autosave.php:6786
12965
- msgid "Page sel hierarchic"
12966
- msgstr ""
12967
-
12968
- #: wppa-settings-autosave.php:6787
12969
- msgid "Show pages with (grand)parents in selection lists."
12970
- msgstr ""
12971
-
12972
- #: wppa-settings-autosave.php:6796
12973
- msgid "Photo admin page size"
12974
- msgstr ""
12975
-
12976
- #: wppa-settings-autosave.php:6797
12977
- msgid ""
12978
- "The number of photos per page on the <br/>Edit Album -> Manage photos and "
12979
- "Edit Photos admin pages."
12980
- msgstr ""
12981
-
12982
- #: wppa-settings-autosave.php:6807
12983
- #, fuzzy
12984
- msgid "Comment admin page size"
12985
- msgstr "%d Kommentare"
12986
-
12987
- #: wppa-settings-autosave.php:6808
12988
- msgid "The number of comments per page on the Comments admin pages."
12989
- msgstr ""
12990
-
12991
- #: wppa-settings-autosave.php:6818
12992
- msgid "Geo info edit"
12993
- msgstr ""
12994
-
12995
- #: wppa-settings-autosave.php:6819
12996
- msgid "Lattitude and longitude may be edited in photo admin."
12997
- msgstr ""
12998
-
12999
- #: wppa-settings-autosave.php:6827
13000
- msgid "Admin bar menu admin"
13001
- msgstr ""
13002
-
13003
- #: wppa-settings-autosave.php:6828
13004
- msgid "Show menu on admin bar on admin pages."
13005
- msgstr ""
13006
-
13007
- #: wppa-settings-autosave.php:6836
13008
- msgid "Admin bar menu frontend"
13009
- msgstr ""
13010
-
13011
- #: wppa-settings-autosave.php:6837
13012
- msgid "Show menu on admin bar on frontend pages."
13013
- msgstr ""
13014
-
13015
- #: wppa-settings-autosave.php:6845
13016
- msgid "Add shortcode to posts"
13017
- msgstr ""
13018
-
13019
- #: wppa-settings-autosave.php:6846
13020
- msgid "Add a shortcode to the end of all posts."
13021
- msgstr ""
13022
-
13023
- #: wppa-settings-autosave.php:6854
13024
- msgid "Shortcode to add"
13025
- msgstr ""
13026
-
13027
- #: wppa-settings-autosave.php:6855
13028
- msgid "The shortcode to be added to the posts."
13029
- msgstr ""
13030
-
13031
- #: wppa-settings-autosave.php:6863
13032
- msgid "We use Scripts"
13033
- msgstr ""
13034
-
13035
- #: wppa-settings-autosave.php:6864
13036
- msgid "Use scripting syntax in shortcode generator."
13037
- msgstr ""
13038
-
13039
- #: wppa-settings-autosave.php:6865
13040
- msgid ""
13041
- "This setting defines if the shortcode generator outputs old style script "
13042
- "tags or new style shortcodes."
13043
- msgstr ""
13044
-
13045
- #: wppa-settings-autosave.php:6873
13046
- msgid "Import page prieviews"
13047
- msgstr ""
13048
-
13049
- #: wppa-settings-autosave.php:6874
13050
- msgid "Show thumbnail previews in import admin page."
13051
- msgstr ""
13052
-
13053
- #: wppa-settings-autosave.php:6882
13054
- #, fuzzy
13055
- msgid "Upload audiostub"
13056
- msgstr "Upload Foto"
13057
-
13058
- #: wppa-settings-autosave.php:6883
13059
- msgid "Upload a new audio stub file"
13060
- msgstr ""
13061
-
13062
- #: wppa-settings-autosave.php:6887
13063
- #, fuzzy
13064
- msgid "Upload audio stub image"
13065
- msgstr "Hochgeladenen datei ist kein Bild"
13066
-
13067
- #: wppa-settings-autosave.php:6892
13068
- msgid "Confirm create"
13069
- msgstr ""
13070
-
13071
- #: wppa-settings-autosave.php:6893
13072
- msgid "Display confirmation dialog before creating album."
13073
- msgstr ""
13074
-
13075
- #: wppa-settings-autosave.php:6901
13076
- msgid "Import source root"
13077
- msgstr ""
13078
-
13079
- #: wppa-settings-autosave.php:6902
13080
- msgid "Specify the highest level in the filesystem where to import from"
13081
- msgstr ""
13082
-
13083
- #: wppa-settings-autosave.php:6919
13084
- msgid "Allow import from WPPA+ source folders"
13085
- msgstr ""
13086
-
13087
- #: wppa-settings-autosave.php:6920
13088
- msgid "Only switch this on if you know what you are doing!"
13089
- msgstr ""
13090
-
13091
- #: wppa-settings-autosave.php:6929
13092
- msgid "SEO related settings"
13093
- msgstr ""
13094
-
13095
- #: wppa-settings-autosave.php:6931
13096
- msgid "Meta on page"
13097
- msgstr ""
13098
-
13099
- #: wppa-settings-autosave.php:6932
13100
- msgid "Meta tags for photos on the page."
13101
- msgstr ""
13102
-
13103
- #: wppa-settings-autosave.php:6933
13104
- msgid ""
13105
- "If checked, the header of the page will contain metatags that refer to "
13106
- "featured photos on the page in the page context."
13107
- msgstr ""
13108
-
13109
- #: wppa-settings-autosave.php:6940
13110
- msgid "Meta all"
13111
- msgstr ""
13112
-
13113
- #: wppa-settings-autosave.php:6941
13114
- #, fuzzy
13115
- msgid "Meta tags for all featured photos."
13116
- msgstr "Ausgewählte Fotos"
13117
-
13118
- #: wppa-settings-autosave.php:6942
13119
- msgid ""
13120
- "If checked, the header of the page will contain metatags that refer to all "
13121
- "featured photo files."
13122
- msgstr ""
13123
-
13124
- #: wppa-settings-autosave.php:6943
13125
- msgid ""
13126
- "If you have many featured photos, you might wish to uncheck this item to "
13127
- "reduce the size of the page header."
13128
- msgstr ""
13129
-
13130
- #: wppa-settings-autosave.php:6950
13131
- msgid "Add og meta tags"
13132
- msgstr ""
13133
-
13134
- #: wppa-settings-autosave.php:6951
13135
- msgid "Add og meta tags to the page header."
13136
- msgstr ""
13137
-
13138
- #: wppa-settings-autosave.php:6954
13139
- msgid ""
13140
- "Turning this off may affect the functionality of social media items in the "
13141
- "share box that rely on open graph tags information."
13142
- msgstr ""
13143
-
13144
- #: wppa-settings-autosave.php:6960
13145
- msgid "Image Alt attribute type"
13146
- msgstr ""
13147
-
13148
- #: wppa-settings-autosave.php:6961
13149
- msgid "Select kind of HTML alt=\"\" content for images."
13150
- msgstr ""
13151
-
13152
- #: wppa-settings-autosave.php:6964
13153
- #, fuzzy
13154
- msgid "photo name"
13155
- msgstr "Bitte gibt den Fotonamen an."
13156
-
13157
- #: wppa-settings-autosave.php:6964
13158
- msgid "name without file-ext"
13159
- msgstr ""
13160
-
13161
- #: wppa-settings-autosave.php:6964
13162
- #, fuzzy
13163
- msgid "set in album admin"
13164
- msgstr "Bitte wähle Album"
13165
-
13166
- #: wppa-settings-autosave.php:6971
13167
- msgid "New Album and New Photo related miscellaneous settings"
13168
- msgstr ""
13169
-
13170
- #: wppa-settings-autosave.php:6974
13171
- #, fuzzy
13172
- msgid "One hour"
13173
- msgstr "1 Stunde"
13174
-
13175
- #: wppa-settings-autosave.php:6975 wppa-settings-autosave.php:8113
13176
- #, fuzzy
13177
- msgid "One day"
13178
- msgstr "1 Tag"
13179
-
13180
- #: wppa-settings-autosave.php:6976
13181
- #, fuzzy
13182
- msgid "Two days"
13183
- msgstr "Tage"
13184
-
13185
- #: wppa-settings-autosave.php:6977
13186
- msgid "Three days"
13187
- msgstr ""
13188
-
13189
- #: wppa-settings-autosave.php:6978
13190
- #, fuzzy
13191
- msgid "Four days"
13192
- msgstr "Tage"
13193
-
13194
- #: wppa-settings-autosave.php:6979
13195
- #, fuzzy
13196
- msgid "Five days"
13197
- msgstr "Tage"
13198
-
13199
- #: wppa-settings-autosave.php:6980
13200
- #, fuzzy
13201
- msgid "Six days"
13202
- msgstr "Tage"
13203
-
13204
- #: wppa-settings-autosave.php:6981 wppa-settings-autosave.php:8114
13205
- #, fuzzy
13206
- msgid "One week"
13207
- msgstr "1 Woche"
13208
-
13209
- #: wppa-settings-autosave.php:6982
13210
- msgid "Eight days"
13211
- msgstr ""
13212
-
13213
- #: wppa-settings-autosave.php:6983
13214
- #, fuzzy
13215
- msgid "Nine days"
13216
- msgstr "Tage"
13217
-
13218
- #: wppa-settings-autosave.php:6984
13219
- #, fuzzy
13220
- msgid "Ten days"
13221
- msgstr "Tage"
13222
-
13223
- #: wppa-settings-autosave.php:6985
13224
- #, fuzzy
13225
- msgid "Two weeks"
13226
- msgstr "Wochen"
13227
-
13228
- #: wppa-settings-autosave.php:6986
13229
- #, fuzzy
13230
- msgid "Three weeks"
13231
- msgstr "Wochen"
13232
-
13233
- #: wppa-settings-autosave.php:6987
13234
- #, fuzzy
13235
- msgid "Four weeks"
13236
- msgstr "Wochen"
13237
-
13238
- #: wppa-settings-autosave.php:6988 wppa-settings-autosave.php:8115
13239
- #, fuzzy
13240
- msgid "One month"
13241
- msgstr "1 Monat"
13242
-
13243
- #: wppa-settings-autosave.php:7007
13244
- msgid "Maximum time an album is indicated as New"
13245
- msgstr ""
13246
-
13247
- #: wppa-settings-autosave.php:7015
13248
- #, fuzzy
13249
- msgid "New Photo"
13250
- msgstr "Nächstes Foto"
13251
-
13252
- #: wppa-settings-autosave.php:7016
13253
- msgid "Maximum time a photo is indicated as New"
13254
- msgstr ""
13255
-
13256
- #: wppa-settings-autosave.php:7024
13257
- #, fuzzy
13258
- msgid "Modified Album"
13259
- msgstr "Das Album konnte nicht erstellt werden."
13260
-
13261
- #: wppa-settings-autosave.php:7025
13262
- msgid "Maximum time an album is indicated as Modified"
13263
- msgstr ""
13264
-
13265
- #: wppa-settings-autosave.php:7033
13266
- #, fuzzy
13267
- msgid "Modified Photo"
13268
- msgstr "Moderiere Fotos"
13269
-
13270
- #: wppa-settings-autosave.php:7034
13271
- msgid "Maximum time a photo is indicated as Modofied"
13272
- msgstr ""
13273
-
13274
- #: wppa-settings-autosave.php:7044
13275
- msgid "Orange"
13276
- msgstr ""
13277
-
13278
- #: wppa-settings-autosave.php:7045
13279
- msgid "Yellow"
13280
- msgstr ""
13281
-
13282
- #: wppa-settings-autosave.php:7048
13283
- msgid "Purple"
13284
- msgstr ""
13285
-
13286
- #: wppa-settings-autosave.php:7049
13287
- msgid "Black/white"
13288
- msgstr ""
13289
-
13290
- #: wppa-settings-autosave.php:7061
13291
- #, fuzzy
13292
- msgid "New label"
13293
- msgstr "Das Album konnte nicht erstellt werden."
13294
-
13295
- #: wppa-settings-autosave.php:7062
13296
- msgid "Specify the \"New\" indicator details."
13297
- msgstr ""
13298
-
13299
- #: wppa-settings-autosave.php:7063 wppa-settings-autosave.php:7074
13300
- msgid "If you use qTranslate, the text may be multilingual."
13301
- msgstr ""
13302
-
13303
- #: wppa-settings-autosave.php:7066 wppa-settings-autosave.php:7077
13304
- msgid "Label text"
13305
- msgstr ""
13306
-
13307
- #: wppa-settings-autosave.php:7067 wppa-settings-autosave.php:7078
13308
- #, fuzzy
13309
- msgid "Label color"
13310
- msgstr "QR Code"
13311
-
13312
- #: wppa-settings-autosave.php:7072
13313
- msgid "Modified label"
13314
- msgstr ""
13315
-
13316
- #: wppa-settings-autosave.php:7073
13317
- msgid "Specify the \"Modified\" indicator details."
13318
- msgstr ""
13319
-
13320
- #: wppa-settings-autosave.php:7083
13321
- msgid "Limit LasTen New"
13322
- msgstr ""
13323
-
13324
- #: wppa-settings-autosave.php:7084
13325
- msgid "Limits the LasTen photos to those that are 'New', or newly modified."
13326
- msgstr ""
13327
-
13328
- #: wppa-settings-autosave.php:7085
13329
- msgid ""
13330
- "If you tick this box and configured the new photo time, you can even limit "
13331
- "the number by the setting in Table I-F7, or set that number to an unlikely "
13332
- "high value."
13333
- msgstr ""
13334
-
13335
- #: wppa-settings-autosave.php:7092
13336
- msgid "LasTen use Modified"
13337
- msgstr ""
13338
-
13339
- #: wppa-settings-autosave.php:7093
13340
- msgid ""
13341
- "Use the time modified rather than time upload for LasTen widget/shortcode."
13342
- msgstr ""
13343
-
13344
- #: wppa-settings-autosave.php:7101
13345
- msgid "Apply Newphoto desc"
13346
- msgstr ""
13347
-
13348
- #: wppa-settings-autosave.php:7102
13349
- msgid "Give each new photo a standard description."
13350
- msgstr ""
13351
-
13352
- #: wppa-settings-autosave.php:7103
13353
- msgid ""
13354
- "If checked, each new photo will get the description (template) as specified "
13355
- "in the next item."
13356
- msgstr ""
13357
-
13358
- #: wppa-settings-autosave.php:7110
13359
- #, fuzzy
13360
- msgid "New photo desc"
13361
- msgstr ""
13362
- "Gebe jedem neuen im Frontend hochgeladen Foto eine standardisierte "
13363
- "Beschreibung."
13364
-
13365
- #: wppa-settings-autosave.php:7111
13366
- msgid "The description (template) to add to a new photo."
13367
- msgstr ""
13368
-
13369
- #: wppa-settings-autosave.php:7112
13370
- #, fuzzy
13371
- msgid "Enter the default description."
13372
- msgstr "Eintragen / ändern der Beschreibung des Albums"
13373
-
13374
- #: wppa-settings-autosave.php:7113
13375
- msgid "If you use html, please check item A-1 of this table."
13376
- msgstr ""
13377
-
13378
- #: wppa-settings-autosave.php:7121
13379
- msgid "New albums are created with this upload limit."
13380
- msgstr ""
13381
-
13382
- #: wppa-settings-autosave.php:7122
13383
- msgid ""
13384
- "Administrators can change the limit settings in the \"Edit Album Information"
13385
- "\" admin page."
13386
- msgstr ""
13387
-
13388
- #: wppa-settings-autosave.php:7139
13389
- msgid "Default parent"
13390
- msgstr ""
13391
-
13392
- #: wppa-settings-autosave.php:7140
13393
- msgid "The parent album of new albums."
13394
- msgstr ""
13395
-
13396
- #: wppa-settings-autosave.php:7157
13397
- msgid "Default parent always"
13398
- msgstr ""
13399
-
13400
- #: wppa-settings-autosave.php:7158
13401
- msgid ""
13402
- "The parent album of new albums is always the default, except for "
13403
- "administrators."
13404
- msgstr ""
13405
-
13406
- #: wppa-settings-autosave.php:7166
13407
- msgid "Show album full"
13408
- msgstr ""
13409
-
13410
- #: wppa-settings-autosave.php:7167
13411
- msgid "Show the Upload limit reached message if appropriate."
13412
- msgstr ""
13413
-
13414
- #: wppa-settings-autosave.php:7175
13415
- #, fuzzy
13416
- msgid "Grant an album"
13417
- msgstr "Das Album konnte nicht erstellt werden."
13418
-
13419
- #: wppa-settings-autosave.php:7176
13420
- msgid "Create an album for each user logging in."
13421
- msgstr ""
13422
-
13423
- #: wppa-settings-autosave.php:7184
13424
- #, fuzzy
13425
- msgid "Grant album name"
13426
- msgstr ""
13427
- "Trage hier Schriftnamen, Größe, Farbe und Breite für die Album Cover Titel "
13428
- "ein."
13429
-
13430
- #: wppa-settings-autosave.php:7185
13431
- msgid "The name to be used for the album."
13432
- msgstr ""
13433
-
13434
- #: wppa-settings-autosave.php:7188
13435
- #, fuzzy
13436
- msgid "Login name"
13437
- msgstr "Dein Name:"
13438
-
13439
- #: wppa-settings-autosave.php:7188 wppa-upldr-widget.php:181
13440
- msgid "Display name"
13441
- msgstr ""
13442
-
13443
- #: wppa-settings-autosave.php:7188
13444
- msgid "Id"
13445
- msgstr ""
13446
-
13447
- #: wppa-settings-autosave.php:7188
13448
- msgid "Firstname Lastname"
13449
- msgstr ""
13450
-
13451
- #: wppa-settings-autosave.php:7195
13452
- msgid "Grant parent"
13453
- msgstr ""
13454
-
13455
- #: wppa-settings-autosave.php:7196
13456
- msgid "The parent album of the auto created albums."
13457
- msgstr ""
13458
-
13459
- #: wppa-settings-autosave.php:7213
13460
- #, fuzzy
13461
- msgid "Max user albums"
13462
- msgstr ""
13463
- "Du kannst verschiedene Alben erstellen, die Fotos und auch Unter-Alben zur "
13464
- "gleichen Zeit enthalten."
13465
-
13466
- #: wppa-settings-autosave.php:7214
13467
- msgid "The max number of albums a user can create."
13468
- msgstr ""
13469
-
13470
- #: wppa-settings-autosave.php:7215
13471
- msgid ""
13472
- "The maximum number of albums a user can create when he is not admin and "
13473
- "owner only is active"
13474
- msgstr ""
13475
-
13476
- #: wppa-settings-autosave.php:7216
13477
- msgid "A number of 0 means No limit"
13478
- msgstr ""
13479
-
13480
- #: wppa-settings-autosave.php:7223
13481
- #, fuzzy
13482
- msgid "Default photo name"
13483
- msgstr "Standardfotoalbum für"
13484
-
13485
- #: wppa-settings-autosave.php:7224
13486
- msgid "Select the way the name of a new uploaded photo should be determined."
13487
- msgstr ""
13488
-
13489
- #: wppa-settings-autosave.php:7227
13490
- msgid "Filename"
13491
- msgstr ""
13492
-
13493
- #: wppa-settings-autosave.php:7228
13494
- msgid "Filename without extension"
13495
- msgstr ""
13496
-
13497
- #: wppa-settings-autosave.php:7229
13498
- msgid "IPTC Tag 2#005 (Graphic name)"
13499
- msgstr ""
13500
-
13501
- #: wppa-settings-autosave.php:7230
13502
- msgid "IPTC Tag 2#120 (Caption)"
13503
- msgstr ""
13504
-
13505
- #: wppa-settings-autosave.php:7231
13506
- msgid "No name at all"
13507
- msgstr ""
13508
-
13509
- #: wppa-settings-autosave.php:7239
13510
- #, fuzzy
13511
- msgid "Default coverphoto"
13512
- msgstr "Titelfoto ansehen"
13513
-
13514
- #: wppa-settings-autosave.php:7240
13515
- msgid "Name of photofile to become cover image"
13516
- msgstr ""
13517
-
13518
- #: wppa-settings-autosave.php:7241
13519
- msgid ""
13520
- "If you name a photofile like this setting before upload, it will become the "
13521
- "coverimage automaticly."
13522
- msgstr ""
13523
-
13524
- #: wppa-settings-autosave.php:7248
13525
- msgid "Copy Timestamp"
13526
- msgstr ""
13527
-
13528
- #: wppa-settings-autosave.php:7249
13529
- msgid "Copy timestamp when copying photo."
13530
- msgstr ""
13531
-
13532
- #: wppa-settings-autosave.php:7250
13533
- msgid "If checked, the copied photo is not \"new\""
13534
- msgstr ""
13535
-
13536
- #: wppa-settings-autosave.php:7257
13537
- msgid "Copy Owner"
13538
- msgstr ""
13539
-
13540
- #: wppa-settings-autosave.php:7258
13541
- msgid "Copy the owner when copying photo."
13542
- msgstr ""
13543
-
13544
- #: wppa-settings-autosave.php:7266
13545
- msgid "FE Albums public"
13546
- msgstr ""
13547
-
13548
- #: wppa-settings-autosave.php:7267
13549
- msgid "Frontend created albums are --- public ---"
13550
- msgstr ""
13551
-
13552
- #: wppa-settings-autosave.php:7276
13553
- msgid "Optimize image files right after upload/import"
13554
- msgstr ""
13555
-
13556
- #: wppa-settings-autosave.php:7277
13557
- msgid "This option requires the plugin EWWW Image Optimizer to be activated"
13558
- msgstr ""
13559
-
13560
- #: wppa-settings-autosave.php:7284
13561
- #, fuzzy
13562
- msgid "Default album linktype"
13563
- msgstr "Standardfotoalbum für"
13564
-
13565
- #: wppa-settings-autosave.php:7285
13566
- msgid "The album linktype for new albums"
13567
- msgstr ""
13568
-
13569
- #: wppa-settings-autosave.php:7304
13570
- msgid "Search Albums and Photos related settings"
13571
- msgstr ""
13572
-
13573
- #: wppa-settings-autosave.php:7306
13574
- #, fuzzy
13575
- msgid "Search page"
13576
- msgstr "Suche"
13577
-
13578
- #: wppa-settings-autosave.php:7307
13579
- msgid "Display the search results on page."
13580
- msgstr ""
13581
-
13582
- #: wppa-settings-autosave.php:7308
13583
- #, php-format
13584
- msgid ""
13585
- "Select the page to be used to display search results. The page MUST contain "
13586
- "%%wppa%% or [wppa][/wppa]."
13587
- msgstr ""
13588
-
13589
- #: wppa-settings-autosave.php:7309
13590
- msgid "You may give it the title \"Search results\" or something alike."
13591
- msgstr ""
13592
-
13593
- #: wppa-settings-autosave.php:7310
13594
- msgid ""
13595
- "Or you ou may use the standard page on which you display the generic album."
13596
- msgstr ""
13597
-
13598
- #: wppa-settings-autosave.php:7343
13599
- msgid "Exclude separate"
13600
- msgstr ""
13601
-
13602
- #: wppa-settings-autosave.php:7344
13603
- #, fuzzy
13604
- msgid "Do not search 'separate' albums."
13605
- msgstr "Das Album konnte nicht erstellt werden."
13606
-
13607
- #: wppa-settings-autosave.php:7345
13608
- msgid ""
13609
- "When checked, albums (and photos in them) that have the parent set to --- "
13610
- "separate --- will be excluded from being searched."
13611
- msgstr ""
13612
-
13613
- #: wppa-settings-autosave.php:7346
13614
- msgid ""
13615
- "Except when you start searching in a 'saparate' album, with the \"search in "
13616
- "current section\" box ticked."
13617
- msgstr ""
13618
-
13619
- #: wppa-settings-autosave.php:7353
13620
- msgid "Include tags"
13621
- msgstr ""
13622
-
13623
- #: wppa-settings-autosave.php:7354
13624
- msgid "Do also search the photo tags."
13625
- msgstr ""
13626
-
13627
- #: wppa-settings-autosave.php:7355
13628
- msgid "When checked, the tags of the photo will also be searched."
13629
- msgstr ""
13630
-
13631
- #: wppa-settings-autosave.php:7362
13632
- #, fuzzy
13633
- msgid "Include categories"
13634
- msgstr "Kategorien:"
13635
-
13636
- #: wppa-settings-autosave.php:7363
13637
- msgid "Do also search the album categories."
13638
- msgstr ""
13639
-
13640
- #: wppa-settings-autosave.php:7364
13641
- msgid "When checked, the categories of the album will also be searched."
13642
- msgstr ""
13643
-
13644
- #: wppa-settings-autosave.php:7371
13645
- #, fuzzy
13646
- msgid "Include comments"
13647
- msgstr "%d Kommentare"
13648
-
13649
- #: wppa-settings-autosave.php:7372
13650
- msgid "Do also search the comments on photos."
13651
- msgstr ""
13652
-
13653
- #: wppa-settings-autosave.php:7373
13654
- msgid "When checked, the comments of the photos will also be searched."
13655
- msgstr ""
13656
-
13657
- #: wppa-settings-autosave.php:7380
13658
- #, fuzzy
13659
- msgid "Photos only"
13660
- msgstr "Foto"
13661
-
13662
- #: wppa-settings-autosave.php:7381
13663
- msgid "Search for photos only."
13664
- msgstr ""
13665
-
13666
- #: wppa-settings-autosave.php:7382
13667
- msgid "When checked, only photos will be searched for."
13668
- msgstr ""
13669
-
13670
- #: wppa-settings-autosave.php:7397
13671
- msgid "Max albums found"
13672
- msgstr ""
13673
-
13674
- #: wppa-settings-autosave.php:7398
13675
- msgid "The maximum number of albums to be displayed."
13676
- msgstr ""
13677
-
13678
- #: wppa-settings-autosave.php:7406
13679
- #, fuzzy
13680
- msgid "Max photos found"
13681
- msgstr "Thumbnail Fotos verwandte Einstellungen"
13682
-
13683
- #: wppa-settings-autosave.php:7407
13684
- msgid "The maximum number of photos to be displayed."
13685
- msgstr ""
13686
-
13687
- #: wppa-settings-autosave.php:7415
13688
- msgid "Tags OR only"
13689
- msgstr ""
13690
-
13691
- #: wppa-settings-autosave.php:7416
13692
- msgid "No and / or buttons"
13693
- msgstr ""
13694
-
13695
- #: wppa-settings-autosave.php:7417
13696
- msgid ""
13697
- "Hide the and/or radiobuttons and do the or method in the multitag widget and "
13698
- "shortcode."
13699
- msgstr ""
13700
-
13701
- #: wppa-settings-autosave.php:7424
13702
- msgid "Tags add Inverse"
13703
- msgstr ""
13704
-
13705
- #: wppa-settings-autosave.php:7425
13706
- #, fuzzy
13707
- msgid "Add a checkbox to invert the selection."
13708
- msgstr "--- gelöscht ---"
13709
-
13710
- #: wppa-settings-autosave.php:7426
13711
- msgid "Adds an Invert (NOT) checkbox on the multitag widget and shortcode."
13712
- msgstr ""
13713
-
13714
- #: wppa-settings-autosave.php:7433
13715
- msgid "Floating searchtoken"
13716
- msgstr ""
13717
-
13718
- #: wppa-settings-autosave.php:7434
13719
- msgid "A match need not start at the first char."
13720
- msgstr ""
13721
-
13722
- #: wppa-settings-autosave.php:7435
13723
- msgid ""
13724
- "A match is found while searching also when the entered token is somewhere in "
13725
- "the middle of a word."
13726
- msgstr ""
13727
-
13728
- #: wppa-settings-autosave.php:7436
13729
- msgid "This works in indexed search only!"
13730
- msgstr ""
13731
-
13732
- #: wppa-settings-autosave.php:7443
13733
- #, fuzzy
13734
- msgid "Search results display"
13735
- msgstr "Suchergebnisse für: %s"
13736
-
13737
- #: wppa-settings-autosave.php:7444
13738
- msgid "Select the way the search results should be displayed."
13739
- msgstr ""
13740
-
13741
- #: wppa-settings-autosave.php:7445
13742
- msgid ""
13743
- "If you select anything different from \"Albums and thumbnails\", \"Photos "
13744
- "only\" is assumed (Table IX-E6)."
13745
- msgstr ""
13746
-
13747
- #: wppa-settings-autosave.php:7447
13748
- #, fuzzy
13749
- msgid "Albums and thumbnails"
13750
- msgstr "Anzeigen..."
13751
-
13752
- #: wppa-settings-autosave.php:7447
13753
- #, fuzzy
13754
- msgid "Slideonly slideshow"
13755
- msgstr "Diaschau"
13756
-
13757
- #: wppa-settings-autosave.php:7454
13758
- msgid "Name max length"
13759
- msgstr ""
13760
-
13761
- #: wppa-settings-autosave.php:7455
13762
- msgid "Max length of displayed photonames in supersearch selectionlist"
13763
- msgstr ""
13764
-
13765
- #: wppa-settings-autosave.php:7456 wppa-settings-autosave.php:7465
13766
- msgid ""
13767
- "To limit the length of the selectionlist, enter the number of characters to "
13768
- "show."
13769
- msgstr ""
13770
-
13771
- #: wppa-settings-autosave.php:7463
13772
- msgid "Text max length"
13773
- msgstr ""
13774
-
13775
- #: wppa-settings-autosave.php:7464
13776
- msgid "Max length of displayed photo text in supersearch selectionlist"
13777
- msgstr ""
13778
-
13779
- #: wppa-settings-autosave.php:7472
13780
- #, fuzzy
13781
- msgid "Search toptext"
13782
- msgstr "Suche"
13783
-
13784
- #: wppa-settings-autosave.php:7473
13785
- msgid "The text at the top of the search box."
13786
- msgstr ""
13787
-
13788
- #: wppa-settings-autosave.php:7474
13789
- msgid "May contain unfiltered HTML."
13790
- msgstr ""
13791
-
13792
- #: wppa-settings-autosave.php:7481
13793
- #, fuzzy
13794
- msgid "Section search text"
13795
- msgstr "Suchergebnisse für: %s"
13796
-
13797
- #: wppa-settings-autosave.php:7482 wppa-settings-autosave.php:7491
13798
- msgid "The labeltext at the checkbox."
13799
- msgstr ""
13800
-
13801
- #: wppa-settings-autosave.php:7490
13802
- #, fuzzy
13803
- msgid "Results search text"
13804
- msgstr "Bitte wähle Album"
13805
-
13806
- #: wppa-settings-autosave.php:7500
13807
- msgid "Watermark related settings"
13808
- msgstr ""
13809
-
13810
- #: wppa-settings-autosave.php:7503
13811
- msgid "Enable the application of watermarks."
13812
- msgstr ""
13813
-
13814
- #: wppa-settings-autosave.php:7504
13815
- msgid "If checked, photos can be watermarked during upload / import."
13816
- msgstr ""
13817
-
13818
- #: wppa-settings-autosave.php:7513
13819
- #, fuzzy
13820
- msgid "Watermark file"
13821
- msgstr "Wende eine Wasserzeichen-Datei an:"
13822
-
13823
- #: wppa-settings-autosave.php:7514
13824
- msgid "The default watermarkfile to be used."
13825
- msgstr ""
13826
-
13827
- #: wppa-settings-autosave.php:7515
13828
- msgid "Watermark files are of type png and reside in"
13829
- msgstr ""
13830
-
13831
- #: wppa-settings-autosave.php:7516
13832
- msgid ""
13833
- "A suitable watermarkfile typically consists of a transparent background and "
13834
- "a black text or drawing."
13835
- msgstr ""
13836
-
13837
- #: wppa-settings-autosave.php:7518
13838
- msgid ""
13839
- "You may also select one of the textual watermark types at the bottom of the "
13840
- "selection list."
13841
- msgstr ""
13842
-
13843
- #: wppa-settings-autosave.php:7522
13844
- #, fuzzy
13845
- msgid "position:"
13846
- msgstr "Position/Ort:"
13847
-
13848
- #: wppa-settings-autosave.php:7528
13849
- #, fuzzy
13850
- msgid "Upload watermark"
13851
- msgstr "Wende eine Wasserzeichen-Datei an:"
13852
-
13853
- #: wppa-settings-autosave.php:7529
13854
- #, fuzzy
13855
- msgid "Upload a new watermark file"
13856
- msgstr "Wende eine Wasserzeichen-Datei an:"
13857
-
13858
- #: wppa-settings-autosave.php:7533
13859
- #, fuzzy
13860
- msgid "Upload watermark image"
13861
- msgstr "Wende eine Wasserzeichen-Datei an:"
13862
-
13863
- #: wppa-settings-autosave.php:7538
13864
- msgid "Watermark opacity image"
13865
- msgstr ""
13866
-
13867
- #: wppa-settings-autosave.php:7539
13868
- msgid "You can set the intensity of image watermarks here."
13869
- msgstr ""
13870
-
13871
- #: wppa-settings-autosave.php:7540 wppa-settings-autosave.php:7625
13872
- msgid ""
13873
- "The higher the number, the intenser the watermark. Value must be > 0 and <= "
13874
- "100."
13875
- msgstr ""
13876
-
13877
- #: wppa-settings-autosave.php:7547
13878
- #, fuzzy
13879
- msgid "Textual watermark style"
13880
- msgstr "Wende eine Wasserzeichen-Datei an:"
13881
-
13882
- #: wppa-settings-autosave.php:7548
13883
- msgid "The way the textual watermarks look like"
13884
- msgstr ""
13885
-
13886
- #: wppa-settings-autosave.php:7552
13887
- msgid "TV subtitle style"
13888
- msgstr ""
13889
-
13890
- #: wppa-settings-autosave.php:7552
13891
- msgid "White text on black background"
13892
- msgstr ""
13893
-
13894
- #: wppa-settings-autosave.php:7552
13895
- msgid "Black text on white background"
13896
- msgstr ""
13897
-
13898
- #: wppa-settings-autosave.php:7552
13899
- msgid "Reverse TV style (Utopia)"
13900
- msgstr ""
13901
-
13902
- #: wppa-settings-autosave.php:7552
13903
- msgid "White on transparent background"
13904
- msgstr ""
13905
-
13906
- #: wppa-settings-autosave.php:7552
13907
- msgid "Black on transparent background"
13908
- msgstr ""
13909
-
13910
- #: wppa-settings-autosave.php:7562
13911
- msgid "Predefined watermark text"
13912
- msgstr ""
13913
-
13914
- #: wppa-settings-autosave.php:7563
13915
- msgid "The text to use when --- pre-defined --- is selected."
13916
- msgstr ""
13917
-
13918
- #: wppa-settings-autosave.php:7564
13919
- msgid "You may use the following keywords:"
13920
- msgstr ""
13921
-
13922
- #: wppa-settings-autosave.php:7565
13923
- msgid "w#site, w#owner, w#name, w#filename"
13924
- msgstr ""
13925
-
13926
- #: wppa-settings-autosave.php:7572
13927
- #, fuzzy
13928
- msgid "Textual watermark font"
13929
- msgstr "Wende eine Wasserzeichen-Datei an:"
13930
-
13931
- #: wppa-settings-autosave.php:7573
13932
- msgid "The font to use with textusl watermarks."
13933
- msgstr ""
13934
-
13935
- #: wppa-settings-autosave.php:7574
13936
- msgid "Except for the system font, are font files of type ttf and reside in"
13937
- msgstr ""
13938
-
13939
- #: wppa-settings-autosave.php:7602
13940
- #, fuzzy
13941
- msgid "Textual watermark font size"
13942
- msgstr "Wende eine Wasserzeichen-Datei an:"
13943
-
13944
- #: wppa-settings-autosave.php:7603
13945
- msgid "You can set the size of the truetype fonts only."
13946
- msgstr ""
13947
-
13948
- #: wppa-settings-autosave.php:7604
13949
- msgid ""
13950
- "System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
13951
- "value > 5 will be treated as 5."
13952
- msgstr ""
13953
-
13954
- #: wppa-settings-autosave.php:7605
13955
- msgid ""
13956
- "Truetype fonts can have any positive integer size, if your PHPs GD version "
13957
- "is 1, in pixels, in GD2 in points."
13958
- msgstr ""
13959
-
13960
- #: wppa-settings-autosave.php:7606
13961
- msgid "It is unclear howmany pixels a point is..."
13962
- msgstr ""
13963
-
13964
- #: wppa-settings-autosave.php:7613
13965
- #, fuzzy
13966
- msgid "Upload watermark font"
13967
- msgstr "Wende eine Wasserzeichen-Datei an:"
13968
-
13969
- #: wppa-settings-autosave.php:7614
13970
- #, fuzzy
13971
- msgid "Upload a new watermark font file"
13972
- msgstr "Wende eine Wasserzeichen-Datei an:"
13973
-
13974
- #: wppa-settings-autosave.php:7615
13975
- msgid ""
13976
- "Upload truetype fonts (.ttf) only, and test if they work on your server "
13977
- "platform."
13978
- msgstr ""
13979
-
13980
- #: wppa-settings-autosave.php:7618
13981
- #, fuzzy
13982
- msgid "Upload TrueType font"
13983
- msgstr "Fotos hochladen"
13984
-
13985
- #: wppa-settings-autosave.php:7623
13986
- msgid "Watermark opacity text"
13987
- msgstr ""
13988
-
13989
- #: wppa-settings-autosave.php:7624
13990
- msgid "You can set the intensity of a text watermarks here."
13991
- msgstr ""
13992
-
13993
- #: wppa-settings-autosave.php:7633
13994
- msgid "A real life preview. To update: refresh the page."
13995
- msgstr ""
13996
-
13997
- #: wppa-settings-autosave.php:7644
13998
- #, fuzzy
13999
- msgid "Watermark thumbnails"
14000
- msgstr "Anzeigen..."
14001
-
14002
- #: wppa-settings-autosave.php:7645
14003
- msgid "Watermark also the thumbnail image files."
14004
- msgstr ""
14005
-
14006
- #: wppa-settings-autosave.php:7653
14007
- msgid "Slideshow elements sequence order settings"
14008
- msgstr ""
14009
-
14010
- #: wppa-settings-autosave.php:7659 wppa-settings-autosave.php:7705
14011
- #, fuzzy
14012
- msgid "StartStop"
14013
- msgstr "Starte"
14014
-
14015
- #: wppa-settings-autosave.php:7660 wppa-settings-autosave.php:7706
14016
- msgid "SlideFrame"
14017
- msgstr ""
14018
-
14019
- #: wppa-settings-autosave.php:7662
14020
- msgid "Desc"
14021
- msgstr ""
14022
-
14023
- #: wppa-settings-autosave.php:7665 wppa-settings-autosave.php:7710
14024
- msgid "FilmStrip"
14025
- msgstr ""
14026
-
14027
- #: wppa-settings-autosave.php:7666 wppa-settings-autosave.php:7711
14028
- msgid "Browsebar"
14029
- msgstr ""
14030
-
14031
- #: wppa-settings-autosave.php:7668 wppa-settings-autosave.php:7713
14032
- #, fuzzy
14033
- msgid "IPTC data"
14034
- msgstr "IPTC Daten"
14035
-
14036
- #: wppa-settings-autosave.php:7669 wppa-settings-autosave.php:7714
14037
- #, fuzzy
14038
- msgid "EXIF data"
14039
- msgstr "EXIF Daten"
14040
-
14041
- #: wppa-settings-autosave.php:7670 wppa-settings-autosave.php:7715
14042
- msgid "Share box"
14043
- msgstr ""
14044
-
14045
- #: wppa-settings-autosave.php:7672 wppa-settings-autosave.php:7717
14046
- msgid "Enabled"
14047
- msgstr ""
14048
-
14049
- #: wppa-settings-autosave.php:7673 wppa-settings-autosave.php:7718
14050
- msgid "Disabled"
14051
- msgstr ""
14052
-
14053
- #: wppa-settings-autosave.php:7675 wppa-settings-autosave.php:7720
14054
- msgid "Start/Stop & Slower/Faster navigation bar"
14055
- msgstr ""
14056
-
14057
- #: wppa-settings-autosave.php:7676 wppa-settings-autosave.php:7721
14058
- msgid "The Slide Frame"
14059
- msgstr ""
14060
-
14061
- #: wppa-settings-autosave.php:7676 wppa-settings-autosave.php:7721
14062
- msgid "( Always )"
14063
- msgstr ""
14064
-
14065
- #: wppa-settings-autosave.php:7677
14066
- #, fuzzy
14067
- msgid "Photo Name Box"
14068
- msgstr "Foto des Tages"
14069
-
14070
- #: wppa-settings-autosave.php:7678
14071
- msgid "Photo Description Box"
14072
- msgstr ""
14073
-
14074
- #: wppa-settings-autosave.php:7679 wppa-settings-autosave.php:7723
14075
- msgid "Custom Box"
14076
- msgstr ""
14077
-
14078
- #: wppa-settings-autosave.php:7680 wppa-settings-autosave.php:7724
14079
- #, fuzzy
14080
- msgid "Rating Bar"
14081
- msgstr "Bewertung: %s"
14082
-
14083
- #: wppa-settings-autosave.php:7681 wppa-settings-autosave.php:7725
14084
- msgid "Film Strip with embedded Start/Stop and Goto functionality"
14085
- msgstr ""
14086
-
14087
- #: wppa-settings-autosave.php:7682 wppa-settings-autosave.php:7726
14088
- msgid "Browse Bar with Photo X of Y counter"
14089
- msgstr ""
14090
-
14091
- #: wppa-settings-autosave.php:7683 wppa-settings-autosave.php:7727
14092
- #, fuzzy
14093
- msgid "Comments Box"
14094
- msgstr "Kommentare"
14095
-
14096
- #: wppa-settings-autosave.php:7684 wppa-settings-autosave.php:7728
14097
- msgid "IPTC box"
14098
- msgstr ""
14099
-
14100
- #: wppa-settings-autosave.php:7685 wppa-settings-autosave.php:7729
14101
- msgid "EXIF box"
14102
- msgstr ""
14103
-
14104
- #: wppa-settings-autosave.php:7686 wppa-settings-autosave.php:7730
14105
- msgid "Social media share box"
14106
- msgstr ""
14107
-
14108
- #: wppa-settings-autosave.php:7692 wppa-settings-autosave.php:7736
14109
- msgid "Move Up"
14110
- msgstr ""
14111
-
14112
- #: wppa-settings-autosave.php:7707
14113
- msgid "NameDesc"
14114
- msgstr ""
14115
-
14116
- #: wppa-settings-autosave.php:7722
14117
- msgid "Photo Name & Description Box"
14118
- msgstr ""
14119
-
14120
- #: wppa-settings-autosave.php:7746
14121
- msgid "Swap Namedesc"
14122
- msgstr ""
14123
-
14124
- #: wppa-settings-autosave.php:7747
14125
- msgid "Swap the order sequence of name and description"
14126
- msgstr ""
14127
-
14128
- #: wppa-settings-autosave.php:7755
14129
- msgid "Split Name and Desc"
14130
- msgstr ""
14131
-
14132
- #: wppa-settings-autosave.php:7756
14133
- msgid "Put Name and Description in separate boxes"
14134
- msgstr ""
14135
-
14136
- #: wppa-settings-autosave.php:7759
14137
- msgid "Please reload this page after the green checkmark appears!"
14138
- msgstr ""
14139
-
14140
- #: wppa-settings-autosave.php:7764
14141
- msgid "Source file management and other upload/import settings and actions."
14142
- msgstr ""
14143
-
14144
- #: wppa-settings-autosave.php:7766
14145
- msgid "Keep sourcefiles admin"
14146
- msgstr ""
14147
-
14148
- #: wppa-settings-autosave.php:7767
14149
- msgid "Keep the original uploaded and imported photo files."
14150
- msgstr ""
14151
-
14152
- #: wppa-settings-autosave.php:7768 wppa-settings-autosave.php:7778
14153
- msgid ""
14154
- "The files will be kept in a separate directory with subdirectories for each "
14155
- "album"
14156
- msgstr ""
14157
-
14158
- #: wppa-settings-autosave.php:7769 wppa-settings-autosave.php:7779
14159
- msgid ""
14160
- "These files can be used to update the photos used in displaying in wppa+ and "
14161
- "optionally for downloading original, un-downsized images."
14162
- msgstr ""
14163
-
14164
- #: wppa-settings-autosave.php:7776
14165
- msgid "Keep sourcefiles frontend"
14166
- msgstr ""
14167
-
14168
- #: wppa-settings-autosave.php:7777
14169
- #, fuzzy
14170
- msgid "Keep the original frontend uploaded photo files."
14171
- msgstr "--- Die zuletzt hochgeladenen Fotos---"
14172
-
14173
- #: wppa-settings-autosave.php:7786
14174
- msgid "Source directory"
14175
- msgstr ""
14176
-
14177
- #: wppa-settings-autosave.php:7787
14178
- msgid "The path to the directory where the original photofiles will be saved."
14179
- msgstr ""
14180
-
14181
- #: wppa-settings-autosave.php:7788
14182
- msgid "You may change the directory path, but it can not be an url."
14183
- msgstr ""
14184
-
14185
- #: wppa-settings-autosave.php:7789
14186
- msgid ""
14187
- "The parent of the directory that you enter here must exist and be writable."
14188
- msgstr ""
14189
-
14190
- #: wppa-settings-autosave.php:7790
14191
- msgid "The directory itsself will be created if it does not exist yet."
14192
- msgstr ""
14193
-
14194
- #: wppa-settings-autosave.php:7797
14195
- msgid "Keep sync"
14196
- msgstr ""
14197
-
14198
- #: wppa-settings-autosave.php:7798
14199
- msgid "Keep source synchronously with wppa system."
14200
- msgstr ""
14201
-
14202
- #: wppa-settings-autosave.php:7799
14203
- msgid ""
14204
- "If checked, photos that are deleted from wppa, will also be removed from the "
14205
- "sourcefiles."
14206
- msgstr ""
14207
-
14208
- #: wppa-settings-autosave.php:7800
14209
- msgid ""
14210
- "Also, copying or moving photos to different albums, will also copy/move the "
14211
- "sourcefiles."
14212
- msgstr ""
14213
-
14214
- #: wppa-settings-autosave.php:7807
14215
- msgid "Remake add"
14216
- msgstr ""
14217
-
14218
- #: wppa-settings-autosave.php:7808
14219
- msgid "Photos will be added from the source pool"
14220
- msgstr ""
14221
-
14222
- #: wppa-settings-autosave.php:7809
14223
- msgid ""
14224
- "If checked: If photo files are found in the source directory that do not "
14225
- "exist in the corresponding album, they will be added to the album."
14226
- msgstr ""
14227
-
14228
- #: wppa-settings-autosave.php:7816
14229
- #, fuzzy
14230
- msgid "Save IPTC data"
14231
- msgstr "IPTC Daten"
14232
-
14233
- #: wppa-settings-autosave.php:7817
14234
- msgid "Store the iptc data from the photo into the iptc db table"
14235
- msgstr ""
14236
-
14237
- #: wppa-settings-autosave.php:7818
14238
- msgid ""
14239
- "You will need this if you enabled the display of iptc data in Table II-B17 "
14240
- "or if you use it in the photo descriptions."
14241
- msgstr ""
14242
-
14243
- #: wppa-settings-autosave.php:7825
14244
- #, fuzzy
14245
- msgid "Save EXIF data"
14246
- msgstr "EXIF Daten"
14247
-
14248
- #: wppa-settings-autosave.php:7826
14249
- msgid "Store the exif data from the photo into the exif db table"
14250
- msgstr ""
14251
-
14252
- #: wppa-settings-autosave.php:7827
14253
- msgid ""
14254
- "You will need this if you enabled the display of exif data in Table II-B18 "
14255
- "or if you use it in the photo descriptions."
14256
- msgstr ""
14257
-
14258
- #: wppa-settings-autosave.php:7834
14259
- msgid "Max EXIF tag array size"
14260
- msgstr ""
14261
-
14262
- #: wppa-settings-autosave.php:7835
14263
- msgid "Truncate array tags to ..."
14264
- msgstr ""
14265
-
14266
- #: wppa-settings-autosave.php:7836
14267
- msgid "A value of 0 disables this feature"
14268
- msgstr ""
14269
-
14270
- #: wppa-settings-autosave.php:7838
14271
- #, fuzzy
14272
- msgid "elements"
14273
- msgstr "Kommentare"
14274
-
14275
- #: wppa-settings-autosave.php:7843
14276
- msgid "Import Create page"
14277
- msgstr ""
14278
-
14279
- #: wppa-settings-autosave.php:7844
14280
- msgid "Create wp page when a directory to album is imported."
14281
- msgstr ""
14282
-
14283
- #: wppa-settings-autosave.php:7845
14284
- msgid ""
14285
- "As soon as an album is created when a directory is imported, a wp page is "
14286
- "made that displays the album content."
14287
- msgstr ""
14288
-
14289
- #: wppa-settings-autosave.php:7853
14290
- msgid "Page content"
14291
- msgstr ""
14292
-
14293
- #: wppa-settings-autosave.php:7854
14294
- msgid "The content of the page. Must contain <b>w#album</b>"
14295
- msgstr ""
14296
-
14297
- #: wppa-settings-autosave.php:7855
14298
- msgid ""
14299
- "The content of the page. Note: it must contain w#album. This will be "
14300
- "replaced by the album number in the generated shortcode."
14301
- msgstr ""
14302
-
14303
- #: wppa-settings-autosave.php:7863
14304
- msgid "Page type"
14305
- msgstr ""
14306
-
14307
- #: wppa-settings-autosave.php:7864
14308
- msgid "Select the type of page to create."
14309
- msgstr ""
14310
-
14311
- #: wppa-settings-autosave.php:7868
14312
- #, fuzzy
14313
- msgid "Post"
14314
- msgstr "Beitrag"
14315
-
14316
- #: wppa-settings-autosave.php:7875
14317
- msgid "Page status"
14318
- msgstr ""
14319
-
14320
- #: wppa-settings-autosave.php:7876
14321
- msgid "Select the initial status of the page."
14322
- msgstr ""
14323
-
14324
- #: wppa-settings-autosave.php:7880
14325
- msgid "Published"
14326
- msgstr ""
14327
-
14328
- #: wppa-settings-autosave.php:7880
14329
- msgid "Draft"
14330
- msgstr ""
14331
-
14332
- #: wppa-settings-autosave.php:7888
14333
- msgid "Permalink root"
14334
- msgstr ""
14335
-
14336
- #: wppa-settings-autosave.php:7889
14337
- msgid "The name of the root for the photofile ermalink structure."
14338
- msgstr ""
14339
-
14340
- #: wppa-settings-autosave.php:7890
14341
- msgid ""
14342
- "Choose a convenient name like \"albums\" or so; this will be the name of a "
14343
- "folder inside .../wp-content/. Make sure you choose a unique name"
14344
- msgstr ""
14345
-
14346
- #: wppa-settings-autosave.php:7898
14347
- msgid "Import parent check"
14348
- msgstr ""
14349
-
14350
- #: wppa-settings-autosave.php:7899
14351
- msgid "On import dirs to albums: keep dir tree as albums."
14352
- msgstr ""
14353
-
14354
- #: wppa-settings-autosave.php:7900
14355
- msgid ""
14356
- "Untick only if all your albums have unique names. Then: additional photos "
14357
- "may be ftp'd to toplevel depot subdirs."
14358
- msgstr ""
14359
-
14360
- #: wppa-settings-autosave.php:7907
14361
- msgid "IPTC need utf8 conversion"
14362
- msgstr ""
14363
-
14364
- #: wppa-settings-autosave.php:7908
14365
- msgid "This setting converts iso to utf8 in iptc text."
14366
- msgstr ""
14367
-
14368
- #: wppa-settings-autosave.php:7909
14369
- msgid "Untick if you have funny characters in iptc data"
14370
- msgstr ""
14371
-
14372
- #: wppa-settings-autosave.php:7916
14373
- msgid "Keep dir to album files"
14374
- msgstr ""
14375
-
14376
- #: wppa-settings-autosave.php:7917
14377
- msgid "Keep imported files after dir to album import"
14378
- msgstr ""
14379
-
14380
- #: wppa-settings-autosave.php:7926
14381
- msgid "Other plugins related settings"
14382
- msgstr ""
14383
-
14384
- #: wppa-settings-autosave.php:7928
14385
- msgid "Foreign shortcodes general"
14386
- msgstr ""
14387
-
14388
- #: wppa-settings-autosave.php:7929
14389
- msgid "Enable foreign shortcodes in album names, albums desc and photo names"
14390
- msgstr ""
14391
-
14392
- #: wppa-settings-autosave.php:7937
14393
- msgid "Foreign shortcodes fullsize"
14394
- msgstr ""
14395
-
14396
- #: wppa-settings-autosave.php:7938
14397
- msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
14398
- msgstr ""
14399
-
14400
- #: wppa-settings-autosave.php:7939 wppa-settings-autosave.php:7950
14401
- msgid ""
14402
- "When checked, you can use shortcodes from other plugins in the description "
14403
- "of photos."
14404
- msgstr ""
14405
-
14406
- #: wppa-settings-autosave.php:7940
14407
- msgid "The shortcodes will be expanded in the descriptions of fullsize images."
14408
- msgstr ""
14409
-
14410
- #: wppa-settings-autosave.php:7941 wppa-settings-autosave.php:7952
14411
- msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
14412
- msgstr ""
14413
-
14414
- #: wppa-settings-autosave.php:7948
14415
- #, fuzzy
14416
- msgid "Foreign shortcodes thumbnails"
14417
- msgstr "Anzeigen..."
14418
-
14419
- #: wppa-settings-autosave.php:7949
14420
- msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
14421
- msgstr ""
14422
-
14423
- #: wppa-settings-autosave.php:7951
14424
- msgid ""
14425
- "The shortcodes will be expanded in the descriptions of thumbnail images."
14426
- msgstr ""
14427
-
14428
- #: wppa-settings-autosave.php:7959
14429
- msgid "Lightbox keyname"
14430
- msgstr ""
14431
-
14432
- #: wppa-settings-autosave.php:7960
14433
- msgid "The identifier of lightbox."
14434
- msgstr ""
14435
-
14436
- #: wppa-settings-autosave.php:7961
14437
- msgid ""
14438
- "If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
14439
- "lbox-id here."
14440
- msgstr ""
14441
-
14442
- #: wppa-settings-autosave.php:7968
14443
- msgid "myCRED / Cube Points: Comment"
14444
- msgstr ""
14445
-
14446
- #: wppa-settings-autosave.php:7969
14447
- #, fuzzy
14448
- msgid "Number of points for a comment"
14449
- msgstr ""
14450
- "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
14451
- "hinterlassen."
14452
-
14453
- #: wppa-settings-autosave.php:7970 wppa-settings-autosave.php:7979
14454
- #: wppa-settings-autosave.php:7988
14455
- msgid "This setting requires the plugin myCRED or Cube Points"
14456
- msgstr ""
14457
-
14458
- #: wppa-settings-autosave.php:7972
14459
- #, fuzzy
14460
- msgid "points per comment"
14461
- msgstr "Dein Kommentar:"
14462
-
14463
- #: wppa-settings-autosave.php:7977
14464
- msgid "myCRED / Cube Points: Rating"
14465
- msgstr ""
14466
-
14467
- #: wppa-settings-autosave.php:7978
14468
- msgid "Number of points for a rating vote"
14469
- msgstr ""
14470
-
14471
- #: wppa-settings-autosave.php:7981
14472
- msgid "points per vote"
14473
- msgstr ""
14474
-
14475
- #: wppa-settings-autosave.php:7986
14476
- msgid "myCRED / Cube Points: Upload"
14477
- msgstr ""
14478
-
14479
- #: wppa-settings-autosave.php:7987
14480
- msgid "Number of points for a successfull frontend upload"
14481
- msgstr ""
14482
-
14483
- #: wppa-settings-autosave.php:7990
14484
- #, fuzzy
14485
- msgid "points per upload"
14486
- msgstr "Fotos hochgeladen zu Album Nr"
14487
-
14488
- #: wppa-settings-autosave.php:7995
14489
- msgid "Use SCABN"
14490
- msgstr ""
14491
-
14492
- #: wppa-settings-autosave.php:7996
14493
- msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
14494
- msgstr ""
14495
-
14496
- #: wppa-settings-autosave.php:7997
14497
- msgid ""
14498
- "If checked, the shortcode to use for the \"add to cart\" button in photo "
14499
- "descriptions is [cart ...]"
14500
- msgstr ""
14501
-
14502
- #: wppa-settings-autosave.php:7998
14503
- msgid ""
14504
- "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
14505
- msgstr ""
14506
-
14507
- #: wppa-settings-autosave.php:7999
14508
- msgid "The shortcode for the check-out page is still [scabn]"
14509
- msgstr ""
14510
-
14511
- #: wppa-settings-autosave.php:8000
14512
- msgid ""
14513
- "The arguments are the same, the defaults are: name = photoname, price = 0.01."
14514
- msgstr ""
14515
-
14516
- #: wppa-settings-autosave.php:8001
14517
- msgid ""
14518
- "Supplying the price should be sufficient; supply a name only when it differs "
14519
- "from the photo name."
14520
- msgstr ""
14521
-
14522
- #: wppa-settings-autosave.php:8002
14523
- msgid "This shortcode handler will also work with Ajax enabled."
14524
- msgstr ""
14525
-
14526
- #: wppa-settings-autosave.php:8003
14527
- msgid ""
14528
- "Using this interface makes sure that the item urls and callback action urls "
14529
- "are correct."
14530
- msgstr ""
14531
-
14532
- #: wppa-settings-autosave.php:8010
14533
- msgid "Use CM Tooltip Glossary"
14534
- msgstr ""
14535
-
14536
- #: wppa-settings-autosave.php:8011
14537
- msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
14538
- msgstr ""
14539
-
14540
- #: wppa-settings-autosave.php:8012
14541
- msgid ""
14542
- "You MUST set Table IV-A13: Defer javascript, also if you do not want this "
14543
- "plugin to act on album and photo descriptions!"
14544
- msgstr ""
14545
-
14546
- #: wppa-settings-autosave.php:8020
14547
- msgid "External services related settings and actions."
14548
- msgstr ""
14549
-
14550
- #: wppa-settings-autosave.php:8022
14551
- msgid "QR Code widget size"
14552
- msgstr ""
14553
-
14554
- #: wppa-settings-autosave.php:8023
14555
- msgid "The size of the QR code display."
14556
- msgstr ""
14557
-
14558
- #: wppa-settings-autosave.php:8031
14559
- #, fuzzy
14560
- msgid "QR color"
14561
- msgstr "QR Code"
14562
-
14563
- #: wppa-settings-autosave.php:8032
14564
- msgid "The display color of the qr code (dark)"
14565
- msgstr ""
14566
-
14567
- #: wppa-settings-autosave.php:8033
14568
- msgid "This color MUST be given in hexadecimal format!"
14569
- msgstr ""
14570
-
14571
- #: wppa-settings-autosave.php:8040
14572
- msgid "QR background color"
14573
- msgstr ""
14574
-
14575
- #: wppa-settings-autosave.php:8041
14576
- msgid "The background color of the qr code (light)"
14577
- msgstr ""
14578
-
14579
- #: wppa-settings-autosave.php:8049
14580
- msgid "CDN Service"
14581
- msgstr ""
14582
-
14583
- #: wppa-settings-autosave.php:8050
14584
- msgid "Select a CDN Service you want to use."
14585
- msgstr ""
14586
-
14587
- #: wppa-settings-autosave.php:8053
14588
- msgid "Cloudinary in maintenance mode"
14589
- msgstr ""
14590
-
14591
- #: wppa-settings-autosave.php:8063
14592
- #, fuzzy
14593
- msgid "Cloud name"
14594
- msgstr "Dein Name:"
14595
-
14596
- #: wppa-settings-autosave.php:8072
14597
- msgid "API key"
14598
- msgstr ""
14599
-
14600
- #: wppa-settings-autosave.php:8081
14601
- msgid "API secret"
14602
- msgstr ""
14603
-
14604
- #: wppa-settings-autosave.php:8090
14605
- #, fuzzy
14606
- msgid "Delete all"
14607
- msgstr "Das Album konnte nicht erstellt werden."
14608
-
14609
- #: wppa-settings-autosave.php:8091
14610
- msgid "Deletes them all !!!"
14611
- msgstr ""
14612
-
14613
- #: wppa-settings-autosave.php:8099
14614
- msgid "Delete derived images"
14615
- msgstr ""
14616
-
14617
- #: wppa-settings-autosave.php:8100
14618
- msgid "Deletes all derived images !!!"
14619
- msgstr ""
14620
-
14621
- #: wppa-settings-autosave.php:8108
14622
- msgid "Max lifetime"
14623
- msgstr ""
14624
-
14625
- #: wppa-settings-autosave.php:8109
14626
- msgid "Old images from local server, new images from Cloudinary."
14627
- msgstr ""
14628
-
14629
- #: wppa-settings-autosave.php:8110
14630
- msgid ""
14631
- "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
14632
- msgstr ""
14633
-
14634
- #: wppa-settings-autosave.php:8112
14635
- msgid "Forever"
14636
- msgstr ""
14637
-
14638
- #: wppa-settings-autosave.php:8116
14639
- #, fuzzy
14640
- msgid "Two months"
14641
- msgstr "Monate"
14642
-
14643
- #: wppa-settings-autosave.php:8117
14644
- #, fuzzy
14645
- msgid "Three months"
14646
- msgstr "Monate"
14647
-
14648
- #: wppa-settings-autosave.php:8118
14649
- #, fuzzy
14650
- msgid "Six months"
14651
- msgstr "Monate"
14652
-
14653
- #: wppa-settings-autosave.php:8119
14654
- #, fuzzy
14655
- msgid "Nine months"
14656
- msgstr "Monate"
14657
-
14658
- #: wppa-settings-autosave.php:8120
14659
- #, fuzzy
14660
- msgid "One year"
14661
- msgstr "1 Jahr"
14662
-
14663
- #: wppa-settings-autosave.php:8121
14664
- #, fuzzy
14665
- msgid "18 months"
14666
- msgstr "1 Monat"
14667
-
14668
- #: wppa-settings-autosave.php:8122
14669
- #, fuzzy
14670
- msgid "Two years"
14671
- msgstr "Jahre"
14672
-
14673
- #: wppa-settings-autosave.php:8142
14674
- msgid "Cloudinary usage"
14675
- msgstr ""
14676
-
14677
- #: wppa-settings-autosave.php:8178
14678
- #, fuzzy
14679
- msgid "Cloudinary usage data not available"
14680
- msgstr "Diese Seite ist nicht abrufbar."
14681
-
14682
- #: wppa-settings-autosave.php:8182
14683
- msgid "Cloudinary routines not installed."
14684
- msgstr ""
14685
-
14686
- #: wppa-settings-autosave.php:8193
14687
- msgid "Cloudinary"
14688
- msgstr ""
14689
-
14690
- #: wppa-settings-autosave.php:8194
14691
- msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
14692
- msgstr ""
14693
-
14694
- #: wppa-settings-autosave.php:8203
14695
- msgid "GPX Implementation"
14696
- msgstr ""
14697
-
14698
- #: wppa-settings-autosave.php:8204
14699
- msgid "The way the maps are produced."
14700
- msgstr ""
14701
-
14702
- #: wppa-settings-autosave.php:8205
14703
- msgid "Select the way the maps are produced."
14704
- msgstr ""
14705
-
14706
- #: wppa-settings-autosave.php:8206
14707
- msgid ""
14708
- "When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
14709
- msgstr ""
14710
-
14711
- #: wppa-settings-autosave.php:8207
14712
- msgid ""
14713
- "When using WPPA+ Embedded code, you can use Ajax, but there are less display "
14714
- "options."
14715
- msgstr ""
14716
-
14717
- #: wppa-settings-autosave.php:8209
14718
- msgid "WPPA+ Embedded code"
14719
- msgstr ""
14720
-
14721
- #: wppa-settings-autosave.php:8209
14722
- msgid "Google maps GPX viewer plugin"
14723
- msgstr ""
14724
-
14725
- #: wppa-settings-autosave.php:8217
14726
- msgid "Map height"
14727
- msgstr ""
14728
-
14729
- #: wppa-settings-autosave.php:8218
14730
- msgid "The height of the map display."
14731
- msgstr ""
14732
-
14733
- #: wppa-settings-autosave.php:8226
14734
- msgid "Google maps API key"
14735
- msgstr ""
14736
-
14737
- #: wppa-settings-autosave.php:8227
14738
- msgid "Enter your Google maps api key here if you have one."
14739
- msgstr ""
14740
-
14741
- #: wppa-settings-autosave.php:8235
14742
- msgid "GPX Shortcode"
14743
- msgstr ""
14744
-
14745
- #: wppa-settings-autosave.php:8236
14746
- msgid "The shortcode to be used for the gpx feature."
14747
- msgstr ""
14748
-
14749
- #: wppa-settings-autosave.php:8237
14750
- msgid ""
14751
- "Enter / modify the shortcode to be generated for the gpx plugin. It must "
14752
- "contain w#lat and w#lon as placeholders for the lattitude and longitude."
14753
- msgstr ""
14754
-
14755
- #: wppa-settings-autosave.php:8238
14756
- msgid "This item is required for using Google maps GPX viewer plugin only"
14757
- msgstr ""
14758
-
14759
- #: wppa-settings-autosave.php:8245
14760
- msgid "Fotomoto"
14761
- msgstr ""
14762
-
14763
- #: wppa-settings-autosave.php:8246
14764
- msgid "Yes, we use Fotomoto on this site. Read the help text!"
14765
- msgstr ""
14766
-
14767
- #: wppa-settings-autosave.php:8247
14768
- msgid "In order to function properly:"
14769
- msgstr ""
14770
-
14771
- #: wppa-settings-autosave.php:8248
14772
- msgid "1. Get yourself a Fotomoto account."
14773
- msgstr ""
14774
-
14775
- #: wppa-settings-autosave.php:8249
14776
- msgid ""
14777
- "2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
14778
- "the \"Use API Mode:\" checkbox."
14779
- msgstr ""
14780
-
14781
- #: wppa-settings-autosave.php:8250
14782
- msgid "Note: Do NOT Disable the Custom box in Table II-B14."
14783
- msgstr ""
14784
-
14785
- #: wppa-settings-autosave.php:8251
14786
- msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
14787
- msgstr ""
14788
-
14789
- #: wppa-settings-autosave.php:8259
14790
- msgid "Fotomoto fontsize"
14791
- msgstr ""
14792
-
14793
- #: wppa-settings-autosave.php:8260
14794
- msgid "Fontsize for the Fotomoto toolbar."
14795
- msgstr ""
14796
-
14797
- #: wppa-settings-autosave.php:8261
14798
- msgid ""
14799
- "If you set it here, it overrules a possible setting for font-size in ."
14800
- "FotomotoToolbarClass on the Fotomoto dashboard."
14801
- msgstr ""
14802
-
14803
- #: wppa-settings-autosave.php:8269
14804
- msgid "Hide toolbar on running slideshows"
14805
- msgstr ""
14806
-
14807
- #: wppa-settings-autosave.php:8270
14808
- msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
14809
- msgstr ""
14810
-
14811
- #: wppa-settings-autosave.php:8277
14812
- msgid "Fotomoto minwidth"
14813
- msgstr ""
14814
-
14815
- #: wppa-settings-autosave.php:8278
14816
- msgid "Minimum width to display Fotomoto toolbar."
14817
- msgstr ""
14818
-
14819
- #: wppa-settings-autosave.php:8279
14820
- msgid ""
14821
- "The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
14822
- msgstr ""
14823
-
14824
- #: wppa-settings-autosave.php:8304
14825
- msgid "Table X:"
14826
- msgstr ""
14827
-
14828
- #: wppa-settings-autosave.php:8304
14829
- msgid "IPTC Configuration:"
14830
- msgstr ""
14831
-
14832
- #: wppa-settings-autosave.php:8305
14833
- msgid "This table defines the IPTC configuration"
14834
- msgstr ""
14835
-
14836
- #: wppa-settings-autosave.php:8336 wppa-settings-autosave.php:8404
14837
- msgid "Display"
14838
- msgstr ""
14839
-
14840
- #: wppa-settings-autosave.php:8336 wppa-settings-autosave.php:8404
14841
- msgid "Hide"
14842
- msgstr ""
14843
-
14844
- #: wppa-settings-autosave.php:8336 wppa-settings-autosave.php:8404
14845
- msgid "Optional"
14846
- msgstr ""
14847
-
14848
- #: wppa-settings-autosave.php:8366
14849
- msgid "Table XI:"
14850
- msgstr ""
14851
-
14852
- #: wppa-settings-autosave.php:8366
14853
- msgid "EXIF Configuration:"
14854
- msgstr ""
14855
-
14856
- #: wppa-settings-autosave.php:8367
14857
- msgid "This table defines the EXIF configuration"
14858
- msgstr ""
14859
-
14860
- #: wppa-settings-autosave.php:8390
14861
- msgid ""
14862
- "Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
14863
- "enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to "
14864
- "add <b>'--enable-exif'</b> to the php <b>Configure Command</b>."
14865
- msgstr ""
14866
-
14867
- #: wppa-settings-autosave.php:8434
14868
- msgid "Table XII:"
14869
- msgstr ""
14870
-
14871
- #: wppa-settings-autosave.php:8434
14872
- msgid "WPPA+ and PHP Configuration:"
14873
- msgstr ""
14874
-
14875
- #: wppa-settings-autosave.php:8435
14876
- msgid ""
14877
- "This table lists all WPPA+ constants and PHP server configuration parameters "
14878
- "and is read only"
14879
- msgstr ""
14880
-
14881
- #: wppa-settings-autosave.php:8450
14882
- msgid "Value"
14883
- msgstr ""
14884
-
14885
- #: wppa-settings-autosave.php:8455
14886
- msgid "Albums db table name."
14887
- msgstr ""
14888
-
14889
- #: wppa-settings-autosave.php:8460
14890
- #, fuzzy
14891
- msgid "Photos db table name."
14892
- msgstr "EXIF Daten"
14893
-
14894
- #: wppa-settings-autosave.php:8465
14895
- msgid "Rating db table name."
14896
- msgstr ""
14897
-
14898
- #: wppa-settings-autosave.php:8470
14899
- msgid "Comments db table name."
14900
- msgstr ""
14901
-
14902
- #: wppa-settings-autosave.php:8475
14903
- msgid "IPTC db table name."
14904
- msgstr ""
14905
-
14906
- #: wppa-settings-autosave.php:8480
14907
- msgid "EXIF db table name."
14908
- msgstr ""
14909
-
14910
- #: wppa-settings-autosave.php:8485
14911
- msgid "Index db table name."
14912
- msgstr ""
14913
-
14914
- #: wppa-settings-autosave.php:8490
14915
- msgid "Plugins main file name."
14916
- msgstr ""
14917
-
14918
- #: wppa-settings-autosave.php:8495
14919
- msgid "Path to plugins directory."
14920
- msgstr ""
14921
-
14922
- #: wppa-settings-autosave.php:8500
14923
- msgid "Plugins directory name."
14924
- msgstr ""
14925
-
14926
- #: wppa-settings-autosave.php:8505
14927
- msgid "Plugins directory url."
14928
- msgstr ""
14929
-
14930
- #: wppa-settings-autosave.php:8510
14931
- msgid "The relative upload directory."
14932
- msgstr ""
14933
-
14934
- #: wppa-settings-autosave.php:8515
14935
- msgid "The upload directory path."
14936
- msgstr ""
14937
-
14938
- #: wppa-settings-autosave.php:8520
14939
- msgid "The upload directory url."
14940
- msgstr ""
14941
-
14942
- #: wppa-settings-autosave.php:8525
14943
- msgid "The relative depot directory."
14944
- msgstr ""
14945
-
14946
- #: wppa-settings-autosave.php:8530
14947
- msgid "The depot directory path."
14948
- msgstr ""
14949
-
14950
- #: wppa-settings-autosave.php:8535
14951
- msgid "The depot directory url."
14952
- msgstr ""
14953
-
14954
- #: wppa-settings-autosave.php:8540
14955
- msgid "The path to wp-content."
14956
- msgstr ""
14957
-
14958
- #: wppa-settings-autosave.php:8545
14959
- msgid "WP Base upload dir."
14960
- msgstr ""
14961
-
14962
- #: wppa-settings-autosave.php:8551
14963
- msgid "ABSPATH windows proof"
14964
- msgstr ""
14965
-
14966
- #: wppa-settings-autosave.php:8563
14967
- #, php-format
14968
- msgid "<br />Memory used on this page: %6.2f Mb."
14969
- msgstr ""
14970
-
14971
- #: wppa-settings-autosave.php:8564
14972
- #, php-format
14973
- msgid "<br />There are %d settings and %d runtime parameters."
14974
- msgstr ""
14975
-
14976
- #: wppa-settings-autosave.php:8641
14977
- msgid "The default for this setting is:"
14978
- msgstr ""
14979
-
14980
- #: wppa-settings-autosave.php:8650
14981
- msgid "Click for help"
14982
- msgstr ""
14983
-
14984
- #: wppa-settings-autosave.php:8694 wppa-settings-autosave.php:8711
14985
- #: wppa-settings-autosave.php:8740 wppa-settings-autosave.php:8763
14986
- #: wppa-settings-autosave.php:8793 wppa-settings-autosave.php:8820
14987
- #: wppa-settings-autosave.php:8846 wppa-settings-autosave.php:8894
14988
- msgid "Slug ="
14989
- msgstr ""
14990
-
14991
- #: wppa-settings-autosave.php:8763 wppa-settings-autosave.php:8793
14992
- #: wppa-settings-autosave.php:8820 wppa-settings-autosave.php:8846
14993
- msgid "Values = yes, no"
14994
- msgstr ""
14995
-
14996
- #: wppa-settings-autosave.php:8792 wppa-settings-autosave.php:8818
14997
- #: wppa-settings-autosave.php:8845
14998
- msgid "Warning!"
14999
- msgstr ""
15000
-
15001
- #: wppa-settings-autosave.php:8819 wppa-settings-autosave.php:8845
15002
- msgid "Please read the help"
15003
- msgstr ""
15004
-
15005
- #: wppa-settings-autosave.php:8894
15006
- msgid "Values = "
15007
- msgstr ""
15008
-
15009
- #: wppa-settings-autosave.php:8969
15010
- msgid "Checked"
15011
- msgstr ""
15012
-
15013
- #: wppa-settings-autosave.php:8970
15014
- msgid "Unchecked"
15015
- msgstr ""
15016
-
15017
- #: wppa-settings-autosave.php:8975
15018
- msgid "the photo specific link."
15019
- msgstr ""
15020
-
15021
- #: wppa-settings-autosave.php:9007
15022
- msgid "Show!"
15023
- msgstr ""
15024
-
15025
- #: wppa-settings-autosave.php:9027
15026
- #, fuzzy
15027
- msgid "Not done yet"
15028
- msgstr "Noch kein Album ausgewählt."
15029
-
15030
- #: wppa-settings-autosave.php:9034
15031
- #, fuzzy
15032
- msgid "Start!"
15033
- msgstr "Starte"
15034
-
15035
- #: wppa-settings-autosave.php:9039
15036
- msgid "Locked!"
15037
- msgstr ""
15038
-
15039
- #: wppa-settings-autosave.php:9070
15040
- msgid ""
15041
- "You can not have popup and lightbox on thumbnails at the same time. Uncheck "
15042
- "either Table IV-C8 or choose a different linktype in Table VI-2."
15043
- msgstr ""
15044
-
15045
- #: wppa-settings-autosave.php:9073
15046
- #, php-format
15047
- msgid ""
15048
- "It is important that you select a page that contains at least %%wppa%% or "
15049
- "[wppa][/wppa]."
15050
- msgstr ""
15051
-
15052
- #: wppa-settings-autosave.php:9074
15053
- msgid ""
15054
- "If you ommit this, the link will not work at all or simply refresh the "
15055
- "(home)page."
15056
- msgstr ""
15057
-
15058
- #: wppa-setup.php:442
15059
- msgid "IMPORTANT UPGRADE NOTICE"
15060
- msgstr ""
15061
-
15062
- #: wppa-setup.php:443
15063
- msgid ""
15064
- "Please CHECK your customized WPPA-STYLE.CSS file against the newly supplied "
15065
- "one. You may wish to add or modify some attributes. Be aware of the fact "
15066
- "that most settings can now be set in the admin settings page."
15067
- msgstr ""
15068
-
15069
- #: wppa-setup.php:444
15070
- msgid ""
15071
- "Please REPLACE your customized WPPA-THEME.PHP file by the newly supplied "
15072
- "one, or just remove it from your theme directory. You may modify it later if "
15073
- "you wish. Your current customized version is NOT compatible with this "
15074
- "version of the plugin software."
15075
- msgstr ""
15076
-
15077
- #: wppa-setup.php:470
15078
- #, php-format
15079
- msgid "WPPA+ successfully updated in multi site mode to db version %s."
15080
- msgstr ""
15081
-
15082
- #: wppa-setup.php:473
15083
- #, php-format
15084
- msgid "WPPA+ successfully updated in single site mode to db version %s."
15085
- msgstr ""
15086
-
15087
- #: wppa-setup.php:478
15088
- #, fuzzy
15089
- msgid "An error occurred during update"
15090
- msgstr "Fehler beim Hochladen"
15091
-
15092
- #: wppa-setup.php:777
15093
- msgid ""
15094
- "<span style=\"color:red\" >Warning: Do not upload copyrighted material!</"
15095
- "span>"
15096
- msgstr ""
15097
-
15098
- #: wppa-setup.php:786 wppa-setup.php:790 wppa-setup.php:794
15099
- msgid "Select tags:"
15100
- msgstr ""
15101
-
15102
- #: wppa-setup.php:797
15103
- msgid "Enter new tags:"
15104
- msgstr ""
15105
-
15106
- #: wppa-setup.php:947
15107
- msgid "Vote for me!"
15108
- msgstr ""
15109
-
15110
- #: wppa-setup.php:948
15111
- msgid "Voted for me"
15112
- msgstr ""
15113
-
15114
- #: wppa-setup.php:1269
15115
- msgid "NEW"
15116
- msgstr ""
15117
-
15118
- #: wppa-setup.php:1271
15119
- msgid "MODIFIED"
15120
- msgstr ""
15121
-
15122
- #: wppa-setup.php:1318
15123
- #, fuzzy
15124
- msgid "Search in current section"
15125
- msgstr "Suche"
15126
-
15127
- #: wppa-setup.php:1319
15128
- #, fuzzy
15129
- msgid "Search in current results"
15130
- msgstr "Suchergebnisse für: %s"
15131
-
15132
- #: wppa-setup.php:1388
15133
- msgid "Type your custom url here"
15134
- msgstr ""
15135
-
15136
- #: wppa-setup.php:1389
15137
- msgid "Type the title here"
15138
- msgstr ""
15139
-
15140
- #: wppa-setup.php:1401 wppa-topten-widget.php:13 wppa-topten-widget.php:47
15141
- #: wppa-topten-widget.php:192
15142
- msgid "Top Ten Photos"
15143
- msgstr "Besten 10 Fotos"
15144
-
15145
- #: wppa-setup.php:1404 wppa-thumbnail-widget.php:13
15146
- #: wppa-thumbnail-widget.php:166
15147
- #, fuzzy
15148
- msgid "Thumbnail Photos"
15149
- msgstr "Miniaturbild Fotos"
15150
-
15151
- #: wppa-setup.php:1407
15152
- #, fuzzy
15153
- msgid "Search photos"
15154
- msgstr "Ausgewählte Fotos"
15155
-
15156
- #: wppa-setup.php:1450
15157
- msgid ""
15158
- "The uploads directory does not exist, please do a regular WP upload first."
15159
- msgstr ""
15160
-
15161
- #: wppa-setup.php:1454
15162
- msgid "Successfully created uploads directory."
15163
- msgstr ""
15164
-
15165
- #: wppa-setup.php:1465
15166
- #, fuzzy
15167
- msgid "Could not create the wppa directory."
15168
- msgstr "Das Album konnte nicht erstellt werden."
15169
-
15170
- #: wppa-setup.php:1469
15171
- msgid "Successfully created wppa directory."
15172
- msgstr ""
15173
-
15174
- #: wppa-setup.php:1479
15175
- #, fuzzy
15176
- msgid "Could not create the wppa thumbs directory."
15177
- msgstr "Das Album konnte nicht erstellt werden."
15178
-
15179
- #: wppa-setup.php:1483
15180
- msgid "Successfully created wppa thumbs directory."
15181
- msgstr ""
15182
-
15183
- #: wppa-setup.php:1493
15184
- msgid "Could not create the wppa watermarks directory."
15185
- msgstr ""
15186
-
15187
- #: wppa-setup.php:1497
15188
- msgid "Successfully created wppa watermarks directory."
15189
- msgstr ""
15190
-
15191
- #: wppa-setup.php:1507
15192
- msgid "Could not create the wppa fonts directory."
15193
- msgstr ""
15194
-
15195
- #: wppa-setup.php:1511
15196
- msgid "Successfully created wppa fonts directory."
15197
- msgstr ""
15198
-
15199
- #: wppa-setup.php:1523
15200
- msgid "Unable to create depot directory."
15201
- msgstr ""
15202
-
15203
- #: wppa-setup.php:1527
15204
- msgid "Successfully created wppa depot directory."
15205
- msgstr ""
15206
-
15207
- #: wppa-setup.php:1538
15208
- msgid "Unable to create user depot directory"
15209
- msgstr ""
15210
-
15211
- #: wppa-setup.php:1542
15212
- msgid "Successfully created wppa user depot directory."
15213
- msgstr ""
15214
-
15215
- #: wppa-setup.php:1552
15216
- msgid "Unable to create temp directory"
15217
- msgstr ""
15218
-
15219
- #: wppa-setup.php:1556
15220
- msgid "Successfully created temp directory."
15221
- msgstr ""
15222
-
15223
- #: wppa-setup.php:1564
15224
- #, php-format
15225
- msgid ""
15226
- "Ask your administrator to give you more rights, or create <b>%s</b> manually "
15227
- "using an FTP program."
15228
- msgstr ""
15229
-
15230
- #: wppa-slideshow-widget.php:17
15231
- msgid "WPPA+ Sidebar Slideshow"
15232
- msgstr ""
15233
-
15234
- #: wppa-slideshow-widget.php:18 wppa-slideshow-widget.php:162
15235
- #, fuzzy
15236
- msgid "Sidebar Slideshow"
15237
- msgstr "Diaschau"
15238
-
15239
- #: wppa-slideshow-widget.php:71
15240
- msgid "Widget landing page"
15241
- msgstr ""
15242
-
15243
- #: wppa-slideshow-widget.php:124
15244
- msgid "No album defined yet."
15245
- msgstr "Noch kein Album ausgewählt."
15246
-
15247
- #: wppa-slideshow-widget.php:200
15248
- msgid ""
15249
- "Enter the width and optionally the height of the area wherein the slides "
15250
- "will appear. If you specify a 0 for the height, it will be calculated. The "
15251
- "value for the height will be ignored if you set the vertical alignment to "
15252
- "'fit'."
15253
- msgstr ""
15254
-
15255
- #: wppa-slideshow-widget.php:201 wppa-slideshow-widget.php:202
15256
- #: wppa-widget-admin.php:72
15257
- msgid "pixels."
15258
- msgstr ""
15259
-
15260
- #: wppa-slideshow-widget.php:204
15261
- #, fuzzy
15262
- msgid "Portrait only:"
15263
- msgstr "Nur Hochformat:"
15264
-
15265
- #: wppa-slideshow-widget.php:208
15266
- msgid ""
15267
- "Set to 'yes' if there are only portrait images in the album and you want the "
15268
- "photos to fill the full width of the widget.<br/>Set to 'no' otherwise."
15269
- msgstr ""
15270
-
15271
- #: wppa-slideshow-widget.php:209
15272
- msgid "If set to 'yes', Vertical alignment will be forced to 'fit'."
15273
- msgstr ""
15274
-
15275
- #: wppa-slideshow-widget.php:212
15276
- msgid "Vertical alignment:"
15277
- msgstr ""
15278
-
15279
- #: wppa-slideshow-widget.php:218
15280
- msgid "Set the desired vertical alignment method."
15281
- msgstr ""
15282
-
15283
- #: wppa-slideshow-widget.php:220
15284
- #, fuzzy
15285
- msgid "Slideshow timeout:"
15286
- msgstr "Diaschau"
15287
-
15288
- #: wppa-slideshow-widget.php:220
15289
- msgid "sec."
15290
- msgstr ""
15291
-
15292
- #: wppa-slideshow-widget.php:224
15293
- #, fuzzy
15294
- msgid "Show name:"
15295
- msgstr "Dein Name:"
15296
-
15297
- #: wppa-slideshow-widget.php:231
15298
- #, fuzzy
15299
- msgid "Show description:"
15300
- msgstr "Unsymmetrische Tags in der Album Beschreibung!"
15301
-
15302
- #: wppa-slideshow-widget.php:238
15303
- msgid "Show filmstrip:"
15304
- msgstr ""
15305
-
15306
- #: wppa-slideshow-widget.php:245
15307
- msgid "Show browsebar:"
15308
- msgstr ""
15309
-
15310
- #: wppa-slideshow-widget.php:252
15311
- msgid "Show numbar:"
15312
- msgstr ""
15313
-
15314
- #: wppa-slideshow-widget.php:259
15315
- msgid "The following text fields support qTranslate"
15316
- msgstr ""
15317
-
15318
- #: wppa-slideshow-widget.php:260
15319
- msgid "Tooltip text:"
15320
- msgstr ""
15321
-
15322
- #: wppa-slideshow-widget.php:261
15323
- #, fuzzy
15324
- msgid "Text above photos:"
15325
- msgstr "Fotos"
15326
-
15327
- #: wppa-slideshow-widget.php:262
15328
- #, fuzzy
15329
- msgid "Text below photos:"
15330
- msgstr "Nächstes Foto"
15331
-
15332
- #: wppa-slideshow.php:247
15333
- msgid "Paused"
15334
- msgstr ""
15335
-
15336
- #: wppa-slideshow.php:255
15337
- msgid ""
15338
- "To see the full size images, you need to enable javascript in your browser."
15339
- msgstr ""
15340
- "Um das Komplette Bild zu sehen musst du Javaskript in deinem Browser "
15341
- "aktivieren."
15342
-
15343
- #: wppa-slideshow.php:576
15344
- msgid "Checkout"
15345
- msgstr ""
15346
-
15347
- #: wppa-slideshow.php:636
15348
- #, fuzzy, php-format
15349
- msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
15350
- msgstr "Anzahl der Stimmen: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
15351
-
15352
- #: wppa-slideshow.php:652 wppa-slideshow.php:795 wppa-slideshow.php:857
15353
- #, fuzzy, php-format
15354
- msgid "You must <a href=\"%s\">login</a> to vote"
15355
- msgstr ""
15356
- "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
15357
- "hinterlassen."
15358
-
15359
- #: wppa-slideshow.php:655 wppa-slideshow.php:798 wppa-slideshow.php:860
15360
- #, fuzzy
15361
- msgid "You must login to vote"
15362
- msgstr ""
15363
- "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
15364
- "hinterlassen."
15365
-
15366
- #: wppa-slideshow.php:691
15367
- msgid "very low"
15368
- msgstr "sehr niedrig"
15369
-
15370
- #: wppa-slideshow.php:692
15371
- msgid "low"
15372
- msgstr "niedrig"
15373
-
15374
- #: wppa-slideshow.php:693
15375
- msgid "average"
15376
- msgstr "durchschnittlich"
15377
-
15378
- #: wppa-slideshow.php:694
15379
- msgid "high"
15380
- msgstr "hoch"
15381
-
15382
- #: wppa-slideshow.php:695
15383
- msgid "very high"
15384
- msgstr "sehr hoch"
15385
-
15386
- #: wppa-slideshow.php:742 wppa-slideshow.php:828
15387
- #, fuzzy
15388
- msgid "Click this if you do NOT like this image!"
15389
- msgstr ""
15390
- "Was möchtest Du mit den derzeit befindlichen Fotos in diesem Album tun?"
15391
-
15392
- #: wppa-slideshow.php:750 wppa-slideshow.php:836
15393
- #, fuzzy
15394
- msgid "Are you sure you want to mark this image as inappropriate?"
15395
- msgstr "Bist du sicher, dass du ein Subalbum erstellen möchten?"
15396
-
15397
- #: wppa-slideshow.php:758 wppa-slideshow.php:845
15398
- #, fuzzy
15399
- msgid "Number of people who marked this photo as inappropriate"
15400
- msgstr ""
15401
- "Foto %s wurde als unpassend markiert durch%s unterschiedliche Besucher."
15402
-
15403
- #: wppa-slideshow.php:852
15404
- #, fuzzy
15405
- msgid "My rating:"
15406
- msgstr "Der Raum zwischen avg und meine Bewertungssterne"
15407
-
15408
- #: wppa-slideshow.php:944
15409
- msgid "First"
15410
- msgstr ""
15411
-
15412
- #: wppa-slideshow.php:975
15413
- msgid "Last"
15414
- msgstr ""
15415
-
15416
- #: wppa-slideshow.php:1175
15417
- #, fuzzy, php-format
15418
- msgid "Photo %s of %s"
15419
- msgstr "Foto %s gedreht %s"
15420
-
15421
- #: wppa-slideshow.php:1227
15422
- msgid "Click to start/stop"
15423
- msgstr "Klicke zum Starten/Stoppen"
15424
-
15425
- #: wppa-slideshow.php:1239
15426
- msgid "- - - Comments box activated - - -"
15427
- msgstr "- - - Kommentar Box aktiviert- - -"
15428
-
15429
- #: wppa-slideshow.php:1263
15430
- #, fuzzy
15431
- msgid "- - - IPTC box activated - - -"
15432
- msgstr "- - - Kommentar Box aktiviert- - -"
15433
-
15434
- #: wppa-slideshow.php:1287
15435
- #, fuzzy
15436
- msgid "- - - EXIF box activated - - -"
15437
- msgstr "- - - Kommentar Box aktiviert- - -"
15438
-
15439
- #: wppa-statistics.php:27 wppa-upload.php:577 wppa-upload.php:624
15440
- #: wppa-upload.php:670 wppa-upload.php:807 wppa-upload.php:864
15441
- #: wppa-upload.php:921 wppa-upload.php:966
15442
- msgid "There are"
15443
- msgstr "Hier sind"
15444
-
15445
- #: wppa-statistics.php:27
15446
- msgid "photo albums. The last album added is"
15447
- msgstr "Fotoalben. Das letzte hinzugefügte Album ist"
15448
-
15449
- #: wppa-statistics.php:31
15450
- msgid ", a subalbum of"
15451
- msgstr ", ein Unter-Album von"
15452
-
15453
- #: wppa-stereo-widget.php:12
15454
- msgid "WPPA+ Stereo settings"
15455
- msgstr ""
15456
-
15457
- #: wppa-stereo-widget.php:13
15458
- #, fuzzy
15459
- msgid "3D Settings"
15460
- msgstr "Einstellungen"
15461
-
15462
- #: wppa-stereo-widget.php:33 wppa-stereo-widget.php:64
15463
- #, fuzzy
15464
- msgid "3D Stereo Settings"
15465
- msgstr "Einstellungen"
15466
-
15467
- #: wppa-stereo.php:31
15468
- #, fuzzy
15469
- msgid "Color"
15470
- msgstr "QR Code"
15471
-
15472
- #: wppa-stereo.php:32
15473
- #, fuzzy
15474
- msgid "Half color"
15475
- msgstr "QR Code"
15476
-
15477
- #: wppa-stereo.php:33
15478
- msgid "Gray"
15479
- msgstr ""
15480
-
15481
- #: wppa-stereo.php:34
15482
- msgid "True anaglyph"
15483
- msgstr ""
15484
-
15485
- #: wppa-stereo.php:35
15486
- msgid "Optimized"
15487
- msgstr ""
15488
-
15489
- #: wppa-stereo.php:36
15490
- msgid "Flat"
15491
- msgstr ""
15492
-
15493
- #: wppa-stereo.php:38
15494
- msgid "Red - Cyan"
15495
- msgstr ""
15496
-
15497
- #: wppa-stereo.php:39
15498
- msgid "Green - Magenta"
15499
- msgstr ""
15500
-
15501
- #: wppa-super-view-widget.php:13
15502
- msgid "WPPA+ Selectable display"
15503
- msgstr ""
15504
-
15505
- #: wppa-super-view-widget.php:77
15506
- #, fuzzy
15507
- msgid "Enable (sub)albums of:"
15508
- msgstr ", ein Unter-Album von"
15509
-
15510
- #: wppa-super-view-widget.php:82
15511
- msgid "Sort alphabeticly:"
15512
- msgstr ""
15513
-
15514
- #: wppa-super-view-widget.php:84
15515
- msgid "no, use album sort method"
15516
- msgstr ""
15517
-
15518
- #: wppa-tagcloud-widget.php:14
15519
- #, fuzzy
15520
- msgid "Photo Tag Cloud"
15521
- msgstr "Fotos hochgeladen zu Album Nr"
15522
-
15523
- #: wppa-thumbnail-widget.php:12
15524
- #, fuzzy
15525
- msgid "WPPA+ Thumbnails"
15526
- msgstr "Miniaturbild Fotos"
15527
-
15528
- #: wppa-thumbnail-widget.php:48
15529
- #, fuzzy
15530
- msgid "Thumbnail photos"
15531
- msgstr "Miniaturbild Fotos"
15532
-
15533
- #: wppa-thumbnail-widget.php:186
15534
- msgid "Link from the title:"
15535
- msgstr ""
15536
-
15537
- #: wppa-thumbnail-widget.php:187
15538
- msgid "Link Title ( tooltip ):"
15539
- msgstr ""
15540
-
15541
- #: wppa-thumbnail-widget.php:198 wppa-topten-widget.php:234
15542
- #: wppa-upldr-widget.php:179
15543
- #, fuzzy
15544
- msgid "Sort by:"
15545
- msgstr "Foto %s gedreht %s"
15546
-
15547
- #: wppa-thumbnail-widget.php:211
15548
- msgid "Max number:"
15549
- msgstr ""
15550
-
15551
- #: wppa-thumbnail-widget.php:225
15552
- msgid "Show photo names <small>under thumbnails only</small>:"
15553
- msgstr ""
15554
-
15555
- #: wppa-thumbnails.php:174 wppa-thumbnails.php:1059 wppa-topten-widget.php:108
15556
- msgid "View the top rated photos"
15557
- msgstr "Betrachte die best bewertesten Fotos"
15558
-
15559
- #: wppa-thumbnails.php:635
15560
- #, fuzzy
15561
- msgid "Comments:"
15562
- msgstr "Kommentare"
15563
-
15564
- #: wppa-thumbnails.php:966
15565
- #, php-format
15566
- msgid "Missing thumbnail image #%s"
15567
- msgstr ""
15568
-
15569
- #: wppa-tinymce-scripts.php:64 wppa-tinymce-shortcodes.php:59
15570
- msgid "No Preview available"
15571
- msgstr ""
15572
-
15573
- #: wppa-tinymce-scripts.php:80
15574
- #, fuzzy
15575
- msgid "Album Preview"
15576
- msgstr "- Das zuletzt erstellte Album -"
15577
-
15578
- #: wppa-tinymce-scripts.php:80
15579
- msgid "A maximum of 100 photos can be previewd"
15580
- msgstr ""
15581
-
15582
- #: wppa-tinymce-scripts.php:82
15583
- #, fuzzy
15584
- msgid "Photo Preview"
15585
- msgstr "Foto des Tages"
15586
-
15587
- #: wppa-tinymce-scripts.php:87
15588
- msgid "Type of Gallery display:"
15589
- msgstr ""
15590
-
15591
- #: wppa-tinymce-scripts.php:90
15592
- msgid "The cover of an album"
15593
- msgstr ""
15594
-
15595
- #: wppa-tinymce-scripts.php:91
15596
- msgid "The sub-albums and/or thumbnails in an album"
15597
- msgstr ""
15598
-
15599
- #: wppa-tinymce-scripts.php:92
15600
- msgid "A slideshow of the photos in an album"
15601
- msgstr ""
15602
-
15603
- #: wppa-tinymce-scripts.php:93 wppa-tinymce-shortcodes.php:131
15604
- msgid "A slideshow without supporting boxes"
15605
- msgstr ""
15606
-
15607
- #: wppa-tinymce-scripts.php:94 wppa-tinymce-shortcodes.php:132
15608
- msgid "A slideshow with a filmstrip only"
15609
- msgstr ""
15610
-
15611
- #: wppa-tinymce-scripts.php:95
15612
- #, fuzzy
15613
- msgid "A single photo"
15614
- msgstr "Verwalte Fotos"
15615
-
15616
- #: wppa-tinymce-scripts.php:96 wppa-tinymce-shortcodes.php:145
15617
- msgid "A single photo with caption"
15618
- msgstr ""
15619
-
15620
- #: wppa-tinymce-scripts.php:97 wppa-tinymce-shortcodes.php:146
15621
- msgid "A single photo in the style of a slideshow"
15622
- msgstr ""
15623
-
15624
- #: wppa-tinymce-scripts.php:98 wppa-tinymce-shortcodes.php:173
15625
- msgid "A generic albums display"
15626
- msgstr ""
15627
-
15628
- #: wppa-tinymce-scripts.php:101
15629
- msgid "Specify the type of gallery"
15630
- msgstr ""
15631
-
15632
- #: wppa-tinymce-scripts.php:106
15633
- msgid "Explanation:"
15634
- msgstr ""
15635
-
15636
- #: wppa-tinymce-scripts.php:108
15637
- msgid "Use this gallerytype to display all the top-level album covers."
15638
- msgstr ""
15639
-
15640
- #: wppa-tinymce-scripts.php:113
15641
- msgid "The Album to be used:"
15642
- msgstr ""
15643
-
15644
- #: wppa-tinymce-scripts.php:124 wppa-upload.php:134 wppa-upload.php:222
15645
- #: wppa-upload.php:269
15646
- #, fuzzy
15647
- msgid "Please select an album"
15648
- msgstr "Bitte wähle Album"
15649
-
15650
- #: wppa-tinymce-scripts.php:148
15651
- #, fuzzy
15652
- msgid "- The latest created album -"
15653
- msgstr "Bitte wähle Album"
15654
-
15655
- #: wppa-tinymce-scripts.php:157
15656
- #, fuzzy
15657
- msgid "--- The top rated photos ---"
15658
- msgstr "Betrachte die best bewertesten Fotos"
15659
-
15660
- #: wppa-tinymce-scripts.php:166
15661
- #, fuzzy
15662
- msgid "--- The most recently uploaded photos ---"
15663
- msgstr "--- Die zuletzt hochgeladenen Fotos---"
15664
-
15665
- #: wppa-tinymce-scripts.php:175
15666
- #, fuzzy
15667
- msgid "--- A random selection of featured photos ---"
15668
- msgstr "--- gelöscht ---"
15669
-
15670
- #: wppa-tinymce-scripts.php:192
15671
- #, fuzzy
15672
- msgid "--- The most recently commented photos ---"
15673
- msgstr "--- Die zuletzt kommentierten Fotos ---"
15674
-
15675
- #: wppa-tinymce-scripts.php:195
15676
- msgid "--- Photos that have certain tags ---"
15677
- msgstr ""
15678
-
15679
- #: wppa-tinymce-scripts.php:204
15680
- msgid "--- All photos in the system ---"
15681
- msgstr ""
15682
-
15683
- #: wppa-tinymce-scripts.php:207 wppa-tinymce-shortcodes.php:244
15684
- #: wppa-tinymce-shortcodes.php:267 wppa-tinymce-shortcodes.php:312
15685
- #: wppa-tinymce-shortcodes.php:335 wppa-tinymce-shortcodes.php:474
15686
- msgid "There are no albums yet"
15687
- msgstr ""
15688
-
15689
- #: wppa-tinymce-scripts.php:215
15690
- msgid "Specify the album to be used or --- A special selection of photos ---"
15691
- msgstr ""
15692
-
15693
- #: wppa-tinymce-scripts.php:216
15694
- msgid ""
15695
- "In an upload box, the album is optional. When no album is specified: a "
15696
- "selection box will be displayed of the albums the user has the right to "
15697
- "upload."
15698
- msgstr ""
15699
-
15700
- #: wppa-tinymce-scripts.php:217
15701
- msgid "* Album contains less than the minimun number of photos"
15702
- msgstr ""
15703
-
15704
- #: wppa-tinymce-scripts.php:223 wppa-tinymce-shortcodes.php:373
15705
- msgid "The Photo to be used:"
15706
- msgstr ""
15707
-
15708
- #: wppa-tinymce-scripts.php:228 wppa-tinymce-shortcodes.php:379
15709
- #, fuzzy
15710
- msgid "Please select a photo"
15711
- msgstr "Bitte hinterlasse einen Kommentar"
15712
-
15713
- #: wppa-tinymce-scripts.php:239
15714
- #, fuzzy
15715
- msgid "--- The most recently uploaded photo ---"
15716
- msgstr "--- Die zuletzt hochgeladenen Fotos---"
15717
-
15718
- #: wppa-tinymce-scripts.php:240
15719
- #, fuzzy
15720
- msgid "--- The photo of the day ---"
15721
- msgstr "Foto des Tages"
15722
-
15723
- #: wppa-tinymce-scripts.php:243 wppa-tinymce-shortcodes.php:396
15724
- msgid "There are no photos yet"
15725
- msgstr ""
15726
-
15727
- #: wppa-tinymce-scripts.php:249 wppa-tinymce-shortcodes.php:402
15728
- msgid "Specify the photo to be used"
15729
- msgstr ""
15730
-
15731
- #: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:403
15732
- msgid "You can select from a maximum of 100 most recently added photos"
15733
- msgstr ""
15734
-
15735
- #: wppa-tinymce-scripts.php:256 wppa-tinymce-shortcodes.php:417
15736
- #, fuzzy
15737
- msgid "The tags the photos should have:"
15738
- msgstr "--- bitte wähle Tag(s) aus ---"
15739
-
15740
- #: wppa-tinymce-scripts.php:259 wppa-tinymce-shortcodes.php:420
15741
- #, fuzzy
15742
- msgid "--- please select tag(s) ---"
15743
- msgstr "--- gelöscht ---"
15744
-
15745
- #: wppa-tinymce-scripts.php:267
15746
- msgid ""
15747
- "If you want that the photos have all the selected tags, check this box. "
15748
- "Leave it unchecked if the photo must have atleast only one of the selected "
15749
- "tags"
15750
- msgstr ""
15751
-
15752
- #: wppa-tinymce-scripts.php:272 wppa-tinymce-shortcodes.php:497
15753
- #, fuzzy
15754
- msgid "The size of the display:"
15755
- msgstr "Foto des Tages"
15756
-
15757
- #: wppa-tinymce-scripts.php:277 wppa-tinymce-shortcodes.php:502
15758
- msgid ""
15759
- "Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
15760
- "span>."
15761
- msgstr ""
15762
-
15763
- #: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:503
15764
- msgid ""
15765
- "A value less than <span style=\"color:blue\" >100</span> will automaticly be "
15766
- "interpreted as a <span style=\"color:blue\" >percentage</span> of the "
15767
- "available space."
15768
- msgstr ""
15769
-
15770
- #: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:504
15771
- msgid "Leave this blank for default size"
15772
- msgstr ""
15773
-
15774
- #: wppa-tinymce-scripts.php:284 wppa-tinymce-shortcodes.php:510
15775
- #: wppa-widget-admin.php:72
15776
- msgid "Horizontal alignment:"
15777
- msgstr ""
15778
-
15779
- #: wppa-tinymce-scripts.php:293 wppa-tinymce-shortcodes.php:519
15780
- msgid "Specify the alignment to be used or --- none ---"
15781
- msgstr ""
15782
-
15783
- #: wppa-tinymce-scripts.php:299 wppa-tinymce-shortcodes.php:529
15784
- msgid "Insert Gallery"
15785
- msgstr ""
15786
-
15787
- #: wppa-tinymce-shortcodes.php:97
15788
- msgid "Type of WPPA display:"
15789
- msgstr ""
15790
-
15791
- #: wppa-tinymce-shortcodes.php:100
15792
- #, fuzzy
15793
- msgid "Please select a display type"
15794
- msgstr "Bitte wähle Album"
15795
-
15796
- #: wppa-tinymce-shortcodes.php:101
15797
- msgid "A gallery with covers and/or thumbnails"
15798
- msgstr ""
15799
-
15800
- #: wppa-tinymce-shortcodes.php:102
15801
- #, fuzzy
15802
- msgid "A slideshow"
15803
- msgstr "Diaschau"
15804
-
15805
- #: wppa-tinymce-shortcodes.php:103
15806
- msgid "A single image"
15807
- msgstr ""
15808
-
15809
- #: wppa-tinymce-shortcodes.php:104
15810
- #, fuzzy
15811
- msgid "A search/selection box"
15812
- msgstr "--- gelöscht ---"
15813
-
15814
- #: wppa-tinymce-shortcodes.php:105
15815
- msgid "An other box type"
15816
- msgstr ""
15817
-
15818
- #: wppa-tinymce-shortcodes.php:112
15819
- msgid "Type of gallery display:"
15820
- msgstr ""
15821
-
15822
- #: wppa-tinymce-shortcodes.php:115
15823
- #, fuzzy
15824
- msgid "Please select a gallery type"
15825
- msgstr "Bitte wähle Album"
15826
-
15827
- #: wppa-tinymce-shortcodes.php:116
15828
- msgid "The cover(s) of specific album(s)"
15829
- msgstr ""
15830
-
15831
- #: wppa-tinymce-shortcodes.php:117
15832
- msgid "The content of specific album(s)"
15833
- msgstr ""
15834
-
15835
- #: wppa-tinymce-shortcodes.php:118
15836
- msgid "The covers of the subalbums of specific album(s)"
15837
- msgstr ""
15838
-
15839
- #: wppa-tinymce-shortcodes.php:119
15840
- msgid "The thumbnails of specific album(s)"
15841
- msgstr ""
15842
-
15843
- #: wppa-tinymce-shortcodes.php:126
15844
- msgid "Type of slideshow:"
15845
- msgstr ""
15846
-
15847
- #: wppa-tinymce-shortcodes.php:129
15848
- #, fuzzy
15849
- msgid "Please select a slideshow type"
15850
- msgstr "Bitte wähle Album"
15851
-
15852
- #: wppa-tinymce-shortcodes.php:130
15853
- msgid "A fully featured slideshow"
15854
- msgstr ""
15855
-
15856
- #: wppa-tinymce-shortcodes.php:133
15857
- msgid "A filmstrip only"
15858
- msgstr ""
15859
-
15860
- #: wppa-tinymce-shortcodes.php:140
15861
- msgid "Type of single image:"
15862
- msgstr ""
15863
-
15864
- #: wppa-tinymce-shortcodes.php:143
15865
- #, fuzzy
15866
- msgid "Please select a single image type"
15867
- msgstr "Bitte wähle Album"
15868
-
15869
- #: wppa-tinymce-shortcodes.php:144
15870
- #, fuzzy
15871
- msgid "A plain single photo"
15872
- msgstr "Verwalte Fotos"
15873
-
15874
- #: wppa-tinymce-shortcodes.php:153
15875
- msgid "Type of search:"
15876
- msgstr ""
15877
-
15878
- #: wppa-tinymce-shortcodes.php:156
15879
- #, fuzzy
15880
- msgid "Please select a search type"
15881
- msgstr "Bitte wähle Album"
15882
-
15883
- #: wppa-tinymce-shortcodes.php:157
15884
- msgid "A search box"
15885
- msgstr ""
15886
-
15887
- #: wppa-tinymce-shortcodes.php:158
15888
- msgid "A supersearch box"
15889
- msgstr ""
15890
-
15891
- #: wppa-tinymce-shortcodes.php:159
15892
- msgid "A tagcloud box"
15893
- msgstr ""
15894
-
15895
- #: wppa-tinymce-shortcodes.php:160
15896
- msgid "A multitag box"
15897
- msgstr ""
15898
-
15899
- #: wppa-tinymce-shortcodes.php:161
15900
- msgid "A superview box"
15901
- msgstr ""
15902
-
15903
- #: wppa-tinymce-shortcodes.php:162
15904
- msgid "A calendar box"
15905
- msgstr ""
15906
-
15907
- #: wppa-tinymce-shortcodes.php:169
15908
- msgid "Type miscellaneous:"
15909
- msgstr ""
15910
-
15911
- #: wppa-tinymce-shortcodes.php:172
15912
- msgid "Please select a miscellaneous display"
15913
- msgstr ""
15914
-
15915
- #: wppa-tinymce-shortcodes.php:174
15916
- msgid "An upload box"
15917
- msgstr ""
15918
-
15919
- #: wppa-tinymce-shortcodes.php:175
15920
- msgid "A landing page shortcode"
15921
- msgstr ""
15922
-
15923
- #: wppa-tinymce-shortcodes.php:176
15924
- #, fuzzy
15925
- msgid "A 3D stereo settings box"
15926
- msgstr "--- gelöscht ---"
15927
-
15928
- #: wppa-tinymce-shortcodes.php:183
15929
- msgid "Kind of selection:"
15930
- msgstr ""
15931
-
15932
- #: wppa-tinymce-shortcodes.php:186
15933
- msgid "Please select a type of selection to be used"
15934
- msgstr ""
15935
-
15936
- #: wppa-tinymce-shortcodes.php:187
15937
- msgid "One or more wppa+ albums"
15938
- msgstr ""
15939
-
15940
- #: wppa-tinymce-shortcodes.php:188
15941
- msgid "A special selection"
15942
- msgstr ""
15943
-
15944
- #: wppa-tinymce-shortcodes.php:195 wppa-tinymce-shortcodes.php:215
15945
- msgid "The selection to be used:"
15946
- msgstr ""
15947
-
15948
- #: wppa-tinymce-shortcodes.php:198 wppa-tinymce-shortcodes.php:218
15949
- #, fuzzy
15950
- msgid "Please select a virtual album"
15951
- msgstr "Bitte wähle Album"
15952
-
15953
- #: wppa-tinymce-shortcodes.php:199 wppa-tinymce-shortcodes.php:219
15954
- #, fuzzy
15955
- msgid "The most recently modified album"
15956
- msgstr "--- die zuletzt hinzugefügten Alben ---"
15957
-
15958
- #: wppa-tinymce-shortcodes.php:200
15959
- #, fuzzy
15960
- msgid "The top rated photos"
15961
- msgstr "Hoch bewertete Fotos"
15962
-
15963
- #: wppa-tinymce-shortcodes.php:201
15964
- #, fuzzy
15965
- msgid "The most recently uploaded photos"
15966
- msgstr "--- Die zuletzt hochgeladenen Fotos---"
15967
-
15968
- #: wppa-tinymce-shortcodes.php:202
15969
- msgid "A random selection of featured photos"
15970
- msgstr ""
15971
-
15972
- #: wppa-tinymce-shortcodes.php:203
15973
- #, fuzzy
15974
- msgid "The most recently commented photos"
15975
- msgstr "--- Die zuletzt kommentierten Fotos ---"
15976
-
15977
- #: wppa-tinymce-shortcodes.php:204
15978
- msgid "Photos that have certain tags"
15979
- msgstr ""
15980
-
15981
- #: wppa-tinymce-shortcodes.php:205 wppa-tinymce-shortcodes.php:221
15982
- msgid "Albums tagged with a certain category"
15983
- msgstr ""
15984
-
15985
- #: wppa-tinymce-shortcodes.php:206
15986
- msgid "Photos in albums owned by a certain user"
15987
- msgstr ""
15988
-
15989
- #: wppa-tinymce-shortcodes.php:207
15990
- #, fuzzy
15991
- msgid "Photos uploaded by a certain user"
15992
- msgstr "Fotos hochgeladen zu Album Nr"
15993
-
15994
- #: wppa-tinymce-shortcodes.php:208
15995
- msgid "All photos in the system"
15996
- msgstr ""
15997
-
15998
- #: wppa-tinymce-shortcodes.php:220
15999
- msgid "Albums owned by a certain user"
16000
- msgstr ""
16001
-
16002
- #: wppa-tinymce-shortcodes.php:222
16003
- msgid "All albums in the system"
16004
- msgstr ""
16005
-
16006
- #: wppa-tinymce-shortcodes.php:229 wppa-tinymce-shortcodes.php:252
16007
- msgid "The Album(s) to be used:"
16008
- msgstr ""
16009
-
16010
- #: wppa-tinymce-shortcodes.php:235
16011
- #, fuzzy
16012
- msgid "Please select one or more albums"
16013
- msgstr "Bitte gibt deinen Namen an"
16014
-
16015
- #: wppa-tinymce-shortcodes.php:258 wppa-upldr-widget.php:209 wppa-utils.php:412
16016
- #, fuzzy
16017
- msgid "All albums"
16018
- msgstr "- alle Alben -"
16019
-
16020
- #: wppa-tinymce-shortcodes.php:275
16021
- #, fuzzy
16022
- msgid "The album owner:"
16023
- msgstr ""
16024
- "Trage hier Schriftnamen, Größe, Farbe und Breite für die Album Cover Titel "
16025
- "ein."
16026
-
16027
- #: wppa-tinymce-shortcodes.php:278
16028
- #, fuzzy
16029
- msgid "Please select a user"
16030
- msgstr "Bitte wähle Album"
16031
-
16032
- #: wppa-tinymce-shortcodes.php:279
16033
- msgid "The logged in visitor"
16034
- msgstr ""
16035
-
16036
- #: wppa-tinymce-shortcodes.php:285
16037
- msgid "Too many users, edit manually"
16038
- msgstr ""
16039
-
16040
- #: wppa-tinymce-shortcodes.php:300
16041
- msgid "No parent specification"
16042
- msgstr ""
16043
-
16044
- #: wppa-tinymce-shortcodes.php:303 wppa-tinymce-shortcodes.php:326
16045
- #: wppa-tinymce-shortcodes.php:465
16046
- msgid "The generic parent"
16047
- msgstr ""
16048
-
16049
- #: wppa-tinymce-shortcodes.php:343
16050
- #, fuzzy
16051
- msgid "Max Albums:"
16052
- msgstr "Alben:"
16053
-
16054
- #: wppa-tinymce-shortcodes.php:351
16055
- #, fuzzy
16056
- msgid "Max Photos:"
16057
- msgstr "Foto"
16058
-
16059
- #: wppa-tinymce-shortcodes.php:359
16060
- msgid "The cat the albums should have:"
16061
- msgstr ""
16062
-
16063
- #: wppa-tinymce-shortcodes.php:362
16064
- #, fuzzy
16065
- msgid "--- please select category ---"
16066
- msgstr "--- gelöscht ---"
16067
-
16068
- #: wppa-tinymce-shortcodes.php:392
16069
- #, fuzzy
16070
- msgid "The most recently uploaded photo"
16071
- msgstr "--- Die zuletzt hochgeladenen Fotos---"
16072
-
16073
- #: wppa-tinymce-shortcodes.php:393
16074
- #, fuzzy
16075
- msgid "The photo of the day"
16076
- msgstr "Foto des Tages"
16077
-
16078
- #: wppa-tinymce-shortcodes.php:410
16079
- msgid "Preview image:"
16080
- msgstr ""
16081
-
16082
- #: wppa-tinymce-shortcodes.php:431 wppa-tinymce-shortcodes.php:440
16083
- msgid "Additional features:"
16084
- msgstr ""
16085
-
16086
- #: wppa-tinymce-shortcodes.php:433
16087
- msgid "Enable Subsearch"
16088
- msgstr ""
16089
-
16090
- #: wppa-tinymce-shortcodes.php:434
16091
- msgid "Enable Rootsearch"
16092
- msgstr ""
16093
-
16094
- #: wppa-tinymce-shortcodes.php:442
16095
- msgid "Enable all tags"
16096
- msgstr ""
16097
-
16098
- #: wppa-tinymce-shortcodes.php:445
16099
- #, fuzzy
16100
- msgid "Please select the tags to show"
16101
- msgstr "--- bitte wähle Tag(s) aus ---"
16102
-
16103
- #: wppa-tinymce-shortcodes.php:451
16104
- #, fuzzy
16105
- msgid "There are no tags"
16106
- msgstr "Hier sind"
16107
-
16108
- #: wppa-tinymce-shortcodes.php:482
16109
- msgid "Calendar type:"
16110
- msgstr ""
16111
-
16112
- #: wppa-tinymce-shortcodes.php:485
16113
- #, fuzzy
16114
- msgid "By EXIF date"
16115
- msgstr "EXIF Daten"
16116
-
16117
- #: wppa-tinymce-shortcodes.php:486
16118
- #, fuzzy
16119
- msgid "By date of upload"
16120
- msgstr "Fotos hochgeladen zu Album Nr"
16121
-
16122
- #: wppa-tinymce-shortcodes.php:487
16123
- msgid "By date last modified"
16124
- msgstr ""
16125
-
16126
- #: wppa-tinymce-shortcodes.php:490
16127
- msgid "Last date first"
16128
- msgstr ""
16129
-
16130
- #: wppa-tinymce-shortcodes.php:491
16131
- msgid "Initially display all"
16132
- msgstr ""
16133
-
16134
- #: wppa-tinymce-shortcodes.php:527
16135
- msgid ""
16136
- "This is a preview of the shortcode that is being generated. You may edit the "
16137
- "comment"
16138
- msgstr ""
16139
-
16140
- #: wppa-tinymce-shortcodes.php:530
16141
- msgid "insert Gallery"
16142
- msgstr ""
16143
-
16144
- #: wppa-tinymce-shortcodes.php:530
16145
- msgid "Please complete the shortcode specs"
16146
- msgstr ""
16147
-
16148
- #: wppa-topten-widget.php:12
16149
- #, fuzzy
16150
- msgid "WPPA+ Top Ten Rated Photos"
16151
- msgstr "Besten 10 Fotos"
16152
-
16153
- #: wppa-topten-widget.php:48
16154
- #, fuzzy
16155
- msgid "Top Ten Photo album"
16156
- msgstr "Besten 10 Fotos"
16157
-
16158
- #: wppa-topten-widget.php:136 wppa-topten-widget.php:140
16159
- #: wppa-topten-widget.php:147
16160
- #, php-format
16161
- msgid "%s Votes"
16162
- msgstr "%s Stimme(n)"
16163
-
16164
- #: wppa-topten-widget.php:137 wppa-topten-widget.php:142
16165
- #: wppa-topten-widget.php:145
16166
- #, php-format
16167
- msgid "Views: %s times"
16168
- msgstr "%s mal angeschaut"
16169
-
16170
- #: wppa-topten-widget.php:238
16171
- msgid "Number of views"
16172
- msgstr ""
16173
-
16174
- #: wppa-topten-widget.php:242
16175
- msgid "Include sub albums:"
16176
- msgstr ""
16177
-
16178
- #: wppa-topten-widget.php:250
16179
- msgid "Show owner:"
16180
- msgstr ""
16181
-
16182
- #: wppa-topten-widget.php:255
16183
- #, fuzzy
16184
- msgid "Show album:"
16185
- msgstr "Popup Download Link"
16186
-
16187
- #: wppa-topten-widget.php:270
16188
- msgid "View count:"
16189
- msgstr ""
16190
-
16191
- #: wppa-upldr-widget.php:14
16192
- #, fuzzy
16193
- msgid "WPPA+ Uploader Photos"
16194
- msgstr "Fotos Hochladen"
16195
-
16196
- #: wppa-upldr-widget.php:15
16197
- #, fuzzy
16198
- msgid "Uploader Photos"
16199
- msgstr "Fotos Hochladen"
16200
-
16201
- #: wppa-upldr-widget.php:42
16202
- #, fuzzy
16203
- msgid "User uploaded photos"
16204
- msgstr "Hochgeladen Fotos benötigen eine Moderation."
16205
-
16206
- #: wppa-upldr-widget.php:90
16207
- msgid "There are too many registered users in the system for this widget"
16208
- msgstr ""
16209
-
16210
- #: wppa-upldr-widget.php:124 wppa-upldr-widget.php:131
16211
- #, fuzzy
16212
- msgid "Photos uploaded by"
16213
- msgstr "Fotos hochgeladen zu Album Nr"
16214
-
16215
- #: wppa-upldr-widget.php:167
16216
- #, fuzzy
16217
- msgid "User Photos"
16218
- msgstr "Foto"
16219
-
16220
- #: wppa-upldr-widget.php:182
16221
- #, fuzzy
16222
- msgid "Number of photos"
16223
- msgstr "Miniaturbild Fotos"
16224
-
16225
- #: wppa-upldr-widget.php:183
16226
- #, fuzzy
16227
- msgid "Most recent photo"
16228
- msgstr "Foto:"
16229
-
16230
- #: wppa-upldr-widget.php:187
16231
- msgid "Ignore:"
16232
- msgstr ""
16233
-
16234
- #: wppa-upldr-widget.php:189
16235
- msgid "Enter loginnames seperated by commas"
16236
- msgstr ""
16237
-
16238
- #: wppa-upldr-widget.php:192
16239
- msgid "Look only in albums (including sub-albums):"
16240
- msgstr ""
16241
-
16242
- #: wppa-upload-widget.php:15
16243
- #, fuzzy
16244
- msgid "WPPA+ Upload photos widget"
16245
- msgstr "Fotos hochladen"
16246
-
16247
- #: wppa-upload-widget.php:16
16248
- msgid "WPPA+ Upload"
16249
- msgstr ""
16250
-
16251
- #: wppa-upload.php:37 wppa-upload.php:52
16252
- msgid "Connecting to edit album..."
16253
- msgstr ""
16254
-
16255
- #: wppa-upload.php:41 wppa-upload.php:56
16256
- msgid "Connecting to edit photos..."
16257
- msgstr ""
16258
-
16259
- #: wppa-upload.php:66
16260
- msgid "Connecting to your depot..."
16261
- msgstr ""
16262
-
16263
- #: wppa-upload.php:111
16264
- #, fuzzy
16265
- msgid "Upload a single photo"
16266
- msgstr "Fotos hochladen"
16267
-
16268
- #: wppa-upload.php:141
16269
- #, php-format
16270
- msgid ""
16271
- "<b>Notice:</b> your server allows you to upload <b>%s</b> files of maximum "
16272
- "total <b>%s</b> bytes and allows <b>%s</b> seconds to complete."
16273
- msgstr ""
16274
-
16275
- #: wppa-upload.php:142
16276
- msgid ""
16277
- "If your request exceeds these limitations, it will fail, probably without an "
16278
- "errormessage."
16279
- msgstr ""
16280
-
16281
- #: wppa-upload.php:143
16282
- msgid ""
16283
- "Additionally your hosting provider may have set other limitations on "
16284
- "uploading files."
16285
- msgstr ""
16286
-
16287
- #: wppa-upload.php:148
16288
- msgid "Box A:"
16289
- msgstr ""
16290
-
16291
- #: wppa-upload.php:148
16292
- msgid "Multiple Photos in one selection"
16293
- msgstr ""
16294
-
16295
- #: wppa-upload.php:149
16296
- #, php-format
16297
- msgid "You can select up to %s photos in one selection and upload them."
16298
- msgstr ""
16299
-
16300
- #: wppa-upload.php:150
16301
- #, fuzzy
16302
- msgid "You need a modern browser that supports HTML-5 to select multiple files"
16303
- msgstr ""
16304
- "Du benötigst einen modernen Browser, der HTML-5 unterstützt, um mehrere "
16305
- "Dateien auszuwählen"
16306
-
16307
- #: wppa-upload.php:155 wppa-upload.php:164 wppa-upload.php:247
16308
- msgid "Selected Files:"
16309
- msgstr ""
16310
-
16311
- #: wppa-upload.php:166
16312
- msgid "Size"
16313
- msgstr ""
16314
-
16315
- #: wppa-upload.php:166
16316
- msgid "Type"
16317
- msgstr ""
16318
-
16319
- #: wppa-upload.php:187
16320
- msgid "Too many!"
16321
- msgstr ""
16322
-
16323
- #: wppa-upload.php:191
16324
- msgid "Too big!"
16325
- msgstr ""
16326
-
16327
- #: wppa-upload.php:195
16328
- msgid "Try again!"
16329
- msgstr ""
16330
-
16331
- #: wppa-upload.php:197
16332
- msgid "Total"
16333
- msgstr ""
16334
-
16335
- #: wppa-upload.php:222
16336
- #, fuzzy
16337
- msgid "Upload Multiple Photos"
16338
- msgstr "Fotos Hochladen"
16339
-
16340
- #: wppa-upload.php:229 wppa-upload.php:276
16341
- msgid "After upload: Go to the <b>Edit Album</b> page."
16342
- msgstr ""
16343
-
16344
- #: wppa-upload.php:232 wppa-upload.php:279
16345
- msgid "After upload: Go to the <b>Edit Photos</b> page."
16346
- msgstr ""
16347
-
16348
- #: wppa-upload.php:241
16349
- msgid "Box B:"
16350
- msgstr ""
16351
-
16352
- #: wppa-upload.php:241
16353
- msgid "Single Photos in multiple selections"
16354
- msgstr ""
16355
-
16356
- #: wppa-upload.php:242
16357
- #, php-format
16358
- msgid "You can select up to %s photos one by one and upload them at once."
16359
- msgstr ""
16360
-
16361
- #: wppa-upload.php:269
16362
- #, fuzzy
16363
- msgid "Upload Single Photos"
16364
- msgstr "Fotos Hochladen"
16365
-
16366
- #: wppa-upload.php:296
16367
- msgid "Box C:"
16368
- msgstr ""
16369
-
16370
- #: wppa-upload.php:296
16371
- msgid "Zipped Photos in one selection"
16372
- msgstr ""
16373
-
16374
- #: wppa-upload.php:297
16375
- #, php-format
16376
- msgid ""
16377
- "You can upload one zipfile. It will be placed in your personal wppa-depot: "
16378
- "<b>.../%s</b><br/>Once uploaded, use <b>Import Photos</b> to unzip the file "
16379
- "and place the photos in any album."
16380
- msgstr ""
16381
-
16382
- #: wppa-upload.php:301
16383
- #, fuzzy
16384
- msgid "Upload Zipped Photos"
16385
- msgstr "Fotos Hochladen"
16386
-
16387
- #: wppa-upload.php:306
16388
- msgid "After upload: Go to the <b>Import Photos</b> page."
16389
- msgstr ""
16390
-
16391
- #: wppa-upload.php:312
16392
- msgid ""
16393
- "<small>Ask your administrator to upgrade php to version 5.2.7 or later. This "
16394
- "will enable you to upload zipped photos.</small>"
16395
- msgstr ""
16396
-
16397
- #: wppa-upload.php:320 wppa-upload.php:1191
16398
- msgid "No albums exist. You must"
16399
- msgstr ""
16400
-
16401
- #: wppa-upload.php:320 wppa-upload.php:1191
16402
- msgid "create one"
16403
- msgstr ""
16404
-
16405
- #: wppa-upload.php:320 wppa-upload.php:1191
16406
- #, fuzzy
16407
- msgid "beofre you can upload your photos."
16408
- msgstr "--- Die zuletzt hochgeladenen Fotos---"
16409
-
16410
- #: wppa-upload.php:437
16411
- msgid "Done!"
16412
- msgstr ""
16413
-
16414
- #: wppa-upload.php:443
16415
- msgid "Failed!"
16416
- msgstr ""
16417
-
16418
- #: wppa-upload.php:527
16419
- msgid "Select Local or Remote"
16420
- msgstr ""
16421
-
16422
- #: wppa-upload.php:531
16423
- msgid "Local"
16424
- msgstr ""
16425
-
16426
- #: wppa-upload.php:532
16427
- msgid "Remote"
16428
- msgstr ""
16429
-
16430
- #: wppa-upload.php:535
16431
- msgid "Set Local/Remote"
16432
- msgstr ""
16433
-
16434
- #: wppa-upload.php:538
16435
- msgid ""
16436
- "The server does not allow you to import from remote locations. ( The php "
16437
- "directive allow_url_fopen is not set to 1 )"
16438
- msgstr ""
16439
-
16440
- #: wppa-upload.php:540
16441
- msgid ""
16442
- "The server does not allow you to import from remote locations. ( The curl "
16443
- "functions are not set up )"
16444
- msgstr ""
16445
-
16446
- #: wppa-upload.php:545
16447
- #, fuzzy
16448
- msgid "Import photos from:"
16449
- msgstr "Fotos Importieren"
16450
-
16451
- #: wppa-upload.php:550
16452
- msgid "Set source directory"
16453
- msgstr ""
16454
-
16455
- #: wppa-upload.php:553
16456
- msgid "Max:"
16457
- msgstr ""
16458
-
16459
- #: wppa-upload.php:555
16460
- #, fuzzy
16461
- msgid "Find remote photos"
16462
- msgstr "Ausgewählte Fotos"
16463
-
16464
- #: wppa-upload.php:556
16465
- msgid "Working, please wait..."
16466
- msgstr ""
16467
-
16468
- #: wppa-upload.php:557
16469
- msgid ""
16470
- "<br />You can enter either a web page address like <i>http://mysite.com/"
16471
- "mypage/</i> or a full url to an image file like <i>http://mysite.com/wp-"
16472
- "content/uploads/wppa/4711.jpg</i>"
16473
- msgstr ""
16474
-
16475
- #: wppa-upload.php:577
16476
- msgid "zipfiles in the depot."
16477
- msgstr ""
16478
-
16479
- #: wppa-upload.php:583 wppa-upload.php:630 wppa-upload.php:708
16480
- #: wppa-upload.php:824 wppa-upload.php:881 wppa-upload.php:927
16481
- #: wppa-upload.php:972
16482
- msgid "Check/uncheck all"
16483
- msgstr ""
16484
-
16485
- #: wppa-upload.php:587
16486
- msgid "Delete after successful extraction."
16487
- msgstr ""
16488
-
16489
- #: wppa-upload.php:624
16490
- msgid "albumdefinitions in the depot."
16491
- msgstr ""
16492
-
16493
- #: wppa-upload.php:634
16494
- msgid ""
16495
- "Remove from depot after successful import, or if the album already exists."
16496
- msgstr ""
16497
-
16498
- #: wppa-upload.php:673
16499
- msgid "photos in the ngg gallery."
16500
- msgstr ""
16501
-
16502
- #: wppa-upload.php:675
16503
- #, fuzzy
16504
- msgid "photos in the depot."
16505
- msgstr "Foto des Tages"
16506
-
16507
- #: wppa-upload.php:677
16508
- #, fuzzy
16509
- msgid "possible photos found remote."
16510
- msgstr "Thumbnail Fotos verwandte Einstellungen"
16511
-
16512
- #: wppa-upload.php:678
16513
- msgid "Photos will be downsized during import."
16514
- msgstr ""
16515
-
16516
- #: wppa-upload.php:681
16517
- #, fuzzy
16518
- msgid "Default album for import:"
16519
- msgstr "Standardfotoalbum für"
16520
-
16521
- #: wppa-upload.php:690
16522
- msgid ""
16523
- "Photos that have (<em>name</em>)[<em>album</em>] will be imported by that "
16524
- "<em>name</em> in that <em>album</em>."
16525
- msgstr ""
16526
-
16527
- #: wppa-upload.php:712 wppa-upload.php:828 wppa-upload.php:885
16528
- #: wppa-upload.php:975
16529
- msgid "Remove from depot after successful import."
16530
- msgstr ""
16531
-
16532
- #: wppa-upload.php:717
16533
- #, php-format
16534
- msgid "Import into album <i>%s</i>."
16535
- msgstr ""
16536
-
16537
- #: wppa-upload.php:718
16538
- msgid "The album will be created if it does not exist"
16539
- msgstr ""
16540
-
16541
- #: wppa-upload.php:721
16542
- msgid "Use backup if available"
16543
- msgstr ""
16544
-
16545
- #: wppa-upload.php:725
16546
- #, fuzzy
16547
- msgid "Update existing photos"
16548
- msgstr "Moderiere Fotos"
16549
-
16550
- #: wppa-upload.php:731
16551
- #, fuzzy
16552
- msgid "Do not create duplicates"
16553
- msgstr "Das Album konnte nicht erstellt werden."
16554
-
16555
- #: wppa-upload.php:737
16556
- #, fuzzy
16557
- msgid "Zoom previews"
16558
- msgstr "Zeigt Zoom in"
16559
-
16560
- #: wppa-upload.php:807
16561
- msgid "videos in the depot."
16562
- msgstr ""
16563
-
16564
- #: wppa-upload.php:810 wppa-upload.php:867
16565
- msgid "Album to import to:"
16566
- msgstr ""
16567
-
16568
- #: wppa-upload.php:864
16569
- msgid "audios in the depot."
16570
- msgstr ""
16571
-
16572
- #: wppa-upload.php:921
16573
- msgid "albumdirectories in the depot."
16574
- msgstr ""
16575
-
16576
- #: wppa-upload.php:966
16577
- msgid "csv files in the depot."
16578
- msgstr ""
16579
-
16580
- #: wppa-upload.php:1136
16581
- msgid "Start Ajax Import"
16582
- msgstr ""
16583
-
16584
- #: wppa-upload.php:1137
16585
- msgid "Stop Ajax Import"
16586
- msgstr ""
16587
-
16588
- #: wppa-upload.php:1145
16589
- msgid "There are no importable files found in directory:"
16590
- msgstr ""
16591
-
16592
- #: wppa-upload.php:1148
16593
- msgid "There are no photos found or left to process at url:"
16594
- msgstr ""
16595
-
16596
- #: wppa-upload.php:1152
16597
- msgid "You can import the following file types:"
16598
- msgstr ""
16599
-
16600
- #: wppa-upload.php:1156
16601
- msgid "Compressed file types: .zip"
16602
- msgstr ""
16603
-
16604
- #: wppa-upload.php:1160
16605
- #, fuzzy
16606
- msgid "Photo file types:"
16607
- msgstr "Foto des Tages"
16608
-
16609
- #: wppa-upload.php:1167
16610
- msgid "Video file types:"
16611
- msgstr ""
16612
-
16613
- #: wppa-upload.php:1174
16614
- msgid "Audio file types:"
16615
- msgstr ""
16616
-
16617
- #: wppa-upload.php:1180
16618
- msgid "WPPA+ file types: .amf .pmf"
16619
- msgstr ""
16620
-
16621
- #: wppa-upload.php:1182
16622
- msgid "Directories with optional subdirs containig photos"
16623
- msgstr ""
16624
-
16625
- #: wppa-upload.php:1184
16626
- msgid "Custom data files of type .csv"
16627
- msgstr ""
16628
-
16629
- #: wppa-upload.php:1186
16630
- msgid "Your depot directory is:"
16631
- msgstr ""
16632
-
16633
- #: wppa-upload.php:1194
16634
- msgid "Trying to continue..."
16635
- msgstr ""
16636
-
16637
- #: wppa-upload.php:1346
16638
- #, fuzzy, php-format
16639
- msgid "Time out. %s photos uploaded in album nr %s."
16640
- msgstr "Foto %s kopiert zum Album %s (%s)"
16641
-
16642
- #: wppa-upload.php:1358 wppa-upload.php:1391 wppa-upload.php:1737
16643
- #, fuzzy
16644
- msgid "Error inserting photo"
16645
- msgstr "Fehler beim Hochladen"
16646
-
16647
- #: wppa-upload.php:1367 wppa-upload.php:1398
16648
- #, fuzzy
16649
- msgid "Photos Uploaded in album nr"
16650
- msgstr "Fotos hochgeladen zu Album Nr"
16651
-
16652
- #: wppa-upload.php:1439
16653
- msgid "Zipfile"
16654
- msgstr ""
16655
-
16656
- #: wppa-upload.php:1439
16657
- #, fuzzy
16658
- msgid "sucessfully uploaded."
16659
- msgstr "--- Das zuletzt hochgeladenen Foto ---"
16660
-
16661
- #: wppa-upload.php:1440
16662
- #, fuzzy
16663
- msgid "during upload."
16664
- msgstr "Fehler beim Hochladen"
16665
-
16666
- #: wppa-upload.php:1524
16667
- #, fuzzy
16668
- msgid "Unknown parent album:"
16669
- msgstr "Erneuere die Plugin Beschreibung"
16670
-
16671
- #: wppa-upload.php:1524
16672
- #, fuzzy
16673
- msgid "--- none --- used."
16674
- msgstr "--- keine ---"
16675
-
16676
- #: wppa-upload.php:1584
16677
- #, php-format
16678
- msgid "This album has been converted from ngg gallery %s"
16679
- msgstr ""
16680
-
16681
- #: wppa-upload.php:1602
16682
- msgid "Processing files, please wait..."
16683
- msgstr ""
16684
-
16685
- #: wppa-upload.php:1602
16686
- msgid ""
16687
- "If the line of dots stops growing or your browser reports Ready, your server "
16688
- "has given up. In that case: try again"
16689
- msgstr ""
16690
-
16691
- #: wppa-upload.php:1602
16692
- msgid "here."
16693
- msgstr ""
16694
-
16695
- #: wppa-upload.php:1720
16696
- #, fuzzy, php-format
16697
- msgid "Photo %s already exists in album %s. (1)"
16698
- msgstr "Fotos %s hochgeladen zu Album Nr. %s"
16699
-
16700
- #: wppa-upload.php:1721
16701
- msgid "Duplicate"
16702
- msgstr ""
16703
-
16704
- #: wppa-upload.php:1742
16705
- #, php-format
16706
- msgid "Error inserting photo %s, unknown or non existent album."
16707
- msgstr ""
16708
-
16709
- #: wppa-upload.php:1750
16710
- #, php-format
16711
- msgid "Time out. %s photos imported. Please restart this operation."
16712
- msgstr ""
16713
-
16714
- #: wppa-upload.php:1784 wppa-upload.php:1845
16715
- #, fuzzy
16716
- msgid "Unknown album"
16717
- msgstr "Popup Download Link"
16718
 
16719
- #: wppa-upload.php:1835
16720
- #, php-format
16721
- msgid "Error inserting video %s, unknown or non existent album."
16722
- msgstr ""
16723
 
16724
- #: wppa-upload.php:1896
16725
- #, php-format
16726
- msgid "Error inserting audio %s, unknown or non existent album."
16727
- msgstr ""
16728
 
16729
- #: wppa-upload.php:1912
16730
- msgid "Custom datafields enabled"
16731
- msgstr ""
16732
 
16733
- #: wppa-upload.php:1943 wppa-upload.php:1944
16734
- msgid "Processing"
16735
- msgstr ""
16736
 
16737
- #: wppa-upload.php:1953
16738
- msgid "Can not open file. Can not continue. (1)"
16739
- msgstr ""
16740
 
16741
- #: wppa-upload.php:1958
16742
- msgid "Can not open file. Can not continue. (2)"
 
 
16743
  msgstr ""
 
 
 
16744
 
16745
- #: wppa-upload.php:1965
16746
- msgid "Can not read header. Can not continue."
16747
  msgstr ""
 
 
16748
 
16749
- #: wppa-upload.php:1970
16750
- msgid "Read header:"
16751
- msgstr ""
16752
 
16753
- #: wppa-upload.php:1975
16754
- msgid "Invalid header. Can not continue."
16755
- msgstr ""
16756
 
16757
- #: wppa-upload.php:1982
16758
- msgid "Invalid header. First item must be 'name', 'photoname' or 'filename'"
16759
- msgstr ""
16760
 
16761
- #: wppa-upload.php:1989
16762
- msgid "All available custom data fields are in use. There is no space for"
16763
- msgstr ""
16764
 
16765
- #: wppa-upload.php:2000
16766
- #, fuzzy, php-format
16767
- msgid "New caption %s added."
16768
- msgstr "--- max %s der zuletzt hinzugefügten ---"
16769
 
16770
- #: wppa-upload.php:2018
16771
- msgid "Read data:"
16772
- msgstr ""
16773
 
16774
- #: wppa-upload.php:2087
16775
- msgid "Done processing files."
16776
- msgstr ""
 
16777
 
16778
- #: wppa-upload.php:2090
16779
- msgid "No files to import."
16780
- msgstr ""
16781
 
16782
- #: wppa-upload.php:2094
16783
- msgid "Zipfiles extracted."
16784
- msgstr ""
16785
 
16786
- #: wppa-upload.php:2095
16787
- #, fuzzy
16788
- msgid "Albums created."
16789
- msgstr "- Das zuletzt erstellte Album -"
16790
 
16791
- #: wppa-upload.php:2096
16792
- #, fuzzy
16793
- msgid "Directory to album imports."
16794
- msgstr "Standardfotoalbum für"
 
 
16795
 
16796
- #: wppa-upload.php:2097
16797
- #, fuzzy, php-format
16798
- msgid "With total %s photos."
16799
- msgstr "Betrachte die best bewertesten Fotos"
16800
 
16801
- #: wppa-upload.php:2100
16802
- #, fuzzy
16803
- msgid "Photos updated"
16804
- msgstr "Foto des Tages"
16805
 
16806
- #: wppa-upload.php:2102
16807
  #, php-format
16808
- msgid "to %s locations"
16809
- msgstr ""
 
 
16810
 
16811
- #: wppa-upload.php:2106
16812
- #, fuzzy
16813
- msgid "single photos imported."
16814
- msgstr "Bitte gibt den Fotonamen an."
16815
 
16816
- #: wppa-upload.php:2109
16817
- msgid "Videos imported."
16818
- msgstr ""
16819
 
16820
- #: wppa-upload.php:2112
16821
- msgid "Audios imported."
 
 
16822
  msgstr ""
 
16823
 
16824
- #: wppa-upload.php:2115
16825
- msgid "CSVs imported,"
 
16826
  msgstr ""
 
16827
 
16828
- #: wppa-upload.php:2117
16829
- msgid "photos skipped."
16830
- msgstr ""
 
16831
 
16832
- #: wppa-upload.php:2247
16833
- msgid "Error: unexpected fgets() fail in wppa_get_meta_data()."
16834
- msgstr ""
 
16835
 
16836
- #: wppa-upload.php:2268
16837
- msgid "Class ZipArchive does not exist! Check your php configuration"
16838
- msgstr ""
16839
 
16840
- #: wppa-upload.php:2298
16841
  #, php-format
16842
- msgid ""
16843
- "File %s is of an unsupported filetype and has been ignored during extraction."
16844
- msgstr ""
16845
 
16846
- #: wppa-upload.php:2304
16847
  #, php-format
16848
- msgid "Zipfile %s processed. %s files extracted, %s files skipped."
16849
- msgstr ""
16850
 
16851
- #: wppa-upload.php:2307
16852
- msgid "Failed to extract"
16853
- msgstr ""
16854
 
16855
- #: wppa-upload.php:2373
16856
- #, php-format
16857
- msgid "Page <a href=\"%s\" target=\"_blank\" >%s</a> created."
16858
- msgstr ""
16859
 
16860
- #: wppa-upload.php:2377
16861
- #, fuzzy
16862
- msgid "Could not create page."
16863
- msgstr "Das Album konnte nicht erstellt werden."
16864
 
16865
- #: wppa-upload.php:2490
16866
- #, fuzzy
16867
- msgid "--- My depot --- "
16868
- msgstr "--- gelöscht ---"
16869
 
16870
- #: wppa-upload.php:2499
16871
- #, fuzzy
16872
- msgid "--- Ngg Galleries --- "
16873
- msgstr "--- alle---"
16874
 
16875
- #: wppa-utils.php:282
16876
- #, php-format
16877
- msgid "Rating: %s"
16878
- msgstr "Bewertung: %s"
16879
 
16880
- #: wppa-utils.php:846 wppa-utils.php:857 wppa-utils.php:868
16881
- msgid "Notification of inappropriate image"
16882
- msgstr ""
16883
 
16884
- #: wppa-utils.php:847 wppa-utils.php:858 wppa-utils.php:869
16885
- #, php-format
16886
- msgid "Photo %s has been marked as inappropriate by %s different visitors."
 
16887
  msgstr ""
 
 
16888
 
16889
- #: wppa-utils.php:859
16890
- msgid "The status has been changed to 'pending'."
16891
  msgstr ""
 
16892
 
16893
- #: wppa-utils.php:870
16894
- #, fuzzy
16895
- msgid "It has been deleted."
16896
- msgstr "Foto wurde entfernt."
16897
 
16898
- #: wppa-utils.php:931
16899
- #, fuzzy, php-format
16900
- msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
16901
- msgstr ""
16902
- "Foto %s wurde als unpassend markiert durch%s unterschiedliche Besucher."
16903
 
16904
- #: wppa-utils.php:936
16905
- #, fuzzy, php-format
16906
- msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
16907
- msgstr ""
16908
- "Wenn es heißt 'Foto ist gedreht \\\", ist das Foto gedreht. %s die Seite."
16909
 
16910
- #: wppa-utils.php:944
16911
- #, fuzzy, php-format
16912
- msgid ""
16913
- "This message is automaticly generated at %s. It is useless to respond to it."
16914
- msgstr "Die Nachricht, die angezeigt wird."
16915
 
16916
- #: wppa-utils.php:1195
16917
- #, php-format
16918
- msgid "Time out after processing %s items."
16919
- msgstr ""
16920
 
16921
- #: wppa-utils.php:1198 wppa-utils.php:1202
16922
- #, php-format
16923
- msgid "Time out after processing %s items. Please restart this operation"
16924
- msgstr ""
16925
 
16926
- #: wppa-video.php:188
16927
- msgid ""
16928
- "There is no filetype available for your browser, or your browser does not "
16929
- "support html5 video"
16930
- msgstr ""
16931
 
16932
- #: wppa-watermark.php:528
16933
- #, fuzzy
16934
- msgid "--- text: name ---"
16935
- msgstr "--- keine ---"
16936
 
16937
- #: wppa-watermark.php:530
16938
- #, fuzzy
16939
- msgid "--- text: filename ---"
16940
- msgstr "--- gelöscht ---"
16941
 
16942
- #: wppa-watermark.php:532
16943
- #, fuzzy
16944
- msgid "--- text: description ---"
16945
- msgstr "--- gelöscht ---"
16946
 
16947
- #: wppa-watermark.php:534
16948
- #, fuzzy
16949
- msgid "--- text: pre-defined ---"
16950
- msgstr "--- gelöscht ---"
16951
 
16952
- #: wppa-widget-admin.php:34
16953
- msgid "Widget Photo Width."
16954
- msgstr ""
 
16955
 
16956
- #: wppa-widget-admin.php:39
16957
- msgid "Changes Saved. Don't forget to activate the widget!"
16958
- msgstr ""
16959
 
16960
- #: wppa-widget-admin.php:49
16961
- #, fuzzy
16962
- msgid "Photo of the Day Widget Settings"
16963
- msgstr "Foto des Tages"
16964
 
16965
- #: wppa-widget-admin.php:58
16966
- msgid "Widget Title:"
16967
- msgstr ""
16968
 
16969
- #: wppa-widget-admin.php:62
16970
- msgid ""
16971
- "Enter/modify the title for the widget. This is a default and can be "
16972
- "overriden at widget activation."
16973
- msgstr ""
16974
 
16975
- #: wppa-widget-admin.php:68
16976
- msgid "Widget Photo Width:"
16977
- msgstr ""
16978
 
16979
- #: wppa-widget-admin.php:81
16980
- msgid ""
16981
- "Enter the desired display width and alignment of the photo in the sidebar."
16982
- msgstr ""
16983
 
16984
- #: wppa-widget-admin.php:87
16985
- #, fuzzy
16986
- msgid "Use album(s):"
16987
- msgstr "Erneuere die Plugin Beschreibung"
16988
 
16989
- #: wppa-widget-admin.php:103
16990
- msgid "Select:"
16991
- msgstr ""
16992
 
16993
- #: wppa-widget-admin.php:105
16994
- #, fuzzy
16995
- msgid "Or Edit:"
16996
- msgstr "Bearbeiten"
16997
 
16998
- #: wppa-widget-admin.php:106
16999
- #, fuzzy
17000
- msgid "Update thumbnails"
17001
- msgstr "Anzeigen..."
17002
 
17003
- #: wppa-widget-admin.php:108
17004
- msgid ""
17005
- "Select or edit the album(s) you want to use the photos of for the widget."
17006
- msgstr ""
17007
 
17008
- #: wppa-widget-admin.php:110
17009
- msgid ""
17010
- "If you want a <b>- special -</b> selection or get rid of it, you may need to "
17011
- "use <b>- start over -</b> first."
17012
- msgstr ""
17013
 
17014
- #: wppa-widget-admin.php:117
17015
- msgid "Status filter:"
17016
- msgstr ""
17017
 
17018
- #: wppa-widget-admin.php:123
17019
- #, fuzzy
17020
- msgid "- none -"
17021
- msgstr "--- keine ---"
17022
 
17023
- #: wppa-widget-admin.php:129
17024
- msgid "Any medal"
17025
- msgstr ""
17026
 
17027
- #: wppa-widget-admin.php:135
17028
- msgid "Display method:"
17029
- msgstr ""
17030
 
17031
- #: wppa-widget-admin.php:141
17032
- #, fuzzy
17033
- msgid "Fixed photo"
17034
- msgstr "Ausgewählte Fotos"
17035
 
17036
- #: wppa-widget-admin.php:143
17037
- #, fuzzy
17038
- msgid "Last upload"
17039
- msgstr "Fotos hochgeladen zu Album Nr"
17040
 
17041
- #: wppa-widget-admin.php:144
17042
- msgid "Change every"
17043
- msgstr ""
17044
 
17045
- #: wppa-widget-admin.php:148
17046
- msgid "pageview."
17047
- msgstr ""
 
 
 
17048
 
17049
- #: wppa-widget-admin.php:149
17050
- #, fuzzy
17051
- msgid "hour."
17052
- msgstr "Stunden"
 
 
 
17053
 
17054
- #: wppa-widget-admin.php:150
17055
- msgid "day."
 
17056
  msgstr ""
 
 
 
 
 
 
17057
 
17058
- #: wppa-widget-admin.php:151
17059
- #, fuzzy
17060
- msgid "week."
17061
- msgstr "Wochen"
17062
 
17063
- #: wppa-widget-admin.php:152
17064
- #, fuzzy
17065
- msgid "month."
17066
- msgstr "Monate"
17067
 
17068
- #: wppa-widget-admin.php:153
17069
- msgid "day of week is order#"
17070
- msgstr ""
17071
 
17072
- #: wppa-widget-admin.php:154
17073
- msgid "day of month is order#"
17074
- msgstr ""
17075
 
17076
- #: wppa-widget-admin.php:156
17077
- msgid "Select how the widget should display."
17078
- msgstr ""
17079
 
17080
- #: wppa-widget-admin.php:167
17081
- msgid "Links are set on the <b>Photo Albums -> Settings</b> screen."
17082
- msgstr ""
17083
 
17084
- #: wppa-widget-admin.php:179
17085
- msgid "Url:"
17086
- msgstr ""
17087
 
17088
- #: wppa-widget-admin.php:181
17089
- msgid "Enter the title and the url. Do'nt forget the HTTP://"
17090
- msgstr ""
17091
 
17092
- #: wppa-widget-admin.php:194
17093
- #, fuzzy
17094
- msgid "Photo Name"
17095
- msgstr "Foto des Tages"
17096
 
17097
- #: wppa-widget-admin.php:198
17098
- msgid "Select the content of the subtitle."
17099
  msgstr ""
 
17100
 
17101
- #: wppa-widget-functions.php:151
17102
- #, fuzzy
17103
- msgid "- select (another) album or a set -"
17104
- msgstr "Bitte wähle Album"
17105
 
17106
- #: wppa-widget-functions.php:186
17107
- #, fuzzy
17108
- msgid "- all albums -"
17109
- msgstr "Bitte wähle Album"
17110
 
17111
- #: wppa-widget-functions.php:188
17112
- msgid "- all -separate- albums -"
17113
- msgstr ""
17114
 
17115
- #: wppa-widget-functions.php:190
17116
- msgid "- all albums except -separate-"
17117
- msgstr ""
17118
 
17119
- #: wppa-widget-functions.php:192
17120
- #, fuzzy
17121
- msgid "- top rated photos -"
17122
- msgstr "Hoch bewertete Fotos"
17123
 
17124
- #: wppa-widget-functions.php:193
17125
- msgid "- start over -"
17126
- msgstr ""
 
17127
 
17128
- #: wppa.php:358
17129
- msgid ""
17130
- "</strong><h3>WP Photo ALbum Plus Error message</h3>This is a multi site "
17131
- "installation. One of the following 3 lines must be entered in wp-config.php:"
17132
- msgstr ""
17133
 
17134
- #: wppa.php:359
17135
- msgid ""
17136
- "<br /><br /><b>define( 'WPPA_MULTISITE_INDIVIDUAL', true );</b> <small>// "
17137
- "Multisite WP 3.5 or later with every site its own albums and photos</small>"
17138
- msgstr ""
17139
 
17140
- #: wppa.php:360
17141
- msgid ""
17142
- "<br /><b>define( 'WPPA_MULTISITE_BLOGSDIR', true );</b> <small>// Multisite "
17143
- "prior to WP 3.5 with every site its own albums and photos</small>"
17144
- msgstr ""
17145
 
17146
- #: wppa.php:361
17147
- msgid ""
17148
- "<br /><b>define( 'WPPA_MULTISITE_GLOBAL', true );</b> <small>// Multisite "
17149
- "with one common set of albums and photos</small>"
17150
- msgstr ""
17151
 
17152
- #: wppa.php:362
17153
- msgid ""
17154
- "<br /><br />For more information see: <a href=\"https://wordpress.org/"
17155
- "plugins/wp-photo-album-plus/faq/\">the faq</a>"
17156
- msgstr ""
 
17157
 
17158
- #: wppa.php:363
17159
- msgid ""
17160
- "<br /><br /><em>If you upload photos, they will be placed in the wrong "
17161
- "location and will not be visible for visitors!</em><strong>"
17162
- msgstr ""
17163
 
17164
- #: wppa.php:380
17165
- msgid ""
17166
- "</strong>The photo index table needs to be rebuilt. Please run <b>Photo "
17167
- "Albums -> Settings</b> admin page <b>Table VIII-A9</b><strong>"
17168
- msgstr ""
17169
 
17170
- #: wppa.php:384
17171
- msgid ""
17172
- "</strong>The album index table needs to be rebuilt. Please run <b>Photo "
17173
- "Albums -> Settings</b> admin page <b>Table VIII-A8</b><strong>"
17174
- msgstr ""
17175
 
17176
- #: wppa.php:388
17177
- msgid ""
17178
- "</strong>The avarage ratings need to be recalculated. Please run <b>Photo "
17179
- "Albums -> Settings</b> admin page <b>Table VIII-A5</b><strong>"
17180
- msgstr ""
17181
 
17182
- #: wppa.php:408
17183
- msgid ""
17184
- "</strong>The tags system needs to be converted. Please run <b>Photo Albums -"
17185
- "> Settings</b> admin page <b>Table VIII-B16</b><strong>"
17186
- msgstr ""
17187
 
17188
- #: wppa.php:426
 
 
 
 
 
 
 
 
17189
  msgid ""
17190
- "</strong>The cats system needs to be converted. Please run <b>Photo Albums -"
17191
- "> Settings</b> admin page <b>Table VIII-B17</b><strong>"
17192
  msgstr ""
 
 
17193
 
17194
  #. Plugin Name of the plugin/theme
17195
- #, fuzzy
17196
  msgid "WP Photo Album Plus"
17197
- msgstr "Foto Alben"
17198
 
17199
  #. Plugin URI of the plugin/theme
17200
  msgid "http://wordpress.org/extend/plugins/wp-photo-album-plus/"
17201
- msgstr ""
17202
 
17203
  #. Description of the plugin/theme
17204
  msgid ""
17205
  "Easily manage and display your photo albums and slideshows within your "
17206
  "WordPress site."
17207
  msgstr ""
 
 
17208
 
17209
  #. Author of the plugin/theme
17210
  msgid "J.N. Breetvelt a.k.a. OpaJaap"
17211
- msgstr ""
17212
 
17213
  #. Author URI of the plugin/theme
17214
  msgid "http://wppa.opajaap.nl/"
17215
- msgstr ""
17216
-
17217
- #, fuzzy
17218
- #~ msgid "New!"
17219
- #~ msgstr "Neues Album"
17220
-
17221
- #, fuzzy
17222
- #~ msgid "New"
17223
- #~ msgstr "Neues Album"
17224
-
17225
- #, fuzzy
17226
- #~ msgid "- - - Voting enabled - - -"
17227
- #~ msgstr "Aktiviert"
17228
-
17229
- #~ msgid "- - - Rating enabled - - -"
17230
- #~ msgstr "- - - Bewertung möglich - - -"
17231
-
17232
- #, fuzzy
17233
- #~ msgid "--- My depot ---"
17234
- #~ msgstr "--- gelöscht ---"
17235
-
17236
- #, fuzzy
17237
- #~ msgid "Filter priority"
17238
- #~ msgstr "Speed Ein-Ausblenden"
17239
-
17240
- #, fuzzy
17241
- #~ msgid "Shortcode_priority"
17242
- #~ msgstr "Speed Ein-Ausblenden"
17243
-
17244
- #, fuzzy
17245
- #~ msgid "Update uploads"
17246
- #~ msgstr "Erneuere die Plugin Beschreibung"
17247
-
17248
- #, fuzzy
17249
- #~ msgid "- featured photos -"
17250
- #~ msgstr "Ausgewählte Fotos"
17251
-
17252
- #, fuzzy
17253
- #~ msgid "%s Comments"
17254
- #~ msgstr "Kommentare"
17255
-
17256
- #, fuzzy
17257
- #~ msgid "%s uploads failed."
17258
- #~ msgstr "Fehler beim setzen %s zu %s"
17259
-
17260
- #, fuzzy
17261
- #~ msgid ""
17262
- #~ "There are %s photos found. Only the first %s will be shown. Please refine "
17263
- #~ "your search criteria."
17264
- #~ msgstr "Es wurde kein Album oder Foto mit Deinen Suchangaben gefunden."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2015-12-25 13:09+0100\n"
5
+ "PO-Revision-Date: 2015-12-27 11:36+0100\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"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
  #: theme/photo-album-page.php:30 theme/photo-album-search-page.php:52
 
24
  msgid "Pages:"
25
+ msgstr "Seiten:"
26
 
27
  #: theme/photo-album-page.php:31 theme/photo-album-search-page.php:53
28
+ #: wppa-functions.php:1914 wppa-thumbnails.php:597
 
 
 
 
 
 
29
  msgid "Edit"
30
  msgstr "Bearbeiten"
31
 
33
  msgid "Warning. No page defined for search results!"
34
  msgstr "Warnung. Keine Seite für die Suchergebnisse definiert!"
35
 
36
+ #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:168
 
 
37
  msgid "Search"
38
  msgstr "Suche"
39
 
54
  "Entschuldigung. Leider konnte nichts zum angegebenen Schlüsselwort gefunden "
55
  "werden. Bitte versuch es erneut."
56
 
57
+ #: theme/wppa-theme.php:328 theme/wppa-theme.php:347
 
58
  msgid "No photos found matching your search criteria."
59
+ msgstr "Keine Fotos gefunden, die deinen Suchkriterien entsprechen."
60
 
61
+ #: theme/wppa-theme.php:331
 
62
  msgid "No albums found matching your search criteria."
63
+ msgstr "Kein Album gefunden, die Ihren Suchkriterien entsprechen."
64
 
65
+ #: theme/wppa-theme.php:334
66
  msgid "No albums or photos found matching your search criteria."
67
+ msgstr "Keine Alben oder Photos gefunden die Ihren Suchkriterien entsprechen."
68
 
69
+ #: wppa-album-covers.php:1256
70
+ msgid "Link to"
71
+ msgstr "Link zu"
 
 
 
 
 
 
 
 
 
72
 
73
+ #: wppa-album-covers.php:1286 wppa-album-covers.php:1345
74
+ #: wppa-album-covers.php:1353 wppa-album-covers.php:1588
75
+ msgid "View the album"
76
+ msgstr "Das Album ansehen"
77
 
78
+ #: wppa-album-covers.php:1306
79
+ msgid "View the cover photo"
80
+ msgid_plural "View the cover photos"
81
+ msgstr[0] "Titelfoto ansehen"
82
+ msgstr[1] "Titelfotos ansehen"
83
 
84
+ #: wppa-album-covers.php:1363
85
+ msgid "View"
86
+ msgstr "Ansehen"
 
87
 
88
+ #: wppa-album-covers.php:1365
89
+ #, php-format
90
+ msgid "%d album"
91
+ msgid_plural "%d albums"
92
+ msgstr[0] "%d Alben"
93
+ msgstr[1] "%d Album"
94
 
95
+ #: wppa-album-covers.php:1371 wppa-boxes-html.php:1159 wppa-breadcrumb.php:148
96
+ #: wppa-breadcrumb.php:154 wppa-breadcrumb.php:161 wppa-breadcrumb.php:368
97
+ #: wppa-breadcrumb.php:379
98
+ msgid "and"
99
+ msgstr "und"
100
 
101
+ #: wppa-album-covers.php:1374
102
  #, php-format
103
+ msgid "%d photo"
104
+ msgid_plural "%d photos"
105
+ msgstr[0] "%d Foto"
106
+ msgstr[1] "%d Fotos"
107
 
108
+ #: wppa-album-covers.php:1437
109
+ msgid "New!"
110
+ msgstr "Neu!"
 
111
 
112
+ #: wppa-album-covers.php:1440 wppa-thumbnails.php:1899 wppa-thumbnails.php:1900
113
+ msgid "New"
114
+ msgstr "Neu"
115
 
116
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
117
+ msgid "Slideshow"
118
+ msgstr "Diaschau"
119
 
120
+ #: wppa-album-covers.php:1682
121
+ msgid "Browse photos"
122
+ msgstr "Durchsuche Fotos"
123
 
124
+ #: wppa-album-covers.php:1719 wppa-breadcrumb.php:389 wppa-breadcrumb.php:394
125
+ msgid "Category:"
126
+ msgid_plural "Categories:"
127
+ msgstr[0] "Kategorie:"
128
+ msgstr[1] "Kategorien:"
129
 
130
+ #: wppa-audio.php:183
131
  msgid ""
132
+ "There is no filetype available for your browser, or your browser does not "
133
+ "support html5 audio"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
134
  msgstr ""
135
+ "Es gibt keine Dateityp zur Verfügung für Ihren Browser, oder Ihr Browser "
136
+ "unterstützt kein HTML5-Audio"
137
 
138
+ #: wppa-boxes-html.php:133 wppa-boxes-html.php:235
139
+ msgid "Photo search results"
140
+ msgstr "Foto Suchergebnisse"
 
 
 
 
 
 
141
 
142
+ #: wppa-boxes-html.php:367 wppa-breadcrumb.php:136
143
+ msgid "Albums"
144
+ msgstr "Alben"
145
 
146
+ #: wppa-boxes-html.php:373 wppa-breadcrumb.php:151
147
+ msgid "Photos"
148
+ msgstr "Fotos"
 
 
149
 
150
+ #: wppa-boxes-html.php:392
151
+ msgid "Category"
152
+ msgstr "Kategorie"
153
 
154
+ #: wppa-boxes-html.php:399 wppa-boxes-html.php:513
155
+ msgid "Name"
156
+ msgstr "Name"
157
 
158
+ #: wppa-boxes-html.php:405 wppa-boxes-html.php:538
159
+ msgid "Text"
160
+ msgstr "Text"
 
161
 
162
+ #: wppa-boxes-html.php:421 wppa-boxes-html.php:475 wppa-boxes-html.php:621
163
+ #: wppa-boxes-html.php:651
164
+ msgid "CTRL+Click to add/remove option."
165
+ msgstr "STRG+Klicken, um Option hinzuzufügen/zu entfernen."
166
 
167
+ #: wppa-boxes-html.php:422 wppa-boxes-html.php:476 wppa-boxes-html.php:622
168
+ #: wppa-boxes-html.php:652
169
+ msgid "Items must meet all selected options."
170
+ msgstr "Einzelteile müssen alle ausgewählten Optionen zu treffen."
171
 
172
+ #: wppa-boxes-html.php:521
173
+ msgid "Owner"
174
+ msgstr "Inhaber"
175
 
176
+ #: wppa-boxes-html.php:530
177
+ msgid "Tag"
178
+ msgstr "Tag"
 
 
179
 
180
+ #: wppa-boxes-html.php:546
181
+ msgid "Iptc"
182
+ msgstr "Iptc"
 
183
 
184
+ #: wppa-boxes-html.php:555
185
+ msgid "Exif"
186
+ msgstr "Exif"
187
 
188
+ #: wppa-boxes-html.php:753 wppa-boxes-html.php:832
189
+ msgid "Submit"
190
+ msgstr "Senden"
 
191
 
192
+ #: wppa-boxes-html.php:795
193
+ msgid "Super View Photos"
194
+ msgstr "Super View Fotos"
195
 
196
+ #: wppa-boxes-html.php:804 wppa-breadcrumb.php:276 wppa-breadcrumb.php:294
197
+ #: wppa-breadcrumb.php:322 wppa-breadcrumb.php:340 wppa-breadcrumb.php:404
198
+ #: wppa-breadcrumb.php:429 wppa-breadcrumb.php:577
199
+ msgid "Album:"
200
+ msgstr "Album:"
201
 
202
+ #: wppa-boxes-html.php:820
203
+ msgid "Thumbnails"
204
+ msgstr "Miniaturbilden"
205
 
206
+ #: wppa-boxes-html.php:866
207
+ msgid "Tagged photos"
208
+ msgstr "Fotos mit Stchwort"
 
209
 
210
+ #: wppa-boxes-html.php:880
211
+ msgid "Please select a tagcloud landing page in Table VI-C3b"
212
+ msgstr "Bitte wählen Sie eine Tagcloud Zielseite in der Tabelle VI-C3b"
213
 
214
+ #: wppa-boxes-html.php:939
215
+ msgid "Multi Tagged photos"
216
+ msgstr "Multi Tagged photos"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
 
218
+ #: wppa-boxes-html.php:953
219
+ msgid "Please select a multitag landing page in Table VI-C4b"
220
+ msgstr "Bitte wählen Sie ein Multitag Zielseite in der Tabelle VI-C4b"
221
 
222
+ #: wppa-boxes-html.php:998
223
+ msgid "Please check the tag(s) that the photos must have"
224
+ msgstr "Bitte überprüfen Sie die Stichwort(e), dass die Fotos haben müssen"
225
 
226
+ #: wppa-boxes-html.php:1029
227
+ msgid "And"
228
+ msgstr "Und"
 
229
 
230
+ #: wppa-boxes-html.php:1040
231
+ msgid "Or"
232
+ msgstr "Oder"
 
233
 
234
+ #: wppa-boxes-html.php:1055
235
+ msgid "Inverse selection"
236
+ msgstr "Inverse Auswahl"
237
 
238
+ #: wppa-boxes-html.php:1108
239
+ msgid "Find!"
240
+ msgstr "Finde!"
241
 
242
+ #: wppa-boxes-html.php:1135
243
+ msgid "Social media landing page"
244
+ msgstr "Social-Media-Zielseite"
 
245
 
246
+ #: wppa-boxes-html.php:1160
247
+ #, php-format
248
+ msgid "See this image on %s"
249
+ msgstr "Schau Dir das Bild an auf %s"
 
 
 
 
 
250
 
251
+ #: wppa-boxes-html.php:1185
252
+ msgid "QR code"
253
+ msgstr "QR Code"
 
254
 
255
+ #: wppa-boxes-html.php:1230
256
+ #, php-format
257
+ msgid "Tweet %s on Twitter"
258
+ msgstr "Tweet %s auf Twitter"
259
 
260
+ #: wppa-boxes-html.php:1237
261
+ msgid "Share on Twitter"
262
+ msgstr "Teilen auf Twitter"
263
 
264
+ #: wppa-boxes-html.php:1250
265
  #, php-format
266
+ msgid "Share %s on Google+"
267
+ msgstr "Teilen %s auf Google+"
268
 
269
+ #: wppa-boxes-html.php:1258
270
+ msgid "Share on Google+"
271
+ msgstr "Teilen auf Google+"
272
 
273
+ #: wppa-boxes-html.php:1273
274
  #, php-format
275
+ msgid "Share %s on Pinterest"
276
+ msgstr "Teilen %s auf Pinterest"
277
 
278
+ #: wppa-boxes-html.php:1282
279
+ msgid "Share on Pinterest"
280
+ msgstr "Teilen auf Pinterest"
 
281
 
282
+ #: wppa-boxes-html.php:1417
283
+ msgid "Comment on Facebook:"
284
+ msgstr "Kommentar auf Facebook:"
 
285
 
286
+ #: wppa-boxes-html.php:1518
287
+ msgid "Working..."
288
+ msgstr "Arbeiten..."
 
289
 
290
+ #: wppa-boxes-html.php:1520 wppa-boxes-html.php:1523
291
+ msgid "Delete album"
292
+ msgstr "Album löschen"
293
 
294
+ #: wppa-boxes-html.php:1610
295
+ msgid "Create Album"
296
+ msgstr "Album Erstellen"
297
 
298
+ #: wppa-boxes-html.php:1655
299
+ msgid "Enter album name."
300
+ msgstr "Albumnamen eingeben."
301
 
302
+ #: wppa-boxes-html.php:1657 wppa-boxes-html.php:2371
303
+ msgid "Don't leave this blank!"
304
+ msgstr "Hinterlasse einen Kommentar"
305
 
306
+ #: wppa-boxes-html.php:1676
307
+ msgid "Enter album description"
308
+ msgstr "Album Beschreibung eingeben"
 
309
 
310
+ #: wppa-boxes-html.php:1698
311
+ msgid "Create album"
312
+ msgstr "Album Erstellen"
 
313
 
314
+ #: wppa-boxes-html.php:1754 wppa-boxes-html.php:1767 wppa-functions.php:4011
315
+ msgid "Max uploads reached"
316
+ msgstr "Max Uploads erreicht"
317
 
318
+ #: wppa-boxes-html.php:1834
319
+ msgid "Upload Photo"
320
+ msgstr "Upload Foto"
321
 
322
+ #: wppa-boxes-html.php:1942
323
+ #, php-format
324
+ msgid "You may upload %d photo"
325
+ msgid_plural ""
326
+ "You may upload up to %d photos at once if your browser supports HTML-5 "
327
+ "multiple file upload"
328
+ msgstr[0] "Sie können %d Foto Hochladen"
329
+ msgstr[1] ""
330
+ "Sie können bis zu %d Fotos gleichzeitig Hochladen wenn ihr browser HTML-5 "
331
+ "multiple file upload unterstützt"
332
 
333
+ #: wppa-boxes-html.php:1951
334
+ #, php-format
335
+ msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
336
+ msgstr "Max Fotogröße: %d x %d (% 2.1f MegaPixel)"
337
 
338
+ #: wppa-boxes-html.php:1980
339
+ msgid "Apply watermark file:"
340
+ msgstr "Wende Wasserzeichen-Datei an:"
341
 
342
+ #: wppa-boxes-html.php:2002
343
+ msgid "Position:"
344
+ msgstr "Position:"
345
 
346
+ #: wppa-boxes-html.php:2030
347
+ msgid ""
348
+ "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
349
+ "photoname if available, else the original filename will be used as photo "
350
+ "name."
351
  msgstr ""
352
+ "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 005 (Graphic Name) wie "
353
+ "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
354
 
355
+ #: wppa-boxes-html.php:2035
356
+ msgid ""
357
+ "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
358
+ "available, else the original filename will be used as photo name."
359
  msgstr ""
360
+ "Wenn Sie dieses Feld leer verlassen, wird IPTC-Tag 120 (Caption) wie "
361
+ "photoname verwendet, wenn vorhanden, sonst der ursprüngliche Dateiname."
362
 
363
+ #: wppa-boxes-html.php:2040
364
  msgid ""
365
+ "If you leave this blank, the original filename will be used as photo name."
 
366
  msgstr ""
367
+ "Wenn das leer gelassen wird, wird der Originalname der Datei als Fotoname "
368
+ "verwendet."
369
 
370
+ #: wppa-boxes-html.php:2054
371
+ msgid "Enter photo name"
372
+ msgstr "Photonamen eingeben"
373
 
374
+ #: wppa-boxes-html.php:2075
375
+ msgid "Enter/modify photo description"
376
+ msgstr "Hinzufügen/Bearbeiten der Foto Beschreibeung"
 
377
 
378
+ #: wppa-boxes-html.php:2106
379
+ msgid "hidden"
380
+ msgstr "verborgen"
381
 
382
+ #: wppa-boxes-html.php:2176
383
+ msgid "Preview tags:"
384
+ msgstr "Vorschau tags:"
 
385
 
386
+ #: wppa-boxes-html.php:2191
387
+ msgid "Please select an album and try again"
388
+ msgstr "Bitte wählen Sie ein Album aus und versuchen Sie es erneut"
389
 
390
+ #: wppa-boxes-html.php:2205
391
+ msgid "Upload photo"
392
+ msgstr "Foto hochladen"
 
393
 
394
+ #: wppa-boxes-html.php:2261
395
+ msgid "ERROR: unable to upload files."
396
+ msgstr "ERROR: kann keine Dateien hochladen."
 
 
 
 
 
 
397
 
398
+ #: wppa-boxes-html.php:2311
399
+ msgid "Edit albuminfo"
400
+ msgstr "Albuminfo bearbeiten"
401
 
402
+ #: wppa-boxes-html.php:2369
403
+ msgid "Enter album name"
404
+ msgstr "Albumnamen eingeben"
 
405
 
406
+ #: wppa-boxes-html.php:2391
407
+ msgid "Album description:"
408
+ msgstr "Album Beschreibung:"
409
 
410
+ #: wppa-boxes-html.php:2410
411
+ msgid "Update album"
412
+ msgstr "Album updaten"
413
 
414
+ #: wppa-boxes-html.php:2484
415
+ msgid "wrote:"
416
+ msgstr "schrieb:"
417
 
418
+ #: wppa-boxes-html.php:2538
419
+ msgid "Avatar"
420
+ msgstr "Profilbild"
421
 
422
+ #: wppa-boxes-html.php:2581
423
+ msgid "Awaiting moderation"
424
+ msgstr "Warten auf Moderation"
425
 
426
+ #: wppa-boxes-html.php:2584
427
+ msgid "Marked as spam"
428
+ msgstr "Als Spam markiert"
429
 
430
+ #: wppa-boxes-html.php:2608
431
+ msgid "Edit!"
432
+ msgstr "Bearbeiten!"
433
 
434
+ #: wppa-boxes-html.php:2612
435
+ msgid "Send!"
436
+ msgstr "Absenden!"
437
 
438
+ #: wppa-boxes-html.php:2673
439
+ msgid "Your name:"
440
+ msgstr "Dein Name:"
441
 
442
+ #: wppa-boxes-html.php:2688
443
+ msgid "Your email:"
444
+ msgstr "Deine E-mail:"
 
445
 
446
+ #: wppa-boxes-html.php:2704
447
+ msgid "Your comment:"
448
+ msgstr "Dein Kommentar:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
449
 
450
+ #: wppa-boxes-html.php:2749
451
+ #, php-format
452
+ msgid "You must <a href=\"%s\">login</a> to enter a comment"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
453
  msgstr ""
454
+ "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar zu "
455
+ "hinterlassen."
456
 
457
+ #: wppa-boxes-html.php:2752
458
+ msgid "You must login to enter a comment"
459
+ msgstr "Sie müssen sich anmelden, um einen Kommentar ein zu geben"
 
460
 
461
+ #: wppa-boxes-html.php:2764 wppa-functions.php:2326 wppa-thumbnails.php:635
462
+ #, php-format
463
+ msgid "%d comment"
464
+ msgid_plural "%d comments"
465
+ msgstr[0] "%d Kommentar"
466
+ msgstr[1] "%d Kommentare"
467
 
468
+ #: wppa-boxes-html.php:2768
469
+ msgid "Leave a comment"
470
+ msgstr "Hinterlasse einen Kommentar"
 
471
 
472
+ #: wppa-boxes-html.php:2809
473
+ msgid "Smilies are not available"
474
+ msgstr "Smileys sind nicht verfügbar"
475
 
476
+ #: wppa-boxes-html.php:2859
477
+ msgid "Show IPTC data"
478
+ msgstr "IPTC-Daten anzeigen"
479
 
480
+ #: wppa-boxes-html.php:2870
481
+ msgid "Hide IPTC data"
482
+ msgstr "IPTC-Daten ausblenden"
 
 
483
 
484
+ #: wppa-boxes-html.php:2910
485
+ msgid "No IPTC data"
486
+ msgstr "Keine IPTC-Daten"
487
 
488
+ #: wppa-boxes-html.php:2957
489
+ msgid "Show EXIF data"
490
+ msgstr "EXIF-Daten anzeigen"
 
 
 
 
491
 
492
+ #: wppa-boxes-html.php:2968
493
+ msgid "Hide EXIF data"
494
+ msgstr "EXIF-Daten ausblenden"
 
495
 
496
+ #: wppa-boxes-html.php:3010
497
+ msgid "No EXIF data"
498
+ msgstr "Keine EXIF-Daten"
 
499
 
500
+ #: wppa-boxes-html.php:3125 wppa-boxes-html.php:3130
501
+ msgid "< Previous"
502
+ msgstr "< Vorherige"
 
503
 
504
+ #: wppa-boxes-html.php:3136 wppa-boxes-html.php:3141
505
+ msgid "Next >"
506
+ msgstr "Nächstes >"
507
 
508
+ #: wppa-boxes-html.php:3238 wppa-boxes-html.php:3306
509
+ msgid "See the authors albums"
510
+ msgstr "Siehe die Autoren Alben"
 
511
 
512
+ #: wppa-boxes-html.php:3242 wppa-boxes-html.php:3310
513
+ msgid "See the authors photos"
514
+ msgstr "Siehe die Autoren Fotos"
515
 
516
+ #: wppa-boxes-html.php:3246 wppa-boxes-html.php:3314
517
+ msgid "See all the authors photos"
518
+ msgstr "Siehe Alle Autoren Fotos"
519
 
520
+ #: wppa-boxes-html.php:3269
521
  #, php-format
522
+ msgid "Photo by: %s"
523
+ msgstr "Foto von: %s"
 
 
 
 
524
 
525
+ #: wppa-boxes-html.php:3272 wppa-boxes-html.php:3335
526
  #, php-format
527
+ msgid "%d max rating"
528
+ msgid_plural "%d max ratings"
529
+ msgstr[0] "%d max Bewertung"
530
+ msgstr[1] "%d max Bewertungen"
 
 
531
 
532
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
533
+ #, php-format
534
+ msgid "%d vote"
535
+ msgid_plural "%d votes"
536
+ msgstr[0] "%d Stimme"
537
+ msgstr[1] "%d Stimmen"
538
 
539
+ #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
540
  #, php-format
541
+ msgid "Mean value: %4.2f."
542
+ msgstr "Mittelwert: %4.2f."
543
 
544
+ #: wppa-boxes-html.php:3288
545
  #, php-format
546
+ msgid "Photo %s not found."
547
+ msgstr "Foto %s nicht gefunden."
548
 
549
+ #: wppa-boxes-html.php:3695
550
+ msgid "Refresh"
551
+ msgstr "Aktualisieren"
552
 
553
+ #: wppa-breadcrumb.php:119
554
+ msgid "Post:"
555
+ msgstr "Post:"
556
 
557
+ #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:604
558
+ msgid "Page:"
559
+ msgstr "Seite:"
560
 
561
+ #: wppa-breadcrumb.php:139
562
+ msgid "with category:"
563
+ msgstr "mit Kategorie:"
564
 
565
+ #: wppa-breadcrumb.php:142 wppa-breadcrumb.php:157
566
+ msgid "with name:"
567
+ msgstr "mit Namen:"
 
568
 
569
+ #: wppa-breadcrumb.php:145 wppa-breadcrumb.php:161
570
+ msgid "with words:"
571
+ msgstr "mit Worten:"
 
572
 
573
+ #: wppa-breadcrumb.php:154
574
+ msgid "with tag:"
575
+ msgstr "mit dem Tag:"
576
 
577
+ #: wppa-breadcrumb.php:165
578
+ msgid "of owner:"
579
+ msgstr "von Inhaber:"
580
 
581
+ #: wppa-breadcrumb.php:170
582
+ msgid "with iptc tag:"
583
+ msgstr "mit IPTC-Tag:"
584
 
585
+ #: wppa-breadcrumb.php:170 wppa-breadcrumb.php:175
586
+ msgid "with content:"
587
+ msgstr "mit Inhalt:"
 
588
 
589
+ #: wppa-breadcrumb.php:175
590
+ msgid "with exif tag:"
591
+ msgstr "mit Exif-Tag:"
592
 
593
+ #: wppa-breadcrumb.php:183 wppa-breadcrumb.php:207 wppa-breadcrumb.php:264
594
+ #: wppa-breadcrumb.php:282 wppa-breadcrumb.php:305 wppa-breadcrumb.php:328
595
+ #: wppa-breadcrumb.php:346 wppa-breadcrumb.php:358 wppa-breadcrumb.php:376
596
+ #: wppa-breadcrumb.php:391 wppa-breadcrumb.php:410
597
+ msgid "View the thumbnails"
598
+ msgstr "Anzeigen die Miniaturen"
599
 
600
+ #: wppa-breadcrumb.php:201
601
+ #, php-format
602
+ msgid "Searchresults from album %s and its subalbums"
603
+ msgstr "Suchergebnisse aus dem Album %s und seine Unteralben"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
604
 
605
+ #: wppa-breadcrumb.php:205 wppa-breadcrumb.php:210
606
+ msgid "Searchstring:"
607
+ msgstr "Suchtext:"
608
 
609
+ #: wppa-breadcrumb.php:219 wppa-breadcrumb.php:237
610
+ msgid "Photos by EXIF date"
611
+ msgstr "Fotos nach EXIF-Datum"
612
+
613
+ #: wppa-breadcrumb.php:223 wppa-breadcrumb.php:241
614
+ msgid "Photos by date of upload"
615
+ msgstr "Fotos nach Datum hochladen"
616
 
617
+ #: wppa-breadcrumb.php:227 wppa-breadcrumb.php:245
618
+ msgid "Photos by date last modified"
619
+ msgstr "Fotos nach Datum Änderung"
 
620
 
621
+ #: wppa-breadcrumb.php:257 wppa-breadcrumb.php:267
622
  #, php-format
623
+ msgid "Photos by %s"
624
+ msgstr "Fotos von %s"
625
 
626
+ #: wppa-breadcrumb.php:274 wppa-breadcrumb.php:292 wppa-breadcrumb.php:320
627
+ #: wppa-breadcrumb.php:338 wppa-breadcrumb.php:425
628
+ msgid "Various albums"
629
+ msgstr "Verschiedene Alben"
 
630
 
631
+ #: wppa-breadcrumb.php:276 wppa-breadcrumb.php:294 wppa-breadcrumb.php:322
632
+ #: wppa-breadcrumb.php:340 wppa-breadcrumb.php:429
633
+ msgid "Albums:"
634
+ msgstr "Alben:"
635
 
636
+ #: wppa-breadcrumb.php:280 wppa-breadcrumb.php:285
637
+ msgid "Top rated photos"
638
+ msgstr "Hoch bewertete Fotos"
 
639
 
640
+ #: wppa-breadcrumb.php:299 wppa-breadcrumb.php:309
641
+ msgid "Recently modified photos"
642
+ msgstr "Kürzlich geänderte Fotos"
 
643
 
644
+ #: wppa-breadcrumb.php:302 wppa-breadcrumb.php:312
645
+ msgid "Recently uploaded photos"
646
+ msgstr "Kürzlich hochgeladene Fotos"
 
647
 
648
+ #: wppa-breadcrumb.php:326 wppa-breadcrumb.php:331
649
+ msgid "Recently commented photos"
650
+ msgstr "Kürzlich kommentierte Fotos"
651
+
652
+ #: wppa-breadcrumb.php:344 wppa-breadcrumb.php:349
653
+ msgid "Featured photos"
654
+ msgstr "Beliebte Fotos"
655
+
656
+ #: wppa-breadcrumb.php:356 wppa-breadcrumb.php:361
657
+ msgid "Related photos"
658
+ msgstr "Ähnliche Fotos"
659
+
660
+ #: wppa-breadcrumb.php:368 wppa-breadcrumb.php:379
661
+ msgid "Tagged photos:"
662
+ msgstr "Fotos mit Stchwort"
663
+
664
+ #: wppa-breadcrumb.php:368 wppa-breadcrumb.php:379
665
+ msgid "or"
666
+ msgstr "oder"
667
+
668
+ #: wppa-breadcrumb.php:370 wppa-breadcrumb.php:381
669
+ msgid "Inverted"
670
+ msgstr "Umgekehrt"
671
 
672
+ #: wppa-breadcrumb.php:408 wppa-breadcrumb.php:413
673
+ msgid "Recently updated albums"
674
+ msgstr "Kürzlich aktualisierte Alben"
 
675
 
676
+ #: wppa-breadcrumb.php:423
677
  #, php-format
678
+ msgid "Various albums by %s"
679
+ msgstr "Verschiedene Alben von %s"
680
 
681
+ #: wppa-breadcrumb.php:450 wppa-breadcrumb.php:465
682
+ msgid "Thumbnail view"
683
+ msgstr "Miniaturansicht"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
684
 
685
+ #: wppa-breadcrumb.php:454 wppa-breadcrumb.php:455 wppa-breadcrumb.php:470
686
+ #: wppa-breadcrumb.php:471
687
+ msgid "Thumbs"
688
+ msgstr "Miniaturen"
 
 
 
689
 
690
+ #: wppa-breadcrumb.php:602
691
+ msgid "Unpublished"
692
+ msgstr "Unveröffentlicht"
693
 
694
+ #: wppa-breadcrumb.php:632
695
+ msgid "Found photos will meet the search criteria as follows:"
696
+ msgstr "Gefunden Fotos werden die Suchkriterien erfüllen, wie folgt:"
697
 
698
+ #: wppa-breadcrumb.php:635
699
+ msgid "AND"
700
+ msgstr "UND"
 
701
 
702
+ #: wppa-breadcrumb.php:639
703
+ msgid "OR"
704
+ msgstr "ODER"
705
 
706
+ #: wppa-common-functions.php:76 wppa-common-functions.php:79
707
+ msgid "Default photo album for"
708
+ msgstr "Standard-Fotoalbum für"
 
709
 
710
+ #: wppa-common-functions.php:603 wppa-functions.php:4302
711
  #, php-format
712
+ msgid "%d second"
713
+ msgid_plural "%d seconds"
714
+ msgstr[0] "%d Sekunde"
715
+ msgstr[1] "%d Sekunden"
716
 
717
+ #: wppa-common-functions.php:607 wppa-functions.php:4298
718
  #, php-format
719
+ msgid "%d minute"
720
+ msgid_plural "%d minutes"
721
+ msgstr[0] "%d Minute"
722
+ msgstr[1] "%d Minuten"
723
 
724
+ #: wppa-common-functions.php:611 wppa-functions.php:4294
725
  #, php-format
726
+ msgid "%d hour"
727
+ msgid_plural "%d hours"
728
+ msgstr[0] "%d Stunde"
729
+ msgstr[1] "%d Stunden"
 
 
 
730
 
731
+ #: wppa-common-functions.php:615 wppa-functions.php:4290
732
+ #, php-format
733
+ msgid "%d day"
734
+ msgid_plural "%d days"
735
+ msgstr[0] "%d Tag"
736
+ msgstr[1] "%d Tage"
737
 
738
+ #: wppa-common-functions.php:619 wppa-functions.php:4286
739
+ #, php-format
740
+ msgid "%d week"
741
+ msgid_plural "%d weeks"
742
+ msgstr[0] "%d Woche"
743
+ msgstr[1] "%d Wochen"
744
 
745
+ #: wppa-common-functions.php:623
746
  #, php-format
747
+ msgid "%d month"
748
+ msgid_plural "%d months"
749
+ msgstr[0] "%d Monat"
750
+ msgstr[1] "%d Monate"
751
 
752
+ #: wppa-common-functions.php:626
753
+ #, php-format
754
+ msgid "%d year"
755
+ msgid_plural "%d years"
756
+ msgstr[0] "%d Jahr"
757
+ msgstr[1] "%d Jahre"
758
 
759
+ #: wppa-common-functions.php:849 wppa-common-functions.php:850
760
+ msgid "ERROR: Resized or copied image could not be created."
761
+ msgstr "ERROR: Resized oder kopierte Bild konnte nicht erstellt werden."
762
 
763
+ #: wppa-common-functions.php:895 wppa-common-functions.php:896
764
+ #, php-format
765
+ msgid "ERROR: File %s is not a valid picture file."
766
+ msgstr "FEHLER: Die Datei%s ist keine gültige Bilddatei."
767
 
768
+ #: wppa-common-functions.php:1714
769
+ #, php-format
770
+ msgid ""
771
+ "Based on your server memory limit you should not upload images larger then "
772
+ "<strong>%d x %d (%2.1f MP)</strong>"
773
  msgstr ""
774
+ "Basierend auf Ihrem Server Speichergrenze sollten Sie keine Bilder hochladen "
775
+ "größer <strong>dann %d x %d (% 2.1f MP)</strong>"
776
 
777
+ #: wppa-common-functions.php:1989
778
+ msgid "- select an album -"
779
+ msgstr "- wählen Sie ein Album -"
780
 
781
+ #: wppa-common-functions.php:1995
782
+ msgid "--- none ---"
783
+ msgstr "--- keine ---"
784
 
785
+ #: wppa-common-functions.php:2001
786
+ msgid "--- all ---"
787
+ msgstr "--- alle ---"
788
 
789
+ #: wppa-common-functions.php:2007
790
+ msgid "--- generic ---"
791
+ msgstr "--- generikum ---"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
792
 
793
+ #: wppa-common-functions.php:2018
794
+ msgid "--- multiple see below ---"
795
+ msgstr "--- Mehrere siehe unten ---"
 
796
 
797
+ #: wppa-common-functions.php:2024
798
+ msgid "--- a selection box ---"
799
+ msgstr "--- eine Auswahlbox ---"
 
800
 
801
+ #: wppa-common-functions.php:2058
802
+ msgid "--- separate ---"
803
+ msgstr "--- separat ---"
804
 
805
+ #: wppa-common-functions.php:2156
806
+ msgid "Photo id ="
807
+ msgstr "Foto id ="
 
808
 
809
+ #: wppa-common-functions.php:2156
810
+ msgid "Value ="
811
+ msgstr "Wert ="
812
 
813
+ #: wppa-exif-iptc-common.php:70 wppa-exif-iptc-common.php:136
814
+ msgid "n.a."
815
+ msgstr "n. z."
816
 
817
+ #: wppa-exif-iptc-common.php:214
818
+ msgid "Not Defined"
819
+ msgstr "Nicht definiert"
820
 
821
+ #: wppa-exif-iptc-common.php:215
822
+ msgid "Manual"
823
+ msgstr "Manuell"
824
 
825
+ #: wppa-exif-iptc-common.php:216
826
+ msgid "Program AE"
827
+ msgstr "Program AE"
828
 
829
+ #: wppa-exif-iptc-common.php:217
830
+ msgid "Aperture-priority AE"
831
+ msgstr "Aperture-priority AE"
832
 
833
+ #: wppa-exif-iptc-common.php:218
834
+ msgid "Shutter speed priority AE"
835
+ msgstr "Verschlusszeitvorrang bei AE"
836
 
837
+ #: wppa-exif-iptc-common.php:219
838
+ msgid "Creative (Slow speed)"
839
+ msgstr "Creative (Slow-Speed)"
840
 
841
+ #: wppa-exif-iptc-common.php:220
842
+ msgid "Action (High speed)"
843
+ msgstr "Aktion (High-Speed)"
844
 
845
+ #: wppa-exif-iptc-common.php:221
846
+ msgid "Portrait"
847
+ msgstr "Portrait"
848
 
849
+ #: wppa-exif-iptc-common.php:222
850
+ msgid "Landscape"
851
+ msgstr "Querformat"
852
 
853
+ #: wppa-exif-iptc-common.php:223
854
+ msgid "Bulb"
855
+ msgstr "Birne"
856
 
857
+ #: wppa-exif-iptc-common.php:245
858
+ msgid "Average"
859
+ msgstr "Durchschnitt"
860
 
861
+ #: wppa-exif-iptc-common.php:246
862
+ msgid "Center-weighted average"
863
+ msgstr "Mittenbetont"
864
 
865
+ #: wppa-exif-iptc-common.php:247
866
+ msgid "Spot"
867
+ msgstr "Spot"
868
 
869
+ #: wppa-exif-iptc-common.php:248
870
+ msgid "Multi-spot"
871
+ msgstr "Multi-spot"
 
872
 
873
+ #: wppa-exif-iptc-common.php:249
874
+ msgid "Multi-segment"
875
+ msgstr "Multi-segment"
876
 
877
+ #: wppa-exif-iptc-common.php:250
878
+ msgid "Partial"
879
+ msgstr "Partiell"
880
 
881
+ #: wppa-exif-iptc-common.php:251
882
+ msgid "Other"
883
+ msgstr "Sonstiges"
 
884
 
885
+ #: wppa-exif-iptc-common.php:287
886
+ msgid "No Flash"
887
+ msgstr "Kein Blitz"
888
 
889
+ #: wppa-exif-iptc-common.php:289
890
+ msgid "Fired"
891
+ msgstr "Fired"
892
 
893
+ #: wppa-exif-iptc-common.php:291
894
+ msgid "Fired, Return not detected"
895
+ msgstr "Fired, Return not detected"
896
 
897
+ #: wppa-exif-iptc-common.php:293
898
+ msgid "Fired, Return detected"
899
+ msgstr "Fired, Return detected"
 
900
 
901
+ #: wppa-exif-iptc-common.php:295
902
+ msgid "On, Did not fire"
903
+ msgstr "An, kein Blitz"
904
 
905
+ #: wppa-exif-iptc-common.php:297
906
+ msgid "On, Fired"
907
+ msgstr "An, Fired"
 
908
 
909
+ #: wppa-exif-iptc-common.php:299
910
+ msgid "On, Return not detected"
911
+ msgstr "An, Return not detected"
912
 
913
+ #: wppa-exif-iptc-common.php:301
914
+ msgid "On, Return detected"
915
+ msgstr "An, Return detected"
916
 
917
+ #: wppa-exif-iptc-common.php:303
918
+ msgid "Off, Did not fire"
919
+ msgstr "Aus, kein Blitz"
 
920
 
921
+ #: wppa-exif-iptc-common.php:305
922
+ msgid "Off, Did not fire, Return not detected"
923
+ msgstr "Aus, kein Blitz, nicht erkannt und Rück"
924
 
925
+ #: wppa-exif-iptc-common.php:307
926
+ msgid "Auto, Did not fire"
927
+ msgstr "Auto, kein Blitz"
 
928
 
929
+ #: wppa-exif-iptc-common.php:309
930
+ msgid "Auto, Fired"
931
+ msgstr "Auto, Blitz"
 
932
 
933
+ #: wppa-exif-iptc-common.php:311
934
+ msgid "Auto, Fired, Return not detected"
935
+ msgstr "Auto, Blitz, nicht erkannt und Rück"
936
 
937
+ #: wppa-exif-iptc-common.php:313
938
+ msgid "Auto, Fired, Return detected"
939
+ msgstr "Auto, Blitz, erkannt und Rück"
 
940
 
941
+ #: wppa-exif-iptc-common.php:315
942
+ msgid "No flash function"
943
+ msgstr "Keine Blitzfunktion"
 
944
 
945
+ #: wppa-exif-iptc-common.php:317
946
+ msgid "Off, No flash function"
947
+ msgstr "Aus, Keine Blitzfunktion"
948
 
949
+ #: wppa-exif-iptc-common.php:319
950
+ msgid "Fired, Red-eye reduction"
951
+ msgstr "Blitz, Rote-Augen-Reduzierung"
 
952
 
953
+ #: wppa-exif-iptc-common.php:321
954
+ msgid "Fired, Red-eye reduction, Return not detected"
955
+ msgstr "Blitz, Rote-Augen-Reduzierung, nicht erkannt und Rück"
956
 
957
+ #: wppa-exif-iptc-common.php:323
958
+ msgid "Fired, Red-eye reduction, Return detected"
959
+ msgstr "Blitz, Rote-Augen-Reduzierung, erkannt und Rück"
 
 
960
 
961
+ #: wppa-exif-iptc-common.php:325
962
+ msgid "On, Red-eye reduction"
963
+ msgstr "An, Rote-Augen-Reduzierung"
964
 
965
+ #: wppa-exif-iptc-common.php:327
966
+ msgid "Red-eye reduction, Return not detected"
967
+ msgstr "Rote-Augen-Reduzierung, nicht erkannt und Rück"
968
 
969
+ #: wppa-exif-iptc-common.php:329
970
+ msgid "On, Red-eye reduction, Return detected"
971
+ msgstr "An, Rote-Augen-Reduzierung, erkannt und Rück"
 
972
 
973
+ #: wppa-exif-iptc-common.php:331
974
+ msgid "Off, Red-eye reduction"
975
+ msgstr "Aus, Rote-Augen-Reduzierung"
976
 
977
+ #: wppa-exif-iptc-common.php:333
978
+ msgid "Auto, Did not fire, Red-eye reduction"
979
+ msgstr "Auto, kein Blitz, Rote-Augen-Reduzierung"
980
 
981
+ #: wppa-exif-iptc-common.php:335
982
+ msgid "Auto, Fired, Red-eye reduction"
983
+ msgstr "Auto, Blitz, Rote-Augen-Reduzierung"
984
 
985
+ #: wppa-exif-iptc-common.php:337
986
+ msgid "Auto, Fired, Red-eye reduction, Return not detected"
987
+ msgstr "Auto, Blitz, Rote-Augen-Reduzierung, nicht erkannt und Rück"
988
 
989
+ #: wppa-exif-iptc-common.php:339
990
+ msgid "Auto, Fired, Red-eye reduction, Return detected"
991
+ msgstr "Auto, Blitz, Rote-Augen-Reduzierung, erkannt und Rück"
992
 
993
+ #: wppa-functions.php:551
994
+ msgid "No related photos found."
995
+ msgstr "Keine verwandten Fotos gefunden."
 
996
 
997
+ #: wppa-functions.php:900
998
  #, php-format
 
 
 
 
999
  msgid ""
1000
+ "There are %s albums found. Only the first %s will be shown. Please refine "
1001
+ "your search criteria."
 
 
 
 
 
 
 
 
1002
  msgstr ""
1003
+ "Es gibt %s Alben gefunden. Nur das erste %s wird angezeigt. Bitte verfeinern "
1004
+ "Sie Ihre Suchkriterien."
1005
 
1006
+ #: wppa-functions.php:1923 wppa-thumbnails.php:588
1007
+ msgid "Are you sure you want to remove this photo?"
1008
+ msgstr "Bist Du sicher, dass Du diese Foto löschen möchtest?"
1009
 
1010
+ #: wppa-functions.php:1926 wppa-thumbnails.php:590
1011
+ msgid "Delete"
1012
+ msgstr "Löschen"
 
1013
 
1014
+ #: wppa-functions.php:1993
1015
  #, php-format
1016
+ msgid "%d dislike"
1017
+ msgid_plural "%d dislikes"
1018
+ msgstr[0] "%d Abneigung"
1019
+ msgstr[1] "%d Abneigungen"
1020
 
1021
+ #: wppa-functions.php:1995
1022
+ msgid "including mine"
1023
+ msgstr "einschließlich meine"
 
1024
 
1025
+ #: wppa-functions.php:2097
1026
+ msgid "Comment edited"
1027
+ msgstr "Kommentar bearbeitet"
1028
 
1029
+ #: wppa-functions.php:2102
1030
+ msgid "Photo comment"
1031
+ msgstr "Foto kommentar"
1032
 
1033
+ #: wppa-functions.php:2106
1034
+ msgid "Comment on photo:"
1035
+ msgstr "Kommentar zum Foto:"
 
1036
 
1037
+ #: wppa-functions.php:2117
1038
+ msgid "wrote on photo"
1039
+ msgstr "schrieb am Foto"
 
1040
 
1041
+ #: wppa-functions.php:2119
1042
+ msgid "Reply"
1043
+ msgstr "Antwort"
 
 
 
 
1044
 
1045
+ #: wppa-functions.php:2121
1046
+ msgid "Moderate comment admin"
1047
+ msgstr "Moderiere Kommentare"
1048
 
1049
+ #: wppa-functions.php:2124 wppa-functions.php:4143
1050
+ msgid "Moderate manage photo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1051
  msgstr "Moderiere Fotos"
1052
 
1053
+ #: wppa-functions.php:2127
 
 
1054
  msgid "Edit photo"
1055
  msgstr "Foto bearbeiten"
1056
 
1057
+ #: wppa-functions.php:2138
1058
+ msgid "You receive this email as you are assigned to moderate"
1059
+ msgstr "Sie erhalten diese E-Mail, wie Sie, um moderate zugeordnet sind"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1060
 
1061
+ #: wppa-functions.php:2150
1062
+ msgid "You receive this email as administrator of the site"
1063
+ msgstr "Sie erhalten diese E-Mail als Administrator der Website"
 
1064
 
1065
+ #: wppa-functions.php:2167
1066
+ msgid "You receive this email as uploader of the photo"
1067
+ msgstr "Sie erhalten diese E-Mail als Uploader des Fotos"
 
1068
 
1069
+ #: wppa-functions.php:2184
1070
+ msgid "You receive this email as owner of the album"
1071
+ msgstr "Sie erhalten diese E-Mail als Eigentümer des Albums"
1072
 
1073
+ #: wppa-functions.php:2201
1074
+ msgid "You receive this email because you commented this photo earlier."
1075
+ msgstr "Sie erhalten diese E-Mail, weil Sie dieses Foto früheren kommentiert."
1076
 
1077
+ #: wppa-functions.php:2227
1078
+ msgid "Comment added"
1079
+ msgstr "Kommentar hinzugefügt"
1080
 
1081
+ #: wppa-functions.php:2233
1082
+ msgid ""
1083
+ "Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the "
1084
+ "computation."
1085
  msgstr ""
1086
+ "Sorry, eine falsche Antwort gab dir. \n"
1087
+ "\n"
1088
+ "Bitte versuchen Sie es erneut, um die Berechnung zu lösen."
1089
 
1090
+ #: wppa-functions.php:2244
1091
+ msgid "Could not process comment.\\nProbably timed out."
1092
  msgstr ""
1093
+ "Konnte Kommentar nicht werarbeiten. \n"
1094
+ "Warscheinlich Zeitüberschreitung."
1095
 
1096
+ #: wppa-functions.php:2362
1097
+ msgid "A video can not be printed or downloaded"
1098
+ msgstr "Ein Video kann nicht gedruckt oder heruntergeladen werden"
1099
 
1100
+ #: wppa-functions.php:2797
1101
+ msgid "ERROR: Illegal attempt to enter a rating."
1102
+ msgstr "ERROR: Illegal Versuch, eine Bewertung zu gelangen."
1103
 
1104
+ #: wppa-functions.php:2810
1105
+ msgid "ERROR: Illegal attempt to enter a comment."
1106
+ msgstr "ERROR: Illegal Versuch, einen Kommentar eingeben."
1107
 
1108
+ #: wppa-functions.php:3890
1109
+ msgid "New Album"
1110
+ msgstr "Neues Fotoalbum"
1111
 
1112
+ #: wppa-functions.php:3893
1113
+ msgid "ERROR: Illegal attempt to create an album."
1114
+ msgstr "ERROR: Illegal Versuch, ein Album zu erstellen."
 
1115
 
1116
+ #: wppa-functions.php:3897
1117
+ msgid "Wrong captcha, please try again"
1118
+ msgstr "Falsche Captcha, versuchen Sie es erneut"
1119
 
1120
+ #: wppa-functions.php:3910
1121
+ #, php-format
1122
+ msgid "Album #%s created"
1123
+ msgstr "Album #%s erstellt"
1124
 
1125
+ #: wppa-functions.php:3915
1126
+ msgid "Could not create album"
1127
+ msgstr "Album konnte nicht erstellt werden"
1128
 
1129
+ #: wppa-functions.php:3926
1130
+ msgid "ERROR: Illegal attempt to upload a file."
1131
+ msgstr "ERROR: Illegal Versuch, eine Datei hochzuladen."
1132
 
1133
+ #: wppa-functions.php:3966
1134
+ msgid "Photo upload"
1135
+ msgstr "Fotos hochgeladen"
 
1136
 
1137
+ #: wppa-functions.php:3967
1138
+ #, php-format
1139
+ msgid "%d photo successfully uploaded"
1140
+ msgid_plural "%d photos successfully uploaded"
1141
+ msgstr[0] "%d Foto erfolgreich hochgeladen"
1142
+ msgstr[1] "%d Fotos erfolgreich hochgeladen"
1143
 
1144
+ #: wppa-functions.php:3968
1145
+ #, php-format
1146
+ msgid "%s points added"
1147
+ msgstr "%s Punkte hinzugefügt"
1148
 
1149
+ #: wppa-functions.php:3972
1150
+ msgid "Upload failed"
1151
+ msgstr "Upload fehlgeschlagen"
 
1152
 
1153
+ #: wppa-functions.php:3975
1154
  #, php-format
1155
+ msgid "%d upload failed"
1156
+ msgid_plural "%d uploads failed"
1157
+ msgstr[0] "%d Hochladung fehlgeschlagen"
1158
+ msgstr[1] "%d Hochladungen fehlgeschlagen"
1159
 
1160
+ #: wppa-functions.php:4015
1161
+ msgid "Error during upload"
1162
+ msgstr "Fehler beim Hochladen"
 
1163
 
1164
+ #: wppa-functions.php:4020
1165
+ msgid "Uploaded file is not an image"
1166
+ msgstr "Hochgeladenen datei ist kein Bild"
1167
 
1168
+ #: wppa-functions.php:4024
1169
+ #, php-format
1170
+ msgid ""
1171
+ "Only gif, jpg and png image files are supported. Returned filetype = %d."
1172
  msgstr ""
1173
+ "Nur gif, jpg und png Bild-Dateien werden unterstützt. Kehrte filetype =% d."
1174
 
1175
+ #: wppa-functions.php:4030
1176
+ #, php-format
1177
+ msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
1178
  msgstr ""
1179
+ "Hochgeladene Datei ist größer als das erlaubte Maximum von %d x %d Pixel."
1180
 
1181
+ #: wppa-functions.php:4036
1182
+ #, php-format
1183
+ msgid "Uploaded file %s already exists in this album."
1184
+ msgstr "Hochgeladene Datei %s existiert bereits in diesem Album."
1185
 
1186
+ #: wppa-functions.php:4044
1187
+ #, php-format
1188
+ msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
1189
+ msgstr "Das Bild ist zu groß. Max Fotogröße: %d x %d (% 2.1f MegaPixel)"
1190
 
1191
+ #: wppa-functions.php:4067
1192
+ msgid "Could not insert photo into db."
1193
+ msgstr "Konnte Foto nicht in db einfügen."
1194
 
1195
+ #: wppa-functions.php:4139
1196
  #, php-format
1197
+ msgid "New photo uploaded: %s"
1198
+ msgstr "Neues Foto hochgeladen: %s"
 
1199
 
1200
+ #: wppa-functions.php:4140
1201
  #, php-format
1202
+ msgid "User %1$s uploaded photo %2$s into album %3$s"
1203
+ msgstr "Benutzer %1$s hat Foto %2$s in album %3$s hochgeladen "
1204
 
1205
+ #: wppa-functions.php:4142
1206
+ msgid "This upload requires moderation"
1207
+ msgstr "Dieser Upload erfordert Moderation"
1208
 
1209
+ #: wppa-functions.php:4146
1210
+ msgid "Details:"
1211
+ msgstr "Details:"
 
1212
 
1213
+ #: wppa-functions.php:4147
1214
+ msgid "Manage photo"
1215
+ msgstr "Fotos verwalten"
 
1216
 
1217
+ #: wppa-functions.php:4283
1218
+ msgid "You can upload after"
1219
+ msgstr "Sie können Hochladen nach"
 
1220
 
1221
+ #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1222
+ #: wppa-functions.php:4341 wppa-non-admin.php:720
1223
+ msgid "Download"
1224
+ msgstr "Herunterladen"
1225
 
1226
+ #: wppa-functions.php:4364
1227
+ msgid "Zoom in"
1228
+ msgstr "Hineinzoomen"
 
1229
 
1230
+ #: wppa-non-admin.php:349
1231
+ msgid "Press f for fullscreen."
1232
+ msgstr "Drücken Sie f für Vollbild."
1233
 
1234
+ #: wppa-non-admin.php:422
1235
+ msgid ""
1236
+ "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1237
+ "dismiss this notice."
1238
  msgstr ""
1239
+ "Tasten: f = nächsten Modus; q,x = verlassen; p = vorheriges, n = nächstes, s "
1240
+ "= Start / Stop, d = entlassen diesen Hinweis."
1241
 
1242
+ #: wppa-non-admin.php:423
1243
+ msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1244
  msgstr ""
1245
+ "Tasten: f = nächsten Modus; q,x = verlassen; d = entlassen diesen Hinweis."
1246
 
1247
+ #: wppa-non-admin.php:662 wppa-slideshow.php:228
1248
+ msgid "Start"
1249
+ msgstr "Starte"
 
1250
 
1251
+ #: wppa-non-admin.php:663
1252
+ msgid "Stop"
1253
+ msgstr "Stop"
 
 
1254
 
1255
+ #: wppa-non-admin.php:664 wppa-slideshow.php:220
1256
+ msgid "Slower"
1257
+ msgstr "Langsamer"
 
 
1258
 
1259
+ #: wppa-non-admin.php:665 wppa-slideshow.php:236
1260
+ msgid "Faster"
1261
+ msgstr "Schneller"
 
 
1262
 
1263
+ #: wppa-non-admin.php:666
1264
+ msgid "Photo"
1265
+ msgstr "Foto"
 
1266
 
1267
+ #: wppa-non-admin.php:667
1268
+ msgid "of"
1269
+ msgstr "von"
 
1270
 
1271
+ #: wppa-non-admin.php:668
1272
+ msgid "Previous photo"
1273
+ msgstr "Vorheriges Foto"
 
 
1274
 
1275
+ #: wppa-non-admin.php:669
1276
+ msgid "Next photo"
1277
+ msgstr "Nächstes Foto"
 
1278
 
1279
+ #: wppa-non-admin.php:670
1280
+ msgid "Prev."
1281
+ msgstr "Vorheriges"
 
1282
 
1283
+ #: wppa-non-admin.php:671 wppa-slideshow.php:990
1284
+ msgid "Next"
1285
+ msgstr "Nächstes"
 
1286
 
1287
+ #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1288
+ #: wppa-slideshow.php:832
1289
+ msgid "Average&nbsp;rating"
1290
+ msgstr "Durchschnittliche Bewertung"
1291
 
1292
+ #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1293
+ #: wppa-slideshow.php:814
1294
+ msgid "My&nbsp;rating"
1295
+ msgstr "Meine&nbsp;Bewertung"
1296
 
1297
+ #: wppa-non-admin.php:674
1298
+ msgid "Avg."
1299
+ msgstr "Durchs."
1300
 
1301
+ #: wppa-non-admin.php:675
1302
+ msgid "Mine"
1303
+ msgstr "Meine"
 
1304
 
1305
+ #: wppa-non-admin.php:676
1306
+ msgid "You marked this image as inappropriate."
1307
+ msgstr "Sie markiert das Bild als unangemessen."
1308
 
1309
+ #: wppa-non-admin.php:679
1310
+ msgid "Please enter your name"
1311
+ msgstr "Bitte geben Sie Ihren Namen ein"
 
 
1312
 
1313
+ #: wppa-non-admin.php:680
1314
+ msgid "Please enter a valid email address"
1315
+ msgstr "Bitte geben Sie eine gültige eMail-Adresse ein"
1316
 
1317
+ #: wppa-non-admin.php:681
1318
+ msgid "Please enter a comment"
1319
+ msgstr "Bitte geben Sie einen Kommentar ein."
 
1320
 
1321
+ #: wppa-non-admin.php:715
1322
+ msgid "Double click to start/stop slideshow running"
1323
+ msgstr "Doppelklicken Sie zum Starten / Stoppen Diashow Lauf"
 
1324
 
1325
+ #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1326
+ msgid "wrote"
1327
+ msgstr "schrieb"
1328
 
1329
+ #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1330
+ #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1331
+ msgid "Photo not found"
1332
+ msgstr "Foto nicht gefunden"
1333
 
1334
+ #: wppa-non-admin.php:794
1335
+ msgid "There are no commented photos (yet)"
1336
+ msgstr "Es sind (noch) keine kommentierte Fotos"
 
1337
 
1338
+ #: wppa-non-admin.php:797
1339
+ msgid "View the featured photos"
1340
+ msgstr "Sehen Sie die best bewertesten Fotos"
 
1341
 
1342
+ #: wppa-non-admin.php:799
1343
+ msgid "There are no featured photos (yet)"
1344
+ msgstr "Es sind (noch) keine vorgestellten Fotos"
 
 
1345
 
1346
+ #: wppa-non-admin.php:802
1347
+ msgid "View the most recent uploaded photos"
1348
+ msgstr "Sehen Sie die neuesten hochgeladenen Fotos"
1349
 
1350
+ #: wppa-non-admin.php:804
1351
+ msgid "There are no uploaded photos (yet)"
1352
+ msgstr "Es sind (noch) keine hochgeladene Fotos"
 
1353
 
1354
+ #: wppa-non-admin.php:808
1355
+ msgid "By:"
1356
+ msgstr "Durch:"
1357
 
1358
+ #: wppa-non-admin.php:811
1359
+ msgid "No album defined (yet)"
1360
+ msgstr "Noch kein Album definiert"
1361
 
1362
+ #: wppa-non-admin.php:815
1363
+ msgid "There are no photos (yet)"
1364
+ msgstr "Es sind (noch) keine Fotos"
 
1365
 
1366
+ #: wppa-non-admin.php:818
1367
+ msgid "There are too many registered users in the system for this widget"
1368
+ msgstr "Es gibt zu viele registrierte Benutzer im System für dieses Widget"
 
1369
 
1370
+ #: wppa-non-admin.php:819
1371
+ msgid "Photos uploaded by"
1372
+ msgstr "Fotos hochgeladen durch"
1373
 
1374
+ #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1375
+ #, php-format
1376
+ msgid "%d view"
1377
+ msgid_plural "%d views"
1378
+ msgstr[0] "%d Ansicht"
1379
+ msgstr[1] "%d Ansichte"
1380
 
1381
+ #: wppa-non-admin.php:825
1382
+ msgid "There are no rated photos (yet)"
1383
+ msgstr "Es sind (noch) keine bewertesten Fotos"
1384
+
1385
+ #: wppa-slideshow.php:247
1386
+ msgid "Paused"
1387
+ msgstr "Pausiert"
1388
 
1389
+ #: wppa-slideshow.php:255
1390
+ msgid ""
1391
+ "To see the full size images, you need to enable javascript in your browser."
1392
  msgstr ""
1393
+ "Um das Komplette Bild zu sehen musst du Javaskript in deinem Browser "
1394
+ "aktivieren."
1395
+
1396
+ #: wppa-slideshow.php:600
1397
+ msgid "Checkout"
1398
+ msgstr "Zur Kassa"
1399
 
1400
+ #: wppa-slideshow.php:660
1401
+ #, php-format
1402
+ msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
1403
+ msgstr "Anzahl der Stimmen: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
1404
 
1405
+ #: wppa-slideshow.php:676 wppa-slideshow.php:819 wppa-slideshow.php:881
1406
+ #, php-format
1407
+ msgid "You must <a href=\"%s\">login</a> to vote"
1408
+ msgstr "Sie müssen <a href=\"%s\">anmelden</a> um zu stimmen"
1409
 
1410
+ #: wppa-slideshow.php:679 wppa-slideshow.php:822 wppa-slideshow.php:884
1411
+ msgid "You must login to vote"
1412
+ msgstr "Sie müssen anmelden um zu stimmen"
1413
 
1414
+ #: wppa-slideshow.php:715
1415
+ msgid "very low"
1416
+ msgstr "sehr niedrig"
1417
 
1418
+ #: wppa-slideshow.php:716
1419
+ msgid "low"
1420
+ msgstr "niedrig"
1421
 
1422
+ #: wppa-slideshow.php:717
1423
+ msgid "average"
1424
+ msgstr "durchschnittlich"
1425
 
1426
+ #: wppa-slideshow.php:718
1427
+ msgid "high"
1428
+ msgstr "hoch"
1429
 
1430
+ #: wppa-slideshow.php:719
1431
+ msgid "very high"
1432
+ msgstr "sehr hoch"
1433
 
1434
+ #: wppa-slideshow.php:766 wppa-slideshow.php:852
1435
+ msgid "Click this if you do NOT like this image!"
1436
+ msgstr "Klicken Sie hier, wenn Sie dieses Bild nicht gefällt!"
 
1437
 
1438
+ #: wppa-slideshow.php:774 wppa-slideshow.php:860
1439
+ msgid "Are you sure you want to mark this image as inappropriate?"
1440
  msgstr ""
1441
+ "Sind Sie sicher, dass Sie dieses Bild als unangemessen kennzeichnen wollen?"
1442
 
1443
+ #: wppa-slideshow.php:782 wppa-slideshow.php:869
1444
+ msgid "Number of people who marked this photo as inappropriate"
1445
+ msgstr "Anzahl der Menschen, die dieses Foto als unpassend markiert haben"
 
1446
 
1447
+ #: wppa-slideshow.php:876
1448
+ msgid "My rating:"
1449
+ msgstr "Meine Bewertung:"
 
1450
 
1451
+ #: wppa-slideshow.php:968
1452
+ msgid "First"
1453
+ msgstr "Erste"
1454
 
1455
+ #: wppa-slideshow.php:977
1456
+ msgid "Previous"
1457
+ msgstr "Vorheriges"
1458
 
1459
+ #: wppa-slideshow.php:999
1460
+ msgid "Last"
1461
+ msgstr "Letzte"
 
1462
 
1463
+ #: wppa-slideshow.php:1201
1464
+ #, php-format
1465
+ msgid "Photo %s of %s"
1466
+ msgstr "Foto %s von %s"
1467
 
1468
+ #: wppa-slideshow.php:1253
1469
+ msgid "Click to start/stop"
1470
+ msgstr "Klicke zum Starten/Stoppen"
 
 
1471
 
1472
+ #: wppa-slideshow.php:1265
1473
+ msgid "- - - Comments box activated - - -"
1474
+ msgstr "- - - Kommentar Box aktiviert- - -"
 
 
1475
 
1476
+ #: wppa-slideshow.php:1289
1477
+ msgid "- - - IPTC box activated - - -"
1478
+ msgstr "- - - IPTC-Box aktiviert - - -"
 
 
1479
 
1480
+ #: wppa-slideshow.php:1313
1481
+ msgid "- - - EXIF box activated - - -"
1482
+ msgstr "- - - EXIF-Box aktiviert - - -"
 
 
1483
 
1484
+ #: wppa-statistics.php:27
1485
+ #, php-format
1486
+ msgid "There is %d photo album"
1487
+ msgid_plural "There are %d photo albums"
1488
+ msgstr[0] "Es gibt %d Fotoalbum"
1489
+ msgstr[1] "Es gibt %d Fotoalben"
1490
 
1491
+ #: wppa-statistics.php:28
1492
+ msgid "The last album added is"
1493
+ msgstr "Das letzte hinzugefügte Album ist"
 
 
1494
 
1495
+ #: wppa-statistics.php:32
1496
+ msgid ", a subalbum of"
1497
+ msgstr ", ein Unter-Album von"
 
 
1498
 
1499
+ #: wppa-thumbnails.php:174 wppa-thumbnails.php:1059
1500
+ msgid "View the top rated photos"
1501
+ msgstr "Betrachte die best bewertesten Fotos"
 
 
1502
 
1503
+ #: wppa-thumbnails.php:966
1504
+ #, php-format
1505
+ msgid "Missing thumbnail image #%s"
1506
+ msgstr "Fehlende Miniaturansicht #%s"
 
1507
 
1508
+ #: wppa-thumbnails.php:1841
1509
+ msgid "Gold medal"
1510
+ msgstr "Gold medaille"
 
 
1511
 
1512
+ #: wppa-thumbnails.php:1842
1513
+ msgid "Silver medal"
1514
+ msgstr "Silber Medallie"
1515
+
1516
+ #: wppa-thumbnails.php:1843
1517
+ msgid "Bronze medal"
1518
+ msgstr "Bronze medaille"
1519
+
1520
+ #: wppa-video.php:188
1521
  msgid ""
1522
+ "There is no filetype available for your browser, or your browser does not "
1523
+ "support html5 video"
1524
  msgstr ""
1525
+ "Es gibt keine Dateityp zur Verfügung für Ihren Browser, oder Ihr Browser "
1526
+ "unterstützt kein HTML5-Video unterstützen"
1527
 
1528
  #. Plugin Name of the plugin/theme
 
1529
  msgid "WP Photo Album Plus"
1530
+ msgstr "WP Photo Album Plus"
1531
 
1532
  #. Plugin URI of the plugin/theme
1533
  msgid "http://wordpress.org/extend/plugins/wp-photo-album-plus/"
1534
+ msgstr "http://wordpress.org/extend/plugins/wp-photo-album-plus/"
1535
 
1536
  #. Description of the plugin/theme
1537
  msgid ""
1538
  "Easily manage and display your photo albums and slideshows within your "
1539
  "WordPress site."
1540
  msgstr ""
1541
+ "Easily manage and display your photo albums and slideshows within your "
1542
+ "WordPress site."
1543
 
1544
  #. Author of the plugin/theme
1545
  msgid "J.N. Breetvelt a.k.a. OpaJaap"
1546
+ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
1547
 
1548
  #. Author URI of the plugin/theme
1549
  msgid "http://wppa.opajaap.nl/"
1550
+ msgstr "http://wppa.opajaap.nl/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wp-photo-album-plus-es_CA.mo CHANGED
Binary file
languages/wp-photo-album-plus-es_CA.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-11-17 09:04+0100\n"
5
- "PO-Revision-Date: 2015-11-17 09:04+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: es_CA\n"
@@ -26,12 +26,7 @@ msgid "Pages:"
26
  msgstr "Pàgina següent"
27
 
28
  #: theme/photo-album-page.php:31 theme/photo-album-search-page.php:53
29
- #: wppa-album-admin-autosave.php:1058 wppa-album-admin-autosave.php:1096
30
- #: wppa-album-admin-autosave.php:1195 wppa-album-admin-autosave.php:1367
31
- #: wppa-album-admin-autosave.php:1462 wppa-album-admin-autosave.php:1536
32
- #: wppa-album-admin-autosave.php:1646 wppa-comment-admin.php:310
33
- #: wppa-comment-admin.php:379 wppa-comment-admin.php:397
34
- #: wppa-functions.php:1909 wppa-thumbnails.php:597
35
  msgid "Edit"
36
  msgstr "Editar"
37
 
@@ -39,8 +34,7 @@ msgstr "Editar"
39
  msgid "Warning. No page defined for search results!"
40
  msgstr ""
41
 
42
- #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:171
43
- #: wppa-settings-autosave.php:396 wppa-settings-autosave.php:3005
44
  msgid "Search"
45
  msgstr "Búsqueda"
46
 
@@ -59,17004 +53,1584 @@ msgid ""
59
  "different keywords."
60
  msgstr ""
61
 
62
- #: theme/wppa-theme.php:323 theme/wppa-theme.php:342
63
  msgid "No photos found matching your search criteria."
64
  msgstr "No s'ha trobat cap foto amb aquest criteri de cerca."
65
 
66
- #: theme/wppa-theme.php:326
67
  #, fuzzy
68
  msgid "No albums found matching your search criteria."
69
  msgstr "No s'han trobat àlbums o fotos amb el vostre criteri de cerca."
70
 
71
- #: theme/wppa-theme.php:329
72
  msgid "No albums or photos found matching your search criteria."
73
  msgstr "No s'han trobat àlbums o fotos amb el vostre criteri de cerca."
74
 
75
- #: wppa-admin-functions.php:27
76
- #, fuzzy
77
- msgid "Settings successfully backed up"
78
- msgstr "Foto pujada satisfactòriament"
79
 
80
- #: wppa-admin-functions.php:31
81
- msgid "Unable to backup settings"
82
- msgstr ""
 
83
 
84
- #: wppa-admin-functions.php:40
85
- msgid "Error writing to settings backup file"
86
- msgstr ""
 
 
 
87
 
88
- #: wppa-admin-functions.php:101
89
- msgid "Settings file not found"
90
- msgstr ""
91
 
92
- #: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2247
93
- #: wppa-ajax.php:2254
94
- msgid "Please supply a numeric value greater than or equal to"
95
- msgstr ""
 
 
96
 
97
- #: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2247
98
- #: wppa-ajax.php:2254
99
- #, fuzzy
100
- msgid "for"
101
- msgstr "para"
102
 
103
- #: wppa-admin-functions.php:208 wppa-ajax.php:2254
104
- msgid "and less than or equal to"
105
- msgstr ""
 
 
 
106
 
107
- #: wppa-admin-functions.php:223 wppa-album-admin-autosave.php:283
108
  #, fuzzy
109
- msgid "--- public ---"
110
- msgstr "--- tot ---"
111
-
112
- #: wppa-admin-functions.php:462
113
- #, php-format
114
- msgid "File %s is of an unsupported filetype and has been removed."
115
- msgstr ""
116
-
117
- #: wppa-admin-functions.php:562 wppa-admin-functions.php:601
118
- #: wppa-admin-functions.php:605 wppa-admin-functions.php:609
119
- msgid "Unexpected error:"
120
- msgstr ""
121
 
122
- #: wppa-admin-functions.php:562
123
- msgid "Missing database table:"
124
- msgstr ""
 
125
 
126
- #: wppa-admin-functions.php:601
127
- msgid "Missing directory:"
128
- msgstr ""
129
 
130
- #: wppa-admin-functions.php:605
131
- msgid "Directory is not writable:"
132
- msgstr ""
133
 
134
- #: wppa-admin-functions.php:609
135
- msgid "Directory is not readable:"
136
- msgstr ""
 
 
 
137
 
138
- #: wppa-admin-functions.php:615
139
  msgid ""
140
- "Please de-activate and re-activate the plugin. If this problem persists, ask "
141
- "your administrator."
142
  msgstr ""
143
 
144
- #: wppa-admin-functions.php:634
145
  #, fuzzy
146
- msgid "Prev page"
147
- msgstr "Pàgina anterior"
148
 
149
- #: wppa-admin-functions.php:647
150
  #, fuzzy
151
- msgid "Next page"
152
- msgstr "Pàgina següent"
153
-
154
- #: wppa-admin-functions.php:749 wppa-admin-functions.php:752
155
- #, php-format
156
- msgid "Album %s is full"
157
- msgstr ""
158
 
159
- #: wppa-admin-functions.php:770
160
- #, php-format
161
- msgid "Photo %s already exists in album number %s. Removed from depot."
162
- msgstr ""
163
 
164
- #: wppa-admin-functions.php:773
165
- #, fuzzy, php-format
166
- msgid "Photo %s already exists in album number %s."
167
- msgstr "L'usuari %s ha pujat %s fotos a l'àlbum %s"
168
 
169
- #: wppa-admin-functions.php:803
170
- #, php-format
171
- msgid "ERROR: Attempt to upload a photo that is too large to process (%s)."
172
  msgstr ""
173
 
174
- #: wppa-admin-functions.php:804
175
- msgid "Too big"
176
  msgstr ""
177
 
178
- #: wppa-admin-functions.php:808
179
- msgid ""
180
- "WARNING: You are uploading photos that are too small. Photos must be larger "
181
- "than the thumbnail size and larger than the coverphotosize."
182
  msgstr ""
183
 
184
- #: wppa-admin-functions.php:809
185
- msgid "Too small"
 
186
  msgstr ""
187
 
188
- #: wppa-admin-functions.php:814
189
- msgid "ERROR: Unable to retrieve image size of"
190
  msgstr ""
191
 
192
- #: wppa-admin-functions.php:814
193
- #, fuzzy
194
- msgid "Are you sure it is a photo?"
195
- msgstr "Esteu segur que voleu publicar aquesta foto?"
196
-
197
- #: wppa-admin-functions.php:815
198
- msgid "No imagesize"
199
  msgstr ""
200
 
201
- #: wppa-admin-functions.php:824
202
- msgid "Unsupported mime type encountered:"
203
  msgstr ""
204
 
205
- #: wppa-admin-functions.php:841
206
- msgid "Album not known while trying to add a photo"
207
  msgstr ""
208
 
209
- #: wppa-admin-functions.php:845
210
- #, php-format
211
- msgid ""
212
- "Album %s does not exist or is not accessable while trying to add a photo"
213
  msgstr ""
214
 
215
- #: wppa-admin-functions.php:864
216
  #, fuzzy
217
- msgid "Could not insert photo."
218
- msgstr "No es pot inserir la foto en la base de dades."
219
 
220
- #: wppa-admin-functions.php:899
221
- msgid "ERROR: Unknown file or album."
222
- msgstr ""
 
 
223
 
224
- #: wppa-admin.php:54
225
  #, fuzzy
226
- msgid "Photo&thinsp;Albums"
227
- msgstr "Àlbums de fotos"
228
-
229
- #: wppa-admin.php:57 wppa-adminbar.php:40 wppa-settings-autosave.php:5520
230
- msgid "Album Admin"
231
- msgstr "Administrador d'Àlbums"
232
-
233
- #: wppa-admin.php:58 wppa-adminbar.php:47 wppa-settings-autosave.php:5521
234
- #: wppa-upload-widget.php:71 wppa-upload.php:88
235
- msgid "Upload Photos"
236
- msgstr "Pujar fotos"
237
 
238
- #: wppa-admin.php:61 wppa-adminbar.php:53
239
- msgid "Edit Photos"
240
- msgstr "Editar fotos"
 
241
 
242
- #: wppa-admin.php:63 wppa-adminbar.php:61 wppa-settings-autosave.php:5522
243
- #: wppa-upload.php:458
244
- msgid "Import Photos"
245
- msgstr "Importar fotos"
 
246
 
247
- #: wppa-admin.php:64 wppa-adminbar.php:68
248
  #, fuzzy
249
- msgid "Moderate Photos"
250
- msgstr "Moderat"
251
 
252
- #: wppa-admin.php:65 wppa-adminbar.php:75 wppa-export.php:32
253
- #: wppa-settings-autosave.php:5524
254
- msgid "Export Photos"
255
- msgstr "Exportar fotos"
 
256
 
257
- #: wppa-admin.php:66 wppa-adminbar.php:82 wppa-comment-admin.php:215
258
- #: wppa-settings-autosave.php:5525
259
- msgid "Settings"
260
- msgstr "Configuració"
261
 
262
- #: wppa-admin.php:67
263
- #, fuzzy
264
- msgid "Photo of the day Widget"
265
- msgstr "Foto del dia"
266
 
267
- #: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:60
268
- #: wppa-settings-autosave.php:5526 wppa-setup.php:1387
269
- msgid "Photo of the day"
270
- msgstr "Foto del dia"
271
 
272
- #: wppa-admin.php:68
273
- #, fuzzy
274
- msgid "Manage comments"
275
- msgstr "%d comentaris"
276
 
277
- #: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:386
278
- #: wppa-settings-autosave.php:2834 wppa-settings-autosave.php:7667
279
- #: wppa-settings-autosave.php:7712
280
- msgid "Comments"
281
- msgstr "Comentaris"
282
 
283
- #: wppa-admin.php:69
284
  #, fuzzy
285
- msgid "Help &amp; Info"
286
- msgstr "Ajuda i Info"
287
-
288
- #: wppa-admin.php:106
289
- msgid "Uploading is temporary diabled for you"
290
- msgstr ""
291
 
292
- #: wppa-admin.php:112
293
- msgid "Editing is temporary diabled for you"
294
- msgstr ""
 
295
 
296
- #: wppa-admin.php:119
297
- msgid "Importing is temporary diabled for you"
298
- msgstr ""
299
 
300
- #: wppa-admin.php:121 wppa-upload.php:1055
301
- #, fuzzy
302
- msgid "Import"
303
- msgstr "Importar fotos"
304
 
305
- #: wppa-admin.php:121 wppa-settings-autosave.php:8734
306
  #, fuzzy
307
- msgid "Update"
308
- msgstr "Actualizacion en proceso"
309
 
310
- #: wppa-adminbar.php:103 wppa-settings-autosave.php:5528
311
- msgid "Help & Info"
312
- msgstr "Ajuda i Info"
 
313
 
314
- #: wppa-adminbar.php:110
315
- msgid "Docs & Demos"
316
- msgstr "Documents i exemples"
 
317
 
318
- #: wppa-adminbar.php:118 wppa-album-navigator-widget.php:41
319
- #: wppa-album-navigator-widget.php:84 wppa-album-widget.php:47
320
- msgid "Photo Albums"
321
- msgstr "Àlbums de fotos"
322
 
323
- #: wppa-ajax.php:154
324
  #, fuzzy
325
- msgid ""
326
- "All modifications are instantly updated on the server. The <b style=\"color:"
327
- "#070\" >Remark</b> field keeps you informed on the actions taken at the "
328
- "background."
329
- msgstr ""
330
- "<b>Advertencia:</b> Tu servidor permite subir <b>%s</b> fotos a la vez con "
331
- "un tamaño maximo de <b>%s</b> bytes y solo permite <b>%s</b> segundos para "
332
- "que se realize al subida de fotos"
333
 
334
- #: wppa-ajax.php:157
335
  #, fuzzy
336
- msgid "Exit & Refresh"
337
- msgstr "Debes recargar la pagina y volverlo a intentar"
338
-
339
- #: wppa-ajax.php:169 wppa-ajax.php:226 wppa-ajax.php:249 wppa-ajax.php:463
340
- #: wppa-ajax.php:724
341
- msgid "Security check failure"
342
- msgstr ""
343
 
344
- #: wppa-ajax.php:203 wppa-ajax.php:244
345
- msgid "You do not have the rights to moderate photos this way"
346
- msgstr ""
347
 
348
- #: wppa-ajax.php:223
349
- #, php-format
350
- msgid "Failed to update stutus of photo %s"
351
- msgstr ""
352
 
353
- #: wppa-ajax.php:223 wppa-ajax.php:230
354
- msgid "Please refresh the page"
355
- msgstr ""
 
356
 
357
- #: wppa-ajax.php:230
358
- #, php-format
359
- msgid "Failed to update stutus of comment %s"
360
- msgstr ""
361
 
362
- #: wppa-ajax.php:239 wppa-ajax.php:253
363
  #, fuzzy
364
- msgid "Photo removed"
365
- msgstr "Foto eliminada."
 
 
366
 
367
- #: wppa-ajax.php:258
368
  #, fuzzy
369
- msgid "Comment removed"
370
- msgstr "Comentari editat"
371
 
372
- #: wppa-ajax.php:259
373
  #, fuzzy
374
- msgid "Could not remove comment"
375
  msgstr "Não é possível criar álbum."
376
 
377
- #: wppa-ajax.php:262 wppa-ajax.php:596
378
- msgid "Unexpected error"
379
- msgstr ""
380
-
381
- #: wppa-ajax.php:268
382
- msgid "This feature is not enabled on this website"
383
- msgstr ""
384
 
385
- #: wppa-ajax.php:280
386
- msgid "The album is empty"
387
- msgstr ""
388
 
389
- #: wppa-ajax.php:289 wppa-ajax.php:426
390
- msgid "Unable to create zip archive"
391
- msgstr ""
 
 
 
 
 
392
 
393
- #: wppa-ajax.php:301
394
  #, php-format
395
- msgid "Unable to create zip archive. code = %s"
396
- msgstr ""
397
 
398
- #: wppa-ajax.php:338
399
- #, php-format
400
- msgid "Only %s out of %s photos could be added to the zipfile"
401
- msgstr ""
402
 
403
- #: wppa-ajax.php:367
404
- msgid "Unknown source of request"
 
 
 
 
 
 
 
 
405
  msgstr ""
 
 
406
 
407
- #: wppa-ajax.php:385
408
- msgid "Empty filename"
 
 
 
409
  msgstr ""
 
 
410
 
411
- #: wppa-ajax.php:412
412
- msgid "Unable to create tempdir"
 
413
  msgstr ""
 
 
414
 
415
- #: wppa-ajax.php:436
416
  #, fuzzy
417
- msgid "Unknown type"
418
- msgstr "desconocido"
419
-
420
- #: wppa-ajax.php:445
421
- msgid "The photo does no longer exist"
422
- msgstr ""
423
 
424
- #: wppa-ajax.php:477
425
- msgid "An error occurred while processing you rating request."
426
- msgstr ""
427
 
428
- #: wppa-ajax.php:478
429
- msgid "Maybe you opened the page too long ago to recognize you."
430
  msgstr ""
431
 
432
- #: wppa-ajax.php:479
433
- msgid "You may refresh the page and try again."
434
- msgstr ""
 
435
 
436
- #: wppa-ajax.php:480
437
- msgid ""
438
- "Althoug an error occurred while processing your rating, your vote has been "
439
- "registered."
440
- msgstr ""
441
 
442
- #: wppa-ajax.php:481
443
- msgid "However, this may not be reflected in the current pageview"
444
- msgstr ""
 
445
 
446
- #: wppa-ajax.php:503
447
  #, fuzzy
448
- msgid "Photo has been removed."
449
- msgstr "Foto %s eliminada."
450
 
451
- #: wppa-ajax.php:512
452
- msgid "Sorry, you can not rate your own photos"
453
- msgstr ""
 
454
 
455
- #: wppa-ajax.php:524
456
  #, fuzzy
457
- msgid "Please enter a comment."
458
- msgstr "Per favor deixeu el vostre comentari"
459
 
460
- #: wppa-ajax.php:549
461
- msgid "Security check failure."
462
- msgstr ""
 
463
 
464
- #: wppa-ajax.php:561 wppa-ajax.php:577
465
  #, fuzzy
466
- msgid "Photo rated"
467
- msgstr "Foto eliminada."
468
 
469
- #: wppa-ajax.php:676
470
- msgid ""
471
- "Please explain your vote in a comment.\n"
472
- "Your vote will be discarded if you don't.\n"
473
- "\n"
474
- "After completing your comment,\n"
475
- "you can refresh the page to see\n"
476
- "your vote became effective."
477
- msgstr ""
478
 
479
- #: wppa-ajax.php:720
480
- msgid "You do not have the rights to delete a photo"
481
  msgstr ""
482
 
483
- #: wppa-ajax.php:730
484
- #, fuzzy, php-format
485
- msgid "Photo %s has been deleted"
486
- msgstr "Foto %s eliminada."
487
-
488
- #: wppa-ajax.php:746
489
- msgid "You do not have the rights to update album information"
490
- msgstr ""
491
-
492
- #: wppa-ajax.php:758
493
- msgid "<b>Ratings cleared</b>"
494
- msgstr ""
495
-
496
- #: wppa-ajax.php:758 wppa-ajax.php:764 wppa-photo-admin-autosave.php:317
497
- msgid "No ratings for this photo."
498
- msgstr ""
499
-
500
- #: wppa-ajax.php:761
501
- msgid "An error occurred while clearing ratings"
502
- msgstr ""
503
-
504
- #: wppa-ajax.php:764 wppa-ajax.php:785 wppa-ajax.php:807
505
- msgid "<b>No photos in this album</b>"
506
- msgstr ""
507
-
508
- #: wppa-ajax.php:779
509
- msgid "<b>Tags set to defaults</b> (reload)"
510
- msgstr ""
511
-
512
- #: wppa-ajax.php:782
513
- msgid "An error occurred while setting tags"
514
- msgstr ""
515
-
516
- #: wppa-ajax.php:801
517
- msgid "<b>Tags added width defaults</b> (reload)"
518
- msgstr ""
519
-
520
- #: wppa-ajax.php:804
521
- msgid "An error occurred while adding tags"
522
- msgstr ""
523
-
524
- #: wppa-ajax.php:816
525
- #, php-format
526
- msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
527
- msgstr ""
528
-
529
- #: wppa-ajax.php:818 wppa-ajax.php:1218 wppa-album-admin-autosave.php:352
530
- #: wppa-album-admin-autosave.php:409 wppa-album-admin-autosave.php:1005
531
- #: wppa-album-admin-autosave.php:1142 wppa-album-admin-autosave.php:1314
532
- #: wppa-album-admin-autosave.php:1409 wppa-boxes-html.php:402
533
- #: wppa-boxes-html.php:516 wppa-photo-admin-autosave.php:1334
534
- #: wppa-photo-admin-autosave.php:1453 wppa-settings-autosave.php:452
535
- #: wppa-settings-autosave.php:614 wppa-settings-autosave.php:636
536
- #: wppa-settings-autosave.php:1336 wppa-settings-autosave.php:1357
537
- #: wppa-settings-autosave.php:2731 wppa-settings-autosave.php:2752
538
- #: wppa-settings-autosave.php:3063 wppa-settings-autosave.php:3087
539
- #: wppa-settings-autosave.php:3556 wppa-settings-autosave.php:3670
540
- #: wppa-settings-autosave.php:4238 wppa-settings-autosave.php:4259
541
- #: wppa-settings-autosave.php:4435 wppa-settings-autosave.php:4459
542
- #: wppa-settings-autosave.php:5486 wppa-settings-autosave.php:5994
543
- #: wppa-settings-autosave.php:6016 wppa-settings-autosave.php:6596
544
- #: wppa-settings-autosave.php:6620 wppa-settings-autosave.php:7661
545
- #: wppa-settings-autosave.php:8292 wppa-settings-autosave.php:8448
546
- #: wppa-thumbnail-widget.php:202 wppa-upload.php:166
547
- msgid "Name"
548
- msgstr ""
549
-
550
- #: wppa-ajax.php:821 wppa-ajax.php:1221 wppa-album-admin-autosave.php:1015
551
- #: wppa-album-admin-autosave.php:1152 wppa-album-admin-autosave.php:1324
552
- #: wppa-album-admin-autosave.php:1419 wppa-photo-admin-autosave.php:1335
553
- #: wppa-photo-admin-autosave.php:1454 wppa-settings-autosave.php:453
554
- #: wppa-settings-autosave.php:615 wppa-settings-autosave.php:637
555
- #: wppa-settings-autosave.php:1337 wppa-settings-autosave.php:1358
556
- #: wppa-settings-autosave.php:2732 wppa-settings-autosave.php:2753
557
- #: wppa-settings-autosave.php:3064 wppa-settings-autosave.php:3088
558
- #: wppa-settings-autosave.php:4239 wppa-settings-autosave.php:4260
559
- #: wppa-settings-autosave.php:4436 wppa-settings-autosave.php:4460
560
- #: wppa-settings-autosave.php:5487 wppa-settings-autosave.php:5995
561
- #: wppa-settings-autosave.php:6017 wppa-settings-autosave.php:6597
562
- #: wppa-settings-autosave.php:6621 wppa-settings-autosave.php:8293
563
- #: wppa-settings-autosave.php:8315 wppa-settings-autosave.php:8355
564
- #: wppa-settings-autosave.php:8377 wppa-settings-autosave.php:8423
565
- #: wppa-settings-autosave.php:8449 wppa-widget-admin.php:195
566
- #, fuzzy
567
- msgid "Description"
568
- msgstr "Escribir / modificar la descripción de éste álbum."
569
-
570
- #: wppa-ajax.php:825
571
- #, fuzzy
572
- msgid "Unbalanced tags in album description!"
573
- msgstr "Escribir / modificar la descripción de éste álbum."
574
-
575
- #: wppa-ajax.php:832
576
- msgid "Album order #"
577
- msgstr ""
578
-
579
- #: wppa-ajax.php:835
580
- #, fuzzy
581
- msgid "Cover photo"
582
- msgstr "Veure les fotos"
583
-
584
- #: wppa-ajax.php:838
585
- #, fuzzy
586
- msgid "Parent album"
587
- msgstr "Não é possível criar álbum."
588
-
589
- #: wppa-ajax.php:843 wppa-settings-autosave.php:3550
590
- #, fuzzy
591
- msgid "Photo order"
592
- msgstr "Foto eliminada."
593
-
594
- #: wppa-ajax.php:846
595
- msgid "Use Alt thumbsize"
596
- msgstr ""
597
-
598
- #: wppa-ajax.php:849
599
- msgid "Cover Type"
600
- msgstr ""
601
-
602
- #: wppa-ajax.php:852 wppa-settings-autosave.php:4461
603
- #: wppa-settings-autosave.php:5488
604
- #, fuzzy
605
- msgid "Link type"
606
- msgstr "Enllaç a"
607
-
608
- #: wppa-ajax.php:855 wppa-album-covers.php:1256
609
- msgid "Link to"
610
- msgstr "Enllaç a"
611
-
612
- #: wppa-ajax.php:858 wppa-ajax.php:1242 wppa-album-admin-autosave.php:1026
613
- #: wppa-album-admin-autosave.php:1163 wppa-album-admin-autosave.php:1335
614
- #: wppa-album-admin-autosave.php:1430 wppa-boxes-html.php:524
615
- #: wppa-photo-admin-autosave.php:1337 wppa-photo-admin-autosave.php:1456
616
- #: wppa-widget-admin.php:196
617
- msgid "Owner"
618
- msgstr ""
619
-
620
- #: wppa-ajax.php:860
621
- #, php-format
622
- msgid "User %s does not exist"
623
- msgstr ""
624
-
625
- #: wppa-ajax.php:865 wppa-ajax.php:871
626
- #, fuzzy
627
- msgid "Upload limit count"
628
- msgstr "Pujar una foto"
629
-
630
- #: wppa-ajax.php:878
631
- #, fuzzy
632
- msgid "Upload limit time"
633
- msgstr "El arxiu pujat no es una imatge"
634
-
635
- #: wppa-ajax.php:882
636
- #, fuzzy
637
- msgid "Default tags"
638
- msgstr "Seleccionar:"
639
-
640
- #: wppa-ajax.php:887
641
- #, fuzzy
642
- msgid "Categories"
643
- msgstr "Categorías:"
644
-
645
- #: wppa-ajax.php:890
646
- msgid "Sub albums sort order"
647
- msgstr ""
648
-
649
- #: wppa-ajax.php:898 wppa-ajax.php:1312
650
- msgid "Schedule date/time"
651
- msgstr ""
652
-
653
- #: wppa-ajax.php:911 wppa-ajax.php:937
654
- #, php-format
655
- msgid "<b>%s</b> of album %s updated"
656
- msgstr ""
657
-
658
- #: wppa-ajax.php:919
659
- msgid "All photos set to scheduled per date"
660
- msgstr ""
661
-
662
- #: wppa-ajax.php:946
663
- #, php-format
664
- msgid "An error occurred while trying to update <b>%s</b> of album %s"
665
- msgstr ""
666
-
667
- #: wppa-ajax.php:947 wppa-ajax.php:1196 wppa-ajax.php:1302
668
- msgid "Press CTRL+F5 and try again."
669
- msgstr ""
670
-
671
- #: wppa-ajax.php:961
672
- msgid "You do not have the rights to update comment status"
673
- msgstr ""
674
-
675
- #: wppa-ajax.php:970
676
- #, php-format
677
- msgid "Status of comment #%s updated"
678
- msgstr ""
679
 
680
- #: wppa-ajax.php:973
681
- #, php-format
682
- msgid "Error updating status comment #%s"
683
- msgstr ""
684
 
685
- #: wppa-ajax.php:984
686
- msgid "You do not have the rights to change photos"
687
- msgstr ""
688
 
689
- #: wppa-ajax.php:993
690
- msgid "Watermark applied"
691
- msgstr ""
692
 
693
- #: wppa-ajax.php:997
694
- msgid "An error occured while trying to apply a watermark"
695
- msgstr ""
696
 
697
- #: wppa-ajax.php:1010
698
- msgid "You do not have the rights to update photo information"
699
- msgstr ""
700
 
701
- #: wppa-ajax.php:1016
702
- #, php-format
703
- msgid "%s updated to %s."
704
- msgstr ""
705
 
706
- #: wppa-ajax.php:1066
707
  #, php-format
708
- msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
709
- msgstr ""
710
-
711
- #: wppa-ajax.php:1070
712
- msgid "Exif date/time updated"
713
- msgstr ""
714
-
715
- #: wppa-ajax.php:1076
716
- msgid "Enter a value > -90 and < 90"
717
- msgstr ""
718
-
719
- #: wppa-ajax.php:1084
720
- msgid "Lattitude updated"
721
- msgstr ""
722
-
723
- #: wppa-ajax.php:1086
724
- #, fuzzy
725
- msgid "Could not update lattitude"
726
- msgstr "Não é possível criar álbum."
727
-
728
- #: wppa-ajax.php:1092
729
- msgid "Enter a value > -180 and < 180"
730
- msgstr ""
731
-
732
- #: wppa-ajax.php:1100
733
- msgid "Longitude updated"
734
- msgstr ""
735
-
736
- #: wppa-ajax.php:1102
737
- #, fuzzy
738
- msgid "Could not update longitude"
739
- msgstr "Não é possível criar álbum."
740
-
741
- #: wppa-ajax.php:1110
742
- #, fuzzy
743
- msgid "Photo files remade"
744
- msgstr "Foto eliminada."
745
-
746
- #: wppa-ajax.php:1113
747
- #, fuzzy
748
- msgid "Could not remake files"
749
- msgstr "Não é possível criar álbum."
750
-
751
- #: wppa-ajax.php:1119
752
- #, fuzzy
753
- msgid "Thumbnail remade"
754
- msgstr "Vista de miniatures."
755
 
756
- #: wppa-ajax.php:1122
757
  #, fuzzy
758
- msgid "Could not remake thumbnail"
759
- msgstr "Não é possível criar álbum."
760
-
761
- #: wppa-ajax.php:1132 wppa-photo-admin-autosave.php:183
762
- #: wppa-settings-autosave.php:3366 wppa-tinymce-scripts.php:288
763
- #: wppa-tinymce-shortcodes.php:514 wppa-widget-admin.php:77
764
- msgid "left"
765
- msgstr ""
766
-
767
- #: wppa-ajax.php:1136 wppa-photo-admin-autosave.php:185
768
- msgid "180&deg;"
769
- msgstr ""
770
-
771
- #: wppa-ajax.php:1140 wppa-photo-admin-autosave.php:187
772
- #: wppa-settings-autosave.php:3366 wppa-tinymce-scripts.php:290
773
- #: wppa-tinymce-shortcodes.php:516 wppa-widget-admin.php:79
774
- msgid "right"
775
- msgstr ""
776
-
777
- #: wppa-ajax.php:1148
778
- #, fuzzy, php-format
779
- msgid "Photo %s rotated %s"
780
- msgstr "Foto %s de %s"
781
-
782
- #: wppa-ajax.php:1151
783
- #, php-format
784
- msgid "An error occurred while trying to rotate photo %s"
785
- msgstr ""
786
-
787
- #: wppa-ajax.php:1161 wppa-ajax.php:1184 wppa-photo-admin-autosave.php:1071
788
- #: wppa-photo-admin-autosave.php:1089
789
- #, fuzzy, php-format
790
- msgid "A photo with filename %s already exists in album %s."
791
- msgstr "L'usuari %s ha pujat %s fotos a l'àlbum %s"
792
 
793
- #: wppa-ajax.php:1171
794
  #, fuzzy, php-format
795
- msgid "Photo %s has been moved to album %s (%s)"
796
- msgstr "Foto %s eliminada."
797
-
798
- #: wppa-ajax.php:1174
799
- #, php-format
800
- msgid "An error occurred while trying to move photo %s"
801
- msgstr ""
802
-
803
- #: wppa-ajax.php:1192
804
- #, php-format
805
- msgid "Photo %s copied to album %s (%s)"
806
- msgstr ""
807
-
808
- #: wppa-ajax.php:1195
809
- #, php-format
810
- msgid "An error occurred while trying to copy photo %s"
811
- msgstr ""
812
-
813
- #: wppa-ajax.php:1225 wppa-ajax.php:1774
814
- #, fuzzy
815
- msgid "Unbalanced tags in photo description!"
816
- msgstr "Escriure / modificar la descripció de la foto"
817
-
818
- #: wppa-ajax.php:1231
819
- #, fuzzy
820
- msgid "Photo order #"
821
- msgstr "Foto eliminada."
822
 
823
- #: wppa-ajax.php:1236
824
- #, php-format
825
- msgid "User %s does not exists"
826
- msgstr ""
827
 
828
- #: wppa-ajax.php:1245
829
  #, fuzzy
830
- msgid "Link url"
831
- msgstr "Enllaç a"
832
 
833
- #: wppa-ajax.php:1248
834
- #, fuzzy
835
- msgid "Link title"
836
- msgstr "Enllaç a"
837
 
838
- #: wppa-ajax.php:1251
839
- #, fuzzy
840
- msgid "Link target"
841
- msgstr "Enllaç a"
842
 
843
- #: wppa-ajax.php:1257 wppa-multitag-widget.php:34 wppa-multitag-widget.php:66
844
- #: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
845
- #, fuzzy
846
- msgid "Photo Tags"
847
- msgstr "Foto"
848
 
849
- #: wppa-ajax.php:1262 wppa-comment-admin.php:309 wppa-comment-admin.php:396
850
- #: wppa-photo-admin-autosave.php:1336 wppa-photo-admin-autosave.php:1455
851
- #: wppa-settings-autosave.php:6020 wppa-settings-autosave.php:6600
852
- #: wppa-settings-autosave.php:8316 wppa-settings-autosave.php:8356
853
- #: wppa-settings-autosave.php:8378 wppa-settings-autosave.php:8424
854
- msgid "Status"
855
- msgstr ""
856
 
857
- #: wppa-ajax.php:1265
858
- msgid "HTML Alt"
859
- msgstr ""
860
 
861
- #: wppa-ajax.php:1269
862
- msgid "Video width"
863
- msgstr ""
864
 
865
- #: wppa-ajax.php:1271 wppa-ajax.php:1278
866
  #, fuzzy
867
- msgid "Please enter an integer value >= 0"
868
- msgstr "Per favor deixeu el vostre comentari"
869
-
870
- #: wppa-ajax.php:1276
871
- msgid "Video height"
872
- msgstr ""
873
-
874
- #: wppa-ajax.php:1294 wppa-ajax.php:1328
875
- #, php-format
876
- msgid "<b>%s</b> of video %s updated"
877
- msgstr ""
878
-
879
- #: wppa-ajax.php:1297 wppa-ajax.php:1331
880
- #, php-format
881
- msgid "<b>%s</b> of photo %s updated"
882
- msgstr ""
883
-
884
- #: wppa-ajax.php:1301
885
- #, php-format
886
- msgid "An error occurred while trying to update <b>%s</b> of photo %s"
887
- msgstr ""
888
-
889
- #: wppa-ajax.php:1357
890
- #, php-format
891
- msgid "<b>Custom field %s</b> of photo %s updated"
892
- msgstr ""
893
 
894
- #: wppa-ajax.php:1364
895
  #, fuzzy
896
- msgid "<b>Error during upload.</b>"
897
- msgstr "Error al pujar la foto"
898
 
899
- #: wppa-ajax.php:1389
900
  #, fuzzy
901
- msgid "Photo files updated."
902
- msgstr "Foto eliminada."
903
 
904
- #: wppa-ajax.php:1394
905
  #, fuzzy
906
- msgid "Could not update files."
907
- msgstr "Não é possível criar álbum."
908
-
909
- #: wppa-ajax.php:1405
910
- #, php-format
911
- msgid "Stereo mode updated in %d milliseconds"
912
- msgstr ""
913
-
914
- #: wppa-ajax.php:1421
915
- msgid "You do not have the rights to update settings"
916
- msgstr ""
917
-
918
- #: wppa-ajax.php:1502
919
- msgid "Capability granted"
920
- msgstr ""
921
-
922
- #: wppa-ajax.php:1507
923
- msgid "Capability withdrawn"
924
- msgstr ""
925
-
926
- #: wppa-ajax.php:1518
927
- msgid "Column width."
928
- msgstr ""
929
-
930
- #: wppa-ajax.php:1521
931
- msgid "Initial width."
932
- msgstr ""
933
-
934
- #: wppa-ajax.php:1524
935
- msgid "Full size."
936
- msgstr ""
937
-
938
- #: wppa-ajax.php:1527
939
- msgid "Max height."
940
  msgstr ""
 
 
941
 
942
- #: wppa-ajax.php:1530
943
- #, fuzzy
944
- msgid "Thumbnail size."
945
- msgstr "Vista de miniatures."
946
-
947
- #: wppa-ajax.php:1533
948
- #, fuzzy
949
- msgid "Thumbnail frame width"
950
- msgstr "Vista de miniatures."
951
-
952
- #: wppa-ajax.php:1536
953
- #, fuzzy
954
- msgid "Thumbnail frame height"
955
- msgstr "Thumbnail photos related settings"
956
-
957
- #: wppa-ajax.php:1539
958
- #, fuzzy
959
- msgid "Thumbnail Spacing"
960
- msgstr "Vista de miniatures."
961
-
962
- #: wppa-ajax.php:1542
963
- #, fuzzy
964
- msgid "Photocount treshold."
965
- msgstr "Foto no trobada."
966
-
967
- #: wppa-ajax.php:1545
968
- #, fuzzy
969
- msgid "Thumb page size."
970
- msgstr "Vista de miniatures."
971
-
972
- #: wppa-ajax.php:1548
973
- #, fuzzy
974
- msgid "Cover photo size."
975
- msgstr "Introduiïu el nom de la foto"
976
-
977
- #: wppa-ajax.php:1551
978
- msgid "Album page size."
979
- msgstr ""
980
-
981
- #: wppa-ajax.php:1554
982
- #, fuzzy
983
- msgid "Number of TopTen photos"
984
- msgstr "Top 10 fotos"
985
-
986
- #: wppa-ajax.php:1557
987
- #, fuzzy
988
- msgid "Widget image thumbnail size"
989
- msgstr "Veure"
990
-
991
- #: wppa-ajax.php:1560 wppa-settings-autosave.php:1013
992
- msgid "Max Cover width"
993
- msgstr ""
994
-
995
- #: wppa-ajax.php:1563
996
- #, fuzzy
997
- msgid "Minimal description height"
998
- msgstr "Escribir / modificar la descripción de éste álbum."
999
-
1000
- #: wppa-ajax.php:1566
1001
- msgid "Minimal cover height"
1002
- msgstr ""
1003
-
1004
- #: wppa-ajax.php:1569
1005
- msgid "Minimal text frame height"
1006
- msgstr ""
1007
-
1008
- #: wppa-ajax.php:1572
1009
- msgid "Border width"
1010
- msgstr ""
1011
-
1012
- #: wppa-ajax.php:1575 wppa-settings-autosave.php:713
1013
- msgid "Border radius"
1014
- msgstr ""
1015
-
1016
- #: wppa-ajax.php:1578 wppa-settings-autosave.php:724
1017
- msgid "Box spacing"
1018
- msgstr ""
1019
-
1020
- #: wppa-ajax.php:1584 wppa-settings-autosave.php:988
1021
- msgid "Popup size"
1022
- msgstr ""
1023
-
1024
- #: wppa-ajax.php:1587
1025
- msgid "Fullsize border width"
1026
- msgstr ""
1027
-
1028
- #: wppa-ajax.php:1590
1029
- msgid "Lightbox Bordersize"
1030
- msgstr ""
1031
-
1032
- #: wppa-ajax.php:1593
1033
- msgid "Number of Comment widget entries"
1034
- msgstr ""
1035
-
1036
- #: wppa-ajax.php:1596
1037
- msgid "Comment Widget image thumbnail size"
1038
- msgstr ""
1039
-
1040
- #: wppa-ajax.php:1599 wppa-ajax.php:1602 wppa-ajax.php:1605
1041
- msgid "Opacity."
1042
- msgstr ""
1043
-
1044
- #: wppa-ajax.php:1614 wppa-settings-autosave.php:1119
1045
- msgid "Avatar size"
1046
- msgstr ""
1047
-
1048
- #: wppa-ajax.php:1617 wppa-ajax.php:1620
1049
- msgid "Watermark opacity"
1050
- msgstr ""
1051
-
1052
- #: wppa-ajax.php:1623 wppa-settings-autosave.php:1288
1053
- msgid "Number of text lines"
1054
- msgstr ""
1055
-
1056
- #: wppa-ajax.php:1626 wppa-settings-autosave.php:4137
1057
- msgid "Overlay opacity"
1058
- msgstr ""
1059
-
1060
- #: wppa-ajax.php:1629 wppa-settings-autosave.php:7120
1061
- #, fuzzy
1062
- msgid "Upload limit"
1063
- msgstr "Pujar una foto"
1064
-
1065
- #: wppa-ajax.php:1632 wppa-settings-autosave.php:3845
1066
- msgid "Notify inappropriate"
1067
- msgstr ""
1068
-
1069
- #: wppa-ajax.php:1635
1070
- msgid "Dislike pending"
1071
- msgstr ""
1072
-
1073
- #: wppa-ajax.php:1638
1074
- #, fuzzy
1075
- msgid "Dislike delete"
1076
- msgstr "Elimina"
1077
-
1078
- #: wppa-ajax.php:1641 wppa-settings-autosave.php:6696
1079
- msgid "Max execution time"
1080
- msgstr ""
1081
-
1082
- #: wppa-ajax.php:1646
1083
- msgid "Cube Points points"
1084
- msgstr ""
1085
-
1086
- #: wppa-ajax.php:1649
1087
- msgid "JPG Image quality"
1088
- msgstr ""
1089
-
1090
- #: wppa-ajax.php:1655 wppa-settings-autosave.php:3759
1091
- #, fuzzy
1092
- msgid "Number of coverphotos"
1093
- msgstr "Veure les fotos de portada"
1094
-
1095
- #: wppa-ajax.php:1658 wppa-settings-autosave.php:3816
1096
- msgid "Dislike value"
1097
- msgstr ""
1098
-
1099
- #: wppa-ajax.php:1661 wppa-settings-autosave.php:844
1100
- #, fuzzy
1101
- msgid "Slideshow pagesize"
1102
- msgstr "Presentació"
1103
-
1104
- #: wppa-ajax.php:1664 wppa-settings-autosave.php:742
1105
- msgid "Max Pagelinks"
1106
- msgstr ""
1107
-
1108
- #: wppa-ajax.php:1671
1109
- msgid "Ratings cleared"
1110
- msgstr ""
1111
-
1112
- #: wppa-ajax.php:1674
1113
- #, fuzzy
1114
- msgid "Could not clear ratings"
1115
- msgstr "Não é possível criar álbum."
1116
-
1117
- #: wppa-ajax.php:1683
1118
- msgid "Viewcounts cleared"
1119
- msgstr ""
1120
-
1121
- #: wppa-ajax.php:1686
1122
- #, fuzzy
1123
- msgid "Could not clear viewcounts"
1124
- msgstr "Não é possível criar álbum."
1125
-
1126
- #: wppa-ajax.php:1696
1127
- #, fuzzy
1128
- msgid "IPTC data cleared"
1129
- msgstr "No hi ha dades IPTC"
1130
-
1131
- #: wppa-ajax.php:1697
1132
- msgid "Refresh this page to clear table X"
1133
- msgstr ""
1134
-
1135
- #: wppa-ajax.php:1701
1136
- #, fuzzy
1137
- msgid "Could not clear IPTC data"
1138
- msgstr "Não é possível criar álbum."
1139
-
1140
- #: wppa-ajax.php:1711
1141
- #, fuzzy
1142
- msgid "EXIF data cleared"
1143
- msgstr "No hi ha dades EXIF"
1144
-
1145
- #: wppa-ajax.php:1712
1146
- msgid "Refresh this page to clear table XI"
1147
- msgstr ""
1148
-
1149
- #: wppa-ajax.php:1716
1150
- #, fuzzy
1151
- msgid "Could not clear EXIF data"
1152
- msgstr "Não é possível criar álbum."
1153
-
1154
- #: wppa-ajax.php:1724
1155
- msgid "Recuperation performed"
1156
- msgstr ""
1157
-
1158
- #: wppa-ajax.php:1739
1159
- msgid ""
1160
- "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1161
- "#77bbff"
1162
- msgstr ""
1163
-
1164
- #: wppa-ajax.php:1765
1165
- msgid "You just changed a setting that requires the recalculation of ratings."
1166
- msgstr ""
1167
-
1168
- #: wppa-ajax.php:1766 wppa-ajax.php:2134
1169
- msgid "Please run the appropriate action in Table VIII."
1170
- msgstr ""
1171
-
1172
- #: wppa-ajax.php:1790 wppa-ajax.php:1806
1173
- #, php-format
1174
- msgid "Unable to create or write to %s"
1175
- msgstr ""
1176
-
1177
- #: wppa-ajax.php:1799
1178
- msgid "Source can not be inside the wppa folder."
1179
- msgstr ""
1180
-
1181
- #: wppa-ajax.php:1816
1182
- msgid "The content must contain w#album"
1183
- msgstr ""
1184
-
1185
- #: wppa-ajax.php:1823
1186
- msgid "The content must contain w#lat and w#lon"
1187
- msgstr ""
1188
-
1189
- #: wppa-ajax.php:1865 wppa-ajax.php:1871
1190
- msgid "Members"
1191
- msgstr ""
1192
-
1193
- #: wppa-ajax.php:1865
1194
- msgid "Parent of the member albums"
1195
- msgstr ""
1196
-
1197
- #: wppa-ajax.php:2009
1198
- #, php-format
1199
- msgid "User %s has been blacklisted."
1200
- msgstr ""
1201
-
1202
- #: wppa-ajax.php:2012
1203
- #, php-format
1204
- msgid "User %s does not exist."
1205
- msgstr ""
1206
-
1207
- #: wppa-ajax.php:2035
1208
- msgid ""
1209
- "The content of the Custom box has been changed to display the Fotomoto "
1210
- "toolbar."
1211
- msgstr ""
1212
-
1213
- #: wppa-ajax.php:2039 wppa-ajax.php:2054
1214
- msgid "The display of the custom box has been enabled"
1215
- msgstr ""
1216
-
1217
- #: wppa-ajax.php:2050
1218
- msgid "The content of the Custom box has been changed to display maps."
1219
- msgstr ""
1220
-
1221
- #: wppa-ajax.php:2080
1222
- msgid "This value can not be empty"
1223
- msgstr ""
1224
-
1225
- #: wppa-ajax.php:2112
1226
- #, php-format
1227
- msgid "Failed to set %s to %s"
1228
- msgstr ""
1229
-
1230
- #: wppa-ajax.php:2117
1231
- #, php-format
1232
- msgid "Setting %s updated to %s"
1233
- msgstr ""
1234
-
1235
- #: wppa-ajax.php:2133
1236
- msgid ""
1237
- "You just changed a setting that requires the regeneration of thumbnails."
1238
- msgstr ""
1239
-
1240
- #: wppa-ajax.php:2188
1241
- msgid "Missing album id"
1242
- msgstr ""
1243
-
1244
- #: wppa-ajax.php:2208
1245
- msgid "You do not have the rights to delete this album"
1246
- msgstr ""
1247
-
1248
- #: wppa-ajax.php:2249 wppa-ajax.php:2256
1249
- #, fuzzy
1250
- msgid "You may also enter:"
1251
- msgstr "Podeu pujar fins a"
1252
-
1253
- #: wppa-ajax.php:2250 wppa-ajax.php:2257
1254
- #, fuzzy
1255
- msgid "You may also leave/set this blank"
1256
- msgstr ""
1257
- "Si deixeu aquest text en blanc, el nom del fitxer original s'utilitzarà com "
1258
- "a nom de la foto."
1259
-
1260
- #: wppa-album-admin-autosave.php:23 wppa-album-admin-autosave.php:706
1261
- #, fuzzy
1262
- msgid "Upload to this album"
1263
- msgstr "Puja com a mínim %d fotos a aquest àlbum!"
1264
-
1265
- #: wppa-album-admin-autosave.php:37
1266
- msgid "Warning:"
1267
- msgstr ""
1268
-
1269
- #: wppa-album-admin-autosave.php:37
1270
- #, php-format
1271
- msgid ""
1272
- "The uploads directory does not exist or is not writable by the server. "
1273
- "Please make sure that %s is writeable by the server."
1274
- msgstr ""
1275
-
1276
- #: wppa-album-admin-autosave.php:75 wppa-album-admin-autosave.php:746
1277
- #, fuzzy
1278
- msgid "Manage Photos"
1279
- msgstr "Administrar fotos"
1280
-
1281
- #: wppa-album-admin-autosave.php:76 wppa-album-admin-autosave.php:747
1282
- msgid "Copy / move / delete / edit name / edit description / change status"
1283
- msgstr ""
1284
-
1285
- #: wppa-album-admin-autosave.php:77 wppa-album-admin-autosave.php:749
1286
- msgid "Edit photo information except copy and move"
1287
- msgstr ""
1288
-
1289
- #: wppa-album-admin-autosave.php:78 wppa-album-admin-autosave.php:750
1290
- #, fuzzy
1291
- msgid "Edit photo information"
1292
- msgstr "Editar la foto"
1293
-
1294
- #: wppa-album-admin-autosave.php:81 wppa-album-admin-autosave.php:88
1295
- msgid "Back to album table"
1296
- msgstr ""
1297
-
1298
- #: wppa-album-admin-autosave.php:87 wppa-album-admin-autosave.php:757
1299
- msgid "Top of page"
1300
- msgstr ""
1301
-
1302
- #: wppa-album-admin-autosave.php:114 wppa-functions.php:3871
1303
- #: wppa-settings-autosave.php:7006 wppa-wpdb-insert.php:329
1304
- #, fuzzy
1305
- msgid "New Album"
1306
- msgstr "Crear Nuevo Álbum"
1307
-
1308
- #: wppa-album-admin-autosave.php:119 wppa-upload.php:1555 wppa-upload.php:1591
1309
- #: wppa-upload.php:2351
1310
- #, fuzzy
1311
- msgid "Could not create album."
1312
- msgstr "Não é possível criar álbum."
1313
-
1314
- #: wppa-album-admin-autosave.php:127 wppa-upload.php:1561 wppa-upload.php:2359
1315
- #, fuzzy
1316
- msgid "Album #"
1317
- msgstr "àlbums"
1318
-
1319
- #: wppa-album-admin-autosave.php:127 wppa-upload.php:1561 wppa-upload.php:2359
1320
- msgid "Added."
1321
- msgstr ""
1322
-
1323
- #: wppa-album-admin-autosave.php:172
1324
- #, fuzzy
1325
- msgid "Edit Album Information"
1326
- msgstr "Edita!"
1327
-
1328
- #: wppa-album-admin-autosave.php:172 wppa-settings-autosave.php:292
1329
- #, fuzzy
1330
- msgid "Auto Save"
1331
- msgstr "(Auto guardado activado)"
1332
-
1333
- #: wppa-album-admin-autosave.php:174
1334
- #, fuzzy
1335
- msgid ""
1336
- "All modifications are instantly updated on the server, except for those that "
1337
- "require a button push."
1338
- msgstr ""
1339
- "<b>Advertencia:</b> Tu servidor permite subir <b>%s</b> fotos a la vez con "
1340
- "un tamaño maximo de <b>%s</b> bytes y solo permite <b>%s</b> segundos para "
1341
- "que se realize al subida de fotos"
1342
-
1343
- #: wppa-album-admin-autosave.php:175
1344
- #, fuzzy
1345
- msgid ""
1346
- "The <b style=\"color:#070\" >Remark</b> fields keep you informed on the "
1347
- "actions taken at the background."
1348
- msgstr ""
1349
- "<b>Advertencia:</b> Tu servidor permite subir <b>%s</b> fotos a la vez con "
1350
- "un tamaño maximo de <b>%s</b> bytes y solo permite <b>%s</b> segundos para "
1351
- "que se realize al subida de fotos"
1352
-
1353
- #: wppa-album-admin-autosave.php:179
1354
- #, fuzzy
1355
- msgid "Album number:"
1356
- msgstr "Álbum:"
1357
-
1358
- #: wppa-album-admin-autosave.php:188
1359
- msgid "Name:"
1360
- msgstr ""
1361
-
1362
- #: wppa-album-admin-autosave.php:195
1363
- #, fuzzy
1364
- msgid "Update Album name"
1365
- msgstr "Actualizacion en proceso"
1366
-
1367
- #: wppa-album-admin-autosave.php:203
1368
- msgid "Type the name of the album. Do not leave this empty."
1369
- msgstr ""
1370
-
1371
- #: wppa-album-admin-autosave.php:211 wppa-photo-admin-autosave.php:724
1372
- #: wppa-photo-admin-autosave.php:749
1373
- #, fuzzy
1374
- msgid "Description:"
1375
- msgstr "Escribir / modificar la descripción de éste álbum."
1376
-
1377
- #: wppa-album-admin-autosave.php:222
1378
- #, fuzzy
1379
- msgid "Update Album description"
1380
- msgstr "Escribir / modificar la descripción de éste álbum."
1381
-
1382
- #: wppa-album-admin-autosave.php:232
1383
- #, fuzzy
1384
- msgid "Enter / modify the description for this album."
1385
- msgstr "Escriure / modificar la descripció de la foto"
1386
-
1387
- #: wppa-album-admin-autosave.php:240
1388
- #, fuzzy
1389
- msgid "Created:"
1390
- msgstr "Não é possível criar álbum."
1391
-
1392
- #: wppa-album-admin-autosave.php:243 wppa-album-admin-autosave.php:254
1393
- #: wppa-photo-admin-autosave.php:256 wppa-photo-admin-autosave.php:279
1394
- msgid "local time"
1395
- msgstr ""
1396
-
1397
- #: wppa-album-admin-autosave.php:249 wppa-photo-admin-autosave.php:274
1398
- msgid "Modified:"
1399
- msgstr ""
1400
-
1401
- #: wppa-album-admin-autosave.php:257 wppa-photo-admin-autosave.php:282
1402
- #: wppa-photo-admin-autosave.php:1443
1403
- #, fuzzy
1404
- msgid "Not modified"
1405
- msgstr "No definit"
1406
-
1407
- #: wppa-album-admin-autosave.php:266 wppa-thumbnails.php:645
1408
- #: wppa-thumbnails.php:1420
1409
- msgid "Views:"
1410
- msgstr "Vistas:"
1411
-
1412
- #: wppa-album-admin-autosave.php:279 wppa-photo-admin-autosave.php:260
1413
- msgid "Owned by:"
1414
- msgstr ""
1415
-
1416
- #: wppa-album-admin-autosave.php:297
1417
- msgid ""
1418
- "WARNING If you change the owner, you will no longer be able to modify this "
1419
- "album and upload or import photos to it!"
1420
- msgstr ""
1421
-
1422
- #: wppa-album-admin-autosave.php:299
1423
- msgid "Enter user login name or <b>--- public ---</b>"
1424
- msgstr ""
1425
-
1426
- #: wppa-album-admin-autosave.php:308
1427
- msgid "Album sort order #:"
1428
- msgstr ""
1429
-
1430
- #: wppa-album-admin-autosave.php:316
1431
- msgid ""
1432
- "Album order # has only effect if you set the album sort order method to "
1433
- "<b>Order #</b> in the Photo Albums -> Settings screen.<br />"
1434
- msgstr ""
1435
-
1436
- #: wppa-album-admin-autosave.php:319
1437
- msgid ""
1438
- "If you want to sort the albums by order #, enter / modify the order number "
1439
- "here."
1440
- msgstr ""
1441
-
1442
- #: wppa-album-admin-autosave.php:326 wppa-tinymce-shortcodes.php:294
1443
- #: wppa-tinymce-shortcodes.php:320 wppa-tinymce-shortcodes.php:459
1444
- #, fuzzy
1445
- msgid "Parent album:"
1446
- msgstr "Não é possível criar álbum."
1447
-
1448
- #: wppa-album-admin-autosave.php:337
1449
- msgid ""
1450
- "If this is a sub album, select the album in which this album will appear."
1451
- msgstr ""
1452
-
1453
- #: wppa-album-admin-autosave.php:346
1454
- #, fuzzy
1455
- msgid "Photo order:"
1456
- msgstr "Foto eliminada."
1457
-
1458
- #: wppa-album-admin-autosave.php:350 wppa-album-admin-autosave.php:451
1459
- #: wppa-settings-autosave.php:3593 wppa-settings-autosave.php:3617
1460
- #, fuzzy
1461
- msgid "--- default ---"
1462
- msgstr "--- esborrat ---"
1463
-
1464
- #: wppa-album-admin-autosave.php:351 wppa-album-admin-autosave.php:407
1465
- #: wppa-settings-autosave.php:3555 wppa-settings-autosave.php:3669
1466
- #: wppa-thumbnail-widget.php:201
1467
- msgid "Order #"
1468
- msgstr ""
1469
-
1470
- #: wppa-album-admin-autosave.php:353 wppa-album-admin-autosave.php:406
1471
- #: wppa-settings-autosave.php:3557 wppa-settings-autosave.php:3671
1472
- #: wppa-thumbnail-widget.php:203 wppa-widget-admin.php:142
1473
- msgid "Random"
1474
- msgstr ""
1475
-
1476
- #: wppa-album-admin-autosave.php:354 wppa-settings-autosave.php:3558
1477
- msgid "Rating mean value"
1478
- msgstr ""
1479
-
1480
- #: wppa-album-admin-autosave.php:355 wppa-bestof-widget.php:170
1481
- #: wppa-settings-autosave.php:3559 wppa-topten-widget.php:237
1482
- msgid "Number of votes"
1483
- msgstr ""
1484
-
1485
- #: wppa-album-admin-autosave.php:356 wppa-album-admin-autosave.php:411
1486
- #: wppa-settings-autosave.php:3560 wppa-settings-autosave.php:3672
1487
- msgid "Timestamp"
1488
- msgstr ""
1489
-
1490
- #: wppa-album-admin-autosave.php:357 wppa-photo-admin-autosave.php:291
1491
- #: wppa-settings-autosave.php:3561
1492
- #, fuzzy
1493
- msgid "EXIF Date"
1494
- msgstr "No hi ha dades EXIF"
1495
-
1496
- #: wppa-album-admin-autosave.php:358 wppa-settings-autosave.php:3562
1497
- #: wppa-settings-autosave.php:3673
1498
- msgid "Order # desc"
1499
- msgstr ""
1500
-
1501
- #: wppa-album-admin-autosave.php:359 wppa-settings-autosave.php:3563
1502
- #: wppa-settings-autosave.php:3674
1503
- msgid "Name desc"
1504
- msgstr ""
1505
-
1506
- #: wppa-album-admin-autosave.php:360 wppa-settings-autosave.php:3564
1507
- #: wppa-thumbnail-widget.php:204
1508
- msgid "Rating mean value desc"
1509
- msgstr ""
1510
-
1511
- #: wppa-album-admin-autosave.php:361 wppa-settings-autosave.php:3565
1512
- #: wppa-thumbnail-widget.php:205
1513
- msgid "Number of votes desc"
1514
- msgstr ""
1515
-
1516
- #: wppa-album-admin-autosave.php:362 wppa-settings-autosave.php:3566
1517
- #: wppa-settings-autosave.php:3675 wppa-thumbnail-widget.php:206
1518
- msgid "Timestamp desc"
1519
- msgstr ""
1520
-
1521
- #: wppa-album-admin-autosave.php:363 wppa-settings-autosave.php:3567
1522
- msgid "EXIF Date desc"
1523
- msgstr ""
1524
-
1525
- #: wppa-album-admin-autosave.php:392
1526
- msgid "Specify the way the photos should be ordered in this album."
1527
- msgstr ""
1528
-
1529
- #: wppa-album-admin-autosave.php:393
1530
- msgid ""
1531
- "The default setting can be changed in the <b>Photo Albums -> Settings</b> "
1532
- "page <b>Table IV-C1</b>."
1533
- msgstr ""
1534
-
1535
- #: wppa-album-admin-autosave.php:401
1536
- msgid "Sub album sort order:"
1537
- msgstr ""
1538
-
1539
- #: wppa-album-admin-autosave.php:405
1540
- msgid "See Table IV-D1"
1541
- msgstr ""
1542
-
1543
- #: wppa-album-admin-autosave.php:408
1544
- msgid "Order # reverse"
1545
- msgstr ""
1546
-
1547
- #: wppa-album-admin-autosave.php:410
1548
- msgid "Name reverse"
1549
- msgstr ""
1550
-
1551
- #: wppa-album-admin-autosave.php:412
1552
- msgid "Timestamp reverse"
1553
- msgstr ""
1554
-
1555
- #: wppa-album-admin-autosave.php:417
1556
- msgid ""
1557
- "Specify the sequence order method to be used for the sub albums of this "
1558
- "album."
1559
- msgstr ""
1560
-
1561
- #: wppa-album-admin-autosave.php:426
1562
- msgid "Use alt thumbsize:"
1563
- msgstr ""
1564
-
1565
- #: wppa-album-admin-autosave.php:430 wppa-bestof-widget.php:182
1566
- #: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
1567
- #: wppa-topten-widget.php:245 wppa-topten-widget.php:253
1568
- #: wppa-topten-widget.php:258 wppa-topten-widget.php:263
1569
- #: wppa-topten-widget.php:268 wppa-topten-widget.php:273
1570
- #, fuzzy
1571
- msgid "no"
1572
- msgstr "--- cap ---"
1573
-
1574
- #: wppa-album-admin-autosave.php:431 wppa-bestof-widget.php:181
1575
- #: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
1576
- #: wppa-super-view-widget.php:85 wppa-topten-widget.php:244
1577
- #: wppa-topten-widget.php:252 wppa-topten-widget.php:257
1578
- #: wppa-topten-widget.php:262 wppa-topten-widget.php:267
1579
- #: wppa-topten-widget.php:272
1580
- #, fuzzy
1581
- msgid "yes"
1582
- msgstr "anys"
1583
-
1584
- #: wppa-album-admin-autosave.php:436
1585
- msgid ""
1586
- "If set to <b>yes</b> The settings in <b>Table I-C1a,3a</b> and <b>4a</b> "
1587
- "apply rather than <b>I-C1,3</b> and <b>4</b>."
1588
- msgstr ""
1589
-
1590
- #: wppa-album-admin-autosave.php:446
1591
- msgid "Cover Type:"
1592
- msgstr ""
1593
-
1594
- #: wppa-album-admin-autosave.php:452 wppa-settings-autosave.php:1887
1595
- #: wppa-settings-autosave.php:3739
1596
- msgid "Standard"
1597
- msgstr ""
1598
-
1599
- #: wppa-album-admin-autosave.php:453 wppa-settings-autosave.php:3740
1600
- #, fuzzy
1601
- msgid "Long Descriptions"
1602
- msgstr "Escribir / modificar la descripción de éste álbum."
1603
-
1604
- #: wppa-album-admin-autosave.php:454 wppa-settings-autosave.php:3741
1605
- msgid "Image Factory"
1606
- msgstr ""
1607
-
1608
- #: wppa-album-admin-autosave.php:455 wppa-settings-autosave.php:3742
1609
- msgid "Standard mcr"
1610
- msgstr ""
1611
-
1612
- #: wppa-album-admin-autosave.php:456 wppa-settings-autosave.php:3743
1613
- msgid "Long Descriptions mcr"
1614
- msgstr ""
1615
-
1616
- #: wppa-album-admin-autosave.php:457 wppa-settings-autosave.php:3744
1617
- msgid "Image Factory mcr"
1618
- msgstr ""
1619
-
1620
- #: wppa-album-admin-autosave.php:463
1621
- msgid ""
1622
- "The default cover type is the systems standard set in the <b>Photo Albums -> "
1623
- "Settings</b> page <b>Table IV-D6</b>."
1624
- msgstr ""
1625
-
1626
- #: wppa-album-admin-autosave.php:473
1627
- #, fuzzy
1628
- msgid "Cover Photo:"
1629
- msgstr "Moderat"
1630
-
1631
- #: wppa-album-admin-autosave.php:481
1632
- msgid "Select the photo you want to appear on the cover of this album."
1633
- msgstr ""
1634
-
1635
- #: wppa-album-admin-autosave.php:482
1636
- msgid ""
1637
- "Select the way the cover photos of this album are selected, or select a "
1638
- "single image."
1639
- msgstr ""
1640
-
1641
- #: wppa-album-admin-autosave.php:491
1642
- #, fuzzy
1643
- msgid "Upload limit:"
1644
- msgstr "Pujar una foto"
1645
-
1646
- #: wppa-album-admin-autosave.php:499 wppa-settings-autosave.php:5613
1647
- #: wppa-settings-autosave.php:7127
1648
- msgid "for ever"
1649
- msgstr ""
1650
-
1651
- #: wppa-album-admin-autosave.php:500 wppa-album-admin-autosave.php:517
1652
- #: wppa-settings-autosave.php:5614 wppa-settings-autosave.php:7128
1653
- #, fuzzy
1654
- msgid "per hour"
1655
- msgstr "1 hora"
1656
-
1657
- #: wppa-album-admin-autosave.php:501 wppa-album-admin-autosave.php:518
1658
- #: wppa-settings-autosave.php:5615 wppa-settings-autosave.php:7129
1659
- #, fuzzy
1660
- msgid "per day"
1661
- msgstr "1 dia"
1662
-
1663
- #: wppa-album-admin-autosave.php:502 wppa-album-admin-autosave.php:519
1664
- #: wppa-settings-autosave.php:5616 wppa-settings-autosave.php:7130
1665
- #, fuzzy
1666
- msgid "per week"
1667
- msgstr "1 setmana"
1668
-
1669
- #: wppa-album-admin-autosave.php:503 wppa-album-admin-autosave.php:520
1670
- #: wppa-settings-autosave.php:5617 wppa-settings-autosave.php:7131
1671
- #, fuzzy
1672
- msgid "per month"
1673
- msgstr "1 mes"
1674
-
1675
- #: wppa-album-admin-autosave.php:504 wppa-album-admin-autosave.php:521
1676
- #: wppa-settings-autosave.php:5618 wppa-settings-autosave.php:7132
1677
- #, fuzzy
1678
- msgid "per year"
1679
- msgstr "1 any"
1680
-
1681
- #: wppa-album-admin-autosave.php:508
1682
- msgid "Set the upload limit (0 means unlimited) and the upload limit period."
1683
- msgstr ""
1684
-
1685
- #: wppa-album-admin-autosave.php:513
1686
- msgid "Unlimited"
1687
- msgstr ""
1688
-
1689
- #: wppa-album-admin-autosave.php:532
1690
- #, fuzzy
1691
- msgid "Catogories:"
1692
- msgstr "Categorías:"
1693
-
1694
- #: wppa-album-admin-autosave.php:542
1695
- msgid "Separate categories with commas."
1696
- msgstr ""
1697
-
1698
- #: wppa-album-admin-autosave.php:543 wppa-photo-admin-autosave.php:803
1699
- msgid "Examples:"
1700
- msgstr ""
1701
-
1702
- #: wppa-album-admin-autosave.php:549 wppa-photo-admin-autosave.php:807
1703
- #, fuzzy
1704
- msgid "- select -"
1705
- msgstr "- seleccionar álbum(es) -"
1706
-
1707
- #: wppa-album-admin-autosave.php:555
1708
- #, fuzzy
1709
- msgid "No categories yet"
1710
- msgstr "Categorías:"
1711
-
1712
- #: wppa-album-admin-autosave.php:559 wppa-photo-admin-autosave.php:817
1713
- #, fuzzy
1714
- msgid "Select to add"
1715
- msgstr "Seleccionar:"
1716
-
1717
- #: wppa-album-admin-autosave.php:567
1718
- #, fuzzy
1719
- msgid "Default photo tags:"
1720
- msgstr "Album per defecte per a"
1721
-
1722
- #: wppa-album-admin-autosave.php:573
1723
- msgid ""
1724
- "Enter the tags that you want to be assigned to new photos in this album."
1725
- msgstr ""
1726
-
1727
- #: wppa-album-admin-autosave.php:578
1728
- #, fuzzy
1729
- msgid ""
1730
- "Are you sure you want to set the default tags to all photos in this album?"
1731
- msgstr "Esteu segur que voleu eliminar aquesta foto?"
1732
-
1733
- #: wppa-album-admin-autosave.php:579
1734
- #, fuzzy
1735
- msgid ""
1736
- "Are you sure you want to add the default tags to all photos in this album?"
1737
- msgstr "Esteu segur que voleu eliminar aquesta foto?"
1738
-
1739
- #: wppa-album-admin-autosave.php:582
1740
- msgid "Apply default tags"
1741
- msgstr ""
1742
-
1743
- #: wppa-album-admin-autosave.php:587
1744
- msgid "Tag all photos in this album with the default tags."
1745
- msgstr ""
1746
-
1747
- #: wppa-album-admin-autosave.php:592
1748
- msgid "Add default tags"
1749
- msgstr ""
1750
-
1751
- #: wppa-album-admin-autosave.php:597
1752
- #, fuzzy
1753
- msgid "Add the default tags to all photos in this album."
1754
- msgstr "Puja com a mínim %d fotos a aquest àlbum!"
1755
-
1756
- #: wppa-album-admin-autosave.php:604
1757
- #, fuzzy
1758
- msgid "Link type:"
1759
- msgstr "Enllaç a"
1760
-
1761
- #: wppa-album-admin-autosave.php:611 wppa-settings-autosave.php:7288
1762
- msgid "the sub-albums and thumbnails"
1763
- msgstr ""
1764
-
1765
- #: wppa-album-admin-autosave.php:612 wppa-settings-autosave.php:7289
1766
- #, fuzzy
1767
- msgid "the sub-albums"
1768
- msgstr "Veure l'àlbum"
1769
-
1770
- #: wppa-album-admin-autosave.php:613 wppa-settings-autosave.php:7290
1771
- #, fuzzy
1772
- msgid "the thumbnails"
1773
- msgstr "Veure"
1774
-
1775
- #: wppa-album-admin-autosave.php:614 wppa-settings-autosave.php:7291
1776
- msgid "the album photos as slideshow"
1777
- msgstr ""
1778
-
1779
- #: wppa-album-admin-autosave.php:615
1780
- msgid "the link page with a clean url"
1781
- msgstr ""
1782
-
1783
- #: wppa-album-admin-autosave.php:616 wppa-settings-autosave.php:7292
1784
- msgid "no link at all"
1785
- msgstr ""
1786
-
1787
- #: wppa-album-admin-autosave.php:621
1788
- msgid ""
1789
- "If you select \"the link page with a clean url\", select an Auto Page of one "
1790
- "of the photos in this album."
1791
- msgstr ""
1792
-
1793
- #: wppa-album-admin-autosave.php:622
1794
- msgid ""
1795
- "If you select \"the link page with a clean url\", make sure you enter the "
1796
- "correct shortcode on the target page."
1797
- msgstr ""
1798
-
1799
- #: wppa-album-admin-autosave.php:631 wppa-bestof-widget.php:196
1800
- #: wppa-slideshow-widget.php:221 wppa-widget-admin.php:164
1801
- #: wppa-widget-admin.php:174
1802
- #, fuzzy
1803
- msgid "Link to:"
1804
- msgstr "Enllaç a"
1805
-
1806
- #: wppa-album-admin-autosave.php:637 wppa-settings-autosave.php:8882
1807
- #: wppa-settings-autosave.php:8931
1808
- msgid "There are no pages (yet) to link to."
1809
- msgstr ""
1810
-
1811
- #: wppa-album-admin-autosave.php:642
1812
- #, fuzzy
1813
- msgid "--- the same page or post ---"
1814
- msgstr "--- separar ---"
1815
-
1816
- #: wppa-album-admin-autosave.php:650
1817
- msgid ""
1818
- "If you want, you can link the title to a WP page in stead of the album's "
1819
- "content. If so, select the page the title links to."
1820
- msgstr ""
1821
-
1822
- #: wppa-album-admin-autosave.php:660
1823
- msgid "Schedule:"
1824
- msgstr ""
1825
-
1826
- #: wppa-album-admin-autosave.php:671
1827
- msgid ""
1828
- "If enabled, new photos will have their status set to the dat/time specified "
1829
- "here."
1830
- msgstr ""
1831
-
1832
- #: wppa-album-admin-autosave.php:677
1833
- #, fuzzy
1834
- msgid "Are you sure you want to schedule all photos in this album?"
1835
- msgstr "Esteu segur que voleu eliminar aquesta foto?"
1836
-
1837
- #: wppa-album-admin-autosave.php:677
1838
- msgid "Schedule all"
1839
- msgstr ""
1840
-
1841
- #: wppa-album-admin-autosave.php:685
1842
- #, fuzzy
1843
- msgid "Are you sure you want to clear the ratings in this album?"
1844
- msgstr "Esteu segur que voleu publicar aquest comentari?"
1845
-
1846
- #: wppa-album-admin-autosave.php:685
1847
- #, fuzzy
1848
- msgid "Reset ratings"
1849
- msgstr "Configuració"
1850
-
1851
- #: wppa-album-admin-autosave.php:702
1852
- msgid "Change the upload limit or remove photos to enable new uploads."
1853
- msgstr ""
1854
-
1855
- #: wppa-album-admin-autosave.php:706
1856
- #, php-format
1857
- msgid "(max %d)"
1858
- msgstr ""
1859
-
1860
- #: wppa-album-admin-autosave.php:707
1861
- #, fuzzy
1862
- msgid "Album is full"
1863
- msgstr "àlbums"
1864
-
1865
- #: wppa-album-admin-autosave.php:718
1866
- msgid "Apply new photo desc"
1867
- msgstr ""
1868
-
1869
- #: wppa-album-admin-autosave.php:729
1870
- msgid "Remake all"
1871
- msgstr ""
1872
-
1873
- #: wppa-album-admin-autosave.php:737 wppa-photo-admin-autosave.php:917
1874
- msgid "Remark:"
1875
- msgstr ""
1876
-
1877
- #: wppa-album-admin-autosave.php:740
1878
- #, php-format
1879
- msgid "Album %s is not modified yet"
1880
- msgstr ""
1881
-
1882
- #: wppa-album-admin-autosave.php:748
1883
- msgid "Change sequence order by drag and drop"
1884
- msgstr ""
1885
-
1886
- #: wppa-album-admin-autosave.php:767
1887
- #, fuzzy
1888
- msgid "Moderate comment"
1889
- msgstr "Comentari moderat per admin"
1890
-
1891
- #: wppa-album-admin-autosave.php:783
1892
- #, fuzzy
1893
- msgid "Moderate photo"
1894
- msgstr "Moderat"
1895
-
1896
- #: wppa-album-admin-autosave.php:784 wppa-functions.php:2108
1897
- #: wppa-photo-admin-autosave.php:24
1898
- msgid "Edit photo"
1899
- msgstr "Editar la foto"
1900
-
1901
- #: wppa-album-admin-autosave.php:808
1902
- #, fuzzy
1903
- msgid "Delete Album"
1904
- msgstr "Eliminar Álbum"
1905
-
1906
- #: wppa-album-admin-autosave.php:810 wppa-boxes-html.php:807
1907
- #: wppa-breadcrumb.php:276 wppa-breadcrumb.php:294 wppa-breadcrumb.php:322
1908
- #: wppa-breadcrumb.php:340 wppa-breadcrumb.php:404 wppa-breadcrumb.php:429
1909
- #: wppa-breadcrumb.php:577 wppa-comment-admin.php:65 wppa-featen-widget.php:137
1910
- #: wppa-lasten-widget.php:177 wppa-slideshow-widget.php:199
1911
- #: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:218
1912
- #: wppa-upload-widget.php:77 wppa-upload.php:116 wppa-upload.php:204
1913
- #: wppa-upload.php:251
1914
- msgid "Album:"
1915
- msgstr "Álbum:"
1916
-
1917
- #: wppa-album-admin-autosave.php:811
1918
- #, fuzzy
1919
- msgid "Are you sure you want to delete this album?"
1920
- msgstr "Esteu segur que voleu eliminar aquest comentari?"
1921
-
1922
- #: wppa-album-admin-autosave.php:812
1923
- msgid "Press Delete to continue, and Cancel to go back."
1924
- msgstr ""
1925
-
1926
- #: wppa-album-admin-autosave.php:817
1927
- msgid "What would you like to do with photos currently in the album?"
1928
- msgstr ""
1929
-
1930
- #: wppa-album-admin-autosave.php:818 wppa-album-admin-autosave.php:827
1931
- #: wppa-album-admin-autosave.php:1062 wppa-album-admin-autosave.php:1102
1932
- #: wppa-album-admin-autosave.php:1199 wppa-album-admin-autosave.php:1371
1933
- #: wppa-album-admin-autosave.php:1466 wppa-album-admin-autosave.php:1652
1934
- #: wppa-comment-admin.php:311 wppa-comment-admin.php:380
1935
- #: wppa-comment-admin.php:398 wppa-functions.php:1921 wppa-links.php:740
1936
- #: wppa-links.php:758 wppa-photo-admin-autosave.php:1283
1937
- #: wppa-photo-admin-autosave.php:1351 wppa-thumbnails.php:590
1938
- msgid "Delete"
1939
- msgstr "Elimina"
1940
-
1941
- #: wppa-album-admin-autosave.php:819
1942
- msgid "Move to:"
1943
- msgstr ""
1944
-
1945
- #: wppa-album-admin-autosave.php:826 wppa-settings-autosave.php:2665
1946
- msgid "Cancel"
1947
- msgstr ""
1948
-
1949
- #: wppa-album-admin-autosave.php:857
1950
- msgid "Unable to move photos. Album not deleted."
1951
- msgstr ""
1952
-
1953
- #: wppa-album-admin-autosave.php:879
1954
- #, fuzzy
1955
- msgid "Manage Albums"
1956
- msgstr "Não é possível criar álbum."
1957
-
1958
- #: wppa-album-admin-autosave.php:885
1959
- #, fuzzy
1960
- msgid "Are you sure you want to create a new album?"
1961
- msgstr "Esteu segur que voleu eliminar aquest comentari?"
1962
-
1963
- #: wppa-album-admin-autosave.php:890
1964
- #, fuzzy
1965
- msgid "Create New Empty Album"
1966
- msgstr "Não é possível criar álbum."
1967
-
1968
- #: wppa-album-admin-autosave.php:896
1969
- msgid "Switch to Collapsable table"
1970
- msgstr ""
1971
-
1972
- #: wppa-album-admin-autosave.php:899
1973
- msgid "Switch to Flat table"
1974
- msgstr ""
1975
-
1976
- #: wppa-album-admin-autosave.php:995 wppa-album-admin-autosave.php:1132
1977
- #: wppa-album-admin-autosave.php:1303 wppa-album-admin-autosave.php:1398
1978
- #: wppa-photo-admin-autosave.php:1332 wppa-photo-admin-autosave.php:1451
1979
- msgid "ID"
1980
- msgstr ""
1981
-
1982
- #: wppa-album-admin-autosave.php:1037 wppa-album-admin-autosave.php:1174
1983
- #: wppa-album-admin-autosave.php:1346 wppa-album-admin-autosave.php:1441
1984
- msgid "Order"
1985
- msgstr ""
1986
-
1987
- #: wppa-album-admin-autosave.php:1047 wppa-album-admin-autosave.php:1184
1988
- #: wppa-album-admin-autosave.php:1356 wppa-album-admin-autosave.php:1451
1989
- msgid "Parent"
1990
- msgstr ""
1991
-
1992
- #: wppa-album-admin-autosave.php:1055 wppa-album-admin-autosave.php:1192
1993
- #: wppa-album-admin-autosave.php:1364 wppa-album-admin-autosave.php:1459
1994
- msgid "Albums/Photos/Moderation required/Scheduled"
1995
- msgstr ""
1996
-
1997
- #: wppa-album-admin-autosave.php:1056 wppa-album-admin-autosave.php:1193
1998
- #: wppa-album-admin-autosave.php:1365 wppa-album-admin-autosave.php:1460
1999
- msgid "A/P/PM/S"
2000
- msgstr ""
2001
-
2002
- #: wppa-album-admin-autosave.php:1059 wppa-album-admin-autosave.php:1097
2003
- #: wppa-album-admin-autosave.php:1196 wppa-album-admin-autosave.php:1368
2004
- #: wppa-album-admin-autosave.php:1463 wppa-album-admin-autosave.php:1541
2005
- #: wppa-album-admin-autosave.php:1647
2006
- msgid "Quick"
2007
- msgstr ""
2008
-
2009
- #: wppa-album-admin-autosave.php:1060 wppa-album-admin-autosave.php:1098
2010
- #: wppa-album-admin-autosave.php:1197 wppa-album-admin-autosave.php:1369
2011
- #: wppa-album-admin-autosave.php:1464 wppa-album-admin-autosave.php:1546
2012
- #: wppa-album-admin-autosave.php:1648
2013
- msgid "Bulk"
2014
- msgstr ""
2015
-
2016
- #: wppa-album-admin-autosave.php:1061 wppa-album-admin-autosave.php:1099
2017
- #: wppa-album-admin-autosave.php:1198 wppa-album-admin-autosave.php:1370
2018
- #: wppa-album-admin-autosave.php:1465 wppa-album-admin-autosave.php:1649
2019
- msgid "Seq"
2020
- msgstr ""
2021
-
2022
- #: wppa-album-admin-autosave.php:1063 wppa-album-admin-autosave.php:1107
2023
- #: wppa-album-admin-autosave.php:1110 wppa-album-admin-autosave.php:1200
2024
- #: wppa-album-admin-autosave.php:1372 wppa-album-admin-autosave.php:1467
2025
- #: wppa-album-admin-autosave.php:1657 wppa-album-admin-autosave.php:1660
2026
- #, fuzzy
2027
- msgid "Create"
2028
- msgstr "Não é possível criar álbum."
2029
-
2030
- #: wppa-album-admin-autosave.php:1106 wppa-album-admin-autosave.php:1656
2031
- #, fuzzy
2032
- msgid "Are you sure you want to create a subalbum?"
2033
- msgstr "Esteu segur que voleu eliminar aquest comentari?"
2034
-
2035
- #: wppa-album-admin-autosave.php:1213 wppa-album-admin-autosave.php:1494
2036
- #, fuzzy
2037
- msgid "No albums yet."
2038
- msgstr "No hi ha àlbums definits."
2039
-
2040
- #: wppa-album-admin-autosave.php:1297 wppa-album-admin-autosave.php:1620
2041
- #, fuzzy
2042
- msgid "Collapse subalbums"
2043
- msgstr ", un subàlbum de"
2044
-
2045
- #: wppa-album-admin-autosave.php:1298 wppa-album-admin-autosave.php:1621
2046
- #, fuzzy
2047
- msgid "Expand subalbums"
2048
- msgstr ", un subàlbum de"
2049
-
2050
- #: wppa-album-admin-autosave.php:1380
2051
- msgid ""
2052
- "The following albums are ---separate--- and do not show up in the generic "
2053
- "album display"
2054
- msgstr ""
2055
-
2056
- #: wppa-album-admin-autosave.php:1510
2057
- msgid "Search for photos to edit"
2058
- msgstr ""
2059
-
2060
- #: wppa-album-admin-autosave.php:1511
2061
- msgid ""
2062
- "Enter search words seperated by commas. Photos will meet all search words by "
2063
- "their names, descriptions, translated keywords and/or tags."
2064
- msgstr ""
2065
-
2066
- #: wppa-album-admin-autosave.php:1517
2067
- #, fuzzy
2068
- msgid "Any"
2069
- msgstr "i"
2070
-
2071
- #: wppa-album-admin-autosave.php:1521
2072
- #, fuzzy
2073
- msgid "Search for"
2074
- msgstr "Búsqueda"
2075
-
2076
- #: wppa-album-admin-autosave.php:1563
2077
- #, php-format
2078
- msgid ""
2079
- "There are <strong>%d</strong> albums and <strong>%d</strong> photos in the "
2080
- "system."
2081
- msgstr ""
2082
-
2083
- #: wppa-album-admin-autosave.php:1564
2084
- #, php-format
2085
- msgid "<strong>%d</strong> photos are pending moderation."
2086
- msgstr ""
2087
-
2088
- #: wppa-album-admin-autosave.php:1565
2089
- #, php-format
2090
- msgid "<strong>%d</strong> photos are scheduled for later publishing."
2091
- msgstr ""
2092
-
2093
- #: wppa-album-admin-autosave.php:1568
2094
- #, php-format
2095
- msgid "The most recently added album is <strong>%s</strong> (%d)."
2096
- msgstr ""
2097
-
2098
- #: wppa-album-admin-autosave.php:1572
2099
- #, php-format
2100
- msgid "The most recently added photo is <strong>%s</strong> (%d)"
2101
- msgstr ""
2102
-
2103
- #: wppa-album-admin-autosave.php:1573
2104
- #, php-format
2105
- msgid "in album <strong>%s</strong> (%d)."
2106
- msgstr ""
2107
-
2108
- #: wppa-album-admin-autosave.php:1694
2109
- #, php-format
2110
- msgid "Unable to move photos to album %s. Album not deleted."
2111
- msgstr ""
2112
-
2113
- #: wppa-album-admin-autosave.php:1715
2114
- #, php-format
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2015-12-25 13:11+0100\n"
5
+ "PO-Revision-Date: 2015-12-26 13:03+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: es_CA\n"
26
  msgstr "Pàgina següent"
27
 
28
  #: theme/photo-album-page.php:31 theme/photo-album-search-page.php:53
29
+ #: wppa-functions.php:1914 wppa-thumbnails.php:597
 
 
 
 
 
30
  msgid "Edit"
31
  msgstr "Editar"
32
 
34
  msgid "Warning. No page defined for search results!"
35
  msgstr ""
36
 
37
+ #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:168
 
38
  msgid "Search"
39
  msgstr "Búsqueda"
40
 
53
  "different keywords."
54
  msgstr ""
55
 
56
+ #: theme/wppa-theme.php:328 theme/wppa-theme.php:347
57
  msgid "No photos found matching your search criteria."
58
  msgstr "No s'ha trobat cap foto amb aquest criteri de cerca."
59
 
60
+ #: theme/wppa-theme.php:331
61
  #, fuzzy
62
  msgid "No albums found matching your search criteria."
63
  msgstr "No s'han trobat àlbums o fotos amb el vostre criteri de cerca."
64
 
65
+ #: theme/wppa-theme.php:334
66
  msgid "No albums or photos found matching your search criteria."
67
  msgstr "No s'han trobat àlbums o fotos amb el vostre criteri de cerca."
68
 
69
+ #: wppa-album-covers.php:1256
70
+ msgid "Link to"
71
+ msgstr "Enllaç a"
 
72
 
73
+ #: wppa-album-covers.php:1286 wppa-album-covers.php:1345
74
+ #: wppa-album-covers.php:1353 wppa-album-covers.php:1588
75
+ msgid "View the album"
76
+ msgstr "Veure l'àlbum"
77
 
78
+ #: wppa-album-covers.php:1306
79
+ #, fuzzy
80
+ msgid "View the cover photo"
81
+ msgid_plural "View the cover photos"
82
+ msgstr[0] "Veure la foto de portada"
83
+ msgstr[1] "Veure la foto de portada"
84
 
85
+ #: wppa-album-covers.php:1363
86
+ msgid "View"
87
+ msgstr "Veure"
88
 
89
+ #: wppa-album-covers.php:1365
90
+ #, fuzzy, php-format
91
+ msgid "%d album"
92
+ msgid_plural "%d albums"
93
+ msgstr[0] "àlbum"
94
+ msgstr[1] "àlbum"
95
 
96
+ #: wppa-album-covers.php:1371 wppa-boxes-html.php:1159 wppa-breadcrumb.php:148
97
+ #: wppa-breadcrumb.php:154 wppa-breadcrumb.php:161 wppa-breadcrumb.php:368
98
+ #: wppa-breadcrumb.php:379
99
+ msgid "and"
100
+ msgstr "i"
101
 
102
+ #: wppa-album-covers.php:1374
103
+ #, fuzzy, php-format
104
+ msgid "%d photo"
105
+ msgid_plural "%d photos"
106
+ msgstr[0] "Editar la foto"
107
+ msgstr[1] "Editar la foto"
108
 
109
+ #: wppa-album-covers.php:1437
110
  #, fuzzy
111
+ msgid "New!"
112
+ msgstr "Novo álbum"
 
 
 
 
 
 
 
 
 
 
113
 
114
+ #: wppa-album-covers.php:1440 wppa-thumbnails.php:1899 wppa-thumbnails.php:1900
115
+ #, fuzzy
116
+ msgid "New"
117
+ msgstr "Novo álbum"
118
 
119
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
120
+ msgid "Slideshow"
121
+ msgstr "Presentació"
122
 
123
+ #: wppa-album-covers.php:1682
124
+ msgid "Browse photos"
125
+ msgstr "Veure les fotos"
126
 
127
+ #: wppa-album-covers.php:1719 wppa-breadcrumb.php:389 wppa-breadcrumb.php:394
128
+ #, fuzzy
129
+ msgid "Category:"
130
+ msgid_plural "Categories:"
131
+ msgstr[0] "Categoría:"
132
+ msgstr[1] "Categoría:"
133
 
134
+ #: wppa-audio.php:183
135
  msgid ""
136
+ "There is no filetype available for your browser, or your browser does not "
137
+ "support html5 audio"
138
  msgstr ""
139
 
140
+ #: wppa-boxes-html.php:133 wppa-boxes-html.php:235
141
  #, fuzzy
142
+ msgid "Photo search results"
143
+ msgstr "Espere, no ha definido una página para los resultados de la búsqueda!"
144
 
145
+ #: wppa-boxes-html.php:367 wppa-breadcrumb.php:136
146
  #, fuzzy
147
+ msgid "Albums"
148
+ msgstr "àlbums"
 
 
 
 
 
149
 
150
+ #: wppa-boxes-html.php:373 wppa-breadcrumb.php:151
151
+ #, fuzzy
152
+ msgid "Photos"
153
+ msgstr "Foto"
154
 
155
+ #: wppa-boxes-html.php:392
156
+ #, fuzzy
157
+ msgid "Category"
158
+ msgstr "Categoría:"
159
 
160
+ #: wppa-boxes-html.php:399 wppa-boxes-html.php:513
161
+ msgid "Name"
 
162
  msgstr ""
163
 
164
+ #: wppa-boxes-html.php:405 wppa-boxes-html.php:538
165
+ msgid "Text"
166
  msgstr ""
167
 
168
+ #: wppa-boxes-html.php:421 wppa-boxes-html.php:475 wppa-boxes-html.php:621
169
+ #: wppa-boxes-html.php:651
170
+ msgid "CTRL+Click to add/remove option."
 
171
  msgstr ""
172
 
173
+ #: wppa-boxes-html.php:422 wppa-boxes-html.php:476 wppa-boxes-html.php:622
174
+ #: wppa-boxes-html.php:652
175
+ msgid "Items must meet all selected options."
176
  msgstr ""
177
 
178
+ #: wppa-boxes-html.php:521
179
+ msgid "Owner"
180
  msgstr ""
181
 
182
+ #: wppa-boxes-html.php:530
183
+ msgid "Tag"
 
 
 
 
 
184
  msgstr ""
185
 
186
+ #: wppa-boxes-html.php:546
187
+ msgid "Iptc"
188
  msgstr ""
189
 
190
+ #: wppa-boxes-html.php:555
191
+ msgid "Exif"
192
  msgstr ""
193
 
194
+ #: wppa-boxes-html.php:753 wppa-boxes-html.php:832
195
+ msgid "Submit"
 
 
196
  msgstr ""
197
 
198
+ #: wppa-boxes-html.php:795
199
  #, fuzzy
200
+ msgid "Super View Photos"
201
+ msgstr "Veure les fotos de portada"
202
 
203
+ #: wppa-boxes-html.php:804 wppa-breadcrumb.php:276 wppa-breadcrumb.php:294
204
+ #: wppa-breadcrumb.php:322 wppa-breadcrumb.php:340 wppa-breadcrumb.php:404
205
+ #: wppa-breadcrumb.php:429 wppa-breadcrumb.php:577
206
+ msgid "Album:"
207
+ msgstr "Álbum:"
208
 
209
+ #: wppa-boxes-html.php:820
210
  #, fuzzy
211
+ msgid "Thumbnails"
212
+ msgstr "Thumbnail photos related settings"
 
 
 
 
 
 
 
 
 
213
 
214
+ #: wppa-boxes-html.php:866
215
+ #, fuzzy
216
+ msgid "Tagged photos"
217
+ msgstr "Fotos etiquetades"
218
 
219
+ #: wppa-boxes-html.php:880
220
+ msgid "Please select a tagcloud landing page in Table VI-C3b"
221
+ msgstr ""
222
+ "Per favor, seleccioneu una pàgina d'aterratge per al núvol d'etiquetes a la "
223
+ "Table VI-C3b"
224
 
225
+ #: wppa-boxes-html.php:939
226
  #, fuzzy
227
+ msgid "Multi Tagged photos"
228
+ msgstr "Fotos etiquetades"
229
 
230
+ #: wppa-boxes-html.php:953
231
+ msgid "Please select a multitag landing page in Table VI-C4b"
232
+ msgstr ""
233
+ "Per favor, seleccioneu una pàgina d'aterratge per a multietiquetes a la "
234
+ "Table VI-C4b"
235
 
236
+ #: wppa-boxes-html.php:998
237
+ msgid "Please check the tag(s) that the photos must have"
238
+ msgstr "Per favor, comproveu les etiquetes que haurien de tindre les fotos"
 
239
 
240
+ #: wppa-boxes-html.php:1029
241
+ msgid "And"
242
+ msgstr "i"
 
243
 
244
+ #: wppa-boxes-html.php:1040
245
+ msgid "Or"
246
+ msgstr "O"
 
247
 
248
+ #: wppa-boxes-html.php:1055
249
+ msgid "Inverse selection"
250
+ msgstr ""
 
251
 
252
+ #: wppa-boxes-html.php:1108
253
+ msgid "Find!"
254
+ msgstr "Troba!"
 
 
255
 
256
+ #: wppa-boxes-html.php:1135
257
  #, fuzzy
258
+ msgid "Social media landing page"
259
+ msgstr "Padding del Foto Widget."
 
 
 
 
260
 
261
+ #: wppa-boxes-html.php:1160
262
+ #, php-format
263
+ msgid "See this image on %s"
264
+ msgstr "Veure aquesta imatga a %s"
265
 
266
+ #: wppa-boxes-html.php:1185
267
+ msgid "QR code"
268
+ msgstr "Código QR"
269
 
270
+ #: wppa-boxes-html.php:1230
271
+ #, php-format
272
+ msgid "Tweet %s on Twitter"
273
+ msgstr "Piula %s a Twitter"
274
 
275
+ #: wppa-boxes-html.php:1237
276
  #, fuzzy
277
+ msgid "Share on Twitter"
278
+ msgstr "Piula %s a Twitter"
279
 
280
+ #: wppa-boxes-html.php:1250
281
+ #, php-format
282
+ msgid "Share %s on Google+"
283
+ msgstr "Comparteix %s a Google+"
284
 
285
+ #: wppa-boxes-html.php:1258
286
+ #, fuzzy
287
+ msgid "Share on Google+"
288
+ msgstr "Comparteix %s a Google+"
289
 
290
+ #: wppa-boxes-html.php:1273
291
+ #, php-format
292
+ msgid "Share %s on Pinterest"
293
+ msgstr "Comparteix %s a Pinterest"
294
 
295
+ #: wppa-boxes-html.php:1282
296
  #, fuzzy
297
+ msgid "Share on Pinterest"
298
+ msgstr "Comparteix %s a Pinterest"
 
 
 
 
 
 
299
 
300
+ #: wppa-boxes-html.php:1417
301
  #, fuzzy
302
+ msgid "Comment on Facebook:"
303
+ msgstr "Comparteix %s a Facebook"
 
 
 
 
 
304
 
305
+ #: wppa-boxes-html.php:1518
306
+ msgid "Working..."
307
+ msgstr "Trabajando..."
308
 
309
+ #: wppa-boxes-html.php:1520 wppa-boxes-html.php:1523
310
+ #, fuzzy
311
+ msgid "Delete album"
312
+ msgstr "Eliminar Álbum"
313
 
314
+ #: wppa-boxes-html.php:1610
315
+ #, fuzzy
316
+ msgid "Create Album"
317
+ msgstr "Não é possível criar álbum."
318
 
319
+ #: wppa-boxes-html.php:1655
320
+ #, fuzzy
321
+ msgid "Enter album name."
322
+ msgstr "Introduiïu el nom de la foto"
323
 
324
+ #: wppa-boxes-html.php:1657 wppa-boxes-html.php:2371
325
  #, fuzzy
326
+ msgid "Don't leave this blank!"
327
+ msgstr ""
328
+ "Si deixeu aquest text en blanc, el nom del fitxer original s'utilitzarà com "
329
+ "a nom de la foto."
330
 
331
+ #: wppa-boxes-html.php:1676
332
  #, fuzzy
333
+ msgid "Enter album description"
334
+ msgstr "Escribir / modificar la descripción de éste álbum."
335
 
336
+ #: wppa-boxes-html.php:1698
337
  #, fuzzy
338
+ msgid "Create album"
339
  msgstr "Não é possível criar álbum."
340
 
341
+ #: wppa-boxes-html.php:1754 wppa-boxes-html.php:1767 wppa-functions.php:4011
342
+ msgid "Max uploads reached"
343
+ msgstr "Màxim de pujades assolit"
 
 
 
 
344
 
345
+ #: wppa-boxes-html.php:1834
346
+ msgid "Upload Photo"
347
+ msgstr "Pujar una foto"
348
 
349
+ #: wppa-boxes-html.php:1942
350
+ #, fuzzy, php-format
351
+ msgid "You may upload %d photo"
352
+ msgid_plural ""
353
+ "You may upload up to %d photos at once if your browser supports HTML-5 "
354
+ "multiple file upload"
355
+ msgstr[0] "Podeu pujar fins a"
356
+ msgstr[1] "Podeu pujar fins a"
357
 
358
+ #: wppa-boxes-html.php:1951
359
  #, php-format
360
+ msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
361
+ msgstr "Mida màxima de la foto: %d x %d (%2.1f MegaPixel)"
362
 
363
+ #: wppa-boxes-html.php:1980
364
+ msgid "Apply watermark file:"
365
+ msgstr "Aplicar el titxer de marca d'aigua:"
 
366
 
367
+ #: wppa-boxes-html.php:2002
368
+ msgid "Position:"
369
+ msgstr "Posició:"
370
+
371
+ #: wppa-boxes-html.php:2030
372
+ #, fuzzy
373
+ msgid ""
374
+ "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
375
+ "photoname if available, else the original filename will be used as photo "
376
+ "name."
377
  msgstr ""
378
+ "Si deixeu aquest text en blanc, el nom del fitxer original s'utilitzarà com "
379
+ "a nom de la foto."
380
 
381
+ #: wppa-boxes-html.php:2035
382
+ #, fuzzy
383
+ msgid ""
384
+ "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
385
+ "available, else the original filename will be used as photo name."
386
  msgstr ""
387
+ "Si deixeu aquest text en blanc, el nom del fitxer original s'utilitzarà com "
388
+ "a nom de la foto."
389
 
390
+ #: wppa-boxes-html.php:2040
391
+ msgid ""
392
+ "If you leave this blank, the original filename will be used as photo name."
393
  msgstr ""
394
+ "Si deixeu aquest text en blanc, el nom del fitxer original s'utilitzarà com "
395
+ "a nom de la foto."
396
 
397
+ #: wppa-boxes-html.php:2054
398
  #, fuzzy
399
+ msgid "Enter photo name"
400
+ msgstr "Introduiïu el nom de la foto"
 
 
 
 
401
 
402
+ #: wppa-boxes-html.php:2075
403
+ msgid "Enter/modify photo description"
404
+ msgstr "Escriure / modificar la descripció de la foto"
405
 
406
+ #: wppa-boxes-html.php:2106
407
+ msgid "hidden"
408
  msgstr ""
409
 
410
+ #: wppa-boxes-html.php:2176
411
+ #, fuzzy
412
+ msgid "Preview tags:"
413
+ msgstr "Seleccionar:"
414
 
415
+ #: wppa-boxes-html.php:2191
416
+ msgid "Please select an album and try again"
417
+ msgstr "Per favor, trieu un àlbum i intenteu-ho de nou"
 
 
418
 
419
+ #: wppa-boxes-html.php:2205
420
+ #, fuzzy
421
+ msgid "Upload photo"
422
+ msgstr "Pujar una foto"
423
 
424
+ #: wppa-boxes-html.php:2261
425
  #, fuzzy
426
+ msgid "ERROR: unable to upload files."
427
+ msgstr "<b>ERROR: Intent il·legal de pujar un arxiu.</b>"
428
 
429
+ #: wppa-boxes-html.php:2311
430
+ #, fuzzy
431
+ msgid "Edit albuminfo"
432
+ msgstr "Edita!"
433
 
434
+ #: wppa-boxes-html.php:2369
435
  #, fuzzy
436
+ msgid "Enter album name"
437
+ msgstr "Introduiïu el nom de la foto"
438
 
439
+ #: wppa-boxes-html.php:2391
440
+ #, fuzzy
441
+ msgid "Album description:"
442
+ msgstr "Escribir / modificar la descripción de éste álbum."
443
 
444
+ #: wppa-boxes-html.php:2410
445
  #, fuzzy
446
+ msgid "Update album"
447
+ msgstr "Actualizacion en proceso"
448
 
449
+ #: wppa-boxes-html.php:2484
450
+ msgid "wrote:"
451
+ msgstr "va escriure:"
 
 
 
 
 
 
452
 
453
+ #: wppa-boxes-html.php:2538
454
+ msgid "Avatar"
455
  msgstr ""
456
 
457
+ #: wppa-boxes-html.php:2581
458
+ msgid "Awaiting moderation"
459
+ msgstr "Esperant moderació"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
460
 
461
+ #: wppa-boxes-html.php:2584
462
+ msgid "Marked as spam"
463
+ msgstr "Marcat com a spam"
 
464
 
465
+ #: wppa-boxes-html.php:2608
466
+ msgid "Edit!"
467
+ msgstr "Edita!"
468
 
469
+ #: wppa-boxes-html.php:2612
470
+ msgid "Send!"
471
+ msgstr "Envia!"
472
 
473
+ #: wppa-boxes-html.php:2673
474
+ msgid "Your name:"
475
+ msgstr "El vostre nom:"
476
 
477
+ #: wppa-boxes-html.php:2688
478
+ msgid "Your email:"
479
+ msgstr "El vostre email:"
480
 
481
+ #: wppa-boxes-html.php:2704
482
+ msgid "Your comment:"
483
+ msgstr "El vostre comentari: "
 
484
 
485
+ #: wppa-boxes-html.php:2749
486
  #, php-format
487
+ msgid "You must <a href=\"%s\">login</a> to enter a comment"
488
+ msgstr "Heu <a href=\"%s\">d'identificar-vos</a> per a introduïr un comentari"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
489
 
490
+ #: wppa-boxes-html.php:2752
491
  #, fuzzy
492
+ msgid "You must login to enter a comment"
493
+ msgstr "Heu <a href=\"%s\">d'identificar-vos</a> per a introduïr un comentari"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
494
 
495
+ #: wppa-boxes-html.php:2764 wppa-functions.php:2326 wppa-thumbnails.php:635
496
  #, fuzzy, php-format
497
+ msgid "%d comment"
498
+ msgid_plural "%d comments"
499
+ msgstr[0] "%d comentaris"
500
+ msgstr[1] "%d comentaris"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
501
 
502
+ #: wppa-boxes-html.php:2768
503
+ msgid "Leave a comment"
504
+ msgstr "Deixeu un comentari"
 
505
 
506
+ #: wppa-boxes-html.php:2809
507
  #, fuzzy
508
+ msgid "Smilies are not available"
509
+ msgstr "La página no está disponible."
510
 
511
+ #: wppa-boxes-html.php:2859
512
+ msgid "Show IPTC data"
513
+ msgstr "Mostra les dades IPTC"
 
514
 
515
+ #: wppa-boxes-html.php:2870
516
+ msgid "Hide IPTC data"
517
+ msgstr "Oculta les dades IPTC"
 
518
 
519
+ #: wppa-boxes-html.php:2910
520
+ msgid "No IPTC data"
521
+ msgstr "No hi ha dades IPTC"
 
 
522
 
523
+ #: wppa-boxes-html.php:2957
524
+ msgid "Show EXIF data"
525
+ msgstr "Mostra les dades EXIF"
 
 
 
 
526
 
527
+ #: wppa-boxes-html.php:2968
528
+ msgid "Hide EXIF data"
529
+ msgstr "Oculta les dades EXIF"
530
 
531
+ #: wppa-boxes-html.php:3010
532
+ msgid "No EXIF data"
533
+ msgstr "No hi ha dades EXIF"
534
 
535
+ #: wppa-boxes-html.php:3125 wppa-boxes-html.php:3130
536
  #, fuzzy
537
+ msgid "< Previous"
538
+ msgstr "Anterior"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
539
 
540
+ #: wppa-boxes-html.php:3136 wppa-boxes-html.php:3141
541
  #, fuzzy
542
+ msgid "Next >"
543
+ msgstr "Seg."
544
 
545
+ #: wppa-boxes-html.php:3238 wppa-boxes-html.php:3306
546
  #, fuzzy
547
+ msgid "See the authors albums"
548
+ msgstr "Veure aquesta imatga a %s"
549
 
550
+ #: wppa-boxes-html.php:3242 wppa-boxes-html.php:3310
551
  #, fuzzy
552
+ msgid "See the authors photos"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
553
  msgstr ""
554
+ "El visitante puede ver un compendio de las miniaturas de las fotos en el "
555
+ "álbum."
556