Table of Contents Plus - Version 1308

Version Description

  • Released: 5 August 2013
  • Fix javascript issue with minimum jQuery version check (broke smooth scrolling using WordPress 3.6).
  • Replaced Slovak translation with a human translated version courtesy Boris Gereg.
  • Remove <!--TOC--> signature from source when using the shortcode but not allowed to print (eg on homepage).
  • Add "separate" attribute for sitemap_posts shortcode to not split by letter, thanks DavidMjps for the suggestion.
Download this release

Release Info

Developer conjur3r
Plugin Icon 128x128 Table of Contents Plus
Version 1308
Comparing to
See all releases

Code changes from version 1303.1 to 1308

Files changed (6) hide show
  1. front.js +2 -6
  2. languages/toc+-sk_SK.mo +0 -0
  3. languages/toc+-sk_SK.po +492 -324
  4. languages/toc+.pot +235 -337
  5. readme.txt +12 -4
  6. toc.php +31 -11
front.js CHANGED
@@ -2,9 +2,7 @@
2
  (function(l){function t(l){return l.replace(/(:|\.)/g,"\\$1")}var e="1.4.10",o={exclude:[],excludeWithin:[],offset:0,direction:"top",scrollElement:null,scrollTarget:null,beforeScroll:function(){},afterScroll:function(){},easing:"swing",speed:400,autoCoefficent:2},r=function(t){var e=[],o=!1,r=t.dir&&"left"==t.dir?"scrollLeft":"scrollTop";return this.each(function(){if(this!=document&&this!=window){var t=l(this);t[r]()>0?e.push(this):(t[r](1),o=t[r]()>0,o&&e.push(this),t[r](0))}}),e.length||this.each(function(){"BODY"===this.nodeName&&(e=[this])}),"first"===t.el&&e.length>1&&(e=[e[0]]),e};l.fn.extend({scrollable:function(l){var t=r.call(this,{dir:l});return this.pushStack(t)},firstScrollable:function(l){var t=r.call(this,{el:"first",dir:l});return this.pushStack(t)},smoothScroll:function(e){e=e||{};var o=l.extend({},l.fn.smoothScroll.defaults,e),r=l.smoothScroll.filterPath(location.pathname);return this.unbind("click.smoothscroll").bind("click.smoothscroll",function(e){var n=this,s=l(this),c=o.exclude,i=o.excludeWithin,a=0,f=0,h=!0,u={},d=location.hostname===n.hostname||!n.hostname,m=o.scrollTarget||(l.smoothScroll.filterPath(n.pathname)||r)===r,p=t(n.hash);if(o.scrollTarget||d&&m&&p){for(;h&&c.length>a;)s.is(t(c[a++]))&&(h=!1);for(;h&&i.length>f;)s.closest(i[f++]).length&&(h=!1)}else h=!1;h&&(e.preventDefault(),l.extend(u,o,{scrollTarget:o.scrollTarget||p,link:n}),l.smoothScroll(u))}),this}}),l.smoothScroll=function(t,e){var o,r,n,s,c=0,i="offset",a="scrollTop",f={},h={};"number"==typeof t?(o=l.fn.smoothScroll.defaults,n=t):(o=l.extend({},l.fn.smoothScroll.defaults,t||{}),o.scrollElement&&(i="position","static"==o.scrollElement.css("position")&&o.scrollElement.css("position","relative"))),o=l.extend({link:null},o),a="left"==o.direction?"scrollLeft":a,o.scrollElement?(r=o.scrollElement,c=r[a]()):r=l("html, body").firstScrollable(),o.beforeScroll.call(r,o),n="number"==typeof t?t:e||l(o.scrollTarget)[i]()&&l(o.scrollTarget)[i]()[o.direction]||0,f[a]=n+c+o.offset,s=o.speed,"auto"===s&&(s=f[a]||r.scrollTop(),s/=o.autoCoefficent),h={duration:s,easing:o.easing,complete:function(){o.afterScroll.call(o.link,o)}},o.step&&(h.step=o.step),r.length?r.stop().animate(f,h):o.afterScroll.call(o.link,o)},l.smoothScroll.version=e,l.smoothScroll.filterPath=function(l){return l.replace(/^\//,"").replace(/(index|default).[a-zA-Z]{3,4}$/,"").replace(/\/$/,"")},l.fn.smoothScroll.defaults=o})(jQuery);jQuery.cookie=function(a,b,c){if(arguments.length>1&&String(b)!=="[object Object]"){c=jQuery.extend({},c);if(b===null||b===undefined){c.expires=-1}if(typeof c.expires==="number"){var d=c.expires,e=c.expires=new Date;e.setDate(e.getDate()+d)}b=String(b);return document.cookie=[encodeURIComponent(a),"=",c.raw?b:encodeURIComponent(b),c.expires?"; expires="+c.expires.toUTCString():"",c.path?"; path="+c.path:"",c.domain?"; domain="+c.domain:"",c.secure?"; secure":""].join("")}c=b||{};var f,g=c.raw?function(a){return a}:decodeURIComponent;return(f=(new RegExp("(?:^|; )"+encodeURIComponent(a)+"=([^;]*)")).exec(document.cookie))?g(f[1]):null}
3
  jQuery(document).ready(function($){if(typeof tocplus!='undefined'){$.fn.shrinkTOCWidth=function(){$(this).css({width:'auto',display:'table'});if($.browser.msie&&parseInt($.browser.version)==7)
4
  $(this).css('width','');}
5
- if(tocplus.smooth_scroll==1){var target=hostname=pathname=qs=hash=null;$('body a').click(function(event){if(minVersion('1.6')){hostname=$(this).prop('hostname');pathname=$(this).prop('pathname');qs=$(this).prop('search');hash=$(this).prop('hash');}
6
- else{hostname=$(this).attr('hostname');pathname=$(this).attr('pathname');qs=$(this).attr('search');hash=$(this).attr('hash');}
7
- if(pathname.length>0){if(pathname.charAt(0)!='/'){pathname='/'+pathname;}}
8
  if((window.location.hostname==hostname)&&(window.location.pathname==pathname)&&(window.location.search==qs)&&(hash!=='')){var hash_selector=hash.replace(/([ !"$%&'()*+,.\/:;<=>?@[\]^`{|}~])/g,'\\$1');if($(hash_selector).length>0)
9
  target=hash;else{anchor=hash;anchor=anchor.replace('#','');target='a[name="'+anchor+'"]';if($(target).length==0)
10
  target='';}
@@ -25,6 +23,4 @@ $.cookie('tocplus_hidetoc','1',{expires:30,path:'/'});}
25
  $('ul.toc_list').hide('fast');$('#toc_container').addClass('contracted').shrinkTOCWidth();break;case $('<div/>').html(tocplus.visibility_show).text():default:$(this).html(tocplus.visibility_hide);if($.cookie){if(invert)
26
  $.cookie('tocplus_hidetoc','1',{expires:30,path:'/'});else
27
  $.cookie('tocplus_hidetoc',null,{path:'/'});}
28
- $('#toc_container').css('width',tocplus.width).removeClass('contracted');$('ul.toc_list').show('fast');}});}}
29
- function minVersion(version){var $vrs=window.jQuery.fn.jquery.split('.'),min=version.split('.');for(var i=0,len=$vrs.length;i<len;i++){if(min[i]&&$vrs[i]<min[i]){return false;}}
30
- return true;}});
2
  (function(l){function t(l){return l.replace(/(:|\.)/g,"\\$1")}var e="1.4.10",o={exclude:[],excludeWithin:[],offset:0,direction:"top",scrollElement:null,scrollTarget:null,beforeScroll:function(){},afterScroll:function(){},easing:"swing",speed:400,autoCoefficent:2},r=function(t){var e=[],o=!1,r=t.dir&&"left"==t.dir?"scrollLeft":"scrollTop";return this.each(function(){if(this!=document&&this!=window){var t=l(this);t[r]()>0?e.push(this):(t[r](1),o=t[r]()>0,o&&e.push(this),t[r](0))}}),e.length||this.each(function(){"BODY"===this.nodeName&&(e=[this])}),"first"===t.el&&e.length>1&&(e=[e[0]]),e};l.fn.extend({scrollable:function(l){var t=r.call(this,{dir:l});return this.pushStack(t)},firstScrollable:function(l){var t=r.call(this,{el:"first",dir:l});return this.pushStack(t)},smoothScroll:function(e){e=e||{};var o=l.extend({},l.fn.smoothScroll.defaults,e),r=l.smoothScroll.filterPath(location.pathname);return this.unbind("click.smoothscroll").bind("click.smoothscroll",function(e){var n=this,s=l(this),c=o.exclude,i=o.excludeWithin,a=0,f=0,h=!0,u={},d=location.hostname===n.hostname||!n.hostname,m=o.scrollTarget||(l.smoothScroll.filterPath(n.pathname)||r)===r,p=t(n.hash);if(o.scrollTarget||d&&m&&p){for(;h&&c.length>a;)s.is(t(c[a++]))&&(h=!1);for(;h&&i.length>f;)s.closest(i[f++]).length&&(h=!1)}else h=!1;h&&(e.preventDefault(),l.extend(u,o,{scrollTarget:o.scrollTarget||p,link:n}),l.smoothScroll(u))}),this}}),l.smoothScroll=function(t,e){var o,r,n,s,c=0,i="offset",a="scrollTop",f={},h={};"number"==typeof t?(o=l.fn.smoothScroll.defaults,n=t):(o=l.extend({},l.fn.smoothScroll.defaults,t||{}),o.scrollElement&&(i="position","static"==o.scrollElement.css("position")&&o.scrollElement.css("position","relative"))),o=l.extend({link:null},o),a="left"==o.direction?"scrollLeft":a,o.scrollElement?(r=o.scrollElement,c=r[a]()):r=l("html, body").firstScrollable(),o.beforeScroll.call(r,o),n="number"==typeof t?t:e||l(o.scrollTarget)[i]()&&l(o.scrollTarget)[i]()[o.direction]||0,f[a]=n+c+o.offset,s=o.speed,"auto"===s&&(s=f[a]||r.scrollTop(),s/=o.autoCoefficent),h={duration:s,easing:o.easing,complete:function(){o.afterScroll.call(o.link,o)}},o.step&&(h.step=o.step),r.length?r.stop().animate(f,h):o.afterScroll.call(o.link,o)},l.smoothScroll.version=e,l.smoothScroll.filterPath=function(l){return l.replace(/^\//,"").replace(/(index|default).[a-zA-Z]{3,4}$/,"").replace(/\/$/,"")},l.fn.smoothScroll.defaults=o})(jQuery);jQuery.cookie=function(a,b,c){if(arguments.length>1&&String(b)!=="[object Object]"){c=jQuery.extend({},c);if(b===null||b===undefined){c.expires=-1}if(typeof c.expires==="number"){var d=c.expires,e=c.expires=new Date;e.setDate(e.getDate()+d)}b=String(b);return document.cookie=[encodeURIComponent(a),"=",c.raw?b:encodeURIComponent(b),c.expires?"; expires="+c.expires.toUTCString():"",c.path?"; path="+c.path:"",c.domain?"; domain="+c.domain:"",c.secure?"; secure":""].join("")}c=b||{};var f,g=c.raw?function(a){return a}:decodeURIComponent;return(f=(new RegExp("(?:^|; )"+encodeURIComponent(a)+"=([^;]*)")).exec(document.cookie))?g(f[1]):null}
3
  jQuery(document).ready(function($){if(typeof tocplus!='undefined'){$.fn.shrinkTOCWidth=function(){$(this).css({width:'auto',display:'table'});if($.browser.msie&&parseInt($.browser.version)==7)
4
  $(this).css('width','');}
5
+ if(tocplus.smooth_scroll==1){var target=hostname=pathname=qs=hash=null;$('body a').click(function(event){hostname=$(this).prop('hostname');pathname=$(this).prop('pathname');qs=$(this).prop('search');hash=$(this).prop('hash');if(pathname.length>0){if(pathname.charAt(0)!='/'){pathname='/'+pathname;}}
 
 
6
  if((window.location.hostname==hostname)&&(window.location.pathname==pathname)&&(window.location.search==qs)&&(hash!=='')){var hash_selector=hash.replace(/([ !"$%&'()*+,.\/:;<=>?@[\]^`{|}~])/g,'\\$1');if($(hash_selector).length>0)
7
  target=hash;else{anchor=hash;anchor=anchor.replace('#','');target='a[name="'+anchor+'"]';if($(target).length==0)
8
  target='';}
23
  $('ul.toc_list').hide('fast');$('#toc_container').addClass('contracted').shrinkTOCWidth();break;case $('<div/>').html(tocplus.visibility_show).text():default:$(this).html(tocplus.visibility_hide);if($.cookie){if(invert)
24
  $.cookie('tocplus_hidetoc','1',{expires:30,path:'/'});else
25
  $.cookie('tocplus_hidetoc',null,{path:'/'});}
26
+ $('#toc_container').css('width',tocplus.width).removeClass('contracted');$('ul.toc_list').show('fast');}});}}});
 
 
languages/toc+-sk_SK.mo CHANGED
Binary file
languages/toc+-sk_SK.po CHANGED
@@ -1,368 +1,429 @@
1
- # Copyright (C) 2012
2
  # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/table-of-contents-plus\n"
7
- "POT-Creation-Date: 2012-11-17 03:02:57+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2013-01-23 12:49+0300\n"
12
- "Last-Translator: Serg\n"
13
- "Language-Team: LANGUAGE <LL@li.org>\n"
14
- "X-Generator: Poedit 1.5.4\n"
 
15
 
16
- #: toc.php:171
17
  msgid "Settings"
18
  msgstr "Nastavenia"
19
 
20
- #: toc.php:341 toc.php:342
21
  msgid "TOC"
22
  msgstr "TOC"
23
 
24
- #: toc.php:486
25
  msgid "Options saved."
26
- msgstr "Nastavenia uložené."
27
 
28
- #: toc.php:488
29
  msgid "Save failed."
30
- msgstr "Uloženie bolo neúspešné."
31
 
32
- #: toc.php:500
33
  msgid "Main Options"
34
- msgstr "Hlavné možnosti"
35
 
36
- #: toc.php:501
37
  msgid "Sitemap"
38
- msgstr "Sitemap"
39
 
40
- #: toc.php:502
41
  msgid "Help"
42
- msgstr "pomoc"
43
 
44
- #: toc.php:510
45
  msgid "Position"
46
- msgstr "Pozícia"
47
 
48
- #: toc.php:513
49
  msgid "Before first heading (default)"
50
- msgstr "Pred prvej položky (predvolené)"
 
 
 
 
51
 
52
- #: toc.php:514
53
  msgid "Top"
54
- msgstr "Top"
55
 
56
- #: toc.php:515
57
  msgid "Bottom"
58
- msgstr "Dno"
59
 
60
- #: toc.php:520
61
  msgid "Show when"
62
- msgstr "Show, kedy"
63
 
64
  #. translators: text follows drop down list of numbers
65
- #: toc.php:532
66
  msgid "or more headings are present"
67
- msgstr "alebo ďalšie nadpisy sú prítomné"
68
 
69
- #: toc.php:536
70
  msgid "Auto insert for the following content types"
71
- msgstr "Auto vložiť pre tieto typy obsahu"
72
 
73
  #. translators: this is the title of the table of contents
74
- #: toc.php:551
75
  msgid "Heading text"
76
  msgstr "Text nadpisu"
77
 
78
- #: toc.php:553
79
  msgid "Show title on top of the table of contents"
80
- msgstr "Zobraziť názov nad obsahu"
81
 
82
- #: toc.php:556
83
  msgid "Eg: Contents, Table of Contents, Page Contents"
84
- msgstr "Napr: Obsah, obsah, obsah stránky"
85
 
86
- #: toc.php:558
87
  msgid "Allow the user to toggle the visibility of the table of contents"
88
- msgstr "Povoliť používateľovi prepnúť viditeľnosť obsahu"
89
 
90
- #: toc.php:563
91
  msgid "Show text"
92
- msgstr "Zobraziť text"
93
 
94
- #. translators: example text to display when you want to expand the table of
95
- #. contents
96
- #: toc.php:567
97
  msgid "Eg: show"
98
- msgstr "Napr: Ukázať"
99
 
100
- #: toc.php:570
101
  msgid "Hide text"
102
- msgstr "Skryť text"
103
 
104
- #. translators: example text to display when you want to collapse the table of
105
- #. contents
106
- #: toc.php:574
107
  msgid "Eg: hide"
108
- msgstr "Napr: skryť"
109
 
110
- #: toc.php:578
111
  msgid "Hide the table of contents initially"
112
- msgstr "Skryť obsah spočiatku"
113
 
114
- #: toc.php:584
115
  msgid "Show hierarchy"
116
  msgstr "Zobraziť hierarchiu"
117
 
118
- #: toc.php:588
119
  msgid "Number list items"
120
- msgstr "Číslo položky zoznamu"
121
 
122
- #: toc.php:592
123
  msgid "Enable smooth scroll effect"
124
- msgstr "Umožniť hladké rolovacie efekt"
125
 
126
- #: toc.php:593
127
  msgid "Scroll rather than jump to the anchor link"
128
- msgstr "Prejdite skôr ako skočiť na kotva odkaz"
129
 
130
- #: toc.php:598
131
  msgid "Appearance"
132
  msgstr "Vzhľad"
133
 
134
- #: toc.php:602
135
  msgid "Width"
136
  msgstr "Šírka"
137
 
138
- #: toc.php:605
139
  msgid "Fixed width"
140
  msgstr "Pevná šírka"
141
 
142
- #: toc.php:616
143
  msgid "Relative"
144
  msgstr "Relatívna"
145
 
146
- #: toc.php:617
147
  msgid "Auto (default)"
148
- msgstr "Automatické (štandardne)"
149
 
150
  #. translators: other width
151
- #: toc.php:627
152
  msgid "Other"
153
- msgstr "Ostatné"
154
 
155
- #: toc.php:628
156
  msgid "User defined"
157
- msgstr "Definované používateľom"
158
 
159
  #. translators: ignore %s as it's some HTML label tags
160
- #: toc.php:634
 
161
  msgid "Please enter a number and %s select its units, eg: 100px, 10em"
162
- msgstr "Zadajte číslo a %s vyberte svoje podielové listy, napr: 100px, 10em"
163
 
164
- #: toc.php:645
165
  msgid "Wrapping"
166
- msgstr "Balenie"
167
 
168
- #: toc.php:648
169
  msgid "None (default)"
170
- msgstr "None (predvolené)"
171
 
172
- #: toc.php:649
173
  msgid "Left"
174
- msgstr "Doľava"
175
 
176
- #: toc.php:650
177
  msgid "Right"
178
- msgstr "Právo"
179
 
180
- #: toc.php:655
181
  msgid "Font size"
182
  msgstr "Veľkosť písma"
183
 
184
  #. translators: appearance / colour / look and feel options
185
- #: toc.php:668
186
  msgid "Presentation"
187
  msgstr "Prezentácia"
188
 
189
- #: toc.php:671
190
  msgid "Grey (default)"
191
- msgstr "Grey (predvolené)"
192
 
193
- #: toc.php:676
194
  msgid "Light blue"
195
- msgstr "Svetlo modrá"
196
 
197
- #: toc.php:681
198
  msgid "White"
199
  msgstr "Biela"
200
 
201
- #: toc.php:686
202
  msgid "Black"
203
  msgstr "Čierna"
204
 
205
- #: toc.php:691
206
  msgid "Transparent"
207
- msgstr "Transparentné"
208
 
209
- #: toc.php:696
210
  msgid "Custom"
211
- msgstr "Vlastné"
212
 
213
- #: toc.php:706
214
  msgid "Background"
215
  msgstr "Pozadie"
216
 
217
- #: toc.php:710
218
  msgid "Border"
219
- msgstr "Orámovanie"
220
 
221
- #: toc.php:714 toc.php:1556
222
  msgid "Title"
223
- msgstr "Názov"
224
 
225
- #: toc.php:718
226
  msgid "Links"
227
  msgstr "Odkazy"
228
 
229
- #: toc.php:722
230
  msgid "Links (hover)"
231
- msgstr "Odkazy (hover)"
232
 
233
- #: toc.php:726
234
  msgid "Links (visited)"
235
- msgstr "Odkazy (navštívil)"
236
 
237
- #: toc.php:733
 
238
  msgid "Leaving the value as %s will inherit your theme's styles"
239
- msgstr "Odchod na hodnotu ako %s zdedí vaša téma štýly"
240
 
241
- #: toc.php:740
242
  msgid "Advanced"
243
- msgstr "Pokročilé"
244
 
245
- #: toc.php:740 toc.php:857
246
  msgid "show"
247
- msgstr "Zobraziť"
248
 
249
- #: toc.php:742
250
  msgid "Power options"
251
- msgstr "Možnosti napájania"
252
 
253
- #: toc.php:746
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
254
  msgid "Include homepage"
255
- msgstr "Zahŕňa domovskú stránku"
256
 
257
- #: toc.php:747
258
  msgid "Show the table of contents for qualifying items on the homepage"
259
- msgstr "Zobraziť obsah pre kvalifikované položky na domovskej stránke"
260
 
261
- #: toc.php:750
262
  msgid "Exclude CSS file"
263
- msgstr "Vylúčiť CSS súbor"
264
 
265
- #: toc.php:751
266
  msgid ""
267
  "Prevent the loading of this plugin's CSS styles. When selected, the "
268
- "presentation options from above will also be ignored."
269
  msgstr ""
270
- "Zabrániť načítaniu tento plugin CSS štýlov. Pri výbere možnosti prezentácie "
271
- "zhora bude tiež ignorovať."
272
 
273
- #: toc.php:754
274
  msgid "Preserve theme bullets"
275
- msgstr "Zachovať tému guľky"
276
 
277
- #: toc.php:755
278
  msgid ""
279
  "If your theme includes background images for unordered list elements, enable "
280
  "this to support them"
281
  msgstr ""
282
- "Ak vaša téma obsahuje obrázky na pozadí pre neusporiadaný zoznam prvkov, "
283
- "umožnilo to na ich podporu"
284
 
285
- #: toc.php:758
286
  msgid "Heading levels"
287
- msgstr "Úrovne nadpisov"
288
 
289
- #: toc.php:760
290
  msgid ""
291
  "Include the following heading levels. Deselecting a heading will exclude it."
292
- msgstr "Zahrnúť nasledujúce úrovne nadpisov. Zrušením nadpis vylúči to."
 
293
 
294
- #: toc.php:766
295
  msgid "heading "
296
  msgstr "nadpis "
297
 
298
- #: toc.php:772
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
299
  msgid "Smooth scroll top offset"
300
- msgstr "Hladké scroll najvyššie offset"
301
 
302
- #: toc.php:775
303
  msgid ""
304
  "If you have a consistent menu across the top of your site, you can adjust "
305
  "the top offset to stop the headings from appearing underneath the top menu. "
306
  "A setting of 30 accommodates the WordPress admin bar. This setting appears "
307
  "after you have enabled smooth scrolling from above."
308
  msgstr ""
309
- "Ak máte konzistentné menu v hornej časti vášho webu, môžete upraviť top "
310
- "kompenzovať zastaviť nadpisy zobrazovaniu pod v hornom menu. Nastavenie 30 "
311
- "pojme WordPress admin panel. Toto nastavenie sa zobrazí po povolení plynulé "
312
- "posúvanie zhora."
313
 
314
- #: toc.php:779
315
  msgid "Restrict path"
316
- msgstr "Obmedziť cesta"
317
 
318
- #: toc.php:782
319
  msgid ""
320
  "Restrict generation of the table of contents to pages that match the "
321
  "required path. This path is from the root of your site and always begins "
322
  "with a forward slash."
323
  msgstr ""
324
- "Obmedziť generácie obsah na stránkach, ktoré zodpovedajú požadovanú cestu. "
325
- "Táto cesta je z koreňa vaše stránky a vždy začína s lomkou."
 
326
 
327
  #. translators: example URL path restriction
328
- #: toc.php:785
329
  msgid "Eg: /wiki/, /corporate/annual-reports/"
330
- msgstr "Napr: / wiki /, /corporate/annual-reports /"
331
 
332
- #: toc.php:789
333
  msgid "Default anchor prefix"
334
- msgstr "Predpona kotva predvolený"
335
 
336
- #: toc.php:792
337
  msgid ""
338
  "Anchor targets are restricted to alphanumeric characters as per HTML "
339
  "specification (see readme for more detail). The default anchor prefix will "
340
  "be used when no characters qualify. When left blank, a number will be used "
341
  "instead."
342
  msgstr ""
343
- "Kotva ciele sú obmedzené na alfanumerické znaky podľa HTML Špecifikácia "
344
- "(pozri súbor readme pre podrobnejšie). Predpona kotva predvolený bude "
345
- "použije pri žiadne znaky kvalifikovať. Ak ponecháte argument prázdny, číslo "
346
- "sa použije namiesto toho."
347
 
348
- #: toc.php:793
349
  msgid ""
350
  "This option normally applies to content written in character sets other than "
351
  "ASCII."
352
  msgstr ""
353
- "Táto voľba sa obyčajne vzťahuje na obsah napísaný v znakovej sady ako ASCII."
 
354
 
355
  #. translators: example anchor prefixes when no ascii characters match
356
- #: toc.php:796
357
  msgid "Eg: i, toc_index, index, _"
358
- msgstr "EG: ja, toc_index, index _"
359
 
360
  #. translators: advanced usage
361
- #: toc.php:804
362
  msgid "Usage"
363
- msgstr "Využitie"
364
 
365
- #: toc.php:805
 
366
  msgid ""
367
  "If you would like to fully customise the position of the table of contents, "
368
  "you can use the %s shortcode by placing it at the desired position of your "
@@ -370,377 +431,484 @@ msgid ""
370
  "of contents despite having auto insertion disabled for its content type. "
371
  "Please visit the help tab for further information about this shortcode."
372
  msgstr ""
373
- "Ak by ste chceli prispôsobiť plne pozíciu obsahu, môžete použiť krátky kód "
374
- "%s umiestnite ho na požadovanú pozíciu z vášho post, stránky alebo vlastné "
375
- "post typu. Táto metóda umožňuje vytvárať tabuľky obsah napriek tomu, že "
376
- "automatické vloženie pre jej typ obsahu zakázané. Navštívte karte pomoc pre "
377
- "ďalšie informácie o tomto krátky."
378
 
379
- #: toc.php:813
 
380
  msgid ""
381
  "At its simplest, placing %s into a page will automatically create a sitemap "
382
  "of all pages and categories. This also works in a text widget."
383
  msgstr ""
384
- "Na jeho najjednoduchšie, uvádzanie %s do stránky automaticky vytvorí súbor "
385
- "sitemap všetky stránky a kategórie. To funguje aj v text widget."
386
 
387
- #: toc.php:817
388
  msgid "Show page listing"
389
- msgstr "Zobraziť stránku výpis"
390
 
391
- #: toc.php:821
392
  msgid "Show category listing"
393
- msgstr "Zobraziť výpis kategórie"
394
 
395
- #: toc.php:825
396
  msgid "Heading type"
397
- msgstr "Typ záhlavia"
398
 
399
- #. translators: the full line is supposed to read - Use [1-6 drop down list] to
400
- #. print out the titles
401
- #: toc.php:828
402
  msgid "Use"
403
- msgstr "Použitie"
404
 
405
- #. translators: the full line is supposed to read - Use [h1-h6 drop down list]
406
- #. to print out the titles
407
- #: toc.php:839
408
  msgid "to print out the titles"
409
- msgstr "vytlačiť nadpisy"
410
 
411
- #: toc.php:843
412
  msgid "Pages label"
413
- msgstr "Stránky label"
414
 
415
- #: toc.php:845
416
  msgid "Eg: Pages, Page List"
417
- msgstr "Napr: Stránky, zoznam stránok"
418
 
419
- #: toc.php:849
420
  msgid "Categories label"
421
- msgstr "Menovky kategórií"
422
 
423
- #: toc.php:851
424
  msgid "Eg: Categories, Category List"
425
- msgstr "Napr: Kategórie, zoznam kategórií"
426
 
427
- #: toc.php:857
428
  msgid "Advanced usage"
429
- msgstr "Pokročilé použitie"
430
 
431
- #: toc.php:859
 
432
  msgid ""
433
  "lets you print out a listing of only pages. Similarly %s can be used to "
434
  "print out a category listing. They both can accept a number of attributes so "
435
  "visit the help tab for more information."
436
  msgstr ""
437
- "umožňuje vytlačiť zoznam iba stránky. Podobne %s môžu byť použité na "
438
- "vytlačiť výpis kategórie. Obaja môžu akceptovať viacero atribútov tak "
439
- "Navštívte karte Pomocníka pre viac informácií."
440
 
441
- #: toc.php:860
442
  msgid "Examples"
443
  msgstr "Príklady"
444
 
445
- #: toc.php:862
446
  msgid "hides the heading from a category listing"
447
- msgstr "skryje položky z kategórie výpisu"
448
 
449
- #: toc.php:863
 
450
  msgid ""
451
  "Uses h6 to display %s on a page listing excluding pages with IDs 1 and 15"
452
  msgstr ""
453
- "H6 sa používa na zobrazenie %s na stránke výpis okrem stránky s ID 1 a 15"
 
454
 
455
- #: toc.php:871
456
  msgid "Where's my table of contents?"
457
- msgstr "Kde je v obsahu?"
458
 
459
- #: toc.php:872
460
  msgid ""
461
  "If you're reading this, then chances are you have successfully installed and "
462
  "enabled the plugin and you're just wondering why the index isn't appearing "
463
  "right? Try the following:"
464
  msgstr ""
465
- "Ak čítate tento, potom šance sú, ste úspešne nainštalovali a povolené plugin "
466
- "a vy ste práve premýšľal, prečo index nezobrazený právo? Vyskúšajte "
467
- "nasledujúci postup:"
468
 
469
- #: toc.php:874
470
  msgid ""
471
  "In most cases, the post, page or custom post type has less than the minimum "
472
  "number of headings. By default, this is set to four so make sure you have at "
473
  "least four headings within your content. If you want to change this value, "
474
  "you can find it under 'Main Options' &gt; 'Show when'."
475
  msgstr ""
476
- "Vo väčšine prípadov, post, stránky alebo vlastný príspevok typ menej než "
477
- "minimum počet položiek. Štandardne to je nastavená na štyri tak uistite sa, "
478
- "že máte v najmenej štyroch častí svojho obsahu. Ak chcete zmeniť túto "
479
- "hodnotu, nájdete ju pod &quot;Hlavné možnosti&quot; &amp;gt; &quot;Show, "
480
- "kedy&quot;."
481
 
482
- #: toc.php:875
483
  msgid ""
484
  "Is auto insertion enabled for your content type? By default, only pages are "
485
  "enabled."
486
  msgstr ""
487
- "Zapnuté automatické vloženie pre váš typ obsahu? Predvolene len stránky "
488
- "povolené."
489
 
490
- #: toc.php:876
491
  msgid ""
492
  "Have you got <code>[no_toc]</code> somewhere within the content? This will "
493
  "disable the index for the current post, page or custom post type."
494
  msgstr ""
495
- "Máš <code>[no_toc]</code> niekde v obsahu? To budevypnúť index pre aktuálny "
496
- "post, stránky alebo vlastný príspevok typu."
 
497
 
498
- #: toc.php:877
499
  msgid ""
500
  "If you are using the TOC+ widget, check if you have the <em>\"Show the table "
501
  "of contents only in the sidebar\"</em> enabled as this will limit its "
502
  "display to only the sidebar. You can check by going into Appearance &gt; "
503
  "Widgets."
504
  msgstr ""
505
- "Ak používate TOC + widget, skontrolujte, či máte <em>\"Show tabuľky</"
506
- "em>obsah iba vo sidebar\" &quot;povolené ako to obmedzí jehozobrazovať iba "
507
- "sidebar. Môžete skontrolovať ísť do vzhľad &amp;gt; Widgety."
 
508
 
509
- #: toc.php:878
510
  msgid ""
511
  "You may have restricted generation to a URL path match. The setting can be "
512
  "found in the advanced section under Main Options."
513
  msgstr ""
514
- "Môže mať obmedzený generácie na URL cestu zápas. Nastavenie môže byť nájdené "
515
- "v sekcii rozšírené v časti hlavné možnosti."
516
 
517
- #: toc.php:881
518
  msgid "How do I stop the table of contents from appearing on a single page?"
519
- msgstr "Ako môžem zastaviť obsahu zobrazeniu na jednej stránke?"
520
 
521
- #: toc.php:882
522
  msgid ""
523
  "Place the following <code>[no_toc]</code> anywhere on the page to suppress "
524
  "the table of contents. This is known as a shortcode and works for posts, "
525
  "pages and custom post types that make use of the_content()"
526
  msgstr ""
527
- "Miesto nasledujúce <code>[no_toc]</code> kdekoľvek na stránke potlačiťv "
528
- "tabuľke obsahu. Toto je známe ako pracuje pre príspevky, a krátky stránky a "
529
- "vlastné post typy, ktoré robia použitie the_content()"
 
530
 
531
- #: toc.php:884
532
  msgid ""
533
  "I've set wrapping to left or right but the headings don't wrap around the "
534
  "table of contents"
535
  msgstr ""
536
- "Som nastaviť zalomenie vľavo alebo vpravo, ale nadpisy Nechcem ovinúť okolo "
537
- "obsah"
538
 
539
- #: toc.php:885
540
  msgid ""
541
  "This normally occurs when there is a CSS clear directive in or around the "
542
  "heading originating from the theme (Twenty Eleven and Twenty Twelve are two "
543
  "themes which do this). This directive tells the user agent to reset the "
544
  "previous wrapping specifications."
545
  msgstr ""
546
- "Toto zvyčajne nastane, keď je jasné smernice v alebo okolo CSS položky "
547
- "pochádzajúce z motívu (dvadsať jedenásť a dvanásť dvadsať dva témy, ktoré "
548
- "sa tohto). Táto smernica hovorí user agent na obnovenie Predchádzajúci "
549
- "balenie špecifikácie."
550
 
551
- #: toc.php:886
 
552
  msgid ""
553
  "You can adjust your theme's CSS or try moving the table of contents position "
554
  "to the top of the page. If you didn't build your theme, I'd highly suggest "
555
  "you try the %s if you wish to make CSS changes."
556
  msgstr ""
557
- "Môžete upraviť vaše tému CSS alebo premiestnite tabuľke obsah postavenia na "
558
- "vrchnej časti stránky. Ak ste nestavali vaše tému, by som veľmi navrhnúť "
559
- "môžete skúsiť %s Ak chcete vykonať zmeny CSS."
560
 
561
  #. translators: CSS code follows after this line
562
- #: toc.php:889
563
  msgid ""
564
  "Try adding the following CSS to allow the wrapping to occur around the table "
565
  "of contents:"
566
  msgstr ""
567
- "Skúste pridať nasledujúce CSS povoliť balenie nastať okolo stola obsah:"
568
 
569
- #: toc.php:894
570
  msgid "How do I include the name of the page in the table of contents title?"
571
- msgstr "Ako urobiť zahrnúť názov stránky v tabuľke obsah hlavy?"
572
 
573
- #: toc.php:895
574
  msgid ""
575
  "As the title of the page changes depending on the page you're viewing, you "
576
  "can use the following special variable to automatically insert the title of "
577
  "the page into the table of contents heading:"
578
  msgstr ""
579
- "Ako názov stránky zmien v závislosti na stránke prezeráte, ste môžete použiť "
580
- "nasledovné špeciálne premenná automaticky vložiť názov stránky do obsahu "
581
- "položky:"
582
 
583
- #: toc.php:897
584
  msgid "You can use it as is or place text either side of the variable."
585
- msgstr "Môžete ho ako je, alebo umiestniť text oboch stranách premennej."
586
 
587
- #: toc.php:898
588
  msgid ""
589
  "As an example: if your page is named <em>Great Expectations</em> and your "
590
  "table of contents title is set to <em>Contents for %PAGE_NAME%</em>, the "
591
  "final title would read <em>Contents for Great Expectations</em>"
592
  msgstr ""
593
- "Ako príklad: Ak vaše stránky s názvom <em>Great Expectations</em> a "
594
- "vašeTabuľka obsah titulu je nastavená na <em>obsah % PAGE_NAME %</em>,"
595
- "posledný názov by čítať <em>obsah pre veľké očakávania</em>"
596
 
597
- #: toc.php:900
598
  msgid "The sitemap uses a strange font dissimilar to the rest of the site"
599
- msgstr "Sitemap používa podivné písmo nepodobné zvyšok stránky"
 
 
600
 
601
- #: toc.php:901
602
  msgid ""
603
  "No extra styles are created for the sitemap, instead it inherits any styles "
604
  "you used when adding the shortcode. If you copy and pasted, you probably "
605
  "also copied the 'code' tags surrounding it so remove them if this is the "
606
  "case."
607
  msgstr ""
608
- "Žiadne ďalšie štýly sú vytvorené na sitemap, namiesto toho ho zdedí všetky "
609
- "štýly Použili ste pri pridávaní krátky kód. Ak ste skopírovať a vložiť, ste "
610
- "pravdepodobne tiež skopírovať &quot;kód&quot; Tagy obklopovať to odstráni "
611
- "ich či to je prípad."
612
 
613
- #: toc.php:902
614
  msgid ""
615
  "In most cases, try to have the shortcode on its own line with nothing before "
616
  "or after the square brackets."
617
  msgstr ""
618
- "Vo väčšine prípadov sa snažím mať krátky kód na samostatnom riadku s ničím "
619
- "pred alebo po hranatých zátvoriek."
620
 
621
- #: toc.php:904
622
  msgid "What were those shortcodes and attributes again?"
623
- msgstr "Aké boli tie shortcodes a atribúty znova?"
624
 
625
- #: toc.php:905
626
  msgid ""
627
  "When attributes are left out for the shortcodes below, they will fallback to "
628
  "the settings you defined under Settings &gt; TOC+."
629
  msgstr ""
630
- "Keď atribúty vynechal pre nižšie shortcodes, budú fallback na nastavenia "
631
- "definované v časti Nastavenia &amp;gt; TOC +."
632
 
633
- #: toc.php:909
634
  msgid "Shortcode"
635
- msgstr "Krátky"
636
 
637
- #: toc.php:910
638
  msgid "Description"
639
- msgstr "Popis"
640
 
641
- #: toc.php:911
642
  msgid "Attributes"
643
  msgstr "Atribúty"
644
 
645
- #: toc.php:917
646
  msgid ""
647
  "Lets you generate the table of contents at the preferred position. Also "
648
  "useful for sites that only require a TOC on a small handful of pages."
649
  msgstr ""
650
- "Umožňuje generovať obsah na prednostné pozíciu. Tiež užitočné stránky, ktoré "
651
- "vyžadujú len TOC na malú hrsť stránky."
652
 
653
- #: toc.php:920
654
  msgid "text, title of the table of contents"
655
- msgstr "text, názov obsah"
656
 
657
- #: toc.php:921
658
  msgid "true/false, shows or hides the title"
659
- msgstr "pravda/nepravda, zobrazí alebo skryje názov"
660
 
661
- #: toc.php:922
662
  msgid "text, either \"left\" or \"right\""
663
- msgstr "text, buď \"left\" alebo \"right\""
664
 
665
- #: toc.php:923
666
  msgid ""
667
  "numbers, this lets you select the heading levels you want included in the "
668
  "table of contents. Separate multiple levels with a comma. Example: include "
669
  "headings 3, 4 and 5 but exclude the others with"
670
  msgstr ""
671
- "čísla, to vám umožní vybrať úrovne nadpisov chcete zahrnúť Tabuľka obsah. "
672
- "Viacerých úrovniach oddeľte čiarkou. Príklad: patrí položky 3, 4 a 5, ale "
673
- "vylúčiť ostatných, s"
674
 
675
- #: toc.php:929
 
 
 
 
 
 
 
 
 
 
 
676
  msgid ""
677
  "Allows you to disable the table of contents for the current post, page, or "
678
  "custom post type."
679
  msgstr ""
680
- "Umožňuje vypnúť obsahu pre súčasný post, stránky, alebo typu vlastný "
681
- "príspevok."
682
 
683
- #: toc.php:934
684
  msgid ""
685
  "Produces a listing of all pages and categories for your site. You can use "
686
  "this on any post, page or even in a text widget."
687
  msgstr ""
688
- "Produkuje výpis všetky stránky a kategórie pre vaše stránky. Môžete použiť "
689
- "to na každom post, stránky alebo dokonca v text widget."
690
 
691
- #: toc.php:939
692
  msgid "Lets you print out a listing of only pages."
693
- msgstr "Umožňuje vytlačiť zoznam iba stránky."
694
 
695
- #: toc.php:942
696
  msgid "number between 1 and 6, defines which html heading to use"
697
- msgstr "čísla 1 6, definuje html nadpis používať"
698
 
699
- #: toc.php:943
700
  msgid "text, title of the list"
701
- msgstr "text, názov zoznamu"
702
 
703
- #: toc.php:944
704
  msgid "true/false, shows or hides the list heading"
705
- msgstr "pravda/nepravda, zobrazí alebo skryje hlavičku zoznamu"
706
 
707
- #: toc.php:945
708
  msgid "IDs of the pages or categories you wish to exclude"
709
- msgstr "Identifikácií stránok alebo kategórií chcete vylúčiť"
710
 
711
- #: toc.php:946
712
  msgid ""
713
  "ID of the page or category you wish to exclude including its all descendants"
714
- msgstr ""
715
- "ID strany alebo kategórie, ktoré chcete vylúčiť, vrátane jeho všetkých "
716
- "potomkov"
717
 
718
- #: toc.php:952
719
  msgid "Similar to [sitemap_pages] but for categories."
720
- msgstr "Podobne ako [sitemap_pages] ale pre kategórie."
 
 
 
 
 
 
 
 
 
 
 
 
721
 
722
- #: toc.php:958
 
 
 
 
 
 
 
 
 
 
 
 
 
723
  msgid "I have another question..."
724
- msgstr "Ja mám inú otázku..."
725
 
726
- #: toc.php:959
 
727
  msgid ""
728
  "Visit the %1$splugin homepage%2$s to ask your question - who knows, maybe "
729
  "your question has already been answered. I'd really like to hear your "
730
  "suggestions if you have any."
731
  msgstr ""
732
- "Navštívte %1$ splugin homepage % 2$ s položiť vašu otázku - kto vie, možno "
733
- "vaša otázka bola zodpovedaná. By som naozaj rád počuť váš návrhy, ak máte "
734
- "nejaké."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
735
 
736
- #: toc.php:965
737
  msgid "Update Options"
738
- msgstr "Aktualizáciou možností"
739
 
740
- #: toc.php:1470
741
  msgid "Display the table of contents in the sidebar with this widget"
742
- msgstr "Zobrazenie obsahu v bočnom paneli s tento widget"
743
 
744
- #: toc.php:1562
745
  msgid "Show the table of contents only in the sidebar"
746
- msgstr "Zobraziť obsah iba v bočnom paneli"
1
+ # Copyright (C) 2013
2
  # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: 1303.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/table-of-contents-plus\n"
7
+ "POT-Creation-Date: 2013-04-03 18:38:36+01:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2013-08-05 20:53+1000\n"
12
+ "Last-Translator: \n"
13
+ "Language-Team: Boris Gereg <qwerty@elusion.sk>\n"
14
+ "Language: SK\n"
15
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
16
 
17
+ #: toc.php:175
18
  msgid "Settings"
19
  msgstr "Nastavenia"
20
 
21
+ #: toc.php:424 toc.php:425
22
  msgid "TOC"
23
  msgstr "TOC"
24
 
25
+ #: toc.php:575
26
  msgid "Options saved."
27
+ msgstr "Nastavenia sa uložili."
28
 
29
+ #: toc.php:577
30
  msgid "Save failed."
31
+ msgstr "Ukladanie zlyhalo."
32
 
33
+ #: toc.php:589
34
  msgid "Main Options"
35
+ msgstr "Hlavné nastavenia"
36
 
37
+ #: toc.php:590
38
  msgid "Sitemap"
39
+ msgstr "Mapa lokality"
40
 
41
+ #: toc.php:591
42
  msgid "Help"
43
+ msgstr "Pomoc"
44
 
45
+ #: toc.php:599
46
  msgid "Position"
47
+ msgstr "Umiestnenie"
48
 
49
+ #: toc.php:602
50
  msgid "Before first heading (default)"
51
+ msgstr "Pred prvou hlavičkou (predvolené)"
52
+
53
+ #: toc.php:603
54
+ msgid "After first heading"
55
+ msgstr "Za prvou hlavičkou"
56
 
57
+ #: toc.php:604
58
  msgid "Top"
59
+ msgstr "Navrchu"
60
 
61
+ #: toc.php:605
62
  msgid "Bottom"
63
+ msgstr "Naspodku"
64
 
65
+ #: toc.php:610
66
  msgid "Show when"
67
+ msgstr "Zobraziť pre"
68
 
69
  #. translators: text follows drop down list of numbers
70
+ #: toc.php:622
71
  msgid "or more headings are present"
72
+ msgstr "alebo viac prítomných nadpisov"
73
 
74
+ #: toc.php:626
75
  msgid "Auto insert for the following content types"
76
+ msgstr "Automaticky vkladať pre nasledujúce typy obsahu"
77
 
78
  #. translators: this is the title of the table of contents
79
+ #: toc.php:641
80
  msgid "Heading text"
81
  msgstr "Text nadpisu"
82
 
83
+ #: toc.php:643
84
  msgid "Show title on top of the table of contents"
85
+ msgstr "Zobraziť nadpis navrchu obsahu"
86
 
87
+ #: toc.php:646
88
  msgid "Eg: Contents, Table of Contents, Page Contents"
89
+ msgstr "Príklad: Obsah, Index alebo Obsah stránky"
90
 
91
+ #: toc.php:648
92
  msgid "Allow the user to toggle the visibility of the table of contents"
93
+ msgstr "Povoliť používateľovi prepínať viditeľnosť obsahu"
94
 
95
+ #: toc.php:653
96
  msgid "Show text"
97
+ msgstr "Text pre akciu zobraziť"
98
 
99
+ #. translators: example text to display when you want to expand the table of contents
100
+ #: toc.php:657
 
101
  msgid "Eg: show"
102
+ msgstr "Príklad: zobraziť"
103
 
104
+ #: toc.php:660
105
  msgid "Hide text"
106
+ msgstr "Text pre akciu skryť"
107
 
108
+ #. translators: example text to display when you want to collapse the table of contents
109
+ #: toc.php:664
 
110
  msgid "Eg: hide"
111
+ msgstr "Príklad: skryť"
112
 
113
+ #: toc.php:668
114
  msgid "Hide the table of contents initially"
115
+ msgstr "Počiatočne skryť obsah"
116
 
117
+ #: toc.php:674
118
  msgid "Show hierarchy"
119
  msgstr "Zobraziť hierarchiu"
120
 
121
+ #: toc.php:678
122
  msgid "Number list items"
123
+ msgstr "Číslovať položky zoznamu"
124
 
125
+ #: toc.php:682
126
  msgid "Enable smooth scroll effect"
127
+ msgstr "Povoliť efekt plynulého rolovania"
128
 
129
+ #: toc.php:683
130
  msgid "Scroll rather than jump to the anchor link"
131
+ msgstr "Rolovať na odkaz s kotvou, neskákať"
132
 
133
+ #: toc.php:688
134
  msgid "Appearance"
135
  msgstr "Vzhľad"
136
 
137
+ #: toc.php:692
138
  msgid "Width"
139
  msgstr "Šírka"
140
 
141
+ #: toc.php:695
142
  msgid "Fixed width"
143
  msgstr "Pevná šírka"
144
 
145
+ #: toc.php:706
146
  msgid "Relative"
147
  msgstr "Relatívna"
148
 
149
+ #: toc.php:707
150
  msgid "Auto (default)"
151
+ msgstr "Automatická (predvolené)"
152
 
153
  #. translators: other width
154
+ #: toc.php:717
155
  msgid "Other"
156
+ msgstr "Iná"
157
 
158
+ #: toc.php:718
159
  msgid "User defined"
160
+ msgstr "Definovaná používateľom"
161
 
162
  #. translators: ignore %s as it's some HTML label tags
163
+ #: toc.php:724
164
+ #, php-format
165
  msgid "Please enter a number and %s select its units, eg: 100px, 10em"
166
+ msgstr "Zadajte číslo a %s vyberte jednotku, napríklad 100px alebo 10em"
167
 
168
+ #: toc.php:735
169
  msgid "Wrapping"
170
+ msgstr "Zalamovanie"
171
 
172
+ #: toc.php:738
173
  msgid "None (default)"
174
+ msgstr "Žiadne (predvolené)"
175
 
176
+ #: toc.php:739
177
  msgid "Left"
178
+ msgstr "Vľavo"
179
 
180
+ #: toc.php:740
181
  msgid "Right"
182
+ msgstr "Vpravo"
183
 
184
+ #: toc.php:745
185
  msgid "Font size"
186
  msgstr "Veľkosť písma"
187
 
188
  #. translators: appearance / colour / look and feel options
189
+ #: toc.php:758
190
  msgid "Presentation"
191
  msgstr "Prezentácia"
192
 
193
+ #: toc.php:761
194
  msgid "Grey (default)"
195
+ msgstr "Sivá (predvolené)"
196
 
197
+ #: toc.php:766
198
  msgid "Light blue"
199
+ msgstr "Svetlá modrá"
200
 
201
+ #: toc.php:771
202
  msgid "White"
203
  msgstr "Biela"
204
 
205
+ #: toc.php:776
206
  msgid "Black"
207
  msgstr "Čierna"
208
 
209
+ #: toc.php:781
210
  msgid "Transparent"
211
+ msgstr "Transparentná"
212
 
213
+ #: toc.php:786
214
  msgid "Custom"
215
+ msgstr "Vlastná"
216
 
217
+ #: toc.php:796
218
  msgid "Background"
219
  msgstr "Pozadie"
220
 
221
+ #: toc.php:800
222
  msgid "Border"
223
+ msgstr "Rámik"
224
 
225
+ #: toc.php:804 toc.php:1704
226
  msgid "Title"
227
+ msgstr "Nadpis"
228
 
229
+ #: toc.php:808
230
  msgid "Links"
231
  msgstr "Odkazy"
232
 
233
+ #: toc.php:812
234
  msgid "Links (hover)"
235
+ msgstr "Odkazy (pri umiestnení kurzora)"
236
 
237
+ #: toc.php:816
238
  msgid "Links (visited)"
239
+ msgstr "Odkazy (navštívené)"
240
 
241
+ #: toc.php:823
242
+ #, php-format
243
  msgid "Leaving the value as %s will inherit your theme's styles"
244
+ msgstr "Ak ponecháte hodnotu %s, použijú sa štýly vašej témy"
245
 
246
+ #: toc.php:830
247
  msgid "Advanced"
248
+ msgstr "Rozšírené"
249
 
250
+ #: toc.php:830 toc.php:967 toc.php:1083
251
  msgid "show"
252
+ msgstr "zobraziť"
253
 
254
+ #: toc.php:832
255
  msgid "Power options"
256
+ msgstr "Nastavenia fungovania"
257
 
258
+ #: toc.php:836
259
+ msgid "Lowercase"
260
+ msgstr "Malé písmená"
261
+
262
+ #: toc.php:837
263
+ msgid "Ensure anchors are in lowercase"
264
+ msgstr "Zaručiť, aby kotvy používali malé písmená"
265
+
266
+ #: toc.php:840
267
+ msgid "Hyphenate"
268
+ msgstr "Spojiť spojovníkom"
269
+
270
+ #: toc.php:841
271
+ msgid "Use - rather than _ in anchors"
272
+ msgstr "V kotvách používať znak - namiesto znaku _"
273
+
274
+ #: toc.php:844
275
  msgid "Include homepage"
276
+ msgstr "Zahrnúť domovskú stránku"
277
 
278
+ #: toc.php:845
279
  msgid "Show the table of contents for qualifying items on the homepage"
280
+ msgstr "Zobraziť obsah pre vyhovujúce položky na domovskej stránke"
281
 
282
+ #: toc.php:848
283
  msgid "Exclude CSS file"
284
+ msgstr "Vylúčiť súbor CSS"
285
 
286
+ #: toc.php:849
287
  msgid ""
288
  "Prevent the loading of this plugin's CSS styles. When selected, the "
289
+ "appearance options from above will also be ignored."
290
  msgstr ""
291
+ "Zabrániť načítaniu štýlov CSS tohto modulu. Ak to začiarknete, budú sa tiež "
292
+ "ignorovať všetky nastavenia vzhľadu hore."
293
 
294
+ #: toc.php:852
295
  msgid "Preserve theme bullets"
296
+ msgstr "Zachovať odrážky témy"
297
 
298
+ #: toc.php:853
299
  msgid ""
300
  "If your theme includes background images for unordered list elements, enable "
301
  "this to support them"
302
  msgstr ""
303
+ "Ak vaša téma zahŕňa obrázky pozadia pre elementy neusporiadaného zoznamu, "
304
+ "začiarknutím povolíte ich podporu"
305
 
306
+ #: toc.php:856
307
  msgid "Heading levels"
308
+ msgstr "Úrovne nadpisu"
309
 
310
+ #: toc.php:858
311
  msgid ""
312
  "Include the following heading levels. Deselecting a heading will exclude it."
313
+ msgstr ""
314
+ "Zahrnúť nasledujúce úrovne nadpisu. Ak zrušíte výber nadpisu, vylúčite ho."
315
 
316
+ #: toc.php:864
317
  msgid "heading "
318
  msgstr "nadpis "
319
 
320
+ #: toc.php:870
321
+ msgid "Exclude headings"
322
+ msgstr "Vylúčiť nadpisy"
323
+
324
+ #: toc.php:873
325
+ msgid ""
326
+ "Specify headings to be excluded from appearing in the table of contents. "
327
+ "Separate multiple headings with a pipe <code>|</code>. Use an asterisk "
328
+ "<code>*</code> as a wildcard to match other text. Note that this is not "
329
+ "case sensitive. Some examples:"
330
+ msgstr ""
331
+ "Zadajte nadpisy, ktoré sa nezobrazia v obsahu. Viacero nadpisov oddeľte "
332
+ "znakom rúry (<code>|</code>). Môžete použiť hviezdičku (<code>*</code>) ako "
333
+ "zástupný znak na označenie iného textu. Upozorňujeme, že sa nerozlišuje "
334
+ "veľkosť písmen. Niekoľko príkladov:"
335
+
336
+ #: toc.php:875
337
+ msgid "<code>Fruit*</code> ignore headings starting with \"Fruit\""
338
+ msgstr "<code>Ovoc*</code> ignoruje nadpisy, ktoré začínajú reťazcom \"ovoc\""
339
+
340
+ #: toc.php:876
341
+ msgid ""
342
+ "<code>*Fruit Diet*</code> ignore headings with \"Fruit Diet\" somewhere in "
343
+ "the heading"
344
+ msgstr ""
345
+ "<code>*Ovocná diét*</code> ignoruje nadpisy, ktoré v nadpise obsahujú "
346
+ "reťazec \"ovocná diét\""
347
+
348
+ #: toc.php:877
349
+ msgid ""
350
+ "<code>Apple Tree|Oranges|Yellow Bananas</code> ignore headings that are "
351
+ "exactly \"Apple Tree\", \"Oranges\" or \"Yellow Bananas\""
352
+ msgstr ""
353
+ "<code>Jabloň|Pomaranče|Žlté banány</code> ignoruje nadpisy, ktoré sa presne "
354
+ "zhodujú s reťazcami \"jabloň\", \"pomaranče\" alebo \"žlté banány\""
355
+
356
+ #: toc.php:882
357
  msgid "Smooth scroll top offset"
358
+ msgstr "Posunutie plynulého rolovania zhora"
359
 
360
+ #: toc.php:885
361
  msgid ""
362
  "If you have a consistent menu across the top of your site, you can adjust "
363
  "the top offset to stop the headings from appearing underneath the top menu. "
364
  "A setting of 30 accommodates the WordPress admin bar. This setting appears "
365
  "after you have enabled smooth scrolling from above."
366
  msgstr ""
367
+ "Ak máte v hornej časti vašej lokality konzistentnú ponuku, môžete upraviť "
368
+ "posunutie zhora, aby sa nadpisy nezobrazovali pod hornou ponukou. Nastavenie "
369
+ "hodnoty 30 vyhovuje administrátorskému panelu WordPress. Toto nastavenie sa "
370
+ "zobrazí, keď povolíte plynulé rolovanie hore."
371
 
372
+ #: toc.php:889
373
  msgid "Restrict path"
374
+ msgstr "Obmedziť cestu"
375
 
376
+ #: toc.php:892
377
  msgid ""
378
  "Restrict generation of the table of contents to pages that match the "
379
  "required path. This path is from the root of your site and always begins "
380
  "with a forward slash."
381
  msgstr ""
382
+ "Obmedzte generovanie obsahu na stránky, ktoré vyhovujú vyžadovanej ceste. "
383
+ "Toto je cesta od koreňového adresára vašej lokality a vždy začína znakom "
384
+ "lomka."
385
 
386
  #. translators: example URL path restriction
387
+ #: toc.php:895
388
  msgid "Eg: /wiki/, /corporate/annual-reports/"
389
+ msgstr "Príklad: /wiki/, /corporate/annual-reports/"
390
 
391
+ #: toc.php:899
392
  msgid "Default anchor prefix"
393
+ msgstr "Predvolená predpona kotvy"
394
 
395
+ #: toc.php:902
396
  msgid ""
397
  "Anchor targets are restricted to alphanumeric characters as per HTML "
398
  "specification (see readme for more detail). The default anchor prefix will "
399
  "be used when no characters qualify. When left blank, a number will be used "
400
  "instead."
401
  msgstr ""
402
+ "Ciele kotvyšpecifikáciou HTML obmedzené na alfanumerické znaky (pozrite "
403
+ "si súbor readme, kde nájdete viac podrobností). Ak nevyhovujú žiadne znaky, "
404
+ "použije sa predvolená predpona kotvy. Ak necháte hodnotu prázdnu, použije sa "
405
+ "číslo."
406
 
407
+ #: toc.php:903
408
  msgid ""
409
  "This option normally applies to content written in character sets other than "
410
  "ASCII."
411
  msgstr ""
412
+ "Toto nastavenie sa zvyčajne používa pre obsah napísaný v sadách znakov iných "
413
+ "ako ASCII."
414
 
415
  #. translators: example anchor prefixes when no ascii characters match
416
+ #: toc.php:906
417
  msgid "Eg: i, toc_index, index, _"
418
+ msgstr "Príklad: i, toc_index, index, _"
419
 
420
  #. translators: advanced usage
421
+ #: toc.php:914
422
  msgid "Usage"
423
+ msgstr "Použitie"
424
 
425
+ #: toc.php:915
426
+ #, php-format
427
  msgid ""
428
  "If you would like to fully customise the position of the table of contents, "
429
  "you can use the %s shortcode by placing it at the desired position of your "
431
  "of contents despite having auto insertion disabled for its content type. "
432
  "Please visit the help tab for further information about this shortcode."
433
  msgstr ""
434
+ "Ak chcete úplne prispôsobiť umiestnenie obsahu, môžete použiť krátky kód %s "
435
+ "a umiestniť ho na požadované miesto vo vašom článku, na stránke alebo vo "
436
+ "vlastnom type článku. Táto metóda vám umožňuje vygenerovať obsah aj v "
437
+ "prípade, keď je zakázané automatické vkladanie pre daný typ obsahu. Pozrite "
438
+ "si záložku s pomocou, kde nájdete viac informácií o tomto krátkom kóde."
439
 
440
+ #: toc.php:923
441
+ #, php-format
442
  msgid ""
443
  "At its simplest, placing %s into a page will automatically create a sitemap "
444
  "of all pages and categories. This also works in a text widget."
445
  msgstr ""
446
+ "Ak umiestnite krátky kód %s na stránku, automaticky sa vytvorí mapa lokality "
447
+ "so všetkými stránkami a kategóriami. Funguje to aj vo widgete Text."
448
 
449
+ #: toc.php:927
450
  msgid "Show page listing"
451
+ msgstr "Zobraziť zoznam stránok"
452
 
453
+ #: toc.php:931
454
  msgid "Show category listing"
455
+ msgstr "Zobraziť zoznam kategórií"
456
 
457
+ #: toc.php:935
458
  msgid "Heading type"
459
+ msgstr "Typ nadpisu"
460
 
461
+ #. translators: the full line is supposed to read - Use [1-6 drop down list] to print out the titles
462
+ #: toc.php:938
 
463
  msgid "Use"
464
+ msgstr "Použiť"
465
 
466
+ #. translators: the full line is supposed to read - Use [h1-h6 drop down list] to print out the titles
467
+ #: toc.php:949
 
468
  msgid "to print out the titles"
469
+ msgstr "na vypísanie nadpisov"
470
 
471
+ #: toc.php:953
472
  msgid "Pages label"
473
+ msgstr "Označenie stránok"
474
 
475
+ #: toc.php:955
476
  msgid "Eg: Pages, Page List"
477
+ msgstr "Príklad: Stránky, Zoznam stránok"
478
 
479
+ #: toc.php:959
480
  msgid "Categories label"
481
+ msgstr "Označenie kategórií"
482
 
483
+ #: toc.php:961
484
  msgid "Eg: Categories, Category List"
485
+ msgstr "Príklad: Kategórie, Zoznam kategórií"
486
 
487
+ #: toc.php:967
488
  msgid "Advanced usage"
489
+ msgstr "Rozšírené použitie"
490
 
491
+ #: toc.php:969
492
+ #, php-format
493
  msgid ""
494
  "lets you print out a listing of only pages. Similarly %s can be used to "
495
  "print out a category listing. They both can accept a number of attributes so "
496
  "visit the help tab for more information."
497
  msgstr ""
498
+ "vám umožňuje vypísať iba zoznam stránok. Podobne, %s sa použiť na "
499
+ "vypísanie zoznamu kategórií. Oba krátke kódy akceptujú istý počet atribútov. "
500
+ "Pozrite si záložku s pomocou, kde nájdete viac informácií."
501
 
502
+ #: toc.php:970
503
  msgid "Examples"
504
  msgstr "Príklady"
505
 
506
+ #: toc.php:972
507
  msgid "hides the heading from a category listing"
508
+ msgstr "skryje názov v zozname kategórií"
509
 
510
+ #: toc.php:973
511
+ #, php-format
512
  msgid ""
513
  "Uses h6 to display %s on a page listing excluding pages with IDs 1 and 15"
514
  msgstr ""
515
+ "použije h6 na zobrazenie textu %s v zozname stránok s výnimkou stránok s ID "
516
+ "1 a 15"
517
 
518
+ #: toc.php:981
519
  msgid "Where's my table of contents?"
520
+ msgstr "Kde je môj obsah?"
521
 
522
+ #: toc.php:982
523
  msgid ""
524
  "If you're reading this, then chances are you have successfully installed and "
525
  "enabled the plugin and you're just wondering why the index isn't appearing "
526
  "right? Try the following:"
527
  msgstr ""
528
+ "Ak čítate tento text, zrejme ste úspešne nainštalovali a povolili modul a "
529
+ "rozmýšľate, prečo sa nezobrazuje obsah. Skúste nasledujúce tipy."
 
530
 
531
+ #: toc.php:984
532
  msgid ""
533
  "In most cases, the post, page or custom post type has less than the minimum "
534
  "number of headings. By default, this is set to four so make sure you have at "
535
  "least four headings within your content. If you want to change this value, "
536
  "you can find it under 'Main Options' &gt; 'Show when'."
537
  msgstr ""
538
+ "Vo väčšine prípadov má článok, stránka alebo vlastný typ článku menej ako "
539
+ "minimálny počet nadpisov. Počet nadpisov je predvolene nastavený na 4, preto "
540
+ "skontrolujte, či máte v texte aspoň štyri nadpisy. Ak chcete zmeniť túto "
541
+ "hodnotu, nájdete ju v časti <em>\"Hlavné nastavenia &gt; Zobraziť pre</em>\"."
 
542
 
543
+ #: toc.php:985
544
  msgid ""
545
  "Is auto insertion enabled for your content type? By default, only pages are "
546
  "enabled."
547
  msgstr ""
548
+ "Je pre váš typ obsahu povolené automatické vkladanie? Predvolene je povolené "
549
+ "iba pre stránky."
550
 
551
+ #: toc.php:986
552
  msgid ""
553
  "Have you got <code>[no_toc]</code> somewhere within the content? This will "
554
  "disable the index for the current post, page or custom post type."
555
  msgstr ""
556
+ "Použili ste niekde v texte značku <code>[no_toc]</code>? Táto značka "
557
+ "zakazuje zobrazenie obsahu pre aktuálny článok, stránku alebo vlastný typ "
558
+ "článku."
559
 
560
+ #: toc.php:987
561
  msgid ""
562
  "If you are using the TOC+ widget, check if you have the <em>\"Show the table "
563
  "of contents only in the sidebar\"</em> enabled as this will limit its "
564
  "display to only the sidebar. You can check by going into Appearance &gt; "
565
  "Widgets."
566
  msgstr ""
567
+ "Ak používate widget TOC+, skontrolujte, či je povolená voľba <em>\"Zobraziť "
568
+ "obsah iba na bočnom paneli\"</em>, pretože obmedzuje zobrazenie obsahu iba "
569
+ "na bočný panel. Môžete to skontrolovať v časti <em>\"Vzhľad &gt; Widgety</em>"
570
+ "\"."
571
 
572
+ #: toc.php:988
573
  msgid ""
574
  "You may have restricted generation to a URL path match. The setting can be "
575
  "found in the advanced section under Main Options."
576
  msgstr ""
577
+ "Možno ste generovanie obmedzili na zhodu cesty v adrese URL. Toto nastavenie "
578
+ "nájdete v rozšírenej sekcii na záložke <em>\"Hlavné nastavenia</em>\"."
579
 
580
+ #: toc.php:991
581
  msgid "How do I stop the table of contents from appearing on a single page?"
582
+ msgstr "Ako zabránim zobrazeniu obsahu na stránke?"
583
 
584
+ #: toc.php:992
585
  msgid ""
586
  "Place the following <code>[no_toc]</code> anywhere on the page to suppress "
587
  "the table of contents. This is known as a shortcode and works for posts, "
588
  "pages and custom post types that make use of the_content()"
589
  msgstr ""
590
+ "Ak nechcete zobraziť obsah, umiestnite značku <code>[no_toc]</code> "
591
+ "kdekoľvek v texte stránky. Táto značka je známa ako krátky kód a funguje pre "
592
+ "články, stránky a vlastné typy článkov, ktoré používajú funkciu the_content"
593
+ "()."
594
 
595
+ #: toc.php:994
596
  msgid ""
597
  "I've set wrapping to left or right but the headings don't wrap around the "
598
  "table of contents"
599
  msgstr ""
600
+ "Nastavil som zalamovanie vľavo alebo vpravo, ale nadpisy sa nezalamujú okolo "
601
+ "obsahu"
602
 
603
+ #: toc.php:995
604
  msgid ""
605
  "This normally occurs when there is a CSS clear directive in or around the "
606
  "heading originating from the theme (Twenty Eleven and Twenty Twelve are two "
607
  "themes which do this). This directive tells the user agent to reset the "
608
  "previous wrapping specifications."
609
  msgstr ""
610
+ "Stáva sa to, ak existuje direktíva CSS clear v nadpise alebo okolo nadpisu, "
611
+ "ktorá pochádza z témy (platí to napríklad v prípade tém Twenty Eleven a "
612
+ "Twenty Twelve). Táto direktíva hovorí agentovi používateľa, aby zrušil "
613
+ "staršie špecifikácie zalamovania."
614
 
615
+ #: toc.php:996
616
+ #, php-format
617
  msgid ""
618
  "You can adjust your theme's CSS or try moving the table of contents position "
619
  "to the top of the page. If you didn't build your theme, I'd highly suggest "
620
  "you try the %s if you wish to make CSS changes."
621
  msgstr ""
622
+ "Môžete upraviť štýl CSS vašej témy alebo skúsiť presunúť umiestnenie obsahu "
623
+ "na začiatok stránky. Ak ste vašu tému nevytvorili a chcete spraviť zmeny v "
624
+ "štýle CSS, odporúčam vám vyskúšať %s."
625
 
626
  #. translators: CSS code follows after this line
627
+ #: toc.php:999
628
  msgid ""
629
  "Try adding the following CSS to allow the wrapping to occur around the table "
630
  "of contents:"
631
  msgstr ""
632
+ "Skúste pridať nasledujúci štýl CSS, ktorý povolí zalamovanie okolo obsahu:"
633
 
634
+ #: toc.php:1004
635
  msgid "How do I include the name of the page in the table of contents title?"
636
+ msgstr "Ako zahrniem názov stránky do názvu obsahu?"
637
 
638
+ #: toc.php:1005
639
  msgid ""
640
  "As the title of the page changes depending on the page you're viewing, you "
641
  "can use the following special variable to automatically insert the title of "
642
  "the page into the table of contents heading:"
643
  msgstr ""
644
+ "Nadpis stránky sa mení v závislosti od zobrazenej stránky, preto môžete "
645
+ "použiť nasledujúcu špeciálnu premennú na automatické vloženie nadpisu "
646
+ "stránky do nadpisu obsahu:"
647
 
648
+ #: toc.php:1007
649
  msgid "You can use it as is or place text either side of the variable."
650
+ msgstr "Môžete ju použiť bez zmeny alebo pridať text pred alebo za premennú."
651
 
652
+ #: toc.php:1008
653
  msgid ""
654
  "As an example: if your page is named <em>Great Expectations</em> and your "
655
  "table of contents title is set to <em>Contents for %PAGE_NAME%</em>, the "
656
  "final title would read <em>Contents for Great Expectations</em>"
657
  msgstr ""
658
+ "Príklad: Ak vaša stránka názov <em>Veľké očakávania</em> a nadpis vášho "
659
+ "obsahu je nastavený na <em>Obsah pre %PAGE_NAME%</em>, výsledný nadpis bude "
660
+ "<em>Obsah pre Veľké očakávania</em>"
661
 
662
+ #: toc.php:1010
663
  msgid "The sitemap uses a strange font dissimilar to the rest of the site"
664
+ msgstr ""
665
+ "Mapa lokality používa zvláštne písmo, ktoré sa nepodobá písmu vo zvyšku "
666
+ "lokality"
667
 
668
+ #: toc.php:1011
669
  msgid ""
670
  "No extra styles are created for the sitemap, instead it inherits any styles "
671
  "you used when adding the shortcode. If you copy and pasted, you probably "
672
  "also copied the 'code' tags surrounding it so remove them if this is the "
673
  "case."
674
  msgstr ""
675
+ "Pre mapu lokality nie sú vytvorené žiadne extra štýly. Mapa lokality dedí "
676
+ "štýly, ktoré ste použili pri pridávaní krátkeho kódu. Ak ste použili "
677
+ "kopírovanie a prilepenie, pravdepodobne ste tiež skopírovali značky 'code' "
678
+ "okolo, preto by ste ich v tomto prípade mali odstrániť."
679
 
680
+ #: toc.php:1012
681
  msgid ""
682
  "In most cases, try to have the shortcode on its own line with nothing before "
683
  "or after the square brackets."
684
  msgstr ""
685
+ "Vo väčšine prípadov skúste umiestniť krátky kód na samostatný riadok - "
686
+ "žiadny text pred ani za hranatými zátvorkami."
687
 
688
+ #: toc.php:1014
689
  msgid "What were those shortcodes and attributes again?"
690
+ msgstr "Ešte raz, aké to boli krátke kódy a atribúty?"
691
 
692
+ #: toc.php:1015
693
  msgid ""
694
  "When attributes are left out for the shortcodes below, they will fallback to "
695
  "the settings you defined under Settings &gt; TOC+."
696
  msgstr ""
697
+ "Ak pre krátke kódy dole nepoužijete atribúty, použijú sa pre ne nastavenia, "
698
+ "ktoré ste definovali v časti <em>\"Nastavenia &gt; TOC+</em>\"."
699
 
700
+ #: toc.php:1019
701
  msgid "Shortcode"
702
+ msgstr "Krátky kód"
703
 
704
+ #: toc.php:1020
705
  msgid "Description"
706
+ msgstr "Opis"
707
 
708
+ #: toc.php:1021
709
  msgid "Attributes"
710
  msgstr "Atribúty"
711
 
712
+ #: toc.php:1027
713
  msgid ""
714
  "Lets you generate the table of contents at the preferred position. Also "
715
  "useful for sites that only require a TOC on a small handful of pages."
716
  msgstr ""
717
+ "Umožňuje vám vygenerovať obsah na vopred určenom mieste. Je to tiež užitočné "
718
+ "pre lokality, ktoré vyžadujú obsah iba na malom počte stránok."
719
 
720
+ #: toc.php:1030
721
  msgid "text, title of the table of contents"
722
+ msgstr "text; nadpis obsahu"
723
 
724
+ #: toc.php:1031
725
  msgid "true/false, shows or hides the title"
726
+ msgstr "true/false; zobrazí alebo skryje nadpis"
727
 
728
+ #: toc.php:1032
729
  msgid "text, either \"left\" or \"right\""
730
+ msgstr "text; buď \"left\", alebo \"right\""
731
 
732
+ #: toc.php:1033
733
  msgid ""
734
  "numbers, this lets you select the heading levels you want included in the "
735
  "table of contents. Separate multiple levels with a comma. Example: include "
736
  "headings 3, 4 and 5 but exclude the others with"
737
  msgstr ""
738
+ "čísla; toto vám umožňuje vybrať úrovne nadpisu, ktoré chcete zahrnúť do "
739
+ "obsahu. Viacero úrovní oddeľte čiarkou. Príklad: zahrnúť nadpisy úrovne 3, 4 "
740
+ "a 5, ale vylúčiť ostatné:"
741
 
742
+ #: toc.php:1034
743
+ msgid ""
744
+ "text, enter headings to be excluded. Separate multiple headings with a pipe "
745
+ "<code>|</code>. Use an asterisk <code>*</code> as a wildcard to match other "
746
+ "text. You could also use regular expressions for more advanced matching."
747
+ msgstr ""
748
+ "text; zadajte nadpisy na vylúčenie. Viacero nadpisov oddeľte znakom rúry "
749
+ "(<code>|</code>). Môžete použiť hviezdičku (<code>*</code>) ako zástupný "
750
+ "znak na označenie iného textu. Pre určenie viac rozšírenej zhody tiež môžete "
751
+ "použiť regulárne výrazy."
752
+
753
+ #: toc.php:1040
754
  msgid ""
755
  "Allows you to disable the table of contents for the current post, page, or "
756
  "custom post type."
757
  msgstr ""
758
+ "Umožňuje vám zakázať obsah pre aktuálny článok, stránku alebo vlastný typ "
759
+ "článku."
760
 
761
+ #: toc.php:1045
762
  msgid ""
763
  "Produces a listing of all pages and categories for your site. You can use "
764
  "this on any post, page or even in a text widget."
765
  msgstr ""
766
+ "Vytvorí zoznam všetkých stránok a kategórií pre vašu lokalitu. Môžete to "
767
+ "použiť v ľubovoľnom článku, na stránke a dokonca aj vo widgete Text."
768
 
769
+ #: toc.php:1050
770
  msgid "Lets you print out a listing of only pages."
771
+ msgstr "Umožňuje vám vypísať iba zoznam stránok."
772
 
773
+ #: toc.php:1053
774
  msgid "number between 1 and 6, defines which html heading to use"
775
+ msgstr "číslo medzi 1 a 6; definuje, ktorý nadpis HTML sa použije"
776
 
777
+ #: toc.php:1054
778
  msgid "text, title of the list"
779
+ msgstr "text; nadpis zoznamu"
780
 
781
+ #: toc.php:1055
782
  msgid "true/false, shows or hides the list heading"
783
+ msgstr "true/false; zobrazí alebo skryje nadpis zoznamu"
784
 
785
+ #: toc.php:1056
786
  msgid "IDs of the pages or categories you wish to exclude"
787
+ msgstr "Identifikátory stránok alebo kategórií na vylúčenie"
788
 
789
+ #: toc.php:1057
790
  msgid ""
791
  "ID of the page or category you wish to exclude including its all descendants"
792
+ msgstr "ID stránky alebo kategórie na vylúčenie vrátane všetkých jej potomkov"
 
 
793
 
794
+ #: toc.php:1063
795
  msgid "Similar to [sitemap_pages] but for categories."
796
+ msgstr "Podobné krátkemu kódu [sitemap_pages], ale pre kategórie."
797
+
798
+ #: toc.php:1068
799
+ msgid ""
800
+ "This lets you print out an index of all published posts on your site. By "
801
+ "default, posts are listed in alphabetical order grouped by their first "
802
+ "letters. There are CSS classes for each section, letter and list allowing "
803
+ "you to customise the appearance."
804
+ msgstr ""
805
+ "Toto vám umožňuje vypísať zoznam všetkých zverejnených článkov vo vašej "
806
+ "lokalite. Články sú predvolene zoradené v abecednom poradí a zoskupené podľa "
807
+ "ich prvých písmen. Existujú triedy CSS pre každú sekciu, písmeno a zoznam, "
808
+ "preto môžete prispôsobiť vzhľad."
809
 
810
+ #: toc.php:1071
811
+ msgid "text, either ASC or DESC"
812
+ msgstr "text; buď ASC, alebo DESC"
813
+
814
+ #: toc.php:1072
815
+ #, php-format
816
+ msgid ""
817
+ "text, popular options include \"title\", \"date\", \"ID\", and \"rand\". See "
818
+ "%1$sWP_Query%2$s for a list."
819
+ msgstr ""
820
+ "text; k obľúbeným voľbám patria \"title\", \"date\", \"ID\" a \"rand\". "
821
+ "Zoznam nájdete v dokumente %1$sWP_Query%2$s."
822
+
823
+ #: toc.php:1080
824
  msgid "I have another question..."
825
+ msgstr "Mám inú otázku..."
826
 
827
+ #: toc.php:1081
828
+ #, php-format
829
  msgid ""
830
  "Visit the %1$splugin homepage%2$s to ask your question - who knows, maybe "
831
  "your question has already been answered. I'd really like to hear your "
832
  "suggestions if you have any."
833
  msgstr ""
834
+ "Ak máte otázku, navštívte %1$sdomovskú stránku modulu%2$s - na vašu otázku "
835
+ " možno niekto odpovedal. Ak máte návrhy, veľmi rád by som sa ich dozvedel."
836
+
837
+ #: toc.php:1083
838
+ msgid "For developers"
839
+ msgstr "Pre vývojárov"
840
+
841
+ #: toc.php:1085
842
+ msgid "How do I customise my anchors?"
843
+ msgstr "Ako sa dajú prispôsobiť moje kotvy?"
844
+
845
+ #: toc.php:1086
846
+ msgid ""
847
+ "If you're still not happy with the anchors, you can modify them to suit your "
848
+ "needs through a custom function hooked into the <code>toc_url_anchor_target</"
849
+ "code> filter. As an example, place the below code snippet into your "
850
+ "functions.php file to convert all anchors to uppercase."
851
+ msgstr ""
852
+ "Ak stále nie ste spokojný s kotvami, môžete ich upraviť, aby vyhovovali "
853
+ "vašim potrebám. Dosiahnete to vlastnou funkciou pripojenou na filter "
854
+ "<code>toc_url_anchor_target</code>. Ak chcete napríklad konvertovať všetky "
855
+ "kotvy na veľké písmená, umiestnite nasledujúci kúsok kódu do vášho súboru "
856
+ "functions.php."
857
+
858
+ #: toc.php:1096
859
+ msgid ""
860
+ "Returns a HTML formatted string of the table of contents without the "
861
+ "surrounding UL or OL tags to allow the theme editor to supply their own ID "
862
+ "and/or classes to the outer list."
863
+ msgstr ""
864
+ "Vráti reťazec naformátovaný ako HTML, ktorý reprezentuje obsah bez okolitých "
865
+ "značiek UL alebo OL, aby mohol editor tém poskytnúť vlastné ID alebo triedy "
866
+ "pre vonkajší zoznam."
867
+
868
+ #: toc.php:1097
869
+ msgid "Both parameters are optional:"
870
+ msgstr "Oba parametre sú voliteľné:"
871
+
872
+ #. translators: this explains the $content parameter
873
+ #: toc.php:1101
874
+ msgid ""
875
+ "is the entire content with headings. If blank, will default to the current "
876
+ "content found in $post (eg within \"the loop\")."
877
+ msgstr ""
878
+ "je celý obsah s nadpismi. Ak je prázdny, použije sa aktuálny obsah v objekte "
879
+ "$post (napríklad v \"slučke\" (loop))."
880
+
881
+ #. translators: this explains the $prefix_url parameter
882
+ #: toc.php:1104
883
+ msgid ""
884
+ "is the URL to prefix the anchor with. If a string was provided, it will be "
885
+ "used as is. If set to \"true\" then will try to obtain the permalink from "
886
+ "the $post object."
887
+ msgstr ""
888
+ "je adresa URL, ktorá sa použije ako predpona pre kotvu. Ak je zadaný "
889
+ "reťazec, použije sa bez zmeny. Ak je nastavená hodnota \"true\", spraví sa "
890
+ "pokus o získanie trvalého odkazu z objektu $post."
891
+
892
+ #: toc.php:1106
893
+ msgid "These examples assume you are within \"the loop\":"
894
+ msgstr "Tieto príklady predpokladajú, že ste v \"slučke\" (loop):"
895
+
896
+ #: toc.php:1108
897
+ msgid "Obtain the index for the current page"
898
+ msgstr "Získať index pre aktuálnu stránku"
899
+
900
+ #: toc.php:1111
901
+ msgid "Create a listing of all children and their headings"
902
+ msgstr "Vytvoriť zoznam všetkých potomkov a ich nadpisov"
903
 
904
+ #: toc.php:1136
905
  msgid "Update Options"
906
+ msgstr "Aktualizovať nastavenia"
907
 
908
+ #: toc.php:1618
909
  msgid "Display the table of contents in the sidebar with this widget"
910
+ msgstr "Tento widget zobrazí obsah na bočnom paneli"
911
 
912
+ #: toc.php:1710
913
  msgid "Show the table of contents only in the sidebar"
914
+ msgstr "Zobraziť obsah iba na bočnom paneli"
languages/toc+.pot CHANGED
@@ -1,788 +1,686 @@
1
- # Copyright (C) 2013
2
- # This file is distributed under the same license as the package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: \n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/table-of-contents-plus\n"
7
- "POT-Creation-Date: 2013-03-21 12:46:27+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
 
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
 
 
 
 
14
 
15
  #: toc.php:175
16
  msgid "Settings"
17
  msgstr ""
18
 
19
- #: toc.php:424 toc.php:425
20
  msgid "TOC"
21
  msgstr ""
22
 
23
- #: toc.php:575
24
  msgid "Options saved."
25
  msgstr ""
26
 
27
- #: toc.php:577
28
  msgid "Save failed."
29
  msgstr ""
30
 
31
- #: toc.php:589
32
  msgid "Main Options"
33
  msgstr ""
34
 
35
- #: toc.php:590
36
  msgid "Sitemap"
37
  msgstr ""
38
 
39
- #: toc.php:591
40
  msgid "Help"
41
  msgstr ""
42
 
43
- #: toc.php:599
44
  msgid "Position"
45
  msgstr ""
46
 
47
- #: toc.php:602
48
  msgid "Before first heading (default)"
49
  msgstr ""
50
 
51
- #: toc.php:603
52
  msgid "After first heading"
53
  msgstr ""
54
 
55
- #: toc.php:604
56
  msgid "Top"
57
  msgstr ""
58
 
59
- #: toc.php:605
60
  msgid "Bottom"
61
  msgstr ""
62
 
63
- #: toc.php:610
64
  msgid "Show when"
65
  msgstr ""
66
 
67
  #. translators: text follows drop down list of numbers
68
- #: toc.php:622
69
  msgid "or more headings are present"
70
  msgstr ""
71
 
72
- #: toc.php:626
73
  msgid "Auto insert for the following content types"
74
  msgstr ""
75
 
76
  #. translators: this is the title of the table of contents
77
- #: toc.php:641
78
  msgid "Heading text"
79
  msgstr ""
80
 
81
- #: toc.php:643
82
  msgid "Show title on top of the table of contents"
83
  msgstr ""
84
 
85
- #: toc.php:646
86
  msgid "Eg: Contents, Table of Contents, Page Contents"
87
  msgstr ""
88
 
89
- #: toc.php:648
90
  msgid "Allow the user to toggle the visibility of the table of contents"
91
  msgstr ""
92
 
93
- #: toc.php:653
94
  msgid "Show text"
95
  msgstr ""
96
 
97
- #. translators: example text to display when you want to expand the table of
98
- #. contents
99
- #: toc.php:657
100
  msgid "Eg: show"
101
  msgstr ""
102
 
103
- #: toc.php:660
104
  msgid "Hide text"
105
  msgstr ""
106
 
107
- #. translators: example text to display when you want to collapse the table of
108
- #. contents
109
- #: toc.php:664
110
  msgid "Eg: hide"
111
  msgstr ""
112
 
113
- #: toc.php:668
114
  msgid "Hide the table of contents initially"
115
  msgstr ""
116
 
117
- #: toc.php:674
118
  msgid "Show hierarchy"
119
  msgstr ""
120
 
121
- #: toc.php:678
122
  msgid "Number list items"
123
  msgstr ""
124
 
125
- #: toc.php:682
126
  msgid "Enable smooth scroll effect"
127
  msgstr ""
128
 
129
- #: toc.php:683
130
  msgid "Scroll rather than jump to the anchor link"
131
  msgstr ""
132
 
133
- #: toc.php:688
134
  msgid "Appearance"
135
  msgstr ""
136
 
137
- #: toc.php:692
138
  msgid "Width"
139
  msgstr ""
140
 
141
- #: toc.php:695
142
  msgid "Fixed width"
143
  msgstr ""
144
 
145
- #: toc.php:706
146
  msgid "Relative"
147
  msgstr ""
148
 
149
- #: toc.php:707
150
  msgid "Auto (default)"
151
  msgstr ""
152
 
153
  #. translators: other width
154
- #: toc.php:717
155
  msgid "Other"
156
  msgstr ""
157
 
158
- #: toc.php:718
159
  msgid "User defined"
160
  msgstr ""
161
 
162
  #. translators: ignore %s as it's some HTML label tags
163
- #: toc.php:724
 
164
  msgid "Please enter a number and %s select its units, eg: 100px, 10em"
165
  msgstr ""
166
 
167
- #: toc.php:735
168
  msgid "Wrapping"
169
  msgstr ""
170
 
171
- #: toc.php:738
172
  msgid "None (default)"
173
  msgstr ""
174
 
175
- #: toc.php:739
176
  msgid "Left"
177
  msgstr ""
178
 
179
- #: toc.php:740
180
  msgid "Right"
181
  msgstr ""
182
 
183
- #: toc.php:745
184
  msgid "Font size"
185
  msgstr ""
186
 
187
  #. translators: appearance / colour / look and feel options
188
- #: toc.php:758
189
  msgid "Presentation"
190
  msgstr ""
191
 
192
- #: toc.php:761
193
  msgid "Grey (default)"
194
  msgstr ""
195
 
196
- #: toc.php:766
197
  msgid "Light blue"
198
  msgstr ""
199
 
200
- #: toc.php:771
201
  msgid "White"
202
  msgstr ""
203
 
204
- #: toc.php:776
205
  msgid "Black"
206
  msgstr ""
207
 
208
- #: toc.php:781
209
  msgid "Transparent"
210
  msgstr ""
211
 
212
- #: toc.php:786
213
  msgid "Custom"
214
  msgstr ""
215
 
216
- #: toc.php:796
217
  msgid "Background"
218
  msgstr ""
219
 
220
- #: toc.php:800
221
  msgid "Border"
222
  msgstr ""
223
 
224
- #: toc.php:804 toc.php:1702
225
  msgid "Title"
226
  msgstr ""
227
 
228
- #: toc.php:808
229
  msgid "Links"
230
  msgstr ""
231
 
232
- #: toc.php:812
233
  msgid "Links (hover)"
234
  msgstr ""
235
 
236
- #: toc.php:816
237
  msgid "Links (visited)"
238
  msgstr ""
239
 
240
- #: toc.php:823
 
241
  msgid "Leaving the value as %s will inherit your theme's styles"
242
  msgstr ""
243
 
244
- #: toc.php:830
245
  msgid "Advanced"
246
  msgstr ""
247
 
248
- #: toc.php:830 toc.php:967 toc.php:1083
249
  msgid "show"
250
  msgstr ""
251
 
252
- #: toc.php:832
253
  msgid "Power options"
254
  msgstr ""
255
 
256
- #: toc.php:836
257
  msgid "Lowercase"
258
  msgstr ""
259
 
260
- #: toc.php:837
261
  msgid "Ensure anchors are in lowercase"
262
  msgstr ""
263
 
264
- #: toc.php:840
265
  msgid "Hyphenate"
266
  msgstr ""
267
 
268
- #: toc.php:841
269
  msgid "Use - rather than _ in anchors"
270
  msgstr ""
271
 
272
- #: toc.php:844
273
  msgid "Include homepage"
274
  msgstr ""
275
 
276
- #: toc.php:845
277
  msgid "Show the table of contents for qualifying items on the homepage"
278
  msgstr ""
279
 
280
- #: toc.php:848
281
  msgid "Exclude CSS file"
282
  msgstr ""
283
 
284
- #: toc.php:849
285
- msgid ""
286
- "Prevent the loading of this plugin's CSS styles. When selected, the "
287
- "appearance options from above will also be ignored."
288
  msgstr ""
289
 
290
- #: toc.php:852
291
  msgid "Preserve theme bullets"
292
  msgstr ""
293
 
294
- #: toc.php:853
295
- msgid ""
296
- "If your theme includes background images for unordered list elements, enable "
297
- "this to support them"
298
  msgstr ""
299
 
300
- #: toc.php:856
301
  msgid "Heading levels"
302
  msgstr ""
303
 
304
- #: toc.php:858
305
- msgid ""
306
- "Include the following heading levels. Deselecting a heading will exclude it."
307
  msgstr ""
308
 
309
- #: toc.php:864
310
  msgid "heading "
311
  msgstr ""
312
 
313
- #: toc.php:870
314
  msgid "Exclude headings"
315
  msgstr ""
316
 
317
- #: toc.php:873
318
- msgid ""
319
- "Specify headings to be excluded from appearing in the table of contents. "
320
- "Separate multiple headings with a pipe <code>|</code>. Use an asterisk "
321
- "<code>*</code> as a wildcard to match other text. Note that this is not "
322
- "case sensitive. Some examples:"
323
  msgstr ""
324
 
325
- #: toc.php:875
326
  msgid "<code>Fruit*</code> ignore headings starting with \"Fruit\""
327
  msgstr ""
328
 
329
- #: toc.php:876
330
- msgid ""
331
- "<code>*Fruit Diet*</code> ignore headings with \"Fruit Diet\" somewhere in "
332
- "the heading"
333
  msgstr ""
334
 
335
- #: toc.php:877
336
- msgid ""
337
- "<code>Apple Tree|Oranges|Yellow Bananas</code> ignore headings that are "
338
- "exactly \"Apple Tree\", \"Oranges\" or \"Yellow Bananas\""
339
  msgstr ""
340
 
341
- #: toc.php:882
342
  msgid "Smooth scroll top offset"
343
  msgstr ""
344
 
345
- #: toc.php:885
346
- msgid ""
347
- "If you have a consistent menu across the top of your site, you can adjust "
348
- "the top offset to stop the headings from appearing underneath the top menu. "
349
- "A setting of 30 accommodates the WordPress admin bar. This setting appears "
350
- "after you have enabled smooth scrolling from above."
351
  msgstr ""
352
 
353
- #: toc.php:889
354
  msgid "Restrict path"
355
  msgstr ""
356
 
357
- #: toc.php:892
358
- msgid ""
359
- "Restrict generation of the table of contents to pages that match the "
360
- "required path. This path is from the root of your site and always begins "
361
- "with a forward slash."
362
  msgstr ""
363
 
364
  #. translators: example URL path restriction
365
- #: toc.php:895
366
  msgid "Eg: /wiki/, /corporate/annual-reports/"
367
  msgstr ""
368
 
369
- #: toc.php:899
370
  msgid "Default anchor prefix"
371
  msgstr ""
372
 
373
- #: toc.php:902
374
- msgid ""
375
- "Anchor targets are restricted to alphanumeric characters as per HTML "
376
- "specification (see readme for more detail). The default anchor prefix will "
377
- "be used when no characters qualify. When left blank, a number will be used "
378
- "instead."
379
  msgstr ""
380
 
381
- #: toc.php:903
382
- msgid ""
383
- "This option normally applies to content written in character sets other than "
384
- "ASCII."
385
  msgstr ""
386
 
387
  #. translators: example anchor prefixes when no ascii characters match
388
- #: toc.php:906
389
  msgid "Eg: i, toc_index, index, _"
390
  msgstr ""
391
 
392
  #. translators: advanced usage
393
- #: toc.php:914
394
  msgid "Usage"
395
  msgstr ""
396
 
397
- #: toc.php:915
398
- msgid ""
399
- "If you would like to fully customise the position of the table of contents, "
400
- "you can use the %s shortcode by placing it at the desired position of your "
401
- "post, page or custom post type. This method allows you to generate the table "
402
- "of contents despite having auto insertion disabled for its content type. "
403
- "Please visit the help tab for further information about this shortcode."
404
  msgstr ""
405
 
406
- #: toc.php:923
407
- msgid ""
408
- "At its simplest, placing %s into a page will automatically create a sitemap "
409
- "of all pages and categories. This also works in a text widget."
410
  msgstr ""
411
 
412
- #: toc.php:927
413
  msgid "Show page listing"
414
  msgstr ""
415
 
416
- #: toc.php:931
417
  msgid "Show category listing"
418
  msgstr ""
419
 
420
- #: toc.php:935
421
  msgid "Heading type"
422
  msgstr ""
423
 
424
- #. translators: the full line is supposed to read - Use [1-6 drop down list] to
425
- #. print out the titles
426
- #: toc.php:938
427
  msgid "Use"
428
  msgstr ""
429
 
430
- #. translators: the full line is supposed to read - Use [h1-h6 drop down list]
431
- #. to print out the titles
432
- #: toc.php:949
433
  msgid "to print out the titles"
434
  msgstr ""
435
 
436
- #: toc.php:953
437
  msgid "Pages label"
438
  msgstr ""
439
 
440
- #: toc.php:955
441
  msgid "Eg: Pages, Page List"
442
  msgstr ""
443
 
444
- #: toc.php:959
445
  msgid "Categories label"
446
  msgstr ""
447
 
448
- #: toc.php:961
449
  msgid "Eg: Categories, Category List"
450
  msgstr ""
451
 
452
- #: toc.php:967
453
  msgid "Advanced usage"
454
  msgstr ""
455
 
456
- #: toc.php:969
457
- msgid ""
458
- "lets you print out a listing of only pages. Similarly %s can be used to "
459
- "print out a category listing. They both can accept a number of attributes so "
460
- "visit the help tab for more information."
461
  msgstr ""
462
 
463
- #: toc.php:970
464
  msgid "Examples"
465
  msgstr ""
466
 
467
- #: toc.php:972
468
  msgid "hides the heading from a category listing"
469
  msgstr ""
470
 
471
- #: toc.php:973
472
- msgid ""
473
- "Uses h6 to display %s on a page listing excluding pages with IDs 1 and 15"
474
  msgstr ""
475
 
476
- #: toc.php:981
477
  msgid "Where's my table of contents?"
478
  msgstr ""
479
 
480
- #: toc.php:982
481
- msgid ""
482
- "If you're reading this, then chances are you have successfully installed and "
483
- "enabled the plugin and you're just wondering why the index isn't appearing "
484
- "right? Try the following:"
485
  msgstr ""
486
 
487
- #: toc.php:984
488
- msgid ""
489
- "In most cases, the post, page or custom post type has less than the minimum "
490
- "number of headings. By default, this is set to four so make sure you have at "
491
- "least four headings within your content. If you want to change this value, "
492
- "you can find it under 'Main Options' &gt; 'Show when'."
493
  msgstr ""
494
 
495
- #: toc.php:985
496
- msgid ""
497
- "Is auto insertion enabled for your content type? By default, only pages are "
498
- "enabled."
499
  msgstr ""
500
 
501
- #: toc.php:986
502
- msgid ""
503
- "Have you got <code>[no_toc]</code> somewhere within the content? This will "
504
- "disable the index for the current post, page or custom post type."
505
  msgstr ""
506
 
507
- #: toc.php:987
508
- msgid ""
509
- "If you are using the TOC+ widget, check if you have the <em>\"Show the table "
510
- "of contents only in the sidebar\"</em> enabled as this will limit its "
511
- "display to only the sidebar. You can check by going into Appearance &gt; "
512
- "Widgets."
513
  msgstr ""
514
 
515
- #: toc.php:988
516
- msgid ""
517
- "You may have restricted generation to a URL path match. The setting can be "
518
- "found in the advanced section under Main Options."
519
  msgstr ""
520
 
521
- #: toc.php:991
522
  msgid "How do I stop the table of contents from appearing on a single page?"
523
  msgstr ""
524
 
525
- #: toc.php:992
526
- msgid ""
527
- "Place the following <code>[no_toc]</code> anywhere on the page to suppress "
528
- "the table of contents. This is known as a shortcode and works for posts, "
529
- "pages and custom post types that make use of the_content()"
530
  msgstr ""
531
 
532
- #: toc.php:994
533
- msgid ""
534
- "I've set wrapping to left or right but the headings don't wrap around the "
535
- "table of contents"
536
  msgstr ""
537
 
538
- #: toc.php:995
539
- msgid ""
540
- "This normally occurs when there is a CSS clear directive in or around the "
541
- "heading originating from the theme (Twenty Eleven and Twenty Twelve are two "
542
- "themes which do this). This directive tells the user agent to reset the "
543
- "previous wrapping specifications."
544
  msgstr ""
545
 
546
- #: toc.php:996
547
- msgid ""
548
- "You can adjust your theme's CSS or try moving the table of contents position "
549
- "to the top of the page. If you didn't build your theme, I'd highly suggest "
550
- "you try the %s if you wish to make CSS changes."
551
  msgstr ""
552
 
553
  #. translators: CSS code follows after this line
554
- #: toc.php:999
555
- msgid ""
556
- "Try adding the following CSS to allow the wrapping to occur around the table "
557
- "of contents:"
558
  msgstr ""
559
 
560
- #: toc.php:1004
561
  msgid "How do I include the name of the page in the table of contents title?"
562
  msgstr ""
563
 
564
- #: toc.php:1005
565
- msgid ""
566
- "As the title of the page changes depending on the page you're viewing, you "
567
- "can use the following special variable to automatically insert the title of "
568
- "the page into the table of contents heading:"
569
  msgstr ""
570
 
571
- #: toc.php:1007
572
  msgid "You can use it as is or place text either side of the variable."
573
  msgstr ""
574
 
575
- #: toc.php:1008
576
- msgid ""
577
- "As an example: if your page is named <em>Great Expectations</em> and your "
578
- "table of contents title is set to <em>Contents for %PAGE_NAME%</em>, the "
579
- "final title would read <em>Contents for Great Expectations</em>"
580
  msgstr ""
581
 
582
- #: toc.php:1010
583
  msgid "The sitemap uses a strange font dissimilar to the rest of the site"
584
  msgstr ""
585
 
586
- #: toc.php:1011
587
- msgid ""
588
- "No extra styles are created for the sitemap, instead it inherits any styles "
589
- "you used when adding the shortcode. If you copy and pasted, you probably "
590
- "also copied the 'code' tags surrounding it so remove them if this is the "
591
- "case."
592
  msgstr ""
593
 
594
- #: toc.php:1012
595
- msgid ""
596
- "In most cases, try to have the shortcode on its own line with nothing before "
597
- "or after the square brackets."
598
  msgstr ""
599
 
600
- #: toc.php:1014
601
  msgid "What were those shortcodes and attributes again?"
602
  msgstr ""
603
 
604
- #: toc.php:1015
605
- msgid ""
606
- "When attributes are left out for the shortcodes below, they will fallback to "
607
- "the settings you defined under Settings &gt; TOC+."
608
  msgstr ""
609
 
610
- #: toc.php:1019
611
  msgid "Shortcode"
612
  msgstr ""
613
 
614
- #: toc.php:1020
615
  msgid "Description"
616
  msgstr ""
617
 
618
- #: toc.php:1021
619
  msgid "Attributes"
620
  msgstr ""
621
 
622
- #: toc.php:1027
623
- msgid ""
624
- "Lets you generate the table of contents at the preferred position. Also "
625
- "useful for sites that only require a TOC on a small handful of pages."
626
  msgstr ""
627
 
628
- #: toc.php:1030
629
  msgid "text, title of the table of contents"
630
  msgstr ""
631
 
632
- #: toc.php:1031
633
  msgid "true/false, shows or hides the title"
634
  msgstr ""
635
 
636
- #: toc.php:1032
637
  msgid "text, either \"left\" or \"right\""
638
  msgstr ""
639
 
640
- #: toc.php:1033
641
- msgid ""
642
- "numbers, this lets you select the heading levels you want included in the "
643
- "table of contents. Separate multiple levels with a comma. Example: include "
644
- "headings 3, 4 and 5 but exclude the others with"
645
  msgstr ""
646
 
647
- #: toc.php:1034
648
- msgid ""
649
- "text, enter headings to be excluded. Separate multiple headings with a pipe "
650
- "<code>|</code>. Use an asterisk <code>*</code> as a wildcard to match other "
651
- "text. You could also use regular expressions for more advanced matching."
652
  msgstr ""
653
 
654
- #: toc.php:1040
655
- msgid ""
656
- "Allows you to disable the table of contents for the current post, page, or "
657
- "custom post type."
658
  msgstr ""
659
 
660
- #: toc.php:1045
661
- msgid ""
662
- "Produces a listing of all pages and categories for your site. You can use "
663
- "this on any post, page or even in a text widget."
664
  msgstr ""
665
 
666
- #: toc.php:1050
667
  msgid "Lets you print out a listing of only pages."
668
  msgstr ""
669
 
670
- #: toc.php:1053
671
  msgid "number between 1 and 6, defines which html heading to use"
672
  msgstr ""
673
 
674
- #: toc.php:1054
675
  msgid "text, title of the list"
676
  msgstr ""
677
 
678
- #: toc.php:1055
679
  msgid "true/false, shows or hides the list heading"
680
  msgstr ""
681
 
682
- #: toc.php:1056
683
  msgid "IDs of the pages or categories you wish to exclude"
684
  msgstr ""
685
 
686
- #: toc.php:1057
687
- msgid ""
688
- "ID of the page or category you wish to exclude including its all descendants"
689
  msgstr ""
690
 
691
- #: toc.php:1063
692
  msgid "Similar to [sitemap_pages] but for categories."
693
  msgstr ""
694
 
695
- #: toc.php:1068
696
- msgid ""
697
- "This lets you print out an index of all published posts on your site. By "
698
- "default, posts are listed in alphabetical order grouped by their first "
699
- "letters. There are CSS classes for each section, letter and list allowing "
700
- "you to customise the appearance."
701
  msgstr ""
702
 
703
- #: toc.php:1071
704
  msgid "text, either ASC or DESC"
705
  msgstr ""
706
 
707
- #: toc.php:1072
708
- msgid ""
709
- "text, popular options include \"title\", \"date\", \"ID\", and \"rand\". See "
710
- "%1$sWP_Query%2$s for a list."
711
  msgstr ""
712
 
713
- #: toc.php:1080
 
 
 
 
714
  msgid "I have another question..."
715
  msgstr ""
716
 
717
- #: toc.php:1081
718
- msgid ""
719
- "Visit the %1$splugin homepage%2$s to ask your question - who knows, maybe "
720
- "your question has already been answered. I'd really like to hear your "
721
- "suggestions if you have any."
722
  msgstr ""
723
 
724
- #: toc.php:1083
725
  msgid "For developers"
726
  msgstr ""
727
 
728
- #: toc.php:1085
729
  msgid "How do I customise my anchors?"
730
  msgstr ""
731
 
732
- #: toc.php:1086
733
- msgid ""
734
- "If you're still not happy with the anchors, you can modify them to suit your "
735
- "needs through a custom function hooked into the <code>toc_url_anchor_target</"
736
- "code> filter. As an example, place the below code snippet into your "
737
- "functions.php file to convert all anchors to uppercase."
738
  msgstr ""
739
 
740
- #: toc.php:1096
741
- msgid ""
742
- "Returns a HTML formatted string of the table of contents without the "
743
- "surrounding UL or OL tags to allow the theme editor to supply their own ID "
744
- "and/or classes to the outer list."
745
  msgstr ""
746
 
747
- #: toc.php:1097
748
  msgid "Both parameters are optional:"
749
  msgstr ""
750
 
751
  #. translators: this explains the $content parameter
752
- #: toc.php:1101
753
- msgid ""
754
- "is the entire content with headings. If blank, will default to the current "
755
- "content found in $post (eg within \"the loop\")."
756
  msgstr ""
757
 
758
  #. translators: this explains the $prefix_url parameter
759
- #: toc.php:1104
760
- msgid ""
761
- "is the URL to prefix the anchor with. If a string was provided, it will be "
762
- "used as is. If set to \"true\" then will try to obtain the permalink from "
763
- "the $post object."
764
  msgstr ""
765
 
766
- #: toc.php:1106
767
  msgid "These examples assume you are within \"the loop\":"
768
  msgstr ""
769
 
770
- #: toc.php:1108
771
  msgid "Obtain the index for the current page"
772
  msgstr ""
773
 
774
- #: toc.php:1111
775
  msgid "Create a listing of all children and their headings"
776
  msgstr ""
777
 
778
- #: toc.php:1136
779
  msgid "Update Options"
780
  msgstr ""
781
 
782
- #: toc.php:1616
783
  msgid "Display the table of contents in the sidebar with this widget"
784
  msgstr ""
785
 
786
- #: toc.php:1708
787
  msgid "Show the table of contents only in the sidebar"
788
  msgstr ""
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: PACKAGE VERSION\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2013-08-05 23:58+1000\n"
12
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "Language: \n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=CHARSET\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
 
20
  #: toc.php:175
21
  msgid "Settings"
22
  msgstr ""
23
 
24
+ #: toc.php:435 toc.php:436
25
  msgid "TOC"
26
  msgstr ""
27
 
28
+ #: toc.php:586
29
  msgid "Options saved."
30
  msgstr ""
31
 
32
+ #: toc.php:588
33
  msgid "Save failed."
34
  msgstr ""
35
 
36
+ #: toc.php:600
37
  msgid "Main Options"
38
  msgstr ""
39
 
40
+ #: toc.php:601
41
  msgid "Sitemap"
42
  msgstr ""
43
 
44
+ #: toc.php:602
45
  msgid "Help"
46
  msgstr ""
47
 
48
+ #: toc.php:610
49
  msgid "Position"
50
  msgstr ""
51
 
52
+ #: toc.php:613
53
  msgid "Before first heading (default)"
54
  msgstr ""
55
 
56
+ #: toc.php:614
57
  msgid "After first heading"
58
  msgstr ""
59
 
60
+ #: toc.php:615
61
  msgid "Top"
62
  msgstr ""
63
 
64
+ #: toc.php:616
65
  msgid "Bottom"
66
  msgstr ""
67
 
68
+ #: toc.php:621
69
  msgid "Show when"
70
  msgstr ""
71
 
72
  #. translators: text follows drop down list of numbers
73
+ #: toc.php:633
74
  msgid "or more headings are present"
75
  msgstr ""
76
 
77
+ #: toc.php:637
78
  msgid "Auto insert for the following content types"
79
  msgstr ""
80
 
81
  #. translators: this is the title of the table of contents
82
+ #: toc.php:652
83
  msgid "Heading text"
84
  msgstr ""
85
 
86
+ #: toc.php:654
87
  msgid "Show title on top of the table of contents"
88
  msgstr ""
89
 
90
+ #: toc.php:657
91
  msgid "Eg: Contents, Table of Contents, Page Contents"
92
  msgstr ""
93
 
94
+ #: toc.php:659
95
  msgid "Allow the user to toggle the visibility of the table of contents"
96
  msgstr ""
97
 
98
+ #: toc.php:664
99
  msgid "Show text"
100
  msgstr ""
101
 
102
+ #. translators: example text to display when you want to expand the table of contents
103
+ #: toc.php:668
 
104
  msgid "Eg: show"
105
  msgstr ""
106
 
107
+ #: toc.php:671
108
  msgid "Hide text"
109
  msgstr ""
110
 
111
+ #. translators: example text to display when you want to collapse the table of contents
112
+ #: toc.php:675
 
113
  msgid "Eg: hide"
114
  msgstr ""
115
 
116
+ #: toc.php:679
117
  msgid "Hide the table of contents initially"
118
  msgstr ""
119
 
120
+ #: toc.php:685
121
  msgid "Show hierarchy"
122
  msgstr ""
123
 
124
+ #: toc.php:689
125
  msgid "Number list items"
126
  msgstr ""
127
 
128
+ #: toc.php:693
129
  msgid "Enable smooth scroll effect"
130
  msgstr ""
131
 
132
+ #: toc.php:694
133
  msgid "Scroll rather than jump to the anchor link"
134
  msgstr ""
135
 
136
+ #: toc.php:699
137
  msgid "Appearance"
138
  msgstr ""
139
 
140
+ #: toc.php:703
141
  msgid "Width"
142
  msgstr ""
143
 
144
+ #: toc.php:706
145
  msgid "Fixed width"
146
  msgstr ""
147
 
148
+ #: toc.php:717
149
  msgid "Relative"
150
  msgstr ""
151
 
152
+ #: toc.php:718
153
  msgid "Auto (default)"
154
  msgstr ""
155
 
156
  #. translators: other width
157
+ #: toc.php:728
158
  msgid "Other"
159
  msgstr ""
160
 
161
+ #: toc.php:729
162
  msgid "User defined"
163
  msgstr ""
164
 
165
  #. translators: ignore %s as it's some HTML label tags
166
+ #: toc.php:735
167
+ #, php-format
168
  msgid "Please enter a number and %s select its units, eg: 100px, 10em"
169
  msgstr ""
170
 
171
+ #: toc.php:746
172
  msgid "Wrapping"
173
  msgstr ""
174
 
175
+ #: toc.php:749
176
  msgid "None (default)"
177
  msgstr ""
178
 
179
+ #: toc.php:750
180
  msgid "Left"
181
  msgstr ""
182
 
183
+ #: toc.php:751
184
  msgid "Right"
185
  msgstr ""
186
 
187
+ #: toc.php:756
188
  msgid "Font size"
189
  msgstr ""
190
 
191
  #. translators: appearance / colour / look and feel options
192
+ #: toc.php:769
193
  msgid "Presentation"
194
  msgstr ""
195
 
196
+ #: toc.php:772
197
  msgid "Grey (default)"
198
  msgstr ""
199
 
200
+ #: toc.php:777
201
  msgid "Light blue"
202
  msgstr ""
203
 
204
+ #: toc.php:782
205
  msgid "White"
206
  msgstr ""
207
 
208
+ #: toc.php:787
209
  msgid "Black"
210
  msgstr ""
211
 
212
+ #: toc.php:792
213
  msgid "Transparent"
214
  msgstr ""
215
 
216
+ #: toc.php:797
217
  msgid "Custom"
218
  msgstr ""
219
 
220
+ #: toc.php:807
221
  msgid "Background"
222
  msgstr ""
223
 
224
+ #: toc.php:811
225
  msgid "Border"
226
  msgstr ""
227
 
228
+ #: toc.php:815 toc.php:1720
229
  msgid "Title"
230
  msgstr ""
231
 
232
+ #: toc.php:819
233
  msgid "Links"
234
  msgstr ""
235
 
236
+ #: toc.php:823
237
  msgid "Links (hover)"
238
  msgstr ""
239
 
240
+ #: toc.php:827
241
  msgid "Links (visited)"
242
  msgstr ""
243
 
244
+ #: toc.php:834
245
+ #, php-format
246
  msgid "Leaving the value as %s will inherit your theme's styles"
247
  msgstr ""
248
 
249
+ #: toc.php:841
250
  msgid "Advanced"
251
  msgstr ""
252
 
253
+ #: toc.php:841 toc.php:978 toc.php:1095
254
  msgid "show"
255
  msgstr ""
256
 
257
+ #: toc.php:843
258
  msgid "Power options"
259
  msgstr ""
260
 
261
+ #: toc.php:847
262
  msgid "Lowercase"
263
  msgstr ""
264
 
265
+ #: toc.php:848
266
  msgid "Ensure anchors are in lowercase"
267
  msgstr ""
268
 
269
+ #: toc.php:851
270
  msgid "Hyphenate"
271
  msgstr ""
272
 
273
+ #: toc.php:852
274
  msgid "Use - rather than _ in anchors"
275
  msgstr ""
276
 
277
+ #: toc.php:855
278
  msgid "Include homepage"
279
  msgstr ""
280
 
281
+ #: toc.php:856
282
  msgid "Show the table of contents for qualifying items on the homepage"
283
  msgstr ""
284
 
285
+ #: toc.php:859
286
  msgid "Exclude CSS file"
287
  msgstr ""
288
 
289
+ #: toc.php:860
290
+ msgid "Prevent the loading of this plugin's CSS styles. When selected, the appearance options from above will also be ignored."
 
 
291
  msgstr ""
292
 
293
+ #: toc.php:863
294
  msgid "Preserve theme bullets"
295
  msgstr ""
296
 
297
+ #: toc.php:864
298
+ msgid "If your theme includes background images for unordered list elements, enable this to support them"
 
 
299
  msgstr ""
300
 
301
+ #: toc.php:867
302
  msgid "Heading levels"
303
  msgstr ""
304
 
305
+ #: toc.php:869
306
+ msgid "Include the following heading levels. Deselecting a heading will exclude it."
 
307
  msgstr ""
308
 
309
+ #: toc.php:875
310
  msgid "heading "
311
  msgstr ""
312
 
313
+ #: toc.php:881
314
  msgid "Exclude headings"
315
  msgstr ""
316
 
317
+ #: toc.php:884
318
+ msgid "Specify headings to be excluded from appearing in the table of contents. Separate multiple headings with a pipe <code>|</code>. Use an asterisk <code>*</code> as a wildcard to match other text. Note that this is not case sensitive. Some examples:"
 
 
 
 
319
  msgstr ""
320
 
321
+ #: toc.php:886
322
  msgid "<code>Fruit*</code> ignore headings starting with \"Fruit\""
323
  msgstr ""
324
 
325
+ #: toc.php:887
326
+ msgid "<code>*Fruit Diet*</code> ignore headings with \"Fruit Diet\" somewhere in the heading"
 
 
327
  msgstr ""
328
 
329
+ #: toc.php:888
330
+ msgid "<code>Apple Tree|Oranges|Yellow Bananas</code> ignore headings that are exactly \"Apple Tree\", \"Oranges\" or \"Yellow Bananas\""
 
 
331
  msgstr ""
332
 
333
+ #: toc.php:893
334
  msgid "Smooth scroll top offset"
335
  msgstr ""
336
 
337
+ #: toc.php:896
338
+ msgid "If you have a consistent menu across the top of your site, you can adjust the top offset to stop the headings from appearing underneath the top menu. A setting of 30 accommodates the WordPress admin bar. This setting appears after you have enabled smooth scrolling from above."
 
 
 
 
339
  msgstr ""
340
 
341
+ #: toc.php:900
342
  msgid "Restrict path"
343
  msgstr ""
344
 
345
+ #: toc.php:903
346
+ msgid "Restrict generation of the table of contents to pages that match the required path. This path is from the root of your site and always begins with a forward slash."
 
 
 
347
  msgstr ""
348
 
349
  #. translators: example URL path restriction
350
+ #: toc.php:906
351
  msgid "Eg: /wiki/, /corporate/annual-reports/"
352
  msgstr ""
353
 
354
+ #: toc.php:910
355
  msgid "Default anchor prefix"
356
  msgstr ""
357
 
358
+ #: toc.php:913
359
+ msgid "Anchor targets are restricted to alphanumeric characters as per HTML specification (see readme for more detail). The default anchor prefix will be used when no characters qualify. When left blank, a number will be used instead."
 
 
 
 
360
  msgstr ""
361
 
362
+ #: toc.php:914
363
+ msgid "This option normally applies to content written in character sets other than ASCII."
 
 
364
  msgstr ""
365
 
366
  #. translators: example anchor prefixes when no ascii characters match
367
+ #: toc.php:917
368
  msgid "Eg: i, toc_index, index, _"
369
  msgstr ""
370
 
371
  #. translators: advanced usage
372
+ #: toc.php:925
373
  msgid "Usage"
374
  msgstr ""
375
 
376
+ #: toc.php:926
377
+ #, php-format
378
+ msgid "If you would like to fully customise the position of the table of contents, you can use the %s shortcode by placing it at the desired position of your post, page or custom post type. This method allows you to generate the table of contents despite having auto insertion disabled for its content type. Please visit the help tab for further information about this shortcode."
 
 
 
 
379
  msgstr ""
380
 
381
+ #: toc.php:934
382
+ #, php-format
383
+ msgid "At its simplest, placing %s into a page will automatically create a sitemap of all pages and categories. This also works in a text widget."
 
384
  msgstr ""
385
 
386
+ #: toc.php:938
387
  msgid "Show page listing"
388
  msgstr ""
389
 
390
+ #: toc.php:942
391
  msgid "Show category listing"
392
  msgstr ""
393
 
394
+ #: toc.php:946
395
  msgid "Heading type"
396
  msgstr ""
397
 
398
+ #. translators: the full line is supposed to read - Use [1-6 drop down list] to print out the titles
399
+ #: toc.php:949
 
400
  msgid "Use"
401
  msgstr ""
402
 
403
+ #. translators: the full line is supposed to read - Use [h1-h6 drop down list] to print out the titles
404
+ #: toc.php:960
 
405
  msgid "to print out the titles"
406
  msgstr ""
407
 
408
+ #: toc.php:964
409
  msgid "Pages label"
410
  msgstr ""
411
 
412
+ #: toc.php:966
413
  msgid "Eg: Pages, Page List"
414
  msgstr ""
415
 
416
+ #: toc.php:970
417
  msgid "Categories label"
418
  msgstr ""
419
 
420
+ #: toc.php:972
421
  msgid "Eg: Categories, Category List"
422
  msgstr ""
423
 
424
+ #: toc.php:978
425
  msgid "Advanced usage"
426
  msgstr ""
427
 
428
+ #: toc.php:980
429
+ #, php-format
430
+ msgid "lets you print out a listing of only pages. Similarly %s can be used to print out a category listing. They both can accept a number of attributes so visit the help tab for more information."
 
 
431
  msgstr ""
432
 
433
+ #: toc.php:981
434
  msgid "Examples"
435
  msgstr ""
436
 
437
+ #: toc.php:983
438
  msgid "hides the heading from a category listing"
439
  msgstr ""
440
 
441
+ #: toc.php:984
442
+ #, php-format
443
+ msgid "Uses h6 to display %s on a page listing excluding pages with IDs 1 and 15"
444
  msgstr ""
445
 
446
+ #: toc.php:992
447
  msgid "Where's my table of contents?"
448
  msgstr ""
449
 
450
+ #: toc.php:993
451
+ msgid "If you're reading this, then chances are you have successfully installed and enabled the plugin and you're just wondering why the index isn't appearing right? Try the following:"
 
 
 
452
  msgstr ""
453
 
454
+ #: toc.php:995
455
+ msgid "In most cases, the post, page or custom post type has less than the minimum number of headings. By default, this is set to four so make sure you have at least four headings within your content. If you want to change this value, you can find it under 'Main Options' &gt; 'Show when'."
 
 
 
 
456
  msgstr ""
457
 
458
+ #: toc.php:996
459
+ msgid "Is auto insertion enabled for your content type? By default, only pages are enabled."
 
 
460
  msgstr ""
461
 
462
+ #: toc.php:997
463
+ msgid "Have you got <code>[no_toc]</code> somewhere within the content? This will disable the index for the current post, page or custom post type."
 
 
464
  msgstr ""
465
 
466
+ #: toc.php:998
467
+ msgid "If you are using the TOC+ widget, check if you have the <em>\"Show the table of contents only in the sidebar\"</em> enabled as this will limit its display to only the sidebar. You can check by going into Appearance &gt; Widgets."
 
 
 
 
468
  msgstr ""
469
 
470
+ #: toc.php:999
471
+ msgid "You may have restricted generation to a URL path match. The setting can be found in the advanced section under Main Options."
 
 
472
  msgstr ""
473
 
474
+ #: toc.php:1002
475
  msgid "How do I stop the table of contents from appearing on a single page?"
476
  msgstr ""
477
 
478
+ #: toc.php:1003
479
+ msgid "Place the following <code>[no_toc]</code> anywhere on the page to suppress the table of contents. This is known as a shortcode and works for posts, pages and custom post types that make use of the_content()"
 
 
 
480
  msgstr ""
481
 
482
+ #: toc.php:1005
483
+ msgid "I've set wrapping to left or right but the headings don't wrap around the table of contents"
 
 
484
  msgstr ""
485
 
486
+ #: toc.php:1006
487
+ msgid "This normally occurs when there is a CSS clear directive in or around the heading originating from the theme (Twenty Eleven and Twenty Twelve are two themes which do this). This directive tells the user agent to reset the previous wrapping specifications."
 
 
 
 
488
  msgstr ""
489
 
490
+ #: toc.php:1007
491
+ #, php-format
492
+ msgid "You can adjust your theme's CSS or try moving the table of contents position to the top of the page. If you didn't build your theme, I'd highly suggest you try the %s if you wish to make CSS changes."
 
 
493
  msgstr ""
494
 
495
  #. translators: CSS code follows after this line
496
+ #: toc.php:1010
497
+ msgid "Try adding the following CSS to allow the wrapping to occur around the table of contents:"
 
 
498
  msgstr ""
499
 
500
+ #: toc.php:1015
501
  msgid "How do I include the name of the page in the table of contents title?"
502
  msgstr ""
503
 
504
+ #: toc.php:1016
505
+ msgid "As the title of the page changes depending on the page you're viewing, you can use the following special variable to automatically insert the title of the page into the table of contents heading:"
 
 
 
506
  msgstr ""
507
 
508
+ #: toc.php:1018
509
  msgid "You can use it as is or place text either side of the variable."
510
  msgstr ""
511
 
512
+ #: toc.php:1019
513
+ msgid "As an example: if your page is named <em>Great Expectations</em> and your table of contents title is set to <em>Contents for %PAGE_NAME%</em>, the final title would read <em>Contents for Great Expectations</em>"
 
 
 
514
  msgstr ""
515
 
516
+ #: toc.php:1021
517
  msgid "The sitemap uses a strange font dissimilar to the rest of the site"
518
  msgstr ""
519
 
520
+ #: toc.php:1022
521
+ msgid "No extra styles are created for the sitemap, instead it inherits any styles you used when adding the shortcode. If you copy and pasted, you probably also copied the 'code' tags surrounding it so remove them if this is the case."
 
 
 
 
522
  msgstr ""
523
 
524
+ #: toc.php:1023
525
+ msgid "In most cases, try to have the shortcode on its own line with nothing before or after the square brackets."
 
 
526
  msgstr ""
527
 
528
+ #: toc.php:1025
529
  msgid "What were those shortcodes and attributes again?"
530
  msgstr ""
531
 
532
+ #: toc.php:1026
533
+ msgid "When attributes are left out for the shortcodes below, they will fallback to the settings you defined under Settings &gt; TOC+."
 
 
534
  msgstr ""
535
 
536
+ #: toc.php:1030
537
  msgid "Shortcode"
538
  msgstr ""
539
 
540
+ #: toc.php:1031
541
  msgid "Description"
542
  msgstr ""
543
 
544
+ #: toc.php:1032
545
  msgid "Attributes"
546
  msgstr ""
547
 
548
+ #: toc.php:1038
549
+ msgid "Lets you generate the table of contents at the preferred position. Also useful for sites that only require a TOC on a small handful of pages."
 
 
550
  msgstr ""
551
 
552
+ #: toc.php:1041
553
  msgid "text, title of the table of contents"
554
  msgstr ""
555
 
556
+ #: toc.php:1042
557
  msgid "true/false, shows or hides the title"
558
  msgstr ""
559
 
560
+ #: toc.php:1043
561
  msgid "text, either \"left\" or \"right\""
562
  msgstr ""
563
 
564
+ #: toc.php:1044
565
+ msgid "numbers, this lets you select the heading levels you want included in the table of contents. Separate multiple levels with a comma. Example: include headings 3, 4 and 5 but exclude the others with"
 
 
 
566
  msgstr ""
567
 
568
+ #: toc.php:1045
569
+ msgid "text, enter headings to be excluded. Separate multiple headings with a pipe <code>|</code>. Use an asterisk <code>*</code> as a wildcard to match other text. You could also use regular expressions for more advanced matching."
 
 
 
570
  msgstr ""
571
 
572
+ #: toc.php:1051
573
+ msgid "Allows you to disable the table of contents for the current post, page, or custom post type."
 
 
574
  msgstr ""
575
 
576
+ #: toc.php:1056
577
+ msgid "Produces a listing of all pages and categories for your site. You can use this on any post, page or even in a text widget."
 
 
578
  msgstr ""
579
 
580
+ #: toc.php:1061
581
  msgid "Lets you print out a listing of only pages."
582
  msgstr ""
583
 
584
+ #: toc.php:1064
585
  msgid "number between 1 and 6, defines which html heading to use"
586
  msgstr ""
587
 
588
+ #: toc.php:1065
589
  msgid "text, title of the list"
590
  msgstr ""
591
 
592
+ #: toc.php:1066
593
  msgid "true/false, shows or hides the list heading"
594
  msgstr ""
595
 
596
+ #: toc.php:1067
597
  msgid "IDs of the pages or categories you wish to exclude"
598
  msgstr ""
599
 
600
+ #: toc.php:1068
601
+ msgid "ID of the page or category you wish to exclude including its all descendants"
 
602
  msgstr ""
603
 
604
+ #: toc.php:1074
605
  msgid "Similar to [sitemap_pages] but for categories."
606
  msgstr ""
607
 
608
+ #: toc.php:1079
609
+ msgid "This lets you print out an index of all published posts on your site. By default, posts are listed in alphabetical order grouped by their first letters. There are CSS classes for each section, letter and list allowing you to customise the appearance."
 
 
 
 
610
  msgstr ""
611
 
612
+ #: toc.php:1082
613
  msgid "text, either ASC or DESC"
614
  msgstr ""
615
 
616
+ #: toc.php:1083
617
+ #, php-format
618
+ msgid "text, popular options include \"title\", \"date\", \"ID\", and \"rand\". See %1$sWP_Query%2$s for a list."
 
619
  msgstr ""
620
 
621
+ #: toc.php:1084
622
+ msgid "true/false (defaults to true), does not separate the lists by first letter when set to false."
623
+ msgstr ""
624
+
625
+ #: toc.php:1092
626
  msgid "I have another question..."
627
  msgstr ""
628
 
629
+ #: toc.php:1093
630
+ #, php-format
631
+ msgid "Visit the %1$splugin homepage%2$s to ask your question - who knows, maybe your question has already been answered. I'd really like to hear your suggestions if you have any."
 
 
632
  msgstr ""
633
 
634
+ #: toc.php:1095
635
  msgid "For developers"
636
  msgstr ""
637
 
638
+ #: toc.php:1097
639
  msgid "How do I customise my anchors?"
640
  msgstr ""
641
 
642
+ #: toc.php:1098
643
+ msgid "If you're still not happy with the anchors, you can modify them to suit your needs through a custom function hooked into the <code>toc_url_anchor_target</code> filter. As an example, place the below code snippet into your functions.php file to convert all anchors to uppercase."
 
 
 
 
644
  msgstr ""
645
 
646
+ #: toc.php:1108
647
+ msgid "Returns a HTML formatted string of the table of contents without the surrounding UL or OL tags to allow the theme editor to supply their own ID and/or classes to the outer list."
 
 
 
648
  msgstr ""
649
 
650
+ #: toc.php:1109
651
  msgid "Both parameters are optional:"
652
  msgstr ""
653
 
654
  #. translators: this explains the $content parameter
655
+ #: toc.php:1113
656
+ msgid "is the entire content with headings. If blank, will default to the current content found in $post (eg within \"the loop\")."
 
 
657
  msgstr ""
658
 
659
  #. translators: this explains the $prefix_url parameter
660
+ #: toc.php:1116
661
+ msgid "is the URL to prefix the anchor with. If a string was provided, it will be used as is. If set to \"true\" then will try to obtain the permalink from the $post object."
 
 
 
662
  msgstr ""
663
 
664
+ #: toc.php:1118
665
  msgid "These examples assume you are within \"the loop\":"
666
  msgstr ""
667
 
668
+ #: toc.php:1120
669
  msgid "Obtain the index for the current page"
670
  msgstr ""
671
 
672
+ #: toc.php:1123
673
  msgid "Create a listing of all children and their headings"
674
  msgstr ""
675
 
676
+ #: toc.php:1148
677
  msgid "Update Options"
678
  msgstr ""
679
 
680
+ #: toc.php:1634
681
  msgid "Display the table of contents in the sidebar with this widget"
682
  msgstr ""
683
 
684
+ #: toc.php:1726
685
  msgid "Show the table of contents only in the sidebar"
686
  msgstr ""
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: conjur3r
3
  Donate link:
4
  Tags: table of contents, indexes, toc, sitemap, cms, options, list, page listing, category listing
5
- Requires at least: 3.0
6
- Tested up to: 3.5
7
- Stable tag: 1303.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -29,7 +29,7 @@ Custom post types are supported, however, auto insertion works only when the_con
29
  * Australian English (default)
30
  * Polish - [Jakub](http://notatki.4use.pl/)
31
  * Simplified Chinese - [icedream](http://www.tesfans.org/)
32
- * Slovak - [Branco Radenovich](http://webhostinggeeks.com/user-reviews/)
33
 
34
  Translations are more than welcome. If you have any advice in making it easier to translate, please let me know.
35
 
@@ -92,6 +92,7 @@ Same as `[sitemap_pages]` but for categories.
92
  This lets you print out an index of all published posts on your site. By default, posts are listed in alphabetical order grouped by their first letters. The following attributes are accepted:
93
  * "order": text, either ASC or DESC
94
  * "orderby": text, popular options include "title", "date", "ID", and "rand". See [WP_Query](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters) for a list.
 
95
  Use the following CSS classes to customise the appearance of your listing:
96
  * toc_sitemap_posts_section
97
  * toc_sitemap_posts_letter
@@ -100,6 +101,13 @@ Use the following CSS classes to customise the appearance of your listing:
100
 
101
  == Changelog ==
102
 
 
 
 
 
 
 
 
103
  = 1303.1 =
104
  * Released: 22 March 2013
105
  * New: added Polish translation, curtesy [Jakub](http://notatki.4use.pl/).
2
  Contributors: conjur3r
3
  Donate link:
4
  Tags: table of contents, indexes, toc, sitemap, cms, options, list, page listing, category listing
5
+ Requires at least: 3.2
6
+ Tested up to: 3.6
7
+ Stable tag: 1308
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
29
  * Australian English (default)
30
  * Polish - [Jakub](http://notatki.4use.pl/)
31
  * Simplified Chinese - [icedream](http://www.tesfans.org/)
32
+ * Slovak - Boris Gereg
33
 
34
  Translations are more than welcome. If you have any advice in making it easier to translate, please let me know.
35
 
92
  This lets you print out an index of all published posts on your site. By default, posts are listed in alphabetical order grouped by their first letters. The following attributes are accepted:
93
  * "order": text, either ASC or DESC
94
  * "orderby": text, popular options include "title", "date", "ID", and "rand". See [WP_Query](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters) for a list.
95
+ * "separate": true/false (defaults to true), does not separate the lists by first letter when set to false.
96
  Use the following CSS classes to customise the appearance of your listing:
97
  * toc_sitemap_posts_section
98
  * toc_sitemap_posts_letter
101
 
102
  == Changelog ==
103
 
104
+ = 1308 =
105
+ * Released: 5 August 2013
106
+ * Fix javascript issue with minimum jQuery version check (broke smooth scrolling using WordPress 3.6).
107
+ * Replaced Slovak translation with a human translated version courtesy Boris Gereg.
108
+ * Remove <!--TOC--> signature from source when using the shortcode but not allowed to print (eg on homepage).
109
+ * Add "separate" attribute for sitemap_posts shortcode to not split by letter, thanks [DavidMjps](http://wordpress.org/support/topic/exclude-alphabetical-headings-on-sitemap) for the suggestion.
110
+
111
  = 1303.1 =
112
  * Released: 22 March 2013
113
  * New: added Polish translation, curtesy [Jakub](http://notatki.4use.pl/).
toc.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://dublue.com/plugins/toc/
5
  Description: A powerful yet user friendly plugin that automatically creates a table of contents. Can also output a sitemap listing all pages and categories.
6
  Author: Michael Tran
7
  Author URI: http://dublue.com/
8
- Version: 1303.1
9
  License: GPL2
10
  */
11
 
@@ -39,7 +39,7 @@ FOR CONSIDERATION:
39
  - highlight target css
40
  */
41
 
42
- define( 'TOC_VERSION', '1303.1' );
43
  define( 'TOC_POSITION_BEFORE_FIRST_HEADING', 1 );
44
  define( 'TOC_POSITION_TOP', 2 );
45
  define( 'TOC_POSITION_BOTTOM', 3 );
@@ -183,15 +183,19 @@ if ( !class_exists( 'toc' ) ) :
183
  {
184
  extract( shortcode_atts( array(
185
  'label' => $this->options['heading_text'],
 
 
186
  'no_label' => false,
187
  'wrapping' => $this->options['wrapping'],
188
  'heading_levels' => $this->options['heading_levels'],
189
  'exclude' => $this->options['exclude']
190
  ), $atts )
191
  );
192
-
193
  if ( $no_label ) $this->options['show_heading_text'] = false;
194
  if ( $label ) $this->options['heading_text'] = html_entity_decode( $label );
 
 
195
  if ( $wrapping ) {
196
  switch ( strtolower(trim($wrapping)) ) {
197
  case 'left':
@@ -330,7 +334,8 @@ if ( !class_exists( 'toc' ) ) :
330
  {
331
  extract( shortcode_atts( array(
332
  'order' => 'ASC',
333
- 'orderby' => 'title'
 
334
  ), $atts )
335
  );
336
 
@@ -343,22 +348,32 @@ if ( !class_exists( 'toc' ) ) :
343
  ));
344
 
345
  $html = $letter = '';
 
 
 
346
 
347
  while ( $articles->have_posts() ) {
348
  $articles->the_post();
349
  $title = get_the_title();
350
-
351
- if ( $letter != strtolower($title[0]) ) {
352
- if ( $letter ) $html .= '</ul></div>';
353
-
354
- $html .= '<div class="toc_sitemap_posts_section"><p class="toc_sitemap_posts_letter">' . strtolower($title[0]) . '</p><ul class="toc_sitemap_posts_list">';
355
- $letter = strtolower($title[0]);
 
 
356
  }
357
 
358
  $html .= '<li><a href="' . get_permalink($articles->post->ID) . '">' . $title . '</a></li>';
359
  }
360
 
361
- if ( $html ) $html .= '</div>';
 
 
 
 
 
362
 
363
  wp_reset_postdata();
364
 
@@ -1070,6 +1085,7 @@ h1, h2, h3, h4, h5, h6 { clear: none; }
1070
  <ul>
1071
  <li><strong>order</strong>: <?php _e('text, either ASC or DESC', 'toc+'); ?></li>
1072
  <li><strong>orderby</strong>: <?php printf(__('text, popular options include "title", "date", "ID", and "rand". See %1$sWP_Query%2$s for a list.', 'toc+'), '<a href="https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters">', '</a>'); ?></li>
 
1073
  </ul>
1074
  </td>
1075
  </tr>
@@ -1599,6 +1615,10 @@ wp_reset_postdata();
1599
  }
1600
  }
1601
  }
 
 
 
 
1602
 
1603
  return $content;
1604
  }
5
  Description: A powerful yet user friendly plugin that automatically creates a table of contents. Can also output a sitemap listing all pages and categories.
6
  Author: Michael Tran
7
  Author URI: http://dublue.com/
8
+ Version: 1308
9
  License: GPL2
10
  */
11
 
39
  - highlight target css
40
  */
41
 
42
+ define( 'TOC_VERSION', '1308' );
43
  define( 'TOC_POSITION_BEFORE_FIRST_HEADING', 1 );
44
  define( 'TOC_POSITION_TOP', 2 );
45
  define( 'TOC_POSITION_BOTTOM', 3 );
183
  {
184
  extract( shortcode_atts( array(
185
  'label' => $this->options['heading_text'],
186
+ 'label_show' => $this->options['visibility_show'],
187
+ 'label_hide' => $this->options['visibility_hide'],
188
  'no_label' => false,
189
  'wrapping' => $this->options['wrapping'],
190
  'heading_levels' => $this->options['heading_levels'],
191
  'exclude' => $this->options['exclude']
192
  ), $atts )
193
  );
194
+
195
  if ( $no_label ) $this->options['show_heading_text'] = false;
196
  if ( $label ) $this->options['heading_text'] = html_entity_decode( $label );
197
+ if ( $label_show ) $this->options['visibility_show'] = html_entity_decode( $label_show );
198
+ if ( $label_hide ) $this->options['visibility_hide'] = html_entity_decode( $label_hide );
199
  if ( $wrapping ) {
200
  switch ( strtolower(trim($wrapping)) ) {
201
  case 'left':
334
  {
335
  extract( shortcode_atts( array(
336
  'order' => 'ASC',
337
+ 'orderby' => 'title',
338
+ 'separate' => true
339
  ), $atts )
340
  );
341
 
348
  ));
349
 
350
  $html = $letter = '';
351
+
352
+ $separate = strtolower($separate);
353
+ if ( $separate == 'false' || $separate == 'no') $separate = false;
354
 
355
  while ( $articles->have_posts() ) {
356
  $articles->the_post();
357
  $title = get_the_title();
358
+
359
+ if ( $separate ) {
360
+ if ( $letter != strtolower($title[0]) ) {
361
+ if ( $letter ) $html .= '</ul></div>';
362
+
363
+ $html .= '<div class="toc_sitemap_posts_section"><p class="toc_sitemap_posts_letter">' . strtolower($title[0]) . '</p><ul class="toc_sitemap_posts_list">';
364
+ $letter = strtolower($title[0]);
365
+ }
366
  }
367
 
368
  $html .= '<li><a href="' . get_permalink($articles->post->ID) . '">' . $title . '</a></li>';
369
  }
370
 
371
+ if ( $html ) {
372
+ if ( $separate )
373
+ $html .= '</div>';
374
+ else
375
+ $html = '<div class="toc_sitemap_posts_section"><ul class="toc_sitemap_posts_list">' . $html . '</ul></div>';
376
+ }
377
 
378
  wp_reset_postdata();
379
 
1085
  <ul>
1086
  <li><strong>order</strong>: <?php _e('text, either ASC or DESC', 'toc+'); ?></li>
1087
  <li><strong>orderby</strong>: <?php printf(__('text, popular options include "title", "date", "ID", and "rand". See %1$sWP_Query%2$s for a list.', 'toc+'), '<a href="https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters">', '</a>'); ?></li>
1088
+ <li><strong>separate</strong>: <?php _e('true/false (defaults to true), does not separate the lists by first letter when set to false.', 'toc+'); ?></li>
1089
  </ul>
1090
  </td>
1091
  </tr>
1615
  }
1616
  }
1617
  }
1618
+ else {
1619
+ // remove <!--TOC--> (inserted from shortcode) from content
1620
+ $content = str_replace('<!--TOC-->', '', $content);
1621
+ }
1622
 
1623
  return $content;
1624
  }