Version Description
- Released: 4 September 2015
- Added Hebrew translation thanks to Ahrale
- Added Japaense translation thanks to
- Added Greek translation thanks to Dimitrios Kaisaris
- Updated jQuery Smooth Scroll 1.4.10 to 1.5.5
- Supply both minified and unminified CSS and JS files, use minified versions.
- Convert accented characters to ASCII in anchors.
- Bump tested WordPress version to 4.3
- Fixed: PHP notice introduced in WP 4.3
- Fixed: javascript error with $.browser testing for Internet Explorer 7.
- Plugin has moved to GitHub for better collaboration.
- Help needed: preg_match_all failing with bad UTF8 characters producing no TOC. If you can help, please participate in this issue.
Download this release
Release Info
Developer | conjur3r |
Plugin | Table of Contents Plus |
Version | 1509 |
Comparing to | |
See all releases |
Code changes from version 1507 to 1509
- front.js +4 -4
- front.min.js +1 -0
- languages/toc+-el_GR.mo +0 -0
- languages/toc+-el_GR.po +575 -0
- languages/toc+-he_IL.mo +0 -0
- languages/toc+-he_IL.po +534 -0
- languages/toc+-ja.mo +0 -0
- languages/toc+-ja.po +809 -0
- readme.txt +18 -2
- screen.min.css +1 -0
- toc.php +9 -8
front.js
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
/*!
|
2 |
-
* Smooth Scroll - v1.
|
3 |
* https://github.com/kswedberg/jquery-smooth-scroll
|
4 |
-
* Copyright (c)
|
5 |
* Licensed MIT (https://github.com/kswedberg/jquery-smooth-scroll/blob/master/LICENSE-MIT)
|
6 |
*/
|
7 |
-
(function(
|
8 |
|
9 |
/**
|
10 |
* jQuery Cookie plugin
|
@@ -24,7 +24,7 @@ jQuery(document).ready(function($) {
|
|
24 |
width: 'auto',
|
25 |
display: 'table'
|
26 |
});
|
27 |
-
if (
|
28 |
$(this).css('width', '');
|
29 |
}
|
30 |
|
1 |
/*!
|
2 |
+
* jQuery Smooth Scroll - v1.5.5 - 2015-02-19
|
3 |
* https://github.com/kswedberg/jquery-smooth-scroll
|
4 |
+
* Copyright (c) 2015 Karl Swedberg
|
5 |
* Licensed MIT (https://github.com/kswedberg/jquery-smooth-scroll/blob/master/LICENSE-MIT)
|
6 |
*/
|
7 |
+
(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):"object"==typeof module&&module.exports?t(require("jquery")):t(jQuery)})(function(t){function e(t){return t.replace(/(:|\.|\/)/g,"\\$1")}var l="1.5.5",o={},n={exclude:[],excludeWithin:[],offset:0,direction:"top",scrollElement:null,scrollTarget:null,beforeScroll:function(){},afterScroll:function(){},easing:"swing",speed:400,autoCoefficient:2,preventDefault:!0},s=function(e){var l=[],o=!1,n=e.dir&&"left"===e.dir?"scrollLeft":"scrollTop";return this.each(function(){if(this!==document&&this!==window){var e=t(this);e[n]()>0?l.push(this):(e[n](1),o=e[n]()>0,o&&l.push(this),e[n](0))}}),l.length||this.each(function(){"BODY"===this.nodeName&&(l=[this])}),"first"===e.el&&l.length>1&&(l=[l[0]]),l};t.fn.extend({scrollable:function(t){var e=s.call(this,{dir:t});return this.pushStack(e)},firstScrollable:function(t){var e=s.call(this,{el:"first",dir:t});return this.pushStack(e)},smoothScroll:function(l,o){if(l=l||{},"options"===l)return o?this.each(function(){var e=t(this),l=t.extend(e.data("ssOpts")||{},o);t(this).data("ssOpts",l)}):this.first().data("ssOpts");var n=t.extend({},t.fn.smoothScroll.defaults,l),s=t.smoothScroll.filterPath(location.pathname);return this.unbind("click.smoothscroll").bind("click.smoothscroll",function(l){var o=this,r=t(this),i=t.extend({},n,r.data("ssOpts")||{}),c=n.exclude,a=i.excludeWithin,f=0,h=0,u=!0,d={},p=location.hostname===o.hostname||!o.hostname,m=i.scrollTarget||t.smoothScroll.filterPath(o.pathname)===s,S=e(o.hash);if(i.scrollTarget||p&&m&&S){for(;u&&c.length>f;)r.is(e(c[f++]))&&(u=!1);for(;u&&a.length>h;)r.closest(a[h++]).length&&(u=!1)}else u=!1;u&&(i.preventDefault&&l.preventDefault(),t.extend(d,i,{scrollTarget:i.scrollTarget||S,link:o}),t.smoothScroll(d))}),this}}),t.smoothScroll=function(e,l){if("options"===e&&"object"==typeof l)return t.extend(o,l);var n,s,r,i,c,a=0,f="offset",h="scrollTop",u={},d={};"number"==typeof e?(n=t.extend({link:null},t.fn.smoothScroll.defaults,o),r=e):(n=t.extend({link:null},t.fn.smoothScroll.defaults,e||{},o),n.scrollElement&&(f="position","static"===n.scrollElement.css("position")&&n.scrollElement.css("position","relative"))),h="left"===n.direction?"scrollLeft":h,n.scrollElement?(s=n.scrollElement,/^(?:HTML|BODY)$/.test(s[0].nodeName)||(a=s[h]())):s=t("html, body").firstScrollable(n.direction),n.beforeScroll.call(s,n),r="number"==typeof e?e:l||t(n.scrollTarget)[f]()&&t(n.scrollTarget)[f]()[n.direction]||0,u[h]=r+a+n.offset,i=n.speed,"auto"===i&&(c=u[h]-s.scrollTop(),0>c&&(c*=-1),i=c/n.autoCoefficient),d={duration:i,easing:n.easing,complete:function(){n.afterScroll.call(n.link,n)}},n.step&&(d.step=n.step),s.length?s.stop().animate(u,d):n.afterScroll.call(n.link,n)},t.smoothScroll.version=l,t.smoothScroll.filterPath=function(t){return t=t||"",t.replace(/^\//,"").replace(/(?:index|default).[a-zA-Z]{3,4}$/,"").replace(/\/$/,"")},t.fn.smoothScroll.defaults=n});
|
8 |
|
9 |
/**
|
10 |
* jQuery Cookie plugin
|
24 |
width: 'auto',
|
25 |
display: 'table'
|
26 |
});
|
27 |
+
if ( /MSIE 7\./.test(navigator.userAgent) )
|
28 |
$(this).css('width', '');
|
29 |
}
|
30 |
|
front.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
!function(t){"function"==typeof define&&define.amd?define(["jquery"],t):t("object"==typeof module&&module.exports?require("jquery"):jQuery)}(function(t){function e(t){return t.replace(/(:|\.|\/)/g,"\\$1")}var o="1.5.5",i={},l={exclude:[],excludeWithin:[],offset:0,direction:"top",scrollElement:null,scrollTarget:null,beforeScroll:function(){},afterScroll:function(){},easing:"swing",speed:400,autoCoefficient:2,preventDefault:!0},s=function(e){var o=[],i=!1,l=e.dir&&"left"===e.dir?"scrollLeft":"scrollTop";return this.each(function(){if(this!==document&&this!==window){var e=t(this);e[l]()>0?o.push(this):(e[l](1),i=e[l]()>0,i&&o.push(this),e[l](0))}}),o.length||this.each(function(){"BODY"===this.nodeName&&(o=[this])}),"first"===e.el&&o.length>1&&(o=[o[0]]),o};t.fn.extend({scrollable:function(t){var e=s.call(this,{dir:t});return this.pushStack(e)},firstScrollable:function(t){var e=s.call(this,{el:"first",dir:t});return this.pushStack(e)},smoothScroll:function(o,i){if(o=o||{},"options"===o)return i?this.each(function(){var e=t(this),o=t.extend(e.data("ssOpts")||{},i);t(this).data("ssOpts",o)}):this.first().data("ssOpts");var l=t.extend({},t.fn.smoothScroll.defaults,o),s=t.smoothScroll.filterPath(location.pathname);return this.unbind("click.smoothscroll").bind("click.smoothscroll",function(o){var i=this,n=t(this),c=t.extend({},l,n.data("ssOpts")||{}),a=l.exclude,r=c.excludeWithin,h=0,u=0,p=!0,f={},d=location.hostname===i.hostname||!i.hostname,m=c.scrollTarget||t.smoothScroll.filterPath(i.pathname)===s,v=e(i.hash);if(c.scrollTarget||d&&m&&v){for(;p&&a.length>h;)n.is(e(a[h++]))&&(p=!1);for(;p&&r.length>u;)n.closest(r[u++]).length&&(p=!1)}else p=!1;p&&(c.preventDefault&&o.preventDefault(),t.extend(f,c,{scrollTarget:c.scrollTarget||v,link:i}),t.smoothScroll(f))}),this}}),t.smoothScroll=function(e,o){if("options"===e&&"object"==typeof o)return t.extend(i,o);var l,s,n,c,a,r=0,h="offset",u="scrollTop",p={},f={};"number"==typeof e?(l=t.extend({link:null},t.fn.smoothScroll.defaults,i),n=e):(l=t.extend({link:null},t.fn.smoothScroll.defaults,e||{},i),l.scrollElement&&(h="position","static"===l.scrollElement.css("position")&&l.scrollElement.css("position","relative"))),u="left"===l.direction?"scrollLeft":u,l.scrollElement?(s=l.scrollElement,/^(?:HTML|BODY)$/.test(s[0].nodeName)||(r=s[u]())):s=t("html, body").firstScrollable(l.direction),l.beforeScroll.call(s,l),n="number"==typeof e?e:o||t(l.scrollTarget)[h]()&&t(l.scrollTarget)[h]()[l.direction]||0,p[u]=n+r+l.offset,c=l.speed,"auto"===c&&(a=p[u]-s.scrollTop(),0>a&&(a*=-1),c=a/l.autoCoefficient),f={duration:c,easing:l.easing,complete:function(){l.afterScroll.call(l.link,l)}},l.step&&(f.step=l.step),s.length?s.stop().animate(p,f):l.afterScroll.call(l.link,l)},t.smoothScroll.version=o,t.smoothScroll.filterPath=function(t){return t=t||"",t.replace(/^\//,"").replace(/(?:index|default).[a-zA-Z]{3,4}$/,"").replace(/\/$/,"")},t.fn.smoothScroll.defaults=l}),jQuery.cookie=function(t,e,o){if(arguments.length>1&&"[object Object]"!==String(e)){if(o=jQuery.extend({},o),(null===e||void 0===e)&&(o.expires=-1),"number"==typeof o.expires){var i=o.expires,l=o.expires=new Date;l.setDate(l.getDate()+i)}return e=String(e),document.cookie=[encodeURIComponent(t),"=",o.raw?e:encodeURIComponent(e),o.expires?"; expires="+o.expires.toUTCString():"",o.path?"; path="+o.path:"",o.domain?"; domain="+o.domain:"",o.secure?"; secure":""].join("")}o=e||{};var s,n=o.raw?function(t){return t}:decodeURIComponent;return(s=new RegExp("(?:^|; )"+encodeURIComponent(t)+"=([^;]*)").exec(document.cookie))?n(s[1]):null},jQuery(document).ready(function(t){if("undefined"!=typeof tocplus){if(t.fn.shrinkTOCWidth=function(){t(this).css({width:"auto",display:"table"}),/MSIE 7\./.test(navigator.userAgent)&&t(this).css("width","")},1==tocplus.smooth_scroll){var e=hostname=pathname=qs=hash=null;t("body a").click(function(){if(hostname=t(this).prop("hostname"),pathname=t(this).prop("pathname"),qs=t(this).prop("search"),hash=t(this).prop("hash"),pathname.length>0&&"/"!=pathname.charAt(0)&&(pathname="/"+pathname),window.location.hostname==hostname&&window.location.pathname==pathname&&window.location.search==qs&&""!==hash){var o=hash.replace(/([ !"$%&'()*+,.\/:;<=>?@[\]^`{|}~])/g,"\\$1");t(o).length>0?e=hash:(anchor=hash,anchor=anchor.replace("#",""),e='a[name="'+anchor+'"]',0==t(e).length&&(e="")),offset="undefined"!=typeof tocplus.smooth_scroll_offset?-1*tocplus.smooth_scroll_offset:t("#wpadminbar").length>0&&t("#wpadminbar").is(":visible")?-30:0,e&&t.smoothScroll({scrollTarget:e,offset:offset})}})}if("undefined"!=typeof tocplus.visibility_show){var o="undefined"!=typeof tocplus.visibility_hide_by_default?!0:!1;if(t.cookie)var i=t.cookie("tocplus_hidetoc")?tocplus.visibility_show:tocplus.visibility_hide;else var i=tocplus.visibility_hide;o&&(i=i==tocplus.visibility_hide?tocplus.visibility_show:tocplus.visibility_hide),t("#toc_container p.toc_title").append(' <span class="toc_toggle">[<a href="#">'+i+"</a>]</span>"),i==tocplus.visibility_show&&(t("ul.toc_list").hide(),t("#toc_container").addClass("contracted").shrinkTOCWidth()),t("span.toc_toggle a").click(function(e){switch(e.preventDefault(),t(this).html()){case t("<div/>").html(tocplus.visibility_hide).text():t(this).html(tocplus.visibility_show),t.cookie&&(o?t.cookie("tocplus_hidetoc",null,{path:"/"}):t.cookie("tocplus_hidetoc","1",{expires:30,path:"/"})),t("ul.toc_list").hide("fast"),t("#toc_container").addClass("contracted").shrinkTOCWidth();break;case t("<div/>").html(tocplus.visibility_show).text():default:t(this).html(tocplus.visibility_hide),t.cookie&&(o?t.cookie("tocplus_hidetoc","1",{expires:30,path:"/"}):t.cookie("tocplus_hidetoc",null,{path:"/"})),t("#toc_container").css("width",tocplus.width).removeClass("contracted"),t("ul.toc_list").show("fast")}})}}});
|
languages/toc+-el_GR.mo
ADDED
Binary file
|
languages/toc+-el_GR.po
ADDED
@@ -0,0 +1,575 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2015 Table of Contents Plus
|
2 |
+
# This file is distributed under the same license as the Table of Contents Plus package.
|
3 |
+
# 1 <1>, 2015.
|
4 |
+
# 1 <1>, 2015.
|
5 |
+
# 1 <1>, 2015.
|
6 |
+
# 1 <1>, 2015.
|
7 |
+
# 1 <1>, 2015.
|
8 |
+
# 1 <1>, 2015.
|
9 |
+
# 1 <1>, 2015.
|
10 |
+
msgid ""
|
11 |
+
msgstr ""
|
12 |
+
"Project-Id-Version: Table of Contents Plus 1505\n"
|
13 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/table-of-"
|
14 |
+
"contents-plus\n"
|
15 |
+
"POT-Creation-Date: 2015-06-26 12:23:49+00:00\n"
|
16 |
+
"PO-Revision-Date: 2015-09-02 20:10+0300\n"
|
17 |
+
"Last-Translator: 1 <1>\n"
|
18 |
+
"Language-Team: Δημήτρης Καίσαρης\n"
|
19 |
+
"Language: el\n"
|
20 |
+
"MIME-Version: 1.0\n"
|
21 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
22 |
+
"Content-Transfer-Encoding: 8bit\n"
|
23 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
24 |
+
"X-Generator: Virtaal 0.7.1\n"
|
25 |
+
|
26 |
+
#: toc.php:201
|
27 |
+
msgid "Settings"
|
28 |
+
msgstr "Ρυθμίσεις"
|
29 |
+
|
30 |
+
#: toc.php:482 toc.php:483
|
31 |
+
msgid "TOC"
|
32 |
+
msgstr "TOC"
|
33 |
+
|
34 |
+
#: toc.php:653
|
35 |
+
msgid "Options saved."
|
36 |
+
msgstr "Επιλογές αποθηκεύθηκαν"
|
37 |
+
|
38 |
+
#: toc.php:655
|
39 |
+
msgid "Save failed."
|
40 |
+
msgstr "Η αποθήκευση απέτυχε"
|
41 |
+
|
42 |
+
#: toc.php:667
|
43 |
+
msgid "Main Options"
|
44 |
+
msgstr "Βασικές Επιλογές"
|
45 |
+
|
46 |
+
#: toc.php:668
|
47 |
+
msgid "Sitemap"
|
48 |
+
msgstr "Χάρτης Ιστοσελίδας"
|
49 |
+
|
50 |
+
#: toc.php:669
|
51 |
+
msgid "Help"
|
52 |
+
msgstr "Βοήθεια"
|
53 |
+
|
54 |
+
#: toc.php:677
|
55 |
+
msgid "Position"
|
56 |
+
msgstr "Θέση"
|
57 |
+
|
58 |
+
#: toc.php:680
|
59 |
+
msgid "Before first heading (default)"
|
60 |
+
msgstr "Πριν την πρώτη επικεφαλίδα (προεπιλογή)"
|
61 |
+
|
62 |
+
#: toc.php:681
|
63 |
+
msgid "After first heading"
|
64 |
+
msgstr "Μετά την πρώτη επικεφαλίδα"
|
65 |
+
|
66 |
+
#: toc.php:682
|
67 |
+
msgid "Top"
|
68 |
+
msgstr "Κορυφή"
|
69 |
+
|
70 |
+
#: toc.php:683
|
71 |
+
msgid "Bottom"
|
72 |
+
msgstr "Τέρμα κάτω"
|
73 |
+
|
74 |
+
#: toc.php:688
|
75 |
+
msgid "Show when"
|
76 |
+
msgstr "Εμφάνιση όταν"
|
77 |
+
|
78 |
+
#. translators: text follows drop down list of numbers
|
79 |
+
#: toc.php:700
|
80 |
+
msgid "or more headings are present"
|
81 |
+
msgstr "ή περισσότερες επικεφαλίδες είναι παρούσες"
|
82 |
+
|
83 |
+
#: toc.php:704
|
84 |
+
msgid "Auto insert for the following content types"
|
85 |
+
msgstr "Αυτόματη εισαγωγή στα ακόλουθα είδη περιεχομένου"
|
86 |
+
|
87 |
+
#. translators: this is the title of the table of contents
|
88 |
+
#: toc.php:719
|
89 |
+
msgid "Heading text"
|
90 |
+
msgstr "Κείμενο Κεφαλίδας"
|
91 |
+
|
92 |
+
#: toc.php:721
|
93 |
+
msgid "Show title on top of the table of contents"
|
94 |
+
msgstr "Εμφάνισου τίτλου στην κορυφή του πίνακα περιεχομένων"
|
95 |
+
|
96 |
+
#: toc.php:724
|
97 |
+
msgid "Eg: Contents, Table of Contents, Page Contents"
|
98 |
+
msgstr "πχ: Περιεχόμενα, Πίνακας Περιεχομένων, Περιεχόμενο Σελίδας"
|
99 |
+
|
100 |
+
#: toc.php:726
|
101 |
+
msgid "Allow the user to toggle the visibility of the table of contents"
|
102 |
+
msgstr ""
|
103 |
+
"Επιτρέψτε στον χρήστη να εναλλάσσει την ορατότητα του πίνακα περιεχομένων"
|
104 |
+
|
105 |
+
#: toc.php:731
|
106 |
+
msgid "Show text"
|
107 |
+
msgstr "Εμφάνιση κειμένου"
|
108 |
+
|
109 |
+
#. translators: example text to display when you want to expand the table of
|
110 |
+
#. contents
|
111 |
+
#: toc.php:735
|
112 |
+
msgid "Eg: show"
|
113 |
+
msgstr "πχ: εμφάνισε"
|
114 |
+
|
115 |
+
#: toc.php:738
|
116 |
+
msgid "Hide text"
|
117 |
+
msgstr "Απόκρυψη κειμένου"
|
118 |
+
|
119 |
+
#. translators: example text to display when you want to collapse the table of
|
120 |
+
#. contents
|
121 |
+
#: toc.php:742
|
122 |
+
msgid "Eg: hide"
|
123 |
+
msgstr "πχ: κρύψε"
|
124 |
+
|
125 |
+
#: toc.php:746
|
126 |
+
msgid "Hide the table of contents initially"
|
127 |
+
msgstr "Κρύψε των πίνακα περιεχομένων αρχικά"
|
128 |
+
|
129 |
+
#: toc.php:752
|
130 |
+
msgid "Show hierarchy"
|
131 |
+
msgstr "Εμφάνιση ιεραρχίας"
|
132 |
+
|
133 |
+
#: toc.php:756
|
134 |
+
msgid "Number list items"
|
135 |
+
msgstr "Αρίθμηση λίστας αντικειμένων"
|
136 |
+
|
137 |
+
#: toc.php:760
|
138 |
+
msgid "Enable smooth scroll effect"
|
139 |
+
msgstr "Ενεργοποίηση εφέ ομαλής κύλισης"
|
140 |
+
|
141 |
+
#: toc.php:761
|
142 |
+
msgid "Scroll rather than jump to the anchor link"
|
143 |
+
msgstr "Κύλιση αντί για πήδημα στο κείμενο συνδέσμου"
|
144 |
+
|
145 |
+
#: toc.php:766
|
146 |
+
msgid "Appearance"
|
147 |
+
msgstr "Εμφάνιση"
|
148 |
+
|
149 |
+
#: toc.php:770
|
150 |
+
msgid "Width"
|
151 |
+
msgstr "Πλάτος"
|
152 |
+
|
153 |
+
#: toc.php:773
|
154 |
+
msgid "Fixed width"
|
155 |
+
msgstr "Σταθερό πλάτος"
|
156 |
+
|
157 |
+
#: toc.php:784
|
158 |
+
msgid "Relative"
|
159 |
+
msgstr "Σχετικό"
|
160 |
+
|
161 |
+
#: toc.php:785
|
162 |
+
msgid "Auto (default)"
|
163 |
+
msgstr "Αυτόματα (προεπιλογή)"
|
164 |
+
|
165 |
+
#. translators: other width
|
166 |
+
#: toc.php:795
|
167 |
+
msgid "Other"
|
168 |
+
msgstr "Άλλο"
|
169 |
+
|
170 |
+
#: toc.php:796
|
171 |
+
msgid "User defined"
|
172 |
+
msgstr "Ορίζεται από το Χρήστη"
|
173 |
+
|
174 |
+
#. translators: ignore %s as it's some HTML label tags
|
175 |
+
#: toc.php:802
|
176 |
+
msgid "Please enter a number and %s select its units, eg: 100px, 10em"
|
177 |
+
msgstr ""
|
178 |
+
"Παρακαλώ εισάγετε ένα αριθμό και %s και επιλέξτε τις μονάδες του, πχ: 100px, "
|
179 |
+
"10em"
|
180 |
+
|
181 |
+
#: toc.php:813
|
182 |
+
msgid "Wrapping"
|
183 |
+
msgstr "Περιτύλιγμα"
|
184 |
+
|
185 |
+
#: toc.php:816
|
186 |
+
msgid "None (default)"
|
187 |
+
msgstr "Κανένα (προεπιλογή)"
|
188 |
+
|
189 |
+
#: toc.php:817
|
190 |
+
msgid "Left"
|
191 |
+
msgstr "Αριστερά"
|
192 |
+
|
193 |
+
#: toc.php:818
|
194 |
+
msgid "Right"
|
195 |
+
msgstr "Δεξιά"
|
196 |
+
|
197 |
+
#: toc.php:823
|
198 |
+
msgid "Font size"
|
199 |
+
msgstr "Μέγεθος γραμματοσειράς"
|
200 |
+
|
201 |
+
#. translators: appearance / colour / look and feel options
|
202 |
+
#: toc.php:836
|
203 |
+
msgid "Presentation"
|
204 |
+
msgstr "Παρουσίαση"
|
205 |
+
|
206 |
+
#: toc.php:839
|
207 |
+
msgid "Grey (default)"
|
208 |
+
msgstr "Γκρι (προεπιλογή)"
|
209 |
+
|
210 |
+
#: toc.php:844
|
211 |
+
msgid "Light blue"
|
212 |
+
msgstr "Ανοιχτό μπλε"
|
213 |
+
|
214 |
+
#: toc.php:849
|
215 |
+
msgid "White"
|
216 |
+
msgstr "ασπρο"
|
217 |
+
|
218 |
+
#: toc.php:854
|
219 |
+
msgid "Black"
|
220 |
+
msgstr "Μαύρο"
|
221 |
+
|
222 |
+
#: toc.php:859
|
223 |
+
msgid "Transparent"
|
224 |
+
msgstr "Διάφανο"
|
225 |
+
|
226 |
+
#: toc.php:864
|
227 |
+
msgid "Custom"
|
228 |
+
msgstr "Κατά Επιλογή"
|
229 |
+
|
230 |
+
#: toc.php:874
|
231 |
+
msgid "Background"
|
232 |
+
msgstr "Φόντο"
|
233 |
+
|
234 |
+
#: toc.php:878
|
235 |
+
msgid "Border"
|
236 |
+
msgstr "Όρια"
|
237 |
+
|
238 |
+
#: toc.php:882 toc.php:1658
|
239 |
+
msgid "Title"
|
240 |
+
msgstr "Τίτλος"
|
241 |
+
|
242 |
+
#: toc.php:886
|
243 |
+
msgid "Links"
|
244 |
+
msgstr "Σύνδεσμοι"
|
245 |
+
|
246 |
+
#: toc.php:890
|
247 |
+
msgid "Links (hover)"
|
248 |
+
msgstr "Σύνδεσμοι (hover)"
|
249 |
+
|
250 |
+
#: toc.php:894
|
251 |
+
msgid "Links (visited)"
|
252 |
+
msgstr "Σύνδεσμοι (επισκέφθηκαν)"
|
253 |
+
|
254 |
+
#: toc.php:901
|
255 |
+
msgid "Leaving the value as %s will inherit your theme's styles"
|
256 |
+
msgstr "Αφήνοντας την τιμή ως %s θα κληρονομήσει το στυλ του θέματος σας"
|
257 |
+
|
258 |
+
#: toc.php:908
|
259 |
+
msgid "Advanced"
|
260 |
+
msgstr "Για Προχωρημένους"
|
261 |
+
|
262 |
+
#: toc.php:908 toc.php:1045
|
263 |
+
msgid "show"
|
264 |
+
msgstr "εμφάνιση"
|
265 |
+
|
266 |
+
#: toc.php:910
|
267 |
+
msgid "Power options"
|
268 |
+
msgstr "Επιλογές δύναμης"
|
269 |
+
|
270 |
+
#: toc.php:914
|
271 |
+
msgid "Lowercase"
|
272 |
+
msgstr "Μικρά"
|
273 |
+
|
274 |
+
#: toc.php:915
|
275 |
+
msgid "Ensure anchors are in lowercase"
|
276 |
+
msgstr "Εξασφαλίστε ότι το κείμενο συνδέσμων είναι με μικρά"
|
277 |
+
|
278 |
+
#: toc.php:918
|
279 |
+
msgid "Hyphenate"
|
280 |
+
msgstr "Χωρισμός με παύλα"
|
281 |
+
|
282 |
+
#: toc.php:919
|
283 |
+
msgid "Use - rather than _ in anchors"
|
284 |
+
msgstr "Χρησιμοποιήστε - αντί για _ στο κείμενο συνδέσμων"
|
285 |
+
|
286 |
+
#: toc.php:922
|
287 |
+
msgid "Include homepage"
|
288 |
+
msgstr "Να περιλαμβάνεται η αρχική σελίδα"
|
289 |
+
|
290 |
+
#: toc.php:923
|
291 |
+
msgid "Show the table of contents for qualifying items on the homepage"
|
292 |
+
msgstr ""
|
293 |
+
"Εμφάνιση πίνακα περιεχομένων για αντικείμενα που καλύπτουν τις προϋποθέσεις "
|
294 |
+
"στη αρχική σελίδα"
|
295 |
+
|
296 |
+
#: toc.php:926
|
297 |
+
msgid "Exclude CSS file"
|
298 |
+
msgstr "Εξαίρεη αρχείου CSS"
|
299 |
+
|
300 |
+
#: toc.php:927
|
301 |
+
msgid ""
|
302 |
+
"Prevent the loading of this plugin's CSS styles. When selected, the "
|
303 |
+
"appearance options from above will also be ignored."
|
304 |
+
msgstr ""
|
305 |
+
"Αποτροπή της φόρτωσης του CSS στυλ αυτού του προσθέτου. Όταν επιλεγεί, οι "
|
306 |
+
"επιλογές εμφάνισης από παραπάνω θα αγνοηθούν."
|
307 |
+
|
308 |
+
#: toc.php:930
|
309 |
+
msgid "Preserve theme bullets"
|
310 |
+
msgstr "Διατήρηση "
|
311 |
+
|
312 |
+
#: toc.php:931
|
313 |
+
msgid ""
|
314 |
+
"If your theme includes background images for unordered list elements, enable "
|
315 |
+
"this to support them"
|
316 |
+
msgstr ""
|
317 |
+
"Αν το θέμα σας περιλαμβάνει εικόνες φόντου για μη αριθμημένες λίστες, "
|
318 |
+
"ενεργοποιήστε αυτό για να υποστηριχθούν."
|
319 |
+
|
320 |
+
#: toc.php:934
|
321 |
+
msgid "Heading levels"
|
322 |
+
msgstr "Επίπεδα επικεφαλίδων"
|
323 |
+
|
324 |
+
#: toc.php:936
|
325 |
+
msgid ""
|
326 |
+
"Include the following heading levels. Deselecting a heading will exclude it."
|
327 |
+
msgstr ""
|
328 |
+
"Περίληψη των ακόλουθων επιπέδων επικεφαλίδας. Αποεπιλογή μιας επικεφαλίδας "
|
329 |
+
"θα την εξαιρέσει."
|
330 |
+
|
331 |
+
#: toc.php:942
|
332 |
+
msgid "heading "
|
333 |
+
msgstr "επικεφαλίδα"
|
334 |
+
|
335 |
+
#: toc.php:948
|
336 |
+
msgid "Exclude headings"
|
337 |
+
msgstr "Εξαίρεση επικεφαλίδων"
|
338 |
+
|
339 |
+
#: toc.php:951
|
340 |
+
msgid ""
|
341 |
+
"Specify headings to be excluded from appearing in the table of contents. "
|
342 |
+
"Separate multiple headings with a pipe <code>|</code>. Use an asterisk "
|
343 |
+
"<code>*</code> as a wildcard to match other text. Note that this is not "
|
344 |
+
"case sensitive. Some examples:"
|
345 |
+
msgstr ""
|
346 |
+
"Καθορίστε επικεφαλίδες να εξαιρεθούν από το να εμφανίζονται στον πίνακα "
|
347 |
+
"περιεχομένων. Διαχωρίστε τις επιεπικεφαλίδες με <code>|</code> . "
|
348 |
+
"Χρησιμοποιήστε έναν αστερίσκο <code>*</code> ως μπαλαντέρ για να ταιριάζει "
|
349 |
+
"με το υπόλοιπο κείμενο. Σημειώστε ότι αυτό δεν είναι ευαίσθητο στα μικρά ή "
|
350 |
+
"κεφαλαία. Μερικά παραδείγματα: "
|
351 |
+
|
352 |
+
#: toc.php:953
|
353 |
+
msgid "<code>Fruit*</code> ignore headings starting with \"Fruit\""
|
354 |
+
msgstr "<code>Φρούτο*</code> αγνοεί τις επιεπικεφαλίδες που ξεκινάν με \"Φρούτο\""
|
355 |
+
|
356 |
+
#: toc.php:954
|
357 |
+
msgid ""
|
358 |
+
"<code>*Fruit Diet*</code> ignore headings with \"Fruit Diet\" somewhere in "
|
359 |
+
"the heading"
|
360 |
+
msgstr ""
|
361 |
+
"<code>*Δίαιτα Φρούτων*</code> αγνοεί τις επιεπικεφαλίδες που έχουν "
|
362 |
+
"οπουδήποτε \"Δίαιτα Φρούτων\" "
|
363 |
+
|
364 |
+
#: toc.php:955
|
365 |
+
msgid ""
|
366 |
+
"<code>Apple Tree|Oranges|Yellow Bananas</code> ignore headings that are "
|
367 |
+
"exactly \"Apple Tree\", \"Oranges\" or \"Yellow Bananas\""
|
368 |
+
msgstr ""
|
369 |
+
"<code>Μηλιές|Πορτοκάλια|Κίτρινες Μπανάνες</code> αγνοεί τις επιεπικεφαλίδες "
|
370 |
+
"που είναι ακριβώς \"Μηλιές\", \"Πορτοκάλια\" ή \"Κίτρινες Μπανάνες\""
|
371 |
+
|
372 |
+
#: toc.php:960
|
373 |
+
msgid "Smooth scroll top offset"
|
374 |
+
msgstr "Αντιστάθμιση ομαλής κύλισης πάνω"
|
375 |
+
|
376 |
+
#: toc.php:963
|
377 |
+
msgid ""
|
378 |
+
"If you have a consistent menu across the top of your site, you can adjust "
|
379 |
+
"the top offset to stop the headings from appearing underneath the top menu. "
|
380 |
+
"A setting of 30 accommodates the WordPress admin bar. This setting appears "
|
381 |
+
"after you have enabled smooth scrolling from above."
|
382 |
+
msgstr ""
|
383 |
+
"Αν έχετε ένα σταθερό μενού στην κορυφή του ιστότοπου σας, μπορείτε να "
|
384 |
+
"ρυθμίσετε την αντιστάθμιση από την κορυφή για να σταματήστε τις "
|
385 |
+
"επιεπικεφαλίδες από το να εμφανίζονται κάτω από το μενου. Μια επιλογή 30 "
|
386 |
+
"είναι αρκετή για την μπάρα διαχείρισης του WordPress. Αυτή η ρύθμιση "
|
387 |
+
"εμφανίζεται αφού έχετε ενεργοποιήσει την ομαλή κύλιση παραπάνω."
|
388 |
+
|
389 |
+
#: toc.php:967
|
390 |
+
msgid "Restrict path"
|
391 |
+
msgstr "Περιορισμός μονοπατιού"
|
392 |
+
|
393 |
+
#: toc.php:970
|
394 |
+
msgid ""
|
395 |
+
"Restrict generation of the table of contents to pages that match the "
|
396 |
+
"required path. This path is from the root of your site and always begins "
|
397 |
+
"with a forward slash."
|
398 |
+
msgstr ""
|
399 |
+
"Περιορισμός δημιουργίας του πίνακα περιεχομένων σε σελίδες που ταιριάζουν το "
|
400 |
+
"απαιτούμενο μονοπάτι. Αυτό το μονοπάτι είναι από τον root του ιστότοπου σας "
|
401 |
+
"και αρχίζει πάντα με /."
|
402 |
+
|
403 |
+
#. translators: example URL path restriction
|
404 |
+
#: toc.php:973
|
405 |
+
msgid "Eg: /wiki/, /corporate/annual-reports/"
|
406 |
+
msgstr "πχ: /wiki/, /corporate/annual-reports/"
|
407 |
+
|
408 |
+
#: toc.php:977
|
409 |
+
msgid "Default anchor prefix"
|
410 |
+
msgstr "Προεπιλογή προθέματος κειμένου συνδέσμου"
|
411 |
+
|
412 |
+
#: toc.php:980
|
413 |
+
msgid ""
|
414 |
+
"Anchor targets are restricted to alphanumeric characters as per HTML "
|
415 |
+
"specification (see readme for more detail). The default anchor prefix will "
|
416 |
+
"be used when no characters qualify. When left blank, a number will be used "
|
417 |
+
"instead."
|
418 |
+
msgstr ""
|
419 |
+
"Οι στόχοι κειμένου συνδέσμων περιορίζοντα σε γράμματα και αριθμούς σύμφωνα "
|
420 |
+
"με τον HTML προσδιορισμό. (δείτε το readme για περισσότερες λεπτομέρειες). "
|
421 |
+
"Το προεπιλεγμένο πρόθεμα κειμένου συνδέσμων θα χρησιμοποιηθεί όταν κανένας "
|
422 |
+
"χαρακτήρας δεν προκρίνεται. Όταν αφεθεί κενό, θα χρησιμοποιηθεί ένας "
|
423 |
+
"αριθμός."
|
424 |
+
|
425 |
+
#: toc.php:981
|
426 |
+
msgid ""
|
427 |
+
"This option normally applies to content written in character sets other than "
|
428 |
+
"ASCII."
|
429 |
+
msgstr ""
|
430 |
+
"Αυτή η επιλογή ισχύει για περιεχόμενο γραμμένο με χαρακτήρες άλλους εκτός "
|
431 |
+
"ASCII."
|
432 |
+
|
433 |
+
#. translators: example anchor prefixes when no ascii characters match
|
434 |
+
#: toc.php:984
|
435 |
+
msgid "Eg: i, toc_index, index, _"
|
436 |
+
msgstr "πχ: i, toc_index, index, _"
|
437 |
+
|
438 |
+
#. translators: advanced usage
|
439 |
+
#: toc.php:992
|
440 |
+
msgid "Usage"
|
441 |
+
msgstr "Χρήση"
|
442 |
+
|
443 |
+
#: toc.php:993
|
444 |
+
msgid ""
|
445 |
+
"If you would like to fully customise the position of the table of contents, "
|
446 |
+
"you can use the %s shortcode by placing it at the desired position of your "
|
447 |
+
"post, page or custom post type. This method allows you to generate the table "
|
448 |
+
"of contents despite having auto insertion disabled for its content type. "
|
449 |
+
"Please visit the help tab for further information about this shortcode."
|
450 |
+
msgstr ""
|
451 |
+
"Αν θέλετε να ρυθμίσετε πλήρως την τοποθεσία του πίνακα περιεχομένων, "
|
452 |
+
"μπορείτε να χρησιμοποιήσετε το %s shortcode τοποθετώντας τον στην επιθυμητή "
|
453 |
+
"τοποθεσία στη δημοσίευση, σελίδα ή custom post. Αυτή η μέθοδος σας επιτρέπει "
|
454 |
+
"να δημιουργήσετε τον πίνακα περιεχομένων ακόμα και αν έχετε την αυτόματη "
|
455 |
+
"εισαγωγή ανενεργή για τον συγκεκριμένο τύπο περιεχομένου. Παρακαλώ, "
|
456 |
+
"επισκεφθείτε την καρτέλα βοήθειας για περαιτέρω πληροφορίες σχετικά με αυτόν "
|
457 |
+
"τον shortcode."
|
458 |
+
|
459 |
+
#: toc.php:1001
|
460 |
+
msgid ""
|
461 |
+
"At its simplest, placing %s into a page will automatically create a sitemap "
|
462 |
+
"of all pages and categories. This also works in a text widget."
|
463 |
+
msgstr ""
|
464 |
+
"Στην πιο απλή περίπτωση, τοποθετώντας %s σε μια σελίδα θα δημιουργήσει "
|
465 |
+
"αυτόματα έναν χάρτη ιστοτόπου με όλες τις σελίδες και κατηγορίες. Το ίδιο θα "
|
466 |
+
"γίνει και σε μια μικροεφαρμογή κειμένου."
|
467 |
+
|
468 |
+
#: toc.php:1005
|
469 |
+
msgid "Show page listing"
|
470 |
+
msgstr "Εμφάνιση λίστας σελίδων"
|
471 |
+
|
472 |
+
#: toc.php:1009
|
473 |
+
msgid "Show category listing"
|
474 |
+
msgstr "Εμφάνιση λίστας κατηγοριών"
|
475 |
+
|
476 |
+
#: toc.php:1013
|
477 |
+
msgid "Heading type"
|
478 |
+
msgstr "Τύπος Κεφαλίδας"
|
479 |
+
|
480 |
+
#. translators: the full line is supposed to read - Use [1-6 drop down list] to
|
481 |
+
#. print out the titles
|
482 |
+
#: toc.php:1016
|
483 |
+
msgid "Use"
|
484 |
+
msgstr "Χρησιμοποιήστε"
|
485 |
+
|
486 |
+
#. translators: the full line is supposed to read - Use [h1-h6 drop down list]
|
487 |
+
#. to print out the titles
|
488 |
+
#: toc.php:1027
|
489 |
+
msgid "to print out the titles"
|
490 |
+
msgstr "για να εμφανιστούν οι τίτλοι"
|
491 |
+
|
492 |
+
#: toc.php:1031
|
493 |
+
msgid "Pages label"
|
494 |
+
msgstr "Ετικέτα σελίδων"
|
495 |
+
|
496 |
+
#: toc.php:1033
|
497 |
+
msgid "Eg: Pages, Page List"
|
498 |
+
msgstr "πχ: Σελίδες, Λίστα Σελίδων"
|
499 |
+
|
500 |
+
#: toc.php:1037
|
501 |
+
msgid "Categories label"
|
502 |
+
msgstr "Ετικέτα κατηγοριών"
|
503 |
+
|
504 |
+
#: toc.php:1039
|
505 |
+
msgid "Eg: Categories, Category List"
|
506 |
+
msgstr "πχ: Κατηγορίες, Λίστα Κατηγοριών"
|
507 |
+
|
508 |
+
#: toc.php:1045
|
509 |
+
msgid "Advanced usage"
|
510 |
+
msgstr "Χρήση για προχωρημένους"
|
511 |
+
|
512 |
+
#: toc.php:1047
|
513 |
+
msgid ""
|
514 |
+
"lets you print out a listing of only pages. Similarly %s can be used to "
|
515 |
+
"print out a category listing. They both can accept a number of attributes so "
|
516 |
+
"visit the help tab for more information."
|
517 |
+
msgstr ""
|
518 |
+
"Σας επιτρέπει να εμφανίσετε μια λίστα μόνο σελίδων. Παρομοίως %s μπορεί να "
|
519 |
+
"χρησιμοποιηθεί για την εμφάνιση μιας λίστας κατηγοριών, Και οι δύο δέχονται "
|
520 |
+
"μια λίστα παραμέτρων, για το λόγο αυτό επισκεφθείτε την καρτέλα βοήθειας για "
|
521 |
+
"παραπάνω πληροφορίες."
|
522 |
+
|
523 |
+
#: toc.php:1048
|
524 |
+
msgid "Examples"
|
525 |
+
msgstr "Παραδείγματα"
|
526 |
+
|
527 |
+
#: toc.php:1050
|
528 |
+
msgid "hides the heading from a category listing"
|
529 |
+
msgstr "κρύβει την επικεφαλίδα από την λίστα κατηγοριών"
|
530 |
+
|
531 |
+
#: toc.php:1051
|
532 |
+
msgid ""
|
533 |
+
"Uses h6 to display %s on a page listing excluding pages with IDs 1 and 15"
|
534 |
+
msgstr ""
|
535 |
+
"Χρησιμοποιεί h6 για την προβολή %s μιας λίστας σελίδων εξαιρώντας τις "
|
536 |
+
"σελίδες με IDs 1 και 15"
|
537 |
+
|
538 |
+
#: toc.php:1060
|
539 |
+
msgid "Update Options"
|
540 |
+
msgstr "Ενημέρωση Επιλογών"
|
541 |
+
|
542 |
+
#: toc.php:1563
|
543 |
+
msgid "Display the table of contents in the sidebar with this widget"
|
544 |
+
msgstr ""
|
545 |
+
"Εμφάνιση του πίνακα περιεχομένων στη πλευρική στήλη με αυτή μικροεφαρμογή"
|
546 |
+
|
547 |
+
#: toc.php:1664
|
548 |
+
msgid "Show the table of contents only in the sidebar"
|
549 |
+
msgstr "Εμφάνιση του πίνακα περιεχομένων μόνο στη πλευρική στήλη"
|
550 |
+
|
551 |
+
#: toc.php:1668
|
552 |
+
msgid "For the following content types:"
|
553 |
+
msgstr "Για τους ακόλουθους τύπους περιεχομένου"
|
554 |
+
|
555 |
+
#. Plugin Name of the plugin/theme
|
556 |
+
msgid "Table of Contents Plus"
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#. Plugin URI of the plugin/theme
|
560 |
+
msgid "http://dublue.com/plugins/toc/"
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#. Description of the plugin/theme
|
564 |
+
msgid ""
|
565 |
+
"A powerful yet user friendly plugin that automatically creates a table of "
|
566 |
+
"contents. Can also output a sitemap listing all pages and categories."
|
567 |
+
msgstr ""
|
568 |
+
|
569 |
+
#. Author of the plugin/theme
|
570 |
+
msgid "Michael Tran"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#. Author URI of the plugin/theme
|
574 |
+
msgid "http://dublue.com/"
|
575 |
+
msgstr ""
|
languages/toc+-he_IL.mo
ADDED
Binary file
|
languages/toc+-he_IL.po
ADDED
@@ -0,0 +1,534 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2015 Table of Contents Plus
|
2 |
+
# This file is distributed under the same license as the Table of Contents Plus package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Table of Contents Plus 1505\n"
|
6 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/table-of-contents-plus\n"
|
7 |
+
"POT-Creation-Date: 2015-08-24 12:52+0300\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: 2015-08-24 13:49+0300\n"
|
12 |
+
"Language-Team: Ahrale | Atar4U.com <contact@atar4u.com>\n"
|
13 |
+
"X-Generator: Poedit 1.8.3\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"Last-Translator: Ahrale <contact@atar4u.com>\n"
|
16 |
+
"Language: he_IL\n"
|
17 |
+
|
18 |
+
#: toc.php:201
|
19 |
+
msgid "Settings"
|
20 |
+
msgstr "הגדרות"
|
21 |
+
|
22 |
+
#: toc.php:482 toc.php:483
|
23 |
+
msgid "TOC"
|
24 |
+
msgstr "תוכן העניינים"
|
25 |
+
|
26 |
+
#: toc.php:653
|
27 |
+
msgid "Options saved."
|
28 |
+
msgstr "האפשרויות נשמרו."
|
29 |
+
|
30 |
+
#: toc.php:655
|
31 |
+
msgid "Save failed."
|
32 |
+
msgstr "השמירה נכשלה."
|
33 |
+
|
34 |
+
#: toc.php:667
|
35 |
+
msgid "Main Options"
|
36 |
+
msgstr "אפשרויות עיקריות"
|
37 |
+
|
38 |
+
#: toc.php:668
|
39 |
+
msgid "Sitemap"
|
40 |
+
msgstr "מפת אתר"
|
41 |
+
|
42 |
+
#: toc.php:669
|
43 |
+
msgid "Help"
|
44 |
+
msgstr "עזרה"
|
45 |
+
|
46 |
+
#: toc.php:677
|
47 |
+
msgid "Position"
|
48 |
+
msgstr "מיקום"
|
49 |
+
|
50 |
+
#: toc.php:680
|
51 |
+
msgid "Before first heading (default)"
|
52 |
+
msgstr "לפני הכותרת הראשונה (ברירת המחדל)"
|
53 |
+
|
54 |
+
#: toc.php:681
|
55 |
+
msgid "After first heading"
|
56 |
+
msgstr "אחרי הכותרת הראשונה"
|
57 |
+
|
58 |
+
#: toc.php:682
|
59 |
+
msgid "Top"
|
60 |
+
msgstr "למעלה"
|
61 |
+
|
62 |
+
#: toc.php:683
|
63 |
+
msgid "Bottom"
|
64 |
+
msgstr "למטה"
|
65 |
+
|
66 |
+
#: toc.php:688
|
67 |
+
msgid "Show when"
|
68 |
+
msgstr "להציג כאשר"
|
69 |
+
|
70 |
+
#. translators: text follows drop down list of numbers
|
71 |
+
#: toc.php:700
|
72 |
+
msgid "or more headings are present"
|
73 |
+
msgstr "או יותר כותרות הוגדרו מראש"
|
74 |
+
|
75 |
+
#: toc.php:704
|
76 |
+
msgid "Auto insert for the following content types"
|
77 |
+
msgstr "הוספה אוטומטית עבור סוגי התוכן הבאים"
|
78 |
+
|
79 |
+
#. translators: this is the title of the table of contents
|
80 |
+
#: toc.php:719
|
81 |
+
msgid "Heading text"
|
82 |
+
msgstr "טקסט הכותרת"
|
83 |
+
|
84 |
+
#: toc.php:721
|
85 |
+
msgid "Show title on top of the table of contents"
|
86 |
+
msgstr "להציג את הכותרת בראש תוכן העניינים"
|
87 |
+
|
88 |
+
#: toc.php:724
|
89 |
+
msgid "Eg: Contents, Table of Contents, Page Contents"
|
90 |
+
msgstr "לדוגמה: תוכן, תוכן העניינים, תוכן העמוד"
|
91 |
+
|
92 |
+
#: toc.php:726
|
93 |
+
msgid "Allow the user to toggle the visibility of the table of contents"
|
94 |
+
msgstr "לאפשר למשתמש למתג את הנראות של תוכן העניינים"
|
95 |
+
|
96 |
+
#: toc.php:731
|
97 |
+
msgid "Show text"
|
98 |
+
msgstr "להציג את הטקסט"
|
99 |
+
|
100 |
+
#. translators: example text to display when you want to expand the table of
|
101 |
+
#. contents
|
102 |
+
#: toc.php:735
|
103 |
+
msgid "Eg: show"
|
104 |
+
msgstr "למשל: הצג"
|
105 |
+
|
106 |
+
#: toc.php:738
|
107 |
+
msgid "Hide text"
|
108 |
+
msgstr "להסתיר את הטקסט"
|
109 |
+
|
110 |
+
#. translators: example text to display when you want to collapse the table of
|
111 |
+
#. contents
|
112 |
+
#: toc.php:742
|
113 |
+
msgid "Eg: hide"
|
114 |
+
msgstr "למשל: הסתר"
|
115 |
+
|
116 |
+
#: toc.php:746
|
117 |
+
msgid "Hide the table of contents initially"
|
118 |
+
msgstr "להסתיר בהתחלה את תוכן העניינים"
|
119 |
+
|
120 |
+
#: toc.php:752
|
121 |
+
msgid "Show hierarchy"
|
122 |
+
msgstr "להציג היררכיה"
|
123 |
+
|
124 |
+
#: toc.php:756
|
125 |
+
msgid "Number list items"
|
126 |
+
msgstr "להציג את מספר הפריטים"
|
127 |
+
|
128 |
+
#: toc.php:760
|
129 |
+
msgid "Enable smooth scroll effect"
|
130 |
+
msgstr "הפעלת אפקט גלילה חלקה"
|
131 |
+
|
132 |
+
#: toc.php:761
|
133 |
+
msgid "Scroll rather than jump to the anchor link"
|
134 |
+
msgstr "העדפת גלילה על קפיצה לעוגן הקישור"
|
135 |
+
|
136 |
+
#: toc.php:766
|
137 |
+
msgid "Appearance"
|
138 |
+
msgstr "עיצוב"
|
139 |
+
|
140 |
+
#: toc.php:770
|
141 |
+
msgid "Width"
|
142 |
+
msgstr "רוחב"
|
143 |
+
|
144 |
+
#: toc.php:773
|
145 |
+
msgid "Fixed width"
|
146 |
+
msgstr "רוחב קבוע"
|
147 |
+
|
148 |
+
#: toc.php:784
|
149 |
+
msgid "Relative"
|
150 |
+
msgstr "יחסי"
|
151 |
+
|
152 |
+
#: toc.php:785
|
153 |
+
msgid "Auto (default)"
|
154 |
+
msgstr "אוטומטי (ברירת המחדל)"
|
155 |
+
|
156 |
+
#. translators: other width
|
157 |
+
#: toc.php:795
|
158 |
+
msgid "Other"
|
159 |
+
msgstr "אחר"
|
160 |
+
|
161 |
+
#: toc.php:796
|
162 |
+
msgid "User defined"
|
163 |
+
msgstr "הגדרת המשתמש"
|
164 |
+
|
165 |
+
#. translators: ignore %s as it's some HTML label tags
|
166 |
+
#: toc.php:802
|
167 |
+
msgid "Please enter a number and %s select its units, eg: 100px, 10em"
|
168 |
+
msgstr "נא להזין מספר ו %s לבחור את היחידות שלו, למשל: 100px, 10em"
|
169 |
+
|
170 |
+
#: toc.php:813
|
171 |
+
msgid "Wrapping"
|
172 |
+
msgstr "מעטפת"
|
173 |
+
|
174 |
+
#: toc.php:816
|
175 |
+
msgid "None (default)"
|
176 |
+
msgstr "ללא (ברירת המחדל)"
|
177 |
+
|
178 |
+
#: toc.php:817
|
179 |
+
msgid "Left"
|
180 |
+
msgstr "שמאל"
|
181 |
+
|
182 |
+
#: toc.php:818
|
183 |
+
msgid "Right"
|
184 |
+
msgstr "ימין"
|
185 |
+
|
186 |
+
#: toc.php:823
|
187 |
+
msgid "Font size"
|
188 |
+
msgstr "גודל הגופן"
|
189 |
+
|
190 |
+
#. translators: appearance / colour / look and feel options
|
191 |
+
#: toc.php:836
|
192 |
+
msgid "Presentation"
|
193 |
+
msgstr "מצגת"
|
194 |
+
|
195 |
+
#: toc.php:839
|
196 |
+
msgid "Grey (default)"
|
197 |
+
msgstr "אפור (ברירת המחדל)"
|
198 |
+
|
199 |
+
#: toc.php:844
|
200 |
+
msgid "Light blue"
|
201 |
+
msgstr "תכלת"
|
202 |
+
|
203 |
+
#: toc.php:849
|
204 |
+
msgid "White"
|
205 |
+
msgstr "לבן"
|
206 |
+
|
207 |
+
#: toc.php:854
|
208 |
+
msgid "Black"
|
209 |
+
msgstr "שחור"
|
210 |
+
|
211 |
+
#: toc.php:859
|
212 |
+
msgid "Transparent"
|
213 |
+
msgstr "שקוף"
|
214 |
+
|
215 |
+
#: toc.php:864
|
216 |
+
msgid "Custom"
|
217 |
+
msgstr "עיצוב אישי"
|
218 |
+
|
219 |
+
#: toc.php:874
|
220 |
+
msgid "Background"
|
221 |
+
msgstr "רקע"
|
222 |
+
|
223 |
+
#: toc.php:878
|
224 |
+
msgid "Border"
|
225 |
+
msgstr "מסגרת"
|
226 |
+
|
227 |
+
#: toc.php:882 toc.php:1658
|
228 |
+
msgid "Title"
|
229 |
+
msgstr "כותרת "
|
230 |
+
|
231 |
+
#: toc.php:886
|
232 |
+
msgid "Links"
|
233 |
+
msgstr "קישורים"
|
234 |
+
|
235 |
+
#: toc.php:890
|
236 |
+
msgid "Links (hover)"
|
237 |
+
msgstr "קישורים (בריחוף עכבר)"
|
238 |
+
|
239 |
+
#: toc.php:894
|
240 |
+
msgid "Links (visited)"
|
241 |
+
msgstr "קישורים (נלחץ)"
|
242 |
+
|
243 |
+
#: toc.php:901
|
244 |
+
msgid "Leaving the value as %s will inherit your theme's styles"
|
245 |
+
msgstr "השארת הערך כ %s תירש את עיצוב ערכת הנושא שלך"
|
246 |
+
|
247 |
+
#: toc.php:908
|
248 |
+
msgid "Advanced"
|
249 |
+
msgstr "הגדרות מתקדמות"
|
250 |
+
|
251 |
+
#: toc.php:908 toc.php:1045
|
252 |
+
msgid "show"
|
253 |
+
msgstr "הצג"
|
254 |
+
|
255 |
+
#: toc.php:910
|
256 |
+
msgid "Power options"
|
257 |
+
msgstr "אפשרויות עצמתיות"
|
258 |
+
|
259 |
+
#: toc.php:914
|
260 |
+
msgid "Lowercase"
|
261 |
+
msgstr "אותיות קטנות"
|
262 |
+
|
263 |
+
#: toc.php:915
|
264 |
+
msgid "Ensure anchors are in lowercase"
|
265 |
+
msgstr "לוודא שהעוגנים כתובים באותיות קטנות"
|
266 |
+
|
267 |
+
#: toc.php:918
|
268 |
+
msgid "Hyphenate"
|
269 |
+
msgstr "מקף"
|
270 |
+
|
271 |
+
#: toc.php:919
|
272 |
+
msgid "Use - rather than _ in anchors"
|
273 |
+
msgstr "העדפת שימוש ב - (מקף אמצעי) על פני _ (קו תחתון) בעוגנים"
|
274 |
+
|
275 |
+
#: toc.php:922
|
276 |
+
msgid "Include homepage"
|
277 |
+
msgstr "לכלול את עמוד הבית"
|
278 |
+
|
279 |
+
#: toc.php:923
|
280 |
+
msgid "Show the table of contents for qualifying items on the homepage"
|
281 |
+
msgstr "להציג את תוכן העניינים עבור פריטים מתאימים בעמוד הבית"
|
282 |
+
|
283 |
+
#: toc.php:926
|
284 |
+
msgid "Exclude CSS file"
|
285 |
+
msgstr "לא לכלול קובץ CSS"
|
286 |
+
|
287 |
+
#: toc.php:927
|
288 |
+
msgid ""
|
289 |
+
"Prevent the loading of this plugin's CSS styles. When selected, the appearance "
|
290 |
+
"options from above will also be ignored."
|
291 |
+
msgstr ""
|
292 |
+
"למנוע טעינת עיצובי CSS של התוסף. אם מסומן, אז תהיה התעלמות גם ממאפשרויות העיצוב לעיל."
|
293 |
+
|
294 |
+
#: toc.php:930
|
295 |
+
msgid "Preserve theme bullets"
|
296 |
+
msgstr "לשמור על כדורי התבנית"
|
297 |
+
|
298 |
+
#: toc.php:931
|
299 |
+
msgid ""
|
300 |
+
"If your theme includes background images for unordered list elements, enable this to "
|
301 |
+
"support them"
|
302 |
+
msgstr ""
|
303 |
+
"אם התבנית שלך כוללת תמונות רקע לררכיבי שימה לא מסודרת, להפעיל זאת כדי לתמוך בזה."
|
304 |
+
|
305 |
+
#: toc.php:934
|
306 |
+
msgid "Heading levels"
|
307 |
+
msgstr "רמות כותרת"
|
308 |
+
|
309 |
+
#: toc.php:936
|
310 |
+
msgid "Include the following heading levels. Deselecting a heading will exclude it."
|
311 |
+
msgstr "לכלול את רמות הכותרת שלהלן. ביטול סימון אחת הרמות יוציא אותה מן הכלל."
|
312 |
+
|
313 |
+
#: toc.php:942
|
314 |
+
msgid "heading "
|
315 |
+
msgstr "כותרת"
|
316 |
+
|
317 |
+
#: toc.php:948
|
318 |
+
msgid "Exclude headings"
|
319 |
+
msgstr "ביטול הכללת כותרות"
|
320 |
+
|
321 |
+
#: toc.php:951
|
322 |
+
msgid ""
|
323 |
+
"Specify headings to be excluded from appearing in the table of contents. Separate "
|
324 |
+
"multiple headings with a pipe <code>|</code>. Use an asterisk <code>*</code> as a "
|
325 |
+
"wildcard to match other text. Note that this is not case sensitive. Some examples:"
|
326 |
+
msgstr ""
|
327 |
+
"ציון כותרות שלא תיכללנה בתצוגת תוכן העניינים. נא להפריד כותרות מרובות עם | <code>|</"
|
328 |
+
"code>. להשתמש במרכאות <code>*</code> ככרטיס להתאמה לטקסט אחר. שימו לב שזה לא רגיש "
|
329 |
+
"לאותיות גדולות. כמה דוגמאות:"
|
330 |
+
|
331 |
+
#: toc.php:953
|
332 |
+
msgid "<code>Fruit*</code> ignore headings starting with \"Fruit\""
|
333 |
+
msgstr "הקוד <code>פירות</code> יתעלם מכותרות שמתחילות ב \"פירות\""
|
334 |
+
|
335 |
+
#: toc.php:954
|
336 |
+
msgid ""
|
337 |
+
"<code>*Fruit Diet*</code> ignore headings with \"Fruit Diet\" somewhere in the heading"
|
338 |
+
msgstr ""
|
339 |
+
"הקוד <code> \"דיאטת פירות\"/code> תתעלם מכותרת המכילה \"דיאטת פירות\" במקום כלשהו "
|
340 |
+
"בכותרת"
|
341 |
+
|
342 |
+
#: toc.php:955
|
343 |
+
msgid ""
|
344 |
+
"<code>Apple Tree|Oranges|Yellow Bananas</code> ignore headings that are exactly "
|
345 |
+
"\"Apple Tree\", \"Oranges\" or \"Yellow Bananas\""
|
346 |
+
msgstr ""
|
347 |
+
"הקוד <code>עץ תפוח|תפוזים|בננות צהובות</code> יתעלם מכותרות שהן במדויק \"עץ תפוח\", "
|
348 |
+
"\"תפוזים\" או \"בננות צהובות\""
|
349 |
+
|
350 |
+
#: toc.php:960
|
351 |
+
msgid "Smooth scroll top offset"
|
352 |
+
msgstr "קיזוז מלמעלה של גלילה חלקה"
|
353 |
+
|
354 |
+
#: toc.php:963
|
355 |
+
msgid ""
|
356 |
+
"If you have a consistent menu across the top of your site, you can adjust the top "
|
357 |
+
"offset to stop the headings from appearing underneath the top menu. A setting of 30 "
|
358 |
+
"accommodates the WordPress admin bar. This setting appears after you have enabled "
|
359 |
+
"smooth scrolling from above."
|
360 |
+
msgstr ""
|
361 |
+
"במקרה של תפריט עקבי בראש האתר, ניתן להתאים את הקיזוז כדי למנוע מהכותרות מלהופיע מתחת "
|
362 |
+
"לתפריט העליון. הגדרה של 30 מקזזת את תפריט הניהול העליון של וורדפרס. ההגדרה בשימוש רק "
|
363 |
+
"לאחר הפעלת גלילה חלקה לעיל."
|
364 |
+
|
365 |
+
#: toc.php:967
|
366 |
+
msgid "Restrict path"
|
367 |
+
msgstr "הגבלת נתיב"
|
368 |
+
|
369 |
+
#: toc.php:970
|
370 |
+
msgid ""
|
371 |
+
"Restrict generation of the table of contents to pages that match the required path. "
|
372 |
+
"This path is from the root of your site and always begins with a forward slash."
|
373 |
+
msgstr ""
|
374 |
+
"הגבלת מחולל תוכן העניינים מלפעול בנתיבי עמודים מסוימים. הנתיב הוא משורש האתר ותמיד "
|
375 |
+
"מתחיל עם קו נטוי."
|
376 |
+
|
377 |
+
#. translators: example URL path restriction
|
378 |
+
#: toc.php:973
|
379 |
+
msgid "Eg: /wiki/, /corporate/annual-reports/"
|
380 |
+
msgstr "למשל: /wiki/, /corporate/annual-reports/"
|
381 |
+
|
382 |
+
#: toc.php:977
|
383 |
+
msgid "Default anchor prefix"
|
384 |
+
msgstr "קידומת ברירת המחדל של עוגן"
|
385 |
+
|
386 |
+
#: toc.php:980
|
387 |
+
msgid ""
|
388 |
+
"Anchor targets are restricted to alphanumeric characters as per HTML specification "
|
389 |
+
"(see readme for more detail). The default anchor prefix will be used when no "
|
390 |
+
"characters qualify. When left blank, a number will be used instead."
|
391 |
+
msgstr ""
|
392 |
+
"יעדי עוגן מוגבלים לתווי אותיות ומספרים בהתאם להגדרות HTML (ראו קובץ readme לפרטים "
|
393 |
+
"נוספים). קידומת ברירת המחדל לעוגנים תהיה בשימוש כאשר אין תווים מתאימים. אם נשאר ריק "
|
394 |
+
"יהי במקום זה שימוש במספר."
|
395 |
+
|
396 |
+
#: toc.php:981
|
397 |
+
msgid ""
|
398 |
+
"This option normally applies to content written in character sets other than ASCII."
|
399 |
+
msgstr "אפשרות זו בדרך-כלל חלה לתוכן הנכתב בסט תווים שונה מ ASCII."
|
400 |
+
|
401 |
+
#. translators: example anchor prefixes when no ascii characters match
|
402 |
+
#: toc.php:984
|
403 |
+
msgid "Eg: i, toc_index, index, _"
|
404 |
+
msgstr "למשל: i, toc_index, index, _"
|
405 |
+
|
406 |
+
#. translators: advanced usage
|
407 |
+
#: toc.php:992
|
408 |
+
msgid "Usage"
|
409 |
+
msgstr "שימוש"
|
410 |
+
|
411 |
+
#: toc.php:993
|
412 |
+
msgid ""
|
413 |
+
"If you would like to fully customise the position of the table of contents, you can "
|
414 |
+
"use the %s shortcode by placing it at the desired position of your post, page or "
|
415 |
+
"custom post type. This method allows you to generate the table of contents despite "
|
416 |
+
"having auto insertion disabled for its content type. Please visit the help tab for "
|
417 |
+
"further information about this shortcode."
|
418 |
+
msgstr ""
|
419 |
+
"כדי לקבוע באופן עצמאי את מיקום תוכן העניינים, אפשר להשתמש בקיצור הקוד %s על-ידי "
|
420 |
+
"מיקומו במקום הרצוי בפוסט או עמוד או סוג פוסט. זה מאפשר לחולל תוכן עניינים למרות כיבוי "
|
421 |
+
"ההוספה האוטומטית של תוכן עניינים. למידע נוסף על קיצור הקוד בקרו בלשונית העזרה."
|
422 |
+
|
423 |
+
#: toc.php:1001
|
424 |
+
msgid ""
|
425 |
+
"At its simplest, placing %s into a page will automatically create a sitemap of all "
|
426 |
+
"pages and categories. This also works in a text widget."
|
427 |
+
msgstr ""
|
428 |
+
"בפשטות, מיקום %s בעמוד תיצור אוטומטית מפת אתר של כל העמודים והקטגוריות. זה פועל גם "
|
429 |
+
"בוידג'ט טקסט."
|
430 |
+
|
431 |
+
#: toc.php:1005
|
432 |
+
msgid "Show page listing"
|
433 |
+
msgstr "הצגת רשימת עמודים"
|
434 |
+
|
435 |
+
#: toc.php:1009
|
436 |
+
msgid "Show category listing"
|
437 |
+
msgstr "הצגת רשימת קטגוריות"
|
438 |
+
|
439 |
+
#: toc.php:1013
|
440 |
+
msgid "Heading type"
|
441 |
+
msgstr "סוג הכותרת"
|
442 |
+
|
443 |
+
#. translators: the full line is supposed to read - Use [1-6 drop down list] to
|
444 |
+
#. print out the titles
|
445 |
+
#: toc.php:1016
|
446 |
+
msgid "Use"
|
447 |
+
msgstr "להשתמש ב"
|
448 |
+
|
449 |
+
#. translators: the full line is supposed to read - Use [h1-h6 drop down list]
|
450 |
+
#. to print out the titles
|
451 |
+
#: toc.php:1027
|
452 |
+
msgid "to print out the titles"
|
453 |
+
msgstr "להדפסת הכותרות"
|
454 |
+
|
455 |
+
#: toc.php:1031
|
456 |
+
msgid "Pages label"
|
457 |
+
msgstr "תווית העמודים"
|
458 |
+
|
459 |
+
#: toc.php:1033
|
460 |
+
msgid "Eg: Pages, Page List"
|
461 |
+
msgstr "למשל: עמודים, רשימת העמודים"
|
462 |
+
|
463 |
+
#: toc.php:1037
|
464 |
+
msgid "Categories label"
|
465 |
+
msgstr "תווית הקטגוריות"
|
466 |
+
|
467 |
+
#: toc.php:1039
|
468 |
+
msgid "Eg: Categories, Category List"
|
469 |
+
msgstr "למשל: קטגוריות, רשימת הקטגוריות"
|
470 |
+
|
471 |
+
#: toc.php:1045
|
472 |
+
msgid "Advanced usage"
|
473 |
+
msgstr "שימוש מתקדם"
|
474 |
+
|
475 |
+
#: toc.php:1047
|
476 |
+
msgid ""
|
477 |
+
"lets you print out a listing of only pages. Similarly %s can be used to print out a "
|
478 |
+
"category listing. They both can accept a number of attributes so visit the help tab "
|
479 |
+
"for more information."
|
480 |
+
msgstr ""
|
481 |
+
"מאפשר להדפיס רשימה של עמודים בלבד. בדומה %s יכול לשמש גם להדפסת רשימת קטגוריות. שניהם "
|
482 |
+
"יכולים לקבל שימוש במספר תכונות, אז נא לבקר בלשונית העזרה למידע נוסף."
|
483 |
+
|
484 |
+
#: toc.php:1048
|
485 |
+
msgid "Examples"
|
486 |
+
msgstr "דוגמאות"
|
487 |
+
|
488 |
+
#: toc.php:1050
|
489 |
+
msgid "hides the heading from a category listing"
|
490 |
+
msgstr "מסתיר את הכותרת מרשימת הקטגוריות"
|
491 |
+
|
492 |
+
#: toc.php:1051
|
493 |
+
msgid "Uses h6 to display %s on a page listing excluding pages with IDs 1 and 15"
|
494 |
+
msgstr "השתמש בכותרת רמה 6 להצגת %s ברשימת עמודים ולא לכלול עמודים עם המזהים 1 ו 15"
|
495 |
+
|
496 |
+
#: toc.php:1060
|
497 |
+
msgid "Update Options"
|
498 |
+
msgstr "עדכון האפשרויות"
|
499 |
+
|
500 |
+
#: toc.php:1563
|
501 |
+
msgid "Display the table of contents in the sidebar with this widget"
|
502 |
+
msgstr "הצגת תוכן העניינים בסרגל הצד עם וידג'ט זה"
|
503 |
+
|
504 |
+
#: toc.php:1664
|
505 |
+
msgid "Show the table of contents only in the sidebar"
|
506 |
+
msgstr "הצגת תוכן העניינים רק בסרגל הצדדי"
|
507 |
+
|
508 |
+
#: toc.php:1668
|
509 |
+
msgid "For the following content types:"
|
510 |
+
msgstr "עבור סוגי התוכן שלהלן:"
|
511 |
+
|
512 |
+
#. Plugin Name of the plugin/theme
|
513 |
+
msgid "Table of Contents Plus"
|
514 |
+
msgstr "Table of Contents Plus"
|
515 |
+
|
516 |
+
#. Plugin URI of the plugin/theme
|
517 |
+
msgid "http://dublue.com/plugins/toc/"
|
518 |
+
msgstr "http://dublue.com/plugins/toc/"
|
519 |
+
|
520 |
+
#. Description of the plugin/theme
|
521 |
+
msgid ""
|
522 |
+
"A powerful yet user friendly plugin that automatically creates a table of contents. "
|
523 |
+
"Can also output a sitemap listing all pages and categories."
|
524 |
+
msgstr ""
|
525 |
+
"תוסף עצמתי וידידותי למשתמש אשר מוסיף אוטומטית תוכן עניינים. יכול לגם לשמש ליצירת מפת "
|
526 |
+
"אתר רשימת עמודים ורשימת קטגוריות."
|
527 |
+
|
528 |
+
#. Author of the plugin/theme
|
529 |
+
msgid "Michael Tran"
|
530 |
+
msgstr "מיכאל טראן Michael Tran"
|
531 |
+
|
532 |
+
#. Author URI of the plugin/theme
|
533 |
+
msgid "http://dublue.com/"
|
534 |
+
msgstr "http://dublue.com/"
|
languages/toc+-ja.mo
ADDED
Binary file
|
languages/toc+-ja.po
ADDED
@@ -0,0 +1,809 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014
|
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: 2014-02-18 12:58:50+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: 2015-08-26 09:02+0900\n"
|
12 |
+
"Last-Translator: Michael Yunat <Michael.Yunat@gmail.com>\n"
|
13 |
+
"Language-Team: http://getvoip.com/\n"
|
14 |
+
"Language: uk_UA\n"
|
15 |
+
"X-Generator: Poedit 1.8.4\n"
|
16 |
+
|
17 |
+
#: toc.php:200
|
18 |
+
msgid "Settings"
|
19 |
+
msgstr "設定"
|
20 |
+
|
21 |
+
#: toc.php:464 toc.php:465
|
22 |
+
msgid "TOC"
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: toc.php:635
|
26 |
+
msgid "Options saved."
|
27 |
+
msgstr "セーブしました"
|
28 |
+
|
29 |
+
#: toc.php:637
|
30 |
+
msgid "Save failed."
|
31 |
+
msgstr "セーブ失敗"
|
32 |
+
|
33 |
+
#: toc.php:649
|
34 |
+
msgid "Main Options"
|
35 |
+
msgstr "基本設定"
|
36 |
+
|
37 |
+
#: toc.php:650
|
38 |
+
msgid "Sitemap"
|
39 |
+
msgstr "サイトマップ"
|
40 |
+
|
41 |
+
#: toc.php:651
|
42 |
+
msgid "Help"
|
43 |
+
msgstr "ヘルプ"
|
44 |
+
|
45 |
+
#: toc.php:659
|
46 |
+
msgid "Position"
|
47 |
+
msgstr "表示する場所"
|
48 |
+
|
49 |
+
#: toc.php:662
|
50 |
+
msgid "Before first heading (default)"
|
51 |
+
msgstr "最初の見出しの前(デフォルト)"
|
52 |
+
|
53 |
+
#: toc.php:663
|
54 |
+
msgid "After first heading"
|
55 |
+
msgstr "最初の見出しの後(デフォルト)"
|
56 |
+
|
57 |
+
#: toc.php:664
|
58 |
+
msgid "Top"
|
59 |
+
msgstr "トップ"
|
60 |
+
|
61 |
+
#: toc.php:665
|
62 |
+
msgid "Bottom"
|
63 |
+
msgstr "ボトム"
|
64 |
+
|
65 |
+
#: toc.php:670
|
66 |
+
msgid "Show when"
|
67 |
+
msgstr "表示条件"
|
68 |
+
|
69 |
+
#: toc.php:682
|
70 |
+
msgid "or more headings are present"
|
71 |
+
msgstr "つ以上見出しがあるとき"
|
72 |
+
|
73 |
+
#: toc.php:686
|
74 |
+
msgid "Auto insert for the following content types"
|
75 |
+
msgstr "次の投稿タイプのときに表示"
|
76 |
+
|
77 |
+
#: toc.php:701
|
78 |
+
msgid "Heading text"
|
79 |
+
msgstr "見出しテキスト"
|
80 |
+
|
81 |
+
#: toc.php:703
|
82 |
+
msgid "Show title on top of the table of contents"
|
83 |
+
msgstr "目次の上に見出しを表示"
|
84 |
+
|
85 |
+
#: toc.php:706
|
86 |
+
msgid "Eg: Contents, Table of Contents, Page Contents"
|
87 |
+
msgstr "例)見出し、概要、流れ"
|
88 |
+
|
89 |
+
#: toc.php:708
|
90 |
+
msgid "Allow the user to toggle the visibility of the table of contents"
|
91 |
+
msgstr "表示非表示切り替えボタンのテキスト"
|
92 |
+
|
93 |
+
#: toc.php:713
|
94 |
+
msgid "Show text"
|
95 |
+
msgstr "表示テキスト"
|
96 |
+
|
97 |
+
#: toc.php:717
|
98 |
+
msgid "Eg: show"
|
99 |
+
msgstr "例)表示"
|
100 |
+
|
101 |
+
#: toc.php:720
|
102 |
+
msgid "Hide text"
|
103 |
+
msgstr "非表示テキスト"
|
104 |
+
|
105 |
+
#: toc.php:724
|
106 |
+
msgid "Eg: hide"
|
107 |
+
msgstr "例:非表示"
|
108 |
+
|
109 |
+
#: toc.php:728
|
110 |
+
msgid "Hide the table of contents initially"
|
111 |
+
msgstr "初期状態非表示"
|
112 |
+
|
113 |
+
#: toc.php:734
|
114 |
+
msgid "Show hierarchy"
|
115 |
+
msgstr "階層表示"
|
116 |
+
|
117 |
+
#: toc.php:738
|
118 |
+
msgid "Number list items"
|
119 |
+
msgstr "番号振り"
|
120 |
+
|
121 |
+
#: toc.php:742
|
122 |
+
msgid "Enable smooth scroll effect"
|
123 |
+
msgstr "スムーススクロール"
|
124 |
+
|
125 |
+
#: toc.php:743
|
126 |
+
msgid "Scroll rather than jump to the anchor link"
|
127 |
+
msgstr "スクロールしない"
|
128 |
+
|
129 |
+
#: toc.php:748
|
130 |
+
msgid "Appearance"
|
131 |
+
msgstr "デザイン"
|
132 |
+
|
133 |
+
#: toc.php:752
|
134 |
+
msgid "Width"
|
135 |
+
msgstr "横幅"
|
136 |
+
|
137 |
+
#: toc.php:755
|
138 |
+
msgid "Fixed width"
|
139 |
+
msgstr "絶対"
|
140 |
+
|
141 |
+
#: toc.php:766
|
142 |
+
msgid "Relative"
|
143 |
+
msgstr "相対"
|
144 |
+
|
145 |
+
#: toc.php:767
|
146 |
+
msgid "Auto (default)"
|
147 |
+
msgstr "自動(デフォルト)"
|
148 |
+
|
149 |
+
#: toc.php:777
|
150 |
+
msgid "Other"
|
151 |
+
msgstr "その他"
|
152 |
+
|
153 |
+
#: toc.php:778
|
154 |
+
msgid "User defined"
|
155 |
+
msgstr "ユーザー指定"
|
156 |
+
|
157 |
+
#: toc.php:784
|
158 |
+
msgid "Please enter a number and %s select its units, eg: 100px, 10em"
|
159 |
+
msgstr "数字を入力し、単位を選択してください。例)100px,10em"
|
160 |
+
|
161 |
+
#: toc.php:795
|
162 |
+
msgid "Wrapping"
|
163 |
+
msgstr "回り込み"
|
164 |
+
|
165 |
+
#: toc.php:798
|
166 |
+
msgid "None (default)"
|
167 |
+
msgstr "なし(デフォルト)"
|
168 |
+
|
169 |
+
#: toc.php:799
|
170 |
+
msgid "Left"
|
171 |
+
msgstr "左"
|
172 |
+
|
173 |
+
#: toc.php:800
|
174 |
+
msgid "Right"
|
175 |
+
msgstr "右"
|
176 |
+
|
177 |
+
#: toc.php:805
|
178 |
+
msgid "Font size"
|
179 |
+
msgstr "文字サイズ"
|
180 |
+
|
181 |
+
#: toc.php:818
|
182 |
+
msgid "Presentation"
|
183 |
+
msgstr "デザイン"
|
184 |
+
|
185 |
+
#: toc.php:821
|
186 |
+
msgid "Grey (default)"
|
187 |
+
msgstr "Grey(デフォルト)"
|
188 |
+
|
189 |
+
#: toc.php:826
|
190 |
+
msgid "Light blue"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: toc.php:831
|
194 |
+
msgid "White"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: toc.php:836
|
198 |
+
msgid "Black"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: toc.php:841
|
202 |
+
msgid "Transparent"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: toc.php:846
|
206 |
+
msgid "Custom"
|
207 |
+
msgstr "カスタム"
|
208 |
+
|
209 |
+
#: toc.php:856
|
210 |
+
msgid "Background"
|
211 |
+
msgstr "背景"
|
212 |
+
|
213 |
+
#: toc.php:860
|
214 |
+
msgid "Border"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: toc.php:864 toc.php:1784
|
218 |
+
msgid "Title"
|
219 |
+
msgstr "タイトル"
|
220 |
+
|
221 |
+
#: toc.php:868
|
222 |
+
msgid "Links"
|
223 |
+
msgstr "リンク"
|
224 |
+
|
225 |
+
#: toc.php:872
|
226 |
+
msgid "Links (hover)"
|
227 |
+
msgstr "リンク(マウスオーバー)"
|
228 |
+
|
229 |
+
#: toc.php:876
|
230 |
+
msgid "Links (visited)"
|
231 |
+
msgstr "リンク(閲覧済み)"
|
232 |
+
|
233 |
+
#: toc.php:883
|
234 |
+
msgid "Leaving the value as %s will inherit your theme's styles"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: toc.php:890
|
238 |
+
msgid "Advanced"
|
239 |
+
msgstr "上級者向け"
|
240 |
+
|
241 |
+
#: toc.php:890 toc.php:1027 toc.php:1144
|
242 |
+
msgid "show"
|
243 |
+
msgstr "表示"
|
244 |
+
|
245 |
+
#: toc.php:892
|
246 |
+
msgid "Power options"
|
247 |
+
msgstr "詳細設定"
|
248 |
+
|
249 |
+
#: toc.php:896
|
250 |
+
msgid "Lowercase"
|
251 |
+
msgstr "小文字"
|
252 |
+
|
253 |
+
#: toc.php:897
|
254 |
+
msgid "Ensure anchors are in lowercase"
|
255 |
+
msgstr "アンカーリンクに小文字を使用"
|
256 |
+
|
257 |
+
#: toc.php:900
|
258 |
+
msgid "Hyphenate"
|
259 |
+
msgstr "ハイフン"
|
260 |
+
|
261 |
+
#: toc.php:901
|
262 |
+
msgid "Use - rather than _ in anchors"
|
263 |
+
msgstr "アンカーリンクにハイフンを使用"
|
264 |
+
|
265 |
+
#: toc.php:904
|
266 |
+
msgid "Include homepage"
|
267 |
+
msgstr "トップページへの表示"
|
268 |
+
|
269 |
+
#: toc.php:905
|
270 |
+
msgid "Show the table of contents for qualifying items on the homepage"
|
271 |
+
msgstr "トップページに目次を表示"
|
272 |
+
|
273 |
+
#: toc.php:908
|
274 |
+
msgid "Exclude CSS file"
|
275 |
+
msgstr "CSS除外"
|
276 |
+
|
277 |
+
#: toc.php:909
|
278 |
+
msgid ""
|
279 |
+
"Prevent the loading of this plugin's CSS styles. When selected, the "
|
280 |
+
"appearance options from above will also be ignored."
|
281 |
+
msgstr "プラグインのCSSを読み込まない場合チェックを入れてください。"
|
282 |
+
|
283 |
+
#: toc.php:912
|
284 |
+
msgid "Preserve theme bullets"
|
285 |
+
msgstr "テーマのCSS"
|
286 |
+
|
287 |
+
#: toc.php:913
|
288 |
+
msgid ""
|
289 |
+
"If your theme includes background images for unordered list elements, enable "
|
290 |
+
"this to support them"
|
291 |
+
msgstr ""
|
292 |
+
"あなたのテーマでリストタグに背景が設定されている場合、対応するためにチェック"
|
293 |
+
"を入れてください。"
|
294 |
+
|
295 |
+
#: toc.php:916
|
296 |
+
msgid "Heading levels"
|
297 |
+
msgstr "見出しレベル"
|
298 |
+
|
299 |
+
#: toc.php:918
|
300 |
+
msgid ""
|
301 |
+
"Include the following heading levels. Deselecting a heading will exclude it."
|
302 |
+
msgstr ""
|
303 |
+
"チェックを入れた見出しは表示されます。チェックを外すと非表示になります。"
|
304 |
+
|
305 |
+
#: toc.php:924
|
306 |
+
msgid "heading "
|
307 |
+
msgstr "見出し"
|
308 |
+
|
309 |
+
#: toc.php:930
|
310 |
+
msgid "Exclude headings"
|
311 |
+
msgstr "除外する見出し"
|
312 |
+
|
313 |
+
#: toc.php:933
|
314 |
+
msgid ""
|
315 |
+
"Specify headings to be excluded from appearing in the table of contents. "
|
316 |
+
"Separate multiple headings with a pipe <code>|</code>. Use an asterisk "
|
317 |
+
"<code>*</code> as a wildcard to match other text. Note that this is not case "
|
318 |
+
"sensitive. Some examples:"
|
319 |
+
msgstr ""
|
320 |
+
"除外したい見出しがある場合含まれるテキストを設定してください。複数指定する場"
|
321 |
+
"合<code>|</code>で区切ります。ワイルドカード( <code>*</code>)も使えます。次"
|
322 |
+
"の例を参考にしてください。"
|
323 |
+
|
324 |
+
#: toc.php:935
|
325 |
+
msgid "<code>Fruit*</code> ignore headings starting with \"Fruit\""
|
326 |
+
msgstr "<code>果物*</code> “果物”からはじまる見出しを例外とする"
|
327 |
+
|
328 |
+
#: toc.php:936
|
329 |
+
msgid ""
|
330 |
+
"<code>*Fruit Diet*</code> ignore headings with \"Fruit Diet\" somewhere in "
|
331 |
+
"the heading"
|
332 |
+
msgstr ""
|
333 |
+
"<code>*果物ダイエット*</code> “果物ダイエット”が含まれる見出しを例外とする"
|
334 |
+
|
335 |
+
#: toc.php:937
|
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 |
+
"<code>リンゴの木|オレンジ|黄色いバナナ</code> “リンゴの木”、”オレンジ”、”黄色"
|
341 |
+
"いバナナ”が含まれる見出しを例外とする"
|
342 |
+
|
343 |
+
#: toc.php:942
|
344 |
+
msgid "Smooth scroll top offset"
|
345 |
+
msgstr "スムーススクロール先の余白"
|
346 |
+
|
347 |
+
#: toc.php:945
|
348 |
+
msgid ""
|
349 |
+
"If you have a consistent menu across the top of your site, you can adjust "
|
350 |
+
"the top offset to stop the headings from appearing underneath the top menu. "
|
351 |
+
"A setting of 30 accommodates the WordPress admin bar. This setting appears "
|
352 |
+
"after you have enabled smooth scrolling from above."
|
353 |
+
msgstr ""
|
354 |
+
"あなたのサイトに画面固定ヘッダーがある場合、スムースクロールの目的地がカブら"
|
355 |
+
"ないように上部オフセットを調整することができます。 30の設定は、 WordPressの管"
|
356 |
+
"理バーに対応しています。上のほうの設定でスムーズスクロールを有効にした後にこ"
|
357 |
+
"の設定が表示されます。"
|
358 |
+
|
359 |
+
#: toc.php:949
|
360 |
+
msgid "Restrict path"
|
361 |
+
msgstr "パス限定"
|
362 |
+
|
363 |
+
#: toc.php:952
|
364 |
+
msgid ""
|
365 |
+
"Restrict generation of the table of contents to pages that match the "
|
366 |
+
"required path. This path is from the root of your site and always begins "
|
367 |
+
"with a forward slash."
|
368 |
+
msgstr ""
|
369 |
+
"特定のページのみで表示させたい場合、カンマ(,)区切りでスラッシュ(/)からは"
|
370 |
+
"じまるパスを設定してください。"
|
371 |
+
|
372 |
+
#: toc.php:955
|
373 |
+
msgid "Eg: /wiki/, /corporate/annual-reports/"
|
374 |
+
msgstr "例) /wiki/, /corporate/annual-reports/"
|
375 |
+
|
376 |
+
#: toc.php:959
|
377 |
+
msgid "Default anchor prefix"
|
378 |
+
msgstr "アンカーリンクの接続詞"
|
379 |
+
|
380 |
+
#: toc.php:962
|
381 |
+
msgid ""
|
382 |
+
"Anchor targets are restricted to alphanumeric characters as per HTML "
|
383 |
+
"specification (see readme for more detail). The default anchor prefix will "
|
384 |
+
"be used when no characters qualify. When left blank, a number will be used "
|
385 |
+
"instead."
|
386 |
+
msgstr ""
|
387 |
+
"アンカーターゲットはHTML仕様(詳細についてはREADMEを参照)に従って英数字に制"
|
388 |
+
"限されています。何の文字が適格と、デフォルトのアンカーの接頭辞が使用されま"
|
389 |
+
"す。空白のままにすると、番号が代わりに使用されます。"
|
390 |
+
|
391 |
+
#: toc.php:963
|
392 |
+
msgid ""
|
393 |
+
"This option normally applies to content written in character sets other than "
|
394 |
+
"ASCII."
|
395 |
+
msgstr ""
|
396 |
+
"このオプションは通常の文字で書かれた内容は、ASCII以外の設定に適用されます。"
|
397 |
+
|
398 |
+
#: toc.php:966
|
399 |
+
msgid "Eg: i, toc_index, index, _"
|
400 |
+
msgstr "例)i, toc_index, index, _"
|
401 |
+
|
402 |
+
#: toc.php:974
|
403 |
+
msgid "Usage"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: toc.php:975
|
407 |
+
msgid ""
|
408 |
+
"If you would like to fully customise the position of the table of contents, "
|
409 |
+
"you can use the %s shortcode by placing it at the desired position of your "
|
410 |
+
"post, page or custom post type. This method allows you to generate the table "
|
411 |
+
"of contents despite having auto insertion disabled for its content type. "
|
412 |
+
"Please visit the help tab for further information about this shortcode."
|
413 |
+
msgstr ""
|
414 |
+
"あなたは完全に内容のテーブルの位置をカスタマイズしたい場合は、あなたの投稿、"
|
415 |
+
"ページまたはカスタムポストタイプの所望の位置にそれを配置することによって、%s"
|
416 |
+
"ショートコードを使用することができます。この方法では、そのコンテンツタイプに"
|
417 |
+
"対して無効に自動挿入を持つにもかかわらず、コンテンツのテーブルを生成すること"
|
418 |
+
"ができます。このショートの詳細は、 [ヘルプ]タブをご覧ください。"
|
419 |
+
|
420 |
+
#: toc.php:983
|
421 |
+
msgid ""
|
422 |
+
"At its simplest, placing %s into a page will automatically create a sitemap "
|
423 |
+
"of all pages and categories. This also works in a text widget."
|
424 |
+
msgstr ""
|
425 |
+
"簡単に言うと、ページに%sのを配置すると、自動的にすべてのページとカテゴリのサ"
|
426 |
+
"イトマップを作成します。また、これはテキストウィジェットで動作します。"
|
427 |
+
|
428 |
+
#: toc.php:987
|
429 |
+
msgid "Show page listing"
|
430 |
+
msgstr "固定ページリストを表示"
|
431 |
+
|
432 |
+
#: toc.php:991
|
433 |
+
msgid "Show category listing"
|
434 |
+
msgstr "カテゴリリストを表示"
|
435 |
+
|
436 |
+
#: toc.php:995
|
437 |
+
msgid "Heading type"
|
438 |
+
msgstr "見出し"
|
439 |
+
|
440 |
+
#: toc.php:998
|
441 |
+
msgid "Use"
|
442 |
+
msgstr "見出しは"
|
443 |
+
|
444 |
+
#: toc.php:1009
|
445 |
+
msgid "to print out the titles"
|
446 |
+
msgstr "としてマークアップする"
|
447 |
+
|
448 |
+
#: toc.php:1013
|
449 |
+
msgid "Pages label"
|
450 |
+
msgstr "固定ページのラベル"
|
451 |
+
|
452 |
+
#: toc.php:1015
|
453 |
+
msgid "Eg: Pages, Page List"
|
454 |
+
msgstr "例)Pages、ページ、固定ページ"
|
455 |
+
|
456 |
+
#: toc.php:1019
|
457 |
+
msgid "Categories label"
|
458 |
+
msgstr "カテゴリページのラベル"
|
459 |
+
|
460 |
+
#: toc.php:1021
|
461 |
+
msgid "Eg: Categories, Category List"
|
462 |
+
msgstr "例)Categories、カテゴリー一覧"
|
463 |
+
|
464 |
+
#: toc.php:1027
|
465 |
+
msgid "Advanced usage"
|
466 |
+
msgstr "上級者向け"
|
467 |
+
|
468 |
+
#: toc.php:1029
|
469 |
+
msgid ""
|
470 |
+
"lets you print out a listing of only pages. Similarly %s can be used to "
|
471 |
+
"print out a category listing. They both can accept a number of attributes so "
|
472 |
+
"visit the help tab for more information."
|
473 |
+
msgstr ""
|
474 |
+
"固定ページのみのサイトマップを生成できます。同様に%sでカテゴリページのみのサ"
|
475 |
+
"イトマップを生成できます。また、引数を与えて細かい設定ができます。"
|
476 |
+
|
477 |
+
#: toc.php:1030
|
478 |
+
msgid "Examples"
|
479 |
+
msgstr "例"
|
480 |
+
|
481 |
+
#: toc.php:1032
|
482 |
+
msgid "hides the heading from a category listing"
|
483 |
+
msgstr "ラベルを非表示にする"
|
484 |
+
|
485 |
+
#: toc.php:1033
|
486 |
+
msgid ""
|
487 |
+
"Uses h6 to display %s on a page listing excluding pages with IDs 1 and 15"
|
488 |
+
msgstr "h6でマークアップし、ID1と15のページを除外。ラベルを%sとする"
|
489 |
+
|
490 |
+
#: toc.php:1041
|
491 |
+
msgid "Where's my table of contents?"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: toc.php:1042
|
495 |
+
msgid ""
|
496 |
+
"If you're reading this, then chances are you have successfully installed and "
|
497 |
+
"enabled the plugin and you're just wondering why the index isn't appearing "
|
498 |
+
"right? Try the following:"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: toc.php:1044
|
502 |
+
msgid ""
|
503 |
+
"In most cases, the post, page or custom post type has less than the minimum "
|
504 |
+
"number of headings. By default, this is set to four so make sure you have at "
|
505 |
+
"least four headings within your content. If you want to change this value, "
|
506 |
+
"you can find it under 'Main Options' > 'Show when'."
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: toc.php:1045
|
510 |
+
msgid ""
|
511 |
+
"Is auto insertion enabled for your content type? By default, only pages are "
|
512 |
+
"enabled."
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: toc.php:1046
|
516 |
+
msgid ""
|
517 |
+
"Have you got <code>[no_toc]</code> somewhere within the content? This will "
|
518 |
+
"disable the index for the current post, page or custom post type."
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: toc.php:1047
|
522 |
+
msgid ""
|
523 |
+
"If you are using the TOC+ widget, check if you have the <em>\"Show the table "
|
524 |
+
"of contents only in the sidebar\"</em> enabled as this will limit its "
|
525 |
+
"display to only the sidebar. You can check by going into Appearance > "
|
526 |
+
"Widgets."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: toc.php:1048
|
530 |
+
msgid ""
|
531 |
+
"You may have restricted generation to a URL path match. The setting can be "
|
532 |
+
"found in the advanced section under Main Options."
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: toc.php:1051
|
536 |
+
msgid "How do I stop the table of contents from appearing on a single page?"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: toc.php:1052
|
540 |
+
msgid ""
|
541 |
+
"Place the following <code>[no_toc]</code> anywhere on the page to suppress "
|
542 |
+
"the table of contents. This is known as a shortcode and works for posts, "
|
543 |
+
"pages and custom post types that make use of the_content()"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: toc.php:1054
|
547 |
+
msgid ""
|
548 |
+
"I've set wrapping to left or right but the headings don't wrap around the "
|
549 |
+
"table of contents"
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: toc.php:1055
|
553 |
+
msgid ""
|
554 |
+
"This normally occurs when there is a CSS clear directive in or around the "
|
555 |
+
"heading originating from the theme (Twenty Eleven and Twenty Twelve are two "
|
556 |
+
"themes which do this). This directive tells the user agent to reset the "
|
557 |
+
"previous wrapping specifications."
|
558 |
+
msgstr ""
|
559 |
+
|
560 |
+
#: toc.php:1056
|
561 |
+
msgid ""
|
562 |
+
"You can adjust your theme's CSS or try moving the table of contents position "
|
563 |
+
"to the top of the page. If you didn't build your theme, I'd highly suggest "
|
564 |
+
"you try the %s if you wish to make CSS changes."
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: toc.php:1059
|
568 |
+
msgid ""
|
569 |
+
"Try adding the following CSS to allow the wrapping to occur around the table "
|
570 |
+
"of contents:"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: toc.php:1064
|
574 |
+
msgid "How do I include the name of the page in the table of contents title?"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: toc.php:1065
|
578 |
+
msgid ""
|
579 |
+
"As the title of the page changes depending on the page you're viewing, you "
|
580 |
+
"can use the following special variable to automatically insert the title of "
|
581 |
+
"the page into the table of contents heading:"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: toc.php:1067
|
585 |
+
msgid "You can use it as is or place text either side of the variable."
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: toc.php:1068
|
589 |
+
msgid ""
|
590 |
+
"As an example: if your page is named <em>Great Expectations</em> and your "
|
591 |
+
"table of contents title is set to <em>Contents for %PAGE_NAME%</em>, the "
|
592 |
+
"final title would read <em>Contents for Great Expectations</em>"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: toc.php:1070
|
596 |
+
msgid "The sitemap uses a strange font dissimilar to the rest of the site"
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: toc.php:1071
|
600 |
+
msgid ""
|
601 |
+
"No extra styles are created for the sitemap, instead it inherits any styles "
|
602 |
+
"you used when adding the shortcode. If you copy and pasted, you probably "
|
603 |
+
"also copied the 'code' tags surrounding it so remove them if this is the "
|
604 |
+
"case."
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: toc.php:1072
|
608 |
+
msgid ""
|
609 |
+
"In most cases, try to have the shortcode on its own line with nothing before "
|
610 |
+
"or after the square brackets."
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: toc.php:1074
|
614 |
+
msgid "What were those shortcodes and attributes again?"
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: toc.php:1075
|
618 |
+
msgid ""
|
619 |
+
"When attributes are left out for the shortcodes below, they will fallback to "
|
620 |
+
"the settings you defined under Settings > TOC+."
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: toc.php:1079
|
624 |
+
msgid "Shortcode"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: toc.php:1080
|
628 |
+
msgid "Description"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: toc.php:1081
|
632 |
+
msgid "Attributes"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: toc.php:1087
|
636 |
+
msgid ""
|
637 |
+
"Lets you generate the table of contents at the preferred position. Also "
|
638 |
+
"useful for sites that only require a TOC on a small handful of pages."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: toc.php:1090
|
642 |
+
msgid "text, title of the table of contents"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: toc.php:1091
|
646 |
+
msgid "true/false, shows or hides the title"
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: toc.php:1092
|
650 |
+
msgid "text, either \"left\" or \"right\""
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: toc.php:1093
|
654 |
+
msgid ""
|
655 |
+
"numbers, this lets you select the heading levels you want included in the "
|
656 |
+
"table of contents. Separate multiple levels with a comma. Example: include "
|
657 |
+
"headings 3, 4 and 5 but exclude the others with"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: toc.php:1094
|
661 |
+
msgid ""
|
662 |
+
"text, enter headings to be excluded. Separate multiple headings with a pipe "
|
663 |
+
"<code>|</code>. Use an asterisk <code>*</code> as a wildcard to match other "
|
664 |
+
"text. You could also use regular expressions for more advanced matching."
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: toc.php:1100
|
668 |
+
msgid ""
|
669 |
+
"Allows you to disable the table of contents for the current post, page, or "
|
670 |
+
"custom post type."
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: toc.php:1105
|
674 |
+
msgid ""
|
675 |
+
"Produces a listing of all pages and categories for your site. You can use "
|
676 |
+
"this on any post, page or even in a text widget."
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: toc.php:1110
|
680 |
+
msgid "Lets you print out a listing of only pages."
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: toc.php:1113
|
684 |
+
msgid "number between 1 and 6, defines which html heading to use"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: toc.php:1114
|
688 |
+
msgid "text, title of the list"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: toc.php:1115
|
692 |
+
msgid "true/false, shows or hides the list heading"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: toc.php:1116
|
696 |
+
msgid "IDs of the pages or categories you wish to exclude"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: toc.php:1117
|
700 |
+
msgid ""
|
701 |
+
"ID of the page or category you wish to exclude including its all descendants"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: toc.php:1123
|
705 |
+
msgid "Similar to [sitemap_pages] but for categories."
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: toc.php:1128
|
709 |
+
msgid ""
|
710 |
+
"This lets you print out an index of all published posts on your site. By "
|
711 |
+
"default, posts are listed in alphabetical order grouped by their first "
|
712 |
+
"letters. There are CSS classes for each section, letter and list allowing "
|
713 |
+
"you to customise the appearance."
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: toc.php:1131
|
717 |
+
msgid "text, either ASC or DESC"
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
#: toc.php:1132
|
721 |
+
msgid ""
|
722 |
+
"text, popular options include \"title\", \"date\", \"ID\", and \"rand\". See "
|
723 |
+
"%1$sWP_Query%2$s for a list."
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: toc.php:1133
|
727 |
+
msgid ""
|
728 |
+
"true/false (defaults to true), does not separate the lists by first letter "
|
729 |
+
"when set to false."
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: toc.php:1141
|
733 |
+
msgid "I have another question..."
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: toc.php:1142
|
737 |
+
msgid ""
|
738 |
+
"Visit the %1$splugin homepage%2$s to ask your question - who knows, maybe "
|
739 |
+
"your question has already been answered. I'd really like to hear your "
|
740 |
+
"suggestions if you have any."
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: toc.php:1144
|
744 |
+
msgid "For developers"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: toc.php:1146
|
748 |
+
msgid "How do I customise my anchors?"
|
749 |
+
msgstr ""
|
750 |
+
|
751 |
+
#: toc.php:1147
|
752 |
+
msgid ""
|
753 |
+
"If you're still not happy with the anchors, you can modify them to suit your "
|
754 |
+
"needs through a custom function hooked into the <code>toc_url_anchor_target</"
|
755 |
+
"code> filter. As an example, place the below code snippet into your "
|
756 |
+
"functions.php file to convert all anchors to uppercase."
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: toc.php:1157
|
760 |
+
msgid ""
|
761 |
+
"Returns a HTML formatted string of the table of contents without the "
|
762 |
+
"surrounding UL or OL tags to allow the theme editor to supply their own ID "
|
763 |
+
"and/or classes to the outer list."
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: toc.php:1158
|
767 |
+
msgid "Both parameters are optional:"
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#: toc.php:1162
|
771 |
+
msgid ""
|
772 |
+
"is the entire content with headings. If blank, will default to the current "
|
773 |
+
"content found in $post (eg within \"the loop\")."
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
#: toc.php:1165
|
777 |
+
msgid ""
|
778 |
+
"is the URL to prefix the anchor with. If a string was provided, it will be "
|
779 |
+
"used as is. If set to \"true\" then will try to obtain the permalink from "
|
780 |
+
"the $post object."
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: toc.php:1167
|
784 |
+
msgid "These examples assume you are within \"the loop\":"
|
785 |
+
msgstr ""
|
786 |
+
|
787 |
+
#: toc.php:1169
|
788 |
+
msgid "Obtain the index for the current page"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: toc.php:1172
|
792 |
+
msgid "Create a listing of all children and their headings"
|
793 |
+
msgstr ""
|
794 |
+
|
795 |
+
#: toc.php:1197
|
796 |
+
msgid "Update Options"
|
797 |
+
msgstr "更新"
|
798 |
+
|
799 |
+
#: toc.php:1689
|
800 |
+
msgid "Display the table of contents in the sidebar with this widget"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: toc.php:1790
|
804 |
+
msgid "Show the table of contents only in the sidebar"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: toc.php:1794
|
808 |
+
msgid "For the following content types:"
|
809 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: conjur3r
|
3 |
Tags: table of contents, indexes, toc, sitemap, cms, options, list, page listing, category listing
|
4 |
Requires at least: 3.2
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag:
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -30,6 +30,9 @@ Custom post types are supported, however, auto insertion works only when the_con
|
|
30 |
* Dutch - [Renee](http://101themes.com/)
|
31 |
* French - Jean-Michel Duriez
|
32 |
* German - [Ben](http://blog.bmarwell.de/)
|
|
|
|
|
|
|
33 |
* Polish - [Jakub](http://notatki.4use.pl/)
|
34 |
* Simplified Chinese - Jason
|
35 |
* Slovak - Boris Gereg
|
@@ -112,6 +115,19 @@ I will never ask for any form of reward or compensation. Helping others achieve
|
|
112 |
|
113 |
|
114 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
|
116 |
= 1507 =
|
117 |
* Released: 5 July 2015
|
2 |
Contributors: conjur3r
|
3 |
Tags: table of contents, indexes, toc, sitemap, cms, options, list, page listing, category listing
|
4 |
Requires at least: 3.2
|
5 |
+
Tested up to: 4.3
|
6 |
+
Stable tag: 1509
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
30 |
* Dutch - [Renee](http://101themes.com/)
|
31 |
* French - Jean-Michel Duriez
|
32 |
* German - [Ben](http://blog.bmarwell.de/)
|
33 |
+
* Greek - [Dimitrios Kaisaris](http://www.foodblostarter.com/)
|
34 |
+
* Hebrew - [Ahrale](http://atar4u.com/)
|
35 |
+
* Japanese - [シカマル](http://ja.gravatar.com/deerboy01)
|
36 |
* Polish - [Jakub](http://notatki.4use.pl/)
|
37 |
* Simplified Chinese - Jason
|
38 |
* Slovak - Boris Gereg
|
115 |
|
116 |
|
117 |
== Changelog ==
|
118 |
+
= 1509 =
|
119 |
+
* Released: 4 September 2015
|
120 |
+
* Added Hebrew translation thanks to [Ahrale](http://atar4u.com/)
|
121 |
+
* Added Japaense translation thanks to [シカマル](http://ja.gravatar.com/deerboy01)
|
122 |
+
* Added Greek translation thanks to [Dimitrios Kaisaris](http://www.foodblostarter.com/)
|
123 |
+
* Updated jQuery Smooth Scroll 1.4.10 to 1.5.5
|
124 |
+
* Supply both minified and unminified CSS and JS files, use minified versions.
|
125 |
+
* Convert accented characters to ASCII in anchors.
|
126 |
+
* Bump tested WordPress version to 4.3
|
127 |
+
* Fixed: PHP notice introduced in WP 4.3
|
128 |
+
* Fixed: javascript error with $.browser testing for Internet Explorer 7.
|
129 |
+
* Plugin has moved to [GitHub](https://github.com/zedzedzed/table-of-contents-plus/) for better collaboration.
|
130 |
+
* Help needed: preg_match_all failing with bad UTF8 characters producing no TOC. If you can help, please participate in this [issue](https://github.com/zedzedzed/table-of-contents-plus/issues/105).
|
131 |
|
132 |
= 1507 =
|
133 |
* Released: 5 July 2015
|
screen.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
#toc_container li,#toc_container ul{margin:0;padding:0}#toc_container.no_bullets li,#toc_container.no_bullets ul,#toc_container.no_bullets ul li,.toc_widget_list.no_bullets,.toc_widget_list.no_bullets li{background:0 0;list-style-type:none;list-style:none}#toc_container.have_bullets li{padding-left:12px}#toc_container ul ul{margin-left:1.5em}#toc_container{background:#f9f9f9;border:1px solid #aaa;padding:10px;margin-bottom:1em;width:auto;display:table;font-size:95%}#toc_container.toc_light_blue{background:#edf6ff}#toc_container.toc_white{background:#fff}#toc_container.toc_black{background:#000}#toc_container.toc_transparent{background:none transparent}#toc_container p.toc_title{text-align:center;font-weight:700;margin:0;padding:0}#toc_container.toc_black p.toc_title{color:#aaa}#toc_container span.toc_toggle{font-weight:400;font-size:90%}#toc_container p.toc_title+ul.toc_list{margin-top:1em}.toc_wrap_left{float:left;margin-right:10px}.toc_wrap_right{float:right;margin-left:10px}#toc_container a{text-decoration:none;text-shadow:none}#toc_container a:hover{text-decoration:underline}.toc_sitemap_posts_letter{font-size:1.5em;font-style:italic}
|
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:
|
9 |
License: GPL2
|
10 |
*/
|
11 |
|
@@ -39,7 +39,7 @@ FOR CONSIDERATION:
|
|
39 |
- highlight target css
|
40 |
*/
|
41 |
|
42 |
-
define( 'TOC_VERSION', '
|
43 |
define( 'TOC_POSITION_BEFORE_FIRST_HEADING', 1 );
|
44 |
define( 'TOC_POSITION_TOP', 2 );
|
45 |
define( 'TOC_POSITION_BOTTOM', 3 );
|
@@ -431,11 +431,9 @@ if ( !class_exists( 'toc' ) ) :
|
|
431 |
{
|
432 |
$js_vars = array();
|
433 |
|
434 |
-
|
435 |
// register our CSS and scripts
|
436 |
-
wp_register_style( 'toc-screen', $this->path . '/screen.css', array(), TOC_VERSION );
|
437 |
-
wp_register_script( 'toc-front', $this->path . '/front.js', array('jquery'), TOC_VERSION, true );
|
438 |
-
|
439 |
|
440 |
// enqueue them!
|
441 |
if ( !$this->options['exclude_css'] ) wp_enqueue_style("toc-screen");
|
@@ -1115,6 +1113,9 @@ if ( !class_exists( 'toc' ) ) :
|
|
1115 |
|
1116 |
if ( $title ) {
|
1117 |
$return = trim( strip_tags($title) );
|
|
|
|
|
|
|
1118 |
|
1119 |
// replace newlines with spaces (eg when headings are split over multiple lines)
|
1120 |
$return = str_replace( array("\r", "\n", "\n\r", "\r\n"), ' ', $return );
|
@@ -1567,7 +1568,7 @@ if ( !class_exists( 'toc_widget' ) ) :
|
|
1567 |
'height' => 350,
|
1568 |
'id_base' => 'toc-widget'
|
1569 |
);
|
1570 |
-
|
1571 |
}
|
1572 |
|
1573 |
|
@@ -1589,7 +1590,7 @@ if ( !class_exists( 'toc_widget' ) ) :
|
|
1589 |
extract( $args );
|
1590 |
|
1591 |
$items = $tic->extract_headings( $find, $replace, wptexturize($post->post_content) );
|
1592 |
-
$title = apply_filters('widget_title', $instance['title']
|
1593 |
if ( strpos($title, '%PAGE_TITLE%') !== false ) $title = str_replace( '%PAGE_TITLE%', get_the_title(), $title );
|
1594 |
if ( strpos($title, '%PAGE_NAME%') !== false ) $title = str_replace( '%PAGE_NAME%', get_the_title(), $title );
|
1595 |
$hide_inline = $toc_options['show_toc_in_widget_only'];
|
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: 1509
|
9 |
License: GPL2
|
10 |
*/
|
11 |
|
39 |
- highlight target css
|
40 |
*/
|
41 |
|
42 |
+
define( 'TOC_VERSION', '1509' );
|
43 |
define( 'TOC_POSITION_BEFORE_FIRST_HEADING', 1 );
|
44 |
define( 'TOC_POSITION_TOP', 2 );
|
45 |
define( 'TOC_POSITION_BOTTOM', 3 );
|
431 |
{
|
432 |
$js_vars = array();
|
433 |
|
|
|
434 |
// register our CSS and scripts
|
435 |
+
wp_register_style( 'toc-screen', $this->path . '/screen.min.css', array(), TOC_VERSION );
|
436 |
+
wp_register_script( 'toc-front', $this->path . '/front.min.js', array('jquery'), TOC_VERSION, true );
|
|
|
437 |
|
438 |
// enqueue them!
|
439 |
if ( !$this->options['exclude_css'] ) wp_enqueue_style("toc-screen");
|
1113 |
|
1114 |
if ( $title ) {
|
1115 |
$return = trim( strip_tags($title) );
|
1116 |
+
|
1117 |
+
// convert accented characters to ASCII
|
1118 |
+
$return = remove_accents( $return );
|
1119 |
|
1120 |
// replace newlines with spaces (eg when headings are split over multiple lines)
|
1121 |
$return = str_replace( array("\r", "\n", "\n\r", "\r\n"), ' ', $return );
|
1568 |
'height' => 350,
|
1569 |
'id_base' => 'toc-widget'
|
1570 |
);
|
1571 |
+
parent::__construct( 'toc-widget', 'TOC+', $widget_options, $control_options );
|
1572 |
}
|
1573 |
|
1574 |
|
1590 |
extract( $args );
|
1591 |
|
1592 |
$items = $tic->extract_headings( $find, $replace, wptexturize($post->post_content) );
|
1593 |
+
$title = ( array_key_exists('title', $instance) ) ? apply_filters('widget_title', $instance['title']) : '';
|
1594 |
if ( strpos($title, '%PAGE_TITLE%') !== false ) $title = str_replace( '%PAGE_TITLE%', get_the_title(), $title );
|
1595 |
if ( strpos($title, '%PAGE_NAME%') !== false ) $title = str_replace( '%PAGE_NAME%', get_the_title(), $title );
|
1596 |
$hide_inline = $toc_options['show_toc_in_widget_only'];
|