WP Photo Album Plus - Version 6.3.15

Version Description

Download this release

Release Info

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

Code changes from version 6.3.14 to 6.3.15

js/wppa-lightbox.js CHANGED
@@ -3,21 +3,22 @@
3
  // Conatins lightbox modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
- var wppaLightboxVersion = '6.2.14';
7
 
 
8
  var wppaNormsBtnOpac = 1;
9
-
10
  var wppaIsVideo = false;
11
  var wppaHasAudio = false;
12
  var wppaOvlImgs = [];
 
13
 
14
  // Global size specs
15
- var wppaSavedContainerWidth;// = 250 + 2 * wppaOvlBorderWidth;
16
- var wppaSavedContainerHeight;// = 250 + 3 * wppaOvlBorderWidth + 20 + ( wppaOvlTxtHeight == 'auto' ? 50 : wppaOvlTxtHeight );
17
- var wppaSavedMarginLeft;// = - ( 125 + wppaOvlBorderWidth );
18
- var wppaSavedMarginTop;// = - ( 125 + wppaOvlBorderWidth + 10 + ( wppaOvlTxtHeight == 'auto' ? 25 : wppaOvlTxtHeight / 2 ) );
19
- var wppaSavedImageWidth;// = wppaSavedContainerWidth;//250;
20
- var wppaSavedImageHeight;// = 250 + wppaOvlBorderWidth;
21
 
22
  // Initial initialization
23
  jQuery( document ).ready(function( e ) {
@@ -36,6 +37,8 @@ jQuery( window ).resize(function() {
36
  // Keyboard handler
37
  function wppaOvlKeyboardHandler( e ) {
38
 
 
 
39
  var keycode;
40
  var escapeKey;
41
 
@@ -70,7 +73,6 @@ function wppaOvlKeyboardHandler( e ) {
70
  wppaOvlShowNext();
71
  break;
72
  case 's':
73
- // wppaConsoleLog('s pressed', 'force');
74
  wppaOvlStartStop();
75
  break;
76
  case 'd':
@@ -82,10 +84,14 @@ function wppaOvlKeyboardHandler( e ) {
82
  wppaOvlFull();
83
  break;
84
  }
 
 
85
  }
86
 
87
  // Switch to fullscreen mode
88
  function wppaOvlFull() {
 
 
89
  var oldMode = wppaOvlMode;
90
  wppaOvlStepMode();
91
  var elem = document.getElementById('wppa-overlay-ic');
@@ -114,6 +120,8 @@ function wppaOvlFull() {
114
 
115
  // Switch to normal screen mode
116
  function wppaOvlNorm() {
 
 
117
  wppaOvlMode = 'normal';
118
  if (document.cancelFullScreen) {
119
  document.cancelFullScreen();
@@ -125,13 +133,13 @@ function wppaOvlNorm() {
125
  setTimeout( 'wppaOvlShow( '+wppaOvlIdx+' )', 1000 );
126
  }
127
 
128
- // Show the lightbox overlay.
129
- // arg is either numeric ( index to current lightbox set ) or 'this' for a single image
130
- // This function consists of 4 steps if not in fullscreen mode:
131
- // wppaOvlShow() wppaOvlShow2(), wppaOvlShow3() and wppaOvlShow4() with rendering in between the steps.
132
- // If in fullscreen mode, wppaOvlShow() calls wppaOvlShowFull().
133
  function wppaOvlShow( arg ) {
 
134
 
 
135
  if ( wppaOvlFirst ) {
136
 
137
  // Prevent Weaver ii from hiding us
@@ -141,7 +149,10 @@ function wppaOvlShow( arg ) {
141
  jQuery( '#wppa-overlay-bg' ).fadeTo( 3, wppaOvlOpacity );
142
 
143
  // Install keyboard handler
144
- jQuery( document ).on('keydown', wppaOvlKeyboardHandler );
 
 
 
145
 
146
  // Stop all slideshows
147
  var occ = 0;
@@ -149,55 +160,28 @@ function wppaOvlShow( arg ) {
149
  occ++;
150
  wppaStopShow( occ );
151
  }
152
- }
153
-
154
- // Adjust background size
155
- jQuery( '#wppa-overlay-bg' ).css({
156
- width:window.innerWidth,
157
- height:window.innerHeight,
158
- });
159
 
160
- // Now start the actual function
161
- if ( wppaOvlFirst ) {
162
- setTimeout( function(){ _wppaOvlShow( arg )}, 3 );
163
- }
164
- else {
165
- _wppaOvlShow( arg );
166
  }
167
- }
168
-
169
- function _wppaOvlShow( arg ) {
170
- //wppaConsoleLog('Start _wppaOvlShow', 'force');
171
- // Display spinner
172
- jQuery( '#wppa-overlay-sp' ).css( {left: ( jQuery( window ).width()/2 )-16, top: ( jQuery( window ).height()/2 )-16, visibility: 'visible'});
173
 
174
- var href;
175
- if ( parseInt( arg ) == arg ) { // Arg is Numeric
176
- if ( arg != -1 ) {
177
- wppaOvlUrl = wppaOvlUrls[arg];
178
- wppaOvlTitle = wppaOvlTitles[arg];
179
- wppaOvlIdx = arg;
180
- wppaOvlVideoHtml = wppaOvlVideoHtmls[arg];
181
- wppaOvlAudioHtml = wppaOvlAudioHtmls[arg];
182
- wppaOvlVideoNaturalWidth = wppaOvlVideoNaturalWidths[arg];
183
- wppaOvlVideoNaturalHeight = wppaOvlVideoNaturalHeights[arg];
184
- } // else redo the same single
185
- }
186
- else { // Arg is 'this' arg
187
- wppaOvlIdx = -1; // Assume single
188
- wppaOvlUrl = arg.href;
189
- if ( jQuery( arg ).attr( 'data-lbtitle' ) ) {
190
- wppaOvlTitle = wppaRepairScriptTags( jQuery( arg ).attr( 'data-lbtitle' ) );
191
- }
192
- else {
193
- wppaOvlTitle = wppaRepairScriptTags( arg.title );
194
- }
195
- wppaOvlVideoHtml = jQuery( arg ).attr( 'data-videohtml' ) ? decodeURI( jQuery( arg ).attr( 'data-videohtml' ) ) : '';
196
- wppaOvlAudioHtml = jQuery( arg ).attr( 'data-audiohtml' ) ? decodeURI( jQuery( arg ).attr( 'data-audiohtml' ) ) : '';
197
-
198
- wppaOvlVideoNaturalWidth = jQuery( arg ).attr( 'data-videonatwidth' ) ? jQuery( arg ).attr( 'data-videonatwidth' ) : '';
199
- wppaOvlVideoNaturalHeight = jQuery( arg ).attr( 'data-videonatheight' ) ? jQuery( arg ).attr( 'data-videonatheight' ) : '';
200
-
201
  var rel;
202
  if ( arg.rel ) {
203
  rel = arg.rel;
@@ -209,29 +193,19 @@ function _wppaOvlShow( arg ) {
209
  rel = false;
210
  }
211
 
 
212
  var temp = rel.split( '[' );
213
 
214
- if ( temp[1] ) { // We are in a set
215
- wppaOvlUrls = [];
216
- wppaOvlTitles = [];
217
- wppaOvlVideoHtmls = [];
218
- wppaOvlAudioHtmls = [];
219
- wppaOvlVideoNaturalWidths = [];
220
- wppaOvlVideoNaturalHeights = [];
221
- wppaOvlImgs = [];
222
- var setname = temp[1];
223
- var anchors = jQuery( 'a' );
224
  var anchor;
225
- var i, j = 0;
226
- wppaOvlIdx = -1;
227
 
228
  // Save the set
229
- for ( i=0;i<anchors.length;i++ ) {
230
  anchor = anchors[i];
231
- // if ( anchor.rel ) {
232
- // temp = anchor.rel.split( "[" );
233
- // }
234
- // else
235
  if ( jQuery( anchor ).attr( 'data-rel' ) ) {
236
  temp = jQuery( anchor ).attr( 'data-rel').split( "[" );
237
  }
@@ -249,54 +223,109 @@ function _wppaOvlShow( arg ) {
249
  }
250
  wppaOvlVideoHtmls[j] = jQuery( anchor ).attr( 'data-videohtml' ) ? decodeURI( jQuery( anchor ).attr( 'data-videohtml' ) ) : '';
251
  wppaOvlAudioHtmls[j] = jQuery( anchor ).attr( 'data-audiohtml' ) ? decodeURI( jQuery( anchor ).attr( 'data-audiohtml' ) ) : '';
252
-
253
  wppaOvlVideoNaturalWidths[j] = jQuery( anchor ).attr( 'data-videonatwidth' ) ? jQuery( anchor ).attr( 'data-videonatwidth' ) : '';
254
  wppaOvlVideoNaturalHeights[j] = jQuery( anchor ).attr( 'data-videonatheight' ) ? jQuery( anchor ).attr( 'data-videonatheight' ) : '';
255
- wppaOvlImgs[j] = new Image();
256
- wppaOvlImgs[j].src = wppaOvlUrls[j]; // Preload
257
- // wppaConsoleLog( 'Preloading '+j, 'force' );
258
- if ( anchor.href == wppaOvlUrl ) {
259
  wppaOvlIdx = j; // Current index
260
- if ( wppaOvlUrl.length > 0 ) { // Not empty
261
- if ( ! wppaOvlImgs[j].complete ) { // Not loaded yet
262
- // wppaConsoleLog( 'Waiting for ' + j, 'force' );
263
- jQuery( '#wppa-overlay-sp' ).css( { visibility: 'visible' } ); // Show spinner
264
- setTimeout( function() { _wppaOvlShow( arg ) }, 100 ); // Try again in 100 ms
265
- return;
266
- }
267
- }
268
  }
269
  j++;
270
  }
271
  }
272
  }
273
  }
274
- else { // Single
275
- wppaOvlUrls = false;
276
- wppaOvlTitles = false;
277
- wppaOvlVideoHtmls = false;
278
- wppaOvlVideoNaturalWidths = false;
279
- wppaOvlVideoNaturalHeights = false;
280
- wppaOvlIdx = -1;
 
 
 
 
 
 
 
 
 
281
  }
 
 
 
 
 
282
  }
283
 
284
- wppaPhotoId = wppaUrlToId( wppaOvlUrl );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
285
 
 
 
286
  _bumpViewCount( wppaPhotoId );
287
 
288
- // var
289
- wppaIsVideo = wppaOvlVideoHtml != '';
290
- // var
291
- wppaHasAudio = wppaOvlAudioHtml != '';
 
 
292
 
293
  // Fullsize?
294
  if ( wppaOvlMode != 'normal' ) {
295
  var html;
296
 
297
- // Init background
298
- // jQuery( '#wppa-overlay-bg' ).fadeTo( 300, wppaOvlOpacity ); // show black background first
299
-
300
  // Fullsize Video
301
  if ( wppaIsVideo ) {
302
  html =
@@ -310,7 +339,7 @@ wppaHasAudio = wppaOvlAudioHtml != '';
310
  ' onpause="wppaOvlVideoPlaying = false;"' +
311
  ' onplay="wppaOvlVideoPlaying = true;"' +
312
  ' style="border:none; width:'+jQuery( window ).width()+'px; box-shadow:none; position:absolute;" >'+
313
- wppaOvlVideoHtml+
314
  '</video>'+
315
  '<div style="height: 20px; width: 100%; position:absolute; top:0; left:0;" onmouseover="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'visible\');" onmouseout="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'hidden\');wppaShowLegenda=\'hidden\';" >';
316
  if ( wppaOvlShowLegenda ) {
@@ -332,7 +361,7 @@ wppaHasAudio = wppaOvlAudioHtml != '';
332
  ' ontouchend="wppaTouchEnd( event );"'+
333
  ' ontouchmove="wppaTouchMove( event );"'+
334
  ' ontouchcancel="wppaTouchCancel( event );"'+
335
- ' src="'+wppaOvlUrl+'"'+
336
  ' style="border:none; width:'+jQuery( window ).width()+'px; visibility:hidden; box-shadow:none; position:absolute;"'+
337
  ' />';
338
  if ( wppaHasAudio ) {
@@ -353,7 +382,7 @@ wppaHasAudio = wppaOvlAudioHtml != '';
353
  '"' +
354
  ' controls' +
355
  ' >' +
356
- wppaOvlAudioHtml +
357
  '</audio>';
358
  }
359
  html +=
@@ -389,7 +418,7 @@ wppaHasAudio = wppaOvlAudioHtml != '';
389
  }
390
 
391
  wppaOvlIsVideo = wppaIsVideo;
392
- setTimeout( 'wppaOvlShowFull()', 10 );
393
  if ( wppaIsVideo || wppaHasAudio ) {
394
  setTimeout( 'wppaOvlUpdateFsId()', 2000 );
395
  }
@@ -407,14 +436,14 @@ wppaHasAudio = wppaOvlAudioHtml != '';
407
  wppaPhotoId = 0;
408
  wppaStopVideo( 0 );
409
  var txtcol = wppaOvlTheme == 'black' ? '#a7a7a7' : '#272727'; // Normal font
410
- if ( wppaOvlFontColor ) txtcol = wppaOvlFontColor;
411
- var startstop = wppaOvlRunning ? wppaStop : wppaStart;
412
- var showNav = ( parseInt( arg ) != arg || arg == -1 );
 
413
 
414
  // Initial sizing of image container ( contains image, borders and subtext )
415
  jQuery( '#wppa-overlay-ic' ).css( {
416
  width:wppaSavedContainerWidth,
417
- // height:wppaSavedContainerHeight,
418
  marginLeft:wppaSavedMarginLeft,
419
  marginTop:wppaSavedMarginTop,
420
  });
@@ -454,7 +483,7 @@ wppaHasAudio = wppaOvlAudioHtml != '';
454
  'padding:0;' +
455
  '"' +
456
  ' >' +
457
- wppaOvlVideoHtml +
458
  '</video>';
459
 
460
  wppaOvlIsVideo = true;
@@ -468,7 +497,7 @@ wppaHasAudio = wppaOvlAudioHtml != '';
468
  ' ontouchend="wppaTouchEnd( event );"' +
469
  ' ontouchmove="wppaTouchMove( event );"' +
470
  ' ontouchcancel="wppaTouchCancel( event );"' +
471
- ' src="'+wppaOvlUrl+'"' +
472
  ' style="' +
473
  'border-width:' + wppaOvlBorderWidth + 'px ' + wppaOvlBorderWidth + 'px 0;' +
474
  'border-style:solid;' +
@@ -507,7 +536,7 @@ wppaHasAudio = wppaOvlAudioHtml != '';
507
  '"' +
508
  ' controls' +
509
  ' >' +
510
- wppaOvlAudioHtml +
511
  '</audio>';
512
  }
513
  wppaOvlIsVideo = false;
@@ -526,7 +555,7 @@ wppaHasAudio = wppaOvlAudioHtml != '';
526
  'cursor:pointer;' +
527
  'height:' + wppaStopSymbolSize + 'px;' +
528
  ( wppaStopSumbolBradius > 0 ? 'border-radius:' + wppaStopSumbolBradius + 'px;' : '' ) +
529
- ( showNav ? 'opacity:1;' : 'opacity:0;' ) +
530
  '"' +
531
  ' onclick="wppaOvlHide()"' +
532
  ' ontouchend="wppaOvlHide()"' +
@@ -537,7 +566,7 @@ wppaHasAudio = wppaOvlAudioHtml != '';
537
  ' />';
538
 
539
  // The start/stop button
540
- if ( wppaOvlShowStartStop ) {
541
  html += '<img' +
542
  ' id="wppa-ovl-start-stop-btn"' +
543
  ' src="'+( wppaOvlRunning ? wppaPauseSymbolUrl : wppaStartSymbolUrl )+'"' +
@@ -550,8 +579,9 @@ wppaHasAudio = wppaOvlAudioHtml != '';
550
  'margin-top:' + ( -wppaStartPauseSymbolSize/2 ) + 'px;' +
551
  'left:50%;' +
552
  'margin-left:' + ( -wppaStartPauseSymbolSize/2 ) + 'px;' +
 
553
  'box-shadow:none;' +
554
- ( showNav ? 'opacity:1;' : 'opacity:0;' ) +
555
  '"' +
556
  ' onclick="wppaOvlStartStop()"' +
557
  ' ontouchend="wppaOvlStartStop()"' +
@@ -562,83 +592,60 @@ wppaHasAudio = wppaOvlAudioHtml != '';
562
  ' />';
563
  }
564
 
565
- // The browse buttons
566
- // Determine visibility of each button
567
- var vl;
568
- var vr;
569
 
570
- // Single image, no browse buttons
571
- if ( wppaOvlIdx == -1 ) {
572
- var vl = 'visibility:hidden;';
573
- var vr = 'visibility:hidden;';
574
- }
575
- // One out of a set
576
- else {
577
-
578
- // NOT first, show prev button
579
- if ( wppaOvlIdx != 0 ) {
580
- vl = 'visibility:visible;';
581
- }
582
-
583
- // NOT last, show next button
584
- if ( wppaOvlIdx != ( wppaOvlUrls.length-1 ) ) {
585
- vr = 'visibility:visible;';
586
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
587
  }
588
 
589
- // The prev button
590
- html += '<img' +
591
- ' id="wppa-ovl-prev-btn"' +
592
- ' src="'+wppaImageDirectory+'prev-'+wppaOvlTheme+'.gif"' +
593
- ' style="' +
594
- 'position:absolute;' +
595
- 'z-index:100101;' +
596
- 'width:' + wppaLeftRightSymbolSize + 'px;' +
597
- ( wppaLeftRightSymbolBradius ? 'border-radius:' + wppaLeftRightSymbolBradius + 'px;' : '' ) +
598
- 'top:50%;' +
599
- 'margin-top:-' + ( wppaLeftRightSymbolSize/2 ) + 'px;' +
600
- 'left:1px;' +
601
- vl + ';' +
602
- 'box-shadow:none;' +
603
- ( showNav ? 'opacity:1;' : 'opacity:0;' ) +
604
- '"' +
605
- ' onclick="wppaOvlShowPrev()"' +
606
- ' ontouchend="wppaOvlShowPrev()"' +
607
- ' onmouseover="jQuery(this).stop().fadeTo(200,1);"' +
608
- ' onmouseout="jQuery(this).stop().fadeTo(200,0);"' +
609
- ' ontouchstart="jQuery(this).stop().fadeTo(200,1);"' +
610
- ' onload="jQuery(this).stop().fadeTo(5000,0);"' +
611
- ' />';
612
-
613
- // The next button
614
- html += '<img' +
615
- ' id="wppa-ovl-next-btn"' +
616
- ' src="'+wppaImageDirectory+'next-'+wppaOvlTheme+'.gif"' +
617
- ' style="' +
618
- 'position:absolute;' +
619
- 'z-index:100101;' +
620
- 'width:' + wppaLeftRightSymbolSize + 'px;' +
621
- ( wppaLeftRightSymbolBradius ? 'border-radius:' + wppaLeftRightSymbolBradius + 'px;' : '' ) +
622
- 'top:50%;' +
623
- 'margin-top:-' + ( wppaLeftRightSymbolSize/2 ) + 'px;' +
624
- 'right:1px;' +
625
- vr + ';' +
626
- 'box-shadow:none;' +
627
- ( showNav ? 'opacity:1;' : 'opacity:0;' ) +
628
- '"' +
629
- ' onclick="wppaOvlShowNext()"' +
630
- ' ontouchend="wppaOvlShowNext()"' +
631
- ' onmouseover="jQuery(this).stop().fadeTo(200,1);"' +
632
- ' onmouseout="jQuery(this).stop().fadeTo(200,0);"' +
633
- ' ontouchstart="jQuery(this).stop().fadeTo(200,1);"' +
634
- ' onload="jQuery(this).stop().fadeTo(5000,0);"' +
635
- ' />';
636
-
637
  // Close the #img-sb-img-cont
638
  html += '</div>';
639
 
640
  // The subtext container
641
- wppaOvlIsSingle = ( wppaOvlIdx == -1 );
642
  var showCounter = ! wppaOvlIsSingle && wppaOvlShowCounter;
643
  html += '<div id="wppa-overlay-txt-container"' +
644
  ' style="' +
@@ -668,40 +675,37 @@ wppaHasAudio = wppaOvlAudioHtml != '';
668
  '"' +
669
  ' >' +
670
  ( showCounter ? ( wppaOvlIdx + 1 ) + '/' + wppaOvlUrls.length + '<br />' : '' ) +
671
- wppaOvlTitle +
672
  '</div>';
673
  '</div>';
674
 
675
-
676
  jQuery( '#wppa-overlay-ic' ).html( html );
677
 
678
- // Remove spinner
679
- jQuery( '#wppa-overlay-sp' ).css( { visibility: 'hidden' } );
680
-
681
  // Size
682
  wppaOvlResize();
683
 
684
  // Done!
685
- wppaOvlFirst = false;
686
  return false;
687
  }
688
  }
689
 
690
  // Adjust display sizes
691
  function wppaOvlSize( speed ) {
 
692
 
693
  var img = document.getElementById( 'wppa-overlay-img' ); // Do NOT jquerify this:
694
  var txt = document.getElementById( 'wppa-overlay-txt' ); // jQuery does not support .naturalHeight etc.
695
 
696
  // Are we still visible?
697
  if ( ! img || ! txt || jQuery('#wppa-overlay-bg').css('display') == 'none' ) {
698
- wppaConsoleLog('Lb quitted');
699
  return;
700
  }
701
 
702
  // Full screen?
703
  if ( wppaOvlMode != 'normal' ) {
704
- wppaOvlShowFull();
705
  return;
706
  }
707
 
@@ -750,7 +754,6 @@ function wppaOvlSize( speed ) {
750
  }
751
 
752
  var mh; // max image height
753
- // var tch = document.getElementById( 'wppa-overlay-txt' ).clientHeight;
754
  var tch = jQuery( '#wppa-overlay-txt' ).height();
755
 
756
  if ( wppaOvlTxtHeight == 'auto' ) {
@@ -774,9 +777,9 @@ function wppaOvlSize( speed ) {
774
  }
775
 
776
  // Save new image width and height
777
- var done = wppaSavedImageWidth == wid;
778
 
779
- if ( wid <= 240 ) {
780
  wid = 240;
781
  nh = 180;
782
  nw = 240;
@@ -811,29 +814,38 @@ function wppaOvlSize( speed ) {
811
  if ( ! done ) {
812
  setTimeout( function(){ wppaOvlSize(wppaOvlAnimSpeed) }, speed + 100 );
813
  wppaConsoleLog( 'Not done '+wppaOvlIdx+' saved='+wppaSavedImageWidth+', wid='+wid+', cw='+cw+', nw='+nw+
814
- ', img complete='+document.getElementById( 'wppa-overlay-img' ).complete, 'force' );
 
 
 
 
 
 
 
815
  }
816
- else wppaConsoleLog( 'Done '+wppaOvlIdx, 'force' );
817
  return true;
818
  }
819
 
820
  // Show fullscreen lightbox image
821
- function wppaOvlShowFull() {
 
822
 
823
  var img;
824
  var natWidth;
825
  var natHeight;
826
 
827
- // Find out if the picture is more portrait than the screen
828
  if ( wppaOvlIsVideo ) {
829
  img = document.getElementById( 'wppa-overlay-img' );
830
- natWidth = wppaOvlVideoNaturalWidth;
831
- natHeight = wppaOvlVideoNaturalHeight;
832
  }
833
  else {
834
  img = document.getElementById( 'wppa-overlay-img' );
835
  if ( ! img || ! img.complete ) {
836
- setTimeout( 'wppaOvlShowFull()', 10 ); // Wait for load complete
 
 
837
  return;
838
  }
839
  natWidth = img.naturalWidth;
@@ -919,25 +931,29 @@ function wppaOvlShowFull() {
919
  // This function is called after a timeout to update fullsize photo id.
920
  // Used to determine if a video/audio must restart
921
  function wppaOvlUpdateFsId() {
 
 
922
  wppaOvlFsPhotoId = wppaPhotoId;
923
  }
924
 
925
  // Start audio on the lightbox view
926
  function wppaOvlStartAudio() {
 
927
 
928
  // Due to a bug in jQuery ( jQuery.play() does not exist ), must do myself:
929
  var elm = document.getElementById( 'wppa-overlay-audio' );
930
  if ( elm ) {
931
  if ( typeof( elm.play ) == 'function' ) {
932
  elm.play();
933
- // wppaConsoleLog('Audio play '+'wppa-overlay-audio', 'force');
934
  }
935
  }
936
  }
937
 
938
  // Step through the ring of fullscreen modes
939
  function wppaOvlStepMode() {
940
- wppaConsoleLog('StepMode from '+wppaOvlMode);
 
941
  var modes = new Array( 'normal', 'padded', 'stretched', 'clipped', 'realsize', 'padded' );
942
  var i = 0;
943
  while ( i < modes.length ) {
@@ -952,7 +968,9 @@ wppaConsoleLog('StepMode from '+wppaOvlMode);
952
 
953
  // Start / stop lightbox slideshow
954
  function wppaOvlStartStop() {
955
- //wppaConsoleLog('wppaOvlStartStop called. Running='+wppaOvlRunning, 'force');
 
 
956
  if ( wppaOvlRunning ) {
957
 
958
  // Stop it
@@ -975,6 +993,8 @@ function wppaOvlStartStop() {
975
  }
976
  }
977
  }
 
 
978
  else {
979
 
980
  // Swap button image
@@ -988,7 +1008,7 @@ function wppaOvlStartStop() {
988
 
989
  // Start lb slideshow
990
  function wppaOvlRun() {
991
- //wppaConsoleLog( 'wppaOvlRun, running='+wppaOvlRunning, 'force' );
992
 
993
  // Already running?
994
  if ( ! wppaOvlRunning ) return;
@@ -1004,7 +1024,7 @@ function wppaOvlRun() {
1004
  var elm = document.getElementById( 'wppa-overlay-img' );
1005
  if ( elm ) {
1006
  if ( ! elm.complete ) {
1007
- wppaConsoleLog( 'Wait during run', 'force' );
1008
  setTimeout( 'wppaOvlRun()', 500 );
1009
  return;
1010
  }
@@ -1070,6 +1090,7 @@ wppaConsoleLog( 'wppaOvlHide' );
1070
 
1071
  // Remove kb handler
1072
  jQuery( document ).off( 'keydown', wppaOvlKeyboardHandler );
 
1073
 
1074
  // Reset switches
1075
  wppaOvlFirst = true;
@@ -1080,6 +1101,8 @@ wppaConsoleLog( 'wppaOvlHide' );
1080
 
1081
  // Perform onclick action
1082
  function wppaOvlOnclick( event ) {
 
 
1083
  switch ( wppaOvlOnclickType ) {
1084
  case 'none':
1085
  break;
@@ -1156,25 +1179,14 @@ wppaConsoleLog( 'wppaInitOverlay' );
1156
  // Change to: <a onclick="myproc(); wppaOvlResize()" >Show Details</a>
1157
  // Isn't it simple?
1158
  function wppaOvlResize() {
1159
- // return;
1160
- wppaConsoleLog( 'wppaOvlResize', 'force' );
1161
 
1162
- // After resizing, the number of lines may have changed
1163
- // setTimeout( 'wppaOvlSize( '+wppaOvlAnimSpeed+' )', 50 );
1164
  setTimeout( 'wppaOvlSize( '+wppaOvlAnimSpeed+' )', 100 );
1165
- // setTimeout( 'wppaOvlSize( '+wppaOvlAnimSpeed+' )', 150 );
1166
- // setTimeout( 'wppaOvlSize( '+wppaOvlAnimSpeed+' )', 1500 );
1167
-
1168
  if ( wppaOvlAudioStart && ! wppaOvlAudioPlaying ) {
1169
- setTimeout( 'wppaOvlStartAudio()', 1510 );
1170
  }
1171
-
1172
- // if ( jQuery('#wppa-overlay-bg').css('display') == 'none' ) {
1173
- // wppaConsoleLog('Lb quitted');
1174
- // return;
1175
- // }
1176
-
1177
- //setTimeout('wppaOvlResize()', 100);
1178
  }
1179
 
1180
 
3
  // Conatins lightbox modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
+ var wppaLightboxVersion = '6.2.15';
7
 
8
+ // Global inits
9
  var wppaNormsBtnOpac = 1;
 
10
  var wppaIsVideo = false;
11
  var wppaHasAudio = false;
12
  var wppaOvlImgs = [];
13
+ var wppaKbHandlerInstalled = false;
14
 
15
  // Global size specs
16
+ var wppaSavedContainerWidth;
17
+ var wppaSavedContainerHeight;
18
+ var wppaSavedMarginLeft;
19
+ var wppaSavedMarginTop;
20
+ var wppaSavedImageWidth;
21
+ var wppaSavedImageHeight;
22
 
23
  // Initial initialization
24
  jQuery( document ).ready(function( e ) {
37
  // Keyboard handler
38
  function wppaOvlKeyboardHandler( e ) {
39
 
40
+ e.preventDefault();
41
+
42
  var keycode;
43
  var escapeKey;
44
 
73
  wppaOvlShowNext();
74
  break;
75
  case 's':
 
76
  wppaOvlStartStop();
77
  break;
78
  case 'd':
84
  wppaOvlFull();
85
  break;
86
  }
87
+
88
+ return false;
89
  }
90
 
91
  // Switch to fullscreen mode
92
  function wppaOvlFull() {
93
+ wppaConsoleLog( 'wppaOvlFull' );
94
+
95
  var oldMode = wppaOvlMode;
96
  wppaOvlStepMode();
97
  var elem = document.getElementById('wppa-overlay-ic');
120
 
121
  // Switch to normal screen mode
122
  function wppaOvlNorm() {
123
+ wppaConsoleLog( 'wppaOvlNorm' );
124
+
125
  wppaOvlMode = 'normal';
126
  if (document.cancelFullScreen) {
127
  document.cancelFullScreen();
133
  setTimeout( 'wppaOvlShow( '+wppaOvlIdx+' )', 1000 );
134
  }
135
 
136
+ // Prepare the display of the lightbox overlay.
137
+ // arg is either numeric ( index to current lightbox set ) or
138
+ // 'this' for a single image or for the first of a set
 
 
139
  function wppaOvlShow( arg ) {
140
+ wppaConsoleLog( 'wppaOvlShow arg='+arg );
141
 
142
+ // Do the setup right after the invocation of the lightbox
143
  if ( wppaOvlFirst ) {
144
 
145
  // Prevent Weaver ii from hiding us
149
  jQuery( '#wppa-overlay-bg' ).fadeTo( 3, wppaOvlOpacity );
150
 
151
  // Install keyboard handler
152
+ if ( ! wppaKbHandlerInstalled ) {
153
+ jQuery( document ).on('keydown', wppaOvlKeyboardHandler );
154
+ wppaKbHandlerInstalled = true;
155
+ }
156
 
157
  // Stop all slideshows
158
  var occ = 0;
160
  occ++;
161
  wppaStopShow( occ );
162
  }
 
 
 
 
 
 
 
163
 
164
+ // Adjust background size
165
+ jQuery( '#wppa-overlay-bg' ).css({
166
+ width:window.innerWidth,
167
+ height:window.innerHeight,
168
+ });
 
169
  }
 
 
 
 
 
 
170
 
171
+ // If arg = 'this', setup the array of data
172
+ if ( typeof( arg ) == 'object' ) {
173
+
174
+ // Init the set
175
+ wppaOvlUrls = [];
176
+ wppaOvlTitles = [];
177
+ wppaOvlVideoHtmls = [];
178
+ wppaOvlAudioHtmls = [];
179
+ wppaOvlVideoNaturalWidths = [];
180
+ wppaOvlVideoNaturalHeights = [];
181
+ wppaOvlImgs = [];
182
+ wppaOvlIdx = 0;
183
+
184
+ // Do we use rel or data-rel?
 
 
 
 
 
 
 
 
 
 
 
 
 
185
  var rel;
186
  if ( arg.rel ) {
187
  rel = arg.rel;
193
  rel = false;
194
  }
195
 
196
+ // Are we in a set?
197
  var temp = rel.split( '[' );
198
 
199
+ // We are in a set if temp[1] is defined
200
+ if ( temp[1] ) {
201
+ var setname = temp[1];
202
+ var anchors = jQuery( 'a' );
 
 
 
 
 
 
203
  var anchor;
204
+ var i, j = 0;
 
205
 
206
  // Save the set
207
+ for ( i = 0; i < anchors.length; i++ ) {
208
  anchor = anchors[i];
 
 
 
 
209
  if ( jQuery( anchor ).attr( 'data-rel' ) ) {
210
  temp = jQuery( anchor ).attr( 'data-rel').split( "[" );
211
  }
223
  }
224
  wppaOvlVideoHtmls[j] = jQuery( anchor ).attr( 'data-videohtml' ) ? decodeURI( jQuery( anchor ).attr( 'data-videohtml' ) ) : '';
225
  wppaOvlAudioHtmls[j] = jQuery( anchor ).attr( 'data-audiohtml' ) ? decodeURI( jQuery( anchor ).attr( 'data-audiohtml' ) ) : '';
 
226
  wppaOvlVideoNaturalWidths[j] = jQuery( anchor ).attr( 'data-videonatwidth' ) ? jQuery( anchor ).attr( 'data-videonatwidth' ) : '';
227
  wppaOvlVideoNaturalHeights[j] = jQuery( anchor ).attr( 'data-videonatheight' ) ? jQuery( anchor ).attr( 'data-videonatheight' ) : '';
228
+ if ( anchor.href == arg.href ) {
 
 
 
229
  wppaOvlIdx = j; // Current index
 
 
 
 
 
 
 
 
230
  }
231
  j++;
232
  }
233
  }
234
  }
235
  }
236
+
237
+ // Single image, treat as set with one element
238
+ else {
239
+ wppaOvlUrls[0] = arg.href;
240
+ if ( jQuery( arg ).attr( 'data-lbtitle' ) ) {
241
+ wppaOvlTitles[0] = wppaRepairScriptTags( jQuery( arg ).attr( 'data-lbtitle' ) );
242
+ }
243
+ else {
244
+ wppaOvlTitles[0] = wppaRepairScriptTags( arg.title );
245
+ }
246
+ wppaOvlVideoHtmls[0] = jQuery( arg ).attr( 'data-videohtml' ) ? decodeURI( jQuery( arg ).attr( 'data-videohtml' ) ) : '';
247
+ wppaOvlAudioHtmls[0] = jQuery( arg ).attr( 'data-audiohtml' ) ? decodeURI( jQuery( arg ).attr( 'data-audiohtml' ) ) : '';
248
+ wppaOvlVideoNaturalWidths[0] = jQuery( arg ).attr( 'data-videonatwidth' ) ? jQuery( arg ).attr( 'data-videonatwidth' ) : '';
249
+ wppaOvlVideoNaturalHeights[0] = jQuery( arg ).attr( 'data-videonatheight' ) ? jQuery( arg ).attr( 'data-videonatheight' ) : '';
250
+ wppaOvlImgs[0]
251
+ wppaOvlIdx = 0;
252
  }
253
+ }
254
+
255
+ // Arg is numeric
256
+ else {
257
+ wppaOvlIdx = arg;
258
  }
259
 
260
+ // Now start the actual function
261
+ // if ( wppaOvlFirst ) {
262
+ setTimeout( function(){ _wppaOvlShow( wppaOvlIdx )}, 100 );
263
+ // }
264
+ // else {
265
+ // _wppaOvlShow( wppaOvlIdx );
266
+ // }
267
+ }
268
+
269
+ // Show the lightbox overlay.
270
+ // idx is the numeric index to current lightbox set
271
+ function _wppaOvlShow( idx ) {
272
+ wppaConsoleLog( '_wppaOvlShow, idx='+idx );
273
+
274
+ // Preload current image
275
+ if ( wppaOvlUrls[idx].length > 0 ) { // Not an empty url
276
+ wppaOvlImgs[idx] = new Image();
277
+ wppaOvlImgs[idx].src = wppaOvlUrls[idx]; // Preload
278
+ wppaConsoleLog( 'Preloading '+(idx+1)+'/'+wppaOvlUrls.length+' (current)' );
279
+ if ( ! wppaOvlImgs[idx].complete ) {
280
+ wppaConsoleLog( 'Retrying' );
281
+ setTimeout( '_wppaOvlShow('+idx+')', 100 );
282
+ return;
283
+ }
284
+ }
285
+
286
+ var next;
287
+ var prev;
288
+
289
+ // Preload next
290
+ if ( wppaOvlIdx == ( wppaOvlUrls.length-1 ) ) {
291
+ next = 0;
292
+ }
293
+ else {
294
+ next = wppaOvlIdx + 1;
295
+ }
296
+ wppaOvlImgs[next] = new Image();
297
+ wppaOvlImgs[next].src = wppaOvlUrls[next]; // Preload
298
+ wppaConsoleLog( 'Preloading > '+(next+1) );
299
+
300
+ // Preload previous ( for hitting the prev button )
301
+ // Only when in browsemode
302
+ if ( ! wppaOvlRunning ) {
303
+ if ( wppaOvlIdx == 0 ) {
304
+ prev = wppaOvlUrls.length-1;
305
+ }
306
+ else {
307
+ prev = wppaOvlIdx - 1;
308
+ }
309
+ wppaOvlImgs[prev] = new Image();
310
+ wppaOvlImgs[prev].src = wppaOvlUrls[prev]; // Preload
311
+ wppaConsoleLog( 'Preloading < '+(prev+1) );
312
+ }
313
 
314
+ // Find photo id and bump its viewcount
315
+ wppaPhotoId = wppaUrlToId( wppaOvlUrls[idx] );
316
  _bumpViewCount( wppaPhotoId );
317
 
318
+ // Find handy switches
319
+ wppaIsVideo = wppaOvlVideoHtmls[idx] != '';
320
+ wppaHasAudio = wppaOvlAudioHtmls[idx] != '';
321
+
322
+ // A single image?
323
+ wppaOvlIsSingle = ( wppaOvlUrls.length == 1 );
324
 
325
  // Fullsize?
326
  if ( wppaOvlMode != 'normal' ) {
327
  var html;
328
 
 
 
 
329
  // Fullsize Video
330
  if ( wppaIsVideo ) {
331
  html =
339
  ' onpause="wppaOvlVideoPlaying = false;"' +
340
  ' onplay="wppaOvlVideoPlaying = true;"' +
341
  ' style="border:none; width:'+jQuery( window ).width()+'px; box-shadow:none; position:absolute;" >'+
342
+ wppaOvlVideoHtmls[idx]+
343
  '</video>'+
344
  '<div style="height: 20px; width: 100%; position:absolute; top:0; left:0;" onmouseover="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'visible\');" onmouseout="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'hidden\');wppaShowLegenda=\'hidden\';" >';
345
  if ( wppaOvlShowLegenda ) {
361
  ' ontouchend="wppaTouchEnd( event );"'+
362
  ' ontouchmove="wppaTouchMove( event );"'+
363
  ' ontouchcancel="wppaTouchCancel( event );"'+
364
+ ' src="'+wppaOvlUrls[idx]+'"'+
365
  ' style="border:none; width:'+jQuery( window ).width()+'px; visibility:hidden; box-shadow:none; position:absolute;"'+
366
  ' />';
367
  if ( wppaHasAudio ) {
382
  '"' +
383
  ' controls' +
384
  ' >' +
385
+ wppaOvlAudioHtmls[idx] +
386
  '</audio>';
387
  }
388
  html +=
418
  }
419
 
420
  wppaOvlIsVideo = wppaIsVideo;
421
+ setTimeout( 'wppaOvlFormatFull()', 10 );
422
  if ( wppaIsVideo || wppaHasAudio ) {
423
  setTimeout( 'wppaOvlUpdateFsId()', 2000 );
424
  }
436
  wppaPhotoId = 0;
437
  wppaStopVideo( 0 );
438
  var txtcol = wppaOvlTheme == 'black' ? '#a7a7a7' : '#272727'; // Normal font
439
+ if ( wppaOvlFontColor ) {
440
+ txtcol = wppaOvlFontColor;
441
+ }
442
+ var showNav = wppaOvlUrls.length > 1;
443
 
444
  // Initial sizing of image container ( contains image, borders and subtext )
445
  jQuery( '#wppa-overlay-ic' ).css( {
446
  width:wppaSavedContainerWidth,
 
447
  marginLeft:wppaSavedMarginLeft,
448
  marginTop:wppaSavedMarginTop,
449
  });
483
  'padding:0;' +
484
  '"' +
485
  ' >' +
486
+ wppaOvlVideoHtmls[idx] +
487
  '</video>';
488
 
489
  wppaOvlIsVideo = true;
497
  ' ontouchend="wppaTouchEnd( event );"' +
498
  ' ontouchmove="wppaTouchMove( event );"' +
499
  ' ontouchcancel="wppaTouchCancel( event );"' +
500
+ ' src="'+wppaOvlUrls[idx]+'"' +
501
  ' style="' +
502
  'border-width:' + wppaOvlBorderWidth + 'px ' + wppaOvlBorderWidth + 'px 0;' +
503
  'border-style:solid;' +
536
  '"' +
537
  ' controls' +
538
  ' >' +
539
+ wppaOvlAudioHtmls[idx] +
540
  '</audio>';
541
  }
542
  wppaOvlIsVideo = false;
555
  'cursor:pointer;' +
556
  'height:' + wppaStopSymbolSize + 'px;' +
557
  ( wppaStopSumbolBradius > 0 ? 'border-radius:' + wppaStopSumbolBradius + 'px;' : '' ) +
558
+ ( wppaOvlFirst ? 'opacity:1;' : 'opacity:0;' ) +
559
  '"' +
560
  ' onclick="wppaOvlHide()"' +
561
  ' ontouchend="wppaOvlHide()"' +
566
  ' />';
567
 
568
  // The start/stop button
569
+ if ( wppaOvlShowStartStop && ! wppaOvlIsSingle ) {
570
  html += '<img' +
571
  ' id="wppa-ovl-start-stop-btn"' +
572
  ' src="'+( wppaOvlRunning ? wppaPauseSymbolUrl : wppaStartSymbolUrl )+'"' +
579
  'margin-top:' + ( -wppaStartPauseSymbolSize/2 ) + 'px;' +
580
  'left:50%;' +
581
  'margin-left:' + ( -wppaStartPauseSymbolSize/2 ) + 'px;' +
582
+ ( wppaOvlIdx == -1 ? 'visibility:hidden;' : '' ) +
583
  'box-shadow:none;' +
584
+ ( wppaOvlFirst ? 'opacity:1;' : 'opacity:0;' ) +
585
  '"' +
586
  ' onclick="wppaOvlStartStop()"' +
587
  ' ontouchend="wppaOvlStartStop()"' +
592
  ' />';
593
  }
594
 
595
+ // Show browse buttons only if we are in a set
596
+ if ( ! wppaOvlIsSingle ) {
 
 
597
 
598
+ // The prev button
599
+ html += '<img' +
600
+ ' id="wppa-ovl-prev-btn"' +
601
+ ' src="'+wppaImageDirectory+'prev-'+wppaOvlTheme+'.gif"' +
602
+ ' style="' +
603
+ 'position:absolute;' +
604
+ 'z-index:100101;' +
605
+ 'width:' + wppaLeftRightSymbolSize + 'px;' +
606
+ ( wppaLeftRightSymbolBradius ? 'border-radius:' + wppaLeftRightSymbolBradius + 'px;' : '' ) +
607
+ 'top:50%;' +
608
+ 'margin-top:-' + ( wppaLeftRightSymbolSize/2 ) + 'px;' +
609
+ 'left:1px;' +
610
+ 'box-shadow:none;' +
611
+ ( wppaOvlFirst ? 'opacity:1;' : 'opacity:0;' ) +
612
+ '"' +
613
+ ' onclick="wppaOvlShowPrev()"' +
614
+ ' ontouchend="wppaOvlShowPrev()"' +
615
+ ' onmouseover="jQuery(this).stop().fadeTo(200,1);"' +
616
+ ' onmouseout="jQuery(this).stop().fadeTo(200,0);"' +
617
+ ' ontouchstart="jQuery(this).stop().fadeTo(200,1);"' +
618
+ ' onload="jQuery(this).stop().fadeTo(5000,0);"' +
619
+ ' />';
620
+
621
+ // The next button
622
+ html += '<img' +
623
+ ' id="wppa-ovl-next-btn"' +
624
+ ' src="'+wppaImageDirectory+'next-'+wppaOvlTheme+'.gif"' +
625
+ ' style="' +
626
+ 'position:absolute;' +
627
+ 'z-index:100101;' +
628
+ 'width:' + wppaLeftRightSymbolSize + 'px;' +
629
+ ( wppaLeftRightSymbolBradius ? 'border-radius:' + wppaLeftRightSymbolBradius + 'px;' : '' ) +
630
+ 'top:50%;' +
631
+ 'margin-top:-' + ( wppaLeftRightSymbolSize/2 ) + 'px;' +
632
+ 'right:1px;' +
633
+ 'box-shadow:none;' +
634
+ ( wppaOvlFirst ? 'opacity:1;' : 'opacity:0;' ) +
635
+ '"' +
636
+ ' onclick="wppaOvlShowNext()"' +
637
+ ' ontouchend="wppaOvlShowNext()"' +
638
+ ' onmouseover="jQuery(this).stop().fadeTo(200,1);"' +
639
+ ' onmouseout="jQuery(this).stop().fadeTo(200,0);"' +
640
+ ' ontouchstart="jQuery(this).stop().fadeTo(200,1);"' +
641
+ ' onload="jQuery(this).stop().fadeTo(5000,0);"' +
642
+ ' />';
643
  }
644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
645
  // Close the #img-sb-img-cont
646
  html += '</div>';
647
 
648
  // The subtext container
 
649
  var showCounter = ! wppaOvlIsSingle && wppaOvlShowCounter;
650
  html += '<div id="wppa-overlay-txt-container"' +
651
  ' style="' +
675
  '"' +
676
  ' >' +
677
  ( showCounter ? ( wppaOvlIdx + 1 ) + '/' + wppaOvlUrls.length + '<br />' : '' ) +
678
+ wppaOvlTitles[idx] +
679
  '</div>';
680
  '</div>';
681
 
682
+ // Insert the html
683
  jQuery( '#wppa-overlay-ic' ).html( html );
684
 
 
 
 
685
  // Size
686
  wppaOvlResize();
687
 
688
  // Done!
 
689
  return false;
690
  }
691
  }
692
 
693
  // Adjust display sizes
694
  function wppaOvlSize( speed ) {
695
+ wppaConsoleLog( 'wppaOvlSize' );
696
 
697
  var img = document.getElementById( 'wppa-overlay-img' ); // Do NOT jquerify this:
698
  var txt = document.getElementById( 'wppa-overlay-txt' ); // jQuery does not support .naturalHeight etc.
699
 
700
  // Are we still visible?
701
  if ( ! img || ! txt || jQuery('#wppa-overlay-bg').css('display') == 'none' ) {
702
+ wppaConsoleLog( 'Lb quitted' );
703
  return;
704
  }
705
 
706
  // Full screen?
707
  if ( wppaOvlMode != 'normal' ) {
708
+ wppaOvlFormatFull();
709
  return;
710
  }
711
 
754
  }
755
 
756
  var mh; // max image height
 
757
  var tch = jQuery( '#wppa-overlay-txt' ).height();
758
 
759
  if ( wppaOvlTxtHeight == 'auto' ) {
777
  }
778
 
779
  // Save new image width and height
780
+ var done = ( wppaSavedImageWidth - wid < 3 && wid - wppaSavedImageWidth < 3 );
781
 
782
+ if ( wid <= 10 ) {
783
  wid = 240;
784
  nh = 180;
785
  nw = 240;
814
  if ( ! done ) {
815
  setTimeout( function(){ wppaOvlSize(wppaOvlAnimSpeed) }, speed + 100 );
816
  wppaConsoleLog( 'Not done '+wppaOvlIdx+' saved='+wppaSavedImageWidth+', wid='+wid+', cw='+cw+', nw='+nw+
817
+ ', img complete='+document.getElementById( 'wppa-overlay-img' ).complete );
818
+ }
819
+ else {
820
+
821
+ // Remove spinner
822
+ jQuery( '#wppa-overlay-sp' ).css( { visibility: 'hidden' } );
823
+ wppaConsoleLog( 'Done '+wppaOvlIdx );
824
+ wppaOvlFirst = false;
825
  }
 
826
  return true;
827
  }
828
 
829
  // Show fullscreen lightbox image
830
+ function wppaOvlFormatFull() {
831
+ wppaConsoleLog( 'wppaOvlFormatFull' );
832
 
833
  var img;
834
  var natWidth;
835
  var natHeight;
836
 
837
+ // Find the natural image sizes
838
  if ( wppaOvlIsVideo ) {
839
  img = document.getElementById( 'wppa-overlay-img' );
840
+ natWidth = wppaOvlVideoNaturalWidths[wppaOvlIdx];
841
+ natHeight = wppaOvlVideoNaturalHeights[wppaOvlIdx];
842
  }
843
  else {
844
  img = document.getElementById( 'wppa-overlay-img' );
845
  if ( ! img || ! img.complete ) {
846
+
847
+ // Wait for load complete
848
+ setTimeout( 'wppaOvlFormatFull()', 100 );
849
  return;
850
  }
851
  natWidth = img.naturalWidth;
931
  // This function is called after a timeout to update fullsize photo id.
932
  // Used to determine if a video/audio must restart
933
  function wppaOvlUpdateFsId() {
934
+ wppaConsoleLog( 'wppaOvlUpdateFsId' );
935
+
936
  wppaOvlFsPhotoId = wppaPhotoId;
937
  }
938
 
939
  // Start audio on the lightbox view
940
  function wppaOvlStartAudio() {
941
+ wppaConsoleLog( 'wppaOvlStartAudio' );
942
 
943
  // Due to a bug in jQuery ( jQuery.play() does not exist ), must do myself:
944
  var elm = document.getElementById( 'wppa-overlay-audio' );
945
  if ( elm ) {
946
  if ( typeof( elm.play ) == 'function' ) {
947
  elm.play();
948
+ wppaConsoleLog('Audio play '+'wppa-overlay-audio');
949
  }
950
  }
951
  }
952
 
953
  // Step through the ring of fullscreen modes
954
  function wppaOvlStepMode() {
955
+ wppaConsoleLog('wppaOvlStepMode from '+wppaOvlMode);
956
+
957
  var modes = new Array( 'normal', 'padded', 'stretched', 'clipped', 'realsize', 'padded' );
958
  var i = 0;
959
  while ( i < modes.length ) {
968
 
969
  // Start / stop lightbox slideshow
970
  function wppaOvlStartStop() {
971
+ wppaConsoleLog('wppaOvlStartStop called. Running='+wppaOvlRunning);
972
+
973
+ // Running?
974
  if ( wppaOvlRunning ) {
975
 
976
  // Stop it
993
  }
994
  }
995
  }
996
+
997
+ // Not running
998
  else {
999
 
1000
  // Swap button image
1008
 
1009
  // Start lb slideshow
1010
  function wppaOvlRun() {
1011
+ wppaConsoleLog( 'wppaOvlRun, running='+wppaOvlRunning );
1012
 
1013
  // Already running?
1014
  if ( ! wppaOvlRunning ) return;
1024
  var elm = document.getElementById( 'wppa-overlay-img' );
1025
  if ( elm ) {
1026
  if ( ! elm.complete ) {
1027
+ wppaConsoleLog( 'Wait during run' );
1028
  setTimeout( 'wppaOvlRun()', 500 );
1029
  return;
1030
  }
1090
 
1091
  // Remove kb handler
1092
  jQuery( document ).off( 'keydown', wppaOvlKeyboardHandler );
1093
+ wppaKbHandlerInstalled = false;
1094
 
1095
  // Reset switches
1096
  wppaOvlFirst = true;
1101
 
1102
  // Perform onclick action
1103
  function wppaOvlOnclick( event ) {
1104
+ wppaConsoleLog( 'wppaOvlOnClick' );
1105
+
1106
  switch ( wppaOvlOnclickType ) {
1107
  case 'none':
1108
  break;
1179
  // Change to: <a onclick="myproc(); wppaOvlResize()" >Show Details</a>
1180
  // Isn't it simple?
1181
  function wppaOvlResize() {
1182
+ wppaConsoleLog( 'wppaOvlResize' );
 
1183
 
1184
+ // After resizing, the number of lines may have changed
 
1185
  setTimeout( 'wppaOvlSize( '+wppaOvlAnimSpeed+' )', 100 );
1186
+
 
 
1187
  if ( wppaOvlAudioStart && ! wppaOvlAudioPlaying ) {
1188
+ setTimeout( 'wppaOvlStartAudio()', 1000 );
1189
  }
 
 
 
 
 
 
 
1190
  }
1191
 
1192
 
js/wppa-lightbox.min.js CHANGED
@@ -4,70 +4,77 @@
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
- var wppaLightboxVersion='6.2.14';var wppaNormsBtnOpac=1;var wppaIsVideo=false;var wppaHasAudio=false;var wppaOvlImgs=[];var wppaSavedContainerWidth;var wppaSavedContainerHeight;var wppaSavedMarginLeft;var wppaSavedMarginTop;var wppaSavedImageWidth;var wppaSavedImageHeight;jQuery(document).ready(function(e){wppaInitOverlay();});jQuery(window).resize(function(){jQuery("#wppa-overlay-bg").css({height:window.innerHeight,width:window.innerWidth,});wppaOvlResize(10);});function wppaOvlKeyboardHandler(e){var keycode;var escapeKey;if(e==null){keycode=event.keyCode;escapeKey=27;}else{keycode=e.keyCode;escapeKey=27;}
8
  var key=String.fromCharCode(keycode).toLowerCase();switch(keycode){case escapeKey:wppaStopVideo(mocc);wppaOvlHide();break;case 37:wppaOvlShowPrev();break;case 39:wppaOvlShowNext();break;}
9
- switch(key){case'p':wppaOvlShowPrev();break;case'n':wppaOvlShowNext();break;case's':wppaOvlStartStop();break;case'd':jQuery('#wppa-ovl-legenda-1').css('visibility','hidden');jQuery('#wppa-ovl-legenda-2').css('visibility','hidden');wppaShowLegenda='hidden';break;case'f':wppaOvlFull();break;}}
10
- function wppaOvlFull(){var oldMode=wppaOvlMode;wppaOvlStepMode();var elem=document.getElementById('wppa-overlay-ic');if(!elem)return;if(oldMode=='normal'){if(elem.requestFullscreen){elem.requestFullscreen();}else if(elem.mozRequestFullScreen){elem.mozRequestFullScreen();}else if(elem.webkitRequestFullscreen){elem.webkitRequestFullscreen();}
 
11
  setTimeout('wppaOvlShow( '+wppaOvlIdx+' )',1000);}
12
  if(wppaOvlMode=='normal'){if(document.cancelFullScreen){document.cancelFullScreen();}else if(document.mozCancelFullScreen){document.mozCancelFullScreen();}else if(document.webkitCancelFullScreen){document.webkitCancelFullScreen();}}
13
  jQuery('#wppa-ovl-legenda-1').html('');}
14
- function wppaOvlNorm(){wppaOvlMode='normal';if(document.cancelFullScreen){document.cancelFullScreen();}else if(document.mozCancelFullScreen){document.mozCancelFullScreen();}else if(document.webkitCancelFullScreen){document.webkitCancelFullScreen();}
15
  setTimeout('wppaOvlShow( '+wppaOvlIdx+' )',1000);}
16
- function wppaOvlShow(arg){if(wppaOvlFirst){jQuery('#weaver-final').removeClass('wvr-hide-bang');jQuery('#wppa-overlay-bg').fadeTo(3,wppaOvlOpacity);jQuery(document).on('keydown',wppaOvlKeyboardHandler);var occ=0;while(occ<wppaTopMoc){occ++;wppaStopShow(occ);}}
17
- jQuery('#wppa-overlay-bg').css({width:window.innerWidth,height:window.innerHeight,});if(wppaOvlFirst){setTimeout(function(){_wppaOvlShow(arg)},3);}
18
- else{_wppaOvlShow(arg);}}
19
- function _wppaOvlShow(arg){jQuery('#wppa-overlay-sp').css({left:(jQuery(window).width()/2)-16,top:(jQuery(window).height()/2)-16,visibility:'visible'});var href;if(parseInt(arg)==arg){if(arg!=-1){wppaOvlUrl=wppaOvlUrls[arg];wppaOvlTitle=wppaOvlTitles[arg];wppaOvlIdx=arg;wppaOvlVideoHtml=wppaOvlVideoHtmls[arg];wppaOvlAudioHtml=wppaOvlAudioHtmls[arg];wppaOvlVideoNaturalWidth=wppaOvlVideoNaturalWidths[arg];wppaOvlVideoNaturalHeight=wppaOvlVideoNaturalHeights[arg];}}
20
- else{wppaOvlIdx=-1;wppaOvlUrl=arg.href;if(jQuery(arg).attr('data-lbtitle')){wppaOvlTitle=wppaRepairScriptTags(jQuery(arg).attr('data-lbtitle'));}
21
- else{wppaOvlTitle=wppaRepairScriptTags(arg.title);}
22
- wppaOvlVideoHtml=jQuery(arg).attr('data-videohtml')?decodeURI(jQuery(arg).attr('data-videohtml')):'';wppaOvlAudioHtml=jQuery(arg).attr('data-audiohtml')?decodeURI(jQuery(arg).attr('data-audiohtml')):'';wppaOvlVideoNaturalWidth=jQuery(arg).attr('data-videonatwidth')?jQuery(arg).attr('data-videonatwidth'):'';wppaOvlVideoNaturalHeight=jQuery(arg).attr('data-videonatheight')?jQuery(arg).attr('data-videonatheight'):'';var rel;if(arg.rel){rel=arg.rel;}
23
  else if(jQuery(arg).attr('data-rel')){rel=jQuery(arg).attr('data-rel');}
24
  else{rel=false;}
25
- var temp=rel.split('[');if(temp[1]){wppaOvlUrls=[];wppaOvlTitles=[];wppaOvlVideoHtmls=[];wppaOvlAudioHtmls=[];wppaOvlVideoNaturalWidths=[];wppaOvlVideoNaturalHeights=[];wppaOvlImgs=[];var setname=temp[1];var anchors=jQuery('a');var anchor;var i,j=0;wppaOvlIdx=-1;for(i=0;i<anchors.length;i++){anchor=anchors[i];if(jQuery(anchor).attr('data-rel')){temp=jQuery(anchor).attr('data-rel').split("[");}
26
  else{temp=false;}
27
  if(temp.length>1){if(temp[0]=='wppa'&&temp[1]==setname){wppaOvlUrls[j]=anchor.href;if(jQuery(anchor).attr('data-lbtitle')){wppaOvlTitles[j]=wppaRepairScriptTags(jQuery(anchor).attr('data-lbtitle'));}
28
  else{wppaOvlTitles[j]=wppaRepairScriptTags(anchor.title);}
29
- wppaOvlVideoHtmls[j]=jQuery(anchor).attr('data-videohtml')?decodeURI(jQuery(anchor).attr('data-videohtml')):'';wppaOvlAudioHtmls[j]=jQuery(anchor).attr('data-audiohtml')?decodeURI(jQuery(anchor).attr('data-audiohtml')):'';wppaOvlVideoNaturalWidths[j]=jQuery(anchor).attr('data-videonatwidth')?jQuery(anchor).attr('data-videonatwidth'):'';wppaOvlVideoNaturalHeights[j]=jQuery(anchor).attr('data-videonatheight')?jQuery(anchor).attr('data-videonatheight'):'';wppaOvlImgs[j]=new Image();wppaOvlImgs[j].src=wppaOvlUrls[j];if(anchor.href==wppaOvlUrl){wppaOvlIdx=j;if(wppaOvlUrl.length>0){if(!wppaOvlImgs[j].complete){jQuery('#wppa-overlay-sp').css({visibility:'visible'});setTimeout(function(){_wppaOvlShow(arg)},100);return;}}}
30
  j++;}}}}
31
- else{wppaOvlUrls=false;wppaOvlTitles=false;wppaOvlVideoHtmls=false;wppaOvlVideoNaturalWidths=false;wppaOvlVideoNaturalHeights=false;wppaOvlIdx=-1;}}
32
- wppaPhotoId=wppaUrlToId(wppaOvlUrl);_bumpViewCount(wppaPhotoId);wppaIsVideo=wppaOvlVideoHtml!='';wppaHasAudio=wppaOvlAudioHtml!='';if(wppaOvlMode!='normal'){var html;if(wppaIsVideo){html='<div id="wppa-ovl-full-bg" style="position:fixed; width:'+jQuery(window).width()+'px; height:'+jQuery(window).height()+'px; left:0px; top:0px; text-align:center;" >'+'<video id="wppa-overlay-img" controls preload="metadata"'+
 
 
 
 
 
 
 
 
 
 
 
33
  (wppaOvlVideoStart?' autoplay':'')+' ontouchstart="wppaTouchStart( event, \'wppa-overlay-img\', -1 );"'+' ontouchend="wppaTouchEnd( event );"'+' ontouchmove="wppaTouchMove( event );"'+' ontouchcancel="wppaTouchCancel( event );"'+' onpause="wppaOvlVideoPlaying = false;"'+' onplay="wppaOvlVideoPlaying = true;"'+' style="border:none; width:'+jQuery(window).width()+'px; box-shadow:none; position:absolute;" >'+
34
- wppaOvlVideoHtml+'</video>'+'<div style="height: 20px; width: 100%; position:absolute; top:0; left:0;" onmouseover="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'visible\');" onmouseout="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'hidden\');wppaShowLegenda=\'hidden\';" >';if(wppaOvlShowLegenda){html+='<div id="wppa-ovl-legenda-2" style="position:fixed; left:0; top:0; background-color:'+(wppaOvlTheme=='black'?'#272727':'#a7a7a7')+'; color:'+(wppaOvlTheme=='black'?'#a7a7a7':'#272727')+'; visibility:'+wppaShowLegenda+';" >'+'Mode='+wppaOvlMode+'. '+(wppaOvlIsSingle?wppaOvlFullLegendaSingle:wppaOvlFullLegenda)+'</div>';}
35
  html+='</div>';'</div>';}
36
- else{html='<div id="wppa-ovl-full-bg" style="position:fixed; width:'+jQuery(window).width()+'px; height:'+jQuery(window).height()+'px; left:0px; top:0px; text-align:center;" >'+'<img id="wppa-overlay-img"'+' ontouchstart="wppaTouchStart( event, \'wppa-overlay-img\', -1 );"'+' ontouchend="wppaTouchEnd( event );"'+' ontouchmove="wppaTouchMove( event );"'+' ontouchcancel="wppaTouchCancel( event );"'+' src="'+wppaOvlUrl+'"'+' style="border:none; width:'+jQuery(window).width()+'px; visibility:hidden; box-shadow:none; position:absolute;"'+' />';if(wppaHasAudio){html+='<audio'+' id="wppa-overlay-audio"'+' class="wppa-overlay-audio"'+' data-from="wppa"'+' preload="metadata"'+
37
  ((wppaOvlAudioStart)?' autoplay':'')+' onpause="wppaOvlAudioPlaying = false;"'+' onplay="wppaOvlAudioPlaying = true;"'+' style="'+'width:100%;'+'position:absolute;'+'left:0px;'+'bottom:0px;'+'padding:0;'+'"'+' controls'+' >'+
38
- wppaOvlAudioHtml+'</audio>';}
39
  html+='<div style="height: 20px; width: 100%; position:absolute; top:0; left:0;" onmouseover="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'visible\');" onmouseout="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'hidden\');wppaShowLegenda=\'hidden\';" >';if(wppaOvlShowLegenda){html+='<div id="wppa-ovl-legenda-2" style="position:fixed; left:0; top:0; background-color:'+(wppaOvlTheme=='black'?'#272727':'#a7a7a7')+'; color:'+(wppaOvlTheme=='black'?'#a7a7a7':'#272727')+'; visibility:'+wppaShowLegenda+';" >'+'Mode='+wppaOvlMode+'. '+(wppaOvlIsSingle?wppaOvlFullLegendaSingle:wppaOvlFullLegenda)+'</div>';}
40
  html+='</div>';'</div>';}
41
  html+='<img'+' id="wppa-norms-btn"'+' src="'+wppaImageDirectory+'norms.png"'+' style="height:32px;z-index:100092;position:fixed;top:0;right:0;opacity:'+wppaNormsBtnOpac+'"'+' onclick="wppaOvlNorm()"'+' ontouchstart="wppaOvlNorm()"'+' onmouseover="jQuery(this).fadeTo(600,1);"'+' onmouseout="jQuery(this).fadeTo(600,0);wppaNormsBtnOpac=0;"'+' >';if((!wppaIsVideo&&!wppaHasAudio)||wppaOvlFsPhotoId!=wppaPhotoId||wppaPhotoId==0){wppaStopVideo(0);wppaStopAudio();jQuery('#wppa-overlay-ic').html(html);}
42
- wppaOvlIsVideo=wppaIsVideo;setTimeout('wppaOvlShowFull()',10);if(wppaIsVideo||wppaHasAudio){setTimeout('wppaOvlUpdateFsId()',2000);}
43
  else{wppaOvlFsPhotoId=0;}
44
  wppaOvlFirst=false;return false;}
45
- else{wppaOvlFsPhotoId=0;wppaPhotoId=0;wppaStopVideo(0);var txtcol=wppaOvlTheme=='black'?'#a7a7a7':'#272727';if(wppaOvlFontColor)txtcol=wppaOvlFontColor;var startstop=wppaOvlRunning?wppaStop:wppaStart;var showNav=(parseInt(arg)!=arg||arg==-1);jQuery('#wppa-overlay-ic').css({width:wppaSavedContainerWidth,marginLeft:wppaSavedMarginLeft,marginTop:wppaSavedMarginTop,});var html='';html+='<div id="img-sb-img-cont" style="position:relative;line-height:0;" >';if(wppaIsVideo){html+='<video'+' id="wppa-overlay-img"'+' preload="metadata"'+
 
46
  (wppaOvlVideoStart?' autoplay':'')+' onpause="wppaOvlVideoPlaying = false;"'+' onplay="wppaOvlVideoPlaying = true;"'+' ontouchstart="wppaTouchStart( event, \'wppa-overlay-img\', -1 );"'+' ontouchend="wppaTouchEnd( event );"'+' ontouchmove="wppaTouchMove( event );"'+' ontouchcancel="wppaTouchCancel( event );" '+' controls'+' style="'+'border-width:'+wppaOvlBorderWidth+'px '+wppaOvlBorderWidth+'px 0;'+'border-style:solid;'+'border-color:'+wppaOvlTheme+';'+'width:'+wppaSavedImageWidth+'px;'+'height:'+wppaSavedImageHeight+'px;'+'box-shadow:none;'+'box-sizing:content-box;'+'position:relative;'+'border-top-left-radius:'+wppaOvlRadius+'px;'+'border-top-right-radius:'+wppaOvlRadius+'px;'+'margin:0;'+'padding:0;'+'"'+' >'+
47
- wppaOvlVideoHtml+'</video>';wppaOvlIsVideo=true;}
48
- else{html+='<img'+' id="wppa-overlay-img"'+' ontouchstart="wppaTouchStart( event, \'wppa-overlay-img\', -1 );"'+' ontouchend="wppaTouchEnd( event );"'+' ontouchmove="wppaTouchMove( event );"'+' ontouchcancel="wppaTouchCancel( event );"'+' src="'+wppaOvlUrl+'"'+' style="'+'border-width:'+wppaOvlBorderWidth+'px '+wppaOvlBorderWidth+'px 0;'+'border-style:solid;'+'border-color:'+wppaOvlTheme+';'+'width:'+wppaSavedImageWidth+'px;'+'height:'+wppaSavedImageHeight+'px;'+'box-shadow:none;'+'box-sizing:content-box;'+'position:relative;'+'border-top-left-radius:'+wppaOvlRadius+'px;'+'border-top-right-radius:'+wppaOvlRadius+'px;'+'margin:0;'+'padding:0;'+'"'+' />';if(wppaHasAudio){html+='<audio'+' id="wppa-overlay-audio"'+' class="wppa-overlay-audio"'+' data-from="wppa"'+' preload="metadata"'+' onpause="wppaOvlAudioPlaying = false;"'+' onplay="wppaOvlAudioPlaying = true;"'+' style="'+'width:100%;'+'position:absolute;'+'box-shadow:none;'+'left:0;'+'bottom:0;'+'padding:0 '+wppaOvlBorderWidth+'px;'+'margin:0;'+'background-color:transparent;'+'box-sizing:border-box;'+'"'+' controls'+' >'+
49
- wppaOvlAudioHtml+'</audio>';}
50
  wppaOvlIsVideo=false;}
51
  html+='<img'+' id="wppa-overlay-qt-img"'+' src="'+wppaStopSymbolUrl+'"'+' style="'+'position:absolute;'+'z-index:100101;'+'right:'+wppaOvlBorderWidth+'px;'+'top:'+wppaOvlBorderWidth+'px;'+'box-shadow:none;'+'cursor:pointer;'+'height:'+wppaStopSymbolSize+'px;'+
52
  (wppaStopSumbolBradius>0?'border-radius:'+wppaStopSumbolBradius+'px;':'')+
53
- (showNav?'opacity:1;':'opacity:0;')+'"'+' onclick="wppaOvlHide()"'+' ontouchend="wppaOvlHide()"'+' onmouseover="jQuery(this).stop().fadeTo(200,0.8);"'+' onmouseout="jQuery(this).stop().fadeTo(200,0);"'+' ontouchstart="jQuery(this).stop().fadeTo(200,0.8);"'+' onload="jQuery(this).stop().fadeTo(5000,0);"'+' />';if(wppaOvlShowStartStop){html+='<img'+' id="wppa-ovl-start-stop-btn"'+' src="'+(wppaOvlRunning?wppaPauseSymbolUrl:wppaStartSymbolUrl)+'"'+' style="'+'height:'+wppaStartPauseSymbolSize+'px;'+
54
- (wppaStartPauseSymbolBradius>0?'border-radius:'+wppaStartPauseSymbolBradius+'px;':'')+'z-index:100101;'+'position:absolute;'+'top:50%;'+'margin-top:'+(-wppaStartPauseSymbolSize/2)+'px;'+'left:50%;'+'margin-left:'+(-wppaStartPauseSymbolSize/2)+'px;'+'box-shadow:none;'+
55
- (showNav?'opacity:1;':'opacity:0;')+'"'+' onclick="wppaOvlStartStop()"'+' ontouchend="wppaOvlStartStop()"'+' onmouseover="jQuery(this).stop().fadeTo(200,0.8);"'+' onmouseout="jQuery(this).stop().fadeTo(200,0);"'+' ontouchstart="jQuery(this).stop().fadeTo(200,0.8);"'+' onload="jQuery(this).stop().fadeTo(5000,0);"'+' />';}
56
- var vl;var vr;if(wppaOvlIdx==-1){var vl='visibility:hidden;';var vr='visibility:hidden;';}
57
- else{if(wppaOvlIdx!=0){vl='visibility:visible;';}
58
- if(wppaOvlIdx!=(wppaOvlUrls.length-1)){vr='visibility:visible;';}}
59
- html+='<img'+' id="wppa-ovl-prev-btn"'+' src="'+wppaImageDirectory+'prev-'+wppaOvlTheme+'.gif"'+' style="'+'position:absolute;'+'z-index:100101;'+'width:'+wppaLeftRightSymbolSize+'px;'+
60
- (wppaLeftRightSymbolBradius?'border-radius:'+wppaLeftRightSymbolBradius+'px;':'')+'top:50%;'+'margin-top:-'+(wppaLeftRightSymbolSize/2)+'px;'+'left:1px;'+
61
- vl+';'+'box-shadow:none;'+
62
- (showNav?'opacity:1;':'opacity:0;')+'"'+' onclick="wppaOvlShowPrev()"'+' ontouchend="wppaOvlShowPrev()"'+' onmouseover="jQuery(this).stop().fadeTo(200,1);"'+' onmouseout="jQuery(this).stop().fadeTo(200,0);"'+' ontouchstart="jQuery(this).stop().fadeTo(200,1);"'+' onload="jQuery(this).stop().fadeTo(5000,0);"'+' />';html+='<img'+' id="wppa-ovl-next-btn"'+' src="'+wppaImageDirectory+'next-'+wppaOvlTheme+'.gif"'+' style="'+'position:absolute;'+'z-index:100101;'+'width:'+wppaLeftRightSymbolSize+'px;'+
63
- (wppaLeftRightSymbolBradius?'border-radius:'+wppaLeftRightSymbolBradius+'px;':'')+'top:50%;'+'margin-top:-'+(wppaLeftRightSymbolSize/2)+'px;'+'right:1px;'+
64
- vr+';'+'box-shadow:none;'+
65
- (showNav?'opacity:1;':'opacity:0;')+'"'+' onclick="wppaOvlShowNext()"'+' ontouchend="wppaOvlShowNext()"'+' onmouseover="jQuery(this).stop().fadeTo(200,1);"'+' onmouseout="jQuery(this).stop().fadeTo(200,0);"'+' ontouchstart="jQuery(this).stop().fadeTo(200,1);"'+' onload="jQuery(this).stop().fadeTo(5000,0);"'+' />';html+='</div>';wppaOvlIsSingle=(wppaOvlIdx==-1);var showCounter=!wppaOvlIsSingle&&wppaOvlShowCounter;html+='<div id="wppa-overlay-txt-container"'+' style="'+'position:relative;'+'padding:10px;'+'background-color:'+wppaOvlTheme+';'+'color:'+txtcol+';'+'text-align:center;'+'font-family:'+wppaOvlFontFamily+';'+'font-size:'+wppaOvlFontSize+'px;'+'font-weight:'+wppaOvlFontWeight+';'+'line-height:'+wppaOvlLineHeight+'px;'+'box-shadow:none;'+'border-bottom-left-radius:'+wppaOvlRadius+'px;'+'border-bottom-right-radius:'+wppaOvlRadius+'px;'+'"'+' >'+'<div'+' id="wppa-overlay-txt"'+' style="'+'text-align:center;'+'min-height:36px;'+'width:100%;'+
66
  (wppaOvlTxtHeight=='auto'?'max-height:200px;':'max-height:'+wppaOvlTxtHeight+'px;')+'overflow:auto;'+'box-shadow:none;'+'"'+' >'+
67
  (showCounter?(wppaOvlIdx+1)+'/'+wppaOvlUrls.length+'<br />':'')+
68
- wppaOvlTitle+'</div>';'</div>';jQuery('#wppa-overlay-ic').html(html);jQuery('#wppa-overlay-sp').css({visibility:'hidden'});wppaOvlResize();wppaOvlFirst=false;return false;}}
69
- function wppaOvlSize(speed){var img=document.getElementById('wppa-overlay-img');var txt=document.getElementById('wppa-overlay-txt');if(!img||!txt||jQuery('#wppa-overlay-bg').css('display')=='none'){wppaConsoleLog('Lb quitted');return;}
70
- if(wppaOvlMode!='normal'){wppaOvlShowFull();return;}
71
  var iw=jQuery(window).width();var ih=jQuery(window).height();var cw,nw,nh;if(wppaOvlIsVideo){cw=640;nw=640;nh=480;}
72
  else{cw=img.clientWidth;nw=img.naturalWidth;nh=img.naturalHeight;}
73
  var fakt1;var fakt2;var fakt;if(typeof(nw)=='undefined'){nw=img.clientWidth;nh=img.clientHeight;fakt1=(iw-100)/nw;fakt2=ih/nh;if(fakt1<fakt2)fakt=fakt1;else fakt=fakt2;if(true){nw=parseInt(nw*fakt);nh=parseInt(nh*fakt);}}
@@ -75,11 +82,12 @@ else{fakt1=(iw-100)/nw;fakt2=ih/nh;if(fakt1<fakt2)fakt=fakt1;else fakt=fakt2;if(
75
  var mh;var tch=jQuery('#wppa-overlay-txt').height();if(wppaOvlTxtHeight=='auto'){if(tch==0)tch=20+2*wppaOvlBorderWidth;mh=ih-tch-20-2*wppaOvlBorderWidth;}
76
  else{mh=ih-wppaOvlTxtHeight-20-2*wppaOvlBorderWidth;}
77
  var mw=parseInt(mh*nw/nh);var pt=wppaOvlPadTop;var lft=parseInt((iw-mw)/2);var wid=mw;if(nh<mh){pt=wppaOvlPadTop+(mh-nh)/2;lft=parseInt((iw-nw)/2);wid=nw;}
78
- var done=wppaSavedImageWidth==wid;if(wid<=240){wid=240;nh=180;nw=240;done=false;}
79
- wppaSavedImageWidth=wid;wppaSavedImageHeight=wid*nh/nw;wppaSavedMarginLeft=-(wid/2+wppaOvlBorderWidth);wppaSavedContainerWidth=wid+2*wppaOvlBorderWidth;wppaSavedContainerHeight=wppaSavedImageHeight+wppaOvlBorderWidth+jQuery('#wppa-overlay-txt-container').height()+20;wppaSavedMarginTop=-wppaSavedContainerHeight/2;jQuery('#wppa-overlay-img').animate({width:wppaSavedImageWidth,height:wppaSavedImageHeight,},speed);jQuery('#wppa-overlay-ic').animate({width:wppaSavedContainerWidth,marginLeft:wppaSavedMarginLeft,marginTop:wppaSavedMarginTop,},speed);if(!done){setTimeout(function(){wppaOvlSize(wppaOvlAnimSpeed)},speed+100);wppaConsoleLog('Not done '+wppaOvlIdx+' saved='+wppaSavedImageWidth+', wid='+wid+', cw='+cw+', nw='+nw+', img complete='+document.getElementById('wppa-overlay-img').complete,'force');}
80
- else wppaConsoleLog('Done '+wppaOvlIdx,'force');return true;}
81
- function wppaOvlShowFull(){var img;var natWidth;var natHeight;if(wppaOvlIsVideo){img=document.getElementById('wppa-overlay-img');natWidth=wppaOvlVideoNaturalWidth;natHeight=wppaOvlVideoNaturalHeight;}
82
- else{img=document.getElementById('wppa-overlay-img');if(!img||!img.complete){setTimeout('wppaOvlShowFull()',10);return;}
 
83
  natWidth=img.naturalWidth;natHeight=img.naturalHeight;}
84
  var screenRatio=jQuery(window).width()/jQuery(window).height();var imageRatio=natWidth/natHeight;var margLeft=0;var margTop=0;var imgHeight=0;var imgWidth=0;var scrollTop=0;var scrollLeft=0;var Overflow='hidden';switch(wppaOvlMode){case'padded':if(screenRatio>imageRatio){margLeft=(jQuery(window).width()-jQuery(window).height()*imageRatio)/2;margTop=0;imgHeight=jQuery(window).height();imgWidth=jQuery(window).height()*imageRatio;}
85
  else{margLeft=0;margTop=(jQuery(window).height()-jQuery(window).width()/imageRatio)/2;imgHeight=jQuery(window).width()/imageRatio;imgWidth=jQuery(window).width();}
@@ -89,26 +97,26 @@ break;case'realsize':margLeft=(jQuery(window).width()-natWidth)/2;if(margLeft<0)
89
  margTop=(jQuery(window).height()-natHeight)/2;if(margTop<0){scrollTop=-margTop;margTop=0;}
90
  imgHeight=natHeight;imgWidth=natWidth;Overflow='auto';break;}
91
  margLeft=parseInt(margLeft);margTop=parseInt(margTop);imgHeight=parseInt(imgHeight);imgWidth=parseInt(imgWidth);jQuery(img).css({height:imgHeight,width:imgWidth,marginLeft:margLeft,marginTop:margTop,left:0,top:0});jQuery(img).css({visibility:'visible'});jQuery('#wppa-ovl-full-bg').css({overflow:Overflow});jQuery('#wppa-ovl-full-bg').scrollTop(scrollTop);jQuery('#wppa-ovl-full-bg').scrollLeft(scrollLeft);jQuery('#wppa-overlay-sp').css({visibility:'hidden'});return true;}
92
- function wppaOvlUpdateFsId(){wppaOvlFsPhotoId=wppaPhotoId;}
93
- function wppaOvlStartAudio(){var elm=document.getElementById('wppa-overlay-audio');if(elm){if(typeof(elm.play)=='function'){elm.play();}}}
94
- function wppaOvlStepMode(){wppaConsoleLog('StepMode from '+wppaOvlMode);var modes=new Array('normal','padded','stretched','clipped','realsize','padded');var i=0;while(i<modes.length){if(wppaOvlMode==modes[i]){wppaOvlMode=modes[i+1];wppaOvlShow(wppaOvlIdx);return;}
95
  i++;}}
96
- function wppaOvlStartStop(){if(wppaOvlRunning){wppaOvlRunning=false;jQuery('#wppa-ovl-start-stop-btn').attr('src',wppaStartSymbolUrl);if(wppaOvlIdx!=-1){if(wppaOvlIdx!=0){jQuery('#wppa-ovl-prev-btn').css('visibility','visible');}
97
  if(wppaOvlIdx!=(wppaOvlUrls.length-1)){jQuery('#wppa-ovl-next-btn').css('visibility','visible');}}}
98
  else{jQuery('#wppa-ovl-start-stop-btn').attr('src',wppaPauseSymbolUrl);wppaOvlRunning=true;wppaOvlRun();}}
99
- function wppaOvlRun(){if(!wppaOvlRunning)return;if(wppaOvlVideoPlaying||wppaOvlAudioPlaying){setTimeout('wppaOvlRun()',500);return;}
100
- if(!wppaIsVideo){var elm=document.getElementById('wppa-overlay-img');if(elm){if(!elm.complete){wppaConsoleLog('Wait during run','force');setTimeout('wppaOvlRun()',500);return;}}}
101
  var next;if(wppaOvlIdx>=(wppaOvlUrls.length-1))next=0;else next=wppaOvlIdx+1;wppaOvlFsPhotoId=0;wppaPhotoId=0;wppaOvlShow(next);setTimeout('wppaOvlRun()',wppaOvlSlideSpeed);}
102
  function wppaOvlShowPrev(){wppaConsoleLog('wppaOvlShowPrev');wppaOvlFsPhotoId=0;wppaPhotoId=0;if(wppaOvlIsSingle)return false;if(wppaOvlIdx<1){wppaOvlIdx=wppaOvlUrls.length;}
103
  wppaOvlShow(wppaOvlIdx-1);return false;}
104
  function wppaOvlShowNext(){wppaConsoleLog('wppaOvlShowNext');wppaOvlFsPhotoId=0;wppaPhotoId=0;if(wppaOvlIsSingle)return false;if(wppaOvlIdx>=(wppaOvlUrls.length-1)){wppaOvlIdx=-1;}
105
  wppaOvlShow(wppaOvlIdx+1);return false;}
106
- function wppaOvlHide(){wppaConsoleLog('wppaOvlHide');wppaStopAudio();jQuery('#wppa-overlay-ic').html('');jQuery('#wppa-overlay-bg').fadeOut(300);jQuery(document).off('keydown',wppaOvlKeyboardHandler);wppaOvlFirst=true;wppaOvlRunning=false;wppaOvlMode='normal';jQuery('#wppa-overlay-sp').css({visibility:'hidden'});}
107
- function wppaOvlOnclick(event){switch(wppaOvlOnclickType){case'none':break;case'close':wppaOvlHide();break;case'browse':var x=event.screenX-window.screenX;if(x<jQuery(window).width()/2)wppaOvlShowPrev();else wppaOvlShowNext();break;default:alert('Unimplemented action: '+wppaOvlOnclickType);break;}
108
  return true;}
109
  function wppaInitOverlay(){wppaConsoleLog('wppaInitOverlay');var anchors=jQuery('a');var anchor;var i;var temp=[];wppaOvlFsPhotoId=0;wppaPhotoId=0;wppaSavedContainerWidth=240+2*wppaOvlBorderWidth;wppaSavedContainerHeight=180+3*wppaOvlBorderWidth+20+(wppaOvlTxtHeight=='auto'?50:wppaOvlTxtHeight);wppaSavedMarginLeft=-(120+wppaOvlBorderWidth);wppaSavedMarginTop=-(90+wppaOvlBorderWidth+10+(wppaOvlTxtHeight=='auto'?25:wppaOvlTxtHeight/2));wppaSavedImageWidth=240;wppaSavedImageHeight=180+wppaOvlBorderWidth;for(i=0;i<anchors.length;i++){anchor=anchors[i];if(jQuery(anchor).attr('data-rel')){temp=jQuery(anchor).attr('data-rel').split("[");}
110
  else if(anchor.rel){temp=anchor.rel.split("[");}
111
  else{temp[0]='';}
112
  if(temp[0]=='wppa'){wppaWppaOverlayActivated=true;jQuery(anchor).click(function(event){wppaOvlShow(this);event.preventDefault();});jQuery(anchor).on("touchstart",function(event){wppaOvlShow(this);});}}}
113
- function wppaOvlResize(){wppaConsoleLog('wppaOvlResize','force');setTimeout('wppaOvlSize( '+wppaOvlAnimSpeed+' )',100);if(wppaOvlAudioStart&&!wppaOvlAudioPlaying){setTimeout('wppaOvlStartAudio()',1510);}}
114
  wppaConsoleLog('wppa-lightbox.js version '+wppaLightboxVersion+' loaded.','force');
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
+ var wppaLightboxVersion='6.2.15';var wppaNormsBtnOpac=1;var wppaIsVideo=false;var wppaHasAudio=false;var wppaOvlImgs=[];var wppaKbHandlerInstalled=false;var wppaSavedContainerWidth;var wppaSavedContainerHeight;var wppaSavedMarginLeft;var wppaSavedMarginTop;var wppaSavedImageWidth;var wppaSavedImageHeight;jQuery(document).ready(function(e){wppaInitOverlay();});jQuery(window).resize(function(){jQuery("#wppa-overlay-bg").css({height:window.innerHeight,width:window.innerWidth,});wppaOvlResize(10);});function wppaOvlKeyboardHandler(e){e.preventDefault();var keycode;var escapeKey;if(e==null){keycode=event.keyCode;escapeKey=27;}else{keycode=e.keyCode;escapeKey=27;}
8
  var key=String.fromCharCode(keycode).toLowerCase();switch(keycode){case escapeKey:wppaStopVideo(mocc);wppaOvlHide();break;case 37:wppaOvlShowPrev();break;case 39:wppaOvlShowNext();break;}
9
+ switch(key){case'p':wppaOvlShowPrev();break;case'n':wppaOvlShowNext();break;case's':wppaOvlStartStop();break;case'd':jQuery('#wppa-ovl-legenda-1').css('visibility','hidden');jQuery('#wppa-ovl-legenda-2').css('visibility','hidden');wppaShowLegenda='hidden';break;case'f':wppaOvlFull();break;}
10
+ return false;}
11
+ function wppaOvlFull(){wppaConsoleLog('wppaOvlFull');var oldMode=wppaOvlMode;wppaOvlStepMode();var elem=document.getElementById('wppa-overlay-ic');if(!elem)return;if(oldMode=='normal'){if(elem.requestFullscreen){elem.requestFullscreen();}else if(elem.mozRequestFullScreen){elem.mozRequestFullScreen();}else if(elem.webkitRequestFullscreen){elem.webkitRequestFullscreen();}
12
  setTimeout('wppaOvlShow( '+wppaOvlIdx+' )',1000);}
13
  if(wppaOvlMode=='normal'){if(document.cancelFullScreen){document.cancelFullScreen();}else if(document.mozCancelFullScreen){document.mozCancelFullScreen();}else if(document.webkitCancelFullScreen){document.webkitCancelFullScreen();}}
14
  jQuery('#wppa-ovl-legenda-1').html('');}
15
+ function wppaOvlNorm(){wppaConsoleLog('wppaOvlNorm');wppaOvlMode='normal';if(document.cancelFullScreen){document.cancelFullScreen();}else if(document.mozCancelFullScreen){document.mozCancelFullScreen();}else if(document.webkitCancelFullScreen){document.webkitCancelFullScreen();}
16
  setTimeout('wppaOvlShow( '+wppaOvlIdx+' )',1000);}
17
+ function wppaOvlShow(arg){wppaConsoleLog('wppaOvlShow arg='+arg);if(wppaOvlFirst){jQuery('#weaver-final').removeClass('wvr-hide-bang');jQuery('#wppa-overlay-bg').fadeTo(3,wppaOvlOpacity);if(!wppaKbHandlerInstalled){jQuery(document).on('keydown',wppaOvlKeyboardHandler);wppaKbHandlerInstalled=true;}
18
+ var occ=0;while(occ<wppaTopMoc){occ++;wppaStopShow(occ);}
19
+ jQuery('#wppa-overlay-bg').css({width:window.innerWidth,height:window.innerHeight,});}
20
+ if(typeof(arg)=='object'){wppaOvlUrls=[];wppaOvlTitles=[];wppaOvlVideoHtmls=[];wppaOvlAudioHtmls=[];wppaOvlVideoNaturalWidths=[];wppaOvlVideoNaturalHeights=[];wppaOvlImgs=[];wppaOvlIdx=0;var rel;if(arg.rel){rel=arg.rel;}
 
 
 
21
  else if(jQuery(arg).attr('data-rel')){rel=jQuery(arg).attr('data-rel');}
22
  else{rel=false;}
23
+ var temp=rel.split('[');if(temp[1]){var setname=temp[1];var anchors=jQuery('a');var anchor;var i,j=0;for(i=0;i<anchors.length;i++){anchor=anchors[i];if(jQuery(anchor).attr('data-rel')){temp=jQuery(anchor).attr('data-rel').split("[");}
24
  else{temp=false;}
25
  if(temp.length>1){if(temp[0]=='wppa'&&temp[1]==setname){wppaOvlUrls[j]=anchor.href;if(jQuery(anchor).attr('data-lbtitle')){wppaOvlTitles[j]=wppaRepairScriptTags(jQuery(anchor).attr('data-lbtitle'));}
26
  else{wppaOvlTitles[j]=wppaRepairScriptTags(anchor.title);}
27
+ wppaOvlVideoHtmls[j]=jQuery(anchor).attr('data-videohtml')?decodeURI(jQuery(anchor).attr('data-videohtml')):'';wppaOvlAudioHtmls[j]=jQuery(anchor).attr('data-audiohtml')?decodeURI(jQuery(anchor).attr('data-audiohtml')):'';wppaOvlVideoNaturalWidths[j]=jQuery(anchor).attr('data-videonatwidth')?jQuery(anchor).attr('data-videonatwidth'):'';wppaOvlVideoNaturalHeights[j]=jQuery(anchor).attr('data-videonatheight')?jQuery(anchor).attr('data-videonatheight'):'';if(anchor.href==arg.href){wppaOvlIdx=j;}
28
  j++;}}}}
29
+ else{wppaOvlUrls[0]=arg.href;if(jQuery(arg).attr('data-lbtitle')){wppaOvlTitles[0]=wppaRepairScriptTags(jQuery(arg).attr('data-lbtitle'));}
30
+ else{wppaOvlTitles[0]=wppaRepairScriptTags(arg.title);}
31
+ wppaOvlVideoHtmls[0]=jQuery(arg).attr('data-videohtml')?decodeURI(jQuery(arg).attr('data-videohtml')):'';wppaOvlAudioHtmls[0]=jQuery(arg).attr('data-audiohtml')?decodeURI(jQuery(arg).attr('data-audiohtml')):'';wppaOvlVideoNaturalWidths[0]=jQuery(arg).attr('data-videonatwidth')?jQuery(arg).attr('data-videonatwidth'):'';wppaOvlVideoNaturalHeights[0]=jQuery(arg).attr('data-videonatheight')?jQuery(arg).attr('data-videonatheight'):'';wppaOvlImgs[0]
32
+ wppaOvlIdx=0;}}
33
+ else{wppaOvlIdx=arg;}
34
+ setTimeout(function(){_wppaOvlShow(wppaOvlIdx)},100);}
35
+ function _wppaOvlShow(idx){wppaConsoleLog('_wppaOvlShow, idx='+idx);if(wppaOvlUrls[idx].length>0){wppaOvlImgs[idx]=new Image();wppaOvlImgs[idx].src=wppaOvlUrls[idx];wppaConsoleLog('Preloading '+(idx+1)+'/'+wppaOvlUrls.length+' (current)');if(!wppaOvlImgs[idx].complete){wppaConsoleLog('Retrying');setTimeout('_wppaOvlShow('+idx+')',100);return;}}
36
+ var next;var prev;if(wppaOvlIdx==(wppaOvlUrls.length-1)){next=0;}
37
+ else{next=wppaOvlIdx+1;}
38
+ wppaOvlImgs[next]=new Image();wppaOvlImgs[next].src=wppaOvlUrls[next];wppaConsoleLog('Preloading > '+(next+1));if(!wppaOvlRunning){if(wppaOvlIdx==0){prev=wppaOvlUrls.length-1;}
39
+ else{prev=wppaOvlIdx-1;}
40
+ wppaOvlImgs[prev]=new Image();wppaOvlImgs[prev].src=wppaOvlUrls[prev];wppaConsoleLog('Preloading < '+(prev+1));}
41
+ wppaPhotoId=wppaUrlToId(wppaOvlUrls[idx]);_bumpViewCount(wppaPhotoId);wppaIsVideo=wppaOvlVideoHtmls[idx]!='';wppaHasAudio=wppaOvlAudioHtmls[idx]!='';wppaOvlIsSingle=(wppaOvlUrls.length==1);if(wppaOvlMode!='normal'){var html;if(wppaIsVideo){html='<div id="wppa-ovl-full-bg" style="position:fixed; width:'+jQuery(window).width()+'px; height:'+jQuery(window).height()+'px; left:0px; top:0px; text-align:center;" >'+'<video id="wppa-overlay-img" controls preload="metadata"'+
42
  (wppaOvlVideoStart?' autoplay':'')+' ontouchstart="wppaTouchStart( event, \'wppa-overlay-img\', -1 );"'+' ontouchend="wppaTouchEnd( event );"'+' ontouchmove="wppaTouchMove( event );"'+' ontouchcancel="wppaTouchCancel( event );"'+' onpause="wppaOvlVideoPlaying = false;"'+' onplay="wppaOvlVideoPlaying = true;"'+' style="border:none; width:'+jQuery(window).width()+'px; box-shadow:none; position:absolute;" >'+
43
+ wppaOvlVideoHtmls[idx]+'</video>'+'<div style="height: 20px; width: 100%; position:absolute; top:0; left:0;" onmouseover="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'visible\');" onmouseout="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'hidden\');wppaShowLegenda=\'hidden\';" >';if(wppaOvlShowLegenda){html+='<div id="wppa-ovl-legenda-2" style="position:fixed; left:0; top:0; background-color:'+(wppaOvlTheme=='black'?'#272727':'#a7a7a7')+'; color:'+(wppaOvlTheme=='black'?'#a7a7a7':'#272727')+'; visibility:'+wppaShowLegenda+';" >'+'Mode='+wppaOvlMode+'. '+(wppaOvlIsSingle?wppaOvlFullLegendaSingle:wppaOvlFullLegenda)+'</div>';}
44
  html+='</div>';'</div>';}
45
+ else{html='<div id="wppa-ovl-full-bg" style="position:fixed; width:'+jQuery(window).width()+'px; height:'+jQuery(window).height()+'px; left:0px; top:0px; text-align:center;" >'+'<img id="wppa-overlay-img"'+' ontouchstart="wppaTouchStart( event, \'wppa-overlay-img\', -1 );"'+' ontouchend="wppaTouchEnd( event );"'+' ontouchmove="wppaTouchMove( event );"'+' ontouchcancel="wppaTouchCancel( event );"'+' src="'+wppaOvlUrls[idx]+'"'+' style="border:none; width:'+jQuery(window).width()+'px; visibility:hidden; box-shadow:none; position:absolute;"'+' />';if(wppaHasAudio){html+='<audio'+' id="wppa-overlay-audio"'+' class="wppa-overlay-audio"'+' data-from="wppa"'+' preload="metadata"'+
46
  ((wppaOvlAudioStart)?' autoplay':'')+' onpause="wppaOvlAudioPlaying = false;"'+' onplay="wppaOvlAudioPlaying = true;"'+' style="'+'width:100%;'+'position:absolute;'+'left:0px;'+'bottom:0px;'+'padding:0;'+'"'+' controls'+' >'+
47
+ wppaOvlAudioHtmls[idx]+'</audio>';}
48
  html+='<div style="height: 20px; width: 100%; position:absolute; top:0; left:0;" onmouseover="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'visible\');" onmouseout="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'hidden\');wppaShowLegenda=\'hidden\';" >';if(wppaOvlShowLegenda){html+='<div id="wppa-ovl-legenda-2" style="position:fixed; left:0; top:0; background-color:'+(wppaOvlTheme=='black'?'#272727':'#a7a7a7')+'; color:'+(wppaOvlTheme=='black'?'#a7a7a7':'#272727')+'; visibility:'+wppaShowLegenda+';" >'+'Mode='+wppaOvlMode+'. '+(wppaOvlIsSingle?wppaOvlFullLegendaSingle:wppaOvlFullLegenda)+'</div>';}
49
  html+='</div>';'</div>';}
50
  html+='<img'+' id="wppa-norms-btn"'+' src="'+wppaImageDirectory+'norms.png"'+' style="height:32px;z-index:100092;position:fixed;top:0;right:0;opacity:'+wppaNormsBtnOpac+'"'+' onclick="wppaOvlNorm()"'+' ontouchstart="wppaOvlNorm()"'+' onmouseover="jQuery(this).fadeTo(600,1);"'+' onmouseout="jQuery(this).fadeTo(600,0);wppaNormsBtnOpac=0;"'+' >';if((!wppaIsVideo&&!wppaHasAudio)||wppaOvlFsPhotoId!=wppaPhotoId||wppaPhotoId==0){wppaStopVideo(0);wppaStopAudio();jQuery('#wppa-overlay-ic').html(html);}
51
+ wppaOvlIsVideo=wppaIsVideo;setTimeout('wppaOvlFormatFull()',10);if(wppaIsVideo||wppaHasAudio){setTimeout('wppaOvlUpdateFsId()',2000);}
52
  else{wppaOvlFsPhotoId=0;}
53
  wppaOvlFirst=false;return false;}
54
+ else{wppaOvlFsPhotoId=0;wppaPhotoId=0;wppaStopVideo(0);var txtcol=wppaOvlTheme=='black'?'#a7a7a7':'#272727';if(wppaOvlFontColor){txtcol=wppaOvlFontColor;}
55
+ var showNav=wppaOvlUrls.length>1;jQuery('#wppa-overlay-ic').css({width:wppaSavedContainerWidth,marginLeft:wppaSavedMarginLeft,marginTop:wppaSavedMarginTop,});var html='';html+='<div id="img-sb-img-cont" style="position:relative;line-height:0;" >';if(wppaIsVideo){html+='<video'+' id="wppa-overlay-img"'+' preload="metadata"'+
56
  (wppaOvlVideoStart?' autoplay':'')+' onpause="wppaOvlVideoPlaying = false;"'+' onplay="wppaOvlVideoPlaying = true;"'+' ontouchstart="wppaTouchStart( event, \'wppa-overlay-img\', -1 );"'+' ontouchend="wppaTouchEnd( event );"'+' ontouchmove="wppaTouchMove( event );"'+' ontouchcancel="wppaTouchCancel( event );" '+' controls'+' style="'+'border-width:'+wppaOvlBorderWidth+'px '+wppaOvlBorderWidth+'px 0;'+'border-style:solid;'+'border-color:'+wppaOvlTheme+';'+'width:'+wppaSavedImageWidth+'px;'+'height:'+wppaSavedImageHeight+'px;'+'box-shadow:none;'+'box-sizing:content-box;'+'position:relative;'+'border-top-left-radius:'+wppaOvlRadius+'px;'+'border-top-right-radius:'+wppaOvlRadius+'px;'+'margin:0;'+'padding:0;'+'"'+' >'+
57
+ wppaOvlVideoHtmls[idx]+'</video>';wppaOvlIsVideo=true;}
58
+ else{html+='<img'+' id="wppa-overlay-img"'+' ontouchstart="wppaTouchStart( event, \'wppa-overlay-img\', -1 );"'+' ontouchend="wppaTouchEnd( event );"'+' ontouchmove="wppaTouchMove( event );"'+' ontouchcancel="wppaTouchCancel( event );"'+' src="'+wppaOvlUrls[idx]+'"'+' style="'+'border-width:'+wppaOvlBorderWidth+'px '+wppaOvlBorderWidth+'px 0;'+'border-style:solid;'+'border-color:'+wppaOvlTheme+';'+'width:'+wppaSavedImageWidth+'px;'+'height:'+wppaSavedImageHeight+'px;'+'box-shadow:none;'+'box-sizing:content-box;'+'position:relative;'+'border-top-left-radius:'+wppaOvlRadius+'px;'+'border-top-right-radius:'+wppaOvlRadius+'px;'+'margin:0;'+'padding:0;'+'"'+' />';if(wppaHasAudio){html+='<audio'+' id="wppa-overlay-audio"'+' class="wppa-overlay-audio"'+' data-from="wppa"'+' preload="metadata"'+' onpause="wppaOvlAudioPlaying = false;"'+' onplay="wppaOvlAudioPlaying = true;"'+' style="'+'width:100%;'+'position:absolute;'+'box-shadow:none;'+'left:0;'+'bottom:0;'+'padding:0 '+wppaOvlBorderWidth+'px;'+'margin:0;'+'background-color:transparent;'+'box-sizing:border-box;'+'"'+' controls'+' >'+
59
+ wppaOvlAudioHtmls[idx]+'</audio>';}
60
  wppaOvlIsVideo=false;}
61
  html+='<img'+' id="wppa-overlay-qt-img"'+' src="'+wppaStopSymbolUrl+'"'+' style="'+'position:absolute;'+'z-index:100101;'+'right:'+wppaOvlBorderWidth+'px;'+'top:'+wppaOvlBorderWidth+'px;'+'box-shadow:none;'+'cursor:pointer;'+'height:'+wppaStopSymbolSize+'px;'+
62
  (wppaStopSumbolBradius>0?'border-radius:'+wppaStopSumbolBradius+'px;':'')+
63
+ (wppaOvlFirst?'opacity:1;':'opacity:0;')+'"'+' onclick="wppaOvlHide()"'+' ontouchend="wppaOvlHide()"'+' onmouseover="jQuery(this).stop().fadeTo(200,0.8);"'+' onmouseout="jQuery(this).stop().fadeTo(200,0);"'+' ontouchstart="jQuery(this).stop().fadeTo(200,0.8);"'+' onload="jQuery(this).stop().fadeTo(5000,0);"'+' />';if(wppaOvlShowStartStop&&!wppaOvlIsSingle){html+='<img'+' id="wppa-ovl-start-stop-btn"'+' src="'+(wppaOvlRunning?wppaPauseSymbolUrl:wppaStartSymbolUrl)+'"'+' style="'+'height:'+wppaStartPauseSymbolSize+'px;'+
64
+ (wppaStartPauseSymbolBradius>0?'border-radius:'+wppaStartPauseSymbolBradius+'px;':'')+'z-index:100101;'+'position:absolute;'+'top:50%;'+'margin-top:'+(-wppaStartPauseSymbolSize/2)+'px;'+'left:50%;'+'margin-left:'+(-wppaStartPauseSymbolSize/2)+'px;'+
65
+ (wppaOvlIdx==-1?'visibility:hidden;':'')+'box-shadow:none;'+
66
+ (wppaOvlFirst?'opacity:1;':'opacity:0;')+'"'+' onclick="wppaOvlStartStop()"'+' ontouchend="wppaOvlStartStop()"'+' onmouseover="jQuery(this).stop().fadeTo(200,0.8);"'+' onmouseout="jQuery(this).stop().fadeTo(200,0);"'+' ontouchstart="jQuery(this).stop().fadeTo(200,0.8);"'+' onload="jQuery(this).stop().fadeTo(5000,0);"'+' />';}
67
+ if(!wppaOvlIsSingle){html+='<img'+' id="wppa-ovl-prev-btn"'+' src="'+wppaImageDirectory+'prev-'+wppaOvlTheme+'.gif"'+' style="'+'position:absolute;'+'z-index:100101;'+'width:'+wppaLeftRightSymbolSize+'px;'+
68
+ (wppaLeftRightSymbolBradius?'border-radius:'+wppaLeftRightSymbolBradius+'px;':'')+'top:50%;'+'margin-top:-'+(wppaLeftRightSymbolSize/2)+'px;'+'left:1px;'+'box-shadow:none;'+
69
+ (wppaOvlFirst?'opacity:1;':'opacity:0;')+'"'+' onclick="wppaOvlShowPrev()"'+' ontouchend="wppaOvlShowPrev()"'+' onmouseover="jQuery(this).stop().fadeTo(200,1);"'+' onmouseout="jQuery(this).stop().fadeTo(200,0);"'+' ontouchstart="jQuery(this).stop().fadeTo(200,1);"'+' onload="jQuery(this).stop().fadeTo(5000,0);"'+' />';html+='<img'+' id="wppa-ovl-next-btn"'+' src="'+wppaImageDirectory+'next-'+wppaOvlTheme+'.gif"'+' style="'+'position:absolute;'+'z-index:100101;'+'width:'+wppaLeftRightSymbolSize+'px;'+
70
+ (wppaLeftRightSymbolBradius?'border-radius:'+wppaLeftRightSymbolBradius+'px;':'')+'top:50%;'+'margin-top:-'+(wppaLeftRightSymbolSize/2)+'px;'+'right:1px;'+'box-shadow:none;'+
71
+ (wppaOvlFirst?'opacity:1;':'opacity:0;')+'"'+' onclick="wppaOvlShowNext()"'+' ontouchend="wppaOvlShowNext()"'+' onmouseover="jQuery(this).stop().fadeTo(200,1);"'+' onmouseout="jQuery(this).stop().fadeTo(200,0);"'+' ontouchstart="jQuery(this).stop().fadeTo(200,1);"'+' onload="jQuery(this).stop().fadeTo(5000,0);"'+' />';}
72
+ html+='</div>';var showCounter=!wppaOvlIsSingle&&wppaOvlShowCounter;html+='<div id="wppa-overlay-txt-container"'+' style="'+'position:relative;'+'padding:10px;'+'background-color:'+wppaOvlTheme+';'+'color:'+txtcol+';'+'text-align:center;'+'font-family:'+wppaOvlFontFamily+';'+'font-size:'+wppaOvlFontSize+'px;'+'font-weight:'+wppaOvlFontWeight+';'+'line-height:'+wppaOvlLineHeight+'px;'+'box-shadow:none;'+'border-bottom-left-radius:'+wppaOvlRadius+'px;'+'border-bottom-right-radius:'+wppaOvlRadius+'px;'+'"'+' >'+'<div'+' id="wppa-overlay-txt"'+' style="'+'text-align:center;'+'min-height:36px;'+'width:100%;'+
 
 
 
73
  (wppaOvlTxtHeight=='auto'?'max-height:200px;':'max-height:'+wppaOvlTxtHeight+'px;')+'overflow:auto;'+'box-shadow:none;'+'"'+' >'+
74
  (showCounter?(wppaOvlIdx+1)+'/'+wppaOvlUrls.length+'<br />':'')+
75
+ wppaOvlTitles[idx]+'</div>';'</div>';jQuery('#wppa-overlay-ic').html(html);wppaOvlResize();return false;}}
76
+ function wppaOvlSize(speed){wppaConsoleLog('wppaOvlSize');var img=document.getElementById('wppa-overlay-img');var txt=document.getElementById('wppa-overlay-txt');if(!img||!txt||jQuery('#wppa-overlay-bg').css('display')=='none'){wppaConsoleLog('Lb quitted');return;}
77
+ if(wppaOvlMode!='normal'){wppaOvlFormatFull();return;}
78
  var iw=jQuery(window).width();var ih=jQuery(window).height();var cw,nw,nh;if(wppaOvlIsVideo){cw=640;nw=640;nh=480;}
79
  else{cw=img.clientWidth;nw=img.naturalWidth;nh=img.naturalHeight;}
80
  var fakt1;var fakt2;var fakt;if(typeof(nw)=='undefined'){nw=img.clientWidth;nh=img.clientHeight;fakt1=(iw-100)/nw;fakt2=ih/nh;if(fakt1<fakt2)fakt=fakt1;else fakt=fakt2;if(true){nw=parseInt(nw*fakt);nh=parseInt(nh*fakt);}}
82
  var mh;var tch=jQuery('#wppa-overlay-txt').height();if(wppaOvlTxtHeight=='auto'){if(tch==0)tch=20+2*wppaOvlBorderWidth;mh=ih-tch-20-2*wppaOvlBorderWidth;}
83
  else{mh=ih-wppaOvlTxtHeight-20-2*wppaOvlBorderWidth;}
84
  var mw=parseInt(mh*nw/nh);var pt=wppaOvlPadTop;var lft=parseInt((iw-mw)/2);var wid=mw;if(nh<mh){pt=wppaOvlPadTop+(mh-nh)/2;lft=parseInt((iw-nw)/2);wid=nw;}
85
+ var done=(wppaSavedImageWidth-wid<3&&wid-wppaSavedImageWidth<3);if(wid<=10){wid=240;nh=180;nw=240;done=false;}
86
+ wppaSavedImageWidth=wid;wppaSavedImageHeight=wid*nh/nw;wppaSavedMarginLeft=-(wid/2+wppaOvlBorderWidth);wppaSavedContainerWidth=wid+2*wppaOvlBorderWidth;wppaSavedContainerHeight=wppaSavedImageHeight+wppaOvlBorderWidth+jQuery('#wppa-overlay-txt-container').height()+20;wppaSavedMarginTop=-wppaSavedContainerHeight/2;jQuery('#wppa-overlay-img').animate({width:wppaSavedImageWidth,height:wppaSavedImageHeight,},speed);jQuery('#wppa-overlay-ic').animate({width:wppaSavedContainerWidth,marginLeft:wppaSavedMarginLeft,marginTop:wppaSavedMarginTop,},speed);if(!done){setTimeout(function(){wppaOvlSize(wppaOvlAnimSpeed)},speed+100);wppaConsoleLog('Not done '+wppaOvlIdx+' saved='+wppaSavedImageWidth+', wid='+wid+', cw='+cw+', nw='+nw+', img complete='+document.getElementById('wppa-overlay-img').complete);}
87
+ else{jQuery('#wppa-overlay-sp').css({visibility:'hidden'});wppaConsoleLog('Done '+wppaOvlIdx);wppaOvlFirst=false;}
88
+ return true;}
89
+ function wppaOvlFormatFull(){wppaConsoleLog('wppaOvlFormatFull');var img;var natWidth;var natHeight;if(wppaOvlIsVideo){img=document.getElementById('wppa-overlay-img');natWidth=wppaOvlVideoNaturalWidths[wppaOvlIdx];natHeight=wppaOvlVideoNaturalHeights[wppaOvlIdx];}
90
+ else{img=document.getElementById('wppa-overlay-img');if(!img||!img.complete){setTimeout('wppaOvlFormatFull()',100);return;}
91
  natWidth=img.naturalWidth;natHeight=img.naturalHeight;}
92
  var screenRatio=jQuery(window).width()/jQuery(window).height();var imageRatio=natWidth/natHeight;var margLeft=0;var margTop=0;var imgHeight=0;var imgWidth=0;var scrollTop=0;var scrollLeft=0;var Overflow='hidden';switch(wppaOvlMode){case'padded':if(screenRatio>imageRatio){margLeft=(jQuery(window).width()-jQuery(window).height()*imageRatio)/2;margTop=0;imgHeight=jQuery(window).height();imgWidth=jQuery(window).height()*imageRatio;}
93
  else{margLeft=0;margTop=(jQuery(window).height()-jQuery(window).width()/imageRatio)/2;imgHeight=jQuery(window).width()/imageRatio;imgWidth=jQuery(window).width();}
97
  margTop=(jQuery(window).height()-natHeight)/2;if(margTop<0){scrollTop=-margTop;margTop=0;}
98
  imgHeight=natHeight;imgWidth=natWidth;Overflow='auto';break;}
99
  margLeft=parseInt(margLeft);margTop=parseInt(margTop);imgHeight=parseInt(imgHeight);imgWidth=parseInt(imgWidth);jQuery(img).css({height:imgHeight,width:imgWidth,marginLeft:margLeft,marginTop:margTop,left:0,top:0});jQuery(img).css({visibility:'visible'});jQuery('#wppa-ovl-full-bg').css({overflow:Overflow});jQuery('#wppa-ovl-full-bg').scrollTop(scrollTop);jQuery('#wppa-ovl-full-bg').scrollLeft(scrollLeft);jQuery('#wppa-overlay-sp').css({visibility:'hidden'});return true;}
100
+ function wppaOvlUpdateFsId(){wppaConsoleLog('wppaOvlUpdateFsId');wppaOvlFsPhotoId=wppaPhotoId;}
101
+ function wppaOvlStartAudio(){wppaConsoleLog('wppaOvlStartAudio');var elm=document.getElementById('wppa-overlay-audio');if(elm){if(typeof(elm.play)=='function'){elm.play();wppaConsoleLog('Audio play '+'wppa-overlay-audio');}}}
102
+ function wppaOvlStepMode(){wppaConsoleLog('wppaOvlStepMode from '+wppaOvlMode);var modes=new Array('normal','padded','stretched','clipped','realsize','padded');var i=0;while(i<modes.length){if(wppaOvlMode==modes[i]){wppaOvlMode=modes[i+1];wppaOvlShow(wppaOvlIdx);return;}
103
  i++;}}
104
+ function wppaOvlStartStop(){wppaConsoleLog('wppaOvlStartStop called. Running='+wppaOvlRunning);if(wppaOvlRunning){wppaOvlRunning=false;jQuery('#wppa-ovl-start-stop-btn').attr('src',wppaStartSymbolUrl);if(wppaOvlIdx!=-1){if(wppaOvlIdx!=0){jQuery('#wppa-ovl-prev-btn').css('visibility','visible');}
105
  if(wppaOvlIdx!=(wppaOvlUrls.length-1)){jQuery('#wppa-ovl-next-btn').css('visibility','visible');}}}
106
  else{jQuery('#wppa-ovl-start-stop-btn').attr('src',wppaPauseSymbolUrl);wppaOvlRunning=true;wppaOvlRun();}}
107
+ function wppaOvlRun(){wppaConsoleLog('wppaOvlRun, running='+wppaOvlRunning);if(!wppaOvlRunning)return;if(wppaOvlVideoPlaying||wppaOvlAudioPlaying){setTimeout('wppaOvlRun()',500);return;}
108
+ if(!wppaIsVideo){var elm=document.getElementById('wppa-overlay-img');if(elm){if(!elm.complete){wppaConsoleLog('Wait during run');setTimeout('wppaOvlRun()',500);return;}}}
109
  var next;if(wppaOvlIdx>=(wppaOvlUrls.length-1))next=0;else next=wppaOvlIdx+1;wppaOvlFsPhotoId=0;wppaPhotoId=0;wppaOvlShow(next);setTimeout('wppaOvlRun()',wppaOvlSlideSpeed);}
110
  function wppaOvlShowPrev(){wppaConsoleLog('wppaOvlShowPrev');wppaOvlFsPhotoId=0;wppaPhotoId=0;if(wppaOvlIsSingle)return false;if(wppaOvlIdx<1){wppaOvlIdx=wppaOvlUrls.length;}
111
  wppaOvlShow(wppaOvlIdx-1);return false;}
112
  function wppaOvlShowNext(){wppaConsoleLog('wppaOvlShowNext');wppaOvlFsPhotoId=0;wppaPhotoId=0;if(wppaOvlIsSingle)return false;if(wppaOvlIdx>=(wppaOvlUrls.length-1)){wppaOvlIdx=-1;}
113
  wppaOvlShow(wppaOvlIdx+1);return false;}
114
+ function wppaOvlHide(){wppaConsoleLog('wppaOvlHide');wppaStopAudio();jQuery('#wppa-overlay-ic').html('');jQuery('#wppa-overlay-bg').fadeOut(300);jQuery(document).off('keydown',wppaOvlKeyboardHandler);wppaKbHandlerInstalled=false;wppaOvlFirst=true;wppaOvlRunning=false;wppaOvlMode='normal';jQuery('#wppa-overlay-sp').css({visibility:'hidden'});}
115
+ function wppaOvlOnclick(event){wppaConsoleLog('wppaOvlOnClick');switch(wppaOvlOnclickType){case'none':break;case'close':wppaOvlHide();break;case'browse':var x=event.screenX-window.screenX;if(x<jQuery(window).width()/2)wppaOvlShowPrev();else wppaOvlShowNext();break;default:alert('Unimplemented action: '+wppaOvlOnclickType);break;}
116
  return true;}
117
  function wppaInitOverlay(){wppaConsoleLog('wppaInitOverlay');var anchors=jQuery('a');var anchor;var i;var temp=[];wppaOvlFsPhotoId=0;wppaPhotoId=0;wppaSavedContainerWidth=240+2*wppaOvlBorderWidth;wppaSavedContainerHeight=180+3*wppaOvlBorderWidth+20+(wppaOvlTxtHeight=='auto'?50:wppaOvlTxtHeight);wppaSavedMarginLeft=-(120+wppaOvlBorderWidth);wppaSavedMarginTop=-(90+wppaOvlBorderWidth+10+(wppaOvlTxtHeight=='auto'?25:wppaOvlTxtHeight/2));wppaSavedImageWidth=240;wppaSavedImageHeight=180+wppaOvlBorderWidth;for(i=0;i<anchors.length;i++){anchor=anchors[i];if(jQuery(anchor).attr('data-rel')){temp=jQuery(anchor).attr('data-rel').split("[");}
118
  else if(anchor.rel){temp=anchor.rel.split("[");}
119
  else{temp[0]='';}
120
  if(temp[0]=='wppa'){wppaWppaOverlayActivated=true;jQuery(anchor).click(function(event){wppaOvlShow(this);event.preventDefault();});jQuery(anchor).on("touchstart",function(event){wppaOvlShow(this);});}}}
121
+ function wppaOvlResize(){wppaConsoleLog('wppaOvlResize');setTimeout('wppaOvlSize( '+wppaOvlAnimSpeed+' )',100);if(wppaOvlAudioStart&&!wppaOvlAudioPlaying){setTimeout('wppaOvlStartAudio()',1000);}}
122
  wppaConsoleLog('wppa-lightbox.js version '+wppaLightboxVersion+' loaded.','force');
js/wppa.js CHANGED
@@ -10,7 +10,7 @@ var wppaJsVersion = '6.3.14';
10
 
11
  // 'External' variables ( public )
12
  var wppaVersion = '0';
13
- var wppaDebug = false;
14
  var wppaFullValign = [];
15
  var wppaFullHalign = [];
16
  var wppaFullFrameDelta = [];
@@ -195,10 +195,8 @@ var _wppaVideoNatHeight = [];
195
  var __wppaOverruleRun = false;
196
 
197
  var wppaOvlUrls;
198
- var wppaOvlUrl;
199
  var wppaOvlTitles;
200
- var wppaOvlTitle;
201
- var wppaOvlIdx = -1;
202
  var wppaOvlFirst = true;
203
  var wppaOvlKbHandler = '';
204
  var wppaOvlSizeHandler = '';
@@ -206,13 +204,9 @@ var wppaOvlPadTop = 5;
206
  var wppaOvlIsSingle;
207
  var wppaOvlRunning = false;
208
  var wppaOvlVideoHtmls;
209
- var wppaOvlVideoHtml;
210
  var wppaOvlAudioHtmls;
211
- var wppaOvlAudioHtml;
212
  var wppaOvlVideoNaturalWidths;
213
- var wppaOvlVideoNaturalWidth;
214
  var wppaOvlVideoNaturalHeights;
215
- var wppaOvlVideoNaturalHeight;
216
  var wppaOvlMode = 'normal';
217
  var wppaOvlVideoPlaying = false;
218
  var wppaOvlAudioPlaying = false;
10
 
11
  // 'External' variables ( public )
12
  var wppaVersion = '0';
13
+ var wppaDebug;
14
  var wppaFullValign = [];
15
  var wppaFullHalign = [];
16
  var wppaFullFrameDelta = [];
195
  var __wppaOverruleRun = false;
196
 
197
  var wppaOvlUrls;
 
198
  var wppaOvlTitles;
199
+ var wppaOvlIdx = 0;
 
200
  var wppaOvlFirst = true;
201
  var wppaOvlKbHandler = '';
202
  var wppaOvlSizeHandler = '';
204
  var wppaOvlIsSingle;
205
  var wppaOvlRunning = false;
206
  var wppaOvlVideoHtmls;
 
207
  var wppaOvlAudioHtmls;
 
208
  var wppaOvlVideoNaturalWidths;
 
209
  var wppaOvlVideoNaturalHeights;
 
210
  var wppaOvlMode = 'normal';
211
  var wppaOvlVideoPlaying = false;
212
  var wppaOvlAudioPlaying = false;
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=false;var wppaFullValign=[];var wppaFullHalign=[];var wppaFullFrameDelta=[];var wppaAnimationSpeed;var wppaImageDirectory;var wppaAutoColumnWidth=[];var wppaAutoColumnFrac=[];var wppaThumbnailAreaDelta;var wppaSlideShowTimeOut=2500;var wppaFadeInAfterFadeOut=false;var wppaTextFrameDelta=0;var wppaBoxDelta=0;var wppaPreambule;var wppaHideWhenEmpty=false;var wppaThumbnailPitch=[];var wppaFilmStripLength=[];var wppaFilmStripMargin=[];var wppaFilmStripAreaDelta=[];var wppaFilmShowGlue=false;var wppaIsMini=[];var wppaPortraitOnly=[];var wppaSlideShow;var wppaPhoto;var wppaOf;var wppaNextPhoto;var wppaPreviousPhoto;var wppaSlower;var wppaFaster;var wppaNextP;var wppaPrevP;var wppaAvgRating;var wppaMyRating;var wppaAvgRat;var wppaMyRat;var wppaDislikeMsg;var wppaShowDislikeCount=false;var wppaNoDislikes='no dislikes';var wppa1Dislike='1 dislike';var wppaDislikes='dislikes';var wppaIncludingMine='including mine';var wppaMiniTreshold=300;var wppaStart='Start';var wppaStop='Stop';var wppaPleaseName;var wppaPleaseEmail;var wppaPleaseComment;var wppaRatingOnce=true;var wppaBGcolorNumbar='transparent';var wppaBcolorNumbar='transparent';var wppaBGcolorNumbarActive='transparent';var wppaBcolorNumbarActive='transparent';var wppaFontFamilyNumbar='';var wppaFontSizeNumbar='';var wppaFontColorNumbar='';var wppaFontWeightNumbar='';var wppaFontFamilyNumbarActive='';var wppaFontSizeNumbarActive='';var wppaFontColorNumbarActive='';var wppaFontWeightNumbarActive='';var wppaNumbarMax='10';var wppaAjaxUrl='';var wppaLang='';var wppaNextOnCallback=false;var wppaStarOpacity=0.2;var wppaSlideWrap=true;var wppaLightBox=[];var wppaEmailRequired=true;var wppaSlideBorderWidth=0;var wppaSlideInitRunning=[];var wppaAnimationType='fadeover';var wppaSlidePause=[];var wppaSlideBlank=[];var wppaRatingMax=5;var wppaRatingDisplayType='graphic';var wppaRatingPrec=2;var wppaFilmPageSize=[];var wppaAspectRatio=[];var wppaFullSize=[];var wppaStretch=false;var wppaThumbSpaceAuto=false;var wppaMinThumbSpace=4;var wppaMagnifierCursor='';var wppaArtMonkyLink='none';var wppaAutoOpenComments=false;var wppaUpdateAddressLine=false;var wppaFilmThumbTitle='';var wppaUploadUrl='';var wppaVoteForMe='';var wppaVotedForMe='';var wppaSlideSwipe=true;var wppaLightboxSingle=[];var wppaMaxCoverWidth=300;var wppaDownLoad='Download';var wppaSiteUrl='';var wppaWppaUrl='';var wppaIncludeUrl='';var wppaSlideToFullpopup=false;var wppaComAltSize=75;var wppaBumpViewCount=true;var wppaFotomoto=false;var wppaArtMonkeyButton=true;var wppaShortQargs=false;var wppaOvlHires=false;var wppaMasonryCols=[];var wppaVideoPlaying=[];var wppaAudioPlaying=[];var wppaSlideVideoStart=false;var wppaSlideAudioStart=false;var wppaAudioHeight=28;var wppaHis=0;var wppaStartHtml=[];var wppaCanAjaxRender=false;var wppaCanPushState=false;var wppaAllowAjax=true;var wppaMaxOccur=0;var wppaFirstOccur=0;var wppaUsePhotoNamesInUrls=false;var wppaShareHideWhenRunning=false;var wppaCommentRequiredAfterVote=true;var wppaTopMoc=0;var wppaColWidth=[];var wppaFotomotoHideWhenRunning=false;var wppaFotomotoMinWidth=400;var wppaPhotoView=[];var wppaBackgroundColorImage='';var wppaPopupLinkType='';var wppaPopupOnclick=[];var wppaThumbTargetBlank=false;var wppaRel='rel';var 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 wppaOvlUrl;var wppaOvlTitles;var wppaOvlTitle;var wppaOvlIdx=-1;var wppaOvlFirst=true;var wppaOvlKbHandler='';var wppaOvlSizeHandler='';var wppaOvlPadTop=5;var wppaOvlIsSingle;var wppaOvlRunning=false;var wppaOvlVideoHtmls;var wppaOvlVideoHtml;var wppaOvlAudioHtmls;var wppaOvlAudioHtml;var wppaOvlVideoNaturalWidths;var wppaOvlVideoNaturalWidth;var wppaOvlVideoNaturalHeights;var wppaOvlVideoNaturalHeight;var wppaOvlMode='normal';var wppaOvlVideoPlaying=false;var wppaOvlAudioPlaying=false;var wppaOvlShowLegenda=true;var wppaOvlShowStartStop=true;var 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.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();}
languages/wp-photo-album-plus-cs_CZ.mo DELETED
Binary file
languages/wp-photo-album-plus-cs_CZ.po DELETED
@@ -1,17307 +0,0 @@
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: cs_CZ\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.6\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-WPHeader: wppa.php\n"
15
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "X-Poedit-SearchPath-0: .\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 "Stránky:"
26
-
27
- #: theme/photo-album-page.php:31 theme/photo-album-search-page.php:53
28
- #: wppa-album-admin-autosave.php:1058 wppa-album-admin-autosave.php:1096
29
- #: wppa-album-admin-autosave.php:1195 wppa-album-admin-autosave.php:1367
30
- #: wppa-album-admin-autosave.php:1462 wppa-album-admin-autosave.php:1536
31
- #: wppa-album-admin-autosave.php:1646 wppa-comment-admin.php:310
32
- #: wppa-comment-admin.php:379 wppa-comment-admin.php:397
33
- #: wppa-functions.php:1909 wppa-thumbnails.php:597
34
- msgid "Edit"
35
- msgstr "Upravit"
36
-
37
- #: theme/photo-album-search-page.php:30
38
- msgid "Warning. No page defined for search results!"
39
- msgstr "Varování. Nebyla definovaná stránka pro výsledky vyhledávání!"
40
-
41
- #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:171
42
- #: wppa-settings-autosave.php:396 wppa-settings-autosave.php:3005
43
- msgid "Search"
44
- msgstr "Vyhledat"
45
-
46
- #: theme/search.php:18
47
- #, php-format
48
- msgid "Search Results for: %s"
49
- msgstr "Výsledky hledání pro: %s"
50
-
51
- #: theme/search.php:29
52
- msgid "Nothing Found"
53
- msgstr "Nic nenalezeno"
54
-
55
- #: theme/search.php:31
56
- msgid ""
57
- "Sorry, but nothing matched your search criteria. Please try again with some "
58
- "different keywords."
59
- msgstr ""
60
- "Omlouváme se, ale nic z hledaných výrazů nebylo nalezeno. Zkuste to prosím "
61
- "znovu s jinými klíčovými slovy."
62
-
63
- #: theme/wppa-theme.php:323 theme/wppa-theme.php:342
64
- msgid "No photos found matching your search criteria."
65
- msgstr "Žádné fotky neodpovídají zadaným kritériím vyhledávání."
66
-
67
- #: theme/wppa-theme.php:326
68
- msgid "No albums found matching your search criteria."
69
- msgstr "Žádná alba neodpovídají zadaným kritériím vyhledávání."
70
-
71
- #: theme/wppa-theme.php:329
72
- msgid "No albums or photos found matching your search criteria."
73
- msgstr "Žádná alba ani fotky neodpovídají zadaným kritériím vyhledávání."
74
-
75
- #: wppa-admin-functions.php:27
76
- msgid "Settings successfully backed up"
77
- msgstr "Nastavení bylo úspěšně zálohováno"
78
-
79
- #: wppa-admin-functions.php:31
80
- msgid "Unable to backup settings"
81
- msgstr "Nelze uložit zálohu nastavení"
82
-
83
- #: wppa-admin-functions.php:40
84
- msgid "Error writing to settings backup file"
85
- msgstr "Chyba při ukládání zálohy nastavení"
86
-
87
- #: wppa-admin-functions.php:101
88
- msgid "Settings file not found"
89
- msgstr "Soubor nastavení nebyl nalezen"
90
-
91
- #: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2247
92
- #: wppa-ajax.php:2254
93
- msgid "Please supply a numeric value greater than or equal to"
94
- msgstr "Prosím, použijte číselnou hodnotu větší nebo rovnu"
95
-
96
- #: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2247
97
- #: wppa-ajax.php:2254
98
- msgid "for"
99
- msgstr "pro"
100
-
101
- #: wppa-admin-functions.php:208 wppa-ajax.php:2254
102
- msgid "and less than or equal to"
103
- msgstr "a menší nebo rovnu než"
104
-
105
- #: wppa-admin-functions.php:223 wppa-album-admin-autosave.php:283
106
- msgid "--- public ---"
107
- msgstr "--- veřejný ---"
108
-
109
- #: wppa-admin-functions.php:462
110
- #, php-format
111
- msgid "File %s is of an unsupported filetype and has been removed."
112
- msgstr "Soubor %s není podporovaným typem souboru a byl odstraněn."
113
-
114
- #: wppa-admin-functions.php:562 wppa-admin-functions.php:601
115
- #: wppa-admin-functions.php:605 wppa-admin-functions.php:609
116
- msgid "Unexpected error:"
117
- msgstr "Neočekávaná chyba:"
118
-
119
- #: wppa-admin-functions.php:562
120
- msgid "Missing database table:"
121
- msgstr "Chybějící tabulka databáze:"
122
-
123
- #: wppa-admin-functions.php:601
124
- msgid "Missing directory:"
125
- msgstr "Chybějící adresář:"
126
-
127
- #: wppa-admin-functions.php:605
128
- msgid "Directory is not writable:"
129
- msgstr "Nelze zapisovat do adresáře:"
130
-
131
- #: wppa-admin-functions.php:609
132
- msgid "Directory is not readable:"
133
- msgstr "Adresář není čitelný:"
134
-
135
- #: wppa-admin-functions.php:615
136
- msgid ""
137
- "Please de-activate and re-activate the plugin. If this problem persists, ask "
138
- "your administrator."
139
- msgstr ""
140
- "Prosím deaktivujte a znovu aktivujte plugin. Pokud problém přetrvává, "
141
- "kontaktujte administrátora."
142
-
143
- #: wppa-admin-functions.php:634
144
- msgid "Prev page"
145
- msgstr "Předchozí stránka"
146
-
147
- #: wppa-admin-functions.php:647
148
- msgid "Next page"
149
- msgstr "Další stránka"
150
-
151
- #: wppa-admin-functions.php:749 wppa-admin-functions.php:752
152
- #, php-format
153
- msgid "Album %s is full"
154
- msgstr "Album %s je plné"
155
-
156
- #: wppa-admin-functions.php:770
157
- #, php-format
158
- msgid "Photo %s already exists in album number %s. Removed from depot."
159
- msgstr "Fotka %s již v albu číslo %s existuje. Odstraněna z úložiště."
160
-
161
- #: wppa-admin-functions.php:773
162
- #, php-format
163
- msgid "Photo %s already exists in album number %s."
164
- msgstr "Fotka %s již v albu číslo %s existuje."
165
-
166
- #: wppa-admin-functions.php:803
167
- #, php-format
168
- msgid "ERROR: Attempt to upload a photo that is too large to process (%s)."
169
- msgstr ""
170
- "CHYBA: Pokoušíte se nahrát fotku, která je pro zpracování příliš velká (%s)."
171
-
172
- #: wppa-admin-functions.php:804
173
- msgid "Too big"
174
- msgstr "Příliš velké"
175
-
176
- #: wppa-admin-functions.php:808
177
- msgid ""
178
- "WARNING: You are uploading photos that are too small. Photos must be larger "
179
- "than the thumbnail size and larger than the coverphotosize."
180
- msgstr ""
181
- "VAROVÁNÍ: Nahráváte fotky, které jsou příliš malé. Fotografie musí být "
182
- "větší, než je velikost náhledu a větší, než je titulní fotografie."
183
-
184
- #: wppa-admin-functions.php:809
185
- msgid "Too small"
186
- msgstr "Příliš malé"
187
-
188
- #: wppa-admin-functions.php:814
189
- msgid "ERROR: Unable to retrieve image size of"
190
- msgstr "CHYBA: Nelze načíst velikost obrázku"
191
-
192
- #: wppa-admin-functions.php:814
193
- msgid "Are you sure it is a photo?"
194
- msgstr "Jste si jistí, že tohle je fotografie?"
195
-
196
- #: wppa-admin-functions.php:815
197
- msgid "No imagesize"
198
- msgstr "Chybí velikost obrázku"
199
-
200
- #: wppa-admin-functions.php:824
201
- msgid "Unsupported mime type encountered:"
202
- msgstr "Byl zjištěn nepodporovaný mime typ:"
203
-
204
- #: wppa-admin-functions.php:841
205
- msgid "Album not known while trying to add a photo"
206
- msgstr "Album, do kterého se snažíte přidat fotografii, není známo"
207
-
208
- #: wppa-admin-functions.php:845
209
- #, php-format
210
- msgid ""
211
- "Album %s does not exist or is not accessable while trying to add a photo"
212
- msgstr ""
213
- "Album %s, do kterého se snažíte přidat fotografii, neexistuje nebo je "
214
- "nepřístupné"
215
-
216
- #: wppa-admin-functions.php:864
217
- msgid "Could not insert photo."
218
- msgstr "Fotografii nelze vložit."
219
-
220
- #: wppa-admin-functions.php:899
221
- msgid "ERROR: Unknown file or album."
222
- msgstr "CHYBA: Neznámý soubor nebo album."
223
-
224
- #: wppa-admin.php:54
225
- msgid "Photo&thinsp;Albums"
226
- msgstr "Fotoalba"
227
-
228
- #: wppa-admin.php:57 wppa-adminbar.php:40 wppa-settings-autosave.php:5520
229
- msgid "Album Admin"
230
- msgstr "Správa alb"
231
-
232
- #: wppa-admin.php:58 wppa-adminbar.php:47 wppa-settings-autosave.php:5521
233
- #: wppa-upload-widget.php:71 wppa-upload.php:88
234
- msgid "Upload Photos"
235
- msgstr "Nahrávání fotografií"
236
-
237
- #: wppa-admin.php:61 wppa-adminbar.php:53
238
- msgid "Edit Photos"
239
- msgstr "Upravit fotografie"
240
-
241
- #: wppa-admin.php:63 wppa-adminbar.php:61 wppa-settings-autosave.php:5522
242
- #: wppa-upload.php:458
243
- msgid "Import Photos"
244
- msgstr "Import fotografií"
245
-
246
- #: wppa-admin.php:64 wppa-adminbar.php:68
247
- msgid "Moderate Photos"
248
- msgstr "Moderování fotografií"
249
-
250
- #: wppa-admin.php:65 wppa-adminbar.php:75 wppa-export.php:32
251
- #: wppa-settings-autosave.php:5524
252
- msgid "Export Photos"
253
- msgstr "Export fotografií"
254
-
255
- #: wppa-admin.php:66 wppa-adminbar.php:82 wppa-comment-admin.php:215
256
- #: wppa-settings-autosave.php:5525
257
- msgid "Settings"
258
- msgstr "Nastavení"
259
-
260
- #: wppa-admin.php:67
261
- msgid "Photo of the day Widget"
262
- msgstr "Widget 'Fotografie dne'"
263
-
264
- #: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:60
265
- #: wppa-settings-autosave.php:5526 wppa-setup.php:1387
266
- msgid "Photo of the day"
267
- msgstr "Fotografie Dne"
268
-
269
- #: wppa-admin.php:68
270
- msgid "Manage comments"
271
- msgstr "Správa komentářů"
272
-
273
- #: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:386
274
- #: wppa-settings-autosave.php:2834 wppa-settings-autosave.php:7667
275
- #: wppa-settings-autosave.php:7712
276
- msgid "Comments"
277
- msgstr "Komentáře"
278
-
279
- #: wppa-admin.php:69
280
- msgid "Help &amp; Info"
281
- msgstr "Nápověda &amp; Informace"
282
-
283
- #: wppa-admin.php:106
284
- msgid "Uploading is temporary diabled for you"
285
- msgstr "Nahrávání je pro vás dočasně nedostupné"
286
-
287
- #: wppa-admin.php:112
288
- msgid "Editing is temporary diabled for you"
289
- msgstr "Úpravy jsou pro vás dočasně nedostupné"
290
-
291
- #: wppa-admin.php:119
292
- msgid "Importing is temporary diabled for you"
293
- msgstr "Importování je pro vás dočasně nedostupné"
294
-
295
- #: wppa-admin.php:121 wppa-upload.php:1055
296
- msgid "Import"
297
- msgstr "Importovat"
298
-
299
- #: wppa-admin.php:121 wppa-settings-autosave.php:8734
300
- msgid "Update"
301
- msgstr "Aktualizovat"
302
-
303
- #: wppa-adminbar.php:103 wppa-settings-autosave.php:5528
304
- msgid "Help & Info"
305
- msgstr "Pomoc & Info"
306
-
307
- #: wppa-adminbar.php:110
308
- msgid "Docs & Demos"
309
- msgstr "Dokumenty & ukázky"
310
-
311
- #: wppa-adminbar.php:118 wppa-album-navigator-widget.php:41
312
- #: wppa-album-navigator-widget.php:84 wppa-album-widget.php:47
313
- msgid "Photo Albums"
314
- msgstr "FotoAlba"
315
-
316
- #: wppa-ajax.php:154
317
- msgid ""
318
- "All modifications are instantly updated on the server. The <b style=\"color:"
319
- "#070\" >Remark</b> field keeps you informed on the actions taken at the "
320
- "background."
321
- msgstr ""
322
- "Všechny změny byly na serveru provedeny. Pole <b style=\"color:#070\" "
323
- ">Poznámka</b> vás průběžně informuje o akcí, které jsou prováděny na pozadí."
324
-
325
- #: wppa-ajax.php:157
326
- msgid "Exit & Refresh"
327
- msgstr "Ukončit a obnovit"
328
-
329
- #: wppa-ajax.php:169 wppa-ajax.php:226 wppa-ajax.php:249 wppa-ajax.php:463
330
- #: wppa-ajax.php:724
331
- msgid "Security check failure"
332
- msgstr "Chyba kontroly zabezpečení"
333
-
334
- #: wppa-ajax.php:203 wppa-ajax.php:244
335
- msgid "You do not have the rights to moderate photos this way"
336
- msgstr "Na takovou správu fotek nemáte oprávnění"
337
-
338
- #: wppa-ajax.php:223
339
- #, php-format
340
- msgid "Failed to update stutus of photo %s"
341
- msgstr "Nepodařilo se aktualizovat stav fotky %s"
342
-
343
- #: wppa-ajax.php:223 wppa-ajax.php:230
344
- msgid "Please refresh the page"
345
- msgstr "Prosím obnovte stránku"
346
-
347
- #: wppa-ajax.php:230
348
- #, php-format
349
- msgid "Failed to update stutus of comment %s"
350
- msgstr "Nepodařilo se aktualizovat stav komentáře %s"
351
-
352
- #: wppa-ajax.php:239 wppa-ajax.php:253
353
- msgid "Photo removed"
354
- msgstr "Fotografie byla odstraněna"
355
-
356
- #: wppa-ajax.php:258
357
- msgid "Comment removed"
358
- msgstr "Komentář byl odstraněn"
359
-
360
- #: wppa-ajax.php:259
361
- msgid "Could not remove comment"
362
- msgstr "Komentář nelze odstranit"
363
-
364
- #: wppa-ajax.php:262 wppa-ajax.php:596
365
- msgid "Unexpected error"
366
- msgstr "Neočekávaná chyba"
367
-
368
- #: wppa-ajax.php:268
369
- msgid "This feature is not enabled on this website"
370
- msgstr "Tato funkce není na tomto webu povolena"
371
-
372
- #: wppa-ajax.php:280
373
- msgid "The album is empty"
374
- msgstr "Album je prázdné"
375
-
376
- #: wppa-ajax.php:289 wppa-ajax.php:426
377
- msgid "Unable to create zip archive"
378
- msgstr "Nelze vytvořit zip archiv"
379
-
380
- #: wppa-ajax.php:301
381
- #, php-format
382
- msgid "Unable to create zip archive. code = %s"
383
- msgstr "Nelze vytvořit zip archiv. Kód = %s"
384
-
385
- #: wppa-ajax.php:338
386
- #, php-format
387
- msgid "Only %s out of %s photos could be added to the zipfile"
388
- msgstr "Pouze %s z %s fotek mohlo být přidáno do zip archivu."
389
-
390
- #: wppa-ajax.php:367
391
- msgid "Unknown source of request"
392
- msgstr "Neznámý zdroj požadavku"
393
-
394
- #: wppa-ajax.php:385
395
- msgid "Empty filename"
396
- msgstr "Prázdný název souboru"
397
-
398
- #: wppa-ajax.php:412
399
- msgid "Unable to create tempdir"
400
- msgstr "Nelze vytvořit dočasný adresář"
401
-
402
- #: wppa-ajax.php:436
403
- msgid "Unknown type"
404
- msgstr "Neznámý typ"
405
-
406
- #: wppa-ajax.php:445
407
- msgid "The photo does no longer exist"
408
- msgstr "Fotografie již neexistuje"
409
-
410
- #: wppa-ajax.php:477
411
- msgid "An error occurred while processing you rating request."
412
- msgstr "Při zpracování vámi zadaného hodnocení se vyskytla chyba"
413
-
414
- #: wppa-ajax.php:478
415
- msgid "Maybe you opened the page too long ago to recognize you."
416
- msgstr "Možná máte stránku otevřenou příliš dlouho na to, aby vás rozpoznala."
417
-
418
- #: wppa-ajax.php:479
419
- msgid "You may refresh the page and try again."
420
- msgstr "Obnovte stránku a zkuste to znova."
421
-
422
- #: wppa-ajax.php:480
423
- msgid ""
424
- "Althoug an error occurred while processing your rating, your vote has been "
425
- "registered."
426
- msgstr ""
427
- "I když při zpracování hodnocení došlo k chybě, váš hlas byl zaznamenán."
428
-
429
- #: wppa-ajax.php:481
430
- msgid "However, this may not be reflected in the current pageview"
431
- msgstr "Ale to se však nemusí projevit v aktuálním zobrazení stránky"
432
-
433
- #: wppa-ajax.php:503
434
- msgid "Photo has been removed."
435
- msgstr "Fotografie byla odstraněna."
436
-
437
- #: wppa-ajax.php:512
438
- msgid "Sorry, you can not rate your own photos"
439
- msgstr "Je nám líto, ale nemůžete hodnotit vaše vlastní fotografie"
440
-
441
- #: wppa-ajax.php:524
442
- msgid "Please enter a comment."
443
- msgstr "Prosím vložte komentář"
444
-
445
- #: wppa-ajax.php:549
446
- msgid "Security check failure."
447
- msgstr "Chyba kontroly zabezpečení."
448
-
449
- #: wppa-ajax.php:561 wppa-ajax.php:577
450
- msgid "Photo rated"
451
- msgstr "Fotgrafie ohodnocena"
452
-
453
- #: wppa-ajax.php:676
454
- msgid ""
455
- "Please explain your vote in a comment.\n"
456
- "Your vote will be discarded if you don't.\n"
457
- "\n"
458
- "After completing your comment,\n"
459
- "you can refresh the page to see\n"
460
- "your vote became effective."
461
- msgstr ""
462
- "Prosím vysvětlete vaše hlasování v komentáři.\n"
463
- "Vaše hlasování bude neplatné, pokud tak neučiníte.\n"
464
- "\n"
465
- "Po dokončení vašeho komentáře,\n"
466
- "se vaše hlasování projeví,\n"
467
- "až po obnovení stránky."
468
-
469
- #: wppa-ajax.php:720
470
- msgid "You do not have the rights to delete a photo"
471
- msgstr "Pro odstranění fotografie nemáte práva"
472
-
473
- #: wppa-ajax.php:730
474
- #, php-format
475
- msgid "Photo %s has been deleted"
476
- msgstr "Fotografie %s byla odstraněna"
477
-
478
- #: wppa-ajax.php:746
479
- msgid "You do not have the rights to update album information"
480
- msgstr "Pro aktualizaci informací v albu nemáte oprávnění"
481
-
482
- #: wppa-ajax.php:758
483
- msgid "<b>Ratings cleared</b>"
484
- msgstr "<b>Hodnocení vynulováno</b>"
485
-
486
- #: wppa-ajax.php:758 wppa-ajax.php:764 wppa-photo-admin-autosave.php:317
487
- msgid "No ratings for this photo."
488
- msgstr "Tato fotografie nebyla hodnocena."
489
-
490
- #: wppa-ajax.php:761
491
- msgid "An error occurred while clearing ratings"
492
- msgstr "V průběhu mazání hodnocení se vyskytla chyba"
493
-
494
- #: wppa-ajax.php:764 wppa-ajax.php:785 wppa-ajax.php:807
495
- msgid "<b>No photos in this album</b>"
496
- msgstr "<b>V tomto albu nejsou žádné fotografie</b>"
497
-
498
- #: wppa-ajax.php:779
499
- msgid "<b>Tags set to defaults</b> (reload)"
500
- msgstr "<b>Štítky nastaveny na výchozí hodnoty</b> (obnovte)"
501
-
502
- #: wppa-ajax.php:782
503
- msgid "An error occurred while setting tags"
504
- msgstr "Při nastavování štítků se vyskytla chyba"
505
-
506
- #: wppa-ajax.php:801
507
- msgid "<b>Tags added width defaults</b> (reload)"
508
- msgstr "<b>Štítkyy přidány s výchozími hodnotami</b> (obnovte)"
509
-
510
- #: wppa-ajax.php:804
511
- msgid "An error occurred while adding tags"
512
- msgstr "Při přidávání štítků se vyskytla chyba"
513
-
514
- #: wppa-ajax.php:816
515
- #, php-format
516
- msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
517
- msgstr "Název alba nesmí být prázdné.<br />Nastaveno na <b>%s</b>"
518
-
519
- #: wppa-ajax.php:818 wppa-ajax.php:1218 wppa-album-admin-autosave.php:352
520
- #: wppa-album-admin-autosave.php:409 wppa-album-admin-autosave.php:1005
521
- #: wppa-album-admin-autosave.php:1142 wppa-album-admin-autosave.php:1314
522
- #: wppa-album-admin-autosave.php:1409 wppa-boxes-html.php:402
523
- #: wppa-boxes-html.php:516 wppa-photo-admin-autosave.php:1334
524
- #: wppa-photo-admin-autosave.php:1453 wppa-settings-autosave.php:452
525
- #: wppa-settings-autosave.php:614 wppa-settings-autosave.php:636
526
- #: wppa-settings-autosave.php:1336 wppa-settings-autosave.php:1357
527
- #: wppa-settings-autosave.php:2731 wppa-settings-autosave.php:2752
528
- #: wppa-settings-autosave.php:3063 wppa-settings-autosave.php:3087
529
- #: wppa-settings-autosave.php:3556 wppa-settings-autosave.php:3670
530
- #: wppa-settings-autosave.php:4238 wppa-settings-autosave.php:4259
531
- #: wppa-settings-autosave.php:4435 wppa-settings-autosave.php:4459
532
- #: wppa-settings-autosave.php:5486 wppa-settings-autosave.php:5994
533
- #: wppa-settings-autosave.php:6016 wppa-settings-autosave.php:6596
534
- #: wppa-settings-autosave.php:6620 wppa-settings-autosave.php:7661
535
- #: wppa-settings-autosave.php:8292 wppa-settings-autosave.php:8448
536
- #: wppa-thumbnail-widget.php:202 wppa-upload.php:166
537
- msgid "Name"
538
- msgstr "Název"
539
-
540
- #: wppa-ajax.php:821 wppa-ajax.php:1221 wppa-album-admin-autosave.php:1015
541
- #: wppa-album-admin-autosave.php:1152 wppa-album-admin-autosave.php:1324
542
- #: wppa-album-admin-autosave.php:1419 wppa-photo-admin-autosave.php:1335
543
- #: wppa-photo-admin-autosave.php:1454 wppa-settings-autosave.php:453
544
- #: wppa-settings-autosave.php:615 wppa-settings-autosave.php:637
545
- #: wppa-settings-autosave.php:1337 wppa-settings-autosave.php:1358
546
- #: wppa-settings-autosave.php:2732 wppa-settings-autosave.php:2753
547
- #: wppa-settings-autosave.php:3064 wppa-settings-autosave.php:3088
548
- #: wppa-settings-autosave.php:4239 wppa-settings-autosave.php:4260
549
- #: wppa-settings-autosave.php:4436 wppa-settings-autosave.php:4460
550
- #: wppa-settings-autosave.php:5487 wppa-settings-autosave.php:5995
551
- #: wppa-settings-autosave.php:6017 wppa-settings-autosave.php:6597
552
- #: wppa-settings-autosave.php:6621 wppa-settings-autosave.php:8293
553
- #: wppa-settings-autosave.php:8315 wppa-settings-autosave.php:8355
554
- #: wppa-settings-autosave.php:8377 wppa-settings-autosave.php:8423
555
- #: wppa-settings-autosave.php:8449 wppa-widget-admin.php:195
556
- msgid "Description"
557
- msgstr "Popis"
558
-
559
- #: wppa-ajax.php:825
560
- msgid "Unbalanced tags in album description!"
561
- msgstr "Zmatené štítky v popisu alba!"
562
-
563
- #: wppa-ajax.php:832
564
- msgid "Album order #"
565
- msgstr "Pořadí alb #"
566
-
567
- #: wppa-ajax.php:835
568
- msgid "Cover photo"
569
- msgstr "Titulní fotografie"
570
-
571
- #: wppa-ajax.php:838
572
- msgid "Parent album"
573
- msgstr "Nadřazené album:"
574
-
575
- #: wppa-ajax.php:843 wppa-settings-autosave.php:3550
576
- msgid "Photo order"
577
- msgstr "Pořadí fotografií"
578
-
579
- #: wppa-ajax.php:846
580
- msgid "Use Alt thumbsize"
581
- msgstr "Použít alternativní velikost miniatur"
582
-
583
- #: wppa-ajax.php:849
584
- msgid "Cover Type"
585
- msgstr "Typ obalu"
586
-
587
- #: wppa-ajax.php:852 wppa-settings-autosave.php:4461
588
- #: wppa-settings-autosave.php:5488
589
- msgid "Link type"
590
- msgstr "Typ odkazu"
591
-
592
- #: wppa-ajax.php:855 wppa-album-covers.php:1256
593
- msgid "Link to"
594
- msgstr "Odkaz na"
595
-
596
- #: wppa-ajax.php:858 wppa-ajax.php:1242 wppa-album-admin-autosave.php:1026
597
- #: wppa-album-admin-autosave.php:1163 wppa-album-admin-autosave.php:1335
598
- #: wppa-album-admin-autosave.php:1430 wppa-boxes-html.php:524
599
- #: wppa-photo-admin-autosave.php:1337 wppa-photo-admin-autosave.php:1456
600
- #: wppa-widget-admin.php:196
601
- msgid "Owner"
602
- msgstr "Majitel"
603
-
604
- #: wppa-ajax.php:860
605
- #, php-format
606
- msgid "User %s does not exist"
607
- msgstr "Uživatel %s neexistuje"
608
-
609
- #: wppa-ajax.php:865 wppa-ajax.php:871
610
- msgid "Upload limit count"
611
- msgstr "Celkový limit pro nahrávání"
612
-
613
- #: wppa-ajax.php:878
614
- msgid "Upload limit time"
615
- msgstr "Časový limit pro nahrávání"
616
-
617
- #: wppa-ajax.php:882
618
- msgid "Default tags"
619
- msgstr "Výchozí štítky"
620
-
621
- #: wppa-ajax.php:887
622
- msgid "Categories"
623
- msgstr "Kategorie"
624
-
625
- #: wppa-ajax.php:890
626
- msgid "Sub albums sort order"
627
- msgstr "Pořadí řazení sub alb"
628
-
629
- #: wppa-ajax.php:898 wppa-ajax.php:1312
630
- msgid "Schedule date/time"
631
- msgstr "Plánování datum/čas"
632
-
633
- #: wppa-ajax.php:911 wppa-ajax.php:937
634
- #, php-format
635
- msgid "<b>%s</b> of album %s updated"
636
- msgstr "<b>%s</b> z alba %s aktualizováno"
637
-
638
- #: wppa-ajax.php:919
639
- msgid "All photos set to scheduled per date"
640
- msgstr "Všechny fotografie byly naplánovány podle data"
641
-
642
- #: wppa-ajax.php:946
643
- #, php-format
644
- msgid "An error occurred while trying to update <b>%s</b> of album %s"
645
- msgstr "Při pokusu o aktualizaci <b>%s</b> z alba %s se vyskytla chyba"
646
-
647
- #: wppa-ajax.php:947 wppa-ajax.php:1196 wppa-ajax.php:1302
648
- msgid "Press CTRL+F5 and try again."
649
- msgstr "Stiskněte CTRL+F5 a zkuste to znova"
650
-
651
- #: wppa-ajax.php:961
652
- msgid "You do not have the rights to update comment status"
653
- msgstr "Pro aktualizaci statutu komentáře nemáte oprávnění"
654
-
655
- #: wppa-ajax.php:970
656
- #, php-format
657
- msgid "Status of comment #%s updated"
658
- msgstr "Statut komentáře #%s byl aktualizován"
659
-
660
- #: wppa-ajax.php:973
661
- #, php-format
662
- msgid "Error updating status comment #%s"
663
- msgstr "Chyba při aktualizaci statutu komentáře #%s"
664
-
665
- #: wppa-ajax.php:984
666
- msgid "You do not have the rights to change photos"
667
- msgstr "Nemáte oprávnění měnit fotografie"
668
-
669
- #: wppa-ajax.php:993
670
- msgid "Watermark applied"
671
- msgstr "Vodoznak aplikován"
672
-
673
- #: wppa-ajax.php:997
674
- msgid "An error occured while trying to apply a watermark"
675
- msgstr "Při aplikování vodoznaku se vyskytla chyba"
676
-
677
- #: wppa-ajax.php:1010
678
- msgid "You do not have the rights to update photo information"
679
- msgstr "Nemáte práva pro aktualizaci informací o fotografii"
680
-
681
- #: wppa-ajax.php:1016
682
- #, php-format
683
- msgid "%s updated to %s."
684
- msgstr "%s aktualizováno na %s."
685
-
686
- #: wppa-ajax.php:1066
687
- #, php-format
688
- msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
689
- msgstr "Chyba formátu %s. Musí být ve tvaru yyyy:mm:dd hh:mm:ss"
690
-
691
- #: wppa-ajax.php:1070
692
- msgid "Exif date/time updated"
693
- msgstr "Exif Data/času aktualizován"
694
-
695
- #: wppa-ajax.php:1076
696
- msgid "Enter a value > -90 and < 90"
697
- msgstr "Vložte hodnotu mezi -90 a 90"
698
-
699
- #: wppa-ajax.php:1084
700
- msgid "Lattitude updated"
701
- msgstr "Zeměpisná šířka aktualizována"
702
-
703
- #: wppa-ajax.php:1086
704
- msgid "Could not update lattitude"
705
- msgstr "Nelze aktualizovat zeměpisnou šířku"
706
-
707
- #: wppa-ajax.php:1092
708
- msgid "Enter a value > -180 and < 180"
709
- msgstr "Vložte hodnotu mezi -180 a 180"
710
-
711
- #: wppa-ajax.php:1100
712
- msgid "Longitude updated"
713
- msgstr "Zeměpisná délka aktualizována"
714
-
715
- #: wppa-ajax.php:1102
716
- msgid "Could not update longitude"
717
- msgstr "Nelze aktualizovat zeměpisnou délku"
718
-
719
- #: wppa-ajax.php:1110
720
- msgid "Photo files remade"
721
- msgstr "Soubory fotografií aktualizovány"
722
-
723
- #: wppa-ajax.php:1113
724
- msgid "Could not remake files"
725
- msgstr "Nelze znovu vytvořit soubory"
726
-
727
- #: wppa-ajax.php:1119
728
- msgid "Thumbnail remade"
729
- msgstr "Soubory miniatur aktualizovány"
730
-
731
- #: wppa-ajax.php:1122
732
- msgid "Could not remake thumbnail"
733
- msgstr "Miniatury nelze znovu vytvořit."
734
-
735
- #: wppa-ajax.php:1132 wppa-photo-admin-autosave.php:183
736
- #: wppa-settings-autosave.php:3366 wppa-tinymce-scripts.php:288
737
- #: wppa-tinymce-shortcodes.php:514 wppa-widget-admin.php:77
738
- msgid "left"
739
- msgstr "vlevo"
740
-
741
- #: wppa-ajax.php:1136 wppa-photo-admin-autosave.php:185
742
- msgid "180&deg;"
743
- msgstr "180&deg;"
744
-
745
- #: wppa-ajax.php:1140 wppa-photo-admin-autosave.php:187
746
- #: wppa-settings-autosave.php:3366 wppa-tinymce-scripts.php:290
747
- #: wppa-tinymce-shortcodes.php:516 wppa-widget-admin.php:79
748
- msgid "right"
749
- msgstr "vpravo"
750
-
751
- #: wppa-ajax.php:1148
752
- #, php-format
753
- msgid "Photo %s rotated %s"
754
- msgstr "Fotka %s otočena o %s"
755
-
756
- #: wppa-ajax.php:1151
757
- #, php-format
758
- msgid "An error occurred while trying to rotate photo %s"
759
- msgstr "Při otáčení fotky %s se vyskytla chyba"
760
-
761
- #: wppa-ajax.php:1161 wppa-ajax.php:1184 wppa-photo-admin-autosave.php:1071
762
- #: wppa-photo-admin-autosave.php:1089
763
- #, php-format
764
- msgid "A photo with filename %s already exists in album %s."
765
- msgstr "Fotografie s názvem %s již existuje v albu %s."
766
-
767
- #: wppa-ajax.php:1171
768
- #, php-format
769
- msgid "Photo %s has been moved to album %s (%s)"
770
- msgstr "Fotografie %s byla přesunuta do alba %s (%s)"
771
-
772
- #: wppa-ajax.php:1174
773
- #, php-format
774
- msgid "An error occurred while trying to move photo %s"
775
- msgstr "Při přesouvání fotografie %s se vyskytla chyba"
776
-
777
- #: wppa-ajax.php:1192
778
- #, php-format
779
- msgid "Photo %s copied to album %s (%s)"
780
- msgstr "Fotografie %s byla zkopírována do alba %s (%s)"
781
-
782
- #: wppa-ajax.php:1195
783
- #, php-format
784
- msgid "An error occurred while trying to copy photo %s"
785
- msgstr "Při kopírování fotky %s došlo k chybě"
786
-
787
- #: wppa-ajax.php:1225 wppa-ajax.php:1774
788
- msgid "Unbalanced tags in photo description!"
789
- msgstr "Zmatené štítky v popisu fotografie!"
790
-
791
- #: wppa-ajax.php:1231
792
- msgid "Photo order #"
793
- msgstr "Pořadí fotografií #"
794
-
795
- #: wppa-ajax.php:1236
796
- #, php-format
797
- msgid "User %s does not exists"
798
- msgstr "Uživatel %s neexistuje"
799
-
800
- #: wppa-ajax.php:1245
801
- msgid "Link url"
802
- msgstr "URL odkazu"
803
-
804
- #: wppa-ajax.php:1248
805
- msgid "Link title"
806
- msgstr "Název odkazu"
807
-
808
- #: wppa-ajax.php:1251
809
- msgid "Link target"
810
- msgstr "Cíl odkazu"
811
-
812
- #: wppa-ajax.php:1257 wppa-multitag-widget.php:34 wppa-multitag-widget.php:66
813
- #: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
814
- msgid "Photo Tags"
815
- msgstr "Štítky fotografie"
816
-
817
- #: wppa-ajax.php:1262 wppa-comment-admin.php:309 wppa-comment-admin.php:396
818
- #: wppa-photo-admin-autosave.php:1336 wppa-photo-admin-autosave.php:1455
819
- #: wppa-settings-autosave.php:6020 wppa-settings-autosave.php:6600
820
- #: wppa-settings-autosave.php:8316 wppa-settings-autosave.php:8356
821
- #: wppa-settings-autosave.php:8378 wppa-settings-autosave.php:8424
822
- msgid "Status"
823
- msgstr "Status"
824
-
825
- #: wppa-ajax.php:1265
826
- msgid "HTML Alt"
827
- msgstr "Alternativní HTML"
828
-
829
- #: wppa-ajax.php:1269
830
- msgid "Video width"
831
- msgstr "Šířka videa"
832
-
833
- #: wppa-ajax.php:1271 wppa-ajax.php:1278
834
- msgid "Please enter an integer value >= 0"
835
- msgstr "Prosím, vložte celočíselnou hodnotu >= 0"
836
-
837
- #: wppa-ajax.php:1276
838
- msgid "Video height"
839
- msgstr "Výška videa"
840
-
841
- #: wppa-ajax.php:1294 wppa-ajax.php:1328
842
- #, php-format
843
- msgid "<b>%s</b> of video %s updated"
844
- msgstr "Aktualizováno <b>%s</b> u videa %s "
845
-
846
- #: wppa-ajax.php:1297 wppa-ajax.php:1331
847
- #, php-format
848
- msgid "<b>%s</b> of photo %s updated"
849
- msgstr "Aktualizováno <b>%s</b> fotografie %s "
850
-
851
- #: wppa-ajax.php:1301
852
- #, php-format
853
- msgid "An error occurred while trying to update <b>%s</b> of photo %s"
854
- msgstr "Při aktualizaci <b>%s</b> fotografie %s došlo k chybě"
855
-
856
- #: wppa-ajax.php:1357
857
- #, php-format
858
- msgid "<b>Custom field %s</b> of photo %s updated"
859
- msgstr "Aktualizován <b>Uživatelský záznam %s</b>u fotografief %s"
860
-
861
- #: wppa-ajax.php:1364
862
- msgid "<b>Error during upload.</b>"
863
- msgstr "<b>Při nahrávání došlo k chybě.</b>"
864
-
865
- #: wppa-ajax.php:1389
866
- msgid "Photo files updated."
867
- msgstr "Soubory fotografií aktualizovány."
868
-
869
- #: wppa-ajax.php:1394
870
- msgid "Could not update files."
871
- msgstr "Soubory nelze aktualizovat."
872
-
873
- #: wppa-ajax.php:1405
874
- #, php-format
875
- msgid "Stereo mode updated in %d milliseconds"
876
- msgstr "Stereo režim aktualizován během %d ms"
877
-
878
- #: wppa-ajax.php:1421
879
- msgid "You do not have the rights to update settings"
880
- msgstr "Pro aktualizaci nastavení nemáte oprávnění"
881
-
882
- #: wppa-ajax.php:1502
883
- msgid "Capability granted"
884
- msgstr "Oprávnění udělena"
885
-
886
- #: wppa-ajax.php:1507
887
- msgid "Capability withdrawn"
888
- msgstr "Oprávnění odebrána"
889
-
890
- #: wppa-ajax.php:1518
891
- msgid "Column width."
892
- msgstr "Šířka sloupce"
893
-
894
- #: wppa-ajax.php:1521
895
- msgid "Initial width."
896
- msgstr "Výchozí šířka."
897
-
898
- #: wppa-ajax.php:1524
899
- msgid "Full size."
900
- msgstr "Plná velikost."
901
-
902
- #: wppa-ajax.php:1527
903
- msgid "Max height."
904
- msgstr "Maximální výška."
905
-
906
- #: wppa-ajax.php:1530
907
- msgid "Thumbnail size."
908
- msgstr "Velikost miniatur."
909
-
910
- #: wppa-ajax.php:1533
911
- msgid "Thumbnail frame width"
912
- msgstr "Šířka rámce miniatury"
913
-
914
- #: wppa-ajax.php:1536
915
- msgid "Thumbnail frame height"
916
- msgstr "Výška rámce miniatury"
917
-
918
- #: wppa-ajax.php:1539
919
- msgid "Thumbnail Spacing"
920
- msgstr "Mezera mezi miniaturami"
921
-
922
- #: wppa-ajax.php:1542
923
- msgid "Photocount treshold."
924
- msgstr "Limit počtu fotografií."
925
-
926
- #: wppa-ajax.php:1545
927
- msgid "Thumb page size."
928
- msgstr "Velikost stránky miniatur."
929
-
930
- #: wppa-ajax.php:1548
931
- msgid "Cover photo size."
932
- msgstr "Velikost titulní fotografie."
933
-
934
- #: wppa-ajax.php:1551
935
- msgid "Album page size."
936
- msgstr "Velikost stránky alba."
937
-
938
- #: wppa-ajax.php:1554
939
- msgid "Number of TopTen photos"
940
- msgstr "Počet TopTen fotografií"
941
-
942
- #: wppa-ajax.php:1557
943
- msgid "Widget image thumbnail size"
944
- msgstr "Velikost Widgetu miniatur"
945
-
946
- #: wppa-ajax.php:1560 wppa-settings-autosave.php:1013
947
- msgid "Max Cover width"
948
- msgstr "Max šířka obalu alba"
949
-
950
- #: wppa-ajax.php:1563
951
- msgid "Minimal description height"
952
- msgstr "Minimální výška popisu"
953
-
954
- #: wppa-ajax.php:1566
955
- msgid "Minimal cover height"
956
- msgstr "Minimální výška obalu"
957
-
958
- #: wppa-ajax.php:1569
959
- msgid "Minimal text frame height"
960
- msgstr "Minimální výška rámce textu"
961
-
962
- #: wppa-ajax.php:1572
963
- msgid "Border width"
964
- msgstr "Šířka okraje"
965
-
966
- #: wppa-ajax.php:1575 wppa-settings-autosave.php:713
967
- msgid "Border radius"
968
- msgstr "Poloměr okraje"
969
-
970
- #: wppa-ajax.php:1578 wppa-settings-autosave.php:724
971
- msgid "Box spacing"
972
- msgstr "Mezera mezi panely"
973
-
974
- #: wppa-ajax.php:1584 wppa-settings-autosave.php:988
975
- msgid "Popup size"
976
- msgstr "Velikost vyskakovacího okna"
977
-
978
- #: wppa-ajax.php:1587
979
- msgid "Fullsize border width"
980
- msgstr "Šířka okraje při plném zobrazení"
981
-
982
- #: wppa-ajax.php:1590
983
- msgid "Lightbox Bordersize"
984
- msgstr "Velikost okraje pro Lightbox"
985
-
986
- #: wppa-ajax.php:1593
987
- msgid "Number of Comment widget entries"
988
- msgstr "Počet komentářů ve Widgetu"
989
-
990
- #: wppa-ajax.php:1596
991
- msgid "Comment Widget image thumbnail size"
992
- msgstr "Velikost miniatur ve Widgetu komentářů"
993
-
994
- #: wppa-ajax.php:1599 wppa-ajax.php:1602 wppa-ajax.php:1605
995
- msgid "Opacity."
996
- msgstr "Průhlednost."
997
-
998
- #: wppa-ajax.php:1614 wppa-settings-autosave.php:1119
999
- msgid "Avatar size"
1000
- msgstr "Velikost Avataru"
1001
-
1002
- #: wppa-ajax.php:1617 wppa-ajax.php:1620
1003
- msgid "Watermark opacity"
1004
- msgstr "Průhlednost vodoznaku"
1005
-
1006
- #: wppa-ajax.php:1623 wppa-settings-autosave.php:1288
1007
- msgid "Number of text lines"
1008
- msgstr "Počet textových řádků"
1009
-
1010
- #: wppa-ajax.php:1626 wppa-settings-autosave.php:4137
1011
- msgid "Overlay opacity"
1012
- msgstr "Průhlednost překryvů"
1013
-
1014
- #: wppa-ajax.php:1629 wppa-settings-autosave.php:7120
1015
- msgid "Upload limit"
1016
- msgstr "Limit pro nahrávání"
1017
-
1018
- #: wppa-ajax.php:1632 wppa-settings-autosave.php:3845
1019
- msgid "Notify inappropriate"
1020
- msgstr "Upozornění na nevhodnost"
1021
-
1022
- #: wppa-ajax.php:1635
1023
- msgid "Dislike pending"
1024
- msgstr "Neukončená nevhodnost"
1025
-
1026
- #: wppa-ajax.php:1638
1027
- msgid "Dislike delete"
1028
- msgstr "Smazat nevhodnost"
1029
-
1030
- #: wppa-ajax.php:1641 wppa-settings-autosave.php:6696
1031
- msgid "Max execution time"
1032
- msgstr "Maximální čas provedení"
1033
-
1034
- #: wppa-ajax.php:1646
1035
- msgid "Cube Points points"
1036
- msgstr "Body 'Cube Points'"
1037
-
1038
- #: wppa-ajax.php:1649
1039
- msgid "JPG Image quality"
1040
- msgstr "Kvalita obrazu JPG"
1041
-
1042
- #: wppa-ajax.php:1655 wppa-settings-autosave.php:3759
1043
- msgid "Number of coverphotos"
1044
- msgstr "Počet titulních fotografií"
1045
-
1046
- #: wppa-ajax.php:1658 wppa-settings-autosave.php:3816
1047
- msgid "Dislike value"
1048
- msgstr "Hodnota 'nelíbí se'"
1049
-
1050
- #: wppa-ajax.php:1661 wppa-settings-autosave.php:844
1051
- msgid "Slideshow pagesize"
1052
- msgstr "Velikost stránky prezentace"
1053
-
1054
- #: wppa-ajax.php:1664 wppa-settings-autosave.php:742
1055
- msgid "Max Pagelinks"
1056
- msgstr "Maximální počet odkazů na stránce"
1057
-
1058
- #: wppa-ajax.php:1671
1059
- msgid "Ratings cleared"
1060
- msgstr "Hodnocení vymazáno"
1061
-
1062
- #: wppa-ajax.php:1674
1063
- msgid "Could not clear ratings"
1064
- msgstr "Hodnocení nelze vymazat"
1065
-
1066
- #: wppa-ajax.php:1683
1067
- msgid "Viewcounts cleared"
1068
- msgstr "Počty shlédnutí vymazány"
1069
-
1070
- #: wppa-ajax.php:1686
1071
- msgid "Could not clear viewcounts"
1072
- msgstr "Počty shlédnutí nelze vymazat"
1073
-
1074
- #: wppa-ajax.php:1696
1075
- msgid "IPTC data cleared"
1076
- msgstr "IPTC data vymazána"
1077
-
1078
- #: wppa-ajax.php:1697
1079
- msgid "Refresh this page to clear table X"
1080
- msgstr "Pro vymazání tabulky X obnovte tuto stránku"
1081
-
1082
- #: wppa-ajax.php:1701
1083
- msgid "Could not clear IPTC data"
1084
- msgstr "Nelze vymazat IPTC data"
1085
-
1086
- #: wppa-ajax.php:1711
1087
- msgid "EXIF data cleared"
1088
- msgstr "EXIF data vymazána"
1089
-
1090
- #: wppa-ajax.php:1712
1091
- msgid "Refresh this page to clear table XI"
1092
- msgstr "Pro vymazání tabulky XI obnovte tuto stránku"
1093
-
1094
- #: wppa-ajax.php:1716
1095
- msgid "Could not clear EXIF data"
1096
- msgstr "Nelze vymazat EXIF data"
1097
-
1098
- #: wppa-ajax.php:1724
1099
- msgid "Recuperation performed"
1100
- msgstr "Obnovení provedeno"
1101
-
1102
- #: wppa-ajax.php:1739
1103
- msgid ""
1104
- "Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
1105
- "#77bbff"
1106
- msgstr ""
1107
- "Špatný formát. Prosím vložte 6 znaků HEX hodnoty barvy. Například: #77bbff"
1108
-
1109
- #: wppa-ajax.php:1765
1110
- msgid "You just changed a setting that requires the recalculation of ratings."
1111
- msgstr "Právě jste změnili nastavení, které vyžaduje přepočítání hodnocení."
1112
-
1113
- #: wppa-ajax.php:1766 wppa-ajax.php:2134
1114
- msgid "Please run the appropriate action in Table VIII."
1115
- msgstr "Prosím spusťte odpovídající akci v Tabulce VIII."
1116
-
1117
- #: wppa-ajax.php:1790 wppa-ajax.php:1806
1118
- #, php-format
1119
- msgid "Unable to create or write to %s"
1120
- msgstr "%s nelze vytvořit nebo zapisovat"
1121
-
1122
- #: wppa-ajax.php:1799
1123
- msgid "Source can not be inside the wppa folder."
1124
- msgstr "Zdroj nemůže být uvnitř adresáře wppa."
1125
-
1126
- #: wppa-ajax.php:1816
1127
- msgid "The content must contain w#album"
1128
- msgstr "Obsah musí obsahovat w#album"
1129
-
1130
- #: wppa-ajax.php:1823
1131
- msgid "The content must contain w#lat and w#lon"
1132
- msgstr "Obsah musí obsahovat w#lat a w#lon"
1133
-
1134
- #: wppa-ajax.php:1865 wppa-ajax.php:1871
1135
- msgid "Members"
1136
- msgstr "Uživatelé"
1137
-
1138
- #: wppa-ajax.php:1865
1139
- msgid "Parent of the member albums"
1140
- msgstr "Nadřazené pro alba uživatelů"
1141
-
1142
- #: wppa-ajax.php:2009
1143
- #, php-format
1144
- msgid "User %s has been blacklisted."
1145
- msgstr "Uživatel %s byl přidán na černou listinu."
1146
-
1147
- #: wppa-ajax.php:2012
1148
- #, php-format
1149
- msgid "User %s does not exist."
1150
- msgstr "Uživatel %s neexistuje."
1151
-
1152
- #: wppa-ajax.php:2035
1153
- msgid ""
1154
- "The content of the Custom box has been changed to display the Fotomoto "
1155
- "toolbar."
1156
- msgstr ""
1157
- "Obsah uživatelského panelu byl změněn, aby bylo možné zobrazit Fotomoto "
1158
- "panel nástrojů."
1159
-
1160
- #: wppa-ajax.php:2039 wppa-ajax.php:2054
1161
- msgid "The display of the custom box has been enabled"
1162
- msgstr "Zobrazení uživatelského panelu bylo povoleno"
1163
-
1164
- #: wppa-ajax.php:2050
1165
- msgid "The content of the Custom box has been changed to display maps."
1166
- msgstr "Obsah uživatelského panelu byl změněn, aby bylo možné zobrazit mapy."
1167
-
1168
- #: wppa-ajax.php:2080
1169
- msgid "This value can not be empty"
1170
- msgstr "Tato hodnota nesmí být prázdná"
1171
-
1172
- #: wppa-ajax.php:2112
1173
- #, php-format
1174
- msgid "Failed to set %s to %s"
1175
- msgstr "Nepodařilo se nastavit %s na %s"
1176
-
1177
- #: wppa-ajax.php:2117
1178
- #, php-format
1179
- msgid "Setting %s updated to %s"
1180
- msgstr "Nastavení %s změněno na %s"
1181
-
1182
- #: wppa-ajax.php:2133
1183
- msgid ""
1184
- "You just changed a setting that requires the regeneration of thumbnails."
1185
- msgstr ""
1186
- "Právě jste změnili nastavení, které vyžaduje nové vygenerování miniatur."
1187
-
1188
- #: wppa-ajax.php:2188
1189
- msgid "Missing album id"
1190
- msgstr "Chybějící id alba"
1191
-
1192
- #: wppa-ajax.php:2208
1193
- msgid "You do not have the rights to delete this album"
1194
- msgstr "Nemáte oprávnění odstranit toto album"
1195
-
1196
- #: wppa-ajax.php:2249 wppa-ajax.php:2256
1197
- msgid "You may also enter:"
1198
- msgstr "Můžete také zadat:"
1199
-
1200
- #: wppa-ajax.php:2250 wppa-ajax.php:2257
1201
- msgid "You may also leave/set this blank"
1202
- msgstr "Toto můžete také ponechat prázdné"
1203
-
1204
- #: wppa-album-admin-autosave.php:23 wppa-album-admin-autosave.php:706
1205
- msgid "Upload to this album"
1206
- msgstr "Nahrát do tohoto alba"
1207
-
1208
- #: wppa-album-admin-autosave.php:37
1209
- msgid "Warning:"
1210
- msgstr "Upozornění:"
1211
-
1212
- #: wppa-album-admin-autosave.php:37
1213
- #, php-format
1214
- msgid ""
1215
- "The uploads directory does not exist or is not writable by the server. "
1216
- "Please make sure that %s is writeable by the server."
1217
- msgstr ""
1218
- "Na serveru neexistuje nebo není zapisovatelný adresář pro nahrávání. Prosím "
1219
- "ujistěte se, že %s je serverem zapisovatelný,"
1220
-
1221
- #: wppa-album-admin-autosave.php:75 wppa-album-admin-autosave.php:746
1222
- msgid "Manage Photos"
1223
- msgstr "Spravovat fotografie"
1224
-
1225
- #: wppa-album-admin-autosave.php:76 wppa-album-admin-autosave.php:747
1226
- msgid "Copy / move / delete / edit name / edit description / change status"
1227
- msgstr ""
1228
- "Kopírovat / přesunout / smazat / upravit název / upravit popis / změnit "
1229
- "status"
1230
-
1231
- #: wppa-album-admin-autosave.php:77 wppa-album-admin-autosave.php:749
1232
- msgid "Edit photo information except copy and move"
1233
- msgstr "Upravit informace o fotografii vyjma kopírování a přesunutí"
1234
-
1235
- #: wppa-album-admin-autosave.php:78 wppa-album-admin-autosave.php:750
1236
- msgid "Edit photo information"
1237
- msgstr "Upravit informace o fotografii"
1238
-
1239
- #: wppa-album-admin-autosave.php:81 wppa-album-admin-autosave.php:88
1240
- msgid "Back to album table"
1241
- msgstr "Zpět do tabulky alba"
1242
-
1243
- #: wppa-album-admin-autosave.php:87 wppa-album-admin-autosave.php:757
1244
- msgid "Top of page"
1245
- msgstr "Začátek stránky"
1246
-
1247
- #: wppa-album-admin-autosave.php:114 wppa-functions.php:3871
1248
- #: wppa-settings-autosave.php:7006 wppa-wpdb-insert.php:329
1249
- msgid "New Album"
1250
- msgstr "Nové album"
1251
-
1252
- #: wppa-album-admin-autosave.php:119 wppa-upload.php:1555 wppa-upload.php:1591
1253
- #: wppa-upload.php:2351
1254
- msgid "Could not create album."
1255
- msgstr "Album nelze vytvořit."
1256
-
1257
- #: wppa-album-admin-autosave.php:127 wppa-upload.php:1561 wppa-upload.php:2359
1258
- msgid "Album #"
1259
- msgstr "Album #"
1260
-
1261
- #: wppa-album-admin-autosave.php:127 wppa-upload.php:1561 wppa-upload.php:2359
1262
- msgid "Added."
1263
- msgstr "Přidáno."
1264
-
1265
- #: wppa-album-admin-autosave.php:172
1266
- msgid "Edit Album Information"
1267
- msgstr "Upravit informace o albu"
1268
-
1269
- #: wppa-album-admin-autosave.php:172 wppa-settings-autosave.php:292
1270
- msgid "Auto Save"
1271
- msgstr "Automaticky uložit"
1272
-
1273
- #: wppa-album-admin-autosave.php:174
1274
- msgid ""
1275
- "All modifications are instantly updated on the server, except for those that "
1276
- "require a button push."
1277
- msgstr ""
1278
- "Na serveru jsou okamžitě prováděny všechny změny kromě těch, které vyžadují "
1279
- "stisknutí tlačítka."
1280
-
1281
- #: wppa-album-admin-autosave.php:175
1282
- msgid ""
1283
- "The <b style=\"color:#070\" >Remark</b> fields keep you informed on the "
1284
- "actions taken at the background."
1285
- msgstr ""
1286
- "<b style=\"color:#070\" >Zvýrazněná</b> pole vás informují o činnostech "
1287
- "prováděných na pozadí."
1288
-
1289
- #: wppa-album-admin-autosave.php:179
1290
- msgid "Album number:"
1291
- msgstr "Číslo Alba:"
1292
-
1293
- #: wppa-album-admin-autosave.php:188
1294
- msgid "Name:"
1295
- msgstr "Název:"
1296
-
1297
- #: wppa-album-admin-autosave.php:195
1298
- msgid "Update Album name"
1299
- msgstr "Upravit název alba"
1300
-
1301
- #: wppa-album-admin-autosave.php:203
1302
- msgid "Type the name of the album. Do not leave this empty."
1303
- msgstr "Zadejte název alba. Nenechávejte toto pole prázdné."
1304
-
1305
- #: wppa-album-admin-autosave.php:211 wppa-photo-admin-autosave.php:724
1306
- #: wppa-photo-admin-autosave.php:749
1307
- msgid "Description:"
1308
- msgstr "Popis :"
1309
-
1310
- #: wppa-album-admin-autosave.php:222
1311
- msgid "Update Album description"
1312
- msgstr "Upravit popis alba"
1313
-
1314
- #: wppa-album-admin-autosave.php:232
1315
- msgid "Enter / modify the description for this album."
1316
- msgstr "Vložte / upravte popis tohoto alba"
1317
-
1318
- #: wppa-album-admin-autosave.php:240
1319
- #, fuzzy
1320
- msgid "Created:"
1321
- msgstr "Vytvořit"
1322
-
1323
- #: wppa-album-admin-autosave.php:243 wppa-album-admin-autosave.php:254
1324
- #: wppa-photo-admin-autosave.php:256 wppa-photo-admin-autosave.php:279
1325
- msgid "local time"
1326
- msgstr "místní čas"
1327
-
1328
- #: wppa-album-admin-autosave.php:249 wppa-photo-admin-autosave.php:274
1329
- msgid "Modified:"
1330
- msgstr "Změněno:"
1331
-
1332
- #: wppa-album-admin-autosave.php:257 wppa-photo-admin-autosave.php:282
1333
- #: wppa-photo-admin-autosave.php:1443
1334
- msgid "Not modified"
1335
- msgstr "Nezměněno"
1336
-
1337
- #: wppa-album-admin-autosave.php:266 wppa-thumbnails.php:645
1338
- #: wppa-thumbnails.php:1420
1339
- msgid "Views:"
1340
- msgstr "Zobrazeno:"
1341
-
1342
- #: wppa-album-admin-autosave.php:279 wppa-photo-admin-autosave.php:260
1343
- msgid "Owned by:"
1344
- msgstr "Majitel:"
1345
-
1346
- #: wppa-album-admin-autosave.php:297
1347
- msgid ""
1348
- "WARNING If you change the owner, you will no longer be able to modify this "
1349
- "album and upload or import photos to it!"
1350
- msgstr ""
1351
- "VAROVÁNÍ Změníte-li majitele alba, nebudete nadále schopen upravovat toto "
1352
- "album, ani do něj nahrávat fotografie!"
1353
-
1354
- #: wppa-album-admin-autosave.php:299
1355
- msgid "Enter user login name or <b>--- public ---</b>"
1356
- msgstr "Zadejte uživatelské jméno nebo <b>--- veřejný ---</b>"
1357
-
1358
- #: wppa-album-admin-autosave.php:308
1359
- msgid "Album sort order #:"
1360
- msgstr "Řazení alba #:"
1361
-
1362
- #: wppa-album-admin-autosave.php:316
1363
- msgid ""
1364
- "Album order # has only effect if you set the album sort order method to "
1365
- "<b>Order #</b> in the Photo Albums -> Settings screen.<br />"
1366
- msgstr ""
1367
- "Řazení alba # má význam, pouze pokud nastavíte metodu řazení na <b>Pořadí #</"
1368
- "b> v FotoAlba -> obrazovka Nastavení.<br />"
1369
-
1370
- #: wppa-album-admin-autosave.php:319
1371
- msgid ""
1372
- "If you want to sort the albums by order #, enter / modify the order number "
1373
- "here."
1374
- msgstr ""
1375
- "Chcete-li alba řadit podle pořadí #, zde vložte / upravte pořadové číslo"
1376
-
1377
- #: wppa-album-admin-autosave.php:326 wppa-tinymce-shortcodes.php:294
1378
- #: wppa-tinymce-shortcodes.php:320 wppa-tinymce-shortcodes.php:459
1379
- msgid "Parent album:"
1380
- msgstr "Nadřazené album:"
1381
-
1382
- #: wppa-album-admin-autosave.php:337
1383
- msgid ""
1384
- "If this is a sub album, select the album in which this album will appear."
1385
- msgstr "Toto je sub-album, zvolte album, ve kterém se toto album zobrazí."
1386
-
1387
- #: wppa-album-admin-autosave.php:346
1388
- msgid "Photo order:"
1389
- msgstr "Pořadí fotografií:"
1390
-
1391
- #: wppa-album-admin-autosave.php:350 wppa-album-admin-autosave.php:451
1392
- #: wppa-settings-autosave.php:3593 wppa-settings-autosave.php:3617
1393
- msgid "--- default ---"
1394
- msgstr "--- výchozí ---"
1395
-
1396
- #: wppa-album-admin-autosave.php:351 wppa-album-admin-autosave.php:407
1397
- #: wppa-settings-autosave.php:3555 wppa-settings-autosave.php:3669
1398
- #: wppa-thumbnail-widget.php:201
1399
- msgid "Order #"
1400
- msgstr "Pořadí #"
1401
-
1402
- #: wppa-album-admin-autosave.php:353 wppa-album-admin-autosave.php:406
1403
- #: wppa-settings-autosave.php:3557 wppa-settings-autosave.php:3671
1404
- #: wppa-thumbnail-widget.php:203 wppa-widget-admin.php:142
1405
- msgid "Random"
1406
- msgstr "Náhodně"
1407
-
1408
- #: wppa-album-admin-autosave.php:354 wppa-settings-autosave.php:3558
1409
- msgid "Rating mean value"
1410
- msgstr "Kvalita hodnocení"
1411
-
1412
- #: wppa-album-admin-autosave.php:355 wppa-bestof-widget.php:170
1413
- #: wppa-settings-autosave.php:3559 wppa-topten-widget.php:237
1414
- msgid "Number of votes"
1415
- msgstr "Počet hlasů"
1416
-
1417
- #: wppa-album-admin-autosave.php:356 wppa-album-admin-autosave.php:411
1418
- #: wppa-settings-autosave.php:3560 wppa-settings-autosave.php:3672
1419
- msgid "Timestamp"
1420
- msgstr "Časové razítko"
1421
-
1422
- #: wppa-album-admin-autosave.php:357 wppa-photo-admin-autosave.php:291
1423
- #: wppa-settings-autosave.php:3561
1424
- msgid "EXIF Date"
1425
- msgstr "EXIF datum"
1426
-
1427
- #: wppa-album-admin-autosave.php:358 wppa-settings-autosave.php:3562
1428
- #: wppa-settings-autosave.php:3673
1429
- msgid "Order # desc"
1430
- msgstr "Popis Pořadí #"
1431
-
1432
- #: wppa-album-admin-autosave.php:359 wppa-settings-autosave.php:3563
1433
- #: wppa-settings-autosave.php:3674
1434
- msgid "Name desc"
1435
- msgstr "Popis názvu"
1436
-
1437
- #: wppa-album-admin-autosave.php:360 wppa-settings-autosave.php:3564
1438
- #: wppa-thumbnail-widget.php:204
1439
- msgid "Rating mean value desc"
1440
- msgstr "Popis kvality hodnocení"
1441
-
1442
- #: wppa-album-admin-autosave.php:361 wppa-settings-autosave.php:3565
1443
- #: wppa-thumbnail-widget.php:205
1444
- msgid "Number of votes desc"
1445
- msgstr "Popis počtu hlasů"
1446
-
1447
- #: wppa-album-admin-autosave.php:362 wppa-settings-autosave.php:3566
1448
- #: wppa-settings-autosave.php:3675 wppa-thumbnail-widget.php:206
1449
- msgid "Timestamp desc"
1450
- msgstr "Popis časového razítka"
1451
-
1452
- #: wppa-album-admin-autosave.php:363 wppa-settings-autosave.php:3567
1453
- msgid "EXIF Date desc"
1454
- msgstr "Popis EXIF datumu"
1455
-
1456
- #: wppa-album-admin-autosave.php:392
1457
- msgid "Specify the way the photos should be ordered in this album."
1458
- msgstr "Nastavte způsob řazení, který má být použit v tomto albu."
1459
-
1460
- #: wppa-album-admin-autosave.php:393
1461
- msgid ""
1462
- "The default setting can be changed in the <b>Photo Albums -> Settings</b> "
1463
- "page <b>Table IV-C1</b>."
1464
- msgstr ""
1465
- "Výchozí nastavení lze změnit v <b>FotoAlba -> </b>stránka <b>Nastavení "
1466
- "Tabulka IV-C1</b>."
1467
-
1468
- #: wppa-album-admin-autosave.php:401
1469
- msgid "Sub album sort order:"
1470
- msgstr "Způsob řazení sub alba:"
1471
-
1472
- #: wppa-album-admin-autosave.php:405
1473
- msgid "See Table IV-D1"
1474
- msgstr "Viz Tabulka IV-D1"
1475
-
1476
- #: wppa-album-admin-autosave.php:408
1477
- msgid "Order # reverse"
1478
- msgstr "Pořadí # sestupně"
1479
-
1480
- #: wppa-album-admin-autosave.php:410
1481
- msgid "Name reverse"
1482
- msgstr "Název sestupně"
1483
-
1484
- #: wppa-album-admin-autosave.php:412
1485
- msgid "Timestamp reverse"
1486
- msgstr "Časové razítko sestupně"
1487
-
1488
- #: wppa-album-admin-autosave.php:417
1489
- msgid ""
1490
- "Specify the sequence order method to be used for the sub albums of this "
1491
- "album."
1492
- msgstr "Určete metodu sekvence řazení pro sub-alba v tomto albu."
1493
-
1494
- #: wppa-album-admin-autosave.php:426
1495
- msgid "Use alt thumbsize:"
1496
- msgstr "Použít alternativní velikost miniatur:"
1497
-
1498
- #: wppa-album-admin-autosave.php:430 wppa-bestof-widget.php:182
1499
- #: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
1500
- #: wppa-topten-widget.php:245 wppa-topten-widget.php:253
1501
- #: wppa-topten-widget.php:258 wppa-topten-widget.php:263
1502
- #: wppa-topten-widget.php:268 wppa-topten-widget.php:273
1503
- msgid "no"
1504
- msgstr "ne"
1505
-
1506
- #: wppa-album-admin-autosave.php:431 wppa-bestof-widget.php:181
1507
- #: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
1508
- #: wppa-super-view-widget.php:85 wppa-topten-widget.php:244
1509
- #: wppa-topten-widget.php:252 wppa-topten-widget.php:257
1510
- #: wppa-topten-widget.php:262 wppa-topten-widget.php:267
1511
- #: wppa-topten-widget.php:272
1512
- msgid "yes"
1513
- msgstr "ano"
1514
-
1515
- #: wppa-album-admin-autosave.php:436
1516
- msgid ""
1517
- "If set to <b>yes</b> The settings in <b>Table I-C1a,3a</b> and <b>4a</b> "
1518
- "apply rather than <b>I-C1,3</b> and <b>4</b>."
1519
- msgstr ""
1520
- "Je-li nastaveno <b>ano</b>, budou upřednostňována nastavení z <b>Tabulky I-"
1521
- "C1a,3a</b> a <b>4a</b> před <b>I-C1,3</b> a <b>4</b>."
1522
-
1523
- #: wppa-album-admin-autosave.php:446
1524
- msgid "Cover Type:"
1525
- msgstr "Typ obalu alba:"
1526
-
1527
- #: wppa-album-admin-autosave.php:452 wppa-settings-autosave.php:1887
1528
- #: wppa-settings-autosave.php:3739
1529
- msgid "Standard"
1530
- msgstr "Standardní"
1531
-
1532
- #: wppa-album-admin-autosave.php:453 wppa-settings-autosave.php:3740
1533
- msgid "Long Descriptions"
1534
- msgstr "Dlouhé popisy"
1535
-
1536
- #: wppa-album-admin-autosave.php:454 wppa-settings-autosave.php:3741
1537
- msgid "Image Factory"
1538
- msgstr "Image Factory"
1539
-
1540
- #: wppa-album-admin-autosave.php:455 wppa-settings-autosave.php:3742
1541
- msgid "Standard mcr"
1542
- msgstr "Standardní MCR"
1543
-
1544
- #: wppa-album-admin-autosave.php:456 wppa-settings-autosave.php:3743
1545
- msgid "Long Descriptions mcr"
1546
- msgstr "MCR s dlouhými popisy "
1547
-
1548
- #: wppa-album-admin-autosave.php:457 wppa-settings-autosave.php:3744
1549
- msgid "Image Factory mcr"
1550
- msgstr "MCR Image Factory"
1551
-
1552
- #: wppa-album-admin-autosave.php:463
1553
- msgid ""
1554
- "The default cover type is the systems standard set in the <b>Photo Albums -> "
1555
- "Settings</b> page <b>Table IV-D6</b>."
1556
- msgstr ""
1557
- "Výchozí typ obalu alba je systémem standardně nastaven v <b>FotoAlba -></b> "
1558
- "stránka <b>Nastavení - Tabulka IV-D6</b>."
1559
-
1560
- #: wppa-album-admin-autosave.php:473
1561
- msgid "Cover Photo:"
1562
- msgstr "Titulní fotografie:"
1563
-
1564
- #: wppa-album-admin-autosave.php:481
1565
- msgid "Select the photo you want to appear on the cover of this album."
1566
- msgstr "Zvolte fotografii, která bude zobrazena na obalu tohoto alba."
1567
-
1568
- #: wppa-album-admin-autosave.php:482
1569
- msgid ""
1570
- "Select the way the cover photos of this album are selected, or select a "
1571
- "single image."
1572
- msgstr ""
1573
- "Zvolte způsob výběru titulních fotografií na obal tohoto alba, nebo vyberte "
1574
- "jednu fotografii."
1575
-
1576
- #: wppa-album-admin-autosave.php:491
1577
- msgid "Upload limit:"
1578
- msgstr "Limit pro nahrávání:"
1579
-
1580
- #: wppa-album-admin-autosave.php:499 wppa-settings-autosave.php:5613
1581
- #: wppa-settings-autosave.php:7127
1582
- msgid "for ever"
1583
- msgstr "napořád"
1584
-
1585
- #: wppa-album-admin-autosave.php:500 wppa-album-admin-autosave.php:517
1586
- #: wppa-settings-autosave.php:5614 wppa-settings-autosave.php:7128
1587
- msgid "per hour"
1588
- msgstr "za hodinu"
1589
-
1590
- #: wppa-album-admin-autosave.php:501 wppa-album-admin-autosave.php:518
1591
- #: wppa-settings-autosave.php:5615 wppa-settings-autosave.php:7129
1592
- msgid "per day"
1593
- msgstr "za den"
1594
-
1595
- #: wppa-album-admin-autosave.php:502 wppa-album-admin-autosave.php:519
1596
- #: wppa-settings-autosave.php:5616 wppa-settings-autosave.php:7130
1597
- msgid "per week"
1598
- msgstr "za týden"
1599
-
1600
- #: wppa-album-admin-autosave.php:503 wppa-album-admin-autosave.php:520
1601
- #: wppa-settings-autosave.php:5617 wppa-settings-autosave.php:7131
1602
- msgid "per month"
1603
- msgstr "za měsíc"
1604
-
1605
- #: wppa-album-admin-autosave.php:504 wppa-album-admin-autosave.php:521
1606
- #: wppa-settings-autosave.php:5618 wppa-settings-autosave.php:7132
1607
- msgid "per year"
1608
- msgstr "za rok"
1609
-
1610
- #: wppa-album-admin-autosave.php:508
1611
- msgid "Set the upload limit (0 means unlimited) and the upload limit period."
1612
- msgstr ""
1613
- "Nastavit limit pro nahrávání (0 znamená neomezeno) a periodu pro limit "
1614
- "nahrávání."
1615
-
1616
- #: wppa-album-admin-autosave.php:513
1617
- msgid "Unlimited"
1618
- msgstr "Bez omezení"
1619
-
1620
- #: wppa-album-admin-autosave.php:532
1621
- msgid "Catogories:"
1622
- msgstr "Kategorie:"
1623
-
1624
- #: wppa-album-admin-autosave.php:542
1625
- msgid "Separate categories with commas."
1626
- msgstr "Oddělte kategorie čárkami."
1627
-
1628
- #: wppa-album-admin-autosave.php:543 wppa-photo-admin-autosave.php:803
1629
- msgid "Examples:"
1630
- msgstr "Příklady:"
1631
-
1632
- #: wppa-album-admin-autosave.php:549 wppa-photo-admin-autosave.php:807
1633
- msgid "- select -"
1634
- msgstr "- vyber -"
1635
-
1636
- #: wppa-album-admin-autosave.php:555
1637
- msgid "No categories yet"
1638
- msgstr "Zatím neexistují žádné kategorie"
1639
-
1640
- #: wppa-album-admin-autosave.php:559 wppa-photo-admin-autosave.php:817
1641
- msgid "Select to add"
1642
- msgstr "Vyberte pro přidání"
1643
-
1644
- #: wppa-album-admin-autosave.php:567
1645
- msgid "Default photo tags:"
1646
- msgstr "Výchozí štítky fotografií"
1647
-
1648
- #: wppa-album-admin-autosave.php:573
1649
- msgid ""
1650
- "Enter the tags that you want to be assigned to new photos in this album."
1651
- msgstr "Zadejte štítky, které chcete přiřadit novým fotografiím v tomto albu."
1652
-
1653
- #: wppa-album-admin-autosave.php:578
1654
- msgid ""
1655
- "Are you sure you want to set the default tags to all photos in this album?"
1656
- msgstr ""
1657
- "Jste si jisti, že chcete nastavit výchozí štítky pro všechny fotografie v "
1658
- "tomto albu?"
1659
-
1660
- #: wppa-album-admin-autosave.php:579
1661
- msgid ""
1662
- "Are you sure you want to add the default tags to all photos in this album?"
1663
- msgstr ""
1664
- "Jste si jisti, že chcete přidat výchozí štítky pro všechny fotografie v "
1665
- "tomto albu?"
1666
-
1667
- #: wppa-album-admin-autosave.php:582
1668
- msgid "Apply default tags"
1669
- msgstr "Použít výchozí štítky"
1670
-
1671
- #: wppa-album-admin-autosave.php:587
1672
- msgid "Tag all photos in this album with the default tags."
1673
- msgstr "Označit všechny fotografie v tomto albu výchozími štítky"
1674
-
1675
- #: wppa-album-admin-autosave.php:592
1676
- msgid "Add default tags"
1677
- msgstr "Přidat výchozí štítky"
1678
-
1679
- #: wppa-album-admin-autosave.php:597
1680
- msgid "Add the default tags to all photos in this album."
1681
- msgstr "Přidat ke všem fotkám v tomto albu výchozí štítky."
1682
-
1683
- #: wppa-album-admin-autosave.php:604
1684
- msgid "Link type:"
1685
- msgstr "Typ odkazu:"
1686
-
1687
- #: wppa-album-admin-autosave.php:611 wppa-settings-autosave.php:7288
1688
- msgid "the sub-albums and thumbnails"
1689
- msgstr "sub-alba a miniatury"
1690
-
1691
- #: wppa-album-admin-autosave.php:612 wppa-settings-autosave.php:7289
1692
- msgid "the sub-albums"
1693
- msgstr "sub-alba"
1694
-
1695
- #: wppa-album-admin-autosave.php:613 wppa-settings-autosave.php:7290
1696
- msgid "the thumbnails"
1697
- msgstr "miniatury"
1698
-
1699
- #: wppa-album-admin-autosave.php:614 wppa-settings-autosave.php:7291
1700
- msgid "the album photos as slideshow"
1701
- msgstr "fotografie z alba a prezentace"
1702
-
1703
- #: wppa-album-admin-autosave.php:615
1704
- msgid "the link page with a clean url"
1705
- msgstr "odkaz na stránku čistým URL"
1706
-
1707
- #: wppa-album-admin-autosave.php:616 wppa-settings-autosave.php:7292
1708
- msgid "no link at all"
1709
- msgstr "úplně bez odkazu"
1710
-
1711
- #: wppa-album-admin-autosave.php:621
1712
- msgid ""
1713
- "If you select \"the link page with a clean url\", select an Auto Page of one "
1714
- "of the photos in this album."
1715
- msgstr ""
1716
- "Zvolíte-li \"odkaz na stránku čistým URL\", vyberte Automatickou stránku "
1717
- "jedné z fotografií tohoto alba."
1718
-
1719
- #: wppa-album-admin-autosave.php:622
1720
- msgid ""
1721
- "If you select \"the link page with a clean url\", make sure you enter the "
1722
- "correct shortcode on the target page."
1723
- msgstr ""
1724
- "Zvolíte-li \"odkaz na stránku čistým URL\", ujistěte se, že jste na cílovou "
1725
- "stránku vložili správný krátký kód."
1726
-
1727
- #: wppa-album-admin-autosave.php:631 wppa-bestof-widget.php:196
1728
- #: wppa-slideshow-widget.php:221 wppa-widget-admin.php:164
1729
- #: wppa-widget-admin.php:174
1730
- msgid "Link to:"
1731
- msgstr "Odkaz na:"
1732
-
1733
- #: wppa-album-admin-autosave.php:637 wppa-settings-autosave.php:8882
1734
- #: wppa-settings-autosave.php:8931
1735
- msgid "There are no pages (yet) to link to."
1736
- msgstr "Zatím neexistují žádné stránky k propojení."
1737
-
1738
- #: wppa-album-admin-autosave.php:642
1739
- msgid "--- the same page or post ---"
1740
- msgstr "--- stejná stránka nebo příspěvek ---"
1741
-
1742
- #: wppa-album-admin-autosave.php:650
1743
- msgid ""
1744
- "If you want, you can link the title to a WP page in stead of the album's "
1745
- "content. If so, select the page the title links to."
1746
- msgstr ""
1747
- "Pokud chcete, můžete nasměrovat odkaz z názvu na stránku WP, namísto na "
1748
- "obsah alba. Pokud tak učiníte vyberte stránku na kterou nasměrujete odkaz z "
1749
- "názvu."
1750
-
1751
- #: wppa-album-admin-autosave.php:660
1752
- msgid "Schedule:"
1753
- msgstr "Plán:"
1754
-
1755
- #: wppa-album-admin-autosave.php:671
1756
- msgid ""
1757
- "If enabled, new photos will have their status set to the dat/time specified "
1758
- "here."
1759
- msgstr ""
1760
- "Pokud je povoleno, budou mít nové fotografie nastaven status na datum/čas "
1761
- "nastavený zde."
1762
-
1763
- #: wppa-album-admin-autosave.php:677
1764
- msgid "Are you sure you want to schedule all photos in this album?"
1765
- msgstr "Opravdu chcete naplánovat všechny fotografie v tomto albu?"
1766
-
1767
- #: wppa-album-admin-autosave.php:677
1768
- msgid "Schedule all"
1769
- msgstr "Naplánovat vše"
1770
-
1771
- #: wppa-album-admin-autosave.php:685
1772
- msgid "Are you sure you want to clear the ratings in this album?"
1773
- msgstr "Opravdu chcete smazat všechna hodnocení v tomto albu?"
1774
-
1775
- #: wppa-album-admin-autosave.php:685
1776
- msgid "Reset ratings"
1777
- msgstr "Vymazat hodnocení"
1778
-
1779
- #: wppa-album-admin-autosave.php:702
1780
- msgid "Change the upload limit or remove photos to enable new uploads."
1781
- msgstr ""
1782
- "Změnit limit pro nahrávání nebo odstranění fotografií a umožnit tak další "
1783
- "nahrání."
1784
-
1785
- #: wppa-album-admin-autosave.php:706
1786
- #, php-format
1787
- msgid "(max %d)"
1788
- msgstr "(max %d)"
1789
-
1790
- #: wppa-album-admin-autosave.php:707
1791
- msgid "Album is full"
1792
- msgstr "Album je plné"
1793
-
1794
- #: wppa-album-admin-autosave.php:718
1795
- msgid "Apply new photo desc"
1796
- msgstr "Vložit popis nové fotografie"
1797
-
1798
- #: wppa-album-admin-autosave.php:729
1799
- msgid "Remake all"
1800
- msgstr "Vše znovu vytvořit"
1801
-
1802
- #: wppa-album-admin-autosave.php:737 wppa-photo-admin-autosave.php:917
1803
- msgid "Remark:"
1804
- msgstr "Poznámka:"
1805
-
1806
- #: wppa-album-admin-autosave.php:740
1807
- #, php-format
1808
- msgid "Album %s is not modified yet"
1809
- msgstr "Album % s ještě nebylo upraveno"
1810
-
1811
- #: wppa-album-admin-autosave.php:748
1812
- msgid "Change sequence order by drag and drop"
1813
- msgstr "Změňte sekvenci řazení pomocí 'táhni a pusť'"
1814
-
1815
- #: wppa-album-admin-autosave.php:767
1816
- msgid "Moderate comment"
1817
- msgstr "Moderování komentářů"
1818
-
1819
- #: wppa-album-admin-autosave.php:783
1820
- msgid "Moderate photo"
1821
- msgstr "Moderování fotografií"
1822
-
1823
- #: wppa-album-admin-autosave.php:784 wppa-functions.php:2108
1824
- #: wppa-photo-admin-autosave.php:24
1825
- msgid "Edit photo"
1826
- msgstr "Upravit fotografii"
1827
-
1828
- #: wppa-album-admin-autosave.php:808
1829
- msgid "Delete Album"
1830
- msgstr "Smazat album"
1831
-
1832
- #: wppa-album-admin-autosave.php:810 wppa-boxes-html.php:807
1833
- #: wppa-breadcrumb.php:276 wppa-breadcrumb.php:294 wppa-breadcrumb.php:322
1834
- #: wppa-breadcrumb.php:340 wppa-breadcrumb.php:404 wppa-breadcrumb.php:429
1835
- #: wppa-breadcrumb.php:577 wppa-comment-admin.php:65 wppa-featen-widget.php:137
1836
- #: wppa-lasten-widget.php:177 wppa-slideshow-widget.php:199
1837
- #: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:218
1838
- #: wppa-upload-widget.php:77 wppa-upload.php:116 wppa-upload.php:204
1839
- #: wppa-upload.php:251
1840
- msgid "Album:"
1841
- msgstr "Album:"
1842
-
1843
- #: wppa-album-admin-autosave.php:811
1844
- msgid "Are you sure you want to delete this album?"
1845
- msgstr "Opravdu chcete smazat toto album?"
1846
-
1847
- #: wppa-album-admin-autosave.php:812
1848
- msgid "Press Delete to continue, and Cancel to go back."
1849
- msgstr "Pro pokračování stiskněte Smazat, pro návrat Zrušit."
1850
-
1851
- #: wppa-album-admin-autosave.php:817
1852
- msgid "What would you like to do with photos currently in the album?"
1853
- msgstr "Co si přejete provést se stávajícími fotografiemi v albu?"
1854
-
1855
- #: wppa-album-admin-autosave.php:818 wppa-album-admin-autosave.php:827
1856
- #: wppa-album-admin-autosave.php:1062 wppa-album-admin-autosave.php:1102
1857
- #: wppa-album-admin-autosave.php:1199 wppa-album-admin-autosave.php:1371
1858
- #: wppa-album-admin-autosave.php:1466 wppa-album-admin-autosave.php:1652
1859
- #: wppa-comment-admin.php:311 wppa-comment-admin.php:380
1860
- #: wppa-comment-admin.php:398 wppa-functions.php:1921 wppa-links.php:740
1861
- #: wppa-links.php:758 wppa-photo-admin-autosave.php:1283
1862
- #: wppa-photo-admin-autosave.php:1351 wppa-thumbnails.php:590
1863
- msgid "Delete"
1864
- msgstr "Smazat"
1865
-
1866
- #: wppa-album-admin-autosave.php:819
1867
- msgid "Move to:"
1868
- msgstr "Přesunout do:"
1869
-
1870
- #: wppa-album-admin-autosave.php:826 wppa-settings-autosave.php:2665
1871
- msgid "Cancel"
1872
- msgstr "Zrušit"
1873
-
1874
- #: wppa-album-admin-autosave.php:857
1875
- msgid "Unable to move photos. Album not deleted."
1876
- msgstr "Fotografie nelze přesunout. Album nebylo smazáno."
1877
-
1878
- #: wppa-album-admin-autosave.php:879
1879
- msgid "Manage Albums"
1880
- msgstr "Správa alb"
1881
-
1882
- #: wppa-album-admin-autosave.php:885
1883
- msgid "Are you sure you want to create a new album?"
1884
- msgstr "Jste si jisti, že chcete vytvořit nové album?"
1885
-
1886
- #: wppa-album-admin-autosave.php:890
1887
- msgid "Create New Empty Album"
1888
- msgstr "Vytvořit nové prázdné album"
1889
-
1890
- #: wppa-album-admin-autosave.php:896
1891
- msgid "Switch to Collapsable table"
1892
- msgstr "Přepnout na Sbalitelnou tabulku"
1893
-
1894
- #: wppa-album-admin-autosave.php:899
1895
- msgid "Switch to Flat table"
1896
- msgstr "Přepnout na Plochou tabulku"
1897
-
1898
- #: wppa-album-admin-autosave.php:995 wppa-album-admin-autosave.php:1132
1899
- #: wppa-album-admin-autosave.php:1303 wppa-album-admin-autosave.php:1398
1900
- #: wppa-photo-admin-autosave.php:1332 wppa-photo-admin-autosave.php:1451
1901
- msgid "ID"
1902
- msgstr "ID"
1903
-
1904
- #: wppa-album-admin-autosave.php:1037 wppa-album-admin-autosave.php:1174
1905
- #: wppa-album-admin-autosave.php:1346 wppa-album-admin-autosave.php:1441
1906
- msgid "Order"
1907
- msgstr "Pořadí"
1908
-
1909
- #: wppa-album-admin-autosave.php:1047 wppa-album-admin-autosave.php:1184
1910
- #: wppa-album-admin-autosave.php:1356 wppa-album-admin-autosave.php:1451
1911
- msgid "Parent"
1912
- msgstr "Nadřazené"
1913
-
1914
- #: wppa-album-admin-autosave.php:1055 wppa-album-admin-autosave.php:1192
1915
- #: wppa-album-admin-autosave.php:1364 wppa-album-admin-autosave.php:1459
1916
- msgid "Albums/Photos/Moderation required/Scheduled"
1917
- msgstr "Alba / Fotografie / Moderování vyžadováno / Naplánované"
1918
-
1919
- #: wppa-album-admin-autosave.php:1056 wppa-album-admin-autosave.php:1193
1920
- #: wppa-album-admin-autosave.php:1365 wppa-album-admin-autosave.php:1460
1921
- msgid "A/P/PM/S"
1922
- msgstr "A/P/PM/S"
1923
-
1924
- #: wppa-album-admin-autosave.php:1059 wppa-album-admin-autosave.php:1097
1925
- #: wppa-album-admin-autosave.php:1196 wppa-album-admin-autosave.php:1368
1926
- #: wppa-album-admin-autosave.php:1463 wppa-album-admin-autosave.php:1541
1927
- #: wppa-album-admin-autosave.php:1647
1928
- msgid "Quick"
1929
- msgstr "Rychle"
1930
-
1931
- #: wppa-album-admin-autosave.php:1060 wppa-album-admin-autosave.php:1098
1932
- #: wppa-album-admin-autosave.php:1197 wppa-album-admin-autosave.php:1369
1933
- #: wppa-album-admin-autosave.php:1464 wppa-album-admin-autosave.php:1546
1934
- #: wppa-album-admin-autosave.php:1648
1935
- msgid "Bulk"
1936
- msgstr "Dávkově"
1937
-
1938
- #: wppa-album-admin-autosave.php:1061 wppa-album-admin-autosave.php:1099
1939
- #: wppa-album-admin-autosave.php:1198 wppa-album-admin-autosave.php:1370
1940
- #: wppa-album-admin-autosave.php:1465 wppa-album-admin-autosave.php:1649
1941
- msgid "Seq"
1942
- msgstr "Sekv"
1943
-
1944
- #: wppa-album-admin-autosave.php:1063 wppa-album-admin-autosave.php:1107
1945
- #: wppa-album-admin-autosave.php:1110 wppa-album-admin-autosave.php:1200
1946
- #: wppa-album-admin-autosave.php:1372 wppa-album-admin-autosave.php:1467
1947
- #: wppa-album-admin-autosave.php:1657 wppa-album-admin-autosave.php:1660
1948
- msgid "Create"
1949
- msgstr "Vytvořit"
1950
-
1951
- #: wppa-album-admin-autosave.php:1106 wppa-album-admin-autosave.php:1656
1952
- msgid "Are you sure you want to create a subalbum?"
1953
- msgstr "Opravdu chcete vytvořit sub-album?"
1954
-
1955
- #: wppa-album-admin-autosave.php:1213 wppa-album-admin-autosave.php:1494
1956
- msgid "No albums yet."
1957
- msgstr "Žádné album ještě není definované."
1958
-
1959
- #: wppa-album-admin-autosave.php:1297 wppa-album-admin-autosave.php:1620
1960
- msgid "Collapse subalbums"
1961
- msgstr "Sbalit sub-alba"
1962
-
1963
- #: wppa-album-admin-autosave.php:1298 wppa-album-admin-autosave.php:1621
1964
- msgid "Expand subalbums"
1965
- msgstr "Rozbalit sub-alba"
1966
-
1967
- #: wppa-album-admin-autosave.php:1380
1968
- msgid ""
1969
- "The following albums are ---separate--- and do not show up in the generic "
1970
- "album display"
1971
- msgstr ""
1972
- "Následující alba jsou ---separátní--- a nezobrazují se v generickém "
1973
- "zobrazení alb"
1974
-
1975
- #: wppa-album-admin-autosave.php:1510
1976
- msgid "Search for photos to edit"
1977
- msgstr "Hledat fotografie pro úpravu"
1978
-
1979
- #: wppa-album-admin-autosave.php:1511
1980
- msgid ""
1981
- "Enter search words seperated by commas. Photos will meet all search words by "
1982
- "their names, descriptions, translated keywords and/or tags."
1983
- msgstr ""
1984
- "Zadejte vyhledávací výrazy oddělené čárkami. Fotografie mohou splňovat "
1985
- "hledaná slova v názvu, popisu, přeložených klíčových slovech a/nebo štítcích."
1986
-
1987
- #: wppa-album-admin-autosave.php:1517
1988
- msgid "Any"
1989
- msgstr "Jakékoli"
1990
-
1991
- #: wppa-album-admin-autosave.php:1521
1992
- msgid "Search for"
1993
- msgstr "Vyhledat"
1994
-
1995
- #: wppa-album-admin-autosave.php:1563
1996
- #, php-format
1997
- msgid ""
1998
- "There are <strong>%d</strong> albums and <strong>%d</strong> photos in the "
1999
- "system."
2000
- msgstr "V systému je <strong>%d</strong> alb a <strong>%d</strong> fotografií."
2001
-
2002
- #: wppa-album-admin-autosave.php:1564
2003
- #, php-format
2004
- msgid "<strong>%d</strong> photos are pending moderation."
2005
- msgstr "<strong>%d</strong> fotografií vyžaduje moderování."
2006
-
2007
- #: wppa-album-admin-autosave.php:1565
2008
- #, php-format
2009
- msgid "<strong>%d</strong> photos are scheduled for later publishing."
2010
- msgstr ""
2011
- "<strong>%d</strong> fotografií je naplánováno pro pozdější publikování."
2012
-
2013
- #: wppa-album-admin-autosave.php:1568
2014
- #, php-format
2015
- msgid "The most recently added album is <strong>%s</strong> (%d)."
2016
- msgstr "Nejnověji přidané album je <strong>%s</strong> (%d)."
2017
-
2018
- #: wppa-album-admin-autosave.php:1572
2019
- #, php-format
2020
- msgid "The most recently added photo is <strong>%s</strong> (%d)"
2021
- msgstr "Nejnověji přidaná fotografie je <strong>%s</strong> (%d)."
2022
-
2023
- #: wppa-album-admin-autosave.php:1573
2024
- #, php-format
2025
- msgid "in album <strong>%s</strong> (%d)."
2026
- msgstr "v albu <strong>%s</strong> (%d)."
2027
-
2028
- #: wppa-album-admin-autosave.php:1694
2029
- #, php-format
2030
- msgid "Unable to move photos to album %s. Album not deleted."
2031
- msgstr "Fotografie nelze přesunout do alba %s. Album nebylo smazáno."
2032
-
2033
- #: wppa-album-admin-autosave.php:1715
2034
- #, php-format
2035
- msgid "Time is out after %d photo deletes. Please redo this operation"
2036
- msgstr "Po %d výmazech došlo k přetečení času. Prosím opakujte tuto operaci."
2037
-
2038
- #: wppa-album-admin-autosave.php:1750
2039
- msgid "Album Deleted."
2040
- msgstr "Album smazáno."
2041
-
2042
- #: wppa-album-admin-autosave.php:1772
2043
- #, php-format
2044
- msgid "auto select max %s random"
2045
- msgstr "automaticky vybrat maximálně %s náhodně"
2046
-
2047
- #: wppa-album-admin-autosave.php:1774
2048
- #, php-format
2049
- msgid "auto select max %s featured"
2050
- msgstr "automaticky vybrat maximálně %s doporučené"
2051
-
2052
- #: wppa-album-admin-autosave.php:1776
2053
- #, php-format
2054
- msgid "max %s most recent added"
2055
- msgstr "maximálně %s nejnověji přidaných"
2056
-
2057
- #: wppa-album-admin-autosave.php:1778
2058
- #, php-format
2059
- msgid "max %s from (grand)child albums"
2060
- msgstr "Maximálně %s z podřízených alb"
2061
-
2062
- #: wppa-album-admin-autosave.php:1780
2063
- #, fuzzy, php-format
2064
- msgid "max %s most recent from (grand)child albums"
2065
- msgstr "Maximálně %s z podřízených alb"
2066
-
2067
- #: wppa-album-admin-autosave.php:1784
2068
- msgid "--- random ---"
2069
- msgstr "--- náhodně ---"
2070
-
2071
- #: wppa-album-admin-autosave.php:1786
2072
- msgid "--- random featured ---"
2073
- msgstr "--- náhodně doporučené ---"
2074
-
2075
- #: wppa-album-admin-autosave.php:1788
2076
- msgid "--- most recent added ---"
2077
- msgstr "--- nejnověji přidané ---"
2078
-
2079
- #: wppa-album-admin-autosave.php:1790
2080
- msgid "--- random from (grand)children ---"
2081
- msgstr "--- náhodně z podřízených ---"
2082
-
2083
- #: wppa-album-admin-autosave.php:1792
2084
- #, fuzzy
2085
- msgid "--- most recent from (grand)children ---"
2086
- msgstr "--- náhodně z podřízených ---"
2087
-
2088
- #: wppa-album-admin-autosave.php:1804
2089
- msgid "Nameless, filename = "
2090
- msgstr "Bezejmenný, název souboru ="
2091
-
2092
- #: wppa-album-covers.php:1286 wppa-album-covers.php:1345
2093
- #: wppa-album-covers.php:1353
2094
- msgid "View the album"
2095
- msgstr "Zobrazit album"
2096
-
2097
- #: wppa-album-covers.php:1306
2098
- msgid "View the cover photo"
2099
- msgid_plural "View the cover photos"
2100
- msgstr[0] "Zobrazit titulní fotografii z obalu"
2101
- msgstr[1] "Zobrazit titulní fotografie z obalu"
2102
- msgstr[2] "Zobrazit titulní fotografie z obalu"
2103
-
2104
- #: wppa-album-covers.php:1359
2105
- msgid "View"
2106
- msgstr "Zobrazit:"
2107
-
2108
- #: wppa-album-covers.php:1362
2109
- msgid "album"
2110
- msgstr "album"
2111
-
2112
- #: wppa-album-covers.php:1365 wppa-settings-autosave.php:1232
2113
- #: wppa-settings-autosave.php:5650
2114
- msgid "albums"
2115
- msgstr "alba"
2116
-
2117
- #: wppa-album-covers.php:1374 wppa-boxes-html.php:1162 wppa-breadcrumb.php:148
2118
- #: wppa-breadcrumb.php:154 wppa-breadcrumb.php:161 wppa-breadcrumb.php:368
2119
- #: wppa-breadcrumb.php:379 wppa-functions.php:4270 wppa-utils.php:1605
2120
- msgid "and"
2121
- msgstr "a"
2122
-
2123
- #: wppa-album-covers.php:1379 wppa-comment-admin.php:253
2124
- msgid "photo"
2125
- msgstr "fotografie"
2126
-
2127
- #: wppa-album-covers.php:1382 wppa-album-covers.php:1386
2128
- #: wppa-settings-autosave.php:698 wppa-settings-autosave.php:737
2129
- #: wppa-settings-autosave.php:1152 wppa-settings-autosave.php:1192
2130
- #: wppa-settings-autosave.php:1212 wppa-settings-autosave.php:1252
2131
- #: wppa-settings-autosave.php:3763 wppa-settings-autosave.php:5634
2132
- #: wppa-settings-autosave.php:7125
2133
- msgid "photos"
2134
- msgstr "fotografií"
2135
-
2136
- #: wppa-album-covers.php:1565 wppa-boxes-html.php:831 wppa-non-admin.php:577
2137
- #: wppa-settings-autosave.php:2137 wppa-settings-autosave.php:5083
2138
- #: wppa-settings-autosave.php:7447
2139
- msgid "Slideshow"
2140
- msgstr "Prezentace"
2141
-
2142
- #: wppa-album-covers.php:1566
2143
- msgid "Browse photos"
2144
- msgstr "Prohlédnout fotografie"
2145
-
2146
- #: wppa-album-covers.php:1601
2147
- msgid "Categories:"
2148
- msgstr "Kategorie:"
2149
-
2150
- #: wppa-album-covers.php:1604 wppa-breadcrumb.php:389 wppa-breadcrumb.php:394
2151
- msgid "Category:"
2152
- msgstr "Kategorie:"
2153
-
2154
- #: wppa-album-navigator-widget.php:12
2155
- msgid "WPPA+ Album navigator"
2156
- msgstr "WPPA+ Album navigátor"
2157
-
2158
- #: wppa-album-navigator-widget.php:13
2159
- msgid "Album navigator"
2160
- msgstr "Album navigátor"
2161
-
2162
- #: wppa-album-navigator-widget.php:91 wppa-album-widget.php:317
2163
- #: wppa-bestof-widget.php:131 wppa-comment-widget.php:119
2164
- #: wppa-featen-widget.php:134 wppa-gp-widget.php:88 wppa-lasten-widget.php:174
2165
- #: wppa-multitag-widget.php:72 wppa-potd-widget.php:186 wppa-qr-widget.php:94
2166
- #: wppa-search-widget.php:73 wppa-slideshow-widget.php:198
2167
- #: wppa-stereo-widget.php:68 wppa-super-view-widget.php:73
2168
- #: wppa-tagcloud-widget.php:68 wppa-thumbnail-widget.php:184
2169
- #: wppa-topten-widget.php:215 wppa-upldr-widget.php:175
2170
- #: wppa-upload-widget.php:75 wppa-widget-admin.php:177
2171
- msgid "Title:"
2172
- msgstr "Název:"
2173
-
2174
- #: wppa-album-navigator-widget.php:92 wppa-album-widget.php:318
2175
- msgid "Album selection or Parent album:"
2176
- msgstr "Vyberte album nebo nadřazené album:"
2177
-
2178
- #: wppa-album-navigator-widget.php:95 wppa-album-widget.php:321
2179
- msgid "--- all albums ---"
2180
- msgstr "--- všechna alba ---"
2181
-
2182
- #: wppa-album-navigator-widget.php:96 wppa-album-widget.php:322
2183
- msgid "--- all generic albums ---"
2184
- msgstr "--- všechna generická alba ---"
2185
-
2186
- #: wppa-album-navigator-widget.php:97 wppa-album-widget.php:323
2187
- msgid "--- all separate albums ---"
2188
- msgstr "--- všechna separátní alba ---"
2189
-
2190
- #: wppa-album-navigator-widget.php:109 wppa-album-widget.php:343
2191
- msgid "Skip \"empty\" albums:"
2192
- msgstr "Vynechat \"prázdná\" alba:"
2193
-
2194
- #: wppa-album-navigator-widget.php:111 wppa-album-widget.php:338
2195
- #: wppa-album-widget.php:345 wppa-lasten-widget.php:202
2196
- #: wppa-slideshow-widget.php:206 wppa-slideshow-widget.php:226
2197
- #: wppa-slideshow-widget.php:233 wppa-slideshow-widget.php:240
2198
- #: wppa-slideshow-widget.php:247 wppa-slideshow-widget.php:254
2199
- #: wppa-thumbnail-widget.php:227
2200
- msgid "no."
2201
- msgstr "ne."
2202
-
2203
- #: wppa-album-navigator-widget.php:112 wppa-album-widget.php:339
2204
- #: wppa-album-widget.php:346 wppa-lasten-widget.php:203
2205
- #: wppa-slideshow-widget.php:207 wppa-slideshow-widget.php:227
2206
- #: wppa-slideshow-widget.php:234 wppa-slideshow-widget.php:241
2207
- #: wppa-slideshow-widget.php:248 wppa-slideshow-widget.php:255
2208
- #: wppa-thumbnail-widget.php:228
2209
- msgid "yes."
2210
- msgstr "ano."
2211
-
2212
- #: wppa-album-widget.php:15
2213
- msgid "WPPA+ Albums"
2214
- msgstr "WPPA+ Alba"
2215
-
2216
- #: wppa-album-widget.php:16 wppa-album-widget.php:308
2217
- msgid "Thumbnail Albums"
2218
- msgstr "Alba miniatur"
2219
-
2220
- #: wppa-album-widget.php:109
2221
- #, php-format
2222
- msgid "Upload at least %d photos to this album!"
2223
- msgstr "Nahrát alespoň %d fotek do tohoto alba!"
2224
-
2225
- #: wppa-album-widget.php:324
2226
- msgid "--- most recently added albums ---"
2227
- msgstr "--- nejnověji přidaná alba --"
2228
-
2229
- #: wppa-album-widget.php:336
2230
- msgid "Show album names:"
2231
- msgstr "Zobrazit názvy alb:"
2232
-
2233
- #: wppa-album-widget.php:350 wppa-comment-widget.php:120
2234
- #: wppa-featen-widget.php:145 wppa-lasten-widget.php:207
2235
- #: wppa-thumbnail-widget.php:232 wppa-topten-widget.php:277
2236
- msgid ""
2237
- "You can set the sizes in this widget in the <b>Photo Albums -> Settings</b> "
2238
- "admin page."
2239
- msgstr ""
2240
- "Velikosti pro tento Widget lze nastavit na administrátorské stránce "
2241
- "<b>FotoAlba -> Nastavení</b>."
2242
-
2243
- #: wppa-audio.php:183
2244
- msgid ""
2245
- "There is no filetype available for your browser, or your browser does not "
2246
- "support html5 audio"
2247
- msgstr ""
2248
- "Pro váš prohlížeč není k dispozici žádný typ souboru, nebo váš prohlížeč "
2249
- "nepodporuje HTML5 audio."
2250
-
2251
- #: wppa-bestof-widget.php:15
2252
- msgid "WPPA+ Best Of Rated Photos"
2253
- msgstr "WPPA+ Nejlépe hodnocené fotografie"
2254
-
2255
- #: wppa-bestof-widget.php:16 wppa-bestof-widget.php:49
2256
- #: wppa-bestof-widget.php:109
2257
- msgid "Best Of Photos"
2258
- msgstr "Nejlépe hodnocené fotografie"
2259
-
2260
- #: wppa-bestof-widget.php:152
2261
- msgid "Photo(s)"
2262
- msgstr "Fotografie"
2263
-
2264
- #: wppa-bestof-widget.php:153
2265
- msgid "Owner(s)"
2266
- msgstr "Majitel(é)"
2267
-
2268
- #: wppa-bestof-widget.php:158
2269
- msgid "Last week"
2270
- msgstr "Minulý týden"
2271
-
2272
- #: wppa-bestof-widget.php:159
2273
- msgid "This week"
2274
- msgstr "Tento týden"
2275
-
2276
- #: wppa-bestof-widget.php:160
2277
- msgid "Last month"
2278
- msgstr "Minulý měsíc"
2279
-
2280
- #: wppa-bestof-widget.php:161
2281
- msgid "This month"
2282
- msgstr "Tento měsíc"
2283
-
2284
- #: wppa-bestof-widget.php:162
2285
- msgid "Last year"
2286
- msgstr "Minulý rok"
2287
-
2288
- #: wppa-bestof-widget.php:163
2289
- msgid "This year"
2290
- msgstr "Tento rok"
2291
-
2292
- #: wppa-bestof-widget.php:168
2293
- msgid "Number of max ratings"
2294
- msgstr "Počet maximálních hodnocení"
2295
-
2296
- #: wppa-bestof-widget.php:169 wppa-topten-widget.php:236
2297
- msgid "Mean value"
2298
- msgstr "Průměr"
2299
-
2300
- #: wppa-bestof-widget.php:178 wppa-topten-widget.php:249
2301
- #: wppa-widget-admin.php:188
2302
- msgid "Subtitle:"
2303
- msgstr "Podtitulek:"
2304
-
2305
- #: wppa-bestof-widget.php:179
2306
- msgid "No of max ratings:"
2307
- msgstr "Počet max. hodnocení:"
2308
-
2309
- #: wppa-bestof-widget.php:184 wppa-topten-widget.php:260
2310
- msgid "Mean rating:"
2311
- msgstr "Průměr hodnocení"
2312
-
2313
- #: wppa-bestof-widget.php:189 wppa-topten-widget.php:265
2314
- msgid "Rating count:"
2315
- msgstr "Počet hodnocení"
2316
-
2317
- #: wppa-bestof-widget.php:198 wppa-common-functions.php:2016 wppa-items.php:365
2318
- #: wppa-settings-autosave.php:1301 wppa-settings-autosave.php:1622
2319
- #: wppa-settings-autosave.php:3352 wppa-settings-autosave.php:3366
2320
- #: wppa-settings-autosave.php:3554 wppa-settings-autosave.php:3668
2321
- #: wppa-settings-autosave.php:5154 wppa-settings-autosave.php:6964
2322
- #: wppa-settings-autosave.php:7143 wppa-settings-autosave.php:7199
2323
- #: wppa-settings-autosave.php:8053 wppa-settings-autosave.php:8209
2324
- #: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
2325
- #: wppa-tinymce-shortcodes.php:513 wppa-upload.php:1515 wppa-watermark.php:520
2326
- #: wppa-widget-admin.php:76 wppa-widget-admin.php:193
2327
- msgid "--- none ---"
2328
- msgstr "--- žádné ---"
2329
-
2330
- #: wppa-bestof-widget.php:199
2331
- msgid "The authors album(s)"
2332
- msgstr "Alba autora"
2333
-
2334
- #: wppa-bestof-widget.php:200
2335
- msgid "The photos in the authors album(s)"
2336
- msgstr "Fotografie v albech autora"
2337
-
2338
- #: wppa-bestof-widget.php:201
2339
- msgid "All the authors photos"
2340
- msgstr "Všechny fotografie autora"
2341
-
2342
- #: wppa-boxes-html.php:133 wppa-boxes-html.php:238
2343
- msgid "Photo search results"
2344
- msgstr "Výsledek vyhledávání fotek"
2345
-
2346
- #: wppa-boxes-html.php:370 wppa-breadcrumb.php:136
2347
- #: wppa-settings-autosave.php:384
2348
- msgid "Albums"
2349
- msgstr "Alba:"
2350
-
2351
- #: wppa-boxes-html.php:376 wppa-breadcrumb.php:151
2352
- msgid "Photos"
2353
- msgstr "Fotografie"
2354
-
2355
- #: wppa-boxes-html.php:395
2356
- msgid "Category"
2357
- msgstr "Kategorie"
2358
-
2359
- #: wppa-boxes-html.php:408 wppa-boxes-html.php:541
2360
- msgid "Text"
2361
- msgstr "Text"
2362
-
2363
- #: wppa-boxes-html.php:424 wppa-boxes-html.php:478 wppa-boxes-html.php:624
2364
- #: wppa-boxes-html.php:654
2365
- msgid "CTRL+Click to add/remove option."
2366
- msgstr "CTRL+Klik pro nastavení/zrušení předvolby."
2367
-
2368
- #: wppa-boxes-html.php:425 wppa-boxes-html.php:479 wppa-boxes-html.php:625
2369
- #: wppa-boxes-html.php:655
2370
- msgid "Items must meet all selected options."
2371
- msgstr "Položky musí splňovat všechny vybrané možnosti."
2372
-
2373
- #: wppa-boxes-html.php:533 wppa-settings-autosave.php:8313
2374
- #: wppa-settings-autosave.php:8353 wppa-settings-autosave.php:8375
2375
- #: wppa-settings-autosave.php:8421
2376
- msgid "Tag"
2377
- msgstr "Štítek"
2378
-
2379
- #: wppa-boxes-html.php:549
2380
- msgid "Iptc"
2381
- msgstr "IPTC"
2382
-
2383
- #: wppa-boxes-html.php:558
2384
- msgid "Exif"
2385
- msgstr "EXIF"
2386
-
2387
- #: wppa-boxes-html.php:756 wppa-boxes-html.php:835
2388
- msgid "Submit"
2389
- msgstr "Odeslat"
2390
-
2391
- #: wppa-boxes-html.php:798 wppa-super-view-widget.php:14
2392
- #: wppa-super-view-widget.php:64
2393
- msgid "Super View Photos"
2394
- msgstr "Super zobrazení fotografií"
2395
-
2396
- #: wppa-boxes-html.php:823 wppa-settings-autosave.php:400
2397
- #: wppa-settings-autosave.php:4345
2398
- msgid "Thumbnails"
2399
- msgstr "Miniatury"
2400
-
2401
- #: wppa-boxes-html.php:869
2402
- msgid "Tagged photos"
2403
- msgstr "Fotografie se štítky"
2404
-
2405
- #: wppa-boxes-html.php:883
2406
- msgid "Please select a tagcloud landing page in Table VI-C3b"
2407
- msgstr "Vyberte prosím cílovou stránku pro Skupinu štítků v Tabulce VI-C3b"
2408
-
2409
- #: wppa-boxes-html.php:942
2410
- msgid "Multi Tagged photos"
2411
- msgstr "Fotografie s více štítky"
2412
-
2413
- #: wppa-boxes-html.php:956
2414
- msgid "Please select a multitag landing page in Table VI-C4b"
2415
- msgstr "Prosím vyberte cílovou stránku pro vícenásobné štítky v Tabulce VI-C4b"
2416
-
2417
- #: wppa-boxes-html.php:1001
2418
- msgid "Please check the tag(s) that the photos must have"
2419
- msgstr "Zkontrolujte prosím štítek(ky), které fotografie musí mít"
2420
-
2421
- #: wppa-boxes-html.php:1032
2422
- msgid "And"
2423
- msgstr "a"
2424
-
2425
- #: wppa-boxes-html.php:1043
2426
- msgid "Or"
2427
- msgstr "nebo"
2428
-
2429
- #: wppa-boxes-html.php:1058
2430
- #, fuzzy
2431
- msgid "Inverse selection"
2432
- msgstr "Speciální výběr"
2433
-
2434
- #: wppa-boxes-html.php:1111
2435
- msgid "Find!"
2436
- msgstr "Najdi!"
2437
-
2438
- #: wppa-boxes-html.php:1138
2439
- msgid "Social media landing page"
2440
- msgstr "Vyberte prosím cílovou stránku pro sociální sítě"
2441
-
2442
- #: wppa-boxes-html.php:1163 wppa-utils.php:1605
2443
- #, php-format
2444
- msgid "See this image on %s"
2445
- msgstr "Zobraz tuto fotku na %s"
2446
-
2447
- #: wppa-boxes-html.php:1188 wppa-qr-widget.php:39
2448
- msgid "QR code"
2449
- msgstr "QR kód"
2450
-
2451
- #: wppa-boxes-html.php:1233
2452
- #, php-format
2453
- msgid "Tweet %s on Twitter"
2454
- msgstr "tweetnout %s na Twitteru"
2455
-
2456
- #: wppa-boxes-html.php:1240
2457
- msgid "Share on Twitter"
2458
- msgstr "Sdílet %s naTwitteru"
2459
-
2460
- #: wppa-boxes-html.php:1253
2461
- #, php-format
2462
- msgid "Share %s on Google+"
2463
- msgstr "Sdílet %s na Google+"
2464
-
2465
- #: wppa-boxes-html.php:1261
2466
- msgid "Share on Google+"
2467
- msgstr "Sdílet na Google+"
2468
-
2469
- #: wppa-boxes-html.php:1276
2470
- #, php-format
2471
- msgid "Share %s on Pinterest"
2472
- msgstr "Sdílet %s na Pinterestu"
2473
-
2474
- #: wppa-boxes-html.php:1285
2475
- msgid "Share on Pinterest"
2476
- msgstr "Sdílet na Pinterestu"
2477
-
2478
- #: wppa-boxes-html.php:1420
2479
- msgid "Comment on Facebook:"
2480
- msgstr "Komentovat na Facebooku:"
2481
-
2482
- #: wppa-boxes-html.php:1521 wppa-upload.php:1125
2483
- msgid "Working..."
2484
- msgstr "Pracuji..."
2485
-
2486
- #: wppa-boxes-html.php:1523 wppa-boxes-html.php:1526
2487
- msgid "Delete album"
2488
- msgstr "Smazat album"
2489
-
2490
- #: wppa-boxes-html.php:1613
2491
- msgid "Create Album"
2492
- msgstr "Vytvořit album"
2493
-
2494
- #: wppa-boxes-html.php:1658 wppa-boxes-html.php:2406
2495
- msgid "Enter album name."
2496
- msgstr "Zadejte název alba."
2497
-
2498
- #: wppa-boxes-html.php:1660 wppa-boxes-html.php:2408
2499
- msgid "Don't leave this blank!"
2500
- msgstr "Nenechávejte prázdné!"
2501
-
2502
- #: wppa-boxes-html.php:1679
2503
- msgid "Enter album description"
2504
- msgstr "Zadejte popis alba"
2505
-
2506
- #: wppa-boxes-html.php:1701
2507
- msgid "Create album"
2508
- msgstr "Vytvořit album"
2509
-
2510
- #: wppa-boxes-html.php:1757 wppa-boxes-html.php:1770 wppa-functions.php:3992
2511
- msgid "Max uploads reached"
2512
- msgstr "Dosaženo maximálního počtu pro nahrávání"
2513
-
2514
- #: wppa-boxes-html.php:1836 wppa-upload.php:134
2515
- msgid "Upload Photo"
2516
- msgstr "Nahrát fotografii"
2517
-
2518
- #: wppa-boxes-html.php:1983
2519
- #, php-format
2520
- msgid ""
2521
- "You may upload up to %s photos at once if your browser supports HTML-5 "
2522
- "multiple file upload"
2523
- msgstr ""
2524
- "Pokud váš prohlížeč podporuje hromadné nahrávání souborů HTML5, můžete "
2525
- "najednou nahrát až %s fotografií"
2526
-
2527
- #: wppa-boxes-html.php:1991
2528
- #, php-format
2529
- msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
2530
- msgstr "Max. velikost fotografií: %d %d (%2.1f megapixelů)"
2531
-
2532
- #: wppa-boxes-html.php:2020 wppa-upload.php:123 wppa-upload.php:211
2533
- #: wppa-upload.php:258 wppa-upload.php:694
2534
- msgid "Apply watermark file:"
2535
- msgstr "Aplikovat vodoznak:"
2536
-
2537
- #: wppa-boxes-html.php:2042 wppa-upload.php:128 wppa-upload.php:216
2538
- #: wppa-upload.php:263 wppa-upload.php:698
2539
- msgid "Position:"
2540
- msgstr "Pozice:"
2541
-
2542
- #: wppa-boxes-html.php:2070
2543
- msgid ""
2544
- "If you leave this blank, iptc tag 005 (Graphic name) will be used as "
2545
- "photoname if available, else the original filename will be used as photo "
2546
- "name."
2547
- msgstr ""
2548
- "Necháte-li prázdné, bude jako název fotografie použit IPTC štítek 005 (název "
2549
- "obrázku), pokud je dostupný, jinak bude použit původní název souboru."
2550
-
2551
- #: wppa-boxes-html.php:2075
2552
- msgid ""
2553
- "If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
2554
- "available, else the original filename will be used as photo name."
2555
- msgstr ""
2556
- "Necháte-li prázdné, bude jako název fotografie použit IPTC štítek 120 "
2557
- "(titulek), pokud je dostupný, jinak bude použit původní název souboru."
2558
-
2559
- #: wppa-boxes-html.php:2080
2560
- msgid ""
2561
- "If you leave this blank, the original filename will be used as photo name."
2562
- msgstr ""
2563
- "Necháte-li prázdné, bude jako název fotografie použit původní název souboru."
2564
-
2565
- #: wppa-boxes-html.php:2094
2566
- msgid "Enter photo name."
2567
- msgstr "Zadat název fotografie."
2568
-
2569
- #: wppa-boxes-html.php:2115
2570
- msgid "Enter/modify photo description"
2571
- msgstr "Zadat/upravit popis fotky"
2572
-
2573
- #: wppa-boxes-html.php:2146
2574
- msgid "hidden"
2575
- msgstr "Skrytý"
2576
-
2577
- #: wppa-boxes-html.php:2215
2578
- msgid "Preview tags:"
2579
- msgstr "Štítky náhledu:"
2580
-
2581
- #: wppa-boxes-html.php:2228
2582
- msgid "Please select an album and try again"
2583
- msgstr "Vyberte prosím album a opakujte akci"
2584
-
2585
- #: wppa-boxes-html.php:2242
2586
- msgid "Upload photo"
2587
- msgstr "Nahrát fotografii"
2588
-
2589
- #: wppa-boxes-html.php:2298
2590
- msgid "ERROR: unable to upload files."
2591
- msgstr "CHYBA: soubory nelze nahrát."
2592
-
2593
- #: wppa-boxes-html.php:2348
2594
- msgid "Edit albuminfo"
2595
- msgstr "Upravit informace o albu"
2596
-
2597
- #: wppa-boxes-html.php:2428
2598
- msgid "Album description:"
2599
- msgstr "Popis alba:"
2600
-
2601
- #: wppa-boxes-html.php:2447
2602
- msgid "Update album"
2603
- msgstr "Aktualizovat album"
2604
-
2605
- #: wppa-boxes-html.php:2521
2606
- msgid "wrote:"
2607
- msgstr "napsal(a):"
2608
-
2609
- #: wppa-boxes-html.php:2575
2610
- msgid "Avatar"
2611
- msgstr "Avatar"
2612
-
2613
- #: wppa-boxes-html.php:2618 wppa-links.php:784
2614
- msgid "Awaiting moderation"
2615
- msgstr "Čeká na moderování"
2616
-
2617
- #: wppa-boxes-html.php:2621
2618
- msgid "Marked as spam"
2619
- msgstr "Označený jako spam"
2620
-
2621
- #: wppa-boxes-html.php:2645
2622
- msgid "Edit!"
2623
- msgstr "Upravit!"
2624
-
2625
- #: wppa-boxes-html.php:2649
2626
- msgid "Send!"
2627
- msgstr "Odeslat!"
2628
-
2629
- #: wppa-boxes-html.php:2710
2630
- msgid "Your name:"
2631
- msgstr "Vaše jméno:"
2632
-
2633
- #: wppa-boxes-html.php:2725
2634
- msgid "Your email:"
2635
- msgstr "Váš e-mail:"
2636
-
2637
- #: wppa-boxes-html.php:2741
2638
- msgid "Your comment:"
2639
- msgstr "Váš komentář:"
2640
-
2641
- #: wppa-boxes-html.php:2786
2642
- #, php-format
2643
- msgid "You must <a href=\"%s\">login</a> to enter a comment"
2644
- msgstr "Abyste mohli psát komentáře, musíte se <a href=\"%s\">přihlásit</a>"
2645
-
2646
- #: wppa-boxes-html.php:2789
2647
- msgid "You must login to enter a comment"
2648
- msgstr "Pro psaní komentářů musíte být přihlášeni"
2649
-
2650
- #: wppa-boxes-html.php:2801
2651
- #, php-format
2652
- msgid "%d comments"
2653
- msgstr "%d komentáře/ů"
2654
-
2655
- #: wppa-boxes-html.php:2805
2656
- msgid "Leave a comment"
2657
- msgstr "Napsat komentář"
2658
-
2659
- #: wppa-boxes-html.php:2846
2660
- msgid "Smilies are not available"
2661
- msgstr "Smajlíci nejsou k dispozici"
2662
-
2663
- #: wppa-boxes-html.php:2896
2664
- msgid "Show IPTC data"
2665
- msgstr "Zobrazit IPTC data"
2666
-
2667
- #: wppa-boxes-html.php:2907
2668
- msgid "Hide IPTC data"
2669
- msgstr "Skrýt IPTC data"
2670
-
2671
- #: wppa-boxes-html.php:2947
2672
- msgid "No IPTC data"
2673
- msgstr "Žádná IPTC data"
2674
-
2675
- #: wppa-boxes-html.php:2994
2676
- msgid "Show EXIF data"
2677
- msgstr "Zobrazit EXIF data"
2678
-
2679
- #: wppa-boxes-html.php:3005
2680
- msgid "Hide EXIF data"
2681
- msgstr "Skrýt EXIF data"
2682
-
2683
- #: wppa-boxes-html.php:3047
2684
- msgid "No EXIF data"
2685
- msgstr "Žádná EXIF data"
2686
-
2687
- #: wppa-boxes-html.php:3162 wppa-boxes-html.php:3167
2688
- msgid "< Previous"
2689
- msgstr "< Předchozí"
2690
-
2691
- #: wppa-boxes-html.php:3173 wppa-boxes-html.php:3178
2692
- msgid "Next >"
2693
- msgstr "Další >"
2694
-
2695
- #: wppa-boxes-html.php:3275 wppa-boxes-html.php:3334
2696
- msgid "See the authors albums"
2697
- msgstr "Prohlížet alba autora"
2698
-
2699
- #: wppa-boxes-html.php:3279 wppa-boxes-html.php:3338
2700
- msgid "See the authors photos"
2701
- msgstr "Prohlížet fotografie autora"
2702
-
2703
- #: wppa-boxes-html.php:3283 wppa-boxes-html.php:3342
2704
- msgid "See all the authors photos"
2705
- msgstr "Prohlížet všechny fotografie autora"
2706
-
2707
- #: wppa-boxes-html.php:3306
2708
- #, php-format
2709
- msgid "Photo by: %s"
2710
- msgstr "Autor fotografie: %s"
2711
-
2712
- #: wppa-boxes-html.php:3307 wppa-boxes-html.php:3361
2713
- #, php-format
2714
- msgid "Max ratings: %s."
2715
- msgstr "Max hodnocení: %s."
2716
-
2717
- #: wppa-boxes-html.php:3308 wppa-boxes-html.php:3362
2718
- #, php-format
2719
- msgid "Votes: %s."
2720
- msgstr "Hlasy: %s."
2721
-
2722
- #: wppa-boxes-html.php:3309 wppa-boxes-html.php:3363
2723
- #, php-format
2724
- msgid "Mean value: %4.2f."
2725
- msgstr "Průměr: %4.2f."
2726
-
2727
- #: wppa-boxes-html.php:3316
2728
- #, php-format
2729
- msgid "Photo %s not found."
2730
- msgstr "Fotografie %s nenalezena."
2731
-
2732
- #: wppa-boxes-html.php:3714 wppa-photo-admin-autosave.php:195
2733
- msgid "Refresh"
2734
- msgstr "Obnovit"
2735
-
2736
- #: wppa-breadcrumb.php:98 wppa-settings-autosave.php:1452
2737
- msgid "Home"
2738
- msgstr "Domů"
2739
-
2740
- #: wppa-breadcrumb.php:119
2741
- msgid "Post:"
2742
- msgstr "Příspěvek:"
2743
-
2744
- #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:604
2745
- msgid "Page:"
2746
- msgstr "Stránka:"
2747
-
2748
- #: wppa-breadcrumb.php:139
2749
- msgid "with category:"
2750
- msgstr "s kategorií:"
2751
-
2752
- #: wppa-breadcrumb.php:142 wppa-breadcrumb.php:157
2753
- msgid "with name:"
2754
- msgstr "s názvem:"
2755
-
2756
- #: wppa-breadcrumb.php:145 wppa-breadcrumb.php:161
2757
- msgid "with words:"
2758
- msgstr "se slovy:"
2759
-
2760
- #: wppa-breadcrumb.php:154
2761
- msgid "with tag:"
2762
- msgstr "se štítky:"
2763
-
2764
- #: wppa-breadcrumb.php:165
2765
- msgid "of owner:"
2766
- msgstr "majitele:"
2767
-
2768
- #: wppa-breadcrumb.php:170
2769
- msgid "with iptc tag:"
2770
- msgstr "s IPTC štítkem:"
2771
-
2772
- #: wppa-breadcrumb.php:170 wppa-breadcrumb.php:175
2773
- msgid "with content:"
2774
- msgstr "obsahující:"
2775
-
2776
- #: wppa-breadcrumb.php:175
2777
- msgid "with exif tag:"
2778
- msgstr "S EXIF štítkem:"
2779
-
2780
- #: wppa-breadcrumb.php:183 wppa-breadcrumb.php:207 wppa-breadcrumb.php:264
2781
- #: wppa-breadcrumb.php:282 wppa-breadcrumb.php:305 wppa-breadcrumb.php:328
2782
- #: wppa-breadcrumb.php:346 wppa-breadcrumb.php:358 wppa-breadcrumb.php:376
2783
- #: wppa-breadcrumb.php:391 wppa-breadcrumb.php:410
2784
- msgid "View the thumbnails"
2785
- msgstr "Zobrazit miniatury"
2786
-
2787
- #: wppa-breadcrumb.php:201
2788
- #, php-format
2789
- msgid "Searchresults from album %s and its subalbums"
2790
- msgstr "Výsledky prohledávání alba %s a jeho sub-alb"
2791
-
2792
- #: wppa-breadcrumb.php:205 wppa-breadcrumb.php:210
2793
- msgid "Searchstring:"
2794
- msgstr "Vyhledávací řetězec:"
2795
-
2796
- #: wppa-breadcrumb.php:219 wppa-breadcrumb.php:237
2797
- msgid "Photos by EXIF date"
2798
- msgstr "Fotografie dle EXIF datumu"
2799
-
2800
- #: wppa-breadcrumb.php:223 wppa-breadcrumb.php:241
2801
- msgid "Photos by date of upload"
2802
- msgstr "Fotografie dle data nahrání"
2803
-
2804
- #: wppa-breadcrumb.php:227 wppa-breadcrumb.php:245
2805
- msgid "Photos by date last modified"
2806
- msgstr "Fotografie dle data poslední úpravy"
2807
-
2808
- #: wppa-breadcrumb.php:257 wppa-breadcrumb.php:267
2809
- #, php-format
2810
- msgid "Photos by %s"
2811
- msgstr "Fotografie od %s"
2812
-
2813
- #: wppa-breadcrumb.php:274 wppa-breadcrumb.php:292 wppa-breadcrumb.php:320
2814
- #: wppa-breadcrumb.php:338 wppa-breadcrumb.php:425
2815
- msgid "Various albums"
2816
- msgstr "Různá alba"
2817
-
2818
- #: wppa-breadcrumb.php:276 wppa-breadcrumb.php:294 wppa-breadcrumb.php:322
2819
- #: wppa-breadcrumb.php:340 wppa-breadcrumb.php:429 wppa-lasten-widget.php:185
2820
- msgid "Albums:"
2821
- msgstr "Alba:"
2822
-
2823
- #: wppa-breadcrumb.php:280 wppa-breadcrumb.php:285
2824
- msgid "Top rated photos"
2825
- msgstr "Nejlépe hodnocené fotografie"
2826
-
2827
- #: wppa-breadcrumb.php:299 wppa-breadcrumb.php:309
2828
- #, fuzzy
2829
- msgid "Recently modified photos"
2830
- msgstr "Nejnověji nahrané fotografie"
2831
-
2832
- #: wppa-breadcrumb.php:302 wppa-breadcrumb.php:312
2833
- msgid "Recently uploaded photos"
2834
- msgstr "Nejnověji nahrané fotografie"
2835
-
2836
- #: wppa-breadcrumb.php:326 wppa-breadcrumb.php:331 wppa-comment-widget.php:40
2837
- msgid "Recently commented photos"
2838
- msgstr "Nejnověji komentované fotografie"
2839
-
2840
- #: wppa-breadcrumb.php:344 wppa-breadcrumb.php:349 wppa-featen-widget.php:38
2841
- msgid "Featured photos"
2842
- msgstr "Doporučené fotografie"
2843
-
2844
- #: wppa-breadcrumb.php:356 wppa-breadcrumb.php:361
2845
- msgid "Related photos"
2846
- msgstr "Související fotografie"
2847
-
2848
- #: wppa-breadcrumb.php:368 wppa-breadcrumb.php:379
2849
- msgid "Tagged photos:"
2850
- msgstr "Fotografie se štítky:"
2851
-
2852
- #: wppa-breadcrumb.php:368 wppa-breadcrumb.php:379
2853
- msgid "or"
2854
- msgstr "nebo"
2855
-
2856
- #: wppa-breadcrumb.php:370 wppa-breadcrumb.php:381
2857
- #, fuzzy
2858
- msgid "Inverted"
2859
- msgstr "Obaly"
2860
-
2861
- #: wppa-breadcrumb.php:408 wppa-breadcrumb.php:413
2862
- msgid "Recently updated albums"
2863
- msgstr "Nejnověji aktualizovaná alba"
2864
-
2865
- #: wppa-breadcrumb.php:423
2866
- #, php-format
2867
- msgid "Various albums by %s"
2868
- msgstr "Různá alba od %s"
2869
-
2870
- #: wppa-breadcrumb.php:450 wppa-breadcrumb.php:465
2871
- msgid "Thumbnail view"
2872
- msgstr "Zobrazení miniatur"
2873
-
2874
- #: wppa-breadcrumb.php:454 wppa-breadcrumb.php:455 wppa-breadcrumb.php:470
2875
- #: wppa-breadcrumb.php:471
2876
- msgid "Thumbs"
2877
- msgstr "Náhledy"
2878
-
2879
- #: wppa-breadcrumb.php:602
2880
- msgid "Unpublished"
2881
- msgstr "Nepublikováno"
2882
-
2883
- #: wppa-breadcrumb.php:632
2884
- msgid "Found photos will meet the search criteria as follows:"
2885
- msgstr "Nalezené fotografie musí splňovat následující kritéria vyhledávání:"
2886
-
2887
- #: wppa-breadcrumb.php:635
2888
- msgid "AND"
2889
- msgstr "A"
2890
-
2891
- #: wppa-breadcrumb.php:639
2892
- msgid "OR"
2893
- msgstr "NEBO"
2894
-
2895
- #: wppa-cart.php:25
2896
- msgid "Buy now"
2897
- msgstr "Koupit nyní"
2898
-
2899
- #: wppa-cart.php:89
2900
- #, php-format
2901
- msgid "Unit Price: %s each"
2902
- msgstr "Cena za kus: %s"
2903
-
2904
- #: wppa-cart.php:93
2905
- msgid "Qty:"
2906
- msgstr "Množství:"
2907
-
2908
- #: wppa-comment-admin.php:35
2909
- msgid "Photo Albums -> Edit Comment"
2910
- msgstr "FotoAlba -> Upravit komentář"
2911
-
2912
- #: wppa-comment-admin.php:61
2913
- msgid "Photo:"
2914
- msgstr "Fotografie:"
2915
-
2916
- #: wppa-comment-admin.php:72
2917
- msgid "User:"
2918
- msgstr "Uživatel:"
2919
-
2920
- #: wppa-comment-admin.php:76
2921
- msgid "Email:"
2922
- msgstr "E-mail:"
2923
-
2924
- #: wppa-comment-admin.php:80
2925
- msgid "Comment:"
2926
- msgstr "Komentář:"
2927
-
2928
- #: wppa-comment-admin.php:86 wppa-widget-admin.php:204
2929
- #: wppa-widget-admin.php:268
2930
- msgid "Save Changes"
2931
- msgstr "Uložit změny"
2932
-
2933
- #: wppa-comment-admin.php:99
2934
- msgid "Comment deleted"
2935
- msgstr "Komentář smazán"
2936
-
2937
- #: wppa-comment-admin.php:127 wppa-comment-admin.php:135
2938
- msgid "Could not bulk update status"
2939
- msgstr "Status nelze aktualizovat hromadně."
2940
-
2941
- #: wppa-comment-admin.php:143
2942
- msgid "Could not bulk delete spam"
2943
- msgstr "Spam nelze smazat hromadně."
2944
-
2945
- #: wppa-comment-admin.php:149
2946
- msgid "Changes Saved"
2947
- msgstr "Změny byly uloženy"
2948
-
2949
- #: wppa-comment-admin.php:176
2950
- msgid "Photo Albums -> Moderate Comment"
2951
- msgstr "FotoAlba -> Moderování Komentářů"
2952
-
2953
- #: wppa-comment-admin.php:177
2954
- msgid "Photo Albums -> Comment admin"
2955
- msgstr "FotoAlba -> Administrace Komentářů"
2956
-
2957
- #: wppa-comment-admin.php:181
2958
- msgid ""
2959
- "<h3>The Comment system is not activated</h3><p>To activate: check Table II "
2960
- "item 18 on the <b>Photo Albums -> Settings</b> screen and press <b>Save "
2961
- "Changes</b>"
2962
- msgstr ""
2963
- "<h3>Systém komentářů nebyl aktivován</h3><p>Pro aktivaci zaškrtněte položku "
2964
- "18 v Tabulce II na stránce administrace <b>FotoAlba -> Nastavení</b> a "
2965
- "stiskněte <b>Uložit změny</b>"
2966
-
2967
- #: wppa-comment-admin.php:188
2968
- msgid "Total:"
2969
- msgstr "Celkem:"
2970
-
2971
- #: wppa-comment-admin.php:192
2972
- msgid "Approved:"
2973
- msgstr "Schváleno:"
2974
-
2975
- #: wppa-comment-admin.php:196
2976
- msgid "Pending:"
2977
- msgstr "Čekající:"
2978
-
2979
- #: wppa-comment-admin.php:200
2980
- msgid "Spam:"
2981
- msgstr "Spam:"
2982
-
2983
- #: wppa-comment-admin.php:205
2984
- msgid "Auto deleted spam:"
2985
- msgstr "Automaticky smazaný spam:"
2986
-
2987
- #: wppa-comment-admin.php:220
2988
- msgid "Linkpage:"
2989
- msgstr "Stránka odkazu:"
2990
-
2991
- #: wppa-comment-admin.php:223 wppa-settings-autosave.php:4516
2992
- #: wppa-settings-autosave.php:7317
2993
- msgid "--- Please select a page ---"
2994
- msgstr "--- Prosím zvolte stránku ---"
2995
-
2996
- #: wppa-comment-admin.php:238
2997
- msgid ""
2998
- "You can see the photo and all its comments on the selected page by clicking "
2999
- "on the thumbnail image"
3000
- msgstr ""
3001
- "Fotografii a všechny související komentáře můžete zobrazit na vybrané "
3002
- "stránce kliknutím na miniaturu"
3003
-
3004
- #: wppa-comment-admin.php:242
3005
- msgid "Display status:"
3006
- msgstr "Zobrazení stavu:"
3007
-
3008
- #: wppa-comment-admin.php:244
3009
- msgid "all"
3010
- msgstr "vše"
3011
-
3012
- #: wppa-comment-admin.php:245
3013
- msgid "pending"
3014
- msgstr "čekající"
3015
-
3016
- #: wppa-comment-admin.php:246
3017
- msgid "approved"
3018
- msgstr "schváleno"
3019
-
3020
- #: wppa-comment-admin.php:247
3021
- msgid "spam"
3022
- msgstr "spam"
3023
-
3024
- #: wppa-comment-admin.php:250
3025
- msgid "Display order:"
3026
- msgstr "Pořadí zobrazení:"
3027
-
3028
- #: wppa-comment-admin.php:252
3029
- msgid "timestamp"
3030
- msgstr "časové razítko"
3031
-
3032
- #: wppa-comment-admin.php:255 wppa-photo-admin-autosave.php:1280
3033
- msgid "Bulk action:"
3034
- msgstr "Hromadná akce:"
3035
-
3036
- #: wppa-comment-admin.php:258
3037
- msgid "Approve all pending"
3038
- msgstr "Schválit všechny čekající"
3039
-
3040
- #: wppa-comment-admin.php:259
3041
- msgid "Move all pending to spam"
3042
- msgstr "Přesunout všechny čekající do spamu"
3043
-
3044
- #: wppa-comment-admin.php:260
3045
- msgid "Delete all spam"
3046
- msgstr "Smazet všechny spamy"
3047
-
3048
- #: wppa-comment-admin.php:262
3049
- msgid "Save Settings / Perform bulk action"
3050
- msgstr "Uložit nastavení / provést hromadnou akci"
3051
-
3052
- #: wppa-comment-admin.php:301 wppa-comment-admin.php:388 wppa-non-admin.php:582
3053
- msgid "Photo"
3054
- msgstr "Fotografie"
3055
-
3056
- #: wppa-comment-admin.php:302 wppa-comment-admin.php:389
3057
- msgid "(Album)"
3058
- msgstr "(Album)"
3059
-
3060
- #: wppa-comment-admin.php:303 wppa-comment-admin.php:390
3061
- #: wppa-settings-autosave.php:451 wppa-settings-autosave.php:613
3062
- #: wppa-settings-autosave.php:635 wppa-settings-autosave.php:1335
3063
- #: wppa-settings-autosave.php:1356 wppa-settings-autosave.php:2730
3064
- #: wppa-settings-autosave.php:2751 wppa-settings-autosave.php:3062
3065
- #: wppa-settings-autosave.php:3086 wppa-settings-autosave.php:4237
3066
- #: wppa-settings-autosave.php:4258 wppa-settings-autosave.php:4434
3067
- #: wppa-settings-autosave.php:4458 wppa-settings-autosave.php:5485
3068
- #: wppa-settings-autosave.php:5993 wppa-settings-autosave.php:6015
3069
- #: wppa-settings-autosave.php:6595 wppa-settings-autosave.php:6619
3070
- #: wppa-settings-autosave.php:8291 wppa-settings-autosave.php:8312
3071
- #: wppa-settings-autosave.php:8352 wppa-settings-autosave.php:8374
3072
- #: wppa-settings-autosave.php:8420
3073
- msgid "#"
3074
- msgstr "#"
3075
-
3076
- #: wppa-comment-admin.php:304 wppa-comment-admin.php:391
3077
- msgid "IP"
3078
- msgstr "IP"
3079
-
3080
- #: wppa-comment-admin.php:305 wppa-comment-admin.php:392
3081
- msgid "User"
3082
- msgstr "Uživatel"
3083
-
3084
- #: wppa-comment-admin.php:306 wppa-comment-admin.php:393
3085
- msgid "Email"
3086
- msgstr "E-mail"
3087
-
3088
- #: wppa-comment-admin.php:307 wppa-comment-admin.php:394
3089
- msgid "Time since"
3090
- msgstr "Doba od"
3091
-
3092
- #: wppa-comment-admin.php:308 wppa-comment-admin.php:395
3093
- msgid "Comment"
3094
- msgstr "Komentář"
3095
-
3096
- #: wppa-comment-admin.php:346
3097
- msgid "Click to see the fullsize photo and all comments"
3098
- msgstr "Pro zobrazení fotografie v plné velikosti a všech komentářů klikněte"
3099
-
3100
- #: wppa-comment-admin.php:357
3101
- #, php-format
3102
- msgid "Reply to your comment on photo: %s on %s"
3103
- msgstr "Odpovědět na váš komentář k fotografii: %s na %s"
3104
-
3105
- #: wppa-comment-admin.php:358 wppa-functions.php:2100
3106
- msgid "Reply"
3107
- msgstr "Reagovat"
3108
-
3109
- #: wppa-comment-admin.php:369 wppa-photo-admin-autosave.php:833
3110
- #: wppa-photo-admin-autosave.php:856 wppa-photo-admin-autosave.php:1007
3111
- #: wppa-photo-admin-autosave.php:1017 wppa-photo-admin-autosave.php:1298
3112
- #: wppa-photo-admin-autosave.php:1415 wppa-photo-admin-autosave.php:1427
3113
- msgid "Pending"
3114
- msgstr "Čekající"
3115
-
3116
- #: wppa-comment-admin.php:370 wppa-photo-admin-autosave.php:1008
3117
- #: wppa-photo-admin-autosave.php:1018
3118
- msgid "Approved"
3119
- msgstr "Schválený"
3120
-
3121
- #: wppa-comment-admin.php:371 wppa-photo-admin-autosave.php:1009
3122
- #: wppa-photo-admin-autosave.php:1019
3123
- msgid "Spam"
3124
- msgstr "Spam"
3125
-
3126
- #: wppa-comment-admin.php:380
3127
- msgid "Are you sure you want to delete this comment?"
3128
- msgstr "Opravdu chcete tento komentář smazat?"
3129
-
3130
- #: wppa-comment-admin.php:420 wppa-comment-admin.php:426
3131
- msgid "Unable to update comment. Err ="
3132
- msgstr "Komentář nebylo možné aktualizovat. Err ="
3133
-
3134
- #: wppa-comment-widget.php:14
3135
- msgid "WPPA+ Comments on Photos"
3136
- msgstr "WPPA+ Komentáře k fotografiím"
3137
-
3138
- #: wppa-comment-widget.php:15 wppa-comment-widget.php:116
3139
- msgid "Comments on Photos"
3140
- msgstr "Komentáře k fotografiím"
3141
-
3142
- #: wppa-comment-widget.php:73 wppa-thumbnails.php:493
3143
- msgid "wrote"
3144
- msgstr "napsal(a):"
3145
-
3146
- #: wppa-comment-widget.php:87 wppa-featen-widget.php:95
3147
- #: wppa-lasten-widget.php:125 wppa-potd-widget.php:133
3148
- #: wppa-thumbnail-widget.php:114 wppa-topten-widget.php:153
3149
- msgid "Photo not found."
3150
- msgstr "Fotografie nenalezena."
3151
-
3152
- #: wppa-common-functions.php:76 wppa-common-functions.php:79
3153
- msgid "Default photo album for"
3154
- msgstr "Výchozí FotoAlbum pro"
3155
-
3156
- #: wppa-common-functions.php:581 wppa-common-functions.php:617
3157
- msgid "1 second"
3158
- msgstr "1 sekunda"
3159
-
3160
- #: wppa-common-functions.php:582 wppa-common-functions.php:618
3161
- #: wppa-functions.php:4271
3162
- msgid "seconds"
3163
- msgstr "sekund"
3164
-
3165
- #: wppa-common-functions.php:586 wppa-common-functions.php:622
3166
- msgid "1 minute"
3167
- msgstr "1 minuta"
3168
-
3169
- #: wppa-common-functions.php:587 wppa-common-functions.php:623
3170
- #: wppa-functions.php:4270
3171
- msgid "minutes"
3172
- msgstr "minut"
3173
-
3174
- #: wppa-common-functions.php:591 wppa-common-functions.php:627
3175
- msgid "1 hour"
3176
- msgstr "1 hodina"
3177
-
3178
- #: wppa-common-functions.php:592 wppa-common-functions.php:628
3179
- #: wppa-functions.php:4269
3180
- msgid "hours"
3181
- msgstr "hodin"
3182
-
3183
- #: wppa-common-functions.php:596 wppa-common-functions.php:632
3184
- msgid "1 day"
3185
- msgstr "1 den"
3186
-
3187
- #: wppa-common-functions.php:597 wppa-common-functions.php:633
3188
- #: wppa-functions.php:4268
3189
- msgid "days"
3190
- msgstr "dní"
3191
-
3192
- #: wppa-common-functions.php:601 wppa-common-functions.php:637
3193
- msgid "1 week"
3194
- msgstr "1 týden"
3195
-
3196
- #: wppa-common-functions.php:602 wppa-common-functions.php:638
3197
- #: wppa-functions.php:4267
3198
- msgid "weeks"
3199
- msgstr "týdnů"
3200
-
3201
- #: wppa-common-functions.php:606 wppa-common-functions.php:642
3202
- msgid "1 month"
3203
- msgstr "1 měsíc"
3204
-
3205
- #: wppa-common-functions.php:607 wppa-common-functions.php:643
3206
- msgid "months"
3207
- msgstr "měsíců"
3208
-
3209
- #: wppa-common-functions.php:610 wppa-common-functions.php:646
3210
- msgid "1 year"
3211
- msgstr "1 rok"
3212
-
3213
- #: wppa-common-functions.php:611 wppa-common-functions.php:647
3214
- msgid "years"
3215
- msgstr "let"
3216
-
3217
- #: wppa-common-functions.php:870 wppa-common-functions.php:871
3218
- msgid "ERROR: Resized or copied image could not be created."
3219
- msgstr "CHYBA: Kopírovaný nebo změněný snímek nemohl být vytvořen."
3220
-
3221
- #: wppa-common-functions.php:916 wppa-common-functions.php:917
3222
- #, php-format
3223
- msgid "ERROR: File %s is not a valid picture file."
3224
- msgstr "CHYBA: Soubor %s není platný souborem obrázku."
3225
-
3226
- #: wppa-common-functions.php:1735
3227
- #, php-format
3228
- msgid ""
3229
- "Based on your server memory limit you should not upload images larger then "
3230
- "<strong>%d x %d (%2.1f MP)</strong>"
3231
- msgstr ""
3232
- "Vzhledem k limitu paměti vašeho serveru byste neměli nahrávat fotografie "
3233
- "větší než <strong>%d x %d (%2.1f MP)</strong>"
3234
-
3235
- #: wppa-common-functions.php:2010
3236
- msgid "- select an album -"
3237
- msgstr "- vybrat album -"
3238
-
3239
- #: wppa-common-functions.php:2022 wppa-items.php:373
3240
- #: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
3241
- #: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
3242
- #: wppa-tagcloud-widget.php:79
3243
- msgid "--- all ---"
3244
- msgstr "--- vše ---"
3245
-
3246
- #: wppa-common-functions.php:2028
3247
- msgid "--- generic ---"
3248
- msgstr "--- generické ---"
3249
-
3250
- #: wppa-common-functions.php:2039
3251
- msgid "--- multiple see below ---"
3252
- msgstr "--- vícenásobné viz níže ---"
3253
-
3254
- #: wppa-common-functions.php:2045
3255
- msgid "--- a selection box ---"
3256
- msgstr "--- výběrový box ---"
3257
-
3258
- #: wppa-common-functions.php:2079 wppa-items.php:369
3259
- #: wppa-settings-autosave.php:7143 wppa-settings-autosave.php:7199
3260
- #: wppa-upload.php:1516
3261
- msgid "--- separate ---"
3262
- msgstr "--- separátní ---"
3263
-
3264
- #: wppa-common-functions.php:2177
3265
- msgid "Photo id ="
3266
- msgstr "ID fotografie ="
3267
-
3268
- #: wppa-common-functions.php:2177
3269
- msgid "Value ="
3270
- msgstr "Hodnota ="
3271
-
3272
- #: wppa-date-time.php:85 wppa-date-time.php:196
3273
- msgid "Jan"
3274
- msgstr "Led"
3275
-
3276
- #: wppa-date-time.php:85 wppa-date-time.php:196
3277
- msgid "Feb"
3278
- msgstr "Úno"
3279
-
3280
- #: wppa-date-time.php:85 wppa-date-time.php:196
3281
- msgid "Mar"
3282
- msgstr "Bře"
3283
-
3284
- #: wppa-date-time.php:85 wppa-date-time.php:196
3285
- msgid "Apr"
3286
- msgstr "Dub"
3287
-
3288
- #: wppa-date-time.php:85 wppa-date-time.php:196
3289
- msgid "May"
3290
- msgstr "Kvě"
3291
-
3292
- #: wppa-date-time.php:85 wppa-date-time.php:196
3293
- msgid "Jun"
3294
- msgstr "Čer"
3295
-
3296
- #: wppa-date-time.php:85 wppa-date-time.php:196
3297
- msgid "Jul"
3298
- msgstr "Čvc"
3299
-
3300
- #: wppa-date-time.php:85 wppa-date-time.php:196
3301
- msgid "Aug"
3302
- msgstr "Srp"
3303
-
3304
- #: wppa-date-time.php:85 wppa-date-time.php:196
3305
- msgid "Sep"
3306
- msgstr "Září"
3307
-
3308
- #: wppa-date-time.php:85 wppa-date-time.php:196
3309
- msgid "Oct"
3310
- msgstr "Říj"
3311
-
3312
- #: wppa-date-time.php:85 wppa-date-time.php:196
3313
- msgid "Nov"
3314
- msgstr "Lis"
3315
-
3316
- #: wppa-date-time.php:85 wppa-date-time.php:196
3317
- msgid "Dec"
3318
- msgstr "Pro"
3319
-
3320
- #: wppa-exif-iptc-common.php:70 wppa-exif-iptc-common.php:136
3321
- msgid "n.a."
3322
- msgstr "n.a."
3323
-
3324
- #: wppa-exif-iptc-common.php:214 wppa-utils.php:2397
3325
- msgid "Not Defined"
3326
- msgstr "Není definováno"
3327
-
3328
- #: wppa-exif-iptc-common.php:215 wppa-utils.php:2398
3329
- msgid "Manual"
3330
- msgstr "Manuál"
3331
-
3332
- #: wppa-exif-iptc-common.php:216 wppa-utils.php:2399
3333
- msgid "Program AE"
3334
- msgstr "Program AE"
3335
-
3336
- #: wppa-exif-iptc-common.php:217 wppa-utils.php:2400
3337
- msgid "Aperture-priority AE"
3338
- msgstr "Priorita clony AE"
3339
-
3340
- #: wppa-exif-iptc-common.php:218 wppa-utils.php:2401
3341
- msgid "Shutter speed priority AE"
3342
- msgstr "Priorita rychlosti závěrky AE"
3343
-
3344
- #: wppa-exif-iptc-common.php:219 wppa-utils.php:2402
3345
- msgid "Creative (Slow speed)"
3346
- msgstr "Kreativní (malá rychlost)"
3347
-
3348
- #: wppa-exif-iptc-common.php:220 wppa-utils.php:2403
3349
- msgid "Action (High speed)"
3350
- msgstr "Akce (vysoká rychlost)"
3351
-
3352
- #: wppa-exif-iptc-common.php:221 wppa-utils.php:2404
3353
- msgid "Portrait"
3354
- msgstr "Portrét"
3355
-
3356
- #: wppa-exif-iptc-common.php:222 wppa-utils.php:2405
3357
- msgid "Landscape"
3358
- msgstr "Krajina"
3359
-
3360
- #: wppa-exif-iptc-common.php:223 wppa-utils.php:2406
3361
- msgid "Bulb"
3362
- msgstr "Umělé osvětlení"
3363
-
3364
- #: wppa-exif-iptc-common.php:245 wppa-utils.php:2407
3365
- msgid "Average"
3366
- msgstr "Průměr"
3367
-
3368
- #: wppa-exif-iptc-common.php:246 wppa-utils.php:2408
3369
- msgid "Center-weighted average"
3370
- msgstr "Vážený průmer"
3371
-
3372
- #: wppa-exif-iptc-common.php:247 wppa-utils.php:2409
3373
- msgid "Spot"
3374
- msgstr "Spot"
3375
-
3376
- #: wppa-exif-iptc-common.php:248 wppa-utils.php:2410
3377
- msgid "Multi-spot"
3378
- msgstr "Multi-spot"
3379
-
3380
- #: wppa-exif-iptc-common.php:249 wppa-utils.php:2411
3381
- msgid "Multi-segment"
3382
- msgstr "Multi-segmentové"
3383
-
3384
- #: wppa-exif-iptc-common.php:250 wppa-utils.php:2412
3385
- msgid "Partial"
3386
- msgstr "Částečné"
3387
-
3388
- #: wppa-exif-iptc-common.php:251 wppa-settings-autosave.php:4362
3389
- #: wppa-utils.php:2413
3390
- msgid "Other"
3391
- msgstr "Ostatní"
3392
-
3393
- #: wppa-exif-iptc-common.php:287 wppa-utils.php:2414
3394
- msgid "No Flash"
3395
- msgstr "Bez blesku"
3396
-
3397
- #: wppa-exif-iptc-common.php:289 wppa-utils.php:2415
3398
- msgid "Fired"
3399
- msgstr "Záblesk"
3400
-
3401
- #: wppa-exif-iptc-common.php:291 wppa-utils.php:2416
3402
- msgid "Fired, Return not detected"
3403
- msgstr "Záblek, nedetekován návrat"
3404
-
3405
- #: wppa-exif-iptc-common.php:293 wppa-utils.php:2417
3406
- msgid "Fired, Return detected"
3407
- msgstr "Záblek, detekován návrat"
3408
-
3409
- #: wppa-exif-iptc-common.php:295 wppa-utils.php:2418
3410
- msgid "On, Did not fire"
3411
- msgstr "Zapnuto, bez záblesku"
3412
-
3413
- #: wppa-exif-iptc-common.php:297 wppa-utils.php:2419
3414
- msgid "On, Fired"
3415
- msgstr "Zapnuto, záblesk"
3416
-
3417
- #: wppa-exif-iptc-common.php:299 wppa-utils.php:2420
3418
- msgid "On, Return not detected"
3419
- msgstr "Zapnuto, nedetekován návrat"
3420
-
3421
- #: wppa-exif-iptc-common.php:301 wppa-utils.php:2421
3422
- msgid "On, Return detected"
3423
- msgstr "Zapnuto, detekován návrat"
3424
-
3425
- #: wppa-exif-iptc-common.php:303 wppa-utils.php:2422
3426
- msgid "Off, Did not fire"
3427
- msgstr "Vypnuto, bez záblesku"
3428
-
3429
- #: wppa-exif-iptc-common.php:305 wppa-utils.php:2423
3430
- msgid "Off, Did not fire, Return not detected"
3431
- msgstr "Vypnuto, bez záblesku, nedetekován návrat"
3432
-
3433
- #: wppa-exif-iptc-common.php:307 wppa-utils.php:2424
3434
- msgid "Auto, Did not fire"
3435
- msgstr "Automatika, bez záblesku"
3436
-
3437
- #: wppa-exif-iptc-common.php:309 wppa-utils.php:2425
3438
- msgid "Auto, Fired"
3439
- msgstr "Automatika, záblesk"
3440
-
3441
- #: wppa-exif-iptc-common.php:311 wppa-utils.php:2426
3442
- msgid "Auto, Fired, Return not detected"
3443
- msgstr "Automatika, záblesk, nedetekován návrat"
3444
-
3445
- #: wppa-exif-iptc-common.php:313 wppa-utils.php:2427
3446
- msgid "Auto, Fired, Return detected"
3447
- msgstr "Automatika, záblesk, detekován návrat"
3448
-
3449
- #: wppa-exif-iptc-common.php:315 wppa-utils.php:2428
3450
- msgid "No flash function"
3451
- msgstr "Žádné funkce blesku"
3452
-
3453
- #: wppa-exif-iptc-common.php:317 wppa-utils.php:2429
3454
- msgid "Off, No flash function"
3455
- msgstr "Vypnuto, žádné funkce blesku"
3456
-
3457
- #: wppa-exif-iptc-common.php:319 wppa-utils.php:2430
3458
- msgid "Fired, Red-eye reduction"
3459
- msgstr "Záblesk, redukce červených očí"
3460
-
3461
- #: wppa-exif-iptc-common.php:321 wppa-utils.php:2431
3462
- msgid "Fired, Red-eye reduction, Return not detected"
3463
- msgstr "Záblesk, redukce červených očí, nedetekován návrat"
3464
-
3465
- #: wppa-exif-iptc-common.php:323 wppa-utils.php:2432
3466
- msgid "Fired, Red-eye reduction, Return detected"
3467
- msgstr "Záblesk, redukce červených očí, detekován návrat"
3468
-
3469
- #: wppa-exif-iptc-common.php:325 wppa-utils.php:2433
3470
- msgid "On, Red-eye reduction"
3471
- msgstr "Zapnuto, redukce červených očí"
3472
-
3473
- #: wppa-exif-iptc-common.php:327 wppa-utils.php:2434
3474
- msgid "Red-eye reduction, Return not detected"
3475
- msgstr "Redukce červených očí, nedetekován návrat"
3476
-
3477
- #: wppa-exif-iptc-common.php:329 wppa-utils.php:2435
3478
- msgid "On, Red-eye reduction, Return detected"
3479
- msgstr "Zapnuto, redukce červených očí, detekován návrat"
3480
-
3481
- #: wppa-exif-iptc-common.php:331 wppa-utils.php:2436
3482
- msgid "Off, Red-eye reduction"
3483
- msgstr "Vypnuto, redukce červených očí"
3484
-
3485
- #: wppa-exif-iptc-common.php:333 wppa-utils.php:2437
3486
- msgid "Auto, Did not fire, Red-eye reduction"
3487
- msgstr "Automatika, bez záblesku, redikce červených očí"
3488
-
3489
- #: wppa-exif-iptc-common.php:335 wppa-utils.php:2438
3490
- msgid "Auto, Fired, Red-eye reduction"
3491
- msgstr "Automatika, záblesk, redikce červených očí"
3492
-
3493
- #: wppa-exif-iptc-common.php:337 wppa-utils.php:2439
3494
- msgid "Auto, Fired, Red-eye reduction, Return not detected"
3495
- msgstr "Automatika, záblesk, redikce červených očí, nedetekován návrat"
3496
-
3497
- #: wppa-exif-iptc-common.php:339 wppa-utils.php:2440
3498
- msgid "Auto, Fired, Red-eye reduction, Return detected"
3499
- msgstr "Automatika, záblesk, redikce červených očí, detekován návrat"
3500
-
3501
- #: wppa-export.php:36
3502
- #, php-format
3503
- msgid "Photos will be exported to: <b>%s</b>."
3504
- msgstr "Fotografie budou exportovány do: <b>%s</b>."
3505
-
3506
- #: wppa-export.php:37
3507
- msgid ""
3508
- "Export photos from album <span style=\"font-size:12px;\">(Including Album "
3509
- "information)</span>:"
3510
- msgstr ""
3511
- "Exportovat fotografie z alba <span style=\"font-size:12px;\">(Včetně "
3512
- "informací o albu)</span>:"
3513
-
3514
- #: wppa-export.php:66
3515
- msgid "Export"
3516
- msgstr "Exportovat"
3517
-
3518
- #: wppa-export.php:81
3519
- msgid "Exporting...<br/>"
3520
- msgstr "Exportuji...<br/>"
3521
-
3522
- #: wppa-export.php:90
3523
- msgid "ok, <br/>Filling"
3524
- msgstr "ok, <br/>Plním"
3525
-
3526
- #: wppa-export.php:92
3527
- msgid "failed<br/>"
3528
- msgstr "selhalo<br/>"
3529
-
3530
- #: wppa-export.php:98
3531
- msgid ""
3532
- "Can export albums and photos, but cannot make a zipfile. Your php version is "
3533
- "< 5.2.7."
3534
- msgstr ""
3535
- "Alba a fotky exportovat mohu, ale nemohu vytvořit komprimovaný soubor zip. "
3536
- "Verze vašeho PHP je menší než 5.2.7."
3537
-
3538
- #: wppa-export.php:99
3539
- msgid ""
3540
- "Can export albums and photos, but cannot make a zipfile. Your php version "
3541
- "does not support ZipArchive."
3542
- msgstr ""
3543
- "Alba a fotky exportovat mohu, ale nemohu vytvořit soubor zip. Verze vašeho "
3544
- "PHP nepodporuje ZipArchive."
3545
-
3546
- #: wppa-export.php:109
3547
- msgid "<br/>Processing album"
3548
- msgstr "<br/>Zpracovávám album"
3549
-
3550
- #: wppa-export.php:129
3551
- msgid "done."
3552
- msgstr "hotovo."
3553
-
3554
- #: wppa-export.php:129 wppa-upload.php:2116
3555
- msgid "photos processed."
3556
- msgstr "fotografií zpracováno."
3557
-
3558
- #: wppa-export.php:133
3559
- msgid "<br/>Done export albums."
3560
- msgstr "<br/>Export alb dokončen."
3561
-
3562
- #: wppa-export.php:136
3563
- msgid "Nothing to export"
3564
- msgstr "Není co exportovat"
3565
-
3566
- #: wppa-export.php:140
3567
- msgid "<br/>Closing zip."
3568
- msgstr "<br/>Zavírám zip."
3569
-
3570
- #: wppa-export.php:141
3571
- msgid "<br/>Deleting temp files."
3572
- msgstr "<br/>Odstraňuji dočasné soubory."
3573
-
3574
- #: wppa-export.php:150
3575
- msgid "<br/>Done!"
3576
- msgstr "<br/>Hotovo!"
3577
-
3578
- #: wppa-export.php:196 wppa-export.php:265
3579
- #, php-format
3580
- msgid "Cannot write to file %s."
3581
- msgstr "Do souboru %s nelze zapisovat."
3582
-
3583
- #: wppa-export.php:210
3584
- msgid "Could not open album output file."
3585
- msgstr "Nelze otevřít výstupní soubor alba."
3586
-
3587
- #: wppa-export.php:215
3588
- msgid "Could not read album data."
3589
- msgstr "Nelze přečíst data alba."
3590
-
3591
- #: wppa-export.php:279
3592
- msgid "Could not open photo output file."
3593
- msgstr "Nelze otevřít výstupní soubor fotografie."
3594
-
3595
- #: wppa-export.php:284
3596
- msgid "Could not read photo data."
3597
- msgstr "Nelze číst data fotografie."
3598
-
3599
- #: wppa-featen-widget.php:14
3600
- msgid "WPPA+ Featured Photos"
3601
- msgstr "WPPA+ Doporučené Fotografie"
3602
-
3603
- #: wppa-featen-widget.php:15 wppa-featen-widget.php:129
3604
- msgid "Featured Photos"
3605
- msgstr "Doporučené Fotografie"
3606
-
3607
- #: wppa-featen-widget.php:73
3608
- msgid "View the featured photos"
3609
- msgstr "Zobrazit doporučené fotografie"
3610
-
3611
- #: wppa-functions.php:551
3612
- msgid "No related photos found."
3613
- msgstr "Nenalezeny žádné související fotografie."
3614
-
3615
- #: wppa-functions.php:900
3616
- #, php-format
3617
- msgid ""
3618
- "There are %s albums found. Only the first %s will be shown. Please refine "
3619
- "your search criteria."
3620
- msgstr ""
3621
- "Bylo nalezeno %s alb. Je zobrazeno pouze prvních %s. Upřesněte prosím "
3622
- "vyhledávací podmínky."
3623
-
3624
- #: wppa-functions.php:1918 wppa-links.php:733 wppa-links.php:750
3625
- #: wppa-thumbnails.php:588
3626
- msgid "Are you sure you want to remove this photo?"
3627
- msgstr "Opravdu chcete tuto fotografii odebrat?"
3628
-
3629
- #: wppa-functions.php:2078
3630
- msgid "Comment edited"
3631
- msgstr "Komentář upraven"
3632
-
3633
- #: wppa-functions.php:2083
3634
- msgid "Photo comment"
3635
- msgstr "Komentář k fotografii:"
3636
-
3637
- #: wppa-functions.php:2087
3638
- msgid "Comment on photo:"
3639
- msgstr "Komentovat fotografie:"
3640
-
3641
- #: wppa-functions.php:2098
3642
- msgid "wrote on photo"
3643
- msgstr "napsáno k fotografii"
3644
-
3645
- #: wppa-functions.php:2102
3646
- msgid "Moderate comment admin"
3647
- msgstr "Administrace moderování komentářů"
3648
-
3649
- #: wppa-functions.php:2105 wppa-functions.php:4124 wppa-upload.php:1415
3650
- msgid "Moderate manage photo"
3651
- msgstr "Moderování správy fotografií"
3652
-
3653
- #: wppa-functions.php:2119
3654
- msgid "You receive this email as you are assigned to moderate"
3655
- msgstr "Dostáváte tento e-mail, protože jste určen jako moderátor"
3656
-
3657
- #: wppa-functions.php:2131
3658
- msgid "You receive this email as administrator of the site"
3659
- msgstr "Dostáváte tento e-mail jako administrátor webu"
3660
-
3661
- #: wppa-functions.php:2148
3662
- msgid "You receive this email as uploader of the photo"
3663
- msgstr "Dostáváte tento e-mail jako autor nahrání fotografií"
3664
-
3665
- #: wppa-functions.php:2165
3666
- msgid "You receive this email as owner of the album"
3667
- msgstr "Dostáváte tento e-mail jako vlastník alba"
3668
-
3669
- #: wppa-functions.php:2182
3670
- msgid "You receive this email because you commented this photo earlier."
3671
- msgstr "Dostáváte tento e-mail, protože jste tuto fotografii dříve okomentoval"
3672
-
3673
- #: wppa-functions.php:2208
3674
- msgid "Comment added"
3675
- msgstr "Komentář byl přidán"
3676
-
3677
- #: wppa-functions.php:2214
3678
- msgid ""
3679
- "Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the "
3680
- "computation."
3681
- msgstr "Bohužel, špatná odpověď.\\n\\nZkuste to znuvu."
3682
-
3683
- #: wppa-functions.php:2225
3684
- msgid "Could not process comment.\\nProbably timed out."
3685
- msgstr "Komentář nelze zpracovat.\\nPravděpodobně vypršel časový limit."
3686
-
3687
- #: wppa-functions.php:2307
3688
- #, php-format
3689
- msgid "1 Comment"
3690
- msgid_plural "%s Comments"
3691
- msgstr[0] "1 komentář"
3692
- msgstr[1] "%s komentáře"
3693
- msgstr[2] "%s komentářů"
3694
-
3695
- #: wppa-functions.php:2343 wppa-links.php:1423
3696
- msgid "A video can not be printed or downloaded"
3697
- msgstr "Video nelze vytisknout ani stahovat"
3698
-
3699
- #: wppa-functions.php:2778
3700
- msgid "ERROR: Illegal attempt to enter a rating."
3701
- msgstr "<b>CHYBA: Nepřípustný pokus o vložení hodnocení.</b>"
3702
-
3703
- #: wppa-functions.php:2791
3704
- msgid "ERROR: Illegal attempt to enter a comment."
3705
- msgstr "<b>CHYBA: Nepřípustný pokus o vložení komentáře.</b>"
3706
-
3707
- #: wppa-functions.php:3874
3708
- msgid "ERROR: Illegal attempt to create an album."
3709
- msgstr "<b>CHYBA: Nepřípustný pokus o vytvoření alba.</b>"
3710
-
3711
- #: wppa-functions.php:3878
3712
- msgid "Wrong captcha, please try again"
3713
- msgstr "Nesprávné captcha, zkuste to prosím znovu"
3714
-
3715
- #: wppa-functions.php:3891
3716
- #, php-format
3717
- msgid "Album #%s created"
3718
- msgstr "Album #%s vytvořeno"
3719
-
3720
- #: wppa-functions.php:3896
3721
- msgid "Could not create album"
3722
- msgstr "Album nelze vytvořit."
3723
-
3724
- #: wppa-functions.php:3907
3725
- msgid "ERROR: Illegal attempt to upload a file."
3726
- msgstr "<b>CHYBA: Nepřípustný pokus o nahrání souboru.</b>"
3727
-
3728
- #: wppa-functions.php:3947
3729
- msgid "Photo upload"
3730
- msgstr "Nahrát fotografii"
3731
-
3732
- #: wppa-functions.php:3948
3733
- #, php-format
3734
- msgid "Photo successfully uploaded."
3735
- msgid_plural "%s photos successfully uploaded."
3736
- msgstr[0] "Fotografie úspěšně nahrána."
3737
- msgstr[1] "Úspěšně nahrány %s fotografie."
3738
- msgstr[2] "Úspěšně nahráno %s fotografií."
3739
-
3740
- #: wppa-functions.php:3949
3741
- #, php-format
3742
- msgid "%s points added."
3743
- msgstr "Přidáno %s bodů."
3744
-
3745
- #: wppa-functions.php:3953
3746
- msgid "Upload failed"
3747
- msgstr "Nahrávání selhalo"
3748
-
3749
- #: wppa-functions.php:3956
3750
- #, php-format
3751
- msgid "1 Upload failed"
3752
- msgid_plural "%s uploads failed."
3753
- msgstr[0] "Selhalo 1 nahrávání"
3754
- msgstr[1] "Selhalo %s nahrávání"
3755
- msgstr[2] "Selhalo %s nahrávání"
3756
-
3757
- #: wppa-functions.php:3996
3758
- msgid "Error during upload"
3759
- msgstr "Chyba při nahrávání"
3760
-
3761
- #: wppa-functions.php:4001
3762
- msgid "Uploaded file is not an image"
3763
- msgstr "Nahraný soubor není obrázek"
3764
-
3765
- #: wppa-functions.php:4005
3766
- #, php-format
3767
- msgid ""
3768
- "Only gif, jpg and png image files are supported. Returned filetype = %d."
3769
- msgstr "Podporovány jsou pouze formáty gif, jpg a png. Zjištěný typ = % d."
3770
-
3771
- #: wppa-functions.php:4011
3772
- #, php-format
3773
- msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
3774
- msgstr "Nahraný soubor je větší než povolené maximum %d x %d pixelů."
3775
-
3776
- #: wppa-functions.php:4017
3777
- #, php-format
3778
- msgid "Uploaded file %s already exists in this album."
3779
- msgstr "Nahrávaný soubor %s již v tomto albu existuje."
3780
-
3781
- #: wppa-functions.php:4025
3782
- #, php-format
3783
- msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
3784
- msgstr "Obrázek je příliš velký. Max. velikost fotografie: %d x %d (%2.1f MPx)"
3785
-
3786
- #: wppa-functions.php:4048
3787
- msgid "Could not insert photo into db."
3788
- msgstr "Fotografii nelze vložit do databáze."
3789
-
3790
- #: wppa-functions.php:4120 wppa-upload.php:1411
3791
- #, php-format
3792
- msgid "New photo uploaded: %s"
3793
- msgstr "Nová fotografie nahrána: %s"
3794
-
3795
- #: wppa-functions.php:4121 wppa-upload.php:1412
3796
- #, php-format
3797
- msgid "User %1$s uploaded photo %2$s into album %3$s"
3798
- msgstr "Uživatel %1$s nahrál fotografii %2$s do alba %3$s"
3799
-
3800
- #: wppa-functions.php:4123 wppa-upload.php:1414
3801
- msgid "This upload requires moderation"
3802
- msgstr "Tato nahrávka vyžaduje moderování"
3803
-
3804
- #: wppa-functions.php:4127 wppa-upload.php:1418
3805
- msgid "Details:"
3806
- msgstr "Detaily:"
3807
-
3808
- #: wppa-functions.php:4128 wppa-upload.php:1419 wppa-utils.php:848
3809
- #: wppa-utils.php:860
3810
- msgid "Manage photo"
3811
- msgstr "Správa fotografií "
3812
-
3813
- #: wppa-functions.php:4265
3814
- msgid "You can upload after"
3815
- msgstr "Můžete nahrát za"
3816
-
3817
- #: wppa-functions.php:4294 wppa-functions.php:4305 wppa-links.php:1053
3818
- #: wppa-non-admin.php:641
3819
- msgid "Download"
3820
- msgstr "Stáhnout"
3821
-
3822
- #: wppa-functions.php:4298 wppa-functions.php:4309
3823
- msgid "Download:"
3824
- msgstr "Stáhnout:"
3825
-
3826
- #: wppa-functions.php:4332
3827
- msgid "Zoom in"
3828
- msgstr "Přiblížit"
3829
-
3830
- #: wppa-gp-widget.php:15
3831
- msgid "WPPA+ General purpose widget"
3832
- msgstr "WPPA+ Univerzální Widget"
3833
-
3834
- #: wppa-gp-widget.php:16 wppa-gp-widget.php:31 wppa-gp-widget.php:83
3835
- msgid "WPPA+ Text"
3836
- msgstr "WPPA+ Text"
3837
-
3838
- #: wppa-gp-widget.php:91
3839
- msgid ""
3840
- "Enter the content just like a normal text widget. This widget will "
3841
- "interprete [wppa] shortcodes."
3842
- msgstr ""
3843
- "Vložte obsah stejně jako u běžného textového widgetu. Tento widget bude "
3844
- "interpretovat [wppa] krátké kódy."
3845
-
3846
- #: wppa-gp-widget.php:92
3847
- #, php-format
3848
- msgid "Don't forget size=\"%s\""
3849
- msgstr "Nezapomeňte velikost=\"%s\""
3850
-
3851
- #: wppa-gp-widget.php:98
3852
- msgid "Automatically add paragraphs"
3853
- msgstr "Automaticky přidat body"
3854
-
3855
- #: wppa-gp-widget.php:102
3856
- msgid "Show to logged in users only"
3857
- msgstr "Zobrazit pouze přihlášené uživatele"
3858
-
3859
- #: wppa-help.php:21
3860
- msgid "Help and Information"
3861
- msgstr "Nápověda & informace"
3862
-
3863
- #: wppa-help.php:23
3864
- msgid "Plugin Description"
3865
- msgstr "Popis pluginu"
3866
-
3867
- #: wppa-help.php:24
3868
- msgid ""
3869
- "This plugin is designed to easily manage and display your photo albums "
3870
- "within your WordPress site."
3871
- msgstr ""
3872
- "Tento plugin je navržen pro snadnou správu a zobrazení vašich fotoalb ve "
3873
- "WordPressu."
3874
-
3875
- #: wppa-help.php:25
3876
- msgid "Features:"
3877
- msgstr "Funkce:"
3878
-
3879
- #: wppa-help.php:27
3880
- msgid ""
3881
- "You can create various albums that contain photos as well as sub albums at "
3882
- "the same time."
3883
- msgstr ""
3884
- "Můžete vytvářet různá alba, která současně obsahují jak fotografie tak sub-"
3885
- "alba."
3886
-
3887
- #: wppa-help.php:28
3888
- msgid "There is no limitation to the number of albums and photos."
3889
- msgstr "Počet alb a fotografií není nijak omezen."
3890
-
3891
- #: wppa-help.php:29
3892
- msgid "There is no limitation to the nesting depth of sub-albums."
3893
- msgstr "Hloubka vnoření sub-alb není nijak omezena."
3894
-
3895
- #: wppa-help.php:30
3896
- msgid "You have full control over the display sizes of the photos."
3897
- msgstr "Máte plnou kontrolu nad velikostí zobrazení fotografií"
3898
-
3899
- #: wppa-help.php:31
3900
- msgid "You can specify the way the albums are ordered."
3901
- msgstr "Můžete určit způsob řazení alb."
3902
-
3903
- #: wppa-help.php:32
3904
- msgid ""
3905
- "You can specify the way the photos are ordered within the albums, both on a "
3906
- "system-wide as well as an per album basis."
3907
- msgstr ""
3908
- "Můžete určit způsob řazení fotografií uvnitř alb, a to jak na straně "
3909
- "systému, tak pro každé album zvlášť."
3910
-
3911
- #: wppa-help.php:33
3912
- msgid ""
3913
- "The visitor of your site can run a slideshow from the photos in an album by "
3914
- "a single mouseclick."
3915
- msgstr ""
3916
- "Návštěvník vašich stránek může spustit prezentaci fotografií přímo z alba "
3917
- "jednoduchým kliknutím myši."
3918
-
3919
- #: wppa-help.php:34
3920
- msgid ""
3921
- "The visitor can see an overview of thumbnail images of the photos in album."
3922
- msgstr "Návštěvník může prohlížet přehled miniatur fotografií v albu."
3923
-
3924
- #: wppa-help.php:35
3925
- msgid ""
3926
- "The visitor can browse through the photos in each album you decide to "
3927
- "publish."
3928
- msgstr ""
3929
- "Návštěvník může procházet fotografie v každém albu, které se rozhodnete "
3930
- "publikovat."
3931
-
3932
- #: wppa-help.php:36
3933
- msgid ""
3934
- "You can add a Sidebar Widget that displays a photo which can be changed "
3935
- "every hour, day or week."
3936
- msgstr ""
3937
- "Máte možnost přidat Sidebar Widget zobrazující fotografii, která může být "
3938
- "měněna každou hodinu, den nebo týden."
3939
-
3940
- #: wppa-help.php:37
3941
- msgid ""
3942
- "You can add a Sidebar Search Widget, a Tagcloud widget and many others. See "
3943
- "the WP Widgets admin page."
3944
- msgstr ""
3945
- "Máte možnost přidat Vyhledávací Sidebar Widget, Widget Skupina štítků a "
3946
- "mnoho dalších. Více na administrační stránce WP Widgetů."
3947
-
3948
- #: wppa-help.php:40
3949
- msgid "Plugin Admin Features"
3950
- msgstr "Administrátorské vlastnosti pluginu"
3951
-
3952
- #: wppa-help.php:41
3953
- msgid ""
3954
- "You can find the plugin admin section under Menu Photo Albums on the admin "
3955
- "screen."
3956
- msgstr ""
3957
- "Administrační sekci pluginu naleznete v nabídce Fotoalba na administrátorské "
3958
- "obrazovce."
3959
-
3960
- #: wppa-help.php:42
3961
- msgid "The following submenus exist."
3962
- msgstr "Existují následující podnabídky."
3963
-
3964
- #: wppa-help.php:44
3965
- msgid "Photo Albums: Create and manage Albums."
3966
- msgstr "FotoAlba: Tvorba a Správa Alb"
3967
-
3968
- #: wppa-help.php:45
3969
- msgid "Upload photos: To upload photos to an album you created."
3970
- msgstr "Nahrávání Fotografií: Nahrávání fotografií do vámi vytvořených alb."
3971
-
3972
- #: wppa-help.php:46
3973
- msgid ""
3974
- "Import photos: To bulk import photos that have been uploaded by an ftp "
3975
- "program."
3976
- msgstr ""
3977
- "Import Fotografií: Dávkový import fotografií, které byly nahrány pomocí ftp."
3978
-
3979
- #: wppa-help.php:47
3980
- msgid "Settings: To control the various settings to customize your needs."
3981
- msgstr ""
3982
- "Nastavení: Definice rozličných nastavení pro přizpůsobení vašim potřebám."
3983
-
3984
- #: wppa-help.php:48
3985
- msgid ""
3986
- "Photo of the Day: To specify the behaviour for an optional potd sidebar "
3987
- "widget."
3988
- msgstr "Fotografie Dne: Nastavení chování volitelného FD Sidebar Widgetu"
3989
-
3990
- #: wppa-help.php:49
3991
- msgid "Comments: The comments on photos management admin page."
3992
- msgstr "Komentáře: Administrační stránka Správy komentářů k fotografiím."
3993
-
3994
- #: wppa-help.php:50
3995
- msgid "Help & Info: The screen you are watching now."
3996
- msgstr "Nápověda & Informace: Obrazovka, na kterou koukáte."
3997
-
3998
- #: wppa-help.php:53
3999
- msgid "Installation"
4000
- msgstr "Instalace"
4001
-
4002
- #: wppa-help.php:55
4003
- msgid "You can install the plugin via the standard WP plugins admin page."
4004
- msgstr ""
4005
- "Plugin můžete instalovat pomocí standardní WP administrační stránky pluginů."
4006
-
4007
- #: wppa-help.php:56
4008
- msgid "If you want to do it manually, follow the next steps:"
4009
- msgstr "Pokud to chcete provést manuálně, následujte tyto kroky:"
4010
-
4011
- #: wppa-help.php:63
4012
- msgid "Unzip and upload the wppa plugin folder to"
4013
- msgstr "Rozbalte a nahrajte adresář WPPA+ pluginu do"
4014
-
4015
- #: wppa-help.php:64
4016
- msgid "Make sure that the folder"
4017
- msgstr "Ujistěte se, že tento adresář "
4018
-
4019
- #: wppa-help.php:64
4020
- msgid "exists and is writable by the server (CHMOD 755)"
4021
- msgstr "existuje a je serverem zapisovatelný (CHMOD 755)"
4022
-
4023
- #: wppa-help.php:65
4024
- msgid "Activate the plugin in WP Admin -> Plugins."
4025
- msgstr "Aktivujte plugin v Administraci WP -> Pluginy"
4026
-
4027
- #: wppa-help.php:68
4028
- msgid "Upgrading WP Photo Album Plus"
4029
- msgstr "Aktualizace WP Photo Album Plus"
4030
-
4031
- #: wppa-help.php:69
4032
- msgid "When upgrading WP Photo Album Plus be aware of:"
4033
- msgstr "Při aktualizaci WP Photo Album Plus si uvědomte:"
4034
-
4035
- #: wppa-help.php:71
4036
- msgid ""
4037
- "The revision number consists of 3 parts, Major, minor and fix revision. The "
4038
- "current version is:"
4039
- msgstr ""
4040
- "Číslo revize se skládá ze tří částí - major verze, minor verze a fix. "
4041
- "Současná verze je:"
4042
-
4043
- #: wppa-help.php:72
4044
- msgid ""
4045
- "When an update implies a major or minor version change and you have copied "
4046
- "wppa-theme.php or wppa-style.css to your themes directory, you will have to "
4047
- "remove them and make new copies and/or alterations if that should still be "
4048
- "needed."
4049
- msgstr ""
4050
- "Pokud aktualizace zahrnuje změnu major nebo minor verze a vy jste do "
4051
- "adresáře vašeho tématu zkopírovali wppa-theme.php nebo wppa-style.css, "
4052
- "musíte je odstranit a vytvořit nové kopie a/nebo alterace budou-li stále "
4053
- "potřeba."
4054
-
4055
- #: wppa-help.php:73
4056
- msgid ""
4057
- "You will get a one-time reminder after upgrading, the first time you open a "
4058
- "wppa admin page."
4059
- msgstr ""
4060
- "Po aktualizaci obdržíte jednorázovou připomínku, jakmile poprvé otevřete "
4061
- "administrační stránku WPPA+."
4062
-
4063
- #: wppa-help.php:76
4064
- msgid "How to start"
4065
- msgstr "Jak na to"
4066
-
4067
- #: wppa-help.php:78
4068
- msgid "Install WP Photo Album Plus as described above under \"Installation\"."
4069
- msgstr ""
4070
- "Nainstalujte WP Photo Album Plus jak je popsáno výše pod \"Instalace\"."
4071
-
4072
- #: wppa-help.php:79
4073
- msgid ""
4074
- "Create at least two albums in the \"Photo Albums\" tab. Leave \"Parent\" at "
4075
- "\"--- none ---\"."
4076
- msgstr ""
4077
- "Vytvořte alespoň dvě alba v panelu \"Fotoalba\". Ponechte \"Nadřazené\" na "
4078
- "hodnotě \"--- žádné ---\"."
4079
-
4080
- #: wppa-help.php:80
4081
- msgid ""
4082
- "In the uploads tab, you can now upload you photots. Upload at least 2 photos "
4083
- "to each album. Make sure the photos you are uploading are of reasonable size "
4084
- "(say up to 1024x768 pixels)."
4085
- msgstr ""
4086
- "V panelu \"Nahrávání fotografií\" nyní můžete nahrát své fotografie. "
4087
- "Nahrajte alespoň 2 fotografie do každého alba. Ujistěte se, že fotografie "
4088
- "mají odpovídající velikost (do 1024x768 pixelů)."
4089
-
4090
- #: wppa-help.php:81
4091
- msgid ""
4092
- "Create a new WP Page, name it something like \"Photo Gallery\" and put in "
4093
- "the content:"
4094
- msgstr ""
4095
- "Vytvořte novou stránku WP, pojmenujte ji např. \"Fotogalerie\" a vložte "
4096
- "obsah:"
4097
-
4098
- #: wppa-help.php:82
4099
- msgid "Publish the page, and view the page from your WP site."
4100
- msgstr "Publikujte stránku a zobrazte si ji z vašeho WP webu."
4101
-
4102
- #: wppa-help.php:83
4103
- msgid ""
4104
- "Now, go playing with the settings in the \"Settings\" panel, discover all "
4105
- "the configurable options and watch what is happening when you re-open the "
4106
- "\"Photo Gallery\" page."
4107
- msgstr ""
4108
- "Nyní si pohrajte s nastaveními panelu \"Nastavení\", odhalte veškeré "
4109
- "konfigurovatelné možnosti a sledujte, co se stane pokud pak obnovíte stránku "
4110
- "\"Fotogalerie\"."
4111
-
4112
- #: wppa-help.php:84
4113
- msgid ""
4114
- "If you want a \"Photo of the day\" sidebar widget you can use an album for "
4115
- "that purpose. See all the options in the \"Photo of the day\" submenu."
4116
- msgstr ""
4117
- "Pokud chcete zobrazit Sidebar Widget \"Fotografie Dne\" můžete pro tento "
4118
- "účel použít album. Prohlédněte si všechny volby podnabídky \"Fotografie Dne"
4119
- "\". "
4120
-
4121
- #: wppa-help.php:87
4122
- msgid "Creating a Photo Album Page or a Post with photos - Advanced"
4123
- msgstr "Vytvoření stránky FotoAlba nebo Příspěvku s fotografiemi - Pokročilé"
4124
-
4125
- #: wppa-help.php:89
4126
- msgid ""
4127
- "Create a page like you normally would in WordPress, using the \"Default "
4128
- "Template\". In my example, give it the page title of \"Photo Gallery\". In "
4129
- "the Page Content section add the following code:"
4130
- msgstr ""
4131
- "Ve WordPressu vytvořte běžnou stránku za použití \"Výchozí šablony\". V mém "
4132
- "příkladu ji nazvěte \"Fotogalerie\". V sekci Obsah stránky vložte "
4133
- "následující kód:"
4134
-
4135
- #: wppa-help.php:91
4136
- msgid ""
4137
- "This will result in a gallery of all Albums that have their parent set to "
4138
- "\"--- none ---\"."
4139
- msgstr ""
4140
- "Tohle bude ovlivní galerii všech Alb, která mají \"Nadřazené\" nastaveno na "
4141
- "\"--- žádné ---\"."
4142
-
4143
- #: wppa-help.php:92
4144
- msgid ""
4145
- "If you want to display a single album - say album number 19 - in a WP page "
4146
- "or WP post (they act exactly the same), modify the shortcode like this:"
4147
- msgstr ""
4148
- "Pokud chcete zobrazit pouze jedno album - například album číslo 19 - na WP "
4149
- "stránce nebo příspěvku (chovají se stejně), upravte krátký kód takto:"
4150
-
4151
- #: wppa-help.php:94
4152
- msgid "This will result in the display of the <b>contents</b> of album nr 19."
4153
- msgstr "Tohle zobrazí <b>obsah</b> alba 19."
4154
-
4155
- #: wppa-help.php:95
4156
- msgid ""
4157
- "If you want to display the <b>cover</b> of the album, i.e. like one of the "
4158
- "albums in the \"Photo Gallery\" as used above, use a schortcode like this:"
4159
- msgstr ""
4160
- "Pokud chcete zobrazit <b>obal</b> alba, např. jako jedno z alb ve "
4161
- "\"Fotogalerii\" použité výše, použijte takovýto krátký kód:"
4162
-
4163
- #: wppa-help.php:97
4164
- msgid "If you want to display the <b>slideshow</b> directly, use:"
4165
- msgstr "Pokud chcete zobrazit <b>prezentaci</b> přímo, použijte:"
4166
-
4167
- #: wppa-help.php:99
4168
- msgid ""
4169
- "You can add a third argument if you want the photos to be displayed at a "
4170
- "different size than normal. You can \"overrule\" the \"Full size\" setting "
4171
- "by adding the line (for e.g. 300px):"
4172
- msgstr ""
4173
- "Pokud chcete fotografie zobrazit v jiné než normální velikosti, můžete "
4174
- "přidat třetí argument. Můžete potlačit nastavení \"Plná velikost\" přidáním "
4175
- "řádku (např. 300px):"
4176
-
4177
- #: wppa-help.php:101
4178
- msgid "The shortcode may be used more than once in a single page or post."
4179
- msgstr ""
4180
- "Krátký kód může být použít více než jednou na jedné stránce nebo příspěvku."
4181
-
4182
- #: wppa-help.php:102
4183
- msgid ""
4184
- "For more information see <a href=\"http://wppa.opajaap.nl/shortcode-"
4185
- "reference/\" >the documentation</a>"
4186
- msgstr ""
4187
- "Pro další informace shlédněte <a href=\"http://wppa.opajaap.nl/shortcode-"
4188
- "reference/\" >dokumentaci</a>"
4189
-
4190
- #: wppa-help.php:104
4191
- msgid ""
4192
- "You can also create a custom page template by dropping the following code "
4193
- "into a page template:"
4194
- msgstr ""
4195
- "Můžete též vytvořit uživatelskou šablonu stránky vložením následujícího kódu "
4196
- "do šablony stránky:"
4197
-
4198
- #: wppa-help.php:106
4199
- msgid ""
4200
- "If you want to display the <b>contents</b> of a single album in the template "
4201
- "- say album number 19 - the code would be:"
4202
- msgstr ""
4203
- "Pokud chcete v šabloně zobrazit <b>obsah</b> jediného alba - řekněme album "
4204
- "19 - pak by kód byl:"
4205
-
4206
- #: wppa-help.php:108
4207
- msgid ""
4208
- "If you want the <b>cover</b> to be displayed instead, use the following code:"
4209
- msgstr "Pokud chcete zobrazit pouze <b>obal</b>, použijte tento kód:"
4210
-
4211
- #: wppa-help.php:110
4212
- msgid "And to display the <b>slideshow</b> it would be:"
4213
- msgstr "A pro zobrazení <b>prezentace</b> bude kód:"
4214
-
4215
- #: wppa-help.php:112
4216
- msgid "If you want to specify a size, add another argument:"
4217
- msgstr "Pokud chcete nastavit velikost, přidejte další argument:"
4218
-
4219
- #: wppa-help.php:114
4220
- msgid ""
4221
- "In order to work properly, the wppa_albums() tag needs to be within the <a "
4222
- "href=\"http://codex.wordpress.org/The_Loop\" target=\"_blank\">WordPress "
4223
- "loop</a>."
4224
- msgstr ""
4225
- "Tagy wppa_albums() musí být uvnitř <a href=\"http://codex.wordpress.org/"
4226
- "The_Loop\" target=\"_blank\">WordPress smyčky</a> aby fungovaly správně."
4227
-
4228
- #: wppa-help.php:115
4229
- msgid "For more information on creating custom page templates, click"
4230
- msgstr "Pro další informace o vytváření uživatelských šablon stránek klikněte"
4231
-
4232
- #: wppa-help.php:115
4233
- msgid "here"
4234
- msgstr "zde"
4235
-
4236
- #: wppa-help.php:118
4237
- msgid "Facts to remember"
4238
- msgstr "Zapamatujte si"
4239
-
4240
- #: wppa-help.php:120
4241
- msgid ""
4242
- "You can remove the plugin and re-install the latest version always. This "
4243
- "will not affect your photos or albums."
4244
- msgstr ""
4245
- "Vždy můžete plugin odstranit a nainstalovat nejnovější verzi. Toto neovlivní "
4246
- "vaše fotografie ani alba"
4247
-
4248
- #: wppa-help.php:121
4249
- msgid ""
4250
- "If you go back in version no, run the Setup procedure in <b>Table VIII-A1</"
4251
- "b> of the Photo Albums->Settings admin page."
4252
- msgstr ""
4253
- "Pokud se vracíte v číslech verzí, spusťte proceduru Setup v <b>Tabulce VIII-"
4254
- "A1</b> administrace FotoAlba ->Nastavení "
4255
-
4256
- #: wppa-help.php:124
4257
- msgid "Plugin Support And Feature Request"
4258
- msgstr "Podpora pluginu a požadavky na vlastnosti"
4259
-
4260
- #: wppa-help.php:126
4261
- msgid ""
4262
- "If you've read over this readme carefully and are still having issues, if "
4263
- "you've discovered a bug,"
4264
- msgstr ""
4265
- "Pokud jste si tohle pozorně přečetli a stále máte problémy, pokud jste "
4266
- "objevili chybu,"
4267
-
4268
- #: wppa-help.php:127
4269
- msgid ""
4270
- "or have a feature request, please check the <a href=\"http://wordpress.org/"
4271
- "tags/wp-photo-album-plus\">forum</a> for this plugin and/or leave a question "
4272
- "there."
4273
- msgstr ""
4274
- "nebo máte požadavek na vlastnost, prosím navštivte <a href=\"http://"
4275
- "wordpress.org/tags/wp-photo-album-plus\">forum</a> tohoto pluginu a položte "
4276
- "svou otázku tam."
4277
-
4278
- #: wppa-help.php:129
4279
- msgid ""
4280
- "For hot fixes check the <a href=\"http://plugins.trac.wordpress.org/log/wp-"
4281
- "photo-album-plus/\">development log</a> for this plugin."
4282
- msgstr ""
4283
- "Pro Hot-Fixy zkontrolujte <a href=\"http://plugins.trac.wordpress.org/log/wp-"
4284
- "photo-album-plus/\">log vývojáře</a> tohoto pluginu."
4285
-
4286
- #: wppa-help.php:131
4287
- msgid ""
4288
- "You may also visit the <a href=\"http://wppa.opajaap.nl/\" target=\"_blank"
4289
- "\">WPPA+ Docs & Demos site</a> that also contains the <a href=\"http://wppa."
4290
- "opajaap.nl/?page_id=39\" target=\"_blank\">WPPA+ Tutorial</a>."
4291
- msgstr ""
4292
- "Můžete též navštívit <a href=\"http://wppa.opajaap.nl/\" target=\"_blank"
4293
- "\">WPPA+ Docs & Demos site</a>, která obsahuje také <a href=\"http://wppa."
4294
- "opajaap.nl/?page_id=39\" target=\"_blank\">WPPA+ Tutorial</a>."
4295
-
4296
- #: wppa-help.php:134
4297
- msgid ""
4298
- "If you love this plugin, I would appreciate a donation, either in <a href="
4299
- "\"https://www.paypal.com/cgi-bin/webscr?"
4300
- "cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-"
4301
- "Plus&item_number=Support-Open-Source&currency_code=USD&lc=US\">USD</a> or in "
4302
- "<a href=\"https://www.paypal.com/cgi-bin/webscr?"
4303
- "cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-"
4304
- "Plus&item_number=Support-Open-Source&currency_code=EUR&lc=US\">EURO</a>."
4305
- msgstr ""
4306
- "Pokud máte tento plugin rádi, ocenil bych příspěvek, buď v <a href="
4307
- "\"https://www.paypal.com/cgi-bin/webscr?"
4308
- "cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-"
4309
- "Plus&item_number=Support-Open-Source&currency_code=USD&lc=US\">USD</a> nebo "
4310
- "v <a href=\"https://www.paypal.com/cgi-bin/webscr?"
4311
- "cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-"
4312
- "Plus&item_number=Support-Open-Source&currency_code=EUR&lc=US\">EURO</a>."
4313
-
4314
- #: wppa-help.php:137
4315
- msgid "About and credits"
4316
- msgstr "O nás & kredity"
4317
-
4318
- #: wppa-help.php:139
4319
- msgid ""
4320
- "WP Photo Album Plus is extended with many new features and is maintained by "
4321
- "J.N. Breetvelt, a.k.a. (<a href=\"http://www.opajaap.nl/\">OpaJaap</a>)"
4322
- msgstr ""
4323
- "WP Photo Album Plus je rozšířeno mnoha dalšími funkcemi a je udržováno J.N. "
4324
- "Breetveltem, alias (<a href=\"http://www.opajaap.nl/\">OpaJaap</a>)"
4325
-
4326
- #: wppa-help.php:140
4327
- msgid "Thanx to R.J. Kaplan for WP Photo Album 1.5.1."
4328
- msgstr "Díky R.J. Kaplanovi za WP Photo Album 1.5.1."
4329
-
4330
- #: wppa-help.php:141
4331
- msgid "Thanx to E.S. Rosenberg for programming tips on security issues."
4332
- msgstr "Díky E.S. Rosenbergovi za programování tipů v otázkách zabezpečení."
4333
-
4334
- #: wppa-help.php:142
4335
- msgid "Thanx to Pavel &#352;orejs for the Numbar code."
4336
- msgstr "Díky Pavlu &#352;orejsovi za kód číselného panelu"
4337
-
4338
- #: wppa-help.php:143
4339
- msgid ""
4340
- "Thanx to the users who reported bugs and asked for enhancements. Without "
4341
- "them WPPA should not have been what it is now!"
4342
- msgstr ""
4343
- "Děkuji uživatelům, kteří hlásí chyby a požadují vylepšení. Bez nich by WPPA+ "
4344
- "nebylo tím, čím dnes je!"
4345
-
4346
- #: wppa-help.php:146
4347
- msgid "Licence"
4348
- msgstr "Licence"
4349
-
4350
- #: wppa-help.php:148
4351
- msgid "WP Photo Album is released under the"
4352
- msgstr "WP Photo album je uvolněno pod"
4353
-
4354
- #: wppa-help.php:148
4355
- msgid "licence."
4356
- msgstr "licencí."
4357
-
4358
- #: wppa-items.php:226 wppa-thumbnails.php:1836
4359
- msgid "Gold medal"
4360
- msgstr "Zlatá medaile"
4361
-
4362
- #: wppa-items.php:226 wppa-photo-admin-autosave.php:837
4363
- #: wppa-photo-admin-autosave.php:859 wppa-photo-admin-autosave.php:1302
4364
- #: wppa-photo-admin-autosave.php:1419 wppa-photo-admin-autosave.php:1430
4365
- #: wppa-widget-admin.php:126
4366
- msgid "Gold"
4367
- msgstr "Zlato"
4368
-
4369
- #: wppa-items.php:227 wppa-thumbnails.php:1837
4370
- msgid "Silver medal"
4371
- msgstr "Stříbrná medaile"
4372
-
4373
- #: wppa-items.php:227 wppa-photo-admin-autosave.php:838
4374
- #: wppa-photo-admin-autosave.php:860 wppa-photo-admin-autosave.php:1303
4375
- #: wppa-photo-admin-autosave.php:1420 wppa-photo-admin-autosave.php:1431
4376
- #: wppa-widget-admin.php:127
4377
- msgid "Silver"
4378
- msgstr "Stříbro"
4379
-
4380
- #: wppa-items.php:228 wppa-thumbnails.php:1838
4381
- msgid "Bronze medal"
4382
- msgstr "Bronzová medaile"
4383
-
4384
- #: wppa-items.php:228 wppa-photo-admin-autosave.php:839
4385
- #: wppa-photo-admin-autosave.php:861 wppa-photo-admin-autosave.php:1304
4386
- #: wppa-photo-admin-autosave.php:1421 wppa-photo-admin-autosave.php:1432
4387
- #: wppa-widget-admin.php:128
4388
- msgid "Bronze"
4389
- msgstr "Bronz"
4390
-
4391
- #: wppa-items.php:277 wppa-items.php:431 wppa-settings-autosave.php:3219
4392
- msgid "none"
4393
- msgstr "žádný/á"
4394
-
4395
- #: wppa-items.php:307 wppa-items.php:442 wppa-upload.php:99 wppa-upload.php:104
4396
- msgid "unknown"
4397
- msgstr "neznámý/á"
4398
-
4399
- #: wppa-items.php:377 wppa-items.php:398
4400
- msgid "--- deleted ---"
4401
- msgstr "--- smazáno ---"
4402
-
4403
- #: wppa-items.php:387
4404
- msgid "All Albums"
4405
- msgstr "Všechna alba"
4406
-
4407
- #: wppa-lasten-widget.php:12
4408
- msgid "WPPA+ Last Ten Uploaded Photos"
4409
- msgstr "WPPA+ Posledních Deset Nahraných Fotografií"
4410
-
4411
- #: wppa-lasten-widget.php:13 wppa-lasten-widget.php:162
4412
- msgid "Last Ten Photos"
4413
- msgstr "Posledních Deset Fotografií"
4414
-
4415
- #: wppa-lasten-widget.php:44
4416
- msgid "Last Ten Uploaded Photos"
4417
- msgstr "Posledních Deset Nahraných Fotografií"
4418
-
4419
- #: wppa-lasten-widget.php:108
4420
- msgid "View the most recent uploaded photos"
4421
- msgstr "Zobrazit nejnověji nahrané fotografie"
4422
-
4423
- #: wppa-lasten-widget.php:186
4424
- msgid ""
4425
- "Select --- multiple see below --- in the Album selection box. Then enter "
4426
- "album numbers seperated by commas"
4427
- msgstr ""
4428
- "Zvolte--- vícenásobné viz níže --- ve výběrovém boxu Alba. Poté vložte "
4429
- "čísla alb oddělená čárkami"
4430
-
4431
- #: wppa-lasten-widget.php:191 wppa-thumbnail-widget.php:216
4432
- #: wppa-topten-widget.php:226
4433
- msgid "Display:"
4434
- msgstr "Zobrazit:"
4435
-
4436
- #: wppa-lasten-widget.php:193 wppa-thumbnail-widget.php:218
4437
- #: wppa-topten-widget.php:228
4438
- msgid "thumbnail images"
4439
- msgstr "miniatury fotografií"
4440
-
4441
- #: wppa-lasten-widget.php:194 wppa-thumbnail-widget.php:219
4442
- #: wppa-topten-widget.php:229
4443
- msgid "photo names"
4444
- msgstr "názvy fotografií"
4445
-
4446
- #: wppa-lasten-widget.php:200
4447
- msgid "Show time since:"
4448
- msgstr "Zobrazit čas od:"
4449
-
4450
- #: wppa-links.php:721
4451
- msgid "App"
4452
- msgstr "App"
4453
-
4454
- #: wppa-links.php:722
4455
- msgid "Mod"
4456
- msgstr "Mod"
4457
-
4458
- #: wppa-links.php:723
4459
- msgid "Del"
4460
- msgstr "Del"
4461
-
4462
- #: wppa-links.php:727 wppa-links.php:744
4463
- msgid "Are you sure you want to publish this photo?"
4464
- msgstr "Opravdu chcete tuto fotografii publikovat?"
4465
-
4466
- #: wppa-links.php:738 wppa-links.php:755
4467
- msgid "Approve"
4468
- msgstr "Potvrdit"
4469
-
4470
- #: wppa-links.php:739
4471
- msgid "Moderate"
4472
- msgstr "Moderovat"
4473
-
4474
- #: wppa-links.php:756
4475
- msgid "PhotoAdmin"
4476
- msgstr "Administrace Fotografií"
4477
-
4478
- #: wppa-links.php:757
4479
- msgid "CommentAdmin"
4480
- msgstr "Administrace Komentářů"
4481
-
4482
- #: wppa-links.php:761
4483
- msgid "Are you sure you want to publish this comment?"
4484
- msgstr "Opravdu chcete tento komentář publikovat?"
4485
-
4486
- #: wppa-links.php:773
4487
- msgid "Are you sure you want to remove this comment?"
4488
- msgstr "Opravdu chcete tento komentář odebrat?"
4489
-
4490
- #: wppa-links.php:787
4491
- #, php-format
4492
- msgid "Scheduled for %s"
4493
- msgstr "Naplánováno na %s"
4494
-
4495
- #: wppa-links.php:994 wppa-links.php:997 wppa-slideshow.php:953
4496
- msgid "Previous"
4497
- msgstr "Predchozí"
4498
-
4499
- #: wppa-links.php:1004 wppa-links.php:1007 wppa-non-admin.php:587
4500
- #: wppa-slideshow.php:966
4501
- msgid "Next"
4502
- msgstr "Další"
4503
-
4504
- #: wppa-links.php:1053
4505
- msgid "Download album"
4506
- msgstr "Stáhnout album"
4507
-
4508
- #: wppa-links.php:1189
4509
- msgid "View thumbnails"
4510
- msgstr "Zobrazit miniatury"
4511
-
4512
- #: wppa-maintenance.php:60
4513
- msgid "You can run only one maintenance procedure at a time"
4514
- msgstr "Současně můžete provádět pouze jednu proceduru údržby"
4515
-
4516
- #: wppa-maintenance.php:60 wppa-upload.php:1440
4517
- msgid "Error"
4518
- msgstr "Chyba"
4519
-
4520
- #: wppa-maintenance.php:120
4521
- msgid "Orphan photos"
4522
- msgstr "Osiřelé fotografie"
4523
-
4524
- #: wppa-maintenance.php:120
4525
- msgid "This album contains refound lost photos"
4526
- msgstr "Toto album obsahuje znovu nalezené ztracené fotografie"
4527
-
4528
- #: wppa-maintenance.php:668 wppa-maintenance.php:684
4529
- #: wppa-photo-admin-autosave.php:1713 wppa-photo-admin-autosave.php:1734
4530
- #: wppa-setup.php:343 wppa.php:369 wppa.php:370
4531
- msgid "Required"
4532
- msgstr "Požadováno"
4533
-
4534
- #: wppa-maintenance.php:753
4535
- msgid "There are no index items."
4536
- msgstr "Neexistují žádné položky indexu."
4537
-
4538
- #: wppa-maintenance.php:767
4539
- msgid "There are no error log messages"
4540
- msgstr "Neexistují žádné chybové zprávy protokolu"
4541
-
4542
- #: wppa-maintenance.php:835
4543
- msgid "There are no ratings"
4544
- msgstr "Neexistují žádná hodnocení"
4545
-
4546
- #: wppa-maintenance.php:891
4547
- msgid "There are no active sessions"
4548
- msgstr "Neexistují žádná aktivní relace"
4549
-
4550
- #: wppa-multitag-widget.php:13 wppa-tagcloud-widget.php:13
4551
- msgid "WPPA+ Photo Tags"
4552
- msgstr "WPPA+ Foto Tagy"
4553
-
4554
- #: wppa-multitag-widget.php:14
4555
- msgid "Photo Tags Filter"
4556
- msgstr "Filtr Foto Tagů"
4557
-
4558
- #: wppa-multitag-widget.php:73
4559
- msgid "No of columns:"
4560
- msgstr "Č. sloupců:"
4561
-
4562
- #: wppa-multitag-widget.php:74 wppa-tagcloud-widget.php:69
4563
- msgid "Select multiple tags or --- all ---:"
4564
- msgstr "Zvolte vícenásobné štítky nebo --- vše ---:"
4565
-
4566
- #: wppa-non-admin.php:315
4567
- msgid "Press f for fullscreen."
4568
- msgstr "Pro celoobrazovkové zobrazení stiskni f."
4569
-
4570
- #: wppa-non-admin.php:349
4571
- msgid ""
4572
- "Keys: f = next mode; escape = exit; p = previous, n = next, s = start/stop, "
4573
- "d = dismiss this notice."
4574
- msgstr ""
4575
- "Klávesy: f = další mód; escape = konec; p = předchozí; n = další; s = start/"
4576
- "stop; d = skrýt tuto informaci."
4577
-
4578
- #: wppa-non-admin.php:350
4579
- msgid "Keys: f = next mode; escape = exit; d = dismiss this notice."
4580
- msgstr "Klávesy: f = další mód; escape = konec; d = skrýt tuto informaci."
4581
-
4582
- #: wppa-non-admin.php:578 wppa-settings-autosave.php:3373
4583
- #: wppa-slideshow.php:228
4584
- msgid "Start"
4585
- msgstr "Start"
4586
-
4587
- #: wppa-non-admin.php:579
4588
- msgid "Stop"
4589
- msgstr "Stop"
4590
-
4591
- #: wppa-non-admin.php:580 wppa-slideshow.php:220
4592
- msgid "Slower"
4593
- msgstr "Pomaleji"
4594
-
4595
- #: wppa-non-admin.php:581 wppa-slideshow.php:236
4596
- msgid "Faster"
4597
- msgstr "Rychleji"
4598
-
4599
- #: wppa-non-admin.php:583
4600
- msgid "of"
4601
- msgstr "z"
4602
-
4603
- #: wppa-non-admin.php:584
4604
- msgid "Previous photo"
4605
- msgstr "Předchozí Snímek"
4606
-
4607
- #: wppa-non-admin.php:585
4608
- msgid "Next photo"
4609
- msgstr "Další Snímek"
4610
-
4611
- #: wppa-non-admin.php:586
4612
- msgid "Prev."
4613
- msgstr "Předch."
4614
-
4615
- #: wppa-non-admin.php:588 wppa-slideshow.php:705 wppa-slideshow.php:717
4616
- #: wppa-slideshow.php:808
4617
- msgid "Average&nbsp;rating"
4618
- msgstr "Průměrné hodnocení"
4619
-
4620
- #: wppa-non-admin.php:589 wppa-slideshow.php:767 wppa-slideshow.php:779
4621
- #: wppa-slideshow.php:790
4622
- msgid "My&nbsp;rating"
4623
- msgstr "Mé hodnocení"
4624
-
4625
- #: wppa-non-admin.php:590
4626
- msgid "Avg."
4627
- msgstr "<b>Hodnocení:</b> Celkem"
4628
-
4629
- #: wppa-non-admin.php:591
4630
- msgid "Mine"
4631
- msgstr "Moje"
4632
-
4633
- #: wppa-non-admin.php:592
4634
- msgid "You marked this image as inappropriate."
4635
- msgstr "Tento obrázek jste označili jako nevhodný."
4636
-
4637
- #: wppa-non-admin.php:594
4638
- msgid "No dislikes"
4639
- msgstr "Žádné hodnocení NELÍBÍ"
4640
-
4641
- #: wppa-non-admin.php:595
4642
- msgid "1 dislike"
4643
- msgstr "1 hodnocení NELÍBÍ"
4644
-
4645
- #: wppa-non-admin.php:596
4646
- msgid "dislikes"
4647
- msgstr "NELÍBÍ"
4648
-
4649
- #: wppa-non-admin.php:597
4650
- msgid "including mine"
4651
- msgstr "včetně mého"
4652
-
4653
- #: wppa-non-admin.php:600
4654
- msgid "Please enter your name"
4655
- msgstr "Zadejte vaše jméno"
4656
-
4657
- #: wppa-non-admin.php:601
4658
- msgid "Please enter a valid email address"
4659
- msgstr "Zadejte platnou e-mailovou adresu"
4660
-
4661
- #: wppa-non-admin.php:602
4662
- msgid "Please enter a comment"
4663
- msgstr "Vložte komentář"
4664
-
4665
- #: wppa-non-admin.php:636
4666
- msgid "Double click to start/stop slideshow running"
4667
- msgstr "Dvojklikem na Start/Stop spustíte/zastavíte prezentaci"
4668
-
4669
- #: wppa-photo-admin-autosave.php:35
4670
- msgid "Edit photos"
4671
- msgstr "Upravit fotografie"
4672
-
4673
- #: wppa-photo-admin-autosave.php:54
4674
- msgid "Moderate photos"
4675
- msgstr "Moderovat fotografie"
4676
-
4677
- #: wppa-photo-admin-autosave.php:96
4678
- msgid "You do not have the rights to do this"
4679
- msgstr "Na toto nemáte oprávnění"
4680
-
4681
- #: wppa-photo-admin-autosave.php:118
4682
- msgid "This photo is no longer awaiting moderation."
4683
- msgstr "Tato fotografie již neočekává moderování."
4684
-
4685
- #: wppa-photo-admin-autosave.php:119
4686
- msgid "There are no photos awaiting moderation at this time."
4687
- msgstr "V tomto okamžiku neočekávají moderování žádné fotografie."
4688
-
4689
- #: wppa-photo-admin-autosave.php:121
4690
- msgid "Manage all photos by timestamp"
4691
- msgstr "Spravovat všechny fotografie podle časového razítka"
4692
-
4693
- #: wppa-photo-admin-autosave.php:138
4694
- #, php-format
4695
- msgid "Photo %s has been removed."
4696
- msgstr "Fotografie %s byla odebrána."
4697
-
4698
- #: wppa-photo-admin-autosave.php:143 wppa-photo-admin-autosave.php:1467
4699
- msgid "No photos matching your search criteria."
4700
- msgstr "Kritériím vyhledávání neodpovídají žádné fotografie."
4701
-
4702
- #: wppa-photo-admin-autosave.php:146 wppa-photo-admin-autosave.php:1470
4703
- #: wppa-widget-admin.php:210
4704
- msgid "No photos yet in this album."
4705
- msgstr "V tomto albu nejsou ještě žádné fotografie."
4706
-
4707
- #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:544
4708
- msgid "top - left"
4709
- msgstr "nahoře - vlevo"
4710
-
4711
- #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:544
4712
- msgid "top - center"
4713
- msgstr "nahoře - uprostřed"
4714
-
4715
- #: wppa-photo-admin-autosave.php:151 wppa-watermark.php:544
4716
- msgid "top - right"
4717
- msgstr "nahoře - vpravo"
4718
-
4719
- #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:545
4720
- msgid "center - left"
4721
- msgstr "uprostřed vlevo"
4722
-
4723
- #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:545
4724
- msgid "center - center"
4725
- msgstr "uprostřed"
4726
-
4727
- #: wppa-photo-admin-autosave.php:152 wppa-watermark.php:545
4728
- msgid "center - right"
4729
- msgstr "uprostřed - vpravo"
4730
-
4731
- #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:546
4732
- msgid "bottom - left"
4733
- msgstr "dole - vlevo"
4734
-
4735
- #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:546
4736
- msgid "bottom - center"
4737
- msgstr "dole - uprostřed"
4738
-
4739
- #: wppa-photo-admin-autosave.php:153 wppa-watermark.php:546
4740
- msgid "bottom - right"
4741
- msgstr "dole - vpravo"
4742
-
4743
- #: wppa-photo-admin-autosave.php:177
4744
- msgid "Preview:"
4745
- msgstr "Náhled:"
4746
-
4747
- #: wppa-photo-admin-autosave.php:179
4748
- #, php-format
4749
- msgid "Album: %d<br />(%s)"
4750
- msgstr "Album: %d<br />(%s)"
4751
-
4752
- #: wppa-photo-admin-autosave.php:182
4753
- msgid "Rotate"
4754
- msgstr "Otočit"
4755
-
4756
- #: wppa-photo-admin-autosave.php:183
4757
- msgid "Are you sure you want to rotate this photo left?"
4758
- msgstr "Opravdu chcete otočit tuto fotografii doleva?"
4759
-
4760
- #: wppa-photo-admin-autosave.php:185
4761
- msgid "Are you sure you want to rotate this photo 180&deg;?"
4762
- msgstr "Opravdu chcete otočit tuto fotografii o 180&deg;?"
4763
-
4764
- #: wppa-photo-admin-autosave.php:187
4765
- msgid "Are you sure you want to rotate this photo right?"
4766
- msgstr " Opravdu chcete otočit tuto fotografii doprava?"
4767
-
4768
- #: wppa-photo-admin-autosave.php:192
4769
- msgid "If it says 'Photo rotated', the photo is rotated."
4770
- msgstr "Je-li oznámeno, \"Fotografie otočena\",pak je otočena."
4771
-
4772
- #: wppa-photo-admin-autosave.php:196
4773
- #, php-format
4774
- msgid "If it says 'Photo rotated', the photo is rotated. %s the page."
4775
- msgstr "Je-li oznámeno, \"Fotografie otočena\",pak je otočena. %s stránku."
4776
-
4777
- #: wppa-photo-admin-autosave.php:210
4778
- msgid "Preview fullsize video"
4779
- msgstr "Náhled videa v plné velikosti"
4780
-
4781
- #: wppa-photo-admin-autosave.php:225
4782
- msgid "Preview fullsize photo"
4783
- msgstr "Náhled fotografie v plné velikosti"
4784
-
4785
- #: wppa-photo-admin-autosave.php:240
4786
- msgid "Audio disabled"
4787
- msgstr "Audio zakázáno"
4788
-
4789
- #: wppa-photo-admin-autosave.php:250
4790
- msgid "Upload:"
4791
- msgstr "Nahrát:"
4792
-
4793
- #: wppa-photo-admin-autosave.php:264 wppa-potd-widget.php:156
4794
- msgid "By:"
4795
- msgstr "Od:"
4796
-
4797
- #: wppa-photo-admin-autosave.php:308
4798
- msgid "Rating:"
4799
- msgstr "Hodnocení:"
4800
-
4801
- #: wppa-photo-admin-autosave.php:314
4802
- msgid "Entries:"
4803
- msgstr "Položky:"
4804
-
4805
- #: wppa-photo-admin-autosave.php:314
4806
- msgid "Mean value:"
4807
- msgstr "Průměr:"
4808
-
4809
- #: wppa-photo-admin-autosave.php:321
4810
- #, php-format
4811
- msgid "Disliked by %d visitors"
4812
- msgstr "NELÍBÍ od %d návštěvníků"
4813
-
4814
- #: wppa-photo-admin-autosave.php:325
4815
- #, php-format
4816
- msgid "%d pending votes."
4817
- msgstr "%d čekajících hlasů"
4818
-
4819
- #: wppa-photo-admin-autosave.php:335
4820
- msgid "Views"
4821
- msgstr "Zobrazení"
4822
-
4823
- #: wppa-photo-admin-autosave.php:346
4824
- msgid "Photo sort order #:"
4825
- msgstr "Pořadí fotografií #"
4826
-
4827
- #: wppa-photo-admin-autosave.php:359
4828
- msgid "Are you sure you want to move this photo?"
4829
- msgstr "Opravdu chcete tuto fotografii přesunout?"
4830
-
4831
- #: wppa-photo-admin-autosave.php:359
4832
- msgid "Please select an album to move the photo to first."
4833
- msgstr "Nejdříve vyberte album kam budou fotografie přesunuty."
4834
-
4835
- #: wppa-photo-admin-autosave.php:359
4836
- msgid "Move photo to"
4837
- msgstr "Přesunout fotografie do"
4838
-
4839
- #: wppa-photo-admin-autosave.php:368
4840
- msgid "Are you sure you want to copy this photo?"
4841
- msgstr "Opravdu chcete tuto fotografii zkopírovat?"
4842
-
4843
- #: wppa-photo-admin-autosave.php:368
4844
- msgid "Please select an album to copy the photo to first."
4845
- msgstr "Nejdříve vyberte album kam budou fotografie kopírovány."
4846
-
4847
- #: wppa-photo-admin-autosave.php:368
4848
- msgid "Copy photo to"
4849
- msgstr "Kopírovat fotografie do"
4850
-
4851
- #: wppa-photo-admin-autosave.php:380 wppa-photo-admin-autosave.php:1351
4852
- msgid "Are you sure you want to delete this photo?"
4853
- msgstr "Opravdu chcete tuto fotografii smazat?"
4854
-
4855
- #: wppa-photo-admin-autosave.php:380
4856
- msgid "Delete photo"
4857
- msgstr "Smazat fotografii"
4858
-
4859
- #: wppa-photo-admin-autosave.php:390
4860
- msgid "Autopage Permalink:"
4861
- msgstr "Trvalý odkaz na AutoPage:"
4862
-
4863
- #: wppa-photo-admin-autosave.php:403
4864
- msgid "Link url:"
4865
- msgstr "URL odkazu:"
4866
-
4867
- #: wppa-photo-admin-autosave.php:408
4868
- msgid "Same tab"
4869
- msgstr "Stejná karta"
4870
-
4871
- #: wppa-photo-admin-autosave.php:409 wppa-settings-autosave.php:4463
4872
- #: wppa-settings-autosave.php:5490
4873
- msgid "New tab"
4874
- msgstr "Nová karta"
4875
-
4876
- #: wppa-photo-admin-autosave.php:417
4877
- msgid "Link title:"
4878
- msgstr "Název odkazu:"
4879
-
4880
- #: wppa-photo-admin-autosave.php:426
4881
- msgid ""
4882
- "If you want this link to be used, check 'PS Overrule' checkbox in table VI."
4883
- msgstr ""
4884
- "Pokud požadujete, aby byl tento odkaz použit, zaškrtněte položku 'PS "
4885
- "Přeřízení' v Tabulce VI."
4886
-
4887
- #: wppa-photo-admin-autosave.php:437
4888
- msgid "HTML Alt attribute:"
4889
- msgstr "Atribut alternativní HTML"
4890
-
4891
- #: wppa-photo-admin-autosave.php:457
4892
- msgid "Filename:"
4893
- msgstr "Název souboru:"
4894
-
4895
- #: wppa-photo-admin-autosave.php:463
4896
- msgid "Update file"
4897
- msgstr "Aktualizovat soubor"
4898
-
4899
- #: wppa-photo-admin-autosave.php:474 wppa-settings-autosave.php:2953
4900
- msgid "Upload"
4901
- msgstr "Nahrát"
4902
-
4903
- #: wppa-photo-admin-autosave.php:484
4904
- msgid "Video size:"
4905
- msgstr "Velikost videa:"
4906
-
4907
- #: wppa-photo-admin-autosave.php:490 wppa-slideshow-widget.php:201
4908
- msgid "Width:"
4909
- msgstr "Šířka:"
4910
-
4911
- #: wppa-photo-admin-autosave.php:493 wppa-photo-admin-autosave.php:501
4912
- #, php-format
4913
- msgid "pix, (0=default:%s)"
4914
- msgstr "pix, (0=výchozí:%s)"
4915
-
4916
- #: wppa-photo-admin-autosave.php:498 wppa-slideshow-widget.php:202
4917
- msgid "Height:"
4918
- msgstr "Výška:"
4919
-
4920
- #: wppa-photo-admin-autosave.php:509 wppa-photo-admin-autosave.php:531
4921
- msgid "Formats:"
4922
- msgstr "Formáty:"
4923
-
4924
- #: wppa-photo-admin-autosave.php:517 wppa-photo-admin-autosave.php:539
4925
- msgid "Filesize:"
4926
- msgstr "Velikost souboru:"
4927
-
4928
- #: wppa-photo-admin-autosave.php:552
4929
- msgid "Poster:"
4930
- msgstr "Autor příspěvku:"
4931
-
4932
- #: wppa-photo-admin-autosave.php:552
4933
- msgid "Photo sizes:"
4934
- msgstr "Velikosti fotografií:"
4935
-
4936
- #: wppa-photo-admin-autosave.php:558
4937
- msgid "Source file:"
4938
- msgstr "Zdrojový soubor:"
4939
-
4940
- #: wppa-photo-admin-autosave.php:571
4941
- msgid "Remake display file and thumbnail file"
4942
- msgstr "Znovu vytvořit soubor zobrazení i soubor miniatury"
4943
-
4944
- #: wppa-photo-admin-autosave.php:571
4945
- msgid "Remake files"
4946
- msgstr "Znovu vytvořit soubory"
4947
-
4948
- #: wppa-photo-admin-autosave.php:576 wppa-photo-admin-autosave.php:601
4949
- #: wppa-photo-admin-autosave.php:624
4950
- msgid "Unavailable"
4951
- msgstr "Nedostupný"
4952
-
4953
- #: wppa-photo-admin-autosave.php:586
4954
- msgid "Display file:"
4955
- msgstr "Soubor zobrazení:"
4956
-
4957
- #: wppa-photo-admin-autosave.php:611
4958
- msgid "Thumbnail file:"
4959
- msgstr "Soubor miniatury:"
4960
-
4961
- #: wppa-photo-admin-autosave.php:630
4962
- msgid "Remake thumbnail file"
4963
- msgstr "Znovu vytvořit soubor miniatury"
4964
-
4965
- #: wppa-photo-admin-autosave.php:630 wppa-settings-autosave.php:6208
4966
- msgid "Remake"
4967
- msgstr "Znovu vytvořit"
4968
-
4969
- #: wppa-photo-admin-autosave.php:641
4970
- msgid "Stereophoto:"
4971
- msgstr "Stereofotografie:"
4972
-
4973
- #: wppa-photo-admin-autosave.php:645
4974
- msgid "no stereo image or ready anaglyph"
4975
- msgstr "Žádný stereo obrázek ani 3D anaglyph"
4976
-
4977
- #: wppa-photo-admin-autosave.php:646
4978
- msgid "Left - right stereo image"
4979
- msgstr "Levo-pravý stereo obrázek"
4980
-
4981
- #: wppa-photo-admin-autosave.php:647
4982
- msgid "Right - left stereo image"
4983
- msgstr "Pravo-levý stereo obrázek"
4984
-
4985
- #: wppa-photo-admin-autosave.php:653
4986
- msgid "Images:"
4987
- msgstr "Obrázky:"
4988
-
4989
- #: wppa-photo-admin-autosave.php:683
4990
- msgid "Location:"
4991
- msgstr "Poloha:"
4992
-
4993
- #: wppa-photo-admin-autosave.php:691
4994
- msgid "Lat:"
4995
- msgstr "Zem. šířka:"
4996
-
4997
- #: wppa-photo-admin-autosave.php:692
4998
- msgid "Lon:"
4999
- msgstr "Zem. délka:"
5000
-
5001
- #: wppa-photo-admin-autosave.php:694
5002
- msgid "Refresh the page after changing to see the degrees being updated"
5003
- msgstr "Po změně obnovte stránku aby jste viděli změnu stupňů"
5004
-
5005
- #: wppa-photo-admin-autosave.php:704
5006
- msgid "Photoname:"
5007
- msgstr "Název snímku"
5008
-
5009
- #: wppa-photo-admin-autosave.php:710
5010
- msgid "Update Photo name"
5011
- msgstr "Upravit Název snímku"
5012
-
5013
- #: wppa-photo-admin-autosave.php:736
5014
- msgid "Update Photo description"
5015
- msgstr "Upravit popis fotografie"
5016
-
5017
- #: wppa-photo-admin-autosave.php:794
5018
- msgid "Tags:"
5019
- msgstr "Štítky:"
5020
-
5021
- #: wppa-photo-admin-autosave.php:802
5022
- msgid "Separate tags with commas."
5023
- msgstr "Štítky oddělte čárkami."
5024
-
5025
- #: wppa-photo-admin-autosave.php:813
5026
- msgid "No tags yet"
5027
- msgstr "Zatím žádné štítky"
5028
-
5029
- #: wppa-photo-admin-autosave.php:825
5030
- msgid "Status:"
5031
- msgstr "Status:"
5032
-
5033
- #: wppa-photo-admin-autosave.php:834 wppa-photo-admin-autosave.php:857
5034
- #: wppa-photo-admin-autosave.php:1299 wppa-photo-admin-autosave.php:1416
5035
- #: wppa-photo-admin-autosave.php:1428 wppa-widget-admin.php:124
5036
- msgid "Publish"
5037
- msgstr "Publikovat"
5038
-
5039
- #: wppa-photo-admin-autosave.php:836 wppa-photo-admin-autosave.php:858
5040
- #: wppa-photo-admin-autosave.php:1301 wppa-photo-admin-autosave.php:1418
5041
- #: wppa-widget-admin.php:125
5042
- msgid "Featured"
5043
- msgstr "Doporučené"
5044
-
5045
- #: wppa-photo-admin-autosave.php:840 wppa-photo-admin-autosave.php:862
5046
- #: wppa-photo-admin-autosave.php:1305 wppa-photo-admin-autosave.php:1422
5047
- #: wppa-photo-admin-autosave.php:1433
5048
- msgid "Scheduled"
5049
- msgstr "Naplánováno"
5050
-
5051
- #: wppa-photo-admin-autosave.php:841 wppa-photo-admin-autosave.php:863
5052
- #: wppa-photo-admin-autosave.php:1306 wppa-photo-admin-autosave.php:1423
5053
- #: wppa-photo-admin-autosave.php:1434
5054
- msgid "Private"
5055
- msgstr "Soukromé"
5056
-
5057
- #: wppa-photo-admin-autosave.php:872
5058
- msgid ""
5059
- "Note: Featured photos should have a descriptive name; a name a search engine "
5060
- "will look for!"
5061
- msgstr ""
5062
- "Poznámka: Doporučené fotografie by měly mít popisný název; jméno, které "
5063
- "bude vyhledáváno!"
5064
-
5065
- #: wppa-photo-admin-autosave.php:882
5066
- msgid "Watermark:"
5067
- msgstr "Vodoznak:"
5068
-
5069
- #: wppa-photo-admin-autosave.php:889 wppa-photo-admin-autosave.php:902
5070
- msgid "File:"
5071
- msgstr "Soubor:"
5072
-
5073
- #: wppa-photo-admin-autosave.php:894 wppa-photo-admin-autosave.php:903
5074
- msgid "Pos:"
5075
- msgstr "Pozice:"
5076
-
5077
- #: wppa-photo-admin-autosave.php:898
5078
- msgid "Apply watermark"
5079
- msgstr "Aplikovat vodoznak"
5080
-
5081
- #: wppa-photo-admin-autosave.php:898
5082
- msgid "Are you sure? Once applied it can not be removed!"
5083
- msgstr "Jste si jisti? Jakmile je aplikován, nemůže být odstraněn!"
5084
-
5085
- #: wppa-photo-admin-autosave.php:898
5086
- msgid "And I do not know if there is already a watermark on this photo"
5087
- msgstr "A nevím, zda na této fotografii už vodoznak není"
5088
-
5089
- #: wppa-photo-admin-autosave.php:908
5090
- msgid "Not configured"
5091
- msgstr "Není nakonfigurováno"
5092
-
5093
- #: wppa-photo-admin-autosave.php:922
5094
- #, php-format
5095
- msgid "Video %s is not modified yet"
5096
- msgstr "Video %s ještě není změněno"
5097
-
5098
- #: wppa-photo-admin-autosave.php:925
5099
- #, php-format
5100
- msgid "Photo %s is not modified yet"
5101
- msgstr "Fotografie %s ještě není změněna"
5102
-
5103
- #: wppa-photo-admin-autosave.php:944
5104
- msgid "Single image shortcode"
5105
- msgstr "Krátký kód jednoho obrázku"
5106
-
5107
- #: wppa-photo-admin-autosave.php:950
5108
- msgid "Permalink"
5109
- msgstr "Trvalý odkaz"
5110
-
5111
- #: wppa-photo-admin-autosave.php:955
5112
- msgid "Hi resolution url"
5113
- msgstr "URL vysokého rozlišení"
5114
-
5115
- #: wppa-photo-admin-autosave.php:960
5116
- msgid "Display file url"
5117
- msgstr "URL souboru Zobrazení"
5118
-
5119
- #: wppa-photo-admin-autosave.php:966
5120
- msgid "Thumbnail file url"
5121
- msgstr "URL souboru Miniatury"
5122
-
5123
- #: wppa-photo-admin-autosave.php:1010 wppa-photo-admin-autosave.php:1020
5124
- msgid "Trash"
5125
- msgstr "Smetí"
5126
-
5127
- #: wppa-photo-admin-autosave.php:1136
5128
- #, php-format
5129
- msgid "Time is out after processing %d out of %d items."
5130
- msgstr "Po zpracování %d položek z %d došlo k timeoutu."
5131
-
5132
- #: wppa-photo-admin-autosave.php:1149
5133
- #, php-format
5134
- msgid "%d photos deleted."
5135
- msgstr "%d fotografií smazáno."
5136
-
5137
- #: wppa-photo-admin-autosave.php:1152
5138
- #, php-format
5139
- msgid "%1$s photos moved to album %2$s."
5140
- msgstr "%1$s fotografií přesunuto do alba %2$s."
5141
-
5142
- #: wppa-photo-admin-autosave.php:1155
5143
- #, php-format
5144
- msgid "%1$s photos copied to album %2$s."
5145
- msgstr "%1$s fotografií zkopírováno do alba %2$s."
5146
-
5147
- #: wppa-photo-admin-autosave.php:1158
5148
- #, php-format
5149
- msgid "Changed status to %1$s on %2$s photos."
5150
- msgstr "Status změněn na %1$s u %2$s fotografií."
5151
-
5152
- #: wppa-photo-admin-autosave.php:1161
5153
- #, php-format
5154
- msgid "Changed owner to %1$s on %2$s photos."
5155
- msgstr "Majitel změněn na %1$s u %2$s fotografií."
5156
-
5157
- #: wppa-photo-admin-autosave.php:1164
5158
- #, php-format
5159
- msgid "%d photos processed."
5160
- msgstr "%d fotografií zpracováno."
5161
-
5162
- #: wppa-photo-admin-autosave.php:1284
5163
- msgid "Move to"
5164
- msgstr "Přesunout do"
5165
-
5166
- #: wppa-photo-admin-autosave.php:1285
5167
- msgid "Copy to"
5168
- msgstr "Kopírovat do"
5169
-
5170
- #: wppa-photo-admin-autosave.php:1287
5171
- msgid "Set status to"
5172
- msgstr "Nastavit status na"
5173
-
5174
- #: wppa-photo-admin-autosave.php:1290
5175
- msgid "Set owner to"
5176
- msgstr "Nastavit majitele na"
5177
-
5178
- #: wppa-photo-admin-autosave.php:1297
5179
- msgid "- select a status -"
5180
- msgstr "- zvolit status -"
5181
-
5182
- #: wppa-photo-admin-autosave.php:1312
5183
- msgid "- select an owner -"
5184
- msgstr "- zvolit majitele -"
5185
-
5186
- #: wppa-photo-admin-autosave.php:1324
5187
- msgid "Doit!"
5188
- msgstr "Proveď!"
5189
-
5190
- #: wppa-photo-admin-autosave.php:1326
5191
- msgid ""
5192
- "Pressing this button will reload the page after executing the selected action"
5193
- msgstr ""
5194
- "Stisknutím tohoto tlačítka obnovíte stránku po vykonání požadované akce "
5195
-
5196
- #: wppa-photo-admin-autosave.php:1333 wppa-photo-admin-autosave.php:1452
5197
- #: wppa-settings-autosave.php:7632
5198
- msgid "Preview"
5199
- msgstr "Náhled"
5200
-
5201
- #: wppa-photo-admin-autosave.php:1338 wppa-photo-admin-autosave.php:1457
5202
- msgid "Remark"
5203
- msgstr "Znovu vytvořit"
5204
-
5205
- #: wppa-photo-admin-autosave.php:1475
5206
- #, php-format
5207
- msgid "Page %d is empty, try <a href=\"%s\" >page %d</a>."
5208
- msgstr "Stránka %d je prázdná, zkuste <a href=\"%s\" >stránka %d</a>"
5209
-
5210
- #: wppa-photo-admin-autosave.php:1585
5211
- msgid ""
5212
- "Setting photo sequence order has only effect if the photo order method is "
5213
- "set to <b>Order#</b>"
5214
- msgstr ""
5215
- "Nastavení sekvenčního pořadí fotografií má smysl pouze je-li nastavena "
5216
- "metoda řazení na <b>Pořadí #</b>"
5217
-
5218
- #: wppa-photo-admin-autosave.php:1644
5219
- msgid "Id: "
5220
- msgstr "ID:"
5221
-
5222
- #: wppa-photo-admin-autosave.php:1645 wppa-settings-autosave.php:404
5223
- msgid "Video"
5224
- msgstr "Video"
5225
-
5226
- #: wppa-photo-admin-autosave.php:1646 wppa-settings-autosave.php:385
5227
- msgid "Audio"
5228
- msgstr "Audio"
5229
-
5230
- #: wppa-photo-admin-autosave.php:1647
5231
- msgid "Ord: "
5232
- msgstr "Poř:"
5233
-
5234
- #: wppa-photo-admin-autosave.php:1660
5235
- msgid "The album is empty."
5236
- msgstr "Album je prázdné"
5237
-
5238
- #: wppa-photo-admin-autosave.php:1760
5239
- msgid "Combined"
5240
- msgstr "Spojené"
5241
-
5242
- #: wppa-photo-admin-autosave.php:1797
5243
- msgid "Word"
5244
- msgstr "Slovo"
5245
-
5246
- #: wppa-photo-admin-autosave.php:1800
5247
- msgid "Count"
5248
- msgstr "Počet"
5249
-
5250
- #: wppa-potd-widget.php:14
5251
- msgid "WPPA+ Photo Of The Day"
5252
- msgstr "WPPA+ Fotografie dne"
5253
-
5254
- #: wppa-potd-widget.php:15
5255
- msgid "Photo Of The Day"
5256
- msgstr "Fotografie dne"
5257
-
5258
- #: wppa-potd-widget.php:187
5259
- msgid ""
5260
- "You can set the content and the sizes in this widget in the <b>Photo Albums -"
5261
- "> Sidebar Widget</b> admin page."
5262
- msgstr ""
5263
- "Obsah a velikosti tohoto Widgetu můžete nastavit v administraci <b>Fotoalba -"
5264
- "> Sidebar Widget</b>."
5265
-
5266
- #: wppa-qr-widget.php:13
5267
- msgid "WPPA+ QR Widget"
5268
- msgstr "WPPA+ QR Widget"
5269
-
5270
- #: wppa-qr-widget.php:14 wppa-qr-widget.php:32
5271
- msgid "QR Widget"
5272
- msgstr "QR Widget"
5273
-
5274
- #: wppa-qr-widget.php:95
5275
- msgid ""
5276
- "You can set the sizes and colors in this widget in the <b>Photo Albums -> "
5277
- "Settings</b> admin page."
5278
- msgstr ""
5279
- "Barvy a velikosti tohoto Widgetu můžete nastavit v administraci <b>Fotoalba -"
5280
- "> Nastavení</b>."
5281
-
5282
- #: wppa-search-widget.php:13
5283
- msgid "WPPA+ Search Photos"
5284
- msgstr "WPPA+ Hledání fotografií"
5285
-
5286
- #: wppa-search-widget.php:14 wppa-search-widget.php:35
5287
- #: wppa-search-widget.php:65
5288
- msgid "Search Photos"
5289
- msgstr "Hledat fotografie"
5290
-
5291
- #: wppa-search-widget.php:79
5292
- msgid "Text:"
5293
- msgstr "Text:"
5294
-
5295
- #: wppa-search-widget.php:83
5296
- msgid ""
5297
- "Enter optional text that will appear before the input box. This may contain "
5298
- "HTML so you can change font size and color."
5299
- msgstr ""
5300
- "Vložte volitelný text, který se zobrazí před vstupním polem. Může obsahovat "
5301
- "HTML, takže můžete měnit velikost i barvu fontu."
5302
-
5303
- #: wppa-search-widget.php:87
5304
- msgid "Enable rootsearch"
5305
- msgstr "Povolit kořenové vyhledávání"
5306
-
5307
- #: wppa-search-widget.php:93
5308
- msgid "Enable subsearch"
5309
- msgstr "Povolit sub-vyhledávání"
5310
-
5311
- #: wppa-settings-autosave.php:118
5312
- msgid "Saved settings restored"
5313
- msgstr "Uložená nastavení obnovena"
5314
-
5315
- #: wppa-settings-autosave.php:121
5316
- msgid "Unable to restore saved settings"
5317
- msgstr "Je nemožné obnovit uložená nastavení"
5318
-
5319
- #: wppa-settings-autosave.php:127
5320
- msgid "Reset to default settings"
5321
- msgstr "Obnovit výchozí nastavení"
5322
-
5323
- #: wppa-settings-autosave.php:130
5324
- msgid "Unable to set defaults"
5325
- msgstr "Nelze nastavit výchozí hodnoty"
5326
-
5327
- #: wppa-settings-autosave.php:135
5328
- #, php-format
5329
- msgid "Skinfile %s loaded"
5330
- msgstr "Soubor skinu %s načten"
5331
-
5332
- #: wppa-settings-autosave.php:146 wppa-settings-autosave.php:168
5333
- #: wppa-settings-autosave.php:189
5334
- #, php-format
5335
- msgid "Upload error %s"
5336
- msgstr "Chyba nahrávání %s"
5337
-
5338
- #: wppa-settings-autosave.php:151
5339
- #, php-format
5340
- msgid "Uploaded file %s is not a .png file"
5341
- msgstr "Nahraný soubor %s není .png"
5342
-
5343
- #: wppa-settings-autosave.php:155 wppa-settings-autosave.php:176
5344
- #: wppa-settings-autosave.php:212
5345
- #, php-format
5346
- msgid "Upload of %s done"
5347
- msgstr "Nahrání %s hotovo"
5348
-
5349
- #: wppa-settings-autosave.php:160 wppa-settings-autosave.php:181
5350
- #: wppa-settings-autosave.php:217
5351
- msgid "No file selected or error on upload"
5352
- msgstr "Nebyl vybrán žádný soubor, nebo došlo k chybě nahrávání"
5353
-
5354
- #: wppa-settings-autosave.php:172
5355
- #, php-format
5356
- msgid "Uploaded file %s is not a .ttf file"
5357
- msgstr "Nahraný soubor %s není .ttf"
5358
-
5359
- #: wppa-settings-autosave.php:194
5360
- #, php-format
5361
- msgid "Uploaded file %s is not a valid image file"
5362
- msgstr "Nahraný soubor %s není platným obrázkem"
5363
-
5364
- #: wppa-settings-autosave.php:273
5365
- #, php-format
5366
- msgid ""
5367
- "%s invalid ratings removed. Please run Table VIII-A5: Rerate to fix the "
5368
- "averages."
5369
- msgstr ""
5370
- "Odstraněno %s neplatných hodnocení. Prosím spusťte Tabulka VIII-A5: "
5371
- "Přehodnotit pro obnovu průměrů.."
5372
-
5373
- #: wppa-settings-autosave.php:283
5374
- #, php-format
5375
- msgid "%s obsolete settings removed."
5376
- msgstr "Odstraněno %s zastaralých nastavení."
5377
-
5378
- #: wppa-settings-autosave.php:292
5379
- msgid "WP Photo Album Plus Settings"
5380
- msgstr "Nastavení WPPA+"
5381
-
5382
- #: wppa-settings-autosave.php:293
5383
- msgid "Database revision:"
5384
- msgstr "Revize databáze:"
5385
-
5386
- #: wppa-settings-autosave.php:293
5387
- msgid "WP Charset:"
5388
- msgstr "Znaková sada WP:"
5389
-
5390
- #: wppa-settings-autosave.php:296
5391
- msgid "Multisite in singlesite mode."
5392
- msgstr "Multisite v módu singlesite."
5393
-
5394
- #: wppa-settings-autosave.php:299
5395
- msgid "Multisite enabled."
5396
- msgstr "Povoleno Multisite"
5397
-
5398
- #: wppa-settings-autosave.php:301
5399
- msgid "Blogid ="
5400
- msgstr "BlogID ="
5401
-
5402
- #: wppa-settings-autosave.php:318
5403
- msgid "Please de-activate plugin <i style=\"font-size:14px;\">"
5404
- msgstr "Prosím deaktivujte plugin <i style=\"font-size:14px;\">"
5405
-
5406
- #: wppa-settings-autosave.php:318
5407
- msgid ". </i>This plugin will cause wppa+ to function not properly."
5408
- msgstr ". </i>Tento plugin bude příčino nesprávného chování WPPA+."
5409
-
5410
- #: wppa-settings-autosave.php:328
5411
- msgid "Please note that plugin <i style=\"font-size:14px;\">"
5412
- msgstr "Uvědomte si prosím, že plugin <i style=\"font-size:14px;\">"
5413
-
5414
- #: wppa-settings-autosave.php:328
5415
- msgid "</i> can cause wppa+ to function not properly if it is misconfigured."
5416
- msgstr ""
5417
- "</i> může být příčinou nesprávného fungování WPPA+, je-li nesprávně "
5418
- "nakonfigurování."
5419
-
5420
- #: wppa-settings-autosave.php:333 wppa-upload.php:93
5421
- msgid ""
5422
- "There is a serious misconfiguration in your servers PHP config. Function "
5423
- "imagecreatefromjpeg() does not exist. You will encounter problems when "
5424
- "uploading photos and not be able to generate thumbnail images. Ask your "
5425
- "hosting provider to add GD support with a minimal version 1.8."
5426
- msgstr ""
5427
- "V PHP konfiguraci vašeho serveru je vážná chyba. Neexistuje funkce "
5428
- "imagecreatefromjpeg(). Počítejte s potížemi při nahrávání fotografií a "
5429
- "nebudete schopni vygenerovat miniatury. Požádejte vašeho poskytovatele "
5430
- "hostingu o přidání podpory GD minimálně verze 1.8."
5431
-
5432
- #: wppa-settings-autosave.php:338
5433
- msgid "Rebuilding the Album index needs completion. See Table VIII"
5434
- msgstr "Je nutné provést Obnovu indexů Alb. Viz tabulka VIII "
5435
-
5436
- #: wppa-settings-autosave.php:339
5437
- msgid "Rebuilding the Photo index needs completion. See Table VIII"
5438
- msgstr "Je nutné provést Obnovu indexů fotografií. Viz tabulka VIII"
5439
-
5440
- #: wppa-settings-autosave.php:341
5441
- msgid "Remove empty albums needs completion. See Table VIII"
5442
- msgstr "Je nutné provést Odstranění prázdných Alb. Viz tabulka VIII"
5443
-
5444
- #: wppa-settings-autosave.php:342
5445
- msgid "Applying new photo description needs completion. See Table VIII"
5446
- msgstr "Použití nového popisu fotografií vyžaduje dokončení. Viz tabulka VIII"
5447
-
5448
- #: wppa-settings-autosave.php:343
5449
- msgid "Appending to photo description needs completion. See Table VIII"
5450
- msgstr "Přidání popisu fotografií vyžaduje dokončení. Viz tabulka VIII"
5451
-
5452
- #: wppa-settings-autosave.php:344
5453
- msgid "Removing from photo description needs completion. See Table VIII"
5454
- msgstr "Odebrání popisů fotografií vyžaduje dokončení. Viz tabulka VIII"
5455
-
5456
- #: wppa-settings-autosave.php:345
5457
- msgid "Removing file extensions needs completion. See Table VIII"
5458
- msgstr "Odebrání přípon souborů vyžaduje dokončení. Viz tabulka VIII"
5459
-
5460
- #: wppa-settings-autosave.php:346
5461
- msgid "Regenerating the Thumbnails needs completion. See Table VIII"
5462
- msgstr "Je nutné provést obnovu miniatur. Viz tabulka VIII"
5463
-
5464
- #: wppa-settings-autosave.php:347
5465
- msgid "Rerating needs completion. See Table VIII"
5466
- msgstr "Je nutné provést obnovu hodnocení. Viz tabulka VIII"
5467
-
5468
- #: wppa-settings-autosave.php:355
5469
- msgid ""
5470
- "A thumbframe width or height should not be smaller than a thumbnail size. "
5471
- "Please correct the corresponding setting(s) in Table I-C"
5472
- msgstr ""
5473
- "Šířka nebo výška rámečku náhledu by neměla být menší než velikost miniatury. "
5474
- "Opravte prosím odpovídající nastavení v Tabulce I-C"
5475
-
5476
- #: wppa-settings-autosave.php:360
5477
- msgid "Show legenda"
5478
- msgstr "Zobrazit legendu"
5479
-
5480
- #: wppa-settings-autosave.php:362
5481
- msgid "Legenda:"
5482
- msgstr "Legenda:"
5483
-
5484
- #: wppa-settings-autosave.php:363 wppa-settings-autosave.php:365
5485
- #: wppa-settings-autosave.php:1887 wppa-settings-autosave.php:5184
5486
- msgid "Button"
5487
- msgstr "Tlačítko"
5488
-
5489
- #: wppa-settings-autosave.php:363
5490
- msgid "action that causes page reload."
5491
- msgstr "akce, která způsobí znovunačtení stránky."
5492
-
5493
- #: wppa-settings-autosave.php:365 wppa-settings-autosave.php:9000
5494
- #: wppa-settings-autosave.php:9019
5495
- msgid "Are you sure?"
5496
- msgstr "Jste si jisti?"
5497
-
5498
- #: wppa-settings-autosave.php:366
5499
- msgid "action that does not cause page reload."
5500
- msgstr "akce, která nezpůsobí znovunačtení stránky."
5501
-
5502
- #: wppa-settings-autosave.php:368 wppa-settings-autosave.php:7521
5503
- #: wppa-settings-autosave.php:7523 wppa-settings-autosave.php:8703
5504
- #: wppa-settings-autosave.php:8719 wppa-settings-autosave.php:8747
5505
- #: wppa-settings-autosave.php:8771 wppa-settings-autosave.php:8801
5506
- #: wppa-settings-autosave.php:8828 wppa-settings-autosave.php:8854
5507
- #: wppa-settings-autosave.php:8870 wppa-settings-autosave.php:8923
5508
- #: wppa-settings-autosave.php:8953
5509
- msgid "Setting unmodified"
5510
- msgstr "Nastavení nezměněno"
5511
-
5512
- #: wppa-settings-autosave.php:370
5513
- msgid "Update in progress"
5514
- msgstr "Aktualizace probíhá"
5515
-
5516
- #: wppa-settings-autosave.php:372
5517
- msgid "Setting updated"
5518
- msgstr "Nastavení aktualizováno"
5519
-
5520
- #: wppa-settings-autosave.php:374
5521
- msgid "Update failed"
5522
- msgstr "Aktualizace selhala"
5523
-
5524
- #: wppa-settings-autosave.php:376
5525
- msgid "Hide this"
5526
- msgstr "Skrýt toto"
5527
-
5528
- #: wppa-settings-autosave.php:382
5529
- msgid "System"
5530
- msgstr "Systém"
5531
-
5532
- #: wppa-settings-autosave.php:383
5533
- msgid "Access"
5534
- msgstr "Přístup"
5535
-
5536
- #: wppa-settings-autosave.php:387
5537
- msgid "Counts"
5538
- msgstr "Počty"
5539
-
5540
- #: wppa-settings-autosave.php:388
5541
- msgid "Covers"
5542
- msgstr "Obaly"
5543
-
5544
- #: wppa-settings-autosave.php:389
5545
- msgid "Layout"
5546
- msgstr "Rozložení"
5547
-
5548
- #: wppa-settings-autosave.php:390 wppa-settings-autosave.php:4413
5549
- msgid "Lightbox"
5550
- msgstr "Lightbox"
5551
-
5552
- #: wppa-settings-autosave.php:391
5553
- msgid "Links"
5554
- msgstr "Odkazy"
5555
-
5556
- #: wppa-settings-autosave.php:392
5557
- msgid "Metadata"
5558
- msgstr "Metadata"
5559
-
5560
- #: wppa-settings-autosave.php:393
5561
- msgid "Navigation"
5562
- msgstr "Navigace"
5563
-
5564
- #: wppa-settings-autosave.php:394 wppa-settings-autosave.php:1461
5565
- #: wppa-settings-autosave.php:7868
5566
- msgid "Page"
5567
- msgstr "Stránka"
5568
-
5569
- #: wppa-settings-autosave.php:395 wppa-settings-autosave.php:7664
5570
- #: wppa-settings-autosave.php:7709
5571
- msgid "Rating"
5572
- msgstr "Hodnocení"
5573
-
5574
- #: wppa-settings-autosave.php:397
5575
- msgid "Sizes"
5576
- msgstr "Velikosti"
5577
-
5578
- #: wppa-settings-autosave.php:398
5579
- msgid "Slideshows"
5580
- msgstr "Prezentace"
5581
-
5582
- #: wppa-settings-autosave.php:399
5583
- msgid "Social Media"
5584
- msgstr "Sociální sítě"
5585
-
5586
- #: wppa-settings-autosave.php:401
5587
- msgid "Uploads"
5588
- msgstr "Nahrávky"
5589
-
5590
- #: wppa-settings-autosave.php:402
5591
- msgid "Widgets"
5592
- msgstr "Widgety"
5593
-
5594
- #: wppa-settings-autosave.php:403 wppa-settings-autosave.php:7502
5595
- msgid "Watermark"
5596
- msgstr "Vodoznak"
5597
-
5598
- #: wppa-settings-autosave.php:411
5599
- msgid "Click on the banner of a (sub)table to open/close it, or"
5600
- msgstr "Tabulku otevřete/zavřete kliknutím na záhlaví (sub)tabulky."
5601
-
5602
- #: wppa-settings-autosave.php:413
5603
- msgid "Show settings related to:"
5604
- msgstr "Zobrazit nastavení týkající se:"
5605
-
5606
- #: wppa-settings-autosave.php:419
5607
- msgid "and ( optionally ) to:"
5608
- msgstr "a (volitelně) na:"
5609
-
5610
- #: wppa-settings-autosave.php:433
5611
- msgid "Quick setup"
5612
- msgstr "Rychlé nastavení"
5613
-
5614
- #: wppa-settings-autosave.php:435
5615
- msgid "Do a quick initial setup"
5616
- msgstr "Provést rychlé počáteční nastavení"
5617
-
5618
- #: wppa-settings-autosave.php:436
5619
- msgid "Close quick setup"
5620
- msgstr "Zavřít Rychlé nastavení"
5621
-
5622
- #: wppa-settings-autosave.php:443
5623
- msgid "Table O:"
5624
- msgstr "Tabulka O:"
5625
-
5626
- #: wppa-settings-autosave.php:443
5627
- msgid "Quick Setup:"
5628
- msgstr "Rychlé nastavení:"
5629
-
5630
- #: wppa-settings-autosave.php:444
5631
- msgid "This table enables you to quickly do an inital setup."
5632
- msgstr "Tato tabulka umožňuje rychle provést počáteční nastavení."
5633
-
5634
- #: wppa-settings-autosave.php:454 wppa-settings-autosave.php:616
5635
- #: wppa-settings-autosave.php:638 wppa-settings-autosave.php:1338
5636
- #: wppa-settings-autosave.php:1359 wppa-settings-autosave.php:2733
5637
- #: wppa-settings-autosave.php:3089 wppa-settings-autosave.php:4240
5638
- #: wppa-settings-autosave.php:5996 wppa-settings-autosave.php:6622
5639
- #: wppa-settings-autosave.php:8294
5640
- msgid "Setting"
5641
- msgstr "Nastavení"
5642
-
5643
- #: wppa-settings-autosave.php:455 wppa-settings-autosave.php:617
5644
- #: wppa-settings-autosave.php:639 wppa-settings-autosave.php:1339
5645
- #: wppa-settings-autosave.php:1360 wppa-settings-autosave.php:2734
5646
- #: wppa-settings-autosave.php:2758 wppa-settings-autosave.php:3069
5647
- #: wppa-settings-autosave.php:3090 wppa-settings-autosave.php:4241
5648
- #: wppa-settings-autosave.php:4265 wppa-settings-autosave.php:4441
5649
- #: wppa-settings-autosave.php:4465 wppa-settings-autosave.php:5492
5650
- #: wppa-settings-autosave.php:5998 wppa-settings-autosave.php:6022
5651
- #: wppa-settings-autosave.php:6602 wppa-settings-autosave.php:6623
5652
- #: wppa-settings-autosave.php:8295 wppa-settings-autosave.php:8317
5653
- #: wppa-settings-autosave.php:8357 wppa-settings-autosave.php:8379
5654
- #: wppa-settings-autosave.php:8425
5655
- msgid "Help"
5656
- msgstr "Nápověda"
5657
-
5658
- #: wppa-settings-autosave.php:466
5659
- msgid ""
5660
- "To quickly setup WPPA+ please answer the following questions. You can alway "
5661
- "change any setting later. <span style=\"color:#700\">Click on me!</span>"
5662
- msgstr ""
5663
- "Chcete-li rychle nastavit WPPA+, prosím odpovězte na následující otázky. "
5664
- "Jakékoli nastavení můžete změnit později. <span style=\"color:"
5665
- "#700\">Klikněte na mě!</span>"
5666
-
5667
- #: wppa-settings-autosave.php:468
5668
- msgid "Is your theme <i>responsive</i>?"
5669
- msgstr "Je vaše téma <i>responzivní</i>?"
5670
-
5671
- #: wppa-settings-autosave.php:469
5672
- msgid ""
5673
- "Responsive themes have a layout that varies with the size of the browser "
5674
- "window."
5675
- msgstr ""
5676
- "Responzivní témata mají rozložení, které se mění s velikostí okna prohlížeče."
5677
-
5678
- #: wppa-settings-autosave.php:470
5679
- msgid ""
5680
- "WPPA+ needs to know this to automaticly adept the width of the display to "
5681
- "the available width on the page."
5682
- msgstr ""
5683
- "Pro WPPA+ je nutné tohle znát, aby automaticky adaptoval šířku zobrazení na "
5684
- "dostupné rozměry stránky."
5685
-
5686
- #: wppa-settings-autosave.php:477
5687
- msgid "Do you want to downsize photos during upload?"
5688
- msgstr "Chcete fotografie zmenšit během nahrávání?"
5689
-
5690
- #: wppa-settings-autosave.php:478
5691
- msgid ""
5692
- "Downsizing photos make them load faster to the visitor, without loosing "
5693
- "display quality"
5694
- msgstr ""
5695
- "Zmenšení fotek zrychlí jejich načítání při prohlížení aniž by se snížila "
5696
- "kvalita zobrazení"
5697
-
5698
- #: wppa-settings-autosave.php:479
5699
- msgid ""
5700
- "If you answer yes, the photos will be downsized to max 1024 x 768 pixels. "
5701
- "You can change this later, if you like"
5702
- msgstr ""
5703
- "Odpovíte-li Ano, budou fotky automaticky zmenšeny na max 1024 x 768 pixelů. "
5704
- "Pokud budete mít zájem, můžete toto nastavení později změnit."
5705
-
5706
- #: wppa-settings-autosave.php:486
5707
- msgid "Do you want to save the original photofiles?"
5708
- msgstr "Chcete ukládat originální soubory fotografií?"
5709
-
5710
- #: wppa-settings-autosave.php:487
5711
- msgid "This will require considerable disk space on the server."
5712
- msgstr "Toto bude vyžadovat značný úložný prostor na serveru."
5713
-
5714
- #: wppa-settings-autosave.php:488
5715
- msgid ""
5716
- "If you answer yes, you will be able to remove watermarks you applied with "
5717
- "wppa+ in a later stage, redo downsizing to a larger size afterwards, and "
5718
- "supply fullsize images for download."
5719
- msgstr ""
5720
- "Pokud odpovíte Ano, bude později možné odstranit vodoznaky, které jste "
5721
- "aplikovali pomocí WPPA+, vrátit zmenšení fotek a dát je k dispozici ke "
5722
- "stažení v plné velikosti."
5723
-
5724
- #: wppa-settings-autosave.php:495
5725
- msgid "May visitors upload photos?"
5726
- msgstr "Mohou návštěvníci nahrávat fotky?"
5727
-
5728
- #: wppa-settings-autosave.php:496
5729
- msgid ""
5730
- "It is safe to do so, but i will have to do some settings to keep it safe!"
5731
- msgstr ""
5732
- "Zatím je to bezpečné, ale budu muset změnit nějaké nastavení, abych to "
5733
- "zabezpečil i nadále!"
5734
-
5735
- #: wppa-settings-autosave.php:497
5736
- msgid ""
5737
- "If you answer yes, i will assume you want to enable logged in users to "
5738
- "upload photos at the front-end of the website and allow them to edit their "
5739
- "photos name and descriptions."
5740
- msgstr ""
5741
- "Pokud odpovíte Ano, bude předpokládat, že přihlášení uživatelé budou moci "
5742
- "nahrávat fotografie přímo z front-end webových stránek a budou moci "
5743
- "upravovat jejich názvy a popisy."
5744
-
5745
- #: wppa-settings-autosave.php:498
5746
- msgid ""
5747
- "The photos will be hold for moderation, the admin will get notified by email."
5748
- msgstr ""
5749
- "Fotografie budou podléhat moderování, administrátor bude upozorňován pomocí "
5750
- "e-mailu."
5751
-
5752
- #: wppa-settings-autosave.php:499
5753
- msgid ""
5754
- "Each user will get his own album to upload to. These settings can be changed "
5755
- "later."
5756
- msgstr ""
5757
- "Každý uživatel bude mít své vlastní album kam může nahrávat fotografie. Tato "
5758
- "nastavení lze později změnit."
5759
-
5760
- #: wppa-settings-autosave.php:506
5761
- msgid "Do you want the rating system active?"
5762
- msgstr "Chcete aktivovat systém hodnocení?"
5763
-
5764
- #: wppa-settings-autosave.php:507
5765
- msgid "Enable the rating system and show the votes in the slideshow."
5766
- msgstr "Povolí systém hodnocení a zobrazí hlasy v prezentaci."
5767
-
5768
- #: wppa-settings-autosave.php:508
5769
- msgid "You can configure the details of the rating system later"
5770
- msgstr "Podrobnosti systému hodnocení můžete konfigurovat později"
5771
-
5772
- #: wppa-settings-autosave.php:515
5773
- msgid "Do you want the comment system active?"
5774
- msgstr "Chcete aktivovat systém komentářů?"
5775
-
5776
- #: wppa-settings-autosave.php:516
5777
- msgid "Enable the comment system and show the comments in the slideshow."
5778
- msgstr "Povolí systém komentářů a zobrazí komentáře v prezentaci."
5779
-
5780
- #: wppa-settings-autosave.php:517
5781
- msgid "You can configure the details of the comment system later"
5782
- msgstr "Podrobnosti systému komentářů můžete konfigurovat později"
5783
-
5784
- #: wppa-settings-autosave.php:524
5785
- msgid "Do you want the social media share buttons displayed?"
5786
- msgstr "Chcete zobrazit tlačítka sdílení v sociálních sítích?"
5787
-
5788
- #: wppa-settings-autosave.php:525
5789
- msgid "Display the social media buttons in the slideshow"
5790
- msgstr "Zobrazí tlačítka sociálních médií v prezentaci"
5791
-
5792
- #: wppa-settings-autosave.php:526
5793
- msgid ""
5794
- "These buttons share the specific photo rather than the page where it is "
5795
- "displayed on"
5796
- msgstr ""
5797
- "Tato tlačítka umožní sdílet konkrétní fotku, nikoli stránku, na které je "
5798
- "zobrazena"
5799
-
5800
- #: wppa-settings-autosave.php:533
5801
- msgid "Are you going to use IPTC data?"
5802
- msgstr "Budete používat IPTC data?"
5803
-
5804
- #: wppa-settings-autosave.php:534
5805
- msgid ""
5806
- "IPTC data is information you may have added in a photo manipulation program."
5807
- msgstr ""
5808
- "IPTC data obsahují informace, které přidávají programy zpracovávající "
5809
- "fotografie."
5810
-
5811
- #: wppa-settings-autosave.php:535 wppa-settings-autosave.php:544
5812
- msgid ""
5813
- "The information can be displayed in slideshows and in photo descriptions."
5814
- msgstr "Tyto informace lze zobrazit v prezentacích a v popisech fotografií."
5815
-
5816
- #: wppa-settings-autosave.php:542
5817
- msgid "Are you going to use EXIF data?"
5818
- msgstr "Budete používat EXIF data?"
5819
-
5820
- #: wppa-settings-autosave.php:543
5821
- msgid ""
5822
- "EXIF data is information from the camera like model no, focal distance and "
5823
- "aperture used."
5824
- msgstr ""
5825
- "EXIF data obsahují informace z kamery jako např. číslo modelu, ohnisková "
5826
- "vzdálenost a použitá clona."
5827
-
5828
- #: wppa-settings-autosave.php:551
5829
- msgid "Are you going to use GPX data?"
5830
- msgstr "Budete používat GPS data?"
5831
-
5832
- #: wppa-settings-autosave.php:552
5833
- msgid ""
5834
- "Some cameras and mobile devices save the geographic location where the photo "
5835
- "is taken."
5836
- msgstr ""
5837
- "Některé fotoaparáty a mobilní zařízení ukládají geografickou polohu, kde "
5838
- "byla fotka pořízena."
5839
-
5840
- #: wppa-settings-autosave.php:553
5841
- msgid "A Google map can be displayed in slideshows."
5842
- msgstr "V prezentacích mohou být zobrazeny Google mapy."
5843
-
5844
- #: wppa-settings-autosave.php:560
5845
- msgid "Are you going to use Fotomoto?"
5846
- msgstr "Budete používat Fotomoto?"
5847
-
5848
- #: wppa-settings-autosave.php:561
5849
- msgid ""
5850
- "<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> is an "
5851
- "on-line print service."
5852
- msgstr ""
5853
- "<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> je on-"
5854
- "line tisková služba."
5855
-
5856
- #: wppa-settings-autosave.php:562
5857
- msgid "If you answer Yes, you will have to open an account on Fotomoto."
5858
- msgstr "Pokud odpovíte Ano, budete si muset na Fotomoto zřídit účet."
5859
-
5860
- #: wppa-settings-autosave.php:569
5861
- msgid "Are you going to add videofiles?"
5862
- msgstr "Budete vkládat videosoubory?"
5863
-
5864
- #: wppa-settings-autosave.php:570
5865
- msgid "You can mix videos and photos in any album."
5866
- msgstr "Do všech alb můžete vkládat jak fotografie, tak videa."
5867
-
5868
- #: wppa-settings-autosave.php:571 wppa-settings-autosave.php:580
5869
- #: wppa-settings-autosave.php:589
5870
- msgid "You can configure the details later"
5871
- msgstr "Podrobnosti můžete nakonfigurovat později"
5872
-
5873
- #: wppa-settings-autosave.php:578
5874
- msgid "Are you going to add audiofiles?"
5875
- msgstr "Budete vkládat audiosoubory?"
5876
-
5877
- #: wppa-settings-autosave.php:579
5878
- msgid "You can add audio to photos in any album."
5879
- msgstr "Do kteréhokoli alba můžete vložit audio."
5880
-
5881
- #: wppa-settings-autosave.php:587
5882
- msgid "Are you going to upload 3D stereo photos?"
5883
- msgstr "Budete nahrávat 3D stereo fotografie?"
5884
-
5885
- #: wppa-settings-autosave.php:588
5886
- msgid "You can add l-r and r-l stereo photo pairs."
5887
- msgstr "Můžete přidat L-P a P-L páry stereo fotografií."
5888
-
5889
- #: wppa-settings-autosave.php:596
5890
- msgid "Done?"
5891
- msgstr "Hotovo?"
5892
-
5893
- #: wppa-settings-autosave.php:597
5894
- msgid "If you are ready answering these questions, select <b>yes</b>"
5895
- msgstr ""
5896
- "Pokud jste odpověděli na všechny tyto otázky, vyberte možnost <b>Ano</b>"
5897
-
5898
- #: wppa-settings-autosave.php:598
5899
- msgid ""
5900
- "You can change any setting later, and be more specific and add a lot of "
5901
- "settings. For now it is enough, go create albums and upload photos!"
5902
- msgstr ""
5903
- "Jakékoli nastavení lze změnit později, více konkretizovat a doplnit mnohá "
5904
- "nastavení. Prozatím to ale stačí, začněte vytvářet alba a nahrávat fotky!"
5905
-
5906
- #: wppa-settings-autosave.php:602
5907
- msgid ""
5908
- "Thank you!. The most important settings are done now. You can refine your "
5909
- "settings, the behaviour and appearance of WPPA+ in the Tables below."
5910
- msgstr ""
5911
- "Děkuji! Nejdůležitější nastavení jsou hotova. V níže uvedených tabulkách "
5912
- "můžete upřesnit nastavení, chování i vzhled WPPA+."
5913
-
5914
- #: wppa-settings-autosave.php:627
5915
- msgid "Table I:"
5916
- msgstr "Tabulka I:"
5917
-
5918
- #: wppa-settings-autosave.php:627
5919
- msgid "Sizes:"
5920
- msgstr "Velikosti:"
5921
-
5922
- #: wppa-settings-autosave.php:628
5923
- msgid ""
5924
- "This table describes all the sizes and size options (except fontsizes) for "
5925
- "the generation and display of the WPPA+ elements."
5926
- msgstr ""
5927
- "Tato tabulka popisuje všechny velikosti a možnosti velikostí (kromě fontů) "
5928
- "pro generování a zobrazení prvků WPPA+."
5929
-
5930
- #: wppa-settings-autosave.php:646
5931
- msgid "WPPA+ global system related size settings"
5932
- msgstr "Nastavení velikostí WPPA+ související s globálním systémem"
5933
-
5934
- #: wppa-settings-autosave.php:648
5935
- msgid "Column Width"
5936
- msgstr "Šířka sloupce"
5937
-
5938
- #: wppa-settings-autosave.php:649
5939
- msgid "The width of the main column in your theme's display area."
5940
- msgstr "Šířka zobrazovací oblasti hlavního sloupce vaší WP šablony."
5941
-
5942
- #: wppa-settings-autosave.php:650
5943
- msgid "Enter the width of the main column in your theme's display area."
5944
- msgstr "Zadejte šířku zobrazovací oblasti hlavního sloupce vašeho WP motivu."
5945
-
5946
- #: wppa-settings-autosave.php:651
5947
- msgid ""
5948
- "You should set this value correctly to make sure the fullsize images are "
5949
- "properly aligned horizontally."
5950
- msgstr ""
5951
- "Tuto hodnotu byste měli nastavit správně, abyste měli jistotu, že "
5952
- "fotografie v plné velikosti budou správně horizontálně zarovnány."
5953
-
5954
- #: wppa-settings-autosave.php:652
5955
- msgid ""
5956
- "You may enter 'auto' for use in themes that have a floating content column."
5957
- msgstr "U šablon, která mají plovoucí sloupec obsahu, můžete vložit 'auto'."
5958
-
5959
- #: wppa-settings-autosave.php:653
5960
- msgid "The use of 'auto' is required for responsive themes."
5961
- msgstr "Responzivní šablony vyžadují nastavení 'auto'."
5962
-
5963
- #: wppa-settings-autosave.php:656 wppa-settings-autosave.php:665
5964
- #: wppa-settings-autosave.php:777 wppa-settings-autosave.php:920
5965
- #: wppa-settings-autosave.php:931
5966
- msgid "pixels wide"
5967
- msgstr "px (šířka)"
5968
-
5969
- #: wppa-settings-autosave.php:661
5970
- msgid "Initial Width"
5971
- msgstr "Počáteční šířka"
5972
-
5973
- #: wppa-settings-autosave.php:662
5974
- msgid "The most often displayed colun width in responsive theme"
5975
- msgstr "Nejčastěji zobrazovaná šířka sloupce u responzivní šablony"
5976
-
5977
- #: wppa-settings-autosave.php:663
5978
- msgid ""
5979
- "Change this value only if your responsive theme shows initially a wrong "
5980
- "column width."
5981
- msgstr ""
5982
- "Tuto hodnotu měňte pouze v případě, že vaše responzivní šablona zobrazuje od "
5983
- "začátku špatnou šířku sloupce."
5984
-
5985
- #: wppa-settings-autosave.php:670
5986
- msgid "Resize on Upload"
5987
- msgstr "Změnit velikost při nahrávání"
5988
-
5989
- #: wppa-settings-autosave.php:671
5990
- msgid "Indicate if the photos should be resized during upload."
5991
- msgstr "Určuje, zda bude v průběhu nahrávání měněna velikost fotografií."
5992
-
5993
- #: wppa-settings-autosave.php:672
5994
- msgid ""
5995
- "If you check this item, the size of the photos will be reduced to the "
5996
- "dimension specified in the next item during the upload/import process."
5997
- msgstr ""
5998
- "Pokud tuto položku zaškrtnete, budou fotografie během nahrávání/importu "
5999
- "zmenšeny na rozměry, zadané v další položce."
6000
-
6001
- #: wppa-settings-autosave.php:673
6002
- msgid "The photos will never be stretched during upload if they are smaller."
6003
- msgstr "Pokud jsou fotografie menší, nebudou nikdy během nahrávání roztaženy."
6004
-
6005
- #: wppa-settings-autosave.php:681
6006
- msgid "Resize to"
6007
- msgstr "Změnit velikost na"
6008
-
6009
- #: wppa-settings-autosave.php:682
6010
- msgid "Resize photos to fit within a given area."
6011
- msgstr "Změnit velikost fotografií, aby se vešly do dané oblasti."
6012
-
6013
- #: wppa-settings-autosave.php:683
6014
- msgid "Specify the screensize for the unscaled photos."
6015
- msgstr "Určuje velikost zobrazení pro fotografie bez měřítka."
6016
-
6017
- #: wppa-settings-autosave.php:684
6018
- msgid ""
6019
- "The use of a non-default value is particularly usefull when you make use of "
6020
- "lightbox functionality."
6021
- msgstr ""
6022
- "Použití jiných, než výchozích hodnot, je obzvláště užitečné, pokud budete "
6023
- "využívat funkcionality Lightboxu."
6024
-
6025
- #: wppa-settings-autosave.php:686 wppa-settings-autosave.php:708
6026
- #: wppa-settings-autosave.php:719 wppa-settings-autosave.php:728
6027
- #: wppa-settings-autosave.php:809 wppa-settings-autosave.php:832
6028
- #: wppa-settings-autosave.php:839 wppa-settings-autosave.php:860
6029
- #: wppa-settings-autosave.php:870 wppa-settings-autosave.php:964
6030
- #: wppa-settings-autosave.php:998 wppa-settings-autosave.php:1018
6031
- #: wppa-settings-autosave.php:1027 wppa-settings-autosave.php:1038
6032
- #: wppa-settings-autosave.php:1050 wppa-settings-autosave.php:1060
6033
- #: wppa-settings-autosave.php:1070 wppa-settings-autosave.php:1123
6034
- #: wppa-settings-autosave.php:1132 wppa-settings-autosave.php:1143
6035
- #: wppa-settings-autosave.php:1163 wppa-settings-autosave.php:1183
6036
- #: wppa-settings-autosave.php:1203 wppa-settings-autosave.php:1223
6037
- #: wppa-settings-autosave.php:1243 wppa-settings-autosave.php:1263
6038
- #: wppa-settings-autosave.php:1272 wppa-settings-autosave.php:1281
6039
- #: wppa-settings-autosave.php:1316 wppa-settings-autosave.php:1325
6040
- #: wppa-settings-autosave.php:2677 wppa-settings-autosave.php:4286
6041
- #: wppa-settings-autosave.php:4303 wppa-settings-autosave.php:4320
6042
- #: wppa-settings-autosave.php:4337 wppa-settings-autosave.php:4354
6043
- #: wppa-settings-autosave.php:4371 wppa-settings-autosave.php:4388
6044
- #: wppa-settings-autosave.php:4405 wppa-settings-autosave.php:4422
6045
- #: wppa-settings-autosave.php:5709 wppa-settings-autosave.php:8026
6046
- #: wppa-settings-autosave.php:8221 wppa-settings-autosave.php:8263
6047
- #: wppa-settings-autosave.php:8281
6048
- msgid "pixels"
6049
- msgstr "px"
6050
-
6051
- #: wppa-settings-autosave.php:687
6052
- msgid "Fit within rectangle as set in Table I-B1,2"
6053
- msgstr "Umístit do obdélníku, jak je určeno v Tabulce I-B1,2"
6054
-
6055
- #: wppa-settings-autosave.php:694
6056
- msgid "Photocount threshold"
6057
- msgstr "Limit fotografií"
6058
-
6059
- #: wppa-settings-autosave.php:695
6060
- msgid "Number of photos in an album must exceed."
6061
- msgstr "Počet fotografií, který musí album přesáhnout pro zobrazení."
6062
-
6063
- #: wppa-settings-autosave.php:696
6064
- msgid ""
6065
- "Photos do not show up in the album unless there are more than this number of "
6066
- "photos in the album. This allows you to have cover photos on an album that "
6067
- "contains only sub albums without seeing them in the list of sub albums. "
6068
- "Usually set to 0 (always show) or 1 (for one cover photo)."
6069
- msgstr ""
6070
- "Fotografie se v albu nezobrazí, dokud nedosáhnou počtu nastaveného v této "
6071
- "položce. To vám umožní mít titulní fotografie pro album, které obsahuje "
6072
- "pouze sub-alba, aniž by tato fotografie byla vidět v seznamu sub-alb. "
6073
- "Obvyklé hodnoty jsou 0 (vždy zobrazit) nebo 1 (pro jednu titulní fotografii)."
6074
-
6075
- #: wppa-settings-autosave.php:703
6076
- msgid "Border thickness"
6077
- msgstr "Tloušťka ohraničení"
6078
-
6079
- #: wppa-settings-autosave.php:704
6080
- msgid "Thickness of wppa+ box borders."
6081
- msgstr "Tloušťka ohraničení WPPA+ boxu."
6082
-
6083
- #: wppa-settings-autosave.php:705
6084
- msgid ""
6085
- "Enter the thickness for the border of the WPPA+ boxes. A number of 0 means: "
6086
- "no border."
6087
- msgstr ""
6088
- "Zadejte tloušťku ohraničení jednotlivých WPPA+ boxů. Hodnota 0 znamená: bez "
6089
- "ohraničení."
6090
-
6091
- #: wppa-settings-autosave.php:706 wppa-settings-autosave.php:716
6092
- msgid "WPPA+ boxes are: the navigation bars and the filmstrip."
6093
- msgstr "WPPA+ boxy jsou: navigační lišty a filmový pás."
6094
-
6095
- #: wppa-settings-autosave.php:714
6096
- msgid "Radius of wppa+ box borders."
6097
- msgstr "Poloměr ohraničení WPPA+ boxu."
6098
-
6099
- #: wppa-settings-autosave.php:715
6100
- msgid ""
6101
- "Enter the corner radius for the border of the WPPA+ boxes. A number of 0 "
6102
- "means: no rounded corners."
6103
- msgstr ""
6104
- "Zadejte poloměr rohu ohraničení WPPA+ boxů. Hodnota 0 znamená: ostré rohy."
6105
-
6106
- #: wppa-settings-autosave.php:717
6107
- msgid "Note that rounded corners are only supported by modern browsers."
6108
- msgstr ""
6109
- "Mějte na paměti, že zaoblené rohy jsou podporovány pouze moderními "
6110
- "prohlížeči."
6111
-
6112
- #: wppa-settings-autosave.php:725
6113
- msgid "Distance between wppa+ boxes."
6114
- msgstr "Odstup mezi WPPA+ boxy."
6115
-
6116
- #: wppa-settings-autosave.php:733
6117
- msgid "Related count"
6118
- msgstr "Související počet"
6119
-
6120
- #: wppa-settings-autosave.php:734
6121
- msgid "The default maximum number of related photos to find."
6122
- msgstr "Výchozí maximální počet vyhledaných souvisejících fotografií."
6123
-
6124
- #: wppa-settings-autosave.php:735
6125
- msgid ""
6126
- "When using shortcodes like [wppa type=\"album\" album=\"#related,desc,23\"][/"
6127
- "wppa], the maximum number is 23. Omitting the number gives the maximum of "
6128
- "this setting."
6129
- msgstr ""
6130
- "Pokud použijete krátké kódy, jako např. [wppa type=\"album\" album="
6131
- "\"#related,desc,23\"][/wppa], bude maximální počet 23. Pokud hodnotu "
6132
- "vynecháte, bude použita jako maximum hodnota z tohoto nastavení."
6133
-
6134
- #: wppa-settings-autosave.php:743
6135
- msgid "The maximum number of pagelinks to be displayed."
6136
- msgstr "Maximální počet odkazů na stránky, které budou zobrazeny."
6137
-
6138
- #: wppa-settings-autosave.php:746
6139
- msgid "pages"
6140
- msgstr "stránek"
6141
-
6142
- #: wppa-settings-autosave.php:751
6143
- msgid "Max file name length"
6144
- msgstr "Maximální délka názvu souboru"
6145
-
6146
- #: wppa-settings-autosave.php:752
6147
- msgid "The max length of a photo file name excluding the extension."
6148
- msgstr "Maximální délka názvu souboru fotografie (bez přípony)."
6149
-
6150
- #: wppa-settings-autosave.php:753 wppa-settings-autosave.php:762
6151
- msgid "A setting of 0 means: unlimited."
6152
- msgstr "Hodnota 0 znamená: neomezená."
6153
-
6154
- #: wppa-settings-autosave.php:755 wppa-settings-autosave.php:764
6155
- msgid "chars"
6156
- msgstr "znak(ů)"
6157
-
6158
- #: wppa-settings-autosave.php:760
6159
- msgid "Max photo name length"
6160
- msgstr "Maximální délka názvu fotografie"
6161
-
6162
- #: wppa-settings-autosave.php:761
6163
- msgid "The max length of a photo name."
6164
- msgstr "Maximální délka názvu fotografie."
6165
-
6166
- #: wppa-settings-autosave.php:769
6167
- msgid "Slideshow related size settings"
6168
- msgstr "Nastavení velikostí související s prezentací"
6169
-
6170
- #: wppa-settings-autosave.php:771
6171
- msgid "Maximum Width"
6172
- msgstr "Maximální šířka"
6173
-
6174
- #: wppa-settings-autosave.php:772
6175
- msgid "The maximum width photos will be displayed in slideshows."
6176
- msgstr "Maximální šířka fotografií, ve které budou zobrazeny v prezentaci."
6177
-
6178
- #: wppa-settings-autosave.php:773 wppa-settings-autosave.php:784
6179
- msgid ""
6180
- "Enter the largest size in pixels as how you want your photos to be displayed."
6181
- msgstr ""
6182
- "Zadejte největší velikost v pixelech, kterou chcete použít pro zobrazení "
6183
- "vašich fotografií."
6184
-
6185
- #: wppa-settings-autosave.php:774
6186
- msgid ""
6187
- "This is usually the same as the Column Width (Table I-A1), but it may differ."
6188
- msgstr ""
6189
- "Obvykle je tato hodnota stejná jako Šířka sloupce (Tabulka I-A1), ale může "
6190
- "se lišit."
6191
-
6192
- #: wppa-settings-autosave.php:782
6193
- msgid "Maximum Height"
6194
- msgstr "Maximální výška"
6195
-
6196
- #: wppa-settings-autosave.php:783
6197
- msgid "The maximum height photos will be displayed in slideshows."
6198
- msgstr "Maximální výška fotografií, ve které budou zobrazeny v prezentaci."
6199
-
6200
- #: wppa-settings-autosave.php:785
6201
- msgid ""
6202
- "This setting defines the height of the space reserved for photos in "
6203
- "slideshows."
6204
- msgstr ""
6205
- "Toto nastavení definuje výšku prostoru vyhrazeného pro fotografie v "
6206
- "prezentaci."
6207
-
6208
- #: wppa-settings-autosave.php:786
6209
- #, php-format
6210
- msgid ""
6211
- "If you change the width of a display by the %%size= command, this value "
6212
- "changes proportionally to match the aspect ratio as defined by this and the "
6213
- "previous setting."
6214
- msgstr ""
6215
- "Pokud změníte šířku zobrazení příkazem %%size=,změní se tato hodnota "
6216
- "proporcionálně tak, aby respektovala poměr stran definovaný tímto a "
6217
- "předchozím nastavením."
6218
-
6219
- #: wppa-settings-autosave.php:788 wppa-settings-autosave.php:942
6220
- #: wppa-settings-autosave.php:953
6221
- msgid "pixels high"
6222
- msgstr "px (výška)"
6223
-
6224
- #: wppa-settings-autosave.php:793
6225
- msgid "Stretch to fit"
6226
- msgstr "Roztáhnout na rozměr"
6227
-
6228
- #: wppa-settings-autosave.php:794
6229
- msgid "Stretch photos that are too small."
6230
- msgstr "Roztáhnout fotografie, které jsou příliš malé."
6231
-
6232
- #: wppa-settings-autosave.php:795
6233
- msgid ""
6234
- "Images will be stretched to the Maximum Size at display time if they are "
6235
- "smaller. Leaving unchecked is recommended. It is better to upload photos "
6236
- "that fit well the sizes you use!"
6237
- msgstr ""
6238
- "Fotografie, které jsou menší, budou při zobrazení roztažené na maximální "
6239
- "velikost. Tuto volbu není doporučeno zaškrtávat, je lepší nahrávat "
6240
- "fotografie, které velikostí odpovídají vašim nastavením!"
6241
-
6242
- #: wppa-settings-autosave.php:802
6243
- msgid "Slideshow borderwidth"
6244
- msgstr "Šířka ohraničení prezentace"
6245
-
6246
- #: wppa-settings-autosave.php:803
6247
- msgid "The width of the border around slideshow images."
6248
- msgstr "Šířka ohraničení kolem fotografií v prezentaci."
6249
-
6250
- #: wppa-settings-autosave.php:804
6251
- msgid ""
6252
- "The border is made by the image background being larger than the image "
6253
- "itsself (padding)."
6254
- msgstr ""
6255
- "Ohraničení je tvořeno zvětšením pozadí fotografie přes rozměry fotografie "
6256
- "(padding). "
6257
-
6258
- #: wppa-settings-autosave.php:805
6259
- msgid ""
6260
- "Additionally there may be a one pixel outline of a different color. See "
6261
- "Table III-A2."
6262
- msgstr ""
6263
- "Kromě toho může být přidán obrys jinou barvou o šířce 1 pixel. Viz Tabulka "
6264
- "III-A2."
6265
-
6266
- #: wppa-settings-autosave.php:806
6267
- msgid "The number you enter here is exclusive the one pixel outline."
6268
- msgstr "Číslo, které zadáte neobsahuje 1px linku obrysu. "
6269
-
6270
- #: wppa-settings-autosave.php:807
6271
- msgid "If you leave this entry empty, there will be no outline either."
6272
- msgstr ""
6273
- "Pokud tuto hodnotu ponecháte prázdnou, nezobrazí se ani obrysová linka."
6274
-
6275
- #: wppa-settings-autosave.php:814
6276
- msgid "Numbar Max"
6277
- msgstr "Max - Číselná lišta"
6278
-
6279
- #: wppa-settings-autosave.php:815
6280
- msgid "Maximum numbers to display."
6281
- msgstr "Maximální počet pořadových čísel pro zobrazení v liště."
6282
-
6283
- #: wppa-settings-autosave.php:816
6284
- msgid ""
6285
- "In order to attemt to fit on one line, the numbers will be replaced by dots "
6286
- "- except the current - when there are more than this number of photos in a "
6287
- "slideshow."
6288
- msgstr ""
6289
- "Pokud bude v prezentaci více fotografií než udává tato hodnota, můžou být "
6290
- "některá pořadová čísla nahrazena tečkami (kromě aktuálního), tak aby se vše "
6291
- "vešlo do jednoho řádku"
6292
-
6293
- #: wppa-settings-autosave.php:818
6294
- msgid "numbers"
6295
- msgstr "čísel"
6296
-
6297
- #: wppa-settings-autosave.php:823
6298
- msgid "Share button size"
6299
- msgstr "Velikost tlačítka Sdílení"
6300
-
6301
- #: wppa-settings-autosave.php:824
6302
- msgid "The size of the social media icons in the Share box"
6303
- msgstr "Velikost ikon sociálních sítí zobrazených v panelu sdílení"
6304
-
6305
- #: wppa-settings-autosave.php:834
6306
- msgid "Mini Treshold"
6307
- msgstr "Mini Limit"
6308
-
6309
- #: wppa-settings-autosave.php:835
6310
- msgid "Show mini text at slideshow smaller then."
6311
- msgstr "Pokud je šířka prezentace menší než hodnota zobrazit mini text."
6312
-
6313
- #: wppa-settings-autosave.php:836
6314
- msgid ""
6315
- "Display Next and Prev. as opposed to Next photo and Previous photo when the "
6316
- "cotainer is smaller than this size."
6317
- msgstr ""
6318
- "Pokud bude kontejner menší než uvedená hodnota, budou namísto Další snímek a "
6319
- "Předchozí snímek zobrazeny zkratky Další a Předch. "
6320
-
6321
- #: wppa-settings-autosave.php:837
6322
- msgid "Special use in responsive themes."
6323
- msgstr "Důležité při použití responzivních šablon."
6324
-
6325
- #: wppa-settings-autosave.php:845
6326
- msgid "The maximum number of slides in a certain view. 0 means no pagination"
6327
- msgstr "Maximální počet snímků v určitém zobrazení. 0 znamená bez stránkování"
6328
-
6329
- #: wppa-settings-autosave.php:848
6330
- msgid "slides"
6331
- msgstr "snímky"
6332
-
6333
- #: wppa-settings-autosave.php:853
6334
- msgid "Thumbnail photos related size settings"
6335
- msgstr "Nastavení související s velikostí miniatur"
6336
-
6337
- #: wppa-settings-autosave.php:855
6338
- msgid "Thumbnail Size"
6339
- msgstr "Velikost miniatury"
6340
-
6341
- #: wppa-settings-autosave.php:856
6342
- msgid "The size of the thumbnail images."
6343
- msgstr "Velikost miniaturizovaných fotografií"
6344
-
6345
- #: wppa-settings-autosave.php:857 wppa-settings-autosave.php:867
6346
- #: wppa-settings-autosave.php:1057 wppa-settings-autosave.php:1067
6347
- msgid "This size applies to the width or height, whichever is the largest."
6348
- msgstr "Tato hodnota bude použita na větší z rozměrů (výška, šířka)."
6349
-
6350
- #: wppa-settings-autosave.php:858 wppa-settings-autosave.php:868
6351
- msgid ""
6352
- "Changing the thumbnail size may result in all thumbnails being regenerated. "
6353
- "this may take a while."
6354
- msgstr ""
6355
- "Změnou velikosti miniatur vyvoláte nutnost je znovu vygenerovat. Tato "
6356
- "operace bude chvíli trvat. "
6357
-
6358
- #: wppa-settings-autosave.php:865
6359
- msgid "Thumbnail Size Alt"
6360
- msgstr "Velikost miniatury Alt"
6361
-
6362
- #: wppa-settings-autosave.php:866
6363
- msgid "The alternative size of the thumbnail images."
6364
- msgstr "Alternativní velikost miniaturizovaných fotografií."
6365
-
6366
- #: wppa-settings-autosave.php:875
6367
- msgid "Thumbnail Aspect"
6368
- msgstr "Poměr stran miniatury"
6369
-
6370
- #: wppa-settings-autosave.php:876
6371
- msgid "Aspect ration of thumbnail image"
6372
- msgstr "Poměr stran miniaturizovaných fotografií"
6373
-
6374
- #: wppa-settings-autosave.php:880
6375
- msgid "--- same as fullsize ---"
6376
- msgstr "--- stejný jako originál ---"
6377
-
6378
- #: wppa-settings-autosave.php:881
6379
- msgid "--- square clipped ---"
6380
- msgstr "--- oříznuto na čtverec ---"
6381
-
6382
- #: wppa-settings-autosave.php:882
6383
- msgid "4:5 landscape clipped"
6384
- msgstr "4:5 oříznuto horizontálně"
6385
-
6386
- #: wppa-settings-autosave.php:883
6387
- msgid "3:4 landscape clipped"
6388
- msgstr "3:4 oříznuto horizontálně"
6389
-
6390
- #: wppa-settings-autosave.php:884
6391
- msgid "2:3 landscape clipped"
6392
- msgstr "2:3 oříznuto horizontálně"
6393
-
6394
- #: wppa-settings-autosave.php:885
6395
- msgid "9:16 landscape clipped"
6396
- msgstr "9:16 oříznuto horizontálně"
6397
-
6398
- #: wppa-settings-autosave.php:886
6399
- msgid "1:2 landscape clipped"
6400
- msgstr "1:2 oříznuto horizontálně"
6401
-
6402
- #: wppa-settings-autosave.php:887
6403
- msgid "--- square padded ---"
6404
- msgstr "--- doplněno na čtverec ---"
6405
-
6406
- #: wppa-settings-autosave.php:888
6407
- msgid "4:5 landscape padded"
6408
- msgstr "4:5 doplněno horizontálně"
6409
-
6410
- #: wppa-settings-autosave.php:889
6411
- msgid "3:4 landscape padded"
6412
- msgstr "3:4 doplněno horizontálně"
6413
-
6414
- #: wppa-settings-autosave.php:890
6415
- msgid "2:3 landscape padded"
6416
- msgstr "2:3 doplněno horizontálně"
6417
-
6418
- #: wppa-settings-autosave.php:891
6419
- msgid "9:16 landscape padded"
6420
- msgstr "9:16 doplněno horizontálně"
6421
-
6422
- #: wppa-settings-autosave.php:892
6423
- msgid "1:2 landscape padded"
6424
- msgstr "1:2 doplněno horizontálně"
6425
-
6426
- #: wppa-settings-autosave.php:914
6427
- msgid "Thumbframe width"
6428
- msgstr "Šířka rámce miniatury"
6429
-
6430
- #: wppa-settings-autosave.php:915
6431
- msgid "The width of the thumbnail frame."
6432
- msgstr "Šířka rámce miniaturizovaných fotografií."
6433
-
6434
- #: wppa-settings-autosave.php:916 wppa-settings-autosave.php:927
6435
- msgid "Set the width of the thumbnail frame."
6436
- msgstr "Nastavte šířku rámce miniatury."
6437
-
6438
- #: wppa-settings-autosave.php:917 wppa-settings-autosave.php:928
6439
- #: wppa-settings-autosave.php:939 wppa-settings-autosave.php:950
6440
- #: wppa-settings-autosave.php:961
6441
- msgid "Set width, height and spacing for the thumbnail frames."
6442
- msgstr "Nastavte šířku, výšku a mezery pro miniatury fotografií."
6443
-
6444
- #: wppa-settings-autosave.php:918 wppa-settings-autosave.php:929
6445
- #: wppa-settings-autosave.php:940 wppa-settings-autosave.php:951
6446
- #: wppa-settings-autosave.php:962
6447
- msgid ""
6448
- "These sizes should be large enough for a thumbnail image and - optionally - "
6449
- "the text under it."
6450
- msgstr ""
6451
- "Tyto rozměry by měly být dostatečně veliké pro miniaturu a - volitelně - i "
6452
- "text pod ní."
6453
-
6454
- #: wppa-settings-autosave.php:925
6455
- msgid "Thumbframe width Alt"
6456
- msgstr "Šířka rámce miniatury Alt"
6457
-
6458
- #: wppa-settings-autosave.php:926
6459
- msgid "The width of the alternative thumbnail frame."
6460
- msgstr "Alternativní šířka rámce miniaturizovaných fotografií."
6461
-
6462
- #: wppa-settings-autosave.php:936
6463
- msgid "Thumbframe height"
6464
- msgstr "Výška rámce miniatury"
6465
-
6466
- #: wppa-settings-autosave.php:937
6467
- msgid "The height of the thumbnail frame."
6468
- msgstr "Výška rámce miniaturizovaných fotografií."
6469
-
6470
- #: wppa-settings-autosave.php:938 wppa-settings-autosave.php:949
6471
- msgid "Set the height of the thumbnail frame."
6472
- msgstr "Nastavte výšku rámce miniatury."
6473
-
6474
- #: wppa-settings-autosave.php:947
6475
- msgid "Thumbframe height Alt"
6476
- msgstr "Výška rámce miniatury Alt"
6477
-
6478
- #: wppa-settings-autosave.php:948
6479
- msgid "The height of the alternative thumbnail frame."
6480
- msgstr "Alternativní výška rámce miniaturizovaných fotografií."
6481
-
6482
- #: wppa-settings-autosave.php:958
6483
- msgid "Thumbnail spacing"
6484
- msgstr "Mezera mezi miniaturami"
6485
-
6486
- #: wppa-settings-autosave.php:959
6487
- msgid "The spacing between adjacent thumbnail frames."
6488
- msgstr "Vzdálenost mezi sousedními rámci miniaturizovaných fotografií."
6489
-
6490
- #: wppa-settings-autosave.php:960
6491
- msgid "Set the minimal spacing between the adjacent thumbnail frames"
6492
- msgstr "Nastavte minimální vzdálenosti mezi sousedními rámci miniatur"
6493
-
6494
- #: wppa-settings-autosave.php:969
6495
- msgid "Auto spacing"
6496
- msgstr "Automatická mezera"
6497
-
6498
- #: wppa-settings-autosave.php:970
6499
- msgid "Space the thumbnail frames automatic."
6500
- msgstr "Vzdálenost mezi sousedními rámci miniatur bude nastavena automaticky."
6501
-
6502
- #: wppa-settings-autosave.php:971
6503
- msgid ""
6504
- "If you check this box, the thumbnail images will be evenly distributed over "
6505
- "the available width."
6506
- msgstr ""
6507
- "Pokud tuto položku zaškrtnete, budou miniatury rovnoměrně rozloženy přes "
6508
- "celou dostupnou šířku."
6509
-
6510
- #: wppa-settings-autosave.php:972
6511
- msgid ""
6512
- "In this case, the thumbnail spacing value (setting I-9) will be regarded as "
6513
- "a minimum value."
6514
- msgstr ""
6515
- "V tomto případě bude hodnota Mezery mezi miniaturami (nastavení I-9) "
6516
- "považována za hodnotu minimální."
6517
-
6518
- #: wppa-settings-autosave.php:979 wppa-settings-autosave.php:1086
6519
- msgid "Page size"
6520
- msgstr "Velikost stránky"
6521
-
6522
- #: wppa-settings-autosave.php:980
6523
- msgid "Max number of thumbnails per page."
6524
- msgstr "Maximální počet miniatur na stránce."
6525
-
6526
- #: wppa-settings-autosave.php:981
6527
- msgid ""
6528
- "Enter the maximum number of thumbnail images per page. A value of 0 "
6529
- "indicates no pagination."
6530
- msgstr ""
6531
- "Zadejte maximální počet miniatur zobrazených na stránce. Hodnota 0 označuje "
6532
- "bez stránkování."
6533
-
6534
- #: wppa-settings-autosave.php:983 wppa-settings-autosave.php:5255
6535
- #: wppa-settings-autosave.php:5286 wppa-settings-autosave.php:5381
6536
- msgid "thumbnails"
6537
- msgstr "miniatur"
6538
-
6539
- #: wppa-settings-autosave.php:989
6540
- msgid "The size of the thumbnail popup images."
6541
- msgstr "Velikost vyskakovacího okna miniatur"
6542
-
6543
- #: wppa-settings-autosave.php:990
6544
- msgid ""
6545
- "Enter the size of the popup images. This size should be larger than the "
6546
- "thumbnail size."
6547
- msgstr ""
6548
- "Zadejte velikost vyskakovacího okna miniaturních fotografií. Rozměr by měl "
6549
- "být větší, než velikost miniatury fotografie."
6550
-
6551
- #: wppa-settings-autosave.php:991
6552
- msgid "This size should also be at least the cover image size."
6553
- msgstr ""
6554
- "Tato velikost by měla být rovněž alespoň stejná jako velikost titulní "
6555
- "fotografie na obal."
6556
-
6557
- #: wppa-settings-autosave.php:992
6558
- msgid ""
6559
- "Changing the popup size may result in all thumbnails being regenerated. this "
6560
- "may take a while."
6561
- msgstr ""
6562
- "Změnou velikosti vyskakovacího okna miniatur můžete vyvolat nutnost "
6563
- "miniatury znovu vygenerovat. Tato operace bude chvíli trvat. "
6564
-
6565
- #: wppa-settings-autosave.php:993
6566
- msgid ""
6567
- "Although this setting has only visual effect if \"Thumb popup\" (Table IV-"
6568
- "C8) is checked,"
6569
- msgstr ""
6570
- "Ačkoli má toto nastavení pouze vizuální efekt pokud je zaškrtnuta položka "
6571
- "\"Vyskakovací miniatury\" (Tabulka IV-C8),"
6572
-
6573
- #: wppa-settings-autosave.php:994
6574
- msgid ""
6575
- "the value must be right as it is the physical size of the thumbnail and "
6576
- "coverphoto images."
6577
- msgstr ""
6578
- "hodnota musí odpovídat fyzické velikosti miniatury a titulní fotografie."
6579
-
6580
- #: wppa-settings-autosave.php:1001
6581
- msgid "Use thumbs if fit"
6582
- msgstr "Upřednostnit miniatury"
6583
-
6584
- #: wppa-settings-autosave.php:1002
6585
- msgid "Use the thumbnail image files if they are large enough."
6586
- msgstr "Přednostně použít miniatury fotografií, pokud jsou dostatečně velké"
6587
-
6588
- #: wppa-settings-autosave.php:1003
6589
- msgid "This setting speeds up page loading for small photos."
6590
- msgstr "Toto nastavení urychluje načítání stránky pro malé fotografie."
6591
-
6592
- #: wppa-settings-autosave.php:1004
6593
- msgid ""
6594
- "Do NOT use this when your thumbnails have a forced aspect ratio (when Table "
6595
- "I-C2 is set to anything different from --- same as fullsize ---)"
6596
- msgstr ""
6597
- "NEPOUŹÍVEJTE, mají-li vaše miniatury nastavený pevný poměr stran (Tabulka I-"
6598
- "C2 je nastavena na cokoli jiného než --- stejný jako originál ---)"
6599
-
6600
- #: wppa-settings-autosave.php:1011
6601
- msgid "Album cover related size settings"
6602
- msgstr "Nastavení související s obalem alba"
6603
-
6604
- #: wppa-settings-autosave.php:1014
6605
- msgid "Maximum width for a album cover display."
6606
- msgstr "Maximální šířka pro zobrazení obalu alba."
6607
-
6608
- #: wppa-settings-autosave.php:1015
6609
- msgid ""
6610
- "Display covers in 2 or more columns if the display area is wider than the "
6611
- "given width."
6612
- msgstr ""
6613
- "Obaly alb se zobrazí ve 2 nebo více sloupcích, pokud je šířka plochy větší "
6614
- "než daná hodnota."
6615
-
6616
- #: wppa-settings-autosave.php:1016
6617
- msgid ""
6618
- "This also applies for 'thumbnails as covers', and will NOT apply to single "
6619
- "items."
6620
- msgstr ""
6621
- "To platí i pro 'Miniatury jako obaly', ale nebude se vztahovat na jednotlivé "
6622
- "položky."
6623
-
6624
- #: wppa-settings-autosave.php:1023
6625
- msgid "Min Cover height"
6626
- msgstr "Min výška obalu"
6627
-
6628
- #: wppa-settings-autosave.php:1024
6629
- msgid "Minimal height of an album cover."
6630
- msgstr "Minimální výška obalu alba."
6631
-
6632
- #: wppa-settings-autosave.php:1025
6633
- msgid ""
6634
- "If you use this setting to make the albums the same height and you are not "
6635
- "satisfied about the lay-out, try increasing the value in the next setting"
6636
- msgstr ""
6637
- "Použijete-li toto nastavení, aby alba měla stejnou výšku, a nejste "
6638
- "spokojeni s rozložením, zkuste zvětšit hodnotu v následující položce"
6639
-
6640
- #: wppa-settings-autosave.php:1032
6641
- msgid "Min Text frame height"
6642
- msgstr "Min výška rámce textu"
6643
-
6644
- #: wppa-settings-autosave.php:1033
6645
- msgid "The minimal cover text frame height incl header."
6646
- msgstr "Minimální výška rámce textu na obalu včetně záhlaví."
6647
-
6648
- #: wppa-settings-autosave.php:1034
6649
- msgid ""
6650
- "The height starting with the album title up to and including the view- and "
6651
- "the slideshow- links."
6652
- msgstr "Výška začíná názvem alba a končí odkazy na zobrazení a prezentaci."
6653
-
6654
- #: wppa-settings-autosave.php:1035
6655
- msgid ""
6656
- "This setting enables you to give the album covers the same height while the "
6657
- "title does not need to fit on one line."
6658
- msgstr ""
6659
- "Toto nastavení vám umožňuje nastavit všem albům stejnou výšku bez ohledu na "
6660
- "to, zda se název vejde do jednoho řádku."
6661
-
6662
- #: wppa-settings-autosave.php:1036
6663
- msgid "This is the recommended setting to line-up your covers!"
6664
- msgstr "Toto je doporučené nastavení pro zarovnání vašich obalů alb!"
6665
-
6666
- #: wppa-settings-autosave.php:1043
6667
- msgid "Min Description height"
6668
- msgstr "Min výška popisu"
6669
-
6670
- #: wppa-settings-autosave.php:1044
6671
- msgid "The minimal height of the album description text frame."
6672
- msgstr "Minimální výška rámce pro textový popis alba."
6673
-
6674
- #: wppa-settings-autosave.php:1045
6675
- msgid "The minimal height of the description field in an album cover display."
6676
- msgstr "Minimální výška pole popisu v zobrazení obalu alba."
6677
-
6678
- #: wppa-settings-autosave.php:1046
6679
- msgid ""
6680
- "This setting enables you to give the album covers the same height provided "
6681
- "that the cover images are equally sized and the titles fit on one line."
6682
- msgstr ""
6683
- "Toto nastavení umožňuje, aby všechna alba byla stejně vysoká za předpokladu, "
6684
- "že fotografie na obal jsou stejně velké a název se vejde na jeden řádek."
6685
-
6686
- #: wppa-settings-autosave.php:1047
6687
- msgid ""
6688
- "To force the coverphotos have equal heights, tick the box in Table I-D7."
6689
- msgstr ""
6690
- "Pro vynucení stejné výšky titulních fotografií na obal zaškrtněte položku "
6691
- "Tabulka I-D7."
6692
-
6693
- #: wppa-settings-autosave.php:1048
6694
- msgid ""
6695
- "You may need this setting if changing the previous setting is not sufficient "
6696
- "to line-up the covers."
6697
- msgstr ""
6698
- "Možná budete toto nastavení potřebovat, pokud předchozí nastavení nejsou "
6699
- "dostatečná pro zarovnání obalů."
6700
-
6701
- #: wppa-settings-autosave.php:1055
6702
- msgid "Coverphoto size"
6703
- msgstr "Velikost titulní fotografie"
6704
-
6705
- #: wppa-settings-autosave.php:1056
6706
- msgid "The size of the coverphoto."
6707
- msgstr "Velikost titulní fotografie na obalu alba."
6708
-
6709
- #: wppa-settings-autosave.php:1058 wppa-settings-autosave.php:1068
6710
- msgid ""
6711
- "Changing the coverphoto size may result in all thumbnails being regenerated. "
6712
- "this may take a while."
6713
- msgstr ""
6714
- "Změna velikosti titulní fotografie můžete vyvolat nutnost znovu vygenerovat "
6715
- "miniatury. Tato operace bude chvíli trvat. "
6716
-
6717
- #: wppa-settings-autosave.php:1065
6718
- msgid "Coverphoto size multi"
6719
- msgstr "Multi titulní fotografie"
6720
-
6721
- #: wppa-settings-autosave.php:1066
6722
- msgid "The size of coverphotos if more than one."
6723
- msgstr "Velikost titulních fotografií na obal alba, je-li jich více."
6724
-
6725
- #: wppa-settings-autosave.php:1075
6726
- msgid "Size is height"
6727
- msgstr "Velikost je výška"
6728
-
6729
- #: wppa-settings-autosave.php:1076
6730
- msgid "The size of the coverphoto is the height of it."
6731
- msgstr "Velikost titulní fotografie na obal je definována její výškou."
6732
-
6733
- #: wppa-settings-autosave.php:1077
6734
- msgid ""
6735
- "If set: the previous setting is the height, if unset: the largest of width "
6736
- "and height."
6737
- msgstr ""
6738
- "Nastaveno: předchozí nastavení je výška; Nenastaveno: pak je větším z "
6739
- "rozměrů (výška x šířka)."
6740
-
6741
- #: wppa-settings-autosave.php:1078
6742
- msgid ""
6743
- "This setting applies for coverphoto position top or bottom only (Table IV-"
6744
- "D3)."
6745
- msgstr ""
6746
- "Toto nastavení platí pouze pro umístění titulní fotografie na obal nahoře "
6747
- "nebo dole (Tabulka IV-D3)."
6748
-
6749
- #: wppa-settings-autosave.php:1079
6750
- msgid "This makes it easyer to make the covers of equal height."
6751
- msgstr "Tohle zjednodušuje tvorbu obalů alb stejné výšky."
6752
-
6753
- #: wppa-settings-autosave.php:1087
6754
- msgid "Max number of covers per page."
6755
- msgstr "Max počet obalů na stránku."
6756
-
6757
- #: wppa-settings-autosave.php:1088
6758
- msgid ""
6759
- "Enter the maximum number of album covers per page. A value of 0 indicates no "
6760
- "pagination."
6761
- msgstr ""
6762
- "Zadejte maximální počet obalů alb zobrazených na stránce. Hodnota 0 označuje "
6763
- "bez stránkování."
6764
-
6765
- #: wppa-settings-autosave.php:1090
6766
- msgid "covers"
6767
- msgstr "obaly(ů)"
6768
-
6769
- #: wppa-settings-autosave.php:1095
6770
- msgid "Rating and comment related size settings"
6771
- msgstr "Nastavení související s hodnocením a komentáři"
6772
-
6773
- #: wppa-settings-autosave.php:1097
6774
- msgid "Rating size"
6775
- msgstr "Velikost hodnocení"
6776
-
6777
- #: wppa-settings-autosave.php:1098
6778
- msgid "Select the number of voting stars."
6779
- msgstr "Vyberte počet hlasovacích hvězdiček."
6780
-
6781
- #: wppa-settings-autosave.php:1101
6782
- msgid "Standard: 5 stars"
6783
- msgstr "Standard: 5 hvězdiček"
6784
-
6785
- #: wppa-settings-autosave.php:1101
6786
- msgid "Extended: 10 stars"
6787
- msgstr "Rozšířené: 10 hvězdiček"
6788
-
6789
- #: wppa-settings-autosave.php:1101
6790
- msgid "One button vote"
6791
- msgstr "Hlasování tlačítkem"
6792
-
6793
- #: wppa-settings-autosave.php:1108
6794
- msgid "Display precision"
6795
- msgstr "Přesnost zobrazení"
6796
-
6797
- #: wppa-settings-autosave.php:1109
6798
- msgid "Select the desired rating display precision."
6799
- msgstr "Vyberte požadovanou přesnost zobrazení hodnocení."
6800
-
6801
- #: wppa-settings-autosave.php:1112
6802
- msgid "decimal places"
6803
- msgstr "desetinná místa"
6804
-
6805
- #: wppa-settings-autosave.php:1120
6806
- msgid "Size of Avatar images."
6807
- msgstr "Velikost obrázku Avataru."
6808
-
6809
- #: wppa-settings-autosave.php:1121
6810
- msgid "The size of the square avatar; must be > 0 and < 256"
6811
- msgstr "Velikost čtvercového avataru musí být větší než 0 a menší než 256"
6812
-
6813
- #: wppa-settings-autosave.php:1128
6814
- msgid "Rating space"
6815
- msgstr "Mezera hlasování"
6816
-
6817
- #: wppa-settings-autosave.php:1129
6818
- msgid "Space between avg and my rating stars"
6819
- msgstr "Mezera mezi průměrným a mým hlasováním"
6820
-
6821
- #: wppa-settings-autosave.php:1137
6822
- msgid "Widget related size settings"
6823
- msgstr "Nastavení související s Widgety"
6824
-
6825
- #: wppa-settings-autosave.php:1139
6826
- msgid "Widget width"
6827
- msgstr "Šířka Widgetu"
6828
-
6829
- #: wppa-settings-autosave.php:1140
6830
- msgid "The useable width within widgets."
6831
- msgstr "Použitelná šířka uvnitř widgetů."
6832
-
6833
- #: wppa-settings-autosave.php:1141
6834
- msgid ""
6835
- "Widget width for photo of the day, general purpose (default), slideshow "
6836
- "(default) and upload widgets."
6837
- msgstr ""
6838
- "Šířka Widgetů - Fotgrafie dne, univerzálního (výchozí), prezentace "
6839
- "(výchozí) a nahrávání."
6840
-
6841
- #: wppa-settings-autosave.php:1148
6842
- msgid "TopTen count"
6843
- msgstr "TopTen - počet"
6844
-
6845
- #: wppa-settings-autosave.php:1149
6846
- msgid "Number of photos in TopTen widget."
6847
- msgstr "Počet fotografií ve widgetu TopTen."
6848
-
6849
- #: wppa-settings-autosave.php:1150
6850
- msgid "Enter the maximum number of rated photos in the TopTen widget."
6851
- msgstr "Zadejte maximální počet hodnocených fotografií ve widgetu TopTen."
6852
-
6853
- #: wppa-settings-autosave.php:1157
6854
- msgid "TopTen size"
6855
- msgstr "TopTen - velikost"
6856
-
6857
- #: wppa-settings-autosave.php:1158
6858
- msgid "Size of thumbnails in TopTen widget."
6859
- msgstr "Velikost miniatur fotografií ve widgetu TopTen."
6860
-
6861
- #: wppa-settings-autosave.php:1159
6862
- msgid "Enter the size for the mini photos in the TopTen widget."
6863
- msgstr "Zadejte velikost miniatur fotografií ve widgetu TopTen."
6864
-
6865
- #: wppa-settings-autosave.php:1160 wppa-settings-autosave.php:1180
6866
- #: wppa-settings-autosave.php:1200 wppa-settings-autosave.php:1220
6867
- #: wppa-settings-autosave.php:1240 wppa-settings-autosave.php:1260
6868
- msgid "The size applies to the width or height, whatever is the largest."
6869
- msgstr "Tato hodnota bude použita na větší z rozměrů (výška, šířka)."
6870
-
6871
- #: wppa-settings-autosave.php:1161 wppa-settings-autosave.php:1181
6872
- #: wppa-settings-autosave.php:1201 wppa-settings-autosave.php:1221
6873
- #: wppa-settings-autosave.php:1241 wppa-settings-autosave.php:1261
6874
- msgid ""
6875
- "Recommended values: 86 for a two column and 56 for a three column display."
6876
- msgstr "Doporučené hodnoty: 86 pro dva sloupce a 56 pro zobrazení tří sloupců."
6877
-
6878
- #: wppa-settings-autosave.php:1168
6879
- msgid "Comment count"
6880
- msgstr "Komentáře - počet"
6881
-
6882
- #: wppa-settings-autosave.php:1169
6883
- msgid "Number of entries in Comment widget."
6884
- msgstr "Počet záznamů ve widgetu Komentáře."
6885
-
6886
- #: wppa-settings-autosave.php:1170
6887
- msgid "Enter the maximum number of entries in the Comment widget."
6888
- msgstr "Zadejte maximální počet záznamů ve widgetu Komentáře."
6889
-
6890
- #: wppa-settings-autosave.php:1172
6891
- msgid "entries"
6892
- msgstr "položek"
6893
-
6894
- #: wppa-settings-autosave.php:1177
6895
- msgid "Comment size"
6896
- msgstr "Komentáře - velikost"
6897
-
6898
- #: wppa-settings-autosave.php:1178
6899
- msgid "Size of thumbnails in Comment widget."
6900
- msgstr "Velikost miniatur fotografií ve widgetu Komentáře."
6901
-
6902
- #: wppa-settings-autosave.php:1179
6903
- msgid "Enter the size for the mini photos in the Comment widget."
6904
- msgstr "Zadejte velikost miniatur fotografií ve widgetu Komentáře."
6905
-
6906
- #: wppa-settings-autosave.php:1188
6907
- msgid "Thumbnail count"
6908
- msgstr "Miniatury - počet"
6909
-
6910
- #: wppa-settings-autosave.php:1189
6911
- msgid "Number of photos in Thumbnail widget."
6912
- msgstr "Počet fotografií ve widgetu Miniatury."
6913
-
6914
- #: wppa-settings-autosave.php:1190
6915
- msgid "Enter the maximum number of rated photos in the Thumbnail widget."
6916
- msgstr "Zadejte maximální počet hodnocených fotografií ve widgetu Miniatury."
6917
-
6918
- #: wppa-settings-autosave.php:1197
6919
- msgid "Thumbnail widget size"
6920
- msgstr "Miniatury - velikost"
6921
-
6922
- #: wppa-settings-autosave.php:1198
6923
- msgid "Size of thumbnails in Thumbnail widget."
6924
- msgstr "Velikost miniatur fotografií ve widgetu Miniatury."
6925
-
6926
- #: wppa-settings-autosave.php:1199
6927
- msgid "Enter the size for the mini photos in the Thumbnail widget."
6928
- msgstr "Zadejte velikost miniatur fotografií ve widgetu Miniatury."
6929
-
6930
- #: wppa-settings-autosave.php:1208
6931
- msgid "LasTen count"
6932
- msgstr "LastTen - počet"
6933
-
6934
- #: wppa-settings-autosave.php:1209
6935
- msgid "Number of photos in Last Ten widget."
6936
- msgstr "Počet fotografií ve widgetu LastTen."
6937
-
6938
- #: wppa-settings-autosave.php:1210
6939
- msgid "Enter the maximum number of photos in the LasTen widget."
6940
- msgstr "Zadejte maximální počet fotografií ve widgetu LastTen."
6941
-
6942
- #: wppa-settings-autosave.php:1217
6943
- msgid "LasTen size"
6944
- msgstr "LastTen - velikost"
6945
-
6946
- #: wppa-settings-autosave.php:1218
6947
- msgid "Size of thumbnails in Last Ten widget."
6948
- msgstr "Velikost miniatur fotografií ve widgetu LastTen."
6949
-
6950
- #: wppa-settings-autosave.php:1219
6951
- msgid "Enter the size for the mini photos in the LasTen widget."
6952
- msgstr "Zadejte velikost miniatur fotografií ve widgetu LastTen."
6953
-
6954
- #: wppa-settings-autosave.php:1228
6955
- msgid "Album widget count"
6956
- msgstr "Album - počet"
6957
-
6958
- #: wppa-settings-autosave.php:1229
6959
- msgid "Number of albums in Album widget."
6960
- msgstr "Počet alb ve widgetu Album."
6961
-
6962
- #: wppa-settings-autosave.php:1230
6963
- msgid ""
6964
- "Enter the maximum number of thumbnail photos of albums in the Album widget."
6965
- msgstr "Zadejte maximální počet miniatur fotografií alb ve widgetu Album."
6966
-
6967
- #: wppa-settings-autosave.php:1237
6968
- msgid "Album widget size"
6969
- msgstr "Album - velikost"
6970
-
6971
- #: wppa-settings-autosave.php:1238
6972
- msgid "Size of thumbnails in Album widget."
6973
- msgstr "Velikost miniatur fotografií ve widgetu Album."
6974
-
6975
- #: wppa-settings-autosave.php:1239
6976
- msgid "Enter the size for the mini photos in the Album widget."
6977
- msgstr "Zadejte velikost miniatur fotografií ve widgetu Album."
6978
-
6979
- #: wppa-settings-autosave.php:1248
6980
- msgid "FeaTen count"
6981
- msgstr "FeaTen - počet"
6982
-
6983
- #: wppa-settings-autosave.php:1249
6984
- msgid "Number of photos in Featured Ten widget."
6985
- msgstr "Počet fotografií ve widgetu FeaTen."
6986
-
6987
- #: wppa-settings-autosave.php:1250
6988
- msgid "Enter the maximum number of photos in the FeaTen widget."
6989
- msgstr "Zadejte maximální počet fotografií ve widgetu FeaTen."
6990
-
6991
- #: wppa-settings-autosave.php:1257
6992
- msgid "FeaTen size"
6993
- msgstr "FeaTen - velikost"
6994
-
6995
- #: wppa-settings-autosave.php:1258
6996
- msgid "Size of thumbnails in Featured Ten widget."
6997
- msgstr "Počet fotografií ve widgetu FeaTen."
6998
-
6999
- #: wppa-settings-autosave.php:1259
7000
- msgid "Enter the size for the mini photos in the FeaTen widget."
7001
- msgstr "Zadejte velikost miniatur fotografií ve widgetu FeaTen."
7002
-
7003
- #: wppa-settings-autosave.php:1268
7004
- msgid "Tagcloud min size"
7005
- msgstr "Skupina štítků - min font"
7006
-
7007
- #: wppa-settings-autosave.php:1269
7008
- msgid "Minimal fontsize in tagclouds"
7009
- msgstr "Minimální velikost fontu ve widgetu Skupina štítků"
7010
-
7011
- #: wppa-settings-autosave.php:1277
7012
- msgid "Tagcloud max size"
7013
- msgstr "Skupina štítků - max font"
7014
-
7015
- #: wppa-settings-autosave.php:1278
7016
- msgid "Maximal fontsize in tagclouds"
7017
- msgstr "Maximální velikost fontu ve widgetu Skupina štítků"
7018
-
7019
- #: wppa-settings-autosave.php:1286
7020
- msgid ""
7021
- "Lightbox related size settings. These settings have effect only when Table "
7022
- "IX-J3 is set to wppa"
7023
- msgstr ""
7024
- "Nastavení související s Lightboxem. Tato nastavení mají smysl pouze je-li "
7025
- "Tabulka IX-J3 nastavena na wppa"
7026
-
7027
- #: wppa-settings-autosave.php:1289
7028
- msgid ""
7029
- "Number of lines on the lightbox description area, exclusive the n/m line."
7030
- msgstr "Počet řádků v popisné oblasti Lightboxu kromě řádky n/m."
7031
-
7032
- #: wppa-settings-autosave.php:1290
7033
- msgid "Enter a number in the range from 0 to 24 or auto"
7034
- msgstr "Zadejte číslo v rozsahu od 0 do 24 nebo auto"
7035
-
7036
- #: wppa-settings-autosave.php:1292
7037
- msgid "lines"
7038
- msgstr "řádky(ů)"
7039
-
7040
- #: wppa-settings-autosave.php:1297
7041
- msgid "Magnifier cursor size"
7042
- msgstr "Velikost kurzoru Lupy"
7043
-
7044
- #: wppa-settings-autosave.php:1298
7045
- msgid "Select the size of the magnifier cursor."
7046
- msgstr "Vyberte velikost kurzoru Lupa."
7047
-
7048
- #: wppa-settings-autosave.php:1301
7049
- msgid "small"
7050
- msgstr "malý"
7051
-
7052
- #: wppa-settings-autosave.php:1301
7053
- msgid "medium"
7054
- msgstr "střední"
7055
-
7056
- #: wppa-settings-autosave.php:1301
7057
- msgid "large"
7058
- msgstr "velký"
7059
-
7060
- #: wppa-settings-autosave.php:1310
7061
- msgid "Video related size settings"
7062
- msgstr "Nastavení související s videem"
7063
-
7064
- #: wppa-settings-autosave.php:1312
7065
- msgid "Default width"
7066
- msgstr "Výchozí šířka"
7067
-
7068
- #: wppa-settings-autosave.php:1313
7069
- msgid "The width of most videos"
7070
- msgstr "Šířka většiny videí"
7071
-
7072
- #: wppa-settings-autosave.php:1321
7073
- msgid "Default height"
7074
- msgstr "Výchozí výška"
7075
-
7076
- #: wppa-settings-autosave.php:1322
7077
- msgid "The height of most videos"
7078
- msgstr "Výška většiny videí"
7079
-
7080
- #: wppa-settings-autosave.php:1348
7081
- msgid "Table II:"
7082
- msgstr "Tabulka II:"
7083
-
7084
- #: wppa-settings-autosave.php:1348
7085
- msgid "Visibility:"
7086
- msgstr "Viditelnost:"
7087
-
7088
- #: wppa-settings-autosave.php:1349
7089
- msgid "This table describes the visibility of certain wppa+ elements."
7090
- msgstr "Tato tabulka popisuje viditelnost některých prvků WPPA+"
7091
-
7092
- #: wppa-settings-autosave.php:1367
7093
- msgid "Breadcrumb related visibility settings"
7094
- msgstr "Nastavení související s viditelností Drobečkové navigace"
7095
-
7096
- #: wppa-settings-autosave.php:1369
7097
- msgid "Breadcrumb on posts"
7098
- msgstr "Drobečková navigace v příspěvcích"
7099
-
7100
- #: wppa-settings-autosave.php:1370 wppa-settings-autosave.php:1380
7101
- msgid "Show breadcrumb navigation bars."
7102
- msgstr "Zobrazit lišty Drobečkové navigace."
7103
-
7104
- #: wppa-settings-autosave.php:1371 wppa-settings-autosave.php:1381
7105
- msgid "Indicate whether a breadcrumb navigation should be displayed"
7106
- msgstr "Označuje, zda má být zobrazena Drobečková navigace"
7107
-
7108
- #: wppa-settings-autosave.php:1379
7109
- msgid "Breadcrumb on pages"
7110
- msgstr "Drobečková navigace na stránkách"
7111
-
7112
- #: wppa-settings-autosave.php:1389
7113
- msgid "Breadcrumb on search results"
7114
- msgstr "Drobečková navigace ve výsledcích vyhledávání"
7115
-
7116
- #: wppa-settings-autosave.php:1390
7117
- msgid "Show breadcrumb navigation bars on the search results page."
7118
- msgstr "Zobrazit lišty Drobečkové navigace na stránce s výsledky hledání."
7119
-
7120
- #: wppa-settings-autosave.php:1391
7121
- msgid ""
7122
- "Indicate whether a breadcrumb navigation should be displayed above the "
7123
- "search results."
7124
- msgstr ""
7125
- "Označuje, zda má být Drobečková navigace zobrazena nad výsledky hledání."
7126
-
7127
- #: wppa-settings-autosave.php:1398
7128
- msgid "Breadcrumb on topten displays"
7129
- msgstr "Drobečková navigace ve widgetu TopTen"
7130
-
7131
- #: wppa-settings-autosave.php:1399
7132
- msgid "Show breadcrumb navigation bars on topten displays."
7133
- msgstr "Zobrazit lišty Drobečkové navigace ve widgetu TopTen."
7134
-
7135
- #: wppa-settings-autosave.php:1400
7136
- msgid ""
7137
- "Indicate whether a breadcrumb navigation should be displayed above the "
7138
- "topten displays."
7139
- msgstr ""
7140
- "Označuje, zda má být Drobečková navigace zobrazena nad miniaturami TopTen."
7141
-
7142
- #: wppa-settings-autosave.php:1407
7143
- msgid "Breadcrumb on last ten displays"
7144
- msgstr "Drobečková navigace ve widgetu LastTen"
7145
-
7146
- #: wppa-settings-autosave.php:1408
7147
- msgid "Show breadcrumb navigation bars on last ten displays."
7148
- msgstr "Zobrazit lišty Drobečkové navigace ve widgetu LastTen."
7149
-
7150
- #: wppa-settings-autosave.php:1409
7151
- msgid ""
7152
- "Indicate whether a breadcrumb navigation should be displayed above the last "
7153
- "ten displays."
7154
- msgstr ""
7155
- "Označuje, zda má být Drobečková navigace zobrazena nad miniaturami Last Ten."
7156
-
7157
- #: wppa-settings-autosave.php:1416
7158
- msgid "Breadcrumb on comment ten displays"
7159
- msgstr "Drobečková navigace ve widgetu Komentáře"
7160
-
7161
- #: wppa-settings-autosave.php:1417
7162
- msgid "Show breadcrumb navigation bars on comment ten displays."
7163
- msgstr "Zobrazit lišty Drobečkové navigace ve widgetu Komentáře."
7164
-
7165
- #: wppa-settings-autosave.php:1418
7166
- msgid ""
7167
- "Indicate whether a breadcrumb navigation should be displayed above the "
7168
- "comment ten displays."
7169
- msgstr "Označuje, zda má být Drobečková navigace zobrazena nad komentáři."
7170
-
7171
- #: wppa-settings-autosave.php:1425
7172
- msgid "Breadcrumb on tag result displays"
7173
- msgstr "Drobečková navigace v hledání štítků"
7174
-
7175
- #: wppa-settings-autosave.php:1426
7176
- msgid "Show breadcrumb navigation bars on tag result displays."
7177
- msgstr "Zobrazit lišty Drobečkové navigace ve výsledcích hledání štítků."
7178
-
7179
- #: wppa-settings-autosave.php:1427
7180
- msgid ""
7181
- "Indicate whether a breadcrumb navigation should be displayed above the tag "
7182
- "result displays."
7183
- msgstr ""
7184
- "Označuje, zda má být Drobečková navigace zobrazena nad výsledky hledání "
7185
- "štítků."
7186
-
7187
- #: wppa-settings-autosave.php:1434
7188
- msgid "Breadcrumb on featured ten displays"
7189
- msgstr "Drobečková navigace ve widgetu FeaTen"
7190
-
7191
- #: wppa-settings-autosave.php:1435
7192
- msgid "Show breadcrumb navigation bars on featured ten displays."
7193
- msgstr "Zobrazit lišty Drobečkové navigace ve widgetu FeaTen."
7194
-
7195
- #: wppa-settings-autosave.php:1436
7196
- msgid ""
7197
- "Indicate whether a breadcrumb navigation should be displayed above the "
7198
- "featured ten displays."
7199
- msgstr ""
7200
- "Označuje, zda má být Drobečková navigace zobrazena nad miniaturami FeaTen."
7201
-
7202
- #: wppa-settings-autosave.php:1443
7203
- msgid "Breadcrumb on related photos displays"
7204
- msgstr "Drobečková navigace v Souvisejících fotografiích"
7205
-
7206
- #: wppa-settings-autosave.php:1444
7207
- msgid "Show breadcrumb navigation bars on related photos displays."
7208
- msgstr "Zobrazit lišty Drobečkové navigace v Souvisejících fotografiích"
7209
-
7210
- #: wppa-settings-autosave.php:1445
7211
- msgid ""
7212
- "Indicate whether a breadcrumb navigation should be displayed above the "
7213
- "related photos displays."
7214
- msgstr ""
7215
- "Označuje, zda má být Drobečková navigace zobrazena nad Souvisejícími "
7216
- "fotografiemi."
7217
-
7218
- #: wppa-settings-autosave.php:1453
7219
- msgid "Show \"Home\" in breadcrumb."
7220
- msgstr "Zobrazit \"Domů\" v Drobečkové navigaci."
7221
-
7222
- #: wppa-settings-autosave.php:1454
7223
- msgid ""
7224
- "Indicate whether the breadcrumb navigation should start with a \"Home\"-link"
7225
- msgstr "Označuje, zda má Drobečková navigace začínat odkazem \"Domů\""
7226
-
7227
- #: wppa-settings-autosave.php:1462
7228
- msgid "Show the page(s) in breadcrumb."
7229
- msgstr "Zobrazit stránky v Drobečkové navigaci."
7230
-
7231
- #: wppa-settings-autosave.php:1463
7232
- msgid ""
7233
- "Indicate whether the breadcrumb navigation should show the page(hierarchy)"
7234
- msgstr ""
7235
- "Označuje, zda má být v Drobečkové navigaci zobrazena stránka (hierarchie)"
7236
-
7237
- #: wppa-settings-autosave.php:1470
7238
- msgid "Separator"
7239
- msgstr "Oddělovač"
7240
-
7241
- #: wppa-settings-autosave.php:1471
7242
- msgid "Breadcrumb separator symbol."
7243
- msgstr "Symbol oddělovače v Drobečkové navigaci"
7244
-
7245
- #: wppa-settings-autosave.php:1472
7246
- msgid "Select the desired breadcrumb separator element."
7247
- msgstr "Zadejte požadovaný oddělovací symbol drobečkové navigace."
7248
-
7249
- #: wppa-settings-autosave.php:1473
7250
- msgid "A text string may contain valid html."
7251
- msgstr "Textový řetězec může obsahovat platný HTML kód."
7252
-
7253
- #: wppa-settings-autosave.php:1474
7254
- msgid ""
7255
- "An image will be scaled automatically if you set the navigation font size."
7256
- msgstr ""
7257
- "Pokud nastavíte velikost písma navigace, bude obrázek automaticky zmenšen."
7258
-
7259
- #: wppa-settings-autosave.php:1476
7260
- msgid "Text (html):"
7261
- msgstr "Text (HTML):"
7262
-
7263
- #: wppa-settings-autosave.php:1476
7264
- msgid "Image (url):"
7265
- msgstr "Obrázek (URL):"
7266
-
7267
- #: wppa-settings-autosave.php:1484
7268
- msgid "Html"
7269
- msgstr "HTML"
7270
-
7271
- #: wppa-settings-autosave.php:1485
7272
- msgid "Breadcrumb separator text."
7273
- msgstr "Textový oddělovač Drobečkové navigace."
7274
-
7275
- #: wppa-settings-autosave.php:1486
7276
- msgid "Enter the HTML code that produces the separator symbol you want."
7277
- msgstr "Zadejte kód HTML, který definuje požadovaný symbol oddělovače."
7278
-
7279
- #: wppa-settings-autosave.php:1487
7280
- msgid ""
7281
- "It may be as simple as '-' (without the quotes) or as complex as a tag like "
7282
- "<div>..</div>."
7283
- msgstr ""
7284
- "To může být jak jednoduchý výraz '-' (bez uvozovek) nebo složitý výraz "
7285
- "jako<div>..</div>."
7286
-
7287
- #: wppa-settings-autosave.php:1494
7288
- msgid "Image Url"
7289
- msgstr "URL obrázku"
7290
-
7291
- #: wppa-settings-autosave.php:1495
7292
- msgid "Full url to separator image."
7293
- msgstr "Úplná URL k obrázku oddělovače."
7294
-
7295
- #: wppa-settings-autosave.php:1496
7296
- msgid ""
7297
- "Enter the full url to the image you want to use for the separator symbol."
7298
- msgstr ""
7299
- "Zadejte úplnou adresu URL k obrázku, který chcete použít jako symbol "
7300
- "oddělovače."
7301
-
7302
- #: wppa-settings-autosave.php:1503
7303
- msgid "Pagelink position"
7304
- msgstr "Pozice Stránkování"
7305
-
7306
- #: wppa-settings-autosave.php:1504
7307
- msgid "The location for the pagelinks bar."
7308
- msgstr "Umístění lišty Stránkování."
7309
-
7310
- #: wppa-settings-autosave.php:1507 wppa-settings-autosave.php:3708
7311
- msgid "Top"
7312
- msgstr "Nahoře"
7313
-
7314
- #: wppa-settings-autosave.php:1507 wppa-settings-autosave.php:3708
7315
- msgid "Bottom"
7316
- msgstr "Dole"
7317
-
7318
- #: wppa-settings-autosave.php:1507
7319
- msgid "Both"
7320
- msgstr "Obě"
7321
-
7322
- #: wppa-settings-autosave.php:1514
7323
- msgid "Thumblink on slideshow"
7324
- msgstr "Odkaz na miniatury v prezentaci"
7325
-
7326
- #: wppa-settings-autosave.php:1515
7327
- msgid "Show a thumb link on slideshow bc."
7328
- msgstr "Zobrazit odkaz na miniatury v Drobečkové navigaci prezentace."
7329
-
7330
- #: wppa-settings-autosave.php:1516
7331
- msgid "Show a link to thumbnail display on an breadcrumb above a slideshow"
7332
- msgstr ""
7333
- "Zobrazit odkaz na zobrazení miniatur v Drobečkové navigaci nad prezentací"
7334
-
7335
- #: wppa-settings-autosave.php:1523
7336
- msgid "Slideshow related visibility settings"
7337
- msgstr "Nastavení související s viditelnosti Prezentace"
7338
-
7339
- #: wppa-settings-autosave.php:1525
7340
- msgid "Start/stop"
7341
- msgstr "Start/stop"
7342
-
7343
- #: wppa-settings-autosave.php:1526
7344
- msgid "Show the Start/Stop slideshow bar."
7345
- msgstr "Zobrazit Start/Stop lištu prezentace"
7346
-
7347
- #: wppa-settings-autosave.php:1527
7348
- msgid ""
7349
- "If checked: display the start/stop slideshow navigation bar above the full-"
7350
- "size images and slideshow"
7351
- msgstr ""
7352
- "Je-li zaškrtnuto: bude pod obrázky v plné velikosti a prezentací zobrazena "
7353
- "navigační lišta - start / stop"
7354
-
7355
- #: wppa-settings-autosave.php:1534
7356
- msgid "Browse bar"
7357
- msgstr "Navigace prohlížení"
7358
-
7359
- #: wppa-settings-autosave.php:1535
7360
- msgid "Show Browse photos bar."
7361
- msgstr "Zobrazit lištu Prohlížení fotografií"
7362
-
7363
- #: wppa-settings-autosave.php:1536
7364
- msgid ""
7365
- "If checked: display the preveous/next navigation bar under the full-size "
7366
- "images and slideshow"
7367
- msgstr ""
7368
- "Je-li zaškrtnuto: bude pod obrázky v plné velikosti a prezentací zobrazena "
7369
- "navigační lišta - předchozí / další"
7370
-
7371
- #: wppa-settings-autosave.php:1543
7372
- msgid "Filmstrip"
7373
- msgstr "Filmový pás"
7374
-
7375
- #: wppa-settings-autosave.php:1544
7376
- msgid "Show Filmstrip navigation bar."
7377
- msgstr "Zobrazit navigační lištu pro Filmový pás"
7378
-
7379
- #: wppa-settings-autosave.php:1545
7380
- msgid ""
7381
- "If checked: display the filmstrip navigation bar under the full_size images "
7382
- "and slideshow"
7383
- msgstr ""
7384
- "Je-li zaškrtnuto: bude pod obrázky v plné velikosti a prezentací zobrazena "
7385
- "navigační lišta - Filmový pás"
7386
-
7387
- #: wppa-settings-autosave.php:1552
7388
- msgid "Film seam"
7389
- msgstr "Filmový šev"
7390
-
7391
- #: wppa-settings-autosave.php:1553
7392
- msgid "Show seam between end and start of film."
7393
- msgstr "Zobrazit šev mezi koncem a začátkem filmu."
7394
-
7395
- #: wppa-settings-autosave.php:1554
7396
- msgid "If checked: display the wrap-around point in the filmstrip"
7397
- msgstr "Je-li zaškrtnuto: bude ve Filmovém pásu zobrazen spojovací bod"
7398
-
7399
- #: wppa-settings-autosave.php:1561
7400
- msgid "Photo name"
7401
- msgstr "Název snímku"
7402
-
7403
- #: wppa-settings-autosave.php:1562
7404
- msgid "Display photo name."
7405
- msgstr "Zobrazit název snímku"
7406
-
7407
- #: wppa-settings-autosave.php:1563
7408
- msgid "If checked: display the name of the photo under the slideshow image."
7409
- msgstr ""
7410
- "Je-li zaškrtnuto: bude pod obrázkem prezentace zobrazen se název fotografie"
7411
-
7412
- #: wppa-settings-autosave.php:1570 wppa-settings-autosave.php:1950
7413
- msgid "Add (Owner)"
7414
- msgstr "Přidat (Majitel)"
7415
-
7416
- #: wppa-settings-autosave.php:1571 wppa-settings-autosave.php:1951
7417
- msgid "Add the uploaders display name in parenthesis to the name."
7418
- msgstr "Přidat k názvu v závorkách zobrazované jméno vkladatele."
7419
-
7420
- #: wppa-settings-autosave.php:1579
7421
- msgid "Photo desc"
7422
- msgstr "Popis fotografií"
7423
-
7424
- #: wppa-settings-autosave.php:1580
7425
- msgid "Display Photo description."
7426
- msgstr "Zobrazit popis fotografií."
7427
-
7428
- #: wppa-settings-autosave.php:1581
7429
- msgid ""
7430
- "If checked: display the description of the photo under the slideshow image."
7431
- msgstr ""
7432
- "Je-li zaškrtnuto: bude pod obrázkem prezentace zobrazen popis fotografie"
7433
-
7434
- #: wppa-settings-autosave.php:1588
7435
- msgid "Hide when empty"
7436
- msgstr "Skryj prázdné výsledky"
7437
-
7438
- #: wppa-settings-autosave.php:1589
7439
- msgid "Hide the descriptionbox when empty."
7440
- msgstr "Skrýt panel popisu, je-li prázdný."
7441
-
7442
- #: wppa-settings-autosave.php:1597
7443
- msgid "Rating system"
7444
- msgstr "Systém hodnocení"
7445
-
7446
- #: wppa-settings-autosave.php:1598
7447
- msgid "Enable the rating system."
7448
- msgstr "Povolit systém hodnocení."
7449
-
7450
- #: wppa-settings-autosave.php:1599
7451
- msgid "If checked, the photo rating system will be enabled."
7452
- msgstr "Je-li zaškrtnuto, bude povolen systém hodnocení fotografií."
7453
-
7454
- #: wppa-settings-autosave.php:1607
7455
- msgid "Comments system"
7456
- msgstr "Systém komentářů"
7457
-
7458
- #: wppa-settings-autosave.php:1608
7459
- msgid "Enable the comments system."
7460
- msgstr "Povolit systém komentářů"
7461
-
7462
- #: wppa-settings-autosave.php:1609
7463
- msgid ""
7464
- "Display the comments box under the fullsize images and let users enter their "
7465
- "comments on individual photos."
7466
- msgstr ""
7467
- "Zobrazit pod obrázky v plné velikosti panel komentářů a umožnit uživatelům "
7468
- "vkládat komentáře k jednotlivým fotografiím."
7469
-
7470
- #: wppa-settings-autosave.php:1617
7471
- msgid "Comment Avatar default"
7472
- msgstr "Výchozí Avatar pro komentáře"
7473
-
7474
- #: wppa-settings-autosave.php:1618
7475
- msgid "Show Avatars with the comments if not --- none ---"
7476
- msgstr "Zobrazit avatary u komentářů, pokud není nastaveno --- žádné ---"
7477
-
7478
- #: wppa-settings-autosave.php:1623
7479
- msgid "mystery man"
7480
- msgstr "mystery man"
7481
-
7482
- #: wppa-settings-autosave.php:1624
7483
- msgid "identicon"
7484
- msgstr "identicon"
7485
-
7486
- #: wppa-settings-autosave.php:1625
7487
- msgid "monsterid"
7488
- msgstr "monsterid"
7489
-
7490
- #: wppa-settings-autosave.php:1626
7491
- msgid "wavatar"
7492
- msgstr "wavatar"
7493
-
7494
- #: wppa-settings-autosave.php:1627
7495
- msgid "retro"
7496
- msgstr "retro"
7497
-
7498
- #: wppa-settings-autosave.php:1628
7499
- msgid "--- url ---"
7500
- msgstr "--- url ---"
7501
-
7502
- #: wppa-settings-autosave.php:1643
7503
- msgid "Comment Avatar url"
7504
- msgstr "URL Avataru pro komentáře"
7505
-
7506
- #: wppa-settings-autosave.php:1644
7507
- msgid "Comment Avatar default url."
7508
- msgstr "Výchozí URL Avataru pro komentáře."
7509
-
7510
- #: wppa-settings-autosave.php:1652
7511
- msgid "Big Browse Buttons"
7512
- msgstr "Velká tlačítka procházení"
7513
-
7514
- #: wppa-settings-autosave.php:1653
7515
- msgid "Enable invisible browsing buttons."
7516
- msgstr "Povolit neviditelná navigační tlačítka procházení"
7517
-
7518
- #: wppa-settings-autosave.php:1654 wppa-settings-autosave.php:2197
7519
- msgid ""
7520
- "If checked, the fullsize image is covered by two invisible areas that act as "
7521
- "browse buttons."
7522
- msgstr ""
7523
- "Je-li zaškrtnuto, překrývají obrázek v plné velikosti dvě neviditelné "
7524
- "oblasti, které fungují jako tlačítka Předchozí / Další."
7525
-
7526
- #: wppa-settings-autosave.php:1655 wppa-settings-autosave.php:2198
7527
- #: wppa-settings-autosave.php:2208
7528
- msgid ""
7529
- "Make sure the Full height (Table I-B2) is properly configured to prevent "
7530
- "these areas to overlap unwanted space."
7531
- msgstr ""
7532
- "Ujistěte se, že Maximální výška (Tabulka I-B2) je správně nakonfigurovaná "
7533
- "tak, aby se v těchto oblastech zabránilo přesahu do nežádoucího prostoru."
7534
-
7535
- #: wppa-settings-autosave.php:1662
7536
- msgid "Ugly Browse Buttons"
7537
- msgstr "Plochá tlačítka procházení"
7538
-
7539
- #: wppa-settings-autosave.php:1663
7540
- msgid "Enable the ugly browsing buttons."
7541
- msgstr "Povolit ošklivá plochá navigační tlačítka procházení"
7542
-
7543
- #: wppa-settings-autosave.php:1664
7544
- msgid "If checked, the fullsize image is covered by two browse buttons."
7545
- msgstr ""
7546
- "Je-li zaškrtnuto, překrývají okraje obrázku v plné velikosti dvě tlačítka - "
7547
- "Předchozí / Další."
7548
-
7549
- #: wppa-settings-autosave.php:1668 wppa-settings-autosave.php:2239
7550
- #: wppa-settings-autosave.php:2250
7551
- msgid "Black"
7552
- msgstr "Černá"
7553
-
7554
- #: wppa-settings-autosave.php:1668
7555
- msgid "Light gray"
7556
- msgstr "Světle šedá"
7557
-
7558
- #: wppa-settings-autosave.php:1675
7559
- msgid "Start/stop icons"
7560
- msgstr "Start/Stop ikony"
7561
-
7562
- #: wppa-settings-autosave.php:1676
7563
- msgid "Show start and stop icons at the center of the slide"
7564
- msgstr "Zobrazit uprostřed snímku prezentace ikony Start a Stop"
7565
-
7566
- #: wppa-settings-autosave.php:1681
7567
- msgid "Black square"
7568
- msgstr "Černý obdélník"
7569
-
7570
- #: wppa-settings-autosave.php:1681
7571
- msgid "Blue square"
7572
- msgstr "Modrý obdélník"
7573
-
7574
- #: wppa-settings-autosave.php:1681
7575
- msgid "Black round"
7576
- msgstr "Černý kroužek"
7577
-
7578
- #: wppa-settings-autosave.php:1688
7579
- msgid "Show custom box"
7580
- msgstr "Zobrazit uživatelský panel"
7581
-
7582
- #: wppa-settings-autosave.php:1689
7583
- msgid "Display the custom box in the slideshow"
7584
- msgstr "Zobrazit v prezentaci uživatelský panel"
7585
-
7586
- #: wppa-settings-autosave.php:1690 wppa-settings-autosave.php:1701
7587
- msgid ""
7588
- "You can fill the custom box with any html you like. It will not be checked, "
7589
- "so it is your own responsability to close tags properly."
7590
- msgstr ""
7591
- "Uživatelský panel můžete vyplnit jakýkoliv HTML kódem. Není kontrolován, "
7592
- "takže je na vaší vlastní zodpovědnosti řádně zavřít tagy."
7593
-
7594
- #: wppa-settings-autosave.php:1691 wppa-settings-autosave.php:1702
7595
- msgid "The position of the box can be defined in Table IX-E."
7596
- msgstr "Umístění panelu může být definováno v Tabulce IX-E."
7597
-
7598
- #: wppa-settings-autosave.php:1699
7599
- msgid "Custom content"
7600
- msgstr "Uživatelský obsah"
7601
-
7602
- #: wppa-settings-autosave.php:1700
7603
- msgid "The content (html) of the custom box."
7604
- msgstr "Obsah (HTML) uživatelského panelu."
7605
-
7606
- #: wppa-settings-autosave.php:1709
7607
- msgid "Slideshow/Number bar"
7608
- msgstr "Číselná lišta prezentace"
7609
-
7610
- #: wppa-settings-autosave.php:1710
7611
- msgid "Display the Slideshow / Number bar."
7612
- msgstr "Zobrazit v prezentaci Číselnou navigační lištu"
7613
-
7614
- #: wppa-settings-autosave.php:1711
7615
- msgid "If checked: display the number boxes on slideshow"
7616
- msgstr "Je-li zaškrtnuto: zobrazí v prezentaci box s čísly snímků"
7617
-
7618
- #: wppa-settings-autosave.php:1719
7619
- msgid "IPTC system"
7620
- msgstr "IPTC systém"
7621
-
7622
- #: wppa-settings-autosave.php:1720
7623
- msgid "Enable the iptc system."
7624
- msgstr "Povolit IPTC systém."
7625
-
7626
- #: wppa-settings-autosave.php:1721
7627
- msgid "Display the iptc box under the fullsize images."
7628
- msgstr "Zobrazit panel IPTC pod fotografiemi v plné velikosti."
7629
-
7630
- #: wppa-settings-autosave.php:1729
7631
- msgid "IPTC open"
7632
- msgstr "IPTC open"
7633
-
7634
- #: wppa-settings-autosave.php:1730
7635
- msgid "Display the iptc box initially opened."
7636
- msgstr "Zobrazte panel IPTC při prvním otevření."
7637
-
7638
- #: wppa-settings-autosave.php:1731
7639
- msgid "Display the iptc box under the fullsize images initially open."
7640
- msgstr ""
7641
- "Zobrazte panel IPTC pod poprvé otevřenými fotografiemi v plné velikosti."
7642
-
7643
- #: wppa-settings-autosave.php:1739
7644
- msgid "EXIF system"
7645
- msgstr "EXIF systém"
7646
-
7647
- #: wppa-settings-autosave.php:1740
7648
- msgid "Enable the exif system."
7649
- msgstr "Povolit EXIF ​​systém."
7650
-
7651
- #: wppa-settings-autosave.php:1741
7652
- msgid "Display the exif box under the fullsize images."
7653
- msgstr "Zobrazte panel EXIF pod fotografiemi v plné velikosti."
7654
-
7655
- #: wppa-settings-autosave.php:1749
7656
- msgid "EXIF open"
7657
- msgstr "EXIF open"
7658
-
7659
- #: wppa-settings-autosave.php:1750
7660
- msgid "Display the exif box initially opened."
7661
- msgstr "Zobrazte panel EXIF při prvním otevření."
7662
-
7663
- #: wppa-settings-autosave.php:1751
7664
- msgid "Display the exif box under the fullsize images initially open."
7665
- msgstr ""
7666
- "Zobrazte panel EXIF pod poprvé otevřenými fotografiemi v plné velikosti."
7667
-
7668
- #: wppa-settings-autosave.php:1759
7669
- msgid "Social media share box related visibility settings"
7670
- msgstr "Nastavení související s panelem Sociálních sítí"
7671
-
7672
- #: wppa-settings-autosave.php:1761
7673
- msgid "Show Share Box"
7674
- msgstr "Panel Sdílení v soc. sítích"
7675
-
7676
- #: wppa-settings-autosave.php:1762
7677
- msgid "Display the share social media buttons box."
7678
- msgstr "Zobrazit panel s tlačítky sdílení v sociálních sítích."
7679
-
7680
- #: wppa-settings-autosave.php:1771 wppa-settings-autosave.php:8268
7681
- msgid "Hide when running"
7682
- msgstr "Při prezentaci skrýt"
7683
-
7684
- #: wppa-settings-autosave.php:1772
7685
- msgid "Hide the SM box when slideshow runs."
7686
- msgstr "Skrýt panel Sdílení v soc. sítích, pokud je prezentace spuštěna. "
7687
-
7688
- #: wppa-settings-autosave.php:1780
7689
- msgid "Show Share Box Widget"
7690
- msgstr "Sdílení soc. sítí ve Widgetech"
7691
-
7692
- #: wppa-settings-autosave.php:1781
7693
- msgid "Display the share social media buttons box in widgets."
7694
- msgstr "Zobrazit ve widgetech panel s tlačítky sdílení v sociálních sítích."
7695
-
7696
- #: wppa-settings-autosave.php:1782
7697
- msgid ""
7698
- "This setting applies to normal slideshows in widgets, not to the "
7699
- "slideshowwidget as that is a slideonly display."
7700
- msgstr ""
7701
- "Toto nastavení platí pro běžné prezentace ve widgetech, nikoliv přímo pro "
7702
- "widget prezentace, který je pouze prezentační zobrazení."
7703
-
7704
- #: wppa-settings-autosave.php:1790
7705
- msgid "Show Share Buttons Thumbs"
7706
- msgstr "Tlačítka Sdílení v Miniaturách"
7707
-
7708
- #: wppa-settings-autosave.php:1791
7709
- msgid "Display the share social media buttons under thumbnails."
7710
- msgstr "Zobrazit pod miniaturami panel s tlačítky sdílení v sociálních sítích."
7711
-
7712
- #: wppa-settings-autosave.php:1800
7713
- msgid "Show Share Buttons Lightbox"
7714
- msgstr "Tlačítka Sdílení v Lightboxu"
7715
-
7716
- #: wppa-settings-autosave.php:1801
7717
- msgid "Display the share social media buttons on lightbox displays."
7718
- msgstr "Zobrazit v Lightboxu panel s tlačítky sdílení v sociálních sítích."
7719
-
7720
- #: wppa-settings-autosave.php:1810
7721
- msgid "Show Share Buttons Mphoto"
7722
- msgstr "Tlačítka Sdílení v MFotu"
7723
-
7724
- #: wppa-settings-autosave.php:1811
7725
- msgid "Display the share social media buttons on mphoto displays."
7726
- msgstr "Zobrazit pod MFoto panel s tlačítky sdílení v sociálních sítích."
7727
-
7728
- #: wppa-settings-autosave.php:1820
7729
- msgid "Show QR Code"
7730
- msgstr "QR kód"
7731
-
7732
- #: wppa-settings-autosave.php:1821
7733
- msgid "Display the QR code in the share box."
7734
- msgstr "Zobrazit v panelu sdílení QR kód."
7735
-
7736
- #: wppa-settings-autosave.php:1829
7737
- msgid "Show Twitter button"
7738
- msgstr "Tlačítko Twitter"
7739
-
7740
- #: wppa-settings-autosave.php:1830
7741
- msgid "Display the Twitter button in the share box."
7742
- msgstr "Zobrazit tlačítko Twitteru v panelu sdílení."
7743
-
7744
- #: wppa-settings-autosave.php:1838
7745
- msgid "Show Google+ button"
7746
- msgstr "Tlačítko Google+"
7747
-
7748
- #: wppa-settings-autosave.php:1839
7749
- msgid "Display the Google+ button in the share box."
7750
- msgstr "Zobrazit tlačítko Google+ v panelu sdílení."
7751
-
7752
- #: wppa-settings-autosave.php:1847
7753
- msgid "Show Pinterest button"
7754
- msgstr "Tlačítko Pinterest"
7755
-
7756
- #: wppa-settings-autosave.php:1848
7757
- msgid "Display the Pintrest button in the share box."
7758
- msgstr "Zobrazit tlačítko Pinterest v panelu sdílení."
7759
-
7760
- #: wppa-settings-autosave.php:1856
7761
- msgid "Show LinkedIn button"
7762
- msgstr "Tlačítko LinkedIn"
7763
-
7764
- #: wppa-settings-autosave.php:1857
7765
- msgid "Display the LinkedIn button in the share box."
7766
- msgstr "Zobrazit tlačítko LinkedIn v panelu sdílení."
7767
-
7768
- #: wppa-settings-autosave.php:1865
7769
- msgid "Show Facebook share button"
7770
- msgstr "Tlačítko Facebooku - sdílení"
7771
-
7772
- #: wppa-settings-autosave.php:1866 wppa-settings-autosave.php:1875
7773
- msgid "Display the Facebook button in the share box."
7774
- msgstr "Zobrazit tlačítko Facebooku v panelu sdílení."
7775
-
7776
- #: wppa-settings-autosave.php:1874
7777
- msgid "Show Facebook like button"
7778
- msgstr "Tlačítko Facebooku - Líbí"
7779
-
7780
- #: wppa-settings-autosave.php:1883
7781
- msgid "Display type"
7782
- msgstr "Typ zobrazení"
7783
-
7784
- #: wppa-settings-autosave.php:1884
7785
- msgid "Select the Facebook button display type."
7786
- msgstr "Vyberte typ zobrazení tlačítka Facebooku."
7787
-
7788
- #: wppa-settings-autosave.php:1887
7789
- msgid "Button with counter"
7790
- msgstr "Tlačítko s čítačem"
7791
-
7792
- #: wppa-settings-autosave.php:1887
7793
- msgid "Box with counter"
7794
- msgstr "Box s čítačem"
7795
-
7796
- #: wppa-settings-autosave.php:1894
7797
- msgid "Show Facebook comment box"
7798
- msgstr "Komentáře Facebook"
7799
-
7800
- #: wppa-settings-autosave.php:1895
7801
- msgid "Display the Facebook comment dialog box in the share box."
7802
- msgstr "Zobrazit v panelu sdílení dialogové okno pro komentář Facebooku."
7803
-
7804
- #: wppa-settings-autosave.php:1903
7805
- msgid "Facebook User Id"
7806
- msgstr "ID uživatele Facebooku"
7807
-
7808
- #: wppa-settings-autosave.php:1904
7809
- msgid "Enter your facebook user id to be able to moderate comments and sends"
7810
- msgstr ""
7811
- "Zadejte vaše ID uživatele Facebooku, abyste mohli moderovat komentáře a "
7812
- "komunikovat."
7813
-
7814
- #: wppa-settings-autosave.php:1912
7815
- msgid "Facebook App Id"
7816
- msgstr "App ID Facebooku"
7817
-
7818
- #: wppa-settings-autosave.php:1913
7819
- msgid "Enter your facebook app id to be able to moderate comments and sends"
7820
- msgstr ""
7821
- "Zadejte vaše AppID Facebooku, abyste mohli moderovat komentáře a komunikovat."
7822
-
7823
- #: wppa-settings-autosave.php:1921
7824
- msgid "Facebook js SDK"
7825
- msgstr "Facebook js SDK"
7826
-
7827
- #: wppa-settings-autosave.php:1922
7828
- msgid "Load Facebook js SDK"
7829
- msgstr "Načíst Facebook js SDK"
7830
-
7831
- #: wppa-settings-autosave.php:1923
7832
- msgid ""
7833
- "Uncheck this box only when there is a conflict with an other plugin that "
7834
- "also loads the Facebook js SDK."
7835
- msgstr ""
7836
- "Zaškrtnutí tohoto políčka zrušte pouze v případě, že nějaký jiný plugin "
7837
- "rovněž načítá Facebook js SDK a dochází ke konfliktu. "
7838
-
7839
- #: wppa-settings-autosave.php:1930
7840
- msgid "Share single image"
7841
- msgstr "Sdílet jednotlivý snímek"
7842
-
7843
- #: wppa-settings-autosave.php:1931
7844
- msgid "Share a link to a single image, not the slideshow."
7845
- msgstr "Sdílet odkaz na jedinou fotografii, nikoli celou prezentaci."
7846
-
7847
- #: wppa-settings-autosave.php:1932
7848
- msgid ""
7849
- "The sharelink points to a page with a single image rather than to the page "
7850
- "with the photo in the slideshow."
7851
- msgstr ""
7852
- "Odkaz sdílení míří na stránku s jedinou fotografií, nikoli na stránku s "
7853
- "fotografií v prezentaci."
7854
-
7855
- #: wppa-settings-autosave.php:1939
7856
- msgid "Thumbnail display related visibility settings"
7857
- msgstr "Nastavení související s viditelností zobrazení miniatur"
7858
-
7859
- #: wppa-settings-autosave.php:1941
7860
- msgid "Thumbnail name"
7861
- msgstr "Miniatury - Název"
7862
-
7863
- #: wppa-settings-autosave.php:1942
7864
- msgid "Display Thumbnail name."
7865
- msgstr "Zobrazit u miniatury název fotografie."
7866
-
7867
- #: wppa-settings-autosave.php:1943
7868
- msgid "Display photo name under thumbnail images."
7869
- msgstr "Zobrazí pod miniaturami fotografií jejich názvy."
7870
-
7871
- #: wppa-settings-autosave.php:1959
7872
- msgid "Thumbnail desc"
7873
- msgstr "Miniatury - Popis"
7874
-
7875
- #: wppa-settings-autosave.php:1960
7876
- msgid "Display Thumbnail description."
7877
- msgstr "Zobrazit u miniatur popis fotografií."
7878
-
7879
- #: wppa-settings-autosave.php:1961
7880
- msgid "Display description of the photo under thumbnail images."
7881
- msgstr "Zobrazí popis fotografie pod miniaturami fotografií."
7882
-
7883
- #: wppa-settings-autosave.php:1968
7884
- msgid "Thumbnail rating"
7885
- msgstr "Miniatury - Hodnocení"
7886
-
7887
- #: wppa-settings-autosave.php:1969
7888
- msgid "Display Thumbnail Rating."
7889
- msgstr "Zobrazit u miniatur hodnocení fotografií."
7890
-
7891
- #: wppa-settings-autosave.php:1970
7892
- msgid "Display the rating of the photo under the thumbnail image."
7893
- msgstr "Zobrazí pod miniaturami fotografií jejich hodnocení."
7894
-
7895
- #: wppa-settings-autosave.php:1977
7896
- msgid "Thumbnail comcount"
7897
- msgstr "Miniatury - Počet komentářů"
7898
-
7899
- #: wppa-settings-autosave.php:1978
7900
- msgid "Display Thumbnail Comment count."
7901
- msgstr "Zobrazit u miniatur počet komentářů."
7902
-
7903
- #: wppa-settings-autosave.php:1979
7904
- msgid "Display the number of comments to the photo under the thumbnail image."
7905
- msgstr "Zobrazí pod miniaturou fotografie počet komentářů."
7906
-
7907
- #: wppa-settings-autosave.php:1986
7908
- msgid "Thumbnail viewcount"
7909
- msgstr "Miniatury - Počet shlédnutí"
7910
-
7911
- #: wppa-settings-autosave.php:1987
7912
- msgid "Display the number of views."
7913
- msgstr "Zobrazit počet shlédnutí fotografie."
7914
-
7915
- #: wppa-settings-autosave.php:1988
7916
- msgid "Display the number of views under the thumbnail image."
7917
- msgstr "Zobrazí pod miniaturou fotografie počet shlédnutí."
7918
-
7919
- #: wppa-settings-autosave.php:1995
7920
- msgid "Thumbnail virt album"
7921
- msgstr "Virtuální album miniatur"
7922
-
7923
- #: wppa-settings-autosave.php:1996
7924
- msgid "Display the real album name on virtual album display."
7925
- msgstr "Při zobrazení virtuálního alba zobrazit skutečné jméno alba"
7926
-
7927
- #: wppa-settings-autosave.php:1997
7928
- msgid ""
7929
- "Display the album name of the photo in parenthesis under the thumbnail on "
7930
- "virtual album displays like search results etc."
7931
- msgstr ""
7932
- "Pod miniaturami ve virtuálním albu (jako např. výsledky hledání apod.) "
7933
- "zobrazit v závorkách jméno skutečného alba kam fotografie patří."
7934
-
7935
- #: wppa-settings-autosave.php:2004
7936
- msgid "Thumbnail video"
7937
- msgstr "Miniatury - Video"
7938
-
7939
- #: wppa-settings-autosave.php:2005
7940
- msgid "Show video controls on thumbnail displays."
7941
- msgstr "Zobrazit ovládání videa při zobrazení miniatur fotografií."
7942
-
7943
- #: wppa-settings-autosave.php:2006
7944
- msgid ""
7945
- "Works on default thumbnail type only. You can play the video only when the "
7946
- "link is set to no link at all."
7947
- msgstr ""
7948
- "Funguje pouze pro výchozí typ miniatury. Video můžete spustit pouze v "
7949
- "případě, že je odkaz nastaven na 'žádný odkaz'."
7950
-
7951
- #: wppa-settings-autosave.php:2013
7952
- msgid "Thumbnail audio"
7953
- msgstr "Miniatury - Audio"
7954
-
7955
- #: wppa-settings-autosave.php:2014
7956
- msgid "Show audio controls on thumbnail displays."
7957
- msgstr "Zobrazit ovládání audia při zobrazení miniatur fotografií."
7958
-
7959
- #: wppa-settings-autosave.php:2015
7960
- msgid "Works on default thumbnail type only."
7961
- msgstr "Funguje pouze pro výchozí typ miniatury."
7962
-
7963
- #: wppa-settings-autosave.php:2022
7964
- msgid "Popup name"
7965
- msgstr "Název ve vyskakovacím okně"
7966
-
7967
- #: wppa-settings-autosave.php:2023
7968
- msgid "Display Thumbnail name on popup."
7969
- msgstr "Zobrazit název u miniatury ve vyskakovacím okně."
7970
-
7971
- #: wppa-settings-autosave.php:2024
7972
- msgid "Display photo name under thumbnail images on the popup."
7973
- msgstr "Zobrazí název fotografie pod miniaturou ve vyskakovacím okně."
7974
-
7975
- #: wppa-settings-autosave.php:2031
7976
- msgid "Popup (owner)"
7977
- msgstr "(Majitel) ve vyskakovacím okně"
7978
-
7979
- #: wppa-settings-autosave.php:2032
7980
- msgid "Display owner on popup."
7981
- msgstr "Zobrazit (Majitele) ve vyskakovacím okně."
7982
-
7983
- #: wppa-settings-autosave.php:2033
7984
- msgid "Display photo owner under thumbnail images on the popup."
7985
- msgstr "Zobrazí majitele fotografie pod miniaturou ve vyskakovacím okně."
7986
-
7987
- #: wppa-settings-autosave.php:2040
7988
- msgid "Popup desc"
7989
- msgstr "Popis ve vyskakovacím okně"
7990
-
7991
- #: wppa-settings-autosave.php:2041
7992
- msgid "Display Thumbnail description on popup."
7993
- msgstr "Zobrazit popis u miniatury ve vyskakovacím okně"
7994
-
7995
- #: wppa-settings-autosave.php:2042
7996
- msgid "Display description of the photo under thumbnail images on the popup."
7997
- msgstr "Zobrazí popis fotografie u miniatury ve vyskakovacím okně."
7998
-
7999
- #: wppa-settings-autosave.php:2049
8000
- msgid "Popup desc no links"
8001
- msgstr "Popis bez odkazů"
8002
-
8003
- #: wppa-settings-autosave.php:2050
8004
- msgid "Strip html anchor tags from descriptions on popups"
8005
- msgstr "Odebere HTML anchor tagy z popisů ve vyskakovacím okně"
8006
-
8007
- #: wppa-settings-autosave.php:2051
8008
- msgid ""
8009
- "Use this option to prevent the display of links that cannot be activated."
8010
- msgstr "Tato možnost slouží ke skrytí odkazů, které nesmí být aktivovány."
8011
-
8012
- #: wppa-settings-autosave.php:2058
8013
- msgid "Popup rating"
8014
- msgstr "Hodnocení ve vyskakovacím okně"
8015
-
8016
- #: wppa-settings-autosave.php:2059
8017
- msgid "Display Thumbnail Rating on popup."
8018
- msgstr "Zobrazit hodnocení u miniatury ve vyskakovacím okně."
8019
-
8020
- #: wppa-settings-autosave.php:2060
8021
- msgid "Display the rating of the photo under the thumbnail image on the popup."
8022
- msgstr "Zobrazí hodnocení pod miniaturou fotografie ve vyskakovacím okně."
8023
-
8024
- #: wppa-settings-autosave.php:2067
8025
- msgid "Popup comcount"
8026
- msgstr "Počet komentářů ve vyskakovacím okně"
8027
-
8028
- #: wppa-settings-autosave.php:2068
8029
- msgid "Display Thumbnail Comment count on popup."
8030
- msgstr "Zobrazit počet komentářů u miniatury ve vyskakovacím okně."
8031
-
8032
- #: wppa-settings-autosave.php:2069
8033
- msgid ""
8034
- "Display the number of comments of the photo under the thumbnail image on the "
8035
- "popup."
8036
- msgstr ""
8037
- "Zobrazí počet komentářů pod miniaturou fotografie ve vyskakovacím okně."
8038
-
8039
- #: wppa-settings-autosave.php:2076
8040
- msgid "Show rating count"
8041
- msgstr "Zobrazit Počet hodnocení"
8042
-
8043
- #: wppa-settings-autosave.php:2077
8044
- msgid "Display the number of votes along with average ratings."
8045
- msgstr "Zobrazit počet hlasů, průměrné hodnocení."
8046
-
8047
- #: wppa-settings-autosave.php:2078
8048
- msgid ""
8049
- "If checked, the number of votes is displayed along with average rating "
8050
- "displays on thumbnail and popup displays."
8051
- msgstr ""
8052
- "Je-li zaškrtnuto, bude při zobrazení miniatury a vyskakovacího okna zobrazen "
8053
- "počet hlasů a průměrné hodnocení."
8054
-
8055
- #: wppa-settings-autosave.php:2085
8056
- msgid "Show name on thumb area"
8057
- msgstr "Zobrazit název alba u miniatury"
8058
-
8059
- #: wppa-settings-autosave.php:2086
8060
- msgid "Select if and where to display the album name on the thumbnail display."
8061
- msgstr "Vyberte, zda a kde se zobrazí název alba při zobrazení miniatury."
8062
-
8063
- #: wppa-settings-autosave.php:2089 wppa-settings-autosave.php:2100
8064
- msgid "None"
8065
- msgstr "Nikde"
8066
-
8067
- #: wppa-settings-autosave.php:2089 wppa-settings-autosave.php:2100
8068
- #: wppa-settings-autosave.php:3219
8069
- msgid "At the top"
8070
- msgstr "Nahoře"
8071
-
8072
- #: wppa-settings-autosave.php:2089 wppa-settings-autosave.php:2100
8073
- #: wppa-settings-autosave.php:3219
8074
- msgid "At the bottom"
8075
- msgstr "Dole"
8076
-
8077
- #: wppa-settings-autosave.php:2096
8078
- msgid "Show desc on thumb area"
8079
- msgstr "Zobrazit popis alba u miniatury"
8080
-
8081
- #: wppa-settings-autosave.php:2097
8082
- msgid ""
8083
- "Select if and where to display the album description on the thumbnail "
8084
- "display."
8085
- msgstr "Vyberte, zda a kde se zobrazí popis alba při zobrazení miniatury."
8086
-
8087
- #: wppa-settings-autosave.php:2107
8088
- msgid "Show Edit/Delete links"
8089
- msgstr "Zobrazit volby Upravit/Smazat"
8090
-
8091
- #: wppa-settings-autosave.php:2108
8092
- msgid "Show these links under default thumbnails for owner and admin."
8093
- msgstr ""
8094
- "Zobrazit majiteli a administrátorovi tyto volby pod výchozími miniaturami."
8095
-
8096
- #: wppa-settings-autosave.php:2116
8097
- msgid "Show empty thumbnail area"
8098
- msgstr "Zobrazit prázdnou plochu miniatury"
8099
-
8100
- #: wppa-settings-autosave.php:2117
8101
- msgid "Display thumbnail areas with upload link only for empty albums."
8102
- msgstr ""
8103
- "Pro prázdná alba zobrazit plochu miniatury pouze s odkazem pro nahrávání."
8104
-
8105
- #: wppa-settings-autosave.php:2126
8106
- msgid "Album cover related visibility settings"
8107
- msgstr "Nastavení související s viditelností Obalů alb"
8108
-
8109
- #: wppa-settings-autosave.php:2128
8110
- msgid "Covertext"
8111
- msgstr "Text na obalu"
8112
-
8113
- #: wppa-settings-autosave.php:2129
8114
- msgid "Show the text on the album cover."
8115
- msgstr "Zobrazit text na obalu alba"
8116
-
8117
- #: wppa-settings-autosave.php:2130
8118
- msgid "Display the album decription on the album cover"
8119
- msgstr "Zobrazí popis alba na obalu"
8120
-
8121
- #: wppa-settings-autosave.php:2138
8122
- msgid "Enable the slideshow."
8123
- msgstr "Povolit prezentaci."
8124
-
8125
- #: wppa-settings-autosave.php:2139
8126
- msgid ""
8127
- "If you do not want slideshows: uncheck this box. Browsing full size images "
8128
- "will remain possible."
8129
- msgstr ""
8130
- "Pokud nechcete používat prezentace: zrušte zaškrtnutí tohoto políčka. "
8131
- "Procházení obrázků plné velikosti bude i nadále možné."
8132
-
8133
- #: wppa-settings-autosave.php:2146
8134
- msgid "Slideshow/Browse"
8135
- msgstr "Prezentace/Procházet"
8136
-
8137
- #: wppa-settings-autosave.php:2147
8138
- msgid "Display the Slideshow / Browse photos link on album covers"
8139
- msgstr "Zobrazit odkaz Prezentace / Procházet fotografie na obalech alba"
8140
-
8141
- #: wppa-settings-autosave.php:2148
8142
- msgid ""
8143
- "This setting causes the Slideshow link to be displayed on the album cover."
8144
- msgstr "Toto nastavení zobrazí na obalu alba odkaz na Prezentaci."
8145
-
8146
- #: wppa-settings-autosave.php:2149
8147
- msgid ""
8148
- "If slideshows are disabled in item 2 in this table, you will see a browse "
8149
- "link to fullsize images."
8150
- msgstr ""
8151
- "Jsou-li prezentace zakázány v bodu 2 této tabulky, zobrazí se odkaz "
8152
- "Procházet nasměrovaný na fotografie v plné velikosti."
8153
-
8154
- #: wppa-settings-autosave.php:2150
8155
- msgid "If you do not want the browse link either, uncheck this item."
8156
- msgstr "Pokud chcete zakázat i Procházení, zrušte zaškrtnutí této volby."
8157
-
8158
- #: wppa-settings-autosave.php:2157
8159
- msgid "View ..."
8160
- msgstr "Zobrazit ..."
8161
-
8162
- #: wppa-settings-autosave.php:2158
8163
- msgid "Display the View xx albums and yy photos link on album covers"
8164
- msgstr "Na obalech alb zobrazit odkaz 'Zobrazit xx alb a yy fotografií' "
8165
-
8166
- #: wppa-settings-autosave.php:2166
8167
- msgid "Treecount"
8168
- msgstr "Hierarchický počet"
8169
-
8170
- #: wppa-settings-autosave.php:2167
8171
- msgid "Disaplay the total number of (sub)albums and photos in subalbums"
8172
- msgstr "Zobrazit celkový počet (sub)alb a fotografií v subalbech"
8173
-
8174
- #: wppa-settings-autosave.php:2168
8175
- msgid ""
8176
- "Displays the total number of sub albums and photos in the entire album tree "
8177
- "in parenthesis if the numbers differ from the direct content of the album."
8178
- msgstr ""
8179
- "Zobrazí v závorkách celkový počet sub-alb a fotografií v celém stromu alba, "
8180
- "pokud se počty liší od přímého obsahu alba."
8181
-
8182
- #: wppa-settings-autosave.php:2175
8183
- msgid "Show categories"
8184
- msgstr "Zobrazit kategorie"
8185
-
8186
- #: wppa-settings-autosave.php:2176
8187
- msgid "Display the album categories on the covers."
8188
- msgstr "Zobrazit kategorie alb na obalech."
8189
-
8190
- #: wppa-settings-autosave.php:2184
8191
- msgid "Skip empty albums"
8192
- msgstr "Vynechat prázdná alba"
8193
-
8194
- #: wppa-settings-autosave.php:2185
8195
- msgid "Do not show empty albums, except for admin and owner."
8196
- msgstr "Nezobrazovat prázdná alba, s výjimkou administrátora a majitele."
8197
-
8198
- #: wppa-settings-autosave.php:2193
8199
- msgid "Widget related visibility settings"
8200
- msgstr "Nastavení související s viditelností Widgetů"
8201
-
8202
- #: wppa-settings-autosave.php:2195
8203
- msgid "Big Browse Buttons in widget"
8204
- msgstr "Velká tlačítka Procházet ve widgetu"
8205
-
8206
- #: wppa-settings-autosave.php:2196
8207
- msgid "Enable invisible browsing buttons in widget slideshows."
8208
- msgstr ""
8209
- "Povolit ve widgetu neviditelná navigační tlačítka procházení pro prezentaci."
8210
-
8211
- #: wppa-settings-autosave.php:2205
8212
- msgid "Ugly Browse Buttons in widget"
8213
- msgstr "Plochá tlačítka Procházet ve widgetu"
8214
-
8215
- #: wppa-settings-autosave.php:2206
8216
- msgid "Enable ugly browsing buttons in widget slideshows."
8217
- msgstr "Ve Widgetech povolit ošklivá plochá navigační tlačítka pro procházení."
8218
-
8219
- #: wppa-settings-autosave.php:2207
8220
- msgid "If checked, the fullsize image is covered by browse buttons."
8221
- msgstr ""
8222
- "Je-li zaškrtnuto, překrývají okraje obrázku v plné velikosti dvě tlačítka - "
8223
- "Předchozí / Další."
8224
-
8225
- #: wppa-settings-autosave.php:2215
8226
- msgid "Album widget tooltip"
8227
- msgstr "Widget Album - popis"
8228
-
8229
- #: wppa-settings-autosave.php:2216
8230
- msgid "Show the album description on hoovering thumbnail in album widget"
8231
- msgstr "Ve widgetu Album zobrazit popis alba při najetí na jeho miniaturu"
8232
-
8233
- #: wppa-settings-autosave.php:2224 wppa-settings-autosave.php:4135
8234
- msgid ""
8235
- "Lightbox related settings. These settings have effect only when Table IX-J3 "
8236
- "is set to wppa"
8237
- msgstr ""
8238
- "Nastavení související s Lightboxem. Tato nastavení mají smysl pouze je-li "
8239
- "Tabulka IX-J3 nastavena na wppa"
8240
-
8241
- #: wppa-settings-autosave.php:2226
8242
- msgid "Overlay Close label text"
8243
- msgstr "Překrytí - Text pro Zavřít"
8244
-
8245
- #: wppa-settings-autosave.php:2227
8246
- msgid "The text label for the cross exit symbol."
8247
- msgstr "Textový popisek pro křížek - symbol pro zavřít."
8248
-
8249
- #: wppa-settings-autosave.php:2228
8250
- msgid ""
8251
- "This text may be multilingual according to the qTranslate short tags specs."
8252
- msgstr "Použijete-li krátké kódy qTranslate, může tento text být vícejazyčný."
8253
-
8254
- #: wppa-settings-autosave.php:2235
8255
- msgid "Overlay theme color"
8256
- msgstr "Překrytí - Barva motivu"
8257
-
8258
- #: wppa-settings-autosave.php:2236
8259
- msgid "The color of the image border and text background."
8260
- msgstr "Barva ohraničení fotografie a pozadí textu."
8261
-
8262
- #: wppa-settings-autosave.php:2239 wppa-settings-autosave.php:2250
8263
- msgid "White"
8264
- msgstr "Bílá"
8265
-
8266
- #: wppa-settings-autosave.php:2246
8267
- msgid "Overlay background color"
8268
- msgstr "Překrytí - Barva pozadí"
8269
-
8270
- #: wppa-settings-autosave.php:2247
8271
- msgid "The color of the outer background."
8272
- msgstr "Barva vnějšího pozadí."
8273
-
8274
- #: wppa-settings-autosave.php:2257
8275
- msgid "Overlay slide name"
8276
- msgstr "Překrytí prezentace - Název"
8277
-
8278
- #: wppa-settings-autosave.php:2258
8279
- msgid "Show name if from slide."
8280
- msgstr "V Lightboxu aktivovaném z prezentace zobrazit název fotografie."
8281
-
8282
- #: wppa-settings-autosave.php:2259
8283
- msgid ""
8284
- "Shows the photos name on a lightbox display when initiated from a slide."
8285
- msgstr ""
8286
- "Pokud aktivujete Lightbox zobrazení ze snímku prezentace, zobrazí se v něm "
8287
- "název fotografie."
8288
-
8289
- #: wppa-settings-autosave.php:2260 wppa-settings-autosave.php:2270
8290
- msgid ""
8291
- "This setting also applies to film thumbnails if Table VI-11 is set to "
8292
- "lightbox overlay."
8293
- msgstr ""
8294
- "Pokud je v Tabulce VI-11 nastaven na lightbox překrytí. Toto nastavení platí "
8295
- "i pro miniatury film miniatury ."
8296
-
8297
- #: wppa-settings-autosave.php:2267
8298
- msgid "Overlay slide desc"
8299
- msgstr "Překrytí prezentace - Popis"
8300
-
8301
- #: wppa-settings-autosave.php:2268
8302
- msgid "Show description if from slide."
8303
- msgstr "V Lightboxu aktivovaném z prezentace zobrazit popis fotografie."
8304
-
8305
- #: wppa-settings-autosave.php:2269
8306
- msgid ""
8307
- "Shows the photos description on a lightbox display when initiated from a "
8308
- "slide."
8309
- msgstr ""
8310
- "Pokud aktivujete Lightbox zobrazení ze snímku prezentace, zobrazí se v něm "
8311
- "popis fotografie."
8312
-
8313
- #: wppa-settings-autosave.php:2277
8314
- msgid "Overlay thumb name"
8315
- msgstr "Překrytí Miniatury - Název"
8316
-
8317
- #: wppa-settings-autosave.php:2278
8318
- msgid "Show the photos name if from thumb."
8319
- msgstr "V Lightboxu aktivovaném z miniatury zobrazit název fotografie."
8320
-
8321
- #: wppa-settings-autosave.php:2279
8322
- msgid ""
8323
- "Shows the name on a lightbox display when initiated from a standard "
8324
- "thumbnail or a widget thumbnail."
8325
- msgstr ""
8326
- "Pokud aktivujete Lightbox zobrazení z miniatury (standardní i z widgetu), "
8327
- "zobrazí se v něm název fotografie."
8328
-
8329
- #: wppa-settings-autosave.php:2280 wppa-settings-autosave.php:2290
8330
- msgid ""
8331
- "This setting applies to standard thumbnails, thumbnail-, comment-, topten- "
8332
- "and lasten-widget."
8333
- msgstr ""
8334
- "Toto nastavení platí pro standardní miniatury a widgety Miniatury, "
8335
- "Komentáře, TopTen a LastTen."
8336
-
8337
- #: wppa-settings-autosave.php:2287
8338
- msgid "Overlay thumb desc"
8339
- msgstr "Překrytí Miniatury - Popis"
8340
-
8341
- #: wppa-settings-autosave.php:2288
8342
- msgid "Show description if from thumb."
8343
- msgstr "V Lightboxu aktivovaném z miniatury zobrazit popis fotografie."
8344
-
8345
- #: wppa-settings-autosave.php:2289
8346
- msgid ""
8347
- "Shows the photos description on a lightbox display when initiated from a "
8348
- "standard thumbnail or a widget thumbnail."
8349
- msgstr ""
8350
- "Pokud aktivujete Lightbox zobrazení z miniatury (standardní i z widgetu), "
8351
- "zobrazí se v něm popis fotografie."
8352
-
8353
- #: wppa-settings-autosave.php:2297
8354
- msgid "Overlay potd name"
8355
- msgstr "Překrytí FD - Název"
8356
-
8357
- #: wppa-settings-autosave.php:2298
8358
- msgid "Show the photos name if from photo of the day."
8359
- msgstr "V Lightboxu aktivovaném z Fotografie Dne zobrazit název fotografie."
8360
-
8361
- #: wppa-settings-autosave.php:2299
8362
- msgid ""
8363
- "Shows the name on a lightbox display when initiated from the photo of the "
8364
- "day."
8365
- msgstr ""
8366
- "Pokud aktivujete Lightbox zobrazení z widgetu Fotografie Dne, zobrazí se v "
8367
- "něm název fotografie."
8368
-
8369
- #: wppa-settings-autosave.php:2306
8370
- msgid "Overlay potd desc"
8371
- msgstr "Překrytí FD - Popis"
8372
-
8373
- #: wppa-settings-autosave.php:2307
8374
- msgid "Show description if from from photo of the day."
8375
- msgstr "V Lightboxu aktivovaném z Fotografie Dne zobrazit popis fotografie."
8376
-
8377
- #: wppa-settings-autosave.php:2308
8378
- msgid ""
8379
- "Shows the photos description on a lightbox display when initiated from the "
8380
- "photo of the day."
8381
- msgstr ""
8382
- "Pokud aktivujete Lightbox zobrazení z widgetu Fotografie Dne, zobrazí se v "
8383
- "něm popis fotografie."
8384
-
8385
- #: wppa-settings-autosave.php:2315
8386
- msgid "Overlay sphoto name"
8387
- msgstr "Překrytí SF - Název"
8388
-
8389
- #: wppa-settings-autosave.php:2316
8390
- msgid "Show the photos name if from a single photo."
8391
- msgstr ""
8392
- "V Lightboxu aktivovaném ze Single Fotografie zobrazit název fotografie."
8393
-
8394
- #: wppa-settings-autosave.php:2317
8395
- msgid ""
8396
- "Shows the name on a lightbox display when initiated from a single photo."
8397
- msgstr ""
8398
- "Pokud aktivujete Lightbox zobrazení ze Single Fotografie, zobrazí se v něm "
8399
- "název fotografie."
8400
-
8401
- #: wppa-settings-autosave.php:2324
8402
- msgid "Overlay sphoto desc"
8403
- msgstr "Překrytí SF - Popis"
8404
-
8405
- #: wppa-settings-autosave.php:2325
8406
- msgid "Show description if from from a single photo."
8407
- msgstr ""
8408
- "V Lightboxu aktivovaném ze Single Fotografie zobrazit popis fotografie."
8409
-
8410
- #: wppa-settings-autosave.php:2326
8411
- msgid ""
8412
- "Shows the photos description on a lightbox display when initiated from a "
8413
- "single photo."
8414
- msgstr ""
8415
- "Pokud aktivujete Lightbox zobrazení ze Single Fotografie, zobrazí se v něm "
8416
- "popis fotografie."
8417
-
8418
- #: wppa-settings-autosave.php:2333
8419
- msgid "Overlay mphoto name"
8420
- msgstr "Překrytí MF - Název"
8421
-
8422
- #: wppa-settings-autosave.php:2334
8423
- msgid "Show the photos name if from a single media style photo."
8424
- msgstr ""
8425
- "V Lightboxu aktivovaném ze Single Média Fotografie zobrazit název fotografie."
8426
-
8427
- #: wppa-settings-autosave.php:2335
8428
- msgid ""
8429
- "Shows the name on a lightbox display when initiated from a single media "
8430
- "style photo."
8431
- msgstr ""
8432
- "Pokud aktivujete Lightbox zobrazení ze Single Média Fotografie, zobrazí se v "
8433
- "něm název fotografie."
8434
-
8435
- #: wppa-settings-autosave.php:2342
8436
- msgid "Overlay mphoto desc"
8437
- msgstr "Překrytí MF - Popis"
8438
-
8439
- #: wppa-settings-autosave.php:2343
8440
- msgid "Show description if from from a media style photo."
8441
- msgstr ""
8442
- "V Lightboxu aktivovaném ze Single Média Fotografie zobrazit popis fotografie."
8443
-
8444
- #: wppa-settings-autosave.php:2344
8445
- msgid ""
8446
- "Shows the photos description on a lightbox display when initiated from a "
8447
- "single media style photo."
8448
- msgstr ""
8449
- "Pokud aktivujete Lightbox zobrazení ze Single Média Fotografie, zobrazí se v "
8450
- "něm popis fotografie."
8451
-
8452
- #: wppa-settings-autosave.php:2351
8453
- msgid "Overlay albumwidget name"
8454
- msgstr "Překrytí widgetu Album - Název"
8455
-
8456
- #: wppa-settings-autosave.php:2352
8457
- msgid "Show the photos name if from the album widget."
8458
- msgstr "V Lightboxu aktivovaném z widgetu Album zobrazit název fotografie."
8459
-
8460
- #: wppa-settings-autosave.php:2353
8461
- msgid ""
8462
- "Shows the name on a lightbox display when initiated from the album widget."
8463
- msgstr ""
8464
- "Pokud aktivujete Lightbox zobrazení z widgetu Album, zobrazí se v něm název "
8465
- "fotografie."
8466
-
8467
- #: wppa-settings-autosave.php:2360
8468
- msgid "Overlay albumwidget desc"
8469
- msgstr "Překrytí widgetu Album - Popis"
8470
-
8471
- #: wppa-settings-autosave.php:2361
8472
- msgid "Show description if from from the album widget."
8473
- msgstr "V Lightboxu aktivovaném z widgetu Album zobrazit popis fotografie."
8474
-
8475
- #: wppa-settings-autosave.php:2362
8476
- msgid ""
8477
- "Shows the photos description on a lightbox display when initiated from the "
8478
- "album widget."
8479
- msgstr ""
8480
- "Pokud aktivujete Lightbox zobrazení z widgetu Album, zobrazí se v něm popis "
8481
- "fotografie."
8482
-
8483
- #: wppa-settings-autosave.php:2369
8484
- msgid "Overlay coverphoto name"
8485
- msgstr "Překrytí titulní fotografie - Název"
8486
-
8487
- #: wppa-settings-autosave.php:2370
8488
- msgid "Show the photos name if from the album cover."
8489
- msgstr "V Lightboxu aktivovaném z Obalu alba zobrazit název fotografie."
8490
-
8491
- #: wppa-settings-autosave.php:2371
8492
- msgid ""
8493
- "Shows the name on a lightbox display when initiated from the album "
8494
- "coverphoto."
8495
- msgstr ""
8496
- "Pokud aktivujete Lightbox zobrazení z titulní fotografie obalu alba, zobrazí "
8497
- "se v něm název fotografie."
8498
-
8499
- #: wppa-settings-autosave.php:2378
8500
- msgid "Overlay coverphoto desc"
8501
- msgstr "Překrytí titulní fotografie - Popis"
8502
-
8503
- #: wppa-settings-autosave.php:2379
8504
- msgid "Show description if from from the album cover."
8505
- msgstr "V Lightboxu aktivovaném z Obalu alba zobrazit popis fotografie."
8506
-
8507
- #: wppa-settings-autosave.php:2380
8508
- msgid ""
8509
- "Shows the photos description on a lightbox display when initiated from the "
8510
- "album coverphoto."
8511
- msgstr ""
8512
- "Pokud aktivujete Lightbox zobrazení z titulní fotografie obalu alba, zobrazí "
8513
- "se v něm popis fotografie."
8514
-
8515
- #: wppa-settings-autosave.php:2387
8516
- msgid "Overlay add owner"
8517
- msgstr "Překrytí - přidat majitele"
8518
-
8519
- #: wppa-settings-autosave.php:2388
8520
- msgid "Add the owner to the photo name on lightbox displays."
8521
- msgstr "Přidat jméno majitele k názvu fotografie v zobrazení Lightboxu"
8522
-
8523
- #: wppa-settings-autosave.php:2389
8524
- msgid ""
8525
- "This setting is independant of the show name switches and is a global "
8526
- "setting."
8527
- msgstr ""
8528
- "Toto nastavení je globálním nastavením a je nezávislé na přepínačích "
8529
- "zobrazení názvu."
8530
-
8531
- #: wppa-settings-autosave.php:2396
8532
- msgid "Overlay show start/stop"
8533
- msgstr "Překrytí - zobrazit Start/stop"
8534
-
8535
- #: wppa-settings-autosave.php:2397
8536
- msgid "Show Start and Stop for running slideshow on lightbox."
8537
- msgstr "Zobrazit v prezentaci spuštěné v Lightboxu tlačítka Start a Stop"
8538
-
8539
- #: wppa-settings-autosave.php:2405
8540
- msgid "Overlay show legenda"
8541
- msgstr "Překrytí - zobrazit legendu"
8542
-
8543
- #: wppa-settings-autosave.php:2406
8544
- msgid "Show \"Press f for fullsize\" etc. on lightbox."
8545
- msgstr ""
8546
- "Zobrazit v Lightboxu legendu jako např.: \"Stiskni pro zobrazení v plné "
8547
- "velikosti\""
8548
-
8549
- #: wppa-settings-autosave.php:2407
8550
- msgid "Independant of this setting, it will not show up on mobile devices."
8551
- msgstr ""
8552
- "Na mobilních zařízeních legenda nebude zobrazována (bez ohledu na toto "
8553
- "nastavení)"
8554
-
8555
- #: wppa-settings-autosave.php:2414
8556
- msgid "Show fullscreen icons"
8557
- msgstr "Překrytí - ikony velikosti zobrazení"
8558
-
8559
- #: wppa-settings-autosave.php:2415
8560
- msgid "Shows fullscreen and back to normal icon buttons on upper right corner"
8561
- msgstr "V pravém horním rohu zobrazit tlačítka Maximalizovat a Zpět z maxima"
8562
-
8563
- #: wppa-settings-autosave.php:2423
8564
- msgid "Overlay show counter"
8565
- msgstr "Překrytí - zobrazit čítač"
8566
-
8567
- #: wppa-settings-autosave.php:2424
8568
- msgid "Show the x/y counter below the image."
8569
- msgstr "Pod obrázkem zobrazit x/y čítač."
8570
-
8571
- #: wppa-settings-autosave.php:2432
8572
- msgid "Show Zoom in"
8573
- msgstr "Překrytí - zobrazit Přiblížit"
8574
-
8575
- #: wppa-settings-autosave.php:2433
8576
- msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
8577
- msgstr "Zobrazit legendu \"Přiblížit\" společně s kurzorem lupa."
8578
-
8579
- #: wppa-settings-autosave.php:2434
8580
- msgid ""
8581
- "If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
8582
- "contains the photo name."
8583
- msgstr ""
8584
- "pokud v nastavení velikosti lupy v Tabulce I-G2 vyberete --- žádné ---, bude "
8585
- "legenda obsahovat název fotografie. "
8586
-
8587
- #: wppa-settings-autosave.php:2442
8588
- msgid "Frontend upload configuration settings"
8589
- msgstr "Konfigurační nastavení nahrávání z frontendu"
8590
-
8591
- #: wppa-settings-autosave.php:2444
8592
- msgid "User upload Photos"
8593
- msgstr "Frontend nahrávání"
8594
-
8595
- #: wppa-settings-autosave.php:2445
8596
- msgid "Enable frontend upload."
8597
- msgstr "Povolit uživateli nahrávání z frontendu"
8598
-
8599
- #: wppa-settings-autosave.php:2446
8600
- msgid ""
8601
- "If you check this item, frontend upload will be enabled according to the "
8602
- "rules set in the following items of this table."
8603
- msgstr ""
8604
- "Pokud zaškrtnete tuto položku, bude podle pravidel nastavených v "
8605
- "následujících položkách této tabulky povoleno nahrávání z frontendu."
8606
-
8607
- #: wppa-settings-autosave.php:2454
8608
- msgid "User upload Photos login"
8609
- msgstr "Vyžadovat Přihlášení uživatele"
8610
-
8611
- #: wppa-settings-autosave.php:2455
8612
- msgid "Frontend upload requires the user is logged in."
8613
- msgstr "Náhrávání z frontendu bude povoleno pouze pro přihlášené uživatele."
8614
-
8615
- #: wppa-settings-autosave.php:2456
8616
- msgid ""
8617
- "If you uncheck this box, make sure you check the item Owners only in Table "
8618
- "VII-D1."
8619
- msgstr ""
8620
- "Pokud zrušíte zaškrtnutí tohoto políčka, ujistěte se, že máte zaškrtnutou "
8621
- "položku Pouze majitelé tabulce VII-D1."
8622
-
8623
- #: wppa-settings-autosave.php:2457
8624
- msgid ""
8625
- "Also: set the owner to ---public--- of the albums that are allowed to be "
8626
- "uploaded to."
8627
- msgstr ""
8628
- "Nebo: nastavte majitele alb, do kterých bude možno nahrávat na --- veřený "
8629
- "---."
8630
-
8631
- #: wppa-settings-autosave.php:2464
8632
- msgid "User upload Ajax"
8633
- msgstr "Používat Ajax"
8634
-
8635
- #: wppa-settings-autosave.php:2465
8636
- msgid "Shows the upload progression bar."
8637
- msgstr "Zobrazit panel průběhu odesílání."
8638
-
8639
- #: wppa-settings-autosave.php:2473
8640
- msgid "Show Copyright"
8641
- msgstr "Zobrazit Copyright"
8642
-
8643
- #: wppa-settings-autosave.php:2474
8644
- msgid "Show a copyright warning on frontend upload locations."
8645
- msgstr "Zobrazit Copyright varování u frontend nahrávání"
8646
-
8647
- #: wppa-settings-autosave.php:2483
8648
- msgid "Copyright notice"
8649
- msgstr "Text Copyrightu"
8650
-
8651
- #: wppa-settings-autosave.php:2484
8652
- msgid "The message to be displayed."
8653
- msgstr "Text zprávy, který má být zobrazen."
8654
-
8655
- #: wppa-settings-autosave.php:2492
8656
- msgid "User Watermark"
8657
- msgstr "Uživatelský vodoznak"
8658
-
8659
- #: wppa-settings-autosave.php:2493
8660
- msgid "Uploading users may select watermark settings"
8661
- msgstr "Vkladatelé si mohou zvolit nastavení vodoznaku"
8662
-
8663
- #: wppa-settings-autosave.php:2494
8664
- msgid ""
8665
- "If checked, anyone who can upload and/or import photos can overrule the "
8666
- "default watermark settings."
8667
- msgstr ""
8668
- "Pokud je zaškrtnuto, může každý, kdo můžete nahrávat nebo importovat "
8669
- "fotografie, upravit výchozí nastavení vodoznaku."
8670
-
8671
- #: wppa-settings-autosave.php:2501
8672
- msgid "User name"
8673
- msgstr "Uživatelský název"
8674
-
8675
- #: wppa-settings-autosave.php:2502
8676
- msgid "Uploading users may overrule the default name."
8677
- msgstr "Vkladatelé si mohou změnit výchozí název fotografie."
8678
-
8679
- #: wppa-settings-autosave.php:2503
8680
- msgid ""
8681
- "If checked, the default photo name as defined in Table IX-D13 may be "
8682
- "overruled by the user."
8683
- msgstr ""
8684
- "Je-li zaškrtnuto, může být výchozí název fotografie definovaný v Tabulce IX-"
8685
- "D13 změněn uživatelem."
8686
-
8687
- #: wppa-settings-autosave.php:2510
8688
- msgid "Apply Newphoto desc user"
8689
- msgstr "Uživatelský popis Nových fotografií"
8690
-
8691
- #: wppa-settings-autosave.php:2511
8692
- msgid "Give each new frontend uploaded photo a standard description."
8693
- msgstr "Přidat ke každé fotografii nahrané z frontendu standardní popis."
8694
-
8695
- #: wppa-settings-autosave.php:2512
8696
- msgid ""
8697
- "If checked, each new photo will get the description (template) as specified "
8698
- "in Table IX-D5."
8699
- msgstr ""
8700
- "Pokud je zaškrtnuto, bude ke každé nové fotografii přidán popis (šablona), "
8701
- "jak je nastaven v Tabulce IX-D5."
8702
-
8703
- #: wppa-settings-autosave.php:2519
8704
- msgid "User desc"
8705
- msgstr "Uživatelský popis"
8706
-
8707
- #: wppa-settings-autosave.php:2520
8708
- msgid "Uploading users may overrule the default description."
8709
- msgstr "Vkladatelé si mohou změnit výchozí popis fotografie."
8710
-
8711
- #: wppa-settings-autosave.php:2528
8712
- msgid "User upload custom"
8713
- msgstr "Vlastní pole vkladatele"
8714
-
8715
- #: wppa-settings-autosave.php:2529
8716
- msgid "Frontend upload can fill in custom data fields."
8717
- msgstr "Při nahrávání z frontendu mohou vkladatelé vyplňovat uživatelská pole."
8718
-
8719
- #: wppa-settings-autosave.php:2537
8720
- msgid "User upload tags"
8721
- msgstr "Uživatelské štítky"
8722
-
8723
- #: wppa-settings-autosave.php:2538
8724
- msgid "Frontend upload can add tags."
8725
- msgstr "Při nahrávání z frontendu mohou vkladatelé přidávat štítky."
8726
-
8727
- #: wppa-settings-autosave.php:2539
8728
- msgid "You can configure the details of tag addition in Table IX-D18.x"
8729
- msgstr "Podrobnosti vkládání štítků můžete konfigurovat v Tabulce IX-D18.x"
8730
-
8731
- #: wppa-settings-autosave.php:2547 wppa-settings-autosave.php:2575
8732
- #: wppa-settings-autosave.php:2603
8733
- msgid "Tag selection box"
8734
- msgstr "Výběrový panel štítku"
8735
-
8736
- #: wppa-settings-autosave.php:2548 wppa-settings-autosave.php:2576
8737
- #: wppa-settings-autosave.php:2604
8738
- msgid "Front-end upload tags selecion box."
8739
- msgstr "Výběrový panel pro přidávání štítku při nahrávání z frontendu."
8740
-
8741
- #: wppa-settings-autosave.php:2552 wppa-settings-autosave.php:2580
8742
- #: wppa-settings-autosave.php:2608
8743
- msgid "On:"
8744
- msgstr "Zapnuto:"
8745
-
8746
- #: wppa-settings-autosave.php:2552 wppa-settings-autosave.php:2580
8747
- #: wppa-settings-autosave.php:2608
8748
- msgid "Multi:"
8749
- msgstr "Vícenásobné:"
8750
-
8751
- #: wppa-settings-autosave.php:2557 wppa-settings-autosave.php:2585
8752
- #: wppa-settings-autosave.php:2613
8753
- msgid "Caption box"
8754
- msgstr "Panel Titulku"
8755
-
8756
- #: wppa-settings-autosave.php:2558 wppa-settings-autosave.php:2586
8757
- #: wppa-settings-autosave.php:2614
8758
- msgid "The title of the tag selection box."
8759
- msgstr "Titulek panelu pro výběr štítků"
8760
-
8761
- #: wppa-settings-autosave.php:2566 wppa-settings-autosave.php:2594
8762
- #: wppa-settings-autosave.php:2622
8763
- msgid "Tags box"
8764
- msgstr "Panel Štítků"
8765
-
8766
- #: wppa-settings-autosave.php:2567 wppa-settings-autosave.php:2595
8767
- #: wppa-settings-autosave.php:2623
8768
- msgid "The tags in the selection box."
8769
- msgstr "Štítky ve výběrovém panelu."
8770
-
8771
- #: wppa-settings-autosave.php:2568 wppa-settings-autosave.php:2596
8772
- #: wppa-settings-autosave.php:2624
8773
- msgid ""
8774
- "Enter the tags you want to appear in the selection box. Empty means: all "
8775
- "existing tags"
8776
- msgstr ""
8777
- "Zadejte štítky, které chcete zobrazit ve výběrovém boxu. Prázdné znamená: "
8778
- "všechny existující štítky"
8779
-
8780
- #: wppa-settings-autosave.php:2631
8781
- msgid "New tags"
8782
- msgstr "Nové štítky"
8783
-
8784
- #: wppa-settings-autosave.php:2632
8785
- msgid "Input field for any user defined tags."
8786
- msgstr "Vstupní pole pro jakékoli uživatelem definované štítky."
8787
-
8788
- #: wppa-settings-autosave.php:2640
8789
- msgid "New tags caption"
8790
- msgstr "Titulek pro nové štítky"
8791
-
8792
- #: wppa-settings-autosave.php:2641
8793
- msgid "The caption above the tags input field."
8794
- msgstr "Titulek, který bude zobrazen nad vstupním polem nových štítků."
8795
-
8796
- #: wppa-settings-autosave.php:2649
8797
- msgid "Preview tags"
8798
- msgstr "Náhled štítků"
8799
-
8800
- #: wppa-settings-autosave.php:2650
8801
- msgid "Show a preview of all tags that will be added to the photo info."
8802
- msgstr "Zobrazit náhled všech štítků, které budou k fotografii přidány."
8803
-
8804
- #: wppa-settings-autosave.php:2659
8805
- msgid "Miscellaneous visibility settings"
8806
- msgstr "Ostatní nastavení viditelnosti"
8807
-
8808
- #: wppa-settings-autosave.php:2661
8809
- msgid "Frontend ending label"
8810
- msgstr "Ukončovací titulek frontendu"
8811
-
8812
- #: wppa-settings-autosave.php:2662
8813
- msgid "Frontend upload / create / edit dialog closing label text."
8814
- msgstr ""
8815
- "Text titulku pro ukončení frontendového dialogu nahrát / vytvořit / upravit."
8816
-
8817
- #: wppa-settings-autosave.php:2665
8818
- msgid "Abort"
8819
- msgstr "Přerušit"
8820
-
8821
- #: wppa-settings-autosave.php:2665
8822
- msgid "Close"
8823
- msgstr "Zavřít"
8824
-
8825
- #: wppa-settings-autosave.php:2665
8826
- msgid "Exit"
8827
- msgstr "Ukončit"
8828
-
8829
- #: wppa-settings-autosave.php:2665
8830
- msgid "Quit"
8831
- msgstr "Opustit"
8832
-
8833
- #: wppa-settings-autosave.php:2673
8834
- msgid "Widget thumbs fontsize"
8835
- msgstr "Velikost fontu ve widgetu Miniatury"
8836
-
8837
- #: wppa-settings-autosave.php:2674
8838
- msgid "Font size for thumbnail subtext in widgets."
8839
- msgstr "Velikost fontu textu pod miniaturami fotografií ve widgetu Miniatury"
8840
-
8841
- #: wppa-settings-autosave.php:2682
8842
- msgid "Arrow color"
8843
- msgstr "Barva šipky"
8844
-
8845
- #: wppa-settings-autosave.php:2683
8846
- msgid "Left/right browsing arrow color."
8847
- msgstr "Barva navigačních šipek vlevo / vpravo."
8848
-
8849
- #: wppa-settings-autosave.php:2684
8850
- msgid "Enter the color of the filmstrip navigation arrows."
8851
- msgstr "Zadejte barvu pro navigační šipky filmového pásu."
8852
-
8853
- #: wppa-settings-autosave.php:2691
8854
- msgid "Owner on new line"
8855
- msgstr "Majitel na v novém řádku"
8856
-
8857
- #: wppa-settings-autosave.php:2692
8858
- msgid "Place the (owner) text on a new line."
8859
- msgstr "Umístí text (Majitel) na novou řádku."
8860
-
8861
- #: wppa-settings-autosave.php:2700
8862
- msgid "Custom datafields"
8863
- msgstr "Uživatelská datová pole"
8864
-
8865
- #: wppa-settings-autosave.php:2701
8866
- msgid "Define up to 10 custom data fields for photos."
8867
- msgstr "Definovat až 10 uživatelských polí pro fotografie."
8868
-
8869
- #: wppa-settings-autosave.php:2711
8870
- #, php-format
8871
- msgid "Name and visibility %s"
8872
- msgstr "Název a viditelnost %s"
8873
-
8874
- #: wppa-settings-autosave.php:2712
8875
- #, php-format
8876
- msgid "The caption for field %s and visibility at frontend."
8877
- msgstr "Titulek pole %s a jeho viditelnost ve frontendu."
8878
-
8879
- #: wppa-settings-autosave.php:2713
8880
- #, php-format
8881
- msgid ""
8882
- "If you check the box, the value of this field is displayable in photo "
8883
- "descriptions at the frontend with keyword w#c%s"
8884
- msgstr ""
8885
- "Pokud volbu zaškrtnete, bude hodnota tohoto pole zobrazitelná v popisech "
8886
- "fotografií na frontendu přes klíčové slovo w#c%s"
8887
-
8888
- #: wppa-settings-autosave.php:2743
8889
- msgid "Table III:"
8890
- msgstr "Tabulka III:"
8891
-
8892
- #: wppa-settings-autosave.php:2743
8893
- msgid "Backgrounds:"
8894
- msgstr "Pozadí:"
8895
-
8896
- #: wppa-settings-autosave.php:2744
8897
- msgid "This table describes the backgrounds of wppa+ elements."
8898
- msgstr "Tato tabulka popisuje pozadí WPPA+ prvků."
8899
-
8900
- #: wppa-settings-autosave.php:2754 wppa-settings-autosave.php:3065
8901
- msgid "Background color"
8902
- msgstr "Barva pozadí"
8903
-
8904
- #: wppa-settings-autosave.php:2755 wppa-settings-autosave.php:2757
8905
- #: wppa-settings-autosave.php:3066 wppa-settings-autosave.php:3068
8906
- msgid "Sample"
8907
- msgstr "Vzorek"
8908
-
8909
- #: wppa-settings-autosave.php:2756 wppa-settings-autosave.php:3067
8910
- msgid "Border color"
8911
- msgstr "Barva ohraničení"
8912
-
8913
- #: wppa-settings-autosave.php:2765
8914
- msgid "Slideshow elements backgrounds"
8915
- msgstr "Pozadí prvků prezentace"
8916
-
8917
- #: wppa-settings-autosave.php:2767
8918
- msgid "Nav"
8919
- msgstr "Nav"
8920
-
8921
- #: wppa-settings-autosave.php:2768
8922
- msgid "Navigation bars."
8923
- msgstr "Navigační panely."
8924
-
8925
- #: wppa-settings-autosave.php:2769
8926
- msgid "Enter valid CSS colors for navigation backgrounds and borders."
8927
- msgstr "Zadejte platné CSS barvy pro pozadí a ohraničení navigačních panelů."
8928
-
8929
- #: wppa-settings-autosave.php:2780
8930
- msgid "SlideImg"
8931
- msgstr "Snímek prezentace"
8932
-
8933
- #: wppa-settings-autosave.php:2781
8934
- msgid "Fullsize Slideshow Photos."
8935
- msgstr "Fotografie v plné velikosti v prezentaci."
8936
-
8937
- #: wppa-settings-autosave.php:2782
8938
- msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
8939
- msgstr ""
8940
- "Zadejte platné CSS barvy pro pozadí a ohraničení fotografií v plné velikosti."
8941
-
8942
- #: wppa-settings-autosave.php:2783
8943
- msgid "The colors may be equal or \"transparent\""
8944
- msgstr "Barvy mohou být stejné nebo \"průhledné\""
8945
-
8946
- #: wppa-settings-autosave.php:2784
8947
- msgid ""
8948
- "For more information about slideshow image borders see the help on Table I-B4"
8949
- msgstr ""
8950
- "Více informací o ohraničení snímků prezentace naleznete v nápovědě k Tabulce "
8951
- "I-B4"
8952
-
8953
- #: wppa-settings-autosave.php:2795 wppa-settings-autosave.php:4379
8954
- msgid "Numbar"
8955
- msgstr "Číselná lišta"
8956
-
8957
- #: wppa-settings-autosave.php:2796
8958
- msgid "Number bar box background."
8959
- msgstr "Pozadí číselné lišty."
8960
-
8961
- #: wppa-settings-autosave.php:2797
8962
- msgid "Enter valid CSS colors for numbar box backgrounds and borders."
8963
- msgstr "Zadejte platné CSS barvy pro ohraničení a pozadí číselné lišty."
8964
-
8965
- #: wppa-settings-autosave.php:2808
8966
- msgid "Numbar active"
8967
- msgstr "Aktivní číselná lišta"
8968
-
8969
- #: wppa-settings-autosave.php:2809
8970
- msgid "Number bar active box background."
8971
- msgstr "Pozadí aktivního boxu číselné lišty."
8972
-
8973
- #: wppa-settings-autosave.php:2810
8974
- msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
8975
- msgstr ""
8976
- "Zadejte platné CSS barvy pro ohraničení a pozadí aktivního boxu číselné "
8977
- "lišty."
8978
-
8979
- #: wppa-settings-autosave.php:2821
8980
- msgid "Name/desc"
8981
- msgstr "Název / popis"
8982
-
8983
- #: wppa-settings-autosave.php:2822
8984
- msgid "Name and Description bars."
8985
- msgstr "Lišty Názvu a Popisu."
8986
-
8987
- #: wppa-settings-autosave.php:2823
8988
- msgid ""
8989
- "Enter valid CSS colors for name and description box backgrounds and borders."
8990
- msgstr ""
8991
- "Zadejte platné CSS barvy pro pozadí a ohraničení panelů názvu a popisu."
8992
-
8993
- #: wppa-settings-autosave.php:2835
8994
- msgid "Comment input and display areas."
8995
- msgstr "Box komentářů"
8996
-
8997
- #: wppa-settings-autosave.php:2836
8998
- msgid "Enter valid CSS colors for comment box backgrounds and borders."
8999
- msgstr "Zadejte platné CSS barvy pro pozadí a ohraničení panelu komentářů."
9000
-
9001
- #: wppa-settings-autosave.php:2847 wppa-settings-autosave.php:7663
9002
- #: wppa-settings-autosave.php:7708
9003
- msgid "Custom"
9004
- msgstr "Uživatelský panel"
9005
-
9006
- #: wppa-settings-autosave.php:2848
9007
- msgid "Custom box background."
9008
- msgstr "Pozadí uživatelského panelu."
9009
-
9010
- #: wppa-settings-autosave.php:2849
9011
- msgid "Enter valid CSS colors for custom box backgrounds and borders."
9012
- msgstr "Zadejte platné CSS barvy pro pozadí a ohraničení uživatelského panelu."
9013
-
9014
- #: wppa-settings-autosave.php:2860
9015
- msgid "IPTC"
9016
- msgstr "IPTC"
9017
-
9018
- #: wppa-settings-autosave.php:2861
9019
- msgid "IPTC display box background."
9020
- msgstr "Pozadí panelu pro zobrazení IPTC."
9021
-
9022
- #: wppa-settings-autosave.php:2862
9023
- msgid "Enter valid CSS colors for iptc box backgrounds and borders."
9024
- msgstr "Zadejte platné CSS barvy pro pozadí a ohraničení panelů IPTC."
9025
-
9026
- #: wppa-settings-autosave.php:2873
9027
- msgid "EXIF"
9028
- msgstr "EXIF"
9029
-
9030
- #: wppa-settings-autosave.php:2874
9031
- msgid "EXIF display box background."
9032
- msgstr "Pozadí panelu pro zobrazení EXIF."
9033
-
9034
- #: wppa-settings-autosave.php:2875
9035
- msgid "Enter valid CSS colors for exif box backgrounds and borders."
9036
- msgstr "Zadejte platné CSS barvy pro pozadí a ohraničení panelů EXIF."
9037
-
9038
- #: wppa-settings-autosave.php:2886
9039
- msgid "Share"
9040
- msgstr "Box Sdílení"
9041
-
9042
- #: wppa-settings-autosave.php:2887
9043
- msgid "Share box display background."
9044
- msgstr "Pozadí panelu pro zobrazení Sdílení"
9045
-
9046
- #: wppa-settings-autosave.php:2888
9047
- msgid "Enter valid CSS colors for share box backgrounds and borders."
9048
- msgstr "Zadejte platné CSS barvy pro pozadí a ohraničení panelů Sdíení."
9049
-
9050
- #: wppa-settings-autosave.php:2899
9051
- msgid "Other backgrounds"
9052
- msgstr "Ostatní pozadí"
9053
-
9054
- #: wppa-settings-autosave.php:2901
9055
- msgid "Even"
9056
- msgstr "Sudé"
9057
-
9058
- #: wppa-settings-autosave.php:2902
9059
- msgid "Even background."
9060
- msgstr "Sudé pozadí."
9061
-
9062
- #: wppa-settings-autosave.php:2903
9063
- msgid ""
9064
- "Enter valid CSS colors for even numbered backgrounds and borders of album "
9065
- "covers and thumbnail displays 'As covers'."
9066
- msgstr ""
9067
- "Zadejte platné CSS barvy pro pozadí a ohraničení sudých obalů alb a miniatur "
9068
- "zobrazených \"jako obal\"."
9069
-
9070
- #: wppa-settings-autosave.php:2914
9071
- msgid "Odd"
9072
- msgstr "Liché"
9073
-
9074
- #: wppa-settings-autosave.php:2915
9075
- msgid "Odd background."
9076
- msgstr "Liché pozadí."
9077
-
9078
- #: wppa-settings-autosave.php:2916
9079
- msgid ""
9080
- "Enter valid CSS colors for odd numbered backgrounds and borders of album "
9081
- "covers and thumbnail displays 'As covers'."
9082
- msgstr ""
9083
- "Zadejte platné CSS barvy pro pozadí a ohraničení lichých obalů alb a "
9084
- "miniatur zobrazených \"jako obal\"."
9085
-
9086
- #: wppa-settings-autosave.php:2927
9087
- msgid "Thumbnail padding"
9088
- msgstr "Odsazení miniatur"
9089
-
9090
- #: wppa-settings-autosave.php:2928
9091
- msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
9092
- msgstr "Barva okraje kolem miniatury, pokud existuje je nastaveno odsazení."
9093
-
9094
- #: wppa-settings-autosave.php:2929
9095
- msgid ""
9096
- "Enter valid CSS color hexadecimal like #000000 for black or #ffffff for "
9097
- "white for the padded thumbnails."
9098
- msgstr ""
9099
- "Zadejte platnou CSS barvu v hexadecimálním tvaru (jako např. #000000 pro "
9100
- "černou nebo #FFFFFF pro bílou) pro okraje miniatur."
9101
-
9102
- #: wppa-settings-autosave.php:2940
9103
- msgid "Img"
9104
- msgstr "Obrázky"
9105
-
9106
- #: wppa-settings-autosave.php:2941
9107
- msgid "Cover Photos and popups."
9108
- msgstr "Fotografie na obal a vyskakovací okna."
9109
-
9110
- #: wppa-settings-autosave.php:2942
9111
- msgid ""
9112
- "Enter valid CSS colors for Cover photo and popup backgrounds and borders."
9113
- msgstr ""
9114
- "Zadejte platné CSS barvy pro pozadí a ohraničení Fotografie na obal a "
9115
- "vyskakovací seznam."
9116
-
9117
- #: wppa-settings-autosave.php:2954
9118
- msgid "Upload box background."
9119
- msgstr "Pozadí panelu Nahrávání"
9120
-
9121
- #: wppa-settings-autosave.php:2955
9122
- msgid "Enter valid CSS colors for upload box backgrounds and borders."
9123
- msgstr ""
9124
- "Zadejte platné CSS barvy pro pozadí a ohraničení panelu pro nahrávání "
9125
- "fotografií."
9126
-
9127
- #: wppa-settings-autosave.php:2966
9128
- msgid "Multitag"
9129
- msgstr "Vícenásobné štítky"
9130
-
9131
- #: wppa-settings-autosave.php:2967
9132
- msgid "Multitag box background."
9133
- msgstr "Pozadí panelu Vícenásobné štítky"
9134
-
9135
- #: wppa-settings-autosave.php:2968
9136
- msgid "Enter valid CSS colors for multitag box backgrounds and borders."
9137
- msgstr ""
9138
- "Zadejte platné CSS barvy pro pozadí a ohraničení panelu Vícenásobné štítky."
9139
-
9140
- #: wppa-settings-autosave.php:2979
9141
- msgid "Tagcloud"
9142
- msgstr "Skupina štítků"
9143
-
9144
- #: wppa-settings-autosave.php:2980
9145
- msgid "Tagcloud box background."
9146
- msgstr "Pozadí panelu Skupina štítků."
9147
-
9148
- #: wppa-settings-autosave.php:2981
9149
- msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
9150
- msgstr "Zadejte platné CSS barvy pro pozadí a ohraničení Skupiny štítků."
9151
-
9152
- #: wppa-settings-autosave.php:2992
9153
- msgid "Superview"
9154
- msgstr "Superpohled"
9155
-
9156
- #: wppa-settings-autosave.php:2993
9157
- msgid "Superview box background."
9158
- msgstr "Pozadí panelu Superpohled. "
9159
-
9160
- #: wppa-settings-autosave.php:2994
9161
- msgid "Enter valid CSS colors for superview box backgrounds and borders."
9162
- msgstr "Zadejte platné CSS barvy pro pozadí a ohraničení panelu Superpohled."
9163
-
9164
- #: wppa-settings-autosave.php:3006
9165
- msgid "Search box background."
9166
- msgstr "Pozadí vyhledávacího panelu. "
9167
-
9168
- #: wppa-settings-autosave.php:3007
9169
- msgid "Enter valid CSS colors for search box backgrounds and borders."
9170
- msgstr "Zadejte platné CSS barvy pro pozadí a ohraničení vyhledávacího panelu."
9171
-
9172
- #: wppa-settings-autosave.php:3018
9173
- msgid "BestOf"
9174
- msgstr "Nejlepší fotografie"
9175
-
9176
- #: wppa-settings-autosave.php:3019
9177
- msgid "BestOf box background."
9178
- msgstr "Pozadí panelu Nejlepší fotografie."
9179
-
9180
- #: wppa-settings-autosave.php:3020
9181
- msgid "Enter valid CSS colors for bestof box backgrounds and borders."
9182
- msgstr ""
9183
- "Zadejte platné CSS barvy pro pozadí a ohraničení panelu Nejlepší fotografie."
9184
-
9185
- #: wppa-settings-autosave.php:3031
9186
- msgid "Calendar"
9187
- msgstr "Kalendář"
9188
-
9189
- #: wppa-settings-autosave.php:3032
9190
- msgid "Calendar box background."
9191
- msgstr "Pozadí panelu kalendáře."
9192
-
9193
- #: wppa-settings-autosave.php:3033
9194
- msgid "Enter valid CSS colors for calendar box backgrounds and borders."
9195
- msgstr "Zadejte platné CSS barvy pro pozadí a ohraničení panelu Kalendáře."
9196
-
9197
- #: wppa-settings-autosave.php:3044
9198
- msgid "Stereo"
9199
- msgstr "Stereo"
9200
-
9201
- #: wppa-settings-autosave.php:3045
9202
- msgid "Stereo mode selection box background."
9203
- msgstr "Pozadí panelu pro výběr Stereo režimu."
9204
-
9205
- #: wppa-settings-autosave.php:3046
9206
- msgid ""
9207
- "Enter valid CSS colors for stereo mode selection box backgrounds and borders."
9208
- msgstr ""
9209
- "Zadejte platné CSS kódy barev pozadí a ohraničení panelu pro výběr stereo "
9210
- "režimu."
9211
-
9212
- #: wppa-settings-autosave.php:3078
9213
- msgid "Table IV:"
9214
- msgstr "Tabulka IV:"
9215
-
9216
- #: wppa-settings-autosave.php:3078
9217
- msgid "Behaviour:"
9218
- msgstr "Chování:"
9219
-
9220
- #: wppa-settings-autosave.php:3079
9221
- msgid "This table describes the dynamic behaviour of certain wppa+ elements."
9222
- msgstr "Tato tabulka popisuje dynamické chování některých prvků WPPA+."
9223
-
9224
- #: wppa-settings-autosave.php:3097
9225
- msgid "System related settings"
9226
- msgstr "Nastavení související se systémem"
9227
-
9228
- #: wppa-settings-autosave.php:3099
9229
- msgid "Use Ajax"
9230
- msgstr "Používat AJAX"
9231
-
9232
- #: wppa-settings-autosave.php:3100
9233
- msgid "Use Ajax as much as is possible and implemented."
9234
- msgstr "Používat AJAX všude, kde je implementován a kde je to možné."
9235
-
9236
- #: wppa-settings-autosave.php:3101
9237
- msgid ""
9238
- "If this box is ticked, page content updates from within wppa+ displays will "
9239
- "be Ajax based as much as possible."
9240
- msgstr ""
9241
- "Je-li tato volba zaškrtnuta, bude pro aktualizaci WPPA+ obsahu stránky "
9242
- "využíván AJAX všude, kde je implementován."
9243
-
9244
- #: wppa-settings-autosave.php:3109
9245
- msgid "Ajax NON Admin"
9246
- msgstr "AJAX ne pro administraci"
9247
-
9248
- #: wppa-settings-autosave.php:3110
9249
- msgid "Frontend ajax use no admin files."
9250
- msgstr "AJAX ve frontendu nepoužívá žádné soubory administrace"
9251
-
9252
- #: wppa-settings-autosave.php:3111
9253
- msgid "If you want to password protect wp-admin, check this box."
9254
- msgstr "Tuto volbu zaškrtněte, pokud chcete WP-admin chránit heslem."
9255
-
9256
- #: wppa-settings-autosave.php:3112
9257
- msgid ""
9258
- "In rare cases changing page content does not work when this box is checked. "
9259
- "Verify the functionality!"
9260
- msgstr ""
9261
- "Ve vzácných případech změna obsahu stránky nefunguje, pokud je tato volba "
9262
- "zaškrtnutá. Ověřte funkčnost!"
9263
-
9264
- #: wppa-settings-autosave.php:3119
9265
- msgid "Photo names in urls"
9266
- msgstr "Názvy fotografií v URL "
9267
-
9268
- #: wppa-settings-autosave.php:3120
9269
- msgid "Display photo names in urls."
9270
- msgstr "Zobrazit v URL názvy fotografií."
9271
-
9272
- #: wppa-settings-autosave.php:3121
9273
- msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
9274
- msgstr ""
9275
- "URL adresy zobrazení WPPA+ budou obsahovat místo čísel názvy fotografií."
9276
-
9277
- #: wppa-settings-autosave.php:3122
9278
- msgid ""
9279
- "It is your responsability to avoid duplicate names of photos in the same "
9280
- "album."
9281
- msgstr ""
9282
- "Je na vás, zabránit existenci duplicitních názvů fotografií ve stejném albu."
9283
-
9284
- #: wppa-settings-autosave.php:3129
9285
- msgid "Album names in urls"
9286
- msgstr "Názvy alb v URL"
9287
-
9288
- #: wppa-settings-autosave.php:3130
9289
- msgid "Display album names in urls."
9290
- msgstr "Zobrazit v URL názvy alb."
9291
-
9292
- #: wppa-settings-autosave.php:3131
9293
- msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
9294
- msgstr "URL adresy zobrazení WPPA+ budou obsahovat namísto čísel názvy alb"
9295
-
9296
- #: wppa-settings-autosave.php:3132
9297
- msgid ""
9298
- "It is your responsability to avoid duplicate names of albums in the system."
9299
- msgstr "Je na vás, zabránit existenci duplicitních názvů alb v systému."
9300
-
9301
- #: wppa-settings-autosave.php:3139
9302
- msgid "Use short query args"
9303
- msgstr "Krátké argumenty dotazu"
9304
-
9305
- #: wppa-settings-autosave.php:3140
9306
- msgid "Use &album=... &photo=..."
9307
- msgstr "Používat &album=... &photo=..."
9308
-
9309
- #: wppa-settings-autosave.php:3141
9310
- msgid ""
9311
- "Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
9312
- "album=... &wppa-photo=..."
9313
- msgstr ""
9314
- "URL adresy zobrazení WPPA+ budou obsahovat &album=... &photo=... namísto "
9315
- "&wppa-album=... &wppa-photo=..."
9316
-
9317
- #: wppa-settings-autosave.php:3142
9318
- msgid ""
9319
- "Use this setting only when there are no conflicts with other plugins that "
9320
- "may interprete arguments like &album= etc."
9321
- msgstr ""
9322
- "Toto nastavení použijte pouze v případě, že neexistují žádné konflikty s "
9323
- "jinými pluginy, které mohou interpretovat argumenty jako &album= atd."
9324
-
9325
- #: wppa-settings-autosave.php:3149
9326
- msgid "Enable pretty links"
9327
- msgstr "Povolit hezké odkazy"
9328
-
9329
- #: wppa-settings-autosave.php:3150
9330
- msgid "Enable the generation and understanding of pretty links."
9331
- msgstr "Povolit generování a interpretaci hezkých odkazů"
9332
-
9333
- #: wppa-settings-autosave.php:3151
9334
- msgid ""
9335
- "If checked, links to social media and the qr code will have \"/token1/token2/"
9336
- "\" etc in stead of \"&arg1=..&arg2=..\" etc."
9337
- msgstr ""
9338
- "Pokud je zaškrtnuto, budou mít odkazy na sociální média a QR kódy \"/ "
9339
- "token1 / token2 /...\" namísto \"& arg1 = .. & arg2 = ..\" atd."
9340
-
9341
- #: wppa-settings-autosave.php:3152
9342
- msgid ""
9343
- "These types of links will be interpreted and cause a redirection on entering."
9344
- msgstr "Tyto typy odkazů bude interpretován a způsobit přesměrování na vstupu."
9345
-
9346
- #: wppa-settings-autosave.php:3153
9347
- msgid ""
9348
- "It is recommended to check this box. It shortens links dramatically and "
9349
- "simplifies qr codes."
9350
- msgstr ""
9351
- "Zaškrtnutí tohoto políčka je doporučené. Toto nastavení maximálně zkracuje "
9352
- "odkazy a zjednodušuje QR kódy."
9353
-
9354
- #: wppa-settings-autosave.php:3154
9355
- msgid ""
9356
- "However, you may encounter conflicts with themes and/or other plugins, so "
9357
- "test it troughly!"
9358
- msgstr ""
9359
- "Může však dojít k rozporu s šablonou nebo jinými pluginy, proto důkladně "
9360
- "vyzkoušejte!"
9361
-
9362
- #: wppa-settings-autosave.php:3155
9363
- msgid ""
9364
- "Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
9365
- msgstr ""
9366
- "Aby bylo toto nastavení funkční, musí být položka v Tabulce IV-A2 (Názvy "
9367
- "fotografií v URL) nezaškrtnutá!"
9368
-
9369
- #: wppa-settings-autosave.php:3162
9370
- msgid "Update addressline"
9371
- msgstr "Aktualizovat adresní řádek"
9372
-
9373
- #: wppa-settings-autosave.php:3163
9374
- msgid "Update the addressline after an ajax action or next slide."
9375
- msgstr ""
9376
- "Aktualizovat adresní řádek po provedení AJAX scriptu nebo přechodu na další "
9377
- "snímek."
9378
-
9379
- #: wppa-settings-autosave.php:3164
9380
- msgid ""
9381
- "If checked, refreshing the page will show the current content and the "
9382
- "browsers back and forth arrows will browse the history on the page."
9383
- msgstr ""
9384
- "Je-li zaškrtnuto, zobrazí aktualizace stránky aktuální obsah a navigační "
9385
- "šipky vpřed a vzad budou procházet historii stránky."
9386
-
9387
- #: wppa-settings-autosave.php:3165
9388
- msgid ""
9389
- "If unchecked, refreshing the page will re-display the content of the "
9390
- "original page."
9391
- msgstr ""
9392
- "Není-li zaškrtnuto, obnovení stránky znovu zobrazí obsah původní stránky."
9393
-
9394
- #: wppa-settings-autosave.php:3166
9395
- msgid ""
9396
- "This will only work on browsers that support history.pushState() and "
9397
- "therefor NOT in IE"
9398
- msgstr ""
9399
- "Toto funguje pouze v prohlížečích, které podporují history.pushState() a "
9400
- "tedy nikoil v IE"
9401
-
9402
- #: wppa-settings-autosave.php:3167
9403
- msgid "Switching this off will affect the browsers behaviour."
9404
- msgstr "Vypnutí této volby bude mít vliv na chování prohlížečů."
9405
-
9406
- #: wppa-settings-autosave.php:3174
9407
- msgid "Render shortcode always"
9408
- msgstr "Vždy zpracovat krátký kód"
9409
-
9410
- #: wppa-settings-autosave.php:3175
9411
- msgid "This will skip the check on proper initialisation."
9412
- msgstr "Toto nastavení způsobí přeskočení ověření řádné inicializace."
9413
-
9414
- #: wppa-settings-autosave.php:3176
9415
- msgid ""
9416
- "This setting is required for certain themes like Gantry to prevent the "
9417
- "display of wppa placeholders like [WPPA+ Photo display]."
9418
- msgstr ""
9419
- "Toto nastavení je vyžadováno pro některé šablony jako Gantry, aby se "
9420
- "zabránilo wppa symbolů jako [WPPA+ Zobrazit fotografii]."
9421
-
9422
- #: wppa-settings-autosave.php:3177
9423
- #, php-format
9424
- msgid ""
9425
- "If this check is needed, you can use shortcodes like [wppa ...] only, not "
9426
- "scripts like %%wppa%%."
9427
- msgstr ""
9428
- "Je-li tato kontrola nezbytná, pak můžete použít pouze krátké kódy jako "
9429
- "[wppa...] , ale nikoli skripty jako %%wppa%%."
9430
-
9431
- #: wppa-settings-autosave.php:3184
9432
- msgid "Track viewcounts"
9433
- msgstr "Sledovat počty shlédnutí"
9434
-
9435
- #: wppa-settings-autosave.php:3185
9436
- msgid "Register number of views of albums and photos."
9437
- msgstr "Registrovat počet zobrazení alb a fotografií."
9438
-
9439
- #: wppa-settings-autosave.php:3193
9440
- msgid "Auto page"
9441
- msgstr "Automatická stránka"
9442
-
9443
- #: wppa-settings-autosave.php:3194
9444
- msgid "Create a wp page for every fullsize image."
9445
- msgstr "Vytvoří wp stránku pro každou fotografii v plné velikosti."
9446
-
9447
- #: wppa-settings-autosave.php:3198
9448
- msgid "Please reload this page after changing!"
9449
- msgstr "Po každé změně znovu tuto stránku načtěte!"
9450
-
9451
- #: wppa-settings-autosave.php:3204
9452
- msgid "Auto page display"
9453
- msgstr "Obsah automatické zprávy"
9454
-
9455
- #: wppa-settings-autosave.php:3205
9456
- msgid "The type of display on the autopage pages."
9457
- msgstr "Typ zobrazení na Automatických stránkách."
9458
-
9459
- #: wppa-settings-autosave.php:3208
9460
- msgid "Single photo"
9461
- msgstr "Single fotografie"
9462
-
9463
- #: wppa-settings-autosave.php:3208
9464
- msgid "Media type photo"
9465
- msgstr "Fotografie typu Média"
9466
-
9467
- #: wppa-settings-autosave.php:3208
9468
- msgid "In the style of a slideshow"
9469
- msgstr "Zobrazení ve stylu prezentace"
9470
-
9471
- #: wppa-settings-autosave.php:3215
9472
- msgid "Auto page links"
9473
- msgstr "Odkazy Automatických stránek"
9474
-
9475
- #: wppa-settings-autosave.php:3216
9476
- msgid "The location for the pagelinks."
9477
- msgstr "Umístění odkazů na stránky."
9478
-
9479
- #: wppa-settings-autosave.php:3219
9480
- msgid "At top and bottom"
9481
- msgstr "Nahoře a dole"
9482
-
9483
- #: wppa-settings-autosave.php:3226
9484
- msgid "Defer javascript"
9485
- msgstr "Odsunout Javascript"
9486
-
9487
- #: wppa-settings-autosave.php:3227
9488
- msgid "Put javascript near the end of the page."
9489
- msgstr "Umístit Javascript co nejblíže konci stránky."
9490
-
9491
- #: wppa-settings-autosave.php:3228
9492
- msgid ""
9493
- "If checkd: May fix layout problems and broken slideshows. May speed up or "
9494
- "slow down page appearing."
9495
- msgstr ""
9496
- "Pokud je zaškrtnuto: Může odstranit problémy s rozložením a rozbité "
9497
- "prezentace. Může zrychlit nebo zpomalit zobrazování stránky."
9498
-
9499
- #: wppa-settings-autosave.php:3235
9500
- msgid "Inline styles"
9501
- msgstr "Inline styly"
9502
-
9503
- #: wppa-settings-autosave.php:3236
9504
- msgid "Set style specifications inline."
9505
- msgstr "Nastavit inline specifikaci stylu."
9506
-
9507
- #: wppa-settings-autosave.php:3237
9508
- msgid "If checked: May fix layout problems, but slows down page appearing."
9509
- msgstr ""
9510
- "Pokud je zaškrtnuto: Může odstranit problémy rozložení, ale zpomalí "
9511
- "zobrazení stránky."
9512
-
9513
- #: wppa-settings-autosave.php:3244
9514
- msgid "Custom style"
9515
- msgstr "Uživatelský styl"
9516
-
9517
- #: wppa-settings-autosave.php:3245
9518
- msgid "Enter custom style specs here."
9519
- msgstr "Zde zadejte specifikace uživatelského stylu."
9520
-
9521
- #: wppa-settings-autosave.php:3253
9522
- msgid "Use customized style file"
9523
- msgstr "Použít soubor uživatelského stylu"
9524
-
9525
- #: wppa-settings-autosave.php:3254 wppa-settings-autosave.php:3263
9526
- msgid "This feature is highly discouraged."
9527
- msgstr "Tento rys důrazně nedoporučujeme."
9528
-
9529
- #: wppa-settings-autosave.php:3262
9530
- msgid "Use customized theme file"
9531
- msgstr "Použít soubor uživatelské šablony"
9532
-
9533
- #: wppa-settings-autosave.php:3271
9534
- msgid "Enable photo html access"
9535
- msgstr "Povolit HTML přístup k fotografiím"
9536
-
9537
- #: wppa-settings-autosave.php:3272
9538
- msgid "Creates an .htaccess file in .../uploads/wppa/"
9539
- msgstr "Vytvoří v adresáři .../uploads/wppa/ soubor .htaccess"
9540
-
9541
- #: wppa-settings-autosave.php:3273
9542
- msgid ""
9543
- "If checked: assures http access to your wppa photo files, despite other ."
9544
- "htaccess settings that may protect these files."
9545
- msgstr ""
9546
- "Pokud je zaškrtnuto: je povolen http přístup k vašim souborům fotografií WPPA"
9547
- "+, a to navzdory jiným .htaccess nastavením, které může tyto soubory chránit."
9548
-
9549
- #: wppa-settings-autosave.php:3280
9550
- msgid "Lazy or HTML comp"
9551
- msgstr "Zpoždění nebo HTML komprese"
9552
-
9553
- #: wppa-settings-autosave.php:3281
9554
- msgid "Tick this box when you use lazy load or html compression."
9555
- msgstr ""
9556
- "Pokud používáte HTML kompresi nebo zpožděné načítání, zaškrtněte tuto volbu."
9557
-
9558
- #: wppa-settings-autosave.php:3282
9559
- msgid ""
9560
- "If the filmstrip images do not show up and you have a lazy load or html "
9561
- "optimizing plugin active: Check this box"
9562
- msgstr ""
9563
- "Pokud se nezobrazí filmový pás a používáte zpožděné načítání nebo máte "
9564
- "aktivní plugin HTML optimalizace: Zaškrtněte tuto volbu"
9565
-
9566
- #: wppa-settings-autosave.php:3289
9567
- msgid "Thumbs first"
9568
- msgstr "Upřednostnění miniatur"
9569
-
9570
- #: wppa-settings-autosave.php:3290
9571
- msgid "When displaying album content: thumbnails before subalbums."
9572
- msgstr "Při zobrazování obsahu alba umístit miniatury před sub-alba."
9573
-
9574
- #: wppa-settings-autosave.php:3298
9575
- msgid "Login links"
9576
- msgstr "Přihlašovací odkazy"
9577
-
9578
- #: wppa-settings-autosave.php:3299
9579
- msgid "You must login to... links to login page."
9580
- msgstr "Musíte se přihlásit k... odkazy na přihlašovací stránku."
9581
-
9582
- #: wppa-settings-autosave.php:3307
9583
- msgid "Enable Video"
9584
- msgstr "Povolit Video"
9585
-
9586
- #: wppa-settings-autosave.php:3308
9587
- msgid "Enables video support."
9588
- msgstr "Zapne podporu videa."
9589
-
9590
- #: wppa-settings-autosave.php:3317
9591
- msgid "Enable Audio"
9592
- msgstr "Povolit Audio"
9593
-
9594
- #: wppa-settings-autosave.php:3318
9595
- msgid "Enables audio support."
9596
- msgstr "Zapne podporu zvuku."
9597
-
9598
- #: wppa-settings-autosave.php:3326
9599
- msgid "Enable 3D Stereo"
9600
- msgstr "Povolit 3D Stereo"
9601
-
9602
- #: wppa-settings-autosave.php:3327
9603
- msgid "Enables 3D stereo photo support."
9604
- msgstr "Povolí podporu 3D stereo fotografií."
9605
-
9606
- #: wppa-settings-autosave.php:3335
9607
- msgid "Relative urls"
9608
- msgstr "Relativní URL"
9609
-
9610
- #: wppa-settings-autosave.php:3336
9611
- msgid "Use relative urls only."
9612
- msgstr "Používejte pouze relativní adresy URL."
9613
-
9614
- #: wppa-settings-autosave.php:3345
9615
- msgid "Slideshow related settings"
9616
- msgstr "Nastavení související s prezentací"
9617
-
9618
- #: wppa-settings-autosave.php:3347
9619
- msgid "V align"
9620
- msgstr "Svislé zarovnání"
9621
-
9622
- #: wppa-settings-autosave.php:3348
9623
- msgid "Vertical alignment of slideshow images."
9624
- msgstr "Svislé zarovnání snímků prezentace."
9625
-
9626
- #: wppa-settings-autosave.php:3349
9627
- msgid "Specify the vertical alignment of slideshow images."
9628
- msgstr "Určete svislé zarovnání snímků prezentace."
9629
-
9630
- #: wppa-settings-autosave.php:3350
9631
- msgid ""
9632
- "If you select --- none ---, the photos will not be centered horizontally "
9633
- "either."
9634
- msgstr ""
9635
- "Pokud zvolíte ---žádné---, nebudou fotografie zarovnány ani vodorovně na "
9636
- "střed."
9637
-
9638
- #: wppa-settings-autosave.php:3352 wppa-settings-autosave.php:3617
9639
- #: wppa-slideshow-widget.php:214
9640
- msgid "top"
9641
- msgstr "nahoru"
9642
-
9643
- #: wppa-settings-autosave.php:3352 wppa-settings-autosave.php:3366
9644
- #: wppa-settings-autosave.php:3617 wppa-slideshow-widget.php:215
9645
- #: wppa-tinymce-scripts.php:289 wppa-tinymce-shortcodes.php:515
9646
- #: wppa-widget-admin.php:78
9647
- msgid "center"
9648
- msgstr "na střed"
9649
-
9650
- #: wppa-settings-autosave.php:3352 wppa-settings-autosave.php:3617
9651
- #: wppa-slideshow-widget.php:216
9652
- msgid "bottom"
9653
- msgstr "dolu"
9654
-
9655
- #: wppa-settings-autosave.php:3352 wppa-slideshow-widget.php:217
9656
- msgid "fit"
9657
- msgstr "usadit"
9658
-
9659
- #: wppa-settings-autosave.php:3360
9660
- msgid "H align"
9661
- msgstr "Vodorovné zarovnání"
9662
-
9663
- #: wppa-settings-autosave.php:3361
9664
- msgid "Horizontal alignment of slideshow images."
9665
- msgstr "Vodorovné zarovnání snímků prezentace."
9666
-
9667
- #: wppa-settings-autosave.php:3362
9668
- msgid ""
9669
- "Specify the horizontal alignment of slideshow images. If you specify --- "
9670
- "none --- , no horizontal alignment will take place."
9671
- msgstr ""
9672
- "Určete vodorovné zarovnání snímků prezentace. Pokud zvolíte ---žádné---, "
9673
- "nebudou fotografie vodorovně zarovnány."
9674
-
9675
- #: wppa-settings-autosave.php:3363
9676
- msgid ""
9677
- "This setting is only usefull when the Column Width differs from the Maximum "
9678
- "Width."
9679
- msgstr ""
9680
- "Toto nastavení je užitečné pouze v případě, je-li Šířka sloupce rozdílná od "
9681
- "Maximální šířky."
9682
-
9683
- #: wppa-settings-autosave.php:3364
9684
- msgid "(Settings I-A1 and I-B1)"
9685
- msgstr "(Nastavení I-A1 a I-B1)"
9686
-
9687
- #: wppa-settings-autosave.php:3374
9688
- msgid "Start slideshow running."
9689
- msgstr "Typ spuštění prezentace."
9690
-
9691
- #: wppa-settings-autosave.php:3375
9692
- msgid ""
9693
- "If you select \"running\", the slideshow will start running immediately, if "
9694
- "you select \"still at first photo\", the first photo will be displayed in "
9695
- "browse mode."
9696
- msgstr ""
9697
- "Vyberete-li \"spuštěná\", bude prezentace spuštěna okamžitě. Pokud vyberete "
9698
- "\"Zastavená na první fotografii\", zobrazí se první fotografie v režimu "
9699
- "procházení."
9700
-
9701
- #: wppa-settings-autosave.php:3376
9702
- msgid ""
9703
- "If you select \"still at first norated\", the first photo that the visitor "
9704
- "did not gave a rating will be displayed in browse mode."
9705
- msgstr ""
9706
- "Pokud vyberete \"zastavená na první nehodnocené\", bude v režimu procházení "
9707
- "zobrazena první fotografie, kterou ještě návštěvník nehodnotil."
9708
-
9709
- #: wppa-settings-autosave.php:3378
9710
- msgid "running"
9711
- msgstr "spuštěná"
9712
-
9713
- #: wppa-settings-autosave.php:3379
9714
- msgid "still at first photo"
9715
- msgstr "zastavená na první fotografii"
9716
-
9717
- #: wppa-settings-autosave.php:3380
9718
- msgid "still at first norated"
9719
- msgstr "zastavená na první nehodnocené"
9720
-
9721
- #: wppa-settings-autosave.php:3391
9722
- msgid "Start slideonly"
9723
- msgstr "Spustit prezentaci snímků"
9724
-
9725
- #: wppa-settings-autosave.php:3392
9726
- msgid "Start slideonly slideshow running."
9727
- msgstr "Spustit prezentaci pouze snímků ."
9728
-
9729
- #: wppa-settings-autosave.php:3400 wppa-settings-autosave.php:4215
9730
- msgid "Video autostart"
9731
- msgstr "Automatický start Videa"
9732
-
9733
- #: wppa-settings-autosave.php:3401
9734
- msgid "Autoplay videos in slideshows."
9735
- msgstr "Automaticky přehrávat videa v prezentacích."
9736
-
9737
- #: wppa-settings-autosave.php:3410 wppa-settings-autosave.php:4224
9738
- msgid "Audio autostart"
9739
- msgstr "Automatický start Audia"
9740
-
9741
- #: wppa-settings-autosave.php:3411
9742
- msgid "Autoplay audios in slideshows."
9743
- msgstr "Automaticky přehrávat audia v prezentacích. "
9744
-
9745
- #: wppa-settings-autosave.php:3419
9746
- msgid "Animation type"
9747
- msgstr "Typ Animace"
9748
-
9749
- #: wppa-settings-autosave.php:3420
9750
- msgid "The way successive slides appear."
9751
- msgstr "Způsob přechodu mezi jednotlivými snímky"
9752
-
9753
- #: wppa-settings-autosave.php:3421
9754
- msgid ""
9755
- "Select the way the old slide is to be replaced by the new one in the "
9756
- "slideshow/browse fullsize display."
9757
- msgstr ""
9758
- "Vyberte způsob, kterým je starý snímek nahrazen novým v režimu procházení/"
9759
- "prezentace fotografií v plné velikosti."
9760
-
9761
- #: wppa-settings-autosave.php:3423
9762
- msgid "Fade out and in simultaneous"
9763
- msgstr "Zvýraznění a zeslábnutí současně"
9764
-
9765
- #: wppa-settings-autosave.php:3424
9766
- msgid "Fade in after fade out"
9767
- msgstr "Zvýraznění po zeslábnutí"
9768
-
9769
- #: wppa-settings-autosave.php:3425
9770
- msgid "Shift adjacent"
9771
- msgstr "Rolování"
9772
-
9773
- #: wppa-settings-autosave.php:3426
9774
- msgid "Stack on"
9775
- msgstr "Nasouvání"
9776
-
9777
- #: wppa-settings-autosave.php:3427
9778
- msgid "Stack off"
9779
- msgstr "Odsouvání"
9780
-
9781
- #: wppa-settings-autosave.php:3428
9782
- msgid "Turn over"
9783
- msgstr "Obrátit list"
9784
-
9785
- #: wppa-settings-autosave.php:3442
9786
- msgid "Timeout"
9787
- msgstr "Časový limit"
9788
-
9789
- #: wppa-settings-autosave.php:3443
9790
- msgid "Slideshow timeout."
9791
- msgstr "Časový limit prezentace"
9792
-
9793
- #: wppa-settings-autosave.php:3444
9794
- msgid ""
9795
- "Select the time a single slide will be visible when the slideshow is started."
9796
- msgstr ""
9797
- "Zvolte časový úsek po který bude zobrazen jeden snímek běžící prezentace."
9798
-
9799
- #: wppa-settings-autosave.php:3446
9800
- msgid "very short (1 s.)"
9801
- msgstr "velmi krátce (1 s.)"
9802
-
9803
- #: wppa-settings-autosave.php:3446
9804
- msgid "short (1.5 s.)"
9805
- msgstr "krátce (1,5 s)."
9806
-
9807
- #: wppa-settings-autosave.php:3446
9808
- msgid "normal (2.5 s.)"
9809
- msgstr "normálně(2,5 s)."
9810
-
9811
- #: wppa-settings-autosave.php:3446
9812
- msgid "long (4 s.)"
9813
- msgstr "dlouho (4 s.)"
9814
-
9815
- #: wppa-settings-autosave.php:3446
9816
- msgid "very long (6 s.)"
9817
- msgstr "velmi dlouho (6 s.)"
9818
-
9819
- #: wppa-settings-autosave.php:3453
9820
- msgid "Speed"
9821
- msgstr "Rychlost"
9822
-
9823
- #: wppa-settings-autosave.php:3454
9824
- msgid "Slideshow animation speed."
9825
- msgstr "Rychlost animace prezentace"
9826
-
9827
- #: wppa-settings-autosave.php:3455
9828
- msgid "Specify the animation speed to be used in slideshows."
9829
- msgstr "Určete rychlost animace pro použití v prezentacích."
9830
-
9831
- #: wppa-settings-autosave.php:3456
9832
- msgid "This is the time it takes a photo to fade in or out."
9833
- msgstr "Určuje čas, potřebný pro výměnu fotografii běžící prezentace."
9834
-
9835
- #: wppa-settings-autosave.php:3458 wppa-settings-autosave.php:4161
9836
- #: wppa-settings-autosave.php:5904 wppa-settings-autosave.php:6800
9837
- #: wppa-settings-autosave.php:6811 wppa-settings-autosave.php:6973
9838
- msgid "--- off ---"
9839
- msgstr "--- žádné ---"
9840
-
9841
- #: wppa-settings-autosave.php:3458
9842
- msgid "very fast (200 ms.)"
9843
- msgstr "velmi rychle (200 ms)."
9844
-
9845
- #: wppa-settings-autosave.php:3458
9846
- msgid "fast (400 ms.)"
9847
- msgstr "rychle (400 ms)."
9848
-
9849
- #: wppa-settings-autosave.php:3458
9850
- msgid "normal (800 ms.)"
9851
- msgstr "normálně (800 ms)."
9852
-
9853
- #: wppa-settings-autosave.php:3458
9854
- msgid "slow (1.2 s.)"
9855
- msgstr "pomalu (1,2 s)."
9856
-
9857
- #: wppa-settings-autosave.php:3458
9858
- msgid "very slow (2 s.)"
9859
- msgstr "velmi pomalu (2 s.)"
9860
-
9861
- #: wppa-settings-autosave.php:3458
9862
- msgid "extremely slow (4 s.)"
9863
- msgstr "extrémně pomalu (4 s.)"
9864
-
9865
- #: wppa-settings-autosave.php:3465
9866
- msgid "Slide hover pause"
9867
- msgstr "Pauza při najetí myší"
9868
-
9869
- #: wppa-settings-autosave.php:3466
9870
- msgid "Running Slideshow suspends during mouse hover."
9871
- msgstr "Spuštěná prezentace bude během najetí myší na snímek pozastavena."
9872
-
9873
- #: wppa-settings-autosave.php:3474
9874
- msgid "Slideshow wrap around"
9875
- msgstr "Uzavření prezentace"
9876
-
9877
- #: wppa-settings-autosave.php:3475
9878
- msgid "The slideshow wraps around the start and end"
9879
- msgstr "Prezentace rotuje mezi startem a koncem"
9880
-
9881
- #: wppa-settings-autosave.php:3483
9882
- msgid "Full desc align"
9883
- msgstr "Umístění popisu"
9884
-
9885
- #: wppa-settings-autosave.php:3484
9886
- msgid "The alignment of the descriptions under fullsize images and slideshows."
9887
- msgstr "Umístění popisů pod prezentací nebo fotografiemi v plné velikosti."
9888
-
9889
- #: wppa-settings-autosave.php:3487 wppa-settings-autosave.php:3605
9890
- #: wppa-settings-autosave.php:3708
9891
- msgid "Left"
9892
- msgstr "Vlevo"
9893
-
9894
- #: wppa-settings-autosave.php:3487
9895
- msgid "Center"
9896
- msgstr "Uprostřed"
9897
-
9898
- #: wppa-settings-autosave.php:3487 wppa-settings-autosave.php:3605
9899
- #: wppa-settings-autosave.php:3708
9900
- msgid "Right"
9901
- msgstr "Vpravo"
9902
-
9903
- #: wppa-settings-autosave.php:3494
9904
- msgid "Remove redundant space"
9905
- msgstr "Odstranit nadbytečné mezery"
9906
-
9907
- #: wppa-settings-autosave.php:3495
9908
- msgid "Removes unwanted &lt;p> and &lt;br> tags in fullsize descriptions."
9909
- msgstr ""
9910
- "Odstraní nežádoucí &lt;p> a &lt;br> tagy popisech pod fotografiemi v plné "
9911
- "velikosti."
9912
-
9913
- #: wppa-settings-autosave.php:3496
9914
- msgid ""
9915
- "This setting has only effect when Table IX-A7 (foreign shortcodes) is "
9916
- "checked."
9917
- msgstr ""
9918
- "Toto nastavení má účinek pouze je-li nastavena položka Tabulka IX-A7 (cizí "
9919
- "krátké kódy)."
9920
-
9921
- #: wppa-settings-autosave.php:3503
9922
- msgid "Run wpautop on description"
9923
- msgstr "V popisu spustit wpautop"
9924
-
9925
- #: wppa-settings-autosave.php:3504
9926
- msgid "Adds &lt;p> and &lt;br> tags in fullsize descriptions."
9927
- msgstr ""
9928
- "Přidá tagy &lt;p> a &lt;br> v popisech pod fotografiemi v plné velikosti."
9929
-
9930
- #: wppa-settings-autosave.php:3512
9931
- msgid "Auto open comments"
9932
- msgstr "Automatické otevření komentářů"
9933
-
9934
- #: wppa-settings-autosave.php:3513
9935
- msgid "Automatic opens comments box when slideshow does not run."
9936
- msgstr "Pokud prezentace neběží, automaticky otevřít panel Komentářů."
9937
-
9938
- #: wppa-settings-autosave.php:3521
9939
- msgid "Film hover goto"
9940
- msgstr "Filmový pás - najetí myší"
9941
-
9942
- #: wppa-settings-autosave.php:3522
9943
- msgid "Go to slide when hovering filmstrip thumbnail."
9944
- msgstr "Zobrazit snímek, na který ve filmovém pásu najedete myší."
9945
-
9946
- #: wppa-settings-autosave.php:3523
9947
- msgid "Do not use this setting when slides have different aspect ratios!"
9948
- msgstr "Toto nastavení nepoužívejte, pokud mají snímky různé poměry stran!"
9949
-
9950
- #: wppa-settings-autosave.php:3530
9951
- msgid "Slide swipe"
9952
- msgstr "Posun snímku"
9953
-
9954
- #: wppa-settings-autosave.php:3531
9955
- msgid "Enable touch events swipe left-right on slides on touch screens."
9956
- msgstr ""
9957
- "Na dotykových obrazovkách povolit změnu snímku přejetím zleva doprava po "
9958
- "snímku."
9959
-
9960
- #: wppa-settings-autosave.php:3539
9961
- msgid "Slide page Ajax"
9962
- msgstr "AJAX stránkování snímků"
9963
-
9964
- #: wppa-settings-autosave.php:3540
9965
- msgid "Pagelinks slideshow use Ajax"
9966
- msgstr "Odkazy z prezentace na stránky používají AJAX"
9967
-
9968
- #: wppa-settings-autosave.php:3541
9969
- msgid "On some systems you need to disable ajax here."
9970
- msgstr "Pro některé systémy je třeba zde zakázat AJAX."
9971
-
9972
- #: wppa-settings-autosave.php:3548
9973
- msgid "Thumbnail related settings"
9974
- msgstr "Nastavení související s miniaturami"
9975
-
9976
- #: wppa-settings-autosave.php:3551
9977
- msgid "Photo ordering sequence method."
9978
- msgstr "Metoda řazení sekvence fotografií."
9979
-
9980
- #: wppa-settings-autosave.php:3552
9981
- msgid ""
9982
- "Specify the way the photos should be ordered. This is the default setting. "
9983
- "You can overrule the default sorting order on a per album basis."
9984
- msgstr ""
9985
- "Určete způsob, jakým by měly být fotografie řazeny. Jedná se o výchozí "
9986
- "nastavení. Výchozí řazení můžete změnit na úrovni alba."
9987
-
9988
- #: wppa-settings-autosave.php:3589
9989
- msgid "Thumbnail type"
9990
- msgstr "Typ miniatur"
9991
-
9992
- #: wppa-settings-autosave.php:3590
9993
- msgid "The way the thumbnail images are displayed."
9994
- msgstr "Způsob, jakým jsou zobrazeny miniatury obrazů."
9995
-
9996
- #: wppa-settings-autosave.php:3591
9997
- msgid ""
9998
- "You may select an altenative display method for thumbnails. Note that some "
9999
- "of the thumbnail settings do not apply to all available display methods."
10000
- msgstr ""
10001
- "Můžete si vybrat alternativní způsob zobrazení miniatur. Uvědomte si, že "
10002
- "některá z nastavení miniatur se nevztahují na všechny dostupné metody "
10003
- "zobrazení."
10004
-
10005
- #: wppa-settings-autosave.php:3593
10006
- msgid "like album covers"
10007
- msgstr "jako Obaly alb"
10008
-
10009
- #: wppa-settings-autosave.php:3593
10010
- msgid "like album covers mcr"
10011
- msgstr "jako MCR Obaly alb"
10012
-
10013
- #: wppa-settings-autosave.php:3593
10014
- msgid "masonry style columns"
10015
- msgstr "Sloupce stylu Zdivo"
10016
-
10017
- #: wppa-settings-autosave.php:3593
10018
- msgid "masonry style rows"
10019
- msgstr "Řádky stylu Zdivo"
10020
-
10021
- #: wppa-settings-autosave.php:3601 wppa-settings-autosave.php:3702
10022
- msgid "Placement"
10023
- msgstr "Umístění"
10024
-
10025
- #: wppa-settings-autosave.php:3602
10026
- msgid "Thumbnail image left or right."
10027
- msgstr "Miniatura fotografie nalevo nebo napravo"
10028
-
10029
- #: wppa-settings-autosave.php:3603
10030
- msgid "Indicate the placement position of the thumbnailphoto you wish."
10031
- msgstr "Uveďte umístění miniatury fotografie, které požadujete."
10032
-
10033
- #: wppa-settings-autosave.php:3612
10034
- msgid "Vertical alignment"
10035
- msgstr "Svislé zarovnání"
10036
-
10037
- #: wppa-settings-autosave.php:3613
10038
- msgid "Vertical alignment of thumbnails."
10039
- msgstr "Svislé zarovnání miniatur."
10040
-
10041
- #: wppa-settings-autosave.php:3614
10042
- msgid ""
10043
- "Specify the vertical alignment of thumbnail images. Use this setting when "
10044
- "albums contain both portrait and landscape photos."
10045
- msgstr ""
10046
- "Určete svislé zarovnání miniatur fotografií. Toto nastavení použijte v "
10047
- "případě, že album obsahuje fotografie jak na výšku, tak na šířku."
10048
-
10049
- #: wppa-settings-autosave.php:3615
10050
- msgid ""
10051
- "It is NOT recommended to use the value --- default ---; it will affect the "
10052
- "horizontal alignment also and is meant to be used with custom css."
10053
- msgstr ""
10054
- "Nedoporučuje se používat hodnotu ---výchozí---; Ovlivňuje také vodorovné "
10055
- "zarovnání a je určeno pro použití s uživatelským css stylem."
10056
-
10057
- #: wppa-settings-autosave.php:3624
10058
- msgid "Thumb mouseover"
10059
- msgstr "Myš na miniatuře"
10060
-
10061
- #: wppa-settings-autosave.php:3625
10062
- msgid "Apply thumbnail mouseover effect."
10063
- msgstr "Použít efekt najetí myší na miniaturu."
10064
-
10065
- #: wppa-settings-autosave.php:3626
10066
- msgid "Check this box to use mouseover effect on thumbnail images."
10067
- msgstr ""
10068
- "Zaškrtněte tuto volbu, chcete-li používat efekt najetí myší na miniaturu."
10069
-
10070
- #: wppa-settings-autosave.php:3634
10071
- msgid "Thumb opacity"
10072
- msgstr "Průhlednost miniatury"
10073
-
10074
- #: wppa-settings-autosave.php:3635 wppa-settings-autosave.php:3727
10075
- msgid "Initial opacity value."
10076
- msgstr "Počáteční hodnota průhlednosti."
10077
-
10078
- #: wppa-settings-autosave.php:3636 wppa-settings-autosave.php:3728
10079
- #: wppa-settings-autosave.php:3837
10080
- msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
10081
- msgstr "Zadejte procento průhlednosti. 0% je průhledný, 100% je neprůhledný"
10082
-
10083
- #: wppa-settings-autosave.php:3638 wppa-settings-autosave.php:3730
10084
- #: wppa-settings-autosave.php:3840 wppa-settings-autosave.php:4141
10085
- msgid "%"
10086
- msgstr "%"
10087
-
10088
- #: wppa-settings-autosave.php:3643
10089
- msgid "Thumb popup"
10090
- msgstr "Vyskakovací miniatury"
10091
-
10092
- #: wppa-settings-autosave.php:3644
10093
- msgid "Use popup effect on thumbnail images."
10094
- msgstr "Použít vyskakovací efekt na miniaturách fotografií."
10095
-
10096
- #: wppa-settings-autosave.php:3645
10097
- msgid "Thumbnails pop-up to a larger image when hovered."
10098
- msgstr "Při najetí myší na miniaturu vyskočí větší fotografie."
10099
-
10100
- #: wppa-settings-autosave.php:3653
10101
- msgid "Align subtext"
10102
- msgstr "Zarovnání připojeného textu"
10103
-
10104
- #: wppa-settings-autosave.php:3654
10105
- msgid "Set thumbnail subtext on equal height."
10106
- msgstr "Nastaví text připojený k miniatuře na stejnou výšku"
10107
-
10108
- #: wppa-settings-autosave.php:3662
10109
- msgid "Album and covers related settings"
10110
- msgstr "Nastavení související s Alby a Obaly"
10111
-
10112
- #: wppa-settings-autosave.php:3664
10113
- msgid "Album order"
10114
- msgstr "Řazení alb"
10115
-
10116
- #: wppa-settings-autosave.php:3665
10117
- msgid "Album ordering sequence method."
10118
- msgstr "Metoda řazení sekvence alb."
10119
-
10120
- #: wppa-settings-autosave.php:3666
10121
- msgid "Specify the way the albums should be ordered."
10122
- msgstr "Určete způsob, jakým by měla být alba řazena. "
10123
-
10124
- #: wppa-settings-autosave.php:3691
10125
- msgid "Default coverphoto selection"
10126
- msgstr "Výchozí výběr titulní fotografie"
10127
-
10128
- #: wppa-settings-autosave.php:3692
10129
- msgid "Default select cover photo method."
10130
- msgstr "Výchozí metoda výběru titulní fotografie na obal alba."
10131
-
10132
- #: wppa-settings-autosave.php:3693
10133
- msgid ""
10134
- "This is the initial value on album creation only. It can be overruled on the "
10135
- "edit album page."
10136
- msgstr ""
10137
- "Toto je pouze výchozí hodnota při vytváření alba. Může být změněna na "
10138
- "stránce úprav alba."
10139
-
10140
- #: wppa-settings-autosave.php:3694
10141
- msgid "Random from album"
10142
- msgstr "Náhodné fotografie z alba"
10143
-
10144
- #: wppa-settings-autosave.php:3694
10145
- msgid "Random featured from album"
10146
- msgstr "Náhodné Doporučené fotografie z alba"
10147
-
10148
- #: wppa-settings-autosave.php:3694
10149
- msgid "Most recently added to album"
10150
- msgstr "Nejnověji přidané fotografie do alba"
10151
-
10152
- #: wppa-settings-autosave.php:3694
10153
- msgid "Random from album or any sub album"
10154
- msgstr "Náhodné fotografie z alba nebo subalb"
10155
-
10156
- #: wppa-settings-autosave.php:3703
10157
- msgid "Cover image position."
10158
- msgstr "Umístění titulní fotografie."
10159
-
10160
- #: wppa-settings-autosave.php:3704
10161
- msgid ""
10162
- "Enter the position that you want to be used for the default album cover "
10163
- "selected in Table IV-D6."
10164
- msgstr ""
10165
- "Zadejte pozici, kterou chcete použít pro výchozí obal alba definovaný v "
10166
- "Tabulce IV-D6."
10167
-
10168
- #: wppa-settings-autosave.php:3705
10169
- msgid ""
10170
- "For covertype Image Factory: left will be treated as top and right will be "
10171
- "treted as bottom."
10172
- msgstr ""
10173
- "Pro typ obalu Image Factory bude vlevo přeloženo jako nahoru a vpravo bude "
10174
- "přeloženo jako dolu."
10175
-
10176
- #: wppa-settings-autosave.php:3706
10177
- msgid ""
10178
- "For covertype Long Descriptions: top will be treated as left and bottom will "
10179
- "be treted as right."
10180
- msgstr ""
10181
- "Pro typ obalu Dlouhé popisy bude nahoru přeloženo jako vlevo a dolu bude "
10182
- "přeloženo jako vpravo."
10183
-
10184
- #: wppa-settings-autosave.php:3716
10185
- msgid "Cover mouseover"
10186
- msgstr "Myš na obalu"
10187
-
10188
- #: wppa-settings-autosave.php:3717
10189
- msgid "Apply coverphoto mouseover effect."
10190
- msgstr "Použít efekt najetí myší na titulní fotografii."
10191
-
10192
- #: wppa-settings-autosave.php:3718
10193
- msgid "Check this box to use mouseover effect on cover images."
10194
- msgstr ""
10195
- "Zaškrtněte tuto volbu, chcete-li používat efekt najetí myší na fotografie na "
10196
- "obalu alba."
10197
-
10198
- #: wppa-settings-autosave.php:3726
10199
- msgid "Cover opacity"
10200
- msgstr "Průhlednost obalu"
10201
-
10202
- #: wppa-settings-autosave.php:3735
10203
- msgid "Cover type"
10204
- msgstr "Typ obalu"
10205
-
10206
- #: wppa-settings-autosave.php:3736
10207
- msgid "Select the default cover type."
10208
- msgstr "Zadejte výchozí typ obalu"
10209
-
10210
- #: wppa-settings-autosave.php:3737
10211
- msgid ""
10212
- "Types with the addition mcr are suitable for Multi Column in a Responsive "
10213
- "theme"
10214
- msgstr "Typy s MCR jsou vhodné pro vícesloupcové a responzivní šablony"
10215
-
10216
- #: wppa-settings-autosave.php:3760
10217
- msgid "The umber of coverphotos. Must be > 1 and < 25."
10218
- msgstr ""
10219
- "Počet titulních fotografií na obalu alba. Musí být větší než 1 a menší než "
10220
- "25."
10221
-
10222
- #: wppa-settings-autosave.php:3768
10223
- msgid "Rating related settings"
10224
- msgstr "Nastavení související s hodnocením"
10225
-
10226
- #: wppa-settings-autosave.php:3770
10227
- msgid "Rating login"
10228
- msgstr "Hlasování přihlášenými"
10229
-
10230
- #: wppa-settings-autosave.php:3771
10231
- msgid "Users must login to rate photos."
10232
- msgstr "Uživatelé musí být přihlášeni, aby mohli hlasovat."
10233
-
10234
- #: wppa-settings-autosave.php:3772
10235
- msgid ""
10236
- "If users want to vote for a photo (rating 1..5 stars) the must login first. "
10237
- "The avarage rating will always be displayed as long as the rating system is "
10238
- "enabled."
10239
- msgstr ""
10240
- "Pokud uživatelé chtějí hlasovat pro fotografie (hodnocení 1..5 hvězdiček) "
10241
- "musí se nejdříve přihlásit. Pokud je povolen systém hodnocení, bude průměrné "
10242
- "hodnocení vždy zobrazeno."
10243
-
10244
- #: wppa-settings-autosave.php:3779
10245
- msgid "Rating change"
10246
- msgstr "Změna hodnocení"
10247
-
10248
- #: wppa-settings-autosave.php:3780 wppa-settings-autosave.php:3781
10249
- msgid "Users may change their ratings."
10250
- msgstr "Uživatelé mohou změnit své hodnocení."
10251
-
10252
- #: wppa-settings-autosave.php:3782 wppa-settings-autosave.php:3819
10253
- #: wppa-settings-autosave.php:3838 wppa-settings-autosave.php:3851
10254
- #: wppa-settings-autosave.php:3861 wppa-settings-autosave.php:3871
10255
- #: wppa-settings-autosave.php:3881 wppa-settings-autosave.php:3890
10256
- msgid ""
10257
- "If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
10258
- msgstr ""
10259
- "Je-li v položce Tabulka I-E1 nastaveno \"Hlasování tlačítkem\" nemá toto "
10260
- "nastavení žádný význam."
10261
-
10262
- #: wppa-settings-autosave.php:3789
10263
- msgid "Rating multi"
10264
- msgstr "Vícenásobné hodnocení"
10265
-
10266
- #: wppa-settings-autosave.php:3790
10267
- msgid "Users may give multiple votes."
10268
- msgstr "Uživatelé mohou dát více hlasů."
10269
-
10270
- #: wppa-settings-autosave.php:3791
10271
- msgid ""
10272
- "Users may give multiple votes. (This has no effect when users may change "
10273
- "their votes.)"
10274
- msgstr ""
10275
- "Uživatelé mohou dát více hlasů. (Toto nemá žádný vliv, pokud mohou uživatelé "
10276
- "své hlasy měnit.)"
10277
-
10278
- #: wppa-settings-autosave.php:3798
10279
- msgid "Rate own photos"
10280
- msgstr "Hodnocení vlastních fotografií"
10281
-
10282
- #: wppa-settings-autosave.php:3799
10283
- msgid "It is allowed to rate photos by the uploader himself."
10284
- msgstr "Povolit hodnocení fotografií, které uživatel sám vložil."
10285
-
10286
- #: wppa-settings-autosave.php:3807
10287
- msgid "Rating requires comment"
10288
- msgstr "Hodnocení vyžaduje komentář"
10289
-
10290
- #: wppa-settings-autosave.php:3808
10291
- msgid "Users must clarify their vote in a comment."
10292
- msgstr "Uživatelé musí objasnit svů hlas v komentáři."
10293
-
10294
- #: wppa-settings-autosave.php:3817
10295
- msgid "This value counts dislike rating."
10296
- msgstr "Tato hodnota načítá hodnocení 'nelíbí se'."
10297
-
10298
- #: wppa-settings-autosave.php:3818
10299
- msgid ""
10300
- "This value will be used for a dislike rating on calculation of avarage "
10301
- "ratings."
10302
- msgstr ""
10303
- "Tato hodnota bude použita pro hodnocení 'nelíbí se' při výpočtu průměrné "
10304
- "hodnoty hodnocení."
10305
-
10306
- #: wppa-settings-autosave.php:3821
10307
- msgid "points"
10308
- msgstr "bod(ů)"
10309
-
10310
- #: wppa-settings-autosave.php:3826
10311
- msgid "Next after vote"
10312
- msgstr "Další po hlasování"
10313
-
10314
- #: wppa-settings-autosave.php:3827
10315
- msgid "Goto next slide after voting"
10316
- msgstr "Po vložení hlasování přejdi na další snímek"
10317
-
10318
- #: wppa-settings-autosave.php:3828
10319
- msgid ""
10320
- "If checked, the visitor goes straight to the slide following the slide he "
10321
- "voted. This will speed up mass voting."
10322
- msgstr ""
10323
- "Je-li zaškrtnuto, přejde návštěvník ihned po vložení hodnocení na další "
10324
- "snímek. Tímto způsobem zrychlíte hromadné hlasování."
10325
-
10326
- #: wppa-settings-autosave.php:3835
10327
- msgid "Star off opacity"
10328
- msgstr "Průhlednost hvězd"
10329
-
10330
- #: wppa-settings-autosave.php:3836
10331
- msgid "Rating star off state opacity value."
10332
- msgstr "Hodnota průhlednosti \"zhasnutých\" hvězdiček."
10333
-
10334
- #: wppa-settings-autosave.php:3846
10335
- msgid "Notify admin every x times."
10336
- msgstr "Upozornit administrátora na každých x případů."
10337
-
10338
- #: wppa-settings-autosave.php:3847
10339
- msgid ""
10340
- "If this number is positive, there will be a thumb down icon in the rating "
10341
- "bar."
10342
- msgstr ""
10343
- "Pokud je toto číslo kladné, bude v panelu Hodnocení zobrazena ikona palec "
10344
- "dolů."
10345
-
10346
- #: wppa-settings-autosave.php:3848
10347
- msgid ""
10348
- "Cicking the icon indicates a user wants to report that an image is "
10349
- "inappropiate."
10350
- msgstr ""
10351
- "Kliknutím na ikonu označuje, že uživatel chce oznámit tuto fotografii jako "
10352
- "nevhodnou."
10353
-
10354
- #: wppa-settings-autosave.php:3849
10355
- msgid "Admin will be notified by email after every x reports."
10356
- msgstr "Administrátor bude e-mailem upozorněn na každých x výskytů."
10357
-
10358
- #: wppa-settings-autosave.php:3850 wppa-settings-autosave.php:3860
10359
- #: wppa-settings-autosave.php:3870
10360
- msgid "A value of 0 disables this feature."
10361
- msgstr "Hodnota 0 tuto funkci zakáže."
10362
-
10363
- #: wppa-settings-autosave.php:3853 wppa-settings-autosave.php:3863
10364
- #: wppa-settings-autosave.php:3873
10365
- msgid "reports"
10366
- msgstr "výskytů"
10367
-
10368
- #: wppa-settings-autosave.php:3858
10369
- msgid "Pending after"
10370
- msgstr "Čekající po"
10371
-
10372
- #: wppa-settings-autosave.php:3859
10373
- msgid "Set status to pending after xx dislike votes."
10374
- msgstr "Nastavit status na čekající po xx hlasech 'nelíbí se'."
10375
-
10376
- #: wppa-settings-autosave.php:3868
10377
- msgid "Delete after"
10378
- msgstr "Smazat po"
10379
-
10380
- #: wppa-settings-autosave.php:3869
10381
- msgid "Deete photo after xx dislike votes."
10382
- msgstr "Smazat fotografii po xx hlasech 'nelíbí se'."
10383
-
10384
- #: wppa-settings-autosave.php:3878
10385
- msgid "Show dislike count"
10386
- msgstr "Zobrazit Počet hodnocení 'nelíbí se'"
10387
-
10388
- #: wppa-settings-autosave.php:3879
10389
- msgid "Show the number of dislikes in the rating bar."
10390
- msgstr "Zobrazit počet hodnocení 'nelíbí se' v liště hodnocení."
10391
-
10392
- #: wppa-settings-autosave.php:3880
10393
- msgid "Displayes the total number of dislike votes for the current photo."
10394
- msgstr "Zobrazí celkový počet hlasů 'nelíbí se' pro aktuální fotografii."
10395
-
10396
- #: wppa-settings-autosave.php:3888
10397
- msgid "Rating display type"
10398
- msgstr "Typ zobrazení hodnocení"
10399
-
10400
- #: wppa-settings-autosave.php:3889
10401
- msgid "Specify the type of the rating display."
10402
- msgstr "Zadejte typ zobrazení hodnocení."
10403
-
10404
- #: wppa-settings-autosave.php:3892
10405
- msgid "Graphic"
10406
- msgstr "Grafické"
10407
-
10408
- #: wppa-settings-autosave.php:3892
10409
- msgid "Numeric"
10410
- msgstr "Číselné"
10411
-
10412
- #: wppa-settings-autosave.php:3899
10413
- msgid "Show average rating"
10414
- msgstr "Zobrazit průměrné hodnocení"
10415
-
10416
- #: wppa-settings-autosave.php:3900
10417
- msgid "Display the avarage rating and/or vote count on the rating bar"
10418
- msgstr "V liště hodnocení zobrazit průměrná hodnocení a/nebo počet hlasů"
10419
-
10420
- #: wppa-settings-autosave.php:3901
10421
- msgid ""
10422
- "If checked, the average rating as well as the current users rating is "
10423
- "displayed in max 5 or 10 stars."
10424
- msgstr ""
10425
- "Je-li zaškrtnuto, bude zobrazeno průměrné hodnocení i hodnocení stávajícím "
10426
- "uživatelem v rozsahu 5 nebo 10 hvězdiček."
10427
-
10428
- #: wppa-settings-autosave.php:3902
10429
- msgid "If unchecked, only the current users rating is displayed (if any)."
10430
- msgstr ""
10431
- "Pokud volba není zaškrtnuta, zobrazí se pouze hodnocení stávajícím "
10432
- "uživatelem (existuje-li)."
10433
-
10434
- #: wppa-settings-autosave.php:3903
10435
- msgid ""
10436
- "If \"One button vote\" is selected in Table I-E1, this box checked will "
10437
- "display the vote count."
10438
- msgstr ""
10439
- "Je-li v Tabulce I-E1 nastaveno \"Hlasování tlačítkem\", zobrazí se po "
10440
- "zaškrtnutí této volby součet hlasů."
10441
-
10442
- #: wppa-settings-autosave.php:3910
10443
- msgid "Single vote button text"
10444
- msgstr "Text Hlasovacího tlačítka"
10445
-
10446
- #: wppa-settings-autosave.php:3911
10447
- msgid "The text on the voting button."
10448
- msgstr "Text na hlasovacím tlačítku."
10449
-
10450
- #: wppa-settings-autosave.php:3912 wppa-settings-autosave.php:3921
10451
- msgid "This text may contain qTranslate compatible language tags."
10452
- msgstr "Tento text může obsahovat jazykové tagy kompatibilní s qTranslate."
10453
-
10454
- #: wppa-settings-autosave.php:3919
10455
- msgid "Single vote button text voted"
10456
- msgstr "Text na použitém Hlasovacím tlačítku"
10457
-
10458
- #: wppa-settings-autosave.php:3920
10459
- msgid "The text on the voting button when voted."
10460
- msgstr "Text zobrazený na Hlasovacím tlačítku po provedení hlasování"
10461
-
10462
- #: wppa-settings-autosave.php:3928
10463
- msgid "Single vote button thumbnail"
10464
- msgstr "Miniatury - Hlasovací tlačítko"
10465
-
10466
- #: wppa-settings-autosave.php:3929
10467
- msgid "Display single vote button below thumbnails."
10468
- msgstr "Zobrazit hlasovací tlačítko pod miniaturami."
10469
-
10470
- #: wppa-settings-autosave.php:3930
10471
- msgid ""
10472
- "This works only in single vote mode: Table I-E1 set to \"one button vote\""
10473
- msgstr ""
10474
- "Toto nastavení má smysl pouze je-li v Tabulce I-E1 nastaveno \"Hlasování "
10475
- "tlačítkem\"."
10476
-
10477
- #: wppa-settings-autosave.php:3937
10478
- msgid "Medal bronze when"
10479
- msgstr "Bronzová medaile "
10480
-
10481
- #: wppa-settings-autosave.php:3938 wppa-settings-autosave.php:3956
10482
- msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
10483
- msgstr ""
10484
- "Počet maximálních hodnocení (5 nebo 10 hvězd), potřebných pro získání "
10485
- "bronzové medaile."
10486
-
10487
- #: wppa-settings-autosave.php:3939 wppa-settings-autosave.php:3957
10488
- msgid ""
10489
- "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10490
- "bronze medal. A value of 0 indicates that you do not want this feature."
10491
- msgstr ""
10492
- "Pokud získá fotografie daný počet maximálních hodnocení (5 nebo 10 "
10493
- "hvězdiček), získá bronzovou medaili. Hodnota 0 tuto funkcionalitu vypne."
10494
-
10495
- #: wppa-settings-autosave.php:3941 wppa-settings-autosave.php:3950
10496
- #: wppa-settings-autosave.php:3959
10497
- msgid "Topscores"
10498
- msgstr "maximálních hodnocení"
10499
-
10500
- #: wppa-settings-autosave.php:3946
10501
- msgid "Medal silver when"
10502
- msgstr "Stříbrná medaile"
10503
-
10504
- #: wppa-settings-autosave.php:3947
10505
- msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
10506
- msgstr ""
10507
- "Počet maximálních hodnocení (5 nebo 10 hvězd), potřebných pro získání "
10508
- "stříbrné medaile."
10509
-
10510
- #: wppa-settings-autosave.php:3948
10511
- msgid ""
10512
- "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10513
- "silver medal. A value of 0 indicates that you do not want this feature."
10514
- msgstr ""
10515
- "Pokud získá fotografie daný počet maximálních hodnocení (5 nebo 10 "
10516
- "hvězdiček), získá stříbrnou medaili. Hodnota 0 tuto funkcionalitu vypne."
10517
-
10518
- #: wppa-settings-autosave.php:3955
10519
- msgid "Medal gold when"
10520
- msgstr "Zlatá medaile"
10521
-
10522
- #: wppa-settings-autosave.php:3964
10523
- msgid "Medal tag color"
10524
- msgstr "Barva závěsu medaile"
10525
-
10526
- #: wppa-settings-autosave.php:3965
10527
- msgid "The color of the tag on the medal."
10528
- msgstr "Barva závěsu, na kterém visí medaile"
10529
-
10530
- #: wppa-settings-autosave.php:3968 wppa-settings-autosave.php:7043
10531
- msgid "Red"
10532
- msgstr "Červená"
10533
-
10534
- #: wppa-settings-autosave.php:3968 wppa-settings-autosave.php:7046
10535
- msgid "Green"
10536
- msgstr "Zelená"
10537
-
10538
- #: wppa-settings-autosave.php:3968 wppa-settings-autosave.php:7047
10539
- msgid "Blue"
10540
- msgstr "Modrá"
10541
-
10542
- #: wppa-settings-autosave.php:3975
10543
- msgid "Medal position"
10544
- msgstr "Pozice medaile"
10545
-
10546
- #: wppa-settings-autosave.php:3976
10547
- msgid "The position of the medal on the image."
10548
- msgstr "Pozice medaile v obrázku."
10549
-
10550
- #: wppa-settings-autosave.php:3979
10551
- msgid "Top left"
10552
- msgstr "Nahoře vlevo"
10553
-
10554
- #: wppa-settings-autosave.php:3979
10555
- msgid "Top right"
10556
- msgstr "Nahoře vpravo"
10557
-
10558
- #: wppa-settings-autosave.php:3979
10559
- msgid "Bottom left"
10560
- msgstr "Dole vlevo"
10561
-
10562
- #: wppa-settings-autosave.php:3979
10563
- msgid "Bottom right"
10564
- msgstr "Dole vpravo"
10565
-
10566
- #: wppa-settings-autosave.php:3986
10567
- msgid "Top criterium"
10568
- msgstr "Kritérium hodnocení"
10569
-
10570
- #: wppa-settings-autosave.php:3987
10571
- msgid "The top sort item used for topten results from shortcodes."
10572
- msgstr "Kritérium pro řazení výsledků získáných pomocí v krátkého kódu TopTen."
10573
-
10574
- #: wppa-settings-autosave.php:3990
10575
- msgid "Mean raiting"
10576
- msgstr "Průměrné hodnocení"
10577
-
10578
- #: wppa-settings-autosave.php:3990
10579
- msgid "Rating count"
10580
- msgstr "Počet hlasů"
10581
-
10582
- #: wppa-settings-autosave.php:3990
10583
- msgid "Viewcount"
10584
- msgstr "Počet shlédnutí"
10585
-
10586
- #: wppa-settings-autosave.php:3997
10587
- msgid "Comments related settings"
10588
- msgstr "Nastavení související s komentáři"
10589
-
10590
- #: wppa-settings-autosave.php:3999
10591
- msgid "Commenting login"
10592
- msgstr "Autentizace psaní"
10593
-
10594
- #: wppa-settings-autosave.php:4000
10595
- msgid "Users must be logged in to comment on photos."
10596
- msgstr "Aby uživatel mohl vkládat komentáře, musí být přihlášen."
10597
-
10598
- #: wppa-settings-autosave.php:4001
10599
- msgid ""
10600
- "Check this box if you want users to be logged in to be able to enter "
10601
- "comments on individual photos."
10602
- msgstr ""
10603
- "Tuto volbu zaškrtněte, pokud chcete, aby komentáře k jednotlivým fotkám "
10604
- "mohli vkládat pouze přihlášení uživatelé."
10605
-
10606
- #: wppa-settings-autosave.php:4008
10607
- msgid "Comments view login"
10608
- msgstr "Autentizace prohížení"
10609
-
10610
- #: wppa-settings-autosave.php:4009
10611
- msgid "Users must be logged in to see comments on photos."
10612
- msgstr "Aby uživatel mohl prohlížett komentáře, musí být přihlášen."
10613
-
10614
- #: wppa-settings-autosave.php:4010
10615
- msgid ""
10616
- "Check this box if you want users to be logged in to be able to see existing "
10617
- "comments on individual photos."
10618
- msgstr ""
10619
- "Tuto volbu zaškrtněte, pokud chcete, aby komentáře k jednotlivým fotkám "
10620
- "mohli prohlížet pouze přihlášení uživatelé."
10621
-
10622
- #: wppa-settings-autosave.php:4017
10623
- msgid "Last comment first"
10624
- msgstr "Nový komentář nejvýše"
10625
-
10626
- #: wppa-settings-autosave.php:4018
10627
- msgid "Display the newest comment on top."
10628
- msgstr "Navrchu zobrazit nejnovější komentář."
10629
-
10630
- #: wppa-settings-autosave.php:4019
10631
- msgid "If checked: Display the newest comment on top."
10632
- msgstr "Pokud je zatrženo: Zobrazit nejnovější komentář nahoře."
10633
-
10634
- #: wppa-settings-autosave.php:4020
10635
- msgid "If unchecked, the comments are listed in the ordere they were entered."
10636
- msgstr ""
10637
- "Jestliže volba není zaškrtnuta, komentáře jsou uvedeny v ordere, které byly "
10638
- "zadány."
10639
-
10640
- #: wppa-settings-autosave.php:4027
10641
- msgid "Comment moderation"
10642
- msgstr "Moderování komentářů"
10643
-
10644
- #: wppa-settings-autosave.php:4028
10645
- msgid "Comments from what users need approval."
10646
- msgstr "Pro které uživatele požadujete schvalování komentářů."
10647
-
10648
- #: wppa-settings-autosave.php:4029
10649
- msgid "Select the desired users of which the comments need approval."
10650
- msgstr "Vyberte skupinu uživatelů, jejichž komentáře vyžadují schválení."
10651
-
10652
- #: wppa-settings-autosave.php:4031 wppa-settings-autosave.php:5890
10653
- msgid "All users"
10654
- msgstr "Všichni uživatelé"
10655
-
10656
- #: wppa-settings-autosave.php:4031 wppa-settings-autosave.php:5890
10657
- msgid "Logged out users"
10658
- msgstr "Odhlášení uživatelé"
10659
-
10660
- #: wppa-settings-autosave.php:4031 wppa-settings-autosave.php:5890
10661
- msgid "No users"
10662
- msgstr "Žádní uživatelé"
10663
-
10664
- #: wppa-settings-autosave.php:4038
10665
- msgid "Comment email required"
10666
- msgstr "E-mail vyžadován"
10667
-
10668
- #: wppa-settings-autosave.php:4039
10669
- msgid "Commenting users must enter their email addresses."
10670
- msgstr "Uživatelé vkládající komentáře musí vyplnit e-mailovou adresu."
10671
-
10672
- #: wppa-settings-autosave.php:4047
10673
- msgid "Comment notify"
10674
- msgstr "Upozornit na komentář"
10675
-
10676
- #: wppa-settings-autosave.php:4048
10677
- msgid "Select who must receive an e-mail notification of a new comment."
10678
- msgstr "Vyberte, kdo musí e-mailem obdržet oznámení o novém komentáři."
10679
-
10680
- #: wppa-settings-autosave.php:4051
10681
- msgid "--- None ---"
10682
- msgstr "--- Nikdo ---"
10683
-
10684
- #: wppa-settings-autosave.php:4052
10685
- msgid "--- Admin ---"
10686
- msgstr "--- Administrátor ---"
10687
-
10688
- #: wppa-settings-autosave.php:4053
10689
- msgid "--- Album owner ---"
10690
- msgstr "--- Majitel alba ---"
10691
-
10692
- #: wppa-settings-autosave.php:4054
10693
- msgid "--- Admin & Owner ---"
10694
- msgstr "--- Admin & Majitel ---"
10695
-
10696
- #: wppa-settings-autosave.php:4055
10697
- msgid "--- Uploader ---"
10698
- msgstr "--- Vkladatel ---"
10699
-
10700
- #: wppa-settings-autosave.php:4056
10701
- msgid "--- Up & admin ---"
10702
- msgstr "--- Vkladatel & Admin ---"
10703
-
10704
- #: wppa-settings-autosave.php:4057
10705
- msgid "--- Up & Owner ---"
10706
- msgstr "--- Vkladatel & Majitel ---"
10707
-
10708
- #: wppa-settings-autosave.php:4080
10709
- msgid "Comment notify previous"
10710
- msgstr "Upozornit předchozí"
10711
-
10712
- #: wppa-settings-autosave.php:4081
10713
- msgid "Notify users who has commented this photo earlier."
10714
- msgstr "Upozornit uživatele, kteří dříve tuto fotografii okomentovali."
10715
-
10716
- #: wppa-settings-autosave.php:4089
10717
- msgid "Comment ntfy added"
10718
- msgstr "Potvrzení přidání komentáře"
10719
-
10720
- #: wppa-settings-autosave.php:4090
10721
- msgid "Show \"Comment added\" after successfull adding a comment."
10722
- msgstr "Po úspěšném přidání komentáře zobrazit \"Komentář byl přidán\""
10723
-
10724
- #: wppa-settings-autosave.php:4098
10725
- msgid "ComTen alt display"
10726
- msgstr "ComTen alternativní zobrazení"
10727
-
10728
- #: wppa-settings-autosave.php:4099
10729
- msgid "Display comments at comten thumbnails."
10730
- msgstr "Zobrazit komentáře u miniatur widgetu ComTen."
10731
-
10732
- #: wppa-settings-autosave.php:4107
10733
- msgid "Comten Thumbnail width"
10734
- msgstr "Šířka miniatur ve widgetu ComTen."
10735
-
10736
- #: wppa-settings-autosave.php:4108
10737
- msgid "The width of the thumbnail in the alt comment display."
10738
- msgstr "Šířka miniatur v alternativním zobrazení komentářů."
10739
-
10740
- #: wppa-settings-autosave.php:4111
10741
- msgid "Pixels"
10742
- msgstr "px"
10743
-
10744
- #: wppa-settings-autosave.php:4116
10745
- msgid "Show smiley picker"
10746
- msgstr "Lišta smajlíků"
10747
-
10748
- #: wppa-settings-autosave.php:4117
10749
- msgid "Display a clickable row of smileys."
10750
- msgstr "Zobrazit klikací řádek smajlíků."
10751
-
10752
- #: wppa-settings-autosave.php:4125
10753
- msgid "Show commenter email"
10754
- msgstr "Zobrazit e-mail autora komentáře"
10755
-
10756
- #: wppa-settings-autosave.php:4126
10757
- msgid "Show the commenter's email in the notify emails."
10758
- msgstr "Zobrazit e-mail autora komentáře v oznamovacím e-mailu."
10759
-
10760
- #: wppa-settings-autosave.php:4127
10761
- msgid "Shows the email address of the commenter in all notify emails."
10762
- msgstr ""
10763
- "Zobrazit e-mailovou adresu autora komentáře ve všech oznamovacích e-mailech."
10764
-
10765
- #: wppa-settings-autosave.php:4128
10766
- msgid ""
10767
- "If switched off, admin will still receive the senders email in the "
10768
- "notification mail"
10769
- msgstr ""
10770
- "Je-li tato volba vypnuta, bude adresa autora komentáře stále uváděna v mailu "
10771
- "pro administrátora."
10772
-
10773
- #: wppa-settings-autosave.php:4138
10774
- msgid "The opacity of the lightbox overlay background."
10775
- msgstr "Průhlednost pozadí pro překrytí Lightboxu."
10776
-
10777
- #: wppa-settings-autosave.php:4146
10778
- msgid "Click on background"
10779
- msgstr "Kliknutí na pozadí"
10780
-
10781
- #: wppa-settings-autosave.php:4147
10782
- msgid "Select the action to be taken on click on background."
10783
- msgstr "Vyberte akci, která má být provedena při kliknutí na pozadí."
10784
-
10785
- #: wppa-settings-autosave.php:4150
10786
- msgid "Nothing"
10787
- msgstr "Nic"
10788
-
10789
- #: wppa-settings-autosave.php:4150
10790
- msgid "Exit (close)"
10791
- msgstr "Opustit (Zavřít)"
10792
-
10793
- #: wppa-settings-autosave.php:4150
10794
- msgid "Browse (left/right)"
10795
- msgstr "Navigace (vlevo/vpravo)"
10796
-
10797
- #: wppa-settings-autosave.php:4157
10798
- msgid "Overlay animation speed"
10799
- msgstr "Rychlost animace prezentace"
10800
-
10801
- #: wppa-settings-autosave.php:4158
10802
- msgid "The fade-in time of the lightbox images"
10803
- msgstr "Čas přechodových efektů pro snímky v Lightboxu"
10804
-
10805
- #: wppa-settings-autosave.php:4161
10806
- msgid "very fast (100 ms.)"
10807
- msgstr "velmi rychle (100 ms)"
10808
-
10809
- #: wppa-settings-autosave.php:4161
10810
- msgid "fast (200 ms.)"
10811
- msgstr "rychle (200 ms)"
10812
-
10813
- #: wppa-settings-autosave.php:4161
10814
- msgid "normal (300 ms.)"
10815
- msgstr "normálně (300 ms)"
10816
-
10817
- #: wppa-settings-autosave.php:4161
10818
- msgid "slow (500 ms.)"
10819
- msgstr "pomalu (500 ms)"
10820
-
10821
- #: wppa-settings-autosave.php:4161
10822
- msgid "very slow (1 s.)"
10823
- msgstr "velmi pomalu (1 s)"
10824
-
10825
- #: wppa-settings-autosave.php:4161
10826
- msgid "extremely slow (2 s.)"
10827
- msgstr "extrémně pomalu (2 s)"
10828
-
10829
- #: wppa-settings-autosave.php:4168
10830
- msgid "Overlay slideshow speed"
10831
- msgstr "Rychlost překrytí prezentace"
10832
-
10833
- #: wppa-settings-autosave.php:4169
10834
- msgid "The time the lightbox images stay"
10835
- msgstr "Doba zobrazení snímku v Lightboxu"
10836
-
10837
- #: wppa-settings-autosave.php:4172
10838
- msgid "fast (3 s.)"
10839
- msgstr "rychle (3 s)"
10840
-
10841
- #: wppa-settings-autosave.php:4172
10842
- msgid "normal (5 s.)"
10843
- msgstr "normálně (5 s)"
10844
-
10845
- #: wppa-settings-autosave.php:4172
10846
- msgid "slow (8 s.)"
10847
- msgstr "pomalu (8 s)"
10848
-
10849
- #: wppa-settings-autosave.php:4172
10850
- msgid "very slow (13 s.)"
10851
- msgstr "velmi pomalu (13 s)"
10852
-
10853
- #: wppa-settings-autosave.php:4172
10854
- msgid "extremely slow (20 s.)"
10855
- msgstr "extrémně pomalu (20 s)"
10856
-
10857
- #: wppa-settings-autosave.php:4179
10858
- msgid "Overlay at top in Chrome"
10859
- msgstr "Překrytí navrchu v Chrome"
10860
-
10861
- #: wppa-settings-autosave.php:4180
10862
- msgid ""
10863
- "Place the overlay (lightbox) image at the top of the page in Chrome browsers."
10864
- msgstr ""
10865
- "Umístit překrytí (Lightbox) se snímkem navrch stránky v prohlížečích Chrome."
10866
-
10867
- #: wppa-settings-autosave.php:4181
10868
- msgid "This is required for certain mobile devices."
10869
- msgstr "Toto nastavení je nezbytné pro některá mobilní zařízení."
10870
-
10871
- #: wppa-settings-autosave.php:4188
10872
- msgid "WPPA+ Lightbox global"
10873
- msgstr "WPPA+ Lightbox globálně"
10874
-
10875
- #: wppa-settings-autosave.php:4189
10876
- msgid "Use the wppa+ lightbox also for non-wppa images."
10877
- msgstr "Používat WPPA+ Lightbox také pro obrázky mimo WPPA+."
10878
-
10879
- #: wppa-settings-autosave.php:4197
10880
- msgid "WPPA+ Lightbox global is a set"
10881
- msgstr "WPPA+ Lightbox sada snímků"
10882
-
10883
- #: wppa-settings-autosave.php:4198
10884
- msgid "Treat the other images as a set."
10885
- msgstr "Zacházet s ostatními obrázky jako se sadou."
10886
-
10887
- #: wppa-settings-autosave.php:4199
10888
- msgid ""
10889
- "If checked, you can scroll through the images in the lightbox view. Requires "
10890
- "item 5 to be checked."
10891
- msgstr ""
10892
- "Je-li tato volba zaškrtnuta, můžete procházet obrázky v zobrazení Lightbox. "
10893
- "Vyžaduje zaškrtnutí položky 5."
10894
-
10895
- #: wppa-settings-autosave.php:4206
10896
- msgid "Use hires files"
10897
- msgstr "Hi-Res zobrazení"
10898
-
10899
- #: wppa-settings-autosave.php:4207
10900
- msgid "Use the highest resolution available for lightbox."
10901
- msgstr "V Lightboxu použít nejvyšší dostupné rozlišení"
10902
-
10903
- #: wppa-settings-autosave.php:4208
10904
- msgid "Ticking this box is recommended for lightbox fullscreen modes."
10905
- msgstr ""
10906
- "Zaškrtnutí této volby je doporučeno pro celoobrazovkové režimy Lightboxu."
10907
-
10908
- #: wppa-settings-autosave.php:4216
10909
- msgid "Videos on lightbox start automaticly."
10910
- msgstr "V Lightboxu spouštět videa automaticky."
10911
-
10912
- #: wppa-settings-autosave.php:4225
10913
- msgid "Audio on lightbox start automaticly."
10914
- msgstr "V Lightboxu spouštět audia automaticky."
10915
-
10916
- #: wppa-settings-autosave.php:4250
10917
- msgid "Table V:"
10918
- msgstr "Tabulka V:"
10919
-
10920
- #: wppa-settings-autosave.php:4250
10921
- msgid "Fonts:"
10922
- msgstr "Písma:"
10923
-
10924
- #: wppa-settings-autosave.php:4251
10925
- msgid "This table describes the Fonts used for the wppa+ elements."
10926
- msgstr "Tato tabulka popisuje Fonty používaná pro prvky WPPA+."
10927
-
10928
- #: wppa-settings-autosave.php:4261 wppa-settings-autosave.php:4437
10929
- msgid "Font family"
10930
- msgstr "Rodina písma"
10931
-
10932
- #: wppa-settings-autosave.php:4262 wppa-settings-autosave.php:4438
10933
- msgid "Font size"
10934
- msgstr "Velikost písma"
10935
-
10936
- #: wppa-settings-autosave.php:4263 wppa-settings-autosave.php:4439
10937
- msgid "Font color"
10938
- msgstr "Barva písma"
10939
-
10940
- #: wppa-settings-autosave.php:4264 wppa-settings-autosave.php:4440
10941
- msgid "Font weight"
10942
- msgstr "Váha písma"
10943
-
10944
- #: wppa-settings-autosave.php:4274
10945
- msgid "normal"
10946
- msgstr "normální"
10947
-
10948
- #: wppa-settings-autosave.php:4274
10949
- msgid "bold"
10950
- msgstr "tučné"
10951
-
10952
- #: wppa-settings-autosave.php:4274
10953
- msgid "bolder"
10954
- msgstr "tučnější"
10955
-
10956
- #: wppa-settings-autosave.php:4274
10957
- msgid "lighter"
10958
- msgstr "štíhlejší"
10959
-
10960
- #: wppa-settings-autosave.php:4277
10961
- msgid "Album titles"
10962
- msgstr "Názvy alb"
10963
-
10964
- #: wppa-settings-autosave.php:4278
10965
- msgid "Font used for Album titles."
10966
- msgstr "Písmo použité pro názvy alb."
10967
-
10968
- #: wppa-settings-autosave.php:4279
10969
- msgid "Enter font name, size, color and weight for album cover titles."
10970
- msgstr "Zadejte název, velikost, barvu a váhu písma pro název na obalu alba."
10971
-
10972
- #: wppa-settings-autosave.php:4294
10973
- msgid "Slideshow desc"
10974
- msgstr "Popis prezentace"
10975
-
10976
- #: wppa-settings-autosave.php:4295
10977
- msgid "Font for slideshow photo descriptions."
10978
- msgstr "Písmo použité pro popis fotografií v prezentaci."
10979
-
10980
- #: wppa-settings-autosave.php:4296
10981
- msgid ""
10982
- "Enter font name, size, color and weight for slideshow photo descriptions."
10983
- msgstr ""
10984
- "Zadejte název, velikost, barvu a váhu písma pro popis fotografií v "
10985
- "prezentaci."
10986
-
10987
- #: wppa-settings-autosave.php:4311
10988
- msgid "Slideshow name"
10989
- msgstr "Název prezentace"
10990
-
10991
- #: wppa-settings-autosave.php:4312
10992
- msgid "Font for slideshow photo names."
10993
- msgstr "Písmo použité pro názvy fotografií v prezentaci."
10994
-
10995
- #: wppa-settings-autosave.php:4313
10996
- msgid "Enter font name, size, color and weight for slideshow photo names."
10997
- msgstr ""
10998
- "Zadejte název, velikost, barvu a váhu písma pro názvy fotografií v "
10999
- "prezentaci."
11000
-
11001
- #: wppa-settings-autosave.php:4328
11002
- msgid "Navigations"
11003
- msgstr "Navigace"
11004
-
11005
- #: wppa-settings-autosave.php:4329
11006
- msgid "Font for navigations."
11007
- msgstr "Písmo použité pro navigaci."
11008
-
11009
- #: wppa-settings-autosave.php:4330
11010
- msgid "Enter font name, size, color and weight for navigation items."
11011
- msgstr "Zadejte název, velikost, barvu a váhu písma pro položky navigace."
11012
-
11013
- #: wppa-settings-autosave.php:4346
11014
- msgid "Font for text under thumbnails."
11015
- msgstr "Písmo použité pro text pod miniaturami."
11016
-
11017
- #: wppa-settings-autosave.php:4347
11018
- msgid ""
11019
- "Enter font name, size, color and weight for text under thumbnail images."
11020
- msgstr ""
11021
- "Zadejte název, velikost, barvu a váhu písma pro text pod miniaturami "
11022
- "fotografií."
11023
-
11024
- #: wppa-settings-autosave.php:4363
11025
- msgid "General font in wppa boxes."
11026
- msgstr "Hlavní písmo ve WPPA+ boxech."
11027
-
11028
- #: wppa-settings-autosave.php:4364
11029
- msgid "Enter font name, size, color and weight for all other items."
11030
- msgstr ""
11031
- "Zadejte název, velikost, barvu a váhu písma pro všechny ostatní položky."
11032
-
11033
- #: wppa-settings-autosave.php:4380
11034
- msgid "Font in wppa number bars."
11035
- msgstr "Písmo použité pro číselné lišty ve WPPA+."
11036
-
11037
- #: wppa-settings-autosave.php:4381 wppa-settings-autosave.php:4398
11038
- msgid "Enter font name, size, color and weight for numberbar navigation."
11039
- msgstr ""
11040
- "Zadejte název, velikost, barvu a váhu písma pro navigaci číselnou lištou."
11041
-
11042
- #: wppa-settings-autosave.php:4396
11043
- msgid "Numbar Active"
11044
- msgstr "Číselná lišta - aktivní"
11045
-
11046
- #: wppa-settings-autosave.php:4397
11047
- msgid "Font in wppa number bars, active item."
11048
- msgstr "Písmo použité pro aktivní prvek číselné řady ve WPPA+."
11049
-
11050
- #: wppa-settings-autosave.php:4414
11051
- msgid "Font in wppa lightbox overlays."
11052
- msgstr "Písmo použité v WPPA+ Lightbox překrytích."
11053
-
11054
- #: wppa-settings-autosave.php:4415
11055
- msgid "Enter font name, size, color and weight for wppa lightbox overlays."
11056
- msgstr ""
11057
- "Zadejte název, velikost, barvu a váhu písma pro WPPA+ Lightbox překrytí."
11058
-
11059
- #: wppa-settings-autosave.php:4450
11060
- msgid "Table VI:"
11061
- msgstr "Tabulka VI:"
11062
-
11063
- #: wppa-settings-autosave.php:4450
11064
- msgid "Links:"
11065
- msgstr "Odkazy:"
11066
-
11067
- #: wppa-settings-autosave.php:4451
11068
- msgid "This table defines the link types and pages."
11069
- msgstr "Tato tabulka definuje stránky a typy odkazů."
11070
-
11071
- #: wppa-settings-autosave.php:4462 wppa-settings-autosave.php:5489
11072
- msgid "Link page"
11073
- msgstr "Cíl odkazu"
11074
-
11075
- #: wppa-settings-autosave.php:4464 wppa-settings-autosave.php:5491
11076
- msgid "Photo specific link overrules"
11077
- msgstr "Lze přesměrovat specifickým odkazem u fotografie"
11078
-
11079
- #: wppa-settings-autosave.php:4464 wppa-settings-autosave.php:5491
11080
- msgid "PSO"
11081
- msgstr "PSO"
11082
-
11083
- #: wppa-settings-autosave.php:4514
11084
- msgid "--- The same post or page ---"
11085
- msgstr "--- Stejný příspěvek nebo stránka ---"
11086
-
11087
- #: wppa-settings-autosave.php:4545
11088
- msgid "--- No page to link to (yet) ---"
11089
- msgstr "--- Žádný cíl odkazu (zatím) ---"
11090
-
11091
- #: wppa-settings-autosave.php:4550
11092
- msgid "--- Will be auto created ---"
11093
- msgstr "--- Bude automaticky vytvořen ---"
11094
-
11095
- #: wppa-settings-autosave.php:4552
11096
- msgid "Links from images in WPPA+ Widgets"
11097
- msgstr "Odkazy z fotografií ve WPPA+ Widgetech"
11098
-
11099
- #: wppa-settings-autosave.php:4554
11100
- msgid "PotdWidget"
11101
- msgstr "Widget FD"
11102
-
11103
- #: wppa-settings-autosave.php:4555
11104
- msgid "Photo Of The Day widget link."
11105
- msgstr "Odkaz z fotografie pro widget Fotografie dne."
11106
-
11107
- #: wppa-settings-autosave.php:4556
11108
- msgid "Select the type of link the photo of the day points to."
11109
- msgstr ""
11110
- "Vyberte typ a cíl odkazu, který bude spojen s fotografiemi ve widgetu "
11111
- "Fotografie dne."
11112
-
11113
- #: wppa-settings-autosave.php:4557
11114
- msgid ""
11115
- "If you select 'defined on widget admin page' you can manually enter a link "
11116
- "and title on the Photo of the day Widget Admin page."
11117
- msgstr ""
11118
- "Pokud vyberete možnost 'definováno na stránce administrace widgetu', můžete "
11119
- "ručně zadat odkaz a cíl v administraci Widgetu Fotografie Dne."
11120
-
11121
- #: wppa-settings-autosave.php:4566 wppa-settings-autosave.php:4609
11122
- #: wppa-settings-autosave.php:4687 wppa-settings-autosave.php:4730
11123
- #: wppa-settings-autosave.php:4778 wppa-settings-autosave.php:4825
11124
- #: wppa-settings-autosave.php:4872 wppa-settings-autosave.php:4924
11125
- #: wppa-settings-autosave.php:4962 wppa-settings-autosave.php:5012
11126
- #: wppa-settings-autosave.php:5054 wppa-settings-autosave.php:5094
11127
- #: wppa-settings-autosave.php:8971
11128
- msgid "no link at all."
11129
- msgstr "úplně bez odkazu."
11130
-
11131
- #: wppa-settings-autosave.php:4567 wppa-settings-autosave.php:4610
11132
- #: wppa-settings-autosave.php:4688 wppa-settings-autosave.php:4731
11133
- #: wppa-settings-autosave.php:4779 wppa-settings-autosave.php:4826
11134
- #: wppa-settings-autosave.php:4873 wppa-settings-autosave.php:4925
11135
- #: wppa-settings-autosave.php:4963 wppa-settings-autosave.php:5013
11136
- #: wppa-settings-autosave.php:5055 wppa-settings-autosave.php:5095
11137
- #: wppa-settings-autosave.php:8972
11138
- msgid "the plain photo (file)."
11139
- msgstr "prostá fotografie (soubor)."
11140
-
11141
- #: wppa-settings-autosave.php:4568 wppa-settings-autosave.php:8978
11142
- msgid "defined on widget admin page."
11143
- msgstr "definováno na stránce administrace widgetu."
11144
-
11145
- #: wppa-settings-autosave.php:4569 wppa-settings-autosave.php:4612
11146
- #: wppa-settings-autosave.php:5014 wppa-settings-autosave.php:5056
11147
- #: wppa-settings-autosave.php:8976
11148
- msgid "the content of the album."
11149
- msgstr "obsah alba."
11150
-
11151
- #: wppa-settings-autosave.php:4570 wppa-settings-autosave.php:4613
11152
- #: wppa-settings-autosave.php:4689 wppa-settings-autosave.php:4734
11153
- #: wppa-settings-autosave.php:4782 wppa-settings-autosave.php:4829
11154
- #: wppa-settings-autosave.php:4876 wppa-settings-autosave.php:4964
11155
- #: wppa-settings-autosave.php:5015 wppa-settings-autosave.php:5057
11156
- #: wppa-settings-autosave.php:8973
11157
- msgid "the full size photo in a slideshow."
11158
- msgstr "prezentace fotografií v plné velikosti."
11159
-
11160
- #: wppa-settings-autosave.php:4571 wppa-settings-autosave.php:4614
11161
- #: wppa-settings-autosave.php:4690 wppa-settings-autosave.php:4735
11162
- #: wppa-settings-autosave.php:4783 wppa-settings-autosave.php:4830
11163
- #: wppa-settings-autosave.php:4877 wppa-settings-autosave.php:4965
11164
- #: wppa-settings-autosave.php:5016 wppa-settings-autosave.php:5058
11165
- #: wppa-settings-autosave.php:5096 wppa-settings-autosave.php:8974
11166
- msgid "the fullsize photo on its own."
11167
- msgstr "samostatně fotografie v plné velikosti."
11168
-
11169
- #: wppa-settings-autosave.php:4572 wppa-settings-autosave.php:4615
11170
- #: wppa-settings-autosave.php:4654 wppa-settings-autosave.php:4693
11171
- #: wppa-settings-autosave.php:4738 wppa-settings-autosave.php:4786
11172
- #: wppa-settings-autosave.php:4833 wppa-settings-autosave.php:4880
11173
- #: wppa-settings-autosave.php:4968
11174
- msgid "a plain page without a querystring."
11175
- msgstr "obyčejná stránka bez řetězce dotazu."
11176
-
11177
- #: wppa-settings-autosave.php:4573 wppa-settings-autosave.php:4616
11178
- #: wppa-settings-autosave.php:4655 wppa-settings-autosave.php:4694
11179
- #: wppa-settings-autosave.php:4739 wppa-settings-autosave.php:4787
11180
- #: wppa-settings-autosave.php:4834 wppa-settings-autosave.php:4881
11181
- #: wppa-settings-autosave.php:4927 wppa-settings-autosave.php:4969
11182
- #: wppa-settings-autosave.php:5017 wppa-settings-autosave.php:5059
11183
- #: wppa-settings-autosave.php:5097
11184
- msgid "lightbox."
11185
- msgstr "Lightbox."
11186
-
11187
- #: wppa-settings-autosave.php:4598
11188
- msgid "SlideWidget"
11189
- msgstr "Widget Prezentace"
11190
-
11191
- #: wppa-settings-autosave.php:4599
11192
- msgid "Slideshow widget photo link."
11193
- msgstr "Odkaz z fotografie pro widget Prezentace."
11194
-
11195
- #: wppa-settings-autosave.php:4600
11196
- msgid "Select the type of link the slideshow photos point to."
11197
- msgstr ""
11198
- "Vyberte typ odkazu, který bude spojen s fotografiemi ve widgetu Prezentace."
11199
-
11200
- #: wppa-settings-autosave.php:4611 wppa-settings-autosave.php:8977
11201
- msgid "defined at widget activation."
11202
- msgstr "definován při aktivaci widgetu."
11203
-
11204
- #: wppa-settings-autosave.php:4641
11205
- msgid "Album widget"
11206
- msgstr "Widget Album"
11207
-
11208
- #: wppa-settings-autosave.php:4642
11209
- msgid "Album widget thumbnail link"
11210
- msgstr "Odkaz z miniatury fotografie pro widget Album."
11211
-
11212
- #: wppa-settings-autosave.php:4643
11213
- msgid "Select the type of link the album widget photos point to."
11214
- msgstr ""
11215
- "Vyberte typ a cíl odkazu, který bude spojen s fotografiemi ve widgetu ALbum."
11216
-
11217
- #: wppa-settings-autosave.php:4652
11218
- msgid "subalbums and thumbnails."
11219
- msgstr "sub-alba a miniatury."
11220
-
11221
- #: wppa-settings-autosave.php:4653
11222
- msgid "slideshow."
11223
- msgstr "prezentace."
11224
-
11225
- #: wppa-settings-autosave.php:4676
11226
- msgid "ThumbnailWidget"
11227
- msgstr "Widget Miniatury"
11228
-
11229
- #: wppa-settings-autosave.php:4677
11230
- msgid "Thumbnail widget photo link."
11231
- msgstr "Odkaz z miniatury fotografie pro widget Miniatury."
11232
-
11233
- #: wppa-settings-autosave.php:4678
11234
- msgid "Select the type of link the thumbnail photos point to."
11235
- msgstr ""
11236
- "Vyberte typ a cíl odkazu, který bude spojen s fotografiemi ve widgetu "
11237
- "Miniatury."
11238
-
11239
- #: wppa-settings-autosave.php:4691 wppa-settings-autosave.php:4736
11240
- #: wppa-settings-autosave.php:4784 wppa-settings-autosave.php:4831
11241
- #: wppa-settings-autosave.php:4878 wppa-settings-autosave.php:4966
11242
- msgid "the single photo in the style of a slideshow."
11243
- msgstr "single fotografie ve stylu prezentace."
11244
-
11245
- #: wppa-settings-autosave.php:4692 wppa-settings-autosave.php:4737
11246
- #: wppa-settings-autosave.php:4785 wppa-settings-autosave.php:4832
11247
- #: wppa-settings-autosave.php:4879 wppa-settings-autosave.php:4967
11248
- #: wppa-settings-autosave.php:5099
11249
- msgid "the fs photo with download and print buttons."
11250
- msgstr "fotografie v plné velikosti s tlačítky Stáhnout a Tisk."
11251
-
11252
- #: wppa-settings-autosave.php:4719
11253
- msgid "TopTenWidget"
11254
- msgstr "Widget TopTen"
11255
-
11256
- #: wppa-settings-autosave.php:4720
11257
- msgid "TopTen widget photo link."
11258
- msgstr "Odkaz z fotografie pro widget TopTen."
11259
-
11260
- #: wppa-settings-autosave.php:4721
11261
- msgid "Select the type of link the top ten photos point to."
11262
- msgstr ""
11263
- "Vyberte typ a cíl odkazu, který bude spojen s fotografiemi ve widgetu TopTen."
11264
-
11265
- #: wppa-settings-autosave.php:4732
11266
- msgid "the content of the virtual topten album."
11267
- msgstr "obsah virtuálního alba TopTen."
11268
-
11269
- #: wppa-settings-autosave.php:4733 wppa-settings-autosave.php:4781
11270
- #: wppa-settings-autosave.php:4828 wppa-settings-autosave.php:4875
11271
- msgid "the content of the thumbnails album."
11272
- msgstr "obsah alba miniatur."
11273
-
11274
- #: wppa-settings-autosave.php:4767
11275
- msgid "LasTenWidget"
11276
- msgstr "Widget LastTen"
11277
-
11278
- #: wppa-settings-autosave.php:4768
11279
- msgid "Last Ten widget photo link."
11280
- msgstr "Odkaz z fotografie pro widget LastTen."
11281
-
11282
- #: wppa-settings-autosave.php:4769
11283
- msgid "Select the type of link the last ten photos point to."
11284
- msgstr ""
11285
- "Vyberte typ a cíl odkazu, který bude spojen s fotografiemi ve widgetu "
11286
- "LastTen."
11287
-
11288
- #: wppa-settings-autosave.php:4780
11289
- msgid "the content of the virtual lasten album."
11290
- msgstr "obsah virtuálního alba LastTen."
11291
-
11292
- #: wppa-settings-autosave.php:4814
11293
- msgid "CommentWidget"
11294
- msgstr "Widget Komentáře"
11295
-
11296
- #: wppa-settings-autosave.php:4815
11297
- msgid "Comment widget photo link."
11298
- msgstr "Odkaz z fotografie pro widget Komentáře."
11299
-
11300
- #: wppa-settings-autosave.php:4816
11301
- msgid "Select the type of link the comment widget photos point to."
11302
- msgstr ""
11303
- "Vyberte typ a cíl odkazu, který bude spojen s fotografiemi ve widgetu "
11304
- "Komentáře."
11305
-
11306
- #: wppa-settings-autosave.php:4827
11307
- msgid "the content of the virtual comten album."
11308
- msgstr "obsah virtuálního alba ComTen."
11309
-
11310
- #: wppa-settings-autosave.php:4861
11311
- msgid "FeaTenWidget"
11312
- msgstr "Widget FeaTen"
11313
-
11314
- #: wppa-settings-autosave.php:4862
11315
- msgid "FeaTen widget photo link."
11316
- msgstr "Odkaz z fotografie pro widget FeaTen."
11317
-
11318
- #: wppa-settings-autosave.php:4863
11319
- msgid "Select the type of link the featured ten photos point to."
11320
- msgstr ""
11321
- "Vyberte typ odkazu, který bude spojen s fotografiemi ve widgetu FeaTen."
11322
-
11323
- #: wppa-settings-autosave.php:4874
11324
- msgid "the content of the virtual featen album."
11325
- msgstr "obsah virtuálního alba FeaTen."
11326
-
11327
- #: wppa-settings-autosave.php:4907
11328
- msgid "Links from other WPPA+ images"
11329
- msgstr "Odkazy z ostatních WPPA+ snímků"
11330
-
11331
- #: wppa-settings-autosave.php:4909
11332
- msgid "Cover Image"
11333
- msgstr "Titulní fotografie"
11334
-
11335
- #: wppa-settings-autosave.php:4910
11336
- msgid "The link from the cover image of an album."
11337
- msgstr "Odkaz z titulní fotografie alba."
11338
-
11339
- #: wppa-settings-autosave.php:4911
11340
- msgid "Select the type of link the coverphoto points to."
11341
- msgstr ""
11342
- "Vyberte typ odkazu, který bude spojen s titulními fotografiemi na obal alb."
11343
-
11344
- #: wppa-settings-autosave.php:4912
11345
- msgid "The link from the album title can be configured on the Edit Album page."
11346
- msgstr "Odkaz z Názvu alba může být nastaven na stránce Upravit album."
11347
-
11348
- #: wppa-settings-autosave.php:4913
11349
- msgid "This link will be used for the photo also if you select: same as title."
11350
- msgstr ""
11351
- "Pokud zde nastavíte 'stejný jako název', bude tento odkaz použit i pro "
11352
- "fotografii."
11353
-
11354
- #: wppa-settings-autosave.php:4914
11355
- msgid ""
11356
- "If you specify New Tab on this line, all links from the cover will open a "
11357
- "new tab,"
11358
- msgstr ""
11359
- "Pokud na tomto řádku zaškrtnete 'Nová karta', otevře každý odkaz z obalu "
11360
- "novou kartu prohlížeče,"
11361
-
11362
- #: wppa-settings-autosave.php:4915
11363
- msgid "except when Ajax is activated on Table IV-A1."
11364
- msgstr "kromě případů, kdy je v Tabulce IV-A1 aktivován AJAX."
11365
-
11366
- #: wppa-settings-autosave.php:4926 wppa-settings-autosave.php:8979
11367
- msgid "same as title."
11368
- msgstr "stejný jako název."
11369
-
11370
- #: wppa-settings-autosave.php:4928
11371
- msgid "a slideshow starting at the photo"
11372
- msgstr "prezentace začínající na fotografii"
11373
-
11374
- #: wppa-settings-autosave.php:4949
11375
- msgid "Thumbnail"
11376
- msgstr "Miniatura"
11377
-
11378
- #: wppa-settings-autosave.php:4950
11379
- msgid "Thumbnail link."
11380
- msgstr "Odkaz z miniatury fotografie."
11381
-
11382
- #: wppa-settings-autosave.php:4951 wppa-settings-autosave.php:5001
11383
- #: wppa-settings-autosave.php:5043
11384
- msgid "Select the type of link you want, or no link at all."
11385
- msgstr ""
11386
- "Vyberte typ a cíl odkazu, který bude spojen s miniaturami fotografií, nebo "
11387
- "nastavte 'úplně bez odkazu'."
11388
-
11389
- #: wppa-settings-autosave.php:4952 wppa-settings-autosave.php:5002
11390
- #: wppa-settings-autosave.php:5044
11391
- msgid ""
11392
- "If you select the fullsize photo on its own, it will be stretched to fit, "
11393
- "regardless of that setting."
11394
- msgstr ""
11395
- "Pokud vyberete samostatnou fotografii v plné velikosti, bude vždy roztažena, "
11396
- "bez ohledu na toto nastavení."
11397
-
11398
- #: wppa-settings-autosave.php:4953 wppa-settings-autosave.php:5003
11399
- #: wppa-settings-autosave.php:5045
11400
- #, php-format
11401
- msgid ""
11402
- "Note that a page must have at least %%wppa%% or [wppa][/wppa] in its content "
11403
- "to show up the photo(s)."
11404
- msgstr ""
11405
- "Uvědomte si, že stránka musí obsahovat alespoň %%wppa%% nebo [wppa] [/wppa], "
11406
- "aby zobrazila fotografie."
11407
-
11408
- #: wppa-settings-autosave.php:4982
11409
- msgid "Auto Page"
11410
- msgstr "Automatická stránka"
11411
-
11412
- #: wppa-settings-autosave.php:4999
11413
- msgid "Sphoto"
11414
- msgstr "SFotografie"
11415
-
11416
- #: wppa-settings-autosave.php:5000
11417
- msgid "Single photo link."
11418
- msgstr "Odkaz ze Single fotografie"
11419
-
11420
- #: wppa-settings-autosave.php:5041
11421
- msgid "Mphoto"
11422
- msgstr "MFotografie"
11423
-
11424
- #: wppa-settings-autosave.php:5042
11425
- msgid "Media-like photo link."
11426
- msgstr "Odkaz z fotografie typu Média."
11427
-
11428
- #: wppa-settings-autosave.php:5084
11429
- msgid "Slideshow fullsize link"
11430
- msgstr "Odkaz z prezentace fotografií v plné velikosti"
11431
-
11432
- #: wppa-settings-autosave.php:5085
11433
- msgid ""
11434
- "You can overrule lightbox but not big browse buttons with the photo specifc "
11435
- "link."
11436
- msgstr ""
11437
- "Specifickým odkazem u fotografií můžete přesměrovat odkazy v Lightboxu, ale "
11438
- "nikoli velká navigační tlačítka."
11439
-
11440
- #: wppa-settings-autosave.php:5098
11441
- msgid "lightbox single photos."
11442
- msgstr "Single fotografie v Lightboxu."
11443
-
11444
- #: wppa-settings-autosave.php:5100
11445
- msgid "the thumbnails."
11446
- msgstr "miniatury."
11447
-
11448
- #: wppa-settings-autosave.php:5124
11449
- msgid "Film linktype"
11450
- msgstr "Filmový pás"
11451
-
11452
- #: wppa-settings-autosave.php:5125
11453
- msgid "Direct access goto image in:"
11454
- msgstr "Přímý přístup přejde na obrázek v:"
11455
-
11456
- #: wppa-settings-autosave.php:5126
11457
- msgid ""
11458
- "Select the action to be taken when the user clicks on a filmstrip image."
11459
- msgstr ""
11460
- "Vyberte akci, která bude provedena, když uživatel klikne na snímek filmového "
11461
- "pásu."
11462
-
11463
- #: wppa-settings-autosave.php:5131
11464
- msgid "slideshow window"
11465
- msgstr "okno prezentace"
11466
-
11467
- #: wppa-settings-autosave.php:5132
11468
- msgid "lightbox overlay"
11469
- msgstr "překrytíLightbox"
11470
-
11471
- #: wppa-settings-autosave.php:5147
11472
- msgid "Other links"
11473
- msgstr "Ostatní odkazy"
11474
-
11475
- #: wppa-settings-autosave.php:5149
11476
- msgid "Download Link (aka Art Monkey link)"
11477
- msgstr "Odkaz pro stahování (alias Art Monkey)"
11478
-
11479
- #: wppa-settings-autosave.php:5150
11480
- msgid "Makes the photo name a download button."
11481
- msgstr "Vytvoří stahovací tlačítko s názvem fotografie."
11482
-
11483
- #: wppa-settings-autosave.php:5151
11484
- msgid "Link Photo name in slideshow to file or zip with photoname as filename."
11485
- msgstr ""
11486
- "V prezentaci vytvoří odkaz s Názvem fotografie nasměrovaný na soubor nebo "
11487
- "zip archiv pojmenovaný dle názvu fotografie."
11488
-
11489
- #: wppa-settings-autosave.php:5155 wppa-settings-autosave.php:5202
11490
- msgid "image file"
11491
- msgstr "soubor obrázku"
11492
-
11493
- #: wppa-settings-autosave.php:5156 wppa-settings-autosave.php:5203
11494
- msgid "zipped image"
11495
- msgstr "zazipovaný obrázek"
11496
-
11497
- #: wppa-settings-autosave.php:5169
11498
- msgid "Art Monkey Source"
11499
- msgstr "Zdroj Art Monkey"
11500
-
11501
- #: wppa-settings-autosave.php:5170
11502
- msgid "Use Source file for art monkey link if available."
11503
- msgstr "Pro Art Monkey odkaz použít zdrojový soubor (je-li dostupný)."
11504
-
11505
- #: wppa-settings-autosave.php:5179
11506
- msgid "Art Monkey Display"
11507
- msgstr "Zobrazení Art Monkey"
11508
-
11509
- #: wppa-settings-autosave.php:5180
11510
- msgid "Select button or link ( text )."
11511
- msgstr "Vyberte tlačítko nebo textový odkaz."
11512
-
11513
- #: wppa-settings-autosave.php:5185
11514
- msgid "Textlink"
11515
- msgstr "Textový odkaz"
11516
-
11517
- #: wppa-settings-autosave.php:5197
11518
- msgid "Popup Download Link"
11519
- msgstr "Odkaz pro stahování ve vyskakovacím okně"
11520
-
11521
- #: wppa-settings-autosave.php:5198
11522
- msgid "Configure the download link on fullsize popups."
11523
- msgstr ""
11524
- "Nastavit odkaz pro stahování z vyskakovacího okna fotografií v plné "
11525
- "velikosti."
11526
-
11527
- #: wppa-settings-autosave.php:5199
11528
- msgid "Link fullsize popup download button to either image or zip file."
11529
- msgstr ""
11530
- "Vytvoří odkaz z vyskakovacího okna fotografií v plné velikosti nasměrovaný "
11531
- "buď na obrázek nebo soubor zip."
11532
-
11533
- #: wppa-settings-autosave.php:5215
11534
- msgid "Download link on lightbox"
11535
- msgstr "Odkaz pro stahování v Lightboxu"
11536
-
11537
- #: wppa-settings-autosave.php:5216
11538
- msgid "Art monkey link on lightbox photo names."
11539
- msgstr "Art monkey odkaz u názvů fotografií v Lightboxu."
11540
-
11541
- #: wppa-settings-autosave.php:5225
11542
- msgid "Album download link"
11543
- msgstr "Odkaz pro stahování z Alba"
11544
-
11545
- #: wppa-settings-autosave.php:5226
11546
- msgid "Place an album download link on the album covers"
11547
- msgstr "Vložit do obalů alb odkaz pro stahování alba."
11548
-
11549
- #: wppa-settings-autosave.php:5227
11550
- msgid "Creates a download zipfile containing the photos of the album"
11551
- msgstr "Vytvoří zip archiv obsahující fotografie z alba"
11552
-
11553
- #: wppa-settings-autosave.php:5235
11554
- msgid "Album download Source"
11555
- msgstr "Zdroj pro nahrávání alba"
11556
-
11557
- #: wppa-settings-autosave.php:5236
11558
- msgid "Use Source file for album download link if available."
11559
- msgstr ""
11560
- "Pro Odkaz stahování alba použít raději zdrojové soubory, jsou-li k dispozici."
11561
-
11562
- #: wppa-settings-autosave.php:5245
11563
- msgid "Tagcloud Link"
11564
- msgstr "Odkaz Skupiny štítků"
11565
-
11566
- #: wppa-settings-autosave.php:5246
11567
- msgid "Configure the link from the tags in the tag cloud."
11568
- msgstr "Konfigurovat odkaz pro štítky ve Skupině štítků."
11569
-
11570
- #: wppa-settings-autosave.php:5247
11571
- msgid "Link the tag words to ether the thumbnails or the slideshow."
11572
- msgstr "Odkaz výrazů ze štítků na miniatury nebo prezentaci."
11573
-
11574
- #: wppa-settings-autosave.php:5256 wppa-settings-autosave.php:5287
11575
- #: wppa-settings-autosave.php:5382
11576
- msgid "slideshow"
11577
- msgstr "prezentace"
11578
-
11579
- #: wppa-settings-autosave.php:5276
11580
- msgid "Multitag Link"
11581
- msgstr "Odkaz Vícenásobných štítků"
11582
-
11583
- #: wppa-settings-autosave.php:5277
11584
- msgid "Configure the link from the multitag selection."
11585
- msgstr "Konfigurovat odkaz z výběru vícenásobných štítků."
11586
-
11587
- #: wppa-settings-autosave.php:5278
11588
- msgid "Link to ether the thumbnails or the slideshow."
11589
- msgstr "Odkaz buď na miniatury nebo prezentaci."
11590
-
11591
- #: wppa-settings-autosave.php:5307
11592
- msgid "Super View Landing"
11593
- msgstr "Cíl pro Super zobrazení"
11594
-
11595
- #: wppa-settings-autosave.php:5308
11596
- msgid "The landing page for the Super View widget."
11597
- msgstr "Cílová stránka pro widget Super zobrazení."
11598
-
11599
- #: wppa-settings-autosave.php:5316
11600
- msgid "Defined by the visitor"
11601
- msgstr "Definováno návštěvníkem"
11602
-
11603
- #: wppa-settings-autosave.php:5329
11604
- msgid "Uploader Landing"
11605
- msgstr "Cíl pro Nahrávání"
11606
-
11607
- #: wppa-settings-autosave.php:5330
11608
- msgid "Select the landing page for the Uploader Widget"
11609
- msgstr "Vyberte cílovou stránku pro widget Nahrávání"
11610
-
11611
- #: wppa-settings-autosave.php:5350
11612
- msgid "Bestof Landing"
11613
- msgstr "Cíl pro Nejlepší fotografie"
11614
-
11615
- #: wppa-settings-autosave.php:5351
11616
- msgid "Select the landing page for the BestOf Widget / Box"
11617
- msgstr "Zvolte cílovou stránku pro panel / widget Nejlepší fotografie"
11618
-
11619
- #: wppa-settings-autosave.php:5371
11620
- msgid "Album navigator Link"
11621
- msgstr "Odkaz navigace alba"
11622
-
11623
- #: wppa-settings-autosave.php:5372
11624
- msgid "Select link type and page for the Album navigator Widget"
11625
- msgstr "Vyberte typ a cílovou stránku pro widget Navigace alba."
11626
-
11627
- #: wppa-settings-autosave.php:5400
11628
- msgid "Supersearch Landing"
11629
- msgstr "Cíl pro Super-vyhledávání"
11630
-
11631
- #: wppa-settings-autosave.php:5401
11632
- msgid "Select the landing page for the Supersearch Box"
11633
- msgstr "Vyberte cílovou stránku pro panel Super-vyhledávání"
11634
-
11635
- #: wppa-settings-autosave.php:5421
11636
- msgid "SM widget return"
11637
- msgstr "Odkaz SM widgetu"
11638
-
11639
- #: wppa-settings-autosave.php:5422
11640
- msgid "Select the return link for social media from widgets"
11641
- msgstr "Vyberte návratový odkaz pro sociální média ve widgetech"
11642
-
11643
- #: wppa-settings-autosave.php:5423
11644
- msgid ""
11645
- "If you select Landing page, and it wont work, it may be required to set the "
11646
- "Occur to the sequence number of the landing shortcode on the page."
11647
- msgstr ""
11648
- "Pokud zvolíte Cílovou stránku, a ta nebude fungovat, může to být požadavkem "
11649
- "na pořadové číslo cílového krátkého kódu na stránce."
11650
-
11651
- #: wppa-settings-autosave.php:5424
11652
- msgid ""
11653
- "Normally it is 1, but you can try 2 etc. Always create a new shared link to "
11654
- "test a setting."
11655
- msgstr ""
11656
- "Normálně je to 1, ale můžete zkusit 2 atd. Pro otestování nastavení vždy "
11657
- "vytvořte sdílený odkaz."
11658
-
11659
- #: wppa-settings-autosave.php:5432
11660
- msgid "Home page"
11661
- msgstr "Hlavní stránka"
11662
-
11663
- #: wppa-settings-autosave.php:5433
11664
- msgid "Landing page"
11665
- msgstr "Cílová stránka"
11666
-
11667
- #: wppa-settings-autosave.php:5444
11668
- msgid "Occur"
11669
- msgstr "Výskyt"
11670
-
11671
- #: wppa-settings-autosave.php:5453
11672
- #, fuzzy
11673
- msgid "Album cover subalbums link"
11674
- msgstr "Odkaz z miniatury fotografie pro widget Album."
11675
-
11676
- #: wppa-settings-autosave.php:5454
11677
- msgid "Select the linktype for sub-albums on parent album covers."
11678
- msgstr ""
11679
-
11680
- #: wppa-settings-autosave.php:5462
11681
- #, fuzzy
11682
- msgid "No link at all"
11683
- msgstr "úplně bez odkazu"
11684
-
11685
- #: wppa-settings-autosave.php:5463
11686
- #, fuzzy
11687
- msgid "Thumbnails and covers"
11688
- msgstr "Miniatury - Popis"
11689
-
11690
- #: wppa-settings-autosave.php:5464
11691
- #, fuzzy
11692
- msgid "Slideshow or covers"
11693
- msgstr "Popis prezentace"
11694
-
11695
- #: wppa-settings-autosave.php:5472
11696
- #, fuzzy
11697
- msgid "Recursive"
11698
- msgstr "Obnovit"
11699
-
11700
- #: wppa-settings-autosave.php:5501
11701
- msgid "Table VII:"
11702
- msgstr "Tabulka VII:"
11703
-
11704
- #: wppa-settings-autosave.php:5501
11705
- msgid "Permissions and Restrictions:"
11706
- msgstr "Oprávnění a omezení:"
11707
-
11708
- #: wppa-settings-autosave.php:5502
11709
- msgid ""
11710
- "This table describes the access settings for admin and front-end activities."
11711
- msgstr ""
11712
- "Tato tabulka popisuje nastavení přístupu pro administrátorské a front-end "
11713
- "aktivity."
11714
-
11715
- #: wppa-settings-autosave.php:5523
11716
- #, fuzzy
11717
- msgid "Moderate P+C"
11718
- msgstr "Moderovat"
11719
-
11720
- #: wppa-settings-autosave.php:5527
11721
- #, fuzzy
11722
- msgid "Comment&nbsp;Admin"
11723
- msgstr "Administrace Komentářů"
11724
-
11725
- #: wppa-settings-autosave.php:5530
11726
- msgid "Role"
11727
- msgstr "Role"
11728
-
11729
- #: wppa-settings-autosave.php:5539
11730
- msgid ""
11731
- "Admin settings per user role. Enabling these settings will overrule the "
11732
- "front-end settings for the specific user role"
11733
- msgstr ""
11734
- "Administrátorská nastavení uživatelských rolí. Aktivace těchto nastavení "
11735
- "potlačí definice frontendu pro danou uživatelskou roli"
11736
-
11737
- #: wppa-settings-autosave.php:5563
11738
- msgid "Frontend create Albums and upload Photos enabling and limiting settings"
11739
- msgstr ""
11740
- "Nastavení povolující a omezující vytváření Alb a nahrávání fotografií z "
11741
- "frontendu"
11742
-
11743
- #: wppa-settings-autosave.php:5565
11744
- msgid "User create Albums"
11745
- msgstr "Vytvoření alba uživatelem"
11746
-
11747
- #: wppa-settings-autosave.php:5566
11748
- msgid "Enable frontend album creation."
11749
- msgstr "Povolit uživateli vytvořit album z frontendu."
11750
-
11751
- #: wppa-settings-autosave.php:5567
11752
- msgid "If you check this item, frontend album creation will be enabled."
11753
- msgstr "Zaškrtnutím této položky povolíte vytváření Alb z frontendu."
11754
-
11755
- #: wppa-settings-autosave.php:5577
11756
- msgid "User edit album"
11757
- msgstr "Editování alba uživatelem"
11758
-
11759
- #: wppa-settings-autosave.php:5578
11760
- msgid "Enable frontent edit album name and description."
11761
- msgstr "Povolit uživateli upravovat název a popis alba z frontendu."
11762
-
11763
- #: wppa-settings-autosave.php:5588
11764
- msgid "User delete Albums"
11765
- msgstr "Mazání alba uživatelem"
11766
-
11767
- #: wppa-settings-autosave.php:5589
11768
- msgid "Enable frontend album deletion"
11769
- msgstr "Povolit uživateli mazat alba z frontendu"
11770
-
11771
- #: wppa-settings-autosave.php:5590
11772
- msgid "If you check this item, frontend album deletion will be enabled."
11773
- msgstr "Zaškrtnutím této položky povolíte smazání Alba z frontendu."
11774
-
11775
- #: wppa-settings-autosave.php:5600
11776
- msgid "User create Albums login"
11777
- msgstr "Přihlášení zřizovatele alba"
11778
-
11779
- #: wppa-settings-autosave.php:5601
11780
- msgid "Frontend album creation requires the user is logged in."
11781
- msgstr "Alba z frontendu může vytvářet pouze přihlášený uživatel."
11782
-
11783
- #: wppa-settings-autosave.php:5627
11784
- #, php-format
11785
- msgid "Upload limit %s"
11786
- msgstr "Limit pro nahrávání %s"
11787
-
11788
- #: wppa-settings-autosave.php:5628
11789
- msgid "Limit upload capacity for logged out users."
11790
- msgstr "Omezení kapacity nahrávání pro odhlášené uživatele."
11791
-
11792
- #: wppa-settings-autosave.php:5629
11793
- #, php-format
11794
- msgid "Limit upload capacity for the user role %s."
11795
- msgstr "Omezení kapacity nahrávání pro uživatelskou roli %s."
11796
-
11797
- #: wppa-settings-autosave.php:5630
11798
- msgid "This setting has only effect when Table VII-B2 is unchecked."
11799
- msgstr ""
11800
- "Toto nastavení je účinné pouze není-li zaškrtnuta položka B2 v Tabulce VII."
11801
-
11802
- #: wppa-settings-autosave.php:5631
11803
- msgid ""
11804
- "This limitation only applies to frontend uploads when the same userrole does "
11805
- "not have the Upload checkbox checked in Table VII-A."
11806
- msgstr ""
11807
- "Toto omezení se použije na frontend nahrávání pouze, má-li tato role "
11808
- "zaškrtnutou položku Nahrávání fotografií v Tabulce VII - A."
11809
-
11810
- #: wppa-settings-autosave.php:5632 wppa-settings-autosave.php:5648
11811
- #: wppa-settings-autosave.php:7123
11812
- msgid "A value of 0 means: no limit."
11813
- msgstr "Hodnota 0 znamená: bez omezení."
11814
-
11815
- #: wppa-settings-autosave.php:5645
11816
- #, php-format
11817
- msgid "Album limit %s"
11818
- msgstr "Limit počtu Alb %s"
11819
-
11820
- #: wppa-settings-autosave.php:5646
11821
- #, php-format
11822
- msgid "Limit number of albums for the user role %s."
11823
- msgstr "Omezení počtu alb pro uživatelskou roli %s."
11824
-
11825
- #: wppa-settings-autosave.php:5647
11826
- msgid ""
11827
- "This limitation only applies to frontend create albums when the same "
11828
- "userrole does not have the Album admin checkbox checked in Table VII-A."
11829
- msgstr ""
11830
- "Toto omezení se použije na frontend vytváření alb pouze, má-li tato role "
11831
- "zaškrtnutou položku Administrace alba v Tabulce VII - A."
11832
-
11833
- #: wppa-settings-autosave.php:5659
11834
- msgid "Upload one only"
11835
- msgstr "Nahrát pouze jedinou"
11836
-
11837
- #: wppa-settings-autosave.php:5660
11838
- msgid "Non admin users can upload only one photo at a time."
11839
- msgstr "Běžní uživatelé mohou souběžně nahrávat pouze jednu fotografii."
11840
-
11841
- #: wppa-settings-autosave.php:5670
11842
- msgid "Upload moderation"
11843
- msgstr "Moderování nahrávání"
11844
-
11845
- #: wppa-settings-autosave.php:5671
11846
- msgid "Uploaded photos need moderation."
11847
- msgstr "Nahrávané fotografie vyžadují moderování."
11848
-
11849
- #: wppa-settings-autosave.php:5672
11850
- msgid ""
11851
- "If checked, photos uploaded by users who do not have photo album admin "
11852
- "access rights need moderation."
11853
- msgstr ""
11854
- "Je-li tato položka zaškrtnuta, pak fotografie nahrávané uživateli bez "
11855
- "přístupových práv k administraci alb vyžadují moderování."
11856
-
11857
- #: wppa-settings-autosave.php:5673
11858
- msgid ""
11859
- "Users who have photo album admin access rights can change the photo status "
11860
- "to publish or featured."
11861
- msgstr ""
11862
- "Uživatelé mající přístupová práva k administraci alb mohou změnit status "
11863
- "fotografie na publikováno nebo Doporučené."
11864
-
11865
- #: wppa-settings-autosave.php:5674
11866
- msgid "You can set the album admin access rights in Table VII-A."
11867
- msgstr ""
11868
- "Práva pro přístup k Administraci alb můžete nastavit v Tabulce VII - A."
11869
-
11870
- #: wppa-settings-autosave.php:5683
11871
- msgid "Upload notify"
11872
- msgstr "Upozornění na nahrávku"
11873
-
11874
- #: wppa-settings-autosave.php:5684
11875
- msgid "Notify admin at frontend upload."
11876
- msgstr "Upozornit administrátora na nahrávání z frontendu."
11877
-
11878
- #: wppa-settings-autosave.php:5685 wppa-settings-autosave.php:5696
11879
- msgid "If checked, admin will receive a notification by email."
11880
- msgstr ""
11881
- "Pokud je tato položka zaškrtnuta, obdrží administrátor e-mailem upozornění."
11882
-
11883
- #: wppa-settings-autosave.php:5694
11884
- msgid "Upload backend notify"
11885
- msgstr "Upozornit na nahrávání z administrace"
11886
-
11887
- #: wppa-settings-autosave.php:5695
11888
- msgid "Notify admin at backend upload."
11889
- msgstr "Upozornit administrátora na nahrávání z administrace."
11890
-
11891
- #: wppa-settings-autosave.php:5705
11892
- msgid "Max size in pixels"
11893
- msgstr "Maximální velikost v px"
11894
-
11895
- #: wppa-settings-autosave.php:5706
11896
- msgid "Max size for height and width for front-end uploads."
11897
- msgstr "Maximální velikost pro výšku a šířku nahrávek z frontendu."
11898
-
11899
- #: wppa-settings-autosave.php:5707
11900
- msgid "Enter the maximum size. 0 is unlimited"
11901
- msgstr "Zadejte maximální velikost. 0 znamená neomezeno."
11902
-
11903
- #: wppa-settings-autosave.php:5716
11904
- msgid "Home after Upload"
11905
- msgstr "Po nahrání zpět na Domácí stránku"
11906
-
11907
- #: wppa-settings-autosave.php:5717
11908
- msgid "After successfull front-end upload, go to the home page."
11909
- msgstr "Návrat na Domácí stránku po úspěšném dokončení nahrávání z frontendu."
11910
-
11911
- #: wppa-settings-autosave.php:5727
11912
- msgid "Admin Functionality restrictions for non administrators"
11913
- msgstr "Omezení administračních funkcionalit pro běžné uživatele"
11914
-
11915
- #: wppa-settings-autosave.php:5729
11916
- msgid "Alt thumb is restricted"
11917
- msgstr "Zakázat alternativní miniaturu"
11918
-
11919
- #: wppa-settings-autosave.php:5730
11920
- msgid "Using <b>alt thumbsize</b> is a restricted action."
11921
- msgstr "Použití <b>alt thumbsize</b> je zakázanou akcí."
11922
-
11923
- #: wppa-settings-autosave.php:5731
11924
- msgid ""
11925
- "If checked: alt thumbsize can not be set in album admin by users not having "
11926
- "admin rights."
11927
- msgstr ""
11928
- "Pokud je tato položka zaškrtnuta, nemůže běžný uživatel v administraci alb "
11929
- "nastavit alternativní velikost miniatur."
11930
-
11931
- #: wppa-settings-autosave.php:5740
11932
- msgid "Link is restricted"
11933
- msgstr "Zakázat odkaz"
11934
-
11935
- #: wppa-settings-autosave.php:5741
11936
- msgid "Using <b>Link to</b> is a restricted action."
11937
- msgstr "Použití <b>Odkaz na</b> je zakázanou akcí."
11938
-
11939
- #: wppa-settings-autosave.php:5742
11940
- msgid ""
11941
- "If checked: Link to: can not be set in album admin by users not having admin "
11942
- "rights."
11943
- msgstr ""
11944
- "Pokud je tato položka zaškrtnuta, nemůže běžný uživatel v administraci alb "
11945
- "nastavit položku Odkaz na:."
11946
-
11947
- #: wppa-settings-autosave.php:5751
11948
- msgid "CoverType is restricted"
11949
- msgstr "Zakázat Typ obalu"
11950
-
11951
- #: wppa-settings-autosave.php:5752
11952
- msgid "Changing <b>Cover Type</b> is a restricted action."
11953
- msgstr "Změna <b>Typu obalu</b> je zakázanou akcí."
11954
-
11955
- #: wppa-settings-autosave.php:5753
11956
- msgid ""
11957
- "If checked: Cover Type: can not be set in album admin by users not having "
11958
- "admin rights."
11959
- msgstr ""
11960
- "Pokud je tato položka zaškrtnuta, nemůže běžný uživatel v administraci alb "
11961
- "nastavit položku Typ obalu."
11962
-
11963
- #: wppa-settings-autosave.php:5762
11964
- msgid "Photo order# is restricted"
11965
- msgstr "Zakázat Pořadí fotografií#"
11966
-
11967
- #: wppa-settings-autosave.php:5763
11968
- msgid "Changing <b>Photo sort order #</b> is a restricted action."
11969
- msgstr "Změna <b>Pořadí fotografií #</b> je zakázanou akcí."
11970
-
11971
- #: wppa-settings-autosave.php:5764
11972
- msgid ""
11973
- "If checked: Photo sort order #: can not be set in photo admin by users not "
11974
- "having admin rights."
11975
- msgstr ""
11976
- "Pokud je tato položka zaškrtnuta, nemůže běžný uživatel v administraci alb "
11977
- "nastavit položku Pořadí fotografií #."
11978
-
11979
- #: wppa-settings-autosave.php:5773
11980
- msgid "Change source restricted"
11981
- msgstr "Zakázat změnu zdroje"
11982
-
11983
- #: wppa-settings-autosave.php:5774
11984
- msgid "Changing the import source dir requires admin rights."
11985
- msgstr ""
11986
- "Změna zdrojového adresáře pro import vyžaduje administrátorská oprávnění."
11987
-
11988
- #: wppa-settings-autosave.php:5775
11989
- msgid ""
11990
- "If checked, the imput source for importing photos and albums is restricted "
11991
- "to user role administrator."
11992
- msgstr ""
11993
- "Pokud je tato položka zaškrtnuta, je změna zdrojového adresáře pro import "
11994
- "fotografií a alb vyhrazena pouze pro administrátorskou roli."
11995
-
11996
- #: wppa-settings-autosave.php:5784
11997
- msgid "Extended status restricted"
11998
- msgstr "Zakázat Rozšířený stav"
11999
-
12000
- #: wppa-settings-autosave.php:5785
12001
- msgid "Setting status other than pending or publish requires admin rights."
12002
- msgstr ""
12003
- "Změna stavu na jiný než čekající nebo publikovaný vyžaduje administrátorská "
12004
- "práva."
12005
-
12006
- #: wppa-settings-autosave.php:5795
12007
- msgid "Photo description restricted"
12008
- msgstr "Zakázat Popis fotografií"
12009
-
12010
- #: wppa-settings-autosave.php:5796
12011
- msgid "Edit photo description requires admin rights."
12012
- msgstr "Úprava popisu fotografií vyžaduje administrátorská práva."
12013
-
12014
- #: wppa-settings-autosave.php:5806
12015
- msgid "Update photofiles restricted"
12016
- msgstr "Zakázat aktualizaci souborů fotografií"
12017
-
12018
- #: wppa-settings-autosave.php:5807
12019
- msgid "Re-upload files requires admin rights"
12020
- msgstr "Znovu nahrání souborů vyžaduje administrátorská oprávnění"
12021
-
12022
- #: wppa-settings-autosave.php:5817
12023
- msgid "Miscellaneous limiting settings"
12024
- msgstr "Další omezující nastavení"
12025
-
12026
- #: wppa-settings-autosave.php:5819
12027
- msgid "Owners only"
12028
- msgstr "Pouze majitelé"
12029
-
12030
- #: wppa-settings-autosave.php:5820
12031
- msgid "Limit edit album access to the album owners only."
12032
- msgstr "Omezit přístup k úpravě alb pouze na vlastníky alba."
12033
-
12034
- #: wppa-settings-autosave.php:5821
12035
- msgid "If checked, non-admin users can edit their own albums only."
12036
- msgstr ""
12037
- "Je-li tato položka zaškrtnuta, mohou běžní uživatelé upravovat pouze svá "
12038
- "alba."
12039
-
12040
- #: wppa-settings-autosave.php:5830
12041
- msgid "Upload Owners only"
12042
- msgstr "Nahrávat pouze majitelé"
12043
-
12044
- #: wppa-settings-autosave.php:5831
12045
- msgid "Limit uploads to the album owners only."
12046
- msgstr "Omezit nahrávání do alb pouze na vlastníky alba."
12047
-
12048
- #: wppa-settings-autosave.php:5832
12049
- msgid ""
12050
- "If checked, users can upload to their own own albums and --- public --- only."
12051
- msgstr ""
12052
- "Je-li tato položka zaškrtnuta, mohou běžní uživatelé nahrávat pouze do svých "
12053
- "a veřejných alb."
12054
-
12055
- #: wppa-settings-autosave.php:5841
12056
- msgid "Uploader Edit"
12057
- msgstr "Úpravy vkladatelem"
12058
-
12059
- #: wppa-settings-autosave.php:5842
12060
- msgid "Allow the uploader to edit the photo info"
12061
- msgstr "Povolit vkladateli upravovat informace o fotografii"
12062
-
12063
- #: wppa-settings-autosave.php:5843
12064
- msgid ""
12065
- "If checked, any logged in user that has upload rights and uploads an image "
12066
- "has the capability to edit the photo information."
12067
- msgstr ""
12068
- "Je-li tato položka zaškrtnuta, může uživatel, který fotografii nahrává, "
12069
- "upravit informace související s touto fotografií."
12070
-
12071
- #: wppa-settings-autosave.php:5844
12072
- msgid "Note: This may be AFTER moderation!!"
12073
- msgstr "Poznámka: Povoleno vždy až PO moderování!!!"
12074
-
12075
- #: wppa-settings-autosave.php:5853
12076
- msgid "Uploader Moderate Comment"
12077
- msgstr "Moderování komentářů majitelem"
12078
-
12079
- #: wppa-settings-autosave.php:5854
12080
- msgid "The owner of the photo can moderate the photos comments."
12081
- msgstr "Vlastník fotografie může moderovat komentáře k fotografii."
12082
-
12083
- #: wppa-settings-autosave.php:5855
12084
- msgid "This setting requires \"Uploader edit\" to be enabled also."
12085
- msgstr ""
12086
- "Zaškrtnutí této položky vyžaduje současně i povolení \"Úpravy vkladatelm\"."
12087
-
12088
- #: wppa-settings-autosave.php:5864
12089
- msgid "Upload memory check frontend"
12090
- msgstr "Kontrola paměti při nahrávání z frontendu"
12091
-
12092
- #: wppa-settings-autosave.php:5865 wppa-settings-autosave.php:5876
12093
- msgid "Disable uploading photos that are too large."
12094
- msgstr "Zakázat nahrávání příliš velkých fotografií."
12095
-
12096
- #: wppa-settings-autosave.php:5866 wppa-settings-autosave.php:5877
12097
- msgid ""
12098
- "To prevent out of memory crashes during upload and possible database "
12099
- "inconsistencies, uploads can be prevented if the photos are too big."
12100
- msgstr ""
12101
- "Nahrávání může být zamítnuto v případě příliš velkých souborů, aby se "
12102
- "zabránilo chybám paměti během nahrávání a možným nekonzistencím v databázi."
12103
-
12104
- #: wppa-settings-autosave.php:5875
12105
- msgid "Upload memory check admin"
12106
- msgstr "Kontrola paměti při nahrávání z administrace"
12107
-
12108
- #: wppa-settings-autosave.php:5886
12109
- msgid "Comment captcha"
12110
- msgstr "Captcha u komentářů"
12111
-
12112
- #: wppa-settings-autosave.php:5887
12113
- msgid "Use a simple calculate captcha on comments form."
12114
- msgstr "Na formuláři komentářů použít jednoduché captcha."
12115
-
12116
- #: wppa-settings-autosave.php:5900
12117
- msgid "Spam lifetime"
12118
- msgstr "Životnost spamu"
12119
-
12120
- #: wppa-settings-autosave.php:5901
12121
- msgid "Delete spam comments when older than."
12122
- msgstr "Smazat spamy starší než."
12123
-
12124
- #: wppa-settings-autosave.php:5904
12125
- msgid "10 minutes"
12126
- msgstr "10 minut"
12127
-
12128
- #: wppa-settings-autosave.php:5904
12129
- msgid "half an hour"
12130
- msgstr "půl hodiny"
12131
-
12132
- #: wppa-settings-autosave.php:5904
12133
- msgid "one hour"
12134
- msgstr "jedna hodina"
12135
-
12136
- #: wppa-settings-autosave.php:5904
12137
- msgid "one day"
12138
- msgstr "jeden den"
12139
-
12140
- #: wppa-settings-autosave.php:5904
12141
- msgid "one week"
12142
- msgstr "jeden týden"
12143
-
12144
- #: wppa-settings-autosave.php:5914
12145
- msgid "Avoid duplicates"
12146
- msgstr "Vyhnout se duplikátům"
12147
-
12148
- #: wppa-settings-autosave.php:5915
12149
- msgid "Prevent the creation of duplicate photos."
12150
- msgstr "Zabránit vzniku duplicitních fotek."
12151
-
12152
- #: wppa-settings-autosave.php:5916
12153
- msgid ""
12154
- "If checked: uploading, importing, copying or moving photos to other albums "
12155
- "will be prevented when the desitation album already contains a photo with "
12156
- "the same filename."
12157
- msgstr ""
12158
- "Pokud je tato položka zaškrtnuta, bude nahrávání, import, kopírování nebo "
12159
- "přesun fotografií odmítnut v případě, že cílové album obsahuje soubor se "
12160
- "stejným názvem."
12161
-
12162
- #: wppa-settings-autosave.php:5925
12163
- msgid "Blacklist user"
12164
- msgstr "Vložit na Černou listinu"
12165
-
12166
- #: wppa-settings-autosave.php:5926 wppa-settings-autosave.php:5927
12167
- msgid "Set the status of all the users photos to 'pending'."
12168
- msgstr "Nastavit stav všech fotografií daného uživatele na \"čekající\"."
12169
-
12170
- #: wppa-settings-autosave.php:5928
12171
- msgid "Also inhibits further uploads."
12172
- msgstr "Zahrnuje též budoucí nahrávky."
12173
-
12174
- #: wppa-settings-autosave.php:5934
12175
- msgid "--- select a user to blacklist ---"
12176
- msgstr "--- zvolit uživatele pro černou listinu ---"
12177
-
12178
- #: wppa-settings-autosave.php:5944 wppa-settings-autosave.php:5949
12179
- #: wppa-settings-autosave.php:5970 wppa-settings-autosave.php:8211
12180
- #: wppa-settings-autosave.php:8253
12181
- msgid "The page will be reloaded after the action has taken place."
12182
- msgstr "Po uskutečnění akce bude stránka znovu načtena."
12183
-
12184
- #: wppa-settings-autosave.php:5950
12185
- msgid "User login name <b>( case sensitive! )</b>:"
12186
- msgstr "Přihlašovací jméno uživatele <b>(Citlivé na velikost! )</b>:"
12187
-
12188
- #: wppa-settings-autosave.php:5958
12189
- msgid "Unblacklist user"
12190
- msgstr "Vyjmout z Černé listiny"
12191
-
12192
- #: wppa-settings-autosave.php:5959
12193
- msgid "Set the status of all the users photos to 'publish'."
12194
- msgstr "Nastavit stav všech fotografií daného uživatele na \"publikováno\"."
12195
-
12196
- #: wppa-settings-autosave.php:5963
12197
- msgid "--- select a user to unblacklist ---"
12198
- msgstr "--- Vybrat očišťovaného uživatele ---"
12199
-
12200
- #: wppa-settings-autosave.php:5978
12201
- msgid "Photo owner change"
12202
- msgstr "Změna majitele fotografie"
12203
-
12204
- #: wppa-settings-autosave.php:5979
12205
- msgid "Administrators can change photo owner"
12206
- msgstr "Administrátoři mohou změnit majitele fotografií"
12207
-
12208
- #: wppa-settings-autosave.php:6007
12209
- msgid "Table VIII:"
12210
- msgstr "Tabulka VIII:"
12211
-
12212
- #: wppa-settings-autosave.php:6007
12213
- msgid "Actions:"
12214
- msgstr "Akce:"
12215
-
12216
- #: wppa-settings-autosave.php:6008
12217
- msgid "This table lists all actions that can be taken to the wppa+ system"
12218
- msgstr ""
12219
- "Tato tabulka obsahuje seznam všech akcí, které mohou být provedeny v systému "
12220
- "WPPA+"
12221
-
12222
- #: wppa-settings-autosave.php:6018 wppa-settings-autosave.php:6598
12223
- msgid "Specification"
12224
- msgstr "Specifikace"
12225
-
12226
- #: wppa-settings-autosave.php:6019 wppa-settings-autosave.php:6599
12227
- #: wppa-settings-autosave.php:8993 wppa-settings-autosave.php:9015
12228
- msgid "Do it!"
12229
- msgstr "Proveď!"
12230
-
12231
- #: wppa-settings-autosave.php:6021 wppa-settings-autosave.php:6601
12232
- msgid "To Go"
12233
- msgstr "Zbývá"
12234
-
12235
- #: wppa-settings-autosave.php:6029
12236
- msgid "Harmless and reverseable actions"
12237
- msgstr "Neškodné a vratné akce"
12238
-
12239
- #: wppa-settings-autosave.php:6031
12240
- msgid "Ignore concurrency"
12241
- msgstr "Ignorovat souběžnost"
12242
-
12243
- #: wppa-settings-autosave.php:6032
12244
- msgid "Ignore the prevention of concurrent actions."
12245
- msgstr "Ignorovat ochranu souběžných akcí."
12246
-
12247
- #: wppa-settings-autosave.php:6033
12248
- msgid ""
12249
- "This setting is meant to recover from deadlock situations only. Use with "
12250
- "care!"
12251
- msgstr "Používejte opatrně a pouze při zotavení po zablokování!!! "
12252
-
12253
- #: wppa-settings-autosave.php:6044
12254
- msgid "Setup"
12255
- msgstr "Nastavení"
12256
-
12257
- #: wppa-settings-autosave.php:6045
12258
- msgid "Re-initialize plugin."
12259
- msgstr "Znovu inicializovat plugin."
12260
-
12261
- #: wppa-settings-autosave.php:6046
12262
- msgid ""
12263
- "Re-initilizes the plugin, (re)creates database tables and sets up default "
12264
- "settings and directories if required."
12265
- msgstr ""
12266
- "Znovu inicializuje plugin, případně znovu vytvoří tabulky databáze a je-li "
12267
- "potřeba, obnoví výchozí nastavení a adresáře."
12268
-
12269
- #: wppa-settings-autosave.php:6047
12270
- msgid ""
12271
- "This action may be required to setup blogs in a multiblog (network) site as "
12272
- "well as in rare cases to correct initilization errors."
12273
- msgstr ""
12274
- "Tato akce může být vyžadována pro nastavení blogu v multiblog síti, nebo v "
12275
- "zřídka se vyskytujících případech, kdy je třeba opravit chybu inicializace."
12276
-
12277
- #: wppa-settings-autosave.php:6058
12278
- msgid "Backup settings"
12279
- msgstr "Zálohovat nastavení"
12280
-
12281
- #: wppa-settings-autosave.php:6059
12282
- msgid "Save all settings into a backup file."
12283
- msgstr "Uložit všechna nastavení do souboru zálohy."
12284
-
12285
- #: wppa-settings-autosave.php:6060
12286
- msgid "Saves all the settings into a backup file"
12287
- msgstr "Uloží veškerá nastavení pluginu do souboru zálohy."
12288
-
12289
- #: wppa-settings-autosave.php:6071
12290
- msgid "Load settings"
12291
- msgstr "Obnovit nastavení"
12292
-
12293
- #: wppa-settings-autosave.php:6072
12294
- msgid "Restore all settings from defaults, a backup or skin file."
12295
- msgstr "Obnovit všechna nastavení z výchozího nebo záložního souboru"
12296
-
12297
- #: wppa-settings-autosave.php:6073
12298
- msgid ""
12299
- "Restores all the settings from the factory supplied defaults, the backup you "
12300
- "created or from a skin file."
12301
- msgstr ""
12302
- "Obnoví všechna nastavení do výchozí \"firemních\" nastavení, nebo ze zálohy, "
12303
- "kterou jste vytvořili, nebo ze souboru skinu."
12304
-
12305
- #: wppa-settings-autosave.php:6079
12306
- msgid "--- set to defaults ---"
12307
- msgstr "--- nastavit na výchozí ---"
12308
-
12309
- #: wppa-settings-autosave.php:6082
12310
- msgid "--- restore backup ---"
12311
- msgstr "--- obnovit ze zálohy ---"
12312
-
12313
- #: wppa-settings-autosave.php:6104
12314
- msgid "Regenerate"
12315
- msgstr "Znovu vytvořit"
12316
-
12317
- #: wppa-settings-autosave.php:6105 wppa-settings-autosave.php:6106
12318
- msgid "Regenerate all thumbnails."
12319
- msgstr "Znovu vytvořit všechny miniatury."
12320
-
12321
- #: wppa-settings-autosave.php:6109 wppa-settings-autosave.php:6213
12322
- msgid "Skip one"
12323
- msgstr "Přeskočit první"
12324
-
12325
- #: wppa-settings-autosave.php:6118
12326
- msgid "Rerate"
12327
- msgstr "Přepočítat"
12328
-
12329
- #: wppa-settings-autosave.php:6119
12330
- msgid "Recalculate ratings."
12331
- msgstr "Přepočítat hodnocení."
12332
-
12333
- #: wppa-settings-autosave.php:6120
12334
- msgid ""
12335
- "This function will recalculate all mean photo ratings from the ratings table."
12336
- msgstr ""
12337
- "Tato funkce přepočítá všechna hodnocení podle dat z tabulky hodnocení."
12338
-
12339
- #: wppa-settings-autosave.php:6121
12340
- msgid ""
12341
- "You may need this function after the re-import of previously exported photos"
12342
- msgstr ""
12343
- "Tato funkce může být potřebná po opětovném importu dříve exportovaných "
12344
- "fotografií"
12345
-
12346
- #: wppa-settings-autosave.php:6132
12347
- msgid "Lost and found"
12348
- msgstr "Ztracené a nalezené"
12349
-
12350
- #: wppa-settings-autosave.php:6133
12351
- msgid "Find \"lost\" photos."
12352
- msgstr "Najít \"ztracené\" fotografie."
12353
-
12354
- #: wppa-settings-autosave.php:6134
12355
- msgid "This function will attempt to find lost photos."
12356
- msgstr "Tato funkce se pokusí nalézt ztracené fotografie."
12357
-
12358
- #: wppa-settings-autosave.php:6145
12359
- msgid "Recuperate"
12360
- msgstr "Obnovit"
12361
-
12362
- #: wppa-settings-autosave.php:6147
12363
- msgid ""
12364
- "This action will attempt to find and register IPTC and EXIF data from photos "
12365
- "in the WPPA+ system."
12366
- msgstr ""
12367
- "Tato akce se pokusí najít a registrovat IPTC a EXIF data z fotografií v "
12368
- "rámci WPPA+ systému."
12369
-
12370
- #: wppa-settings-autosave.php:6158
12371
- msgid "Remake Index Albums"
12372
- msgstr "Obnovit index Alb"
12373
-
12374
- #: wppa-settings-autosave.php:6159
12375
- msgid "Remakes the index database table for albums."
12376
- msgstr "Obnoví databázový index pro tabulku alb."
12377
-
12378
- #: wppa-settings-autosave.php:6171
12379
- msgid "Remake Index Photos"
12380
- msgstr "Obnovit indexy fotografií"
12381
-
12382
- #: wppa-settings-autosave.php:6172
12383
- msgid "Remakes the index database table for photos."
12384
- msgstr "Obnoví databázový index pro tabulku fotografií."
12385
-
12386
- #: wppa-settings-autosave.php:6190
12387
- msgid "Convert to tree"
12388
- msgstr "Převést na strom"
12389
-
12390
- #: wppa-settings-autosave.php:6191
12391
- msgid "Convert filesystem to tree structure."
12392
- msgstr "Převede souborový systém na stromovou strukturu"
12393
-
12394
- #: wppa-settings-autosave.php:6194
12395
- msgid "Convert to flat"
12396
- msgstr "Převést na plochou strukturu"
12397
-
12398
- #: wppa-settings-autosave.php:6195
12399
- msgid "Convert filesystem to flat structure."
12400
- msgstr "Převést souborový systém na plochou strukturu."
12401
-
12402
- #: wppa-settings-autosave.php:6197
12403
- msgid ""
12404
- "If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
12405
- "to flat first."
12406
- msgstr ""
12407
- "Pokud chcete rolovat zpět na verzi WPPA+ menší než 5.0.16, MUSÍTE systém "
12408
- "nejdříve převést plochou strukturu."
12409
-
12410
- #: wppa-settings-autosave.php:6209
12411
- msgid "Remake the photofiles from photo sourcefiles."
12412
- msgstr "Obnovit fotografie ze zdrojových souborů."
12413
-
12414
- #: wppa-settings-autosave.php:6210
12415
- msgid ""
12416
- "This action will remake the fullsize images, thumbnail images, and will "
12417
- "refresh the iptc and exif data for all photos where the source is found in "
12418
- "the corresponding album sub-directory of the source directory."
12419
- msgstr ""
12420
- "Tato akce znovu vytvoří miniatury i fotografie v plné velikosti a obnoví "
12421
- "IPTC a EXIF data všech fotografií u nichž bude nalezen zdrojový soubor v "
12422
- "odpovídajícím podadresáři alba zdrojového adresáře."
12423
-
12424
- #: wppa-settings-autosave.php:6222
12425
- msgid "Recalc sizes"
12426
- msgstr "Přepočítat velikosti"
12427
-
12428
- #: wppa-settings-autosave.php:6223
12429
- msgid "Recalculate photosizes and save to db."
12430
- msgstr "Přepočítat velikosti fotografií a výsledky uložit do DB."
12431
-
12432
- #: wppa-settings-autosave.php:6235
12433
- msgid "Clearing and other irreverseable actions"
12434
- msgstr "Mazací a další nevratné akce"
12435
-
12436
- #: wppa-settings-autosave.php:6237
12437
- msgid "Clear ratings"
12438
- msgstr "Vymazat hodnocení"
12439
-
12440
- #: wppa-settings-autosave.php:6238
12441
- msgid "Reset all ratings."
12442
- msgstr "Vymazat všechna hodnocení."
12443
-
12444
- #: wppa-settings-autosave.php:6239
12445
- msgid "WARNING: If checked, this will clear all ratings in the system!"
12446
- msgstr "VAROVÁNÍ: Tato akce nenávratně smaže všechna hodnocení v systému!"
12447
-
12448
- #: wppa-settings-autosave.php:6250
12449
- msgid "Clear viewcounts"
12450
- msgstr "Vymazat počty shlédnutí"
12451
-
12452
- #: wppa-settings-autosave.php:6251
12453
- msgid "Reset all viewcounts."
12454
- msgstr "Vymazat všechny počty shlédnutí."
12455
-
12456
- #: wppa-settings-autosave.php:6252
12457
- msgid "WARNING: If checked, this will clear all viewcounts in the system!"
12458
- msgstr ""
12459
- "VAROVÁNÍ: Tato akce nenávratně smaže všechny počty shlédnutí v systému!"
12460
-
12461
- #: wppa-settings-autosave.php:6263
12462
- msgid "Reset IPTC"
12463
- msgstr "Vymazat IPTC"
12464
-
12465
- #: wppa-settings-autosave.php:6264
12466
- msgid "Clear all IPTC data."
12467
- msgstr "Odstranit všechna IPTC data."
12468
-
12469
- #: wppa-settings-autosave.php:6265
12470
- msgid "WARNING: If checked, this will clear all IPTC data in the system!"
12471
- msgstr "VAROVÁNÍ: Tato akce nenávratně smaže všechna IPTC data v systému!"
12472
-
12473
- #: wppa-settings-autosave.php:6276
12474
- msgid "Reset EXIF"
12475
- msgstr "Vymazat EXIF"
12476
-
12477
- #: wppa-settings-autosave.php:6277
12478
- msgid "Clear all EXIF data."
12479
- msgstr "Odstranit všechna EXIF data."
12480
-
12481
- #: wppa-settings-autosave.php:6278
12482
- msgid "WARNING: If checked, this will clear all EXIF data in the system!"
12483
- msgstr "VAROVÁNÍ: Tato akce nenávratně smaže všechna EXIF data v systému!"
12484
-
12485
- #: wppa-settings-autosave.php:6289
12486
- msgid "Apply New Photodesc"
12487
- msgstr "Použít nový Popis fotografií"
12488
-
12489
- #: wppa-settings-autosave.php:6290
12490
- msgid "Apply New photo description on all photos in the system."
12491
- msgstr "Použít Nový popis fotografií u všech fotografií v systému."
12492
-
12493
- #: wppa-settings-autosave.php:6302
12494
- msgid "Append to photodesc"
12495
- msgstr "Přidat do popisu fotografií"
12496
-
12497
- #: wppa-settings-autosave.php:6303
12498
- msgid "Append this text to all photo descriptions."
12499
- msgstr "Ke všem popisům fotografií přidat tento text"
12500
-
12501
- #: wppa-settings-autosave.php:6317
12502
- msgid "Remove from photodesc"
12503
- msgstr "Odstranit z popisu fotografií"
12504
-
12505
- #: wppa-settings-autosave.php:6318
12506
- msgid "Remove this text from all photo descriptions."
12507
- msgstr "Ze všech popisů fotografií odstranit tento text"
12508
-
12509
- #: wppa-settings-autosave.php:6332
12510
- msgid "Remove empty albums"
12511
- msgstr "Odstranit prázdná alba"
12512
-
12513
- #: wppa-settings-autosave.php:6333
12514
- msgid "Removes albums that are not used."
12515
- msgstr "Odstranit nepoužitá alba."
12516
-
12517
- #: wppa-settings-autosave.php:6345
12518
- msgid "Remove file-ext"
12519
- msgstr "Odstranit příponu"
12520
-
12521
- #: wppa-settings-autosave.php:6346
12522
- msgid "Remove possible file extension from photo name."
12523
- msgstr "Odstranit případnou příponu souboru z názvu fotografie."
12524
-
12525
- #: wppa-settings-autosave.php:6347
12526
- msgid ""
12527
- "This may be required for old photos, uploaded when the option in Table IX-D3 "
12528
- "was not yet available/selected."
12529
- msgstr ""
12530
- "Toto je nutné u některých starších fotografií, když ještě nebyla dostupná / "
12531
- "zaškrtnutá položka D3 v Tabulce IX."
12532
-
12533
- #: wppa-settings-autosave.php:6358
12534
- msgid "Re-add file-ext"
12535
- msgstr "Znovu přidat příponu"
12536
-
12537
- #: wppa-settings-autosave.php:6359
12538
- msgid "Revert the <i>Remove file-ext</i> action."
12539
- msgstr "Vrátí zpět akci <i>Odstranit příponu</i>."
12540
-
12541
- #: wppa-settings-autosave.php:6371
12542
- msgid "Watermark all"
12543
- msgstr "Vodoznak všude"
12544
-
12545
- #: wppa-settings-autosave.php:6372
12546
- msgid "Apply watermark according to current settings to all photos."
12547
- msgstr "Aplikovat vodoznak dle aktuálních nastavení na všechny fotografie."
12548
-
12549
- #: wppa-settings-autosave.php:6373
12550
- msgid "See Table IX_F for the current watermark settings"
12551
- msgstr "Aktuální nastavení vodoznaku naleznete v Tabulce IX - F"
12552
-
12553
- #: wppa-settings-autosave.php:6384
12554
- msgid "Create all autopages"
12555
- msgstr "Vytvořit všechny automatické stránky"
12556
-
12557
- #: wppa-settings-autosave.php:6385
12558
- msgid "Create all the pages to display slides individually."
12559
- msgstr "Vytvořit všechny stránky pro individuální zobrazení snímků."
12560
-
12561
- #: wppa-settings-autosave.php:6386 wppa-settings-autosave.php:6400
12562
- msgid "See also Table IV-A10."
12563
- msgstr "Viz také Tabulka IV - A10."
12564
-
12565
- #: wppa-settings-autosave.php:6387
12566
- msgid ""
12567
- "Make sure you have a custom menu and the \"Automatically add new top-level "
12568
- "pages to this menu\" box UNticked!!"
12569
- msgstr ""
12570
- "Ujistěte se, že nemáte v uživatelském menu zaškrtnuto \" Automaticky "
12571
- "přidávat nově publikované hlavní stránky do menu\"!!!"
12572
-
12573
- #: wppa-settings-autosave.php:6398
12574
- msgid "Delete all autopages"
12575
- msgstr "Smazat všechny automatické stránky"
12576
-
12577
- #: wppa-settings-autosave.php:6399
12578
- msgid "Delete all the pages to display slides individually."
12579
- msgstr "Smazatt všechny stránky pro individuální zobrazení snímků."
12580
-
12581
- #: wppa-settings-autosave.php:6412
12582
- msgid "Leading zeroes"
12583
- msgstr "Nuly zleva"
12584
-
12585
- #: wppa-settings-autosave.php:6413
12586
- msgid "If photoname numeric, add leading zeros"
12587
- msgstr "Doplnit nuly zleva, obsahuje-li název fotografie číslo."
12588
-
12589
- #: wppa-settings-autosave.php:6414
12590
- msgid ""
12591
- "You can extend the name with leading zeros, so alphabetic sort becomes equal "
12592
- "to numeric sort order."
12593
- msgstr ""
12594
- "Můžete název doplnit vedoucími nulami, takže abecední řazení bude stejné "
12595
- "jako číselné."
12596
-
12597
- #: wppa-settings-autosave.php:6417
12598
- msgid "Total chars"
12599
- msgstr "Znaků celkem"
12600
-
12601
- #: wppa-settings-autosave.php:6426
12602
- msgid "Add GPX tag"
12603
- msgstr "Vložit GPX štítek"
12604
-
12605
- #: wppa-settings-autosave.php:6427
12606
- msgid "Make sure photos with gpx data have a Gpx tag"
12607
- msgstr "Ujistěte se, že fotografie s GPX daty mají GPX štítek"
12608
-
12609
- #: wppa-settings-autosave.php:6440 wppa-settings-autosave.php:7275
12610
- msgid "Optimize files"
12611
- msgstr "Optimalizovat soubory"
12612
-
12613
- #: wppa-settings-autosave.php:6441
12614
- msgid "Optimize with EWWW image optimizer"
12615
- msgstr "Optimalizovat pomocí EWWW optimizéru obrázků"
12616
-
12617
- #: wppa-settings-autosave.php:6454
12618
- msgid "Edit tag"
12619
- msgstr "Upravit štítek"
12620
-
12621
- #: wppa-settings-autosave.php:6455
12622
- msgid "Globally change a tagname."
12623
- msgstr "Globálně změnit název štítku"
12624
-
12625
- #: wppa-settings-autosave.php:6461
12626
- msgid "-select a tag-"
12627
- msgstr "- vybrat štítek-"
12628
-
12629
- #: wppa-settings-autosave.php:6467
12630
- msgid "Tag:"
12631
- msgstr "Štítek:"
12632
-
12633
- #: wppa-settings-autosave.php:6468
12634
- msgid "Change to:"
12635
- msgstr "Změnit na:"
12636
-
12637
- #: wppa-settings-autosave.php:6477
12638
- msgid "Synchronize Cloudinary"
12639
- msgstr "Synchronizovat Cloudinary"
12640
-
12641
- #: wppa-settings-autosave.php:6478
12642
- msgid "Removes/adds images in the cloud."
12643
- msgstr "Přidat / odstranit obrázky v cloudu."
12644
-
12645
- #: wppa-settings-autosave.php:6479
12646
- msgid "Removes old images and verifies/adds new images to Cloudinary."
12647
- msgstr "Odstraní staré a zkontroluje / přidá nové snímky do Cloudinary."
12648
-
12649
- #: wppa-settings-autosave.php:6480
12650
- msgid "See Table IX-K4.7 for the configured lifetime."
12651
- msgstr "Konfiguraci životnosti najdete v Tabulce IX - K4.7."
12652
-
12653
- #: wppa-settings-autosave.php:6491
12654
- msgid "Fix tags"
12655
- msgstr "Opravit štítky"
12656
-
12657
- #: wppa-settings-autosave.php:6492
12658
- msgid "Make sure photo tags format is uptodate"
12659
- msgstr "Zajistit, aby byl formát štítků fotografií aktuální"
12660
-
12661
- #: wppa-settings-autosave.php:6493
12662
- msgid "Fixes tags to be conform current database rules."
12663
- msgstr "Opraví štítky tak, aby vyhovovaly stávajícím pravidlům databáze."
12664
-
12665
- #: wppa-settings-autosave.php:6504
12666
- msgid "Fix cats"
12667
- msgstr "Opravit kategorie"
12668
-
12669
- #: wppa-settings-autosave.php:6505
12670
- msgid "Make sure album cats format is uptodate"
12671
- msgstr "Zajistit, aby byl formát kategorií alb aktuální"
12672
-
12673
- #: wppa-settings-autosave.php:6506
12674
- msgid "Fixes cats to be conform current database rules."
12675
- msgstr "Opraví kategorie tak, aby vyhovovaly stávajícím pravidlům databáze."
12676
-
12677
- #: wppa-settings-autosave.php:6532
12678
- msgid "Listings"
12679
- msgstr "Výpisy"
12680
-
12681
- #: wppa-settings-autosave.php:6534
12682
- msgid "List Logfile"
12683
- msgstr "Vypsat soubor logů"
12684
-
12685
- #: wppa-settings-autosave.php:6535
12686
- msgid "Show the content of wppa+ (error) log."
12687
- msgstr "Zobrazit obsah (chybového) logu WPPA+."
12688
-
12689
- #: wppa-settings-autosave.php:6539
12690
- msgid "Purge logfile"
12691
- msgstr "Vyčistit soubor logů"
12692
-
12693
- #: wppa-settings-autosave.php:6548
12694
- msgid "List Ratings"
12695
- msgstr "Výpsat hodnocení"
12696
-
12697
- #: wppa-settings-autosave.php:6549
12698
- msgid "Show the most recent ratings."
12699
- msgstr "Zobrazit výpis nejnovějších hodnocení."
12700
-
12701
- #: wppa-settings-autosave.php:6562
12702
- msgid "List Index"
12703
- msgstr "Vypsat index"
12704
-
12705
- #: wppa-settings-autosave.php:6563
12706
- msgid "Show the content if the index table."
12707
- msgstr "Zobrazit obsah tabulky indexů."
12708
-
12709
- #: wppa-settings-autosave.php:6567
12710
- msgid "Start at text:"
12711
- msgstr "Začít na textu:"
12712
-
12713
- #: wppa-settings-autosave.php:6577
12714
- msgid "List active sessions"
12715
- msgstr "Vypsat aktivní relace"
12716
-
12717
- #: wppa-settings-autosave.php:6578
12718
- msgid "Show the content of the sessions table."
12719
- msgstr "Zobrazit obsah tabulky relací (sessions)."
12720
-
12721
- #: wppa-settings-autosave.php:6611
12722
- msgid "Table IX:"
12723
- msgstr "Tabulka IX:"
12724
-
12725
- #: wppa-settings-autosave.php:6611
12726
- msgid "Miscellaneous:"
12727
- msgstr "Různé:"
12728
-
12729
- #: wppa-settings-autosave.php:6612
12730
- msgid "This table lists all settings that do not fit into an other table"
12731
- msgstr "Tato tabulka obsahuje seznam všech nastavení, které se nehodí jinam"
12732
-
12733
- #: wppa-settings-autosave.php:6630
12734
- msgid "Internal engine related settings"
12735
- msgstr "Nastavení související s vnitřním enginem"
12736
-
12737
- #: wppa-settings-autosave.php:6632
12738
- msgid "WPPA+ Filter priority"
12739
- msgstr "Priorita filtru WPPA+"
12740
-
12741
- #: wppa-settings-autosave.php:6633
12742
- msgid "Sets the priority of the wppa+ content filter."
12743
- msgstr "Nastavit prioritu obsahového filtru WPPA+."
12744
-
12745
- #: wppa-settings-autosave.php:6634 wppa-settings-autosave.php:6643
12746
- msgid ""
12747
- "If you encounter conflicts with the theme or other plugins, increasing this "
12748
- "value sometimes helps. Use with great care!"
12749
- msgstr ""
12750
- "Zvýšení této hodnoty někdy pomůže při konfliktu se šablonou tématu nebo "
12751
- "jiným pluginem. Používat velmi opatrně!!!"
12752
-
12753
- #: wppa-settings-autosave.php:6641
12754
- msgid "Do_shortcode priority"
12755
- msgstr "Priorita vykonání krátkého kódu"
12756
-
12757
- #: wppa-settings-autosave.php:6642
12758
- msgid "Sets the priority of the do_shortcode() content filter."
12759
- msgstr "Nastavit prioritu obsahového filtru do_shortcode()."
12760
-
12761
- #: wppa-settings-autosave.php:6650
12762
- msgid "WPPA shortcode at Filter priority"
12763
- msgstr "Krátký kód WPPA v prioritě filtru"
12764
-
12765
- #: wppa-settings-autosave.php:6651
12766
- msgid "Execute shortcode expansion on filter priority in posts and pages."
12767
- msgstr ""
12768
- "Na stránkách a v příspěvcích vykonat obsah krátkého kódu v prioritě filtru."
12769
-
12770
- #: wppa-settings-autosave.php:6652 wppa-settings-autosave.php:6661
12771
- msgid "Use to fix certain layout problems"
12772
- msgstr "Použijte pro odstranění některých problémů s rozložením"
12773
-
12774
- #: wppa-settings-autosave.php:6659
12775
- msgid "WPPA shortcode at Filter priority widget"
12776
- msgstr "Krátký kód WPPA v prioritě filtru widgetu"
12777
-
12778
- #: wppa-settings-autosave.php:6660
12779
- msgid "Execute shortcode expansion on filter priority in widgets."
12780
- msgstr "Ve widgetech vykonat obsah krátkého kódu v prioritě filtru."
12781
-
12782
- #: wppa-settings-autosave.php:6668
12783
- msgid "JPG image quality"
12784
- msgstr "Kvalita JPEG obrázku"
12785
-
12786
- #: wppa-settings-autosave.php:6669
12787
- msgid "The jpg quality when photos are downsized"
12788
- msgstr "Kvalita jpg, pokud jsou fotografie zmenšovány"
12789
-
12790
- #: wppa-settings-autosave.php:6670
12791
- msgid "The higher the number the better the quality but the larger the file"
12792
- msgstr "Čím vyšší je číslo, tím lepší je kvalita, ale současně i větší soubor"
12793
-
12794
- #: wppa-settings-autosave.php:6671
12795
- msgid "Possible values 20..100"
12796
- msgstr "Možné hodnoty 20..100"
12797
-
12798
- #: wppa-settings-autosave.php:6678
12799
- msgid "Allow WPPA+ Debugging"
12800
- msgstr "Umožnit ladění WPPA+"
12801
-
12802
- #: wppa-settings-autosave.php:6679
12803
- msgid "Allow the use of &amp;debug=.. in urls to this site."
12804
- msgstr "Povolit u adres v této síti použití &amp;debug=... ."
12805
-
12806
- #: wppa-settings-autosave.php:6680
12807
- msgid ""
12808
- "If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
12809
- "site will generate the display of special WPPA+ diagnostics, as well as php "
12810
- "warnings"
12811
- msgstr ""
12812
- "Pokud je tato položka zaškrtnuta: přidáním (?)(&)debug or (?)(&)debug=<int> "
12813
- "k adrese v této síti aktivujete zobrazení speciální WPPA+ diagnostiky a "
12814
- "současně i výstrah PhP."
12815
-
12816
- #: wppa-settings-autosave.php:6687
12817
- msgid "Auto continue"
12818
- msgstr "Pokračovat automaticky"
12819
-
12820
- #: wppa-settings-autosave.php:6688
12821
- msgid "Continue automatic after time out"
12822
- msgstr "Po timeoutu pokračovat automaticky"
12823
-
12824
- #: wppa-settings-autosave.php:6689
12825
- msgid ""
12826
- "If checked, an attempt will be made to restart an admin process when the "
12827
- "time is out."
12828
- msgstr ""
12829
- "Pokud je tato položka zaškrtnuta, bude po timeoutu proveden pokus o restart "
12830
- "administračního procesu."
12831
-
12832
- #: wppa-settings-autosave.php:6697
12833
- msgid "Set max execution time here."
12834
- msgstr "Zde zadejte maximální čas pro porvedení"
12835
-
12836
- #: wppa-settings-autosave.php:6698
12837
- msgid ""
12838
- "If your php config does not properly set the max execution time, you can set "
12839
- "it here. Seconds, 0 means do not change."
12840
- msgstr ""
12841
- "Pokud není ve vašem konfiguračním souboru PHP správně nastaven maximální čas "
12842
- "pro provedení, můžete jej nastavit zde. Sekundy, 0 znamená neměnit."
12843
-
12844
- #: wppa-settings-autosave.php:6699
12845
- msgid "A safe value is 45 in most cases"
12846
- msgstr "Ve většině případů bezpečně postačí hodnota 45."
12847
-
12848
- #: wppa-settings-autosave.php:6700
12849
- #, php-format
12850
- msgid "The PHP setting max_execution_time is set to %s."
12851
- msgstr "Položka PHP max_execution_time je nastavena na %s."
12852
-
12853
- #: wppa-settings-autosave.php:6708
12854
- msgid "Feed use thumb"
12855
- msgstr "Miniatury v kanálech"
12856
-
12857
- #: wppa-settings-autosave.php:6709
12858
- msgid "Feeds use thumbnail pictures always."
12859
- msgstr "Kanály vždy používají miniatury fotografií."
12860
-
12861
- #: wppa-settings-autosave.php:6717
12862
- msgid "Enable <i>in-line</i> settings"
12863
- msgstr "Povolit nastavení <i>in-line</i>"
12864
-
12865
- #: wppa-settings-autosave.php:6718
12866
- msgid "Activates shortcode [wppa_set][/wppa_set]."
12867
- msgstr "Aktivuje krátký kód [wppa_set][/wppa_set]."
12868
-
12869
- #: wppa-settings-autosave.php:6719
12870
- msgid ""
12871
- "Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
12872
- msgstr ""
12873
- "Syntaxe: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
12874
-
12875
- #: wppa-settings-autosave.php:6720
12876
- msgid ""
12877
- "Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
12878
- "sets the thumbnail type to vertical masonry style"
12879
- msgstr ""
12880
- "Příklad: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
12881
- "nastaví miniatury na zobrazení ve svislém \"masonry\" stylu"
12882
-
12883
- #: wppa-settings-autosave.php:6721
12884
- msgid "Do not forget to reset with [wppa_set][/wppa_set]"
12885
- msgstr "Nezapomeňte obnovit [wppa_set][/wppa_set]"
12886
-
12887
- #: wppa-settings-autosave.php:6722
12888
- msgid "Use with great care! There is no check on validity of values!"
12889
- msgstr "Používejte velmi opatrně. Validita kódu není nijak kontrolována!!!"
12890
-
12891
- #: wppa-settings-autosave.php:6729
12892
- msgid "Runtime modifyable settings"
12893
- msgstr "Nastavení upravitelná za běhu"
12894
-
12895
- #: wppa-settings-autosave.php:6730
12896
- msgid "The setting slugs that may be altered using [wppa_set] shortcode."
12897
- msgstr "Položky nastavení mohou být změněny pomocí krátkého kódu [wppa_set]."
12898
-
12899
- #: wppa-settings-autosave.php:6738
12900
- msgid "Use translations"
12901
- msgstr "Používat překlad"
12902
-
12903
- #: wppa-settings-autosave.php:6739
12904
- msgid "If UNticked, wppa is in english always."
12905
- msgstr "Pokud nebude tato položka zaškrtnuta, bude WPPA+ vždy pouze anglicky."
12906
-
12907
- #: wppa-settings-autosave.php:6740
12908
- msgid "Used to bypass the loading of any language file for wppa."
12909
- msgstr "Tímto nastavením lze obejít načítání jazykového souboru pro wppa."
12910
-
12911
- #: wppa-settings-autosave.php:6748
12912
- msgid "WPPA+ Admin related miscellaneous settings"
12913
- msgstr "Různá nastavení související s administrací WPPA+"
12914
-
12915
- #: wppa-settings-autosave.php:6750
12916
- msgid "Allow HTML"
12917
- msgstr "Povolit HTML"
12918
-
12919
- #: wppa-settings-autosave.php:6751
12920
- msgid "Allow HTML in album and photo descriptions."
12921
- msgstr "Povolit HTML v popisech alb a fotografií."
12922
-
12923
- #: wppa-settings-autosave.php:6752
12924
- msgid ""
12925
- "If checked: html is allowed. WARNING: No checks on syntax, it is your own "
12926
- "responsability to close tags properly!"
12927
- msgstr ""
12928
- "Pokud je tato položka zaškrtnuta: HTML je povoleno. VAROVÁNÍ: Syntaxe není "
12929
- "nijak kontrolovaná. Je pouze na vaší odpovědnosti řádně uzavírat tagy!!!"
12930
-
12931
- #: wppa-settings-autosave.php:6759
12932
- msgid "Check tag balance"
12933
- msgstr "Kontrolovat vyváženost tagů"
12934
-
12935
- #: wppa-settings-autosave.php:6760
12936
- msgid "Check if the HTML tags are properly closed: \"balanced\"."
12937
- msgstr "Kontrolovat, zda jsou tagy správně uzavřeny (\"vyváženy\")."
12938
-
12939
- #: wppa-settings-autosave.php:6761
12940
- msgid ""
12941
- "If the HTML tags in an album or a photo description are not in balance, the "
12942
- "description is not updated, an errormessage is displayed"
12943
- msgstr ""
12944
- "Pokud nejsou HTML tagy v popisu fotografie řádně uzavřeny, nemůže být popis "
12945
- "upraven a bude zobrazena chybová hláška."
12946
-
12947
- #: wppa-settings-autosave.php:6768
12948
- msgid "Use WP editor"
12949
- msgstr "Použít WP editor"
12950
-
12951
- #: wppa-settings-autosave.php:6769
12952
- msgid "Use the wp editor for multiline text fields."
12953
- msgstr "Pro víceřádková textová pole použít WP editor."
12954
-
12955
- #: wppa-settings-autosave.php:6777
12956
- msgid "Album sel hierarchic"
12957
- msgstr "Hierarchický výběr alb"
12958
-
12959
- #: wppa-settings-autosave.php:6778
12960
- msgid "Show albums with (grand)parents in selection lists."
12961
- msgstr "Z alba s (pra)předky ve výběrovém zobrazení."
12962
-
12963
- #: wppa-settings-autosave.php:6786
12964
- msgid "Page sel hierarchic"
12965
- msgstr "Hierarchický výběr stránek"
12966
-
12967
- #: wppa-settings-autosave.php:6787
12968
- msgid "Show pages with (grand)parents in selection lists."
12969
- msgstr "Zobrazit Stránky s (pra)předky ve výběrovém zobrazení."
12970
-
12971
- #: wppa-settings-autosave.php:6796
12972
- msgid "Photo admin page size"
12973
- msgstr "Velikost stránky Administrace fotografií"
12974
-
12975
- #: wppa-settings-autosave.php:6797
12976
- msgid ""
12977
- "The number of photos per page on the <br/>Edit Album -> Manage photos and "
12978
- "Edit Photos admin pages."
12979
- msgstr ""
12980
- "Počet fotografií na stránku v administračních stránkách <br/>Upravit album -"
12981
- "> Spravovat fotografie a Úprava informací o fotografiích."
12982
-
12983
- #: wppa-settings-autosave.php:6807
12984
- msgid "Comment admin page size"
12985
- msgstr "Velikost stránky Administrace komentářů"
12986
-
12987
- #: wppa-settings-autosave.php:6808
12988
- msgid "The number of comments per page on the Comments admin pages."
12989
- msgstr "Počet komentářů na stránku v Aadministraci komentářů"
12990
-
12991
- #: wppa-settings-autosave.php:6818
12992
- msgid "Geo info edit"
12993
- msgstr "Úprava Geo informací"
12994
-
12995
- #: wppa-settings-autosave.php:6819
12996
- msgid "Lattitude and longitude may be edited in photo admin."
12997
- msgstr "V Administraci fotografií lze upravit zeměpisnou délku a šířku."
12998
-
12999
- #: wppa-settings-autosave.php:6827
13000
- msgid "Admin bar menu admin"
13001
- msgstr "Menu v administračním pásu backendu"
13002
-
13003
- #: wppa-settings-autosave.php:6828
13004
- msgid "Show menu on admin bar on admin pages."
13005
- msgstr "Zobrazit menu v administračním pásu na stránkách administrace"
13006
-
13007
- #: wppa-settings-autosave.php:6836
13008
- msgid "Admin bar menu frontend"
13009
- msgstr "Menu v administračním pásu frontendu"
13010
-
13011
- #: wppa-settings-autosave.php:6837
13012
- msgid "Show menu on admin bar on frontend pages."
13013
- msgstr "Zobrazit menu v administračním pásu ve frontendu."
13014
-
13015
- #: wppa-settings-autosave.php:6845
13016
- msgid "Add shortcode to posts"
13017
- msgstr "Přidat krátký kód do příspěvků"
13018
-
13019
- #: wppa-settings-autosave.php:6846
13020
- msgid "Add a shortcode to the end of all posts."
13021
- msgstr "Přidat krátký kód na konec všech příspěvků."
13022
-
13023
- #: wppa-settings-autosave.php:6854
13024
- msgid "Shortcode to add"
13025
- msgstr "Přidávaný krátký kód"
13026
-
13027
- #: wppa-settings-autosave.php:6855
13028
- msgid "The shortcode to be added to the posts."
13029
- msgstr "Krátký kód, který bude přidán ke všem příspěvkům."
13030
-
13031
- #: wppa-settings-autosave.php:6863
13032
- msgid "We use Scripts"
13033
- msgstr "Používat skripty"
13034
-
13035
- #: wppa-settings-autosave.php:6864
13036
- msgid "Use scripting syntax in shortcode generator."
13037
- msgstr "V generátoru krátkého kódu používat skriptovací syntaxi."
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
- "Toto nastavení určuje, zda generátor vytváří zastaralé skriptované tagy nebo "
13045
- "nové krátké kódy."
13046
-
13047
- #: wppa-settings-autosave.php:6873
13048
- msgid "Import page prieviews"
13049
- msgstr "Importovat náhledy stránek"
13050
-
13051
- #: wppa-settings-autosave.php:6874
13052
- msgid "Show thumbnail previews in import admin page."
13053
- msgstr "Na stránce administrace importu zobrazit náhledy miniatur."
13054
-
13055
- #: wppa-settings-autosave.php:6882
13056
- msgid "Upload audiostub"
13057
- msgstr "Nahrát audiostub"
13058
-
13059
- #: wppa-settings-autosave.php:6883
13060
- msgid "Upload a new audio stub file"
13061
- msgstr "Nahrát nový soubor audiostub"
13062
-
13063
- #: wppa-settings-autosave.php:6887
13064
- msgid "Upload audio stub image"
13065
- msgstr "Nahrát audiostub obraz"
13066
-
13067
- #: wppa-settings-autosave.php:6892
13068
- msgid "Confirm create"
13069
- msgstr "Potvrdit vytvoření"
13070
-
13071
- #: wppa-settings-autosave.php:6893
13072
- msgid "Display confirmation dialog before creating album."
13073
- msgstr "Před vytvořením alba zobrazit potvrzovací dialog."
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 "Nastavení související se SEO"
13094
-
13095
- #: wppa-settings-autosave.php:6931
13096
- msgid "Meta on page"
13097
- msgstr "Meta tagy na stránce"
13098
-
13099
- #: wppa-settings-autosave.php:6932
13100
- msgid "Meta tags for photos on the page."
13101
- msgstr "Na stránce zobrazit Meta tagy fotografií"
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
- "Pokud je tato položka zaškrtnuta, bude header stánky obsahovat metatagy, "
13109
- "které odkazují na doporučené fotografie na stránce v jejím kontextu."
13110
-
13111
- #: wppa-settings-autosave.php:6940
13112
- msgid "Meta all"
13113
- msgstr "Všechny Meta tagy"
13114
-
13115
- #: wppa-settings-autosave.php:6941
13116
- msgid "Meta tags for all featured photos."
13117
- msgstr "Metat tagy pro všechny Doporučené fotografie"
13118
-
13119
- #: wppa-settings-autosave.php:6942
13120
- msgid ""
13121
- "If checked, the header of the page will contain metatags that refer to all "
13122
- "featured photo files."
13123
- msgstr ""
13124
- "Pokud je tato položka zaškrtnuta, bude header stánky obsahovat metatagy, "
13125
- "které odkazují na doporučené fotografie."
13126
-
13127
- #: wppa-settings-autosave.php:6943
13128
- msgid ""
13129
- "If you have many featured photos, you might wish to uncheck this item to "
13130
- "reduce the size of the page header."
13131
- msgstr ""
13132
- "Pokud máte mnoho doporučených fotografií, zřejmě necháte raději toto políčko "
13133
- "nezaškrtnuté aby nebyl header stránky příliš veliký."
13134
-
13135
- #: wppa-settings-autosave.php:6950
13136
- msgid "Add og meta tags"
13137
- msgstr "Přidat OG meta tagy"
13138
-
13139
- #: wppa-settings-autosave.php:6951
13140
- msgid "Add og meta tags to the page header."
13141
- msgstr "Do headeru stránky přidat OG meta tagy."
13142
-
13143
- #: wppa-settings-autosave.php:6954
13144
- msgid ""
13145
- "Turning this off may affect the functionality of social media items in the "
13146
- "share box that rely on open graph tags information."
13147
- msgstr ""
13148
- "Vypnutí této volby může ovlivnit funkcionality položek sociálních sítí, "
13149
- "které závisí na informacích z tagů open graph."
13150
-
13151
- #: wppa-settings-autosave.php:6960
13152
- msgid "Image Alt attribute type"
13153
- msgstr "Typ atributu Alt obrázku"
13154
-
13155
- #: wppa-settings-autosave.php:6961
13156
- msgid "Select kind of HTML alt=\"\" content for images."
13157
- msgstr "Vyberte druh HTML alt = \"\" obsahu pro obrázky."
13158
-
13159
- #: wppa-settings-autosave.php:6964
13160
- msgid "photo name"
13161
- msgstr "název fotografie"
13162
-
13163
- #: wppa-settings-autosave.php:6964
13164
- msgid "name without file-ext"
13165
- msgstr "název bez přípony"
13166
-
13167
- #: wppa-settings-autosave.php:6964
13168
- msgid "set in album admin"
13169
- msgstr "nastavit v administraci alba"
13170
-
13171
- #: wppa-settings-autosave.php:6971
13172
- msgid "New Album and New Photo related miscellaneous settings"
13173
- msgstr "Různá nastavení související s Novým albem a Novou fotografií"
13174
-
13175
- #: wppa-settings-autosave.php:6974
13176
- msgid "One hour"
13177
- msgstr "Jedna hodina"
13178
-
13179
- #: wppa-settings-autosave.php:6975 wppa-settings-autosave.php:8113
13180
- msgid "One day"
13181
- msgstr "Jeden den"
13182
-
13183
- #: wppa-settings-autosave.php:6976
13184
- msgid "Two days"
13185
- msgstr "Dva dny"
13186
-
13187
- #: wppa-settings-autosave.php:6977
13188
- msgid "Three days"
13189
- msgstr "Tři dny"
13190
-
13191
- #: wppa-settings-autosave.php:6978
13192
- msgid "Four days"
13193
- msgstr "Čtyři dny"
13194
-
13195
- #: wppa-settings-autosave.php:6979
13196
- msgid "Five days"
13197
- msgstr "Pět dní"
13198
-
13199
- #: wppa-settings-autosave.php:6980
13200
- msgid "Six days"
13201
- msgstr "Šest dní"
13202
-
13203
- #: wppa-settings-autosave.php:6981 wppa-settings-autosave.php:8114
13204
- msgid "One week"
13205
- msgstr "Jeden týden"
13206
-
13207
- #: wppa-settings-autosave.php:6982
13208
- msgid "Eight days"
13209
- msgstr "Osm dní"
13210
-
13211
- #: wppa-settings-autosave.php:6983
13212
- msgid "Nine days"
13213
- msgstr "Devět dní"
13214
-
13215
- #: wppa-settings-autosave.php:6984
13216
- msgid "Ten days"
13217
- msgstr "Deset dní"
13218
-
13219
- #: wppa-settings-autosave.php:6985
13220
- msgid "Two weeks"
13221
- msgstr "Dva týdny"
13222
-
13223
- #: wppa-settings-autosave.php:6986
13224
- msgid "Three weeks"
13225
- msgstr "Tři týdny"
13226
-
13227
- #: wppa-settings-autosave.php:6987
13228
- msgid "Four weeks"
13229
- msgstr "Čtyři týdny"
13230
-
13231
- #: wppa-settings-autosave.php:6988 wppa-settings-autosave.php:8115
13232
- msgid "One month"
13233
- msgstr "Jeden měsíc"
13234
-
13235
- #: wppa-settings-autosave.php:7007
13236
- #, fuzzy
13237
- msgid "Maximum time an album is indicated as New"
13238
- msgstr "Maximální doba, po kterou je album označované jako Nové!"
13239
-
13240
- #: wppa-settings-autosave.php:7015
13241
- msgid "New Photo"
13242
- msgstr "Nová fotografie"
13243
-
13244
- #: wppa-settings-autosave.php:7016
13245
- #, fuzzy
13246
- msgid "Maximum time a photo is indicated as New"
13247
- msgstr "Maximální doba, po kterou je fotografie označována jako Nová!"
13248
-
13249
- #: wppa-settings-autosave.php:7024
13250
- #, fuzzy
13251
- msgid "Modified Album"
13252
- msgstr "Změněno:"
13253
-
13254
- #: wppa-settings-autosave.php:7025
13255
- #, fuzzy
13256
- msgid "Maximum time an album is indicated as Modified"
13257
- msgstr "Maximální doba, po kterou je album označované jako Nové!"
13258
-
13259
- #: wppa-settings-autosave.php:7033
13260
- #, fuzzy
13261
- msgid "Modified Photo"
13262
- msgstr "Změněno:"
13263
-
13264
- #: wppa-settings-autosave.php:7034
13265
- #, fuzzy
13266
- msgid "Maximum time a photo is indicated as Modofied"
13267
- msgstr "Maximální doba, po kterou je fotografie označována jako Nová!"
13268
-
13269
- #: wppa-settings-autosave.php:7044
13270
- msgid "Orange"
13271
- msgstr ""
13272
-
13273
- #: wppa-settings-autosave.php:7045
13274
- msgid "Yellow"
13275
- msgstr ""
13276
-
13277
- #: wppa-settings-autosave.php:7048
13278
- msgid "Purple"
13279
- msgstr ""
13280
-
13281
- #: wppa-settings-autosave.php:7049
13282
- #, fuzzy
13283
- msgid "Black/white"
13284
- msgstr "Vložit na Černou listinu"
13285
-
13286
- #: wppa-settings-autosave.php:7061
13287
- #, fuzzy
13288
- msgid "New label"
13289
- msgstr "Nová karta"
13290
-
13291
- #: wppa-settings-autosave.php:7062
13292
- msgid "Specify the \"New\" indicator details."
13293
- msgstr ""
13294
-
13295
- #: wppa-settings-autosave.php:7063 wppa-settings-autosave.php:7074
13296
- msgid "If you use qTranslate, the text may be multilingual."
13297
- msgstr ""
13298
-
13299
- #: wppa-settings-autosave.php:7066 wppa-settings-autosave.php:7077
13300
- msgid "Label text"
13301
- msgstr ""
13302
-
13303
- #: wppa-settings-autosave.php:7067 wppa-settings-autosave.php:7078
13304
- #, fuzzy
13305
- msgid "Label color"
13306
- msgstr "Půl barva"
13307
-
13308
- #: wppa-settings-autosave.php:7072
13309
- #, fuzzy
13310
- msgid "Modified label"
13311
- msgstr "Změněno:"
13312
-
13313
- #: wppa-settings-autosave.php:7073
13314
- msgid "Specify the \"Modified\" indicator details."
13315
- msgstr ""
13316
-
13317
- #: wppa-settings-autosave.php:7083
13318
- msgid "Limit LasTen New"
13319
- msgstr "Omezit LastTen na Nové"
13320
-
13321
- #: wppa-settings-autosave.php:7084
13322
- #, fuzzy
13323
- msgid "Limits the LasTen photos to those that are 'New', or newly modified."
13324
- msgstr "Omezí fotografie zobrazované v LastTen pouze na označené 'Nové'."
13325
-
13326
- #: wppa-settings-autosave.php:7085
13327
- msgid ""
13328
- "If you tick this box and configured the new photo time, you can even limit "
13329
- "the number by the setting in Table I-F7, or set that number to an unlikely "
13330
- "high value."
13331
- msgstr ""
13332
- "Pokud tuto položku zaškrtnete a máte nastaven limit pro nové fotografie, "
13333
- "můžete ještě omezit počet nastavením položky F7 v Tabulce I tak, aby nebyl "
13334
- "výsledný počet fotografií příliš vysoký"
13335
-
13336
- #: wppa-settings-autosave.php:7092
13337
- #, fuzzy
13338
- msgid "LasTen use Modified"
13339
- msgstr "LastTen - velikost"
13340
-
13341
- #: wppa-settings-autosave.php:7093
13342
- msgid ""
13343
- "Use the time modified rather than time upload for LasTen widget/shortcode."
13344
- msgstr ""
13345
-
13346
- #: wppa-settings-autosave.php:7101
13347
- msgid "Apply Newphoto desc"
13348
- msgstr "Přidat popis Nové fotografii"
13349
-
13350
- #: wppa-settings-autosave.php:7102
13351
- msgid "Give each new photo a standard description."
13352
- msgstr "Přidá ke každé nové fotografii standardní popis."
13353
-
13354
- #: wppa-settings-autosave.php:7103
13355
- msgid ""
13356
- "If checked, each new photo will get the description (template) as specified "
13357
- "in the next item."
13358
- msgstr ""
13359
- "Je-li zaškrtnuto, dostane každá nové fotografie popis (šablonu) dle vzoru z "
13360
- "následující položky."
13361
-
13362
- #: wppa-settings-autosave.php:7110
13363
- msgid "New photo desc"
13364
- msgstr "Popis Nové fotografie"
13365
-
13366
- #: wppa-settings-autosave.php:7111
13367
- msgid "The description (template) to add to a new photo."
13368
- msgstr "Popis (šablona), která bude přidána ke každé nové fotografii."
13369
-
13370
- #: wppa-settings-autosave.php:7112
13371
- msgid "Enter the default description."
13372
- msgstr "Zadejte výchozí popis."
13373
-
13374
- #: wppa-settings-autosave.php:7113
13375
- msgid "If you use html, please check item A-1 of this table."
13376
- msgstr "Pokud používáte HTML tagy, zaškrtněte položku A-1 této tabulky."
13377
-
13378
- #: wppa-settings-autosave.php:7121
13379
- msgid "New albums are created with this upload limit."
13380
- msgstr "Nová alba jsou vytvářena s tímto limitem nahrávání."
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
- "Administrátoři mohou měnit nastavení limitu na administrační stránce "
13388
- "\"Úprava informací o albu\"."
13389
-
13390
- #: wppa-settings-autosave.php:7139
13391
- msgid "Default parent"
13392
- msgstr "Výchozí nadřazený"
13393
-
13394
- #: wppa-settings-autosave.php:7140
13395
- msgid "The parent album of new albums."
13396
- msgstr "Nadřazené album pro nová alba."
13397
-
13398
- #: wppa-settings-autosave.php:7157
13399
- msgid "Default parent always"
13400
- msgstr "Vždy výchozí nadřazený"
13401
-
13402
- #: wppa-settings-autosave.php:7158
13403
- msgid ""
13404
- "The parent album of new albums is always the default, except for "
13405
- "administrators."
13406
- msgstr "Nadřazeným albem je vždy výchozí album (neplatí pro administrátory)."
13407
-
13408
- #: wppa-settings-autosave.php:7166
13409
- msgid "Show album full"
13410
- msgstr "Zobrazit Plné album"
13411
-
13412
- #: wppa-settings-autosave.php:7167
13413
- msgid "Show the Upload limit reached message if appropriate."
13414
- msgstr ""
13415
- "Pokud se při nahrávání dosáhne limitu pro nahrávání zobrazit odpovídající "
13416
- "zprávu."
13417
-
13418
- #: wppa-settings-autosave.php:7175
13419
- msgid "Grant an album"
13420
- msgstr "Přidělit album"
13421
-
13422
- #: wppa-settings-autosave.php:7176
13423
- msgid "Create an album for each user logging in."
13424
- msgstr "Vytvořit album pro každého přihlašujícího se uživatele."
13425
-
13426
- #: wppa-settings-autosave.php:7184
13427
- msgid "Grant album name"
13428
- msgstr "Přidělit název alba"
13429
-
13430
- #: wppa-settings-autosave.php:7185
13431
- msgid "The name to be used for the album."
13432
- msgstr "Název, který bude použitý pro album."
13433
-
13434
- #: wppa-settings-autosave.php:7188
13435
- msgid "Login name"
13436
- msgstr "Přihlašovací jméno"
13437
-
13438
- #: wppa-settings-autosave.php:7188 wppa-upldr-widget.php:181
13439
- msgid "Display name"
13440
- msgstr "Zobrazované jméno"
13441
-
13442
- #: wppa-settings-autosave.php:7188
13443
- msgid "Id"
13444
- msgstr "ID"
13445
-
13446
- #: wppa-settings-autosave.php:7188
13447
- msgid "Firstname Lastname"
13448
- msgstr "Jméno Příjmení"
13449
-
13450
- #: wppa-settings-autosave.php:7195
13451
- msgid "Grant parent"
13452
- msgstr "Přidělit nadřazené"
13453
-
13454
- #: wppa-settings-autosave.php:7196
13455
- msgid "The parent album of the auto created albums."
13456
- msgstr "Nadřazené album pro automaticky vytvářená alba."
13457
-
13458
- #: wppa-settings-autosave.php:7213
13459
- msgid "Max user albums"
13460
- msgstr "Maximální počet alb uživatele"
13461
-
13462
- #: wppa-settings-autosave.php:7214
13463
- msgid "The max number of albums a user can create."
13464
- msgstr "Maximální počet alb, která může uživatel vytvořit."
13465
-
13466
- #: wppa-settings-autosave.php:7215
13467
- msgid ""
13468
- "The maximum number of albums a user can create when he is not admin and "
13469
- "owner only is active"
13470
- msgstr ""
13471
- "Maximální počet alb, která uživatel může vytvořit, pokud není admininstrátor "
13472
- "a je aktivní nastavení Pouze majitelé (Tabulka VII - D1)."
13473
-
13474
- #: wppa-settings-autosave.php:7216
13475
- msgid "A number of 0 means No limit"
13476
- msgstr "Hodnota 0 znamená: bez omezení."
13477
-
13478
- #: wppa-settings-autosave.php:7223
13479
- msgid "Default photo name"
13480
- msgstr "Výchozí název fotografie"
13481
-
13482
- #: wppa-settings-autosave.php:7224
13483
- msgid "Select the way the name of a new uploaded photo should be determined."
13484
- msgstr "Vyberte způsob, kterým bude určen název nově nahrávaných fotografií."
13485
-
13486
- #: wppa-settings-autosave.php:7227
13487
- msgid "Filename"
13488
- msgstr "Název souboru"
13489
-
13490
- #: wppa-settings-autosave.php:7228
13491
- msgid "Filename without extension"
13492
- msgstr "Název souboru bez přípony"
13493
-
13494
- #: wppa-settings-autosave.php:7229
13495
- msgid "IPTC Tag 2#005 (Graphic name)"
13496
- msgstr "IPTC Tag 2#005 (Název grafiky)"
13497
-
13498
- #: wppa-settings-autosave.php:7230
13499
- msgid "IPTC Tag 2#120 (Caption)"
13500
- msgstr "IPTC Tag 2#120 (Titulek)"
13501
-
13502
- #: wppa-settings-autosave.php:7231
13503
- msgid "No name at all"
13504
- msgstr "Beze jména"
13505
-
13506
- #: wppa-settings-autosave.php:7239
13507
- msgid "Default coverphoto"
13508
- msgstr "Výchozí titulní fotografie"
13509
-
13510
- #: wppa-settings-autosave.php:7240
13511
- msgid "Name of photofile to become cover image"
13512
- msgstr "Název fotografie, která bude titulní fotografií alba"
13513
-
13514
- #: wppa-settings-autosave.php:7241
13515
- msgid ""
13516
- "If you name a photofile like this setting before upload, it will become the "
13517
- "coverimage automaticly."
13518
- msgstr ""
13519
- "Pokud v této položce nadefinujete jméno fotografie ještě před jejím "
13520
- "nahráním, stane se titulní fotografií automaticky."
13521
-
13522
- #: wppa-settings-autosave.php:7248
13523
- msgid "Copy Timestamp"
13524
- msgstr "Kopírovat časové razítku"
13525
-
13526
- #: wppa-settings-autosave.php:7249
13527
- msgid "Copy timestamp when copying photo."
13528
- msgstr "Při kopírování fotografie zkopírovat i časové razítko."
13529
-
13530
- #: wppa-settings-autosave.php:7250
13531
- msgid "If checked, the copied photo is not \"new\""
13532
- msgstr ""
13533
- "Pokud je tato položka zaškrtnuta, nebude kopírovaná fotografie \"nová\""
13534
-
13535
- #: wppa-settings-autosave.php:7257
13536
- msgid "Copy Owner"
13537
- msgstr "Kopírovat majitele"
13538
-
13539
- #: wppa-settings-autosave.php:7258
13540
- msgid "Copy the owner when copying photo."
13541
- msgstr "Při kopírování fotografie zkopírovat i majitele."
13542
-
13543
- #: wppa-settings-autosave.php:7266
13544
- msgid "FE Albums public"
13545
- msgstr "FE alba veřejná"
13546
-
13547
- #: wppa-settings-autosave.php:7267
13548
- msgid "Frontend created albums are --- public ---"
13549
- msgstr "Alba vytvořená z frontendu mají status --- veřejné ---"
13550
-
13551
- #: wppa-settings-autosave.php:7276
13552
- msgid "Optimize image files right after upload/import"
13553
- msgstr "Optimalizovat snímky ihned po nahrání/importu"
13554
-
13555
- #: wppa-settings-autosave.php:7277
13556
- msgid "This option requires the plugin EWWW Image Optimizer to be activated"
13557
- msgstr "Tato volba vyžaduje aktivovaný modul EWWW Image Optimizer"
13558
-
13559
- #: wppa-settings-autosave.php:7284
13560
- msgid "Default album linktype"
13561
- msgstr "Výchozí typ odkazu alba"
13562
-
13563
- #: wppa-settings-autosave.php:7285
13564
- msgid "The album linktype for new albums"
13565
- msgstr "Typ odkazu pro nová alba"
13566
-
13567
- #: wppa-settings-autosave.php:7304
13568
- msgid "Search Albums and Photos related settings"
13569
- msgstr "Nastavení související s vyhledáváním alb a fotografií"
13570
-
13571
- #: wppa-settings-autosave.php:7306
13572
- msgid "Search page"
13573
- msgstr "Stránka vyhledávání"
13574
-
13575
- #: wppa-settings-autosave.php:7307
13576
- msgid "Display the search results on page."
13577
- msgstr "Výsledky hledání zobrazit na stránce."
13578
-
13579
- #: wppa-settings-autosave.php:7308
13580
- #, php-format
13581
- msgid ""
13582
- "Select the page to be used to display search results. The page MUST contain "
13583
- "%%wppa%% or [wppa][/wppa]."
13584
- msgstr ""
13585
- "Vyberte stránku, která bude použita pro zobrazení výsledků hledání. Stránka "
13586
- "MUSÍ obsahovat %%wppa%% nebo [wppa][/wppa]."
13587
-
13588
- #: wppa-settings-autosave.php:7309
13589
- msgid "You may give it the title \"Search results\" or something alike."
13590
- msgstr "Stránku můžete nazvat \"Výsledky hledání\" nebo podobně."
13591
-
13592
- #: wppa-settings-autosave.php:7310
13593
- msgid ""
13594
- "Or you ou may use the standard page on which you display the generic album."
13595
- msgstr ""
13596
- "Nebo můžete použít standardní stránku na které zobrazujete výchozí album."
13597
-
13598
- #: wppa-settings-autosave.php:7343
13599
- msgid "Exclude separate"
13600
- msgstr "Vyloučit separátní"
13601
-
13602
- #: wppa-settings-autosave.php:7344
13603
- msgid "Do not search 'separate' albums."
13604
- msgstr "Neprohledávat 'separátní' alba."
13605
-
13606
- #: wppa-settings-autosave.php:7345
13607
- msgid ""
13608
- "When checked, albums (and photos in them) that have the parent set to --- "
13609
- "separate --- will be excluded from being searched."
13610
- msgstr ""
13611
- "Pokud je tato položka za.škrtnuta, nebudou prohledávána žádná alba (ani "
13612
- "fotografie v nich), která mají nadřazené album nastaveno na --- separátní "
13613
- "---."
13614
-
13615
- #: wppa-settings-autosave.php:7346
13616
- msgid ""
13617
- "Except when you start searching in a 'saparate' album, with the \"search in "
13618
- "current section\" box ticked."
13619
- msgstr ""
13620
- "Výjimkou je, pokud hledání začínáte v 'separátním' albu a je zaškrtnuta "
13621
- "možnost \"Hledat v aktuální sekci\"."
13622
-
13623
- #: wppa-settings-autosave.php:7353
13624
- msgid "Include tags"
13625
- msgstr "Zahrnout štítky"
13626
-
13627
- #: wppa-settings-autosave.php:7354
13628
- msgid "Do also search the photo tags."
13629
- msgstr "Do hledání zahrnout i štítky fotografií."
13630
-
13631
- #: wppa-settings-autosave.php:7355
13632
- msgid "When checked, the tags of the photo will also be searched."
13633
- msgstr ""
13634
- "Pokud je tato položka zaškrtnuta, budou vyhledávány i štítky fotografií."
13635
-
13636
- #: wppa-settings-autosave.php:7362
13637
- msgid "Include categories"
13638
- msgstr "Zahrnout kategorie"
13639
-
13640
- #: wppa-settings-autosave.php:7363
13641
- msgid "Do also search the album categories."
13642
- msgstr "Do hledání zahrnout i kategorie alb."
13643
-
13644
- #: wppa-settings-autosave.php:7364
13645
- msgid "When checked, the categories of the album will also be searched."
13646
- msgstr "Pokud je tato položka zaškrtnuta, budou vyhledávány i kategorie alb."
13647
-
13648
- #: wppa-settings-autosave.php:7371
13649
- msgid "Include comments"
13650
- msgstr "Zahrnout komentáře"
13651
-
13652
- #: wppa-settings-autosave.php:7372
13653
- msgid "Do also search the comments on photos."
13654
- msgstr "Do hledání zahrnout i komentáře k fotografiím."
13655
-
13656
- #: wppa-settings-autosave.php:7373
13657
- msgid "When checked, the comments of the photos will also be searched."
13658
- msgstr ""
13659
- "Pokud je tato položka zaškrtnuta, budou vyhledávány i komentáře k "
13660
- "fotografiím."
13661
-
13662
- #: wppa-settings-autosave.php:7380
13663
- msgid "Photos only"
13664
- msgstr "Pouze fotografie"
13665
-
13666
- #: wppa-settings-autosave.php:7381
13667
- msgid "Search for photos only."
13668
- msgstr "Vyhledávat pouze fotografie."
13669
-
13670
- #: wppa-settings-autosave.php:7382
13671
- msgid "When checked, only photos will be searched for."
13672
- msgstr "Pokud je tato položka zaškrtnuta, budou vyhledávány pouze fotografie."
13673
-
13674
- #: wppa-settings-autosave.php:7397
13675
- msgid "Max albums found"
13676
- msgstr "Max nalezených alb"
13677
-
13678
- #: wppa-settings-autosave.php:7398
13679
- msgid "The maximum number of albums to be displayed."
13680
- msgstr "Maximální počet nalezených alb, které budou zobrazeny."
13681
-
13682
- #: wppa-settings-autosave.php:7406
13683
- msgid "Max photos found"
13684
- msgstr "Max nalezených fotografií"
13685
-
13686
- #: wppa-settings-autosave.php:7407
13687
- msgid "The maximum number of photos to be displayed."
13688
- msgstr "Maximální počet nalezených fotografií, které budou zobrazeny."
13689
-
13690
- #: wppa-settings-autosave.php:7415
13691
- msgid "Tags OR only"
13692
- msgstr "Pouze tagy NEBO"
13693
-
13694
- #: wppa-settings-autosave.php:7416
13695
- msgid "No and / or buttons"
13696
- msgstr "Žádná tlačítka A / NEBO"
13697
-
13698
- #: wppa-settings-autosave.php:7417
13699
- msgid ""
13700
- "Hide the and/or radiobuttons and do the or method in the multitag widget and "
13701
- "shortcode."
13702
- msgstr ""
13703
- "Skrýt radiobuton A / NEBO a vykonat metodu nebo uvnitř multitag widgetu a "
13704
- "krátkého kódu."
13705
-
13706
- #: wppa-settings-autosave.php:7424
13707
- msgid "Tags add Inverse"
13708
- msgstr ""
13709
-
13710
- #: wppa-settings-autosave.php:7425
13711
- #, fuzzy
13712
- msgid "Add a checkbox to invert the selection."
13713
- msgstr "Štítky ve výběrovém panelu."
13714
-
13715
- #: wppa-settings-autosave.php:7426
13716
- #, fuzzy
13717
- msgid "Adds an Invert (NOT) checkbox on the multitag widget and shortcode."
13718
- msgstr ""
13719
- "Skrýt radiobuton A / NEBO a vykonat metodu nebo uvnitř multitag widgetu a "
13720
- "krátkého kódu."
13721
-
13722
- #: wppa-settings-autosave.php:7433
13723
- msgid "Floating searchtoken"
13724
- msgstr "Plovoucí vyhledávání"
13725
-
13726
- #: wppa-settings-autosave.php:7434
13727
- msgid "A match need not start at the first char."
13728
- msgstr "Shoda může nastat i na jiné, než první pozici v řetězci."
13729
-
13730
- #: wppa-settings-autosave.php:7435
13731
- msgid ""
13732
- "A match is found while searching also when the entered token is somewhere in "
13733
- "the middle of a word."
13734
- msgstr ""
13735
- "Ke shodě s vyhledávaným výrazem může dojít i kdekoli uvnitř prohledávaného "
13736
- "slova/řetězce."
13737
-
13738
- #: wppa-settings-autosave.php:7436
13739
- msgid "This works in indexed search only!"
13740
- msgstr "Funguje pouze při indexovaném vyhledávání!"
13741
-
13742
- #: wppa-settings-autosave.php:7443
13743
- msgid "Search results display"
13744
- msgstr "Zobrazit výsledek hledání"
13745
-
13746
- #: wppa-settings-autosave.php:7444
13747
- msgid "Select the way the search results should be displayed."
13748
- msgstr "Vyberte způsob zobrazení výsledů hledání."
13749
-
13750
- #: wppa-settings-autosave.php:7445
13751
- msgid ""
13752
- "If you select anything different from \"Albums and thumbnails\", \"Photos "
13753
- "only\" is assumed (Table IX-E6)."
13754
- msgstr ""
13755
- "Pokud zvolíte cokoli jiného než \"Alba a miniatury\", musí být zaškrtnuto "
13756
- "\"Pouze fotografie\" (Tabulka IX - E6)."
13757
-
13758
- #: wppa-settings-autosave.php:7447
13759
- msgid "Albums and thumbnails"
13760
- msgstr "Alba a miniatury"
13761
-
13762
- #: wppa-settings-autosave.php:7447
13763
- msgid "Slideonly slideshow"
13764
- msgstr "Prezentace pouze snímků"
13765
-
13766
- #: wppa-settings-autosave.php:7454
13767
- msgid "Name max length"
13768
- msgstr "Max délka názvu"
13769
-
13770
- #: wppa-settings-autosave.php:7455
13771
- msgid "Max length of displayed photonames in supersearch selectionlist"
13772
- msgstr "Maximální délka názvu zobrazená ve výpisu výsledků super-hledání."
13773
-
13774
- #: wppa-settings-autosave.php:7456 wppa-settings-autosave.php:7465
13775
- msgid ""
13776
- "To limit the length of the selectionlist, enter the number of characters to "
13777
- "show."
13778
- msgstr ""
13779
- "Chcete-li omezit délku výpisu výsledků, zadejte počet znaků, které budou "
13780
- "zobrazeny."
13781
-
13782
- #: wppa-settings-autosave.php:7463
13783
- msgid "Text max length"
13784
- msgstr "Max délka textu"
13785
-
13786
- #: wppa-settings-autosave.php:7464
13787
- msgid "Max length of displayed photo text in supersearch selectionlist"
13788
- msgstr ""
13789
- "Maximální délka textu k fotografii zobrazená ve výpisu výsledků super-"
13790
- "hledání."
13791
-
13792
- #: wppa-settings-autosave.php:7472
13793
- msgid "Search toptext"
13794
- msgstr "Titulek hledání"
13795
-
13796
- #: wppa-settings-autosave.php:7473
13797
- msgid "The text at the top of the search box."
13798
- msgstr "Text na horní části vyhledávacího panelu."
13799
-
13800
- #: wppa-settings-autosave.php:7474
13801
- msgid "May contain unfiltered HTML."
13802
- msgstr "Může obsahovat nefiltrované HTML."
13803
-
13804
- #: wppa-settings-autosave.php:7481
13805
- msgid "Section search text"
13806
- msgstr "Text sekce vyhledávání"
13807
-
13808
- #: wppa-settings-autosave.php:7482 wppa-settings-autosave.php:7491
13809
- msgid "The labeltext at the checkbox."
13810
- msgstr "Popisek zaškrtávacího pole"
13811
-
13812
- #: wppa-settings-autosave.php:7490
13813
- msgid "Results search text"
13814
- msgstr "Text výsledků hledání"
13815
-
13816
- #: wppa-settings-autosave.php:7500
13817
- msgid "Watermark related settings"
13818
- msgstr "Nastavení související s vodoznakem"
13819
-
13820
- #: wppa-settings-autosave.php:7503
13821
- msgid "Enable the application of watermarks."
13822
- msgstr "Povolit aplikaci vodoznaků."
13823
-
13824
- #: wppa-settings-autosave.php:7504
13825
- msgid "If checked, photos can be watermarked during upload / import."
13826
- msgstr ""
13827
- "Pokud je tato volba zaškrtnuta, mohou být během nahrávání / importu "
13828
- "fotografie označeny vodoznakem. "
13829
-
13830
- #: wppa-settings-autosave.php:7513
13831
- msgid "Watermark file"
13832
- msgstr "soubor vodoznaku"
13833
-
13834
- #: wppa-settings-autosave.php:7514
13835
- msgid "The default watermarkfile to be used."
13836
- msgstr "Výchozí soubor vodoznaku, který bude použit."
13837
-
13838
- #: wppa-settings-autosave.php:7515
13839
- msgid "Watermark files are of type png and reside in"
13840
- msgstr "Soubor vodoznaku musí být typu png a být umístěn v"
13841
-
13842
- #: wppa-settings-autosave.php:7516
13843
- msgid ""
13844
- "A suitable watermarkfile typically consists of a transparent background and "
13845
- "a black text or drawing."
13846
- msgstr ""
13847
- "Vhodný soubor vodoznaku typicky sestává z průhledného pozadí a černého textu "
13848
- "nebo kresby."
13849
-
13850
- #: wppa-settings-autosave.php:7518
13851
- msgid ""
13852
- "You may also select one of the textual watermark types at the bottom of the "
13853
- "selection list."
13854
- msgstr ""
13855
- "Můžete také zvolit jeden z textových vodoznaků z níže uvedeného výběru."
13856
-
13857
- #: wppa-settings-autosave.php:7522
13858
- msgid "position:"
13859
- msgstr "umístění:"
13860
-
13861
- #: wppa-settings-autosave.php:7528
13862
- msgid "Upload watermark"
13863
- msgstr "Nahrát vodoznak"
13864
-
13865
- #: wppa-settings-autosave.php:7529
13866
- msgid "Upload a new watermark file"
13867
- msgstr "Nahrát nový soubor vodoznaku"
13868
-
13869
- #: wppa-settings-autosave.php:7533
13870
- msgid "Upload watermark image"
13871
- msgstr "Nahrát obrázek vodoznaku"
13872
-
13873
- #: wppa-settings-autosave.php:7538
13874
- msgid "Watermark opacity image"
13875
- msgstr "Průhlednost vodoznaku"
13876
-
13877
- #: wppa-settings-autosave.php:7539
13878
- msgid "You can set the intensity of image watermarks here."
13879
- msgstr "Zde můžete nastavit intenzitu vodoznaku."
13880
-
13881
- #: wppa-settings-autosave.php:7540 wppa-settings-autosave.php:7625
13882
- msgid ""
13883
- "The higher the number, the intenser the watermark. Value must be > 0 and <= "
13884
- "100."
13885
- msgstr ""
13886
- "Hodnota musí být v intervalu 1..100. Čím vyšší je číslo, tím výraznější je "
13887
- "vodoznak."
13888
-
13889
- #: wppa-settings-autosave.php:7547
13890
- msgid "Textual watermark style"
13891
- msgstr "Textový vodoznak"
13892
-
13893
- #: wppa-settings-autosave.php:7548
13894
- msgid "The way the textual watermarks look like"
13895
- msgstr "Jak bude textový vodoznak vypadat"
13896
-
13897
- #: wppa-settings-autosave.php:7552
13898
- msgid "TV subtitle style"
13899
- msgstr "Styl TV titulků"
13900
-
13901
- #: wppa-settings-autosave.php:7552
13902
- msgid "White text on black background"
13903
- msgstr "Bílý text na černém pozadí"
13904
-
13905
- #: wppa-settings-autosave.php:7552
13906
- msgid "Black text on white background"
13907
- msgstr "Černý text na bílém pozadí"
13908
-
13909
- #: wppa-settings-autosave.php:7552
13910
- msgid "Reverse TV style (Utopia)"
13911
- msgstr "Reverzní TV styl (Utopie)"
13912
-
13913
- #: wppa-settings-autosave.php:7552
13914
- msgid "White on transparent background"
13915
- msgstr "Bílý na průhledném pozadí"
13916
-
13917
- #: wppa-settings-autosave.php:7552
13918
- msgid "Black on transparent background"
13919
- msgstr "Černý na průhledném pozadí"
13920
-
13921
- #: wppa-settings-autosave.php:7562
13922
- msgid "Predefined watermark text"
13923
- msgstr "Předdefinovaný text vodoznaku"
13924
-
13925
- #: wppa-settings-autosave.php:7563
13926
- msgid "The text to use when --- pre-defined --- is selected."
13927
- msgstr "Text, který bude použit, je-li nastavena volba --- předdefinovaný ---"
13928
-
13929
- #: wppa-settings-autosave.php:7564
13930
- msgid "You may use the following keywords:"
13931
- msgstr "Můžete využít následující klíčová slova:"
13932
-
13933
- #: wppa-settings-autosave.php:7565
13934
- msgid "w#site, w#owner, w#name, w#filename"
13935
- msgstr "w#site, w#owner, w#name, w#filename"
13936
-
13937
- #: wppa-settings-autosave.php:7572
13938
- msgid "Textual watermark font"
13939
- msgstr "Font textového vodoznaku"
13940
-
13941
- #: wppa-settings-autosave.php:7573
13942
- msgid "The font to use with textusl watermarks."
13943
- msgstr "Font, který bude použit pro vodoznak ve stylu textu."
13944
-
13945
- #: wppa-settings-autosave.php:7574
13946
- msgid "Except for the system font, are font files of type ttf and reside in"
13947
- msgstr "Kromě systémových fontů, jsou soubory fontů typu ttf a jsou uloženy v "
13948
-
13949
- #: wppa-settings-autosave.php:7602
13950
- msgid "Textual watermark font size"
13951
- msgstr "Velikost fontu textového vodoznaku"
13952
-
13953
- #: wppa-settings-autosave.php:7603
13954
- msgid "You can set the size of the truetype fonts only."
13955
- msgstr "Velikost lze nastavit pouze pro truetype fonty."
13956
-
13957
- #: wppa-settings-autosave.php:7604
13958
- msgid ""
13959
- "System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
13960
- "value > 5 will be treated as 5."
13961
- msgstr ""
13962
- "Velikost systémových fontů může být 1,2,3,4 nebo 5 v jakýchsi "
13963
- "prehistorických jednotkách fontSize. Jakákoli hodnota >5 bude prezentována "
13964
- "jako 5."
13965
-
13966
- #: wppa-settings-autosave.php:7605
13967
- msgid ""
13968
- "Truetype fonts can have any positive integer size, if your PHPs GD version "
13969
- "is 1, in pixels, in GD2 in points."
13970
- msgstr ""
13971
- "Velikot Fontů truetype může být jakékoli kladné přirozené číslo. Pro verzi "
13972
- "GD1 vašeho PHP je jednotkou pixel pro GD2 pak bod."
13973
-
13974
- #: wppa-settings-autosave.php:7606
13975
- msgid "It is unclear howmany pixels a point is..."
13976
- msgstr "Je nejasné kolik pixel vlastně je jeden bod ..."
13977
-
13978
- #: wppa-settings-autosave.php:7613
13979
- msgid "Upload watermark font"
13980
- msgstr "Nahrát font vodoznaku"
13981
-
13982
- #: wppa-settings-autosave.php:7614
13983
- msgid "Upload a new watermark font file"
13984
- msgstr "Nahrát nový soubor fontu pro vodoznak"
13985
-
13986
- #: wppa-settings-autosave.php:7615
13987
- msgid ""
13988
- "Upload truetype fonts (.ttf) only, and test if they work on your server "
13989
- "platform."
13990
- msgstr ""
13991
- "Nahrávejte pouze truetype fonty (.ttf) a otestujte, zda jsou kompatibilní s "
13992
- "platformou vašeho serveru."
13993
-
13994
- #: wppa-settings-autosave.php:7618
13995
- msgid "Upload TrueType font"
13996
- msgstr "Nahrát TrueType font"
13997
-
13998
- #: wppa-settings-autosave.php:7623
13999
- msgid "Watermark opacity text"
14000
- msgstr "Průhlednost textového vodoznaku"
14001
-
14002
- #: wppa-settings-autosave.php:7624
14003
- msgid "You can set the intensity of a text watermarks here."
14004
- msgstr "Zde můžete nastavit průhlednost textových vodoznaků."
14005
-
14006
- #: wppa-settings-autosave.php:7633
14007
- msgid "A real life preview. To update: refresh the page."
14008
- msgstr "Skutečný živý náhled. Chcete-li aktualizovat: obnovte stránku."
14009
-
14010
- #: wppa-settings-autosave.php:7644
14011
- msgid "Watermark thumbnails"
14012
- msgstr "Vodoznak v miniaturách"
14013
-
14014
- #: wppa-settings-autosave.php:7645
14015
- msgid "Watermark also the thumbnail image files."
14016
- msgstr "Použít vodoznak také pro miniatury."
14017
-
14018
- #: wppa-settings-autosave.php:7653
14019
- msgid "Slideshow elements sequence order settings"
14020
- msgstr "Nastavení pořadí prvků prezentace"
14021
-
14022
- #: wppa-settings-autosave.php:7659 wppa-settings-autosave.php:7705
14023
- msgid "StartStop"
14024
- msgstr "Start"
14025
-
14026
- #: wppa-settings-autosave.php:7660 wppa-settings-autosave.php:7706
14027
- msgid "SlideFrame"
14028
- msgstr "Okno snímku"
14029
-
14030
- #: wppa-settings-autosave.php:7662
14031
- msgid "Desc"
14032
- msgstr "Sest."
14033
-
14034
- #: wppa-settings-autosave.php:7665 wppa-settings-autosave.php:7710
14035
- msgid "FilmStrip"
14036
- msgstr "Filmový pás"
14037
-
14038
- #: wppa-settings-autosave.php:7666 wppa-settings-autosave.php:7711
14039
- msgid "Browsebar"
14040
- msgstr "Lišta procházení"
14041
-
14042
- #: wppa-settings-autosave.php:7668 wppa-settings-autosave.php:7713
14043
- msgid "IPTC data"
14044
- msgstr "IPTC data"
14045
-
14046
- #: wppa-settings-autosave.php:7669 wppa-settings-autosave.php:7714
14047
- msgid "EXIF data"
14048
- msgstr "EXIF data"
14049
-
14050
- #: wppa-settings-autosave.php:7670 wppa-settings-autosave.php:7715
14051
- msgid "Share box"
14052
- msgstr "Box sdílení"
14053
-
14054
- #: wppa-settings-autosave.php:7672 wppa-settings-autosave.php:7717
14055
- msgid "Enabled"
14056
- msgstr "Povoleno"
14057
-
14058
- #: wppa-settings-autosave.php:7673 wppa-settings-autosave.php:7718
14059
- msgid "Disabled"
14060
- msgstr "Zakázáno"
14061
-
14062
- #: wppa-settings-autosave.php:7675 wppa-settings-autosave.php:7720
14063
- msgid "Start/Stop & Slower/Faster navigation bar"
14064
- msgstr "Navigační pás Start/Stop & Pomaleji/Rychleji"
14065
-
14066
- #: wppa-settings-autosave.php:7676 wppa-settings-autosave.php:7721
14067
- msgid "The Slide Frame"
14068
- msgstr "Zobrazení aktuální fotografie"
14069
-
14070
- #: wppa-settings-autosave.php:7676 wppa-settings-autosave.php:7721
14071
- msgid "( Always )"
14072
- msgstr "( vždy )"
14073
-
14074
- #: wppa-settings-autosave.php:7677
14075
- msgid "Photo Name Box"
14076
- msgstr "Pole s Názvem fotografie"
14077
-
14078
- #: wppa-settings-autosave.php:7678
14079
- msgid "Photo Description Box"
14080
- msgstr "Pole s Popisem fotografie"
14081
-
14082
- #: wppa-settings-autosave.php:7679 wppa-settings-autosave.php:7723
14083
- msgid "Custom Box"
14084
- msgstr "Uživatelské pole"
14085
-
14086
- #: wppa-settings-autosave.php:7680 wppa-settings-autosave.php:7724
14087
- msgid "Rating Bar"
14088
- msgstr "Lišta hodnocení"
14089
-
14090
- #: wppa-settings-autosave.php:7681 wppa-settings-autosave.php:7725
14091
- msgid "Film Strip with embedded Start/Stop and Goto functionality"
14092
- msgstr "Filmový pás s integrovanou funkcionalitou Start/Stop a JdiNa"
14093
-
14094
- #: wppa-settings-autosave.php:7682 wppa-settings-autosave.php:7726
14095
- msgid "Browse Bar with Photo X of Y counter"
14096
- msgstr "Lišta procházení s počítadlem Fotografie X z Y"
14097
-
14098
- #: wppa-settings-autosave.php:7683 wppa-settings-autosave.php:7727
14099
- msgid "Comments Box"
14100
- msgstr "Panel komentářů"
14101
-
14102
- #: wppa-settings-autosave.php:7684 wppa-settings-autosave.php:7728
14103
- msgid "IPTC box"
14104
- msgstr "Panel IPTC"
14105
-
14106
- #: wppa-settings-autosave.php:7685 wppa-settings-autosave.php:7729
14107
- msgid "EXIF box"
14108
- msgstr "Panel EXIF"
14109
-
14110
- #: wppa-settings-autosave.php:7686 wppa-settings-autosave.php:7730
14111
- msgid "Social media share box"
14112
- msgstr "Panel sdílení v Sociálních sítích"
14113
-
14114
- #: wppa-settings-autosave.php:7692 wppa-settings-autosave.php:7736
14115
- msgid "Move Up"
14116
- msgstr "Nahoru"
14117
-
14118
- #: wppa-settings-autosave.php:7707
14119
- msgid "NameDesc"
14120
- msgstr "Název & Popis"
14121
-
14122
- #: wppa-settings-autosave.php:7722
14123
- msgid "Photo Name & Description Box"
14124
- msgstr "Panel s názvem a popisem fotografie"
14125
-
14126
- #: wppa-settings-autosave.php:7746
14127
- msgid "Swap Namedesc"
14128
- msgstr "Prohodit Název & Popis"
14129
-
14130
- #: wppa-settings-autosave.php:7747
14131
- msgid "Swap the order sequence of name and description"
14132
- msgstr "Prohodit pořadí zobrazení názvu a popisu"
14133
-
14134
- #: wppa-settings-autosave.php:7755
14135
- msgid "Split Name and Desc"
14136
- msgstr "Rozdělit Název & Popis"
14137
-
14138
- #: wppa-settings-autosave.php:7756
14139
- msgid "Put Name and Description in separate boxes"
14140
- msgstr "Zobrazit název a popis na oddělených panelech"
14141
-
14142
- #: wppa-settings-autosave.php:7759
14143
- msgid "Please reload this page after the green checkmark appears!"
14144
- msgstr "Jakmile se objeví zelené potvrzení, obnovte tuto stánku!"
14145
-
14146
- #: wppa-settings-autosave.php:7764
14147
- msgid "Source file management and other upload/import settings and actions."
14148
- msgstr ""
14149
- "Správa zdrojových souborů a další nastavení a akce související nahráváním/"
14150
- "importem."
14151
-
14152
- #: wppa-settings-autosave.php:7766
14153
- msgid "Keep sourcefiles admin"
14154
- msgstr "Zachovat zdrojové soubory"
14155
-
14156
- #: wppa-settings-autosave.php:7767
14157
- msgid "Keep the original uploaded and imported photo files."
14158
- msgstr "Zachovat původní nahrané a importované soubory fotografií."
14159
-
14160
- #: wppa-settings-autosave.php:7768 wppa-settings-autosave.php:7778
14161
- msgid ""
14162
- "The files will be kept in a separate directory with subdirectories for each "
14163
- "album"
14164
- msgstr ""
14165
- "Soubory budou zachovány v odděleném adresáři v podadresářích každého alba"
14166
-
14167
- #: wppa-settings-autosave.php:7769 wppa-settings-autosave.php:7779
14168
- msgid ""
14169
- "These files can be used to update the photos used in displaying in wppa+ and "
14170
- "optionally for downloading original, un-downsized images."
14171
- msgstr ""
14172
- "Tyto soubory mohou být později použity pro aktualizaci fotografií "
14173
- "zobrazovaných systémem WPPA+ a případně také pro stažení originálních, "
14174
- "nezmenšených snímků."
14175
-
14176
- #: wppa-settings-autosave.php:7776
14177
- msgid "Keep sourcefiles frontend"
14178
- msgstr "Zachovat zdrojové soubory z frontendu"
14179
-
14180
- #: wppa-settings-autosave.php:7777
14181
- msgid "Keep the original frontend uploaded photo files."
14182
- msgstr "Zachovat původní soubory fotografií nahrané a importované z frontendu."
14183
-
14184
- #: wppa-settings-autosave.php:7786
14185
- msgid "Source directory"
14186
- msgstr "Zdrojový adresář"
14187
-
14188
- #: wppa-settings-autosave.php:7787
14189
- msgid "The path to the directory where the original photofiles will be saved."
14190
- msgstr "Cesta k adresáři, kam budou originální soubory fotografií uloženy."
14191
-
14192
- #: wppa-settings-autosave.php:7788
14193
- msgid "You may change the directory path, but it can not be an url."
14194
- msgstr "Cestu k adresáři změnit můžete, ale nesmí to být URL adresa."
14195
-
14196
- #: wppa-settings-autosave.php:7789
14197
- msgid ""
14198
- "The parent of the directory that you enter here must exist and be writable."
14199
- msgstr ""
14200
- "Nadřazený adresář, který zadáte, musí existovat a musí mít povolený zápis."
14201
-
14202
- #: wppa-settings-autosave.php:7790
14203
- msgid "The directory itsself will be created if it does not exist yet."
14204
- msgstr "Samotný adresář bude vytvořen, neexistuje-li."
14205
-
14206
- #: wppa-settings-autosave.php:7797
14207
- msgid "Keep sync"
14208
- msgstr "Udržet synchonizované"
14209
-
14210
- #: wppa-settings-autosave.php:7798
14211
- msgid "Keep source synchronously with wppa system."
14212
- msgstr "Udržovat zdrojové soubory synchronizované s WPPA+ systémem."
14213
-
14214
- #: wppa-settings-autosave.php:7799
14215
- msgid ""
14216
- "If checked, photos that are deleted from wppa, will also be removed from the "
14217
- "sourcefiles."
14218
- msgstr ""
14219
- "Pokud je tato položka zaškrtnuta, budou při vymazávání fotografií ze systému "
14220
- "WPPA+ smazány i zdrojové soubory."
14221
-
14222
- #: wppa-settings-autosave.php:7800
14223
- msgid ""
14224
- "Also, copying or moving photos to different albums, will also copy/move the "
14225
- "sourcefiles."
14226
- msgstr ""
14227
- "Taktéž kopírování nebo přesouvání fotografií do jiných alb zkopíruje / "
14228
- "přesune zdrojové soubory."
14229
-
14230
- #: wppa-settings-autosave.php:7807
14231
- msgid "Remake add"
14232
- msgstr "Doplnit dle zdroje"
14233
-
14234
- #: wppa-settings-autosave.php:7808
14235
- msgid "Photos will be added from the source pool"
14236
- msgstr "Neexistující fotografie budou přidány ze zdrojového adresáře"
14237
-
14238
- #: wppa-settings-autosave.php:7809
14239
- msgid ""
14240
- "If checked: If photo files are found in the source directory that do not "
14241
- "exist in the corresponding album, they will be added to the album."
14242
- msgstr ""
14243
- "Pokud je tato položka zaškrtnuta: Budou-li ve zdrojovém adresáři nalezeny "
14244
- "soubory fotografií, které neexistují v odpovídajícím albu, budou automaticky "
14245
- "doplněny."
14246
-
14247
- #: wppa-settings-autosave.php:7816
14248
- msgid "Save IPTC data"
14249
- msgstr "Uložit IPTC data"
14250
-
14251
- #: wppa-settings-autosave.php:7817
14252
- msgid "Store the iptc data from the photo into the iptc db table"
14253
- msgstr "Uložit IPTC data z fotografie do databázové tabulky IPTC"
14254
-
14255
- #: wppa-settings-autosave.php:7818
14256
- msgid ""
14257
- "You will need this if you enabled the display of iptc data in Table II-B17 "
14258
- "or if you use it in the photo descriptions."
14259
- msgstr ""
14260
- "Tato volba je nutná, pokud povolíte zobrazení IPTC dat v Tabulce II - B17 "
14261
- "nebo když je chcete využít v popisu fotografií."
14262
-
14263
- #: wppa-settings-autosave.php:7825
14264
- msgid "Save EXIF data"
14265
- msgstr "Uložit EXIF data"
14266
-
14267
- #: wppa-settings-autosave.php:7826
14268
- msgid "Store the exif data from the photo into the exif db table"
14269
- msgstr "Uložit EXIF data z fotografie do databázové tabulky IPTC"
14270
-
14271
- #: wppa-settings-autosave.php:7827
14272
- msgid ""
14273
- "You will need this if you enabled the display of exif data in Table II-B18 "
14274
- "or if you use it in the photo descriptions."
14275
- msgstr ""
14276
- "Tato volba je nutná, pokud povolíte zobrazení EXIF dat v Tabulce II - B18 "
14277
- "nebo když je chcete využít v popisu fotografií."
14278
-
14279
- #: wppa-settings-autosave.php:7834
14280
- msgid "Max EXIF tag array size"
14281
- msgstr "Maximální velikost pole EXIF tagů"
14282
-
14283
- #: wppa-settings-autosave.php:7835
14284
- msgid "Truncate array tags to ..."
14285
- msgstr "Zkrátit pole tagů na ..."
14286
-
14287
- #: wppa-settings-autosave.php:7836
14288
- msgid "A value of 0 disables this feature"
14289
- msgstr "Hodnota 0 toto omezení zakáže."
14290
-
14291
- #: wppa-settings-autosave.php:7838
14292
- msgid "elements"
14293
- msgstr "prvky"
14294
-
14295
- #: wppa-settings-autosave.php:7843
14296
- msgid "Import Create page"
14297
- msgstr "Import vytvoří stránku"
14298
-
14299
- #: wppa-settings-autosave.php:7844
14300
- msgid "Create wp page when a directory to album is imported."
14301
- msgstr "Vytvořit WP stránku při každém importu adresáře do alba."
14302
-
14303
- #: wppa-settings-autosave.php:7845
14304
- msgid ""
14305
- "As soon as an album is created when a directory is imported, a wp page is "
14306
- "made that displays the album content."
14307
- msgstr ""
14308
- "WP stránka s obsahem alba bude vytvořena pokaždé, jakmile bude album "
14309
- "vytvořeno importem souborů z adresáře."
14310
-
14311
- #: wppa-settings-autosave.php:7853
14312
- msgid "Page content"
14313
- msgstr "Obsah stránky"
14314
-
14315
- #: wppa-settings-autosave.php:7854
14316
- msgid "The content of the page. Must contain <b>w#album</b>"
14317
- msgstr "Obsah vytvořené stránky. Musí zahrnovat kód <b>w#album</b>"
14318
-
14319
- #: wppa-settings-autosave.php:7855
14320
- msgid ""
14321
- "The content of the page. Note: it must contain w#album. This will be "
14322
- "replaced by the album number in the generated shortcode."
14323
- msgstr ""
14324
- "Obsah stránky. Poznámka: musí obsahovat w#album. Tento kód bude v "
14325
- "generovaném krátkém kódu nahrazen číslem alba."
14326
-
14327
- #: wppa-settings-autosave.php:7863
14328
- msgid "Page type"
14329
- msgstr "Typ stránky"
14330
-
14331
- #: wppa-settings-autosave.php:7864
14332
- msgid "Select the type of page to create."
14333
- msgstr "Zvolte typ stránky, která bude vytvořena."
14334
-
14335
- #: wppa-settings-autosave.php:7868
14336
- msgid "Post"
14337
- msgstr "Příspěvek"
14338
-
14339
- #: wppa-settings-autosave.php:7875
14340
- msgid "Page status"
14341
- msgstr "Stav stránky"
14342
-
14343
- #: wppa-settings-autosave.php:7876
14344
- msgid "Select the initial status of the page."
14345
- msgstr "Zvolte výchozí stav vytvořené stránky."
14346
-
14347
- #: wppa-settings-autosave.php:7880
14348
- msgid "Published"
14349
- msgstr "Publikováno"
14350
-
14351
- #: wppa-settings-autosave.php:7880
14352
- msgid "Draft"
14353
- msgstr "Koncept"
14354
-
14355
- #: wppa-settings-autosave.php:7888
14356
- msgid "Permalink root"
14357
- msgstr "Základ trvalého odkazu"
14358
-
14359
- #: wppa-settings-autosave.php:7889
14360
- msgid "The name of the root for the photofile ermalink structure."
14361
- msgstr "Základní část pro strukturu trvalých odkazů fotosouborů."
14362
-
14363
- #: wppa-settings-autosave.php:7890
14364
- msgid ""
14365
- "Choose a convenient name like \"albums\" or so; this will be the name of a "
14366
- "folder inside .../wp-content/. Make sure you choose a unique name"
14367
- msgstr ""
14368
- "Vyberte vhodný název jako např. \"Alba\"; Tento název bude použit pro "
14369
- "kořenový adresář uvnitř cesty .../wp-content/. Ujistěte se, že jste vybrali "
14370
- "jedinečný název, neexistující v adresáři .../wp-content/."
14371
-
14372
- #: wppa-settings-autosave.php:7898
14373
- #, fuzzy
14374
- msgid "Import parent check"
14375
- msgstr "Import vytvoří stránku"
14376
-
14377
- #: wppa-settings-autosave.php:7899
14378
- msgid "On import dirs to albums: keep dir tree as albums."
14379
- msgstr ""
14380
-
14381
- #: wppa-settings-autosave.php:7900
14382
- msgid ""
14383
- "Untick only if all your albums have unique names. Then: additional photos "
14384
- "may be ftp'd to toplevel depot subdirs."
14385
- msgstr ""
14386
-
14387
- #: wppa-settings-autosave.php:7907
14388
- msgid "IPTC need utf8 conversion"
14389
- msgstr ""
14390
-
14391
- #: wppa-settings-autosave.php:7908
14392
- msgid "This setting converts iso to utf8 in iptc text."
14393
- msgstr ""
14394
-
14395
- #: wppa-settings-autosave.php:7909
14396
- msgid "Untick if you have funny characters in iptc data"
14397
- msgstr ""
14398
-
14399
- #: wppa-settings-autosave.php:7916
14400
- #, fuzzy
14401
- msgid "Keep dir to album files"
14402
- msgstr "Zatím nejsou k dispozici žádná alba"
14403
-
14404
- #: wppa-settings-autosave.php:7917
14405
- #, fuzzy
14406
- msgid "Keep imported files after dir to album import"
14407
- msgstr "Vytvořit WP stránku při každém importu adresáře do alba."
14408
-
14409
- #: wppa-settings-autosave.php:7926
14410
- msgid "Other plugins related settings"
14411
- msgstr "Ostatní nastavení související s pluginem"
14412
-
14413
- #: wppa-settings-autosave.php:7928
14414
- msgid "Foreign shortcodes general"
14415
- msgstr "Cízí krátké kódy"
14416
-
14417
- #: wppa-settings-autosave.php:7929
14418
- msgid "Enable foreign shortcodes in album names, albums desc and photo names"
14419
- msgstr ""
14420
- "Povolit cizí krátké kódy v názvech alb, popisu alb a názvech fotografií"
14421
-
14422
- #: wppa-settings-autosave.php:7937
14423
- msgid "Foreign shortcodes fullsize"
14424
- msgstr "Cizí krátké kódy v Plném zobrazení"
14425
-
14426
- #: wppa-settings-autosave.php:7938
14427
- msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
14428
- msgstr ""
14429
- "Povolit použití cizích krátkých kódů v popisech fotografií v plné velikosti."
14430
-
14431
- #: wppa-settings-autosave.php:7939 wppa-settings-autosave.php:7950
14432
- msgid ""
14433
- "When checked, you can use shortcodes from other plugins in the description "
14434
- "of photos."
14435
- msgstr ""
14436
- "Pokud je tato položka zaškrtnuta, můžete v popisu fotografií použít i krátké "
14437
- "kódy z jiných pluginů."
14438
-
14439
- #: wppa-settings-autosave.php:7940
14440
- msgid "The shortcodes will be expanded in the descriptions of fullsize images."
14441
- msgstr "Krátké kódy budou v popisech fotografií v plné velikosti zpracovány."
14442
-
14443
- #: wppa-settings-autosave.php:7941 wppa-settings-autosave.php:7952
14444
- msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
14445
- msgstr ""
14446
- "Budete s největší pravděpodobností muset také zaškrtnout položku A1 v "
14447
- "Tabulce IX (Povolit HTML)."
14448
-
14449
- #: wppa-settings-autosave.php:7948
14450
- msgid "Foreign shortcodes thumbnails"
14451
- msgstr "Cizí krátké kódy v miniaturách"
14452
-
14453
- #: wppa-settings-autosave.php:7949
14454
- msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
14455
- msgstr "Povolit použití cizích krátkých kódů v popisech miniatur fotografií."
14456
-
14457
- #: wppa-settings-autosave.php:7951
14458
- msgid ""
14459
- "The shortcodes will be expanded in the descriptions of thumbnail images."
14460
- msgstr "Krátké kódy budou v popisech miniatur fotografií zpracovány."
14461
-
14462
- #: wppa-settings-autosave.php:7959
14463
- msgid "Lightbox keyname"
14464
- msgstr "Klíč Lightboxu"
14465
-
14466
- #: wppa-settings-autosave.php:7960
14467
- msgid "The identifier of lightbox."
14468
- msgstr "Identifikátor pro lightbox."
14469
-
14470
- #: wppa-settings-autosave.php:7961
14471
- msgid ""
14472
- "If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
14473
- "lbox-id here."
14474
- msgstr ""
14475
- "Pokud využíváte plugin, který používá rel=\"lbox-id\", můžete do tohoto "
14476
- "pole zadat lbox-id."
14477
-
14478
- #: wppa-settings-autosave.php:7968
14479
- msgid "myCRED / Cube Points: Comment"
14480
- msgstr "myCRED / Cube Points: Komentář"
14481
-
14482
- #: wppa-settings-autosave.php:7969
14483
- msgid "Number of points for a comment"
14484
- msgstr "Počet bodů za komentář"
14485
-
14486
- #: wppa-settings-autosave.php:7970 wppa-settings-autosave.php:7979
14487
- #: wppa-settings-autosave.php:7988
14488
- msgid "This setting requires the plugin myCRED or Cube Points"
14489
- msgstr "Toto nastavení vyžaduje existenci pluginu myCRED nebo Cube Points"
14490
-
14491
- #: wppa-settings-autosave.php:7972
14492
- msgid "points per comment"
14493
- msgstr "bodů za komentář"
14494
-
14495
- #: wppa-settings-autosave.php:7977
14496
- msgid "myCRED / Cube Points: Rating"
14497
- msgstr "myCRED / Cube Points: Hodnocení"
14498
-
14499
- #: wppa-settings-autosave.php:7978
14500
- msgid "Number of points for a rating vote"
14501
- msgstr "Počet bodů za hlasování"
14502
-
14503
- #: wppa-settings-autosave.php:7981
14504
- msgid "points per vote"
14505
- msgstr "bodů za hlas"
14506
-
14507
- #: wppa-settings-autosave.php:7986
14508
- msgid "myCRED / Cube Points: Upload"
14509
- msgstr "myCRED / Cube Points: Nahrávání"
14510
-
14511
- #: wppa-settings-autosave.php:7987
14512
- msgid "Number of points for a successfull frontend upload"
14513
- msgstr "Počet bodů za úspěšné nahrávání z frontendu"
14514
-
14515
- #: wppa-settings-autosave.php:7990
14516
- msgid "points per upload"
14517
- msgstr "bodů za nahrávku "
14518
-
14519
- #: wppa-settings-autosave.php:7995
14520
- msgid "Use SCABN"
14521
- msgstr "Používat SCABN"
14522
-
14523
- #: wppa-settings-autosave.php:7996
14524
- msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
14525
- msgstr "Používat WPPA rozhraní k pluginu Simple Cart & Buy Now."
14526
-
14527
- #: wppa-settings-autosave.php:7997
14528
- msgid ""
14529
- "If checked, the shortcode to use for the \"add to cart\" button in photo "
14530
- "descriptions is [cart ...]"
14531
- msgstr ""
14532
- "Je-li tato položka zaškrtnuta, můžete pro použití tlačítka \"Vložit do košíku"
14533
- "\" v popisu fotografií použít krátký kód [cart ...]"
14534
-
14535
- #: wppa-settings-autosave.php:7998
14536
- msgid ""
14537
- "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
14538
- msgstr ""
14539
- "na rozdíl od kódu [scabn ...] pro původní scabn tlačítko \"Vložit do košíku"
14540
- "\"."
14541
-
14542
- #: wppa-settings-autosave.php:7999
14543
- msgid "The shortcode for the check-out page is still [scabn]"
14544
- msgstr "Krátký kód pro stránku K pokladně je stále [scabn]"
14545
-
14546
- #: wppa-settings-autosave.php:8000
14547
- msgid ""
14548
- "The arguments are the same, the defaults are: name = photoname, price = 0.01."
14549
- msgstr ""
14550
- "Argumenty zůstávají stejné, výchozí hodnoty jsou: name = photoname, price = "
14551
- "0.01."
14552
-
14553
- #: wppa-settings-autosave.php:8001
14554
- msgid ""
14555
- "Supplying the price should be sufficient; supply a name only when it differs "
14556
- "from the photo name."
14557
- msgstr ""
14558
- "Nastavení ceny by měla být dostatečné; název zadávejte pouze tehdy, liší-li "
14559
- "se od názvu fotografií."
14560
-
14561
- #: wppa-settings-autosave.php:8002
14562
- msgid "This shortcode handler will also work with Ajax enabled."
14563
- msgstr "Zpracování krátkého kódu funguje i s povoleným AJAXem."
14564
-
14565
- #: wppa-settings-autosave.php:8003
14566
- msgid ""
14567
- "Using this interface makes sure that the item urls and callback action urls "
14568
- "are correct."
14569
- msgstr ""
14570
- "Před použitím tohoto rozhraní se ujistěte, že URL položek a URL vratné akce "
14571
- "jsou správné."
14572
-
14573
- #: wppa-settings-autosave.php:8010
14574
- msgid "Use CM Tooltip Glossary"
14575
- msgstr "Použít slovník CM Tooltip"
14576
-
14577
- #: wppa-settings-autosave.php:8011
14578
- msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
14579
- msgstr "V popisu fotografií a alb použít plugin CM Tooltip Glossary."
14580
-
14581
- #: wppa-settings-autosave.php:8012
14582
- msgid ""
14583
- "You MUST set Table IV-A13: Defer javascript, also if you do not want this "
14584
- "plugin to act on album and photo descriptions!"
14585
- msgstr ""
14586
- "JE NUTNÉ nastavit položku A13 v Tabulce IV: Odložit javascript, i tehdy, "
14587
- "nechcete-li aby tento plugin zasahoval do popisu alb a fotografií!"
14588
-
14589
- #: wppa-settings-autosave.php:8020
14590
- msgid "External services related settings and actions."
14591
- msgstr "Nastavení a akce související s externími službami."
14592
-
14593
- #: wppa-settings-autosave.php:8022
14594
- msgid "QR Code widget size"
14595
- msgstr "Velikost widgetu QR Code"
14596
-
14597
- #: wppa-settings-autosave.php:8023
14598
- msgid "The size of the QR code display."
14599
- msgstr "Velikost zobrazení QR kódu."
14600
-
14601
- #: wppa-settings-autosave.php:8031
14602
- msgid "QR color"
14603
- msgstr "Barva QR kódu"
14604
-
14605
- #: wppa-settings-autosave.php:8032
14606
- msgid "The display color of the qr code (dark)"
14607
- msgstr "Barva QR kódu (tmavá)"
14608
-
14609
- #: wppa-settings-autosave.php:8033
14610
- msgid "This color MUST be given in hexadecimal format!"
14611
- msgstr "Tato barva MUSÍ být zadána v hexadecimálním formátu!"
14612
-
14613
- #: wppa-settings-autosave.php:8040
14614
- msgid "QR background color"
14615
- msgstr "Barva pozadí QR kódu"
14616
-
14617
- #: wppa-settings-autosave.php:8041
14618
- msgid "The background color of the qr code (light)"
14619
- msgstr "Barva pozadí QR kódu (světlá)"
14620
-
14621
- #: wppa-settings-autosave.php:8049
14622
- msgid "CDN Service"
14623
- msgstr "CDN služba"
14624
-
14625
- #: wppa-settings-autosave.php:8050
14626
- msgid "Select a CDN Service you want to use."
14627
- msgstr "Vyberte CDN službu, kterou chcete použít."
14628
-
14629
- #: wppa-settings-autosave.php:8053
14630
- msgid "Cloudinary in maintenance mode"
14631
- msgstr "Cloudinary v režimu údržby"
14632
-
14633
- #: wppa-settings-autosave.php:8063
14634
- msgid "Cloud name"
14635
- msgstr "Název Cloudu"
14636
-
14637
- #: wppa-settings-autosave.php:8072
14638
- msgid "API key"
14639
- msgstr "Klíč API"
14640
-
14641
- #: wppa-settings-autosave.php:8081
14642
- msgid "API secret"
14643
- msgstr "Tajný klíč API"
14644
-
14645
- #: wppa-settings-autosave.php:8090
14646
- msgid "Delete all"
14647
- msgstr "Smazat vše"
14648
-
14649
- #: wppa-settings-autosave.php:8091
14650
- msgid "Deletes them all !!!"
14651
- msgstr "Smaže všechny!!!"
14652
-
14653
- #: wppa-settings-autosave.php:8099
14654
- msgid "Delete derived images"
14655
- msgstr "Smazat odvozené snímky"
14656
-
14657
- #: wppa-settings-autosave.php:8100
14658
- msgid "Deletes all derived images !!!"
14659
- msgstr "Smaže všechny odvozené snímky!!!"
14660
-
14661
- #: wppa-settings-autosave.php:8108
14662
- msgid "Max lifetime"
14663
- msgstr "Max životnost"
14664
-
14665
- #: wppa-settings-autosave.php:8109
14666
- msgid "Old images from local server, new images from Cloudinary."
14667
- msgstr "Staré snímky z místního serveru, nové snímky z Cloudinary."
14668
-
14669
- #: wppa-settings-autosave.php:8110
14670
- msgid ""
14671
- "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
14672
- msgstr ""
14673
- "Není-li nastaveno Navždy: musíte pravidelně spouštět položku B15 v Tabulce "
14674
- "VIII."
14675
-
14676
- #: wppa-settings-autosave.php:8112
14677
- msgid "Forever"
14678
- msgstr "Navždy"
14679
-
14680
- #: wppa-settings-autosave.php:8116
14681
- msgid "Two months"
14682
- msgstr "Dva měsíce"
14683
-
14684
- #: wppa-settings-autosave.php:8117
14685
- msgid "Three months"
14686
- msgstr "Tři měsíce"
14687
-
14688
- #: wppa-settings-autosave.php:8118
14689
- msgid "Six months"
14690
- msgstr "Šest měsíců"
14691
-
14692
- #: wppa-settings-autosave.php:8119
14693
- msgid "Nine months"
14694
- msgstr "Devět měsíců"
14695
-
14696
- #: wppa-settings-autosave.php:8120
14697
- msgid "One year"
14698
- msgstr "Jeden rok"
14699
-
14700
- #: wppa-settings-autosave.php:8121
14701
- msgid "18 months"
14702
- msgstr "18 měsíců"
14703
-
14704
- #: wppa-settings-autosave.php:8122
14705
- msgid "Two years"
14706
- msgstr "Dva roky"
14707
-
14708
- #: wppa-settings-autosave.php:8142
14709
- msgid "Cloudinary usage"
14710
- msgstr "Použití Cloudinary"
14711
-
14712
- #: wppa-settings-autosave.php:8178
14713
- msgid "Cloudinary usage data not available"
14714
- msgstr "Použití dat z Cloudinary není dostupné"
14715
-
14716
- #: wppa-settings-autosave.php:8182
14717
- msgid "Cloudinary routines not installed."
14718
- msgstr "Rutiny Cloudinary nejsou nainstalovány."
14719
-
14720
- #: wppa-settings-autosave.php:8193
14721
- msgid "Cloudinary"
14722
- msgstr "Cloudinary"
14723
-
14724
- #: wppa-settings-autosave.php:8194
14725
- msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
14726
- msgstr "<span style=\"color:red;\">Vyžaduje PHP alespoň ve verzi 5.3</span>"
14727
-
14728
- #: wppa-settings-autosave.php:8203
14729
- msgid "GPX Implementation"
14730
- msgstr "Implementace GPX"
14731
-
14732
- #: wppa-settings-autosave.php:8204
14733
- msgid "The way the maps are produced."
14734
- msgstr "Způsob, jakým jsou mapy zapracovány."
14735
-
14736
- #: wppa-settings-autosave.php:8205
14737
- msgid "Select the way the maps are produced."
14738
- msgstr "Zvolte způsob, jakým jsou mapy zapracovány do systému."
14739
-
14740
- #: wppa-settings-autosave.php:8206
14741
- msgid ""
14742
- "When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
14743
- msgstr ""
14744
- "Pokud používáte plugin Google Maps GPX viewer, nemůžete používat AJAX "
14745
- "(Tabulka IV - A1)"
14746
-
14747
- #: wppa-settings-autosave.php:8207
14748
- msgid ""
14749
- "When using WPPA+ Embedded code, you can use Ajax, but there are less display "
14750
- "options."
14751
- msgstr ""
14752
- "Pokud využíváte Vložený kód WPPA+, můžete AJAX využívat, ale máte méně "
14753
- "možností zobrazení."
14754
-
14755
- #: wppa-settings-autosave.php:8209
14756
- msgid "WPPA+ Embedded code"
14757
- msgstr "WPPA+ Vložený kód"
14758
-
14759
- #: wppa-settings-autosave.php:8209
14760
- msgid "Google maps GPX viewer plugin"
14761
- msgstr "Plugin Google maps GPX viewer"
14762
-
14763
- #: wppa-settings-autosave.php:8217
14764
- msgid "Map height"
14765
- msgstr "Výška mapy"
14766
-
14767
- #: wppa-settings-autosave.php:8218
14768
- msgid "The height of the map display."
14769
- msgstr "Výška zobrazení mapy."
14770
-
14771
- #: wppa-settings-autosave.php:8226
14772
- msgid "Google maps API key"
14773
- msgstr "API klíč Google maps"
14774
-
14775
- #: wppa-settings-autosave.php:8227
14776
- msgid "Enter your Google maps api key here if you have one."
14777
- msgstr "Zadejte váš klíč do Google maps (pokud jej máte)."
14778
-
14779
- #: wppa-settings-autosave.php:8235
14780
- msgid "GPX Shortcode"
14781
- msgstr "Krátký kód GPX"
14782
-
14783
- #: wppa-settings-autosave.php:8236
14784
- msgid "The shortcode to be used for the gpx feature."
14785
- msgstr "Krátký kód, který bude použit pro vlastnost GPX."
14786
-
14787
- #: wppa-settings-autosave.php:8237
14788
- msgid ""
14789
- "Enter / modify the shortcode to be generated for the gpx plugin. It must "
14790
- "contain w#lat and w#lon as placeholders for the lattitude and longitude."
14791
- msgstr ""
14792
- "Vložte / upravte krátký kód, který má být vygenerován pro plugin GPX. Musí "
14793
- "obsahovat zástupné výrazy w#lat a w#lon pro zeměpisnou délku a šířku."
14794
-
14795
- #: wppa-settings-autosave.php:8238
14796
- msgid "This item is required for using Google maps GPX viewer plugin only"
14797
- msgstr "Tyto položky jsou nezbytné pouze pro plugin Google maps GPX viewer"
14798
-
14799
- #: wppa-settings-autosave.php:8245
14800
- msgid "Fotomoto"
14801
- msgstr "Fotomoto"
14802
-
14803
- #: wppa-settings-autosave.php:8246
14804
- msgid "Yes, we use Fotomoto on this site. Read the help text!"
14805
- msgstr "Ano, v této síti používáme Fotomoto. Přečtěte si text nápovědy!"
14806
-
14807
- #: wppa-settings-autosave.php:8247
14808
- msgid "In order to function properly:"
14809
- msgstr "Aby správně fungoval:"
14810
-
14811
- #: wppa-settings-autosave.php:8248
14812
- msgid "1. Get yourself a Fotomoto account."
14813
- msgstr "1. Získejte účet Fotomoto."
14814
-
14815
- #: wppa-settings-autosave.php:8249
14816
- msgid ""
14817
- "2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
14818
- "the \"Use API Mode:\" checkbox."
14819
- msgstr ""
14820
- "2. Nainstalujte plugin Fotomoto, zadejte \"Fotomoto Site Key:\" a zaškrtněte "
14821
- "položku\"Use API Mode:\"."
14822
-
14823
- #: wppa-settings-autosave.php:8250
14824
- msgid "Note: Do NOT Disable the Custom box in Table II-B14."
14825
- msgstr "Poznámka: NEZAKAZUJTE uživatelský panel v položce B14 Tabulky II."
14826
-
14827
- #: wppa-settings-autosave.php:8251
14828
- msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
14829
- msgstr ""
14830
- "NEODSTRAŇUJTE text w#fotomoto z textu uživatelského panelu ( Tabulka II - "
14831
- "B15 )."
14832
-
14833
- #: wppa-settings-autosave.php:8259
14834
- msgid "Fotomoto fontsize"
14835
- msgstr "Velikost fontu Fotomoto"
14836
-
14837
- #: wppa-settings-autosave.php:8260
14838
- msgid "Fontsize for the Fotomoto toolbar."
14839
- msgstr "Velikost fontu v nástrojové liště Fotomoto."
14840
-
14841
- #: wppa-settings-autosave.php:8261
14842
- msgid ""
14843
- "If you set it here, it overrules a possible setting for font-size in ."
14844
- "FotomotoToolbarClass on the Fotomoto dashboard."
14845
- msgstr ""
14846
- "Pokud velikost nastavíte zde, přepíše případné nastavení velikosti fontu ."
14847
- "FotomotoToolbarClass na nástěnce Fotomoto."
14848
-
14849
- #: wppa-settings-autosave.php:8269
14850
- msgid "Hide toolbar on running slideshows"
14851
- msgstr "Skrýt nástrojovou lištu při běžící prezentaci"
14852
-
14853
- #: wppa-settings-autosave.php:8270
14854
- msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
14855
- msgstr ""
14856
- "Jakmile zastavíte prezentaci, nástrojová lišta Fotomoto se opět objeví."
14857
-
14858
- #: wppa-settings-autosave.php:8277
14859
- msgid "Fotomoto minwidth"
14860
- msgstr "Min šířka Fototmoto"
14861
-
14862
- #: wppa-settings-autosave.php:8278
14863
- msgid "Minimum width to display Fotomoto toolbar."
14864
- msgstr "Minimální šířka zobrazení nástrojové lišty Fotomoto."
14865
-
14866
- #: wppa-settings-autosave.php:8279
14867
- msgid ""
14868
- "The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
14869
- msgstr ""
14870
- "Na užších prezentacích bude zobrazení nástrojové lišty Fotomoto potlačeno."
14871
-
14872
- #: wppa-settings-autosave.php:8304
14873
- msgid "Table X:"
14874
- msgstr "Tabulka X:"
14875
-
14876
- #: wppa-settings-autosave.php:8304
14877
- msgid "IPTC Configuration:"
14878
- msgstr "Konfigurace IPTC:"
14879
-
14880
- #: wppa-settings-autosave.php:8305
14881
- msgid "This table defines the IPTC configuration"
14882
- msgstr "Tato tabulka definuje konfiguraci IPTC"
14883
-
14884
- #: wppa-settings-autosave.php:8336 wppa-settings-autosave.php:8404
14885
- msgid "Display"
14886
- msgstr "Zobrazit"
14887
-
14888
- #: wppa-settings-autosave.php:8336 wppa-settings-autosave.php:8404
14889
- msgid "Hide"
14890
- msgstr "Skrýt"
14891
-
14892
- #: wppa-settings-autosave.php:8336 wppa-settings-autosave.php:8404
14893
- msgid "Optional"
14894
- msgstr "Volitelné"
14895
-
14896
- #: wppa-settings-autosave.php:8366
14897
- msgid "Table XI:"
14898
- msgstr "Tabulka XI:"
14899
-
14900
- #: wppa-settings-autosave.php:8366
14901
- msgid "EXIF Configuration:"
14902
- msgstr "Konfigurace EXIF:"
14903
-
14904
- #: wppa-settings-autosave.php:8367
14905
- msgid "This table defines the EXIF configuration"
14906
- msgstr "Tato tabulka definuje konfiguraci EXIF"
14907
-
14908
- #: wppa-settings-autosave.php:8390
14909
- msgid ""
14910
- "Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
14911
- "enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to "
14912
- "add <b>'--enable-exif'</b> to the php <b>Configure Command</b>."
14913
- msgstr ""
14914
- "Funkce exif_read_data() neexistuje. To znamená, že <b>EXIF</b> není "
14915
- "povoleno. Pokud chcete používat <b>EXIF</b> data, požádejte vašeho "
14916
- "providera, aby do <b>Konfiguračního příkazu</b> PHP přidal <b>'--enable-"
14917
- "exif'</b>."
14918
-
14919
- #: wppa-settings-autosave.php:8434
14920
- msgid "Table XII:"
14921
- msgstr "Tabulka XII:"
14922
-
14923
- #: wppa-settings-autosave.php:8434
14924
- msgid "WPPA+ and PHP Configuration:"
14925
- msgstr "Konfigurace WPPA+ a PHP:"
14926
-
14927
- #: wppa-settings-autosave.php:8435
14928
- msgid ""
14929
- "This table lists all WPPA+ constants and PHP server configuration parameters "
14930
- "and is read only"
14931
- msgstr ""
14932
- "Tato tabulka vypisuje všechny konstanty WPPA+ a konfigurační parametry PHP "
14933
- "serveru. Je pouze pro čtení"
14934
-
14935
- #: wppa-settings-autosave.php:8450
14936
- msgid "Value"
14937
- msgstr "Hodnota"
14938
-
14939
- #: wppa-settings-autosave.php:8455
14940
- msgid "Albums db table name."
14941
- msgstr "Název databázové tabulky Alb"
14942
-
14943
- #: wppa-settings-autosave.php:8460
14944
- msgid "Photos db table name."
14945
- msgstr "Název databázové tabulky Fotografií"
14946
-
14947
- #: wppa-settings-autosave.php:8465
14948
- msgid "Rating db table name."
14949
- msgstr "Název databázové tabulky Hodnocení"
14950
-
14951
- #: wppa-settings-autosave.php:8470
14952
- msgid "Comments db table name."
14953
- msgstr "Název databázové tabulky Komentářů"
14954
-
14955
- #: wppa-settings-autosave.php:8475
14956
- msgid "IPTC db table name."
14957
- msgstr "Název databázové tabulky IPTC"
14958
-
14959
- #: wppa-settings-autosave.php:8480
14960
- msgid "EXIF db table name."
14961
- msgstr "Název databázové tabulky EXIF"
14962
-
14963
- #: wppa-settings-autosave.php:8485
14964
- msgid "Index db table name."
14965
- msgstr "Název databázové tabulky Indexu"
14966
-
14967
- #: wppa-settings-autosave.php:8490
14968
- msgid "Plugins main file name."
14969
- msgstr "Název hlavního souboru pluginu"
14970
-
14971
- #: wppa-settings-autosave.php:8495
14972
- msgid "Path to plugins directory."
14973
- msgstr "Cesta k adresáři pluginu"
14974
-
14975
- #: wppa-settings-autosave.php:8500
14976
- msgid "Plugins directory name."
14977
- msgstr "Jméno adresáře pluginu"
14978
-
14979
- #: wppa-settings-autosave.php:8505
14980
- msgid "Plugins directory url."
14981
- msgstr "URL adresáře pluginu"
14982
-
14983
- #: wppa-settings-autosave.php:8510
14984
- msgid "The relative upload directory."
14985
- msgstr "Relativní cesta k adresáři pro nahrávání"
14986
-
14987
- #: wppa-settings-autosave.php:8515
14988
- msgid "The upload directory path."
14989
- msgstr "Cesta k adresáři pro nahrávání"
14990
-
14991
- #: wppa-settings-autosave.php:8520
14992
- msgid "The upload directory url."
14993
- msgstr "URL adresáře pro nahrávání"
14994
-
14995
- #: wppa-settings-autosave.php:8525
14996
- msgid "The relative depot directory."
14997
- msgstr "Relativní cesta k adresáři úložiště"
14998
-
14999
- #: wppa-settings-autosave.php:8530
15000
- msgid "The depot directory path."
15001
- msgstr "Cesta k adresáři úložiště"
15002
-
15003
- #: wppa-settings-autosave.php:8535
15004
- msgid "The depot directory url."
15005
- msgstr "URL adresáře úložiště"
15006
-
15007
- #: wppa-settings-autosave.php:8540
15008
- msgid "The path to wp-content."
15009
- msgstr "Cesta k adresáři wp-content"
15010
-
15011
- #: wppa-settings-autosave.php:8545
15012
- msgid "WP Base upload dir."
15013
- msgstr "Základní adresář WP pro nahrávání"
15014
-
15015
- #: wppa-settings-autosave.php:8551
15016
- msgid "ABSPATH windows proof"
15017
- msgstr "Absolutní cesta ABSPATH"
15018
-
15019
- #: wppa-settings-autosave.php:8563
15020
- #, php-format
15021
- msgid "<br />Memory used on this page: %6.2f Mb."
15022
- msgstr "<br />Paměť využívaná touto stránkou: %6.2f Mb."
15023
-
15024
- #: wppa-settings-autosave.php:8564
15025
- #, php-format
15026
- msgid "<br />There are %d settings and %d runtime parameters."
15027
- msgstr "<br />Je zde %d nastavení a %d runtime parametrů."
15028
-
15029
- #: wppa-settings-autosave.php:8641
15030
- msgid "The default for this setting is:"
15031
- msgstr "Výchozí hodnota pro toto nastavení je:"
15032
-
15033
- #: wppa-settings-autosave.php:8650
15034
- msgid "Click for help"
15035
- msgstr "Klikněte pro nápovědu"
15036
-
15037
- #: wppa-settings-autosave.php:8694 wppa-settings-autosave.php:8711
15038
- #: wppa-settings-autosave.php:8740 wppa-settings-autosave.php:8763
15039
- #: wppa-settings-autosave.php:8793 wppa-settings-autosave.php:8820
15040
- #: wppa-settings-autosave.php:8846 wppa-settings-autosave.php:8894
15041
- msgid "Slug ="
15042
- msgstr "Slug ="
15043
-
15044
- #: wppa-settings-autosave.php:8763 wppa-settings-autosave.php:8793
15045
- #: wppa-settings-autosave.php:8820 wppa-settings-autosave.php:8846
15046
- msgid "Values = yes, no"
15047
- msgstr "Hodnoty = ano, ne"
15048
-
15049
- #: wppa-settings-autosave.php:8792 wppa-settings-autosave.php:8818
15050
- #: wppa-settings-autosave.php:8845
15051
- msgid "Warning!"
15052
- msgstr "Varování!"
15053
-
15054
- #: wppa-settings-autosave.php:8819 wppa-settings-autosave.php:8845
15055
- msgid "Please read the help"
15056
- msgstr "Prosím, přečtěte si nápovědu"
15057
-
15058
- #: wppa-settings-autosave.php:8894
15059
- msgid "Values = "
15060
- msgstr "Hodnoty ="
15061
-
15062
- #: wppa-settings-autosave.php:8969
15063
- msgid "Checked"
15064
- msgstr "Zaškrtnuto"
15065
-
15066
- #: wppa-settings-autosave.php:8970
15067
- msgid "Unchecked"
15068
- msgstr "Nezaškrtnuto"
15069
-
15070
- #: wppa-settings-autosave.php:8975
15071
- msgid "the photo specific link."
15072
- msgstr "specifický odkaz fotografie."
15073
-
15074
- #: wppa-settings-autosave.php:9007
15075
- msgid "Show!"
15076
- msgstr "Zobraz!"
15077
-
15078
- #: wppa-settings-autosave.php:9027
15079
- msgid "Not done yet"
15080
- msgstr "Ještě nebylo provedeno"
15081
-
15082
- #: wppa-settings-autosave.php:9034
15083
- msgid "Start!"
15084
- msgstr "Start"
15085
-
15086
- #: wppa-settings-autosave.php:9039
15087
- msgid "Locked!"
15088
- msgstr "Zamčeno!"
15089
-
15090
- #: wppa-settings-autosave.php:9070
15091
- msgid ""
15092
- "You can not have popup and lightbox on thumbnails at the same time. Uncheck "
15093
- "either Table IV-C8 or choose a different linktype in Table VI-2."
15094
- msgstr ""
15095
- "U miniatur nemůžete současně využívat vyskakování a Lightbox. Zrušte buď "
15096
- "volbu C8 v tabulce IV nebo vyberte jiný typ odkazu v položce 2 Tabulky VI."
15097
-
15098
- #: wppa-settings-autosave.php:9073
15099
- #, php-format
15100
- msgid ""
15101
- "It is important that you select a page that contains at least %%wppa%% or "
15102
- "[wppa][/wppa]."
15103
- msgstr ""
15104
- "Je důležité, abyste vybrali stránku, která obsahuje aspoň kód %%wppa%% nebo "
15105
- "[wppa][/wppa]."
15106
-
15107
- #: wppa-settings-autosave.php:9074
15108
- msgid ""
15109
- "If you ommit this, the link will not work at all or simply refresh the "
15110
- "(home)page."
15111
- msgstr ""
15112
- "Pokud toto vynecháte, odkaz nebude buď fungovat vůbec, nebo dojde pouze k "
15113
- "obnově (domácí) stránky."
15114
-
15115
- #: wppa-setup.php:442
15116
- msgid "IMPORTANT UPGRADE NOTICE"
15117
- msgstr "DŮLEŽITÉ OZNÁMENÍ O AKTUALIZACI"
15118
-
15119
- #: wppa-setup.php:443
15120
- msgid ""
15121
- "Please CHECK your customized WPPA-STYLE.CSS file against the newly supplied "
15122
- "one. You may wish to add or modify some attributes. Be aware of the fact "
15123
- "that most settings can now be set in the admin settings page."
15124
- msgstr ""
15125
- "ZKONTROLUJTE váš upravený soubor WPPA-STYLE.CSS s nově dodaným. Možná budete "
15126
- "chtít upravit, nebo doplnit některé atributy. Uvědomte si, že většinu "
15127
- "nastavení lze nyní provést z nastavení na stránkách administrace."
15128
-
15129
- #: wppa-setup.php:444
15130
- msgid ""
15131
- "Please REPLACE your customized WPPA-THEME.PHP file by the newly supplied "
15132
- "one, or just remove it from your theme directory. You may modify it later if "
15133
- "you wish. Your current customized version is NOT compatible with this "
15134
- "version of the plugin software."
15135
- msgstr ""
15136
- "NAHRAĎTE upravený soubor WPPA-THEME.PHP nově poskytnutým, nebo jej jen "
15137
- "odstraňte s vašeho adresáře šablony tématu. Pokud si budete přát, můžete jej "
15138
- "později upravit. Vaše současná upravená verze není kompatibilní s touto "
15139
- "verzí pluginu."
15140
-
15141
- #: wppa-setup.php:470
15142
- #, php-format
15143
- msgid "WPPA+ successfully updated in multi site mode to db version %s."
15144
- msgstr "WPPA+ bylo úspěšně aktualizováno v režimu multi sítě na DB verze %s."
15145
-
15146
- #: wppa-setup.php:473
15147
- #, php-format
15148
- msgid "WPPA+ successfully updated in single site mode to db version %s."
15149
- msgstr "WPPA+ bylo úspěšně aktualizováno v režimu single sítě na DB verze %s."
15150
-
15151
- #: wppa-setup.php:478
15152
- msgid "An error occurred during update"
15153
- msgstr "Při aktualizaci došlo k chybě"
15154
-
15155
- #: wppa-setup.php:777
15156
- msgid ""
15157
- "<span style=\"color:red\" >Warning: Do not upload copyrighted material!</"
15158
- "span>"
15159
- msgstr ""
15160
- "<span style=\"color:red\" >Varování: Nenahrávejte materiály chráněné "
15161
- "autorským zákonem!</span>"
15162
-
15163
- #: wppa-setup.php:786 wppa-setup.php:790 wppa-setup.php:794
15164
- msgid "Select tags:"
15165
- msgstr "Vyberte štítky:"
15166
-
15167
- #: wppa-setup.php:797
15168
- msgid "Enter new tags:"
15169
- msgstr "Zadejte nové štítky:"
15170
-
15171
- #: wppa-setup.php:947
15172
- msgid "Vote for me!"
15173
- msgstr "Hlasujte pro mě!"
15174
-
15175
- #: wppa-setup.php:948
15176
- msgid "Voted for me"
15177
- msgstr "Hlasováno pro mne"
15178
-
15179
- #: wppa-setup.php:1269
15180
- msgid "NEW"
15181
- msgstr ""
15182
-
15183
- #: wppa-setup.php:1271
15184
- msgid "MODIFIED"
15185
- msgstr ""
15186
-
15187
- #: wppa-setup.php:1318
15188
- msgid "Search in current section"
15189
- msgstr "Hledat v aktuální sekci"
15190
-
15191
- #: wppa-setup.php:1319
15192
- msgid "Search in current results"
15193
- msgstr "Hledat v aktuálních výsledcích"
15194
-
15195
- #: wppa-setup.php:1388
15196
- msgid "Type your custom url here"
15197
- msgstr "Sem zadejte vaše uživatelské URL"
15198
-
15199
- #: wppa-setup.php:1389
15200
- msgid "Type the title here"
15201
- msgstr "Sem zadejte Nadpis"
15202
-
15203
- #: wppa-setup.php:1401 wppa-topten-widget.php:13 wppa-topten-widget.php:47
15204
- #: wppa-topten-widget.php:192
15205
- msgid "Top Ten Photos"
15206
- msgstr "Nejlépe hodnocené fotografie"
15207
-
15208
- #: wppa-setup.php:1404 wppa-thumbnail-widget.php:13
15209
- #: wppa-thumbnail-widget.php:166
15210
- msgid "Thumbnail Photos"
15211
- msgstr "Miniatury fotografií"
15212
-
15213
- #: wppa-setup.php:1407
15214
- msgid "Search photos"
15215
- msgstr "Hledat fotografie"
15216
-
15217
- #: wppa-setup.php:1450
15218
- msgid ""
15219
- "The uploads directory does not exist, please do a regular WP upload first."
15220
- msgstr ""
15221
- "Adresář pro nahrávání neexistuje, proveďte prosím nejdříve standardní "
15222
- "nahrání přes WP."
15223
-
15224
- #: wppa-setup.php:1454
15225
- msgid "Successfully created uploads directory."
15226
- msgstr "Adresář pro nahrávky byl úspěšně vytvořen"
15227
-
15228
- #: wppa-setup.php:1465
15229
- msgid "Could not create the wppa directory."
15230
- msgstr "Nelze vytvořit adresář wppa."
15231
-
15232
- #: wppa-setup.php:1469
15233
- msgid "Successfully created wppa directory."
15234
- msgstr "WPPA adresář byl úspěšně vytvořen."
15235
-
15236
- #: wppa-setup.php:1479
15237
- msgid "Could not create the wppa thumbs directory."
15238
- msgstr "Nelze vytvořit adresář wppa miniatur."
15239
-
15240
- #: wppa-setup.php:1483
15241
- msgid "Successfully created wppa thumbs directory."
15242
- msgstr "Adresář WPPA miniatur byl úspěšně vytvořen."
15243
-
15244
- #: wppa-setup.php:1493
15245
- msgid "Could not create the wppa watermarks directory."
15246
- msgstr "Nelze vytvořit adresář pro vodoznaky WPPA."
15247
-
15248
- #: wppa-setup.php:1497
15249
- msgid "Successfully created wppa watermarks directory."
15250
- msgstr "Adresář WPPA vodoznaků byl úspěšně vytvořen."
15251
-
15252
- #: wppa-setup.php:1507
15253
- msgid "Could not create the wppa fonts directory."
15254
- msgstr "Nelze vytvořit adresář pro fonty WPPA."
15255
-
15256
- #: wppa-setup.php:1511
15257
- msgid "Successfully created wppa fonts directory."
15258
- msgstr "Adresář WPPA fontů byl úspěšně vytvořen."
15259
-
15260
- #: wppa-setup.php:1523
15261
- msgid "Unable to create depot directory."
15262
- msgstr ""
15263
- "Nelze vytvořit adresář \n"
15264
- "úložiště."
15265
-
15266
- #: wppa-setup.php:1527
15267
- msgid "Successfully created wppa depot directory."
15268
- msgstr "Adresář WPPA úložiště byl úspěšně vytvořen."
15269
-
15270
- #: wppa-setup.php:1538
15271
- msgid "Unable to create user depot directory"
15272
- msgstr "Nelze vytvořit adresář uživatelského úložiště."
15273
-
15274
- #: wppa-setup.php:1542
15275
- msgid "Successfully created wppa user depot directory."
15276
- msgstr "Adresář WPPA uživatelského úložiště byl úspěšně vytvořen."
15277
-
15278
- #: wppa-setup.php:1552
15279
- msgid "Unable to create temp directory"
15280
- msgstr "Nelze vytvořit dočasný adresář"
15281
-
15282
- #: wppa-setup.php:1556
15283
- msgid "Successfully created temp directory."
15284
- msgstr "Dočasný adresář byl úspěšně vytvořen."
15285
-
15286
- #: wppa-setup.php:1564
15287
- #, php-format
15288
- msgid ""
15289
- "Ask your administrator to give you more rights, or create <b>%s</b> manually "
15290
- "using an FTP program."
15291
- msgstr ""
15292
- "Požádejte administrátora, aby vám dal vyšší oprávnění, nebo vytvořte <b>%s</"
15293
- "b> ručně pomocí programu FTP."
15294
-
15295
- #: wppa-slideshow-widget.php:17
15296
- msgid "WPPA+ Sidebar Slideshow"
15297
- msgstr "WPPA+ Prezentace v postranním panelu"
15298
-
15299
- #: wppa-slideshow-widget.php:18 wppa-slideshow-widget.php:162
15300
- msgid "Sidebar Slideshow"
15301
- msgstr "Prezentace v postranním panelu"
15302
-
15303
- #: wppa-slideshow-widget.php:71
15304
- msgid "Widget landing page"
15305
- msgstr "Cílová stránka widgetu"
15306
-
15307
- #: wppa-slideshow-widget.php:124
15308
- msgid "No album defined yet."
15309
- msgstr "Žádné album ještě není definované."
15310
-
15311
- #: wppa-slideshow-widget.php:200
15312
- msgid ""
15313
- "Enter the width and optionally the height of the area wherein the slides "
15314
- "will appear. If you specify a 0 for the height, it will be calculated. The "
15315
- "value for the height will be ignored if you set the vertical alignment to "
15316
- "'fit'."
15317
- msgstr ""
15318
- "Zadejte šířku a případně i výšku oblasti, ve které budou snímky zobrazovány. "
15319
- "Pokud pro výšku zadáte 0, bude tato hodnota vypočtena. Hodnota pro výšku "
15320
- "bude ignorována v případě že nastavíte svislé zarovnání na 'vyplnit'."
15321
-
15322
- #: wppa-slideshow-widget.php:201 wppa-slideshow-widget.php:202
15323
- #: wppa-widget-admin.php:72
15324
- msgid "pixels."
15325
- msgstr "px."
15326
-
15327
- #: wppa-slideshow-widget.php:204
15328
- msgid "Portrait only:"
15329
- msgstr "Pouze na výšku:"
15330
-
15331
- #: wppa-slideshow-widget.php:208
15332
- msgid ""
15333
- "Set to 'yes' if there are only portrait images in the album and you want the "
15334
- "photos to fill the full width of the widget.<br/>Set to 'no' otherwise."
15335
- msgstr ""
15336
- "Nastavte na 'Ano', pokud v jsou albu pouze portréty a požadujete, aby "
15337
- "fotografie vyplnily celou šířku widgetu.<br>V ostatních případech nastavte "
15338
- "na 'Ne'."
15339
-
15340
- #: wppa-slideshow-widget.php:209
15341
- msgid "If set to 'yes', Vertical alignment will be forced to 'fit'."
15342
- msgstr ""
15343
- "Pokud je nastaveno na 'ano', bude svislé zarovnání nastaveno na 'vyplnit'."
15344
-
15345
- #: wppa-slideshow-widget.php:212
15346
- msgid "Vertical alignment:"
15347
- msgstr "Svislé zarovnání:"
15348
-
15349
- #: wppa-slideshow-widget.php:218
15350
- msgid "Set the desired vertical alignment method."
15351
- msgstr "Nastavte požadovanou metodu pro svislé zarovnání."
15352
-
15353
- #: wppa-slideshow-widget.php:220
15354
- msgid "Slideshow timeout:"
15355
- msgstr "Časový limit prezentace:"
15356
-
15357
- #: wppa-slideshow-widget.php:220
15358
- msgid "sec."
15359
- msgstr "sek."
15360
-
15361
- #: wppa-slideshow-widget.php:224
15362
- msgid "Show name:"
15363
- msgstr "Zobrazit název:"
15364
-
15365
- #: wppa-slideshow-widget.php:231
15366
- msgid "Show description:"
15367
- msgstr "Zobrazit popis:"
15368
-
15369
- #: wppa-slideshow-widget.php:238
15370
- msgid "Show filmstrip:"
15371
- msgstr "Zobrazit filmový pás:"
15372
-
15373
- #: wppa-slideshow-widget.php:245
15374
- msgid "Show browsebar:"
15375
- msgstr "Zobrazit lištu procházení:"
15376
-
15377
- #: wppa-slideshow-widget.php:252
15378
- msgid "Show numbar:"
15379
- msgstr "Zobrazit číselnou lištu:"
15380
-
15381
- #: wppa-slideshow-widget.php:259
15382
- msgid "The following text fields support qTranslate"
15383
- msgstr "Následující textová pole podporují qTranslate"
15384
-
15385
- #: wppa-slideshow-widget.php:260
15386
- msgid "Tooltip text:"
15387
- msgstr "Text popisku:"
15388
-
15389
- #: wppa-slideshow-widget.php:261
15390
- msgid "Text above photos:"
15391
- msgstr "Text nad fotografiemi:"
15392
-
15393
- #: wppa-slideshow-widget.php:262
15394
- msgid "Text below photos:"
15395
- msgstr "Text pod fotografiemi:"
15396
-
15397
- #: wppa-slideshow.php:247
15398
- msgid "Paused"
15399
- msgstr "Pozastaveno"
15400
-
15401
- #: wppa-slideshow.php:255
15402
- msgid ""
15403
- "To see the full size images, you need to enable javascript in your browser."
15404
- msgstr ""
15405
- "Pro zobrazení fotografií v plné velikosti musíte ve vašem prohlížeči povolit "
15406
- "JavaScript."
15407
-
15408
- #: wppa-slideshow.php:576
15409
- msgid "Checkout"
15410
- msgstr "K pokladně"
15411
-
15412
- #: wppa-slideshow.php:636
15413
- #, php-format
15414
- msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
15415
- msgstr "Počet hlasů: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
15416
-
15417
- #: wppa-slideshow.php:652 wppa-slideshow.php:795 wppa-slideshow.php:857
15418
- #, php-format
15419
- msgid "You must <a href=\"%s\">login</a> to vote"
15420
- msgstr " Pro hodnocení se musíte <a href=&quot;\"%s\"&quot;>přihlásit</a>."
15421
-
15422
- #: wppa-slideshow.php:655 wppa-slideshow.php:798 wppa-slideshow.php:860
15423
- msgid "You must login to vote"
15424
- msgstr " Pro hodnocení musíte být přihlášeni."
15425
-
15426
- #: wppa-slideshow.php:691
15427
- msgid "very low"
15428
- msgstr "velmi nízké"
15429
-
15430
- #: wppa-slideshow.php:692
15431
- msgid "low"
15432
- msgstr "nízké"
15433
-
15434
- #: wppa-slideshow.php:693
15435
- msgid "average"
15436
- msgstr "průměrné"
15437
-
15438
- #: wppa-slideshow.php:694
15439
- msgid "high"
15440
- msgstr "vysoké"
15441
-
15442
- #: wppa-slideshow.php:695
15443
- msgid "very high"
15444
- msgstr "velmi vysoké"
15445
-
15446
- #: wppa-slideshow.php:742 wppa-slideshow.php:828
15447
- msgid "Click this if you do NOT like this image!"
15448
- msgstr "Klikněte sem, pokud se obrázek NELÍBÍ!"
15449
-
15450
- #: wppa-slideshow.php:750 wppa-slideshow.php:836
15451
- msgid "Are you sure you want to mark this image as inappropriate?"
15452
- msgstr "Opravdu chcete tuto foktu označit jako nevhodnou?"
15453
-
15454
- #: wppa-slideshow.php:758 wppa-slideshow.php:845
15455
- msgid "Number of people who marked this photo as inappropriate"
15456
- msgstr "Mnoho lidí označilo tuto fotku jako nevhodnou."
15457
-
15458
- #: wppa-slideshow.php:852
15459
- msgid "My rating:"
15460
- msgstr "Moje hodnocení"
15461
-
15462
- #: wppa-slideshow.php:944
15463
- msgid "First"
15464
- msgstr "První"
15465
-
15466
- #: wppa-slideshow.php:975
15467
- msgid "Last"
15468
- msgstr "Poslední"
15469
-
15470
- #: wppa-slideshow.php:1175
15471
- #, php-format
15472
- msgid "Photo %s of %s"
15473
- msgstr "Fotografie %s z %s"
15474
-
15475
- #: wppa-slideshow.php:1227
15476
- msgid "Click to start/stop"
15477
- msgstr "Pro Spuštění/zastavení klikněte"
15478
-
15479
- #: wppa-slideshow.php:1239
15480
- msgid "- - - Comments box activated - - -"
15481
- msgstr "--- Box komentářů aktivní ---"
15482
-
15483
- #: wppa-slideshow.php:1263
15484
- msgid "- - - IPTC box activated - - -"
15485
- msgstr "--- IPTC panel aktivní ---"
15486
-
15487
- #: wppa-slideshow.php:1287
15488
- msgid "- - - EXIF box activated - - -"
15489
- msgstr "--- EXIF panel aktivní ---"
15490
-
15491
- #: wppa-statistics.php:27 wppa-upload.php:577 wppa-upload.php:624
15492
- #: wppa-upload.php:670 wppa-upload.php:807 wppa-upload.php:864
15493
- #: wppa-upload.php:921 wppa-upload.php:966
15494
- msgid "There are"
15495
- msgstr "Jsou"
15496
-
15497
- #: wppa-statistics.php:27
15498
- msgid "photo albums. The last album added is"
15499
- msgstr "fotoalba. Poslední přidané album je"
15500
-
15501
- #: wppa-statistics.php:31
15502
- msgid ", a subalbum of"
15503
- msgstr ", subalbum z"
15504
-
15505
- #: wppa-stereo-widget.php:12
15506
- msgid "WPPA+ Stereo settings"
15507
- msgstr "WPPA+ Stereo nastavení"
15508
-
15509
- #: wppa-stereo-widget.php:13
15510
- msgid "3D Settings"
15511
- msgstr "3D Nastavení"
15512
-
15513
- #: wppa-stereo-widget.php:33 wppa-stereo-widget.php:64
15514
- msgid "3D Stereo Settings"
15515
- msgstr "3D Stereo Nastavení"
15516
-
15517
- #: wppa-stereo.php:31
15518
- msgid "Color"
15519
- msgstr "Barva"
15520
-
15521
- #: wppa-stereo.php:32
15522
- msgid "Half color"
15523
- msgstr "Půl barva"
15524
-
15525
- #: wppa-stereo.php:33
15526
- msgid "Gray"
15527
- msgstr "Šedá"
15528
-
15529
- #: wppa-stereo.php:34
15530
- msgid "True anaglyph"
15531
- msgstr "Pravý anaglyph"
15532
-
15533
- #: wppa-stereo.php:35
15534
- msgid "Optimized"
15535
- msgstr "Optimalizovaný"
15536
-
15537
- #: wppa-stereo.php:36
15538
- msgid "Flat"
15539
- msgstr "Plochý"
15540
-
15541
- #: wppa-stereo.php:38
15542
- msgid "Red - Cyan"
15543
- msgstr "Červená - Azurová"
15544
-
15545
- #: wppa-stereo.php:39
15546
- msgid "Green - Magenta"
15547
- msgstr "Zelená - Magenta"
15548
-
15549
- #: wppa-super-view-widget.php:13
15550
- msgid "WPPA+ Selectable display"
15551
- msgstr "WPPA+ Volitelný displej"
15552
-
15553
- #: wppa-super-view-widget.php:77
15554
- msgid "Enable (sub)albums of:"
15555
- msgstr "Povolit (sub)alba z:"
15556
-
15557
- #: wppa-super-view-widget.php:82
15558
- msgid "Sort alphabeticly:"
15559
- msgstr "Řadit abecedně:"
15560
-
15561
- #: wppa-super-view-widget.php:84
15562
- msgid "no, use album sort method"
15563
- msgstr "ne, použít třídící metodu alba"
15564
-
15565
- #: wppa-tagcloud-widget.php:14
15566
- msgid "Photo Tag Cloud"
15567
- msgstr "Cloud štítků fotografií"
15568
-
15569
- #: wppa-thumbnail-widget.php:12
15570
- msgid "WPPA+ Thumbnails"
15571
- msgstr "WPPA+ Miniatury"
15572
-
15573
- #: wppa-thumbnail-widget.php:48
15574
- msgid "Thumbnail photos"
15575
- msgstr "Miniatura fotografie"
15576
-
15577
- #: wppa-thumbnail-widget.php:186
15578
- msgid "Link from the title:"
15579
- msgstr "Odkaz z nadpisu:"
15580
-
15581
- #: wppa-thumbnail-widget.php:187
15582
- msgid "Link Title ( tooltip ):"
15583
- msgstr "Název odkazu (tooltip):"
15584
-
15585
- #: wppa-thumbnail-widget.php:198 wppa-topten-widget.php:234
15586
- #: wppa-upldr-widget.php:179
15587
- msgid "Sort by:"
15588
- msgstr "Seřadit podle:"
15589
-
15590
- #: wppa-thumbnail-widget.php:211
15591
- msgid "Max number:"
15592
- msgstr "Max počet:"
15593
-
15594
- #: wppa-thumbnail-widget.php:225
15595
- msgid "Show photo names <small>under thumbnails only</small>:"
15596
- msgstr "Zobrazit názvy fotografií <small>pouze pod miniatruami</small>:"
15597
-
15598
- #: wppa-thumbnails.php:174 wppa-thumbnails.php:1059 wppa-topten-widget.php:108
15599
- msgid "View the top rated photos"
15600
- msgstr "Zobrazit najlépe hodnocené fotky"
15601
-
15602
- #: wppa-thumbnails.php:635
15603
- msgid "Comments:"
15604
- msgstr "Komentáře:"
15605
-
15606
- #: wppa-thumbnails.php:966
15607
- #, php-format
15608
- msgid "Missing thumbnail image #%s"
15609
- msgstr "Chybějící miniatura snímku #%s"
15610
-
15611
- #: wppa-tinymce-scripts.php:64 wppa-tinymce-shortcodes.php:59
15612
- msgid "No Preview available"
15613
- msgstr "Náhled není k dispozici"
15614
-
15615
- #: wppa-tinymce-scripts.php:80
15616
- msgid "Album Preview"
15617
- msgstr "Náhled alba"
15618
-
15619
- #: wppa-tinymce-scripts.php:80
15620
- msgid "A maximum of 100 photos can be previewd"
15621
- msgstr "V náhledu smí být maximálně 100 fotografií"
15622
-
15623
- #: wppa-tinymce-scripts.php:82
15624
- msgid "Photo Preview"
15625
- msgstr "Náhled fotografie"
15626
-
15627
- #: wppa-tinymce-scripts.php:87
15628
- msgid "Type of Gallery display:"
15629
- msgstr "Typ zobrazení Galerie:"
15630
-
15631
- #: wppa-tinymce-scripts.php:90
15632
- msgid "The cover of an album"
15633
- msgstr "Obal alba"
15634
-
15635
- #: wppa-tinymce-scripts.php:91
15636
- msgid "The sub-albums and/or thumbnails in an album"
15637
- msgstr "Sub-alba a miniatury fotografií alba"
15638
-
15639
- #: wppa-tinymce-scripts.php:92
15640
- msgid "A slideshow of the photos in an album"
15641
- msgstr "Prezentace fotografií alba"
15642
-
15643
- #: wppa-tinymce-scripts.php:93 wppa-tinymce-shortcodes.php:131
15644
- msgid "A slideshow without supporting boxes"
15645
- msgstr "Prezentace bez doplňkových panelů"
15646
-
15647
- #: wppa-tinymce-scripts.php:94 wppa-tinymce-shortcodes.php:132
15648
- msgid "A slideshow with a filmstrip only"
15649
- msgstr "Prezentace s filmovým pásem"
15650
-
15651
- #: wppa-tinymce-scripts.php:95
15652
- msgid "A single photo"
15653
- msgstr "Single fotografie"
15654
-
15655
- #: wppa-tinymce-scripts.php:96 wppa-tinymce-shortcodes.php:145
15656
- msgid "A single photo with caption"
15657
- msgstr "Single Fotografie s popiskem"
15658
-
15659
- #: wppa-tinymce-scripts.php:97 wppa-tinymce-shortcodes.php:146
15660
- msgid "A single photo in the style of a slideshow"
15661
- msgstr "Single Fotografie ve stylu prezentace"
15662
-
15663
- #: wppa-tinymce-scripts.php:98 wppa-tinymce-shortcodes.php:173
15664
- msgid "A generic albums display"
15665
- msgstr "Zobrazení generických alb"
15666
-
15667
- #: wppa-tinymce-scripts.php:101
15668
- msgid "Specify the type of gallery"
15669
- msgstr "Určete typ galerie"
15670
-
15671
- #: wppa-tinymce-scripts.php:106
15672
- msgid "Explanation:"
15673
- msgstr "Vysvětlení:"
15674
-
15675
- #: wppa-tinymce-scripts.php:108
15676
- msgid "Use this gallerytype to display all the top-level album covers."
15677
- msgstr ""
15678
- "Použít tento typ galerie pro zobrazení všech obalů alb nejvyšší úrovně."
15679
-
15680
- #: wppa-tinymce-scripts.php:113
15681
- msgid "The Album to be used:"
15682
- msgstr "Album, které bude použito:"
15683
-
15684
- #: wppa-tinymce-scripts.php:124 wppa-upload.php:134 wppa-upload.php:222
15685
- #: wppa-upload.php:269
15686
- msgid "Please select an album"
15687
- msgstr "Vyberte prosím album"
15688
-
15689
- #: wppa-tinymce-scripts.php:148
15690
- msgid "- The latest created album -"
15691
- msgstr "--- Nejnověji vytvořené album ---"
15692
-
15693
- #: wppa-tinymce-scripts.php:157
15694
- msgid "--- The top rated photos ---"
15695
- msgstr "--- Nejlépe hodnocené fotografie ---"
15696
-
15697
- #: wppa-tinymce-scripts.php:166
15698
- msgid "--- The most recently uploaded photos ---"
15699
- msgstr "--- Nejnověji nahrané fotografie ---"
15700
-
15701
- #: wppa-tinymce-scripts.php:175
15702
- msgid "--- A random selection of featured photos ---"
15703
- msgstr "--- Náhodný výběr z doporučených fotografií ---"
15704
-
15705
- #: wppa-tinymce-scripts.php:192
15706
- msgid "--- The most recently commented photos ---"
15707
- msgstr "--- Nejnověji komentované fotografie ---"
15708
-
15709
- #: wppa-tinymce-scripts.php:195
15710
- msgid "--- Photos that have certain tags ---"
15711
- msgstr "--- Fotografie s určitým štítkem ---"
15712
-
15713
- #: wppa-tinymce-scripts.php:204
15714
- msgid "--- All photos in the system ---"
15715
- msgstr "--- Všechny fotografie v systému ---"
15716
-
15717
- #: wppa-tinymce-scripts.php:207 wppa-tinymce-shortcodes.php:244
15718
- #: wppa-tinymce-shortcodes.php:267 wppa-tinymce-shortcodes.php:312
15719
- #: wppa-tinymce-shortcodes.php:335 wppa-tinymce-shortcodes.php:474
15720
- msgid "There are no albums yet"
15721
- msgstr "Zatím nejsou k dispozici žádná alba"
15722
-
15723
- #: wppa-tinymce-scripts.php:215
15724
- msgid "Specify the album to be used or --- A special selection of photos ---"
15725
- msgstr ""
15726
- "Určete album, který bude použito nebo --- Speciální výběr fotografií ---"
15727
-
15728
- #: wppa-tinymce-scripts.php:216
15729
- msgid ""
15730
- "In an upload box, the album is optional. When no album is specified: a "
15731
- "selection box will be displayed of the albums the user has the right to "
15732
- "upload."
15733
- msgstr ""
15734
- "V nahrávacím panel je album nepovinné. Pokud jej nezadáte: Zobrazí se okno "
15735
- "výběru alb, do kterých má uživatel právo nahrávat."
15736
-
15737
- #: wppa-tinymce-scripts.php:217
15738
- msgid "* Album contains less than the minimun number of photos"
15739
- msgstr "* Album obsahuje menší než minimální počet fotografií"
15740
-
15741
- #: wppa-tinymce-scripts.php:223 wppa-tinymce-shortcodes.php:373
15742
- msgid "The Photo to be used:"
15743
- msgstr "Fotografie, která má být použita:"
15744
-
15745
- #: wppa-tinymce-scripts.php:228 wppa-tinymce-shortcodes.php:379
15746
- msgid "Please select a photo"
15747
- msgstr "Vyberte fotografii"
15748
-
15749
- #: wppa-tinymce-scripts.php:239
15750
- msgid "--- The most recently uploaded photo ---"
15751
- msgstr "--- Naposledy nahraná fotografie ---"
15752
-
15753
- #: wppa-tinymce-scripts.php:240
15754
- msgid "--- The photo of the day ---"
15755
- msgstr "--- Fotografie dne ---"
15756
-
15757
- #: wppa-tinymce-scripts.php:243 wppa-tinymce-shortcodes.php:396
15758
- msgid "There are no photos yet"
15759
- msgstr "Zatím nejsou k dispozici žádné fotografie"
15760
-
15761
- #: wppa-tinymce-scripts.php:249 wppa-tinymce-shortcodes.php:402
15762
- msgid "Specify the photo to be used"
15763
- msgstr "Určete fotografii, která má být použita"
15764
-
15765
- #: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:403
15766
- msgid "You can select from a maximum of 100 most recently added photos"
15767
- msgstr "Můžete si vybrat z maximálně 100 naposledy přidaných fotografií"
15768
-
15769
- #: wppa-tinymce-scripts.php:256 wppa-tinymce-shortcodes.php:417
15770
- msgid "The tags the photos should have:"
15771
- msgstr "Štítky, které by fotografie měly mít:"
15772
-
15773
- #: wppa-tinymce-scripts.php:259 wppa-tinymce-shortcodes.php:420
15774
- msgid "--- please select tag(s) ---"
15775
- msgstr "--- vyberte štítek(tky) ---"
15776
-
15777
- #: wppa-tinymce-scripts.php:267
15778
- msgid ""
15779
- "If you want that the photos have all the selected tags, check this box. "
15780
- "Leave it unchecked if the photo must have atleast only one of the selected "
15781
- "tags"
15782
- msgstr ""
15783
- "Pokud požadujete, aby fotografie měly všechny štítky, zaškrtněte tuto "
15784
- "položku. Pokud fotografii stačí mít aspoň jeden z vybraných štítků, nechte "
15785
- "položku nezaškrtnutou."
15786
-
15787
- #: wppa-tinymce-scripts.php:272 wppa-tinymce-shortcodes.php:497
15788
- msgid "The size of the display:"
15789
- msgstr "Velikost zobrazení:"
15790
-
15791
- #: wppa-tinymce-scripts.php:277 wppa-tinymce-shortcodes.php:502
15792
- msgid ""
15793
- "Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
15794
- "span>."
15795
- msgstr ""
15796
- "Určete horizontální velikost v pixelech nebo nastavte <span style=\"color:"
15797
- "blue\" >auto</span>."
15798
-
15799
- #: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:503
15800
- msgid ""
15801
- "A value less than <span style=\"color:blue\" >100</span> will automaticly be "
15802
- "interpreted as a <span style=\"color:blue\" >percentage</span> of the "
15803
- "available space."
15804
- msgstr ""
15805
- "Hodnota menší než <span style=\"color:blue\" >100</span> bude automaticky "
15806
- "interpretována jako <span style=\"color:blue\">procenta</span> volného místa."
15807
-
15808
- #: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:504
15809
- msgid "Leave this blank for default size"
15810
- msgstr "Pro výchozí velikost nechte toto pole prázdné"
15811
-
15812
- #: wppa-tinymce-scripts.php:284 wppa-tinymce-shortcodes.php:510
15813
- #: wppa-widget-admin.php:72
15814
- msgid "Horizontal alignment:"
15815
- msgstr "Vodorovné zarovnání:"
15816
-
15817
- #: wppa-tinymce-scripts.php:293 wppa-tinymce-shortcodes.php:519
15818
- msgid "Specify the alignment to be used or --- none ---"
15819
- msgstr "Určete vodorovné zarovnání nebo zvolte --- žádné ---"
15820
-
15821
- #: wppa-tinymce-scripts.php:299 wppa-tinymce-shortcodes.php:529
15822
- msgid "Insert Gallery"
15823
- msgstr "Vložit Galerii"
15824
-
15825
- #: wppa-tinymce-shortcodes.php:97
15826
- msgid "Type of WPPA display:"
15827
- msgstr "Typ WPPA zobrazení:"
15828
-
15829
- #: wppa-tinymce-shortcodes.php:100
15830
- msgid "Please select a display type"
15831
- msgstr "Vyberte typ zobrazení"
15832
-
15833
- #: wppa-tinymce-shortcodes.php:101
15834
- msgid "A gallery with covers and/or thumbnails"
15835
- msgstr "Galerie s obaly a/nebo miniaturami"
15836
-
15837
- #: wppa-tinymce-shortcodes.php:102
15838
- msgid "A slideshow"
15839
- msgstr "Prezentace"
15840
-
15841
- #: wppa-tinymce-shortcodes.php:103
15842
- msgid "A single image"
15843
- msgstr "Single fotografie"
15844
-
15845
- #: wppa-tinymce-shortcodes.php:104
15846
- msgid "A search/selection box"
15847
- msgstr "Panel hledání/výběru"
15848
-
15849
- #: wppa-tinymce-shortcodes.php:105
15850
- msgid "An other box type"
15851
- msgstr "Jiný typ panelu"
15852
-
15853
- #: wppa-tinymce-shortcodes.php:112
15854
- msgid "Type of gallery display:"
15855
- msgstr "Typ zobrazení Galerie:"
15856
-
15857
- #: wppa-tinymce-shortcodes.php:115
15858
- msgid "Please select a gallery type"
15859
- msgstr "Vyberte typ galerie:"
15860
-
15861
- #: wppa-tinymce-shortcodes.php:116
15862
- msgid "The cover(s) of specific album(s)"
15863
- msgstr "Obal(y) konkrétních alb(a)"
15864
-
15865
- #: wppa-tinymce-shortcodes.php:117
15866
- msgid "The content of specific album(s)"
15867
- msgstr "Obsah konkrátních alb(a)"
15868
-
15869
- #: wppa-tinymce-shortcodes.php:118
15870
- msgid "The covers of the subalbums of specific album(s)"
15871
- msgstr "Obaly sub-alb konkrétních alb(a) "
15872
-
15873
- #: wppa-tinymce-shortcodes.php:119
15874
- msgid "The thumbnails of specific album(s)"
15875
- msgstr "Miniatury fotografií z konkrétních alb(a)"
15876
-
15877
- #: wppa-tinymce-shortcodes.php:126
15878
- msgid "Type of slideshow:"
15879
- msgstr "Typ prezentace:"
15880
-
15881
- #: wppa-tinymce-shortcodes.php:129
15882
- msgid "Please select a slideshow type"
15883
- msgstr "Vyberte typ prezentace"
15884
-
15885
- #: wppa-tinymce-shortcodes.php:130
15886
- msgid "A fully featured slideshow"
15887
- msgstr "Plně vybavená prezentace"
15888
-
15889
- #: wppa-tinymce-shortcodes.php:133
15890
- msgid "A filmstrip only"
15891
- msgstr "Pouze filmový pás"
15892
-
15893
- #: wppa-tinymce-shortcodes.php:140
15894
- msgid "Type of single image:"
15895
- msgstr "Typ single obrázku:"
15896
-
15897
- #: wppa-tinymce-shortcodes.php:143
15898
- msgid "Please select a single image type"
15899
- msgstr "Vyberte typ single fotografie"
15900
-
15901
- #: wppa-tinymce-shortcodes.php:144
15902
- msgid "A plain single photo"
15903
- msgstr "Prostá Single fotografie"
15904
-
15905
- #: wppa-tinymce-shortcodes.php:153
15906
- msgid "Type of search:"
15907
- msgstr "Typ vyhledávání:"
15908
-
15909
- #: wppa-tinymce-shortcodes.php:156
15910
- msgid "Please select a search type"
15911
- msgstr "Vyberte typ vyhledávání"
15912
-
15913
- #: wppa-tinymce-shortcodes.php:157
15914
- msgid "A search box"
15915
- msgstr "Panel vyhledávání"
15916
-
15917
- #: wppa-tinymce-shortcodes.php:158
15918
- msgid "A supersearch box"
15919
- msgstr "Panel super vyhledávání"
15920
-
15921
- #: wppa-tinymce-shortcodes.php:159
15922
- msgid "A tagcloud box"
15923
- msgstr "Panel Skupina štítků"
15924
-
15925
- #: wppa-tinymce-shortcodes.php:160
15926
- msgid "A multitag box"
15927
- msgstr "Panel Vícenásobných štítků"
15928
-
15929
- #: wppa-tinymce-shortcodes.php:161
15930
- msgid "A superview box"
15931
- msgstr "Panel Superpohledu"
15932
-
15933
- #: wppa-tinymce-shortcodes.php:162
15934
- msgid "A calendar box"
15935
- msgstr "Panel kalendáře"
15936
-
15937
- #: wppa-tinymce-shortcodes.php:169
15938
- msgid "Type miscellaneous:"
15939
- msgstr "Různé typy:"
15940
-
15941
- #: wppa-tinymce-shortcodes.php:172
15942
- msgid "Please select a miscellaneous display"
15943
- msgstr "Vyberte jiné zobrazení"
15944
-
15945
- #: wppa-tinymce-shortcodes.php:174
15946
- msgid "An upload box"
15947
- msgstr "Panel nahrávání"
15948
-
15949
- #: wppa-tinymce-shortcodes.php:175
15950
- msgid "A landing page shortcode"
15951
- msgstr "Krátký kód cílové stránky"
15952
-
15953
- #: wppa-tinymce-shortcodes.php:176
15954
- msgid "A 3D stereo settings box"
15955
- msgstr "Panel nastavení 3D stereo"
15956
-
15957
- #: wppa-tinymce-shortcodes.php:183
15958
- msgid "Kind of selection:"
15959
- msgstr "Druh výběru:"
15960
-
15961
- #: wppa-tinymce-shortcodes.php:186
15962
- msgid "Please select a type of selection to be used"
15963
- msgstr "Vyberte typ výběru, který bude použit"
15964
-
15965
- #: wppa-tinymce-shortcodes.php:187
15966
- msgid "One or more wppa+ albums"
15967
- msgstr "Jedno nebo více wppa+ alb"
15968
-
15969
- #: wppa-tinymce-shortcodes.php:188
15970
- msgid "A special selection"
15971
- msgstr "Speciální výběr"
15972
-
15973
- #: wppa-tinymce-shortcodes.php:195 wppa-tinymce-shortcodes.php:215
15974
- msgid "The selection to be used:"
15975
- msgstr "Výběr, který bude použit:"
15976
-
15977
- #: wppa-tinymce-shortcodes.php:198 wppa-tinymce-shortcodes.php:218
15978
- msgid "Please select a virtual album"
15979
- msgstr "Vyberte prosím virtuální album"
15980
-
15981
- #: wppa-tinymce-shortcodes.php:199 wppa-tinymce-shortcodes.php:219
15982
- msgid "The most recently modified album"
15983
- msgstr "Nejnověji upravené album"
15984
-
15985
- #: wppa-tinymce-shortcodes.php:200
15986
- msgid "The top rated photos"
15987
- msgstr "Nejlépe hodnocené fotografie"
15988
-
15989
- #: wppa-tinymce-shortcodes.php:201
15990
- msgid "The most recently uploaded photos"
15991
- msgstr "Nejnověji nahrané fotografie"
15992
-
15993
- #: wppa-tinymce-shortcodes.php:202
15994
- msgid "A random selection of featured photos"
15995
- msgstr "Náhodný výběr z doporučených fotografií"
15996
-
15997
- #: wppa-tinymce-shortcodes.php:203
15998
- msgid "The most recently commented photos"
15999
- msgstr "Nejnověji komentované fotografie"
16000
-
16001
- #: wppa-tinymce-shortcodes.php:204
16002
- msgid "Photos that have certain tags"
16003
- msgstr "Fotografie s daným štítkem"
16004
-
16005
- #: wppa-tinymce-shortcodes.php:205 wppa-tinymce-shortcodes.php:221
16006
- msgid "Albums tagged with a certain category"
16007
- msgstr "Alba spojená s určitou kategorií"
16008
-
16009
- #: wppa-tinymce-shortcodes.php:206
16010
- msgid "Photos in albums owned by a certain user"
16011
- msgstr "Fotografie v albech vlastněné určitým uživatelem"
16012
-
16013
- #: wppa-tinymce-shortcodes.php:207
16014
- msgid "Photos uploaded by a certain user"
16015
- msgstr "Fotografie nahrané určitým uživatelem"
16016
-
16017
- #: wppa-tinymce-shortcodes.php:208
16018
- msgid "All photos in the system"
16019
- msgstr "Všechny fotografie v systému"
16020
-
16021
- #: wppa-tinymce-shortcodes.php:220
16022
- msgid "Albums owned by a certain user"
16023
- msgstr "Fotografie určitého majitele"
16024
-
16025
- #: wppa-tinymce-shortcodes.php:222
16026
- msgid "All albums in the system"
16027
- msgstr "Všechna alba v systému"
16028
-
16029
- #: wppa-tinymce-shortcodes.php:229 wppa-tinymce-shortcodes.php:252
16030
- msgid "The Album(s) to be used:"
16031
- msgstr "Album, které bude použito:"
16032
-
16033
- #: wppa-tinymce-shortcodes.php:235
16034
- msgid "Please select one or more albums"
16035
- msgstr "Vyberte prosím jedno nebo více alb"
16036
-
16037
- #: wppa-tinymce-shortcodes.php:258 wppa-upldr-widget.php:209 wppa-utils.php:412
16038
- msgid "All albums"
16039
- msgstr "Všechna alba"
16040
-
16041
- #: wppa-tinymce-shortcodes.php:275
16042
- msgid "The album owner:"
16043
- msgstr "Majitel alba:"
16044
-
16045
- #: wppa-tinymce-shortcodes.php:278
16046
- msgid "Please select a user"
16047
- msgstr "Vyberte prosím uživatele"
16048
-
16049
- #: wppa-tinymce-shortcodes.php:279
16050
- msgid "The logged in visitor"
16051
- msgstr "Přihlášený návštěvník"
16052
-
16053
- #: wppa-tinymce-shortcodes.php:285
16054
- msgid "Too many users, edit manually"
16055
- msgstr "Příliš mnoho uživatelů, upravte ručně"
16056
-
16057
- #: wppa-tinymce-shortcodes.php:300
16058
- msgid "No parent specification"
16059
- msgstr "Neurčeno žádné nadřazené"
16060
-
16061
- #: wppa-tinymce-shortcodes.php:303 wppa-tinymce-shortcodes.php:326
16062
- #: wppa-tinymce-shortcodes.php:465
16063
- msgid "The generic parent"
16064
- msgstr "Genericky nadřazené"
16065
-
16066
- #: wppa-tinymce-shortcodes.php:343
16067
- msgid "Max Albums:"
16068
- msgstr "Max Alb:"
16069
-
16070
- #: wppa-tinymce-shortcodes.php:351
16071
- msgid "Max Photos:"
16072
- msgstr "Max Fotografií:"
16073
-
16074
- #: wppa-tinymce-shortcodes.php:359
16075
- msgid "The cat the albums should have:"
16076
- msgstr "Kategorie, kterou by alba měla mít:"
16077
-
16078
- #: wppa-tinymce-shortcodes.php:362
16079
- msgid "--- please select category ---"
16080
- msgstr "--- vyberte kategorii ---"
16081
-
16082
- #: wppa-tinymce-shortcodes.php:392
16083
- msgid "The most recently uploaded photo"
16084
- msgstr "Nejnověji nahraná fotografie"
16085
-
16086
- #: wppa-tinymce-shortcodes.php:393
16087
- msgid "The photo of the day"
16088
- msgstr "Fotografie Dne"
16089
-
16090
- #: wppa-tinymce-shortcodes.php:410
16091
- msgid "Preview image:"
16092
- msgstr "Náhled snímku:"
16093
-
16094
- #: wppa-tinymce-shortcodes.php:431 wppa-tinymce-shortcodes.php:440
16095
- msgid "Additional features:"
16096
- msgstr "Další vlastnosti:"
16097
-
16098
- #: wppa-tinymce-shortcodes.php:433
16099
- msgid "Enable Subsearch"
16100
- msgstr "Povolit sub-vyhledávání"
16101
-
16102
- #: wppa-tinymce-shortcodes.php:434
16103
- msgid "Enable Rootsearch"
16104
- msgstr "Povolit kořenové vyhledávání"
16105
-
16106
- #: wppa-tinymce-shortcodes.php:442
16107
- msgid "Enable all tags"
16108
- msgstr "Povolit všechny štítky"
16109
-
16110
- #: wppa-tinymce-shortcodes.php:445
16111
- msgid "Please select the tags to show"
16112
- msgstr "Vyberte štítky pro zobrazení"
16113
-
16114
- #: wppa-tinymce-shortcodes.php:451
16115
- msgid "There are no tags"
16116
- msgstr "Žádné štítky neexistují"
16117
-
16118
- #: wppa-tinymce-shortcodes.php:482
16119
- msgid "Calendar type:"
16120
- msgstr "Typ Kalendáře"
16121
-
16122
- #: wppa-tinymce-shortcodes.php:485
16123
- msgid "By EXIF date"
16124
- msgstr "Podle EXIF data"
16125
-
16126
- #: wppa-tinymce-shortcodes.php:486
16127
- msgid "By date of upload"
16128
- msgstr "Podle data nahrání"
16129
-
16130
- #: wppa-tinymce-shortcodes.php:487
16131
- msgid "By date last modified"
16132
- msgstr "Podle data poslední úpravy"
16133
-
16134
- #: wppa-tinymce-shortcodes.php:490
16135
- msgid "Last date first"
16136
- msgstr "Nejnovější podle data jako první"
16137
-
16138
- #: wppa-tinymce-shortcodes.php:491
16139
- msgid "Initially display all"
16140
- msgstr "Prvotně zobrazit vše"
16141
-
16142
- #: wppa-tinymce-shortcodes.php:527
16143
- msgid ""
16144
- "This is a preview of the shortcode that is being generated. You may edit the "
16145
- "comment"
16146
- msgstr ""
16147
- "Toto je náhled krátkého kódu, který bude vygenerován. Komentář můžete upravit"
16148
-
16149
- #: wppa-tinymce-shortcodes.php:530
16150
- msgid "insert Gallery"
16151
- msgstr "vložit Galerii"
16152
-
16153
- #: wppa-tinymce-shortcodes.php:530
16154
- msgid "Please complete the shortcode specs"
16155
- msgstr "Prosím zkompletujte krátký kód"
16156
-
16157
- #: wppa-topten-widget.php:12
16158
- msgid "WPPA+ Top Ten Rated Photos"
16159
- msgstr "WPPA+ Nejlépe hodnocené fotografie"
16160
-
16161
- #: wppa-topten-widget.php:48
16162
- msgid "Top Ten Photo album"
16163
- msgstr "Nejlépe hodnocená Alba"
16164
-
16165
- #: wppa-topten-widget.php:136 wppa-topten-widget.php:140
16166
- #: wppa-topten-widget.php:147
16167
- #, php-format
16168
- msgid "%s Votes"
16169
- msgstr "%s hodnocení"
16170
-
16171
- #: wppa-topten-widget.php:137 wppa-topten-widget.php:142
16172
- #: wppa-topten-widget.php:145
16173
- #, php-format
16174
- msgid "Views: %s times"
16175
- msgstr "Prohlédnuto %s krát"
16176
-
16177
- #: wppa-topten-widget.php:238
16178
- msgid "Number of views"
16179
- msgstr "Počet zobrazení"
16180
-
16181
- #: wppa-topten-widget.php:242
16182
- msgid "Include sub albums:"
16183
- msgstr "Včetně sub-alb"
16184
-
16185
- #: wppa-topten-widget.php:250
16186
- msgid "Show owner:"
16187
- msgstr "Zobrazit majitele:"
16188
-
16189
- #: wppa-topten-widget.php:255
16190
- msgid "Show album:"
16191
- msgstr "Zobrazit album:"
16192
-
16193
- #: wppa-topten-widget.php:270
16194
- msgid "View count:"
16195
- msgstr "Počet shlédnutí:"
16196
-
16197
- #: wppa-upldr-widget.php:14
16198
- msgid "WPPA+ Uploader Photos"
16199
- msgstr "WPPA+ fotoografie autora"
16200
-
16201
- #: wppa-upldr-widget.php:15
16202
- msgid "Uploader Photos"
16203
- msgstr "Fotografie autora"
16204
-
16205
- #: wppa-upldr-widget.php:42
16206
- msgid "User uploaded photos"
16207
- msgstr "Nedávno nahrané fotografie"
16208
-
16209
- #: wppa-upldr-widget.php:90
16210
- msgid "There are too many registered users in the system for this widget"
16211
- msgstr "V systému je pro tento widget příliš mnoho registrovaných uživatelů"
16212
-
16213
- #: wppa-upldr-widget.php:124 wppa-upldr-widget.php:131
16214
- msgid "Photos uploaded by"
16215
- msgstr "Fotky nahrány "
16216
-
16217
- #: wppa-upldr-widget.php:167
16218
- msgid "User Photos"
16219
- msgstr "Fotografie uživatele"
16220
-
16221
- #: wppa-upldr-widget.php:182
16222
- msgid "Number of photos"
16223
- msgstr "Počet fotografií"
16224
-
16225
- #: wppa-upldr-widget.php:183
16226
- msgid "Most recent photo"
16227
- msgstr "Nejnovější fotografie"
16228
-
16229
- #: wppa-upldr-widget.php:187
16230
- msgid "Ignore:"
16231
- msgstr "Ignorovat:"
16232
-
16233
- #: wppa-upldr-widget.php:189
16234
- msgid "Enter loginnames seperated by commas"
16235
- msgstr "Zadejte přihlašovací jména oddělená čárkami"
16236
-
16237
- #: wppa-upldr-widget.php:192
16238
- msgid "Look only in albums (including sub-albums):"
16239
- msgstr "Hledat pouze v albech (včetně sub-alb):"
16240
-
16241
- #: wppa-upload-widget.php:15
16242
- msgid "WPPA+ Upload photos widget"
16243
- msgstr "WPPA+ widget Nahrávání fotografií"
16244
-
16245
- #: wppa-upload-widget.php:16
16246
- msgid "WPPA+ Upload"
16247
- msgstr "WPPA+ Nahrávání"
16248
-
16249
- #: wppa-upload.php:37 wppa-upload.php:52
16250
- msgid "Connecting to edit album..."
16251
- msgstr "Spouštím úpravu alba ..."
16252
-
16253
- #: wppa-upload.php:41 wppa-upload.php:56
16254
- msgid "Connecting to edit photos..."
16255
- msgstr "Spouštím úpravu fotografií ..."
16256
-
16257
- #: wppa-upload.php:66
16258
- msgid "Connecting to your depot..."
16259
- msgstr "Připojuji se k vašemu úložišti ..."
16260
-
16261
- #: wppa-upload.php:111
16262
- msgid "Upload a single photo"
16263
- msgstr "Nahrát Single fotografii"
16264
-
16265
- #: wppa-upload.php:141
16266
- #, php-format
16267
- msgid ""
16268
- "<b>Notice:</b> your server allows you to upload <b>%s</b> files of maximum "
16269
- "total <b>%s</b> bytes and allows <b>%s</b> seconds to complete."
16270
- msgstr ""
16271
- "<b>Upozornění:</b> Váš server umožní nahrát <b>%s</b> souborů o velikosti "
16272
- "maximálně <b>%s</b> bajtů a umožňuje <b>%s</b> sekund na dokončení."
16273
-
16274
- #: wppa-upload.php:142
16275
- msgid ""
16276
- "If your request exceeds these limitations, it will fail, probably without an "
16277
- "errormessage."
16278
- msgstr ""
16279
- "Překročí-li váš požadavek tato omezení, nebude proveden a pravděpodobně "
16280
- "nezobrazí ani chybovou zprávu."
16281
-
16282
- #: wppa-upload.php:143
16283
- msgid ""
16284
- "Additionally your hosting provider may have set other limitations on "
16285
- "uploading files."
16286
- msgstr ""
16287
- "Váš poskytovatel hostingu by měl nastavit lepší omezení pro nahrávání souborů"
16288
-
16289
- #: wppa-upload.php:148
16290
- msgid "Box A:"
16291
- msgstr "Box A:"
16292
-
16293
- #: wppa-upload.php:148
16294
- msgid "Multiple Photos in one selection"
16295
- msgstr "Více fotografií v jednom výběru"
16296
-
16297
- #: wppa-upload.php:149
16298
- #, php-format
16299
- msgid "You can select up to %s photos in one selection and upload them."
16300
- msgstr "Můžete vybrat až %s fotografií v jednom výběru a nahrát je."
16301
-
16302
- #: wppa-upload.php:150
16303
- msgid "You need a modern browser that supports HTML-5 to select multiple files"
16304
- msgstr ""
16305
- "Chcete-li používat hromadné nahrávání, musí Váš prohlížeč podporovat HTML-5"
16306
-
16307
- #: wppa-upload.php:155 wppa-upload.php:164 wppa-upload.php:247
16308
- msgid "Selected Files:"
16309
- msgstr "Vybrané soubory:"
16310
-
16311
- #: wppa-upload.php:166
16312
- msgid "Size"
16313
- msgstr "Velikost"
16314
-
16315
- #: wppa-upload.php:166
16316
- msgid "Type"
16317
- msgstr "Typ"
16318
-
16319
- #: wppa-upload.php:187
16320
- msgid "Too many!"
16321
- msgstr "Příliš mnoho!"
16322
-
16323
- #: wppa-upload.php:191
16324
- msgid "Too big!"
16325
- msgstr "Příliš velké!"
16326
-
16327
- #: wppa-upload.php:195
16328
- msgid "Try again!"
16329
- msgstr "Zkuste znovu!"
16330
-
16331
- #: wppa-upload.php:197
16332
- msgid "Total"
16333
- msgstr "Celkem"
16334
-
16335
- #: wppa-upload.php:222
16336
- msgid "Upload Multiple Photos"
16337
- msgstr "Uložit více fotografií"
16338
-
16339
- #: wppa-upload.php:229 wppa-upload.php:276
16340
- msgid "After upload: Go to the <b>Edit Album</b> page."
16341
- msgstr "Po nahrání: Přejděte na stránku <b>Upravit alba</b>."
16342
-
16343
- #: wppa-upload.php:232 wppa-upload.php:279
16344
- msgid "After upload: Go to the <b>Edit Photos</b> page."
16345
- msgstr "Po nahrání: Přejděte na stránku <b>Upravit fotografie</b>."
16346
-
16347
- #: wppa-upload.php:241
16348
- msgid "Box B:"
16349
- msgstr "Box B:"
16350
-
16351
- #: wppa-upload.php:241
16352
- msgid "Single Photos in multiple selections"
16353
- msgstr "Single fotografie ve vícenásobných výběrech"
16354
-
16355
- #: wppa-upload.php:242
16356
- #, php-format
16357
- msgid "You can select up to %s photos one by one and upload them at once."
16358
- msgstr "Můžete si vybrat až %s fotografií jednu po druhé a nahrát je najednou."
16359
-
16360
- #: wppa-upload.php:269
16361
- msgid "Upload Single Photos"
16362
- msgstr "Nahrát Single Fotografie"
16363
-
16364
- #: wppa-upload.php:296
16365
- msgid "Box C:"
16366
- msgstr "Box C:"
16367
-
16368
- #: wppa-upload.php:296
16369
- msgid "Zipped Photos in one selection"
16370
- msgstr "Zazipované Fotografie v jednom výběru"
16371
-
16372
- #: wppa-upload.php:297
16373
- #, php-format
16374
- msgid ""
16375
- "You can upload one zipfile. It will be placed in your personal wppa-depot: "
16376
- "<b>.../%s</b><br/>Once uploaded, use <b>Import Photos</b> to unzip the file "
16377
- "and place the photos in any album."
16378
- msgstr ""
16379
- "Můžete nahrát jeden soubor zip archivu. Bude umístěn ve vašem osobní wppa "
16380
- "úložišti: <b>.../%s</b><br>Jakmile je nahrán, použijte <b>Import fotografií</"
16381
- "b> pro vybalení souborů a umístění fotografií do alb."
16382
-
16383
- #: wppa-upload.php:301
16384
- msgid "Upload Zipped Photos"
16385
- msgstr "Nahrát zazipované fotografie"
16386
-
16387
- #: wppa-upload.php:306
16388
- msgid "After upload: Go to the <b>Import Photos</b> page."
16389
- msgstr "Po nahrání: Přejděte na stránku <b>Import fotografií</b>."
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
- "<small>Požádejteadministrátora, aby povýšil PHP na verzi 5.2.7 nebo novější. "
16397
- "To vám umožní nahrát zazipované fotografie.</small>"
16398
-
16399
- #: wppa-upload.php:320 wppa-upload.php:1191
16400
- msgid "No albums exist. You must"
16401
- msgstr "Žádná alba existují. Musíte"
16402
-
16403
- #: wppa-upload.php:320 wppa-upload.php:1191
16404
- msgid "create one"
16405
- msgstr "vytvořit jedno"
16406
-
16407
- #: wppa-upload.php:320 wppa-upload.php:1191
16408
- msgid "beofre you can upload your photos."
16409
- msgstr "než budete moci nahrát vaše fotografie."
16410
-
16411
- #: wppa-upload.php:437
16412
- msgid "Done!"
16413
- msgstr "Hotovo!"
16414
-
16415
- #: wppa-upload.php:443
16416
- msgid "Failed!"
16417
- msgstr "Nepodařilo se!"
16418
-
16419
- #: wppa-upload.php:527
16420
- msgid "Select Local or Remote"
16421
- msgstr "Vyber místní nebo vzdálený"
16422
-
16423
- #: wppa-upload.php:531
16424
- msgid "Local"
16425
- msgstr "Místní"
16426
-
16427
- #: wppa-upload.php:532
16428
- msgid "Remote"
16429
- msgstr "Vzdálený"
16430
-
16431
- #: wppa-upload.php:535
16432
- msgid "Set Local/Remote"
16433
- msgstr "Nastavit Lokální/Vzdálený"
16434
-
16435
- #: wppa-upload.php:538
16436
- msgid ""
16437
- "The server does not allow you to import from remote locations. ( The php "
16438
- "directive allow_url_fopen is not set to 1 )"
16439
- msgstr ""
16440
- "Server neumožňuje import ze vzdálených míst. (Direktiva PHP allow_url_fopen "
16441
- "není nastavena na hodnotu 1)"
16442
-
16443
- #: wppa-upload.php:540
16444
- msgid ""
16445
- "The server does not allow you to import from remote locations. ( The curl "
16446
- "functions are not set up )"
16447
- msgstr ""
16448
- "Server neumožňuje import ze vzdálených míst. (Funkce curl není nastavena)"
16449
-
16450
- #: wppa-upload.php:545
16451
- msgid "Import photos from:"
16452
- msgstr "Importovat fotografie z:"
16453
-
16454
- #: wppa-upload.php:550
16455
- msgid "Set source directory"
16456
- msgstr "Nastavit zdrojový adresář"
16457
-
16458
- #: wppa-upload.php:553
16459
- msgid "Max:"
16460
- msgstr "Max:"
16461
-
16462
- #: wppa-upload.php:555
16463
- msgid "Find remote photos"
16464
- msgstr "Najít vzdálené fotografie"
16465
-
16466
- #: wppa-upload.php:556
16467
- msgid "Working, please wait..."
16468
- msgstr "Pracuji, čekejte prosím ..."
16469
-
16470
- #: wppa-upload.php:557
16471
- msgid ""
16472
- "<br />You can enter either a web page address like <i>http://mysite.com/"
16473
- "mypage/</i> or a full url to an image file like <i>http://mysite.com/wp-"
16474
- "content/uploads/wppa/4711.jpg</i>"
16475
- msgstr ""
16476
- "<br />Můžete zadat buď webovou adresu stránky, jako např. <i>http://mysite."
16477
- "com/mypage/</i> nebo úplnou URL adresu souboru fotografie, jako např. "
16478
- "<i>http://mysite.com/wp-content/uploads/wppa/4711.jpg</i>"
16479
-
16480
- #: wppa-upload.php:577
16481
- msgid "zipfiles in the depot."
16482
- msgstr "zip archivů v úložišti."
16483
-
16484
- #: wppa-upload.php:583 wppa-upload.php:630 wppa-upload.php:708
16485
- #: wppa-upload.php:824 wppa-upload.php:881 wppa-upload.php:927
16486
- #: wppa-upload.php:972
16487
- msgid "Check/uncheck all"
16488
- msgstr "Zaškrtnout/Odškrtnout vše"
16489
-
16490
- #: wppa-upload.php:587
16491
- msgid "Delete after successful extraction."
16492
- msgstr "Po úspěšném rozbalení archiv smazat."
16493
-
16494
- #: wppa-upload.php:624
16495
- msgid "albumdefinitions in the depot."
16496
- msgstr "definicí alb v úložišti."
16497
-
16498
- #: wppa-upload.php:634
16499
- msgid ""
16500
- "Remove from depot after successful import, or if the album already exists."
16501
- msgstr ""
16502
- "Odstranit z úložiště po úspěšném importu nebo pokud již album existuje."
16503
-
16504
- #: wppa-upload.php:673
16505
- msgid "photos in the ngg gallery."
16506
- msgstr "fotografií v ngg galerii."
16507
-
16508
- #: wppa-upload.php:675
16509
- msgid "photos in the depot."
16510
- msgstr "fotografií v úložišti."
16511
-
16512
- #: wppa-upload.php:677
16513
- msgid "possible photos found remote."
16514
- msgstr "podobných fotografií nalezeno vzdáleně."
16515
-
16516
- #: wppa-upload.php:678
16517
- msgid "Photos will be downsized during import."
16518
- msgstr "Fotografie budou během importu zmenšeny."
16519
-
16520
- #: wppa-upload.php:681
16521
- msgid "Default album for import:"
16522
- msgstr "Výchozí album pro import:"
16523
-
16524
- #: wppa-upload.php:690
16525
- msgid ""
16526
- "Photos that have (<em>name</em>)[<em>album</em>] will be imported by that "
16527
- "<em>name</em> in that <em>album</em>."
16528
- msgstr ""
16529
- "Fotografie, které mají (<em>název</em>) [<em>album</em>] budou importovány "
16530
- "podle tohoto <em>názvu</em> do daného <em>alba</em>."
16531
-
16532
- #: wppa-upload.php:712 wppa-upload.php:828 wppa-upload.php:885
16533
- #: wppa-upload.php:975
16534
- msgid "Remove from depot after successful import."
16535
- msgstr "Odstranit ze skladu po úspěšném importu."
16536
-
16537
- #: wppa-upload.php:717
16538
- #, php-format
16539
- msgid "Import into album <i>%s</i>."
16540
- msgstr "Importovat do alba <i>%s</i>."
16541
-
16542
- #: wppa-upload.php:718
16543
- msgid "The album will be created if it does not exist"
16544
- msgstr "Pokud album neexistuje, bude vytvořeno."
16545
-
16546
- #: wppa-upload.php:721
16547
- msgid "Use backup if available"
16548
- msgstr "Použít zálohu, je-li dostupná"
16549
-
16550
- #: wppa-upload.php:725
16551
- msgid "Update existing photos"
16552
- msgstr "Aktualizovat existující fotografie"
16553
-
16554
- #: wppa-upload.php:731
16555
- msgid "Do not create duplicates"
16556
- msgstr "Nevytvářet duplikáty"
16557
-
16558
- #: wppa-upload.php:737
16559
- msgid "Zoom previews"
16560
- msgstr "Zvětšit náhledy"
16561
-
16562
- #: wppa-upload.php:807
16563
- msgid "videos in the depot."
16564
- msgstr "videí ve skladu."
16565
-
16566
- #: wppa-upload.php:810 wppa-upload.php:867
16567
- msgid "Album to import to:"
16568
- msgstr "Album pro import:"
16569
-
16570
- #: wppa-upload.php:864
16571
- msgid "audios in the depot."
16572
- msgstr "audií ve skladu."
16573
-
16574
- #: wppa-upload.php:921
16575
- msgid "albumdirectories in the depot."
16576
- msgstr "adresářů alb ve skladu."
16577
-
16578
- #: wppa-upload.php:966
16579
- msgid "csv files in the depot."
16580
- msgstr "csv souborů ve skladu."
16581
-
16582
- #: wppa-upload.php:1136
16583
- msgid "Start Ajax Import"
16584
- msgstr ""
16585
-
16586
- #: wppa-upload.php:1137
16587
- msgid "Stop Ajax Import"
16588
- msgstr ""
16589
-
16590
- #: wppa-upload.php:1145
16591
- msgid "There are no importable files found in directory:"
16592
- msgstr "Žádné soubory vhodné pro import nebyly nalezeny v adresáři:"
16593
-
16594
- #: wppa-upload.php:1148
16595
- msgid "There are no photos found or left to process at url:"
16596
- msgstr "Žádné fotografie vhodné ke zpracování nezbývají na URL adrese:"
16597
-
16598
- #: wppa-upload.php:1152
16599
- msgid "You can import the following file types:"
16600
- msgstr "Můžete importovat soubory těchto typů:"
16601
-
16602
- #: wppa-upload.php:1156
16603
- msgid "Compressed file types: .zip"
16604
- msgstr "Typy archivačních souborů: .zip"
16605
-
16606
- #: wppa-upload.php:1160
16607
- msgid "Photo file types:"
16608
- msgstr "Typy souborů fotografií:"
16609
-
16610
- #: wppa-upload.php:1167
16611
- msgid "Video file types:"
16612
- msgstr "Typy videou souborů:"
16613
-
16614
- #: wppa-upload.php:1174
16615
- msgid "Audio file types:"
16616
- msgstr "Typy audio souborů:"
16617
-
16618
- #: wppa-upload.php:1180
16619
- msgid "WPPA+ file types: .amf .pmf"
16620
- msgstr "Typy WPPA+ souborů: .amf .pmf"
16621
-
16622
- #: wppa-upload.php:1182
16623
- msgid "Directories with optional subdirs containig photos"
16624
- msgstr "Adresáře s případnými podadresáři obsahují fotografie"
16625
-
16626
- #: wppa-upload.php:1184
16627
- msgid "Custom data files of type .csv"
16628
- msgstr "Uživatelské datové soubory typu .csv"
16629
-
16630
- #: wppa-upload.php:1186
16631
- msgid "Your depot directory is:"
16632
- msgstr "Adresář vašeho úložiště:"
16633
-
16634
- #: wppa-upload.php:1194
16635
- msgid "Trying to continue..."
16636
- msgstr "Snažím se pokračovat..."
16637
-
16638
- #: wppa-upload.php:1346
16639
- #, php-format
16640
- msgid "Time out. %s photos uploaded in album nr %s."
16641
- msgstr "Čas vypršel. %s fotografií bylo nahráno do alba č.%s."
16642
-
16643
- #: wppa-upload.php:1358 wppa-upload.php:1391 wppa-upload.php:1737
16644
- msgid "Error inserting photo"
16645
- msgstr "Chyba při vkládání fotografií"
16646
-
16647
- #: wppa-upload.php:1367 wppa-upload.php:1398
16648
- msgid "Photos Uploaded in album nr"
16649
- msgstr "Fotografie nahrány do alba č."
16650
-
16651
- #: wppa-upload.php:1439
16652
- msgid "Zipfile"
16653
- msgstr "Zip soubor"
16654
-
16655
- #: wppa-upload.php:1439
16656
- msgid "sucessfully uploaded."
16657
- msgstr "byly úspěšně nahrány."
16658
-
16659
- #: wppa-upload.php:1440
16660
- msgid "during upload."
16661
- msgstr "v průběhu nahrávání."
16662
-
16663
- #: wppa-upload.php:1524
16664
- msgid "Unknown parent album:"
16665
- msgstr "Neznámé nadřazené album:"
16666
-
16667
- #: wppa-upload.php:1524
16668
- msgid "--- none --- used."
16669
- msgstr "--- žádné --- použito."
16670
-
16671
- #: wppa-upload.php:1584
16672
- #, php-format
16673
- msgid "This album has been converted from ngg gallery %s"
16674
- msgstr "Toto album bylo konvertováno z ngg galerie %s"
16675
-
16676
- #: wppa-upload.php:1602
16677
- msgid "Processing files, please wait..."
16678
- msgstr "Zpracovávám soubory, čekejte prosím ..."
16679
-
16680
- #: wppa-upload.php:1602
16681
- msgid ""
16682
- "If the line of dots stops growing or your browser reports Ready, your server "
16683
- "has given up. In that case: try again"
16684
- msgstr ""
16685
- "Pokud řádek teček zastaví růst nebo váš prohlížeč ohlásí připraveno, pak to "
16686
- "váš server vzdal. V tom případě: zkuste to znovu"
16687
-
16688
- #: wppa-upload.php:1602
16689
- msgid "here."
16690
- msgstr "zde."
16691
-
16692
- #: wppa-upload.php:1720
16693
- #, php-format
16694
- msgid "Photo %s already exists in album %s. (1)"
16695
- msgstr "Fotografie %s již v albu %s existuje. (1)"
16696
-
16697
- #: wppa-upload.php:1721
16698
- msgid "Duplicate"
16699
- msgstr "Duplicitní"
16700
-
16701
- #: wppa-upload.php:1742
16702
- #, php-format
16703
- msgid "Error inserting photo %s, unknown or non existent album."
16704
- msgstr "Chyba při vkládání fotografie %s, neznámé nebo neexistující album."
16705
-
16706
- #: wppa-upload.php:1750
16707
- #, php-format
16708
- msgid "Time out. %s photos imported. Please restart this operation."
16709
- msgstr ""
16710
- "Časový limit. %s fotografií importováno. Prosím restartujte tuto operaci."
16711
-
16712
- #: wppa-upload.php:1784 wppa-upload.php:1845
16713
- msgid "Unknown album"
16714
- msgstr "Neznámé album"
16715
-
16716
- #: wppa-upload.php:1835
16717
- #, php-format
16718
- msgid "Error inserting video %s, unknown or non existent album."
16719
- msgstr "Chyba při vkládání videa %s, neznámé nebo neexistující album."
16720
-
16721
- #: wppa-upload.php:1896
16722
- #, php-format
16723
- msgid "Error inserting audio %s, unknown or non existent album."
16724
- msgstr "Chyba při vkládání audia %s, neznámé nebo neexistující album."
16725
-
16726
- #: wppa-upload.php:1912
16727
- msgid "Custom datafields enabled"
16728
- msgstr "Uživatelská datová pole povolena"
16729
-
16730
- #: wppa-upload.php:1943 wppa-upload.php:1944
16731
- msgid "Processing"
16732
- msgstr "Zpracovává se"
16733
-
16734
- #: wppa-upload.php:1953
16735
- msgid "Can not open file. Can not continue. (1)"
16736
- msgstr "Soubor nelze otevřít. Nelze pokračovat. (1)"
16737
-
16738
- #: wppa-upload.php:1958
16739
- msgid "Can not open file. Can not continue. (2)"
16740
- msgstr "Soubor nelze otevřít. Nelze pokračovat. (2)"
16741
-
16742
- #: wppa-upload.php:1965
16743
- msgid "Can not read header. Can not continue."
16744
- msgstr "Nelze přečíst hlavičku. Nelze pokračovat."
16745
-
16746
- #: wppa-upload.php:1970
16747
- msgid "Read header:"
16748
- msgstr "Číst header:"
16749
-
16750
- #: wppa-upload.php:1975
16751
- msgid "Invalid header. Can not continue."
16752
- msgstr "Neplatná hlavička. Nelze pokračovat."
16753
-
16754
- #: wppa-upload.php:1982
16755
- msgid "Invalid header. First item must be 'name', 'photoname' or 'filename'"
16756
- msgstr ""
16757
- "Neplatná hlavička. První položka musí být \"název\", \"název snímku\" nebo "
16758
- "\"název souboru\""
16759
-
16760
- #: wppa-upload.php:1989
16761
- msgid "All available custom data fields are in use. There is no space for"
16762
- msgstr ""
16763
- "Všechna dostupná uživatelská datová pole jsou používána. Neexistuje žádný "
16764
- "prostor pro"
16765
-
16766
- #: wppa-upload.php:2000
16767
- #, php-format
16768
- msgid "New caption %s added."
16769
- msgstr "Nový titulek %s přidán."
16770
-
16771
- #: wppa-upload.php:2018
16772
- msgid "Read data:"
16773
- msgstr "Čist data:"
16774
-
16775
- #: wppa-upload.php:2087
16776
- msgid "Done processing files."
16777
- msgstr "Zpracování souborů ukončeno."
16778
-
16779
- #: wppa-upload.php:2090
16780
- msgid "No files to import."
16781
- msgstr "Žádné soubory k importu."
16782
-
16783
- #: wppa-upload.php:2094
16784
- msgid "Zipfiles extracted."
16785
- msgstr "Zip archivy extrahovány."
16786
-
16787
- #: wppa-upload.php:2095
16788
- msgid "Albums created."
16789
- msgstr "Alba vytvořena."
16790
-
16791
- #: wppa-upload.php:2096
16792
- msgid "Directory to album imports."
16793
- msgstr "Adresář se importuje do alba."
16794
-
16795
- #: wppa-upload.php:2097
16796
- #, php-format
16797
- msgid "With total %s photos."
16798
- msgstr "S celkem %s fotografií."
16799
-
16800
- #: wppa-upload.php:2100
16801
- msgid "Photos updated"
16802
- msgstr "Fotografie aktualizovány"
16803
-
16804
- #: wppa-upload.php:2102
16805
- #, php-format
16806
- msgid "to %s locations"
16807
- msgstr "na %s lokací."
16808
-
16809
- #: wppa-upload.php:2106
16810
- msgid "single photos imported."
16811
- msgstr "Single fotografie nahrány."
16812
-
16813
- #: wppa-upload.php:2109
16814
- msgid "Videos imported."
16815
- msgstr "Videa importována."
16816
-
16817
- #: wppa-upload.php:2112
16818
- msgid "Audios imported."
16819
- msgstr "Audia importována."
16820
-
16821
- #: wppa-upload.php:2115
16822
- msgid "CSVs imported,"
16823
- msgstr "CSV importovány,"
16824
-
16825
- #: wppa-upload.php:2117
16826
- msgid "photos skipped."
16827
- msgstr "fotografií vynecháno."
16828
-
16829
- #: wppa-upload.php:2247
16830
- msgid "Error: unexpected fgets() fail in wppa_get_meta_data()."
16831
- msgstr "Chyba: Neočekávané selhání fgets() v wppa_get_meta_data()."
16832
-
16833
- #: wppa-upload.php:2268
16834
- msgid "Class ZipArchive does not exist! Check your php configuration"
16835
- msgstr "Třída ZipArchive neexistuje! Zkontrolujte konfiguraci vašeho PHP"
16836
-
16837
- #: wppa-upload.php:2298
16838
- #, php-format
16839
- msgid ""
16840
- "File %s is of an unsupported filetype and has been ignored during extraction."
16841
- msgstr ""
16842
- "Soubor %s je nepodporovaného typu a byl v průběhu rozbalování archivu "
16843
- "ignorován."
16844
-
16845
- #: wppa-upload.php:2304
16846
- #, php-format
16847
- msgid "Zipfile %s processed. %s files extracted, %s files skipped."
16848
- msgstr "ZipArchiv %s zpracován. Extrahováno %s souborů. přeskočeno %s souborů."
16849
-
16850
- #: wppa-upload.php:2307
16851
- msgid "Failed to extract"
16852
- msgstr "Nepodařilo se rozbalit"
16853
-
16854
- #: wppa-upload.php:2373
16855
- #, php-format
16856
- msgid "Page <a href=\"%s\" target=\"_blank\" >%s</a> created."
16857
- msgstr "Stránka <a href=\"%s\" target=\"_blank\">%s</a> byla vytvořena."
16858
-
16859
- #: wppa-upload.php:2377
16860
- msgid "Could not create page."
16861
- msgstr "Stránku nelze vytvořit."
16862
-
16863
- #: wppa-upload.php:2490
16864
- msgid "--- My depot --- "
16865
- msgstr "--- moje úložiště ---"
16866
-
16867
- #: wppa-upload.php:2499
16868
- msgid "--- Ngg Galleries --- "
16869
- msgstr "--- Ngg galerie ---"
16870
-
16871
- #: wppa-utils.php:282
16872
- #, php-format
16873
- msgid "Rating: %s"
16874
- msgstr "Hlasování: %s"
16875
-
16876
- #: wppa-utils.php:846 wppa-utils.php:857 wppa-utils.php:868
16877
- msgid "Notification of inappropriate image"
16878
- msgstr "Upozornění na nevhodný obrázek"
16879
-
16880
- #: wppa-utils.php:847 wppa-utils.php:858 wppa-utils.php:869
16881
- #, php-format
16882
- msgid "Photo %s has been marked as inappropriate by %s different visitors."
16883
- msgstr "Fotografie %s byla označena jako nevhodná %s různými návštěvníky."
16884
-
16885
- #: wppa-utils.php:859
16886
- msgid "The status has been changed to 'pending'."
16887
- msgstr "Stav změměn na 'čekající'."
16888
-
16889
- #: wppa-utils.php:870
16890
- msgid "It has been deleted."
16891
- msgstr "Smazáno."
16892
-
16893
- #: wppa-utils.php:931
16894
- #, php-format
16895
- msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
16896
- msgstr "Návštěvníkův email je: <a href=\"mailto:%s\">%s</a>"
16897
-
16898
- #: wppa-utils.php:936
16899
- #, php-format
16900
- msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
16901
- msgstr "Návštěvník říká, že je jeho email je: <a href=\"mailto:%s\">%s</a>"
16902
-
16903
- #: wppa-utils.php:944
16904
- #, php-format
16905
- msgid ""
16906
- "This message is automaticly generated at %s. It is useless to respond to it."
16907
- msgstr ""
16908
- "Táto zpráva je automaticky generovaná - %s. Je zbytečné na ní reagovať."
16909
-
16910
- #: wppa-utils.php:1195
16911
- #, php-format
16912
- msgid "Time out after processing %s items."
16913
- msgstr "Čas vypršel po zpracování %s položek."
16914
-
16915
- #: wppa-utils.php:1198 wppa-utils.php:1202
16916
- #, php-format
16917
- msgid "Time out after processing %s items. Please restart this operation"
16918
- msgstr "Čas vypršel po zpracování %s položek. Prosím restartujte opraci"
16919
-
16920
- #: wppa-video.php:188
16921
- msgid ""
16922
- "There is no filetype available for your browser, or your browser does not "
16923
- "support html5 video"
16924
- msgstr ""
16925
- "Pro váš prohlížeč není k dispozici žádný typ souboru, nebo váš prohlížeč "
16926
- "nepodporuje HTML5 video."
16927
-
16928
- #: wppa-watermark.php:528
16929
- msgid "--- text: name ---"
16930
- msgstr "--- text: název ---"
16931
-
16932
- #: wppa-watermark.php:530
16933
- msgid "--- text: filename ---"
16934
- msgstr "--- text název souboru ---"
16935
-
16936
- #: wppa-watermark.php:532
16937
- msgid "--- text: description ---"
16938
- msgstr "--- text: popis ---"
16939
-
16940
- #: wppa-watermark.php:534
16941
- msgid "--- text: pre-defined ---"
16942
- msgstr "--- text: předdefinováno ---"
16943
-
16944
- #: wppa-widget-admin.php:34
16945
- msgid "Widget Photo Width."
16946
- msgstr "Šířka Foto widgetu"
16947
-
16948
- #: wppa-widget-admin.php:39
16949
- msgid "Changes Saved. Don't forget to activate the widget!"
16950
- msgstr "Změny uloženy. Nezapomeňte aktivovat widget!"
16951
-
16952
- #: wppa-widget-admin.php:49
16953
- msgid "Photo of the Day Widget Settings"
16954
- msgstr "Nastavení widgetu Fotografie dne"
16955
-
16956
- #: wppa-widget-admin.php:58
16957
- msgid "Widget Title:"
16958
- msgstr "Titulek Widgetu"
16959
-
16960
- #: wppa-widget-admin.php:62
16961
- msgid ""
16962
- "Enter/modify the title for the widget. This is a default and can be "
16963
- "overriden at widget activation."
16964
- msgstr ""
16965
- "Zadat/změnit název widgetu. Toto je výchozí nastavení a může být přepsáno "
16966
- "při aktivaci widgetu."
16967
-
16968
- #: wppa-widget-admin.php:68
16969
- msgid "Widget Photo Width:"
16970
- msgstr "Šířka Foto widgetu:"
16971
-
16972
- #: wppa-widget-admin.php:81
16973
- msgid ""
16974
- "Enter the desired display width and alignment of the photo in the sidebar."
16975
- msgstr ""
16976
- "Zadejte požadovanou šířku zobrazení a zarovnání fotografie v postranním "
16977
- "panelu."
16978
-
16979
- #: wppa-widget-admin.php:87
16980
- msgid "Use album(s):"
16981
- msgstr "Použít Album:"
16982
-
16983
- #: wppa-widget-admin.php:103
16984
- msgid "Select:"
16985
- msgstr "Vybrat:"
16986
-
16987
- #: wppa-widget-admin.php:105
16988
- msgid "Or Edit:"
16989
- msgstr "nebo Upravit:"
16990
-
16991
- #: wppa-widget-admin.php:106
16992
- msgid "Update thumbnails"
16993
- msgstr "Aktualizovat miniatury"
16994
-
16995
- #: wppa-widget-admin.php:108
16996
- msgid ""
16997
- "Select or edit the album(s) you want to use the photos of for the widget."
16998
- msgstr ""
16999
- "Vyberte nebo upravte alba, ze kterých chcete použít fotografie pro widget."
17000
-
17001
- #: wppa-widget-admin.php:110
17002
- msgid ""
17003
- "If you want a <b>- special -</b> selection or get rid of it, you may need to "
17004
- "use <b>- start over -</b> first."
17005
- msgstr ""
17006
- "Chcete-li <b>- zvláštní -</b> výběr nebo se jej zbavit, budete muset "
17007
- "nejdříve použít <b>- začít znovu -</b>."
17008
-
17009
- #: wppa-widget-admin.php:117
17010
- msgid "Status filter:"
17011
- msgstr "Filtr stavu:"
17012
-
17013
- #: wppa-widget-admin.php:123
17014
- msgid "- none -"
17015
- msgstr "--- žádný ---"
17016
-
17017
- #: wppa-widget-admin.php:129
17018
- msgid "Any medal"
17019
- msgstr "Jakákoli medaile"
17020
-
17021
- #: wppa-widget-admin.php:135
17022
- msgid "Display method:"
17023
- msgstr "Metoda zobrazení:"
17024
-
17025
- #: wppa-widget-admin.php:141
17026
- msgid "Fixed photo"
17027
- msgstr "Pevně zvolená fotografie"
17028
-
17029
- #: wppa-widget-admin.php:143
17030
- msgid "Last upload"
17031
- msgstr "Poslední nahraná fotografie"
17032
-
17033
- #: wppa-widget-admin.php:144
17034
- msgid "Change every"
17035
- msgstr "Změna každý"
17036
-
17037
- #: wppa-widget-admin.php:148
17038
- msgid "pageview."
17039
- msgstr "zobrazení stránky."
17040
-
17041
- #: wppa-widget-admin.php:149
17042
- msgid "hour."
17043
- msgstr "hodinu/y."
17044
-
17045
- #: wppa-widget-admin.php:150
17046
- msgid "day."
17047
- msgstr "den."
17048
-
17049
- #: wppa-widget-admin.php:151
17050
- msgid "week."
17051
- msgstr "týden."
17052
-
17053
- #: wppa-widget-admin.php:152
17054
- msgid "month."
17055
- msgstr "měsíc."
17056
-
17057
- #: wppa-widget-admin.php:153
17058
- msgid "day of week is order#"
17059
- msgstr "den v týdnu řídí pořadí#"
17060
-
17061
- #: wppa-widget-admin.php:154
17062
- msgid "day of month is order#"
17063
- msgstr "den v měsíci řídí pořadí#"
17064
-
17065
- #: wppa-widget-admin.php:156
17066
- msgid "Select how the widget should display."
17067
- msgstr "Vyberte, jak by měl být widget zobrazen."
17068
-
17069
- #: wppa-widget-admin.php:167
17070
- msgid "Links are set on the <b>Photo Albums -> Settings</b> screen."
17071
- msgstr "Odkazy jsou uvedeny na obrazovce <b>Fotoalba-> Nastavení</b> ."
17072
-
17073
- #: wppa-widget-admin.php:179
17074
- msgid "Url:"
17075
- msgstr "URL:"
17076
-
17077
- #: wppa-widget-admin.php:181
17078
- msgid "Enter the title and the url. Do'nt forget the HTTP://"
17079
- msgstr "Zadejte název a URL adresu. Nezapomeňte HTTP://"
17080
-
17081
- #: wppa-widget-admin.php:194
17082
- msgid "Photo Name"
17083
- msgstr "Název fotografie."
17084
-
17085
- #: wppa-widget-admin.php:198
17086
- msgid "Select the content of the subtitle."
17087
- msgstr "Vyberte obsah podnázvu."
17088
-
17089
- #: wppa-widget-functions.php:151
17090
- msgid "- select (another) album or a set -"
17091
- msgstr "- vyber (další) album nebo soubor -"
17092
-
17093
- #: wppa-widget-functions.php:186
17094
- msgid "- all albums -"
17095
- msgstr "- všechna alba -"
17096
-
17097
- #: wppa-widget-functions.php:188
17098
- msgid "- all -separate- albums -"
17099
- msgstr "- všechna separátní alba -"
17100
-
17101
- #: wppa-widget-functions.php:190
17102
- msgid "- all albums except -separate-"
17103
- msgstr "- všechna alba kromě separátních -"
17104
-
17105
- #: wppa-widget-functions.php:192
17106
- msgid "- top rated photos -"
17107
- msgstr "- nejlépe hodnocené -"
17108
-
17109
- #: wppa-widget-functions.php:193
17110
- msgid "- start over -"
17111
- msgstr "- začít znovu -"
17112
-
17113
- #: wppa.php:358
17114
- msgid ""
17115
- "</strong><h3>WP Photo ALbum Plus Error message</h3>This is a multi site "
17116
- "installation. One of the following 3 lines must be entered in wp-config.php:"
17117
- msgstr ""
17118
- "</strong><h3>WPPA+ Chybová hláška</h3>Toto je multi síťová instalace. Jeden "
17119
- "z následujících třech řádků musí být vložen do wp-config.php:"
17120
-
17121
- #: wppa.php:359
17122
- msgid ""
17123
- "<br /><br /><b>define( 'WPPA_MULTISITE_INDIVIDUAL', true );</b> <small>// "
17124
- "Multisite WP 3.5 or later with every site its own albums and photos</small>"
17125
- msgstr ""
17126
- "<br /><br /><b>define( 'WPPA_MULTISITE_INDIVIDUAL', true );</b> <small>// "
17127
- "Multi síťový WP 3.5 nebo novější s vlastními alby a fotografiemi pro každou "
17128
- "síť</small>"
17129
-
17130
- #: wppa.php:360
17131
- msgid ""
17132
- "<br /><b>define( 'WPPA_MULTISITE_BLOGSDIR', true );</b> <small>// Multisite "
17133
- "prior to WP 3.5 with every site its own albums and photos</small>"
17134
- msgstr ""
17135
- "<br /><b>define( 'WPPA_MULTISITE_BLOGSDIR', true );</b> <small>// Multi "
17136
- "síťový WP starší než verze 3.5 s vlastními alby a fotografiemi pro každou "
17137
- "síť</small>"
17138
-
17139
- #: wppa.php:361
17140
- msgid ""
17141
- "<br /><b>define( 'WPPA_MULTISITE_GLOBAL', true );</b> <small>// Multisite "
17142
- "with one common set of albums and photos</small>"
17143
- msgstr ""
17144
- "<br /><b>define( 'WPPA_MULTISITE_GLOBAL', true );</b> <small>// Multi síťový "
17145
- "WP se společnými alby a fotografiemi</small>"
17146
-
17147
- #: wppa.php:362
17148
- msgid ""
17149
- "<br /><br />For more information see: <a href=\"https://wordpress.org/"
17150
- "plugins/wp-photo-album-plus/faq/\">the faq</a>"
17151
- msgstr ""
17152
- "<br /><br />Další informace naleznete zde: <a href=\"https://wordpress.org/"
17153
- "plugins/wp-photo-album-plus/faq/\">the FAQ</a>"
17154
-
17155
- #: wppa.php:363
17156
- msgid ""
17157
- "<br /><br /><em>If you upload photos, they will be placed in the wrong "
17158
- "location and will not be visible for visitors!</em><strong>"
17159
- msgstr ""
17160
- "<br /><br /><em>Když nahrajete fotografie, budou umístěny do špatných "
17161
- "adresářů a nebudou viditelné pro návštěvníky!</em><strong>"
17162
-
17163
- #: wppa.php:380
17164
- msgid ""
17165
- "</strong>The photo index table needs to be rebuilt. Please run <b>Photo "
17166
- "Albums -> Settings</b> admin page <b>Table VIII-A9</b><strong>"
17167
- msgstr ""
17168
- "</strong>Tabulka indexů fotografií musí být obnovena. Prosím "
17169
- "spusťte<b>Fotoalba -> Nastavení</b> administarce <b>Tabulka VIII - A9</"
17170
- "b><strong>"
17171
-
17172
- #: wppa.php:384
17173
- msgid ""
17174
- "</strong>The album index table needs to be rebuilt. Please run <b>Photo "
17175
- "Albums -> Settings</b> admin page <b>Table VIII-A8</b><strong>"
17176
- msgstr ""
17177
- "</strong>Tabulka indexů alb musí být obnovena. Prosím spusťte<b>Fotoalba -> "
17178
- "Nastavení</b> administarce <b>Tabulka VIII - A8</b><strong>"
17179
-
17180
- #: wppa.php:388
17181
- msgid ""
17182
- "</strong>The avarage ratings need to be recalculated. Please run <b>Photo "
17183
- "Albums -> Settings</b> admin page <b>Table VIII-A5</b><strong>"
17184
- msgstr ""
17185
- "</strong>Průměrná hodnocení musí být přepočítána. Prosím spusťte<b>Fotoalba -"
17186
- "> Nastavení</b> administarce <b>Tabulka VIII - A5</b><strong>"
17187
-
17188
- #: wppa.php:408
17189
- msgid ""
17190
- "</strong>The tags system needs to be converted. Please run <b>Photo Albums -"
17191
- "> Settings</b> admin page <b>Table VIII-B16</b><strong>"
17192
- msgstr ""
17193
- "</strong>Systém štítků musí být zkonvertován. Prosím spusťte<b>Fotoalba -> "
17194
- "Nastavení</b> administarce <b>Tabulka VIII - B16</b><strong>"
17195
-
17196
- #: wppa.php:426
17197
- msgid ""
17198
- "</strong>The cats system needs to be converted. Please run <b>Photo Albums -"
17199
- "> Settings</b> admin page <b>Table VIII-B17</b><strong>"
17200
- msgstr ""
17201
- "</strong>Systém kategorií musí být zkonvertován. Prosím spusťte<b>Fotoalba -"
17202
- "> Nastavení</b> administarce <b>Tabulka VIII - B17</b><strong>"
17203
-
17204
- #. Plugin Name of the plugin/theme
17205
- msgid "WP Photo Album Plus"
17206
- msgstr "WP Photo Album Plus"
17207
-
17208
- #. Plugin URI of the plugin/theme
17209
- msgid "http://wordpress.org/extend/plugins/wp-photo-album-plus/"
17210
- msgstr "http://wordpress.org/extend/plugins/wp-photo-album-plus/"
17211
-
17212
- #. Description of the plugin/theme
17213
- msgid ""
17214
- "Easily manage and display your photo albums and slideshows within your "
17215
- "WordPress site."
17216
- msgstr ""
17217
- "Snadno spravujte a zobrazujte vaše fotoalba a prezentace v rámci vašeho webu "
17218
- "WordPress."
17219
-
17220
- #. Author of the plugin/theme
17221
- msgid "J.N. Breetvelt a.k.a. OpaJaap"
17222
- msgstr "J.N. Breetvelt a.k.a. OpaJaap"
17223
-
17224
- #. Author URI of the plugin/theme
17225
- msgid "http://wppa.opajaap.nl/"
17226
- msgstr "http://wppa.opajaap.nl/"
17227
-
17228
- #~ msgid "New!"
17229
- #~ msgstr "Nová!"
17230
-
17231
- #~ msgid "New"
17232
- #~ msgstr "Nová"
17233
-
17234
- #~ msgid "illegal files deleted."
17235
- #~ msgstr "nelegálních souborů odstraněno."
17236
-
17237
- #~ msgid "--- My depot ---"
17238
- #~ msgstr "--- moje úložiště ---"
17239
-
17240
- #~ msgid "- - - Voting enabled - - -"
17241
- #~ msgstr "--- Hlasování povoleno ---"
17242
-
17243
- #~ msgid "- - - Rating enabled - - -"
17244
- #~ msgstr "--- Hodnocení povoleno ---"
17245
-
17246
- #~ msgid "Filter priority"
17247
- #~ msgstr "Priority filtru"
17248
-
17249
- #~ msgid "Shortcode_priority"
17250
- #~ msgstr "Priorita krátkého kódu"
17251
-
17252
- #~ msgid "Ready uploading to Cloudinary"
17253
- #~ msgstr "Připraven k nahrávání na Cloudinary"
17254
-
17255
- #~ msgid "Unexpected error: Photo %s does not exist!"
17256
- #~ msgstr "Neočekávaná chyba: Fotografie %s neexistuje!"
17257
-
17258
- #, fuzzy
17259
- #~ msgid "Update uploads"
17260
- #~ msgstr "Album:"
17261
-
17262
- #, fuzzy
17263
- #~ msgid "- featured photos -"
17264
- #~ msgstr "Nejlépe hodnocené fotky"
17265
-
17266
- #~ msgid "%s Comments"
17267
- #~ msgstr "%s komentářů"
17268
-
17269
- #, fuzzy
17270
- #~ msgid "%s uploads failed."
17271
- #~ msgstr "Nahrávání selhalo"
17272
-
17273
- #~ msgid ""
17274
- #~ "There are %s photos found. Only the first %s will be shown. Please refine "
17275
- #~ "your search criteria."
17276
- #~ msgstr ""
17277
- #~ "Bylo nalezeno %s fotek. Je zobrazeno pouze prvních %s. Zpřesněte prosím "
17278
- #~ "vyhledávací podmínku."
17279
-
17280
- #~ msgid "%s back"
17281
- #~ msgstr "Vrátit zpět o %s fotek"
17282
-
17283
- #~ msgid "%s forward"
17284
- #~ msgstr "Posunout dopředu o %s fotek"
17285
-
17286
- #~ msgid "Share %s on Facebook"
17287
- #~ msgstr "Sdílet %s na Facebooku"
17288
-
17289
- #~ msgid "Please select a search results landing page in Table IX-C1"
17290
- #~ msgstr ""
17291
- #~ "Vyberte prosím cílovou stránku pro výsledky vyhledávání v Table IX-C1"
17292
-
17293
- #~ msgid "Please select a super view widget landing page in Table VI-C"
17294
- #~ msgstr "Vyberte prosím cílovou stránku pro super view widget v Table VI-C"
17295
-
17296
- #~ msgid "Tip %s on Hyves"
17297
- #~ msgstr "Tip %s na Hyves"
17298
-
17299
- #, fuzzy
17300
- #~ msgid "Share on Hyves"
17301
- #~ msgstr "Podiel %s na Pinterest"
17302
-
17303
- #~ msgid "<b>ERROR: Attempt to enter an invalid rating.</b>"
17304
- #~ msgstr "<b>Chyba: Pokus o vstup rating neplatný.</b>"
17305
-
17306
- #~ msgid "Upload Photo(s)"
17307
- #~ msgstr "Odovzdať fotografie (y)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: opajaap
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-Plus&item_number=Support-Open-Source&currency_code=USD&lc=US
4
  Tags: photo, album, gallery, slideshow, video, audio, lightbox, iptc, exif, cloudinary, fotomoto
5
- Version: 6.3.14
6
- Stable tag: 6.3.13
7
  Author: J.N. Breetvelt
8
  Author URI: http://www.opajaap.nl/
9
  Requires at least: 3.9
@@ -189,6 +189,18 @@ Oh, just Google on 'picture resizer' and you will find a bunch of free programs
189
 
190
  See for additional information: http://wppa.opajaap.nl/changelog/
191
 
 
 
 
 
 
 
 
 
 
 
 
 
192
  = 6.3.14 =
193
 
194
  = Bug Fixes =
2
  Contributors: opajaap
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-Plus&item_number=Support-Open-Source&currency_code=USD&lc=US
4
  Tags: photo, album, gallery, slideshow, video, audio, lightbox, iptc, exif, cloudinary, fotomoto
5
+ Version: 6.3.15
6
+ Stable tag: 6.3.14
7
  Author: J.N. Breetvelt
8
  Author URI: http://www.opajaap.nl/
9
  Requires at least: 3.9
189
 
190
  See for additional information: http://wppa.opajaap.nl/changelog/
191
 
192
+ = 6.3.15 =
193
+
194
+ = Bug Fixes =
195
+
196
+ * The keyboard handler for lightbox processed keystrokes twice. Fixed.
197
+ * The spinner on lightbox now behaves as designed.
198
+
199
+ = Other Changes =
200
+
201
+ * Removed Chech language files, they are now provided by wp polyglot system.
202
+ * Noticable improved (pre)loading algorithm for lightbox sets.
203
+
204
  = 6.3.14 =
205
 
206
  = Bug Fixes =
wppa-non-admin.php CHANGED
@@ -639,6 +639,7 @@ global $wppa_init_js_data;
639
  /* add the optionslug to $init_js_critical[] in wppa_update_option in wppa-utils.php !!!!! */
640
  $content .= '
641
  wppaVersion = "'.$wppa_api_version.'";
 
642
  wppaBackgroundColorImage = "'.wppa_opt( 'bgcolor_img' ).'";
643
  wppaPopupLinkType = "'.wppa_opt( 'thumb_linktype' ).'";
644
  wppaAnimationType = "'.wppa_opt( 'animation_type' ).'";
639
  /* add the optionslug to $init_js_critical[] in wppa_update_option in wppa-utils.php !!!!! */
640
  $content .= '
641
  wppaVersion = "'.$wppa_api_version.'";
642
+ wppaDebug = '.( wppa_switch( 'allow_debug' ) ? 'true' : 'false' ).';
643
  wppaBackgroundColorImage = "'.wppa_opt( 'bgcolor_img' ).'";
644
  wppaPopupLinkType = "'.wppa_opt( 'thumb_linktype' ).'";
645
  wppaAnimationType = "'.wppa_opt( 'animation_type' ).'";
wppa-slideshow.php CHANGED
@@ -371,7 +371,7 @@ function wppa_slide_frame() {
371
  ' style="' .
372
  'background-color:transparent;' .
373
  'border:none;' .
374
- 'z-index:183;' .
375
  'position:absolute;' .
376
  'top:50%;' .
377
  'margin-top:-' . ( wppa_opt('left_right_symbol_size') / 2 ) . 'px;' .
@@ -395,7 +395,7 @@ function wppa_slide_frame() {
395
  ' style="' .
396
  'background-color:transparent;' .
397
  'border:none;' .
398
- 'z-index:183;' .
399
  'position:absolute;' .
400
  'top:50%;' .
401
  'margin-top:-' . ( wppa_opt('left_right_symbol_size') / 2 ) . 'px;' .
@@ -1108,7 +1108,7 @@ function wppa_startstop_icons() {
1108
  'margin-left:' . ( - $size / '2' ) . 'px;' .
1109
  'top:50%;' .
1110
  'margin-top:' . ( - $size / '2' ) . 'px;' .
1111
- 'z-index:100;' .
1112
  'width:' . $size . 'px;' .
1113
  'border-radius:' . $curv . 'px;' .
1114
  'opacity:0.8;' .
371
  ' style="' .
372
  'background-color:transparent;' .
373
  'border:none;' .
374
+ 'z-index:85;' .
375
  'position:absolute;' .
376
  'top:50%;' .
377
  'margin-top:-' . ( wppa_opt('left_right_symbol_size') / 2 ) . 'px;' .
395
  ' style="' .
396
  'background-color:transparent;' .
397
  'border:none;' .
398
+ 'z-index:85;' .
399
  'position:absolute;' .
400
  'top:50%;' .
401
  'margin-top:-' . ( wppa_opt('left_right_symbol_size') / 2 ) . 'px;' .
1108
  'margin-left:' . ( - $size / '2' ) . 'px;' .
1109
  'top:50%;' .
1110
  'margin-top:' . ( - $size / '2' ) . 'px;' .
1111
+ 'z-index:90;' .
1112
  'width:' . $size . 'px;' .
1113
  'border-radius:' . $curv . 'px;' .
1114
  'opacity:0.8;' .
wppa.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * Plugin Name: WP Photo Album Plus
4
  * Description: Easily manage and display your photo albums and slideshows within your WordPress site.
5
- * Version: 6.3.14
6
  * Author: J.N. Breetvelt a.k.a. OpaJaap
7
  * Author URI: http://wppa.opajaap.nl/
8
  * Plugin URI: http://wordpress.org/extend/plugins/wp-photo-album-plus/
@@ -29,12 +29,12 @@ global $wpdb;
29
  /* when new options are added and when the wppa_setup() routine
30
  /* must be called right after update for any other reason.
31
  */
32
- global $wppa_revno; $wppa_revno = '6314';
33
 
34
  /* This is the api interface version number
35
  /* It is incremented at any code change.
36
  */
37
- global $wppa_api_version; $wppa_api_version = '6-3-14-000';
38
 
39
  /* start timers */
40
  global $wppa_starttime; $wppa_starttime = microtime(true);
2
  /*
3
  * Plugin Name: WP Photo Album Plus
4
  * Description: Easily manage and display your photo albums and slideshows within your WordPress site.
5
+ * Version: 6.3.15
6
  * Author: J.N. Breetvelt a.k.a. OpaJaap
7
  * Author URI: http://wppa.opajaap.nl/
8
  * Plugin URI: http://wordpress.org/extend/plugins/wp-photo-album-plus/
29
  /* when new options are added and when the wppa_setup() routine
30
  /* must be called right after update for any other reason.
31
  */
32
+ global $wppa_revno; $wppa_revno = '6315';
33
 
34
  /* This is the api interface version number
35
  /* It is incremented at any code change.
36
  */
37
+ global $wppa_api_version; $wppa_api_version = '6-3-15-000';
38
 
39
  /* start timers */
40
  global $wppa_starttime; $wppa_starttime = microtime(true);