Version Description
Upgrade normally via your Wordpress admin -> Plugins panel.
Download this release
Release Info
Developer | gn_themes |
Plugin | Shortcodes Ultimate |
Version | 3.4.0 |
Comparing to | |
See all releases |
Code changes from version 3.3.1 to 3.4.0
- css/admin.css +12 -0
- css/nivo-slider.css +89 -0
- css/style.css +69 -2
- images/demo/bloginfo.png +0 -0
- images/demo/box.png +0 -0
- images/demo/button.png +0 -0
- images/demo/column.png +0 -0
- images/demo/custom_gallery.png +0 -0
- images/demo/divider.png +0 -0
- images/demo/document.png +0 -0
- images/demo/fancy_link.png +0 -0
- images/demo/feed.png +0 -0
- images/demo/frame.png +0 -0
- images/demo/gmap.png +0 -0
- images/demo/guests.png +0 -0
- images/demo/heading.png +0 -0
- images/demo/highlight.png +0 -0
- images/demo/jcarousel.png +0 -0
- images/demo/list.png +0 -0
- images/demo/media.png +0 -0
- images/demo/members.png +0 -0
- images/demo/menu.png +0 -0
- images/demo/nivo_slider.png +0 -0
- images/demo/note.png +0 -0
- images/demo/permalink.png +0 -0
- images/demo/private.png +0 -0
- images/demo/pullquote.png +0 -0
- images/demo/quote.png +0 -0
- images/demo/service.png +0 -0
- images/demo/siblings.png +0 -0
- images/demo/spacer.png +0 -0
- images/demo/spoiler.png +0 -0
- images/demo/subpages.png +0 -0
- images/demo/tab.png +0 -0
- images/demo/table.png +0 -0
- images/demo/tabs.png +0 -0
- images/demo/tweets.png +0 -0
- images/dropcap-style-1.png +0 -0
- images/dropcap-style-2.png +0 -0
- images/dropcap-style-3.png +0 -0
- images/generator/colorpicker.png +0 -0
- images/generator/settings.png +0 -0
- images/generator/support.png +0 -0
- images/jcarousel/arrows.png +0 -0
- images/nivo-slider/arrows.png +0 -0
- images/nivo-slider/bullets.png +0 -0
- images/nivo-slider/loading.gif +0 -0
- images/social/facebook_16.png +0 -0
- images/social/twitter_16.png +0 -0
- js/jquery.nivo.slider.pack.js +67 -0
- languages/shortcodes-ultimate-be_BY.mo +0 -0
- languages/shortcodes-ultimate-be_BY.po +872 -0
- languages/shortcodes-ultimate-ru_RU.mo +0 -0
- languages/shortcodes-ultimate-ru_RU.po +191 -173
- lib/admin.php +35 -12
- lib/available.php +96 -0
- lib/shortcodes.php +67 -0
- readme.txt +17 -16
- shortcodes-ultimate.php +3 -3
css/admin.css
CHANGED
@@ -23,6 +23,18 @@
|
|
23 |
float: left;
|
24 |
}
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
/* New shortcodes and options highlight */
|
27 |
.su-new-shortcode td {
|
28 |
background: #ffd;
|
23 |
float: left;
|
24 |
}
|
25 |
|
26 |
+
/* Share */
|
27 |
+
#su-share {
|
28 |
+
margin: 15px -15px -15px -15px;
|
29 |
+
padding: 15px;
|
30 |
+
border-top: 1px solid #DFDFDF;
|
31 |
+
background: #f7f7f7;
|
32 |
+
}
|
33 |
+
#su-share iframe {
|
34 |
+
border: none;
|
35 |
+
overflow: hidden;
|
36 |
+
}
|
37 |
+
|
38 |
/* New shortcodes and options highlight */
|
39 |
.su-new-shortcode td {
|
40 |
background: #ffd;
|
css/nivo-slider.css
ADDED
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
* jQuery Nivo Slider v2.5.1
|
3 |
+
* http://nivo.dev7studios.com
|
4 |
+
*
|
5 |
+
* Copyright 2011, Gilbert Pellegrom
|
6 |
+
* Free to use and abuse under the MIT license.
|
7 |
+
* http://www.opensource.org/licenses/mit-license.php
|
8 |
+
*
|
9 |
+
* March 2010
|
10 |
+
*/
|
11 |
+
|
12 |
+
|
13 |
+
/* The Nivo Slider styles */
|
14 |
+
.nivoSlider {
|
15 |
+
position:relative;
|
16 |
+
}
|
17 |
+
.nivoSlider img {
|
18 |
+
position:absolute;
|
19 |
+
top:0px;
|
20 |
+
left:0px;
|
21 |
+
}
|
22 |
+
/* If an image is wrapped in a link */
|
23 |
+
.nivoSlider a.nivo-imageLink {
|
24 |
+
position:absolute;
|
25 |
+
top:0px;
|
26 |
+
left:0px;
|
27 |
+
width:100%;
|
28 |
+
height:100%;
|
29 |
+
border:0;
|
30 |
+
padding:0;
|
31 |
+
margin:0;
|
32 |
+
z-index:6;
|
33 |
+
display:none;
|
34 |
+
}
|
35 |
+
/* The slices and boxes in the Slider */
|
36 |
+
.nivo-slice {
|
37 |
+
display:block;
|
38 |
+
position:absolute;
|
39 |
+
z-index:5;
|
40 |
+
height:100%;
|
41 |
+
}
|
42 |
+
.nivo-box {
|
43 |
+
display:block;
|
44 |
+
position:absolute;
|
45 |
+
z-index:5;
|
46 |
+
}
|
47 |
+
/* Caption styles */
|
48 |
+
.nivo-caption {
|
49 |
+
position:absolute;
|
50 |
+
left:0px;
|
51 |
+
bottom:0px;
|
52 |
+
background:#000;
|
53 |
+
color:#fff;
|
54 |
+
opacity:0.8; /* Overridden by captionOpacity setting */
|
55 |
+
width:100%;
|
56 |
+
z-index:8;
|
57 |
+
}
|
58 |
+
.nivo-caption p {
|
59 |
+
padding:5px;
|
60 |
+
margin:0;
|
61 |
+
}
|
62 |
+
.nivo-caption a {
|
63 |
+
display:inline !important;
|
64 |
+
}
|
65 |
+
.nivo-html-caption {
|
66 |
+
display:none;
|
67 |
+
}
|
68 |
+
/* Direction nav styles (e.g. Next & Prev) */
|
69 |
+
.nivo-directionNav a {
|
70 |
+
position:absolute;
|
71 |
+
top:45%;
|
72 |
+
z-index:9;
|
73 |
+
cursor:pointer;
|
74 |
+
}
|
75 |
+
.nivo-prevNav {
|
76 |
+
left:0px;
|
77 |
+
}
|
78 |
+
.nivo-nextNav {
|
79 |
+
right:0px;
|
80 |
+
}
|
81 |
+
/* Control nav styles (e.g. 1,2,3...) */
|
82 |
+
.nivo-controlNav a {
|
83 |
+
position:relative;
|
84 |
+
z-index:9;
|
85 |
+
cursor:pointer;
|
86 |
+
}
|
87 |
+
.nivo-controlNav a.active {
|
88 |
+
font-weight:bold;
|
89 |
+
}
|
css/style.css
CHANGED
@@ -9,9 +9,9 @@
|
|
9 |
/* Spacer */
|
10 |
.su-spacer {
|
11 |
display: block;
|
12 |
-
height:
|
13 |
-
line-height: 0px;
|
14 |
clear: both;
|
|
|
15 |
}
|
16 |
.su-spacer-5 { height: 5px }
|
17 |
.su-spacer-10 { height: 10px }
|
@@ -272,6 +272,9 @@
|
|
272 |
.su-list-style-settings li { background: 0 50% url(../images/list-style-settings.png) no-repeat !important }
|
273 |
.su-list-style-twitter li { background: 0 50% url(../images/list-style-twitter.png) no-repeat !important }
|
274 |
|
|
|
|
|
|
|
275 |
/* Box */
|
276 |
.su-box {
|
277 |
margin: 0 0 1.5em 0;
|
@@ -563,4 +566,68 @@
|
|
563 |
margin: 0;
|
564 |
padding: 0;
|
565 |
border: 2px solid #ccc;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
566 |
}
|
9 |
/* Spacer */
|
10 |
.su-spacer {
|
11 |
display: block;
|
12 |
+
height: 0;
|
|
|
13 |
clear: both;
|
14 |
+
overflow: hidden;
|
15 |
}
|
16 |
.su-spacer-5 { height: 5px }
|
17 |
.su-spacer-10 { height: 10px }
|
272 |
.su-list-style-settings li { background: 0 50% url(../images/list-style-settings.png) no-repeat !important }
|
273 |
.su-list-style-twitter li { background: 0 50% url(../images/list-style-twitter.png) no-repeat !important }
|
274 |
|
275 |
+
.su-list-style-check li.x { background: 0 50% url(../images/list-style-cross.png) no-repeat !important }
|
276 |
+
.su-list-style-cross li.v { background: 0 50% url(../images/list-style-check.png) no-repeat !important }
|
277 |
+
|
278 |
/* Box */
|
279 |
.su-box {
|
280 |
margin: 0 0 1.5em 0;
|
566 |
margin: 0;
|
567 |
padding: 0;
|
568 |
border: 2px solid #ccc;
|
569 |
+
}
|
570 |
+
|
571 |
+
/* Pricing & plan */
|
572 |
+
.su-pricing {
|
573 |
+
margin: 0 0 1.5em 0;
|
574 |
+
}
|
575 |
+
.su-plan {
|
576 |
+
float: left;
|
577 |
+
}
|
578 |
+
|
579 |
+
.su-pricing-style-1 {
|
580 |
+
text-align: center;
|
581 |
+
}
|
582 |
+
.su-pricing-style-1 ul {
|
583 |
+
margin: 0;
|
584 |
+
padding: 0;
|
585 |
+
}
|
586 |
+
.su-pricing-style-1 li {
|
587 |
+
list-style-type: none;
|
588 |
+
display: block;
|
589 |
+
}
|
590 |
+
|
591 |
+
/* Dropcap */
|
592 |
+
.su-dropcap {
|
593 |
+
float: left;
|
594 |
+
display: inline-block;
|
595 |
+
width: 2em;
|
596 |
+
height: 2em;
|
597 |
+
margin: 0.2em 0.5em 0.2em 0;
|
598 |
+
line-height: 2em;
|
599 |
+
text-align: center;
|
600 |
+
overflow: hidden;
|
601 |
+
text-transform: uppercase;
|
602 |
+
}
|
603 |
+
|
604 |
+
.su-dropcap-style-1 {
|
605 |
+
background: #333 0 -20px url(../images/dropcap-style-1.png) repeat-x;
|
606 |
+
color: #f0f0f0;
|
607 |
+
text-shadow: -1px -1px 0 #000;
|
608 |
+
-moz-text-shadow: -1px -1px 0 #000;
|
609 |
+
-webkit-text-shadow: -1px -1px 0 #000;
|
610 |
+
border-radius: 2em;
|
611 |
+
-moz-border-radius: 2em;
|
612 |
+
-webkit-border-radius: 2em;
|
613 |
+
}
|
614 |
+
.su-dropcap-style-2 {
|
615 |
+
background: #ccc 0 -20px url(../images/dropcap-style-2.png) repeat-x;
|
616 |
+
color: #000;
|
617 |
+
text-shadow: 1px 1px 0 #eee;
|
618 |
+
-moz-text-shadow: 1px 1px 0 #eee;
|
619 |
+
-webkit-text-shadow: 1px 1px 0 #eee;
|
620 |
+
border-radius: 2em;
|
621 |
+
-moz-border-radius: 2em;
|
622 |
+
-webkit-border-radius: 2em;
|
623 |
+
}
|
624 |
+
.su-dropcap-style-3 {
|
625 |
+
background: url(../images/dropcap-style-3.png);
|
626 |
+
color: #fff;
|
627 |
+
border-radius: 2em;
|
628 |
+
-moz-border-radius: 2em;
|
629 |
+
-webkit-border-radius: 2em;
|
630 |
+
text-shadow: -1px -1px 0 #aaa;
|
631 |
+
-moz-text-shadow: -1px -1px 0 #aaa;
|
632 |
+
-webkit-text-shadow: -1px -1px 0 #aaa;
|
633 |
}
|
images/demo/bloginfo.png
DELETED
Binary file
|
images/demo/box.png
DELETED
Binary file
|
images/demo/button.png
DELETED
Binary file
|
images/demo/column.png
DELETED
Binary file
|
images/demo/custom_gallery.png
DELETED
Binary file
|
images/demo/divider.png
DELETED
Binary file
|
images/demo/document.png
DELETED
Binary file
|
images/demo/fancy_link.png
DELETED
Binary file
|
images/demo/feed.png
DELETED
Binary file
|
images/demo/frame.png
DELETED
Binary file
|
images/demo/gmap.png
DELETED
Binary file
|
images/demo/guests.png
DELETED
Binary file
|
images/demo/heading.png
DELETED
Binary file
|
images/demo/highlight.png
DELETED
Binary file
|
images/demo/jcarousel.png
DELETED
Binary file
|
images/demo/list.png
DELETED
Binary file
|
images/demo/media.png
DELETED
Binary file
|
images/demo/members.png
DELETED
Binary file
|
images/demo/menu.png
DELETED
Binary file
|
images/demo/nivo_slider.png
DELETED
Binary file
|
images/demo/note.png
DELETED
Binary file
|
images/demo/permalink.png
DELETED
Binary file
|
images/demo/private.png
DELETED
Binary file
|
images/demo/pullquote.png
DELETED
Binary file
|
images/demo/quote.png
DELETED
Binary file
|
images/demo/service.png
DELETED
Binary file
|
images/demo/siblings.png
DELETED
Binary file
|
images/demo/spacer.png
DELETED
Binary file
|
images/demo/spoiler.png
DELETED
Binary file
|
images/demo/subpages.png
DELETED
Binary file
|
images/demo/tab.png
DELETED
Binary file
|
images/demo/table.png
DELETED
Binary file
|
images/demo/tabs.png
DELETED
Binary file
|
images/demo/tweets.png
DELETED
Binary file
|
images/dropcap-style-1.png
ADDED
Binary file
|
images/dropcap-style-2.png
ADDED
Binary file
|
images/dropcap-style-3.png
ADDED
Binary file
|
images/generator/colorpicker.png
DELETED
Binary file
|
images/generator/settings.png
DELETED
Binary file
|
images/generator/support.png
DELETED
Binary file
|
images/jcarousel/arrows.png
DELETED
Binary file
|
images/nivo-slider/arrows.png
DELETED
Binary file
|
images/nivo-slider/bullets.png
DELETED
Binary file
|
images/nivo-slider/loading.gif
DELETED
Binary file
|
images/social/facebook_16.png
DELETED
Binary file
|
images/social/twitter_16.png
DELETED
Binary file
|
js/jquery.nivo.slider.pack.js
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
* jQuery Nivo Slider v2.5.1
|
3 |
+
* http://nivo.dev7studios.com
|
4 |
+
*
|
5 |
+
* Copyright 2011, Gilbert Pellegrom
|
6 |
+
* Free to use and abuse under the MIT license.
|
7 |
+
* http://www.opensource.org/licenses/mit-license.php
|
8 |
+
*
|
9 |
+
* March 2010
|
10 |
+
*/
|
11 |
+
|
12 |
+
(function($){var NivoSlider=function(element,options){var settings=$.extend({},$.fn.nivoSlider.defaults,options);var vars={currentSlide:0,currentImage:'',totalSlides:0,randAnim:'',running:false,paused:false,stop:false};var slider=$(element);slider.data('nivo:vars',vars);slider.css('position','relative');slider.addClass('nivoSlider');var kids=slider.children();kids.each(function(){var child=$(this);var link='';if(!child.is('img')){if(child.is('a')){child.addClass('nivo-imageLink');link=child;}
|
13 |
+
child=child.find('img:first');}
|
14 |
+
var childWidth=child.width();if(childWidth==0)childWidth=child.attr('width');var childHeight=child.height();if(childHeight==0)childHeight=child.attr('height');if(childWidth>slider.width()){slider.width(childWidth);}
|
15 |
+
if(childHeight>slider.height()){slider.height(childHeight);}
|
16 |
+
if(link!=''){link.css('display','none');}
|
17 |
+
child.css('display','none');vars.totalSlides++;});if(settings.startSlide>0){if(settings.startSlide>=vars.totalSlides)settings.startSlide=vars.totalSlides-1;vars.currentSlide=settings.startSlide;}
|
18 |
+
if($(kids[vars.currentSlide]).is('img')){vars.currentImage=$(kids[vars.currentSlide]);}else{vars.currentImage=$(kids[vars.currentSlide]).find('img:first');}
|
19 |
+
if($(kids[vars.currentSlide]).is('a')){$(kids[vars.currentSlide]).css('display','block');}
|
20 |
+
slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');slider.append($('<div class="nivo-caption"><p></p></div>').css({display:'none',opacity:settings.captionOpacity}));var processCaption=function(settings){var nivoCaption=$('.nivo-caption',slider);if(vars.currentImage.attr('title')!=''){var title=vars.currentImage.attr('title');if(title.substr(0,1)=='#')title=$(title).html();if(nivoCaption.css('display')=='block'){nivoCaption.find('p').fadeOut(settings.animSpeed,function(){$(this).html(title);$(this).fadeIn(settings.animSpeed);});}else{nivoCaption.find('p').html(title);}
|
21 |
+
nivoCaption.fadeIn(settings.animSpeed);}else{nivoCaption.fadeOut(settings.animSpeed);}}
|
22 |
+
processCaption(settings);var timer=0;if(!settings.manualAdvance&&kids.length>1){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}
|
23 |
+
if(settings.directionNav){slider.append('<div class="nivo-directionNav"><a class="nivo-prevNav">'+settings.prevText+'</a><a class="nivo-nextNav">'+settings.nextText+'</a></div>');if(settings.directionNavHide){$('.nivo-directionNav',slider).hide();slider.hover(function(){$('.nivo-directionNav',slider).show();},function(){$('.nivo-directionNav',slider).hide();});}
|
24 |
+
$('a.nivo-prevNav',slider).live('click',function(){if(vars.running)return false;clearInterval(timer);timer='';vars.currentSlide-=2;nivoRun(slider,kids,settings,'prev');});$('a.nivo-nextNav',slider).live('click',function(){if(vars.running)return false;clearInterval(timer);timer='';nivoRun(slider,kids,settings,'next');});}
|
25 |
+
if(settings.controlNav){var nivoControl=$('<div class="nivo-controlNav"></div>');slider.append(nivoControl);for(var i=0;i<kids.length;i++){if(settings.controlNavThumbs){var child=kids.eq(i);if(!child.is('img')){child=child.find('img:first');}
|
26 |
+
if(settings.controlNavThumbsFromRel){nivoControl.append('<a class="nivo-control" rel="'+i+'"><img src="'+child.attr('rel')+'" alt="" /></a>');}else{nivoControl.append('<a class="nivo-control" rel="'+i+'"><img src="'+child.attr('src').replace(settings.controlNavThumbsSearch,settings.controlNavThumbsReplace)+'" alt="" /></a>');}}else{nivoControl.append('<a class="nivo-control" rel="'+i+'">'+(i+1)+'</a>');}}
|
27 |
+
$('.nivo-controlNav a:eq('+vars.currentSlide+')',slider).addClass('active');$('.nivo-controlNav a',slider).live('click',function(){if(vars.running)return false;if($(this).hasClass('active'))return false;clearInterval(timer);timer='';slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');vars.currentSlide=$(this).attr('rel')-1;nivoRun(slider,kids,settings,'control');});}
|
28 |
+
if(settings.keyboardNav){$(window).keypress(function(event){if(event.keyCode=='37'){if(vars.running)return false;clearInterval(timer);timer='';vars.currentSlide-=2;nivoRun(slider,kids,settings,'prev');}
|
29 |
+
if(event.keyCode=='39'){if(vars.running)return false;clearInterval(timer);timer='';nivoRun(slider,kids,settings,'next');}});}
|
30 |
+
if(settings.pauseOnHover){slider.hover(function(){vars.paused=true;clearInterval(timer);timer='';},function(){vars.paused=false;if(timer==''&&!settings.manualAdvance){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}});}
|
31 |
+
slider.bind('nivo:animFinished',function(){vars.running=false;$(kids).each(function(){if($(this).is('a')){$(this).css('display','none');}});if($(kids[vars.currentSlide]).is('a')){$(kids[vars.currentSlide]).css('display','block');}
|
32 |
+
if(timer==''&&!vars.paused&&!settings.manualAdvance){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}
|
33 |
+
settings.afterChange.call(this);});var createSlices=function(slider,settings,vars){for(var i=0;i<settings.slices;i++){var sliceWidth=Math.round(slider.width()/settings.slices);if(i==settings.slices-1){slider.append($('<div class="nivo-slice"></div>').css({left:(sliceWidth*i)+'px',width:(slider.width()-(sliceWidth*i))+'px',height:'0px',opacity:'0',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((sliceWidth+(i*sliceWidth))-sliceWidth)+'px 0%'}));}else{slider.append($('<div class="nivo-slice"></div>').css({left:(sliceWidth*i)+'px',width:sliceWidth+'px',height:'0px',opacity:'0',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((sliceWidth+(i*sliceWidth))-sliceWidth)+'px 0%'}));}}}
|
34 |
+
var createBoxes=function(slider,settings,vars){var boxWidth=Math.round(slider.width()/settings.boxCols);var boxHeight=Math.round(slider.height()/settings.boxRows);for(var rows=0;rows<settings.boxRows;rows++){for(var cols=0;cols<settings.boxCols;cols++){if(cols==settings.boxCols-1){slider.append($('<div class="nivo-box"></div>').css({opacity:0,left:(boxWidth*cols)+'px',top:(boxHeight*rows)+'px',width:(slider.width()-(boxWidth*cols))+'px',height:boxHeight+'px',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((boxWidth+(cols*boxWidth))-boxWidth)+'px -'+((boxHeight+(rows*boxHeight))-boxHeight)+'px'}));}else{slider.append($('<div class="nivo-box"></div>').css({opacity:0,left:(boxWidth*cols)+'px',top:(boxHeight*rows)+'px',width:boxWidth+'px',height:boxHeight+'px',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((boxWidth+(cols*boxWidth))-boxWidth)+'px -'+((boxHeight+(rows*boxHeight))-boxHeight)+'px'}));}}}}
|
35 |
+
var nivoRun=function(slider,kids,settings,nudge){var vars=slider.data('nivo:vars');if(vars&&(vars.currentSlide==vars.totalSlides-1)){settings.lastSlide.call(this);}
|
36 |
+
if((!vars||vars.stop)&&!nudge)return false;settings.beforeChange.call(this);if(!nudge){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}else{if(nudge=='prev'){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}
|
37 |
+
if(nudge=='next'){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}}
|
38 |
+
vars.currentSlide++;if(vars.currentSlide==vars.totalSlides){vars.currentSlide=0;settings.slideshowEnd.call(this);}
|
39 |
+
if(vars.currentSlide<0)vars.currentSlide=(vars.totalSlides-1);if($(kids[vars.currentSlide]).is('img')){vars.currentImage=$(kids[vars.currentSlide]);}else{vars.currentImage=$(kids[vars.currentSlide]).find('img:first');}
|
40 |
+
if(settings.controlNav){$('.nivo-controlNav a',slider).removeClass('active');$('.nivo-controlNav a:eq('+vars.currentSlide+')',slider).addClass('active');}
|
41 |
+
processCaption(settings);$('.nivo-slice',slider).remove();$('.nivo-box',slider).remove();if(settings.effect=='random'){var anims=new Array('sliceDownRight','sliceDownLeft','sliceUpRight','sliceUpLeft','sliceUpDown','sliceUpDownLeft','fold','fade','boxRandom','boxRain','boxRainReverse','boxRainGrow','boxRainGrowReverse');vars.randAnim=anims[Math.floor(Math.random()*(anims.length+1))];if(vars.randAnim==undefined)vars.randAnim='fade';}
|
42 |
+
if(settings.effect.indexOf(',')!=-1){var anims=settings.effect.split(',');vars.randAnim=anims[Math.floor(Math.random()*(anims.length))];if(vars.randAnim==undefined)vars.randAnim='fade';}
|
43 |
+
vars.running=true;if(settings.effect=='sliceDown'||settings.effect=='sliceDownRight'||vars.randAnim=='sliceDownRight'||settings.effect=='sliceDownLeft'||vars.randAnim=='sliceDownLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceDownLeft'||vars.randAnim=='sliceDownLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);slice.css({'top':'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
|
44 |
+
timeBuff+=50;i++;});}
|
45 |
+
else if(settings.effect=='sliceUp'||settings.effect=='sliceUpRight'||vars.randAnim=='sliceUpRight'||settings.effect=='sliceUpLeft'||vars.randAnim=='sliceUpLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceUpLeft'||vars.randAnim=='sliceUpLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);slice.css({'bottom':'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
|
46 |
+
timeBuff+=50;i++;});}
|
47 |
+
else if(settings.effect=='sliceUpDown'||settings.effect=='sliceUpDownRight'||vars.randAnim=='sliceUpDown'||settings.effect=='sliceUpDownLeft'||vars.randAnim=='sliceUpDownLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var v=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceUpDownLeft'||vars.randAnim=='sliceUpDownLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);if(i==0){slice.css('top','0px');i++;}else{slice.css('bottom','0px');i=0;}
|
48 |
+
if(v==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
|
49 |
+
timeBuff+=50;v++;});}
|
50 |
+
else if(settings.effect=='fold'||vars.randAnim=='fold'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;$('.nivo-slice',slider).each(function(){var slice=$(this);var origWidth=slice.width();slice.css({top:'0px',height:'100%',width:'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({width:origWidth,opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({width:origWidth,opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
|
51 |
+
timeBuff+=50;i++;});}
|
52 |
+
else if(settings.effect=='fade'||vars.randAnim=='fade'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':slider.width()+'px'});firstSlice.animate({opacity:'1.0'},(settings.animSpeed*2),'',function(){slider.trigger('nivo:animFinished');});}
|
53 |
+
else if(settings.effect=='slideInRight'||vars.randAnim=='slideInRight'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':'0px','opacity':'1'});firstSlice.animate({width:slider.width()+'px'},(settings.animSpeed*2),'',function(){slider.trigger('nivo:animFinished');});}
|
54 |
+
else if(settings.effect=='slideInLeft'||vars.randAnim=='slideInLeft'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':'0px','opacity':'1','left':'','right':'0px'});firstSlice.animate({width:slider.width()+'px'},(settings.animSpeed*2),'',function(){firstSlice.css({'left':'0px','right':''});slider.trigger('nivo:animFinished');});}
|
55 |
+
else if(settings.effect=='boxRandom'||vars.randAnim=='boxRandom'){createBoxes(slider,settings,vars);var totalBoxes=settings.boxCols*settings.boxRows;var i=0;var timeBuff=0;var boxes=shuffle($('.nivo-box',slider));boxes.each(function(){var box=$(this);if(i==totalBoxes-1){setTimeout(function(){box.animate({opacity:'1'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){box.animate({opacity:'1'},settings.animSpeed);},(100+timeBuff));}
|
56 |
+
timeBuff+=20;i++;});}
|
57 |
+
else if(settings.effect=='boxRain'||vars.randAnim=='boxRain'||settings.effect=='boxRainReverse'||vars.randAnim=='boxRainReverse'||settings.effect=='boxRainGrow'||vars.randAnim=='boxRainGrow'||settings.effect=='boxRainGrowReverse'||vars.randAnim=='boxRainGrowReverse'){createBoxes(slider,settings,vars);var totalBoxes=settings.boxCols*settings.boxRows;var i=0;var timeBuff=0;var rowIndex=0;var colIndex=0;var box2Darr=new Array();box2Darr[rowIndex]=new Array();var boxes=$('.nivo-box',slider);if(settings.effect=='boxRainReverse'||vars.randAnim=='boxRainReverse'||settings.effect=='boxRainGrowReverse'||vars.randAnim=='boxRainGrowReverse'){boxes=$('.nivo-box',slider)._reverse();}
|
58 |
+
boxes.each(function(){box2Darr[rowIndex][colIndex]=$(this);colIndex++;if(colIndex==settings.boxCols){rowIndex++;colIndex=0;box2Darr[rowIndex]=new Array();}});for(var cols=0;cols<(settings.boxCols*2);cols++){var prevCol=cols;for(var rows=0;rows<settings.boxRows;rows++){if(prevCol>=0&&prevCol<settings.boxCols){(function(row,col,time,i,totalBoxes){var box=$(box2Darr[row][col]);var w=box.width();var h=box.height();if(settings.effect=='boxRainGrow'||vars.randAnim=='boxRainGrow'||settings.effect=='boxRainGrowReverse'||vars.randAnim=='boxRainGrowReverse'){box.width(0).height(0);}
|
59 |
+
if(i==totalBoxes-1){setTimeout(function(){box.animate({opacity:'1',width:w,height:h},settings.animSpeed/1.3,'',function(){slider.trigger('nivo:animFinished');});},(100+time));}else{setTimeout(function(){box.animate({opacity:'1',width:w,height:h},settings.animSpeed/1.3);},(100+time));}})(rows,prevCol,timeBuff,i,totalBoxes);i++;}
|
60 |
+
prevCol--;}
|
61 |
+
timeBuff+=100;}}}
|
62 |
+
var shuffle=function(arr){for(var j,x,i=arr.length;i;j=parseInt(Math.random()*i),x=arr[--i],arr[i]=arr[j],arr[j]=x);return arr;}
|
63 |
+
var trace=function(msg){if(this.console&&typeof console.log!="undefined")
|
64 |
+
console.log(msg);}
|
65 |
+
this.stop=function(){if(!$(element).data('nivo:vars').stop){$(element).data('nivo:vars').stop=true;trace('Stop Slider');}}
|
66 |
+
this.start=function(){if($(element).data('nivo:vars').stop){$(element).data('nivo:vars').stop=false;trace('Start Slider');}}
|
67 |
+
settings.afterLoad.call(this);return this;};$.fn.nivoSlider=function(options){return this.each(function(key,value){var element=$(this);if(element.data('nivoslider'))return element.data('nivoslider');var nivoslider=new NivoSlider(this,options);element.data('nivoslider',nivoslider);});};$.fn.nivoSlider.defaults={effect:'random',slices:15,boxCols:8,boxRows:4,animSpeed:500,pauseTime:3000,startSlide:0,directionNav:true,directionNavHide:true,controlNav:true,controlNavThumbs:false,controlNavThumbsFromRel:false,controlNavThumbsSearch:'.jpg',controlNavThumbsReplace:'_thumb.jpg',keyboardNav:true,pauseOnHover:true,manualAdvance:false,captionOpacity:0.8,prevText:'Prev',nextText:'Next',beforeChange:function(){},afterChange:function(){},slideshowEnd:function(){},lastSlide:function(){},afterLoad:function(){}};$.fn._reverse=[].reverse;})(jQuery);
|
languages/shortcodes-ultimate-be_BY.mo
ADDED
Binary file
|
languages/shortcodes-ultimate-be_BY.po
ADDED
@@ -0,0 +1,872 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: gn_themes\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-09-28 07:12+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-11-03 19:21+0200\n"
|
7 |
+
"Last-Translator: \n"
|
8 |
+
"Language-Team: Web Geeks\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
"X-Poedit-Language: Belarusian\n"
|
16 |
+
"X-Poedit-Country: BELARUS\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
|
19 |
+
#: shortcodes-ultimate.php:184
|
20 |
+
#: lib/admin.php:26
|
21 |
+
msgid "Shortcodes Ultimate"
|
22 |
+
msgstr "Шорткоды"
|
23 |
+
|
24 |
+
#: shortcodes-ultimate.php:184
|
25 |
+
msgid "Vladimir Anokhin"
|
26 |
+
msgstr "Уладзімір Анохин"
|
27 |
+
|
28 |
+
#: shortcodes-ultimate.php:184
|
29 |
+
msgid "Provides support for many easy to use shortcodes"
|
30 |
+
msgstr "Падае падтрымку мноства карысных шорткодов"
|
31 |
+
|
32 |
+
#: shortcodes-ultimate.php:270
|
33 |
+
#: shortcodes-ultimate.php:321
|
34 |
+
#: lib/admin.php:35
|
35 |
+
msgid "Settings"
|
36 |
+
msgstr "Налады"
|
37 |
+
|
38 |
+
#: shortcodes-ultimate.php:283
|
39 |
+
#: lib/admin.php:62
|
40 |
+
msgid "Settings saved"
|
41 |
+
msgstr "Налады захаваны"
|
42 |
+
|
43 |
+
#: shortcodes-ultimate.php:288
|
44 |
+
#: lib/admin.php:123
|
45 |
+
msgid "Custom CSS saved"
|
46 |
+
msgstr "Адвольныя стылі захаваны"
|
47 |
+
|
48 |
+
#: shortcodes-ultimate.php:296
|
49 |
+
msgid "Insert shortcode"
|
50 |
+
msgstr "Устаўка шорткода"
|
51 |
+
|
52 |
+
#: shortcodes-ultimate.php:311
|
53 |
+
msgid "Select shortcode"
|
54 |
+
msgstr "Абярыце шорткод"
|
55 |
+
|
56 |
+
#: shortcodes-ultimate.php:322
|
57 |
+
msgid "Color picker"
|
58 |
+
msgstr "Падбор колеру"
|
59 |
+
|
60 |
+
#: shortcodes-ultimate.php:323
|
61 |
+
#: lib/admin.php:44
|
62 |
+
msgid "Support forum"
|
63 |
+
msgstr "Форум падтрымкі"
|
64 |
+
|
65 |
+
#: lib/admin.php:7
|
66 |
+
#: lib/admin.php:37
|
67 |
+
msgid "Shortcodes"
|
68 |
+
msgstr "Шорткоды"
|
69 |
+
|
70 |
+
#: lib/admin.php:34
|
71 |
+
msgid "About"
|
72 |
+
msgstr "Пра ўбудову"
|
73 |
+
|
74 |
+
#: lib/admin.php:36
|
75 |
+
msgid "Custom CSS"
|
76 |
+
msgstr "Адвольныя стылі"
|
77 |
+
|
78 |
+
#: lib/admin.php:38
|
79 |
+
#: lib/admin.php:175
|
80 |
+
#: lib/generator.php:52
|
81 |
+
msgid "Demo"
|
82 |
+
msgstr "Дэма"
|
83 |
+
|
84 |
+
#: lib/admin.php:41
|
85 |
+
msgid "For full functionality of this page it is recommended to enable JavaScript."
|
86 |
+
msgstr "На гэтай старонцы рэкамендуецца ўключыць Javascript."
|
87 |
+
|
88 |
+
#: lib/admin.php:41
|
89 |
+
msgid "Instructions"
|
90 |
+
msgstr "Інструкцыі"
|
91 |
+
|
92 |
+
#: lib/admin.php:43
|
93 |
+
msgid "FREE Support"
|
94 |
+
msgstr "БЯСПЛАТНАЯ падтрымка"
|
95 |
+
|
96 |
+
#: lib/admin.php:45
|
97 |
+
msgid "Twitter"
|
98 |
+
msgstr "Твиттер распрацоўніка"
|
99 |
+
|
100 |
+
#: lib/admin.php:46
|
101 |
+
msgid "Bug report"
|
102 |
+
msgstr "Паведаміць пра памылку"
|
103 |
+
|
104 |
+
#: lib/admin.php:50
|
105 |
+
msgid "Do you love this plugin?"
|
106 |
+
msgstr "Вам падабаецца гэта ўбудова?"
|
107 |
+
|
108 |
+
#: lib/admin.php:51
|
109 |
+
msgid "Buy author a beer"
|
110 |
+
msgstr "Купіце аўтару піва"
|
111 |
+
|
112 |
+
#: lib/admin.php:51
|
113 |
+
msgid "Donate"
|
114 |
+
msgstr "Зрабіць ахвяраванне"
|
115 |
+
|
116 |
+
#: lib/admin.php:52
|
117 |
+
msgid "Rate this plugin at wordpress.org"
|
118 |
+
msgstr "Ацэніце ўбудову на wordpress.org"
|
119 |
+
|
120 |
+
#: lib/admin.php:52
|
121 |
+
msgid "5 stars"
|
122 |
+
msgstr "5 зорак"
|
123 |
+
|
124 |
+
#: lib/admin.php:53
|
125 |
+
msgid "Review this plugin in your blog"
|
126 |
+
msgstr "Зрабіце агляд гэтай убудовы ў сваім блогу"
|
127 |
+
|
128 |
+
#: lib/admin.php:61
|
129 |
+
#: lib/admin.php:122
|
130 |
+
msgid "Saving..."
|
131 |
+
msgstr "Захаванне..."
|
132 |
+
|
133 |
+
#: lib/admin.php:66
|
134 |
+
msgid "Disable custom formatting"
|
135 |
+
msgstr "Адключыць адмысловае фарматаванне"
|
136 |
+
|
137 |
+
#: lib/admin.php:69
|
138 |
+
msgid "Enable this option if you have some problems with other plugins or content formatting"
|
139 |
+
msgstr "Адзначце гэты сцяжок, калі ў вас паўсталі пролемы сумяшчальнасці з іншымі ўбудовамі ці фарматаваннем кантэнту"
|
140 |
+
|
141 |
+
#: lib/admin.php:74
|
142 |
+
msgid "Compatibility mode"
|
143 |
+
msgstr "Рэжым сумяшчальнасці"
|
144 |
+
|
145 |
+
#: lib/admin.php:77
|
146 |
+
msgid "Enable this option if you have some problems with other plugins that uses similar shortcode names"
|
147 |
+
msgstr "Адзначце гэты сцяжок, калі ў вас выкарыстоўваюцца іншыя шорткоды з такімі ж імёнамі. Усё шорткоды гэтай убудовы будуць мець такія імёны"
|
148 |
+
|
149 |
+
#: lib/admin.php:77
|
150 |
+
msgid "Forum topic"
|
151 |
+
msgstr "Тэма на форуме (ангел.)"
|
152 |
+
|
153 |
+
#: lib/admin.php:81
|
154 |
+
msgid "Disable scripts"
|
155 |
+
msgstr "Адключыць скрыпты"
|
156 |
+
|
157 |
+
#: lib/admin.php:85
|
158 |
+
#: lib/admin.php:86
|
159 |
+
#: lib/admin.php:87
|
160 |
+
#: lib/admin.php:88
|
161 |
+
#: lib/admin.php:89
|
162 |
+
#: lib/admin.php:100
|
163 |
+
#: lib/admin.php:101
|
164 |
+
#: lib/admin.php:102
|
165 |
+
msgid "Disable"
|
166 |
+
msgstr "Адключыць"
|
167 |
+
|
168 |
+
#: lib/admin.php:92
|
169 |
+
msgid "Check scripts, that you want to exclude form wp_head section"
|
170 |
+
msgstr "Адзначце скрыпты, якія вы жадаеце выключыць у wp_head"
|
171 |
+
|
172 |
+
#: lib/admin.php:92
|
173 |
+
#: lib/admin.php:105
|
174 |
+
msgid "Be careful with this settings!"
|
175 |
+
msgstr "Будзьце асцярожныя з гэтымі наладамі!"
|
176 |
+
|
177 |
+
#: lib/admin.php:96
|
178 |
+
msgid "Disable styles"
|
179 |
+
msgstr "Адключыць файлы стыляў"
|
180 |
+
|
181 |
+
#: lib/admin.php:105
|
182 |
+
msgid "Check stylesheets, that you want to exclude form wp_head section"
|
183 |
+
msgstr "Адзначце файлы стыляў, якія вы жадаеце выключыць у wp_head"
|
184 |
+
|
185 |
+
#: lib/admin.php:111
|
186 |
+
msgid "Save settings"
|
187 |
+
msgstr "Захаваць налады"
|
188 |
+
|
189 |
+
#: lib/admin.php:124
|
190 |
+
msgid "You can add custom styles, that will override defaults"
|
191 |
+
msgstr "Вы можаце дадаць адвольныя стылі, якія заменяць арыгінальныя стылі для шорткодов"
|
192 |
+
|
193 |
+
#: lib/admin.php:125
|
194 |
+
msgid "See original styles"
|
195 |
+
msgstr "Глядзець арыгінальныя стылі"
|
196 |
+
|
197 |
+
#: lib/admin.php:128
|
198 |
+
msgid "Save styles"
|
199 |
+
msgstr "Захаваць стылі"
|
200 |
+
|
201 |
+
#: lib/admin.php:138
|
202 |
+
#: lib/admin.php:174
|
203 |
+
msgid "Shortcode"
|
204 |
+
msgstr "Шорткоды"
|
205 |
+
|
206 |
+
#: lib/admin.php:139
|
207 |
+
msgid "Parameters"
|
208 |
+
msgstr "Параметры"
|
209 |
+
|
210 |
+
#: lib/admin.php:140
|
211 |
+
msgid "Usage"
|
212 |
+
msgstr "Прыклад выкарыстання"
|
213 |
+
|
214 |
+
#: lib/available.php:18
|
215 |
+
msgid "Heading style"
|
216 |
+
msgstr "Стыль загалоўка"
|
217 |
+
|
218 |
+
#: lib/available.php:22
|
219 |
+
msgid "Heading"
|
220 |
+
msgstr "Загаловак"
|
221 |
+
|
222 |
+
#: lib/available.php:23
|
223 |
+
msgid "Styled heading"
|
224 |
+
msgstr "Стыльны загаловак"
|
225 |
+
|
226 |
+
#: lib/available.php:37
|
227 |
+
msgid "Frame align"
|
228 |
+
msgstr "Выраўноўванне рамкі"
|
229 |
+
|
230 |
+
#: lib/available.php:41
|
231 |
+
msgid "Image tag"
|
232 |
+
msgstr "Тэг малюнка"
|
233 |
+
|
234 |
+
#: lib/available.php:42
|
235 |
+
msgid "Styled image frame"
|
236 |
+
msgstr "Стиьная рамка малюнка"
|
237 |
+
|
238 |
+
#: lib/available.php:56
|
239 |
+
msgid "Tabs style"
|
240 |
+
msgstr "Стыль укладак"
|
241 |
+
|
242 |
+
#: lib/available.php:60
|
243 |
+
msgid "Tabs container"
|
244 |
+
msgstr "Кантэйнер укладак"
|
245 |
+
|
246 |
+
#: lib/available.php:69
|
247 |
+
msgid "Title"
|
248 |
+
msgstr "Загаловак"
|
249 |
+
|
250 |
+
#: lib/available.php:70
|
251 |
+
msgid "Tab title"
|
252 |
+
msgstr "Загаловак укладкі"
|
253 |
+
|
254 |
+
#: lib/available.php:74
|
255 |
+
msgid "Tab content"
|
256 |
+
msgstr "Змесціва ўкладкі"
|
257 |
+
|
258 |
+
#: lib/available.php:75
|
259 |
+
msgid "Single tab"
|
260 |
+
msgstr "Адзінкавая ўкладка"
|
261 |
+
|
262 |
+
#: lib/available.php:84
|
263 |
+
#: lib/available.php:85
|
264 |
+
#: lib/shortcodes.php:82
|
265 |
+
msgid "Spoiler title"
|
266 |
+
msgstr "Утоены тэкст"
|
267 |
+
|
268 |
+
#: lib/available.php:89
|
269 |
+
msgid "Hidden content"
|
270 |
+
msgstr "Утоенае змесціва"
|
271 |
+
|
272 |
+
#: lib/available.php:90
|
273 |
+
msgid "Hidden text"
|
274 |
+
msgstr "Утоены тэкст"
|
275 |
+
|
276 |
+
#: lib/available.php:103
|
277 |
+
msgid "Show TOP link"
|
278 |
+
msgstr "Паказаць спасылку ЎГАРУ"
|
279 |
+
|
280 |
+
#: lib/available.php:107
|
281 |
+
msgid "Content divider with optional TOP link"
|
282 |
+
msgstr "Падзельнік тэксту са спасылкай УГАРУ"
|
283 |
+
|
284 |
+
#: lib/available.php:123
|
285 |
+
msgid "Spacer height in pixels"
|
286 |
+
msgstr "Вышыня падзельніка ў пікселях"
|
287 |
+
|
288 |
+
#: lib/available.php:127
|
289 |
+
msgid "Empty space with adjustable height"
|
290 |
+
msgstr "Прабел з наладжвальнай вышынёй"
|
291 |
+
|
292 |
+
#: lib/available.php:141
|
293 |
+
msgid "Quote style"
|
294 |
+
msgstr "Стыль цытаты"
|
295 |
+
|
296 |
+
#: lib/available.php:145
|
297 |
+
msgid "Quote"
|
298 |
+
msgstr "Цытата"
|
299 |
+
|
300 |
+
#: lib/available.php:146
|
301 |
+
msgid "Blockquote alternative"
|
302 |
+
msgstr "Альтэрнатыва цытаты"
|
303 |
+
|
304 |
+
#: lib/available.php:159
|
305 |
+
msgid "Pullquote alignment"
|
306 |
+
msgstr "Выраўноўванне цытаты"
|
307 |
+
|
308 |
+
#: lib/available.php:163
|
309 |
+
#: lib/available.php:164
|
310 |
+
msgid "Pullquote"
|
311 |
+
msgstr "Цытата з обтеканием"
|
312 |
+
|
313 |
+
#: lib/available.php:174
|
314 |
+
msgid "Background color"
|
315 |
+
msgstr "Колер фону"
|
316 |
+
|
317 |
+
#: lib/available.php:180
|
318 |
+
msgid "Text color"
|
319 |
+
msgstr "Колер тэксту"
|
320 |
+
|
321 |
+
#: lib/available.php:185
|
322 |
+
#: lib/available.php:186
|
323 |
+
msgid "Highlighted text"
|
324 |
+
msgstr "Падсветлены тэкст"
|
325 |
+
|
326 |
+
#: lib/available.php:209
|
327 |
+
msgid "Option name"
|
328 |
+
msgstr "Імя опцыі"
|
329 |
+
|
330 |
+
#: lib/available.php:213
|
331 |
+
msgid "Blog info"
|
332 |
+
msgstr "Інфа блога"
|
333 |
+
|
334 |
+
#: lib/available.php:223
|
335 |
+
msgid "Post/page ID"
|
336 |
+
msgstr "ID запісы/старонкі"
|
337 |
+
|
338 |
+
#: lib/available.php:231
|
339 |
+
msgid "Link target"
|
340 |
+
msgstr "Мэта спасылкі"
|
341 |
+
|
342 |
+
#: lib/available.php:235
|
343 |
+
msgid "Permalink text"
|
344 |
+
msgstr "Тэкст сталай спасылкі"
|
345 |
+
|
346 |
+
#: lib/available.php:236
|
347 |
+
msgid "Permalink to specified post/page"
|
348 |
+
msgstr "Сталая спасылка на паказаны запіс/старонку"
|
349 |
+
|
350 |
+
#: lib/available.php:246
|
351 |
+
msgid "Button link"
|
352 |
+
msgstr "Спасылка кнопкі"
|
353 |
+
|
354 |
+
#: lib/available.php:251
|
355 |
+
msgid "Button background color"
|
356 |
+
msgstr "Колер фону кнопкі"
|
357 |
+
|
358 |
+
#: lib/available.php:270
|
359 |
+
msgid "Button size"
|
360 |
+
msgstr "Памер кнопкі"
|
361 |
+
|
362 |
+
#: lib/available.php:280
|
363 |
+
msgid "Button background style"
|
364 |
+
msgstr "Стыль фону кнопкі"
|
365 |
+
|
366 |
+
#: lib/available.php:288
|
367 |
+
msgid "Dark text color"
|
368 |
+
msgstr "Цёмны колер тэксту"
|
369 |
+
|
370 |
+
#: lib/available.php:296
|
371 |
+
msgid "Disable rounded corners"
|
372 |
+
msgstr "Адключыць скругленыя куткі"
|
373 |
+
|
374 |
+
#: lib/available.php:301
|
375 |
+
msgid "Button icon"
|
376 |
+
msgstr "Абразок кнопкі"
|
377 |
+
|
378 |
+
#: lib/available.php:306
|
379 |
+
msgid "Button class"
|
380 |
+
msgstr "Клас кнопкі"
|
381 |
+
|
382 |
+
#: lib/available.php:314
|
383 |
+
msgid "Button link target"
|
384 |
+
msgstr "Мэта спасылкі кнопкі"
|
385 |
+
|
386 |
+
#: lib/available.php:318
|
387 |
+
msgid "Button text"
|
388 |
+
msgstr "Тэкст кнопкі"
|
389 |
+
|
390 |
+
#: lib/available.php:319
|
391 |
+
msgid "Styled button"
|
392 |
+
msgstr "Стыльная кнопка"
|
393 |
+
|
394 |
+
#: lib/available.php:332
|
395 |
+
msgid "Link color"
|
396 |
+
msgstr "Колер спасылкі"
|
397 |
+
|
398 |
+
#: lib/available.php:337
|
399 |
+
msgid "URL"
|
400 |
+
msgstr "URL"
|
401 |
+
|
402 |
+
#: lib/available.php:341
|
403 |
+
msgid "Link text"
|
404 |
+
msgstr "Тэкст спасылкі"
|
405 |
+
|
406 |
+
#: lib/available.php:342
|
407 |
+
msgid "Fancy link"
|
408 |
+
msgstr "Стыльная спасылка"
|
409 |
+
|
410 |
+
#: lib/available.php:351
|
411 |
+
#: lib/available.php:352
|
412 |
+
msgid "Service title"
|
413 |
+
msgstr "Назва паслугі"
|
414 |
+
|
415 |
+
#: lib/available.php:357
|
416 |
+
msgid "Service icon"
|
417 |
+
msgstr "Абразок паслугі"
|
418 |
+
|
419 |
+
#: lib/available.php:366
|
420 |
+
msgid "Icon size"
|
421 |
+
msgstr "Памер абразка"
|
422 |
+
|
423 |
+
#: lib/available.php:370
|
424 |
+
msgid "Service description"
|
425 |
+
msgstr "Апісанне паслугі"
|
426 |
+
|
427 |
+
#: lib/available.php:371
|
428 |
+
msgid "Service box with title"
|
429 |
+
msgstr "Блок паслуга з загалоўкам"
|
430 |
+
|
431 |
+
#: lib/available.php:385
|
432 |
+
msgid "Box style"
|
433 |
+
msgstr "Стыль блока"
|
434 |
+
|
435 |
+
#: lib/available.php:393
|
436 |
+
msgid "Show login message"
|
437 |
+
msgstr "Паказваць прапанова ўвайсці"
|
438 |
+
|
439 |
+
#: lib/available.php:397
|
440 |
+
msgid "Content for logged members"
|
441 |
+
msgstr "Змесціва для залогиненых карыстачоў"
|
442 |
+
|
443 |
+
#: lib/available.php:398
|
444 |
+
msgid "Content for logged in members only"
|
445 |
+
msgstr "Ссодержимое толькі для залогиненных"
|
446 |
+
|
447 |
+
#: lib/available.php:406
|
448 |
+
msgid "Content for guests"
|
449 |
+
msgstr "Змесціва для госцяў"
|
450 |
+
|
451 |
+
#: lib/available.php:407
|
452 |
+
msgid "Content for guests only"
|
453 |
+
msgstr "Ссодержимое толькі для госцяў"
|
454 |
+
|
455 |
+
#: lib/available.php:416
|
456 |
+
#: lib/available.php:417
|
457 |
+
msgid "Box title"
|
458 |
+
msgstr "Загаловак блока"
|
459 |
+
|
460 |
+
#: lib/available.php:422
|
461 |
+
msgid "Box color"
|
462 |
+
msgstr "Колер блока"
|
463 |
+
|
464 |
+
#: lib/available.php:427
|
465 |
+
msgid "Box content"
|
466 |
+
msgstr "Змесціва блока"
|
467 |
+
|
468 |
+
#: lib/available.php:428
|
469 |
+
msgid "Colored box with caption"
|
470 |
+
msgstr "Каляровы блок з загалоўкам"
|
471 |
+
|
472 |
+
#: lib/available.php:438
|
473 |
+
msgid "Note color"
|
474 |
+
msgstr "Колер блока"
|
475 |
+
|
476 |
+
#: lib/available.php:443
|
477 |
+
msgid "Note text"
|
478 |
+
msgstr "Тэкст нататкі"
|
479 |
+
|
480 |
+
#: lib/available.php:444
|
481 |
+
msgid "Colored box"
|
482 |
+
msgstr "Каляровы блок"
|
483 |
+
|
484 |
+
#: lib/available.php:452
|
485 |
+
msgid "Private note text"
|
486 |
+
msgstr "Тэкст прыватнай нататкі"
|
487 |
+
|
488 |
+
#: lib/available.php:453
|
489 |
+
msgid "Private note for post authors"
|
490 |
+
msgstr "Прыватны тэкст для іншых аўтараў"
|
491 |
+
|
492 |
+
#: lib/available.php:479
|
493 |
+
msgid "List style"
|
494 |
+
msgstr "Стыль спісу"
|
495 |
+
|
496 |
+
#: lib/available.php:483
|
497 |
+
msgid "List item "
|
498 |
+
msgstr "Элемент спісу"
|
499 |
+
|
500 |
+
#: lib/available.php:484
|
501 |
+
msgid "Styled unordered list"
|
502 |
+
msgstr "Стыльны неўпарадкаваны спіс"
|
503 |
+
|
504 |
+
#: lib/available.php:494
|
505 |
+
msgid "Feed URL"
|
506 |
+
msgstr "URL стужкі"
|
507 |
+
|
508 |
+
#: lib/available.php:505
|
509 |
+
msgid "Number of item to show"
|
510 |
+
msgstr "Колькасць элементаў для паказу"
|
511 |
+
|
512 |
+
#: lib/available.php:509
|
513 |
+
msgid "Feed grabber"
|
514 |
+
msgstr "Граббер навінавых стужак"
|
515 |
+
|
516 |
+
#: lib/available.php:519
|
517 |
+
msgid "Custom menu name"
|
518 |
+
msgstr "Імя адвольнага меню"
|
519 |
+
|
520 |
+
#: lib/available.php:523
|
521 |
+
msgid "Custom menu by name"
|
522 |
+
msgstr "Адвольнае меню"
|
523 |
+
|
524 |
+
#: lib/available.php:537
|
525 |
+
#: lib/available.php:560
|
526 |
+
msgid "Depth level"
|
527 |
+
msgstr "Глыбіня"
|
528 |
+
|
529 |
+
#: lib/available.php:542
|
530 |
+
msgid "Parent page ID"
|
531 |
+
msgstr "ID бацькоўскай старонкі"
|
532 |
+
|
533 |
+
#: lib/available.php:546
|
534 |
+
msgid "Page childrens"
|
535 |
+
msgstr "Нашчадкі старонкі"
|
536 |
+
|
537 |
+
#: lib/available.php:564
|
538 |
+
msgid "Page siblings"
|
539 |
+
msgstr "Браты старонкі"
|
540 |
+
|
541 |
+
#: lib/available.php:586
|
542 |
+
msgid "Column width"
|
543 |
+
msgstr "Шырыня калонкі"
|
544 |
+
|
545 |
+
#: lib/available.php:594
|
546 |
+
msgid "Last column"
|
547 |
+
msgstr "Апошняя калонка"
|
548 |
+
|
549 |
+
#: lib/available.php:603
|
550 |
+
msgid "Column style"
|
551 |
+
msgstr "Стыль калонкі"
|
552 |
+
|
553 |
+
#: lib/available.php:607
|
554 |
+
msgid "Column content"
|
555 |
+
msgstr "Змесціва калонкі"
|
556 |
+
|
557 |
+
#: lib/available.php:608
|
558 |
+
msgid "Flexible columns"
|
559 |
+
msgstr "Резновые калонкі"
|
560 |
+
|
561 |
+
#: lib/available.php:622
|
562 |
+
msgid "Table style"
|
563 |
+
msgstr "Стыль табліцы"
|
564 |
+
|
565 |
+
#: lib/available.php:627
|
566 |
+
msgid "Create table from CSV"
|
567 |
+
msgstr "Стварэнне табліцы з CSV файла"
|
568 |
+
|
569 |
+
#: lib/available.php:632
|
570 |
+
msgid "Styled table from HTML or CSV file"
|
571 |
+
msgstr "Стыльная табліца з HTML ці CSV файла"
|
572 |
+
|
573 |
+
#: lib/available.php:642
|
574 |
+
msgid "Media URL"
|
575 |
+
msgstr "Спасылка на медыя"
|
576 |
+
|
577 |
+
#: lib/available.php:647
|
578 |
+
#: lib/available.php:671
|
579 |
+
#: lib/available.php:690
|
580 |
+
msgid "Width"
|
581 |
+
msgstr "Шырыня"
|
582 |
+
|
583 |
+
#: lib/available.php:652
|
584 |
+
#: lib/available.php:676
|
585 |
+
#: lib/available.php:695
|
586 |
+
msgid "Height"
|
587 |
+
msgstr "Вышыня"
|
588 |
+
|
589 |
+
#: lib/available.php:656
|
590 |
+
msgid "YouTube video, Vimeo video, .mp4/.flv video, .mp3 file or images"
|
591 |
+
msgstr "YouTube відэа, Vimeo відэа, .mp4/.flv відэа, .mp3 файл ці малюнкі"
|
592 |
+
|
593 |
+
#: lib/available.php:666
|
594 |
+
msgid "Document URL"
|
595 |
+
msgstr "Спасылка на дакумент"
|
596 |
+
|
597 |
+
#: lib/available.php:680
|
598 |
+
msgid ".doc, .xls, .pdf viewer by Google"
|
599 |
+
msgstr ".doc, .xls, .pdf прагляднік ад Google"
|
600 |
+
|
601 |
+
#: lib/available.php:700
|
602 |
+
msgid "Marker address"
|
603 |
+
msgstr "Адрас маркера"
|
604 |
+
|
605 |
+
#: lib/available.php:704
|
606 |
+
msgid "Maps by Google"
|
607 |
+
msgstr "Карты ад Google"
|
608 |
+
|
609 |
+
#: lib/available.php:718
|
610 |
+
#: lib/available.php:788
|
611 |
+
#: lib/available.php:860
|
612 |
+
msgid "Source of images"
|
613 |
+
msgstr "Крыніца малюнкаў"
|
614 |
+
|
615 |
+
#: lib/available.php:729
|
616 |
+
#: lib/available.php:799
|
617 |
+
#: lib/available.php:871
|
618 |
+
msgid "Images links"
|
619 |
+
msgstr "Спасылкі з малюнкаў"
|
620 |
+
|
621 |
+
#: lib/available.php:740
|
622 |
+
msgid "Slider size"
|
623 |
+
msgstr "Памер слайдара"
|
624 |
+
|
625 |
+
#: lib/available.php:750
|
626 |
+
msgid "Number of slides"
|
627 |
+
msgstr "Колькасць слайдаў"
|
628 |
+
|
629 |
+
#: lib/available.php:760
|
630 |
+
msgid "Animation effect"
|
631 |
+
msgstr "Эфект анімацыі"
|
632 |
+
|
633 |
+
#: lib/available.php:765
|
634 |
+
#: lib/available.php:833
|
635 |
+
msgid "Animation speed (1000 = 1 second)"
|
636 |
+
msgstr "Хуткасць анімацыі (1000 = 1 секунда)"
|
637 |
+
|
638 |
+
#: lib/available.php:770
|
639 |
+
msgid "Animation delay (1000 = 1 second)"
|
640 |
+
msgstr "Затрымка анімацыі (1000 = 1 секунда)"
|
641 |
+
|
642 |
+
#: lib/available.php:774
|
643 |
+
msgid "Nivo slider by attached to post images"
|
644 |
+
msgstr "Nivo slider з малюнкаў запісу"
|
645 |
+
|
646 |
+
#: lib/available.php:809
|
647 |
+
msgid "Carousel item size"
|
648 |
+
msgstr "Памер элементаў каруселі"
|
649 |
+
|
650 |
+
#: lib/available.php:819
|
651 |
+
#: lib/available.php:891
|
652 |
+
msgid "Number of items"
|
653 |
+
msgstr "Колькасць элементаў"
|
654 |
+
|
655 |
+
#: lib/available.php:828
|
656 |
+
msgid "Number of items in viewport"
|
657 |
+
msgstr "Колькасць элементаў у видмой часці"
|
658 |
+
|
659 |
+
#: lib/available.php:842
|
660 |
+
msgid "Space between items in pixels"
|
661 |
+
msgstr "Адлегласць паміж элементамі ў пікселях"
|
662 |
+
|
663 |
+
#: lib/available.php:846
|
664 |
+
msgid "jCarousel by attached to post images"
|
665 |
+
msgstr "jCarousel з малюнкаў запісу"
|
666 |
+
|
667 |
+
#: lib/available.php:881
|
668 |
+
msgid "Gallery item size"
|
669 |
+
msgstr "Памер мініяцюр"
|
670 |
+
|
671 |
+
#: lib/available.php:895
|
672 |
+
msgid "Custom gallery by attached to post images"
|
673 |
+
msgstr "Адвольная галерэя"
|
674 |
+
|
675 |
+
#: lib/available.php:905
|
676 |
+
msgid "Twitter username"
|
677 |
+
msgstr "Імя карыстача"
|
678 |
+
|
679 |
+
#: lib/available.php:916
|
680 |
+
msgid "Number of tweets to show"
|
681 |
+
msgstr "Колькасць твитов для паказу"
|
682 |
+
|
683 |
+
#: lib/available.php:924
|
684 |
+
msgid "Tweets style"
|
685 |
+
msgstr "Стыль твитов"
|
686 |
+
|
687 |
+
#: lib/available.php:932
|
688 |
+
msgid "Show relative time"
|
689 |
+
msgstr "Паказваць час"
|
690 |
+
|
691 |
+
#: lib/available.php:936
|
692 |
+
msgid "Recent tweets"
|
693 |
+
msgstr "Апошнія твиты"
|
694 |
+
|
695 |
+
#: lib/generator.php:48
|
696 |
+
msgid "Content"
|
697 |
+
msgstr "Змесціва"
|
698 |
+
|
699 |
+
#: lib/generator.php:51
|
700 |
+
msgid "Insert"
|
701 |
+
msgstr "Уставіць"
|
702 |
+
|
703 |
+
#: lib/shortcodes.php:101
|
704 |
+
msgid "Top"
|
705 |
+
msgstr "Угару"
|
706 |
+
|
707 |
+
#: lib/shortcodes.php:301
|
708 |
+
msgid "Service name"
|
709 |
+
msgstr "Назва паслугі"
|
710 |
+
|
711 |
+
#: lib/shortcodes.php:319
|
712 |
+
msgid "This is box title"
|
713 |
+
msgstr "Загаловак блока"
|
714 |
+
|
715 |
+
#: lib/shortcodes.php:381
|
716 |
+
msgid "Please specify media url"
|
717 |
+
msgstr "Пакажыце спасылку на медыя"
|
718 |
+
|
719 |
+
#: lib/shortcodes.php:471
|
720 |
+
#: lib/shortcodes.php:524
|
721 |
+
#: lib/shortcodes.php:568
|
722 |
+
msgid "no attached images, or only one attached image"
|
723 |
+
msgstr "не знойдзены загружаныя малюнкі, ці малюнак усяго адно"
|
724 |
+
|
725 |
+
#: lib/shortcodes.php:683
|
726 |
+
msgid "This menu doesn't exists, or has no elements"
|
727 |
+
msgstr "Такое меню не існуе, ці ў ім няма ніводнага элемента"
|
728 |
+
|
729 |
+
#: lib/shortcodes.php:740
|
730 |
+
msgid "This content is for members only."
|
731 |
+
msgstr "Гэта змесціва толькі для ўдзельнікаў."
|
732 |
+
|
733 |
+
#: lib/shortcodes.php:740
|
734 |
+
msgid "Please login"
|
735 |
+
msgstr "Калі ласка ўвайдзіце"
|
736 |
+
|
737 |
+
#: lib/twitter.php:9
|
738 |
+
msgid "year"
|
739 |
+
msgstr "год"
|
740 |
+
|
741 |
+
#: lib/twitter.php:10
|
742 |
+
msgid "month"
|
743 |
+
msgstr "месяц"
|
744 |
+
|
745 |
+
#: lib/twitter.php:11
|
746 |
+
msgid "week"
|
747 |
+
msgstr "тыдзень"
|
748 |
+
|
749 |
+
#: lib/twitter.php:12
|
750 |
+
msgid "day"
|
751 |
+
msgstr "дзень"
|
752 |
+
|
753 |
+
#: lib/twitter.php:13
|
754 |
+
msgid "hour"
|
755 |
+
msgstr "гадзіна"
|
756 |
+
|
757 |
+
#: lib/twitter.php:14
|
758 |
+
msgid "minute"
|
759 |
+
msgstr "хвіліна"
|
760 |
+
|
761 |
+
#: lib/twitter.php:28
|
762 |
+
#: lib/twitter.php:36
|
763 |
+
msgid "s"
|
764 |
+
msgstr "з"
|
765 |
+
|
766 |
+
#: lib/twitter.php:73
|
767 |
+
msgid "username not specified"
|
768 |
+
msgstr "імя карыстача не зададзена"
|
769 |
+
|
770 |
+
#: lib/twitter.php:76
|
771 |
+
msgid "no public messages"
|
772 |
+
msgstr "няма публічных твитов"
|
773 |
+
|
774 |
+
#~ msgid "Attention! [nivo_slider] and [jcarousel] was improved and modified!"
|
775 |
+
#~ msgstr ""
|
776 |
+
#~ "Увага! Шорткоды [nivo_slider] і [jcarousel] былі палепшаны і зменены!"
|
777 |
+
|
778 |
+
#~ msgid "View details"
|
779 |
+
#~ msgstr "Глядзець дэталі"
|
780 |
+
|
781 |
+
#~ msgid "Slider height"
|
782 |
+
#~ msgstr "Вышыня слайдара"
|
783 |
+
|
784 |
+
#~ msgid "Slides links"
|
785 |
+
#~ msgstr "Спасылкі слайдаў"
|
786 |
+
|
787 |
+
#~ msgid "Carousel height"
|
788 |
+
#~ msgstr "Вышыня каруселі"
|
789 |
+
|
790 |
+
#~ msgid "Carousel background"
|
791 |
+
#~ msgstr "Фон каруселі"
|
792 |
+
|
793 |
+
#~ msgid "Support"
|
794 |
+
#~ msgstr "Форум падтрымкі"
|
795 |
+
|
796 |
+
#~ msgid "You can define custom styles for each columns set"
|
797 |
+
#~ msgstr "Вы можаце вызначыць адмысловыя стылі для кожнага набору калонак"
|
798 |
+
|
799 |
+
#~ msgid "Tab name"
|
800 |
+
#~ msgstr "Імя ўкладкі"
|
801 |
+
|
802 |
+
#~ msgid "See available values"
|
803 |
+
#~ msgstr "Магчымыя значэнні (ангел.)"
|
804 |
+
|
805 |
+
#~ msgid "Read more"
|
806 |
+
#~ msgstr "Падрабязней"
|
807 |
+
|
808 |
+
#~ msgid "image url"
|
809 |
+
#~ msgstr "спасылка на малюнак"
|
810 |
+
|
811 |
+
#~ msgid "Plain table"
|
812 |
+
#~ msgstr "Простая табліца"
|
813 |
+
|
814 |
+
#~ msgid "From CSV"
|
815 |
+
#~ msgstr "З CSV-файла"
|
816 |
+
|
817 |
+
#~ msgid "1 second"
|
818 |
+
#~ msgstr "1 секунда"
|
819 |
+
|
820 |
+
#~ msgid "See filter IDs"
|
821 |
+
#~ msgstr "Глядзець ID фільтраў"
|
822 |
+
|
823 |
+
#~ msgid "General settings"
|
824 |
+
#~ msgstr "Асноўныя налады"
|
825 |
+
|
826 |
+
#~ msgid "Available shortcodes"
|
827 |
+
#~ msgstr "Спіс шорткодов"
|
828 |
+
|
829 |
+
#~ msgid "Specify menu name and add elements to menu"
|
830 |
+
#~ msgstr "Пакажыце імя меню, ці дадайце элементы ва укзанное меню"
|
831 |
+
|
832 |
+
#~ msgid "Support links"
|
833 |
+
#~ msgstr "Карысныя спасылкі"
|
834 |
+
|
835 |
+
#~ msgid "You can support this project by buying the author a cup of coffee!"
|
836 |
+
#~ msgstr "Вы можаце падтрымаць гэты праект, купіўшы аўтару кубачак кавы!"
|
837 |
+
|
838 |
+
#~ msgid "Donate with MoneyBookers.com"
|
839 |
+
#~ msgstr "Зрабіць ахвяраванне праз MoneyBookers.com"
|
840 |
+
|
841 |
+
#~ msgid "Donation to help support Shortcodes Ultimate plugin"
|
842 |
+
#~ msgstr "Ахвяраванне аўтару ўбудовы Shortcodes Ultimate"
|
843 |
+
|
844 |
+
#~ msgid "Click to make a donation"
|
845 |
+
#~ msgstr "Клікніце, каб зрабіць ахвяраванне"
|
846 |
+
|
847 |
+
#~ msgid "Donate with Money.Yandex.ru"
|
848 |
+
#~ msgstr "Зрабіць ахвяраванне праз Money.Yandex.ru"
|
849 |
+
|
850 |
+
#~ msgid "Donate with WebMoney.ru"
|
851 |
+
#~ msgstr "Зрабіць ахвяраванне праз WebMoney.ru"
|
852 |
+
|
853 |
+
#~ msgid "Want to support author? Just share this link!"
|
854 |
+
#~ msgstr "Жадаеце падтрымаць аўтара? Проста опубликйте спасылку!"
|
855 |
+
|
856 |
+
#~ msgid "Share on Facebook"
|
857 |
+
#~ msgstr "Апублікаваць на Facebook"
|
858 |
+
|
859 |
+
#~ msgid "Share on Twitter"
|
860 |
+
#~ msgstr "Апублікаваць на Twitter"
|
861 |
+
|
862 |
+
#~ msgid "Shortcodes ultimate settings"
|
863 |
+
#~ msgstr "Налады Shortcodes Ultimate"
|
864 |
+
|
865 |
+
#~ msgid "Contact author"
|
866 |
+
#~ msgstr "Звязацца з распрацоўнікам"
|
867 |
+
|
868 |
+
#~ msgid "Coming soon"
|
869 |
+
#~ msgstr "З'явіцца хуткім часам"
|
870 |
+
|
871 |
+
#~ msgid "Visit"
|
872 |
+
#~ msgstr "Наведаеце"
|
languages/shortcodes-ultimate-ru_RU.mo
CHANGED
Binary file
|
languages/shortcodes-ultimate-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gn_themes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -15,7 +15,8 @@ msgstr ""
|
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
#: shortcodes-ultimate.php:184
|
18 |
-
#: lib/admin.php:
|
|
|
19 |
msgid "Shortcodes Ultimate"
|
20 |
msgstr "Шорткоды"
|
21 |
|
@@ -29,17 +30,17 @@ msgstr "Предоставляет поддержку множества пол
|
|
29 |
|
30 |
#: shortcodes-ultimate.php:270
|
31 |
#: shortcodes-ultimate.php:321
|
32 |
-
#: lib/admin.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Настройки"
|
35 |
|
36 |
#: shortcodes-ultimate.php:283
|
37 |
-
#: lib/admin.php:
|
38 |
msgid "Settings saved"
|
39 |
msgstr "Настройки сохранены"
|
40 |
|
41 |
#: shortcodes-ultimate.php:288
|
42 |
-
#: lib/admin.php:
|
43 |
msgid "Custom CSS saved"
|
44 |
msgstr "Произвольные стили сохранены"
|
45 |
|
@@ -56,156 +57,148 @@ msgid "Color picker"
|
|
56 |
msgstr "Подбор цвета"
|
57 |
|
58 |
#: shortcodes-ultimate.php:323
|
59 |
-
#: lib/admin.php:
|
60 |
msgid "Support forum"
|
61 |
msgstr "Форум поддержки"
|
62 |
|
63 |
-
#: lib/admin.php:
|
64 |
-
|
|
|
|
|
|
|
|
|
65 |
msgid "Shortcodes"
|
66 |
msgstr "Шорткоды"
|
67 |
|
68 |
-
#: lib/admin.php:
|
69 |
msgid "About"
|
70 |
msgstr "О плагине"
|
71 |
|
72 |
-
#: lib/admin.php:
|
73 |
msgid "Custom CSS"
|
74 |
msgstr "Произвольные стили"
|
75 |
|
76 |
-
#: lib/admin.php:
|
77 |
-
#: lib/admin.php:
|
78 |
#: lib/generator.php:52
|
79 |
msgid "Demo"
|
80 |
msgstr "Демо"
|
81 |
|
82 |
-
#: lib/admin.php:
|
83 |
msgid "For full functionality of this page it is recommended to enable JavaScript."
|
84 |
msgstr "На этой странице рекомендуется включить Javascript."
|
85 |
|
86 |
-
#: lib/admin.php:
|
87 |
msgid "Instructions"
|
88 |
msgstr "Инструкции"
|
89 |
|
90 |
-
#: lib/admin.php:
|
91 |
msgid "FREE Support"
|
92 |
msgstr "БЕСПЛАТНАЯ поддержка"
|
93 |
|
94 |
-
#: lib/admin.php:
|
95 |
msgid "Twitter"
|
96 |
msgstr "Твиттер разработчика"
|
97 |
|
98 |
-
#: lib/admin.php:
|
99 |
-
msgid "Bug report"
|
100 |
-
msgstr "Сообщить об ошибке"
|
101 |
-
|
102 |
-
#: lib/admin.php:50
|
103 |
msgid "Do you love this plugin?"
|
104 |
msgstr "Вам нравится этот плагин?"
|
105 |
|
106 |
-
#: lib/admin.php:
|
107 |
-
msgid "Buy author a beer"
|
108 |
-
msgstr "Купите автору пива"
|
109 |
-
|
110 |
-
#: lib/admin.php:51
|
111 |
-
msgid "Donate"
|
112 |
-
msgstr "Сделать пожертвование"
|
113 |
-
|
114 |
-
#: lib/admin.php:52
|
115 |
msgid "Rate this plugin at wordpress.org"
|
116 |
msgstr "Оцените плагин на wordpress.org"
|
117 |
|
118 |
-
#: lib/admin.php:
|
119 |
msgid "5 stars"
|
120 |
msgstr "5 звезд"
|
121 |
|
122 |
-
#: lib/admin.php:
|
123 |
msgid "Review this plugin in your blog"
|
124 |
msgstr "Сделайте обзор этого плагина в своем блоге"
|
125 |
|
126 |
-
#: lib/admin.php:
|
127 |
-
#: lib/admin.php:
|
128 |
msgid "Saving..."
|
129 |
msgstr "Сохранение..."
|
130 |
|
131 |
-
#: lib/admin.php:
|
132 |
msgid "Disable custom formatting"
|
133 |
msgstr "Отключить специальное форматирование"
|
134 |
|
135 |
-
#: lib/admin.php:
|
136 |
msgid "Enable this option if you have some problems with other plugins or content formatting"
|
137 |
msgstr "Отметьте этот флажок, если у вас возникли пролемы совместимости с другими плагинами или форматированием контента"
|
138 |
|
139 |
-
#: lib/admin.php:
|
140 |
msgid "Compatibility mode"
|
141 |
msgstr "Режим совместимости"
|
142 |
|
143 |
-
#: lib/admin.php:
|
144 |
msgid "Enable this option if you have some problems with other plugins that uses similar shortcode names"
|
145 |
msgstr "Отметьте этот флажок, если у вас используются другие шорткоды с такими же именами. Все шорткоды этого плагина будут иметь такие имена"
|
146 |
|
147 |
-
#: lib/admin.php:
|
148 |
msgid "Forum topic"
|
149 |
msgstr "Тема на форуме (англ.)"
|
150 |
|
151 |
-
#: lib/admin.php:
|
152 |
msgid "Disable scripts"
|
153 |
msgstr "Отключить скрипты"
|
154 |
|
155 |
-
#: lib/admin.php:
|
156 |
-
#: lib/admin.php:
|
157 |
-
#: lib/admin.php:
|
158 |
-
#: lib/admin.php:
|
159 |
-
#: lib/admin.php:
|
160 |
-
#: lib/admin.php:
|
161 |
-
#: lib/admin.php:
|
162 |
-
#: lib/admin.php:
|
163 |
msgid "Disable"
|
164 |
msgstr "Отключить"
|
165 |
|
166 |
-
#: lib/admin.php:
|
167 |
msgid "Check scripts, that you want to exclude form wp_head section"
|
168 |
msgstr "Отметьте скрипты, которые вы хотите исключить в wp_head"
|
169 |
|
170 |
-
#: lib/admin.php:
|
171 |
-
#: lib/admin.php:
|
172 |
msgid "Be careful with this settings!"
|
173 |
msgstr "Будьте осторожны с этими настройками!"
|
174 |
|
175 |
-
#: lib/admin.php:
|
176 |
msgid "Disable styles"
|
177 |
msgstr "Отключить файлы стилей"
|
178 |
|
179 |
-
#: lib/admin.php:
|
180 |
msgid "Check stylesheets, that you want to exclude form wp_head section"
|
181 |
msgstr "Отметьте файлы стилей, которые вы хотите исключить в wp_head"
|
182 |
|
183 |
-
#: lib/admin.php:
|
184 |
msgid "Save settings"
|
185 |
msgstr "Сохранить настройки"
|
186 |
|
187 |
-
#: lib/admin.php:
|
188 |
msgid "You can add custom styles, that will override defaults"
|
189 |
msgstr "Вы можете добавить произвольные стили, которые заменят оригинальные стили для шорткодов"
|
190 |
|
191 |
-
#: lib/admin.php:
|
192 |
msgid "See original styles"
|
193 |
msgstr "Смотреть оригинальные стили"
|
194 |
|
195 |
-
#: lib/admin.php:
|
196 |
msgid "Save styles"
|
197 |
msgstr "Сохранить стили"
|
198 |
|
199 |
-
#: lib/admin.php:
|
200 |
-
#: lib/admin.php:
|
201 |
msgid "Shortcode"
|
202 |
msgstr "Шорткоды"
|
203 |
|
204 |
-
#: lib/admin.php:
|
205 |
msgid "Parameters"
|
206 |
msgstr "Параметры"
|
207 |
|
208 |
-
#: lib/admin.php:
|
209 |
msgid "Usage"
|
210 |
msgstr "Пример использования"
|
211 |
|
@@ -321,372 +314,388 @@ msgstr "Цвет текста"
|
|
321 |
msgid "Highlighted text"
|
322 |
msgstr "Подсвеченный текст"
|
323 |
|
324 |
-
#: lib/available.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
msgid "Option name"
|
326 |
msgstr "Имя опции"
|
327 |
|
328 |
-
#: lib/available.php:
|
329 |
msgid "Blog info"
|
330 |
msgstr "Инфо блога"
|
331 |
|
332 |
-
#: lib/available.php:
|
333 |
msgid "Post/page ID"
|
334 |
msgstr "ID записи/страницы"
|
335 |
|
336 |
-
#: lib/available.php:
|
337 |
msgid "Link target"
|
338 |
msgstr "Цель ссылки"
|
339 |
|
340 |
-
#: lib/available.php:
|
341 |
msgid "Permalink text"
|
342 |
msgstr "Текст постоянной ссылки"
|
343 |
|
344 |
-
#: lib/available.php:
|
345 |
msgid "Permalink to specified post/page"
|
346 |
msgstr "Постоянная ссылка на указанную запись/страницу"
|
347 |
|
348 |
-
#: lib/available.php:
|
349 |
msgid "Button link"
|
350 |
msgstr "Ссылка кнопки"
|
351 |
|
352 |
-
#: lib/available.php:
|
353 |
msgid "Button background color"
|
354 |
msgstr "Цвет фона кнопки"
|
355 |
|
356 |
-
#: lib/available.php:
|
357 |
msgid "Button size"
|
358 |
msgstr "Размер кнопки"
|
359 |
|
360 |
-
#: lib/available.php:
|
361 |
msgid "Button background style"
|
362 |
msgstr "Стиль фона кнопки"
|
363 |
|
364 |
-
#: lib/available.php:
|
365 |
msgid "Dark text color"
|
366 |
msgstr "Темный цвет текста"
|
367 |
|
368 |
-
#: lib/available.php:
|
369 |
msgid "Disable rounded corners"
|
370 |
msgstr "Отключить скругленные уголки"
|
371 |
|
372 |
-
#: lib/available.php:
|
373 |
msgid "Button icon"
|
374 |
msgstr "Иконка кнопки"
|
375 |
|
376 |
-
#: lib/available.php:
|
377 |
msgid "Button class"
|
378 |
msgstr "Класс кнопки"
|
379 |
|
380 |
-
#: lib/available.php:
|
381 |
msgid "Button link target"
|
382 |
msgstr "Цель ссылки кнопки"
|
383 |
|
384 |
-
#: lib/available.php:
|
385 |
msgid "Button text"
|
386 |
msgstr "Текст кнопки"
|
387 |
|
388 |
-
#: lib/available.php:
|
389 |
msgid "Styled button"
|
390 |
msgstr "Стильная кнопка"
|
391 |
|
392 |
-
#: lib/available.php:
|
393 |
msgid "Link color"
|
394 |
msgstr "Цвет ссылки"
|
395 |
|
396 |
-
#: lib/available.php:
|
397 |
msgid "URL"
|
398 |
msgstr "URL"
|
399 |
|
400 |
-
#: lib/available.php:
|
401 |
msgid "Link text"
|
402 |
msgstr "Текст ссылки"
|
403 |
|
404 |
-
#: lib/available.php:
|
405 |
msgid "Fancy link"
|
406 |
msgstr "Стильная ссылка"
|
407 |
|
408 |
-
#: lib/available.php:
|
409 |
-
#: lib/available.php:
|
410 |
msgid "Service title"
|
411 |
msgstr "Название услуги"
|
412 |
|
413 |
-
#: lib/available.php:
|
414 |
msgid "Service icon"
|
415 |
msgstr "Иконка услуги"
|
416 |
|
417 |
-
#: lib/available.php:
|
418 |
msgid "Icon size"
|
419 |
msgstr "Размер иконки"
|
420 |
|
421 |
-
#: lib/available.php:
|
422 |
msgid "Service description"
|
423 |
msgstr "Описание услуги"
|
424 |
|
425 |
-
#: lib/available.php:
|
426 |
msgid "Service box with title"
|
427 |
msgstr "Блок услуга с заголовком"
|
428 |
|
429 |
-
#: lib/available.php:
|
430 |
msgid "Box style"
|
431 |
msgstr "Стиль блока"
|
432 |
|
433 |
-
#: lib/available.php:
|
434 |
msgid "Show login message"
|
435 |
msgstr "Показывать предложение войти"
|
436 |
|
437 |
-
#: lib/available.php:
|
438 |
msgid "Content for logged members"
|
439 |
msgstr "Содержимое для залогиненых пользователей"
|
440 |
|
441 |
-
#: lib/available.php:
|
442 |
msgid "Content for logged in members only"
|
443 |
msgstr "Ссодержимое только для залогиненных"
|
444 |
|
445 |
-
#: lib/available.php:
|
446 |
msgid "Content for guests"
|
447 |
msgstr "Содержимое для гостей"
|
448 |
|
449 |
-
#: lib/available.php:
|
450 |
msgid "Content for guests only"
|
451 |
msgstr "Ссодержимое только для гостей"
|
452 |
|
453 |
-
#: lib/available.php:
|
454 |
-
#: lib/available.php:
|
455 |
msgid "Box title"
|
456 |
msgstr "Заголовок блока"
|
457 |
|
458 |
-
#: lib/available.php:
|
459 |
msgid "Box color"
|
460 |
msgstr "Цвет блока"
|
461 |
|
462 |
-
#: lib/available.php:
|
463 |
msgid "Box content"
|
464 |
msgstr "Содержимое блока"
|
465 |
|
466 |
-
#: lib/available.php:
|
467 |
msgid "Colored box with caption"
|
468 |
msgstr "Цветной блок с заголовком"
|
469 |
|
470 |
-
#: lib/available.php:
|
471 |
msgid "Note color"
|
472 |
msgstr "Цвет блока"
|
473 |
|
474 |
-
#: lib/available.php:
|
475 |
msgid "Note text"
|
476 |
msgstr "Текст заметки"
|
477 |
|
478 |
-
#: lib/available.php:
|
479 |
msgid "Colored box"
|
480 |
msgstr "Цветной блок"
|
481 |
|
482 |
-
#: lib/available.php:
|
483 |
msgid "Private note text"
|
484 |
msgstr "Текст приватной заметки"
|
485 |
|
486 |
-
#: lib/available.php:
|
487 |
msgid "Private note for post authors"
|
488 |
msgstr "Приватный текст для других авторов"
|
489 |
|
490 |
-
#: lib/available.php:
|
491 |
msgid "List style"
|
492 |
msgstr "Стиль списка"
|
493 |
|
494 |
-
#: lib/available.php:
|
495 |
msgid "List item "
|
496 |
msgstr "Элемент списка"
|
497 |
|
498 |
-
#: lib/available.php:
|
499 |
msgid "Styled unordered list"
|
500 |
msgstr "Стильный неупорядоченный список"
|
501 |
|
502 |
-
#: lib/available.php:
|
503 |
msgid "Feed URL"
|
504 |
msgstr "URL ленты"
|
505 |
|
506 |
-
#: lib/available.php:
|
507 |
msgid "Number of item to show"
|
508 |
msgstr "Количество элементов для показа"
|
509 |
|
510 |
-
#: lib/available.php:
|
511 |
msgid "Feed grabber"
|
512 |
msgstr "Граббер новостных лент"
|
513 |
|
514 |
-
#: lib/available.php:
|
515 |
msgid "Custom menu name"
|
516 |
msgstr "Имя произвольного меню"
|
517 |
|
518 |
-
#: lib/available.php:
|
519 |
msgid "Custom menu by name"
|
520 |
msgstr "Произвольное меню"
|
521 |
|
522 |
-
#: lib/available.php:
|
523 |
-
#: lib/available.php:
|
524 |
msgid "Depth level"
|
525 |
msgstr "Глубина"
|
526 |
|
527 |
-
#: lib/available.php:
|
528 |
msgid "Parent page ID"
|
529 |
msgstr "ID родительской страницы"
|
530 |
|
531 |
-
#: lib/available.php:
|
532 |
msgid "Page childrens"
|
533 |
msgstr "Потомки страницы"
|
534 |
|
535 |
-
#: lib/available.php:
|
536 |
msgid "Page siblings"
|
537 |
msgstr "Братья страницы"
|
538 |
|
539 |
-
#: lib/available.php:
|
540 |
msgid "Column width"
|
541 |
msgstr "Ширина колонки"
|
542 |
|
543 |
-
#: lib/available.php:
|
544 |
msgid "Last column"
|
545 |
msgstr "Последняя колонка"
|
546 |
|
547 |
-
#: lib/available.php:
|
548 |
msgid "Column style"
|
549 |
msgstr "Стиль колонки"
|
550 |
|
551 |
-
#: lib/available.php:
|
552 |
msgid "Column content"
|
553 |
msgstr "Содержимое колонки"
|
554 |
|
555 |
-
#: lib/available.php:
|
556 |
msgid "Flexible columns"
|
557 |
msgstr "Резновые колонки"
|
558 |
|
559 |
-
#: lib/available.php:
|
560 |
msgid "Table style"
|
561 |
msgstr "Стиль таблицы"
|
562 |
|
563 |
-
#: lib/available.php:
|
564 |
msgid "Create table from CSV"
|
565 |
msgstr "Создание таблицы из CSV файла"
|
566 |
|
567 |
-
#: lib/available.php:
|
568 |
msgid "Styled table from HTML or CSV file"
|
569 |
msgstr "Стильная таблица из HTML или CSV файла"
|
570 |
|
571 |
-
#: lib/available.php:
|
572 |
msgid "Media URL"
|
573 |
msgstr "Ссылка на медиа"
|
574 |
|
575 |
-
#: lib/available.php:
|
576 |
-
#: lib/available.php:
|
577 |
-
#: lib/available.php:
|
578 |
msgid "Width"
|
579 |
msgstr "Ширина"
|
580 |
|
581 |
-
#: lib/available.php:
|
582 |
-
#: lib/available.php:
|
583 |
-
#: lib/available.php:
|
584 |
msgid "Height"
|
585 |
msgstr "Высота"
|
586 |
|
587 |
-
#: lib/available.php:
|
588 |
msgid "YouTube video, Vimeo video, .mp4/.flv video, .mp3 file or images"
|
589 |
msgstr "YouTube видео, Vimeo видео, .mp4/.flv видео, .mp3 файл или изображения"
|
590 |
|
591 |
-
#: lib/available.php:
|
592 |
msgid "Document URL"
|
593 |
msgstr "Ссылка на документ"
|
594 |
|
595 |
-
#: lib/available.php:
|
596 |
msgid ".doc, .xls, .pdf viewer by Google"
|
597 |
msgstr ".doc, .xls, .pdf просмотрщик от Google"
|
598 |
|
599 |
-
#: lib/available.php:
|
600 |
msgid "Marker address"
|
601 |
msgstr "Адрес маркера"
|
602 |
|
603 |
-
#: lib/available.php:
|
604 |
msgid "Maps by Google"
|
605 |
msgstr "Карты от Google"
|
606 |
|
607 |
-
#: lib/available.php:
|
608 |
-
#: lib/available.php:
|
609 |
-
#: lib/available.php:
|
610 |
msgid "Source of images"
|
611 |
msgstr "Источник изображений"
|
612 |
|
613 |
-
#: lib/available.php:
|
614 |
-
#: lib/available.php:
|
615 |
-
#: lib/available.php:
|
616 |
msgid "Images links"
|
617 |
msgstr "Ссылки с изображений"
|
618 |
|
619 |
-
#: lib/available.php:
|
620 |
msgid "Slider size"
|
621 |
msgstr "Размер слайдера"
|
622 |
|
623 |
-
#: lib/available.php:
|
624 |
msgid "Number of slides"
|
625 |
msgstr "Количество слайдов"
|
626 |
|
627 |
-
#: lib/available.php:
|
628 |
msgid "Animation effect"
|
629 |
msgstr "Эффект анимации"
|
630 |
|
631 |
-
#: lib/available.php:
|
632 |
-
#: lib/available.php:
|
633 |
msgid "Animation speed (1000 = 1 second)"
|
634 |
msgstr "Скорость анимации (1000 = 1 секунда)"
|
635 |
|
636 |
-
#: lib/available.php:
|
637 |
msgid "Animation delay (1000 = 1 second)"
|
638 |
msgstr "Задержка анимации (1000 = 1 секунда)"
|
639 |
|
640 |
-
#: lib/available.php:
|
641 |
msgid "Nivo slider by attached to post images"
|
642 |
msgstr "Nivo slider из изображений записи"
|
643 |
|
644 |
-
#: lib/available.php:
|
645 |
msgid "Carousel item size"
|
646 |
msgstr "Размер элементов карусели"
|
647 |
|
648 |
-
#: lib/available.php:
|
649 |
-
#: lib/available.php:
|
650 |
msgid "Number of items"
|
651 |
msgstr "Количество элементов"
|
652 |
|
653 |
-
#: lib/available.php:
|
654 |
msgid "Number of items in viewport"
|
655 |
msgstr "Количество элементов в видмой части"
|
656 |
|
657 |
-
#: lib/available.php:
|
658 |
msgid "Space between items in pixels"
|
659 |
msgstr "Расстояние между элементами в пикселях"
|
660 |
|
661 |
-
#: lib/available.php:
|
662 |
msgid "jCarousel by attached to post images"
|
663 |
msgstr "jCarousel из изображений записи"
|
664 |
|
665 |
-
#: lib/available.php:
|
666 |
msgid "Gallery item size"
|
667 |
msgstr "Размер миниатюр"
|
668 |
|
669 |
-
#: lib/available.php:
|
670 |
msgid "Custom gallery by attached to post images"
|
671 |
msgstr "Произвольная галерея"
|
672 |
|
673 |
-
#: lib/available.php:
|
674 |
msgid "Twitter username"
|
675 |
msgstr "Имя пользователя"
|
676 |
|
677 |
-
#: lib/available.php:
|
678 |
msgid "Number of tweets to show"
|
679 |
msgstr "Количество твитов для показа"
|
680 |
|
681 |
-
#: lib/available.php:
|
682 |
msgid "Tweets style"
|
683 |
msgstr "Стиль твитов"
|
684 |
|
685 |
-
#: lib/available.php:
|
686 |
msgid "Show relative time"
|
687 |
msgstr "Показывать время"
|
688 |
|
689 |
-
#: lib/available.php:
|
690 |
msgid "Recent tweets"
|
691 |
msgstr "Последние твиты"
|
692 |
|
@@ -702,33 +711,33 @@ msgstr "Вставить"
|
|
702 |
msgid "Top"
|
703 |
msgstr "Вверх"
|
704 |
|
705 |
-
#: lib/shortcodes.php:
|
706 |
msgid "Service name"
|
707 |
msgstr "Название услуги"
|
708 |
|
709 |
-
#: lib/shortcodes.php:
|
710 |
msgid "This is box title"
|
711 |
msgstr "Заголовок блока"
|
712 |
|
713 |
-
#: lib/shortcodes.php:
|
714 |
msgid "Please specify media url"
|
715 |
msgstr "Укажите ссылку на медиа"
|
716 |
|
717 |
-
#: lib/shortcodes.php:
|
718 |
-
#: lib/shortcodes.php:
|
719 |
-
#: lib/shortcodes.php:
|
720 |
msgid "no attached images, or only one attached image"
|
721 |
msgstr "не найдены загруженные изображения, или изображение всего одно"
|
722 |
|
723 |
-
#: lib/shortcodes.php:
|
724 |
msgid "This menu doesn't exists, or has no elements"
|
725 |
msgstr "Такое меню не существует, или в нем нет ни одного элемента"
|
726 |
|
727 |
-
#: lib/shortcodes.php:
|
728 |
msgid "This content is for members only."
|
729 |
msgstr "Это содержимое только для участников."
|
730 |
|
731 |
-
#: lib/shortcodes.php:
|
732 |
msgid "Please login"
|
733 |
msgstr "Пожалуйста войдите"
|
734 |
|
@@ -769,6 +778,15 @@ msgstr "имя пользователя не задано"
|
|
769 |
msgid "no public messages"
|
770 |
msgstr "нет публичных твитов"
|
771 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
772 |
#~ msgid "Attention! [nivo_slider] and [jcarousel] was improved and modified!"
|
773 |
#~ msgstr ""
|
774 |
#~ "Внимание! Шорткоды [nivo_slider] и [jcarousel] были улучшены и изменены!"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gn_themes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-12-22 11:29+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-12-22 11:30+0300\n"
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
#: shortcodes-ultimate.php:184
|
18 |
+
#: lib/admin.php:9
|
19 |
+
#: lib/admin.php:50
|
20 |
msgid "Shortcodes Ultimate"
|
21 |
msgstr "Шорткоды"
|
22 |
|
30 |
|
31 |
#: shortcodes-ultimate.php:270
|
32 |
#: shortcodes-ultimate.php:321
|
33 |
+
#: lib/admin.php:59
|
34 |
msgid "Settings"
|
35 |
msgstr "Настройки"
|
36 |
|
37 |
#: shortcodes-ultimate.php:283
|
38 |
+
#: lib/admin.php:85
|
39 |
msgid "Settings saved"
|
40 |
msgstr "Настройки сохранены"
|
41 |
|
42 |
#: shortcodes-ultimate.php:288
|
43 |
+
#: lib/admin.php:146
|
44 |
msgid "Custom CSS saved"
|
45 |
msgstr "Произвольные стили сохранены"
|
46 |
|
57 |
msgstr "Подбор цвета"
|
58 |
|
59 |
#: shortcodes-ultimate.php:323
|
60 |
+
#: lib/admin.php:68
|
61 |
msgid "Support forum"
|
62 |
msgstr "Форум поддержки"
|
63 |
|
64 |
+
#: lib/admin.php:10
|
65 |
+
msgid "Must have WordPress plugin - Shortcodes Ultimate"
|
66 |
+
msgstr "Лучший плагин для WordPress - Shortcodes Ultimate"
|
67 |
+
|
68 |
+
#: lib/admin.php:31
|
69 |
+
#: lib/admin.php:61
|
70 |
msgid "Shortcodes"
|
71 |
msgstr "Шорткоды"
|
72 |
|
73 |
+
#: lib/admin.php:58
|
74 |
msgid "About"
|
75 |
msgstr "О плагине"
|
76 |
|
77 |
+
#: lib/admin.php:60
|
78 |
msgid "Custom CSS"
|
79 |
msgstr "Произвольные стили"
|
80 |
|
81 |
+
#: lib/admin.php:62
|
82 |
+
#: lib/admin.php:198
|
83 |
#: lib/generator.php:52
|
84 |
msgid "Demo"
|
85 |
msgstr "Демо"
|
86 |
|
87 |
+
#: lib/admin.php:65
|
88 |
msgid "For full functionality of this page it is recommended to enable JavaScript."
|
89 |
msgstr "На этой странице рекомендуется включить Javascript."
|
90 |
|
91 |
+
#: lib/admin.php:65
|
92 |
msgid "Instructions"
|
93 |
msgstr "Инструкции"
|
94 |
|
95 |
+
#: lib/admin.php:67
|
96 |
msgid "FREE Support"
|
97 |
msgstr "БЕСПЛАТНАЯ поддержка"
|
98 |
|
99 |
+
#: lib/admin.php:69
|
100 |
msgid "Twitter"
|
101 |
msgstr "Твиттер разработчика"
|
102 |
|
103 |
+
#: lib/admin.php:73
|
|
|
|
|
|
|
|
|
104 |
msgid "Do you love this plugin?"
|
105 |
msgstr "Вам нравится этот плагин?"
|
106 |
|
107 |
+
#: lib/admin.php:74
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
msgid "Rate this plugin at wordpress.org"
|
109 |
msgstr "Оцените плагин на wordpress.org"
|
110 |
|
111 |
+
#: lib/admin.php:74
|
112 |
msgid "5 stars"
|
113 |
msgstr "5 звезд"
|
114 |
|
115 |
+
#: lib/admin.php:75
|
116 |
msgid "Review this plugin in your blog"
|
117 |
msgstr "Сделайте обзор этого плагина в своем блоге"
|
118 |
|
119 |
+
#: lib/admin.php:84
|
120 |
+
#: lib/admin.php:145
|
121 |
msgid "Saving..."
|
122 |
msgstr "Сохранение..."
|
123 |
|
124 |
+
#: lib/admin.php:89
|
125 |
msgid "Disable custom formatting"
|
126 |
msgstr "Отключить специальное форматирование"
|
127 |
|
128 |
+
#: lib/admin.php:92
|
129 |
msgid "Enable this option if you have some problems with other plugins or content formatting"
|
130 |
msgstr "Отметьте этот флажок, если у вас возникли пролемы совместимости с другими плагинами или форматированием контента"
|
131 |
|
132 |
+
#: lib/admin.php:97
|
133 |
msgid "Compatibility mode"
|
134 |
msgstr "Режим совместимости"
|
135 |
|
136 |
+
#: lib/admin.php:100
|
137 |
msgid "Enable this option if you have some problems with other plugins that uses similar shortcode names"
|
138 |
msgstr "Отметьте этот флажок, если у вас используются другие шорткоды с такими же именами. Все шорткоды этого плагина будут иметь такие имена"
|
139 |
|
140 |
+
#: lib/admin.php:100
|
141 |
msgid "Forum topic"
|
142 |
msgstr "Тема на форуме (англ.)"
|
143 |
|
144 |
+
#: lib/admin.php:104
|
145 |
msgid "Disable scripts"
|
146 |
msgstr "Отключить скрипты"
|
147 |
|
148 |
+
#: lib/admin.php:108
|
149 |
+
#: lib/admin.php:109
|
150 |
+
#: lib/admin.php:110
|
151 |
+
#: lib/admin.php:111
|
152 |
+
#: lib/admin.php:112
|
153 |
+
#: lib/admin.php:123
|
154 |
+
#: lib/admin.php:124
|
155 |
+
#: lib/admin.php:125
|
156 |
msgid "Disable"
|
157 |
msgstr "Отключить"
|
158 |
|
159 |
+
#: lib/admin.php:115
|
160 |
msgid "Check scripts, that you want to exclude form wp_head section"
|
161 |
msgstr "Отметьте скрипты, которые вы хотите исключить в wp_head"
|
162 |
|
163 |
+
#: lib/admin.php:115
|
164 |
+
#: lib/admin.php:128
|
165 |
msgid "Be careful with this settings!"
|
166 |
msgstr "Будьте осторожны с этими настройками!"
|
167 |
|
168 |
+
#: lib/admin.php:119
|
169 |
msgid "Disable styles"
|
170 |
msgstr "Отключить файлы стилей"
|
171 |
|
172 |
+
#: lib/admin.php:128
|
173 |
msgid "Check stylesheets, that you want to exclude form wp_head section"
|
174 |
msgstr "Отметьте файлы стилей, которые вы хотите исключить в wp_head"
|
175 |
|
176 |
+
#: lib/admin.php:134
|
177 |
msgid "Save settings"
|
178 |
msgstr "Сохранить настройки"
|
179 |
|
180 |
+
#: lib/admin.php:147
|
181 |
msgid "You can add custom styles, that will override defaults"
|
182 |
msgstr "Вы можете добавить произвольные стили, которые заменят оригинальные стили для шорткодов"
|
183 |
|
184 |
+
#: lib/admin.php:148
|
185 |
msgid "See original styles"
|
186 |
msgstr "Смотреть оригинальные стили"
|
187 |
|
188 |
+
#: lib/admin.php:151
|
189 |
msgid "Save styles"
|
190 |
msgstr "Сохранить стили"
|
191 |
|
192 |
+
#: lib/admin.php:161
|
193 |
+
#: lib/admin.php:197
|
194 |
msgid "Shortcode"
|
195 |
msgstr "Шорткоды"
|
196 |
|
197 |
+
#: lib/admin.php:162
|
198 |
msgid "Parameters"
|
199 |
msgstr "Параметры"
|
200 |
|
201 |
+
#: lib/admin.php:163
|
202 |
msgid "Usage"
|
203 |
msgstr "Пример использования"
|
204 |
|
314 |
msgid "Highlighted text"
|
315 |
msgstr "Подсвеченный текст"
|
316 |
|
317 |
+
#: lib/available.php:200
|
318 |
+
msgid "Dropcap style"
|
319 |
+
msgstr "Стиль буквицы"
|
320 |
+
|
321 |
+
#: lib/available.php:211
|
322 |
+
msgid "Dropcap size"
|
323 |
+
msgstr "Размер буквицы"
|
324 |
+
|
325 |
+
#: lib/available.php:215
|
326 |
+
msgid "D"
|
327 |
+
msgstr "D"
|
328 |
+
|
329 |
+
#: lib/available.php:216
|
330 |
+
msgid "Dropcap"
|
331 |
+
msgstr "Буквица"
|
332 |
+
|
333 |
+
#: lib/available.php:239
|
334 |
msgid "Option name"
|
335 |
msgstr "Имя опции"
|
336 |
|
337 |
+
#: lib/available.php:243
|
338 |
msgid "Blog info"
|
339 |
msgstr "Инфо блога"
|
340 |
|
341 |
+
#: lib/available.php:253
|
342 |
msgid "Post/page ID"
|
343 |
msgstr "ID записи/страницы"
|
344 |
|
345 |
+
#: lib/available.php:261
|
346 |
msgid "Link target"
|
347 |
msgstr "Цель ссылки"
|
348 |
|
349 |
+
#: lib/available.php:265
|
350 |
msgid "Permalink text"
|
351 |
msgstr "Текст постоянной ссылки"
|
352 |
|
353 |
+
#: lib/available.php:266
|
354 |
msgid "Permalink to specified post/page"
|
355 |
msgstr "Постоянная ссылка на указанную запись/страницу"
|
356 |
|
357 |
+
#: lib/available.php:276
|
358 |
msgid "Button link"
|
359 |
msgstr "Ссылка кнопки"
|
360 |
|
361 |
+
#: lib/available.php:281
|
362 |
msgid "Button background color"
|
363 |
msgstr "Цвет фона кнопки"
|
364 |
|
365 |
+
#: lib/available.php:300
|
366 |
msgid "Button size"
|
367 |
msgstr "Размер кнопки"
|
368 |
|
369 |
+
#: lib/available.php:310
|
370 |
msgid "Button background style"
|
371 |
msgstr "Стиль фона кнопки"
|
372 |
|
373 |
+
#: lib/available.php:318
|
374 |
msgid "Dark text color"
|
375 |
msgstr "Темный цвет текста"
|
376 |
|
377 |
+
#: lib/available.php:326
|
378 |
msgid "Disable rounded corners"
|
379 |
msgstr "Отключить скругленные уголки"
|
380 |
|
381 |
+
#: lib/available.php:331
|
382 |
msgid "Button icon"
|
383 |
msgstr "Иконка кнопки"
|
384 |
|
385 |
+
#: lib/available.php:336
|
386 |
msgid "Button class"
|
387 |
msgstr "Класс кнопки"
|
388 |
|
389 |
+
#: lib/available.php:344
|
390 |
msgid "Button link target"
|
391 |
msgstr "Цель ссылки кнопки"
|
392 |
|
393 |
+
#: lib/available.php:348
|
394 |
msgid "Button text"
|
395 |
msgstr "Текст кнопки"
|
396 |
|
397 |
+
#: lib/available.php:349
|
398 |
msgid "Styled button"
|
399 |
msgstr "Стильная кнопка"
|
400 |
|
401 |
+
#: lib/available.php:362
|
402 |
msgid "Link color"
|
403 |
msgstr "Цвет ссылки"
|
404 |
|
405 |
+
#: lib/available.php:367
|
406 |
msgid "URL"
|
407 |
msgstr "URL"
|
408 |
|
409 |
+
#: lib/available.php:371
|
410 |
msgid "Link text"
|
411 |
msgstr "Текст ссылки"
|
412 |
|
413 |
+
#: lib/available.php:372
|
414 |
msgid "Fancy link"
|
415 |
msgstr "Стильная ссылка"
|
416 |
|
417 |
+
#: lib/available.php:381
|
418 |
+
#: lib/available.php:382
|
419 |
msgid "Service title"
|
420 |
msgstr "Название услуги"
|
421 |
|
422 |
+
#: lib/available.php:387
|
423 |
msgid "Service icon"
|
424 |
msgstr "Иконка услуги"
|
425 |
|
426 |
+
#: lib/available.php:396
|
427 |
msgid "Icon size"
|
428 |
msgstr "Размер иконки"
|
429 |
|
430 |
+
#: lib/available.php:400
|
431 |
msgid "Service description"
|
432 |
msgstr "Описание услуги"
|
433 |
|
434 |
+
#: lib/available.php:401
|
435 |
msgid "Service box with title"
|
436 |
msgstr "Блок услуга с заголовком"
|
437 |
|
438 |
+
#: lib/available.php:415
|
439 |
msgid "Box style"
|
440 |
msgstr "Стиль блока"
|
441 |
|
442 |
+
#: lib/available.php:423
|
443 |
msgid "Show login message"
|
444 |
msgstr "Показывать предложение войти"
|
445 |
|
446 |
+
#: lib/available.php:427
|
447 |
msgid "Content for logged members"
|
448 |
msgstr "Содержимое для залогиненых пользователей"
|
449 |
|
450 |
+
#: lib/available.php:428
|
451 |
msgid "Content for logged in members only"
|
452 |
msgstr "Ссодержимое только для залогиненных"
|
453 |
|
454 |
+
#: lib/available.php:436
|
455 |
msgid "Content for guests"
|
456 |
msgstr "Содержимое для гостей"
|
457 |
|
458 |
+
#: lib/available.php:437
|
459 |
msgid "Content for guests only"
|
460 |
msgstr "Ссодержимое только для гостей"
|
461 |
|
462 |
+
#: lib/available.php:446
|
463 |
+
#: lib/available.php:447
|
464 |
msgid "Box title"
|
465 |
msgstr "Заголовок блока"
|
466 |
|
467 |
+
#: lib/available.php:452
|
468 |
msgid "Box color"
|
469 |
msgstr "Цвет блока"
|
470 |
|
471 |
+
#: lib/available.php:457
|
472 |
msgid "Box content"
|
473 |
msgstr "Содержимое блока"
|
474 |
|
475 |
+
#: lib/available.php:458
|
476 |
msgid "Colored box with caption"
|
477 |
msgstr "Цветной блок с заголовком"
|
478 |
|
479 |
+
#: lib/available.php:468
|
480 |
msgid "Note color"
|
481 |
msgstr "Цвет блока"
|
482 |
|
483 |
+
#: lib/available.php:473
|
484 |
msgid "Note text"
|
485 |
msgstr "Текст заметки"
|
486 |
|
487 |
+
#: lib/available.php:474
|
488 |
msgid "Colored box"
|
489 |
msgstr "Цветной блок"
|
490 |
|
491 |
+
#: lib/available.php:482
|
492 |
msgid "Private note text"
|
493 |
msgstr "Текст приватной заметки"
|
494 |
|
495 |
+
#: lib/available.php:483
|
496 |
msgid "Private note for post authors"
|
497 |
msgstr "Приватный текст для других авторов"
|
498 |
|
499 |
+
#: lib/available.php:509
|
500 |
msgid "List style"
|
501 |
msgstr "Стиль списка"
|
502 |
|
503 |
+
#: lib/available.php:513
|
504 |
msgid "List item "
|
505 |
msgstr "Элемент списка"
|
506 |
|
507 |
+
#: lib/available.php:514
|
508 |
msgid "Styled unordered list"
|
509 |
msgstr "Стильный неупорядоченный список"
|
510 |
|
511 |
+
#: lib/available.php:524
|
512 |
msgid "Feed URL"
|
513 |
msgstr "URL ленты"
|
514 |
|
515 |
+
#: lib/available.php:535
|
516 |
msgid "Number of item to show"
|
517 |
msgstr "Количество элементов для показа"
|
518 |
|
519 |
+
#: lib/available.php:539
|
520 |
msgid "Feed grabber"
|
521 |
msgstr "Граббер новостных лент"
|
522 |
|
523 |
+
#: lib/available.php:549
|
524 |
msgid "Custom menu name"
|
525 |
msgstr "Имя произвольного меню"
|
526 |
|
527 |
+
#: lib/available.php:553
|
528 |
msgid "Custom menu by name"
|
529 |
msgstr "Произвольное меню"
|
530 |
|
531 |
+
#: lib/available.php:567
|
532 |
+
#: lib/available.php:590
|
533 |
msgid "Depth level"
|
534 |
msgstr "Глубина"
|
535 |
|
536 |
+
#: lib/available.php:572
|
537 |
msgid "Parent page ID"
|
538 |
msgstr "ID родительской страницы"
|
539 |
|
540 |
+
#: lib/available.php:576
|
541 |
msgid "Page childrens"
|
542 |
msgstr "Потомки страницы"
|
543 |
|
544 |
+
#: lib/available.php:594
|
545 |
msgid "Page siblings"
|
546 |
msgstr "Братья страницы"
|
547 |
|
548 |
+
#: lib/available.php:616
|
549 |
msgid "Column width"
|
550 |
msgstr "Ширина колонки"
|
551 |
|
552 |
+
#: lib/available.php:624
|
553 |
msgid "Last column"
|
554 |
msgstr "Последняя колонка"
|
555 |
|
556 |
+
#: lib/available.php:633
|
557 |
msgid "Column style"
|
558 |
msgstr "Стиль колонки"
|
559 |
|
560 |
+
#: lib/available.php:637
|
561 |
msgid "Column content"
|
562 |
msgstr "Содержимое колонки"
|
563 |
|
564 |
+
#: lib/available.php:638
|
565 |
msgid "Flexible columns"
|
566 |
msgstr "Резновые колонки"
|
567 |
|
568 |
+
#: lib/available.php:652
|
569 |
msgid "Table style"
|
570 |
msgstr "Стиль таблицы"
|
571 |
|
572 |
+
#: lib/available.php:657
|
573 |
msgid "Create table from CSV"
|
574 |
msgstr "Создание таблицы из CSV файла"
|
575 |
|
576 |
+
#: lib/available.php:662
|
577 |
msgid "Styled table from HTML or CSV file"
|
578 |
msgstr "Стильная таблица из HTML или CSV файла"
|
579 |
|
580 |
+
#: lib/available.php:738
|
581 |
msgid "Media URL"
|
582 |
msgstr "Ссылка на медиа"
|
583 |
|
584 |
+
#: lib/available.php:743
|
585 |
+
#: lib/available.php:767
|
586 |
+
#: lib/available.php:786
|
587 |
msgid "Width"
|
588 |
msgstr "Ширина"
|
589 |
|
590 |
+
#: lib/available.php:748
|
591 |
+
#: lib/available.php:772
|
592 |
+
#: lib/available.php:791
|
593 |
msgid "Height"
|
594 |
msgstr "Высота"
|
595 |
|
596 |
+
#: lib/available.php:752
|
597 |
msgid "YouTube video, Vimeo video, .mp4/.flv video, .mp3 file or images"
|
598 |
msgstr "YouTube видео, Vimeo видео, .mp4/.flv видео, .mp3 файл или изображения"
|
599 |
|
600 |
+
#: lib/available.php:762
|
601 |
msgid "Document URL"
|
602 |
msgstr "Ссылка на документ"
|
603 |
|
604 |
+
#: lib/available.php:776
|
605 |
msgid ".doc, .xls, .pdf viewer by Google"
|
606 |
msgstr ".doc, .xls, .pdf просмотрщик от Google"
|
607 |
|
608 |
+
#: lib/available.php:796
|
609 |
msgid "Marker address"
|
610 |
msgstr "Адрес маркера"
|
611 |
|
612 |
+
#: lib/available.php:800
|
613 |
msgid "Maps by Google"
|
614 |
msgstr "Карты от Google"
|
615 |
|
616 |
+
#: lib/available.php:814
|
617 |
+
#: lib/available.php:884
|
618 |
+
#: lib/available.php:956
|
619 |
msgid "Source of images"
|
620 |
msgstr "Источник изображений"
|
621 |
|
622 |
+
#: lib/available.php:825
|
623 |
+
#: lib/available.php:895
|
624 |
+
#: lib/available.php:967
|
625 |
msgid "Images links"
|
626 |
msgstr "Ссылки с изображений"
|
627 |
|
628 |
+
#: lib/available.php:836
|
629 |
msgid "Slider size"
|
630 |
msgstr "Размер слайдера"
|
631 |
|
632 |
+
#: lib/available.php:846
|
633 |
msgid "Number of slides"
|
634 |
msgstr "Количество слайдов"
|
635 |
|
636 |
+
#: lib/available.php:856
|
637 |
msgid "Animation effect"
|
638 |
msgstr "Эффект анимации"
|
639 |
|
640 |
+
#: lib/available.php:861
|
641 |
+
#: lib/available.php:929
|
642 |
msgid "Animation speed (1000 = 1 second)"
|
643 |
msgstr "Скорость анимации (1000 = 1 секунда)"
|
644 |
|
645 |
+
#: lib/available.php:866
|
646 |
msgid "Animation delay (1000 = 1 second)"
|
647 |
msgstr "Задержка анимации (1000 = 1 секунда)"
|
648 |
|
649 |
+
#: lib/available.php:870
|
650 |
msgid "Nivo slider by attached to post images"
|
651 |
msgstr "Nivo slider из изображений записи"
|
652 |
|
653 |
+
#: lib/available.php:905
|
654 |
msgid "Carousel item size"
|
655 |
msgstr "Размер элементов карусели"
|
656 |
|
657 |
+
#: lib/available.php:915
|
658 |
+
#: lib/available.php:987
|
659 |
msgid "Number of items"
|
660 |
msgstr "Количество элементов"
|
661 |
|
662 |
+
#: lib/available.php:924
|
663 |
msgid "Number of items in viewport"
|
664 |
msgstr "Количество элементов в видмой части"
|
665 |
|
666 |
+
#: lib/available.php:938
|
667 |
msgid "Space between items in pixels"
|
668 |
msgstr "Расстояние между элементами в пикселях"
|
669 |
|
670 |
+
#: lib/available.php:942
|
671 |
msgid "jCarousel by attached to post images"
|
672 |
msgstr "jCarousel из изображений записи"
|
673 |
|
674 |
+
#: lib/available.php:977
|
675 |
msgid "Gallery item size"
|
676 |
msgstr "Размер миниатюр"
|
677 |
|
678 |
+
#: lib/available.php:991
|
679 |
msgid "Custom gallery by attached to post images"
|
680 |
msgstr "Произвольная галерея"
|
681 |
|
682 |
+
#: lib/available.php:1001
|
683 |
msgid "Twitter username"
|
684 |
msgstr "Имя пользователя"
|
685 |
|
686 |
+
#: lib/available.php:1012
|
687 |
msgid "Number of tweets to show"
|
688 |
msgstr "Количество твитов для показа"
|
689 |
|
690 |
+
#: lib/available.php:1020
|
691 |
msgid "Tweets style"
|
692 |
msgstr "Стиль твитов"
|
693 |
|
694 |
+
#: lib/available.php:1028
|
695 |
msgid "Show relative time"
|
696 |
msgstr "Показывать время"
|
697 |
|
698 |
+
#: lib/available.php:1032
|
699 |
msgid "Recent tweets"
|
700 |
msgstr "Последние твиты"
|
701 |
|
711 |
msgid "Top"
|
712 |
msgstr "Вверх"
|
713 |
|
714 |
+
#: lib/shortcodes.php:319
|
715 |
msgid "Service name"
|
716 |
msgstr "Название услуги"
|
717 |
|
718 |
+
#: lib/shortcodes.php:337
|
719 |
msgid "This is box title"
|
720 |
msgstr "Заголовок блока"
|
721 |
|
722 |
+
#: lib/shortcodes.php:399
|
723 |
msgid "Please specify media url"
|
724 |
msgstr "Укажите ссылку на медиа"
|
725 |
|
726 |
+
#: lib/shortcodes.php:538
|
727 |
+
#: lib/shortcodes.php:591
|
728 |
+
#: lib/shortcodes.php:635
|
729 |
msgid "no attached images, or only one attached image"
|
730 |
msgstr "не найдены загруженные изображения, или изображение всего одно"
|
731 |
|
732 |
+
#: lib/shortcodes.php:750
|
733 |
msgid "This menu doesn't exists, or has no elements"
|
734 |
msgstr "Такое меню не существует, или в нем нет ни одного элемента"
|
735 |
|
736 |
+
#: lib/shortcodes.php:807
|
737 |
msgid "This content is for members only."
|
738 |
msgstr "Это содержимое только для участников."
|
739 |
|
740 |
+
#: lib/shortcodes.php:807
|
741 |
msgid "Please login"
|
742 |
msgstr "Пожалуйста войдите"
|
743 |
|
778 |
msgid "no public messages"
|
779 |
msgstr "нет публичных твитов"
|
780 |
|
781 |
+
#~ msgid "Bug report"
|
782 |
+
#~ msgstr "Сообщить об ошибке"
|
783 |
+
|
784 |
+
#~ msgid "Buy author a beer"
|
785 |
+
#~ msgstr "Купите автору пива"
|
786 |
+
|
787 |
+
#~ msgid "Donate"
|
788 |
+
#~ msgstr "Сделать пожертвование"
|
789 |
+
|
790 |
#~ msgid "Attention! [nivo_slider] and [jcarousel] was improved and modified!"
|
791 |
#~ msgstr ""
|
792 |
#~ "Внимание! Шорткоды [nivo_slider] и [jcarousel] были улучшены и изменены!"
|
lib/admin.php
CHANGED
@@ -1,5 +1,29 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
/**
|
4 |
* Register administration page
|
5 |
*/
|
@@ -43,18 +67,17 @@
|
|
43 |
<h3><?php _e( 'FREE Support', 'shortcodes-ultimate' ); ?></h3>
|
44 |
<p><a href="http://wordpress.org/tags/shortcodes-ultimate?forum_id=10" target="_blank"><?php _e( 'Support forum', 'shortcodes-ultimate' ); ?></a></p>
|
45 |
<p><a href="http://twitter.com/gn_themes" target="_blank"><?php _e( 'Twitter', 'shortcodes-ultimate' ); ?></a></p>
|
46 |
-
<p><a href="http://ilovecode.ru/?p=122#commentform" target="_blank" style="color:red"><?php _e( 'Bug report', 'shortcodes-ultimate' ); ?></a></p>
|
47 |
</div>
|
48 |
|
49 |
<div class="su-twothird-column">
|
50 |
<h3><?php _e( 'Do you love this plugin?', 'shortcodes-ultimate' ); ?></h3>
|
51 |
-
<p><?php _e( 'Buy author a beer', 'shortcodes-ultimate' ); ?> - <a href="http://ilovecode.ru/donate/" target="_blank" style="color:red"><?php _e( 'Donate', 'shortcodes-ultimate' ); ?></a></p>
|
52 |
<p><a href="http://wordpress.org/extend/plugins/shortcodes-ultimate/" target="_blank"><?php _e( 'Rate this plugin at wordpress.org', 'shortcodes-ultimate' ); ?></a> (<?php _e( '5 stars', 'shortcodes-ultimate' ); ?>)</p>
|
53 |
<p><?php _e( 'Review this plugin in your blog', 'shortcodes-ultimate' ); ?></p>
|
54 |
-
<p><iframe src="http://www.facebook.com/plugins/like.php?href=http://wordpress.org/extend/plugins/shortcodes-ultimate/&layout=button_count&show_faces=false&width=130&action=like&colorscheme=light&height=24" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:130px; height:24px;" allowTransparency="true"></iframe></p>
|
55 |
</div>
|
56 |
|
57 |
<div class="su-clear"></div>
|
|
|
|
|
58 |
</div>
|
59 |
<div class="su-pane">
|
60 |
<form action="" method="post" id="su-form-save-settings">
|
@@ -163,9 +186,9 @@
|
|
163 |
</td>
|
164 |
<td><?php echo str_replace( '<br/>', '<br/>', htmlspecialchars( $shortcode['usage'] ) ); ?></td>
|
165 |
</tr>
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
</table>
|
170 |
</div>
|
171 |
<div class="su-pane">
|
@@ -174,9 +197,9 @@
|
|
174 |
<th width="100"><?php _e( 'Shortcode', 'shortcodes-ultimate' ); ?></th>
|
175 |
<th><?php _e( 'Demo', 'shortcodes-ultimate' ); ?></th>
|
176 |
</tr>
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
<tr>
|
181 |
<td>
|
182 |
<strong><?php echo $shortcode['name']; ?></strong><br/>
|
@@ -184,9 +207,9 @@
|
|
184 |
</td>
|
185 |
<td><img src="<?php echo su_plugin_url(); ?>/images/demo/<?php echo $id; ?>.png" width="530" alt="<?php echo $shortcode['name']; ?>" /></td>
|
186 |
</tr>
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
</table>
|
191 |
</div>
|
192 |
</div>
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Share buttons for admin page
|
5 |
+
*/
|
6 |
+
function su_share() {
|
7 |
+
|
8 |
+
// Share data
|
9 |
+
$title = str_replace( '+', '%20', urlencode( __( 'Shortcodes Ultimate', 'shortcodes-ultimate' ) ) );
|
10 |
+
$text = str_replace( '+', '%20', urlencode( __( 'Must have WordPress plugin - Shortcodes Ultimate', 'shortcodes-ultimate' ) ) );
|
11 |
+
$url = urlencode( 'http://gndev.info/shortcodes-ultimate/' );
|
12 |
+
?>
|
13 |
+
<div id="su-share">
|
14 |
+
|
15 |
+
<!-- PlusOne -->
|
16 |
+
<iframe src="https://plusone.google.com/_/+1/fastbutton?url=<?php echo $url; ?>&size=medium&count=true&annotation=&hl=en-US" style="width:80px;height:21px;" scrolling="no"></iframe>
|
17 |
+
|
18 |
+
<!-- Twitter -->
|
19 |
+
<iframe src="http://platform.twitter.com/widgets/tweet_button.html?url=<?php echo $url; ?>&via=gn_themes&text=<?php echo $text; ?>&lang=en" style="width:105px;height:21px;" scrolling="no"></iframe>
|
20 |
+
|
21 |
+
<!-- Facebook -->
|
22 |
+
<iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo $url; ?>&send=false&layout=button_count&width=80&show_faces=false&action=like&colorscheme=light&height=21&locale=en_US" style="width:80px;height:21px;" scrolling="no"></iframe>
|
23 |
+
</div>
|
24 |
+
<?php
|
25 |
+
}
|
26 |
+
|
27 |
/**
|
28 |
* Register administration page
|
29 |
*/
|
67 |
<h3><?php _e( 'FREE Support', 'shortcodes-ultimate' ); ?></h3>
|
68 |
<p><a href="http://wordpress.org/tags/shortcodes-ultimate?forum_id=10" target="_blank"><?php _e( 'Support forum', 'shortcodes-ultimate' ); ?></a></p>
|
69 |
<p><a href="http://twitter.com/gn_themes" target="_blank"><?php _e( 'Twitter', 'shortcodes-ultimate' ); ?></a></p>
|
|
|
70 |
</div>
|
71 |
|
72 |
<div class="su-twothird-column">
|
73 |
<h3><?php _e( 'Do you love this plugin?', 'shortcodes-ultimate' ); ?></h3>
|
|
|
74 |
<p><a href="http://wordpress.org/extend/plugins/shortcodes-ultimate/" target="_blank"><?php _e( 'Rate this plugin at wordpress.org', 'shortcodes-ultimate' ); ?></a> (<?php _e( '5 stars', 'shortcodes-ultimate' ); ?>)</p>
|
75 |
<p><?php _e( 'Review this plugin in your blog', 'shortcodes-ultimate' ); ?></p>
|
|
|
76 |
</div>
|
77 |
|
78 |
<div class="su-clear"></div>
|
79 |
+
<?php su_share(); ?>
|
80 |
+
|
81 |
</div>
|
82 |
<div class="su-pane">
|
83 |
<form action="" method="post" id="su-form-save-settings">
|
186 |
</td>
|
187 |
<td><?php echo str_replace( '<br/>', '<br/>', htmlspecialchars( $shortcode['usage'] ) ); ?></td>
|
188 |
</tr>
|
189 |
+
<?php
|
190 |
+
}
|
191 |
+
?>
|
192 |
</table>
|
193 |
</div>
|
194 |
<div class="su-pane">
|
197 |
<th width="100"><?php _e( 'Shortcode', 'shortcodes-ultimate' ); ?></th>
|
198 |
<th><?php _e( 'Demo', 'shortcodes-ultimate' ); ?></th>
|
199 |
</tr>
|
200 |
+
<?php
|
201 |
+
foreach ( su_shortcodes() as $id => $shortcode ) {
|
202 |
+
?>
|
203 |
<tr>
|
204 |
<td>
|
205 |
<strong><?php echo $shortcode['name']; ?></strong><br/>
|
207 |
</td>
|
208 |
<td><img src="<?php echo su_plugin_url(); ?>/images/demo/<?php echo $id; ?>.png" width="530" alt="<?php echo $shortcode['name']; ?>" /></td>
|
209 |
</tr>
|
210 |
+
<?php
|
211 |
+
}
|
212 |
+
?>
|
213 |
</table>
|
214 |
</div>
|
215 |
</div>
|
lib/available.php
CHANGED
@@ -185,6 +185,36 @@
|
|
185 |
'content' => __( 'Highlighted text', 'shortcodes-ultimate' ),
|
186 |
'desc' => __( 'Highlighted text', 'shortcodes-ultimate' )
|
187 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
# bloginfo
|
189 |
'bloginfo' => array(
|
190 |
'name' => 'Bloginfo',
|
@@ -631,6 +661,72 @@
|
|
631 |
'content' => '<table><tr><td></td></tr></table>',
|
632 |
'desc' => __( 'Styled table from HTML or CSV file', 'shortcodes-ultimate' )
|
633 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
634 |
# media
|
635 |
'media' => array(
|
636 |
'name' => 'Media',
|
185 |
'content' => __( 'Highlighted text', 'shortcodes-ultimate' ),
|
186 |
'desc' => __( 'Highlighted text', 'shortcodes-ultimate' )
|
187 |
),
|
188 |
+
# dropcap
|
189 |
+
'dropcap' => array(
|
190 |
+
'name' => 'Dropcap',
|
191 |
+
'type' => 'wrap',
|
192 |
+
'atts' => array(
|
193 |
+
'style' => array(
|
194 |
+
'values' => array(
|
195 |
+
'1',
|
196 |
+
'2',
|
197 |
+
'3'
|
198 |
+
),
|
199 |
+
'default' => '1',
|
200 |
+
'desc' => __( 'Dropcap style', 'shortcodes-ultimate' )
|
201 |
+
),
|
202 |
+
'size' => array(
|
203 |
+
'values' => array(
|
204 |
+
'1',
|
205 |
+
'2',
|
206 |
+
'3',
|
207 |
+
'4',
|
208 |
+
'5'
|
209 |
+
),
|
210 |
+
'default' => '3',
|
211 |
+
'desc' => __( 'Dropcap size', 'shortcodes-ultimate' )
|
212 |
+
)
|
213 |
+
),
|
214 |
+
'usage' => '[dropcap style="1"]D[/dropcap]ropcap',
|
215 |
+
'content' => __( 'D', 'shortcodes-ultimate' ),
|
216 |
+
'desc' => __( 'Dropcap', 'shortcodes-ultimate' )
|
217 |
+
),
|
218 |
# bloginfo
|
219 |
'bloginfo' => array(
|
220 |
'name' => 'Bloginfo',
|
661 |
'content' => '<table><tr><td></td></tr></table>',
|
662 |
'desc' => __( 'Styled table from HTML or CSV file', 'shortcodes-ultimate' )
|
663 |
),
|
664 |
+
// # pricing
|
665 |
+
// 'pricing' => array(
|
666 |
+
// 'name' => 'Pricing table',
|
667 |
+
// 'type' => 'wrap',
|
668 |
+
// 'atts' => array(
|
669 |
+
// 'style' => array(
|
670 |
+
// 'values' => array(
|
671 |
+
// '1',
|
672 |
+
// '2'
|
673 |
+
// ),
|
674 |
+
// 'default' => '1',
|
675 |
+
// 'desc' => __( 'Table style', 'shortcodes-ultimate' )
|
676 |
+
// )
|
677 |
+
// ),
|
678 |
+
// 'usage' => '[pricing]<br/>[plan name="Plan 1"] Plan description [/plan]<br/>[/pricing]',
|
679 |
+
// 'content' => '[plan][/plan]',
|
680 |
+
// 'desc' => __( 'Customizable pricing table', 'shortcodes-ultimate' )
|
681 |
+
// ),
|
682 |
+
// # plan
|
683 |
+
// 'plan' => array(
|
684 |
+
// 'name' => 'Pricing plan',
|
685 |
+
// 'type' => 'wrap',
|
686 |
+
// 'atts' => array(
|
687 |
+
// 'name' => array(
|
688 |
+
// 'values' => false,
|
689 |
+
// 'default' => '…',
|
690 |
+
// 'desc' => __( 'Plan name', 'shortcodes-ultimate' )
|
691 |
+
// ),
|
692 |
+
// 'price' => array(
|
693 |
+
// 'values' => false,
|
694 |
+
// 'default' => '$100',
|
695 |
+
// 'desc' => __( 'Plan price', 'shortcodes-ultimate' )
|
696 |
+
// ),
|
697 |
+
// 'per' => array(
|
698 |
+
// 'values' => false,
|
699 |
+
// 'default' => '$100',
|
700 |
+
// 'desc' => __( 'Price period', 'shortcodes-ultimate' )
|
701 |
+
// ),
|
702 |
+
// 'width' => array(
|
703 |
+
// 'values' => array(
|
704 |
+
// '100',
|
705 |
+
// '150',
|
706 |
+
// '200',
|
707 |
+
// '250'
|
708 |
+
// ),
|
709 |
+
// 'default' => '150',
|
710 |
+
// 'desc' => __( 'Box width', 'shortcodes-ultimate' )
|
711 |
+
// ),
|
712 |
+
// 'primary' => array(
|
713 |
+
// 'values' => array(
|
714 |
+
// '0',
|
715 |
+
// '1'
|
716 |
+
// ),
|
717 |
+
// 'default' => '0',
|
718 |
+
// 'desc' => __( 'Is primary plan?', 'shortcodes-ultimate' )
|
719 |
+
// ),
|
720 |
+
// 'class' => array(
|
721 |
+
// 'values' => false,
|
722 |
+
// 'default' => '',
|
723 |
+
// 'desc' => __( 'Custom box class', 'shortcodes-ultimate' )
|
724 |
+
// )
|
725 |
+
// ),
|
726 |
+
// 'usage' => '[pricing]<br/>[plan name="Plan 1" price="$100" per="per month" width="150" primary="0"] Plan description [/plan]<br/>[/pricing]',
|
727 |
+
// 'content' => '<ul><li>List item</li></ul>[button link="#"]Choose[/button]',
|
728 |
+
// 'desc' => __( 'Customizable pricing table', 'shortcodes-ultimate' )
|
729 |
+
// ),
|
730 |
# media
|
731 |
'media' => array(
|
732 |
'name' => 'Media',
|
lib/shortcodes.php
CHANGED
@@ -132,6 +132,24 @@
|
|
132 |
return '<span class="su-highlight" style="background:' . $bg . ';color:' . $color . '"> ' . $content . ' </span>';
|
133 |
}
|
134 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
/**
|
136 |
* Shortcode: column
|
137 |
*
|
@@ -404,6 +422,55 @@
|
|
404 |
return $return;
|
405 |
}
|
406 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
407 |
/**
|
408 |
* Shortcode: photoshop
|
409 |
*
|
132 |
return '<span class="su-highlight" style="background:' . $bg . ';color:' . $color . '"> ' . $content . ' </span>';
|
133 |
}
|
134 |
|
135 |
+
/**
|
136 |
+
* Shortcode: dropcap
|
137 |
+
*
|
138 |
+
* @param array $atts Shortcode attributes
|
139 |
+
* @param string $content
|
140 |
+
* @return string Output html
|
141 |
+
*/
|
142 |
+
function su_dropcap_shortcode( $atts, $content = null ) {
|
143 |
+
extract( shortcode_atts( array(
|
144 |
+
'style' => 1,
|
145 |
+
'size' => 3
|
146 |
+
), $atts ) );
|
147 |
+
|
148 |
+
$em = $size * 0.5 . 'em';
|
149 |
+
|
150 |
+
return '<span class="su-dropcap su-dropcap-style-' . $style . '" style="font-size:' . $em . '">' . $content . '</span>';
|
151 |
+
}
|
152 |
+
|
153 |
/**
|
154 |
* Shortcode: column
|
155 |
*
|
422 |
return $return;
|
423 |
}
|
424 |
|
425 |
+
/**
|
426 |
+
* Shortcode: pricing
|
427 |
+
*
|
428 |
+
* @param array $atts Shortcode attributes
|
429 |
+
* @param string $content
|
430 |
+
* @return string Output html
|
431 |
+
*/
|
432 |
+
function su_pricing_shortcode( $atts, $content = null ) {
|
433 |
+
extract( shortcode_atts( array(
|
434 |
+
'style' => 1
|
435 |
+
), $atts ) );
|
436 |
+
|
437 |
+
$return = '<div class="su-pricing su-pricing-style-' . $style . '">';
|
438 |
+
$return .= do_shortcode( $content );
|
439 |
+
$return .= '<div class="su-spacer"></div></div>';
|
440 |
+
|
441 |
+
return $return;
|
442 |
+
}
|
443 |
+
|
444 |
+
/**
|
445 |
+
* Shortcode: plan
|
446 |
+
*
|
447 |
+
* @param array $atts Shortcode attributes
|
448 |
+
* @param string $content
|
449 |
+
* @return string Output html
|
450 |
+
*/
|
451 |
+
function su_plan_shortcode( $atts, $content = null ) {
|
452 |
+
extract( shortcode_atts( array(
|
453 |
+
'name' => '…',
|
454 |
+
'price' => '$100',
|
455 |
+
'per' => 'per month',
|
456 |
+
'width' => 150,
|
457 |
+
'primary' => false,
|
458 |
+
'class' => false
|
459 |
+
), $atts ) );
|
460 |
+
|
461 |
+
$custom_classes = ( $primary ) ? ' su-plan-primary' : '';
|
462 |
+
$custom_classes .= ( $class ) ? ' ' . $class : '';
|
463 |
+
|
464 |
+
$return = '<div class="su-plan' . $custom_classes . '" style="width:' . $width . 'px">';
|
465 |
+
$return .= '<div class="su-plan-name">' . $name . '</div>';
|
466 |
+
$return .= '<div class="su-plan-price">' . $price . '<span class="su-sep">/</span><span class="su-per">' . $per . '</span></div>';
|
467 |
+
$return .= '<div class="su-plan-content">';
|
468 |
+
$return .= do_shortcode( $content );
|
469 |
+
$return .= '</div><div class="su-plan-footer"></div></div>';
|
470 |
+
|
471 |
+
return $return;
|
472 |
+
}
|
473 |
+
|
474 |
/**
|
475 |
* Shortcode: photoshop
|
476 |
*
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Plugin Name ===
|
2 |
Contributors: gn_themes
|
3 |
-
Donate link: http://
|
4 |
Tags: shortcode, shortcodes, short code, shortcodes, tab, tabs, button, buttons, jquery, box, boxes, toggle, spoiler, column, columns, services, service, pullquote, list, lists, frame, images, image, links, fancy, fancy link, fancy links, fancy buttons, jquery tabs, accordeon, slider, nivo, nivo slider, plugin, admin, photoshop, gallery, bloginfo, list pages, sub pages, navigation, siblings pages, children pages, permalink, permalinks, feed, document, member, members, documents, jcarousel, rss
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3
|
7 |
-
Stable tag: 3.
|
8 |
|
9 |
Provides support for multiple useful shortcodes
|
10 |
|
@@ -15,31 +15,28 @@ With this plugin you can easily create buttons, boxes, different sliders and muc
|
|
15 |
|
16 |
= Features =
|
17 |
* 30+ amazing shortcodes
|
18 |
-
* Handy shortcodes
|
19 |
* Custom CSS editor with syntax highlight
|
20 |
* Frequently updates
|
21 |
* International
|
22 |
|
23 |
= New in this version =
|
24 |
-
*
|
25 |
-
*
|
26 |
-
* New shortcode: [custom_gallery]
|
27 |
-
* New parameter: [members login="0|1"]
|
28 |
-
* New shortcode: guests
|
29 |
-
* German translation
|
30 |
|
31 |
= Got a bug? =
|
32 |
-
*
|
33 |
-
*
|
34 |
* Twitter: http://twitter.com/gn_themes
|
35 |
|
36 |
= Translations =
|
37 |
-
* Fr - Aurélien DENIS
|
38 |
-
* Sp - Esteban Truelsegaard
|
39 |
-
* De - Matthias Wittmann
|
40 |
-
* Ru - Vladimir Anokhin
|
|
|
41 |
|
42 |
-
Have a translation? Contact me
|
43 |
|
44 |
|
45 |
== Installation ==
|
@@ -99,6 +96,10 @@ Also, you can use [jcarousel] and [custom_gallery] according these principles.
|
|
99 |
|
100 |
== Changelog ==
|
101 |
|
|
|
|
|
|
|
|
|
102 |
= 3.3 =
|
103 |
* Changed: [nivo_slider] and [jcarousel] (see docs in console)
|
104 |
* New shortcode: [custom_gallery]
|
1 |
=== Plugin Name ===
|
2 |
Contributors: gn_themes
|
3 |
+
Donate link: http://gndev.info/donate/
|
4 |
Tags: shortcode, shortcodes, short code, shortcodes, tab, tabs, button, buttons, jquery, box, boxes, toggle, spoiler, column, columns, services, service, pullquote, list, lists, frame, images, image, links, fancy, fancy link, fancy links, fancy buttons, jquery tabs, accordeon, slider, nivo, nivo slider, plugin, admin, photoshop, gallery, bloginfo, list pages, sub pages, navigation, siblings pages, children pages, permalink, permalinks, feed, document, member, members, documents, jcarousel, rss
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3
|
7 |
+
Stable tag: 3.4.0
|
8 |
|
9 |
Provides support for multiple useful shortcodes
|
10 |
|
15 |
|
16 |
= Features =
|
17 |
* 30+ amazing shortcodes
|
18 |
+
* Handy shortcodes generator
|
19 |
* Custom CSS editor with syntax highlight
|
20 |
* Frequently updates
|
21 |
* International
|
22 |
|
23 |
= New in this version =
|
24 |
+
* Belarusian translation
|
25 |
+
* New shortcode [dropcap]
|
|
|
|
|
|
|
|
|
26 |
|
27 |
= Got a bug? =
|
28 |
+
* Support forum - http://wordpress.org/tags/shortcodes-ultimate?forum_id=10
|
29 |
+
* Plugin page - http://gndev.info/shortcodes-ultimate/
|
30 |
* Twitter: http://twitter.com/gn_themes
|
31 |
|
32 |
= Translations =
|
33 |
+
* Fr - [Aurélien DENIS](http://wpchannel.com/)
|
34 |
+
* Sp - [Esteban Truelsegaard](http://www.netmdp.com/)
|
35 |
+
* De - [Matthias Wittmann](http://net-graphix.de/)
|
36 |
+
* Ru - [Vladimir Anokhin](http://gndev.info/)
|
37 |
+
* By - [Alexander Ovsov](http://webhostinggeeks.com/science/)
|
38 |
|
39 |
+
Have a translation? [Contact me](ano.vladimir@gmail.com)
|
40 |
|
41 |
|
42 |
== Installation ==
|
96 |
|
97 |
== Changelog ==
|
98 |
|
99 |
+
= 3.4 =
|
100 |
+
* Belarusian translation
|
101 |
+
* New shortcode [dropcap]
|
102 |
+
|
103 |
= 3.3 =
|
104 |
* Changed: [nivo_slider] and [jcarousel] (see docs in console)
|
105 |
* New shortcode: [custom_gallery]
|
shortcodes-ultimate.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Shortcodes Ultimate
|
4 |
-
Plugin URI: http://
|
5 |
-
Version: 3.
|
6 |
Author: Vladimir Anokhin
|
7 |
-
Author URI: http://
|
8 |
Description: Provides support for many easy to use shortcodes
|
9 |
Text Domain: shortcodes-ultimate
|
10 |
Domain Path: /languages
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Shortcodes Ultimate
|
4 |
+
Plugin URI: http://gndev.info/shortcodes-ultimate/
|
5 |
+
Version: 3.4.0
|
6 |
Author: Vladimir Anokhin
|
7 |
+
Author URI: http://gndev.info/
|
8 |
Description: Provides support for many easy to use shortcodes
|
9 |
Text Domain: shortcodes-ultimate
|
10 |
Domain Path: /languages
|