Version Description
Upgrade normally via your Wordpress admin -> Plugins panel.
Download this release
Release Info
Developer | gn_themes |
Plugin | Shortcodes Ultimate |
Version | 3.3.0 |
Comparing to | |
See all releases |
Code changes from version 3.2.1 to 3.3.0
- css/jcarousel.css +1 -0
- css/style.css +22 -0
- images/demo/custom_gallery.png +0 -0
- images/demo/guests.png +0 -0
- images/thumbnail.png +0 -0
- js/nivoslider.js +2 -2
- languages/shortcodes-ultimate-de_DE.mo +0 -0
- languages/shortcodes-ultimate-de_DE.po +862 -0
- languages/shortcodes-ultimate-ru_RU.mo +0 -0
- languages/shortcodes-ultimate-ru_RU.po +208 -168
- languages/shortcodes-ultimate.pot +369 -313
- lib/available.php +160 -66
- lib/images.php +157 -0
- lib/shortcodes.php +139 -168
- readme.txt +38 -5
- shortcodes-ultimate.php +4 -3
css/jcarousel.css
CHANGED
@@ -20,6 +20,7 @@
|
|
20 |
margin-right: 10px;
|
21 |
overflow: hidden;
|
22 |
list-style-type: none;
|
|
|
23 |
}
|
24 |
|
25 |
.su-jcarousel .jcarousel-prev {
|
20 |
margin-right: 10px;
|
21 |
overflow: hidden;
|
22 |
list-style-type: none;
|
23 |
+
text-align: center;
|
24 |
}
|
25 |
|
26 |
.su-jcarousel .jcarousel-prev {
|
css/style.css
CHANGED
@@ -500,6 +500,11 @@
|
|
500 |
background: #D9EEFF;
|
501 |
}
|
502 |
|
|
|
|
|
|
|
|
|
|
|
503 |
/* Tweets */
|
504 |
.su-tweets {
|
505 |
margin: 0 0 1.5em 0;
|
@@ -541,4 +546,21 @@
|
|
541 |
}
|
542 |
.su-tweets-style-2 .su-tweet a {
|
543 |
color: #fff;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
544 |
}
|
500 |
background: #D9EEFF;
|
501 |
}
|
502 |
|
503 |
+
/* Guests */
|
504 |
+
.su-guests {
|
505 |
+
margin-bottom: 1.5em;
|
506 |
+
}
|
507 |
+
|
508 |
/* Tweets */
|
509 |
.su-tweets {
|
510 |
margin: 0 0 1.5em 0;
|
546 |
}
|
547 |
.su-tweets-style-2 .su-tweet a {
|
548 |
color: #fff;
|
549 |
+
}
|
550 |
+
|
551 |
+
/* Custom gallery */
|
552 |
+
.su-custom-gallery {
|
553 |
+
margin: 0 0 1.5em 0;
|
554 |
+
}
|
555 |
+
.su-custom-gallery a {
|
556 |
+
float: left;
|
557 |
+
display: block;
|
558 |
+
margin: 0 1em 1em 0;
|
559 |
+
padding: 0;
|
560 |
+
}
|
561 |
+
.su-custom-gallery img {
|
562 |
+
display: block;
|
563 |
+
margin: 0;
|
564 |
+
padding: 0;
|
565 |
+
border: 2px solid #ccc;
|
566 |
}
|
images/demo/custom_gallery.png
ADDED
Binary file
|
images/demo/guests.png
ADDED
Binary file
|
images/thumbnail.png
ADDED
Binary file
|
js/nivoslider.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
/*
|
2 |
-
* jQuery Nivo Slider v2.
|
3 |
* http://nivo.dev7studios.com
|
4 |
*
|
5 |
* Copyright 2011, Gilbert Pellegrom
|
@@ -17,7 +17,7 @@ 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();});}
|
1 |
/*
|
2 |
+
* jQuery Nivo Slider v2.6
|
3 |
* http://nivo.dev7studios.com
|
4 |
*
|
5 |
* Copyright 2011, Gilbert Pellegrom
|
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')!=''&&vars.currentImage.attr('title')!=undefined){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();});}
|
languages/shortcodes-ultimate-de_DE.mo
ADDED
Binary file
|
languages/shortcodes-ultimate-de_DE.po
ADDED
@@ -0,0 +1,862 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Shortcodes Ultimate v3.3.0\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-09-28 16:39+0100\n"
|
6 |
+
"PO-Revision-Date: 2011-09-28 16:39+0100\n"
|
7 |
+
"Last-Translator: \n"
|
8 |
+
"Language-Team: <m.wittmann@net-graphix.de>\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;__;gettext\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
"X-Poedit-Language: German\n"
|
16 |
+
"X-Poedit-Country: GERMANY\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
|
19 |
+
#: shortcodes-ultimate.php:184
|
20 |
+
#: lib/admin.php:26
|
21 |
+
msgid "Shortcodes Ultimate"
|
22 |
+
msgstr "Shortcodes Ultimate"
|
23 |
+
|
24 |
+
#: shortcodes-ultimate.php:184
|
25 |
+
msgid "Vladimir Anokhin"
|
26 |
+
msgstr "Vladimir Anokhin"
|
27 |
+
|
28 |
+
#: shortcodes-ultimate.php:184
|
29 |
+
msgid "Provides support for many easy to use shortcodes"
|
30 |
+
msgstr "Bietet Unterstützung für Shortcodes"
|
31 |
+
|
32 |
+
#: shortcodes-ultimate.php:270
|
33 |
+
#: shortcodes-ultimate.php:321
|
34 |
+
#: lib/admin.php:35
|
35 |
+
msgid "Settings"
|
36 |
+
msgstr "Einstellungen"
|
37 |
+
|
38 |
+
#: shortcodes-ultimate.php:283
|
39 |
+
#: lib/admin.php:62
|
40 |
+
msgid "Settings saved"
|
41 |
+
msgstr "Einstellungen gespeichert"
|
42 |
+
|
43 |
+
#: shortcodes-ultimate.php:288
|
44 |
+
#: lib/admin.php:123
|
45 |
+
msgid "Custom CSS saved"
|
46 |
+
msgstr "Individuelles CSS gespeichert"
|
47 |
+
|
48 |
+
#: shortcodes-ultimate.php:296
|
49 |
+
msgid "Insert shortcode"
|
50 |
+
msgstr "Shortcode einfügen"
|
51 |
+
|
52 |
+
#: shortcodes-ultimate.php:311
|
53 |
+
msgid "Select shortcode"
|
54 |
+
msgstr "Shortcode auswählen"
|
55 |
+
|
56 |
+
#: shortcodes-ultimate.php:322
|
57 |
+
msgid "Color picker"
|
58 |
+
msgstr "Farbe auswählen"
|
59 |
+
|
60 |
+
#: shortcodes-ultimate.php:323
|
61 |
+
#: lib/admin.php:44
|
62 |
+
msgid "Support forum"
|
63 |
+
msgstr "Support Forum"
|
64 |
+
|
65 |
+
#: lib/admin.php:7
|
66 |
+
#: lib/admin.php:37
|
67 |
+
msgid "Shortcodes"
|
68 |
+
msgstr "Shortcodes"
|
69 |
+
|
70 |
+
#: lib/admin.php:34
|
71 |
+
msgid "About"
|
72 |
+
msgstr "Über"
|
73 |
+
|
74 |
+
#: lib/admin.php:36
|
75 |
+
msgid "Custom CSS"
|
76 |
+
msgstr "Individuelles CSS"
|
77 |
+
|
78 |
+
#: lib/admin.php:38
|
79 |
+
#: lib/admin.php:175
|
80 |
+
#: lib/generator.php:52
|
81 |
+
msgid "Demo"
|
82 |
+
msgstr "Demo"
|
83 |
+
|
84 |
+
#: lib/admin.php:41
|
85 |
+
msgid "For full functionality of this page it is recommended to enable JavaScript."
|
86 |
+
msgstr "Sie müssen JavaScript aktivieren, um alle Funktionen nutzen zu können."
|
87 |
+
|
88 |
+
#: lib/admin.php:41
|
89 |
+
msgid "Instructions"
|
90 |
+
msgstr "Anleitung"
|
91 |
+
|
92 |
+
#: lib/admin.php:43
|
93 |
+
msgid "FREE Support"
|
94 |
+
msgstr "Kostenloser Support"
|
95 |
+
|
96 |
+
#: lib/admin.php:45
|
97 |
+
msgid "Twitter"
|
98 |
+
msgstr "Twitter"
|
99 |
+
|
100 |
+
#: lib/admin.php:46
|
101 |
+
msgid "Bug report"
|
102 |
+
msgstr "Bug melden"
|
103 |
+
|
104 |
+
#: lib/admin.php:50
|
105 |
+
msgid "Do you love this plugin?"
|
106 |
+
msgstr "Du magst dieses Plugin?"
|
107 |
+
|
108 |
+
#: lib/admin.php:51
|
109 |
+
msgid "Buy author a beer"
|
110 |
+
msgstr "Lade den Autor auf ein Bier ein"
|
111 |
+
|
112 |
+
#: lib/admin.php:51
|
113 |
+
msgid "Donate"
|
114 |
+
msgstr "Spenden"
|
115 |
+
|
116 |
+
#: lib/admin.php:52
|
117 |
+
msgid "Rate this plugin at wordpress.org"
|
118 |
+
msgstr "Bewerte dieses Plugin auf wordpress.org"
|
119 |
+
|
120 |
+
#: lib/admin.php:52
|
121 |
+
msgid "5 stars"
|
122 |
+
msgstr "5 Sterne"
|
123 |
+
|
124 |
+
#: lib/admin.php:53
|
125 |
+
msgid "Review this plugin in your blog"
|
126 |
+
msgstr "Beurteile dieses Plugin in Deinem Blog"
|
127 |
+
|
128 |
+
#: lib/admin.php:61
|
129 |
+
#: lib/admin.php:122
|
130 |
+
msgid "Saving..."
|
131 |
+
msgstr "Speichere..."
|
132 |
+
|
133 |
+
#: lib/admin.php:66
|
134 |
+
msgid "Disable custom formatting"
|
135 |
+
msgstr "Deaktiviere individuelle Formatierung"
|
136 |
+
|
137 |
+
#: lib/admin.php:69
|
138 |
+
msgid "Enable this option if you have some problems with other plugins or content formatting"
|
139 |
+
msgstr "Aktiviere diese Option, falls Probleme mit anderen Plugins auftreten sollten"
|
140 |
+
|
141 |
+
#: lib/admin.php:74
|
142 |
+
msgid "Compatibility mode"
|
143 |
+
msgstr "Kompatibilitätsmodus"
|
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 "Aktiviere diese Option, falls Probleme mit anderen Plugins auftreten sollten, die ebenfalls ähnliche Shortcodenamen verwenden"
|
148 |
+
|
149 |
+
#: lib/admin.php:77
|
150 |
+
msgid "Forum topic"
|
151 |
+
msgstr "Thema des Forums"
|
152 |
+
|
153 |
+
#: lib/admin.php:81
|
154 |
+
msgid "Disable scripts"
|
155 |
+
msgstr "Deaktiviere Skripte"
|
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 "Deaktiviere"
|
167 |
+
|
168 |
+
#: lib/admin.php:92
|
169 |
+
msgid "Check scripts, that you want to exclude form wp_head section"
|
170 |
+
msgstr "Überprüfe die Skripte, die Du vom wp_head Abschnitt ausschließen möchtest."
|
171 |
+
|
172 |
+
#: lib/admin.php:92
|
173 |
+
#: lib/admin.php:105
|
174 |
+
msgid "Be careful with this settings!"
|
175 |
+
msgstr "ACHTUNG mit diesen Einstellungen!"
|
176 |
+
|
177 |
+
#: lib/admin.php:96
|
178 |
+
msgid "Disable styles"
|
179 |
+
msgstr "Deaktiviere Stile"
|
180 |
+
|
181 |
+
#: lib/admin.php:105
|
182 |
+
msgid "Check stylesheets, that you want to exclude form wp_head section"
|
183 |
+
msgstr "Überprüfe Stylesheets, die Du vom wp_head Abschnitt ausschliessen möchtest"
|
184 |
+
|
185 |
+
#: lib/admin.php:111
|
186 |
+
msgid "Save settings"
|
187 |
+
msgstr "Speichere Einstellungen"
|
188 |
+
|
189 |
+
#: lib/admin.php:124
|
190 |
+
msgid "You can add custom styles, that will override defaults"
|
191 |
+
msgstr "Du kannst individuelle Stile hinzufügen, diese überschreiben die Standardstile"
|
192 |
+
|
193 |
+
#: lib/admin.php:125
|
194 |
+
msgid "See original styles"
|
195 |
+
msgstr "Zeige Originalstile"
|
196 |
+
|
197 |
+
#: lib/admin.php:128
|
198 |
+
msgid "Save styles"
|
199 |
+
msgstr "Speichere Stile"
|
200 |
+
|
201 |
+
#: lib/admin.php:138
|
202 |
+
#: lib/admin.php:174
|
203 |
+
msgid "Shortcode"
|
204 |
+
msgstr "Shortcode"
|
205 |
+
|
206 |
+
#: lib/admin.php:139
|
207 |
+
msgid "Parameters"
|
208 |
+
msgstr "Parameters"
|
209 |
+
|
210 |
+
#: lib/admin.php:140
|
211 |
+
msgid "Usage"
|
212 |
+
msgstr "Verwendung"
|
213 |
+
|
214 |
+
#: lib/available.php:18
|
215 |
+
msgid "Heading style"
|
216 |
+
msgstr "Überschriftenstil"
|
217 |
+
|
218 |
+
#: lib/available.php:22
|
219 |
+
msgid "Heading"
|
220 |
+
msgstr "Überschrift"
|
221 |
+
|
222 |
+
#: lib/available.php:23
|
223 |
+
msgid "Styled heading"
|
224 |
+
msgstr "Überschrift"
|
225 |
+
|
226 |
+
#: lib/available.php:37
|
227 |
+
msgid "Frame align"
|
228 |
+
msgstr "Frame Ausrichtung"
|
229 |
+
|
230 |
+
#: lib/available.php:41
|
231 |
+
msgid "Image tag"
|
232 |
+
msgstr "Bild Tag"
|
233 |
+
|
234 |
+
#: lib/available.php:42
|
235 |
+
msgid "Styled image frame"
|
236 |
+
msgstr "Formatierter Bildrahmen"
|
237 |
+
|
238 |
+
#: lib/available.php:56
|
239 |
+
msgid "Tabs style"
|
240 |
+
msgstr "Tabs Stil"
|
241 |
+
|
242 |
+
#: lib/available.php:60
|
243 |
+
msgid "Tabs container"
|
244 |
+
msgstr "Tabs Container"
|
245 |
+
|
246 |
+
#: lib/available.php:69
|
247 |
+
msgid "Title"
|
248 |
+
msgstr "Titel"
|
249 |
+
|
250 |
+
#: lib/available.php:70
|
251 |
+
msgid "Tab title"
|
252 |
+
msgstr "Tab Titel"
|
253 |
+
|
254 |
+
#: lib/available.php:74
|
255 |
+
msgid "Tab content"
|
256 |
+
msgstr "Inhalt des Tabs"
|
257 |
+
|
258 |
+
#: lib/available.php:75
|
259 |
+
msgid "Single tab"
|
260 |
+
msgstr "Ein einziger Tab"
|
261 |
+
|
262 |
+
#: lib/available.php:84
|
263 |
+
#: lib/available.php:85
|
264 |
+
#: lib/shortcodes.php:82
|
265 |
+
msgid "Spoiler title"
|
266 |
+
msgstr "Spoiler Titel"
|
267 |
+
|
268 |
+
#: lib/available.php:89
|
269 |
+
msgid "Hidden content"
|
270 |
+
msgstr "Versteckter Inhalt"
|
271 |
+
|
272 |
+
#: lib/available.php:90
|
273 |
+
msgid "Hidden text"
|
274 |
+
msgstr "Versteckter Text"
|
275 |
+
|
276 |
+
#: lib/available.php:103
|
277 |
+
msgid "Show TOP link"
|
278 |
+
msgstr "Zeige TOP Link"
|
279 |
+
|
280 |
+
#: lib/available.php:107
|
281 |
+
msgid "Content divider with optional TOP link"
|
282 |
+
msgstr "Trennlinie mit optionalem TOP Link"
|
283 |
+
|
284 |
+
#: lib/available.php:123
|
285 |
+
msgid "Spacer height in pixels"
|
286 |
+
msgstr "Höhe des Platzhalters in Pixeln"
|
287 |
+
|
288 |
+
#: lib/available.php:127
|
289 |
+
msgid "Empty space with adjustable height"
|
290 |
+
msgstr "Leerer Platzhalter mit frei wählbarer Höhe"
|
291 |
+
|
292 |
+
#: lib/available.php:141
|
293 |
+
msgid "Quote style"
|
294 |
+
msgstr "Zitat-Stil"
|
295 |
+
|
296 |
+
#: lib/available.php:145
|
297 |
+
msgid "Quote"
|
298 |
+
msgstr "Zitat"
|
299 |
+
|
300 |
+
#: lib/available.php:146
|
301 |
+
msgid "Blockquote alternative"
|
302 |
+
msgstr "Zitat Alternative"
|
303 |
+
|
304 |
+
#: lib/available.php:159
|
305 |
+
msgid "Pullquote alignment"
|
306 |
+
msgstr "Pullquote Ausrichtung"
|
307 |
+
|
308 |
+
#: lib/available.php:163
|
309 |
+
#: lib/available.php:164
|
310 |
+
msgid "Pullquote"
|
311 |
+
msgstr "Pullquote"
|
312 |
+
|
313 |
+
#: lib/available.php:174
|
314 |
+
msgid "Background color"
|
315 |
+
msgstr "Hintergrundfarbe"
|
316 |
+
|
317 |
+
#: lib/available.php:180
|
318 |
+
msgid "Text color"
|
319 |
+
msgstr "Textfarbe"
|
320 |
+
|
321 |
+
#: lib/available.php:185
|
322 |
+
#: lib/available.php:186
|
323 |
+
msgid "Highlighted text"
|
324 |
+
msgstr "Hervorgehobener Text"
|
325 |
+
|
326 |
+
#: lib/available.php:209
|
327 |
+
msgid "Option name"
|
328 |
+
msgstr "Optionname"
|
329 |
+
|
330 |
+
#: lib/available.php:213
|
331 |
+
msgid "Blog info"
|
332 |
+
msgstr "Bloginfo"
|
333 |
+
|
334 |
+
#: lib/available.php:223
|
335 |
+
msgid "Post/page ID"
|
336 |
+
msgstr "Post/Page ID"
|
337 |
+
|
338 |
+
#: lib/available.php:231
|
339 |
+
msgid "Link target"
|
340 |
+
msgstr "Link Ziel"
|
341 |
+
|
342 |
+
#: lib/available.php:235
|
343 |
+
msgid "Permalink text"
|
344 |
+
msgstr "Permalink Text"
|
345 |
+
|
346 |
+
#: lib/available.php:236
|
347 |
+
msgid "Permalink to specified post/page"
|
348 |
+
msgstr "Permalink mit Post/Page verknüpfen"
|
349 |
+
|
350 |
+
#: lib/available.php:246
|
351 |
+
msgid "Button link"
|
352 |
+
msgstr "Button Link"
|
353 |
+
|
354 |
+
#: lib/available.php:251
|
355 |
+
msgid "Button background color"
|
356 |
+
msgstr "Button Hintergrundfarbe"
|
357 |
+
|
358 |
+
#: lib/available.php:270
|
359 |
+
msgid "Button size"
|
360 |
+
msgstr "Button Size"
|
361 |
+
|
362 |
+
#: lib/available.php:280
|
363 |
+
msgid "Button background style"
|
364 |
+
msgstr "Button Hintergrundstil"
|
365 |
+
|
366 |
+
#: lib/available.php:288
|
367 |
+
msgid "Dark text color"
|
368 |
+
msgstr "Dunkle Textfarbe"
|
369 |
+
|
370 |
+
#: lib/available.php:296
|
371 |
+
msgid "Disable rounded corners"
|
372 |
+
msgstr "Runde Ecken deaktivieren"
|
373 |
+
|
374 |
+
#: lib/available.php:301
|
375 |
+
msgid "Button icon"
|
376 |
+
msgstr "Button Icon"
|
377 |
+
|
378 |
+
#: lib/available.php:306
|
379 |
+
msgid "Button class"
|
380 |
+
msgstr "Button Class"
|
381 |
+
|
382 |
+
#: lib/available.php:314
|
383 |
+
msgid "Button link target"
|
384 |
+
msgstr "Button Link-Ziel"
|
385 |
+
|
386 |
+
#: lib/available.php:318
|
387 |
+
msgid "Button text"
|
388 |
+
msgstr "Buttontext"
|
389 |
+
|
390 |
+
#: lib/available.php:319
|
391 |
+
msgid "Styled button"
|
392 |
+
msgstr "Button Stil"
|
393 |
+
|
394 |
+
#: lib/available.php:332
|
395 |
+
msgid "Link color"
|
396 |
+
msgstr "Linkfarbe"
|
397 |
+
|
398 |
+
#: lib/available.php:337
|
399 |
+
msgid "URL"
|
400 |
+
msgstr "URL"
|
401 |
+
|
402 |
+
#: lib/available.php:341
|
403 |
+
msgid "Link text"
|
404 |
+
msgstr "Linktext"
|
405 |
+
|
406 |
+
#: lib/available.php:342
|
407 |
+
msgid "Fancy link"
|
408 |
+
msgstr "Fancy Link"
|
409 |
+
|
410 |
+
#: lib/available.php:351
|
411 |
+
#: lib/available.php:352
|
412 |
+
msgid "Service title"
|
413 |
+
msgstr "Servicetitel"
|
414 |
+
|
415 |
+
#: lib/available.php:357
|
416 |
+
msgid "Service icon"
|
417 |
+
msgstr "Service Icon"
|
418 |
+
|
419 |
+
#: lib/available.php:366
|
420 |
+
msgid "Icon size"
|
421 |
+
msgstr "Icon Size"
|
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 "Service Box mit Titel"
|
430 |
+
|
431 |
+
#: lib/available.php:385
|
432 |
+
msgid "Box style"
|
433 |
+
msgstr "Box Stil"
|
434 |
+
|
435 |
+
#: lib/available.php:393
|
436 |
+
msgid "Show login message"
|
437 |
+
msgstr "Zeige Loginnachricht"
|
438 |
+
|
439 |
+
#: lib/available.php:397
|
440 |
+
msgid "Content for logged members"
|
441 |
+
msgstr "Inhalt nur für eingeloggte Mitglieder"
|
442 |
+
|
443 |
+
#: lib/available.php:398
|
444 |
+
msgid "Content for logged in members only"
|
445 |
+
msgstr "Inhalt nur für eingeloggte Mitglieder"
|
446 |
+
|
447 |
+
#: lib/available.php:406
|
448 |
+
msgid "Content for guests"
|
449 |
+
msgstr "Inhalte für Gäste"
|
450 |
+
|
451 |
+
#: lib/available.php:407
|
452 |
+
msgid "Content for guests only"
|
453 |
+
msgstr "Inhalt nur für Gäste"
|
454 |
+
|
455 |
+
#: lib/available.php:416
|
456 |
+
#: lib/available.php:417
|
457 |
+
msgid "Box title"
|
458 |
+
msgstr "Box Titel"
|
459 |
+
|
460 |
+
#: lib/available.php:422
|
461 |
+
msgid "Box color"
|
462 |
+
msgstr "Boxfarbe"
|
463 |
+
|
464 |
+
#: lib/available.php:427
|
465 |
+
msgid "Box content"
|
466 |
+
msgstr "Boxinhalt"
|
467 |
+
|
468 |
+
#: lib/available.php:428
|
469 |
+
msgid "Colored box with caption"
|
470 |
+
msgstr "Farbige Box mit Beschriftung"
|
471 |
+
|
472 |
+
#: lib/available.php:438
|
473 |
+
msgid "Note color"
|
474 |
+
msgstr "Notizfarbe"
|
475 |
+
|
476 |
+
#: lib/available.php:443
|
477 |
+
msgid "Note text"
|
478 |
+
msgstr "Notiztext"
|
479 |
+
|
480 |
+
#: lib/available.php:444
|
481 |
+
msgid "Colored box"
|
482 |
+
msgstr "Farbige Box"
|
483 |
+
|
484 |
+
#: lib/available.php:452
|
485 |
+
msgid "Private note text"
|
486 |
+
msgstr "Private Nachricht"
|
487 |
+
|
488 |
+
#: lib/available.php:453
|
489 |
+
msgid "Private note for post authors"
|
490 |
+
msgstr "Private Nachricht für Autoren"
|
491 |
+
|
492 |
+
#: lib/available.php:479
|
493 |
+
msgid "List style"
|
494 |
+
msgstr "Listen Stil"
|
495 |
+
|
496 |
+
#: lib/available.php:483
|
497 |
+
msgid "List item "
|
498 |
+
msgstr "Listenelement"
|
499 |
+
|
500 |
+
#: lib/available.php:484
|
501 |
+
msgid "Styled unordered list"
|
502 |
+
msgstr "Stil ungeordnete Liste"
|
503 |
+
|
504 |
+
#: lib/available.php:494
|
505 |
+
msgid "Feed URL"
|
506 |
+
msgstr "Feed URL"
|
507 |
+
|
508 |
+
#: lib/available.php:505
|
509 |
+
msgid "Number of item to show"
|
510 |
+
msgstr "Anzahl der zu zeigenden Items"
|
511 |
+
|
512 |
+
#: lib/available.php:509
|
513 |
+
msgid "Feed grabber"
|
514 |
+
msgstr "Feed grabber"
|
515 |
+
|
516 |
+
#: lib/available.php:519
|
517 |
+
msgid "Custom menu name"
|
518 |
+
msgstr "Individueller Menüname"
|
519 |
+
|
520 |
+
#: lib/available.php:523
|
521 |
+
msgid "Custom menu by name"
|
522 |
+
msgstr "Individuelles Menü nach Name"
|
523 |
+
|
524 |
+
#: lib/available.php:537
|
525 |
+
#: lib/available.php:560
|
526 |
+
msgid "Depth level"
|
527 |
+
msgstr "Leveltiefe"
|
528 |
+
|
529 |
+
#: lib/available.php:542
|
530 |
+
msgid "Parent page ID"
|
531 |
+
msgstr "Übergeordnete Seite-ID: Page ID"
|
532 |
+
|
533 |
+
#: lib/available.php:546
|
534 |
+
msgid "Page childrens"
|
535 |
+
msgstr "Untergeordnete Seite"
|
536 |
+
|
537 |
+
#: lib/available.php:564
|
538 |
+
msgid "Page siblings"
|
539 |
+
msgstr "Verwandte Seiten"
|
540 |
+
|
541 |
+
#: lib/available.php:586
|
542 |
+
msgid "Column width"
|
543 |
+
msgstr "Spaltenbreite"
|
544 |
+
|
545 |
+
#: lib/available.php:594
|
546 |
+
msgid "Last column"
|
547 |
+
msgstr "Letzte Spalte"
|
548 |
+
|
549 |
+
#: lib/available.php:603
|
550 |
+
msgid "Column style"
|
551 |
+
msgstr "Spalten Stil"
|
552 |
+
|
553 |
+
#: lib/available.php:607
|
554 |
+
msgid "Column content"
|
555 |
+
msgstr "Spalteninhalt"
|
556 |
+
|
557 |
+
#: lib/available.php:608
|
558 |
+
msgid "Flexible columns"
|
559 |
+
msgstr "Flexible Spalten"
|
560 |
+
|
561 |
+
#: lib/available.php:622
|
562 |
+
msgid "Table style"
|
563 |
+
msgstr "Tabellenstil"
|
564 |
+
|
565 |
+
#: lib/available.php:627
|
566 |
+
msgid "Create table from CSV"
|
567 |
+
msgstr "Erstelle Tabelle aus einer CSV-Datei"
|
568 |
+
|
569 |
+
#: lib/available.php:632
|
570 |
+
msgid "Styled table from HTML or CSV file"
|
571 |
+
msgstr "Formatierte Tabelle aus einer HTML- oder CSV-Datei"
|
572 |
+
|
573 |
+
#: lib/available.php:642
|
574 |
+
msgid "Media URL"
|
575 |
+
msgstr "Medien URL"
|
576 |
+
|
577 |
+
#: lib/available.php:647
|
578 |
+
#: lib/available.php:671
|
579 |
+
#: lib/available.php:690
|
580 |
+
msgid "Width"
|
581 |
+
msgstr "Breite"
|
582 |
+
|
583 |
+
#: lib/available.php:652
|
584 |
+
#: lib/available.php:676
|
585 |
+
#: lib/available.php:695
|
586 |
+
msgid "Height"
|
587 |
+
msgstr "Höhe"
|
588 |
+
|
589 |
+
#: lib/available.php:656
|
590 |
+
msgid "YouTube video, Vimeo video, .mp4/.flv video, .mp3 file or images"
|
591 |
+
msgstr "YouTube-Video, Vimeo-Video, *.mp4/*.flv, *.mp3 Datei oder Bilder"
|
592 |
+
|
593 |
+
#: lib/available.php:666
|
594 |
+
msgid "Document URL"
|
595 |
+
msgstr "Dokument URL"
|
596 |
+
|
597 |
+
#: lib/available.php:680
|
598 |
+
msgid ".doc, .xls, .pdf viewer by Google"
|
599 |
+
msgstr "*.doc, *.xls, *.pdf - Betracher von Google"
|
600 |
+
|
601 |
+
#: lib/available.php:700
|
602 |
+
msgid "Marker address"
|
603 |
+
msgstr "Marker Adresse"
|
604 |
+
|
605 |
+
#: lib/available.php:704
|
606 |
+
msgid "Maps by Google"
|
607 |
+
msgstr "Maps bei Google"
|
608 |
+
|
609 |
+
#: lib/available.php:718
|
610 |
+
#: lib/available.php:788
|
611 |
+
#: lib/available.php:860
|
612 |
+
msgid "Source of images"
|
613 |
+
msgstr "Bildquelle"
|
614 |
+
|
615 |
+
#: lib/available.php:729
|
616 |
+
#: lib/available.php:799
|
617 |
+
#: lib/available.php:871
|
618 |
+
msgid "Images links"
|
619 |
+
msgstr "Links der Bilder"
|
620 |
+
|
621 |
+
#: lib/available.php:740
|
622 |
+
msgid "Slider size"
|
623 |
+
msgstr "Slider Size"
|
624 |
+
|
625 |
+
#: lib/available.php:750
|
626 |
+
msgid "Number of slides"
|
627 |
+
msgstr "Anzahl der Slides"
|
628 |
+
|
629 |
+
#: lib/available.php:760
|
630 |
+
msgid "Animation effect"
|
631 |
+
msgstr "Animationseffekt"
|
632 |
+
|
633 |
+
#: lib/available.php:765
|
634 |
+
#: lib/available.php:833
|
635 |
+
msgid "Animation speed (1000 = 1 second)"
|
636 |
+
msgstr "Animationsgeschwindigkeit (1000 = 1 Sekunde)"
|
637 |
+
|
638 |
+
#: lib/available.php:770
|
639 |
+
msgid "Animation delay (1000 = 1 second)"
|
640 |
+
msgstr "Animationsverzögerung (1000 = 1 Sekunde)"
|
641 |
+
|
642 |
+
#: lib/available.php:774
|
643 |
+
msgid "Nivo slider by attached to post images"
|
644 |
+
msgstr "Nivo Slider mit zugewiesenen Bildern"
|
645 |
+
|
646 |
+
#: lib/available.php:809
|
647 |
+
msgid "Carousel item size"
|
648 |
+
msgstr "Größe des Carouselelements"
|
649 |
+
|
650 |
+
#: lib/available.php:819
|
651 |
+
#: lib/available.php:891
|
652 |
+
msgid "Number of items"
|
653 |
+
msgstr "Anzahl der Elemente"
|
654 |
+
|
655 |
+
#: lib/available.php:828
|
656 |
+
msgid "Number of items in viewport"
|
657 |
+
msgstr "Anzahl der Elemente im Ansichtsfenster"
|
658 |
+
|
659 |
+
#: lib/available.php:842
|
660 |
+
msgid "Space between items in pixels"
|
661 |
+
msgstr "Platz zwischen den Elementen in Pixeln"
|
662 |
+
|
663 |
+
#: lib/available.php:846
|
664 |
+
msgid "jCarousel by attached to post images"
|
665 |
+
msgstr "jCarousel mit zugewiesenen Bildern"
|
666 |
+
|
667 |
+
#: lib/available.php:881
|
668 |
+
msgid "Gallery item size"
|
669 |
+
msgstr "Größe der Galerieelemente"
|
670 |
+
|
671 |
+
#: lib/available.php:895
|
672 |
+
msgid "Custom gallery by attached to post images"
|
673 |
+
msgstr "Individuelle Galerie mit zugewiesenen Bildern"
|
674 |
+
|
675 |
+
#: lib/available.php:905
|
676 |
+
msgid "Twitter username"
|
677 |
+
msgstr "Twitter Benutzername"
|
678 |
+
|
679 |
+
#: lib/available.php:916
|
680 |
+
msgid "Number of tweets to show"
|
681 |
+
msgstr "Anzahl der anzuzeigenden Tweets"
|
682 |
+
|
683 |
+
#: lib/available.php:924
|
684 |
+
msgid "Tweets style"
|
685 |
+
msgstr "Stile der Tweets"
|
686 |
+
|
687 |
+
#: lib/available.php:932
|
688 |
+
msgid "Show relative time"
|
689 |
+
msgstr "Zeige relative Zeit"
|
690 |
+
|
691 |
+
#: lib/available.php:936
|
692 |
+
msgid "Recent tweets"
|
693 |
+
msgstr "Aktuelle Tweets"
|
694 |
+
|
695 |
+
#: lib/generator.php:48
|
696 |
+
msgid "Content"
|
697 |
+
msgstr "Содержимое"
|
698 |
+
|
699 |
+
#: lib/generator.php:51
|
700 |
+
msgid "Insert"
|
701 |
+
msgstr "Einfügen"
|
702 |
+
|
703 |
+
#: lib/shortcodes.php:101
|
704 |
+
msgid "Top"
|
705 |
+
msgstr "Oben"
|
706 |
+
|
707 |
+
#: lib/shortcodes.php:301
|
708 |
+
msgid "Service name"
|
709 |
+
msgstr "Servicename"
|
710 |
+
|
711 |
+
#: lib/shortcodes.php:319
|
712 |
+
msgid "This is box title"
|
713 |
+
msgstr "Dies ist der Boxtitel"
|
714 |
+
|
715 |
+
#: lib/shortcodes.php:381
|
716 |
+
msgid "Please specify media url"
|
717 |
+
msgstr "Bitte spezifiziere die Medien Url"
|
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 "Keine angehängten Bilder oder nur ein angehängtes Bild"
|
724 |
+
|
725 |
+
#: lib/shortcodes.php:683
|
726 |
+
msgid "This menu doesn't exists, or has no elements"
|
727 |
+
msgstr "Dieses Menü existiert nicht oder besitzt keine Elemente"
|
728 |
+
|
729 |
+
#: lib/shortcodes.php:740
|
730 |
+
msgid "This content is for members only."
|
731 |
+
msgstr "Dieser Inhalt ist nur für Mitglieder."
|
732 |
+
|
733 |
+
#: lib/shortcodes.php:740
|
734 |
+
msgid "Please login"
|
735 |
+
msgstr "Bitte einloggen"
|
736 |
+
|
737 |
+
#: lib/twitter.php:9
|
738 |
+
msgid "year"
|
739 |
+
msgstr "Jahr"
|
740 |
+
|
741 |
+
#: lib/twitter.php:10
|
742 |
+
msgid "month"
|
743 |
+
msgstr "Monat"
|
744 |
+
|
745 |
+
#: lib/twitter.php:11
|
746 |
+
msgid "week"
|
747 |
+
msgstr "Woche"
|
748 |
+
|
749 |
+
#: lib/twitter.php:12
|
750 |
+
msgid "day"
|
751 |
+
msgstr "Tag"
|
752 |
+
|
753 |
+
#: lib/twitter.php:13
|
754 |
+
msgid "hour"
|
755 |
+
msgstr "Stunde"
|
756 |
+
|
757 |
+
#: lib/twitter.php:14
|
758 |
+
msgid "minute"
|
759 |
+
msgstr "Minute"
|
760 |
+
|
761 |
+
#: lib/twitter.php:28
|
762 |
+
#: lib/twitter.php:36
|
763 |
+
msgid "s"
|
764 |
+
msgstr "s"
|
765 |
+
|
766 |
+
#: lib/twitter.php:73
|
767 |
+
msgid "username not specified"
|
768 |
+
msgstr "Benutzername nicht spezifiziert"
|
769 |
+
|
770 |
+
#: lib/twitter.php:76
|
771 |
+
msgid "no public messages"
|
772 |
+
msgstr "Keine öffentlichen Mitteilungen"
|
773 |
+
|
774 |
+
#~ msgid "You can define custom styles for each columns set"
|
775 |
+
#~ msgstr "Du kannst für jeden Spaltenabschnitt individuelle Stile definieren"
|
776 |
+
|
777 |
+
#~ msgid "Slider height"
|
778 |
+
#~ msgstr "Sliderhöhe"
|
779 |
+
|
780 |
+
#~ msgid "Slides links"
|
781 |
+
#~ msgstr "Slider Links"
|
782 |
+
|
783 |
+
#~ msgid "Carousel height"
|
784 |
+
#~ msgstr "Carouselhöhe"
|
785 |
+
|
786 |
+
#~ msgid "Carousel background"
|
787 |
+
#~ msgstr "Carouselhintergrund"
|
788 |
+
|
789 |
+
#~ msgid "Tab name"
|
790 |
+
#~ msgstr "Имя вкладки"
|
791 |
+
|
792 |
+
#~ msgid "See available values"
|
793 |
+
#~ msgstr "Возможные значения (англ.)"
|
794 |
+
|
795 |
+
#~ msgid "Read more"
|
796 |
+
#~ msgstr "Подробнее"
|
797 |
+
|
798 |
+
#~ msgid "image url"
|
799 |
+
#~ msgstr "ссылка на изображение"
|
800 |
+
|
801 |
+
#~ msgid "Plain table"
|
802 |
+
#~ msgstr "Простая таблица"
|
803 |
+
|
804 |
+
#~ msgid "From CSV"
|
805 |
+
#~ msgstr "Из CSV-файла"
|
806 |
+
|
807 |
+
#~ msgid "1 second"
|
808 |
+
#~ msgstr "1 секунда"
|
809 |
+
|
810 |
+
#~ msgid "See filter IDs"
|
811 |
+
#~ msgstr "Смотреть ID фильтров"
|
812 |
+
|
813 |
+
#~ msgid "General settings"
|
814 |
+
#~ msgstr "Основные настройки"
|
815 |
+
|
816 |
+
#~ msgid "Available shortcodes"
|
817 |
+
#~ msgstr "Список шорткодов"
|
818 |
+
|
819 |
+
#~ msgid "Specify menu name and add elements to menu"
|
820 |
+
#~ msgstr "Укажите имя меню, или добавьте элементы в укзанное меню"
|
821 |
+
|
822 |
+
#~ msgid "Support links"
|
823 |
+
#~ msgstr "Полезные ссылки"
|
824 |
+
|
825 |
+
#~ msgid "You can support this project by buying the author a cup of coffee!"
|
826 |
+
#~ msgstr "Вы можете поддержать этот проект, купив автору чашечку кофе!"
|
827 |
+
|
828 |
+
#~ msgid "Donate with MoneyBookers.com"
|
829 |
+
#~ msgstr "Сделать пожертвование через MoneyBookers.com"
|
830 |
+
|
831 |
+
#~ msgid "Donation to help support Shortcodes Ultimate plugin"
|
832 |
+
#~ msgstr "Пожертвование автору плагина Shortcodes Ultimate"
|
833 |
+
|
834 |
+
#~ msgid "Click to make a donation"
|
835 |
+
#~ msgstr "Кликните, чтобы сделать пожертвование"
|
836 |
+
|
837 |
+
#~ msgid "Donate with Money.Yandex.ru"
|
838 |
+
#~ msgstr "Сделать пожертвование через Money.Yandex.ru"
|
839 |
+
|
840 |
+
#~ msgid "Donate with WebMoney.ru"
|
841 |
+
#~ msgstr "Сделать пожертвование через WebMoney.ru"
|
842 |
+
|
843 |
+
#~ msgid "Want to support author? Just share this link!"
|
844 |
+
#~ msgstr "Хотите поддержать автора? Просто опубликйте ссылку!"
|
845 |
+
|
846 |
+
#~ msgid "Share on Facebook"
|
847 |
+
#~ msgstr "Опубликовать на Facebook"
|
848 |
+
|
849 |
+
#~ msgid "Share on Twitter"
|
850 |
+
#~ msgstr "Опубликовать на Twitter"
|
851 |
+
|
852 |
+
#~ msgid "Shortcodes ultimate settings"
|
853 |
+
#~ msgstr "Настройки Shortcodes Ultimate"
|
854 |
+
|
855 |
+
#~ msgid "Contact author"
|
856 |
+
#~ msgstr "Связаться с разработчиком"
|
857 |
+
|
858 |
+
#~ msgid "Coming soon"
|
859 |
+
#~ msgstr "Появится в ближайшее время"
|
860 |
+
|
861 |
+
#~ msgid "Visit"
|
862 |
+
#~ 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"
|
@@ -14,48 +14,48 @@ msgstr ""
|
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
-
#: shortcodes-ultimate.php:
|
18 |
#: lib/admin.php:26
|
19 |
msgid "Shortcodes Ultimate"
|
20 |
msgstr "Шорткоды"
|
21 |
|
22 |
-
#: shortcodes-ultimate.php:
|
23 |
msgid "Vladimir Anokhin"
|
24 |
msgstr "Владимир Анохин"
|
25 |
|
26 |
-
#: shortcodes-ultimate.php:
|
27 |
msgid "Provides support for many easy to use shortcodes"
|
28 |
msgstr "Предоставляет поддержку множества полезных шорткодов"
|
29 |
|
30 |
-
#: shortcodes-ultimate.php:
|
31 |
-
#: shortcodes-ultimate.php:
|
32 |
#: lib/admin.php:35
|
33 |
msgid "Settings"
|
34 |
msgstr "Настройки"
|
35 |
|
36 |
-
#: shortcodes-ultimate.php:
|
37 |
#: lib/admin.php:62
|
38 |
msgid "Settings saved"
|
39 |
msgstr "Настройки сохранены"
|
40 |
|
41 |
-
#: shortcodes-ultimate.php:
|
42 |
#: lib/admin.php:123
|
43 |
msgid "Custom CSS saved"
|
44 |
msgstr "Произвольные стили сохранены"
|
45 |
|
46 |
-
#: shortcodes-ultimate.php:
|
47 |
msgid "Insert shortcode"
|
48 |
msgstr "Вставка шорткода"
|
49 |
|
50 |
-
#: shortcodes-ultimate.php:
|
51 |
msgid "Select shortcode"
|
52 |
msgstr "Выберите шорткод"
|
53 |
|
54 |
-
#: shortcodes-ultimate.php:
|
55 |
msgid "Color picker"
|
56 |
msgstr "Подбор цвета"
|
57 |
|
58 |
-
#: shortcodes-ultimate.php:
|
59 |
#: lib/admin.php:44
|
60 |
msgid "Support forum"
|
61 |
msgstr "Форум поддержки"
|
@@ -209,461 +209,484 @@ msgstr "Параметры"
|
|
209 |
msgid "Usage"
|
210 |
msgstr "Пример использования"
|
211 |
|
212 |
-
#: lib/available.php:
|
|
|
|
|
|
|
|
|
213 |
msgid "Heading"
|
214 |
msgstr "Заголовок"
|
215 |
|
216 |
-
#: lib/available.php:
|
217 |
msgid "Styled heading"
|
218 |
msgstr "Стильный заголовок"
|
219 |
|
220 |
-
#: lib/available.php:
|
221 |
msgid "Frame align"
|
222 |
msgstr "Выравнивание рамки"
|
223 |
|
224 |
-
#: lib/available.php:
|
225 |
msgid "Image tag"
|
226 |
msgstr "Тег изображения"
|
227 |
|
228 |
-
#: lib/available.php:
|
229 |
msgid "Styled image frame"
|
230 |
msgstr "Стиьная рамка изображения"
|
231 |
|
232 |
-
#: lib/available.php:
|
233 |
msgid "Tabs style"
|
234 |
msgstr "Стиль вкладок"
|
235 |
|
236 |
-
#: lib/available.php:
|
237 |
msgid "Tabs container"
|
238 |
msgstr "Контейнер вкладок"
|
239 |
|
240 |
-
#: lib/available.php:
|
241 |
msgid "Title"
|
242 |
msgstr "Заголовок"
|
243 |
|
244 |
-
#: lib/available.php:
|
245 |
msgid "Tab title"
|
246 |
msgstr "Заголовок вкладки"
|
247 |
|
248 |
-
#: lib/available.php:
|
249 |
msgid "Tab content"
|
250 |
msgstr "Содержимое вкладки"
|
251 |
|
252 |
-
#: lib/available.php:
|
253 |
msgid "Single tab"
|
254 |
msgstr "Одиночная вкладка"
|
255 |
|
256 |
-
#: lib/available.php:
|
257 |
-
#: lib/available.php:
|
258 |
#: lib/shortcodes.php:82
|
259 |
msgid "Spoiler title"
|
260 |
msgstr "Скрытый текст"
|
261 |
|
262 |
-
#: lib/available.php:
|
263 |
msgid "Hidden content"
|
264 |
msgstr "Скрытое содержимое"
|
265 |
|
266 |
-
#: lib/available.php:
|
267 |
msgid "Hidden text"
|
268 |
msgstr "Скрытый текст"
|
269 |
|
270 |
-
#: lib/available.php:
|
271 |
msgid "Show TOP link"
|
272 |
msgstr "Показать ссылку ВВЕРХ"
|
273 |
|
274 |
-
#: lib/available.php:
|
275 |
msgid "Content divider with optional TOP link"
|
276 |
msgstr "Разделитель текста со ссылкой ВВЕРХ"
|
277 |
|
278 |
-
#: lib/available.php:
|
279 |
msgid "Spacer height in pixels"
|
280 |
msgstr "Высота разделителя в пикселях"
|
281 |
|
282 |
-
#: lib/available.php:
|
283 |
msgid "Empty space with adjustable height"
|
284 |
msgstr "Пробел с настраиваемой высотой"
|
285 |
|
286 |
-
#: lib/available.php:
|
287 |
msgid "Quote style"
|
288 |
msgstr "Стиль цитаты"
|
289 |
|
290 |
-
#: lib/available.php:
|
291 |
msgid "Quote"
|
292 |
msgstr "Цитата"
|
293 |
|
294 |
-
#: lib/available.php:
|
295 |
msgid "Blockquote alternative"
|
296 |
msgstr "Альтернатива цитаты"
|
297 |
|
298 |
-
#: lib/available.php:
|
299 |
msgid "Pullquote alignment"
|
300 |
msgstr "Выравнивание цитаты"
|
301 |
|
302 |
-
#: lib/available.php:
|
303 |
-
#: lib/available.php:
|
304 |
msgid "Pullquote"
|
305 |
msgstr "Цитата с обтеканием"
|
306 |
|
307 |
-
#: lib/available.php:
|
308 |
msgid "Background color"
|
309 |
msgstr "Цвет фона"
|
310 |
|
311 |
-
#: lib/available.php:
|
312 |
msgid "Text color"
|
313 |
msgstr "Цвет текста"
|
314 |
|
315 |
-
#: lib/available.php:
|
316 |
-
#: lib/available.php:
|
317 |
msgid "Highlighted text"
|
318 |
msgstr "Подсвеченный текст"
|
319 |
|
320 |
-
#: lib/available.php:
|
321 |
msgid "Option name"
|
322 |
msgstr "Имя опции"
|
323 |
|
324 |
-
#: lib/available.php:
|
325 |
msgid "Blog info"
|
326 |
msgstr "Инфо блога"
|
327 |
|
328 |
-
#: lib/available.php:
|
329 |
-
#: lib/available.php:719
|
330 |
-
#: lib/available.php:792
|
331 |
msgid "Post/page ID"
|
332 |
msgstr "ID записи/страницы"
|
333 |
|
334 |
-
#: lib/available.php:
|
335 |
msgid "Link target"
|
336 |
msgstr "Цель ссылки"
|
337 |
|
338 |
-
#: lib/available.php:
|
339 |
msgid "Permalink text"
|
340 |
msgstr "Текст постоянной ссылки"
|
341 |
|
342 |
-
#: lib/available.php:
|
343 |
msgid "Permalink to specified post/page"
|
344 |
msgstr "Постоянная ссылка на указанную запись/страницу"
|
345 |
|
346 |
-
#: lib/available.php:
|
347 |
msgid "Button link"
|
348 |
msgstr "Ссылка кнопки"
|
349 |
|
350 |
-
#: lib/available.php:
|
351 |
msgid "Button background color"
|
352 |
msgstr "Цвет фона кнопки"
|
353 |
|
354 |
-
#: lib/available.php:
|
355 |
msgid "Button size"
|
356 |
msgstr "Размер кнопки"
|
357 |
|
358 |
-
#: lib/available.php:
|
359 |
msgid "Button background style"
|
360 |
msgstr "Стиль фона кнопки"
|
361 |
|
362 |
-
#: lib/available.php:
|
363 |
msgid "Dark text color"
|
364 |
msgstr "Темный цвет текста"
|
365 |
|
366 |
-
#: lib/available.php:
|
367 |
msgid "Disable rounded corners"
|
368 |
msgstr "Отключить скругленные уголки"
|
369 |
|
370 |
-
#: lib/available.php:
|
371 |
msgid "Button icon"
|
372 |
msgstr "Иконка кнопки"
|
373 |
|
374 |
-
#: lib/available.php:
|
375 |
msgid "Button class"
|
376 |
msgstr "Класс кнопки"
|
377 |
|
378 |
-
#: lib/available.php:
|
379 |
msgid "Button link target"
|
380 |
msgstr "Цель ссылки кнопки"
|
381 |
|
382 |
-
#: lib/available.php:
|
383 |
msgid "Button text"
|
384 |
msgstr "Текст кнопки"
|
385 |
|
386 |
-
#: lib/available.php:
|
387 |
msgid "Styled button"
|
388 |
msgstr "Стильная кнопка"
|
389 |
|
390 |
-
#: lib/available.php:
|
391 |
msgid "Link color"
|
392 |
msgstr "Цвет ссылки"
|
393 |
|
394 |
-
#: lib/available.php:
|
395 |
msgid "URL"
|
396 |
msgstr "URL"
|
397 |
|
398 |
-
#: lib/available.php:
|
399 |
msgid "Link text"
|
400 |
msgstr "Текст ссылки"
|
401 |
|
402 |
-
#: lib/available.php:
|
403 |
msgid "Fancy link"
|
404 |
msgstr "Стильная ссылка"
|
405 |
|
406 |
-
#: lib/available.php:
|
407 |
-
#: lib/available.php:
|
408 |
msgid "Service title"
|
409 |
msgstr "Название услуги"
|
410 |
|
411 |
-
#: lib/available.php:
|
412 |
msgid "Service icon"
|
413 |
msgstr "Иконка услуги"
|
414 |
|
415 |
-
#: lib/available.php:
|
416 |
msgid "Icon size"
|
417 |
msgstr "Размер иконки"
|
418 |
|
419 |
-
#: lib/available.php:
|
420 |
msgid "Service description"
|
421 |
msgstr "Описание услуги"
|
422 |
|
423 |
-
#: lib/available.php:
|
424 |
msgid "Service box with title"
|
425 |
msgstr "Блок услуга с заголовком"
|
426 |
|
427 |
-
#: lib/available.php:
|
428 |
msgid "Box style"
|
429 |
msgstr "Стиль блока"
|
430 |
|
431 |
-
#: lib/available.php:
|
432 |
-
msgid "
|
433 |
-
msgstr "
|
|
|
|
|
|
|
|
|
434 |
|
435 |
-
#: lib/available.php:
|
436 |
msgid "Content for logged in members only"
|
437 |
msgstr "Ссодержимое только для залогиненных"
|
438 |
|
439 |
-
#: lib/available.php:
|
440 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
441 |
msgid "Box title"
|
442 |
msgstr "Заголовок блока"
|
443 |
|
444 |
-
#: lib/available.php:
|
445 |
msgid "Box color"
|
446 |
msgstr "Цвет блока"
|
447 |
|
448 |
-
#: lib/available.php:
|
449 |
msgid "Box content"
|
450 |
msgstr "Содержимое блока"
|
451 |
|
452 |
-
#: lib/available.php:
|
453 |
msgid "Colored box with caption"
|
454 |
msgstr "Цветной блок с заголовком"
|
455 |
|
456 |
-
#: lib/available.php:
|
457 |
msgid "Note color"
|
458 |
msgstr "Цвет блока"
|
459 |
|
460 |
-
#: lib/available.php:
|
461 |
msgid "Note text"
|
462 |
msgstr "Текст заметки"
|
463 |
|
464 |
-
#: lib/available.php:
|
465 |
msgid "Colored box"
|
466 |
msgstr "Цветной блок"
|
467 |
|
468 |
-
#: lib/available.php:
|
469 |
msgid "Private note text"
|
470 |
msgstr "Текст приватной заметки"
|
471 |
|
472 |
-
#: lib/available.php:
|
473 |
msgid "Private note for post authors"
|
474 |
msgstr "Приватный текст для других авторов"
|
475 |
|
476 |
-
#: lib/available.php:
|
477 |
msgid "List style"
|
478 |
msgstr "Стиль списка"
|
479 |
|
480 |
-
#: lib/available.php:
|
481 |
msgid "List item "
|
482 |
msgstr "Элемент списка"
|
483 |
|
484 |
-
#: lib/available.php:
|
485 |
msgid "Styled unordered list"
|
486 |
msgstr "Стильный неупорядоченный список"
|
487 |
|
488 |
-
#: lib/available.php:
|
489 |
msgid "Feed URL"
|
490 |
msgstr "URL ленты"
|
491 |
|
492 |
-
#: lib/available.php:
|
493 |
msgid "Number of item to show"
|
494 |
msgstr "Количество элементов для показа"
|
495 |
|
496 |
-
#: lib/available.php:
|
497 |
msgid "Feed grabber"
|
498 |
msgstr "Граббер новостных лент"
|
499 |
|
500 |
-
#: lib/available.php:
|
501 |
msgid "Custom menu name"
|
502 |
msgstr "Имя произвольного меню"
|
503 |
|
504 |
-
#: lib/available.php:
|
505 |
msgid "Custom menu by name"
|
506 |
msgstr "Произвольное меню"
|
507 |
|
508 |
-
#: lib/available.php:
|
509 |
-
#: lib/available.php:
|
510 |
msgid "Depth level"
|
511 |
msgstr "Глубина"
|
512 |
|
513 |
-
#: lib/available.php:
|
514 |
msgid "Parent page ID"
|
515 |
msgstr "ID родительской страницы"
|
516 |
|
517 |
-
#: lib/available.php:
|
518 |
msgid "Page childrens"
|
519 |
msgstr "Потомки страницы"
|
520 |
|
521 |
-
#: lib/available.php:
|
522 |
msgid "Page siblings"
|
523 |
msgstr "Братья страницы"
|
524 |
|
525 |
-
#: lib/available.php:
|
526 |
msgid "Column width"
|
527 |
msgstr "Ширина колонки"
|
528 |
|
529 |
-
#: lib/available.php:
|
530 |
msgid "Last column"
|
531 |
msgstr "Последняя колонка"
|
532 |
|
533 |
-
#: lib/available.php:
|
534 |
msgid "Column style"
|
535 |
msgstr "Стиль колонки"
|
536 |
|
537 |
-
#: lib/available.php:
|
538 |
msgid "Column content"
|
539 |
msgstr "Содержимое колонки"
|
540 |
|
541 |
-
#: lib/available.php:
|
542 |
msgid "Flexible columns"
|
543 |
msgstr "Резновые колонки"
|
544 |
|
545 |
-
#: lib/available.php:
|
546 |
msgid "Table style"
|
547 |
msgstr "Стиль таблицы"
|
548 |
|
549 |
-
#: lib/available.php:
|
550 |
msgid "Create table from CSV"
|
551 |
msgstr "Создание таблицы из CSV файла"
|
552 |
|
553 |
-
#: lib/available.php:
|
554 |
msgid "Styled table from HTML or CSV file"
|
555 |
msgstr "Стильная таблица из HTML или CSV файла"
|
556 |
|
557 |
-
#: lib/available.php:
|
558 |
msgid "Media URL"
|
559 |
msgstr "Ссылка на медиа"
|
560 |
|
561 |
-
#: lib/available.php:
|
562 |
-
#: lib/available.php:
|
563 |
-
#: lib/available.php:
|
564 |
msgid "Width"
|
565 |
msgstr "Ширина"
|
566 |
|
567 |
-
#: lib/available.php:
|
568 |
-
#: lib/available.php:
|
569 |
-
#: lib/available.php:
|
570 |
msgid "Height"
|
571 |
msgstr "Высота"
|
572 |
|
573 |
-
#: lib/available.php:
|
574 |
msgid "YouTube video, Vimeo video, .mp4/.flv video, .mp3 file or images"
|
575 |
msgstr "YouTube видео, Vimeo видео, .mp4/.flv видео, .mp3 файл или изображения"
|
576 |
|
577 |
-
#: lib/available.php:
|
578 |
msgid "Document URL"
|
579 |
msgstr "Ссылка на документ"
|
580 |
|
581 |
-
#: lib/available.php:
|
582 |
msgid ".doc, .xls, .pdf viewer by Google"
|
583 |
msgstr ".doc, .xls, .pdf просмотрщик от Google"
|
584 |
|
585 |
-
#: lib/available.php:
|
586 |
msgid "Marker address"
|
587 |
msgstr "Адрес маркера"
|
588 |
|
589 |
-
#: lib/available.php:
|
590 |
msgid "Maps by Google"
|
591 |
msgstr "Карты от Google"
|
592 |
|
593 |
-
#: lib/available.php:
|
594 |
-
|
595 |
-
|
|
|
|
|
596 |
|
597 |
-
#: lib/available.php:
|
598 |
-
|
599 |
-
|
|
|
|
|
600 |
|
601 |
-
#: lib/available.php:
|
602 |
-
msgid "
|
603 |
-
msgstr "
|
|
|
|
|
|
|
|
|
604 |
|
605 |
-
#: lib/available.php:
|
606 |
-
|
|
|
|
|
|
|
|
|
607 |
msgid "Animation speed (1000 = 1 second)"
|
608 |
msgstr "Скорость анимации (1000 = 1 секунда)"
|
609 |
|
610 |
-
#: lib/available.php:
|
611 |
msgid "Animation delay (1000 = 1 second)"
|
612 |
msgstr "Задержка анимации (1000 = 1 секунда)"
|
613 |
|
614 |
-
#: lib/available.php:
|
615 |
-
msgid "Animation effect"
|
616 |
-
msgstr "Эффект анимации"
|
617 |
-
|
618 |
-
#: lib/available.php:733
|
619 |
msgid "Nivo slider by attached to post images"
|
620 |
msgstr "Nivo slider из изображений записи"
|
621 |
|
622 |
-
#: lib/available.php:
|
623 |
-
msgid "Carousel
|
624 |
-
msgstr "
|
625 |
|
626 |
-
#: lib/available.php:
|
627 |
-
|
628 |
-
|
|
|
629 |
|
630 |
-
#: lib/available.php:
|
631 |
-
msgid "
|
632 |
-
msgstr "
|
633 |
|
634 |
-
#: lib/available.php:
|
635 |
-
msgid "Number of items to show"
|
636 |
-
msgstr "Количество элементов для показа"
|
637 |
-
|
638 |
-
#: lib/available.php:772
|
639 |
msgid "Space between items in pixels"
|
640 |
msgstr "Расстояние между элементами в пикселях"
|
641 |
|
642 |
-
#: lib/available.php:
|
643 |
-
msgid "Items links"
|
644 |
-
msgstr "Ссылки элементов"
|
645 |
-
|
646 |
-
#: lib/available.php:796
|
647 |
msgid "jCarousel by attached to post images"
|
648 |
msgstr "jCarousel из изображений записи"
|
649 |
|
650 |
-
#: lib/available.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
651 |
msgid "Twitter username"
|
652 |
msgstr "Имя пользователя"
|
653 |
|
654 |
-
#: lib/available.php:
|
655 |
msgid "Number of tweets to show"
|
656 |
msgstr "Количество твитов для показа"
|
657 |
|
658 |
-
#: lib/available.php:
|
659 |
msgid "Tweets style"
|
660 |
msgstr "Стиль твитов"
|
661 |
|
662 |
-
#: lib/available.php:
|
663 |
msgid "Show relative time"
|
664 |
msgstr "Показывать время"
|
665 |
|
666 |
-
#: lib/available.php:
|
667 |
msgid "Recent tweets"
|
668 |
msgstr "Последние твиты"
|
669 |
|
@@ -691,20 +714,21 @@ msgstr "Заголовок блока"
|
|
691 |
msgid "Please specify media url"
|
692 |
msgstr "Укажите ссылку на медиа"
|
693 |
|
694 |
-
#: lib/shortcodes.php:
|
695 |
-
#: lib/shortcodes.php:
|
|
|
696 |
msgid "no attached images, or only one attached image"
|
697 |
msgstr "не найдены загруженные изображения, или изображение всего одно"
|
698 |
|
699 |
-
#: lib/shortcodes.php:
|
700 |
msgid "This menu doesn't exists, or has no elements"
|
701 |
msgstr "Такое меню не существует, или в нем нет ни одного элемента"
|
702 |
|
703 |
-
#: lib/shortcodes.php:
|
704 |
msgid "This content is for members only."
|
705 |
msgstr "Это содержимое только для участников."
|
706 |
|
707 |
-
#: lib/shortcodes.php:
|
708 |
msgid "Please login"
|
709 |
msgstr "Пожалуйста войдите"
|
710 |
|
@@ -745,6 +769,25 @@ msgstr "имя пользователя не задано"
|
|
745 |
msgid "no public messages"
|
746 |
msgstr "нет публичных твитов"
|
747 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
748 |
#~ msgid "Support"
|
749 |
#~ msgstr "Форум поддержки"
|
750 |
|
@@ -763,9 +806,6 @@ msgstr "нет публичных твитов"
|
|
763 |
#~ msgid "image url"
|
764 |
#~ msgstr "ссылка на изображение"
|
765 |
|
766 |
-
#~ msgid "Content for registered users"
|
767 |
-
#~ msgstr "Содержимое для залогиненых посетителей"
|
768 |
-
|
769 |
#~ msgid "Plain table"
|
770 |
#~ msgstr "Простая таблица"
|
771 |
|
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-09-28 07:13+0300\n"
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
+
#: shortcodes-ultimate.php:184
|
18 |
#: lib/admin.php:26
|
19 |
msgid "Shortcodes Ultimate"
|
20 |
msgstr "Шорткоды"
|
21 |
|
22 |
+
#: shortcodes-ultimate.php:184
|
23 |
msgid "Vladimir Anokhin"
|
24 |
msgstr "Владимир Анохин"
|
25 |
|
26 |
+
#: shortcodes-ultimate.php:184
|
27 |
msgid "Provides support for many easy to use shortcodes"
|
28 |
msgstr "Предоставляет поддержку множества полезных шорткодов"
|
29 |
|
30 |
+
#: shortcodes-ultimate.php:270
|
31 |
+
#: shortcodes-ultimate.php:321
|
32 |
#: lib/admin.php:35
|
33 |
msgid "Settings"
|
34 |
msgstr "Настройки"
|
35 |
|
36 |
+
#: shortcodes-ultimate.php:283
|
37 |
#: lib/admin.php:62
|
38 |
msgid "Settings saved"
|
39 |
msgstr "Настройки сохранены"
|
40 |
|
41 |
+
#: shortcodes-ultimate.php:288
|
42 |
#: lib/admin.php:123
|
43 |
msgid "Custom CSS saved"
|
44 |
msgstr "Произвольные стили сохранены"
|
45 |
|
46 |
+
#: shortcodes-ultimate.php:296
|
47 |
msgid "Insert shortcode"
|
48 |
msgstr "Вставка шорткода"
|
49 |
|
50 |
+
#: shortcodes-ultimate.php:311
|
51 |
msgid "Select shortcode"
|
52 |
msgstr "Выберите шорткод"
|
53 |
|
54 |
+
#: shortcodes-ultimate.php:322
|
55 |
msgid "Color picker"
|
56 |
msgstr "Подбор цвета"
|
57 |
|
58 |
+
#: shortcodes-ultimate.php:323
|
59 |
#: lib/admin.php:44
|
60 |
msgid "Support forum"
|
61 |
msgstr "Форум поддержки"
|
209 |
msgid "Usage"
|
210 |
msgstr "Пример использования"
|
211 |
|
212 |
+
#: lib/available.php:18
|
213 |
+
msgid "Heading style"
|
214 |
+
msgstr "Стиль заголовка"
|
215 |
+
|
216 |
+
#: lib/available.php:22
|
217 |
msgid "Heading"
|
218 |
msgstr "Заголовок"
|
219 |
|
220 |
+
#: lib/available.php:23
|
221 |
msgid "Styled heading"
|
222 |
msgstr "Стильный заголовок"
|
223 |
|
224 |
+
#: lib/available.php:37
|
225 |
msgid "Frame align"
|
226 |
msgstr "Выравнивание рамки"
|
227 |
|
228 |
+
#: lib/available.php:41
|
229 |
msgid "Image tag"
|
230 |
msgstr "Тег изображения"
|
231 |
|
232 |
+
#: lib/available.php:42
|
233 |
msgid "Styled image frame"
|
234 |
msgstr "Стиьная рамка изображения"
|
235 |
|
236 |
+
#: lib/available.php:56
|
237 |
msgid "Tabs style"
|
238 |
msgstr "Стиль вкладок"
|
239 |
|
240 |
+
#: lib/available.php:60
|
241 |
msgid "Tabs container"
|
242 |
msgstr "Контейнер вкладок"
|
243 |
|
244 |
+
#: lib/available.php:69
|
245 |
msgid "Title"
|
246 |
msgstr "Заголовок"
|
247 |
|
248 |
+
#: lib/available.php:70
|
249 |
msgid "Tab title"
|
250 |
msgstr "Заголовок вкладки"
|
251 |
|
252 |
+
#: lib/available.php:74
|
253 |
msgid "Tab content"
|
254 |
msgstr "Содержимое вкладки"
|
255 |
|
256 |
+
#: lib/available.php:75
|
257 |
msgid "Single tab"
|
258 |
msgstr "Одиночная вкладка"
|
259 |
|
260 |
+
#: lib/available.php:84
|
261 |
+
#: lib/available.php:85
|
262 |
#: lib/shortcodes.php:82
|
263 |
msgid "Spoiler title"
|
264 |
msgstr "Скрытый текст"
|
265 |
|
266 |
+
#: lib/available.php:89
|
267 |
msgid "Hidden content"
|
268 |
msgstr "Скрытое содержимое"
|
269 |
|
270 |
+
#: lib/available.php:90
|
271 |
msgid "Hidden text"
|
272 |
msgstr "Скрытый текст"
|
273 |
|
274 |
+
#: lib/available.php:103
|
275 |
msgid "Show TOP link"
|
276 |
msgstr "Показать ссылку ВВЕРХ"
|
277 |
|
278 |
+
#: lib/available.php:107
|
279 |
msgid "Content divider with optional TOP link"
|
280 |
msgstr "Разделитель текста со ссылкой ВВЕРХ"
|
281 |
|
282 |
+
#: lib/available.php:123
|
283 |
msgid "Spacer height in pixels"
|
284 |
msgstr "Высота разделителя в пикселях"
|
285 |
|
286 |
+
#: lib/available.php:127
|
287 |
msgid "Empty space with adjustable height"
|
288 |
msgstr "Пробел с настраиваемой высотой"
|
289 |
|
290 |
+
#: lib/available.php:141
|
291 |
msgid "Quote style"
|
292 |
msgstr "Стиль цитаты"
|
293 |
|
294 |
+
#: lib/available.php:145
|
295 |
msgid "Quote"
|
296 |
msgstr "Цитата"
|
297 |
|
298 |
+
#: lib/available.php:146
|
299 |
msgid "Blockquote alternative"
|
300 |
msgstr "Альтернатива цитаты"
|
301 |
|
302 |
+
#: lib/available.php:159
|
303 |
msgid "Pullquote alignment"
|
304 |
msgstr "Выравнивание цитаты"
|
305 |
|
306 |
+
#: lib/available.php:163
|
307 |
+
#: lib/available.php:164
|
308 |
msgid "Pullquote"
|
309 |
msgstr "Цитата с обтеканием"
|
310 |
|
311 |
+
#: lib/available.php:174
|
312 |
msgid "Background color"
|
313 |
msgstr "Цвет фона"
|
314 |
|
315 |
+
#: lib/available.php:180
|
316 |
msgid "Text color"
|
317 |
msgstr "Цвет текста"
|
318 |
|
319 |
+
#: lib/available.php:185
|
320 |
+
#: lib/available.php:186
|
321 |
msgid "Highlighted text"
|
322 |
msgstr "Подсвеченный текст"
|
323 |
|
324 |
+
#: lib/available.php:209
|
325 |
msgid "Option name"
|
326 |
msgstr "Имя опции"
|
327 |
|
328 |
+
#: lib/available.php:213
|
329 |
msgid "Blog info"
|
330 |
msgstr "Инфо блога"
|
331 |
|
332 |
+
#: lib/available.php:223
|
|
|
|
|
333 |
msgid "Post/page ID"
|
334 |
msgstr "ID записи/страницы"
|
335 |
|
336 |
+
#: lib/available.php:231
|
337 |
msgid "Link target"
|
338 |
msgstr "Цель ссылки"
|
339 |
|
340 |
+
#: lib/available.php:235
|
341 |
msgid "Permalink text"
|
342 |
msgstr "Текст постоянной ссылки"
|
343 |
|
344 |
+
#: lib/available.php:236
|
345 |
msgid "Permalink to specified post/page"
|
346 |
msgstr "Постоянная ссылка на указанную запись/страницу"
|
347 |
|
348 |
+
#: lib/available.php:246
|
349 |
msgid "Button link"
|
350 |
msgstr "Ссылка кнопки"
|
351 |
|
352 |
+
#: lib/available.php:251
|
353 |
msgid "Button background color"
|
354 |
msgstr "Цвет фона кнопки"
|
355 |
|
356 |
+
#: lib/available.php:270
|
357 |
msgid "Button size"
|
358 |
msgstr "Размер кнопки"
|
359 |
|
360 |
+
#: lib/available.php:280
|
361 |
msgid "Button background style"
|
362 |
msgstr "Стиль фона кнопки"
|
363 |
|
364 |
+
#: lib/available.php:288
|
365 |
msgid "Dark text color"
|
366 |
msgstr "Темный цвет текста"
|
367 |
|
368 |
+
#: lib/available.php:296
|
369 |
msgid "Disable rounded corners"
|
370 |
msgstr "Отключить скругленные уголки"
|
371 |
|
372 |
+
#: lib/available.php:301
|
373 |
msgid "Button icon"
|
374 |
msgstr "Иконка кнопки"
|
375 |
|
376 |
+
#: lib/available.php:306
|
377 |
msgid "Button class"
|
378 |
msgstr "Класс кнопки"
|
379 |
|
380 |
+
#: lib/available.php:314
|
381 |
msgid "Button link target"
|
382 |
msgstr "Цель ссылки кнопки"
|
383 |
|
384 |
+
#: lib/available.php:318
|
385 |
msgid "Button text"
|
386 |
msgstr "Текст кнопки"
|
387 |
|
388 |
+
#: lib/available.php:319
|
389 |
msgid "Styled button"
|
390 |
msgstr "Стильная кнопка"
|
391 |
|
392 |
+
#: lib/available.php:332
|
393 |
msgid "Link color"
|
394 |
msgstr "Цвет ссылки"
|
395 |
|
396 |
+
#: lib/available.php:337
|
397 |
msgid "URL"
|
398 |
msgstr "URL"
|
399 |
|
400 |
+
#: lib/available.php:341
|
401 |
msgid "Link text"
|
402 |
msgstr "Текст ссылки"
|
403 |
|
404 |
+
#: lib/available.php:342
|
405 |
msgid "Fancy link"
|
406 |
msgstr "Стильная ссылка"
|
407 |
|
408 |
+
#: lib/available.php:351
|
409 |
+
#: lib/available.php:352
|
410 |
msgid "Service title"
|
411 |
msgstr "Название услуги"
|
412 |
|
413 |
+
#: lib/available.php:357
|
414 |
msgid "Service icon"
|
415 |
msgstr "Иконка услуги"
|
416 |
|
417 |
+
#: lib/available.php:366
|
418 |
msgid "Icon size"
|
419 |
msgstr "Размер иконки"
|
420 |
|
421 |
+
#: lib/available.php:370
|
422 |
msgid "Service description"
|
423 |
msgstr "Описание услуги"
|
424 |
|
425 |
+
#: lib/available.php:371
|
426 |
msgid "Service box with title"
|
427 |
msgstr "Блок услуга с заголовком"
|
428 |
|
429 |
+
#: lib/available.php:385
|
430 |
msgid "Box style"
|
431 |
msgstr "Стиль блока"
|
432 |
|
433 |
+
#: lib/available.php:393
|
434 |
+
msgid "Show login message"
|
435 |
+
msgstr "Показывать предложение войти"
|
436 |
+
|
437 |
+
#: lib/available.php:397
|
438 |
+
msgid "Content for logged members"
|
439 |
+
msgstr "Содержимое для залогиненых пользователей"
|
440 |
|
441 |
+
#: lib/available.php:398
|
442 |
msgid "Content for logged in members only"
|
443 |
msgstr "Ссодержимое только для залогиненных"
|
444 |
|
445 |
+
#: lib/available.php:406
|
446 |
+
msgid "Content for guests"
|
447 |
+
msgstr "Содержимое для гостей"
|
448 |
+
|
449 |
+
#: lib/available.php:407
|
450 |
+
msgid "Content for guests only"
|
451 |
+
msgstr "Ссодержимое только для гостей"
|
452 |
+
|
453 |
+
#: lib/available.php:416
|
454 |
+
#: lib/available.php:417
|
455 |
msgid "Box title"
|
456 |
msgstr "Заголовок блока"
|
457 |
|
458 |
+
#: lib/available.php:422
|
459 |
msgid "Box color"
|
460 |
msgstr "Цвет блока"
|
461 |
|
462 |
+
#: lib/available.php:427
|
463 |
msgid "Box content"
|
464 |
msgstr "Содержимое блока"
|
465 |
|
466 |
+
#: lib/available.php:428
|
467 |
msgid "Colored box with caption"
|
468 |
msgstr "Цветной блок с заголовком"
|
469 |
|
470 |
+
#: lib/available.php:438
|
471 |
msgid "Note color"
|
472 |
msgstr "Цвет блока"
|
473 |
|
474 |
+
#: lib/available.php:443
|
475 |
msgid "Note text"
|
476 |
msgstr "Текст заметки"
|
477 |
|
478 |
+
#: lib/available.php:444
|
479 |
msgid "Colored box"
|
480 |
msgstr "Цветной блок"
|
481 |
|
482 |
+
#: lib/available.php:452
|
483 |
msgid "Private note text"
|
484 |
msgstr "Текст приватной заметки"
|
485 |
|
486 |
+
#: lib/available.php:453
|
487 |
msgid "Private note for post authors"
|
488 |
msgstr "Приватный текст для других авторов"
|
489 |
|
490 |
+
#: lib/available.php:479
|
491 |
msgid "List style"
|
492 |
msgstr "Стиль списка"
|
493 |
|
494 |
+
#: lib/available.php:483
|
495 |
msgid "List item "
|
496 |
msgstr "Элемент списка"
|
497 |
|
498 |
+
#: lib/available.php:484
|
499 |
msgid "Styled unordered list"
|
500 |
msgstr "Стильный неупорядоченный список"
|
501 |
|
502 |
+
#: lib/available.php:494
|
503 |
msgid "Feed URL"
|
504 |
msgstr "URL ленты"
|
505 |
|
506 |
+
#: lib/available.php:505
|
507 |
msgid "Number of item to show"
|
508 |
msgstr "Количество элементов для показа"
|
509 |
|
510 |
+
#: lib/available.php:509
|
511 |
msgid "Feed grabber"
|
512 |
msgstr "Граббер новостных лент"
|
513 |
|
514 |
+
#: lib/available.php:519
|
515 |
msgid "Custom menu name"
|
516 |
msgstr "Имя произвольного меню"
|
517 |
|
518 |
+
#: lib/available.php:523
|
519 |
msgid "Custom menu by name"
|
520 |
msgstr "Произвольное меню"
|
521 |
|
522 |
+
#: lib/available.php:537
|
523 |
+
#: lib/available.php:560
|
524 |
msgid "Depth level"
|
525 |
msgstr "Глубина"
|
526 |
|
527 |
+
#: lib/available.php:542
|
528 |
msgid "Parent page ID"
|
529 |
msgstr "ID родительской страницы"
|
530 |
|
531 |
+
#: lib/available.php:546
|
532 |
msgid "Page childrens"
|
533 |
msgstr "Потомки страницы"
|
534 |
|
535 |
+
#: lib/available.php:564
|
536 |
msgid "Page siblings"
|
537 |
msgstr "Братья страницы"
|
538 |
|
539 |
+
#: lib/available.php:586
|
540 |
msgid "Column width"
|
541 |
msgstr "Ширина колонки"
|
542 |
|
543 |
+
#: lib/available.php:594
|
544 |
msgid "Last column"
|
545 |
msgstr "Последняя колонка"
|
546 |
|
547 |
+
#: lib/available.php:603
|
548 |
msgid "Column style"
|
549 |
msgstr "Стиль колонки"
|
550 |
|
551 |
+
#: lib/available.php:607
|
552 |
msgid "Column content"
|
553 |
msgstr "Содержимое колонки"
|
554 |
|
555 |
+
#: lib/available.php:608
|
556 |
msgid "Flexible columns"
|
557 |
msgstr "Резновые колонки"
|
558 |
|
559 |
+
#: lib/available.php:622
|
560 |
msgid "Table style"
|
561 |
msgstr "Стиль таблицы"
|
562 |
|
563 |
+
#: lib/available.php:627
|
564 |
msgid "Create table from CSV"
|
565 |
msgstr "Создание таблицы из CSV файла"
|
566 |
|
567 |
+
#: lib/available.php:632
|
568 |
msgid "Styled table from HTML or CSV file"
|
569 |
msgstr "Стильная таблица из HTML или CSV файла"
|
570 |
|
571 |
+
#: lib/available.php:642
|
572 |
msgid "Media URL"
|
573 |
msgstr "Ссылка на медиа"
|
574 |
|
575 |
+
#: lib/available.php:647
|
576 |
+
#: lib/available.php:671
|
577 |
+
#: lib/available.php:690
|
578 |
msgid "Width"
|
579 |
msgstr "Ширина"
|
580 |
|
581 |
+
#: lib/available.php:652
|
582 |
+
#: lib/available.php:676
|
583 |
+
#: lib/available.php:695
|
584 |
msgid "Height"
|
585 |
msgstr "Высота"
|
586 |
|
587 |
+
#: lib/available.php:656
|
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:666
|
592 |
msgid "Document URL"
|
593 |
msgstr "Ссылка на документ"
|
594 |
|
595 |
+
#: lib/available.php:680
|
596 |
msgid ".doc, .xls, .pdf viewer by Google"
|
597 |
msgstr ".doc, .xls, .pdf просмотрщик от Google"
|
598 |
|
599 |
+
#: lib/available.php:700
|
600 |
msgid "Marker address"
|
601 |
msgstr "Адрес маркера"
|
602 |
|
603 |
+
#: lib/available.php:704
|
604 |
msgid "Maps by Google"
|
605 |
msgstr "Карты от Google"
|
606 |
|
607 |
+
#: lib/available.php:718
|
608 |
+
#: lib/available.php:788
|
609 |
+
#: lib/available.php:860
|
610 |
+
msgid "Source of images"
|
611 |
+
msgstr "Источник изображений"
|
612 |
|
613 |
+
#: lib/available.php:729
|
614 |
+
#: lib/available.php:799
|
615 |
+
#: lib/available.php:871
|
616 |
+
msgid "Images links"
|
617 |
+
msgstr "Ссылки с изображений"
|
618 |
|
619 |
+
#: lib/available.php:740
|
620 |
+
msgid "Slider size"
|
621 |
+
msgstr "Размер слайдера"
|
622 |
+
|
623 |
+
#: lib/available.php:750
|
624 |
+
msgid "Number of slides"
|
625 |
+
msgstr "Количество слайдов"
|
626 |
|
627 |
+
#: lib/available.php:760
|
628 |
+
msgid "Animation effect"
|
629 |
+
msgstr "Эффект анимации"
|
630 |
+
|
631 |
+
#: lib/available.php:765
|
632 |
+
#: lib/available.php:833
|
633 |
msgid "Animation speed (1000 = 1 second)"
|
634 |
msgstr "Скорость анимации (1000 = 1 секунда)"
|
635 |
|
636 |
+
#: lib/available.php:770
|
637 |
msgid "Animation delay (1000 = 1 second)"
|
638 |
msgstr "Задержка анимации (1000 = 1 секунда)"
|
639 |
|
640 |
+
#: lib/available.php:774
|
|
|
|
|
|
|
|
|
641 |
msgid "Nivo slider by attached to post images"
|
642 |
msgstr "Nivo slider из изображений записи"
|
643 |
|
644 |
+
#: lib/available.php:809
|
645 |
+
msgid "Carousel item size"
|
646 |
+
msgstr "Размер элементов карусели"
|
647 |
|
648 |
+
#: lib/available.php:819
|
649 |
+
#: lib/available.php:891
|
650 |
+
msgid "Number of items"
|
651 |
+
msgstr "Количество элементов"
|
652 |
|
653 |
+
#: lib/available.php:828
|
654 |
+
msgid "Number of items in viewport"
|
655 |
+
msgstr "Количество элементов в видмой части"
|
656 |
|
657 |
+
#: lib/available.php:842
|
|
|
|
|
|
|
|
|
658 |
msgid "Space between items in pixels"
|
659 |
msgstr "Расстояние между элементами в пикселях"
|
660 |
|
661 |
+
#: lib/available.php:846
|
|
|
|
|
|
|
|
|
662 |
msgid "jCarousel by attached to post images"
|
663 |
msgstr "jCarousel из изображений записи"
|
664 |
|
665 |
+
#: lib/available.php:881
|
666 |
+
msgid "Gallery item size"
|
667 |
+
msgstr "Размер миниатюр"
|
668 |
+
|
669 |
+
#: lib/available.php:895
|
670 |
+
msgid "Custom gallery by attached to post images"
|
671 |
+
msgstr "Произвольная галерея"
|
672 |
+
|
673 |
+
#: lib/available.php:905
|
674 |
msgid "Twitter username"
|
675 |
msgstr "Имя пользователя"
|
676 |
|
677 |
+
#: lib/available.php:916
|
678 |
msgid "Number of tweets to show"
|
679 |
msgstr "Количество твитов для показа"
|
680 |
|
681 |
+
#: lib/available.php:924
|
682 |
msgid "Tweets style"
|
683 |
msgstr "Стиль твитов"
|
684 |
|
685 |
+
#: lib/available.php:932
|
686 |
msgid "Show relative time"
|
687 |
msgstr "Показывать время"
|
688 |
|
689 |
+
#: lib/available.php:936
|
690 |
msgid "Recent tweets"
|
691 |
msgstr "Последние твиты"
|
692 |
|
714 |
msgid "Please specify media url"
|
715 |
msgstr "Укажите ссылку на медиа"
|
716 |
|
717 |
+
#: lib/shortcodes.php:471
|
718 |
+
#: lib/shortcodes.php:524
|
719 |
+
#: lib/shortcodes.php:568
|
720 |
msgid "no attached images, or only one attached image"
|
721 |
msgstr "не найдены загруженные изображения, или изображение всего одно"
|
722 |
|
723 |
+
#: lib/shortcodes.php:683
|
724 |
msgid "This menu doesn't exists, or has no elements"
|
725 |
msgstr "Такое меню не существует, или в нем нет ни одного элемента"
|
726 |
|
727 |
+
#: lib/shortcodes.php:740
|
728 |
msgid "This content is for members only."
|
729 |
msgstr "Это содержимое только для участников."
|
730 |
|
731 |
+
#: lib/shortcodes.php:740
|
732 |
msgid "Please login"
|
733 |
msgstr "Пожалуйста войдите"
|
734 |
|
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] были улучшены и изменены!"
|
775 |
+
|
776 |
+
#~ msgid "View details"
|
777 |
+
#~ msgstr "Смотреть детали"
|
778 |
+
|
779 |
+
#~ msgid "Slider height"
|
780 |
+
#~ msgstr "Высота слайдера"
|
781 |
+
|
782 |
+
#~ msgid "Slides links"
|
783 |
+
#~ msgstr "Ссылки слайдов"
|
784 |
+
|
785 |
+
#~ msgid "Carousel height"
|
786 |
+
#~ msgstr "Высота карусели"
|
787 |
+
|
788 |
+
#~ msgid "Carousel background"
|
789 |
+
#~ msgstr "Фон карусели"
|
790 |
+
|
791 |
#~ msgid "Support"
|
792 |
#~ msgstr "Форум поддержки"
|
793 |
|
806 |
#~ msgid "image url"
|
807 |
#~ msgstr "ссылка на изображение"
|
808 |
|
|
|
|
|
|
|
809 |
#~ msgid "Plain table"
|
810 |
#~ msgstr "Простая таблица"
|
811 |
|
languages/shortcodes-ultimate.pot
CHANGED
@@ -2,685 +2,742 @@
|
|
2 |
# This file is distributed under the same license as the Shortcodes Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Shortcodes Ultimate 3.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/shortcodes-ultimate\n"
|
7 |
-
"POT-Creation-Date: 2011-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
-
"Last-Translator:
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
#. Plugin Name of the plugin/theme
|
17 |
-
#: shortcodes-ultimate.php:
|
18 |
-
#: lib/admin.php:26
|
19 |
msgid "Shortcodes Ultimate"
|
20 |
msgstr ""
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
#: shortcodes-ultimate.php:179
|
25 |
-
msgid "Vladimir Anokhin"
|
26 |
msgstr ""
|
27 |
|
28 |
-
|
29 |
-
|
30 |
-
#: shortcodes-ultimate.php:179
|
31 |
-
msgid "Provides support for many easy to use shortcodes"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#:
|
35 |
-
|
36 |
-
msgid "Settings"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#:
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
msgid "Settings saved"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#:
|
45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
msgid "Custom CSS saved"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#:
|
50 |
-
msgid "
|
51 |
msgstr ""
|
52 |
|
53 |
-
#:
|
54 |
-
msgid "
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: lib/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
msgid "Heading"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: lib/available.php:
|
62 |
msgid "Styled heading"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: lib/available.php:
|
66 |
msgid "Frame align"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: lib/available.php:
|
70 |
msgid "Image tag"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: lib/available.php:
|
74 |
msgid "Styled image frame"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: lib/available.php:
|
78 |
msgid "Tabs style"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: lib/available.php:
|
82 |
msgid "Tabs container"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: lib/available.php:
|
86 |
msgid "Title"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: lib/available.php:
|
90 |
msgid "Tab title"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: lib/available.php:
|
94 |
msgid "Tab content"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: lib/available.php:
|
98 |
msgid "Single tab"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: lib/available.php:
|
102 |
-
#: lib/available.php:77
|
103 |
-
#: lib/shortcodes.php:82
|
104 |
-
msgid "Spoiler title"
|
105 |
-
msgstr ""
|
106 |
-
|
107 |
-
#: lib/available.php:81
|
108 |
msgid "Hidden content"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: lib/available.php:
|
112 |
msgid "Hidden text"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: lib/available.php:
|
116 |
msgid "Show TOP link"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: lib/available.php:
|
120 |
msgid "Content divider with optional TOP link"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: lib/available.php:
|
124 |
msgid "Spacer height in pixels"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: lib/available.php:
|
128 |
msgid "Empty space with adjustable height"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: lib/available.php:
|
132 |
msgid "Quote style"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: lib/available.php:
|
136 |
msgid "Quote"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: lib/available.php:
|
140 |
msgid "Blockquote alternative"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: lib/available.php:
|
144 |
msgid "Pullquote alignment"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: lib/available.php:
|
148 |
-
#: lib/available.php:156
|
149 |
msgid "Pullquote"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: lib/available.php:
|
153 |
msgid "Background color"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: lib/available.php:
|
157 |
msgid "Text color"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: lib/available.php:
|
161 |
-
#: lib/available.php:178
|
162 |
msgid "Highlighted text"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: lib/available.php:
|
166 |
msgid "Option name"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: lib/available.php:
|
170 |
msgid "Blog info"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: lib/available.php:
|
174 |
-
#: lib/available.php:719
|
175 |
-
#: lib/available.php:792
|
176 |
msgid "Post/page ID"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: lib/available.php:
|
180 |
msgid "Link target"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: lib/available.php:
|
184 |
msgid "Permalink text"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: lib/available.php:
|
188 |
msgid "Permalink to specified post/page"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: lib/available.php:
|
192 |
msgid "Button link"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: lib/available.php:
|
196 |
msgid "Button background color"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: lib/available.php:
|
200 |
msgid "Button size"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: lib/available.php:
|
204 |
msgid "Button background style"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: lib/available.php:
|
208 |
msgid "Dark text color"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: lib/available.php:
|
212 |
msgid "Disable rounded corners"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: lib/available.php:
|
216 |
msgid "Button icon"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: lib/available.php:
|
220 |
msgid "Button class"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: lib/available.php:
|
224 |
msgid "Button link target"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: lib/available.php:
|
228 |
msgid "Button text"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: lib/available.php:
|
232 |
msgid "Styled button"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: lib/available.php:
|
236 |
msgid "Link color"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: lib/available.php:
|
240 |
msgid "URL"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: lib/available.php:
|
244 |
msgid "Link text"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: lib/available.php:
|
248 |
msgid "Fancy link"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: lib/available.php:
|
252 |
-
#: lib/available.php:344
|
253 |
msgid "Service title"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: lib/available.php:
|
257 |
msgid "Service icon"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: lib/available.php:
|
261 |
msgid "Icon size"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: lib/available.php:
|
265 |
msgid "Service description"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: lib/available.php:
|
269 |
msgid "Service box with title"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: lib/available.php:
|
273 |
msgid "Box style"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: lib/available.php:
|
277 |
-
msgid "
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: lib/available.php:
|
|
|
|
|
|
|
|
|
281 |
msgid "Content for logged in members only"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: lib/available.php:
|
285 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
msgid "Box title"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: lib/available.php:
|
290 |
msgid "Box color"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: lib/available.php:
|
294 |
msgid "Box content"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: lib/available.php:
|
298 |
msgid "Colored box with caption"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: lib/available.php:
|
302 |
msgid "Note color"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: lib/available.php:
|
306 |
msgid "Note text"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: lib/available.php:
|
310 |
msgid "Colored box"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: lib/available.php:
|
314 |
msgid "Private note text"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: lib/available.php:
|
318 |
msgid "Private note for post authors"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: lib/available.php:
|
322 |
msgid "List style"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: lib/available.php:
|
326 |
msgid "List item "
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: lib/available.php:
|
330 |
msgid "Styled unordered list"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: lib/available.php:
|
334 |
msgid "Feed URL"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: lib/available.php:
|
338 |
msgid "Number of item to show"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: lib/available.php:
|
342 |
msgid "Feed grabber"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: lib/available.php:
|
346 |
msgid "Custom menu name"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: lib/available.php:
|
350 |
msgid "Custom menu by name"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: lib/available.php:
|
354 |
-
#: lib/available.php:535
|
355 |
msgid "Depth level"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: lib/available.php:
|
359 |
msgid "Parent page ID"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: lib/available.php:
|
363 |
-
#: lib/available.php:539
|
364 |
msgid "Page childrens"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: lib/available.php:
|
|
|
|
|
|
|
|
|
368 |
msgid "Column width"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: lib/available.php:
|
372 |
msgid "Last column"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: lib/available.php:
|
376 |
msgid "Column style"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: lib/available.php:
|
380 |
msgid "Column content"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: lib/available.php:
|
384 |
msgid "Flexible columns"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: lib/available.php:
|
388 |
msgid "Table style"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: lib/available.php:
|
392 |
msgid "Create table from CSV"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: lib/available.php:
|
396 |
msgid "Styled table from HTML or CSV file"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: lib/available.php:
|
400 |
msgid "Media URL"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: lib/available.php:
|
404 |
-
#: lib/available.php:646
|
405 |
-
#: lib/available.php:665
|
406 |
msgid "Width"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: lib/available.php:
|
410 |
-
#: lib/available.php:651
|
411 |
-
#: lib/available.php:670
|
412 |
msgid "Height"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: lib/available.php:
|
416 |
msgid "YouTube video, Vimeo video, .mp4/.flv video, .mp3 file or images"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: lib/available.php:
|
420 |
msgid "Document URL"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: lib/available.php:
|
424 |
msgid ".doc, .xls, .pdf viewer by Google"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: lib/available.php:
|
428 |
msgid "Marker address"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: lib/available.php:
|
432 |
msgid "Maps by Google"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: lib/available.php:
|
436 |
-
msgid "
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: lib/available.php:
|
440 |
-
msgid "
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: lib/available.php:
|
444 |
-
msgid "
|
445 |
-
msgstr ""
|
446 |
-
|
447 |
-
#: lib/available.php:709
|
448 |
-
#: lib/available.php:787
|
449 |
-
msgid "Animation speed (1000 = 1 second)"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: lib/available.php:
|
453 |
-
msgid "
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: lib/available.php:
|
457 |
msgid "Animation effect"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: lib/available.php:
|
461 |
-
msgid "
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: lib/available.php:
|
465 |
-
msgid "
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: lib/available.php:
|
469 |
-
msgid "
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: lib/available.php:
|
473 |
-
msgid "Carousel
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: lib/available.php:
|
477 |
-
msgid "Number of items
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: lib/available.php:
|
481 |
-
msgid "
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: lib/available.php:
|
485 |
-
msgid "
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: lib/available.php:
|
489 |
msgid "jCarousel by attached to post images"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: lib/
|
493 |
-
msgid "
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: lib/
|
497 |
-
msgid "
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: lib/
|
501 |
-
|
502 |
-
#: lib/admin.php:175
|
503 |
-
msgid "Demo"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: lib/
|
507 |
-
|
508 |
-
msgid "Shortcodes"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: lib/
|
512 |
-
msgid "
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: lib/
|
516 |
-
msgid "
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: lib/
|
520 |
-
msgid "
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: lib/
|
524 |
-
msgid "
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: lib/
|
528 |
-
msgid "
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: lib/
|
532 |
-
msgid "
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: lib/
|
536 |
-
msgid "
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: lib/
|
540 |
-
msgid "
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: lib/
|
544 |
-
msgid "
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: lib/
|
548 |
-
msgid "
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: lib/
|
552 |
-
msgid "
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: lib/
|
556 |
-
msgid "
|
557 |
-
msgstr ""
|
558 |
-
|
559 |
-
#: lib/admin.php:52
|
560 |
-
msgid "5 stars"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: lib/
|
564 |
-
msgid "
|
565 |
-
msgstr ""
|
566 |
-
|
567 |
-
#: lib/admin.php:61
|
568 |
-
#: lib/admin.php:122
|
569 |
-
msgid "Saving..."
|
570 |
-
msgstr ""
|
571 |
-
|
572 |
-
#: lib/admin.php:66
|
573 |
-
msgid "Disable custom formatting"
|
574 |
-
msgstr ""
|
575 |
-
|
576 |
-
#: lib/admin.php:69
|
577 |
-
msgid "Enable this option if you have some problems with other plugins or content formatting"
|
578 |
-
msgstr ""
|
579 |
-
|
580 |
-
#: lib/admin.php:74
|
581 |
-
msgid "Compatibility mode"
|
582 |
-
msgstr ""
|
583 |
-
|
584 |
-
#: lib/admin.php:77
|
585 |
-
msgid "Enable this option if you have some problems with other plugins that uses similar shortcode names"
|
586 |
-
msgstr ""
|
587 |
-
|
588 |
-
#: lib/admin.php:77
|
589 |
-
msgid "Forum topic"
|
590 |
-
msgstr ""
|
591 |
-
|
592 |
-
#: lib/admin.php:81
|
593 |
-
msgid "Disable scripts"
|
594 |
-
msgstr ""
|
595 |
-
|
596 |
-
#: lib/admin.php:85
|
597 |
-
#: lib/admin.php:86
|
598 |
-
#: lib/admin.php:87
|
599 |
-
#: lib/admin.php:88
|
600 |
-
#: lib/admin.php:89
|
601 |
-
#: lib/admin.php:100
|
602 |
-
#: lib/admin.php:101
|
603 |
-
#: lib/admin.php:102
|
604 |
-
msgid "Disable"
|
605 |
-
msgstr ""
|
606 |
-
|
607 |
-
#: lib/admin.php:92
|
608 |
-
msgid "Check scripts, that you want to exclude form wp_head section"
|
609 |
-
msgstr ""
|
610 |
-
|
611 |
-
#: lib/admin.php:92
|
612 |
-
#: lib/admin.php:105
|
613 |
-
msgid "Be careful with this settings!"
|
614 |
-
msgstr ""
|
615 |
-
|
616 |
-
#: lib/admin.php:96
|
617 |
-
msgid "Disable styles"
|
618 |
-
msgstr ""
|
619 |
-
|
620 |
-
#: lib/admin.php:105
|
621 |
-
msgid "Check stylesheets, that you want to exclude form wp_head section"
|
622 |
-
msgstr ""
|
623 |
-
|
624 |
-
#: lib/admin.php:111
|
625 |
-
msgid "Save settings"
|
626 |
-
msgstr ""
|
627 |
-
|
628 |
-
#: lib/admin.php:124
|
629 |
-
msgid "You can add custom styles, that will override defaults"
|
630 |
-
msgstr ""
|
631 |
-
|
632 |
-
#: lib/admin.php:125
|
633 |
-
msgid "See original styles"
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: lib/admin.php:128
|
637 |
-
msgid "Save styles"
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: lib/admin.php:138
|
641 |
-
#: lib/admin.php:174
|
642 |
-
msgid "Shortcode"
|
643 |
-
msgstr ""
|
644 |
-
|
645 |
-
#: lib/admin.php:139
|
646 |
-
msgid "Parameters"
|
647 |
-
msgstr ""
|
648 |
-
|
649 |
-
#: lib/admin.php:140
|
650 |
-
msgid "Usage"
|
651 |
-
msgstr ""
|
652 |
-
|
653 |
-
#: lib/shortcodes.php:101
|
654 |
-
msgid "Top"
|
655 |
-
msgstr ""
|
656 |
-
|
657 |
-
#: lib/shortcodes.php:301
|
658 |
-
msgid "Service name"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: lib/
|
662 |
-
msgid "
|
663 |
msgstr ""
|
664 |
|
665 |
-
|
666 |
-
|
|
|
|
|
667 |
msgstr ""
|
668 |
|
669 |
-
|
670 |
-
|
671 |
-
|
|
|
672 |
msgstr ""
|
673 |
|
674 |
-
#:
|
675 |
-
msgid "
|
676 |
msgstr ""
|
677 |
|
678 |
-
#:
|
679 |
-
msgid "
|
680 |
msgstr ""
|
681 |
|
682 |
-
#:
|
683 |
-
msgid "
|
684 |
msgstr ""
|
685 |
|
686 |
#. Plugin URI of the plugin/theme
|
@@ -690,4 +747,3 @@ msgstr ""
|
|
690 |
#. Author URI of the plugin/theme
|
691 |
msgid "http://ilovecode.ru/"
|
692 |
msgstr ""
|
693 |
-
|
2 |
# This file is distributed under the same license as the Shortcodes Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Shortcodes Ultimate 3.3.0\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/shortcodes-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2011-09-28 03:15:05+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
12 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: lib/shortcodes.php:82 lib/available.php:84 lib/available.php:85
|
16 |
+
msgid "Spoiler title"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: lib/shortcodes.php:101
|
20 |
+
msgid "Top"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: lib/shortcodes.php:301
|
24 |
+
msgid "Service name"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: lib/shortcodes.php:319
|
28 |
+
msgid "This is box title"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: lib/shortcodes.php:381
|
32 |
+
msgid "Please specify media url"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: lib/shortcodes.php:471 lib/shortcodes.php:524 lib/shortcodes.php:568
|
36 |
+
msgid "no attached images, or only one attached image"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: lib/shortcodes.php:683
|
40 |
+
msgid "This menu doesn't exists, or has no elements"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: lib/shortcodes.php:740
|
44 |
+
msgid "This content is for members only."
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: lib/shortcodes.php:740
|
48 |
+
msgid "Please login"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: lib/admin.php:7 lib/admin.php:37
|
52 |
+
msgid "Shortcodes"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#. #-#-#-#-# plugin.pot (Shortcodes Ultimate 3.3.0) #-#-#-#-#
|
56 |
#. Plugin Name of the plugin/theme
|
57 |
+
#: lib/admin.php:26 shortcodes-ultimate.php:184
|
|
|
58 |
msgid "Shortcodes Ultimate"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: lib/admin.php:34
|
62 |
+
msgid "About"
|
|
|
|
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: lib/admin.php:35 shortcodes-ultimate.php:270 shortcodes-ultimate.php:321
|
66 |
+
msgid "Settings"
|
|
|
|
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: lib/admin.php:36
|
70 |
+
msgid "Custom CSS"
|
|
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: lib/admin.php:38 lib/admin.php:175 lib/generator.php:52
|
74 |
+
msgid "Demo"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: lib/admin.php:41
|
78 |
+
msgid ""
|
79 |
+
"For full functionality of this page it is recommended to enable JavaScript."
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: lib/admin.php:41
|
83 |
+
msgid "Instructions"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: lib/admin.php:43
|
87 |
+
msgid "FREE Support"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: lib/admin.php:44 shortcodes-ultimate.php:323
|
91 |
+
msgid "Support forum"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: lib/admin.php:45
|
95 |
+
msgid "Twitter"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: lib/admin.php:46
|
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:51
|
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 ""
|
117 |
+
|
118 |
+
#: lib/admin.php:52
|
119 |
+
msgid "5 stars"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: lib/admin.php:53
|
123 |
+
msgid "Review this plugin in your blog"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: lib/admin.php:61 lib/admin.php:122
|
127 |
+
msgid "Saving..."
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: lib/admin.php:62 shortcodes-ultimate.php:283
|
131 |
msgid "Settings saved"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: lib/admin.php:66
|
135 |
+
msgid "Disable custom formatting"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: lib/admin.php:69
|
139 |
+
msgid ""
|
140 |
+
"Enable this option if you have some problems with other plugins or content "
|
141 |
+
"formatting"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: lib/admin.php:74
|
145 |
+
msgid "Compatibility mode"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: lib/admin.php:77
|
149 |
+
msgid ""
|
150 |
+
"Enable this option if you have some problems with other plugins that uses "
|
151 |
+
"similar shortcode names"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: lib/admin.php:77
|
155 |
+
msgid "Forum topic"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: lib/admin.php:81
|
159 |
+
msgid "Disable scripts"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: lib/admin.php:85 lib/admin.php:86 lib/admin.php:87 lib/admin.php:88
|
163 |
+
#: lib/admin.php:89 lib/admin.php:100 lib/admin.php:101 lib/admin.php:102
|
164 |
+
msgid "Disable"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: lib/admin.php:92
|
168 |
+
msgid "Check scripts, that you want to exclude form wp_head section"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: lib/admin.php:92 lib/admin.php:105
|
172 |
+
msgid "Be careful with this settings!"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: lib/admin.php:96
|
176 |
+
msgid "Disable styles"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: lib/admin.php:105
|
180 |
+
msgid "Check stylesheets, that you want to exclude form wp_head section"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: lib/admin.php:111
|
184 |
+
msgid "Save settings"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: lib/admin.php:123 shortcodes-ultimate.php:288
|
188 |
msgid "Custom CSS saved"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: lib/admin.php:124
|
192 |
+
msgid "You can add custom styles, that will override defaults"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: lib/admin.php:125
|
196 |
+
msgid "See original styles"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: lib/admin.php:128
|
200 |
+
msgid "Save styles"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: lib/admin.php:138 lib/admin.php:174
|
204 |
+
msgid "Shortcode"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: lib/admin.php:139
|
208 |
+
msgid "Parameters"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: lib/admin.php:140
|
212 |
+
msgid "Usage"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: lib/available.php:18
|
216 |
+
msgid "Heading style"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: lib/available.php:22
|
220 |
msgid "Heading"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: lib/available.php:23
|
224 |
msgid "Styled heading"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: lib/available.php:37
|
228 |
msgid "Frame align"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: lib/available.php:41
|
232 |
msgid "Image tag"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: lib/available.php:42
|
236 |
msgid "Styled image frame"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: lib/available.php:56
|
240 |
msgid "Tabs style"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: lib/available.php:60
|
244 |
msgid "Tabs container"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: lib/available.php:69
|
248 |
msgid "Title"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: lib/available.php:70
|
252 |
msgid "Tab title"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: lib/available.php:74
|
256 |
msgid "Tab content"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: lib/available.php:75
|
260 |
msgid "Single tab"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: lib/available.php:89
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
msgid "Hidden content"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: lib/available.php:90
|
268 |
msgid "Hidden text"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: lib/available.php:103
|
272 |
msgid "Show TOP link"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: lib/available.php:107
|
276 |
msgid "Content divider with optional TOP link"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: lib/available.php:123
|
280 |
msgid "Spacer height in pixels"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: lib/available.php:127
|
284 |
msgid "Empty space with adjustable height"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: lib/available.php:141
|
288 |
msgid "Quote style"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: lib/available.php:145
|
292 |
msgid "Quote"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: lib/available.php:146
|
296 |
msgid "Blockquote alternative"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: lib/available.php:159
|
300 |
msgid "Pullquote alignment"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: lib/available.php:163 lib/available.php:164
|
|
|
304 |
msgid "Pullquote"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: lib/available.php:174
|
308 |
msgid "Background color"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: lib/available.php:180
|
312 |
msgid "Text color"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: lib/available.php:185 lib/available.php:186
|
|
|
316 |
msgid "Highlighted text"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: lib/available.php:209
|
320 |
msgid "Option name"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: lib/available.php:213
|
324 |
msgid "Blog info"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: lib/available.php:223
|
|
|
|
|
328 |
msgid "Post/page ID"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: lib/available.php:231
|
332 |
msgid "Link target"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: lib/available.php:235
|
336 |
msgid "Permalink text"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: lib/available.php:236
|
340 |
msgid "Permalink to specified post/page"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: lib/available.php:246
|
344 |
msgid "Button link"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: lib/available.php:251
|
348 |
msgid "Button background color"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: lib/available.php:270
|
352 |
msgid "Button size"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: lib/available.php:280
|
356 |
msgid "Button background style"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: lib/available.php:288
|
360 |
msgid "Dark text color"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: lib/available.php:296
|
364 |
msgid "Disable rounded corners"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: lib/available.php:301
|
368 |
msgid "Button icon"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: lib/available.php:306
|
372 |
msgid "Button class"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: lib/available.php:314
|
376 |
msgid "Button link target"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: lib/available.php:318
|
380 |
msgid "Button text"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: lib/available.php:319
|
384 |
msgid "Styled button"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: lib/available.php:332
|
388 |
msgid "Link color"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: lib/available.php:337
|
392 |
msgid "URL"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: lib/available.php:341
|
396 |
msgid "Link text"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: lib/available.php:342
|
400 |
msgid "Fancy link"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: lib/available.php:351 lib/available.php:352
|
|
|
404 |
msgid "Service title"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: lib/available.php:357
|
408 |
msgid "Service icon"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: lib/available.php:366
|
412 |
msgid "Icon size"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: lib/available.php:370
|
416 |
msgid "Service description"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: lib/available.php:371
|
420 |
msgid "Service box with title"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: lib/available.php:385
|
424 |
msgid "Box style"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: lib/available.php:393
|
428 |
+
msgid "Show login message"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: lib/available.php:397
|
432 |
+
msgid "Content for logged members"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: lib/available.php:398
|
436 |
msgid "Content for logged in members only"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: lib/available.php:406
|
440 |
+
msgid "Content for guests"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: lib/available.php:407
|
444 |
+
msgid "Content for guests only"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: lib/available.php:416 lib/available.php:417
|
448 |
msgid "Box title"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: lib/available.php:422
|
452 |
msgid "Box color"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: lib/available.php:427
|
456 |
msgid "Box content"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: lib/available.php:428
|
460 |
msgid "Colored box with caption"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: lib/available.php:438
|
464 |
msgid "Note color"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: lib/available.php:443
|
468 |
msgid "Note text"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: lib/available.php:444
|
472 |
msgid "Colored box"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: lib/available.php:452
|
476 |
msgid "Private note text"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: lib/available.php:453
|
480 |
msgid "Private note for post authors"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: lib/available.php:479
|
484 |
msgid "List style"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: lib/available.php:483
|
488 |
msgid "List item "
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: lib/available.php:484
|
492 |
msgid "Styled unordered list"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: lib/available.php:494
|
496 |
msgid "Feed URL"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: lib/available.php:505
|
500 |
msgid "Number of item to show"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: lib/available.php:509
|
504 |
msgid "Feed grabber"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: lib/available.php:519
|
508 |
msgid "Custom menu name"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: lib/available.php:523
|
512 |
msgid "Custom menu by name"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: lib/available.php:537 lib/available.php:560
|
|
|
516 |
msgid "Depth level"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: lib/available.php:542
|
520 |
msgid "Parent page ID"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: lib/available.php:546
|
|
|
524 |
msgid "Page childrens"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: lib/available.php:564
|
528 |
+
msgid "Page siblings"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: lib/available.php:586
|
532 |
msgid "Column width"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: lib/available.php:594
|
536 |
msgid "Last column"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: lib/available.php:603
|
540 |
msgid "Column style"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: lib/available.php:607
|
544 |
msgid "Column content"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: lib/available.php:608
|
548 |
msgid "Flexible columns"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: lib/available.php:622
|
552 |
msgid "Table style"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: lib/available.php:627
|
556 |
msgid "Create table from CSV"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: lib/available.php:632
|
560 |
msgid "Styled table from HTML or CSV file"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: lib/available.php:642
|
564 |
msgid "Media URL"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: lib/available.php:647 lib/available.php:671 lib/available.php:690
|
|
|
|
|
568 |
msgid "Width"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: lib/available.php:652 lib/available.php:676 lib/available.php:695
|
|
|
|
|
572 |
msgid "Height"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: lib/available.php:656
|
576 |
msgid "YouTube video, Vimeo video, .mp4/.flv video, .mp3 file or images"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: lib/available.php:666
|
580 |
msgid "Document URL"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: lib/available.php:680
|
584 |
msgid ".doc, .xls, .pdf viewer by Google"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: lib/available.php:700
|
588 |
msgid "Marker address"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: lib/available.php:704
|
592 |
msgid "Maps by Google"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: lib/available.php:718 lib/available.php:788 lib/available.php:860
|
596 |
+
msgid "Source of images"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: lib/available.php:729 lib/available.php:799 lib/available.php:871
|
600 |
+
msgid "Images links"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: lib/available.php:740
|
604 |
+
msgid "Slider size"
|
|
|
|
|
|
|
|
|
|
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: lib/available.php:750
|
608 |
+
msgid "Number of slides"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: lib/available.php:760
|
612 |
msgid "Animation effect"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: lib/available.php:765 lib/available.php:833
|
616 |
+
msgid "Animation speed (1000 = 1 second)"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: lib/available.php:770
|
620 |
+
msgid "Animation delay (1000 = 1 second)"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: lib/available.php:774
|
624 |
+
msgid "Nivo slider by attached to post images"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: lib/available.php:809
|
628 |
+
msgid "Carousel item size"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: lib/available.php:819 lib/available.php:891
|
632 |
+
msgid "Number of items"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: lib/available.php:828
|
636 |
+
msgid "Number of items in viewport"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: lib/available.php:842
|
640 |
+
msgid "Space between items in pixels"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: lib/available.php:846
|
644 |
msgid "jCarousel by attached to post images"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: lib/available.php:881
|
648 |
+
msgid "Gallery item size"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: lib/available.php:895
|
652 |
+
msgid "Custom gallery by attached to post images"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: lib/available.php:905
|
656 |
+
msgid "Twitter username"
|
|
|
|
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: lib/available.php:916
|
660 |
+
msgid "Number of tweets to show"
|
|
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: lib/available.php:924
|
664 |
+
msgid "Tweets style"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: lib/available.php:932
|
668 |
+
msgid "Show relative time"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: lib/available.php:936
|
672 |
+
msgid "Recent tweets"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: lib/twitter.php:9
|
676 |
+
msgid "year"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: lib/twitter.php:10
|
680 |
+
msgid "month"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: lib/twitter.php:11
|
684 |
+
msgid "week"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: lib/twitter.php:12
|
688 |
+
msgid "day"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: lib/twitter.php:13
|
692 |
+
msgid "hour"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: lib/twitter.php:14
|
696 |
+
msgid "minute"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: lib/twitter.php:28 lib/twitter.php:36
|
700 |
+
msgid "s"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: lib/twitter.php:73
|
704 |
+
msgid "username not specified"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: lib/twitter.php:76
|
708 |
+
msgid "no public messages"
|
|
|
|
|
|
|
|
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: lib/generator.php:48
|
712 |
+
msgid "Content"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: lib/generator.php:51
|
716 |
+
msgid "Insert"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#. #-#-#-#-# plugin.pot (Shortcodes Ultimate 3.3.0) #-#-#-#-#
|
720 |
+
#. Author of the plugin/theme
|
721 |
+
#: shortcodes-ultimate.php:184
|
722 |
+
msgid "Vladimir Anokhin"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#. #-#-#-#-# plugin.pot (Shortcodes Ultimate 3.3.0) #-#-#-#-#
|
726 |
+
#. Description of the plugin/theme
|
727 |
+
#: shortcodes-ultimate.php:184
|
728 |
+
msgid "Provides support for many easy to use shortcodes"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: shortcodes-ultimate.php:296
|
732 |
+
msgid "Insert shortcode"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: shortcodes-ultimate.php:311
|
736 |
+
msgid "Select shortcode"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: shortcodes-ultimate.php:322
|
740 |
+
msgid "Color picker"
|
741 |
msgstr ""
|
742 |
|
743 |
#. Plugin URI of the plugin/theme
|
747 |
#. Author URI of the plugin/theme
|
748 |
msgid "http://ilovecode.ru/"
|
749 |
msgstr ""
|
|
lib/available.php
CHANGED
@@ -9,8 +9,16 @@
|
|
9 |
'heading' => array(
|
10 |
'name' => 'Heading',
|
11 |
'type' => 'wrap',
|
12 |
-
'atts' => array(
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
'content' => __( 'Heading', 'shortcodes-ultimate' ),
|
15 |
'desc' => __( 'Styled heading', 'shortcodes-ultimate' )
|
16 |
),
|
@@ -375,12 +383,29 @@
|
|
375 |
),
|
376 |
'default' => '1',
|
377 |
'desc' => __( 'Box style', 'shortcodes-ultimate' )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
378 |
)
|
379 |
),
|
380 |
-
'usage' => '[members style="2"] Content for logged
|
381 |
-
'content' => __( '
|
382 |
'desc' => __( 'Content for logged in members only', 'shortcodes-ultimate' )
|
383 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
384 |
# box
|
385 |
'box' => array(
|
386 |
'name' => 'Box',
|
@@ -683,40 +708,46 @@
|
|
683 |
'name' => 'Nivo slider',
|
684 |
'type' => 'single',
|
685 |
'atts' => array(
|
686 |
-
'
|
687 |
-
'values' =>
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
'
|
693 |
-
'
|
694 |
-
'desc' => __( 'Slider height', 'shortcodes-ultimate' )
|
695 |
),
|
696 |
'link' => array(
|
697 |
'values' => array(
|
698 |
'none',
|
699 |
-
'
|
700 |
-
'
|
701 |
-
'caption'
|
|
|
702 |
),
|
703 |
-
'default' => '
|
704 |
-
'desc' => __( '
|
705 |
-
),
|
706 |
-
'speed' => array(
|
707 |
-
'values' => false,
|
708 |
-
'default' => '600',
|
709 |
-
'desc' => __( 'Animation speed (1000 = 1 second)', 'shortcodes-ultimate' )
|
710 |
),
|
711 |
-
'
|
712 |
-
'values' =>
|
713 |
-
|
714 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
715 |
),
|
716 |
-
'
|
717 |
-
'values' =>
|
718 |
-
|
719 |
-
|
|
|
|
|
|
|
|
|
|
|
720 |
),
|
721 |
'effect' => array(
|
722 |
'values' => array(
|
@@ -727,9 +758,19 @@
|
|
727 |
),
|
728 |
'default' => 'random',
|
729 |
'desc' => __( 'Animation effect', 'shortcodes-ultimate' )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
730 |
)
|
731 |
),
|
732 |
-
'usage' => '[nivo_slider]<br/>[nivo_slider
|
733 |
'desc' => __( 'Nivo slider by attached to post images', 'shortcodes-ultimate' )
|
734 |
),
|
735 |
# jcarousel
|
@@ -737,21 +778,45 @@
|
|
737 |
'name' => 'jCarousel',
|
738 |
'type' => 'single',
|
739 |
'atts' => array(
|
740 |
-
'
|
741 |
-
'values' =>
|
742 |
-
|
743 |
-
|
|
|
|
|
|
|
|
|
744 |
),
|
745 |
-
'
|
746 |
-
'values' =>
|
747 |
-
|
748 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
749 |
),
|
750 |
-
'
|
751 |
-
'values' =>
|
752 |
-
|
753 |
-
|
754 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
755 |
),
|
756 |
'items' => array(
|
757 |
'values' => array(
|
@@ -760,7 +825,12 @@
|
|
760 |
'5'
|
761 |
),
|
762 |
'default' => '3',
|
763 |
-
'desc' => __( 'Number of items
|
|
|
|
|
|
|
|
|
|
|
764 |
),
|
765 |
'margin' => array(
|
766 |
'values' => array(
|
@@ -770,30 +840,59 @@
|
|
770 |
),
|
771 |
'default' => '10',
|
772 |
'desc' => __( 'Space between items in pixels', 'shortcodes-ultimate' )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
773 |
),
|
774 |
'link' => array(
|
775 |
'values' => array(
|
776 |
'none',
|
777 |
-
'
|
778 |
-
'
|
779 |
-
'caption'
|
|
|
780 |
),
|
781 |
-
'default' => '
|
782 |
-
'desc' => __( '
|
783 |
),
|
784 |
-
'
|
785 |
-
'values' =>
|
786 |
-
|
787 |
-
|
|
|
|
|
|
|
|
|
|
|
788 |
),
|
789 |
-
'
|
790 |
-
'values' =>
|
791 |
-
|
792 |
-
|
|
|
|
|
|
|
|
|
|
|
793 |
)
|
794 |
),
|
795 |
-
'usage' => '[
|
796 |
-
'desc' => __( '
|
797 |
),
|
798 |
# tweets
|
799 |
'tweets' => array(
|
@@ -808,14 +907,9 @@
|
|
808 |
'limit' => array(
|
809 |
'values' => array(
|
810 |
'1',
|
811 |
-
'2',
|
812 |
'3',
|
813 |
-
'4',
|
814 |
'5',
|
815 |
-
'6',
|
816 |
'7',
|
817 |
-
'8',
|
818 |
-
'9',
|
819 |
'10'
|
820 |
),
|
821 |
'default' => '3',
|
9 |
'heading' => array(
|
10 |
'name' => 'Heading',
|
11 |
'type' => 'wrap',
|
12 |
+
'atts' => array(
|
13 |
+
'style' => array(
|
14 |
+
'values' => array(
|
15 |
+
'1',
|
16 |
+
'2'
|
17 |
+
),
|
18 |
+
'desc' => __( 'Heading style', 'shortcodes-ultimate' )
|
19 |
+
)
|
20 |
+
),
|
21 |
+
'usage' => '[heading] Content [/heading]<br/>[heading style="2"] Content [/heading]',
|
22 |
'content' => __( 'Heading', 'shortcodes-ultimate' ),
|
23 |
'desc' => __( 'Styled heading', 'shortcodes-ultimate' )
|
24 |
),
|
383 |
),
|
384 |
'default' => '1',
|
385 |
'desc' => __( 'Box style', 'shortcodes-ultimate' )
|
386 |
+
),
|
387 |
+
'login' => array(
|
388 |
+
'values' => array(
|
389 |
+
'0',
|
390 |
+
'1'
|
391 |
+
),
|
392 |
+
'default' => '1',
|
393 |
+
'desc' => __( 'Show login message', 'shortcodes-ultimate' )
|
394 |
)
|
395 |
),
|
396 |
+
'usage' => '[members style="2" login="1"] Content for logged members [/members]',
|
397 |
+
'content' => __( 'Content for logged members', 'shortcodes-ultimate' ),
|
398 |
'desc' => __( 'Content for logged in members only', 'shortcodes-ultimate' )
|
399 |
),
|
400 |
+
# guests
|
401 |
+
'guests' => array(
|
402 |
+
'name' => 'Guests',
|
403 |
+
'type' => 'wrap',
|
404 |
+
'atts' => array( ),
|
405 |
+
'usage' => '[guests] Content for guests [/guests]',
|
406 |
+
'content' => __( 'Content for guests', 'shortcodes-ultimate' ),
|
407 |
+
'desc' => __( 'Content for guests only', 'shortcodes-ultimate' )
|
408 |
+
),
|
409 |
# box
|
410 |
'box' => array(
|
411 |
'name' => 'Box',
|
708 |
'name' => 'Nivo slider',
|
709 |
'type' => 'single',
|
710 |
'atts' => array(
|
711 |
+
'source' => array(
|
712 |
+
'values' => array(
|
713 |
+
'post',
|
714 |
+
'post=%post_id%',
|
715 |
+
'cat=%cat_id%'
|
716 |
+
),
|
717 |
+
'default' => 'post',
|
718 |
+
'desc' => __( 'Source of images', 'shortcodes-ultimate' )
|
|
|
719 |
),
|
720 |
'link' => array(
|
721 |
'values' => array(
|
722 |
'none',
|
723 |
+
'image',
|
724 |
+
'permalink',
|
725 |
+
'caption',
|
726 |
+
'meta'
|
727 |
),
|
728 |
+
'default' => 'image',
|
729 |
+
'desc' => __( 'Images links', 'shortcodes-ultimate' )
|
|
|
|
|
|
|
|
|
|
|
730 |
),
|
731 |
+
'size' => array(
|
732 |
+
'values' => array(
|
733 |
+
'100x100',
|
734 |
+
'150x150',
|
735 |
+
'200x200',
|
736 |
+
'300x200',
|
737 |
+
'500x300'
|
738 |
+
),
|
739 |
+
'default' => '500x300',
|
740 |
+
'desc' => __( 'Slider size', 'shortcodes-ultimate' )
|
741 |
),
|
742 |
+
'limit' => array(
|
743 |
+
'values' => array(
|
744 |
+
'3',
|
745 |
+
'5',
|
746 |
+
'10',
|
747 |
+
'20'
|
748 |
+
),
|
749 |
+
'default' => '10',
|
750 |
+
'desc' => __( 'Number of slides', 'shortcodes-ultimate' )
|
751 |
),
|
752 |
'effect' => array(
|
753 |
'values' => array(
|
758 |
),
|
759 |
'default' => 'random',
|
760 |
'desc' => __( 'Animation effect', 'shortcodes-ultimate' )
|
761 |
+
),
|
762 |
+
'speed' => array(
|
763 |
+
'values' => false,
|
764 |
+
'default' => '600',
|
765 |
+
'desc' => __( 'Animation speed (1000 = 1 second)', 'shortcodes-ultimate' )
|
766 |
+
),
|
767 |
+
'delay' => array(
|
768 |
+
'values' => false,
|
769 |
+
'default' => '3000',
|
770 |
+
'desc' => __( 'Animation delay (1000 = 1 second)', 'shortcodes-ultimate' )
|
771 |
)
|
772 |
),
|
773 |
+
'usage' => '[nivo_slider]<br/>[nivo_slider source="post" link="image" size="500x300" limit="10" effect="boxRandom"]<br/>[nivo_slider source="cat=1" link="permalink" size="500x300" limit="10" effect="boxRandom"]',
|
774 |
'desc' => __( 'Nivo slider by attached to post images', 'shortcodes-ultimate' )
|
775 |
),
|
776 |
# jcarousel
|
778 |
'name' => 'jCarousel',
|
779 |
'type' => 'single',
|
780 |
'atts' => array(
|
781 |
+
'source' => array(
|
782 |
+
'values' => array(
|
783 |
+
'post',
|
784 |
+
'post=%post_id%',
|
785 |
+
'cat=%cat_id%'
|
786 |
+
),
|
787 |
+
'default' => 'post',
|
788 |
+
'desc' => __( 'Source of images', 'shortcodes-ultimate' )
|
789 |
),
|
790 |
+
'link' => array(
|
791 |
+
'values' => array(
|
792 |
+
'none',
|
793 |
+
'image',
|
794 |
+
'permalink',
|
795 |
+
'caption',
|
796 |
+
'meta'
|
797 |
+
),
|
798 |
+
'default' => 'image',
|
799 |
+
'desc' => __( 'Images links', 'shortcodes-ultimate' )
|
800 |
),
|
801 |
+
'size' => array(
|
802 |
+
'values' => array(
|
803 |
+
'100x100',
|
804 |
+
'150x150',
|
805 |
+
'200x200',
|
806 |
+
'150x300'
|
807 |
+
),
|
808 |
+
'default' => '150x150',
|
809 |
+
'desc' => __( 'Carousel item size', 'shortcodes-ultimate' )
|
810 |
+
),
|
811 |
+
'limit' => array(
|
812 |
+
'values' => array(
|
813 |
+
'3',
|
814 |
+
'5',
|
815 |
+
'10',
|
816 |
+
'20'
|
817 |
+
),
|
818 |
+
'default' => '10',
|
819 |
+
'desc' => __( 'Number of items', 'shortcodes-ultimate' )
|
820 |
),
|
821 |
'items' => array(
|
822 |
'values' => array(
|
825 |
'5'
|
826 |
),
|
827 |
'default' => '3',
|
828 |
+
'desc' => __( 'Number of items in viewport', 'shortcodes-ultimate' )
|
829 |
+
),
|
830 |
+
'speed' => array(
|
831 |
+
'values' => false,
|
832 |
+
'default' => '400',
|
833 |
+
'desc' => __( 'Animation speed (1000 = 1 second)', 'shortcodes-ultimate' )
|
834 |
),
|
835 |
'margin' => array(
|
836 |
'values' => array(
|
840 |
),
|
841 |
'default' => '10',
|
842 |
'desc' => __( 'Space between items in pixels', 'shortcodes-ultimate' )
|
843 |
+
)
|
844 |
+
),
|
845 |
+
'usage' => '[jcarousel]<br/>[jcarousel source="post" link="image" size="150x150" limit="10" items="3"]<br/>[jcarousel source="cat=1" link="permalink" size="150x150" limit="10" items="3"]',
|
846 |
+
'desc' => __( 'jCarousel by attached to post images', 'shortcodes-ultimate' )
|
847 |
+
),
|
848 |
+
# custom_gallery
|
849 |
+
'custom_gallery' => array(
|
850 |
+
'name' => 'Custom gallery',
|
851 |
+
'type' => 'single',
|
852 |
+
'atts' => array(
|
853 |
+
'source' => array(
|
854 |
+
'values' => array(
|
855 |
+
'post',
|
856 |
+
'post=%post_id%',
|
857 |
+
'cat=%cat_id%'
|
858 |
+
),
|
859 |
+
'default' => 'post',
|
860 |
+
'desc' => __( 'Source of images', 'shortcodes-ultimate' )
|
861 |
),
|
862 |
'link' => array(
|
863 |
'values' => array(
|
864 |
'none',
|
865 |
+
'image',
|
866 |
+
'permalink',
|
867 |
+
'caption',
|
868 |
+
'meta'
|
869 |
),
|
870 |
+
'default' => 'image',
|
871 |
+
'desc' => __( 'Images links', 'shortcodes-ultimate' )
|
872 |
),
|
873 |
+
'size' => array(
|
874 |
+
'values' => array(
|
875 |
+
'100x100',
|
876 |
+
'150x150',
|
877 |
+
'200x200',
|
878 |
+
'150x300'
|
879 |
+
),
|
880 |
+
'default' => '200x200',
|
881 |
+
'desc' => __( 'Gallery item size', 'shortcodes-ultimate' )
|
882 |
),
|
883 |
+
'limit' => array(
|
884 |
+
'values' => array(
|
885 |
+
'3',
|
886 |
+
'5',
|
887 |
+
'10',
|
888 |
+
'20'
|
889 |
+
),
|
890 |
+
'default' => '10',
|
891 |
+
'desc' => __( 'Number of items', 'shortcodes-ultimate' )
|
892 |
)
|
893 |
),
|
894 |
+
'usage' => '[custom_gallery]<br/>[custom_gallery source="post" link="image" size="200x200" limit="10"]<br/>[custom_gallery source="cat=1" link="permalink" size="200x200" limit="10"]',
|
895 |
+
'desc' => __( 'Custom gallery by attached to post images', 'shortcodes-ultimate' )
|
896 |
),
|
897 |
# tweets
|
898 |
'tweets' => array(
|
907 |
'limit' => array(
|
908 |
'values' => array(
|
909 |
'1',
|
|
|
910 |
'3',
|
|
|
911 |
'5',
|
|
|
912 |
'7',
|
|
|
|
|
913 |
'10'
|
914 |
),
|
915 |
'default' => '3',
|
lib/images.php
ADDED
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Retrieve images and links for Nivo slider, jCarousel or custom gallery
|
5 |
+
*
|
6 |
+
* @param string $source Images source: post=POST_ID (post attachments), category=CATEGORY_ID (posts thumbnails)
|
7 |
+
* @param string $link Images links: none, image, permalink, meta, caption
|
8 |
+
* @param string $size Retrieved images size $width x $height
|
9 |
+
* @param int $limit Number of images to retrieve
|
10 |
+
*/
|
11 |
+
function su_build_gallery( $source = 'post', $link = 'none', $size = '150x150', $limit = 10, $options = array( ) ) {
|
12 |
+
|
13 |
+
// Thumbnail dimensions
|
14 |
+
$size = explode( 'x', strtolower( $size ) );
|
15 |
+
$width = $size[0];
|
16 |
+
$height = $size[1];
|
17 |
+
|
18 |
+
### SOURCE: POST ###
|
19 |
+
if ( strpos( $source, 'post' ) !== false ) {
|
20 |
+
|
21 |
+
// Specified post
|
22 |
+
if ( strpos( $source, 'post=' ) !== false ) {
|
23 |
+
$source = explode( '=', $source );
|
24 |
+
$post_id = $source[1];
|
25 |
+
}
|
26 |
+
|
27 |
+
// Current post
|
28 |
+
else {
|
29 |
+
$post_id = get_the_ID();
|
30 |
+
}
|
31 |
+
|
32 |
+
// Get attachments
|
33 |
+
$attachments = get_posts( array(
|
34 |
+
'post_type' => 'attachment',
|
35 |
+
'numberposts' => $limit,
|
36 |
+
'order' => 'ASC',
|
37 |
+
'post_status' => null,
|
38 |
+
'post_parent' => $post_id
|
39 |
+
) );
|
40 |
+
|
41 |
+
foreach ( $attachments as $attachment ) {
|
42 |
+
if ( $link == 'caption' )
|
43 |
+
$linked = $attachment->post_excerpt;
|
44 |
+
elseif ( $link == 'permalink' )
|
45 |
+
$linked = get_permalink( $attachment->ID );
|
46 |
+
elseif ( $link == 'image' )
|
47 |
+
$linked = $attachment->guid;
|
48 |
+
else
|
49 |
+
$linked = false;
|
50 |
+
|
51 |
+
$return[] = array(
|
52 |
+
'id' => $attachment->ID,
|
53 |
+
'image' => $attachment->guid,
|
54 |
+
'thumbnail' => su_plugin_url() . '/lib/timthumb.php?src=' . $attachment->guid . '&w=' . $width . '&h=' . $height . '&zc=1&q=100',
|
55 |
+
'link' => $linked,
|
56 |
+
'name' => $attachment->post_title
|
57 |
+
);
|
58 |
+
}
|
59 |
+
}
|
60 |
+
|
61 |
+
### SOURCE: CATEGORY ###
|
62 |
+
elseif ( strpos( $source, 'cat=' ) !== false ) {
|
63 |
+
$source = explode( '=', $source );
|
64 |
+
$category_id = $source[1];
|
65 |
+
|
66 |
+
// Get posts with images
|
67 |
+
$images = get_posts( array(
|
68 |
+
'numberposts' => $limit,
|
69 |
+
'category' => $category_id
|
70 |
+
) );
|
71 |
+
|
72 |
+
foreach ( $images as $image ) {
|
73 |
+
if ( $link == 'meta' )
|
74 |
+
$linked = get_post_meta( $image->ID, 'link', true );
|
75 |
+
elseif ( $link == 'permalink' )
|
76 |
+
$linked = get_permalink( $image->ID );
|
77 |
+
elseif ( $link == 'image' )
|
78 |
+
$linked = su_get_post_image( $image->ID );
|
79 |
+
else
|
80 |
+
$linked = false;
|
81 |
+
|
82 |
+
$return[] = array(
|
83 |
+
'id' => $image->ID,
|
84 |
+
'image' => su_get_post_image( $image->ID ),
|
85 |
+
'thumbnail' => su_plugin_url() . '/lib/timthumb.php?src=' . su_get_post_image( $image->ID ) . '&w=' . $width . '&h=' . $height . '&zc=1&q=100',
|
86 |
+
'link' => $linked,
|
87 |
+
'name' => $image->post_title
|
88 |
+
);
|
89 |
+
}
|
90 |
+
}
|
91 |
+
|
92 |
+
return $return;
|
93 |
+
}
|
94 |
+
|
95 |
+
/**
|
96 |
+
* Get post image by post id
|
97 |
+
*
|
98 |
+
* @global mixed $post
|
99 |
+
* @param int $post_id
|
100 |
+
* @return string Post image src
|
101 |
+
*/
|
102 |
+
function su_get_post_image( $post_id = false ) {
|
103 |
+
|
104 |
+
global $post;
|
105 |
+
|
106 |
+
$id = ( $post_id ) ? $post_id : $post->ID;
|
107 |
+
$default = su_plugin_url() . '/images/thumbnail.png';
|
108 |
+
$timthumb = su_plugin_url() . '/lib/timthumb.php';
|
109 |
+
$meta = 'thumbnail';
|
110 |
+
|
111 |
+
// Check post-thumbnails theme support
|
112 |
+
if ( !current_theme_supports( 'post-thumbnails' ) )
|
113 |
+
add_theme_support( 'post-thumbnails' );
|
114 |
+
|
115 |
+
// Get post attachments
|
116 |
+
$attachments = get_posts( array(
|
117 |
+
'post_type' => 'attachment',
|
118 |
+
'numberposts' => 1,
|
119 |
+
'order' => 'ASC',
|
120 |
+
'post_status' => null,
|
121 |
+
'post_parent' => $id
|
122 |
+
) );
|
123 |
+
|
124 |
+
### Post thumbnail ###
|
125 |
+
if ( has_post_thumbnail( $id ) ) {
|
126 |
+
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $id ), 'full' );
|
127 |
+
$src = $image[0];
|
128 |
+
}
|
129 |
+
|
130 |
+
### Meta field ###
|
131 |
+
elseif ( get_post_meta( $id, $meta, true ) ) {
|
132 |
+
$src = get_post_meta( $id, $meta, true );
|
133 |
+
}
|
134 |
+
|
135 |
+
### First post attachment ###
|
136 |
+
elseif ( $attachments ) {
|
137 |
+
$vars = get_object_vars( $attachments[0] );
|
138 |
+
$src = $vars['guid'];
|
139 |
+
}
|
140 |
+
|
141 |
+
### First post_content image ###
|
142 |
+
else {
|
143 |
+
ob_start();
|
144 |
+
ob_end_clean();
|
145 |
+
$output = preg_match_all( '/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches );
|
146 |
+
$src = $matches[1][0];
|
147 |
+
}
|
148 |
+
|
149 |
+
### Default image ###
|
150 |
+
if ( empty( $src ) ) {
|
151 |
+
$src = $default;
|
152 |
+
}
|
153 |
+
|
154 |
+
return $src;
|
155 |
+
}
|
156 |
+
|
157 |
+
?>
|
lib/shortcodes.php
CHANGED
@@ -9,10 +9,10 @@
|
|
9 |
*/
|
10 |
function su_heading_shortcode( $atts, $content = null ) {
|
11 |
extract( shortcode_atts( array(
|
12 |
-
'
|
13 |
), $atts ) );
|
14 |
|
15 |
-
return '<div class="su-heading"><div class="su-heading-shell">' . $content . '</div></div>';
|
16 |
}
|
17 |
|
18 |
/**
|
@@ -434,81 +434,39 @@
|
|
434 |
*/
|
435 |
function su_nivo_slider_shortcode( $atts, $content = null ) {
|
436 |
extract( shortcode_atts( array(
|
437 |
-
'
|
438 |
-
'
|
439 |
-
'
|
|
|
440 |
'effect' => 'random',
|
441 |
'speed' => 600,
|
442 |
-
'delay' => 3000
|
443 |
-
'p' => false
|
444 |
), $atts ) );
|
445 |
|
446 |
-
|
447 |
-
$
|
448 |
-
|
449 |
-
$
|
450 |
-
'post_type' => 'attachment',
|
451 |
-
'numberposts' => -1,
|
452 |
-
'order' => 'ASC',
|
453 |
-
'post_status' => null,
|
454 |
-
'post_parent' => $post_id
|
455 |
-
);
|
456 |
|
457 |
-
//
|
458 |
-
$
|
459 |
|
460 |
-
//
|
461 |
-
|
462 |
-
|
463 |
-
$slider_id = uniqid( 'su-nivo-slider_' );
|
464 |
-
|
465 |
-
$return = '
|
466 |
-
<script type="text/javascript">
|
467 |
-
jQuery(window).load(function() {
|
468 |
-
jQuery("#' . $slider_id . '").nivoSlider({
|
469 |
-
effect: "' . $effect . '",
|
470 |
-
animSpeed: ' . $speed . ',
|
471 |
-
pauseTime: ' . $delay . '
|
472 |
-
});
|
473 |
-
});
|
474 |
-
</script>
|
475 |
-
';
|
476 |
|
477 |
-
|
|
|
478 |
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
// Link to file
|
485 |
-
if ( $link == 'file' ) {
|
486 |
-
$return .= '<a href="' . $image[0] . '" title="' . $title . '"><img src="' . su_plugin_url() . '/lib/timthumb.php?src=' . $image[0] . '&w=' . $width . '&h=' . $height . '&q=100&zc=1" width="' . $width . '" height="' . $height . '" alt="' . $title . '" /></a>';
|
487 |
-
}
|
488 |
-
|
489 |
-
// Link to attachment page
|
490 |
-
elseif ( $link == 'attachment' ) {
|
491 |
-
$return .= '<a href="' . get_permalink( $attachment->ID ) . '" title="' . $title . '"><img src="' . su_plugin_url() . '/lib/timthumb.php?src=' . $image[0] . '&w=' . $width . '&h=' . $height . '&q=100&zc=1" width="' . $width . '" height="' . $height . '" alt="' . $title . '" /></a>';
|
492 |
-
}
|
493 |
-
|
494 |
-
// Custom link
|
495 |
-
elseif ( $link == 'caption' ) {
|
496 |
-
if ( $attachment->post_excerpt ) {
|
497 |
-
$return .= '<a href="' . $attachment->post_excerpt . '" title="' . $title . '"><img src="' . su_plugin_url() . '/lib/timthumb.php?src=' . $image[0] . '&w=' . $width . '&h=' . $height . '&q=100&zc=1" width="' . $width . '" height="' . $height . '" alt="' . $title . '" /></a>';
|
498 |
-
} else {
|
499 |
-
$return .= '<img src="' . su_plugin_url() . '/lib/timthumb.php?src=' . $image[0] . '&w=' . $width . '&h=' . $height . '&q=100&zc=1" width="' . $width . '" height="' . $height . '" alt="' . $title . '" />';
|
500 |
-
}
|
501 |
-
}
|
502 |
-
|
503 |
-
// No link
|
504 |
-
else {
|
505 |
-
$return .= '<img src="' . su_plugin_url() . '/lib/timthumb.php?src=' . $image[0] . '&w=' . $width . '&h=' . $height . '&q=100&zc=1" width="' . $width . '" height="' . $height . '" alt="' . $title . '" />';
|
506 |
-
}
|
507 |
}
|
508 |
$return .= '</div>';
|
509 |
}
|
510 |
|
511 |
-
// No
|
512 |
else {
|
513 |
$return = '<p class="su-error"><strong>Nivo slider:</strong> ' . __( 'no attached images, or only one attached image', 'shortcodes-ultimate' ) . '…</p>';
|
514 |
}
|
@@ -516,6 +474,103 @@
|
|
516 |
return $return;
|
517 |
}
|
518 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
519 |
/**
|
520 |
* Shortcode: permalink
|
521 |
*
|
@@ -671,135 +726,51 @@
|
|
671 |
*/
|
672 |
function su_members_shortcode( $atts, $content = null ) {
|
673 |
extract( shortcode_atts( array(
|
674 |
-
'style' => 1
|
|
|
675 |
), $atts ) );
|
676 |
|
|
|
677 |
if ( is_user_logged_in() && !is_null( $content ) && !is_feed() ) {
|
678 |
return do_shortcode( $content );
|
679 |
-
}
|
|
|
|
|
|
|
680 |
return '<div class="su-members su-members-style-' . $style . '"><span class="su-members-shell">' . __( 'This content is for members only.', 'shortcodes-ultimate' ) . ' <a href="' . wp_login_url( get_permalink( get_the_ID() ) ) . '">' . __( 'Please login', 'shortcodes-ultimate' ) . '</a>.' . '</span></div>';
|
681 |
}
|
682 |
}
|
683 |
|
684 |
/**
|
685 |
-
* Shortcode:
|
686 |
*
|
687 |
-
* @param array $atts Shortcode attributes
|
688 |
* @param string $content
|
689 |
* @return string Output html
|
690 |
*/
|
691 |
-
function
|
692 |
-
extract( shortcode_atts( array(
|
693 |
-
'url' => get_bloginfo_rss( 'rss2_url' ),
|
694 |
-
'limit' => 3
|
695 |
-
), $atts ) );
|
696 |
|
697 |
-
|
698 |
-
|
699 |
-
|
|
|
700 |
}
|
701 |
|
702 |
/**
|
703 |
-
* Shortcode:
|
704 |
*
|
705 |
* @param array $atts Shortcode attributes
|
706 |
* @param string $content
|
707 |
* @return string Output html
|
708 |
*/
|
709 |
-
function
|
710 |
extract( shortcode_atts( array(
|
711 |
-
'
|
712 |
-
'
|
713 |
-
'link' => false,
|
714 |
-
'items' => 3,
|
715 |
-
'margin' => 10,
|
716 |
-
'speed' => 400,
|
717 |
-
'bg' => '#eee',
|
718 |
-
'p' => false
|
719 |
), $atts ) );
|
720 |
|
721 |
-
|
722 |
-
$post_id = ( $p ) ? $p : $post->ID;
|
723 |
-
|
724 |
-
$args = array(
|
725 |
-
'post_type' => 'attachment',
|
726 |
-
'numberposts' => -1,
|
727 |
-
'order' => 'ASC',
|
728 |
-
'post_status' => null,
|
729 |
-
'post_parent' => $post_id
|
730 |
-
);
|
731 |
-
|
732 |
-
// Get attachments
|
733 |
-
$attachments = get_posts( $args );
|
734 |
-
|
735 |
-
// If has attachments
|
736 |
-
if ( count( $attachments ) > 1 ) {
|
737 |
-
|
738 |
-
$carousel_id = uniqid( 'su-jcarousel_' );
|
739 |
-
|
740 |
-
$width = $width - 80;
|
741 |
-
$height = $height - 30;
|
742 |
-
|
743 |
-
$item_width = round( ( $width - ( ( $items - 1 ) * $margin ) ) / $items );
|
744 |
-
|
745 |
-
$return = '
|
746 |
-
<script type="text/javascript">
|
747 |
-
jQuery(document).ready(function() {
|
748 |
-
jQuery("#' . $carousel_id . '").jcarousel({
|
749 |
-
auto: 2,
|
750 |
-
scroll: 1,
|
751 |
-
wrap: "last",
|
752 |
-
animation: ' . $speed . ',
|
753 |
-
initCallback: mycarousel_initCallback
|
754 |
-
});
|
755 |
-
});
|
756 |
-
</script>
|
757 |
-
';
|
758 |
-
|
759 |
-
$return .= '<div class="su-jcarousel" style="width:' . $width . 'px;height:' . $height . 'px;background-color:' . $bg . '"><div class="su-jcarousel-shell"><ul id="' . $carousel_id . '">';
|
760 |
-
|
761 |
-
foreach ( $attachments as $attachment ) {
|
762 |
-
|
763 |
-
$title = apply_filters( 'the_title', $attachment->post_title );
|
764 |
-
$image = wp_get_attachment_image_src( $attachment->ID, 'full', false );
|
765 |
-
|
766 |
-
$return .= '<li style="width:' . $item_width . 'px;height:' . $height . 'px;margin-right:' . $margin . 'px">';
|
767 |
-
|
768 |
-
// Link to file
|
769 |
-
if ( $link == 'file' ) {
|
770 |
-
$return .= '<a href="' . $image[0] . '" title="' . $title . '"><img src="' . su_plugin_url() . '/lib/timthumb.php?src=' . $image[0] . '&w=' . $item_width . '&h=' . $height . '&q=100&zc=1" width="' . $item_width . '" height="' . $height . '" alt="' . $title . '" /></a>';
|
771 |
-
}
|
772 |
-
|
773 |
-
// Link to attachment page
|
774 |
-
elseif ( $link == 'attachment' ) {
|
775 |
-
$return .= '<a href="' . get_permalink( $attachment->ID ) . '" title="' . $title . '"><img src="' . su_plugin_url() . '/lib/timthumb.php?src=' . $image[0] . '&w=' . $item_width . '&h=' . $height . '&q=100&zc=1" width="' . $item_width . '" height="' . $height . '" alt="' . $title . '" /></a>';
|
776 |
-
}
|
777 |
-
|
778 |
-
// Custom link
|
779 |
-
elseif ( $link == 'caption' ) {
|
780 |
-
if ( $attachment->post_excerpt ) {
|
781 |
-
$return .= '<a href="' . $attachment->post_excerpt . '" title="' . $title . '"><img src="' . su_plugin_url() . '/lib/timthumb.php?src=' . $image[0] . '&w=' . $item_width . '&h=' . $height . '&q=100&zc=1" width="' . $item_width . '" height="' . $height . '" alt="' . $title . '" /></a>';
|
782 |
-
} else {
|
783 |
-
$return .= '<img src="' . su_plugin_url() . '/lib/timthumb.php?src=' . $image[0] . '&w=' . $item_width . '&h=' . $height . '&q=100&zc=1" width="' . $item_width . '" height="' . $height . '" alt="' . $title . '" />';
|
784 |
-
}
|
785 |
-
}
|
786 |
-
|
787 |
-
// No link
|
788 |
-
else {
|
789 |
-
$return .= '<a><img src="' . su_plugin_url() . '/lib/timthumb.php?src=' . $image[0] . '&w=' . $item_width . '&h=' . $height . '&q=100&zc=1" width="' . $item_width . '" height="' . $height . '" alt="' . $title . '" /></a>';
|
790 |
-
}
|
791 |
-
|
792 |
-
$return .= '</li>';
|
793 |
-
}
|
794 |
-
$return .= '</ul></div></div>';
|
795 |
-
}
|
796 |
-
|
797 |
-
// No attachments
|
798 |
-
else {
|
799 |
-
$return = '<p class="su-error"><strong>jCarousel:</strong> ' . __( 'no attached images, or only one attached image', 'shortcodes-ultimate' ) . '…</p>';
|
800 |
-
}
|
801 |
|
802 |
-
return $
|
803 |
}
|
804 |
|
805 |
/**
|
9 |
*/
|
10 |
function su_heading_shortcode( $atts, $content = null ) {
|
11 |
extract( shortcode_atts( array(
|
12 |
+
'style' => 1
|
13 |
), $atts ) );
|
14 |
|
15 |
+
return '<div class="su-heading su-heading-style-' . $style . '"><div class="su-heading-shell">' . $content . '</div></div>';
|
16 |
}
|
17 |
|
18 |
/**
|
434 |
*/
|
435 |
function su_nivo_slider_shortcode( $atts, $content = null ) {
|
436 |
extract( shortcode_atts( array(
|
437 |
+
'source' => 'post',
|
438 |
+
'link' => 'image',
|
439 |
+
'size' => '500x300',
|
440 |
+
'limit' => 10,
|
441 |
'effect' => 'random',
|
442 |
'speed' => 600,
|
443 |
+
'delay' => 3000
|
|
|
444 |
), $atts ) );
|
445 |
|
446 |
+
// Get dimensions
|
447 |
+
$dimensions = explode( 'x', strtolower( $size ) );
|
448 |
+
$width = $dimensions[0];
|
449 |
+
$height = $dimensions[1];
|
|
|
|
|
|
|
|
|
|
|
|
|
450 |
|
451 |
+
// Define unique slider ID
|
452 |
+
$slider_id = uniqid( 'su-nivo-slider_' );
|
453 |
|
454 |
+
// Get slides
|
455 |
+
$slides = su_build_gallery( $source, $link, $size, $limit );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
456 |
|
457 |
+
// If slides exists
|
458 |
+
if ( count( $slides ) > 1 ) {
|
459 |
|
460 |
+
$return = '<script type="text/javascript">jQuery(window).load(function(){jQuery("#' . $slider_id . '").nivoSlider({effect:"' . $effect . '",animSpeed:' . $speed . ',pauseTime:' . $delay . '});});</script>';
|
461 |
+
|
462 |
+
$return .= '<div id="' . $slider_id . '" class="su-nivo-slider" style="width:' . $width . 'px;height:' . $height . 'px">';
|
463 |
+
foreach ( $slides as $slide ) {
|
464 |
+
$return .= '<a href="' . $slide['link'] . '" title="' . $slide['name'] . '"><img src="' . $slide['thumbnail'] . '" alt="' . $slide['name'] . '" width=" ' . $width . ' " height="' . $height . '" /></a>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
465 |
}
|
466 |
$return .= '</div>';
|
467 |
}
|
468 |
|
469 |
+
// No slides
|
470 |
else {
|
471 |
$return = '<p class="su-error"><strong>Nivo slider:</strong> ' . __( 'no attached images, or only one attached image', 'shortcodes-ultimate' ) . '…</p>';
|
472 |
}
|
474 |
return $return;
|
475 |
}
|
476 |
|
477 |
+
/**
|
478 |
+
* Shortcode: jcarousel
|
479 |
+
*
|
480 |
+
* @param array $atts Shortcode attributes
|
481 |
+
* @param string $content
|
482 |
+
* @return string Output html
|
483 |
+
*/
|
484 |
+
function su_jcarousel_shortcode( $atts, $content = null ) {
|
485 |
+
extract( shortcode_atts( array(
|
486 |
+
'source' => 'post',
|
487 |
+
'link' => 'image',
|
488 |
+
'size' => '150x150',
|
489 |
+
'limit' => 10,
|
490 |
+
'items' => 3,
|
491 |
+
'speed' => 400,
|
492 |
+
'margin' => 10
|
493 |
+
), $atts ) );
|
494 |
+
|
495 |
+
// Get dimensions
|
496 |
+
$dimensions = explode( 'x', strtolower( $size ) );
|
497 |
+
$width = $dimensions[0];
|
498 |
+
$height = $dimensions[1];
|
499 |
+
|
500 |
+
// Calculate width
|
501 |
+
$container_width = round( ( ( $width + $margin ) * $items ) - $margin );
|
502 |
+
|
503 |
+
// Define unique carousel ID
|
504 |
+
$carousel_id = uniqid( 'su-jcarousel_' );
|
505 |
+
|
506 |
+
// Get slides
|
507 |
+
$slides = su_build_gallery( $source, $link, $size, $limit );
|
508 |
+
|
509 |
+
// If has attachments
|
510 |
+
if ( count( $slides ) > 1 ) {
|
511 |
+
|
512 |
+
$return = '<script type="text/javascript">jQuery(document).ready(function(){jQuery("#' . $carousel_id . '").jcarousel({auto:2,scroll:1,wrap:"last",animation:' . $speed . ',initCallback:mycarousel_initCallback});});</script>';
|
513 |
+
|
514 |
+
$return .= '<div class="su-jcarousel" style="width:' . $container_width . 'px;height:' . $height . 'px"><ul id="' . $carousel_id . '">';
|
515 |
+
|
516 |
+
foreach ( $slides as $slide ) {
|
517 |
+
$return .= '<li style="width:' . $width . 'px;height:' . $height . 'px;margin-right:' . $margin . 'px"><a href="' . $slide['link'] . '" title="' . $slide['name'] . '"><img src="' . $slide['thumbnail'] . '" alt="' . $slide['name'] . '" width=" ' . $width . ' " height="' . $height . '" /></a></li>';
|
518 |
+
}
|
519 |
+
$return .= '</ul></div>';
|
520 |
+
}
|
521 |
+
|
522 |
+
// No attachments
|
523 |
+
else {
|
524 |
+
$return = '<p class="su-error"><strong>jCarousel:</strong> ' . __( 'no attached images, or only one attached image', 'shortcodes-ultimate' ) . '…</p>';
|
525 |
+
}
|
526 |
+
|
527 |
+
return $return;
|
528 |
+
}
|
529 |
+
|
530 |
+
/**
|
531 |
+
* Shortcode: custom_gallery
|
532 |
+
*
|
533 |
+
* @param array $atts Shortcode attributes
|
534 |
+
* @param string $content
|
535 |
+
* @return string Output html
|
536 |
+
*/
|
537 |
+
function su_custom_gallery_shortcode( $atts, $content = null ) {
|
538 |
+
extract( shortcode_atts( array(
|
539 |
+
'source' => 'post',
|
540 |
+
'link' => 'image',
|
541 |
+
'size' => '200x200',
|
542 |
+
'limit' => 10
|
543 |
+
), $atts ) );
|
544 |
+
|
545 |
+
// Get dimensions
|
546 |
+
$size = explode( 'x', strtolower( $size ) );
|
547 |
+
$width = $size[0];
|
548 |
+
$height = $size[1];
|
549 |
+
|
550 |
+
// Define unique gallery ID
|
551 |
+
$gallery_id = uniqid( 'su-custom-gallery_' );
|
552 |
+
|
553 |
+
// Get slides
|
554 |
+
$slides = su_build_gallery( $source, $link, $size, $limit );
|
555 |
+
|
556 |
+
// If slides exists
|
557 |
+
if ( count( $slides ) > 1 ) {
|
558 |
+
|
559 |
+
$return = '<div id="' . $gallery_id . '" class="su-custom-gallery">';
|
560 |
+
foreach ( $slides as $slide ) {
|
561 |
+
$return .= '<a href="' . $slide['link'] . '" title="' . $slide['name'] . '"><img src="' . $slide['thumbnail'] . '" alt="' . $slide['name'] . '" width=" ' . $width . ' " height="' . $height . '" /></a>';
|
562 |
+
}
|
563 |
+
$return .= '<div class="su-spacer"></div></div>';
|
564 |
+
}
|
565 |
+
|
566 |
+
// No slides
|
567 |
+
else {
|
568 |
+
$return = '<p class="su-error"><strong>Custom gallery:</strong> ' . __( 'no attached images, or only one attached image', 'shortcodes-ultimate' ) . '…</p>';
|
569 |
+
}
|
570 |
+
|
571 |
+
return $return;
|
572 |
+
}
|
573 |
+
|
574 |
/**
|
575 |
* Shortcode: permalink
|
576 |
*
|
726 |
*/
|
727 |
function su_members_shortcode( $atts, $content = null ) {
|
728 |
extract( shortcode_atts( array(
|
729 |
+
'style' => 1,
|
730 |
+
'login' => 1
|
731 |
), $atts ) );
|
732 |
|
733 |
+
// Logged user
|
734 |
if ( is_user_logged_in() && !is_null( $content ) && !is_feed() ) {
|
735 |
return do_shortcode( $content );
|
736 |
+
}
|
737 |
+
|
738 |
+
// Not logged user, show login message
|
739 |
+
elseif ( $login == 1 ) {
|
740 |
return '<div class="su-members su-members-style-' . $style . '"><span class="su-members-shell">' . __( 'This content is for members only.', 'shortcodes-ultimate' ) . ' <a href="' . wp_login_url( get_permalink( get_the_ID() ) ) . '">' . __( 'Please login', 'shortcodes-ultimate' ) . '</a>.' . '</span></div>';
|
741 |
}
|
742 |
}
|
743 |
|
744 |
/**
|
745 |
+
* Shortcode: guests
|
746 |
*
|
|
|
747 |
* @param string $content
|
748 |
* @return string Output html
|
749 |
*/
|
750 |
+
function su_guests_shortcode( $atts = null, $content = null ) {
|
|
|
|
|
|
|
|
|
751 |
|
752 |
+
// Logged user
|
753 |
+
if ( !is_user_logged_in() && !is_null( $content ) ) {
|
754 |
+
return '<div class="su-guests">' . do_shortcode( $content ) . '</div>';
|
755 |
+
}
|
756 |
}
|
757 |
|
758 |
/**
|
759 |
+
* Shortcode: feed
|
760 |
*
|
761 |
* @param array $atts Shortcode attributes
|
762 |
* @param string $content
|
763 |
* @return string Output html
|
764 |
*/
|
765 |
+
function su_feed_shortcode( $atts, $content = null ) {
|
766 |
extract( shortcode_atts( array(
|
767 |
+
'url' => get_bloginfo_rss( 'rss2_url' ),
|
768 |
+
'limit' => 3
|
|
|
|
|
|
|
|
|
|
|
|
|
769 |
), $atts ) );
|
770 |
|
771 |
+
include_once( ABSPATH . WPINC . '/rss.php' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
772 |
|
773 |
+
return '<div class="su-feed">' . wp_rss( $url, $limit ) . '</div>';
|
774 |
}
|
775 |
|
776 |
/**
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: gn_themes
|
|
3 |
Donate link: http://ilovecode.ru/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.
|
7 |
-
Stable tag: 3.
|
8 |
|
9 |
Provides support for multiple useful shortcodes
|
10 |
|
@@ -18,18 +18,25 @@ With this plugin you can easily create buttons, boxes, different sliders and muc
|
|
18 |
* Handy shortcodes manager
|
19 |
* Custom CSS editor with syntax highlight
|
20 |
* Frequently updates
|
|
|
21 |
|
22 |
= New in this version =
|
23 |
-
*
|
|
|
|
|
|
|
|
|
24 |
|
25 |
= Got a bug? =
|
26 |
* Forum - http://wordpress.org/tags/shortcodes-ultimate?forum_id=10
|
27 |
* Author blog - http://ilovecode.ru/?p=122
|
28 |
* Twitter: http://twitter.com/gn_themes
|
29 |
|
30 |
-
=
|
31 |
* Fr - Aurélien DENIS [ http://wpchannel.com/ ]
|
32 |
* Sp - Esteban Truelsegaard [ http://www.netmdp.com/ ]
|
|
|
|
|
33 |
|
34 |
Have a translation? Contact me - ano.vladimir@gmail.com
|
35 |
|
@@ -66,12 +73,38 @@ This mode adds a prefix to all plugin shortcodes
|
|
66 |
* [tab] => [gn_tab]
|
67 |
* etc.
|
68 |
|
69 |
-
=
|
70 |
Search it near Upload/Insert buttons. See screenshots.
|
71 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
|
73 |
== Changelog ==
|
74 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
= 3.0 =
|
76 |
* Button for WYSIWIG editor (search it near Upload/Insert buttons)
|
77 |
* New shortcode: private (private notes for editors)
|
3 |
Donate link: http://ilovecode.ru/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.3.0
|
8 |
|
9 |
Provides support for multiple useful shortcodes
|
10 |
|
18 |
* Handy shortcodes manager
|
19 |
* Custom CSS editor with syntax highlight
|
20 |
* Frequently updates
|
21 |
+
* International
|
22 |
|
23 |
= New in this version =
|
24 |
+
* Changed: [nivo_slider] and [jcarousel] (see docs in console)
|
25 |
+
* New shortcode: [custom_gallery]
|
26 |
+
* New parameter: [members login="0|1"]
|
27 |
+
* New shortcode: guests
|
28 |
+
* German translation
|
29 |
|
30 |
= Got a bug? =
|
31 |
* Forum - http://wordpress.org/tags/shortcodes-ultimate?forum_id=10
|
32 |
* Author blog - http://ilovecode.ru/?p=122
|
33 |
* Twitter: http://twitter.com/gn_themes
|
34 |
|
35 |
+
= Translations =
|
36 |
* Fr - Aurélien DENIS [ http://wpchannel.com/ ]
|
37 |
* Sp - Esteban Truelsegaard [ http://www.netmdp.com/ ]
|
38 |
+
* De - Matthias Wittmann [ http://net-graphix.de/ ]
|
39 |
+
* Ru - Vladimir Anokhin [ http://ilovecode.ru/ ]
|
40 |
|
41 |
Have a translation? Contact me - ano.vladimir@gmail.com
|
42 |
|
73 |
* [tab] => [gn_tab]
|
74 |
* etc.
|
75 |
|
76 |
+
= Is there WYSIWYG button? =
|
77 |
Search it near Upload/Insert buttons. See screenshots.
|
78 |
|
79 |
+
= How to use: nivo_slider, jcarousel, custom_gallery =
|
80 |
+
With these shortcodes you can create different galleries from attached to post images, or from category posts.
|
81 |
+
|
82 |
+
Way 1: gallery from attachments
|
83 |
+
* Create new post
|
84 |
+
* Upload images
|
85 |
+
* Use next shortcode on pages, posts or even widgets
|
86 |
+
`[nivo_slider source="post=XX" link="image"]`
|
87 |
+
XX - ID of the post with uploaded images
|
88 |
+
|
89 |
+
Way 2: gallery from category
|
90 |
+
* Create some posts in some category
|
91 |
+
* Set the thumbnails of posts
|
92 |
+
* Use next shortcode on pages, posts or even widgets
|
93 |
+
`[nivo_slider source="cat=XX" link="image"]`
|
94 |
+
XX - ID of the category with new posts
|
95 |
+
|
96 |
+
Also, you can use [jcarousel] and [custom_gallery] according these principles.
|
97 |
+
|
98 |
|
99 |
== Changelog ==
|
100 |
|
101 |
+
= 3.3 =
|
102 |
+
* Changed: [nivo_slider] and [jcarousel] (see docs in console)
|
103 |
+
* New shortcode: [custom_gallery]
|
104 |
+
* New parameter: [members login="0|1"]
|
105 |
+
* New shortcode: guests
|
106 |
+
* German translation
|
107 |
+
|
108 |
= 3.0 =
|
109 |
* Button for WYSIWIG editor (search it near Upload/Insert buttons)
|
110 |
* New shortcode: private (private notes for editors)
|
shortcodes-ultimate.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Shortcodes Ultimate
|
4 |
Plugin URI: http://ilovecode.ru/?p=122
|
5 |
-
Version: 3.
|
6 |
Author: Vladimir Anokhin
|
7 |
Author URI: http://ilovecode.ru/
|
8 |
Description: Provides support for many easy to use shortcodes
|
@@ -26,6 +26,7 @@
|
|
26 |
require_once( dirname( __FILE__ ) . '/lib/csv.php' );
|
27 |
require_once( dirname( __FILE__ ) . '/lib/media.php' );
|
28 |
require_once( dirname( __FILE__ ) . '/lib/twitter.php' );
|
|
|
29 |
require_once( dirname( __FILE__ ) . '/lib/shortcodes.php' );
|
30 |
|
31 |
// Enable shortcodes in text widgets
|
@@ -58,7 +59,7 @@
|
|
58 |
// Register scripts
|
59 |
wp_register_script( 'shortcodes-ultimate', su_plugin_url() . '/js/init.js', false, su_get_version(), false );
|
60 |
wp_register_script( 'shortcodes-ultimate-admin', su_plugin_url() . '/js/admin.js', false, su_get_version(), false );
|
61 |
-
wp_register_script( 'shortcodes-ultimate-generator', su_plugin_url() . '/js/generator.js',
|
62 |
wp_register_script( 'nivo-slider', su_plugin_url() . '/js/nivoslider.js', false, su_get_version(), false );
|
63 |
wp_register_script( 'jcarousel', su_plugin_url() . '/js/jcarousel.js', false, su_get_version(), false );
|
64 |
wp_register_script( 'codemirror', su_plugin_url() . '/js/codemirror.js', false, su_get_version(), false );
|
@@ -226,7 +227,7 @@
|
|
226 |
*/
|
227 |
function su_print_custom_css() {
|
228 |
if ( get_option( 'su_custom_css' ) ) {
|
229 |
-
echo "\n<!-- Shortcodes Ultimate custom CSS - begin -->\n<style type='text/css'>\n" . get_option(
|
230 |
}
|
231 |
}
|
232 |
|
2 |
/*
|
3 |
Plugin Name: Shortcodes Ultimate
|
4 |
Plugin URI: http://ilovecode.ru/?p=122
|
5 |
+
Version: 3.3.0
|
6 |
Author: Vladimir Anokhin
|
7 |
Author URI: http://ilovecode.ru/
|
8 |
Description: Provides support for many easy to use shortcodes
|
26 |
require_once( dirname( __FILE__ ) . '/lib/csv.php' );
|
27 |
require_once( dirname( __FILE__ ) . '/lib/media.php' );
|
28 |
require_once( dirname( __FILE__ ) . '/lib/twitter.php' );
|
29 |
+
require_once( dirname( __FILE__ ) . '/lib/images.php' );
|
30 |
require_once( dirname( __FILE__ ) . '/lib/shortcodes.php' );
|
31 |
|
32 |
// Enable shortcodes in text widgets
|
59 |
// Register scripts
|
60 |
wp_register_script( 'shortcodes-ultimate', su_plugin_url() . '/js/init.js', false, su_get_version(), false );
|
61 |
wp_register_script( 'shortcodes-ultimate-admin', su_plugin_url() . '/js/admin.js', false, su_get_version(), false );
|
62 |
+
wp_register_script( 'shortcodes-ultimate-generator', su_plugin_url() . '/js/generator.js', array( 'jquery' ), su_get_version(), false );
|
63 |
wp_register_script( 'nivo-slider', su_plugin_url() . '/js/nivoslider.js', false, su_get_version(), false );
|
64 |
wp_register_script( 'jcarousel', su_plugin_url() . '/js/jcarousel.js', false, su_get_version(), false );
|
65 |
wp_register_script( 'codemirror', su_plugin_url() . '/js/codemirror.js', false, su_get_version(), false );
|
227 |
*/
|
228 |
function su_print_custom_css() {
|
229 |
if ( get_option( 'su_custom_css' ) ) {
|
230 |
+
echo "\n<!-- Shortcodes Ultimate custom CSS - begin -->\n<style type='text/css'>\n" . str_replace( '%theme%', get_template_directory_uri(), get_option( 'su_custom_css' ) ) . "\n</style>\n<!-- Shortcodes Ultimate custom CSS - end -->\n\n";
|
231 |
}
|
232 |
}
|
233 |
|