Version Description
- Small fixes
- New text-shadow picker for [button]
- Anchor navigation for spoilers and tabs - forum topic
Download this release
Release Info
Developer | gn_themes |
Plugin | Shortcodes Ultimate |
Version | 4.3.2 |
Comparing to | |
See all releases |
Code changes from version 4.3.1 to 4.3.2
- assets/css/box-shortcodes.css +5 -46
- assets/css/generator.css +58 -1
- assets/js/generator.js +27 -1
- assets/js/other-shortcodes.js +37 -1
- inc/core/class.assets.php +2 -2
- inc/core/class.data.php +31 -27
- inc/core/class.generator-fields.php +92 -0
- inc/core/class.generator.php +14 -41
- inc/core/class.shortcodes.php +39 -38
- languages/su-ru_RU.mo +0 -0
- languages/su-ru_RU.po +848 -821
- languages/su.pot +687 -767
- readme.txt +5 -0
- shortcodes-ultimate.php +4 -1
assets/css/box-shortcodes.css
CHANGED
@@ -74,8 +74,9 @@
|
|
74 |
/* Spoiler
|
75 |
---------------------------------------------------------------*/
|
76 |
|
77 |
-
.su-spoiler {}
|
78 |
.su-spoiler .su-spoiler:last-child { margin-bottom: 0; }
|
|
|
79 |
.su-spoiler-title {
|
80 |
position: relative;
|
81 |
cursor: pointer;
|
@@ -96,7 +97,7 @@
|
|
96 |
border: none;
|
97 |
opacity: 0;
|
98 |
}
|
99 |
-
.su-spoiler-style-default {
|
100 |
.su-spoiler-style-default > .su-spoiler-title {
|
101 |
min-height: 16px;
|
102 |
padding: 4px 0 4px 24px;
|
@@ -120,8 +121,7 @@
|
|
120 |
background: #fff;
|
121 |
color: #333;
|
122 |
}
|
123 |
-
.su-spoiler-style-fancy
|
124 |
-
margin-bottom: 1.5em;
|
125 |
background: #fff;
|
126 |
border: 1px solid #ccc;
|
127 |
-webkit-border-radius: 10px;
|
@@ -160,8 +160,7 @@
|
|
160 |
background: #fff;
|
161 |
color: #333;
|
162 |
}
|
163 |
-
.su-spoiler-style-simple
|
164 |
-
margin-bottom: 1.5em;
|
165 |
border-top: 1px solid #ccc;
|
166 |
border-bottom: 1px solid #ccc;
|
167 |
}
|
@@ -180,46 +179,6 @@
|
|
180 |
background: #fff;
|
181 |
color: #333;
|
182 |
}
|
183 |
-
/*.su-spoiler-style-fancy {
|
184 |
-
margin-bottom: 1.5em;
|
185 |
-
background: #fff;
|
186 |
-
border: 1px solid #ccc;
|
187 |
-
-webkit-border-radius: 10px;
|
188 |
-
-moz-border-radius: 10px;
|
189 |
-
border-radius: 10px;
|
190 |
-
}
|
191 |
-
.su-spoiler-style-fancy > .su-spoiler-title {
|
192 |
-
min-height: 20px;
|
193 |
-
padding: 7px 7px 7px 36px;
|
194 |
-
border-bottom: 1px solid #ccc;
|
195 |
-
-webkit-border-radius: 10px;
|
196 |
-
-moz-border-radius: 10px;
|
197 |
-
border-radius: 10px;
|
198 |
-
background: #f0f0f0;
|
199 |
-
color: #333;
|
200 |
-
font-weight: bold;
|
201 |
-
font-size: 0.9em;
|
202 |
-
line-height: 20px;
|
203 |
-
}
|
204 |
-
.su-spoiler-style-fancy.su-spoiler-closed > .su-spoiler-title { border: none; }
|
205 |
-
.su-spoiler-style-fancy > .su-spoiler-title > .su-spoiler-icon {
|
206 |
-
position: absolute;
|
207 |
-
top: 10px;
|
208 |
-
left: 10px;
|
209 |
-
display: block;
|
210 |
-
width: 16px;
|
211 |
-
height: 16px;
|
212 |
-
background: 0 -16px url('../images/spoiler.png') no-repeat;
|
213 |
-
}
|
214 |
-
.su-spoiler-style-fancy.su-spoiler-closed > .su-spoiler-title > .su-spoiler-icon { background: 0 0 url('../images/spoiler.png') no-repeat; }
|
215 |
-
.su-spoiler-style-fancy > .su-spoiler-content {
|
216 |
-
padding: 1em;
|
217 |
-
-webkit-border-radius: 10px;
|
218 |
-
-moz-border-radius: 10px;
|
219 |
-
border-radius: 10px;
|
220 |
-
background: #fff;
|
221 |
-
color: #333;
|
222 |
-
}*/
|
223 |
|
224 |
/* Quote
|
225 |
---------------------------------------------------------------*/
|
74 |
/* Spoiler
|
75 |
---------------------------------------------------------------*/
|
76 |
|
77 |
+
.su-spoiler { margin-bottom: 1.5em; }
|
78 |
.su-spoiler .su-spoiler:last-child { margin-bottom: 0; }
|
79 |
+
.su-accordion .su-spoiler { margin-bottom: 0.2em; }
|
80 |
.su-spoiler-title {
|
81 |
position: relative;
|
82 |
cursor: pointer;
|
97 |
border: none;
|
98 |
opacity: 0;
|
99 |
}
|
100 |
+
.su-spoiler-style-default {}
|
101 |
.su-spoiler-style-default > .su-spoiler-title {
|
102 |
min-height: 16px;
|
103 |
padding: 4px 0 4px 24px;
|
121 |
background: #fff;
|
122 |
color: #333;
|
123 |
}
|
124 |
+
.su-spoiler-style-fancy {
|
|
|
125 |
background: #fff;
|
126 |
border: 1px solid #ccc;
|
127 |
-webkit-border-radius: 10px;
|
160 |
background: #fff;
|
161 |
color: #333;
|
162 |
}
|
163 |
+
.su-spoiler-style-simple {
|
|
|
164 |
border-top: 1px solid #ccc;
|
165 |
border-bottom: 1px solid #ccc;
|
166 |
}
|
179 |
background: #fff;
|
180 |
color: #333;
|
181 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
|
183 |
/* Quote
|
184 |
---------------------------------------------------------------*/
|
assets/css/generator.css
CHANGED
@@ -197,6 +197,23 @@
|
|
197 |
}
|
198 |
.su-generator-attr-desc b { color: #999; }
|
199 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
/* Clickable values in attribute description */
|
201 |
.su-generator-attr-desc b.su-generator-set-value {
|
202 |
border-bottom: 1px dotted #999;
|
@@ -274,6 +291,41 @@
|
|
274 |
font-size: 24px;
|
275 |
}
|
276 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
/* Switches */
|
278 |
.su-generator-switch {
|
279 |
display: inline-block;
|
@@ -302,10 +354,12 @@
|
|
302 |
/* Color pickers */
|
303 |
.su-generator-select-color {
|
304 |
position: relative;
|
|
|
|
|
305 |
}
|
306 |
.su-generator-select-color-wheel {
|
307 |
position: absolute;
|
308 |
-
top:
|
309 |
left: 0;
|
310 |
z-index: 9999;
|
311 |
display: none;
|
@@ -314,6 +368,9 @@
|
|
314 |
-webkit-box-shadow: 0 2px 5px #ccc;
|
315 |
-moz-box-shadow: 0 2px 5px #ccc;
|
316 |
box-shadow: 0 2px 5px #ccc;
|
|
|
|
|
|
|
317 |
}
|
318 |
|
319 |
/* Preview box */
|
197 |
}
|
198 |
.su-generator-attr-desc b { color: #999; }
|
199 |
|
200 |
+
/* Small text after text field */
|
201 |
+
.su-generator-px-units {
|
202 |
+
position: relative;
|
203 |
+
margin-right: 15px;
|
204 |
+
}
|
205 |
+
.su-generator-px-units:before {
|
206 |
+
position: absolute;
|
207 |
+
right: -18px;
|
208 |
+
bottom: 3px;
|
209 |
+
display: block;
|
210 |
+
width: 15px;
|
211 |
+
text-align: left;
|
212 |
+
color: #999;
|
213 |
+
content: 'px';
|
214 |
+
font-size: 0.9em;
|
215 |
+
}
|
216 |
+
|
217 |
/* Clickable values in attribute description */
|
218 |
.su-generator-attr-desc b.su-generator-set-value {
|
219 |
border-bottom: 1px dotted #999;
|
291 |
font-size: 24px;
|
292 |
}
|
293 |
|
294 |
+
/* Shadow picker */
|
295 |
+
.su-generator-shadow-picker {}
|
296 |
+
.su-generator-shadow-picker-field {
|
297 |
+
position: relative;
|
298 |
+
display: inline-block;
|
299 |
+
width: 22%;
|
300 |
+
padding-right: 3%;
|
301 |
+
}
|
302 |
+
.su-generator-shadow-picker-field small {
|
303 |
+
display: block;
|
304 |
+
color: #ccc;
|
305 |
+
}
|
306 |
+
.su-generator-shadow-picker-field input { text-align: right; }
|
307 |
+
.su-generator-shadow-picker-field.su-generator-shadow-picker-color {
|
308 |
+
width: 25%;
|
309 |
+
padding-right: 0;
|
310 |
+
}
|
311 |
+
.su-generator-shadow-picker-field.su-generator-shadow-picker-color input { text-align: left; }
|
312 |
+
.su-generator-shadow-picker-color { position: relative; }
|
313 |
+
.su-generator-shadow-picker-color-wheel {
|
314 |
+
position: absolute;
|
315 |
+
top: 100%;
|
316 |
+
right: 0;
|
317 |
+
z-index: 9999;
|
318 |
+
display: none;
|
319 |
+
border: 1px solid #aaa;
|
320 |
+
background: #fff;
|
321 |
+
-webkit-box-shadow: 0 2px 5px #ccc;
|
322 |
+
-moz-box-shadow: 0 2px 5px #ccc;
|
323 |
+
box-shadow: 0 2px 5px #ccc;
|
324 |
+
-webkit-border-radius: 50%;
|
325 |
+
-moz-border-radius: 50%;
|
326 |
+
border-radius: 50%;
|
327 |
+
}
|
328 |
+
|
329 |
/* Switches */
|
330 |
.su-generator-switch {
|
331 |
display: inline-block;
|
354 |
/* Color pickers */
|
355 |
.su-generator-select-color {
|
356 |
position: relative;
|
357 |
+
display: inline-block;
|
358 |
+
width: 100%;
|
359 |
}
|
360 |
.su-generator-select-color-wheel {
|
361 |
position: absolute;
|
362 |
+
top: 100%;
|
363 |
left: 0;
|
364 |
z-index: 9999;
|
365 |
display: none;
|
368 |
-webkit-box-shadow: 0 2px 5px #ccc;
|
369 |
-moz-box-shadow: 0 2px 5px #ccc;
|
370 |
box-shadow: 0 2px 5px #ccc;
|
371 |
+
-webkit-border-radius: 50%;
|
372 |
+
-moz-border-radius: 50%;
|
373 |
+
border-radius: 50%;
|
374 |
}
|
375 |
|
376 |
/* Preview box */
|
assets/js/generator.js
CHANGED
@@ -353,8 +353,34 @@ jQuery(document).ready(function ($) {
|
|
353 |
}
|
354 |
});
|
355 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
356 |
// Remove skip class when setting is changed
|
357 |
-
$settings.find('
|
358 |
var $cnt = $(this).parents('.su-generator-attr-container'),
|
359 |
_default = $cnt.data('default'),
|
360 |
val = $(this).val();
|
353 |
}
|
354 |
});
|
355 |
});
|
356 |
+
// Init shadow pickers
|
357 |
+
$('.su-generator-shadow-picker').each(function (index) {
|
358 |
+
var $picker = $(this),
|
359 |
+
$fields = $picker.find('.su-generator-shadow-picker-field input'),
|
360 |
+
$hoff = $picker.find('.su-generator-sp-hoff'),
|
361 |
+
$voff = $picker.find('.su-generator-sp-voff'),
|
362 |
+
$blur = $picker.find('.su-generator-sp-blur'),
|
363 |
+
$color = {
|
364 |
+
cnt: $picker.find('.su-generator-shadow-picker-color'),
|
365 |
+
value: $picker.find('.su-generator-shadow-picker-color-value'),
|
366 |
+
wheel: $picker.find('.su-generator-shadow-picker-color-wheel')
|
367 |
+
},
|
368 |
+
$val = $picker.find('.su-generator-attr');
|
369 |
+
// Init color picker
|
370 |
+
$color.wheel.farbtastic($color.value);
|
371 |
+
$color.value.focus(function () {
|
372 |
+
$color.wheel.show();
|
373 |
+
});
|
374 |
+
$color.value.blur(function () {
|
375 |
+
$color.wheel.hide();
|
376 |
+
});
|
377 |
+
// Handle text fields
|
378 |
+
$fields.on('change blur keyup', function () {
|
379 |
+
$val.val($hoff.val() + 'px ' + $voff.val() + 'px ' + $blur.val() + 'px ' + $color.value.val()).trigger('change');
|
380 |
+
});
|
381 |
+
});
|
382 |
// Remove skip class when setting is changed
|
383 |
+
$settings.find('.su-generator-attr').on('change keyup blur', function () {
|
384 |
var $cnt = $(this).parents('.su-generator-attr-container'),
|
385 |
_default = $cnt.data('default'),
|
386 |
val = $(this).val();
|
assets/js/other-shortcodes.js
CHANGED
@@ -45,6 +45,9 @@ jQuery(document).ready(function ($) {
|
|
45 |
tabs_height();
|
46 |
});
|
47 |
|
|
|
|
|
|
|
48 |
// Lightbox
|
49 |
$('.su-lightbox').each(function () {
|
50 |
$(this).on('click', function (e) {
|
@@ -120,9 +123,42 @@ jQuery(document).ready(function ($) {
|
|
120 |
var $tabs = $(this),
|
121 |
$panes = $(this).children('.su-tabs-panes'),
|
122 |
height = 0;
|
123 |
-
$panes.css('height', '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
});
|
125 |
}
|
126 |
|
|
|
|
|
127 |
$('body').addClass('su-other-shortcodes-loaded');
|
128 |
});
|
45 |
tabs_height();
|
46 |
});
|
47 |
|
48 |
+
// Activate anchor nav for tabs
|
49 |
+
anchor_nav();
|
50 |
+
|
51 |
// Lightbox
|
52 |
$('.su-lightbox').each(function () {
|
53 |
$(this).on('click', function (e) {
|
123 |
var $tabs = $(this),
|
124 |
$panes = $(this).children('.su-tabs-panes'),
|
125 |
height = 0;
|
126 |
+
$panes.css('min-height', '0').css('min-height', $tabs.height());
|
127 |
+
});
|
128 |
+
}
|
129 |
+
|
130 |
+
function anchor_nav() {
|
131 |
+
// Check hash
|
132 |
+
if (document.location.hash === '') return;
|
133 |
+
// Go through tabs
|
134 |
+
$('.su-tabs-nav span[data-anchor]').each(function () {
|
135 |
+
if ('#' + $(this).data('anchor') === document.location.hash) {
|
136 |
+
var $tabs = $(this).parents('.su-tabs'),
|
137 |
+
bar = ($('#wpadminbar').length > 0) ? 28 : 0;
|
138 |
+
// Activate tab
|
139 |
+
$(this).trigger('click');
|
140 |
+
// Scroll-in tabs container
|
141 |
+
window.setTimeout(function () {
|
142 |
+
$(window).scrollTop($tabs.offset().top - bar - 10);
|
143 |
+
}, 100);
|
144 |
+
}
|
145 |
+
});
|
146 |
+
// Go through spoilers
|
147 |
+
$('.su-spoiler[data-anchor]').each(function () {
|
148 |
+
if ('#' + $(this).data('anchor') === document.location.hash) {
|
149 |
+
var $spoiler = $(this),
|
150 |
+
bar = ($('#wpadminbar').length > 0) ? 28 : 0;
|
151 |
+
// Activate tab
|
152 |
+
if ($spoiler.hasClass('su-spoiler-closed')) $spoiler.find('.su-spoiler-title:first').trigger('click');
|
153 |
+
// Scroll-in tabs container
|
154 |
+
window.setTimeout(function () {
|
155 |
+
$(window).scrollTop($spoiler.offset().top - bar - 10);
|
156 |
+
}, 100);
|
157 |
+
}
|
158 |
});
|
159 |
}
|
160 |
|
161 |
+
if ('onhashchange' in window) $(window).on('hashchange', anchor_nav);
|
162 |
+
|
163 |
$('body').addClass('su-other-shortcodes-loaded');
|
164 |
});
|
inc/core/class.assets.php
CHANGED
@@ -96,7 +96,7 @@ class Shortcodes_Ultimate_Assets {
|
|
96 |
// Enqueue scripts
|
97 |
foreach ( $assets['js'] as $script ) wp_enqueue_script( $script );
|
98 |
// Hook to dequeue assets or add custom
|
99 |
-
do_action( 'su/assets/enqueue' );
|
100 |
}
|
101 |
|
102 |
/**
|
@@ -110,7 +110,7 @@ class Shortcodes_Ultimate_Assets {
|
|
110 |
// Enqueue scripts
|
111 |
wp_print_scripts( $assets['js'] );
|
112 |
// Hook
|
113 |
-
do_action( 'su/assets/print' );
|
114 |
}
|
115 |
|
116 |
/**
|
96 |
// Enqueue scripts
|
97 |
foreach ( $assets['js'] as $script ) wp_enqueue_script( $script );
|
98 |
// Hook to dequeue assets or add custom
|
99 |
+
do_action( 'su/assets/enqueue', $assets );
|
100 |
}
|
101 |
|
102 |
/**
|
110 |
// Enqueue scripts
|
111 |
wp_print_scripts( $assets['js'] );
|
112 |
// Hook
|
113 |
+
do_action( 'su/assets/print', $assets );
|
114 |
}
|
115 |
|
116 |
/**
|
inc/core/class.data.php
CHANGED
@@ -135,6 +135,11 @@ class Shortcodes_Ultimate_Data {
|
|
135 |
'name' => __( 'Disabled', 'su' ),
|
136 |
'desc' => __( 'Is this tab disabled', 'su' )
|
137 |
),
|
|
|
|
|
|
|
|
|
|
|
138 |
'class' => array(
|
139 |
'default' => '',
|
140 |
'name' => __( 'Class', 'su' ),
|
@@ -173,6 +178,11 @@ class Shortcodes_Ultimate_Data {
|
|
173 |
'name' => __( 'Style', 'su' ),
|
174 |
'desc' => __( 'Spoiler skin', 'su' )
|
175 |
),
|
|
|
|
|
|
|
|
|
|
|
176 |
'class' => array(
|
177 |
'default' => '',
|
178 |
'name' => __( 'Class', 'su' ),
|
@@ -405,9 +415,9 @@ class Shortcodes_Ultimate_Data {
|
|
405 |
'align' => array(
|
406 |
'type' => 'select',
|
407 |
'values' => array(
|
408 |
-
'left',
|
409 |
-
'center',
|
410 |
-
'right'
|
411 |
),
|
412 |
'default' => 'left',
|
413 |
'name' => __( 'Align', 'su' ),
|
@@ -564,8 +574,11 @@ class Shortcodes_Ultimate_Data {
|
|
564 |
'desc' => __( 'Button text color', 'su' )
|
565 |
),
|
566 |
'size' => array(
|
567 |
-
'type' => '
|
568 |
-
'
|
|
|
|
|
|
|
569 |
'name' => __( 'Size', 'su' ),
|
570 |
'desc' => __( 'Button size', 'su' )
|
571 |
),
|
@@ -581,7 +594,14 @@ class Shortcodes_Ultimate_Data {
|
|
581 |
),
|
582 |
'radius' => array(
|
583 |
'type' => 'select',
|
584 |
-
'values' => array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
585 |
'default' => 'auto',
|
586 |
'name' => __( 'Radius', 'su' ),
|
587 |
'desc' => __( 'Radius of button corners. Auto-radius calculation based on button size', 'su' )
|
@@ -598,27 +618,11 @@ class Shortcodes_Ultimate_Data {
|
|
598 |
'name' => __( 'Icon color', 'su' ),
|
599 |
'desc' => __( 'This color will be applied to the selected icon. Does not works with uploaded icons', 'su' )
|
600 |
),
|
601 |
-
'
|
602 |
-
'type' => '
|
603 |
-
'
|
604 |
-
|
605 |
-
|
606 |
-
),
|
607 |
-
'default' => 'dark',
|
608 |
-
'name' => __( 'Text shadow color', 'su' ), 'desc' => __( 'Color of button text shadow', 'su' )
|
609 |
-
),
|
610 |
-
'ts_pos' => array(
|
611 |
-
'type' => 'select',
|
612 |
-
'values' => array(
|
613 |
-
'none' => __( 'None', 'su' ),
|
614 |
-
'top' => __( 'Top', 'su' ),
|
615 |
-
'right' => __( 'Right', 'su' ),
|
616 |
-
'bottom' => __( 'Bottom', 'su' ),
|
617 |
-
'left' => __( 'Left', 'su' ),
|
618 |
-
'top-right' => __( 'Top right', 'su' ),
|
619 |
-
'top-left' => __( 'Top left', 'su' ), 'bottom-right' => __( 'Bottom right', 'su' ), 'bottom-left' => __( 'Bottom left', 'su' )
|
620 |
-
),
|
621 |
-
'default' => 'none', 'name' => __( 'Text shadow position', 'su' ), 'desc' => __( 'Position of button text shadow', 'su' )
|
622 |
),
|
623 |
'desc' => array(
|
624 |
'default' => '',
|
135 |
'name' => __( 'Disabled', 'su' ),
|
136 |
'desc' => __( 'Is this tab disabled', 'su' )
|
137 |
),
|
138 |
+
'anchor' => array(
|
139 |
+
'default' => '',
|
140 |
+
'name' => __( 'Anchor', 'su' ),
|
141 |
+
'desc' => __( 'You can use unique anchor for this tab to access it with hash in page url. For example: type here <b%value>Hello</b> and then use url like http://example.com/page-url#Hello. This tab will be activated and scrolled in', 'su' )
|
142 |
+
),
|
143 |
'class' => array(
|
144 |
'default' => '',
|
145 |
'name' => __( 'Class', 'su' ),
|
178 |
'name' => __( 'Style', 'su' ),
|
179 |
'desc' => __( 'Spoiler skin', 'su' )
|
180 |
),
|
181 |
+
'anchor' => array(
|
182 |
+
'default' => '',
|
183 |
+
'name' => __( 'Anchor', 'su' ),
|
184 |
+
'desc' => __( 'You can use unique anchor for this spoiler to access it with hash in page url. For example: type here <b%value>Hello</b> and then use url like http://example.com/page-url#Hello. This spoiler will be open and scrolled in', 'su' )
|
185 |
+
),
|
186 |
'class' => array(
|
187 |
'default' => '',
|
188 |
'name' => __( 'Class', 'su' ),
|
415 |
'align' => array(
|
416 |
'type' => 'select',
|
417 |
'values' => array(
|
418 |
+
'left' => __( 'Left', 'su' ),
|
419 |
+
'center' => __( 'Center', 'su' ),
|
420 |
+
'right' => __( 'Right', 'su' )
|
421 |
),
|
422 |
'default' => 'left',
|
423 |
'name' => __( 'Align', 'su' ),
|
574 |
'desc' => __( 'Button text color', 'su' )
|
575 |
),
|
576 |
'size' => array(
|
577 |
+
'type' => 'number',
|
578 |
+
'min' => 1,
|
579 |
+
'max' => 20,
|
580 |
+
'step' => 1,
|
581 |
+
'default' => 3,
|
582 |
'name' => __( 'Size', 'su' ),
|
583 |
'desc' => __( 'Button size', 'su' )
|
584 |
),
|
594 |
),
|
595 |
'radius' => array(
|
596 |
'type' => 'select',
|
597 |
+
'values' => array(
|
598 |
+
'auto' => __( 'Auto', 'su' ),
|
599 |
+
'round' => __( 'Round', 'su' ),
|
600 |
+
'0' => __( 'Square', 'su' ),
|
601 |
+
'5' => '5px',
|
602 |
+
'10' => '10px',
|
603 |
+
'20' => '20px'
|
604 |
+
),
|
605 |
'default' => 'auto',
|
606 |
'name' => __( 'Radius', 'su' ),
|
607 |
'desc' => __( 'Radius of button corners. Auto-radius calculation based on button size', 'su' )
|
618 |
'name' => __( 'Icon color', 'su' ),
|
619 |
'desc' => __( 'This color will be applied to the selected icon. Does not works with uploaded icons', 'su' )
|
620 |
),
|
621 |
+
'text_shadow' => array(
|
622 |
+
'type' => 'shadow',
|
623 |
+
'default' => 'none',
|
624 |
+
'name' => __( 'Text shadow', 'su' ),
|
625 |
+
'desc' => __( 'Button text shadow', 'su' )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
626 |
),
|
627 |
'desc' => array(
|
628 |
'default' => '',
|
inc/core/class.generator-fields.php
ADDED
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Shortcode Generator
|
4 |
+
*/
|
5 |
+
class Shortcodes_Ultimate_Generator_Fields {
|
6 |
+
|
7 |
+
/**
|
8 |
+
* Constructor
|
9 |
+
*/
|
10 |
+
function __construct() {}
|
11 |
+
|
12 |
+
public static function text( $id, $field ) {
|
13 |
+
$return = '<input type="text" name="' . $id . '" value="' . esc_attr( $field['default'] ) . '" id="su-generator-attr-' . $id . '" class="su-generator-attr" />';
|
14 |
+
return $return;
|
15 |
+
}
|
16 |
+
|
17 |
+
public static function select( $id, $field ) {
|
18 |
+
// Detect array type (numbers or strings with translations)
|
19 |
+
$is_numbers = is_numeric( implode( '', array_keys( $field['values'] ) ) ) ? true : false;
|
20 |
+
// Multiple selects
|
21 |
+
$multiple = ( isset( $field['multiple'] ) ) ? ' multiple' : '';
|
22 |
+
$return = '<select name="' . $id . '" id="su-generator-attr-' . $id . '" class="su-generator-attr"' . $multiple . '>';
|
23 |
+
// Create options
|
24 |
+
foreach ( $field['values'] as $option_value => $option_title ) {
|
25 |
+
// Values is indexed array, replace array keys by titles
|
26 |
+
if ( $is_numbers ) $option_value = $option_title;
|
27 |
+
// Is this option selected
|
28 |
+
$selected = ( $field['default'] === $option_value ) ? ' selected="selected"' : '';
|
29 |
+
// Create option
|
30 |
+
$return .= '<option value="' . $option_value . '"' . $selected . '>' . $option_title . '</option>';
|
31 |
+
}
|
32 |
+
$return .= '</select>';
|
33 |
+
return $return;
|
34 |
+
}
|
35 |
+
|
36 |
+
public static function swtch( $id, $field ) {
|
37 |
+
$return = '<span class="su-generator-switch su-generator-switch-' . $field['default'] . '"><span class="su-generator-yes">' . __( 'Yes', 'su' ) . '</span><span class="su-generator-no">' . __( 'No', 'su' ) . '</span></span><input type="hidden" name="' . $id . '" value="' . esc_attr( $field['default'] ) . '" id="su-generator-attr-' . $id . '" class="su-generator-attr" />';
|
38 |
+
return $return;
|
39 |
+
}
|
40 |
+
|
41 |
+
public static function upload( $id, $field ) {
|
42 |
+
$return = '<input type="text" name="' . $id . '" value="' . esc_attr( $field['default'] ) . '" id="su-generator-attr-' . $id . '" class="su-generator-attr su-generator-upload-value" /><div class="su-generator-field-actions"><a href="javascript:;" class="button su-generator-upload-button"><img src="' . admin_url( '/images/media-button.png' ) . '" alt="' . __( 'Media manager', 'su' ) . '" />' . __( 'Media manager', 'su' ) . '</a></div>';
|
43 |
+
return $return;
|
44 |
+
}
|
45 |
+
|
46 |
+
public static function icon( $id, $field ) {
|
47 |
+
$return = '<input type="text" name="' . $id . '" value="' . esc_attr( $field['default'] ) . '" id="su-generator-attr-' . $id . '" class="su-generator-attr su-generator-icon-picker-value" /><div class="su-generator-field-actions"><a href="javascript:;" class="button su-generator-upload-button su-generator-field-action"><img src="' . admin_url( '/images/media-button.png' ) . '" alt="' . __( 'Media manager', 'su' ) . '" />' . __( 'Media manager', 'su' ) . '</a> <a href="javascript:;" class="button su-generator-icon-picker-button su-generator-field-action"><img src="' . admin_url( '/images/media-button-other.gif' ) . '" alt="' . __( 'Icon picker', 'su' ) . '" />' . __( 'Icon picker', 'su' ) . '</a></div><div class="su-generator-icon-picker"></div>';
|
48 |
+
return $return;
|
49 |
+
}
|
50 |
+
|
51 |
+
public static function color( $id, $field ) {
|
52 |
+
$return = '<span class="su-generator-select-color"><span class="su-generator-select-color-wheel"></span><input type="text" name="' . $id . '" value="' . $field['default'] . '" id="su-generator-attr-' . $id . '" class="su-generator-attr su-generator-select-color-value" /></span>';
|
53 |
+
return $return;
|
54 |
+
}
|
55 |
+
|
56 |
+
public static function gallery( $id, $field ) {
|
57 |
+
$shult = shortcodes_ultimate();
|
58 |
+
// Prepare galleries list
|
59 |
+
$galleries = $shult->get_option( 'galleries' );
|
60 |
+
$created = ( is_array( $galleries ) && count( $galleries ) ) ? true : false;
|
61 |
+
$return = '<select name="' . $id . '" id="su-generator-attr-' . $id . '" class="su-generator-attr" data-loading="' . __( 'Please wait', 'su' ) . '">';
|
62 |
+
// Check that galleries is set
|
63 |
+
if ( $created ) // Create options
|
64 |
+
foreach ( $galleries as $g_id => $gallery ) {
|
65 |
+
// Is this option selected
|
66 |
+
$selected = ( $g_id == 0 ) ? ' selected="selected"' : '';
|
67 |
+
// Prepare title
|
68 |
+
$gallery['name'] = ( $gallery['name'] == '' ) ? __( 'Untitled gallery', 'su' ) : stripslashes( $gallery['name'] );
|
69 |
+
// Create option
|
70 |
+
$return .= '<option value="' . ( $g_id + 1 ) . '"' . $selected . '>' . $gallery['name'] . '</option>';
|
71 |
+
}
|
72 |
+
// Galleries not created
|
73 |
+
else
|
74 |
+
$return .= '<option value="0" selected>' . __( 'Galleries not found', 'su' ) . '</option>';
|
75 |
+
$return .= '</select><small class="description"><a href="' . $shult->admin_url . '#tab-3" target="_blank">' . __( 'Manage galleries', 'su' ) . '</a> <a href="javascript:;" class="su-generator-reload-galleries">' . __( 'Reload galleries', 'su' ) . '</a></small>';
|
76 |
+
return $return;
|
77 |
+
}
|
78 |
+
|
79 |
+
public static function number( $id, $field ) {
|
80 |
+
$return = '<input type="number" name="' . $id . '" value="' . esc_attr( $field['default'] ) . '" id="su-generator-attr-' . $id . '" min="' . $field['min'] . '" max="' . $field['max'] . '" step="' . $field['step'] . '" class="su-generator-attr" />';
|
81 |
+
return $return;
|
82 |
+
}
|
83 |
+
|
84 |
+
public static function shadow( $id, $field ) {
|
85 |
+
$defaults = ( $field['default'] === 'none' ) ? array ( '0', '0', '0', '#000000' ) : explode( ' ', str_replace( 'px', '', $field['default'] ) );
|
86 |
+
$return = '<div class="su-generator-shadow-picker"><span class="su-generator-shadow-picker-field"><input type="number" min="-1000" max="1000" step="1" value="' . $defaults[0] . '" class="su-generator-sp-hoff" /><small>' . __( 'Horizontal offset', 'su' ) . ' (px)</small></span><span class="su-generator-shadow-picker-field"><input type="number" min="-1000" max="1000" step="1" value="' . $defaults[1] . '" class="su-generator-sp-voff" /><small>' . __( 'Vertical offset', 'su' ) . ' (px)</small></span><span class="su-generator-shadow-picker-field"><input type="number" min="-1000" max="1000" step="1" value="' . $defaults[2] . '" class="su-generator-sp-blur" /><small>' . __( 'Blur', 'su' ) . ' (px)</small></span><span class="su-generator-shadow-picker-field su-generator-shadow-picker-color"><span class="su-generator-shadow-picker-color-wheel"></span><input type="text" value="' . $defaults[3] . '" class="su-generator-shadow-picker-color-value" /><small>' . __( 'Color', 'su' ) . '</small></span><input type="hidden" name="' . $id . '" value="' . esc_attr( $field['default'] ) . '" id="su-generator-attr-' . $id . '" class="su-generator-attr" /></div>';
|
87 |
+
return $return;
|
88 |
+
}
|
89 |
+
|
90 |
+
}
|
91 |
+
|
92 |
+
new Shortcodes_Ultimate_Generator_Fields;
|
inc/core/class.generator.php
CHANGED
@@ -72,7 +72,7 @@ class Shortcodes_Ultimate_Generator {
|
|
72 |
public static function popup() {
|
73 |
// Get cache
|
74 |
$output = get_transient( 'su/generator/popup' );
|
75 |
-
if ( $output ) echo $output;
|
76 |
// Cache not found
|
77 |
else {
|
78 |
ob_start();
|
@@ -128,7 +128,7 @@ class Shortcodes_Ultimate_Generator {
|
|
128 |
if ( empty( $_REQUEST['shortcode'] ) ) wp_die( __( 'Shortcode not specified', 'su' ) );
|
129 |
// Get cache
|
130 |
$output = get_transient( 'su/generator/settings/' . sanitize_text_field( $_REQUEST['shortcode'] ) );
|
131 |
-
if ( $output ) echo $output;
|
132 |
// Cache not found
|
133 |
else {
|
134 |
// Request queried shortcode
|
@@ -158,66 +158,39 @@ class Shortcodes_Ultimate_Generator {
|
|
158 |
switch ( $attr_info['type'] ) {
|
159 |
// Select
|
160 |
case 'select':
|
161 |
-
|
162 |
-
$is_numbers = is_numeric( implode( '', array_keys( $attr_info['values'] ) ) ) ? true : false;
|
163 |
-
// Multiple selects
|
164 |
-
$multiple = ( isset( $attr_info['multiple'] ) ) ? ' multiple' : '';
|
165 |
-
$return .= '<select name="' . $attr_name . '" id="su-generator-attr-' . $attr_name . '" class="su-generator-attr"' . $multiple . '>';
|
166 |
-
// Create options
|
167 |
-
foreach ( $attr_info['values'] as $option_value => $option_title ) {
|
168 |
-
// Values is indexed array, replace array keys by titles
|
169 |
-
if ( $is_numbers ) $option_value = $option_title;
|
170 |
-
// Is this option selected
|
171 |
-
$selected = ( $attr_info['default'] == $option_value ) ? ' selected="selected"' : '';
|
172 |
-
// Create option
|
173 |
-
$return .= '<option value="' . $option_value . '"' . $selected . '>' . $option_title . '</option>';
|
174 |
-
}
|
175 |
-
$return .= '</select>';
|
176 |
break;
|
177 |
// Switch
|
178 |
case 'switch':
|
179 |
-
$return .=
|
180 |
break;
|
181 |
// Upload
|
182 |
case 'upload':
|
183 |
-
$return .=
|
184 |
break;
|
185 |
// Icon
|
186 |
case 'icon':
|
187 |
-
$return .=
|
188 |
break;
|
189 |
// Color
|
190 |
case 'color':
|
191 |
-
$return .=
|
192 |
break;
|
193 |
// Gallery
|
194 |
case 'gallery':
|
195 |
-
|
196 |
-
$galleries = $shult->get_option( 'galleries' );
|
197 |
-
$created = ( is_array( $galleries ) && count( $galleries ) ) ? true : false;
|
198 |
-
$return .= '<select name="' . $attr_name . '" id="su-generator-attr-' . $attr_name . '" class="su-generator-attr" data-loading="' . __( 'Please wait', 'su' ) . '">';
|
199 |
-
// Check that galleries is set
|
200 |
-
if ( $created ) // Create options
|
201 |
-
foreach ( $galleries as $g_id => $gallery ) {
|
202 |
-
// Is this option selected
|
203 |
-
$selected = ( $g_id == 0 ) ? ' selected="selected"' : '';
|
204 |
-
// Prepare title
|
205 |
-
$gallery['name'] = ( $gallery['name'] == '' ) ? __( 'Untitled gallery', 'su' ) : stripslashes( $gallery['name'] );
|
206 |
-
// Create option
|
207 |
-
$return .= '<option value="' . ( $g_id + 1 ) . '"' . $selected . '>' . $gallery['name'] . '</option>';
|
208 |
-
}
|
209 |
-
// Galleries not created
|
210 |
-
else
|
211 |
-
$return .= '<option value="0" selected>' . __( 'Galleries not found', 'su' ) . '</option>';
|
212 |
-
$return .= '</select><small class="description"><a href="' . $shult->admin_url . '#tab-3" target="_blank">' . __( 'Manage galleries', 'su' ) . '</a> <a href="javascript:;" class="su-generator-reload-galleries">' . __( 'Reload galleries', 'su' ) . '</a></small>';
|
213 |
break;
|
214 |
// Number
|
215 |
case 'number':
|
216 |
-
$return .=
|
|
|
|
|
|
|
|
|
217 |
break;
|
218 |
// Text and other types
|
219 |
default:
|
220 |
-
$return .=
|
221 |
break;
|
222 |
}
|
223 |
if ( isset( $attr_info['desc'] ) ) $return .= '<div class="su-generator-attr-desc">' . str_replace( '<b%value>', '<b class="su-generator-set-value" title="' . __( 'Click to set this value', 'su' ) . '">', $attr_info['desc'] ) . '</div>';
|
72 |
public static function popup() {
|
73 |
// Get cache
|
74 |
$output = get_transient( 'su/generator/popup' );
|
75 |
+
if ( $output && SU_ENABLE_CACHE ) echo $output;
|
76 |
// Cache not found
|
77 |
else {
|
78 |
ob_start();
|
128 |
if ( empty( $_REQUEST['shortcode'] ) ) wp_die( __( 'Shortcode not specified', 'su' ) );
|
129 |
// Get cache
|
130 |
$output = get_transient( 'su/generator/settings/' . sanitize_text_field( $_REQUEST['shortcode'] ) );
|
131 |
+
if ( $output && SU_ENABLE_CACHE ) echo $output;
|
132 |
// Cache not found
|
133 |
else {
|
134 |
// Request queried shortcode
|
158 |
switch ( $attr_info['type'] ) {
|
159 |
// Select
|
160 |
case 'select':
|
161 |
+
$return .= Shortcodes_Ultimate_Generator_Fields::select( $attr_name, $attr_info );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
break;
|
163 |
// Switch
|
164 |
case 'switch':
|
165 |
+
$return .= Shortcodes_Ultimate_Generator_Fields::swtch( $attr_name, $attr_info );
|
166 |
break;
|
167 |
// Upload
|
168 |
case 'upload':
|
169 |
+
$return .= Shortcodes_Ultimate_Generator_Fields::upload( $attr_name, $attr_info );
|
170 |
break;
|
171 |
// Icon
|
172 |
case 'icon':
|
173 |
+
$return .= Shortcodes_Ultimate_Generator_Fields::icon( $attr_name, $attr_info );
|
174 |
break;
|
175 |
// Color
|
176 |
case 'color':
|
177 |
+
$return .= Shortcodes_Ultimate_Generator_Fields::color( $attr_name, $attr_info );
|
178 |
break;
|
179 |
// Gallery
|
180 |
case 'gallery':
|
181 |
+
$return .= Shortcodes_Ultimate_Generator_Fields::gallery( $attr_name, $attr_info );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
break;
|
183 |
// Number
|
184 |
case 'number':
|
185 |
+
$return .= Shortcodes_Ultimate_Generator_Fields::number( $attr_name, $attr_info );
|
186 |
+
break;
|
187 |
+
// Shadow
|
188 |
+
case 'shadow':
|
189 |
+
$return .= Shortcodes_Ultimate_Generator_Fields::shadow( $attr_name, $attr_info );
|
190 |
break;
|
191 |
// Text and other types
|
192 |
default:
|
193 |
+
$return .= Shortcodes_Ultimate_Generator_Fields::text( $attr_name, $attr_info );
|
194 |
break;
|
195 |
}
|
196 |
if ( isset( $attr_info['desc'] ) ) $return .= '<div class="su-generator-attr-desc">' . str_replace( '<b%value>', '<b class="su-generator-set-value" title="' . __( 'Click to set this value', 'su' ) . '">', $attr_info['desc'] ) . '</div>';
|
inc/core/class.shortcodes.php
CHANGED
@@ -33,7 +33,7 @@ class Shortcodes_Ultimate_Shortcodes {
|
|
33 |
if ( is_array( self::$tabs ) ) {
|
34 |
if ( self::$tab_count < $atts['active'] ) $atts['active'] = self::$tab_count;
|
35 |
foreach ( self::$tabs as $tab ) {
|
36 |
-
$tabs[] = '<span class="' . su_ecssc( $tab ) . $tab['disabled'] . '">' . su_scattr( $tab['title'] ) . '</span>';
|
37 |
$panes[] = '<div class="su-tabs-pane' . su_ecssc( $tab ) . '">' . $tab['content'] . '<div style="clear:both;height:0"></div></div>';
|
38 |
}
|
39 |
$vertical = ( $atts['vertical'] === 'yes' ) ? ' su-tabs-vertical' : '';
|
@@ -49,6 +49,7 @@ class Shortcodes_Ultimate_Shortcodes {
|
|
49 |
$atts = shortcode_atts( array(
|
50 |
'title' => __( 'Tab title', 'su' ),
|
51 |
'disabled' => 'no',
|
|
|
52 |
'class' => ''
|
53 |
), $atts );
|
54 |
$x = self::$tab_count;
|
@@ -56,6 +57,7 @@ class Shortcodes_Ultimate_Shortcodes {
|
|
56 |
'title' => $atts['title'],
|
57 |
'content' => do_shortcode( $content ),
|
58 |
'disabled' => ( $atts['disabled'] === 'yes' ) ? ' su-tabs-disabled' : '',
|
|
|
59 |
'class' => $atts['class']
|
60 |
);
|
61 |
self::$tab_count++;
|
@@ -63,17 +65,19 @@ class Shortcodes_Ultimate_Shortcodes {
|
|
63 |
|
64 |
public static function spoiler( $atts = null, $content = null ) {
|
65 |
$atts = shortcode_atts( array(
|
66 |
-
'title'
|
67 |
-
'open'
|
68 |
-
'style'
|
69 |
-
'
|
|
|
70 |
), $atts );
|
71 |
$atts['style'] = str_replace( array( '1', '2' ), array( 'default', 'fancy' ), $atts['style'] );
|
72 |
$closed = ( $atts['open'] !== 'yes' ) ? ' su-spoiler-closed' : '';
|
|
|
73 |
Shortcodes_Ultimate_Assets::add( 'css', 'su-box-shortcodes' );
|
74 |
Shortcodes_Ultimate_Assets::add( 'js', 'jquery' );
|
75 |
Shortcodes_Ultimate_Assets::add( 'js', 'su-other-shortcodes' );
|
76 |
-
return '<div class="su-spoiler su-spoiler-style-' . $atts['style'] . $closed . su_ecssc( $atts ) . '"><div class="su-spoiler-title"><span class="su-spoiler-icon"></span>' . su_scattr( $atts['title'] ) . '</div><div class="su-spoiler-content">' . su_do_shortcode( $content, 's' ) . '</div></div>';
|
77 |
}
|
78 |
|
79 |
public static function accordion( $atts = null, $content = null ) {
|
@@ -272,24 +276,25 @@ class Shortcodes_Ultimate_Shortcodes {
|
|
272 |
|
273 |
public static function button( $atts = null, $content = null ) {
|
274 |
$atts = shortcode_atts( array(
|
275 |
-
'url'
|
276 |
-
'link'
|
277 |
-
'target'
|
278 |
-
'style'
|
279 |
-
'background'
|
280 |
-
'color'
|
281 |
-
'dark'
|
282 |
-
'size'
|
283 |
-
'wide'
|
284 |
-
'center'
|
285 |
-
'radius'
|
286 |
-
'icon'
|
287 |
-
'icon_color'
|
288 |
-
'ts_color'
|
289 |
-
'ts_pos'
|
290 |
-
'
|
291 |
-
'
|
292 |
-
'
|
|
|
293 |
), $atts );
|
294 |
|
295 |
if ( $atts['link'] !== null ) $atts['url'] = $atts['link'];
|
@@ -321,7 +326,7 @@ class Shortcodes_Ultimate_Shortcodes {
|
|
321 |
$styles = array(
|
322 |
'size' => round( ( $atts['size'] + 7 ) * 1.3 ),
|
323 |
'ts_color' => ( $atts['ts_color'] === 'light' ) ? su_hex_shift( $atts['background'], 'lighter', 50 ) : su_hex_shift( $atts['background'], 'darker', 40 ),
|
324 |
-
'ts_pos' => $shadows[$atts['ts_pos']]
|
325 |
);
|
326 |
// Calculate border-radius
|
327 |
if ( $atts['radius'] == 'auto' ) $radius = round( $atts['size'] + 2 ) . 'px';
|
@@ -350,6 +355,12 @@ class Shortcodes_Ultimate_Shortcodes {
|
|
350 |
'-moz-text-shadow' => $styles['ts_pos'] . ' 1px ' . $styles['ts_color'],
|
351 |
'-webkit-text-shadow' => $styles['ts_pos'] . ' 1px ' . $styles['ts_color']
|
352 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
353 |
// CSS rules for <img> tag
|
354 |
$img_rules = array(
|
355 |
'width' => round( $styles['size'] * 1.5 ) . 'px',
|
@@ -437,22 +448,12 @@ class Shortcodes_Ultimate_Shortcodes {
|
|
437 |
), $atts );
|
438 |
if ( $atts['color'] !== null ) $atts['box_color'] = $atts['color'];
|
439 |
// Prepare border-radius
|
440 |
-
$radius = ( $atts['radius'] != '0' ) ?
|
441 |
-
'border-radius:' . $atts['radius'] . 'px;-moz-border-radius:' . $atts['radius'] .
|
442 |
-
'px;-webkit-border-radius:' . $atts['radius'] . 'px;' : '';
|
443 |
$title_radius = ( $atts['radius'] != '0' ) ? $atts['radius'] - 1 : '';
|
444 |
-
$title_radius = ( $title_radius ) ?
|
445 |
-
'-webkit-border-top-left-radius:' . $title_radius . 'px;-webkit-border-top-right-radius:' . $title_radius .
|
446 |
-
'px;-moz-border-radius-topleft:' . $title_radius . 'px;-moz-border-radius-topright:' . $title_radius .
|
447 |
-
'px;border-top-left-radius:' . $title_radius . 'px;border-top-right-radius:' . $title_radius . 'px;' : '';
|
448 |
Shortcodes_Ultimate_Assets::add( 'css', 'su-box-shortcodes' );
|
449 |
// Return result
|
450 |
-
return
|
451 |
-
'<div class="su-box su-box-style-' . $atts['style'] . su_ecssc( $atts ) . '" style="border-color:' .
|
452 |
-
su_hex_shift( $atts['box_color'], 'darker', 20 ) . ';' . $radius .
|
453 |
-
'"><div class="su-box-title" style="background-color:' . $atts['box_color'] . ';color:' .
|
454 |
-
$atts['title_color'] . ';' . $title_radius . '">' . su_scattr( $atts['title'] ) . '</div><div class="su-box-content">' .
|
455 |
-
su_do_shortcode( $content, 'b' ) . '</div></div>';
|
456 |
}
|
457 |
|
458 |
public static function note( $atts = null, $content = null ) {
|
33 |
if ( is_array( self::$tabs ) ) {
|
34 |
if ( self::$tab_count < $atts['active'] ) $atts['active'] = self::$tab_count;
|
35 |
foreach ( self::$tabs as $tab ) {
|
36 |
+
$tabs[] = '<span class="' . su_ecssc( $tab ) . $tab['disabled'] . '"' . $tab['anchor'] . '>' . su_scattr( $tab['title'] ) . '</span>';
|
37 |
$panes[] = '<div class="su-tabs-pane' . su_ecssc( $tab ) . '">' . $tab['content'] . '<div style="clear:both;height:0"></div></div>';
|
38 |
}
|
39 |
$vertical = ( $atts['vertical'] === 'yes' ) ? ' su-tabs-vertical' : '';
|
49 |
$atts = shortcode_atts( array(
|
50 |
'title' => __( 'Tab title', 'su' ),
|
51 |
'disabled' => 'no',
|
52 |
+
'anchor' => '',
|
53 |
'class' => ''
|
54 |
), $atts );
|
55 |
$x = self::$tab_count;
|
57 |
'title' => $atts['title'],
|
58 |
'content' => do_shortcode( $content ),
|
59 |
'disabled' => ( $atts['disabled'] === 'yes' ) ? ' su-tabs-disabled' : '',
|
60 |
+
'anchor' => ( $atts['anchor'] ) ? ' data-anchor="' . str_replace( ' ', '', trim( sanitize_text_field( $atts['anchor'] ) ) ) . '"' : '',
|
61 |
'class' => $atts['class']
|
62 |
);
|
63 |
self::$tab_count++;
|
65 |
|
66 |
public static function spoiler( $atts = null, $content = null ) {
|
67 |
$atts = shortcode_atts( array(
|
68 |
+
'title' => __( 'Spoiler title', 'su' ),
|
69 |
+
'open' => 'no',
|
70 |
+
'style' => 'default',
|
71 |
+
'anchor' => '',
|
72 |
+
'class' => ''
|
73 |
), $atts );
|
74 |
$atts['style'] = str_replace( array( '1', '2' ), array( 'default', 'fancy' ), $atts['style'] );
|
75 |
$closed = ( $atts['open'] !== 'yes' ) ? ' su-spoiler-closed' : '';
|
76 |
+
$atts['anchor'] = ( $atts['anchor'] ) ? ' data-anchor="' . str_replace( ' ', '', trim( sanitize_text_field( $atts['anchor'] ) ) ) . '"' : '';
|
77 |
Shortcodes_Ultimate_Assets::add( 'css', 'su-box-shortcodes' );
|
78 |
Shortcodes_Ultimate_Assets::add( 'js', 'jquery' );
|
79 |
Shortcodes_Ultimate_Assets::add( 'js', 'su-other-shortcodes' );
|
80 |
+
return '<div class="su-spoiler su-spoiler-style-' . $atts['style'] . $closed . su_ecssc( $atts ) . '"' . $atts['anchor'] . '><div class="su-spoiler-title"><span class="su-spoiler-icon"></span>' . su_scattr( $atts['title'] ) . '</div><div class="su-spoiler-content">' . su_do_shortcode( $content, 's' ) . '</div></div>';
|
81 |
}
|
82 |
|
83 |
public static function accordion( $atts = null, $content = null ) {
|
276 |
|
277 |
public static function button( $atts = null, $content = null ) {
|
278 |
$atts = shortcode_atts( array(
|
279 |
+
'url' => get_option( 'home' ),
|
280 |
+
'link' => null, // 3.x
|
281 |
+
'target' => 'self',
|
282 |
+
'style' => 'default',
|
283 |
+
'background' => '#2D89EF',
|
284 |
+
'color' => '#FFFFFF',
|
285 |
+
'dark' => null, // 3.x
|
286 |
+
'size' => 3,
|
287 |
+
'wide' => 'no',
|
288 |
+
'center' => 'no',
|
289 |
+
'radius' => 'auto',
|
290 |
+
'icon' => false,
|
291 |
+
'icon_color' => '#FFFFFF',
|
292 |
+
'ts_color' => null, // Dep. 4.3.2
|
293 |
+
'ts_pos' => null, // Dep. 4.3.2
|
294 |
+
'text_shadow' => 'none',
|
295 |
+
'desc' => '',
|
296 |
+
'onclick' => '',
|
297 |
+
'class' => ''
|
298 |
), $atts );
|
299 |
|
300 |
if ( $atts['link'] !== null ) $atts['url'] = $atts['link'];
|
326 |
$styles = array(
|
327 |
'size' => round( ( $atts['size'] + 7 ) * 1.3 ),
|
328 |
'ts_color' => ( $atts['ts_color'] === 'light' ) ? su_hex_shift( $atts['background'], 'lighter', 50 ) : su_hex_shift( $atts['background'], 'darker', 40 ),
|
329 |
+
'ts_pos' => ( $atts['ts_pos'] !== null ) ? $shadows[$atts['ts_pos']] : $shadows['none']
|
330 |
);
|
331 |
// Calculate border-radius
|
332 |
if ( $atts['radius'] == 'auto' ) $radius = round( $atts['size'] + 2 ) . 'px';
|
355 |
'-moz-text-shadow' => $styles['ts_pos'] . ' 1px ' . $styles['ts_color'],
|
356 |
'-webkit-text-shadow' => $styles['ts_pos'] . ' 1px ' . $styles['ts_color']
|
357 |
);
|
358 |
+
// Apply new text-shadow value
|
359 |
+
if ( $atts['ts_color'] === null && $atts['ts_pos'] === null ) {
|
360 |
+
$span_rules['text-shadow'] = $atts['text_shadow'];
|
361 |
+
$span_rules['-moz-text-shadow'] = $atts['text_shadow'];
|
362 |
+
$span_rules['-webkit-text-shadow'] = $atts['text_shadow'];
|
363 |
+
}
|
364 |
// CSS rules for <img> tag
|
365 |
$img_rules = array(
|
366 |
'width' => round( $styles['size'] * 1.5 ) . 'px',
|
448 |
), $atts );
|
449 |
if ( $atts['color'] !== null ) $atts['box_color'] = $atts['color'];
|
450 |
// Prepare border-radius
|
451 |
+
$radius = ( $atts['radius'] != '0' ) ? 'border-radius:' . $atts['radius'] . 'px;-moz-border-radius:' . $atts['radius'] . 'px;-webkit-border-radius:' . $atts['radius'] . 'px;' : '';
|
|
|
|
|
452 |
$title_radius = ( $atts['radius'] != '0' ) ? $atts['radius'] - 1 : '';
|
453 |
+
$title_radius = ( $title_radius ) ? '-webkit-border-top-left-radius:' . $title_radius . 'px;-webkit-border-top-right-radius:' . $title_radius . 'px;-moz-border-radius-topleft:' . $title_radius . 'px;-moz-border-radius-topright:' . $title_radius . 'px;border-top-left-radius:' . $title_radius . 'px;border-top-right-radius:' . $title_radius . 'px;' : '';
|
|
|
|
|
|
|
454 |
Shortcodes_Ultimate_Assets::add( 'css', 'su-box-shortcodes' );
|
455 |
// Return result
|
456 |
+
return '<div class="su-box su-box-style-' . $atts['style'] . su_ecssc( $atts ) . '" style="border-color:' . su_hex_shift( $atts['box_color'], 'darker', 20 ) . ';' . $radius . '"><div class="su-box-title" style="background-color:' . $atts['box_color'] . ';color:' . $atts['title_color'] . ';' . $title_radius . '">' . su_scattr( $atts['title'] ) . '</div><div class="su-box-content">' . su_do_shortcode( $content, 'b' ) . '</div></div>';
|
|
|
|
|
|
|
|
|
|
|
457 |
}
|
458 |
|
459 |
public static function note( $atts = null, $content = null ) {
|
languages/su-ru_RU.mo
CHANGED
Binary file
|
languages/su-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: 2013-10-
|
6 |
-
"PO-Revision-Date: 2013-10-
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -12,19 +12,17 @@ msgstr ""
|
|
12 |
"X-Poedit-KeywordsList: _e;__\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
|
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
#: inc/example-addon.php:29
|
18 |
msgid "Heading 2"
|
19 |
msgstr "Заголовок 2"
|
20 |
|
21 |
-
#: inc/example-addon.php:43
|
22 |
-
#: inc/core/class.data.php:
|
23 |
-
#: inc/core/class.data.php:
|
24 |
-
#: inc/core/class.data.php:
|
25 |
-
#: inc/core/class.data.php:541
|
26 |
-
#: inc/core/class.data.php:702
|
27 |
-
#: inc/core/class.data.php:864
|
28 |
msgid "Default"
|
29 |
msgstr "По умолчанию"
|
30 |
|
@@ -32,12 +30,9 @@ msgstr "По умолчанию"
|
|
32 |
msgid "Small"
|
33 |
msgstr "Маленький"
|
34 |
|
35 |
-
#: inc/example-addon.php:49
|
36 |
-
#: inc/core/class.data.php:
|
37 |
-
#: inc/core/class.data.php:
|
38 |
-
#: inc/core/class.data.php:551
|
39 |
-
#: inc/core/class.data.php:709
|
40 |
-
#: inc/core/class.data.php:834
|
41 |
msgid "Style"
|
42 |
msgstr "Стиль"
|
43 |
|
@@ -69,26 +64,27 @@ msgstr "Выбор файла"
|
|
69 |
msgid "Insert"
|
70 |
msgstr "Вставить"
|
71 |
|
72 |
-
#: inc/core/class.assets.php:70
|
73 |
-
#: inc/core/class.generator.php:198
|
74 |
msgid "Please wait"
|
75 |
msgstr "Пожалуйста подождите"
|
76 |
|
77 |
#: inc/core/class.assets.php:83
|
78 |
-
msgid "
|
79 |
-
|
|
|
|
|
|
|
|
|
80 |
|
81 |
#: inc/core/class.data.php:36
|
82 |
msgid "All"
|
83 |
msgstr "Все"
|
84 |
|
85 |
-
#: inc/core/class.data.php:37
|
86 |
-
#: inc/core/class.generator.php:230
|
87 |
msgid "Content"
|
88 |
msgstr "Содержимое"
|
89 |
|
90 |
-
#: inc/core/class.data.php:38
|
91 |
-
#: inc/core/class.data.php:690
|
92 |
msgid "Box"
|
93 |
msgstr "Блок"
|
94 |
|
@@ -96,11 +92,9 @@ msgstr "Блок"
|
|
96 |
msgid "Media"
|
97 |
msgstr "Медиа"
|
98 |
|
99 |
-
#: inc/core/class.data.php:40
|
100 |
-
#: inc/core/class.data.php:
|
101 |
-
#: inc/core/class.data.php:
|
102 |
-
#: inc/core/class.data.php:1686
|
103 |
-
#: inc/core/class.data.php:1692
|
104 |
msgid "Gallery"
|
105 |
msgstr "Галерея"
|
106 |
|
@@ -112,10 +106,8 @@ msgstr "Другое"
|
|
112 |
msgid "Heading"
|
113 |
msgstr "Заголовок"
|
114 |
|
115 |
-
#: inc/core/class.data.php:66
|
116 |
-
#: inc/core/class.data.php:
|
117 |
-
#: inc/core/class.data.php:467
|
118 |
-
#: inc/core/class.data.php:569
|
119 |
msgid "Size"
|
120 |
msgstr "Размер"
|
121 |
|
@@ -123,29 +115,23 @@ msgstr "Размер"
|
|
123 |
msgid "Select heading size"
|
124 |
msgstr "Выберите размер заголовка"
|
125 |
|
126 |
-
#: inc/core/class.data.php:71
|
127 |
-
#: inc/core/class.data.php:
|
128 |
-
#: inc/core/class.data.php:617
|
129 |
-
#: inc/core/class.data.php:842
|
130 |
msgid "Left"
|
131 |
msgstr "Слева"
|
132 |
|
133 |
-
#: inc/core/class.data.php:72
|
134 |
-
#: inc/core/class.data.php:
|
135 |
-
#: inc/core/class.data.php:1633
|
136 |
msgid "Center"
|
137 |
msgstr "По центру"
|
138 |
|
139 |
-
#: inc/core/class.data.php:73
|
140 |
-
#: inc/core/class.data.php:
|
141 |
-
#: inc/core/class.data.php:615
|
142 |
-
#: inc/core/class.data.php:843
|
143 |
msgid "Right"
|
144 |
msgstr "Справа"
|
145 |
|
146 |
-
#: inc/core/class.data.php:76
|
147 |
-
#: inc/core/class.data.php:
|
148 |
-
#: inc/core/class.data.php:413
|
149 |
msgid "Align"
|
150 |
msgstr "Выравнивание"
|
151 |
|
@@ -153,91 +139,51 @@ msgstr "Выравнивание"
|
|
153 |
msgid "Heading text alignment"
|
154 |
msgstr "Выравнивание текста в заголовке"
|
155 |
|
156 |
-
#: inc/core/class.data.php:81
|
157 |
-
#: inc/core/class.data.php:
|
158 |
-
#: inc/core/class.data.php:
|
159 |
-
#: inc/core/class.data.php:
|
160 |
-
#: inc/core/class.data.php:
|
161 |
-
#: inc/core/class.data.php:
|
162 |
-
#: inc/core/class.data.php:
|
163 |
-
#: inc/core/class.data.php:
|
164 |
-
#: inc/core/class.data.php:
|
165 |
-
#: inc/core/class.data.php:
|
166 |
-
#: inc/core/class.data.php:
|
167 |
-
#: inc/core/class.data.php:
|
168 |
-
#: inc/core/class.data.php:
|
169 |
-
#: inc/core/class.data.php:
|
170 |
-
#: inc/core/class.data.php:
|
171 |
-
#: inc/core/class.data.php:
|
172 |
-
#: inc/core/class.data.php:
|
173 |
-
#: inc/core/class.data.php:
|
174 |
-
#: inc/core/class.data.php:
|
175 |
-
#: inc/core/class.data.php:
|
176 |
-
#: inc/core/class.data.php:
|
177 |
-
#: inc/core/class.data.php:905
|
178 |
-
#: inc/core/class.data.php:922
|
179 |
-
#: inc/core/class.data.php:975
|
180 |
-
#: inc/core/class.data.php:1026
|
181 |
-
#: inc/core/class.data.php:1070
|
182 |
-
#: inc/core/class.data.php:1110
|
183 |
-
#: inc/core/class.data.php:1180
|
184 |
-
#: inc/core/class.data.php:1202
|
185 |
-
#: inc/core/class.data.php:1234
|
186 |
-
#: inc/core/class.data.php:1268
|
187 |
-
#: inc/core/class.data.php:1285
|
188 |
-
#: inc/core/class.data.php:1313
|
189 |
-
#: inc/core/class.data.php:1334
|
190 |
-
#: inc/core/class.data.php:1362
|
191 |
-
#: inc/core/class.data.php:1384
|
192 |
-
#: inc/core/class.data.php:1430
|
193 |
-
#: inc/core/class.data.php:1476
|
194 |
-
#: inc/core/class.data.php:1568
|
195 |
-
#: inc/core/class.data.php:1676
|
196 |
-
#: inc/core/class.data.php:1729
|
197 |
msgid "Class"
|
198 |
msgstr "Класс"
|
199 |
|
200 |
-
#: inc/core/class.data.php:82
|
201 |
-
#: inc/core/class.data.php:
|
202 |
-
#: inc/core/class.data.php:
|
203 |
-
#: inc/core/class.data.php:
|
204 |
-
#: inc/core/class.data.php:
|
205 |
-
#: inc/core/class.data.php:
|
206 |
-
#: inc/core/class.data.php:
|
207 |
-
#: inc/core/class.data.php:
|
208 |
-
#: inc/core/class.data.php:
|
209 |
-
#: inc/core/class.data.php:
|
210 |
-
#: inc/core/class.data.php:
|
211 |
-
#: inc/core/class.data.php:
|
212 |
-
#: inc/core/class.data.php:
|
213 |
-
#: inc/core/class.data.php:
|
214 |
-
#: inc/core/class.data.php:
|
215 |
-
#: inc/core/class.data.php:
|
216 |
-
#: inc/core/class.data.php:
|
217 |
-
#: inc/core/class.data.php:
|
218 |
-
#: inc/core/class.data.php:
|
219 |
-
#: inc/core/class.data.php:
|
220 |
-
#: inc/core/class.data.php:
|
221 |
-
#: inc/core/class.data.php:906
|
222 |
-
#: inc/core/class.data.php:923
|
223 |
-
#: inc/core/class.data.php:976
|
224 |
-
#: inc/core/class.data.php:1027
|
225 |
-
#: inc/core/class.data.php:1071
|
226 |
-
#: inc/core/class.data.php:1111
|
227 |
-
#: inc/core/class.data.php:1181
|
228 |
-
#: inc/core/class.data.php:1203
|
229 |
-
#: inc/core/class.data.php:1235
|
230 |
-
#: inc/core/class.data.php:1269
|
231 |
-
#: inc/core/class.data.php:1286
|
232 |
-
#: inc/core/class.data.php:1314
|
233 |
-
#: inc/core/class.data.php:1335
|
234 |
-
#: inc/core/class.data.php:1363
|
235 |
-
#: inc/core/class.data.php:1385
|
236 |
-
#: inc/core/class.data.php:1431
|
237 |
-
#: inc/core/class.data.php:1477
|
238 |
-
#: inc/core/class.data.php:1569
|
239 |
-
#: inc/core/class.data.php:1677
|
240 |
-
#: inc/core/class.data.php:1730
|
241 |
msgid "Extra CSS class"
|
242 |
msgstr "Дополнительный CSS класс"
|
243 |
|
@@ -291,11 +237,10 @@ msgstr "Вкладка"
|
|
291 |
msgid "Tab name"
|
292 |
msgstr "Имя вкладки"
|
293 |
|
294 |
-
#: inc/core/class.data.php:129
|
295 |
-
#: inc/core/class.data.php:
|
296 |
-
#: inc/core/class.data.php:
|
297 |
-
#: inc/
|
298 |
-
#: inc/core/class.data.php:1139
|
299 |
msgid "Title"
|
300 |
msgstr "Заголовок"
|
301 |
|
@@ -311,61 +256,85 @@ msgstr "Отключено"
|
|
311 |
msgid "Is this tab disabled"
|
312 |
msgstr "Эта вкладка отключена"
|
313 |
|
314 |
-
#: inc/core/class.data.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
315 |
msgid "Tab content"
|
316 |
msgstr "Содержимое вкладки"
|
317 |
|
318 |
-
#: inc/core/class.data.php:
|
319 |
msgid "Single tab"
|
320 |
msgstr "Одиночная вкладка"
|
321 |
|
322 |
-
#: inc/core/class.data.php:
|
323 |
msgid "Spoiler"
|
324 |
msgstr "Спойлер"
|
325 |
|
326 |
-
#: inc/core/class.data.php:
|
327 |
-
#: inc/core/class.shortcodes.php:66
|
328 |
msgid "Spoiler title"
|
329 |
msgstr "Скрытый текст"
|
330 |
|
331 |
-
#: inc/core/class.data.php:
|
332 |
msgid "Text in spoiler title"
|
333 |
msgstr "Текст для заголовка спойлера"
|
334 |
|
335 |
-
#: inc/core/class.data.php:
|
336 |
msgid "Open"
|
337 |
msgstr "Открыт"
|
338 |
|
339 |
-
#: inc/core/class.data.php:
|
340 |
msgid "Is spoiler content visible by default"
|
341 |
msgstr "Виден ли контент спойлера по умолчанию"
|
342 |
|
343 |
-
#: inc/core/class.data.php:
|
344 |
msgid "Fancy"
|
345 |
msgstr "Стильный"
|
346 |
|
347 |
-
#: inc/core/class.data.php:
|
348 |
-
#: inc/core/class.data.php:379
|
349 |
msgid "Simple"
|
350 |
msgstr "Простой"
|
351 |
|
352 |
-
#: inc/core/class.data.php:
|
353 |
msgid "Spoiler skin"
|
354 |
msgstr "Скин спойлера"
|
355 |
|
356 |
-
#: inc/core/class.data.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
357 |
msgid "Hidden content"
|
358 |
msgstr "Скрытое содержимое"
|
359 |
|
360 |
-
#: inc/core/class.data.php:
|
361 |
msgid "Spoiler with hidden content"
|
362 |
msgstr "Спойлер со скрытым содержимым"
|
363 |
|
364 |
-
#: inc/core/class.data.php:
|
365 |
msgid "Accordion"
|
366 |
msgstr "Аккордион"
|
367 |
|
368 |
-
#: inc/core/class.data.php:
|
369 |
msgid ""
|
370 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
371 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
@@ -375,209 +344,194 @@ msgstr ""
|
|
375 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]\n"
|
376 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]"
|
377 |
|
378 |
-
#: inc/core/class.data.php:
|
379 |
msgid "Accordion with spoilers"
|
380 |
msgstr "Аккордион со спойлерами"
|
381 |
|
382 |
-
#: inc/core/class.data.php:
|
383 |
msgid "Divider"
|
384 |
msgstr "Разделитель"
|
385 |
|
386 |
-
#: inc/core/class.data.php:
|
387 |
msgid "Show TOP link"
|
388 |
msgstr "Показать ссылку ВВЕРХ"
|
389 |
|
390 |
-
#: inc/core/class.data.php:
|
391 |
msgid "Show link to top of the page or not"
|
392 |
msgstr "Показывать ссылку ВВЕРХ или нет"
|
393 |
|
394 |
-
#: inc/core/class.data.php:
|
395 |
-
#: inc/core/class.shortcodes.php:87
|
396 |
msgid "Go to top"
|
397 |
msgstr "Вверх"
|
398 |
|
399 |
-
#: inc/core/class.data.php:
|
400 |
msgid "Link text"
|
401 |
msgstr "Текст ссылки"
|
402 |
|
403 |
-
#: inc/core/class.data.php:
|
404 |
msgid "Text for the GO TOP link"
|
405 |
msgstr "Текст ссылки ВВЕРХ"
|
406 |
|
407 |
-
#: inc/core/class.data.php:
|
408 |
msgid "Content divider with optional TOP link"
|
409 |
msgstr "Разделитель текста со ссылкой ВВЕРХ"
|
410 |
|
411 |
-
#: inc/core/class.data.php:
|
412 |
msgid "Spacer"
|
413 |
msgstr "Пробел"
|
414 |
|
415 |
-
#: inc/core/class.data.php:
|
416 |
-
#: inc/core/class.data.php:
|
417 |
-
#: inc/core/class.data.php:
|
418 |
-
#: inc/core/class.data.php:
|
419 |
-
#: inc/core/class.data.php:
|
420 |
-
#: inc/core/class.data.php:1419
|
421 |
-
#: inc/core/class.data.php:1459
|
422 |
-
#: inc/core/class.data.php:1509
|
423 |
-
#: inc/core/class.data.php:1601
|
424 |
-
#: inc/core/class.data.php:1709
|
425 |
msgid "Height"
|
426 |
msgstr "Высота"
|
427 |
|
428 |
-
#: inc/core/class.data.php:
|
429 |
msgid "Height of the spacer in pixels"
|
430 |
msgstr "Высота пробела в пикселях"
|
431 |
|
432 |
-
#: inc/core/class.data.php:
|
433 |
msgid "Empty space with adjustable height"
|
434 |
msgstr "Пробел с настраиваемой высотой"
|
435 |
|
436 |
-
#: inc/core/class.data.php:
|
437 |
msgid "Highlight"
|
438 |
msgstr "Выделитель"
|
439 |
|
440 |
-
#: inc/core/class.data.php:
|
441 |
-
#: inc/core/class.data.php:
|
442 |
-
#: inc/core/class.data.php:753
|
443 |
msgid "Background"
|
444 |
msgstr "Фон"
|
445 |
|
446 |
-
#: inc/core/class.data.php:
|
447 |
msgid "Highlighted text background color"
|
448 |
msgstr "Цвет фона выделяемого текста"
|
449 |
|
450 |
-
#: inc/core/class.data.php:
|
451 |
-
#: inc/core/class.data.php:
|
452 |
-
#: inc/core/class.data.php:759
|
453 |
msgid "Text color"
|
454 |
msgstr "Цвет текста"
|
455 |
|
456 |
-
#: inc/core/class.data.php:
|
457 |
msgid "Highlighted text color"
|
458 |
msgstr "Цвет выделяемого текста"
|
459 |
|
460 |
-
#: inc/core/class.data.php:
|
461 |
-
#: inc/core/class.data.php:281
|
462 |
msgid "Highlighted text"
|
463 |
msgstr "Подсвеченный текст"
|
464 |
|
465 |
-
#: inc/core/class.data.php:
|
466 |
-
#: inc/core/class.data.php:310
|
467 |
msgid "Label"
|
468 |
msgstr "Ярлык"
|
469 |
|
470 |
-
#: inc/core/class.data.php:
|
471 |
msgid "Success"
|
472 |
msgstr "Успех"
|
473 |
|
474 |
-
#: inc/core/class.data.php:
|
475 |
msgid "Warning"
|
476 |
msgstr "Внимание"
|
477 |
|
478 |
-
#: inc/core/class.data.php:
|
479 |
msgid "Important"
|
480 |
msgstr "Важно"
|
481 |
|
482 |
-
#: inc/core/class.data.php:
|
483 |
msgid "Black"
|
484 |
msgstr "Черный"
|
485 |
|
486 |
-
#: inc/core/class.data.php:
|
487 |
msgid "Info"
|
488 |
msgstr "Инфо"
|
489 |
|
490 |
-
#: inc/core/class.data.php:
|
491 |
msgid "Type"
|
492 |
msgstr "Тип"
|
493 |
|
494 |
-
#: inc/core/class.data.php:
|
495 |
msgid "Style of the label"
|
496 |
msgstr "Стиль ярлыка"
|
497 |
|
498 |
-
#: inc/core/class.data.php:
|
499 |
msgid "Styled label"
|
500 |
msgstr "Стильный ярлык"
|
501 |
|
502 |
-
#: inc/core/class.data.php:
|
503 |
-
#: inc/core/class.data.php:338
|
504 |
msgid "Quote"
|
505 |
msgstr "Цитата"
|
506 |
|
507 |
-
#: inc/core/class.data.php:
|
508 |
msgid "Cite"
|
509 |
msgstr "Автор"
|
510 |
|
511 |
-
#: inc/core/class.data.php:
|
512 |
msgid "Quote author name"
|
513 |
msgstr "Имя автора цитаты"
|
514 |
|
515 |
-
#: inc/core/class.data.php:
|
516 |
msgid "Cite url"
|
517 |
msgstr "Ссылка автора"
|
518 |
|
519 |
-
#: inc/core/class.data.php:
|
520 |
msgid "Url of the quote author. Leave empty to disable link"
|
521 |
msgstr "Ссылка автора цитаты. Оставьте пустым, чтобы отключить ссылку"
|
522 |
|
523 |
-
#: inc/core/class.data.php:
|
524 |
msgid "Blockquote alternative"
|
525 |
msgstr "Альтернатива цитаты"
|
526 |
|
527 |
-
#: inc/core/class.data.php:
|
528 |
-
#: inc/core/class.data.php:
|
529 |
-
#: inc/core/class.data.php:364
|
530 |
msgid "Pullquote"
|
531 |
msgstr "Цитата с обтеканием"
|
532 |
|
533 |
-
#: inc/core/class.data.php:
|
534 |
msgid "Pullquote alignment (float)"
|
535 |
msgstr "Выравнивание цитаты (обтекание)"
|
536 |
|
537 |
-
#: inc/core/class.data.php:
|
538 |
-
#: inc/core/class.data.php:396
|
539 |
msgid "Dropcap"
|
540 |
msgstr "Буквица"
|
541 |
|
542 |
-
#: inc/core/class.data.php:
|
543 |
-
#: inc/core/class.data.php:542
|
544 |
msgid "Flat"
|
545 |
msgstr "Плоский"
|
546 |
|
547 |
-
#: inc/core/class.data.php:
|
548 |
-
#: inc/core/class.data.php:604
|
549 |
msgid "Light"
|
550 |
msgstr "Светлый"
|
551 |
|
552 |
-
#: inc/core/class.data.php:
|
553 |
msgid "Dropcap style preset"
|
554 |
msgstr "Стиль буквицы"
|
555 |
|
556 |
-
#: inc/core/class.data.php:
|
557 |
msgid "Choose dropcap size"
|
558 |
msgstr "Выберите размер буквицы"
|
559 |
|
560 |
-
#: inc/core/class.data.php:
|
561 |
msgid "D"
|
562 |
msgstr "D"
|
563 |
|
564 |
-
#: inc/core/class.data.php:
|
565 |
msgid "Frame"
|
566 |
msgstr "Рамка"
|
567 |
|
568 |
-
#: inc/core/class.data.php:
|
569 |
msgid "Frame alignment"
|
570 |
msgstr "Выравнивание рамки"
|
571 |
|
572 |
-
#: inc/core/class.data.php:
|
573 |
msgid "Styled image frame"
|
574 |
msgstr "Стильный рамка изображения"
|
575 |
|
576 |
-
#: inc/core/class.data.php:
|
577 |
msgid "Row"
|
578 |
msgstr "Колонки"
|
579 |
|
580 |
-
#: inc/core/class.data.php:
|
581 |
msgid ""
|
582 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
583 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
@@ -587,110 +541,111 @@ msgstr ""
|
|
587 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]\n"
|
588 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]"
|
589 |
|
590 |
-
#: inc/core/class.data.php:
|
591 |
msgid "Row for flexible columns"
|
592 |
msgstr "Контейнер с резиновыми колонками"
|
593 |
|
594 |
-
#: inc/core/class.data.php:
|
595 |
msgid "Column"
|
596 |
msgstr "Колонка"
|
597 |
|
598 |
-
#: inc/core/class.data.php:
|
599 |
msgid "Full width"
|
600 |
msgstr "Во всю ширину"
|
601 |
|
602 |
-
#: inc/core/class.data.php:
|
603 |
msgid "One half"
|
604 |
msgstr "Одна вторая"
|
605 |
|
606 |
-
#: inc/core/class.data.php:
|
607 |
msgid "One third"
|
608 |
msgstr "Одна третья"
|
609 |
|
610 |
-
#: inc/core/class.data.php:
|
611 |
msgid "Two third"
|
612 |
msgstr "Две трети"
|
613 |
|
614 |
-
#: inc/core/class.data.php:
|
615 |
msgid "One fourth"
|
616 |
msgstr "Одна четвертая"
|
617 |
|
618 |
-
#: inc/core/class.data.php:
|
619 |
msgid "Three fourth"
|
620 |
msgstr "Три четвертых"
|
621 |
|
622 |
-
#: inc/core/class.data.php:
|
623 |
msgid "One fifth"
|
624 |
msgstr "Одна пятая"
|
625 |
|
626 |
-
#: inc/core/class.data.php:
|
627 |
msgid "Two fifth"
|
628 |
msgstr "Две пятых"
|
629 |
|
630 |
-
#: inc/core/class.data.php:
|
631 |
msgid "Three fifth"
|
632 |
msgstr "Три пятых"
|
633 |
|
634 |
-
#: inc/core/class.data.php:
|
635 |
msgid "Four fifth"
|
636 |
msgstr "Четыре пятых"
|
637 |
|
638 |
-
#: inc/core/class.data.php:
|
639 |
msgid "One sixth"
|
640 |
msgstr "Одна шестая"
|
641 |
|
642 |
-
#: inc/core/class.data.php:
|
643 |
msgid "Five sixth"
|
644 |
msgstr "Пять шестых"
|
645 |
|
646 |
-
#: inc/core/class.data.php:
|
647 |
msgid "Select column width. This width will be calculated depend page width"
|
648 |
-
msgstr "
|
|
|
649 |
|
650 |
-
#: inc/core/class.data.php:
|
651 |
-
#: inc/core/class.data.php:580
|
652 |
msgid "Centered"
|
653 |
msgstr "По центру"
|
654 |
|
655 |
-
#: inc/core/class.data.php:
|
656 |
msgid "Is this column centered on the page"
|
657 |
msgstr "Колонка выровнена по центру страницы"
|
658 |
|
659 |
-
#: inc/core/class.data.php:
|
660 |
msgid "Column content"
|
661 |
msgstr "Содержимое колонки"
|
662 |
|
663 |
-
#: inc/core/class.data.php:
|
664 |
msgid "Flexible and responsive columns"
|
665 |
msgstr "Резновые колонки"
|
666 |
|
667 |
-
#: inc/core/class.data.php:
|
668 |
msgid "List"
|
669 |
msgstr "Список"
|
670 |
|
671 |
-
#: inc/core/class.data.php:
|
672 |
-
#: inc/core/class.data.php:
|
673 |
-
#: inc/core/class.data.php:659
|
674 |
msgid "Icon"
|
675 |
msgstr "Иконка"
|
676 |
|
677 |
-
#: inc/core/class.data.php:
|
678 |
msgid "You can upload custom icon for this list or pick a built-in icon"
|
679 |
msgstr "Вы можете загрузить свою иконку для этого списка или выбрать из списка"
|
680 |
|
681 |
-
#: inc/core/class.data.php:
|
682 |
-
#: inc/core/class.data.php:
|
683 |
-
#: inc/core/class.data.php:665
|
684 |
msgid "Icon color"
|
685 |
msgstr "Цвет иконки"
|
686 |
|
687 |
-
#: inc/core/class.data.php:
|
688 |
-
#: inc/core/class.data.php:
|
689 |
-
|
690 |
-
|
691 |
-
|
|
|
|
|
|
|
692 |
|
693 |
-
#: inc/core/class.data.php:
|
694 |
msgid ""
|
695 |
"<ul>\n"
|
696 |
"<li>List item</li>\n"
|
@@ -704,662 +659,646 @@ msgstr ""
|
|
704 |
"<li>Элемент списка</li>\n"
|
705 |
"</ul>"
|
706 |
|
707 |
-
#: inc/core/class.data.php:
|
708 |
msgid "Styled unordered list"
|
709 |
msgstr "Стильный неупорядоченный список"
|
710 |
|
711 |
-
#: inc/core/class.data.php:
|
712 |
msgid "Button"
|
713 |
msgstr "Кнопка"
|
714 |
|
715 |
-
#: inc/core/class.data.php:
|
|
|
716 |
msgid "Link"
|
717 |
msgstr "Ссылка"
|
718 |
|
719 |
-
#: inc/core/class.data.php:
|
720 |
msgid "Button link"
|
721 |
msgstr "Ссылка кнопки"
|
722 |
|
723 |
-
#: inc/core/class.data.php:
|
724 |
-
#: inc/core/class.data.php:1225
|
725 |
msgid "Same tab"
|
726 |
msgstr "Та же вкладка"
|
727 |
|
728 |
-
#: inc/core/class.data.php:
|
729 |
-
#: inc/core/class.data.php:1226
|
730 |
msgid "New tab"
|
731 |
msgstr "Новая вкладка"
|
732 |
|
733 |
-
#: inc/core/class.data.php:
|
734 |
-
#: inc/core/class.data.php:1229
|
735 |
msgid "Target"
|
736 |
msgstr "Цель"
|
737 |
|
738 |
-
#: inc/core/class.data.php:
|
739 |
msgid "Button link target"
|
740 |
msgstr "Цель ссылки кнопки"
|
741 |
|
742 |
-
#: inc/core/class.data.php:
|
743 |
-
#: inc/core/class.data.php:703
|
744 |
msgid "Soft"
|
745 |
msgstr "Мягкий"
|
746 |
|
747 |
-
#: inc/core/class.data.php:
|
748 |
-
#: inc/core/class.data.php:704
|
749 |
msgid "Glass"
|
750 |
msgstr "Стекло"
|
751 |
|
752 |
-
#: inc/core/class.data.php:
|
753 |
-
#: inc/core/class.data.php:705
|
754 |
msgid "Bubbles"
|
755 |
msgstr "Пузыри"
|
756 |
|
757 |
-
#: inc/core/class.data.php:
|
758 |
-
#: inc/core/class.data.php:706
|
759 |
msgid "Noise"
|
760 |
msgstr "Шум"
|
761 |
|
762 |
-
#: inc/core/class.data.php:
|
763 |
msgid "Stroked"
|
764 |
msgstr "Прошитый"
|
765 |
|
766 |
-
#: inc/core/class.data.php:
|
767 |
msgid "3D"
|
768 |
msgstr "3D"
|
769 |
|
770 |
-
#: inc/core/class.data.php:
|
771 |
msgid "Button background style preset"
|
772 |
msgstr "Стиль фона кнопки"
|
773 |
|
774 |
-
#: inc/core/class.data.php:
|
775 |
msgid "Button background color"
|
776 |
msgstr "Цвет фона кнопки"
|
777 |
|
778 |
-
#: inc/core/class.data.php:
|
779 |
msgid "Button text color"
|
780 |
msgstr "Цвет текста кнопки"
|
781 |
|
782 |
-
#: inc/core/class.data.php:
|
783 |
msgid "Button size"
|
784 |
msgstr "Размер кнопки"
|
785 |
|
786 |
-
#: inc/core/class.data.php:
|
787 |
msgid "Fluid"
|
788 |
msgstr "Резиновая"
|
789 |
|
790 |
-
#: inc/core/class.data.php:
|
791 |
msgid "Fluid buttons has 100% width"
|
792 |
msgstr "Резиновые кнопки имеют ширину 100%"
|
793 |
|
794 |
-
#: inc/core/class.data.php:
|
795 |
msgid "Is button centered on the page"
|
796 |
msgstr "Кнопка выровнена по центру страницы"
|
797 |
|
798 |
-
#: inc/core/class.data.php:
|
799 |
-
|
800 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
801 |
msgid "Radius"
|
802 |
msgstr "Радиус"
|
803 |
|
804 |
-
#: inc/core/class.data.php:
|
805 |
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
806 |
-
msgstr "
|
|
|
807 |
|
808 |
-
#: inc/core/class.data.php:
|
809 |
msgid "You can upload custom icon for this button or pick a built-in icon"
|
810 |
msgstr "Вы можете загрузить свою иконку для этой кнопки или выбрать из списка"
|
811 |
|
812 |
-
#: inc/core/class.data.php:
|
813 |
-
msgid "
|
814 |
-
msgstr "
|
815 |
-
|
816 |
-
#: inc/core/class.data.php:608
|
817 |
-
msgid "Text shadow color"
|
818 |
-
msgstr "Цвет тени текста"
|
819 |
-
|
820 |
-
#: inc/core/class.data.php:608
|
821 |
-
msgid "Color of button text shadow"
|
822 |
-
msgstr "Цвет тени текста кнопки"
|
823 |
-
|
824 |
-
#: inc/core/class.data.php:613
|
825 |
-
#: inc/core/class.data.php:1823
|
826 |
-
msgid "None"
|
827 |
-
msgstr "Нет"
|
828 |
-
|
829 |
-
#: inc/core/class.data.php:614
|
830 |
-
#: inc/core/class.data.php:840
|
831 |
-
msgid "Top"
|
832 |
-
msgstr "Сверху"
|
833 |
-
|
834 |
-
#: inc/core/class.data.php:616
|
835 |
-
#: inc/core/class.data.php:841
|
836 |
-
msgid "Bottom"
|
837 |
-
msgstr "Снизу"
|
838 |
-
|
839 |
-
#: inc/core/class.data.php:618
|
840 |
-
msgid "Top right"
|
841 |
-
msgstr "Сверху справа"
|
842 |
-
|
843 |
-
#: inc/core/class.data.php:619
|
844 |
-
msgid "Top left"
|
845 |
-
msgstr "Сверху слева"
|
846 |
-
|
847 |
-
#: inc/core/class.data.php:619
|
848 |
-
msgid "Bottom right"
|
849 |
-
msgstr "Снизу справа"
|
850 |
-
|
851 |
-
#: inc/core/class.data.php:619
|
852 |
-
msgid "Bottom left"
|
853 |
-
msgstr "Снизу слева"
|
854 |
-
|
855 |
-
#: inc/core/class.data.php:621
|
856 |
-
msgid "Text shadow position"
|
857 |
-
msgstr "Положение тени текста"
|
858 |
-
|
859 |
-
#: inc/core/class.data.php:621
|
860 |
-
msgid "Position of button text shadow"
|
861 |
-
msgstr "Положение тени текста кнопки"
|
862 |
|
863 |
#: inc/core/class.data.php:625
|
|
|
|
|
|
|
|
|
864 |
msgid "Description"
|
865 |
msgstr "Описание"
|
866 |
|
867 |
-
#: inc/core/class.data.php:626
|
868 |
-
msgid "Small description under button text. This option is incompatible with icon."
|
869 |
-
msgstr "Небольшое описание под текстом кнопки. Это описание не совместимо с иконками кнопок."
|
870 |
-
|
871 |
#: inc/core/class.data.php:630
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
872 |
msgid "onClick"
|
873 |
msgstr "onClick"
|
874 |
|
875 |
-
#: inc/core/class.data.php:
|
876 |
msgid "Advanced JavaScript code for onClick action"
|
877 |
msgstr "JavaScript код для атрибута onClick"
|
878 |
|
879 |
-
#: inc/core/class.data.php:
|
880 |
msgid "Button text"
|
881 |
msgstr "Текст кнопки"
|
882 |
|
883 |
-
#: inc/core/class.data.php:
|
884 |
msgid "Styled button"
|
885 |
msgstr "Стильная кнопка"
|
886 |
|
887 |
-
#: inc/core/class.data.php:
|
888 |
msgid "Service"
|
889 |
msgstr "Услуга"
|
890 |
|
891 |
-
#: inc/core/class.data.php:
|
892 |
-
#: inc/core/class.shortcodes.php:409
|
893 |
msgid "Service title"
|
894 |
msgstr "Название услуги"
|
895 |
|
896 |
-
#: inc/core/class.data.php:
|
897 |
msgid "Service name"
|
898 |
msgstr "Название услуги"
|
899 |
|
900 |
-
#: inc/core/class.data.php:
|
901 |
msgid "You can upload custom icon for this box"
|
902 |
msgstr "Вы можете загрузить свою иконку для этого блока"
|
903 |
|
904 |
-
#: inc/core/class.data.php:
|
905 |
msgid "Icon size"
|
906 |
msgstr "Размер иконки"
|
907 |
|
908 |
-
#: inc/core/class.data.php:
|
909 |
msgid "Size of the uploaded icon in pixels"
|
910 |
msgstr "Размер загруженной иконки в пикселях"
|
911 |
|
912 |
-
#: inc/core/class.data.php:
|
913 |
msgid "Service description"
|
914 |
msgstr "Описание услуги"
|
915 |
|
916 |
-
#: inc/core/class.data.php:
|
917 |
msgid "Service box with title"
|
918 |
msgstr "Блок услуга с заголовком"
|
919 |
|
920 |
-
#: inc/core/class.data.php:
|
921 |
msgid "Box title"
|
922 |
msgstr "Заголовок блока"
|
923 |
|
924 |
-
#: inc/core/class.data.php:
|
925 |
msgid "Text for the box title"
|
926 |
msgstr "Текст для заголовка блока"
|
927 |
|
928 |
-
#: inc/core/class.data.php:
|
929 |
msgid "Box style preset"
|
930 |
msgstr "Стиль блока"
|
931 |
|
932 |
-
#: inc/core/class.data.php:
|
933 |
msgid "Color"
|
934 |
msgstr "Цвет"
|
935 |
|
936 |
-
#: inc/core/class.data.php:
|
937 |
msgid "Color for the box title and borders"
|
938 |
msgstr "Цвет заголовка блока и его рамки"
|
939 |
|
940 |
-
#: inc/core/class.data.php:
|
941 |
msgid "Title text color"
|
942 |
msgstr "Цвет текста заголовка"
|
943 |
|
944 |
-
#: inc/core/class.data.php:
|
945 |
msgid "Color for the box title text"
|
946 |
msgstr "Цвет текста в заголовке блока"
|
947 |
|
948 |
-
#: inc/core/class.data.php:
|
949 |
msgid "Box corners radius"
|
950 |
msgstr "Радиус углов"
|
951 |
|
952 |
-
#: inc/core/class.data.php:
|
953 |
msgid "Box content"
|
954 |
msgstr "Содержимое блока"
|
955 |
|
956 |
-
#: inc/core/class.data.php:
|
957 |
msgid "Colored box with caption"
|
958 |
msgstr "Цветной блок с заголовком"
|
959 |
|
960 |
-
#: inc/core/class.data.php:
|
961 |
msgid "Note"
|
962 |
msgstr "Заметка"
|
963 |
|
964 |
-
#: inc/core/class.data.php:
|
965 |
msgid "Note background color"
|
966 |
msgstr "Цвет фона заметки"
|
967 |
|
968 |
-
#: inc/core/class.data.php:
|
969 |
msgid "Note text color"
|
970 |
msgstr "Цвет текста заметки"
|
971 |
|
972 |
-
#: inc/core/class.data.php:
|
973 |
msgid "Note corners radius"
|
974 |
msgstr "Радиус углов"
|
975 |
|
976 |
-
#: inc/core/class.data.php:
|
977 |
msgid "Note text"
|
978 |
msgstr "Текст заметки"
|
979 |
|
980 |
-
#: inc/core/class.data.php:
|
981 |
msgid "Colored box"
|
982 |
msgstr "Цветной блок"
|
983 |
|
984 |
-
#: inc/core/class.data.php:
|
985 |
msgid "Lightbox"
|
986 |
msgstr "Лайтбокс"
|
987 |
|
988 |
-
#: inc/core/class.data.php:
|
989 |
msgid "Iframe"
|
990 |
msgstr "Фрейм (iframe)"
|
991 |
|
992 |
-
#: inc/core/class.data.php:
|
993 |
msgid "Image"
|
994 |
msgstr "Изображение"
|
995 |
|
996 |
-
#: inc/core/class.data.php:
|
997 |
msgid "Inline (html content)"
|
998 |
msgstr "HTML элемент"
|
999 |
|
1000 |
-
#: inc/core/class.data.php:
|
1001 |
msgid "Content type"
|
1002 |
msgstr "Тип содержимого"
|
1003 |
|
1004 |
-
#: inc/core/class.data.php:
|
1005 |
msgid "Select type of the lightbox window content"
|
1006 |
msgstr "Выберите тип содержимого в окне лайтбокса"
|
1007 |
|
1008 |
-
#: inc/core/class.data.php:
|
1009 |
msgid "Content source"
|
1010 |
msgstr "Источник содержимого"
|
1011 |
|
1012 |
-
#: inc/core/class.data.php:
|
1013 |
-
msgid "
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1017 |
msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
|
1018 |
-
msgstr "
|
|
|
1019 |
|
1020 |
-
#: inc/core/class.data.php:
|
1021 |
msgid "Lightbox window with custom content"
|
1022 |
msgstr "Лайтбокс с произвольным содержимым"
|
1023 |
|
1024 |
-
#: inc/core/class.data.php:
|
1025 |
msgid "Tooltip"
|
1026 |
msgstr "Подсказка"
|
1027 |
|
1028 |
-
#: inc/core/class.data.php:
|
1029 |
msgid "Basic: Light"
|
1030 |
msgstr "Базовый: Светлый"
|
1031 |
|
1032 |
-
#: inc/core/class.data.php:
|
1033 |
msgid "Basic: Dark"
|
1034 |
msgstr "Базовый: Темный"
|
1035 |
|
1036 |
-
#: inc/core/class.data.php:
|
1037 |
msgid "Basic: Yellow"
|
1038 |
msgstr "Базовый: Желтый"
|
1039 |
|
1040 |
-
#: inc/core/class.data.php:
|
1041 |
msgid "Basic: Green"
|
1042 |
msgstr "Базовый: Зеленый"
|
1043 |
|
1044 |
-
#: inc/core/class.data.php:
|
1045 |
msgid "Basic: Red"
|
1046 |
msgstr "Базовый: Красный"
|
1047 |
|
1048 |
-
#: inc/core/class.data.php:
|
1049 |
msgid "Basic: Blue"
|
1050 |
msgstr "Базовый: Голубой"
|
1051 |
|
1052 |
-
#: inc/core/class.data.php:
|
1053 |
msgid "Youtube"
|
1054 |
msgstr "Youtube"
|
1055 |
|
1056 |
-
#: inc/core/class.data.php:
|
1057 |
msgid "Tipsy"
|
1058 |
msgstr "Tipsy"
|
1059 |
|
1060 |
-
#: inc/core/class.data.php:
|
1061 |
msgid "Bootstrap"
|
1062 |
msgstr "Bootstrap"
|
1063 |
|
1064 |
-
#: inc/core/class.data.php:
|
1065 |
msgid "jTools"
|
1066 |
msgstr "jTools"
|
1067 |
|
1068 |
-
#: inc/core/class.data.php:
|
1069 |
msgid "Tipped"
|
1070 |
msgstr "Tipped"
|
1071 |
|
1072 |
-
#: inc/core/class.data.php:
|
1073 |
msgid "Cluetip"
|
1074 |
msgstr "Cluetip"
|
1075 |
|
1076 |
-
#: inc/core/class.data.php:
|
1077 |
msgid "Tooltip window style"
|
1078 |
msgstr "Стиль окна подсказки"
|
1079 |
|
1080 |
-
#: inc/core/class.data.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1081 |
msgid "Position"
|
1082 |
msgstr "Положение"
|
1083 |
|
1084 |
-
#: inc/core/class.data.php:
|
1085 |
msgid "Tooltip position"
|
1086 |
msgstr "Положение всплывающей подсказки"
|
1087 |
|
1088 |
-
#: inc/core/class.data.php:
|
1089 |
msgid "Shadow"
|
1090 |
msgstr "Тень"
|
1091 |
|
1092 |
-
#: inc/core/class.data.php:
|
1093 |
-
msgid "
|
|
|
|
|
1094 |
msgstr "Добавить тень окну подсказки. Тень работает только для базовых стилей."
|
1095 |
|
1096 |
-
#: inc/core/class.data.php:
|
1097 |
msgid "Rounded corners"
|
1098 |
msgstr "Скругление"
|
1099 |
|
1100 |
-
#: inc/core/class.data.php:
|
1101 |
-
msgid "
|
1102 |
-
|
|
|
|
|
|
|
|
|
1103 |
|
1104 |
-
#: inc/core/class.data.php:
|
1105 |
msgid "Font size"
|
1106 |
msgstr "Размер шрифта"
|
1107 |
|
1108 |
-
#: inc/core/class.data.php:
|
1109 |
msgid "Tooltip font size"
|
1110 |
msgstr "Размер шрифта подсказки"
|
1111 |
|
1112 |
-
#: inc/core/class.data.php:
|
1113 |
msgid "Tooltip title"
|
1114 |
msgstr "Заголовок подсказки"
|
1115 |
|
1116 |
-
#: inc/core/class.data.php:
|
1117 |
-
msgid "
|
1118 |
-
|
|
|
|
|
|
|
1119 |
|
1120 |
-
#: inc/core/class.data.php:
|
1121 |
-
#: inc/core/class.shortcodes.php:496
|
1122 |
msgid "Tooltip text"
|
1123 |
msgstr "Текст подсказки"
|
1124 |
|
1125 |
-
#: inc/core/class.data.php:
|
1126 |
msgid "Tooltip content"
|
1127 |
msgstr "Содержимое подсказки"
|
1128 |
|
1129 |
-
#: inc/core/class.data.php:
|
1130 |
msgid "Enter tooltip content here"
|
1131 |
msgstr "Введите сюда содержимое подсказки"
|
1132 |
|
1133 |
-
#: inc/core/class.data.php:
|
1134 |
msgid "Show and hide on mouse hover"
|
1135 |
msgstr "Показать и скрыть при наведении мыши"
|
1136 |
|
1137 |
-
#: inc/core/class.data.php:
|
1138 |
msgid "Show and hide by mouse click"
|
1139 |
msgstr "Показать и скрыть по клику мыши"
|
1140 |
|
1141 |
-
#: inc/core/class.data.php:
|
1142 |
msgid "Always visible"
|
1143 |
msgstr "Всегда видима"
|
1144 |
|
1145 |
-
#: inc/core/class.data.php:
|
1146 |
msgid "Behavior"
|
1147 |
msgstr "Поведение"
|
1148 |
|
1149 |
-
#: inc/core/class.data.php:
|
1150 |
msgid "Select tooltip behavior"
|
1151 |
msgstr "Выберите поведение подсказки"
|
1152 |
|
1153 |
-
#: inc/core/class.data.php:
|
1154 |
msgid "Close button"
|
1155 |
msgstr "Кнопка закрыть"
|
1156 |
|
1157 |
-
#: inc/core/class.data.php:
|
1158 |
msgid "Show close button"
|
1159 |
msgstr "Показывать кнопку закрыть"
|
1160 |
|
1161 |
-
#: inc/core/class.data.php:
|
1162 |
msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
|
1163 |
-
msgstr "
|
|
|
1164 |
|
1165 |
-
#: inc/core/class.data.php:
|
1166 |
msgid "Tooltip window with custom content"
|
1167 |
msgstr "Всплывающая подсказка с произвольным содержимым"
|
1168 |
|
1169 |
-
#: inc/core/class.data.php:
|
1170 |
msgid "Private"
|
1171 |
msgstr "Заметка для авторов"
|
1172 |
|
1173 |
-
#: inc/core/class.data.php:
|
1174 |
msgid "Private note text"
|
1175 |
msgstr "Текст приватной заметки"
|
1176 |
|
1177 |
-
#: inc/core/class.data.php:
|
1178 |
msgid "Private note for post authors"
|
1179 |
msgstr "Приватный текст для других авторов"
|
1180 |
|
1181 |
-
#: inc/core/class.data.php:
|
1182 |
msgid "YouTube"
|
1183 |
msgstr "YouTube"
|
1184 |
|
1185 |
-
#: inc/core/class.data.php:
|
1186 |
-
#: inc/core/class.data.php:
|
1187 |
-
#: inc/core/class.data.php:
|
1188 |
-
#: inc/core/class.data.php:1303
|
1189 |
-
#: inc/core/class.data.php:1401
|
1190 |
msgid "Url"
|
1191 |
msgstr "Ссылка"
|
1192 |
|
1193 |
-
#: inc/core/class.data.php:
|
1194 |
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
1195 |
-
msgstr "
|
1196 |
-
|
1197 |
-
|
1198 |
-
#: inc/core/class.data.php:
|
1199 |
-
#: inc/core/class.data.php:
|
1200 |
-
#: inc/core/class.data.php:
|
1201 |
-
#: inc/core/class.data.php:
|
1202 |
-
#: inc/core/class.data.php:
|
1203 |
-
#: inc/core/class.data.php:1450
|
1204 |
-
#: inc/core/class.data.php:1501
|
1205 |
-
#: inc/core/class.data.php:1593
|
1206 |
-
#: inc/core/class.data.php:1701
|
1207 |
msgid "Width"
|
1208 |
msgstr "Ширина"
|
1209 |
|
1210 |
-
#: inc/core/class.data.php:
|
1211 |
-
#: inc/core/class.data.php:
|
1212 |
-
#: inc/core/class.data.php:1051
|
1213 |
-
#: inc/core/class.data.php:1149
|
1214 |
msgid "Player width"
|
1215 |
msgstr "Ширина плеера"
|
1216 |
|
1217 |
-
#: inc/core/class.data.php:
|
1218 |
-
#: inc/core/class.data.php:
|
1219 |
-
#: inc/core/class.data.php:1060
|
1220 |
-
#: inc/core/class.data.php:1158
|
1221 |
msgid "Player height"
|
1222 |
msgstr "Высота плеера"
|
1223 |
|
1224 |
-
#: inc/core/class.data.php:
|
1225 |
-
#: inc/core/class.data.php:
|
1226 |
-
#: inc/core/class.data.php:
|
1227 |
-
#: inc/core/class.data.php:
|
1228 |
-
#: inc/core/class.data.php:1465
|
1229 |
-
#: inc/core/class.data.php:1514
|
1230 |
-
#: inc/core/class.data.php:1606
|
1231 |
msgid "Responsive"
|
1232 |
msgstr "Отзывчивость (responsive)"
|
1233 |
|
1234 |
-
#: inc/core/class.data.php:
|
1235 |
-
#: inc/core/class.data.php:
|
1236 |
-
#: inc/core/class.data.php:1066
|
1237 |
msgid "Ignore width and height parameters and make player responsive"
|
1238 |
-
msgstr "
|
1239 |
-
|
1240 |
-
|
1241 |
-
#: inc/core/class.data.php:
|
1242 |
-
#: inc/core/class.data.php:
|
1243 |
-
#: inc/core/class.data.php:
|
1244 |
-
#: inc/core/class.data.php:1549
|
1245 |
-
#: inc/core/class.data.php:1657
|
1246 |
msgid "Autoplay"
|
1247 |
msgstr "Автовоспроизведение"
|
1248 |
|
1249 |
-
#: inc/core/class.data.php:
|
1250 |
-
#: inc/core/class.data.php:1022
|
1251 |
msgid "Play video automatically when page is loaded"
|
1252 |
msgstr "Воспроизвести видео автоматически при открытии страницы"
|
1253 |
|
1254 |
-
#: inc/core/class.data.php:
|
1255 |
msgid "YouTube video"
|
1256 |
msgstr "Видео YouTube"
|
1257 |
|
1258 |
-
#: inc/core/class.data.php:
|
1259 |
msgid "Vimeo"
|
1260 |
msgstr "Vimeo"
|
1261 |
|
1262 |
-
#: inc/core/class.data.php:
|
1263 |
msgid "Url of Vimeo page with video"
|
1264 |
msgstr "Ссылка на страницу Vimeo с видео"
|
1265 |
|
1266 |
-
#: inc/core/class.data.php:
|
1267 |
msgid "Vimeo video"
|
1268 |
msgstr "Видео Vimeo"
|
1269 |
|
1270 |
-
#: inc/core/class.data.php:
|
1271 |
msgid "Screenr"
|
1272 |
msgstr "Screenr"
|
1273 |
|
1274 |
-
#: inc/core/class.data.php:
|
1275 |
msgid "Url of Screenr page with video"
|
1276 |
msgstr "Ссылка на страницу Screenr с видео"
|
1277 |
|
1278 |
-
#: inc/core/class.data.php:
|
1279 |
msgid "Screenr video"
|
1280 |
msgstr "Видео Screenr"
|
1281 |
|
1282 |
-
#: inc/core/class.data.php:
|
1283 |
msgid "Audio"
|
1284 |
msgstr "Аудио"
|
1285 |
|
1286 |
-
#: inc/core/class.data.php:
|
1287 |
-
#: inc/core/class.data.php:1127
|
1288 |
msgid "File"
|
1289 |
msgstr "Файл"
|
1290 |
|
1291 |
-
#: inc/core/class.data.php:
|
1292 |
msgid "Audio file url. Supported formats: mp3, ogg"
|
1293 |
msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
|
1294 |
|
1295 |
-
#: inc/core/class.data.php:
|
1296 |
-
msgid "
|
1297 |
-
|
|
|
|
|
|
|
|
|
|
|
1298 |
|
1299 |
-
#: inc/core/class.data.php:
|
1300 |
-
#: inc/core/class.data.php:1170
|
1301 |
msgid "Play file automatically when page is loaded"
|
1302 |
msgstr "Воспроизводить файл автоматически при открытии страницы"
|
1303 |
|
1304 |
-
#: inc/core/class.data.php:
|
1305 |
-
#: inc/core/class.data.php:1175
|
1306 |
msgid "Loop"
|
1307 |
msgstr "Повтор"
|
1308 |
|
1309 |
-
#: inc/core/class.data.php:
|
1310 |
-
#: inc/core/class.data.php:1176
|
1311 |
msgid "Repeat when playback is ended"
|
1312 |
msgstr "Повторять, когда воспроизведение окночено"
|
1313 |
|
1314 |
-
#: inc/core/class.data.php:
|
1315 |
msgid "Custom audio player"
|
1316 |
msgstr "Настраиваемый аудио-плеер"
|
1317 |
|
1318 |
-
#: inc/core/class.data.php:
|
1319 |
msgid "Video"
|
1320 |
msgstr "Видео"
|
1321 |
|
1322 |
-
#: inc/core/class.data.php:
|
1323 |
msgid "Url to mp4/flv video-file"
|
1324 |
msgstr "Ссылка на mp4/flv видео-файл"
|
1325 |
|
1326 |
-
#: inc/core/class.data.php:
|
1327 |
msgid "Poster"
|
1328 |
msgstr "Постер"
|
1329 |
|
1330 |
-
#: inc/core/class.data.php:
|
1331 |
msgid "Url to poster image, that will be shown before playback"
|
1332 |
-
msgstr "
|
|
|
|
|
1333 |
|
1334 |
-
#: inc/core/class.data.php:
|
1335 |
msgid "Player title"
|
1336 |
msgstr "Заголовок плеера"
|
1337 |
|
1338 |
-
#: inc/core/class.data.php:
|
1339 |
msgid "Controls"
|
1340 |
msgstr "Элементы управления"
|
1341 |
|
1342 |
-
#: inc/core/class.data.php:
|
1343 |
msgid "Show player controls (play/pause etc.) or not"
|
1344 |
-
msgstr "
|
|
|
1345 |
|
1346 |
-
#: inc/core/class.data.php:
|
1347 |
msgid "Custom video player"
|
1348 |
msgstr "Настраиваемый видео-плеер"
|
1349 |
|
1350 |
-
#: inc/core/class.data.php:
|
1351 |
msgid "Table"
|
1352 |
msgstr "Таблица"
|
1353 |
|
1354 |
-
#: inc/core/class.data.php:
|
1355 |
msgid "CSV file"
|
1356 |
msgstr "CSV файл"
|
1357 |
|
1358 |
-
#: inc/core/class.data.php:
|
1359 |
msgid "Upload CSV file if you want to create HTML-table from file"
|
1360 |
-
msgstr "
|
|
|
1361 |
|
1362 |
-
#: inc/core/class.data.php:
|
1363 |
msgid ""
|
1364 |
"<table>\n"
|
1365 |
"<tr>\n"
|
@@ -1383,624 +1322,708 @@ msgstr ""
|
|
1383 |
"</tr>\n"
|
1384 |
"</table>"
|
1385 |
|
1386 |
-
#: inc/core/class.data.php:
|
1387 |
msgid "Styled table from HTML or CSV file"
|
1388 |
msgstr "Стильная таблица из HTML или CSV файла"
|
1389 |
|
1390 |
-
#: inc/core/class.data.php:
|
1391 |
msgid "Permalink"
|
1392 |
msgstr "Постоянная ссылка"
|
1393 |
|
1394 |
-
#: inc/core/class.data.php:
|
1395 |
msgid "ID"
|
1396 |
msgstr "ID"
|
1397 |
|
1398 |
-
#: inc/core/class.data.php:
|
1399 |
msgid "Post or page ID"
|
1400 |
msgstr "ID записи или страницы"
|
1401 |
|
1402 |
-
#: inc/core/class.data.php:
|
1403 |
msgid "Link target. blank - link will be opened in new window/tab"
|
1404 |
-
msgstr "
|
|
|
|
|
1405 |
|
1406 |
-
#: inc/core/class.data.php:
|
1407 |
msgid "Permalink to specified post/page"
|
1408 |
msgstr "Постоянная ссылка на страницу"
|
1409 |
|
1410 |
-
#: inc/core/class.data.php:
|
1411 |
msgid "Members"
|
1412 |
msgstr "Участники"
|
1413 |
|
1414 |
-
#: inc/core/class.data.php:
|
1415 |
-
#: inc/core/class.shortcodes.php:698
|
1416 |
msgid "This content is for registered users only. Please %login%."
|
1417 |
-
msgstr "
|
|
|
1418 |
|
1419 |
-
#: inc/core/class.data.php:
|
1420 |
msgid "Message"
|
1421 |
msgstr "Сообщение"
|
1422 |
|
1423 |
-
#: inc/core/class.data.php:
|
1424 |
msgid "Message for not logged users"
|
1425 |
msgstr "Собщение для неавторизованных"
|
1426 |
|
1427 |
-
#: inc/core/class.data.php:
|
1428 |
msgid "Box color"
|
1429 |
msgstr "Цвет блока"
|
1430 |
|
1431 |
-
#: inc/core/class.data.php:
|
1432 |
msgid "This color will applied only to box for not logged users"
|
1433 |
-
msgstr "
|
|
|
1434 |
|
1435 |
-
#: inc/core/class.data.php:
|
1436 |
-
#: inc/core/class.shortcodes.php:701
|
1437 |
msgid "login"
|
1438 |
msgstr "войдите"
|
1439 |
|
1440 |
-
#: inc/core/class.data.php:
|
1441 |
msgid "Login link text"
|
1442 |
msgstr "Текст ссылки войти"
|
1443 |
|
1444 |
-
#: inc/core/class.data.php:
|
1445 |
msgid "Text for the login link"
|
1446 |
msgstr "Текст ссылки ВОЙТИ"
|
1447 |
|
1448 |
-
#: inc/core/class.data.php:
|
1449 |
msgid "Login link url"
|
1450 |
msgstr "Адрес ссылки войти"
|
1451 |
|
1452 |
-
#: inc/core/class.data.php:
|
1453 |
msgid "Content for logged members"
|
1454 |
msgstr "Содержимое для авторизованых пользователей"
|
1455 |
|
1456 |
-
#: inc/core/class.data.php:
|
1457 |
msgid "Content for logged in members only"
|
1458 |
msgstr "Ссодержимое для авторизованых"
|
1459 |
|
1460 |
-
#: inc/core/class.data.php:
|
1461 |
msgid "Guests"
|
1462 |
msgstr "Гости"
|
1463 |
|
1464 |
-
#: inc/core/class.data.php:
|
1465 |
msgid "Content for guests"
|
1466 |
msgstr "Содержимое для гостей"
|
1467 |
|
1468 |
-
#: inc/core/class.data.php:
|
1469 |
msgid "Content for guests only"
|
1470 |
msgstr "Ссодержимое только для гостей"
|
1471 |
|
1472 |
-
#: inc/core/class.data.php:
|
1473 |
msgid "RSS Feed"
|
1474 |
msgstr "RSS лента"
|
1475 |
|
1476 |
-
#: inc/core/class.data.php:
|
1477 |
msgid "Url to RSS-feed"
|
1478 |
msgstr "Ссылка на RSS-ленту"
|
1479 |
|
1480 |
-
#: inc/core/class.data.php:
|
1481 |
msgid "Limit"
|
1482 |
msgstr "Лимит"
|
1483 |
|
1484 |
-
#: inc/core/class.data.php:
|
1485 |
msgid "Number of items to show"
|
1486 |
msgstr "Количество элементов для отображения"
|
1487 |
|
1488 |
-
#: inc/core/class.data.php:
|
1489 |
msgid "Feed grabber"
|
1490 |
msgstr "Граббер новостных лент"
|
1491 |
|
1492 |
-
#: inc/core/class.data.php:
|
1493 |
msgid "Menu"
|
1494 |
msgstr "Меню"
|
1495 |
|
1496 |
-
#: inc/core/class.data.php:
|
1497 |
msgid "Menu name"
|
1498 |
msgstr "Имя меню"
|
1499 |
|
1500 |
-
#: inc/core/class.data.php:
|
1501 |
msgid "Custom menu name. Ex: Main menu"
|
1502 |
msgstr "Имя произвольного меню. Например: Главное меню"
|
1503 |
|
1504 |
-
#: inc/core/class.data.php:
|
1505 |
msgid "Custom menu by name"
|
1506 |
msgstr "Произвольное меню"
|
1507 |
|
1508 |
-
#: inc/core/class.data.php:
|
1509 |
msgid "Sub pages"
|
1510 |
msgstr "Подстраницы"
|
1511 |
|
1512 |
-
#: inc/core/class.data.php:
|
1513 |
-
#: inc/core/class.data.php:1379
|
1514 |
msgid "Depth"
|
1515 |
msgstr "Глубина"
|
1516 |
|
1517 |
-
#: inc/core/class.data.php:
|
1518 |
msgid "Max depth level of children pages"
|
1519 |
msgstr "Максимальная глубина дочерних страниц"
|
1520 |
|
1521 |
-
#: inc/core/class.data.php:
|
1522 |
msgid "Parent ID"
|
1523 |
msgstr "ID родителя"
|
1524 |
|
1525 |
-
#: inc/core/class.data.php:
|
1526 |
msgid "ID of the parent page. Leave blank to use current page"
|
1527 |
-
msgstr "
|
|
|
|
|
1528 |
|
1529 |
-
#: inc/core/class.data.php:
|
1530 |
msgid "List of sub pages"
|
1531 |
msgstr "Список дочерних страниц"
|
1532 |
|
1533 |
-
#: inc/core/class.data.php:
|
1534 |
msgid "Siblings"
|
1535 |
msgstr "Соседние страницы"
|
1536 |
|
1537 |
-
#: inc/core/class.data.php:
|
1538 |
msgid "Max depth level"
|
1539 |
msgstr "Максимальный уровень вложенности"
|
1540 |
|
1541 |
-
#: inc/core/class.data.php:
|
1542 |
msgid "List of cureent page siblings"
|
1543 |
msgstr "Список страниц, соседних с текущей"
|
1544 |
|
1545 |
-
#: inc/core/class.data.php:
|
1546 |
msgid "Document"
|
1547 |
msgstr "Документ"
|
1548 |
|
1549 |
-
#: inc/core/class.data.php:
|
1550 |
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1551 |
-
msgstr "
|
|
|
1552 |
|
1553 |
-
#: inc/core/class.data.php:
|
1554 |
msgid "Viewer width"
|
1555 |
msgstr "Ширина просмотрщика"
|
1556 |
|
1557 |
-
#: inc/core/class.data.php:
|
1558 |
msgid "Viewer height"
|
1559 |
msgstr "Высота просмотрщика"
|
1560 |
|
1561 |
-
#: inc/core/class.data.php:
|
1562 |
msgid "Ignore width and height parameters and make viewer responsive"
|
1563 |
msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
|
1564 |
|
1565 |
-
#: inc/core/class.data.php:
|
1566 |
msgid "Document viewer by Google"
|
1567 |
msgstr "Просмотрщик документов от Google"
|
1568 |
|
1569 |
-
#: inc/core/class.data.php:
|
1570 |
msgid "Gmap"
|
1571 |
msgstr "Google карта"
|
1572 |
|
1573 |
-
#: inc/core/class.data.php:
|
1574 |
msgid "Map width"
|
1575 |
msgstr "Ширина карты"
|
1576 |
|
1577 |
-
#: inc/core/class.data.php:
|
1578 |
msgid "Map height"
|
1579 |
msgstr "Высота карты"
|
1580 |
|
1581 |
-
#: inc/core/class.data.php:
|
1582 |
msgid "Ignore width and height parameters and make map responsive"
|
1583 |
msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
|
1584 |
|
1585 |
-
#: inc/core/class.data.php:
|
1586 |
msgid "Marker"
|
1587 |
msgstr "Маркер"
|
1588 |
|
1589 |
-
#: inc/core/class.data.php:
|
1590 |
msgid "Address for the marker. You can type it in any language"
|
1591 |
msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
|
1592 |
|
1593 |
-
#: inc/core/class.data.php:
|
1594 |
msgid "Maps by Google"
|
1595 |
msgstr "Карты от Google"
|
1596 |
|
1597 |
-
#: inc/core/class.data.php:
|
1598 |
msgid "Slider"
|
1599 |
msgstr "Слайдер"
|
1600 |
|
1601 |
-
#: inc/core/class.data.php:
|
1602 |
msgid "Choose source gallery, that will be used for this slider"
|
1603 |
-
msgstr "
|
|
|
|
|
1604 |
|
1605 |
-
#: inc/core/class.data.php:
|
1606 |
msgid "Slider width (in pixels)"
|
1607 |
msgstr "Ширина слайдера (в пикселях)"
|
1608 |
|
1609 |
-
#: inc/core/class.data.php:
|
1610 |
msgid "Slider height (in pixels)"
|
1611 |
msgstr "Высота слайдера (в пикселях)"
|
1612 |
|
1613 |
-
#: inc/core/class.data.php:
|
1614 |
msgid "Ignore width and height parameters and make slider responsive"
|
1615 |
msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
|
1616 |
|
1617 |
-
#: inc/core/class.data.php:
|
1618 |
-
#: inc/core/class.data.php:
|
1619 |
-
#: inc/core/class.data.php:1719
|
1620 |
msgid "Show titles"
|
1621 |
msgstr "Показывать заголовки"
|
1622 |
|
1623 |
-
#: inc/core/class.data.php:
|
1624 |
msgid "Display slide titles"
|
1625 |
msgstr "Отображать заголовки слайдов"
|
1626 |
|
1627 |
-
#: inc/core/class.data.php:
|
1628 |
msgid "Is slider centered on the page"
|
1629 |
msgstr "Слайдер выровнен по центру страницы"
|
1630 |
|
1631 |
-
#: inc/core/class.data.php:
|
1632 |
-
#: inc/core/class.data.php:1638
|
1633 |
msgid "Arrows"
|
1634 |
msgstr "Стрелки"
|
1635 |
|
1636 |
-
#: inc/core/class.data.php:
|
1637 |
-
#: inc/core/class.data.php:1638
|
1638 |
msgid "Show left and right arrows"
|
1639 |
msgstr "Показывать стрелки влево/вправо"
|
1640 |
|
1641 |
-
#: inc/core/class.data.php:
|
1642 |
-
#: inc/core/class.data.php:1643
|
1643 |
msgid "Pagination"
|
1644 |
msgstr "Страницы"
|
1645 |
|
1646 |
-
#: inc/core/class.data.php:
|
1647 |
-
#: inc/core/class.data.php:1644
|
1648 |
msgid "Show pagination"
|
1649 |
msgstr "Показывать страницы"
|
1650 |
|
1651 |
-
#: inc/core/class.data.php:
|
1652 |
-
#: inc/core/class.data.php:1648
|
1653 |
msgid "Mouse wheel control"
|
1654 |
msgstr "Управление колесом мыши"
|
1655 |
|
1656 |
-
#: inc/core/class.data.php:
|
1657 |
msgid "Allow to change slides with mouse wheel"
|
1658 |
msgstr "Разрешить перелистывание слайдов колесом мышки"
|
1659 |
|
1660 |
-
#: inc/core/class.data.php:
|
1661 |
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
1662 |
-
msgstr "
|
|
|
|
|
1663 |
|
1664 |
-
#: inc/core/class.data.php:
|
1665 |
-
#: inc/core/class.data.php:1666
|
1666 |
msgid "Speed"
|
1667 |
msgstr "Скорость"
|
1668 |
|
1669 |
-
#: inc/core/class.data.php:
|
1670 |
-
#: inc/core/class.data.php:1666
|
1671 |
msgid "Specify animation speed"
|
1672 |
msgstr "Укажите скорость анимации"
|
1673 |
|
1674 |
-
#: inc/core/class.data.php:
|
1675 |
-
#: inc/core/class.data.php:
|
1676 |
-
#: inc/core/class.data.php:1725
|
1677 |
msgid "Links target"
|
1678 |
msgstr "Цель ссылок"
|
1679 |
|
1680 |
-
#: inc/core/class.data.php:
|
1681 |
msgid "Open slides links in new window/tab"
|
1682 |
msgstr "Открывать ссылки слайдов в новом окне или вкладке"
|
1683 |
|
1684 |
-
#: inc/core/class.data.php:
|
1685 |
msgid "Customizable image slider"
|
1686 |
msgstr "Настраиваемый слайдер изображений"
|
1687 |
|
1688 |
-
#: inc/core/class.data.php:
|
1689 |
msgid "Carousel"
|
1690 |
msgstr "Карусель"
|
1691 |
|
1692 |
-
#: inc/core/class.data.php:
|
1693 |
msgid "Choose source gallery, that will be used for this carousel"
|
1694 |
-
msgstr "
|
|
|
|
|
1695 |
|
1696 |
-
#: inc/core/class.data.php:
|
1697 |
msgid "Carousel width (in pixels)"
|
1698 |
msgstr "Ширина карусели (в пикселях)"
|
1699 |
|
1700 |
-
#: inc/core/class.data.php:
|
1701 |
msgid "Carousel height (in pixels)"
|
1702 |
msgstr "Высота карусели (в пикселях)"
|
1703 |
|
1704 |
-
#: inc/core/class.data.php:
|
1705 |
msgid "Ignore width and height parameters and make carousel responsive"
|
1706 |
msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
|
1707 |
|
1708 |
-
#: inc/core/class.data.php:
|
1709 |
msgid "Items to show"
|
1710 |
msgstr "Количество элементов для отображения"
|
1711 |
|
1712 |
-
#: inc/core/class.data.php:
|
1713 |
msgid "How much carousel items is visible"
|
1714 |
msgstr "Сколько элементов карусели видны постоянно"
|
1715 |
|
1716 |
-
#: inc/core/class.data.php:
|
1717 |
msgid "Scroll number"
|
1718 |
msgstr "Кол-во прокручиваемых"
|
1719 |
|
1720 |
-
#: inc/core/class.data.php:
|
1721 |
msgid "How much items are scrolled in one transition"
|
1722 |
msgstr "Сколько элементов карусели прокручивается за один переход"
|
1723 |
|
1724 |
-
#: inc/core/class.data.php:
|
1725 |
msgid "Display titles for each item"
|
1726 |
msgstr "Показывать заголовки для каждого элемента карусели"
|
1727 |
|
1728 |
-
#: inc/core/class.data.php:
|
1729 |
msgid "Is carousel centered on the page"
|
1730 |
msgstr "Карусель выровнена по центру страницы"
|
1731 |
|
1732 |
-
#: inc/core/class.data.php:
|
1733 |
msgid "Allow to rotate carousel with mouse wheel"
|
1734 |
msgstr "Разрешить прокрутку карусели колесом мыши"
|
1735 |
|
1736 |
-
#: inc/core/class.data.php:
|
1737 |
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
1738 |
-
msgstr "
|
|
|
|
|
1739 |
|
1740 |
-
#: inc/core/class.data.php:
|
1741 |
msgid "Open carousel links in new window/tab"
|
1742 |
msgstr "Открывать ссылки карусели в новом окне или вкладке"
|
1743 |
|
1744 |
-
#: inc/core/class.data.php:
|
1745 |
msgid "Customizable image carousel"
|
1746 |
msgstr "Настраиваемая карусель изображений"
|
1747 |
|
1748 |
-
#: inc/core/class.data.php:
|
1749 |
msgid "Choose source gallery, that will be used for this shortcode"
|
1750 |
-
msgstr "
|
|
|
1751 |
|
1752 |
-
#: inc/core/class.data.php:
|
1753 |
msgid "Single item width (in pixels)"
|
1754 |
msgstr "Ширина одного изображения (в пикселях)"
|
1755 |
|
1756 |
-
#: inc/core/class.data.php:
|
1757 |
msgid "Single item height (in pixels)"
|
1758 |
msgstr "Высота одного изображения (в пикселях)"
|
1759 |
|
1760 |
-
#: inc/core/class.data.php:
|
1761 |
msgid "Never"
|
1762 |
msgstr "Никогда"
|
1763 |
|
1764 |
-
#: inc/core/class.data.php:
|
1765 |
msgid "On mouse over"
|
1766 |
msgstr "При наведении мыши"
|
1767 |
|
1768 |
-
#: inc/core/class.data.php:
|
1769 |
msgid "Always"
|
1770 |
msgstr "Всегда"
|
1771 |
|
1772 |
-
#: inc/core/class.data.php:
|
1773 |
msgid "Title display mode"
|
1774 |
msgstr "Режим отображения заголовков"
|
1775 |
|
1776 |
-
#: inc/core/class.data.php:
|
1777 |
msgid "Open links in new window/tab"
|
1778 |
msgstr "Открывать ссылки в новом окне или вкладке"
|
1779 |
|
1780 |
-
#: inc/core/class.data.php:
|
1781 |
msgid "Customizable image gallery"
|
1782 |
msgstr "Настраиваемая галерея изображений"
|
1783 |
|
1784 |
-
#: inc/core/class.data.php:
|
1785 |
msgid "Posts"
|
1786 |
msgstr "Записи"
|
1787 |
|
1788 |
-
#: inc/core/class.data.php:
|
1789 |
msgid "Template"
|
1790 |
msgstr "Шаблон"
|
1791 |
|
1792 |
-
#: inc/core/class.data.php:1745
|
1793 |
-
msgid "<b>Do not change this field value if you do not understand description below.</b><br/>Relative path to the template file. Default templates is placed under the plugin directory (templates folder). You can copy it under your theme directory and modify as you want. You can use following default templates that already available in the plugin directory:<br/><b%value>templates/default-loop.php</b> - posts loop<br/><b%value>templates/teaser-loop.php</b> - posts loop with thumbnail and title<br/><b%value>templates/single-post.php</b> - single post template<br/><b%value>templates/list-loop.php</b> - unordered list with posts titles"
|
1794 |
-
msgstr "<b>Не изменяйте значение этого поля, если вы не понимаете описания ниже.</b><br/>Относительный путь к файлу шаблона. Шаблоны по умолчанию расположены в папке с плагином (папка templates). Вы можете скопировать шаблоны в папку со своей темой и изменить как вам угодно. Вы можете использовать следующие шаблоны, которые уже поставляются с плагином и находятся в его папке:<br/><b%value>templates/default-loop.php</b> - обычный цикл постов<br/><b%value>templates/teaser-loop.php</b> - цикл постов в виде тизеров, изображения + заголовки<br/><b%value>templates/single-post.php</b> - шаблон одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - маркированный список с заголовками постов"
|
1795 |
-
|
1796 |
#: inc/core/class.data.php:1749
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1797 |
msgid "Post ID's"
|
1798 |
msgstr "ID постов"
|
1799 |
|
1800 |
-
#: inc/core/class.data.php:
|
1801 |
msgid "Enter comma separated ID's of the posts that you want to show"
|
1802 |
msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
|
1803 |
|
1804 |
-
#: inc/core/class.data.php:
|
1805 |
msgid "Posts per page"
|
1806 |
msgstr "Кол-во записей"
|
1807 |
|
1808 |
-
#: inc/core/class.data.php:
|
1809 |
-
msgid "
|
1810 |
-
|
|
|
|
|
|
|
1811 |
|
1812 |
-
#: inc/core/class.data.php:
|
1813 |
msgid "Post types"
|
1814 |
msgstr "Типы постов"
|
1815 |
|
1816 |
-
#: inc/core/class.data.php:
|
1817 |
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
1818 |
-
msgstr "
|
|
|
1819 |
|
1820 |
-
#: inc/core/class.data.php:
|
1821 |
msgid "Taxonomy"
|
1822 |
msgstr "Таксономия"
|
1823 |
|
1824 |
-
#: inc/core/class.data.php:
|
1825 |
msgid "Select taxonomy to show posts from"
|
1826 |
msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
|
1827 |
|
1828 |
-
#: inc/core/class.data.php:
|
1829 |
msgid "Terms"
|
1830 |
msgstr "Категории (terms)"
|
1831 |
|
1832 |
-
#: inc/core/class.data.php:
|
1833 |
msgid "Select terms to show posts from"
|
1834 |
msgstr "Выберите категории, из которых нужно показать записи"
|
1835 |
|
1836 |
-
#: inc/core/class.data.php:
|
1837 |
msgid "Taxonomy term operator"
|
1838 |
msgstr "Оператор выбора категорий"
|
1839 |
|
1840 |
-
#: inc/core/class.data.php:
|
1841 |
-
msgid "
|
1842 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1843 |
|
1844 |
-
#: inc/core/class.data.php:
|
1845 |
msgid "Authors"
|
1846 |
msgstr "Авторы"
|
1847 |
|
1848 |
-
#: inc/core/class.data.php:
|
1849 |
msgid "Choose the authors whose posts you want to show"
|
1850 |
msgstr "Выберите авторов, чьи записи хотите показать"
|
1851 |
|
1852 |
-
#: inc/core/class.data.php:
|
1853 |
msgid "Meta key"
|
1854 |
msgstr "Произвольное поле"
|
1855 |
|
1856 |
-
#: inc/core/class.data.php:
|
1857 |
msgid "Enter meta key name to show posts that have this key"
|
1858 |
-
msgstr "
|
|
|
|
|
1859 |
|
1860 |
-
#: inc/core/class.data.php:
|
1861 |
msgid "Offset"
|
1862 |
msgstr "Смещение (offset)"
|
1863 |
|
1864 |
-
#: inc/core/class.data.php:
|
1865 |
msgid "Specify offset to start posts loop not from first post"
|
1866 |
-
msgstr "
|
|
|
|
|
1867 |
|
1868 |
-
#: inc/core/class.data.php:
|
1869 |
msgid "Descending"
|
1870 |
msgstr "По убыванию"
|
1871 |
|
1872 |
-
#: inc/core/class.data.php:
|
1873 |
msgid "Ascending"
|
1874 |
msgstr "По возрастанию"
|
1875 |
|
1876 |
-
#: inc/core/class.data.php:
|
1877 |
msgid "Order"
|
1878 |
msgstr "Порядок"
|
1879 |
|
1880 |
-
#: inc/core/class.data.php:
|
1881 |
msgid "Posts order"
|
1882 |
msgstr "Порядок сортировки записей"
|
1883 |
|
1884 |
-
#: inc/core/class.data.php:
|
|
|
|
|
|
|
|
|
1885 |
msgid "Post ID"
|
1886 |
msgstr "ID записи"
|
1887 |
|
1888 |
-
#: inc/core/class.data.php:
|
1889 |
msgid "Post author"
|
1890 |
msgstr "Автор записи"
|
1891 |
|
1892 |
-
#: inc/core/class.data.php:
|
1893 |
msgid "Post title"
|
1894 |
msgstr "Заголовок записи"
|
1895 |
|
1896 |
-
#: inc/core/class.data.php:
|
1897 |
msgid "Post slug"
|
1898 |
msgstr "Ссылка записи (slug)"
|
1899 |
|
1900 |
-
#: inc/core/class.data.php:
|
1901 |
msgid "Date"
|
1902 |
msgstr "Дата"
|
1903 |
|
1904 |
-
#: inc/core/class.data.php:
|
1905 |
msgid "Last modified date"
|
1906 |
msgstr "Дата изменения"
|
1907 |
|
1908 |
-
#: inc/core/class.data.php:
|
1909 |
-
#: inc/core/class.data.php:1839
|
1910 |
msgid "Post parent"
|
1911 |
msgstr "Родитель"
|
1912 |
|
1913 |
-
#: inc/core/class.data.php:
|
1914 |
msgid "Random"
|
1915 |
msgstr "Случайно"
|
1916 |
|
1917 |
-
#: inc/core/class.data.php:
|
1918 |
msgid "Comments number"
|
1919 |
msgstr "Кол-во комментариев"
|
1920 |
|
1921 |
-
#: inc/core/class.data.php:
|
1922 |
msgid "Menu order"
|
1923 |
msgstr "Порядок меню"
|
1924 |
|
1925 |
-
#: inc/core/class.data.php:
|
1926 |
msgid "Meta key values"
|
1927 |
msgstr "Значение произвольного поля"
|
1928 |
|
1929 |
-
#: inc/core/class.data.php:
|
1930 |
msgid "Order by"
|
1931 |
msgstr "Сортировать по"
|
1932 |
|
1933 |
-
#: inc/core/class.data.php:
|
1934 |
msgid "Order posts by"
|
1935 |
msgstr "Сортировать записи по следующему признаку"
|
1936 |
|
1937 |
-
#: inc/core/class.data.php:
|
1938 |
msgid "Show childrens of entered post (enter post ID)"
|
1939 |
msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
|
1940 |
|
1941 |
-
#: inc/core/class.data.php:
|
1942 |
msgid "Published"
|
1943 |
msgstr "Опубликован"
|
1944 |
|
1945 |
-
#: inc/core/class.data.php:
|
1946 |
msgid "Pending"
|
1947 |
msgstr "Ожидает"
|
1948 |
|
1949 |
-
#: inc/core/class.data.php:
|
1950 |
msgid "Draft"
|
1951 |
msgstr "Черновик"
|
1952 |
|
1953 |
-
#: inc/core/class.data.php:
|
1954 |
msgid "Auto-draft"
|
1955 |
msgstr "Авто-черновик"
|
1956 |
|
1957 |
-
#: inc/core/class.data.php:
|
1958 |
msgid "Future post"
|
1959 |
msgstr "Запланирован"
|
1960 |
|
1961 |
-
#: inc/core/class.data.php:
|
1962 |
msgid "Private post"
|
1963 |
msgstr "Приватная запись"
|
1964 |
|
1965 |
-
#: inc/core/class.data.php:
|
1966 |
msgid "Inherit"
|
1967 |
msgstr "Вложенный"
|
1968 |
|
1969 |
-
#: inc/core/class.data.php:
|
1970 |
msgid "Trashed"
|
1971 |
msgstr "В корзине"
|
1972 |
|
1973 |
-
#: inc/core/class.data.php:
|
1974 |
msgid "Any"
|
1975 |
msgstr "Любой"
|
1976 |
|
1977 |
-
#: inc/core/class.data.php:
|
1978 |
msgid "Post status"
|
1979 |
msgstr "Статус записи"
|
1980 |
|
1981 |
-
#: inc/core/class.data.php:
|
1982 |
msgid "Show only posts with selected status"
|
1983 |
msgstr "Показать только записи с выбранным статусом"
|
1984 |
|
1985 |
-
#: inc/core/class.data.php:
|
1986 |
msgid "Ignore sticky"
|
1987 |
msgstr "Игнорировать прикрепленные"
|
1988 |
|
1989 |
-
#: inc/core/class.data.php:
|
1990 |
msgid "Select Yes to ignore posts that is sticked"
|
1991 |
msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
|
1992 |
|
1993 |
-
#: inc/core/class.data.php:
|
1994 |
msgid "Custom posts query with customizable template"
|
1995 |
msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
|
1996 |
|
1997 |
-
#: inc/core/class.generator.php:
|
1998 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1999 |
msgid "Insert shortcode"
|
2000 |
msgstr "Вставить шорткод"
|
2001 |
|
2002 |
-
#: inc/core/class.generator.php:81
|
2003 |
-
#: inc/core/class.shortcodes-ultimate.php:115
|
2004 |
#: inc/vendor/class.sunrise-framework.php:282
|
2005 |
msgid "Settings"
|
2006 |
msgstr "Настройки"
|
@@ -2045,71 +2068,52 @@ msgstr "Нажмите, чтобы вернуться к списку шортк
|
|
2045 |
msgid "All shortcodes"
|
2046 |
msgstr "Все шорткоды"
|
2047 |
|
2048 |
-
#: inc/core/class.generator.php:
|
2049 |
-
msgid "Yes"
|
2050 |
-
msgstr "Да"
|
2051 |
-
|
2052 |
-
#: inc/core/class.generator.php:179
|
2053 |
-
msgid "No"
|
2054 |
-
msgstr "Нет"
|
2055 |
-
|
2056 |
-
#: inc/core/class.generator.php:183
|
2057 |
-
#: inc/core/class.generator.php:187
|
2058 |
-
msgid "Media manager"
|
2059 |
-
msgstr "Медиа менеджер"
|
2060 |
-
|
2061 |
-
#: inc/core/class.generator.php:187
|
2062 |
-
msgid "Icon picker"
|
2063 |
-
msgstr "Выбрать иконку"
|
2064 |
-
|
2065 |
-
#: inc/core/class.generator.php:205
|
2066 |
-
#: inc/core/class.generator.php:300
|
2067 |
-
msgid "Untitled gallery"
|
2068 |
-
msgstr "Галерея без имени"
|
2069 |
-
|
2070 |
-
#: inc/core/class.generator.php:211
|
2071 |
-
#: inc/core/class.generator.php:306
|
2072 |
-
msgid "Galleries not found"
|
2073 |
-
msgstr "Галереи не найдены"
|
2074 |
-
|
2075 |
-
#: inc/core/class.generator.php:212
|
2076 |
-
msgid "Manage galleries"
|
2077 |
-
msgstr "Управление галереями"
|
2078 |
-
|
2079 |
-
#: inc/core/class.generator.php:212
|
2080 |
-
msgid "Reload galleries"
|
2081 |
-
msgstr "Обновить список"
|
2082 |
-
|
2083 |
-
#: inc/core/class.generator.php:223
|
2084 |
msgid "Click to set this value"
|
2085 |
msgstr "Нажмите чтобы установить это значение"
|
2086 |
|
2087 |
-
#: inc/core/class.generator.php:
|
2088 |
msgid "Preview"
|
2089 |
msgstr "Предпросмотр"
|
2090 |
|
2091 |
-
#: inc/core/class.generator.php:
|
2092 |
msgid "Access denied"
|
2093 |
msgstr "Доступ запрещен"
|
2094 |
|
2095 |
#: inc/core/class.requirements.php:35
|
2096 |
#, php-format
|
2097 |
-
msgid "
|
2098 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2099 |
|
2100 |
#: inc/core/class.requirements.php:36
|
2101 |
#, php-format
|
2102 |
-
msgid "
|
2103 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2104 |
|
2105 |
-
#: inc/core/class.shortcodes-ultimate.php:25
|
2106 |
-
#: inc/core/class.widget.php:40
|
2107 |
#: inc/core/class.widget.php:82
|
2108 |
msgid "Shortcodes Ultimate"
|
2109 |
msgstr "Шорткоды"
|
2110 |
|
2111 |
-
#: inc/core/class.shortcodes-ultimate.php:26
|
2112 |
-
#: inc/core/class.vote.php:37
|
2113 |
msgid "Vladimir Anokhin"
|
2114 |
msgstr "Владимир Анохин"
|
2115 |
|
@@ -2121,18 +2125,15 @@ msgstr "Суперзарядка для вашей WordPress-темы с пом
|
|
2121 |
msgid "Where to start?"
|
2122 |
msgstr "С чего начать?"
|
2123 |
|
2124 |
-
#: inc/core/class.shortcodes-ultimate.php:100
|
2125 |
-
#: inc/views/about.php:4
|
2126 |
msgid "Project homepage"
|
2127 |
msgstr "Страница проекта"
|
2128 |
|
2129 |
-
#: inc/core/class.shortcodes-ultimate.php:101
|
2130 |
-
#: inc/views/about.php:10
|
2131 |
msgid "Support forum"
|
2132 |
msgstr "Форум поддержки"
|
2133 |
|
2134 |
-
#: inc/core/class.shortcodes-ultimate.php:102
|
2135 |
-
#: inc/views/about.php:12
|
2136 |
msgid "Changelog"
|
2137 |
msgstr "Список изменений"
|
2138 |
|
@@ -2145,8 +2146,12 @@ msgid "Custom formatting"
|
|
2145 |
msgstr "Cпециальное форматирование"
|
2146 |
|
2147 |
#: inc/core/class.shortcodes-ultimate.php:118
|
2148 |
-
msgid "
|
2149 |
-
|
|
|
|
|
|
|
|
|
2150 |
|
2151 |
#: inc/core/class.shortcodes-ultimate.php:118
|
2152 |
#: inc/core/class.shortcodes-ultimate.php:126
|
@@ -2164,8 +2169,12 @@ msgid "Compatibility mode"
|
|
2164 |
msgstr "Режим совместимости"
|
2165 |
|
2166 |
#: inc/core/class.shortcodes-ultimate.php:126
|
2167 |
-
msgid "
|
2168 |
-
|
|
|
|
|
|
|
|
|
2169 |
|
2170 |
#: inc/core/class.shortcodes-ultimate.php:126
|
2171 |
msgid "etc."
|
@@ -2176,8 +2185,14 @@ msgid "Skip default values"
|
|
2176 |
msgstr "Пропускать значения по умолчанию"
|
2177 |
|
2178 |
#: inc/core/class.shortcodes-ultimate.php:134
|
2179 |
-
msgid "
|
2180 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2181 |
|
2182 |
#: inc/core/class.shortcodes-ultimate.php:141
|
2183 |
msgid "Skin"
|
@@ -2185,8 +2200,14 @@ msgstr "Скин"
|
|
2185 |
|
2186 |
#: inc/core/class.shortcodes-ultimate.php:142
|
2187 |
#, php-format
|
2188 |
-
msgid "
|
2189 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2190 |
|
2191 |
#: inc/core/class.shortcodes-ultimate.php:148
|
2192 |
msgid "Custom CSS"
|
@@ -2204,35 +2225,40 @@ msgstr "Шпаргалка"
|
|
2204 |
msgid "Tab title"
|
2205 |
msgstr "Заголовок вкладкки"
|
2206 |
|
2207 |
-
#: inc/core/class.shortcodes.php:
|
2208 |
msgid "This is box title"
|
2209 |
msgstr "Заголовок блока"
|
2210 |
|
2211 |
-
#: inc/core/class.shortcodes.php:
|
2212 |
-
#: inc/core/class.shortcodes.php:
|
2213 |
-
#: inc/core/class.shortcodes.php:
|
2214 |
-
#: inc/core/class.shortcodes.php:631
|
2215 |
-
#: inc/core/class.shortcodes.php:657
|
2216 |
msgid "please specify correct url"
|
2217 |
msgstr "пожалуйста укажите корректную ссылку"
|
2218 |
|
2219 |
-
#: inc/core/class.shortcodes.php:
|
2220 |
msgid "This menu doesn't exists, or has no elements"
|
2221 |
msgstr "Такое меню не существует, или в нем нет ни одного элемента"
|
2222 |
|
2223 |
-
#: inc/core/class.shortcodes.php:
|
2224 |
-
#: inc/core/class.shortcodes.php:
|
2225 |
-
#: inc/core/class.shortcodes.php:991
|
2226 |
msgid "images not found"
|
2227 |
msgstr "изображения не найдены"
|
2228 |
|
2229 |
-
#: inc/core/class.shortcodes.php:
|
2230 |
msgid "template not found"
|
2231 |
msgstr "шаблон не найден"
|
2232 |
|
2233 |
#: inc/core/class.vote.php:39
|
2234 |
-
msgid "
|
2235 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2236 |
|
2237 |
#: inc/core/class.vote.php:41
|
2238 |
msgid "Rate plugin"
|
@@ -2240,7 +2266,8 @@ msgstr "Оценить плагин"
|
|
2240 |
|
2241 |
#: inc/core/class.vote.php:42
|
2242 |
msgid "Shortcodes Ultimate - must have WordPress plugin #shortcodesultimate"
|
2243 |
-
msgstr "
|
|
|
2244 |
|
2245 |
#: inc/core/class.vote.php:42
|
2246 |
msgid "Tweet"
|
@@ -2290,8 +2317,7 @@ msgstr "час"
|
|
2290 |
msgid "minute"
|
2291 |
msgstr "минута"
|
2292 |
|
2293 |
-
#: inc/core/tools.php:255
|
2294 |
-
#: inc/core/tools.php:262
|
2295 |
msgid "s"
|
2296 |
msgstr "с"
|
2297 |
|
@@ -2356,12 +2382,20 @@ msgid "What is a shortcode?"
|
|
2356 |
msgstr "Что такое шорткод?"
|
2357 |
|
2358 |
#: inc/views/about.php:30
|
2359 |
-
msgid "
|
2360 |
-
|
|
|
|
|
|
|
|
|
2361 |
|
2362 |
#: inc/views/about.php:31
|
2363 |
-
msgid "
|
2364 |
-
|
|
|
|
|
|
|
|
|
2365 |
|
2366 |
#: inc/views/about.php:35
|
2367 |
msgid "How does it works"
|
@@ -2424,8 +2458,12 @@ msgid "Saved"
|
|
2424 |
msgstr "Сохранено"
|
2425 |
|
2426 |
#: inc/views/closetab.php:7
|
2427 |
-
msgid "
|
2428 |
-
|
|
|
|
|
|
|
|
|
2429 |
|
2430 |
#: inc/views/closetab.php:7
|
2431 |
msgid "Restore default settings"
|
@@ -2456,53 +2494,49 @@ msgid "plugin url"
|
|
2456 |
msgstr "url папки этого плагина"
|
2457 |
|
2458 |
#: inc/views/galleries.php:3
|
2459 |
-
msgid "
|
2460 |
-
|
|
|
|
|
|
|
2461 |
|
2462 |
#: inc/views/galleries.php:3
|
2463 |
-
msgid "
|
2464 |
-
|
|
|
|
|
2465 |
|
2466 |
#: inc/views/galleries.php:5
|
2467 |
msgid "Create new gallery"
|
2468 |
msgstr "Создать новую галерею"
|
2469 |
|
2470 |
-
#: inc/views/galleries.php:18
|
2471 |
-
#: inc/views/galleries.php:70
|
2472 |
msgid "Enter gallery name"
|
2473 |
msgstr "Введите имя галереи"
|
2474 |
|
2475 |
-
#: inc/views/galleries.php:20
|
2476 |
-
#: inc/views/galleries.php:72
|
2477 |
msgid "Edit gallery"
|
2478 |
msgstr "Редактировать галерею"
|
2479 |
|
2480 |
-
#: inc/views/galleries.php:21
|
2481 |
-
#: inc/views/galleries.php:73
|
2482 |
msgid "Save & close"
|
2483 |
msgstr "Сохранить и закрыть"
|
2484 |
|
2485 |
-
#: inc/views/galleries.php:22
|
2486 |
-
#: inc/views/galleries.php:
|
2487 |
-
#: inc/views/galleries.php:74
|
2488 |
-
#: inc/views/galleries.php:100
|
2489 |
msgid "Close"
|
2490 |
msgstr "Закрыть"
|
2491 |
|
2492 |
-
#: inc/views/galleries.php:23
|
2493 |
-
#: inc/views/galleries.php:
|
2494 |
-
#: inc/views/galleries.php:75
|
2495 |
-
#: inc/views/galleries.php:91
|
2496 |
msgid "Delete"
|
2497 |
msgstr "Удалить"
|
2498 |
|
2499 |
-
#: inc/views/galleries.php:27
|
2500 |
-
#: inc/views/galleries.php:79
|
2501 |
msgid "Add images"
|
2502 |
msgstr "Добавить изображения"
|
2503 |
|
2504 |
-
#: inc/views/galleries.php:38
|
2505 |
-
#: inc/views/galleries.php:90
|
2506 |
msgid "Edit"
|
2507 |
msgstr "Редактировать"
|
2508 |
|
@@ -2510,16 +2544,16 @@ msgstr "Редактировать"
|
|
2510 |
msgid "Instructions"
|
2511 |
msgstr "Инструкции"
|
2512 |
|
2513 |
-
#: inc/views/notifications.php:13
|
2514 |
-
#: inc/views/notifications.php:
|
2515 |
-
#: inc/views/notifications.php:29
|
2516 |
-
#: inc/views/notifications.php:37
|
2517 |
msgid "Click to close"
|
2518 |
msgstr "Кликните чтобы закрыть"
|
2519 |
|
2520 |
#: inc/views/settings.php:12
|
2521 |
-
msgid "
|
2522 |
-
|
|
|
|
|
2523 |
|
2524 |
#: inc/views/settings.php:14
|
2525 |
msgid "Settings reseted successfully"
|
@@ -2541,30 +2575,23 @@ msgstr "Настройки не сохранены, нет изменений"
|
|
2541 |
msgid "Upload"
|
2542 |
msgstr "Загрузить"
|
2543 |
|
2544 |
-
#: templates/default-loop.php:15
|
2545 |
-
#: templates/single-post.php:18
|
2546 |
msgid "Posted"
|
2547 |
msgstr "Опубликовано"
|
2548 |
|
2549 |
-
#: templates/default-loop.php:19
|
2550 |
-
#: templates/single-post.php:18
|
2551 |
msgid "0 comments"
|
2552 |
msgstr "нет комментариев"
|
2553 |
|
2554 |
-
#: templates/default-loop.php:19
|
2555 |
-
#: templates/single-post.php:18
|
2556 |
msgid "1 comment"
|
2557 |
msgstr "1 комментарий"
|
2558 |
|
2559 |
-
#: templates/default-loop.php:19
|
2560 |
-
#: templates/single-post.php:18
|
2561 |
msgid "%n comments"
|
2562 |
msgstr "%n комментариев"
|
2563 |
|
2564 |
-
#: templates/default-loop.php:27
|
2565 |
-
#: templates/
|
2566 |
-
#: templates/single-post.php:30
|
2567 |
-
#: templates/teaser-loop.php:22
|
2568 |
msgid "Posts not found"
|
2569 |
msgstr "Записи не найдены"
|
2570 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gn_themes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-10-21 08:39+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-10-21 08:42+0300\n"
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
12 |
"X-Poedit-KeywordsList: _e;__\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: inc/example-addon.php:29
|
19 |
msgid "Heading 2"
|
20 |
msgstr "Заголовок 2"
|
21 |
|
22 |
+
#: inc/example-addon.php:43 inc/core/class.data.php:173
|
23 |
+
#: inc/core/class.data.php:303 inc/core/class.data.php:386
|
24 |
+
#: inc/core/class.data.php:551 inc/core/class.data.php:706
|
25 |
+
#: inc/core/class.data.php:868
|
|
|
|
|
|
|
26 |
msgid "Default"
|
27 |
msgstr "По умолчанию"
|
28 |
|
30 |
msgid "Small"
|
31 |
msgstr "Маленький"
|
32 |
|
33 |
+
#: inc/example-addon.php:49 inc/core/class.data.php:178
|
34 |
+
#: inc/core/class.data.php:392 inc/core/class.data.php:561
|
35 |
+
#: inc/core/class.data.php:713 inc/core/class.data.php:838
|
|
|
|
|
|
|
36 |
msgid "Style"
|
37 |
msgstr "Стиль"
|
38 |
|
64 |
msgid "Insert"
|
65 |
msgstr "Вставить"
|
66 |
|
67 |
+
#: inc/core/class.assets.php:70 inc/core/class.generator-fields.php:61
|
|
|
68 |
msgid "Please wait"
|
69 |
msgstr "Пожалуйста подождите"
|
70 |
|
71 |
#: inc/core/class.assets.php:83
|
72 |
+
msgid ""
|
73 |
+
"This shortcode doesn't work in live preview. Please insert it into editor "
|
74 |
+
"and preview on the site."
|
75 |
+
msgstr ""
|
76 |
+
"Этот шорткод не работает в режиме предпросмотра. Пожалуйста вставьте шорткод "
|
77 |
+
"в редактор и посмотрите результат на странице записи."
|
78 |
|
79 |
#: inc/core/class.data.php:36
|
80 |
msgid "All"
|
81 |
msgstr "Все"
|
82 |
|
83 |
+
#: inc/core/class.data.php:37 inc/core/class.generator.php:203
|
|
|
84 |
msgid "Content"
|
85 |
msgstr "Содержимое"
|
86 |
|
87 |
+
#: inc/core/class.data.php:38 inc/core/class.data.php:694
|
|
|
88 |
msgid "Box"
|
89 |
msgstr "Блок"
|
90 |
|
92 |
msgid "Media"
|
93 |
msgstr "Медиа"
|
94 |
|
95 |
+
#: inc/core/class.data.php:40 inc/core/class.data.php:1496
|
96 |
+
#: inc/core/class.data.php:1588 inc/core/class.data.php:1690
|
97 |
+
#: inc/core/class.data.php:1696
|
|
|
|
|
98 |
msgid "Gallery"
|
99 |
msgstr "Галерея"
|
100 |
|
106 |
msgid "Heading"
|
107 |
msgstr "Заголовок"
|
108 |
|
109 |
+
#: inc/core/class.data.php:66 inc/core/class.data.php:397
|
110 |
+
#: inc/core/class.data.php:477 inc/core/class.data.php:582
|
|
|
|
|
111 |
msgid "Size"
|
112 |
msgstr "Размер"
|
113 |
|
115 |
msgid "Select heading size"
|
116 |
msgstr "Выберите размер заголовка"
|
117 |
|
118 |
+
#: inc/core/class.data.php:71 inc/core/class.data.php:361
|
119 |
+
#: inc/core/class.data.php:418 inc/core/class.data.php:846
|
|
|
|
|
120 |
msgid "Left"
|
121 |
msgstr "Слева"
|
122 |
|
123 |
+
#: inc/core/class.data.php:72 inc/core/class.data.php:419
|
124 |
+
#: inc/core/class.data.php:1529 inc/core/class.data.php:1637
|
|
|
125 |
msgid "Center"
|
126 |
msgstr "По центру"
|
127 |
|
128 |
+
#: inc/core/class.data.php:73 inc/core/class.data.php:362
|
129 |
+
#: inc/core/class.data.php:420 inc/core/class.data.php:847
|
|
|
|
|
130 |
msgid "Right"
|
131 |
msgstr "Справа"
|
132 |
|
133 |
+
#: inc/core/class.data.php:76 inc/core/class.data.php:365
|
134 |
+
#: inc/core/class.data.php:423
|
|
|
135 |
msgid "Align"
|
136 |
msgstr "Выравнивание"
|
137 |
|
139 |
msgid "Heading text alignment"
|
140 |
msgstr "Выравнивание текста в заголовке"
|
141 |
|
142 |
+
#: inc/core/class.data.php:81 inc/core/class.data.php:112
|
143 |
+
#: inc/core/class.data.php:145 inc/core/class.data.php:188
|
144 |
+
#: inc/core/class.data.php:205 inc/core/class.data.php:233
|
145 |
+
#: inc/core/class.data.php:257 inc/core/class.data.php:286
|
146 |
+
#: inc/core/class.data.php:316 inc/core/class.data.php:344
|
147 |
+
#: inc/core/class.data.php:369 inc/core/class.data.php:401
|
148 |
+
#: inc/core/class.data.php:428 inc/core/class.data.php:445
|
149 |
+
#: inc/core/class.data.php:488 inc/core/class.data.php:517
|
150 |
+
#: inc/core/class.data.php:639 inc/core/class.data.php:683
|
151 |
+
#: inc/core/class.data.php:738 inc/core/class.data.php:774
|
152 |
+
#: inc/core/class.data.php:806 inc/core/class.data.php:909
|
153 |
+
#: inc/core/class.data.php:926 inc/core/class.data.php:979
|
154 |
+
#: inc/core/class.data.php:1030 inc/core/class.data.php:1074
|
155 |
+
#: inc/core/class.data.php:1114 inc/core/class.data.php:1184
|
156 |
+
#: inc/core/class.data.php:1206 inc/core/class.data.php:1238
|
157 |
+
#: inc/core/class.data.php:1272 inc/core/class.data.php:1289
|
158 |
+
#: inc/core/class.data.php:1317 inc/core/class.data.php:1338
|
159 |
+
#: inc/core/class.data.php:1366 inc/core/class.data.php:1388
|
160 |
+
#: inc/core/class.data.php:1434 inc/core/class.data.php:1480
|
161 |
+
#: inc/core/class.data.php:1572 inc/core/class.data.php:1680
|
162 |
+
#: inc/core/class.data.php:1733
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
msgid "Class"
|
164 |
msgstr "Класс"
|
165 |
|
166 |
+
#: inc/core/class.data.php:82 inc/core/class.data.php:113
|
167 |
+
#: inc/core/class.data.php:146 inc/core/class.data.php:189
|
168 |
+
#: inc/core/class.data.php:206 inc/core/class.data.php:234
|
169 |
+
#: inc/core/class.data.php:258 inc/core/class.data.php:287
|
170 |
+
#: inc/core/class.data.php:317 inc/core/class.data.php:345
|
171 |
+
#: inc/core/class.data.php:370 inc/core/class.data.php:402
|
172 |
+
#: inc/core/class.data.php:429 inc/core/class.data.php:446
|
173 |
+
#: inc/core/class.data.php:489 inc/core/class.data.php:518
|
174 |
+
#: inc/core/class.data.php:640 inc/core/class.data.php:684
|
175 |
+
#: inc/core/class.data.php:739 inc/core/class.data.php:775
|
176 |
+
#: inc/core/class.data.php:807 inc/core/class.data.php:910
|
177 |
+
#: inc/core/class.data.php:927 inc/core/class.data.php:980
|
178 |
+
#: inc/core/class.data.php:1031 inc/core/class.data.php:1075
|
179 |
+
#: inc/core/class.data.php:1115 inc/core/class.data.php:1185
|
180 |
+
#: inc/core/class.data.php:1207 inc/core/class.data.php:1239
|
181 |
+
#: inc/core/class.data.php:1273 inc/core/class.data.php:1290
|
182 |
+
#: inc/core/class.data.php:1318 inc/core/class.data.php:1339
|
183 |
+
#: inc/core/class.data.php:1367 inc/core/class.data.php:1389
|
184 |
+
#: inc/core/class.data.php:1435 inc/core/class.data.php:1481
|
185 |
+
#: inc/core/class.data.php:1573 inc/core/class.data.php:1681
|
186 |
+
#: inc/core/class.data.php:1734
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Extra CSS class"
|
188 |
msgstr "Дополнительный CSS класс"
|
189 |
|
237 |
msgid "Tab name"
|
238 |
msgstr "Имя вкладки"
|
239 |
|
240 |
+
#: inc/core/class.data.php:129 inc/core/class.data.php:162
|
241 |
+
#: inc/core/class.data.php:657 inc/core/class.data.php:701
|
242 |
+
#: inc/core/class.data.php:1143 inc/views/galleries.php:43
|
243 |
+
#: inc/views/galleries.php:95
|
|
|
244 |
msgid "Title"
|
245 |
msgstr "Заголовок"
|
246 |
|
256 |
msgid "Is this tab disabled"
|
257 |
msgstr "Эта вкладка отключена"
|
258 |
|
259 |
+
#: inc/core/class.data.php:140 inc/core/class.data.php:183
|
260 |
+
msgid "Anchor"
|
261 |
+
msgstr "Якорь"
|
262 |
+
|
263 |
+
#: inc/core/class.data.php:141
|
264 |
+
msgid ""
|
265 |
+
"You can use unique anchor for this tab to access it with hash in page url. "
|
266 |
+
"For example: type here <b%value>Hello</b> and then use url like http://"
|
267 |
+
"example.com/page-url#Hello. This tab will be activated and scrolled in"
|
268 |
+
msgstr ""
|
269 |
+
"Вы можете задать якорь для этой вкладки чтобы открыть её при помощи хеша в "
|
270 |
+
"ссылке страницы. Например: введите в этом поле <b%value>Hello</b> и затем "
|
271 |
+
"используйте ссылку вида http://example.com/page-utl#Hello. Эта вкладка будет "
|
272 |
+
"активирована и страница будет прокручена к ней"
|
273 |
+
|
274 |
+
#: inc/core/class.data.php:150
|
275 |
msgid "Tab content"
|
276 |
msgstr "Содержимое вкладки"
|
277 |
|
278 |
+
#: inc/core/class.data.php:151
|
279 |
msgid "Single tab"
|
280 |
msgstr "Одиночная вкладка"
|
281 |
|
282 |
+
#: inc/core/class.data.php:156
|
283 |
msgid "Spoiler"
|
284 |
msgstr "Спойлер"
|
285 |
|
286 |
+
#: inc/core/class.data.php:161 inc/core/class.shortcodes.php:68
|
|
|
287 |
msgid "Spoiler title"
|
288 |
msgstr "Скрытый текст"
|
289 |
|
290 |
+
#: inc/core/class.data.php:162
|
291 |
msgid "Text in spoiler title"
|
292 |
msgstr "Текст для заголовка спойлера"
|
293 |
|
294 |
+
#: inc/core/class.data.php:167
|
295 |
msgid "Open"
|
296 |
msgstr "Открыт"
|
297 |
|
298 |
+
#: inc/core/class.data.php:168
|
299 |
msgid "Is spoiler content visible by default"
|
300 |
msgstr "Виден ли контент спойлера по умолчанию"
|
301 |
|
302 |
+
#: inc/core/class.data.php:174
|
303 |
msgid "Fancy"
|
304 |
msgstr "Стильный"
|
305 |
|
306 |
+
#: inc/core/class.data.php:175 inc/core/class.data.php:389
|
|
|
307 |
msgid "Simple"
|
308 |
msgstr "Простой"
|
309 |
|
310 |
+
#: inc/core/class.data.php:179
|
311 |
msgid "Spoiler skin"
|
312 |
msgstr "Скин спойлера"
|
313 |
|
314 |
+
#: inc/core/class.data.php:184
|
315 |
+
msgid ""
|
316 |
+
"You can use unique anchor for this spoiler to access it with hash in page "
|
317 |
+
"url. For example: type here <b%value>Hello</b> and then use url like http://"
|
318 |
+
"example.com/page-url#Hello. This spoiler will be open and scrolled in"
|
319 |
+
msgstr ""
|
320 |
+
"Вы можете задать якорь для этого спойлера чтобы открыть его при помощи хеша "
|
321 |
+
"в ссылке страницы. Например: введите в этом поле <b%value>Hello</b> и затем "
|
322 |
+
"используйте ссылку вида http://example.com/page-utl#Hello. Этот спойлер "
|
323 |
+
"будет открыт и страница будет прокручена к нему"
|
324 |
+
|
325 |
+
#: inc/core/class.data.php:193
|
326 |
msgid "Hidden content"
|
327 |
msgstr "Скрытое содержимое"
|
328 |
|
329 |
+
#: inc/core/class.data.php:194
|
330 |
msgid "Spoiler with hidden content"
|
331 |
msgstr "Спойлер со скрытым содержимым"
|
332 |
|
333 |
+
#: inc/core/class.data.php:199
|
334 |
msgid "Accordion"
|
335 |
msgstr "Аккордион"
|
336 |
|
337 |
+
#: inc/core/class.data.php:210
|
338 |
msgid ""
|
339 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
340 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
344 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]\n"
|
345 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]"
|
346 |
|
347 |
+
#: inc/core/class.data.php:211
|
348 |
msgid "Accordion with spoilers"
|
349 |
msgstr "Аккордион со спойлерами"
|
350 |
|
351 |
+
#: inc/core/class.data.php:216
|
352 |
msgid "Divider"
|
353 |
msgstr "Разделитель"
|
354 |
|
355 |
+
#: inc/core/class.data.php:223
|
356 |
msgid "Show TOP link"
|
357 |
msgstr "Показать ссылку ВВЕРХ"
|
358 |
|
359 |
+
#: inc/core/class.data.php:224
|
360 |
msgid "Show link to top of the page or not"
|
361 |
msgstr "Показывать ссылку ВВЕРХ или нет"
|
362 |
|
363 |
+
#: inc/core/class.data.php:228 inc/core/class.shortcodes.php:91
|
|
|
364 |
msgid "Go to top"
|
365 |
msgstr "Вверх"
|
366 |
|
367 |
+
#: inc/core/class.data.php:229
|
368 |
msgid "Link text"
|
369 |
msgstr "Текст ссылки"
|
370 |
|
371 |
+
#: inc/core/class.data.php:229
|
372 |
msgid "Text for the GO TOP link"
|
373 |
msgstr "Текст ссылки ВВЕРХ"
|
374 |
|
375 |
+
#: inc/core/class.data.php:238
|
376 |
msgid "Content divider with optional TOP link"
|
377 |
msgstr "Разделитель текста со ссылкой ВВЕРХ"
|
378 |
|
379 |
+
#: inc/core/class.data.php:243
|
380 |
msgid "Spacer"
|
381 |
msgstr "Пробел"
|
382 |
|
383 |
+
#: inc/core/class.data.php:253 inc/core/class.data.php:962
|
384 |
+
#: inc/core/class.data.php:1013 inc/core/class.data.php:1063
|
385 |
+
#: inc/core/class.data.php:1161 inc/core/class.data.php:1423
|
386 |
+
#: inc/core/class.data.php:1463 inc/core/class.data.php:1513
|
387 |
+
#: inc/core/class.data.php:1605 inc/core/class.data.php:1713
|
|
|
|
|
|
|
|
|
|
|
388 |
msgid "Height"
|
389 |
msgstr "Высота"
|
390 |
|
391 |
+
#: inc/core/class.data.php:253
|
392 |
msgid "Height of the spacer in pixels"
|
393 |
msgstr "Высота пробела в пикселях"
|
394 |
|
395 |
+
#: inc/core/class.data.php:262
|
396 |
msgid "Empty space with adjustable height"
|
397 |
msgstr "Пробел с настраиваемой высотой"
|
398 |
|
399 |
+
#: inc/core/class.data.php:267
|
400 |
msgid "Highlight"
|
401 |
msgstr "Выделитель"
|
402 |
|
403 |
+
#: inc/core/class.data.php:275 inc/core/class.data.php:567
|
404 |
+
#: inc/core/class.data.php:757
|
|
|
405 |
msgid "Background"
|
406 |
msgstr "Фон"
|
407 |
|
408 |
+
#: inc/core/class.data.php:276
|
409 |
msgid "Highlighted text background color"
|
410 |
msgstr "Цвет фона выделяемого текста"
|
411 |
|
412 |
+
#: inc/core/class.data.php:282 inc/core/class.data.php:573
|
413 |
+
#: inc/core/class.data.php:763
|
|
|
414 |
msgid "Text color"
|
415 |
msgstr "Цвет текста"
|
416 |
|
417 |
+
#: inc/core/class.data.php:282
|
418 |
msgid "Highlighted text color"
|
419 |
msgstr "Цвет выделяемого текста"
|
420 |
|
421 |
+
#: inc/core/class.data.php:290 inc/core/class.data.php:291
|
|
|
422 |
msgid "Highlighted text"
|
423 |
msgstr "Подсвеченный текст"
|
424 |
|
425 |
+
#: inc/core/class.data.php:296 inc/core/class.data.php:320
|
|
|
426 |
msgid "Label"
|
427 |
msgstr "Ярлык"
|
428 |
|
429 |
+
#: inc/core/class.data.php:304
|
430 |
msgid "Success"
|
431 |
msgstr "Успех"
|
432 |
|
433 |
+
#: inc/core/class.data.php:305
|
434 |
msgid "Warning"
|
435 |
msgstr "Внимание"
|
436 |
|
437 |
+
#: inc/core/class.data.php:306
|
438 |
msgid "Important"
|
439 |
msgstr "Важно"
|
440 |
|
441 |
+
#: inc/core/class.data.php:307
|
442 |
msgid "Black"
|
443 |
msgstr "Черный"
|
444 |
|
445 |
+
#: inc/core/class.data.php:308
|
446 |
msgid "Info"
|
447 |
msgstr "Инфо"
|
448 |
|
449 |
+
#: inc/core/class.data.php:311
|
450 |
msgid "Type"
|
451 |
msgstr "Тип"
|
452 |
|
453 |
+
#: inc/core/class.data.php:312
|
454 |
msgid "Style of the label"
|
455 |
msgstr "Стиль ярлыка"
|
456 |
|
457 |
+
#: inc/core/class.data.php:321
|
458 |
msgid "Styled label"
|
459 |
msgstr "Стильный ярлык"
|
460 |
|
461 |
+
#: inc/core/class.data.php:326 inc/core/class.data.php:348
|
|
|
462 |
msgid "Quote"
|
463 |
msgstr "Цитата"
|
464 |
|
465 |
+
#: inc/core/class.data.php:333
|
466 |
msgid "Cite"
|
467 |
msgstr "Автор"
|
468 |
|
469 |
+
#: inc/core/class.data.php:334
|
470 |
msgid "Quote author name"
|
471 |
msgstr "Имя автора цитаты"
|
472 |
|
473 |
+
#: inc/core/class.data.php:339
|
474 |
msgid "Cite url"
|
475 |
msgstr "Ссылка автора"
|
476 |
|
477 |
+
#: inc/core/class.data.php:340
|
478 |
msgid "Url of the quote author. Leave empty to disable link"
|
479 |
msgstr "Ссылка автора цитаты. Оставьте пустым, чтобы отключить ссылку"
|
480 |
|
481 |
+
#: inc/core/class.data.php:349
|
482 |
msgid "Blockquote alternative"
|
483 |
msgstr "Альтернатива цитаты"
|
484 |
|
485 |
+
#: inc/core/class.data.php:354 inc/core/class.data.php:373
|
486 |
+
#: inc/core/class.data.php:374
|
|
|
487 |
msgid "Pullquote"
|
488 |
msgstr "Цитата с обтеканием"
|
489 |
|
490 |
+
#: inc/core/class.data.php:365
|
491 |
msgid "Pullquote alignment (float)"
|
492 |
msgstr "Выравнивание цитаты (обтекание)"
|
493 |
|
494 |
+
#: inc/core/class.data.php:379 inc/core/class.data.php:406
|
|
|
495 |
msgid "Dropcap"
|
496 |
msgstr "Буквица"
|
497 |
|
498 |
+
#: inc/core/class.data.php:387 inc/core/class.data.php:552
|
|
|
499 |
msgid "Flat"
|
500 |
msgstr "Плоский"
|
501 |
|
502 |
+
#: inc/core/class.data.php:388
|
|
|
503 |
msgid "Light"
|
504 |
msgstr "Светлый"
|
505 |
|
506 |
+
#: inc/core/class.data.php:392
|
507 |
msgid "Dropcap style preset"
|
508 |
msgstr "Стиль буквицы"
|
509 |
|
510 |
+
#: inc/core/class.data.php:397
|
511 |
msgid "Choose dropcap size"
|
512 |
msgstr "Выберите размер буквицы"
|
513 |
|
514 |
+
#: inc/core/class.data.php:405
|
515 |
msgid "D"
|
516 |
msgstr "D"
|
517 |
|
518 |
+
#: inc/core/class.data.php:411
|
519 |
msgid "Frame"
|
520 |
msgstr "Рамка"
|
521 |
|
522 |
+
#: inc/core/class.data.php:424
|
523 |
msgid "Frame alignment"
|
524 |
msgstr "Выравнивание рамки"
|
525 |
|
526 |
+
#: inc/core/class.data.php:434
|
527 |
msgid "Styled image frame"
|
528 |
msgstr "Стильный рамка изображения"
|
529 |
|
530 |
+
#: inc/core/class.data.php:439
|
531 |
msgid "Row"
|
532 |
msgstr "Колонки"
|
533 |
|
534 |
+
#: inc/core/class.data.php:450
|
535 |
msgid ""
|
536 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
537 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
541 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]\n"
|
542 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]"
|
543 |
|
544 |
+
#: inc/core/class.data.php:451
|
545 |
msgid "Row for flexible columns"
|
546 |
msgstr "Контейнер с резиновыми колонками"
|
547 |
|
548 |
+
#: inc/core/class.data.php:456
|
549 |
msgid "Column"
|
550 |
msgstr "Колонка"
|
551 |
|
552 |
+
#: inc/core/class.data.php:463
|
553 |
msgid "Full width"
|
554 |
msgstr "Во всю ширину"
|
555 |
|
556 |
+
#: inc/core/class.data.php:464
|
557 |
msgid "One half"
|
558 |
msgstr "Одна вторая"
|
559 |
|
560 |
+
#: inc/core/class.data.php:465
|
561 |
msgid "One third"
|
562 |
msgstr "Одна третья"
|
563 |
|
564 |
+
#: inc/core/class.data.php:466
|
565 |
msgid "Two third"
|
566 |
msgstr "Две трети"
|
567 |
|
568 |
+
#: inc/core/class.data.php:467
|
569 |
msgid "One fourth"
|
570 |
msgstr "Одна четвертая"
|
571 |
|
572 |
+
#: inc/core/class.data.php:468
|
573 |
msgid "Three fourth"
|
574 |
msgstr "Три четвертых"
|
575 |
|
576 |
+
#: inc/core/class.data.php:469
|
577 |
msgid "One fifth"
|
578 |
msgstr "Одна пятая"
|
579 |
|
580 |
+
#: inc/core/class.data.php:470
|
581 |
msgid "Two fifth"
|
582 |
msgstr "Две пятых"
|
583 |
|
584 |
+
#: inc/core/class.data.php:471
|
585 |
msgid "Three fifth"
|
586 |
msgstr "Три пятых"
|
587 |
|
588 |
+
#: inc/core/class.data.php:472
|
589 |
msgid "Four fifth"
|
590 |
msgstr "Четыре пятых"
|
591 |
|
592 |
+
#: inc/core/class.data.php:473
|
593 |
msgid "One sixth"
|
594 |
msgstr "Одна шестая"
|
595 |
|
596 |
+
#: inc/core/class.data.php:474
|
597 |
msgid "Five sixth"
|
598 |
msgstr "Пять шестых"
|
599 |
|
600 |
+
#: inc/core/class.data.php:478
|
601 |
msgid "Select column width. This width will be calculated depend page width"
|
602 |
+
msgstr ""
|
603 |
+
"Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
|
604 |
|
605 |
+
#: inc/core/class.data.php:483 inc/core/class.data.php:593
|
|
|
606 |
msgid "Centered"
|
607 |
msgstr "По центру"
|
608 |
|
609 |
+
#: inc/core/class.data.php:484
|
610 |
msgid "Is this column centered on the page"
|
611 |
msgstr "Колонка выровнена по центру страницы"
|
612 |
|
613 |
+
#: inc/core/class.data.php:493
|
614 |
msgid "Column content"
|
615 |
msgstr "Содержимое колонки"
|
616 |
|
617 |
+
#: inc/core/class.data.php:494
|
618 |
msgid "Flexible and responsive columns"
|
619 |
msgstr "Резновые колонки"
|
620 |
|
621 |
+
#: inc/core/class.data.php:499
|
622 |
msgid "List"
|
623 |
msgstr "Список"
|
624 |
|
625 |
+
#: inc/core/class.data.php:506 inc/core/class.data.php:612
|
626 |
+
#: inc/core/class.data.php:663
|
|
|
627 |
msgid "Icon"
|
628 |
msgstr "Иконка"
|
629 |
|
630 |
+
#: inc/core/class.data.php:507
|
631 |
msgid "You can upload custom icon for this list or pick a built-in icon"
|
632 |
msgstr "Вы можете загрузить свою иконку для этого списка или выбрать из списка"
|
633 |
|
634 |
+
#: inc/core/class.data.php:512 inc/core/class.data.php:618
|
635 |
+
#: inc/core/class.data.php:669
|
|
|
636 |
msgid "Icon color"
|
637 |
msgstr "Цвет иконки"
|
638 |
|
639 |
+
#: inc/core/class.data.php:513 inc/core/class.data.php:619
|
640 |
+
#: inc/core/class.data.php:670
|
641 |
+
msgid ""
|
642 |
+
"This color will be applied to the selected icon. Does not works with "
|
643 |
+
"uploaded icons"
|
644 |
+
msgstr ""
|
645 |
+
"Этот цвет будет применен только к иконке выбранной из списка. Не работает "
|
646 |
+
"для загруженных иконок"
|
647 |
|
648 |
+
#: inc/core/class.data.php:522
|
649 |
msgid ""
|
650 |
"<ul>\n"
|
651 |
"<li>List item</li>\n"
|
659 |
"<li>Элемент списка</li>\n"
|
660 |
"</ul>"
|
661 |
|
662 |
+
#: inc/core/class.data.php:523
|
663 |
msgid "Styled unordered list"
|
664 |
msgstr "Стильный неупорядоченный список"
|
665 |
|
666 |
+
#: inc/core/class.data.php:528
|
667 |
msgid "Button"
|
668 |
msgstr "Кнопка"
|
669 |
|
670 |
+
#: inc/core/class.data.php:535 inc/views/galleries.php:45
|
671 |
+
#: inc/views/galleries.php:97
|
672 |
msgid "Link"
|
673 |
msgstr "Ссылка"
|
674 |
|
675 |
+
#: inc/core/class.data.php:536
|
676 |
msgid "Button link"
|
677 |
msgstr "Ссылка кнопки"
|
678 |
|
679 |
+
#: inc/core/class.data.php:541 inc/core/class.data.php:1229
|
|
|
680 |
msgid "Same tab"
|
681 |
msgstr "Та же вкладка"
|
682 |
|
683 |
+
#: inc/core/class.data.php:542 inc/core/class.data.php:1230
|
|
|
684 |
msgid "New tab"
|
685 |
msgstr "Новая вкладка"
|
686 |
|
687 |
+
#: inc/core/class.data.php:545 inc/core/class.data.php:1233
|
|
|
688 |
msgid "Target"
|
689 |
msgstr "Цель"
|
690 |
|
691 |
+
#: inc/core/class.data.php:546
|
692 |
msgid "Button link target"
|
693 |
msgstr "Цель ссылки кнопки"
|
694 |
|
695 |
+
#: inc/core/class.data.php:553 inc/core/class.data.php:707
|
|
|
696 |
msgid "Soft"
|
697 |
msgstr "Мягкий"
|
698 |
|
699 |
+
#: inc/core/class.data.php:554 inc/core/class.data.php:708
|
|
|
700 |
msgid "Glass"
|
701 |
msgstr "Стекло"
|
702 |
|
703 |
+
#: inc/core/class.data.php:555 inc/core/class.data.php:709
|
|
|
704 |
msgid "Bubbles"
|
705 |
msgstr "Пузыри"
|
706 |
|
707 |
+
#: inc/core/class.data.php:556 inc/core/class.data.php:710
|
|
|
708 |
msgid "Noise"
|
709 |
msgstr "Шум"
|
710 |
|
711 |
+
#: inc/core/class.data.php:557
|
712 |
msgid "Stroked"
|
713 |
msgstr "Прошитый"
|
714 |
|
715 |
+
#: inc/core/class.data.php:558
|
716 |
msgid "3D"
|
717 |
msgstr "3D"
|
718 |
|
719 |
+
#: inc/core/class.data.php:561
|
720 |
msgid "Button background style preset"
|
721 |
msgstr "Стиль фона кнопки"
|
722 |
|
723 |
+
#: inc/core/class.data.php:567
|
724 |
msgid "Button background color"
|
725 |
msgstr "Цвет фона кнопки"
|
726 |
|
727 |
+
#: inc/core/class.data.php:574
|
728 |
msgid "Button text color"
|
729 |
msgstr "Цвет текста кнопки"
|
730 |
|
731 |
+
#: inc/core/class.data.php:583
|
732 |
msgid "Button size"
|
733 |
msgstr "Размер кнопки"
|
734 |
|
735 |
+
#: inc/core/class.data.php:588
|
736 |
msgid "Fluid"
|
737 |
msgstr "Резиновая"
|
738 |
|
739 |
+
#: inc/core/class.data.php:588
|
740 |
msgid "Fluid buttons has 100% width"
|
741 |
msgstr "Резиновые кнопки имеют ширину 100%"
|
742 |
|
743 |
+
#: inc/core/class.data.php:593
|
744 |
msgid "Is button centered on the page"
|
745 |
msgstr "Кнопка выровнена по центру страницы"
|
746 |
|
747 |
+
#: inc/core/class.data.php:598
|
748 |
+
msgid "Auto"
|
749 |
+
msgstr "Авто"
|
750 |
+
|
751 |
+
#: inc/core/class.data.php:599
|
752 |
+
msgid "Round"
|
753 |
+
msgstr "Круглый"
|
754 |
+
|
755 |
+
#: inc/core/class.data.php:600
|
756 |
+
msgid "Square"
|
757 |
+
msgstr "Квадратный"
|
758 |
+
|
759 |
+
#: inc/core/class.data.php:606 inc/core/class.data.php:733
|
760 |
+
#: inc/core/class.data.php:770
|
761 |
msgid "Radius"
|
762 |
msgstr "Радиус"
|
763 |
|
764 |
+
#: inc/core/class.data.php:607
|
765 |
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
766 |
+
msgstr ""
|
767 |
+
"Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
|
768 |
|
769 |
+
#: inc/core/class.data.php:613
|
770 |
msgid "You can upload custom icon for this button or pick a built-in icon"
|
771 |
msgstr "Вы можете загрузить свою иконку для этой кнопки или выбрать из списка"
|
772 |
|
773 |
+
#: inc/core/class.data.php:624
|
774 |
+
msgid "Text shadow"
|
775 |
+
msgstr "Тень текста"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
776 |
|
777 |
#: inc/core/class.data.php:625
|
778 |
+
msgid "Button text shadow"
|
779 |
+
msgstr "Тень текста на кнопке"
|
780 |
+
|
781 |
+
#: inc/core/class.data.php:629
|
782 |
msgid "Description"
|
783 |
msgstr "Описание"
|
784 |
|
|
|
|
|
|
|
|
|
785 |
#: inc/core/class.data.php:630
|
786 |
+
msgid ""
|
787 |
+
"Small description under button text. This option is incompatible with icon."
|
788 |
+
msgstr ""
|
789 |
+
"Небольшое описание под текстом кнопки. Это описание не совместимо с иконками "
|
790 |
+
"кнопок."
|
791 |
+
|
792 |
+
#: inc/core/class.data.php:634
|
793 |
msgid "onClick"
|
794 |
msgstr "onClick"
|
795 |
|
796 |
+
#: inc/core/class.data.php:635
|
797 |
msgid "Advanced JavaScript code for onClick action"
|
798 |
msgstr "JavaScript код для атрибута onClick"
|
799 |
|
800 |
+
#: inc/core/class.data.php:644
|
801 |
msgid "Button text"
|
802 |
msgstr "Текст кнопки"
|
803 |
|
804 |
+
#: inc/core/class.data.php:645
|
805 |
msgid "Styled button"
|
806 |
msgstr "Стильная кнопка"
|
807 |
|
808 |
+
#: inc/core/class.data.php:650
|
809 |
msgid "Service"
|
810 |
msgstr "Услуга"
|
811 |
|
812 |
+
#: inc/core/class.data.php:656 inc/core/class.shortcodes.php:420
|
|
|
813 |
msgid "Service title"
|
814 |
msgstr "Название услуги"
|
815 |
|
816 |
+
#: inc/core/class.data.php:658
|
817 |
msgid "Service name"
|
818 |
msgstr "Название услуги"
|
819 |
|
820 |
+
#: inc/core/class.data.php:664
|
821 |
msgid "You can upload custom icon for this box"
|
822 |
msgstr "Вы можете загрузить свою иконку для этого блока"
|
823 |
|
824 |
+
#: inc/core/class.data.php:678
|
825 |
msgid "Icon size"
|
826 |
msgstr "Размер иконки"
|
827 |
|
828 |
+
#: inc/core/class.data.php:679
|
829 |
msgid "Size of the uploaded icon in pixels"
|
830 |
msgstr "Размер загруженной иконки в пикселях"
|
831 |
|
832 |
+
#: inc/core/class.data.php:688
|
833 |
msgid "Service description"
|
834 |
msgstr "Описание услуги"
|
835 |
|
836 |
+
#: inc/core/class.data.php:689
|
837 |
msgid "Service box with title"
|
838 |
msgstr "Блок услуга с заголовком"
|
839 |
|
840 |
+
#: inc/core/class.data.php:700
|
841 |
msgid "Box title"
|
842 |
msgstr "Заголовок блока"
|
843 |
|
844 |
+
#: inc/core/class.data.php:701
|
845 |
msgid "Text for the box title"
|
846 |
msgstr "Текст для заголовка блока"
|
847 |
|
848 |
+
#: inc/core/class.data.php:714
|
849 |
msgid "Box style preset"
|
850 |
msgstr "Стиль блока"
|
851 |
|
852 |
+
#: inc/core/class.data.php:720 inc/core/class.generator-fields.php:86
|
853 |
msgid "Color"
|
854 |
msgstr "Цвет"
|
855 |
|
856 |
+
#: inc/core/class.data.php:721
|
857 |
msgid "Color for the box title and borders"
|
858 |
msgstr "Цвет заголовка блока и его рамки"
|
859 |
|
860 |
+
#: inc/core/class.data.php:727
|
861 |
msgid "Title text color"
|
862 |
msgstr "Цвет текста заголовка"
|
863 |
|
864 |
+
#: inc/core/class.data.php:727
|
865 |
msgid "Color for the box title text"
|
866 |
msgstr "Цвет текста в заголовке блока"
|
867 |
|
868 |
+
#: inc/core/class.data.php:734
|
869 |
msgid "Box corners radius"
|
870 |
msgstr "Радиус углов"
|
871 |
|
872 |
+
#: inc/core/class.data.php:743
|
873 |
msgid "Box content"
|
874 |
msgstr "Содержимое блока"
|
875 |
|
876 |
+
#: inc/core/class.data.php:744
|
877 |
msgid "Colored box with caption"
|
878 |
msgstr "Цветной блок с заголовком"
|
879 |
|
880 |
+
#: inc/core/class.data.php:749
|
881 |
msgid "Note"
|
882 |
msgstr "Заметка"
|
883 |
|
884 |
+
#: inc/core/class.data.php:757
|
885 |
msgid "Note background color"
|
886 |
msgstr "Цвет фона заметки"
|
887 |
|
888 |
+
#: inc/core/class.data.php:764
|
889 |
msgid "Note text color"
|
890 |
msgstr "Цвет текста заметки"
|
891 |
|
892 |
+
#: inc/core/class.data.php:770
|
893 |
msgid "Note corners radius"
|
894 |
msgstr "Радиус углов"
|
895 |
|
896 |
+
#: inc/core/class.data.php:778
|
897 |
msgid "Note text"
|
898 |
msgstr "Текст заметки"
|
899 |
|
900 |
+
#: inc/core/class.data.php:779
|
901 |
msgid "Colored box"
|
902 |
msgstr "Цветной блок"
|
903 |
|
904 |
+
#: inc/core/class.data.php:784
|
905 |
msgid "Lightbox"
|
906 |
msgstr "Лайтбокс"
|
907 |
|
908 |
+
#: inc/core/class.data.php:791
|
909 |
msgid "Iframe"
|
910 |
msgstr "Фрейм (iframe)"
|
911 |
|
912 |
+
#: inc/core/class.data.php:792
|
913 |
msgid "Image"
|
914 |
msgstr "Изображение"
|
915 |
|
916 |
+
#: inc/core/class.data.php:793
|
917 |
msgid "Inline (html content)"
|
918 |
msgstr "HTML элемент"
|
919 |
|
920 |
+
#: inc/core/class.data.php:796
|
921 |
msgid "Content type"
|
922 |
msgstr "Тип содержимого"
|
923 |
|
924 |
+
#: inc/core/class.data.php:797
|
925 |
msgid "Select type of the lightbox window content"
|
926 |
msgstr "Выберите тип содержимого в окне лайтбокса"
|
927 |
|
928 |
+
#: inc/core/class.data.php:801
|
929 |
msgid "Content source"
|
930 |
msgstr "Источник содержимого"
|
931 |
|
932 |
+
#: inc/core/class.data.php:802
|
933 |
+
msgid ""
|
934 |
+
"Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
|
935 |
+
"Use CSS selector for Inline content type.<br />Example values:<br /><b"
|
936 |
+
"%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube video "
|
937 |
+
"(iframe)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - "
|
938 |
+
"uploaded image (image)<br /><b%value>http://example.com/</b> - any web page "
|
939 |
+
"(iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
|
940 |
+
msgstr ""
|
941 |
+
"Вставьте URL или CSS селектор. Используйте URL для типов содержимого Фрейм "
|
942 |
+
"(iframe) и Изображение. Используйте CSS селектор для содержимого типа HTML "
|
943 |
+
"элемент.<br />Примеры значений:<br /><b%value>http://www.youtube.com/watch?"
|
944 |
+
"v=NbE8INOjTKM</b> - YouTube видео (фрейм)<br /><b%value>http://example.com/"
|
945 |
+
"wp-content/uploads/image.jpg</b> - загруженное изображение (изображение)<br /"
|
946 |
+
"><b%value>http://example.com/</b> - любая веб-страница (фрейм)<br /><b"
|
947 |
+
"%value>#contact-form</b> - любой HTML элемент (html элемент)"
|
948 |
+
|
949 |
+
#: inc/core/class.data.php:811
|
950 |
msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
|
951 |
+
msgstr ""
|
952 |
+
"[%prefix_button] Нажмите здесь чтобы посмотреть видео [/%prefix_button]"
|
953 |
|
954 |
+
#: inc/core/class.data.php:812
|
955 |
msgid "Lightbox window with custom content"
|
956 |
msgstr "Лайтбокс с произвольным содержимым"
|
957 |
|
958 |
+
#: inc/core/class.data.php:817
|
959 |
msgid "Tooltip"
|
960 |
msgstr "Подсказка"
|
961 |
|
962 |
+
#: inc/core/class.data.php:824
|
963 |
msgid "Basic: Light"
|
964 |
msgstr "Базовый: Светлый"
|
965 |
|
966 |
+
#: inc/core/class.data.php:825
|
967 |
msgid "Basic: Dark"
|
968 |
msgstr "Базовый: Темный"
|
969 |
|
970 |
+
#: inc/core/class.data.php:826
|
971 |
msgid "Basic: Yellow"
|
972 |
msgstr "Базовый: Желтый"
|
973 |
|
974 |
+
#: inc/core/class.data.php:827
|
975 |
msgid "Basic: Green"
|
976 |
msgstr "Базовый: Зеленый"
|
977 |
|
978 |
+
#: inc/core/class.data.php:828
|
979 |
msgid "Basic: Red"
|
980 |
msgstr "Базовый: Красный"
|
981 |
|
982 |
+
#: inc/core/class.data.php:829
|
983 |
msgid "Basic: Blue"
|
984 |
msgstr "Базовый: Голубой"
|
985 |
|
986 |
+
#: inc/core/class.data.php:830
|
987 |
msgid "Youtube"
|
988 |
msgstr "Youtube"
|
989 |
|
990 |
+
#: inc/core/class.data.php:831
|
991 |
msgid "Tipsy"
|
992 |
msgstr "Tipsy"
|
993 |
|
994 |
+
#: inc/core/class.data.php:832
|
995 |
msgid "Bootstrap"
|
996 |
msgstr "Bootstrap"
|
997 |
|
998 |
+
#: inc/core/class.data.php:833
|
999 |
msgid "jTools"
|
1000 |
msgstr "jTools"
|
1001 |
|
1002 |
+
#: inc/core/class.data.php:834
|
1003 |
msgid "Tipped"
|
1004 |
msgstr "Tipped"
|
1005 |
|
1006 |
+
#: inc/core/class.data.php:835
|
1007 |
msgid "Cluetip"
|
1008 |
msgstr "Cluetip"
|
1009 |
|
1010 |
+
#: inc/core/class.data.php:839
|
1011 |
msgid "Tooltip window style"
|
1012 |
msgstr "Стиль окна подсказки"
|
1013 |
|
1014 |
+
#: inc/core/class.data.php:844
|
1015 |
+
msgid "Top"
|
1016 |
+
msgstr "Сверху"
|
1017 |
+
|
1018 |
+
#: inc/core/class.data.php:845
|
1019 |
+
msgid "Bottom"
|
1020 |
+
msgstr "Снизу"
|
1021 |
+
|
1022 |
+
#: inc/core/class.data.php:850
|
1023 |
msgid "Position"
|
1024 |
msgstr "Положение"
|
1025 |
|
1026 |
+
#: inc/core/class.data.php:851
|
1027 |
msgid "Tooltip position"
|
1028 |
msgstr "Положение всплывающей подсказки"
|
1029 |
|
1030 |
+
#: inc/core/class.data.php:856
|
1031 |
msgid "Shadow"
|
1032 |
msgstr "Тень"
|
1033 |
|
1034 |
+
#: inc/core/class.data.php:857
|
1035 |
+
msgid ""
|
1036 |
+
"Add shadow to tooltip. This option is only works with basic styes, e.g. "
|
1037 |
+
"blue, green etc."
|
1038 |
msgstr "Добавить тень окну подсказки. Тень работает только для базовых стилей."
|
1039 |
|
1040 |
+
#: inc/core/class.data.php:862
|
1041 |
msgid "Rounded corners"
|
1042 |
msgstr "Скругление"
|
1043 |
|
1044 |
+
#: inc/core/class.data.php:863
|
1045 |
+
msgid ""
|
1046 |
+
"Use rounded for tooltip. This option is only works with basic styes, e.g. "
|
1047 |
+
"blue, green etc."
|
1048 |
+
msgstr ""
|
1049 |
+
"Добавить скругленные уголки окну подсказки. Скругление работает только для "
|
1050 |
+
"базовых стилей."
|
1051 |
|
1052 |
+
#: inc/core/class.data.php:877
|
1053 |
msgid "Font size"
|
1054 |
msgstr "Размер шрифта"
|
1055 |
|
1056 |
+
#: inc/core/class.data.php:878
|
1057 |
msgid "Tooltip font size"
|
1058 |
msgstr "Размер шрифта подсказки"
|
1059 |
|
1060 |
+
#: inc/core/class.data.php:882
|
1061 |
msgid "Tooltip title"
|
1062 |
msgstr "Заголовок подсказки"
|
1063 |
|
1064 |
+
#: inc/core/class.data.php:883
|
1065 |
+
msgid ""
|
1066 |
+
"Enter title for tooltip window. Leave this field empty to hide the title"
|
1067 |
+
msgstr ""
|
1068 |
+
"Укажите заголовок окна подсказки. Оставьте поле пустым, чтобы скрыть "
|
1069 |
+
"заголовок"
|
1070 |
|
1071 |
+
#: inc/core/class.data.php:886 inc/core/class.shortcodes.php:497
|
|
|
1072 |
msgid "Tooltip text"
|
1073 |
msgstr "Текст подсказки"
|
1074 |
|
1075 |
+
#: inc/core/class.data.php:887
|
1076 |
msgid "Tooltip content"
|
1077 |
msgstr "Содержимое подсказки"
|
1078 |
|
1079 |
+
#: inc/core/class.data.php:888
|
1080 |
msgid "Enter tooltip content here"
|
1081 |
msgstr "Введите сюда содержимое подсказки"
|
1082 |
|
1083 |
+
#: inc/core/class.data.php:893
|
1084 |
msgid "Show and hide on mouse hover"
|
1085 |
msgstr "Показать и скрыть при наведении мыши"
|
1086 |
|
1087 |
+
#: inc/core/class.data.php:894
|
1088 |
msgid "Show and hide by mouse click"
|
1089 |
msgstr "Показать и скрыть по клику мыши"
|
1090 |
|
1091 |
+
#: inc/core/class.data.php:895
|
1092 |
msgid "Always visible"
|
1093 |
msgstr "Всегда видима"
|
1094 |
|
1095 |
+
#: inc/core/class.data.php:898
|
1096 |
msgid "Behavior"
|
1097 |
msgstr "Поведение"
|
1098 |
|
1099 |
+
#: inc/core/class.data.php:899
|
1100 |
msgid "Select tooltip behavior"
|
1101 |
msgstr "Выберите поведение подсказки"
|
1102 |
|
1103 |
+
#: inc/core/class.data.php:904
|
1104 |
msgid "Close button"
|
1105 |
msgstr "Кнопка закрыть"
|
1106 |
|
1107 |
+
#: inc/core/class.data.php:905
|
1108 |
msgid "Show close button"
|
1109 |
msgstr "Показывать кнопку закрыть"
|
1110 |
|
1111 |
+
#: inc/core/class.data.php:914
|
1112 |
msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
|
1113 |
+
msgstr ""
|
1114 |
+
"[%prefix_button] Наведите мышку чтобы увидеть подсказку [/%prefix_button]"
|
1115 |
|
1116 |
+
#: inc/core/class.data.php:915
|
1117 |
msgid "Tooltip window with custom content"
|
1118 |
msgstr "Всплывающая подсказка с произвольным содержимым"
|
1119 |
|
1120 |
+
#: inc/core/class.data.php:920
|
1121 |
msgid "Private"
|
1122 |
msgstr "Заметка для авторов"
|
1123 |
|
1124 |
+
#: inc/core/class.data.php:931
|
1125 |
msgid "Private note text"
|
1126 |
msgstr "Текст приватной заметки"
|
1127 |
|
1128 |
+
#: inc/core/class.data.php:932
|
1129 |
msgid "Private note for post authors"
|
1130 |
msgstr "Приватный текст для других авторов"
|
1131 |
|
1132 |
+
#: inc/core/class.data.php:937
|
1133 |
msgid "YouTube"
|
1134 |
msgstr "YouTube"
|
1135 |
|
1136 |
+
#: inc/core/class.data.php:944 inc/core/class.data.php:996
|
1137 |
+
#: inc/core/class.data.php:1046 inc/core/class.data.php:1307
|
1138 |
+
#: inc/core/class.data.php:1405
|
|
|
|
|
1139 |
msgid "Url"
|
1140 |
msgstr "Ссылка"
|
1141 |
|
1142 |
+
#: inc/core/class.data.php:945
|
1143 |
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
1144 |
+
msgstr ""
|
1145 |
+
"Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
|
1146 |
+
|
1147 |
+
#: inc/core/class.data.php:953 inc/core/class.data.php:1004
|
1148 |
+
#: inc/core/class.data.php:1054 inc/core/class.data.php:1097
|
1149 |
+
#: inc/core/class.data.php:1152 inc/core/class.data.php:1414
|
1150 |
+
#: inc/core/class.data.php:1454 inc/core/class.data.php:1505
|
1151 |
+
#: inc/core/class.data.php:1597 inc/core/class.data.php:1705
|
|
|
|
|
|
|
|
|
1152 |
msgid "Width"
|
1153 |
msgstr "Ширина"
|
1154 |
|
1155 |
+
#: inc/core/class.data.php:954 inc/core/class.data.php:1005
|
1156 |
+
#: inc/core/class.data.php:1055 inc/core/class.data.php:1153
|
|
|
|
|
1157 |
msgid "Player width"
|
1158 |
msgstr "Ширина плеера"
|
1159 |
|
1160 |
+
#: inc/core/class.data.php:963 inc/core/class.data.php:1014
|
1161 |
+
#: inc/core/class.data.php:1064 inc/core/class.data.php:1162
|
|
|
|
|
1162 |
msgid "Player height"
|
1163 |
msgstr "Высота плеера"
|
1164 |
|
1165 |
+
#: inc/core/class.data.php:968 inc/core/class.data.php:1019
|
1166 |
+
#: inc/core/class.data.php:1069 inc/core/class.data.php:1429
|
1167 |
+
#: inc/core/class.data.php:1469 inc/core/class.data.php:1518
|
1168 |
+
#: inc/core/class.data.php:1610
|
|
|
|
|
|
|
1169 |
msgid "Responsive"
|
1170 |
msgstr "Отзывчивость (responsive)"
|
1171 |
|
1172 |
+
#: inc/core/class.data.php:969 inc/core/class.data.php:1020
|
1173 |
+
#: inc/core/class.data.php:1070
|
|
|
1174 |
msgid "Ignore width and height parameters and make player responsive"
|
1175 |
+
msgstr ""
|
1176 |
+
"Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
|
1177 |
+
|
1178 |
+
#: inc/core/class.data.php:974 inc/core/class.data.php:1025
|
1179 |
+
#: inc/core/class.data.php:1103 inc/core/class.data.php:1173
|
1180 |
+
#: inc/core/class.data.php:1553 inc/core/class.data.php:1661
|
|
|
|
|
1181 |
msgid "Autoplay"
|
1182 |
msgstr "Автовоспроизведение"
|
1183 |
|
1184 |
+
#: inc/core/class.data.php:975 inc/core/class.data.php:1026
|
|
|
1185 |
msgid "Play video automatically when page is loaded"
|
1186 |
msgstr "Воспроизвести видео автоматически при открытии страницы"
|
1187 |
|
1188 |
+
#: inc/core/class.data.php:984
|
1189 |
msgid "YouTube video"
|
1190 |
msgstr "Видео YouTube"
|
1191 |
|
1192 |
+
#: inc/core/class.data.php:989
|
1193 |
msgid "Vimeo"
|
1194 |
msgstr "Vimeo"
|
1195 |
|
1196 |
+
#: inc/core/class.data.php:996
|
1197 |
msgid "Url of Vimeo page with video"
|
1198 |
msgstr "Ссылка на страницу Vimeo с видео"
|
1199 |
|
1200 |
+
#: inc/core/class.data.php:1035
|
1201 |
msgid "Vimeo video"
|
1202 |
msgstr "Видео Vimeo"
|
1203 |
|
1204 |
+
#: inc/core/class.data.php:1040
|
1205 |
msgid "Screenr"
|
1206 |
msgstr "Screenr"
|
1207 |
|
1208 |
+
#: inc/core/class.data.php:1046
|
1209 |
msgid "Url of Screenr page with video"
|
1210 |
msgstr "Ссылка на страницу Screenr с видео"
|
1211 |
|
1212 |
+
#: inc/core/class.data.php:1079
|
1213 |
msgid "Screenr video"
|
1214 |
msgstr "Видео Screenr"
|
1215 |
|
1216 |
+
#: inc/core/class.data.php:1084
|
1217 |
msgid "Audio"
|
1218 |
msgstr "Аудио"
|
1219 |
|
1220 |
+
#: inc/core/class.data.php:1091 inc/core/class.data.php:1131
|
|
|
1221 |
msgid "File"
|
1222 |
msgstr "Файл"
|
1223 |
|
1224 |
+
#: inc/core/class.data.php:1092
|
1225 |
msgid "Audio file url. Supported formats: mp3, ogg"
|
1226 |
msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
|
1227 |
|
1228 |
+
#: inc/core/class.data.php:1098
|
1229 |
+
msgid ""
|
1230 |
+
"Player width. You can specify width in percents and player will be "
|
1231 |
+
"responsive. Example values: <b%value>200px</b>, <b%value>100%</b>"
|
1232 |
+
msgstr ""
|
1233 |
+
"Ширина плеера. Вы можете указать ширину в процентах и плеер станет "
|
1234 |
+
"отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b"
|
1235 |
+
"%value>100%</b>"
|
1236 |
|
1237 |
+
#: inc/core/class.data.php:1104 inc/core/class.data.php:1174
|
|
|
1238 |
msgid "Play file automatically when page is loaded"
|
1239 |
msgstr "Воспроизводить файл автоматически при открытии страницы"
|
1240 |
|
1241 |
+
#: inc/core/class.data.php:1109 inc/core/class.data.php:1179
|
|
|
1242 |
msgid "Loop"
|
1243 |
msgstr "Повтор"
|
1244 |
|
1245 |
+
#: inc/core/class.data.php:1110 inc/core/class.data.php:1180
|
|
|
1246 |
msgid "Repeat when playback is ended"
|
1247 |
msgstr "Повторять, когда воспроизведение окночено"
|
1248 |
|
1249 |
+
#: inc/core/class.data.php:1119
|
1250 |
msgid "Custom audio player"
|
1251 |
msgstr "Настраиваемый аудио-плеер"
|
1252 |
|
1253 |
+
#: inc/core/class.data.php:1124
|
1254 |
msgid "Video"
|
1255 |
msgstr "Видео"
|
1256 |
|
1257 |
+
#: inc/core/class.data.php:1132
|
1258 |
msgid "Url to mp4/flv video-file"
|
1259 |
msgstr "Ссылка на mp4/flv видео-файл"
|
1260 |
|
1261 |
+
#: inc/core/class.data.php:1137
|
1262 |
msgid "Poster"
|
1263 |
msgstr "Постер"
|
1264 |
|
1265 |
+
#: inc/core/class.data.php:1138
|
1266 |
msgid "Url to poster image, that will be shown before playback"
|
1267 |
+
msgstr ""
|
1268 |
+
"Ссылка на изображение постера. Изображение будет показано перед началом "
|
1269 |
+
"воспроизведения"
|
1270 |
|
1271 |
+
#: inc/core/class.data.php:1144
|
1272 |
msgid "Player title"
|
1273 |
msgstr "Заголовок плеера"
|
1274 |
|
1275 |
+
#: inc/core/class.data.php:1167
|
1276 |
msgid "Controls"
|
1277 |
msgstr "Элементы управления"
|
1278 |
|
1279 |
+
#: inc/core/class.data.php:1168
|
1280 |
msgid "Show player controls (play/pause etc.) or not"
|
1281 |
+
msgstr ""
|
1282 |
+
"Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
|
1283 |
|
1284 |
+
#: inc/core/class.data.php:1189
|
1285 |
msgid "Custom video player"
|
1286 |
msgstr "Настраиваемый видео-плеер"
|
1287 |
|
1288 |
+
#: inc/core/class.data.php:1194
|
1289 |
msgid "Table"
|
1290 |
msgstr "Таблица"
|
1291 |
|
1292 |
+
#: inc/core/class.data.php:1201
|
1293 |
msgid "CSV file"
|
1294 |
msgstr "CSV файл"
|
1295 |
|
1296 |
+
#: inc/core/class.data.php:1202
|
1297 |
msgid "Upload CSV file if you want to create HTML-table from file"
|
1298 |
+
msgstr ""
|
1299 |
+
"Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
|
1300 |
|
1301 |
+
#: inc/core/class.data.php:1211
|
1302 |
msgid ""
|
1303 |
"<table>\n"
|
1304 |
"<tr>\n"
|
1322 |
"</tr>\n"
|
1323 |
"</table>"
|
1324 |
|
1325 |
+
#: inc/core/class.data.php:1212
|
1326 |
msgid "Styled table from HTML or CSV file"
|
1327 |
msgstr "Стильная таблица из HTML или CSV файла"
|
1328 |
|
1329 |
+
#: inc/core/class.data.php:1217
|
1330 |
msgid "Permalink"
|
1331 |
msgstr "Постоянная ссылка"
|
1332 |
|
1333 |
+
#: inc/core/class.data.php:1223
|
1334 |
msgid "ID"
|
1335 |
msgstr "ID"
|
1336 |
|
1337 |
+
#: inc/core/class.data.php:1224
|
1338 |
msgid "Post or page ID"
|
1339 |
msgstr "ID записи или страницы"
|
1340 |
|
1341 |
+
#: inc/core/class.data.php:1234
|
1342 |
msgid "Link target. blank - link will be opened in new window/tab"
|
1343 |
+
msgstr ""
|
1344 |
+
"Цель ссылки. blank - означает что ссылка будет открыта в новом окне или "
|
1345 |
+
"вкладке"
|
1346 |
|
1347 |
+
#: inc/core/class.data.php:1244
|
1348 |
msgid "Permalink to specified post/page"
|
1349 |
msgstr "Постоянная ссылка на страницу"
|
1350 |
|
1351 |
+
#: inc/core/class.data.php:1249
|
1352 |
msgid "Members"
|
1353 |
msgstr "Участники"
|
1354 |
|
1355 |
+
#: inc/core/class.data.php:1254 inc/core/class.shortcodes.php:699
|
|
|
1356 |
msgid "This content is for registered users only. Please %login%."
|
1357 |
+
msgstr ""
|
1358 |
+
"Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
|
1359 |
|
1360 |
+
#: inc/core/class.data.php:1255
|
1361 |
msgid "Message"
|
1362 |
msgstr "Сообщение"
|
1363 |
|
1364 |
+
#: inc/core/class.data.php:1255
|
1365 |
msgid "Message for not logged users"
|
1366 |
msgstr "Собщение для неавторизованных"
|
1367 |
|
1368 |
+
#: inc/core/class.data.php:1260
|
1369 |
msgid "Box color"
|
1370 |
msgstr "Цвет блока"
|
1371 |
|
1372 |
+
#: inc/core/class.data.php:1260
|
1373 |
msgid "This color will applied only to box for not logged users"
|
1374 |
+
msgstr ""
|
1375 |
+
"Этот цвет будет применен только к блоку для не авторизованных посетителей"
|
1376 |
|
1377 |
+
#: inc/core/class.data.php:1263 inc/core/class.shortcodes.php:702
|
|
|
1378 |
msgid "login"
|
1379 |
msgstr "войдите"
|
1380 |
|
1381 |
+
#: inc/core/class.data.php:1264
|
1382 |
msgid "Login link text"
|
1383 |
msgstr "Текст ссылки войти"
|
1384 |
|
1385 |
+
#: inc/core/class.data.php:1264
|
1386 |
msgid "Text for the login link"
|
1387 |
msgstr "Текст ссылки ВОЙТИ"
|
1388 |
|
1389 |
+
#: inc/core/class.data.php:1268
|
1390 |
msgid "Login link url"
|
1391 |
msgstr "Адрес ссылки войти"
|
1392 |
|
1393 |
+
#: inc/core/class.data.php:1277
|
1394 |
msgid "Content for logged members"
|
1395 |
msgstr "Содержимое для авторизованых пользователей"
|
1396 |
|
1397 |
+
#: inc/core/class.data.php:1278
|
1398 |
msgid "Content for logged in members only"
|
1399 |
msgstr "Ссодержимое для авторизованых"
|
1400 |
|
1401 |
+
#: inc/core/class.data.php:1283
|
1402 |
msgid "Guests"
|
1403 |
msgstr "Гости"
|
1404 |
|
1405 |
+
#: inc/core/class.data.php:1294
|
1406 |
msgid "Content for guests"
|
1407 |
msgstr "Содержимое для гостей"
|
1408 |
|
1409 |
+
#: inc/core/class.data.php:1295
|
1410 |
msgid "Content for guests only"
|
1411 |
msgstr "Ссодержимое только для гостей"
|
1412 |
|
1413 |
+
#: inc/core/class.data.php:1300
|
1414 |
msgid "RSS Feed"
|
1415 |
msgstr "RSS лента"
|
1416 |
|
1417 |
+
#: inc/core/class.data.php:1308
|
1418 |
msgid "Url to RSS-feed"
|
1419 |
msgstr "Ссылка на RSS-ленту"
|
1420 |
|
1421 |
+
#: inc/core/class.data.php:1313
|
1422 |
msgid "Limit"
|
1423 |
msgstr "Лимит"
|
1424 |
|
1425 |
+
#: inc/core/class.data.php:1313
|
1426 |
msgid "Number of items to show"
|
1427 |
msgstr "Количество элементов для отображения"
|
1428 |
|
1429 |
+
#: inc/core/class.data.php:1322
|
1430 |
msgid "Feed grabber"
|
1431 |
msgstr "Граббер новостных лент"
|
1432 |
|
1433 |
+
#: inc/core/class.data.php:1327
|
1434 |
msgid "Menu"
|
1435 |
msgstr "Меню"
|
1436 |
|
1437 |
+
#: inc/core/class.data.php:1334
|
1438 |
msgid "Menu name"
|
1439 |
msgstr "Имя меню"
|
1440 |
|
1441 |
+
#: inc/core/class.data.php:1334
|
1442 |
msgid "Custom menu name. Ex: Main menu"
|
1443 |
msgstr "Имя произвольного меню. Например: Главное меню"
|
1444 |
|
1445 |
+
#: inc/core/class.data.php:1343
|
1446 |
msgid "Custom menu by name"
|
1447 |
msgstr "Произвольное меню"
|
1448 |
|
1449 |
+
#: inc/core/class.data.php:1348
|
1450 |
msgid "Sub pages"
|
1451 |
msgstr "Подстраницы"
|
1452 |
|
1453 |
+
#: inc/core/class.data.php:1355 inc/core/class.data.php:1383
|
|
|
1454 |
msgid "Depth"
|
1455 |
msgstr "Глубина"
|
1456 |
|
1457 |
+
#: inc/core/class.data.php:1356
|
1458 |
msgid "Max depth level of children pages"
|
1459 |
msgstr "Максимальная глубина дочерних страниц"
|
1460 |
|
1461 |
+
#: inc/core/class.data.php:1361
|
1462 |
msgid "Parent ID"
|
1463 |
msgstr "ID родителя"
|
1464 |
|
1465 |
+
#: inc/core/class.data.php:1362
|
1466 |
msgid "ID of the parent page. Leave blank to use current page"
|
1467 |
+
msgstr ""
|
1468 |
+
"ID родительской страницы. Оставьте пустым, чтобы использовать текущую "
|
1469 |
+
"страницу"
|
1470 |
|
1471 |
+
#: inc/core/class.data.php:1371
|
1472 |
msgid "List of sub pages"
|
1473 |
msgstr "Список дочерних страниц"
|
1474 |
|
1475 |
+
#: inc/core/class.data.php:1376
|
1476 |
msgid "Siblings"
|
1477 |
msgstr "Соседние страницы"
|
1478 |
|
1479 |
+
#: inc/core/class.data.php:1384
|
1480 |
msgid "Max depth level"
|
1481 |
msgstr "Максимальный уровень вложенности"
|
1482 |
|
1483 |
+
#: inc/core/class.data.php:1393
|
1484 |
msgid "List of cureent page siblings"
|
1485 |
msgstr "Список страниц, соседних с текущей"
|
1486 |
|
1487 |
+
#: inc/core/class.data.php:1398
|
1488 |
msgid "Document"
|
1489 |
msgstr "Документ"
|
1490 |
|
1491 |
+
#: inc/core/class.data.php:1406
|
1492 |
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1493 |
+
msgstr ""
|
1494 |
+
"Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
|
1495 |
|
1496 |
+
#: inc/core/class.data.php:1415
|
1497 |
msgid "Viewer width"
|
1498 |
msgstr "Ширина просмотрщика"
|
1499 |
|
1500 |
+
#: inc/core/class.data.php:1424
|
1501 |
msgid "Viewer height"
|
1502 |
msgstr "Высота просмотрщика"
|
1503 |
|
1504 |
+
#: inc/core/class.data.php:1430
|
1505 |
msgid "Ignore width and height parameters and make viewer responsive"
|
1506 |
msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
|
1507 |
|
1508 |
+
#: inc/core/class.data.php:1439
|
1509 |
msgid "Document viewer by Google"
|
1510 |
msgstr "Просмотрщик документов от Google"
|
1511 |
|
1512 |
+
#: inc/core/class.data.php:1444
|
1513 |
msgid "Gmap"
|
1514 |
msgstr "Google карта"
|
1515 |
|
1516 |
+
#: inc/core/class.data.php:1455
|
1517 |
msgid "Map width"
|
1518 |
msgstr "Ширина карты"
|
1519 |
|
1520 |
+
#: inc/core/class.data.php:1464
|
1521 |
msgid "Map height"
|
1522 |
msgstr "Высота карты"
|
1523 |
|
1524 |
+
#: inc/core/class.data.php:1470
|
1525 |
msgid "Ignore width and height parameters and make map responsive"
|
1526 |
msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
|
1527 |
|
1528 |
+
#: inc/core/class.data.php:1475
|
1529 |
msgid "Marker"
|
1530 |
msgstr "Маркер"
|
1531 |
|
1532 |
+
#: inc/core/class.data.php:1476
|
1533 |
msgid "Address for the marker. You can type it in any language"
|
1534 |
msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
|
1535 |
|
1536 |
+
#: inc/core/class.data.php:1485
|
1537 |
msgid "Maps by Google"
|
1538 |
msgstr "Карты от Google"
|
1539 |
|
1540 |
+
#: inc/core/class.data.php:1490
|
1541 |
msgid "Slider"
|
1542 |
msgstr "Слайдер"
|
1543 |
|
1544 |
+
#: inc/core/class.data.php:1497
|
1545 |
msgid "Choose source gallery, that will be used for this slider"
|
1546 |
+
msgstr ""
|
1547 |
+
"Выберите галерею-источник, которая будет использована для создания этого "
|
1548 |
+
"слайдера"
|
1549 |
|
1550 |
+
#: inc/core/class.data.php:1505
|
1551 |
msgid "Slider width (in pixels)"
|
1552 |
msgstr "Ширина слайдера (в пикселях)"
|
1553 |
|
1554 |
+
#: inc/core/class.data.php:1513
|
1555 |
msgid "Slider height (in pixels)"
|
1556 |
msgstr "Высота слайдера (в пикселях)"
|
1557 |
|
1558 |
+
#: inc/core/class.data.php:1519
|
1559 |
msgid "Ignore width and height parameters and make slider responsive"
|
1560 |
msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
|
1561 |
|
1562 |
+
#: inc/core/class.data.php:1524 inc/core/class.data.php:1632
|
1563 |
+
#: inc/core/class.data.php:1723
|
|
|
1564 |
msgid "Show titles"
|
1565 |
msgstr "Показывать заголовки"
|
1566 |
|
1567 |
+
#: inc/core/class.data.php:1524
|
1568 |
msgid "Display slide titles"
|
1569 |
msgstr "Отображать заголовки слайдов"
|
1570 |
|
1571 |
+
#: inc/core/class.data.php:1529
|
1572 |
msgid "Is slider centered on the page"
|
1573 |
msgstr "Слайдер выровнен по центру страницы"
|
1574 |
|
1575 |
+
#: inc/core/class.data.php:1534 inc/core/class.data.php:1642
|
|
|
1576 |
msgid "Arrows"
|
1577 |
msgstr "Стрелки"
|
1578 |
|
1579 |
+
#: inc/core/class.data.php:1534 inc/core/class.data.php:1642
|
|
|
1580 |
msgid "Show left and right arrows"
|
1581 |
msgstr "Показывать стрелки влево/вправо"
|
1582 |
|
1583 |
+
#: inc/core/class.data.php:1539 inc/core/class.data.php:1647
|
|
|
1584 |
msgid "Pagination"
|
1585 |
msgstr "Страницы"
|
1586 |
|
1587 |
+
#: inc/core/class.data.php:1540 inc/core/class.data.php:1648
|
|
|
1588 |
msgid "Show pagination"
|
1589 |
msgstr "Показывать страницы"
|
1590 |
|
1591 |
+
#: inc/core/class.data.php:1544 inc/core/class.data.php:1652
|
|
|
1592 |
msgid "Mouse wheel control"
|
1593 |
msgstr "Управление колесом мыши"
|
1594 |
|
1595 |
+
#: inc/core/class.data.php:1545
|
1596 |
msgid "Allow to change slides with mouse wheel"
|
1597 |
msgstr "Разрешить перелистывание слайдов колесом мышки"
|
1598 |
|
1599 |
+
#: inc/core/class.data.php:1554
|
1600 |
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
1601 |
+
msgstr ""
|
1602 |
+
"Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы "
|
1603 |
+
"отключить автовоспроизведение"
|
1604 |
|
1605 |
+
#: inc/core/class.data.php:1562 inc/core/class.data.php:1670
|
|
|
1606 |
msgid "Speed"
|
1607 |
msgstr "Скорость"
|
1608 |
|
1609 |
+
#: inc/core/class.data.php:1562 inc/core/class.data.php:1670
|
|
|
1610 |
msgid "Specify animation speed"
|
1611 |
msgstr "Укажите скорость анимации"
|
1612 |
|
1613 |
+
#: inc/core/class.data.php:1567 inc/core/class.data.php:1675
|
1614 |
+
#: inc/core/class.data.php:1729
|
|
|
1615 |
msgid "Links target"
|
1616 |
msgstr "Цель ссылок"
|
1617 |
|
1618 |
+
#: inc/core/class.data.php:1568
|
1619 |
msgid "Open slides links in new window/tab"
|
1620 |
msgstr "Открывать ссылки слайдов в новом окне или вкладке"
|
1621 |
|
1622 |
+
#: inc/core/class.data.php:1577
|
1623 |
msgid "Customizable image slider"
|
1624 |
msgstr "Настраиваемый слайдер изображений"
|
1625 |
|
1626 |
+
#: inc/core/class.data.php:1582
|
1627 |
msgid "Carousel"
|
1628 |
msgstr "Карусель"
|
1629 |
|
1630 |
+
#: inc/core/class.data.php:1589
|
1631 |
msgid "Choose source gallery, that will be used for this carousel"
|
1632 |
+
msgstr ""
|
1633 |
+
"Выберите галерею-источник, которая будет использована для создания этой "
|
1634 |
+
"карусели"
|
1635 |
|
1636 |
+
#: inc/core/class.data.php:1597
|
1637 |
msgid "Carousel width (in pixels)"
|
1638 |
msgstr "Ширина карусели (в пикселях)"
|
1639 |
|
1640 |
+
#: inc/core/class.data.php:1605
|
1641 |
msgid "Carousel height (in pixels)"
|
1642 |
msgstr "Высота карусели (в пикселях)"
|
1643 |
|
1644 |
+
#: inc/core/class.data.php:1611
|
1645 |
msgid "Ignore width and height parameters and make carousel responsive"
|
1646 |
msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
|
1647 |
|
1648 |
+
#: inc/core/class.data.php:1618
|
1649 |
msgid "Items to show"
|
1650 |
msgstr "Количество элементов для отображения"
|
1651 |
|
1652 |
+
#: inc/core/class.data.php:1619
|
1653 |
msgid "How much carousel items is visible"
|
1654 |
msgstr "Сколько элементов карусели видны постоянно"
|
1655 |
|
1656 |
+
#: inc/core/class.data.php:1626
|
1657 |
msgid "Scroll number"
|
1658 |
msgstr "Кол-во прокручиваемых"
|
1659 |
|
1660 |
+
#: inc/core/class.data.php:1627
|
1661 |
msgid "How much items are scrolled in one transition"
|
1662 |
msgstr "Сколько элементов карусели прокручивается за один переход"
|
1663 |
|
1664 |
+
#: inc/core/class.data.php:1632
|
1665 |
msgid "Display titles for each item"
|
1666 |
msgstr "Показывать заголовки для каждого элемента карусели"
|
1667 |
|
1668 |
+
#: inc/core/class.data.php:1637
|
1669 |
msgid "Is carousel centered on the page"
|
1670 |
msgstr "Карусель выровнена по центру страницы"
|
1671 |
|
1672 |
+
#: inc/core/class.data.php:1653
|
1673 |
msgid "Allow to rotate carousel with mouse wheel"
|
1674 |
msgstr "Разрешить прокрутку карусели колесом мыши"
|
1675 |
|
1676 |
+
#: inc/core/class.data.php:1662
|
1677 |
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
1678 |
+
msgstr ""
|
1679 |
+
"Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить "
|
1680 |
+
"автовоспроизведение"
|
1681 |
|
1682 |
+
#: inc/core/class.data.php:1676
|
1683 |
msgid "Open carousel links in new window/tab"
|
1684 |
msgstr "Открывать ссылки карусели в новом окне или вкладке"
|
1685 |
|
1686 |
+
#: inc/core/class.data.php:1685
|
1687 |
msgid "Customizable image carousel"
|
1688 |
msgstr "Настраиваемая карусель изображений"
|
1689 |
|
1690 |
+
#: inc/core/class.data.php:1697
|
1691 |
msgid "Choose source gallery, that will be used for this shortcode"
|
1692 |
+
msgstr ""
|
1693 |
+
"Выберите галерею-источник, которая будет использована для этого шорткода"
|
1694 |
|
1695 |
+
#: inc/core/class.data.php:1705
|
1696 |
msgid "Single item width (in pixels)"
|
1697 |
msgstr "Ширина одного изображения (в пикселях)"
|
1698 |
|
1699 |
+
#: inc/core/class.data.php:1713
|
1700 |
msgid "Single item height (in pixels)"
|
1701 |
msgstr "Высота одного изображения (в пикселях)"
|
1702 |
|
1703 |
+
#: inc/core/class.data.php:1718
|
1704 |
msgid "Never"
|
1705 |
msgstr "Никогда"
|
1706 |
|
1707 |
+
#: inc/core/class.data.php:1719
|
1708 |
msgid "On mouse over"
|
1709 |
msgstr "При наведении мыши"
|
1710 |
|
1711 |
+
#: inc/core/class.data.php:1720
|
1712 |
msgid "Always"
|
1713 |
msgstr "Всегда"
|
1714 |
|
1715 |
+
#: inc/core/class.data.php:1724
|
1716 |
msgid "Title display mode"
|
1717 |
msgstr "Режим отображения заголовков"
|
1718 |
|
1719 |
+
#: inc/core/class.data.php:1729
|
1720 |
msgid "Open links in new window/tab"
|
1721 |
msgstr "Открывать ссылки в новом окне или вкладке"
|
1722 |
|
1723 |
+
#: inc/core/class.data.php:1738
|
1724 |
msgid "Customizable image gallery"
|
1725 |
msgstr "Настраиваемая галерея изображений"
|
1726 |
|
1727 |
+
#: inc/core/class.data.php:1743
|
1728 |
msgid "Posts"
|
1729 |
msgstr "Записи"
|
1730 |
|
1731 |
+
#: inc/core/class.data.php:1748
|
1732 |
msgid "Template"
|
1733 |
msgstr "Шаблон"
|
1734 |
|
|
|
|
|
|
|
|
|
1735 |
#: inc/core/class.data.php:1749
|
1736 |
+
msgid ""
|
1737 |
+
"<b>Do not change this field value if you do not understand description below."
|
1738 |
+
"</b><br/>Relative path to the template file. Default templates is placed "
|
1739 |
+
"under the plugin directory (templates folder). You can copy it under your "
|
1740 |
+
"theme directory and modify as you want. You can use following default "
|
1741 |
+
"templates that already available in the plugin directory:<br/><b"
|
1742 |
+
"%value>templates/default-loop.php</b> - posts loop<br/><b%value>templates/"
|
1743 |
+
"teaser-loop.php</b> - posts loop with thumbnail and title<br/><b"
|
1744 |
+
"%value>templates/single-post.php</b> - single post template<br/><b"
|
1745 |
+
"%value>templates/list-loop.php</b> - unordered list with posts titles"
|
1746 |
+
msgstr ""
|
1747 |
+
"<b>Не изменяйте значение этого поля, если вы не понимаете описания ниже.</"
|
1748 |
+
"b><br/>Относительный путь к файлу шаблона. Шаблоны по умолчанию расположены "
|
1749 |
+
"в папке с плагином (папка templates). Вы можете скопировать шаблоны в папку "
|
1750 |
+
"со своей темой и изменить как вам угодно. Вы можете использовать следующие "
|
1751 |
+
"шаблоны, которые уже поставляются с плагином и находятся в его папке:<br/><b"
|
1752 |
+
"%value>templates/default-loop.php</b> - обычный цикл постов<br/><b"
|
1753 |
+
"%value>templates/teaser-loop.php</b> - цикл постов в виде тизеров, "
|
1754 |
+
"изображения + заголовки<br/><b%value>templates/single-post.php</b> - шаблон "
|
1755 |
+
"одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - "
|
1756 |
+
"маркированный список с заголовками постов"
|
1757 |
+
|
1758 |
+
#: inc/core/class.data.php:1753
|
1759 |
msgid "Post ID's"
|
1760 |
msgstr "ID постов"
|
1761 |
|
1762 |
+
#: inc/core/class.data.php:1754
|
1763 |
msgid "Enter comma separated ID's of the posts that you want to show"
|
1764 |
msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
|
1765 |
|
1766 |
+
#: inc/core/class.data.php:1762
|
1767 |
msgid "Posts per page"
|
1768 |
msgstr "Кол-во записей"
|
1769 |
|
1770 |
+
#: inc/core/class.data.php:1763
|
1771 |
+
msgid ""
|
1772 |
+
"Specify number of posts that you want to show. Enter -1 to get all posts"
|
1773 |
+
msgstr ""
|
1774 |
+
"Укажите число записей, которое хотите отобразить. Введите -1 чтобы "
|
1775 |
+
"отобразить все найденные записи"
|
1776 |
|
1777 |
+
#: inc/core/class.data.php:1770
|
1778 |
msgid "Post types"
|
1779 |
msgstr "Типы постов"
|
1780 |
|
1781 |
+
#: inc/core/class.data.php:1771
|
1782 |
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
1783 |
+
msgstr ""
|
1784 |
+
"Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
|
1785 |
|
1786 |
+
#: inc/core/class.data.php:1777
|
1787 |
msgid "Taxonomy"
|
1788 |
msgstr "Таксономия"
|
1789 |
|
1790 |
+
#: inc/core/class.data.php:1778
|
1791 |
msgid "Select taxonomy to show posts from"
|
1792 |
msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
|
1793 |
|
1794 |
+
#: inc/core/class.data.php:1785
|
1795 |
msgid "Terms"
|
1796 |
msgstr "Категории (terms)"
|
1797 |
|
1798 |
+
#: inc/core/class.data.php:1785
|
1799 |
msgid "Select terms to show posts from"
|
1800 |
msgstr "Выберите категории, из которых нужно показать записи"
|
1801 |
|
1802 |
+
#: inc/core/class.data.php:1790
|
1803 |
msgid "Taxonomy term operator"
|
1804 |
msgstr "Оператор выбора категорий"
|
1805 |
|
1806 |
+
#: inc/core/class.data.php:1791
|
1807 |
+
msgid ""
|
1808 |
+
"IN - posts that have any of selected categories terms<br/>NOT IN - posts "
|
1809 |
+
"that is does not have any of selected terms<br/>AND - posts that have all "
|
1810 |
+
"selected terms"
|
1811 |
+
msgstr ""
|
1812 |
+
"IN - будут показана записи имеющие любую из выбранных категорий<br/>NOT IN - "
|
1813 |
+
"будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/"
|
1814 |
+
">AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
|
1815 |
|
1816 |
+
#: inc/core/class.data.php:1798
|
1817 |
msgid "Authors"
|
1818 |
msgstr "Авторы"
|
1819 |
|
1820 |
+
#: inc/core/class.data.php:1799
|
1821 |
msgid "Choose the authors whose posts you want to show"
|
1822 |
msgstr "Выберите авторов, чьи записи хотите показать"
|
1823 |
|
1824 |
+
#: inc/core/class.data.php:1803
|
1825 |
msgid "Meta key"
|
1826 |
msgstr "Произвольное поле"
|
1827 |
|
1828 |
+
#: inc/core/class.data.php:1804
|
1829 |
msgid "Enter meta key name to show posts that have this key"
|
1830 |
+
msgstr ""
|
1831 |
+
"Введите оригинальное имя произвольного поля, чтобы показать все записи у "
|
1832 |
+
"которых это поле задано"
|
1833 |
|
1834 |
+
#: inc/core/class.data.php:1811
|
1835 |
msgid "Offset"
|
1836 |
msgstr "Смещение (offset)"
|
1837 |
|
1838 |
+
#: inc/core/class.data.php:1812
|
1839 |
msgid "Specify offset to start posts loop not from first post"
|
1840 |
+
msgstr ""
|
1841 |
+
"Укажите кол-во записей, которые будут пропущены и не показаны. Например, "
|
1842 |
+
"если указать 2, то будут показаны записи начиная со третьей"
|
1843 |
|
1844 |
+
#: inc/core/class.data.php:1817
|
1845 |
msgid "Descending"
|
1846 |
msgstr "По убыванию"
|
1847 |
|
1848 |
+
#: inc/core/class.data.php:1818
|
1849 |
msgid "Ascending"
|
1850 |
msgstr "По возрастанию"
|
1851 |
|
1852 |
+
#: inc/core/class.data.php:1821
|
1853 |
msgid "Order"
|
1854 |
msgstr "Порядок"
|
1855 |
|
1856 |
+
#: inc/core/class.data.php:1822
|
1857 |
msgid "Posts order"
|
1858 |
msgstr "Порядок сортировки записей"
|
1859 |
|
1860 |
+
#: inc/core/class.data.php:1827
|
1861 |
+
msgid "None"
|
1862 |
+
msgstr "Нет"
|
1863 |
+
|
1864 |
+
#: inc/core/class.data.php:1828
|
1865 |
msgid "Post ID"
|
1866 |
msgstr "ID записи"
|
1867 |
|
1868 |
+
#: inc/core/class.data.php:1829
|
1869 |
msgid "Post author"
|
1870 |
msgstr "Автор записи"
|
1871 |
|
1872 |
+
#: inc/core/class.data.php:1830
|
1873 |
msgid "Post title"
|
1874 |
msgstr "Заголовок записи"
|
1875 |
|
1876 |
+
#: inc/core/class.data.php:1831
|
1877 |
msgid "Post slug"
|
1878 |
msgstr "Ссылка записи (slug)"
|
1879 |
|
1880 |
+
#: inc/core/class.data.php:1832
|
1881 |
msgid "Date"
|
1882 |
msgstr "Дата"
|
1883 |
|
1884 |
+
#: inc/core/class.data.php:1832
|
1885 |
msgid "Last modified date"
|
1886 |
msgstr "Дата изменения"
|
1887 |
|
1888 |
+
#: inc/core/class.data.php:1833 inc/core/class.data.php:1843
|
|
|
1889 |
msgid "Post parent"
|
1890 |
msgstr "Родитель"
|
1891 |
|
1892 |
+
#: inc/core/class.data.php:1834
|
1893 |
msgid "Random"
|
1894 |
msgstr "Случайно"
|
1895 |
|
1896 |
+
#: inc/core/class.data.php:1834
|
1897 |
msgid "Comments number"
|
1898 |
msgstr "Кол-во комментариев"
|
1899 |
|
1900 |
+
#: inc/core/class.data.php:1835
|
1901 |
msgid "Menu order"
|
1902 |
msgstr "Порядок меню"
|
1903 |
|
1904 |
+
#: inc/core/class.data.php:1835
|
1905 |
msgid "Meta key values"
|
1906 |
msgstr "Значение произвольного поля"
|
1907 |
|
1908 |
+
#: inc/core/class.data.php:1838
|
1909 |
msgid "Order by"
|
1910 |
msgstr "Сортировать по"
|
1911 |
|
1912 |
+
#: inc/core/class.data.php:1839
|
1913 |
msgid "Order posts by"
|
1914 |
msgstr "Сортировать записи по следующему признаку"
|
1915 |
|
1916 |
+
#: inc/core/class.data.php:1844
|
1917 |
msgid "Show childrens of entered post (enter post ID)"
|
1918 |
msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
|
1919 |
|
1920 |
+
#: inc/core/class.data.php:1849
|
1921 |
msgid "Published"
|
1922 |
msgstr "Опубликован"
|
1923 |
|
1924 |
+
#: inc/core/class.data.php:1850
|
1925 |
msgid "Pending"
|
1926 |
msgstr "Ожидает"
|
1927 |
|
1928 |
+
#: inc/core/class.data.php:1851
|
1929 |
msgid "Draft"
|
1930 |
msgstr "Черновик"
|
1931 |
|
1932 |
+
#: inc/core/class.data.php:1852
|
1933 |
msgid "Auto-draft"
|
1934 |
msgstr "Авто-черновик"
|
1935 |
|
1936 |
+
#: inc/core/class.data.php:1853
|
1937 |
msgid "Future post"
|
1938 |
msgstr "Запланирован"
|
1939 |
|
1940 |
+
#: inc/core/class.data.php:1854
|
1941 |
msgid "Private post"
|
1942 |
msgstr "Приватная запись"
|
1943 |
|
1944 |
+
#: inc/core/class.data.php:1855
|
1945 |
msgid "Inherit"
|
1946 |
msgstr "Вложенный"
|
1947 |
|
1948 |
+
#: inc/core/class.data.php:1856
|
1949 |
msgid "Trashed"
|
1950 |
msgstr "В корзине"
|
1951 |
|
1952 |
+
#: inc/core/class.data.php:1857
|
1953 |
msgid "Any"
|
1954 |
msgstr "Любой"
|
1955 |
|
1956 |
+
#: inc/core/class.data.php:1860
|
1957 |
msgid "Post status"
|
1958 |
msgstr "Статус записи"
|
1959 |
|
1960 |
+
#: inc/core/class.data.php:1861
|
1961 |
msgid "Show only posts with selected status"
|
1962 |
msgstr "Показать только записи с выбранным статусом"
|
1963 |
|
1964 |
+
#: inc/core/class.data.php:1866
|
1965 |
msgid "Ignore sticky"
|
1966 |
msgstr "Игнорировать прикрепленные"
|
1967 |
|
1968 |
+
#: inc/core/class.data.php:1867
|
1969 |
msgid "Select Yes to ignore posts that is sticked"
|
1970 |
msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
|
1971 |
|
1972 |
+
#: inc/core/class.data.php:1871
|
1973 |
msgid "Custom posts query with customizable template"
|
1974 |
msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
|
1975 |
|
1976 |
+
#: inc/core/class.generator-fields.php:37
|
1977 |
+
msgid "Yes"
|
1978 |
+
msgstr "Да"
|
1979 |
+
|
1980 |
+
#: inc/core/class.generator-fields.php:37
|
1981 |
+
msgid "No"
|
1982 |
+
msgstr "Нет"
|
1983 |
+
|
1984 |
+
#: inc/core/class.generator-fields.php:42
|
1985 |
+
#: inc/core/class.generator-fields.php:47
|
1986 |
+
msgid "Media manager"
|
1987 |
+
msgstr "Медиа менеджер"
|
1988 |
+
|
1989 |
+
#: inc/core/class.generator-fields.php:47
|
1990 |
+
msgid "Icon picker"
|
1991 |
+
msgstr "Выбрать иконку"
|
1992 |
+
|
1993 |
+
#: inc/core/class.generator-fields.php:68 inc/core/class.generator.php:273
|
1994 |
+
msgid "Untitled gallery"
|
1995 |
+
msgstr "Галерея без имени"
|
1996 |
+
|
1997 |
+
#: inc/core/class.generator-fields.php:74 inc/core/class.generator.php:279
|
1998 |
+
#: inc/views/galleries.php:62
|
1999 |
+
msgid "Galleries not found"
|
2000 |
+
msgstr "Галереи не найдены"
|
2001 |
+
|
2002 |
+
#: inc/core/class.generator-fields.php:75
|
2003 |
+
msgid "Manage galleries"
|
2004 |
+
msgstr "Управление галереями"
|
2005 |
+
|
2006 |
+
#: inc/core/class.generator-fields.php:75
|
2007 |
+
msgid "Reload galleries"
|
2008 |
+
msgstr "Обновить список"
|
2009 |
+
|
2010 |
+
#: inc/core/class.generator-fields.php:86
|
2011 |
+
msgid "Horizontal offset"
|
2012 |
+
msgstr "Горизонтально"
|
2013 |
+
|
2014 |
+
#: inc/core/class.generator-fields.php:86
|
2015 |
+
msgid "Vertical offset"
|
2016 |
+
msgstr "Вертикально"
|
2017 |
+
|
2018 |
+
#: inc/core/class.generator-fields.php:86
|
2019 |
+
msgid "Blur"
|
2020 |
+
msgstr "Размытие"
|
2021 |
+
|
2022 |
+
#: inc/core/class.generator.php:36 inc/core/class.generator.php:140
|
2023 |
msgid "Insert shortcode"
|
2024 |
msgstr "Вставить шорткод"
|
2025 |
|
2026 |
+
#: inc/core/class.generator.php:81 inc/core/class.shortcodes-ultimate.php:115
|
|
|
2027 |
#: inc/vendor/class.sunrise-framework.php:282
|
2028 |
msgid "Settings"
|
2029 |
msgstr "Настройки"
|
2068 |
msgid "All shortcodes"
|
2069 |
msgstr "Все шорткоды"
|
2070 |
|
2071 |
+
#: inc/core/class.generator.php:196
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2072 |
msgid "Click to set this value"
|
2073 |
msgstr "Нажмите чтобы установить это значение"
|
2074 |
|
2075 |
+
#: inc/core/class.generator.php:220
|
2076 |
msgid "Preview"
|
2077 |
msgstr "Предпросмотр"
|
2078 |
|
2079 |
+
#: inc/core/class.generator.php:288
|
2080 |
msgid "Access denied"
|
2081 |
msgstr "Доступ запрещен"
|
2082 |
|
2083 |
#: inc/core/class.requirements.php:35
|
2084 |
#, php-format
|
2085 |
+
msgid ""
|
2086 |
+
"<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not "
|
2087 |
+
"fully compatible with your version of WordPress (%s).<br />Reccomended "
|
2088 |
+
"WordPress version – %s (or higher).</p><a href=\"%s\">← Return to "
|
2089 |
+
"the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway →</"
|
2090 |
+
"a>"
|
2091 |
+
msgstr ""
|
2092 |
+
"<h1>Упс! Плагин не активирован…</h1> <p>Плагин Shortcodes Ultimate не "
|
2093 |
+
"полностью совместим с вашей версией WordPress (%s).<br />Рекомендуемая "
|
2094 |
+
"версия WordPress – %s (или выше).</p><a href=\"%s\">← Вернуться к "
|
2095 |
+
"списку плагинов</a> <a href=\"%s\"%s>Продолжить и все равно активировать "
|
2096 |
+
"→</a>"
|
2097 |
|
2098 |
#: inc/core/class.requirements.php:36
|
2099 |
#, php-format
|
2100 |
+
msgid ""
|
2101 |
+
"<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not "
|
2102 |
+
"fully compatible with your PHP version (%s).<br />Reccomended PHP version "
|
2103 |
+
"– %s (or higher).</p><a href=\"%s\">← Return to the plugins "
|
2104 |
+
"screen</a> <a href=\"%s\"%s>Continue and activate anyway →</a>"
|
2105 |
+
msgstr ""
|
2106 |
+
"<h1>Упс! Плагин не активирован…</h1> <p>Плагин Shortcodes Ultimate не "
|
2107 |
+
"полностью совместим с вашей версией PHP (%s).<br />Рекомендуемая версия PHP "
|
2108 |
+
"– %s (или выше).</p><a href=\"%s\">← Вернуться к списку плагинов</"
|
2109 |
+
"a> <a href=\"%s\"%s>Продолжить и все равно активировать →</a>"
|
2110 |
|
2111 |
+
#: inc/core/class.shortcodes-ultimate.php:25 inc/core/class.widget.php:40
|
|
|
2112 |
#: inc/core/class.widget.php:82
|
2113 |
msgid "Shortcodes Ultimate"
|
2114 |
msgstr "Шорткоды"
|
2115 |
|
2116 |
+
#: inc/core/class.shortcodes-ultimate.php:26 inc/core/class.vote.php:37
|
|
|
2117 |
msgid "Vladimir Anokhin"
|
2118 |
msgstr "Владимир Анохин"
|
2119 |
|
2125 |
msgid "Where to start?"
|
2126 |
msgstr "С чего начать?"
|
2127 |
|
2128 |
+
#: inc/core/class.shortcodes-ultimate.php:100 inc/views/about.php:4
|
|
|
2129 |
msgid "Project homepage"
|
2130 |
msgstr "Страница проекта"
|
2131 |
|
2132 |
+
#: inc/core/class.shortcodes-ultimate.php:101 inc/views/about.php:10
|
|
|
2133 |
msgid "Support forum"
|
2134 |
msgstr "Форум поддержки"
|
2135 |
|
2136 |
+
#: inc/core/class.shortcodes-ultimate.php:102 inc/views/about.php:12
|
|
|
2137 |
msgid "Changelog"
|
2138 |
msgstr "Список изменений"
|
2139 |
|
2146 |
msgstr "Cпециальное форматирование"
|
2147 |
|
2148 |
#: inc/core/class.shortcodes-ultimate.php:118
|
2149 |
+
msgid ""
|
2150 |
+
"Disable this option if you have some problems with other plugins or content "
|
2151 |
+
"formatting"
|
2152 |
+
msgstr ""
|
2153 |
+
"Снимите этот флажок, если у вас возникли проблемы совместимости с другими "
|
2154 |
+
"плагинами или форматированием контента"
|
2155 |
|
2156 |
#: inc/core/class.shortcodes-ultimate.php:118
|
2157 |
#: inc/core/class.shortcodes-ultimate.php:126
|
2169 |
msgstr "Режим совместимости"
|
2170 |
|
2171 |
#: inc/core/class.shortcodes-ultimate.php:126
|
2172 |
+
msgid ""
|
2173 |
+
"Enable this option if you have some problems with other plugins that uses "
|
2174 |
+
"similar shortcode names"
|
2175 |
+
msgstr ""
|
2176 |
+
"Отметьте этот флажок, если у вас используются другие шорткоды с такими же "
|
2177 |
+
"именами. Все шорткоды этого плагина будут иметь такие имена"
|
2178 |
|
2179 |
#: inc/core/class.shortcodes-ultimate.php:126
|
2180 |
msgid "etc."
|
2185 |
msgstr "Пропускать значения по умолчанию"
|
2186 |
|
2187 |
#: inc/core/class.shortcodes-ultimate.php:134
|
2188 |
+
msgid ""
|
2189 |
+
"Enable this option and the generator will insert a shortcode without default "
|
2190 |
+
"attribute values that you have not changed. As a result, the generated code "
|
2191 |
+
"will be shorter."
|
2192 |
+
msgstr ""
|
2193 |
+
"Отметьте этот флажок и генератор будет вставлять шорткоды без атрибутов, "
|
2194 |
+
"значение которых вы не изменяли. В результате, сгенерированный код будет "
|
2195 |
+
"более коротким."
|
2196 |
|
2197 |
#: inc/core/class.shortcodes-ultimate.php:141
|
2198 |
msgid "Skin"
|
2200 |
|
2201 |
#: inc/core/class.shortcodes-ultimate.php:142
|
2202 |
#, php-format
|
2203 |
+
msgid ""
|
2204 |
+
"Choose skin for shortcodes.<br /><a href=\"%s\" target=\"_blank\">Learn how "
|
2205 |
+
"to create custom skin</a><br /><a href=\"%s\" target=\"_blank\"><b>Download "
|
2206 |
+
"more skins</b></a>"
|
2207 |
+
msgstr ""
|
2208 |
+
"Выберите скин для шорткодов.<br /><a href=\"%s\" target=\"_blank"
|
2209 |
+
"\">Инструкция по созданию собственных скинов (англ.)</a><br /><a href=\"%s\" "
|
2210 |
+
"target=\"_blank\"><b>Скачать скины</b></a>"
|
2211 |
|
2212 |
#: inc/core/class.shortcodes-ultimate.php:148
|
2213 |
msgid "Custom CSS"
|
2225 |
msgid "Tab title"
|
2226 |
msgstr "Заголовок вкладкки"
|
2227 |
|
2228 |
+
#: inc/core/class.shortcodes.php:441
|
2229 |
msgid "This is box title"
|
2230 |
msgstr "Заголовок блока"
|
2231 |
|
2232 |
+
#: inc/core/class.shortcodes.php:553 inc/core/class.shortcodes.php:579
|
2233 |
+
#: inc/core/class.shortcodes.php:606 inc/core/class.shortcodes.php:632
|
2234 |
+
#: inc/core/class.shortcodes.php:658
|
|
|
|
|
2235 |
msgid "please specify correct url"
|
2236 |
msgstr "пожалуйста укажите корректную ссылку"
|
2237 |
|
2238 |
+
#: inc/core/class.shortcodes.php:789
|
2239 |
msgid "This menu doesn't exists, or has no elements"
|
2240 |
msgstr "Такое меню не существует, или в нем нет ни одного элемента"
|
2241 |
|
2242 |
+
#: inc/core/class.shortcodes.php:853 inc/core/class.shortcodes.php:931
|
2243 |
+
#: inc/core/class.shortcodes.php:992
|
|
|
2244 |
msgid "images not found"
|
2245 |
msgstr "изображения не найдены"
|
2246 |
|
2247 |
+
#: inc/core/class.shortcodes.php:1151
|
2248 |
msgid "template not found"
|
2249 |
msgstr "шаблон не найден"
|
2250 |
|
2251 |
#: inc/core/class.vote.php:39
|
2252 |
+
msgid ""
|
2253 |
+
"Hello, my name is Vladimir Anokhin, and I am developer of plugin "
|
2254 |
+
"<b>Shortcodes Ultimate</b>.<br>If you like this plugin, please write a few "
|
2255 |
+
"words about it at the wordpress.org or twitter. It will help other people "
|
2256 |
+
"find this useful plugin more quickly.<br><b>Thank you!</b>"
|
2257 |
+
msgstr ""
|
2258 |
+
"Здравствуйте, меня зовут Владимир Анохин, я являюсь разработчиком плагина "
|
2259 |
+
"<b>Shortcodes Ultimate</b>. <br>Если вам нравится этот плагин, то пожалуйста "
|
2260 |
+
"напишите пару слов о нём на сайте wordpress.org или в твиттере. Это поможет "
|
2261 |
+
"другим людям найти этот полезный плагин быстрее.<br><b>Спасибо!</b>"
|
2262 |
|
2263 |
#: inc/core/class.vote.php:41
|
2264 |
msgid "Rate plugin"
|
2266 |
|
2267 |
#: inc/core/class.vote.php:42
|
2268 |
msgid "Shortcodes Ultimate - must have WordPress plugin #shortcodesultimate"
|
2269 |
+
msgstr ""
|
2270 |
+
"Shortcodes Ultimate - очень полезный плагин для WordPress #shortcodesultimate"
|
2271 |
|
2272 |
#: inc/core/class.vote.php:42
|
2273 |
msgid "Tweet"
|
2317 |
msgid "minute"
|
2318 |
msgstr "минута"
|
2319 |
|
2320 |
+
#: inc/core/tools.php:255 inc/core/tools.php:262
|
|
|
2321 |
msgid "s"
|
2322 |
msgstr "с"
|
2323 |
|
2382 |
msgstr "Что такое шорткод?"
|
2383 |
|
2384 |
#: inc/views/about.php:30
|
2385 |
+
msgid ""
|
2386 |
+
"<strong>Shortcode</strong> is a WordPress-specific code that lets you do "
|
2387 |
+
"nifty things with very little effort."
|
2388 |
+
msgstr ""
|
2389 |
+
"<strong>Шорткод</strong> это специфичный для WordPress код, который "
|
2390 |
+
"позволяет вам делать изящные вещи с небольшими усилиями."
|
2391 |
|
2392 |
#: inc/views/about.php:31
|
2393 |
+
msgid ""
|
2394 |
+
"Shortcodes can embed files or create objects that would normally require "
|
2395 |
+
"lots of complicated, ugly code in just one line. Shortcode = shortcut."
|
2396 |
+
msgstr ""
|
2397 |
+
"С помощью шорткодов можно встраивать на страницу видео- или аудио файлы, "
|
2398 |
+
"галереи, различные кнопки и многое другое с помощью всего одной строки кода."
|
2399 |
|
2400 |
#: inc/views/about.php:35
|
2401 |
msgid "How does it works"
|
2458 |
msgstr "Сохранено"
|
2459 |
|
2460 |
#: inc/views/closetab.php:7
|
2461 |
+
msgid ""
|
2462 |
+
"This action will remove all your custom CSS, galleries and settings. Are you "
|
2463 |
+
"sure? This action cannot be undone!"
|
2464 |
+
msgstr ""
|
2465 |
+
"Данное действие удалит произвольный CSS, все ваши галереи и настройки. Вы "
|
2466 |
+
"уверены? Это действие нельзя будет отменить!"
|
2467 |
|
2468 |
#: inc/views/closetab.php:7
|
2469 |
msgid "Restore default settings"
|
2494 |
msgstr "url папки этого плагина"
|
2495 |
|
2496 |
#: inc/views/galleries.php:3
|
2497 |
+
msgid ""
|
2498 |
+
"Are you sure that you want to delete this gallery? This action can't be "
|
2499 |
+
"undone!"
|
2500 |
+
msgstr ""
|
2501 |
+
"Вы уверены, что хотите удалить эту галерею? Это действие нельзя отменить!"
|
2502 |
|
2503 |
#: inc/views/galleries.php:3
|
2504 |
+
msgid ""
|
2505 |
+
"Are you sure that you want to delete this image? This action can't be undone!"
|
2506 |
+
msgstr ""
|
2507 |
+
"Вы уверены, что хотите удалить это изображение? Это действие нельзя отменить!"
|
2508 |
|
2509 |
#: inc/views/galleries.php:5
|
2510 |
msgid "Create new gallery"
|
2511 |
msgstr "Создать новую галерею"
|
2512 |
|
2513 |
+
#: inc/views/galleries.php:18 inc/views/galleries.php:70
|
|
|
2514 |
msgid "Enter gallery name"
|
2515 |
msgstr "Введите имя галереи"
|
2516 |
|
2517 |
+
#: inc/views/galleries.php:20 inc/views/galleries.php:72
|
|
|
2518 |
msgid "Edit gallery"
|
2519 |
msgstr "Редактировать галерею"
|
2520 |
|
2521 |
+
#: inc/views/galleries.php:21 inc/views/galleries.php:73
|
|
|
2522 |
msgid "Save & close"
|
2523 |
msgstr "Сохранить и закрыть"
|
2524 |
|
2525 |
+
#: inc/views/galleries.php:22 inc/views/galleries.php:48
|
2526 |
+
#: inc/views/galleries.php:74 inc/views/galleries.php:100
|
|
|
|
|
2527 |
msgid "Close"
|
2528 |
msgstr "Закрыть"
|
2529 |
|
2530 |
+
#: inc/views/galleries.php:23 inc/views/galleries.php:39
|
2531 |
+
#: inc/views/galleries.php:75 inc/views/galleries.php:91
|
|
|
|
|
2532 |
msgid "Delete"
|
2533 |
msgstr "Удалить"
|
2534 |
|
2535 |
+
#: inc/views/galleries.php:27 inc/views/galleries.php:79
|
|
|
2536 |
msgid "Add images"
|
2537 |
msgstr "Добавить изображения"
|
2538 |
|
2539 |
+
#: inc/views/galleries.php:38 inc/views/galleries.php:90
|
|
|
2540 |
msgid "Edit"
|
2541 |
msgstr "Редактировать"
|
2542 |
|
2544 |
msgid "Instructions"
|
2545 |
msgstr "Инструкции"
|
2546 |
|
2547 |
+
#: inc/views/notifications.php:13 inc/views/notifications.php:21
|
2548 |
+
#: inc/views/notifications.php:29 inc/views/notifications.php:37
|
|
|
|
|
2549 |
msgid "Click to close"
|
2550 |
msgstr "Кликните чтобы закрыть"
|
2551 |
|
2552 |
#: inc/views/settings.php:12
|
2553 |
+
msgid ""
|
2554 |
+
"For full functionality of this page it is reccomended to enable javascript."
|
2555 |
+
msgstr ""
|
2556 |
+
"Для полной функциональности этой страницы рекомендуется включить Javascript."
|
2557 |
|
2558 |
#: inc/views/settings.php:14
|
2559 |
msgid "Settings reseted successfully"
|
2575 |
msgid "Upload"
|
2576 |
msgstr "Загрузить"
|
2577 |
|
2578 |
+
#: templates/default-loop.php:15 templates/single-post.php:18
|
|
|
2579 |
msgid "Posted"
|
2580 |
msgstr "Опубликовано"
|
2581 |
|
2582 |
+
#: templates/default-loop.php:19 templates/single-post.php:18
|
|
|
2583 |
msgid "0 comments"
|
2584 |
msgstr "нет комментариев"
|
2585 |
|
2586 |
+
#: templates/default-loop.php:19 templates/single-post.php:18
|
|
|
2587 |
msgid "1 comment"
|
2588 |
msgstr "1 комментарий"
|
2589 |
|
2590 |
+
#: templates/default-loop.php:19 templates/single-post.php:18
|
|
|
2591 |
msgid "%n comments"
|
2592 |
msgstr "%n комментариев"
|
2593 |
|
2594 |
+
#: templates/default-loop.php:27 templates/list-loop.php:18
|
2595 |
+
#: templates/single-post.php:30 templates/teaser-loop.php:22
|
|
|
|
|
2596 |
msgid "Posts not found"
|
2597 |
msgstr "Записи не найдены"
|
|
languages/su.pot
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Shortcodes Ultimate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-10-
|
6 |
-
"PO-Revision-Date: 2013-10-
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -12,19 +12,17 @@ msgstr ""
|
|
12 |
"X-Poedit-KeywordsList: _e;__\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
|
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
#: inc/example-addon.php:29
|
18 |
msgid "Heading 2"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: inc/example-addon.php:43
|
22 |
-
#: inc/core/class.data.php:
|
23 |
-
#: inc/core/class.data.php:
|
24 |
-
#: inc/core/class.data.php:
|
25 |
-
#: inc/core/class.data.php:541
|
26 |
-
#: inc/core/class.data.php:702
|
27 |
-
#: inc/core/class.data.php:864
|
28 |
msgid "Default"
|
29 |
msgstr ""
|
30 |
|
@@ -32,12 +30,9 @@ msgstr ""
|
|
32 |
msgid "Small"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: inc/example-addon.php:49
|
36 |
-
#: inc/core/class.data.php:
|
37 |
-
#: inc/core/class.data.php:
|
38 |
-
#: inc/core/class.data.php:551
|
39 |
-
#: inc/core/class.data.php:709
|
40 |
-
#: inc/core/class.data.php:834
|
41 |
msgid "Style"
|
42 |
msgstr ""
|
43 |
|
@@ -69,26 +64,25 @@ msgstr ""
|
|
69 |
msgid "Insert"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: inc/core/class.assets.php:70
|
73 |
-
#: inc/core/class.generator.php:198
|
74 |
msgid "Please wait"
|
75 |
msgstr ""
|
76 |
|
77 |
#: inc/core/class.assets.php:83
|
78 |
-
msgid "
|
|
|
|
|
79 |
msgstr ""
|
80 |
|
81 |
#: inc/core/class.data.php:36
|
82 |
msgid "All"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: inc/core/class.data.php:37
|
86 |
-
#: inc/core/class.generator.php:230
|
87 |
msgid "Content"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: inc/core/class.data.php:38
|
91 |
-
#: inc/core/class.data.php:690
|
92 |
msgid "Box"
|
93 |
msgstr ""
|
94 |
|
@@ -96,11 +90,9 @@ msgstr ""
|
|
96 |
msgid "Media"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: inc/core/class.data.php:40
|
100 |
-
#: inc/core/class.data.php:
|
101 |
-
#: inc/core/class.data.php:
|
102 |
-
#: inc/core/class.data.php:1686
|
103 |
-
#: inc/core/class.data.php:1692
|
104 |
msgid "Gallery"
|
105 |
msgstr ""
|
106 |
|
@@ -112,10 +104,8 @@ msgstr ""
|
|
112 |
msgid "Heading"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: inc/core/class.data.php:66
|
116 |
-
#: inc/core/class.data.php:
|
117 |
-
#: inc/core/class.data.php:467
|
118 |
-
#: inc/core/class.data.php:569
|
119 |
msgid "Size"
|
120 |
msgstr ""
|
121 |
|
@@ -123,29 +113,23 @@ msgstr ""
|
|
123 |
msgid "Select heading size"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: inc/core/class.data.php:71
|
127 |
-
#: inc/core/class.data.php:
|
128 |
-
#: inc/core/class.data.php:617
|
129 |
-
#: inc/core/class.data.php:842
|
130 |
msgid "Left"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: inc/core/class.data.php:72
|
134 |
-
#: inc/core/class.data.php:
|
135 |
-
#: inc/core/class.data.php:1633
|
136 |
msgid "Center"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: inc/core/class.data.php:73
|
140 |
-
#: inc/core/class.data.php:
|
141 |
-
#: inc/core/class.data.php:615
|
142 |
-
#: inc/core/class.data.php:843
|
143 |
msgid "Right"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: inc/core/class.data.php:76
|
147 |
-
#: inc/core/class.data.php:
|
148 |
-
#: inc/core/class.data.php:413
|
149 |
msgid "Align"
|
150 |
msgstr ""
|
151 |
|
@@ -153,91 +137,51 @@ msgstr ""
|
|
153 |
msgid "Heading text alignment"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: inc/core/class.data.php:81
|
157 |
-
#: inc/core/class.data.php:
|
158 |
-
#: inc/core/class.data.php:
|
159 |
-
#: inc/core/class.data.php:
|
160 |
-
#: inc/core/class.data.php:
|
161 |
-
#: inc/core/class.data.php:
|
162 |
-
#: inc/core/class.data.php:
|
163 |
-
#: inc/core/class.data.php:
|
164 |
-
#: inc/core/class.data.php:
|
165 |
-
#: inc/core/class.data.php:
|
166 |
-
#: inc/core/class.data.php:
|
167 |
-
#: inc/core/class.data.php:
|
168 |
-
#: inc/core/class.data.php:
|
169 |
-
#: inc/core/class.data.php:
|
170 |
-
#: inc/core/class.data.php:
|
171 |
-
#: inc/core/class.data.php:
|
172 |
-
#: inc/core/class.data.php:
|
173 |
-
#: inc/core/class.data.php:
|
174 |
-
#: inc/core/class.data.php:
|
175 |
-
#: inc/core/class.data.php:
|
176 |
-
#: inc/core/class.data.php:
|
177 |
-
#: inc/core/class.data.php:905
|
178 |
-
#: inc/core/class.data.php:922
|
179 |
-
#: inc/core/class.data.php:975
|
180 |
-
#: inc/core/class.data.php:1026
|
181 |
-
#: inc/core/class.data.php:1070
|
182 |
-
#: inc/core/class.data.php:1110
|
183 |
-
#: inc/core/class.data.php:1180
|
184 |
-
#: inc/core/class.data.php:1202
|
185 |
-
#: inc/core/class.data.php:1234
|
186 |
-
#: inc/core/class.data.php:1268
|
187 |
-
#: inc/core/class.data.php:1285
|
188 |
-
#: inc/core/class.data.php:1313
|
189 |
-
#: inc/core/class.data.php:1334
|
190 |
-
#: inc/core/class.data.php:1362
|
191 |
-
#: inc/core/class.data.php:1384
|
192 |
-
#: inc/core/class.data.php:1430
|
193 |
-
#: inc/core/class.data.php:1476
|
194 |
-
#: inc/core/class.data.php:1568
|
195 |
-
#: inc/core/class.data.php:1676
|
196 |
-
#: inc/core/class.data.php:1729
|
197 |
msgid "Class"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: inc/core/class.data.php:82
|
201 |
-
#: inc/core/class.data.php:
|
202 |
-
#: inc/core/class.data.php:
|
203 |
-
#: inc/core/class.data.php:
|
204 |
-
#: inc/core/class.data.php:
|
205 |
-
#: inc/core/class.data.php:
|
206 |
-
#: inc/core/class.data.php:
|
207 |
-
#: inc/core/class.data.php:
|
208 |
-
#: inc/core/class.data.php:
|
209 |
-
#: inc/core/class.data.php:
|
210 |
-
#: inc/core/class.data.php:
|
211 |
-
#: inc/core/class.data.php:
|
212 |
-
#: inc/core/class.data.php:
|
213 |
-
#: inc/core/class.data.php:
|
214 |
-
#: inc/core/class.data.php:
|
215 |
-
#: inc/core/class.data.php:
|
216 |
-
#: inc/core/class.data.php:
|
217 |
-
#: inc/core/class.data.php:
|
218 |
-
#: inc/core/class.data.php:
|
219 |
-
#: inc/core/class.data.php:
|
220 |
-
#: inc/core/class.data.php:
|
221 |
-
#: inc/core/class.data.php:906
|
222 |
-
#: inc/core/class.data.php:923
|
223 |
-
#: inc/core/class.data.php:976
|
224 |
-
#: inc/core/class.data.php:1027
|
225 |
-
#: inc/core/class.data.php:1071
|
226 |
-
#: inc/core/class.data.php:1111
|
227 |
-
#: inc/core/class.data.php:1181
|
228 |
-
#: inc/core/class.data.php:1203
|
229 |
-
#: inc/core/class.data.php:1235
|
230 |
-
#: inc/core/class.data.php:1269
|
231 |
-
#: inc/core/class.data.php:1286
|
232 |
-
#: inc/core/class.data.php:1314
|
233 |
-
#: inc/core/class.data.php:1335
|
234 |
-
#: inc/core/class.data.php:1363
|
235 |
-
#: inc/core/class.data.php:1385
|
236 |
-
#: inc/core/class.data.php:1431
|
237 |
-
#: inc/core/class.data.php:1477
|
238 |
-
#: inc/core/class.data.php:1569
|
239 |
-
#: inc/core/class.data.php:1677
|
240 |
-
#: inc/core/class.data.php:1730
|
241 |
msgid "Extra CSS class"
|
242 |
msgstr ""
|
243 |
|
@@ -288,11 +232,10 @@ msgstr ""
|
|
288 |
msgid "Tab name"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/core/class.data.php:129
|
292 |
-
#: inc/core/class.data.php:
|
293 |
-
#: inc/core/class.data.php:
|
294 |
-
#: inc/
|
295 |
-
#: inc/core/class.data.php:1139
|
296 |
msgid "Title"
|
297 |
msgstr ""
|
298 |
|
@@ -308,380 +251,379 @@ msgstr ""
|
|
308 |
msgid "Is this tab disabled"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: inc/core/class.data.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
msgid "Tab content"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: inc/core/class.data.php:
|
316 |
msgid "Single tab"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: inc/core/class.data.php:
|
320 |
msgid "Spoiler"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: inc/core/class.data.php:
|
324 |
-
#: inc/core/class.shortcodes.php:66
|
325 |
msgid "Spoiler title"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: inc/core/class.data.php:
|
329 |
msgid "Text in spoiler title"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: inc/core/class.data.php:
|
333 |
msgid "Open"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: inc/core/class.data.php:
|
337 |
msgid "Is spoiler content visible by default"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: inc/core/class.data.php:
|
341 |
msgid "Fancy"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: inc/core/class.data.php:
|
345 |
-
#: inc/core/class.data.php:379
|
346 |
msgid "Simple"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: inc/core/class.data.php:
|
350 |
msgid "Spoiler skin"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: inc/core/class.data.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
msgid "Hidden content"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: inc/core/class.data.php:
|
358 |
msgid "Spoiler with hidden content"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: inc/core/class.data.php:
|
362 |
msgid "Accordion"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: inc/core/class.data.php:
|
366 |
msgid ""
|
367 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
368 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
369 |
"[%prefix_spoiler]Content[/%prefix_spoiler]"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: inc/core/class.data.php:
|
373 |
msgid "Accordion with spoilers"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: inc/core/class.data.php:
|
377 |
msgid "Divider"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: inc/core/class.data.php:
|
381 |
msgid "Show TOP link"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: inc/core/class.data.php:
|
385 |
msgid "Show link to top of the page or not"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: inc/core/class.data.php:
|
389 |
-
#: inc/core/class.shortcodes.php:87
|
390 |
msgid "Go to top"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: inc/core/class.data.php:
|
394 |
msgid "Link text"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: inc/core/class.data.php:
|
398 |
msgid "Text for the GO TOP link"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: inc/core/class.data.php:
|
402 |
msgid "Content divider with optional TOP link"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: inc/core/class.data.php:
|
406 |
msgid "Spacer"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: inc/core/class.data.php:
|
410 |
-
#: inc/core/class.data.php:
|
411 |
-
#: inc/core/class.data.php:
|
412 |
-
#: inc/core/class.data.php:
|
413 |
-
#: inc/core/class.data.php:
|
414 |
-
#: inc/core/class.data.php:1419
|
415 |
-
#: inc/core/class.data.php:1459
|
416 |
-
#: inc/core/class.data.php:1509
|
417 |
-
#: inc/core/class.data.php:1601
|
418 |
-
#: inc/core/class.data.php:1709
|
419 |
msgid "Height"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: inc/core/class.data.php:
|
423 |
msgid "Height of the spacer in pixels"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: inc/core/class.data.php:
|
427 |
msgid "Empty space with adjustable height"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: inc/core/class.data.php:
|
431 |
msgid "Highlight"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: inc/core/class.data.php:
|
435 |
-
#: inc/core/class.data.php:
|
436 |
-
#: inc/core/class.data.php:753
|
437 |
msgid "Background"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: inc/core/class.data.php:
|
441 |
msgid "Highlighted text background color"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: inc/core/class.data.php:
|
445 |
-
#: inc/core/class.data.php:
|
446 |
-
#: inc/core/class.data.php:759
|
447 |
msgid "Text color"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: inc/core/class.data.php:
|
451 |
msgid "Highlighted text color"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: inc/core/class.data.php:
|
455 |
-
#: inc/core/class.data.php:281
|
456 |
msgid "Highlighted text"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: inc/core/class.data.php:
|
460 |
-
#: inc/core/class.data.php:310
|
461 |
msgid "Label"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: inc/core/class.data.php:
|
465 |
msgid "Success"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: inc/core/class.data.php:
|
469 |
msgid "Warning"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: inc/core/class.data.php:
|
473 |
msgid "Important"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: inc/core/class.data.php:
|
477 |
msgid "Black"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: inc/core/class.data.php:
|
481 |
msgid "Info"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: inc/core/class.data.php:
|
485 |
msgid "Type"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: inc/core/class.data.php:
|
489 |
msgid "Style of the label"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: inc/core/class.data.php:
|
493 |
msgid "Styled label"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: inc/core/class.data.php:
|
497 |
-
#: inc/core/class.data.php:338
|
498 |
msgid "Quote"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: inc/core/class.data.php:
|
502 |
msgid "Cite"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: inc/core/class.data.php:
|
506 |
msgid "Quote author name"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: inc/core/class.data.php:
|
510 |
msgid "Cite url"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: inc/core/class.data.php:
|
514 |
msgid "Url of the quote author. Leave empty to disable link"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: inc/core/class.data.php:
|
518 |
msgid "Blockquote alternative"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: inc/core/class.data.php:
|
522 |
-
#: inc/core/class.data.php:
|
523 |
-
#: inc/core/class.data.php:364
|
524 |
msgid "Pullquote"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: inc/core/class.data.php:
|
528 |
msgid "Pullquote alignment (float)"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: inc/core/class.data.php:
|
532 |
-
#: inc/core/class.data.php:396
|
533 |
msgid "Dropcap"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: inc/core/class.data.php:
|
537 |
-
#: inc/core/class.data.php:542
|
538 |
msgid "Flat"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: inc/core/class.data.php:
|
542 |
-
#: inc/core/class.data.php:604
|
543 |
msgid "Light"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: inc/core/class.data.php:
|
547 |
msgid "Dropcap style preset"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: inc/core/class.data.php:
|
551 |
msgid "Choose dropcap size"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: inc/core/class.data.php:
|
555 |
msgid "D"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: inc/core/class.data.php:
|
559 |
msgid "Frame"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: inc/core/class.data.php:
|
563 |
msgid "Frame alignment"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: inc/core/class.data.php:
|
567 |
msgid "Styled image frame"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: inc/core/class.data.php:
|
571 |
msgid "Row"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: inc/core/class.data.php:
|
575 |
msgid ""
|
576 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
577 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
578 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: inc/core/class.data.php:
|
582 |
msgid "Row for flexible columns"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: inc/core/class.data.php:
|
586 |
msgid "Column"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: inc/core/class.data.php:
|
590 |
msgid "Full width"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: inc/core/class.data.php:
|
594 |
msgid "One half"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: inc/core/class.data.php:
|
598 |
msgid "One third"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: inc/core/class.data.php:
|
602 |
msgid "Two third"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: inc/core/class.data.php:
|
606 |
msgid "One fourth"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: inc/core/class.data.php:
|
610 |
msgid "Three fourth"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: inc/core/class.data.php:
|
614 |
msgid "One fifth"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: inc/core/class.data.php:
|
618 |
msgid "Two fifth"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: inc/core/class.data.php:
|
622 |
msgid "Three fifth"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: inc/core/class.data.php:
|
626 |
msgid "Four fifth"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: inc/core/class.data.php:
|
630 |
msgid "One sixth"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: inc/core/class.data.php:
|
634 |
msgid "Five sixth"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: inc/core/class.data.php:
|
638 |
msgid "Select column width. This width will be calculated depend page width"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: inc/core/class.data.php:
|
642 |
-
#: inc/core/class.data.php:580
|
643 |
msgid "Centered"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: inc/core/class.data.php:
|
647 |
msgid "Is this column centered on the page"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: inc/core/class.data.php:
|
651 |
msgid "Column content"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: inc/core/class.data.php:
|
655 |
msgid "Flexible and responsive columns"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: inc/core/class.data.php:
|
659 |
msgid "List"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: inc/core/class.data.php:
|
663 |
-
#: inc/core/class.data.php:
|
664 |
-
#: inc/core/class.data.php:659
|
665 |
msgid "Icon"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: inc/core/class.data.php:
|
669 |
msgid "You can upload custom icon for this list or pick a built-in icon"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: inc/core/class.data.php:
|
673 |
-
#: inc/core/class.data.php:
|
674 |
-
#: inc/core/class.data.php:665
|
675 |
msgid "Icon color"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: inc/core/class.data.php:
|
679 |
-
#: inc/core/class.data.php:
|
680 |
-
|
681 |
-
|
|
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: inc/core/class.data.php:
|
685 |
msgid ""
|
686 |
"<ul>\n"
|
687 |
"<li>List item</li>\n"
|
@@ -690,662 +632,621 @@ msgid ""
|
|
690 |
"</ul>"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: inc/core/class.data.php:
|
694 |
msgid "Styled unordered list"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: inc/core/class.data.php:
|
698 |
msgid "Button"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: inc/core/class.data.php:
|
|
|
702 |
msgid "Link"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: inc/core/class.data.php:
|
706 |
msgid "Button link"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: inc/core/class.data.php:
|
710 |
-
#: inc/core/class.data.php:1225
|
711 |
msgid "Same tab"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: inc/core/class.data.php:
|
715 |
-
#: inc/core/class.data.php:1226
|
716 |
msgid "New tab"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: inc/core/class.data.php:
|
720 |
-
#: inc/core/class.data.php:1229
|
721 |
msgid "Target"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: inc/core/class.data.php:
|
725 |
msgid "Button link target"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: inc/core/class.data.php:
|
729 |
-
#: inc/core/class.data.php:703
|
730 |
msgid "Soft"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: inc/core/class.data.php:
|
734 |
-
#: inc/core/class.data.php:704
|
735 |
msgid "Glass"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: inc/core/class.data.php:
|
739 |
-
#: inc/core/class.data.php:705
|
740 |
msgid "Bubbles"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: inc/core/class.data.php:
|
744 |
-
#: inc/core/class.data.php:706
|
745 |
msgid "Noise"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: inc/core/class.data.php:
|
749 |
msgid "Stroked"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: inc/core/class.data.php:
|
753 |
msgid "3D"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: inc/core/class.data.php:
|
757 |
msgid "Button background style preset"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: inc/core/class.data.php:
|
761 |
msgid "Button background color"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: inc/core/class.data.php:
|
765 |
msgid "Button text color"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: inc/core/class.data.php:
|
769 |
msgid "Button size"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: inc/core/class.data.php:
|
773 |
msgid "Fluid"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: inc/core/class.data.php:
|
777 |
msgid "Fluid buttons has 100% width"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: inc/core/class.data.php:
|
781 |
msgid "Is button centered on the page"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: inc/core/class.data.php:
|
785 |
-
|
786 |
-
#: inc/core/class.data.php:766
|
787 |
-
msgid "Radius"
|
788 |
-
msgstr ""
|
789 |
-
|
790 |
-
#: inc/core/class.data.php:587
|
791 |
-
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: inc/core/class.data.php:
|
795 |
-
msgid "
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: inc/core/class.data.php:
|
799 |
-
msgid "
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: inc/core/class.data.php:
|
803 |
-
|
|
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: inc/core/class.data.php:
|
807 |
-
msgid "
|
808 |
msgstr ""
|
809 |
|
810 |
#: inc/core/class.data.php:613
|
811 |
-
|
812 |
-
msgid "None"
|
813 |
-
msgstr ""
|
814 |
-
|
815 |
-
#: inc/core/class.data.php:614
|
816 |
-
#: inc/core/class.data.php:840
|
817 |
-
msgid "Top"
|
818 |
-
msgstr ""
|
819 |
-
|
820 |
-
#: inc/core/class.data.php:616
|
821 |
-
#: inc/core/class.data.php:841
|
822 |
-
msgid "Bottom"
|
823 |
-
msgstr ""
|
824 |
-
|
825 |
-
#: inc/core/class.data.php:618
|
826 |
-
msgid "Top right"
|
827 |
-
msgstr ""
|
828 |
-
|
829 |
-
#: inc/core/class.data.php:619
|
830 |
-
msgid "Top left"
|
831 |
-
msgstr ""
|
832 |
-
|
833 |
-
#: inc/core/class.data.php:619
|
834 |
-
msgid "Bottom right"
|
835 |
-
msgstr ""
|
836 |
-
|
837 |
-
#: inc/core/class.data.php:619
|
838 |
-
msgid "Bottom left"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: inc/core/class.data.php:
|
842 |
-
msgid "Text shadow
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: inc/core/class.data.php:
|
846 |
-
msgid "
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: inc/core/class.data.php:
|
850 |
msgid "Description"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: inc/core/class.data.php:
|
854 |
-
msgid "
|
|
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: inc/core/class.data.php:
|
858 |
msgid "onClick"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: inc/core/class.data.php:
|
862 |
msgid "Advanced JavaScript code for onClick action"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: inc/core/class.data.php:
|
866 |
msgid "Button text"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: inc/core/class.data.php:
|
870 |
msgid "Styled button"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: inc/core/class.data.php:
|
874 |
msgid "Service"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: inc/core/class.data.php:
|
878 |
-
#: inc/core/class.shortcodes.php:409
|
879 |
msgid "Service title"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: inc/core/class.data.php:
|
883 |
msgid "Service name"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: inc/core/class.data.php:
|
887 |
msgid "You can upload custom icon for this box"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: inc/core/class.data.php:
|
891 |
msgid "Icon size"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: inc/core/class.data.php:
|
895 |
msgid "Size of the uploaded icon in pixels"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: inc/core/class.data.php:
|
899 |
msgid "Service description"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: inc/core/class.data.php:
|
903 |
msgid "Service box with title"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: inc/core/class.data.php:
|
907 |
msgid "Box title"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: inc/core/class.data.php:
|
911 |
msgid "Text for the box title"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: inc/core/class.data.php:
|
915 |
msgid "Box style preset"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: inc/core/class.data.php:
|
919 |
msgid "Color"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: inc/core/class.data.php:
|
923 |
msgid "Color for the box title and borders"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: inc/core/class.data.php:
|
927 |
msgid "Title text color"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: inc/core/class.data.php:
|
931 |
msgid "Color for the box title text"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: inc/core/class.data.php:
|
935 |
msgid "Box corners radius"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: inc/core/class.data.php:
|
939 |
msgid "Box content"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: inc/core/class.data.php:
|
943 |
msgid "Colored box with caption"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: inc/core/class.data.php:
|
947 |
msgid "Note"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: inc/core/class.data.php:
|
951 |
msgid "Note background color"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: inc/core/class.data.php:
|
955 |
msgid "Note text color"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: inc/core/class.data.php:
|
959 |
msgid "Note corners radius"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: inc/core/class.data.php:
|
963 |
msgid "Note text"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: inc/core/class.data.php:
|
967 |
msgid "Colored box"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: inc/core/class.data.php:
|
971 |
msgid "Lightbox"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: inc/core/class.data.php:
|
975 |
msgid "Iframe"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: inc/core/class.data.php:
|
979 |
msgid "Image"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: inc/core/class.data.php:
|
983 |
msgid "Inline (html content)"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: inc/core/class.data.php:
|
987 |
msgid "Content type"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: inc/core/class.data.php:
|
991 |
msgid "Select type of the lightbox window content"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: inc/core/class.data.php:
|
995 |
msgid "Content source"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: inc/core/class.data.php:
|
999 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: inc/core/class.data.php:
|
1003 |
msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: inc/core/class.data.php:
|
1007 |
msgid "Lightbox window with custom content"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: inc/core/class.data.php:
|
1011 |
msgid "Tooltip"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: inc/core/class.data.php:
|
1015 |
msgid "Basic: Light"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: inc/core/class.data.php:
|
1019 |
msgid "Basic: Dark"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: inc/core/class.data.php:
|
1023 |
msgid "Basic: Yellow"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: inc/core/class.data.php:
|
1027 |
msgid "Basic: Green"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: inc/core/class.data.php:
|
1031 |
msgid "Basic: Red"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: inc/core/class.data.php:
|
1035 |
msgid "Basic: Blue"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: inc/core/class.data.php:
|
1039 |
msgid "Youtube"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: inc/core/class.data.php:
|
1043 |
msgid "Tipsy"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: inc/core/class.data.php:
|
1047 |
msgid "Bootstrap"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: inc/core/class.data.php:
|
1051 |
msgid "jTools"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: inc/core/class.data.php:
|
1055 |
msgid "Tipped"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: inc/core/class.data.php:
|
1059 |
msgid "Cluetip"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: inc/core/class.data.php:
|
1063 |
msgid "Tooltip window style"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: inc/core/class.data.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1067 |
msgid "Position"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: inc/core/class.data.php:
|
1071 |
msgid "Tooltip position"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: inc/core/class.data.php:
|
1075 |
msgid "Shadow"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: inc/core/class.data.php:
|
1079 |
-
msgid "
|
|
|
|
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: inc/core/class.data.php:
|
1083 |
msgid "Rounded corners"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: inc/core/class.data.php:
|
1087 |
-
msgid "
|
|
|
|
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: inc/core/class.data.php:
|
1091 |
msgid "Font size"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: inc/core/class.data.php:
|
1095 |
msgid "Tooltip font size"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: inc/core/class.data.php:
|
1099 |
msgid "Tooltip title"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: inc/core/class.data.php:
|
1103 |
-
msgid "
|
|
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: inc/core/class.data.php:
|
1107 |
-
#: inc/core/class.shortcodes.php:496
|
1108 |
msgid "Tooltip text"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: inc/core/class.data.php:
|
1112 |
msgid "Tooltip content"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: inc/core/class.data.php:
|
1116 |
msgid "Enter tooltip content here"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: inc/core/class.data.php:
|
1120 |
msgid "Show and hide on mouse hover"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: inc/core/class.data.php:
|
1124 |
msgid "Show and hide by mouse click"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: inc/core/class.data.php:
|
1128 |
msgid "Always visible"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: inc/core/class.data.php:
|
1132 |
msgid "Behavior"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: inc/core/class.data.php:
|
1136 |
msgid "Select tooltip behavior"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: inc/core/class.data.php:
|
1140 |
msgid "Close button"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: inc/core/class.data.php:
|
1144 |
msgid "Show close button"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: inc/core/class.data.php:
|
1148 |
msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: inc/core/class.data.php:
|
1152 |
msgid "Tooltip window with custom content"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: inc/core/class.data.php:
|
1156 |
msgid "Private"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: inc/core/class.data.php:
|
1160 |
msgid "Private note text"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: inc/core/class.data.php:
|
1164 |
msgid "Private note for post authors"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: inc/core/class.data.php:
|
1168 |
msgid "YouTube"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: inc/core/class.data.php:
|
1172 |
-
#: inc/core/class.data.php:
|
1173 |
-
#: inc/core/class.data.php:
|
1174 |
-
#: inc/core/class.data.php:1303
|
1175 |
-
#: inc/core/class.data.php:1401
|
1176 |
msgid "Url"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: inc/core/class.data.php:
|
1180 |
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: inc/core/class.data.php:
|
1184 |
-
#: inc/core/class.data.php:
|
1185 |
-
#: inc/core/class.data.php:
|
1186 |
-
#: inc/core/class.data.php:
|
1187 |
-
#: inc/core/class.data.php:
|
1188 |
-
#: inc/core/class.data.php:1410
|
1189 |
-
#: inc/core/class.data.php:1450
|
1190 |
-
#: inc/core/class.data.php:1501
|
1191 |
-
#: inc/core/class.data.php:1593
|
1192 |
-
#: inc/core/class.data.php:1701
|
1193 |
msgid "Width"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: inc/core/class.data.php:
|
1197 |
-
#: inc/core/class.data.php:
|
1198 |
-
#: inc/core/class.data.php:1051
|
1199 |
-
#: inc/core/class.data.php:1149
|
1200 |
msgid "Player width"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: inc/core/class.data.php:
|
1204 |
-
#: inc/core/class.data.php:
|
1205 |
-
#: inc/core/class.data.php:1060
|
1206 |
-
#: inc/core/class.data.php:1158
|
1207 |
msgid "Player height"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: inc/core/class.data.php:
|
1211 |
-
#: inc/core/class.data.php:
|
1212 |
-
#: inc/core/class.data.php:
|
1213 |
-
#: inc/core/class.data.php:
|
1214 |
-
#: inc/core/class.data.php:1465
|
1215 |
-
#: inc/core/class.data.php:1514
|
1216 |
-
#: inc/core/class.data.php:1606
|
1217 |
msgid "Responsive"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: inc/core/class.data.php:
|
1221 |
-
#: inc/core/class.data.php:
|
1222 |
-
#: inc/core/class.data.php:1066
|
1223 |
msgid "Ignore width and height parameters and make player responsive"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: inc/core/class.data.php:
|
1227 |
-
#: inc/core/class.data.php:
|
1228 |
-
#: inc/core/class.data.php:
|
1229 |
-
#: inc/core/class.data.php:1169
|
1230 |
-
#: inc/core/class.data.php:1549
|
1231 |
-
#: inc/core/class.data.php:1657
|
1232 |
msgid "Autoplay"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: inc/core/class.data.php:
|
1236 |
-
#: inc/core/class.data.php:1022
|
1237 |
msgid "Play video automatically when page is loaded"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: inc/core/class.data.php:
|
1241 |
msgid "YouTube video"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: inc/core/class.data.php:
|
1245 |
msgid "Vimeo"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: inc/core/class.data.php:
|
1249 |
msgid "Url of Vimeo page with video"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: inc/core/class.data.php:
|
1253 |
msgid "Vimeo video"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: inc/core/class.data.php:
|
1257 |
msgid "Screenr"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: inc/core/class.data.php:
|
1261 |
msgid "Url of Screenr page with video"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: inc/core/class.data.php:
|
1265 |
msgid "Screenr video"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: inc/core/class.data.php:
|
1269 |
msgid "Audio"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: inc/core/class.data.php:
|
1273 |
-
#: inc/core/class.data.php:1127
|
1274 |
msgid "File"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: inc/core/class.data.php:
|
1278 |
msgid "Audio file url. Supported formats: mp3, ogg"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: inc/core/class.data.php:
|
1282 |
-
msgid "
|
|
|
|
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: inc/core/class.data.php:
|
1286 |
-
#: inc/core/class.data.php:1170
|
1287 |
msgid "Play file automatically when page is loaded"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: inc/core/class.data.php:
|
1291 |
-
#: inc/core/class.data.php:1175
|
1292 |
msgid "Loop"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: inc/core/class.data.php:
|
1296 |
-
#: inc/core/class.data.php:1176
|
1297 |
msgid "Repeat when playback is ended"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: inc/core/class.data.php:
|
1301 |
msgid "Custom audio player"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: inc/core/class.data.php:
|
1305 |
msgid "Video"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: inc/core/class.data.php:
|
1309 |
msgid "Url to mp4/flv video-file"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: inc/core/class.data.php:
|
1313 |
msgid "Poster"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: inc/core/class.data.php:
|
1317 |
msgid "Url to poster image, that will be shown before playback"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: inc/core/class.data.php:
|
1321 |
msgid "Player title"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: inc/core/class.data.php:
|
1325 |
msgid "Controls"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: inc/core/class.data.php:
|
1329 |
msgid "Show player controls (play/pause etc.) or not"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: inc/core/class.data.php:
|
1333 |
msgid "Custom video player"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: inc/core/class.data.php:
|
1337 |
msgid "Table"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: inc/core/class.data.php:
|
1341 |
msgid "CSV file"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: inc/core/class.data.php:
|
1345 |
msgid "Upload CSV file if you want to create HTML-table from file"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: inc/core/class.data.php:
|
1349 |
msgid ""
|
1350 |
"<table>\n"
|
1351 |
"<tr>\n"
|
@@ -1359,624 +1260,672 @@ msgid ""
|
|
1359 |
"</table>"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: inc/core/class.data.php:
|
1363 |
msgid "Styled table from HTML or CSV file"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: inc/core/class.data.php:
|
1367 |
msgid "Permalink"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: inc/core/class.data.php:
|
1371 |
msgid "ID"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: inc/core/class.data.php:
|
1375 |
msgid "Post or page ID"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: inc/core/class.data.php:
|
1379 |
msgid "Link target. blank - link will be opened in new window/tab"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: inc/core/class.data.php:
|
1383 |
msgid "Permalink to specified post/page"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: inc/core/class.data.php:
|
1387 |
msgid "Members"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: inc/core/class.data.php:
|
1391 |
-
#: inc/core/class.shortcodes.php:698
|
1392 |
msgid "This content is for registered users only. Please %login%."
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: inc/core/class.data.php:
|
1396 |
msgid "Message"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: inc/core/class.data.php:
|
1400 |
msgid "Message for not logged users"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: inc/core/class.data.php:
|
1404 |
msgid "Box color"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: inc/core/class.data.php:
|
1408 |
msgid "This color will applied only to box for not logged users"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: inc/core/class.data.php:
|
1412 |
-
#: inc/core/class.shortcodes.php:701
|
1413 |
msgid "login"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: inc/core/class.data.php:
|
1417 |
msgid "Login link text"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: inc/core/class.data.php:
|
1421 |
msgid "Text for the login link"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: inc/core/class.data.php:
|
1425 |
msgid "Login link url"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: inc/core/class.data.php:
|
1429 |
msgid "Content for logged members"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: inc/core/class.data.php:
|
1433 |
msgid "Content for logged in members only"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: inc/core/class.data.php:
|
1437 |
msgid "Guests"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: inc/core/class.data.php:
|
1441 |
msgid "Content for guests"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: inc/core/class.data.php:
|
1445 |
msgid "Content for guests only"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: inc/core/class.data.php:
|
1449 |
msgid "RSS Feed"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: inc/core/class.data.php:
|
1453 |
msgid "Url to RSS-feed"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: inc/core/class.data.php:
|
1457 |
msgid "Limit"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: inc/core/class.data.php:
|
1461 |
msgid "Number of items to show"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: inc/core/class.data.php:
|
1465 |
msgid "Feed grabber"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: inc/core/class.data.php:
|
1469 |
msgid "Menu"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: inc/core/class.data.php:
|
1473 |
msgid "Menu name"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: inc/core/class.data.php:
|
1477 |
msgid "Custom menu name. Ex: Main menu"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: inc/core/class.data.php:
|
1481 |
msgid "Custom menu by name"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: inc/core/class.data.php:
|
1485 |
msgid "Sub pages"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: inc/core/class.data.php:
|
1489 |
-
#: inc/core/class.data.php:1379
|
1490 |
msgid "Depth"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: inc/core/class.data.php:
|
1494 |
msgid "Max depth level of children pages"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: inc/core/class.data.php:
|
1498 |
msgid "Parent ID"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: inc/core/class.data.php:
|
1502 |
msgid "ID of the parent page. Leave blank to use current page"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: inc/core/class.data.php:
|
1506 |
msgid "List of sub pages"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: inc/core/class.data.php:
|
1510 |
msgid "Siblings"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: inc/core/class.data.php:
|
1514 |
msgid "Max depth level"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: inc/core/class.data.php:
|
1518 |
msgid "List of cureent page siblings"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: inc/core/class.data.php:
|
1522 |
msgid "Document"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: inc/core/class.data.php:
|
1526 |
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: inc/core/class.data.php:
|
1530 |
msgid "Viewer width"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: inc/core/class.data.php:
|
1534 |
msgid "Viewer height"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: inc/core/class.data.php:
|
1538 |
msgid "Ignore width and height parameters and make viewer responsive"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: inc/core/class.data.php:
|
1542 |
msgid "Document viewer by Google"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: inc/core/class.data.php:
|
1546 |
msgid "Gmap"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: inc/core/class.data.php:
|
1550 |
msgid "Map width"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: inc/core/class.data.php:
|
1554 |
msgid "Map height"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: inc/core/class.data.php:
|
1558 |
msgid "Ignore width and height parameters and make map responsive"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: inc/core/class.data.php:
|
1562 |
msgid "Marker"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: inc/core/class.data.php:
|
1566 |
msgid "Address for the marker. You can type it in any language"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: inc/core/class.data.php:
|
1570 |
msgid "Maps by Google"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: inc/core/class.data.php:
|
1574 |
msgid "Slider"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: inc/core/class.data.php:
|
1578 |
msgid "Choose source gallery, that will be used for this slider"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: inc/core/class.data.php:
|
1582 |
msgid "Slider width (in pixels)"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: inc/core/class.data.php:
|
1586 |
msgid "Slider height (in pixels)"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: inc/core/class.data.php:
|
1590 |
msgid "Ignore width and height parameters and make slider responsive"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: inc/core/class.data.php:
|
1594 |
-
#: inc/core/class.data.php:
|
1595 |
-
#: inc/core/class.data.php:1719
|
1596 |
msgid "Show titles"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: inc/core/class.data.php:
|
1600 |
msgid "Display slide titles"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: inc/core/class.data.php:
|
1604 |
msgid "Is slider centered on the page"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: inc/core/class.data.php:
|
1608 |
-
#: inc/core/class.data.php:1638
|
1609 |
msgid "Arrows"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: inc/core/class.data.php:
|
1613 |
-
#: inc/core/class.data.php:1638
|
1614 |
msgid "Show left and right arrows"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: inc/core/class.data.php:
|
1618 |
-
#: inc/core/class.data.php:1643
|
1619 |
msgid "Pagination"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: inc/core/class.data.php:
|
1623 |
-
#: inc/core/class.data.php:1644
|
1624 |
msgid "Show pagination"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: inc/core/class.data.php:
|
1628 |
-
#: inc/core/class.data.php:1648
|
1629 |
msgid "Mouse wheel control"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: inc/core/class.data.php:
|
1633 |
msgid "Allow to change slides with mouse wheel"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: inc/core/class.data.php:
|
1637 |
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: inc/core/class.data.php:
|
1641 |
-
#: inc/core/class.data.php:1666
|
1642 |
msgid "Speed"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: inc/core/class.data.php:
|
1646 |
-
#: inc/core/class.data.php:1666
|
1647 |
msgid "Specify animation speed"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: inc/core/class.data.php:
|
1651 |
-
#: inc/core/class.data.php:
|
1652 |
-
#: inc/core/class.data.php:1725
|
1653 |
msgid "Links target"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: inc/core/class.data.php:
|
1657 |
msgid "Open slides links in new window/tab"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: inc/core/class.data.php:
|
1661 |
msgid "Customizable image slider"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: inc/core/class.data.php:
|
1665 |
msgid "Carousel"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: inc/core/class.data.php:
|
1669 |
msgid "Choose source gallery, that will be used for this carousel"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: inc/core/class.data.php:
|
1673 |
msgid "Carousel width (in pixels)"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: inc/core/class.data.php:
|
1677 |
msgid "Carousel height (in pixels)"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: inc/core/class.data.php:
|
1681 |
msgid "Ignore width and height parameters and make carousel responsive"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: inc/core/class.data.php:
|
1685 |
msgid "Items to show"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: inc/core/class.data.php:
|
1689 |
msgid "How much carousel items is visible"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: inc/core/class.data.php:
|
1693 |
msgid "Scroll number"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: inc/core/class.data.php:
|
1697 |
msgid "How much items are scrolled in one transition"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: inc/core/class.data.php:
|
1701 |
msgid "Display titles for each item"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: inc/core/class.data.php:
|
1705 |
msgid "Is carousel centered on the page"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: inc/core/class.data.php:
|
1709 |
msgid "Allow to rotate carousel with mouse wheel"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: inc/core/class.data.php:
|
1713 |
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: inc/core/class.data.php:
|
1717 |
msgid "Open carousel links in new window/tab"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: inc/core/class.data.php:
|
1721 |
msgid "Customizable image carousel"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: inc/core/class.data.php:
|
1725 |
msgid "Choose source gallery, that will be used for this shortcode"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: inc/core/class.data.php:
|
1729 |
msgid "Single item width (in pixels)"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: inc/core/class.data.php:
|
1733 |
msgid "Single item height (in pixels)"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: inc/core/class.data.php:
|
1737 |
msgid "Never"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: inc/core/class.data.php:
|
1741 |
msgid "On mouse over"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: inc/core/class.data.php:
|
1745 |
msgid "Always"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: inc/core/class.data.php:
|
1749 |
msgid "Title display mode"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: inc/core/class.data.php:
|
1753 |
msgid "Open links in new window/tab"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#: inc/core/class.data.php:
|
1757 |
msgid "Customizable image gallery"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: inc/core/class.data.php:
|
1761 |
msgid "Posts"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: inc/core/class.data.php:
|
1765 |
msgid "Template"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: inc/core/class.data.php:1745
|
1769 |
-
msgid "<b>Do not change this field value if you do not understand description below.</b><br/>Relative path to the template file. Default templates is placed under the plugin directory (templates folder). You can copy it under your theme directory and modify as you want. You can use following default templates that already available in the plugin directory:<br/><b%value>templates/default-loop.php</b> - posts loop<br/><b%value>templates/teaser-loop.php</b> - posts loop with thumbnail and title<br/><b%value>templates/single-post.php</b> - single post template<br/><b%value>templates/list-loop.php</b> - unordered list with posts titles"
|
1770 |
-
msgstr ""
|
1771 |
-
|
1772 |
#: inc/core/class.data.php:1749
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1773 |
msgid "Post ID's"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: inc/core/class.data.php:
|
1777 |
msgid "Enter comma separated ID's of the posts that you want to show"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: inc/core/class.data.php:
|
1781 |
msgid "Posts per page"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: inc/core/class.data.php:
|
1785 |
-
msgid "
|
|
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: inc/core/class.data.php:
|
1789 |
msgid "Post types"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: inc/core/class.data.php:
|
1793 |
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: inc/core/class.data.php:
|
1797 |
msgid "Taxonomy"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: inc/core/class.data.php:
|
1801 |
msgid "Select taxonomy to show posts from"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: inc/core/class.data.php:
|
1805 |
msgid "Terms"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: inc/core/class.data.php:
|
1809 |
msgid "Select terms to show posts from"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: inc/core/class.data.php:
|
1813 |
msgid "Taxonomy term operator"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: inc/core/class.data.php:
|
1817 |
-
msgid "
|
|
|
|
|
|
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#: inc/core/class.data.php:
|
1821 |
msgid "Authors"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: inc/core/class.data.php:
|
1825 |
msgid "Choose the authors whose posts you want to show"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: inc/core/class.data.php:
|
1829 |
msgid "Meta key"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: inc/core/class.data.php:
|
1833 |
msgid "Enter meta key name to show posts that have this key"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: inc/core/class.data.php:
|
1837 |
msgid "Offset"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#: inc/core/class.data.php:
|
1841 |
msgid "Specify offset to start posts loop not from first post"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#: inc/core/class.data.php:
|
1845 |
msgid "Descending"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: inc/core/class.data.php:
|
1849 |
msgid "Ascending"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#: inc/core/class.data.php:
|
1853 |
msgid "Order"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: inc/core/class.data.php:
|
1857 |
msgid "Posts order"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: inc/core/class.data.php:
|
|
|
|
|
|
|
|
|
1861 |
msgid "Post ID"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#: inc/core/class.data.php:
|
1865 |
msgid "Post author"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: inc/core/class.data.php:
|
1869 |
msgid "Post title"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: inc/core/class.data.php:
|
1873 |
msgid "Post slug"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: inc/core/class.data.php:
|
1877 |
msgid "Date"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: inc/core/class.data.php:
|
1881 |
msgid "Last modified date"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: inc/core/class.data.php:
|
1885 |
-
#: inc/core/class.data.php:1839
|
1886 |
msgid "Post parent"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: inc/core/class.data.php:
|
1890 |
msgid "Random"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: inc/core/class.data.php:
|
1894 |
msgid "Comments number"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: inc/core/class.data.php:
|
1898 |
msgid "Menu order"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: inc/core/class.data.php:
|
1902 |
msgid "Meta key values"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: inc/core/class.data.php:
|
1906 |
msgid "Order by"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: inc/core/class.data.php:
|
1910 |
msgid "Order posts by"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: inc/core/class.data.php:
|
1914 |
msgid "Show childrens of entered post (enter post ID)"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: inc/core/class.data.php:
|
1918 |
msgid "Published"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: inc/core/class.data.php:
|
1922 |
msgid "Pending"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: inc/core/class.data.php:
|
1926 |
msgid "Draft"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: inc/core/class.data.php:
|
1930 |
msgid "Auto-draft"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: inc/core/class.data.php:
|
1934 |
msgid "Future post"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: inc/core/class.data.php:
|
1938 |
msgid "Private post"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: inc/core/class.data.php:
|
1942 |
msgid "Inherit"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: inc/core/class.data.php:
|
1946 |
msgid "Trashed"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: inc/core/class.data.php:
|
1950 |
msgid "Any"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: inc/core/class.data.php:
|
1954 |
msgid "Post status"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: inc/core/class.data.php:
|
1958 |
msgid "Show only posts with selected status"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: inc/core/class.data.php:
|
1962 |
msgid "Ignore sticky"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: inc/core/class.data.php:
|
1966 |
msgid "Select Yes to ignore posts that is sticked"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: inc/core/class.data.php:
|
1970 |
msgid "Custom posts query with customizable template"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: inc/core/class.generator.php:
|
1974 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1975 |
msgid "Insert shortcode"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: inc/core/class.generator.php:81
|
1979 |
-
#: inc/core/class.shortcodes-ultimate.php:115
|
1980 |
#: inc/vendor/class.sunrise-framework.php:282
|
1981 |
msgid "Settings"
|
1982 |
msgstr ""
|
@@ -2021,71 +1970,43 @@ msgstr ""
|
|
2021 |
msgid "All shortcodes"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: inc/core/class.generator.php:
|
2025 |
-
msgid "Yes"
|
2026 |
-
msgstr ""
|
2027 |
-
|
2028 |
-
#: inc/core/class.generator.php:179
|
2029 |
-
msgid "No"
|
2030 |
-
msgstr ""
|
2031 |
-
|
2032 |
-
#: inc/core/class.generator.php:183
|
2033 |
-
#: inc/core/class.generator.php:187
|
2034 |
-
msgid "Media manager"
|
2035 |
-
msgstr ""
|
2036 |
-
|
2037 |
-
#: inc/core/class.generator.php:187
|
2038 |
-
msgid "Icon picker"
|
2039 |
-
msgstr ""
|
2040 |
-
|
2041 |
-
#: inc/core/class.generator.php:205
|
2042 |
-
#: inc/core/class.generator.php:300
|
2043 |
-
msgid "Untitled gallery"
|
2044 |
-
msgstr ""
|
2045 |
-
|
2046 |
-
#: inc/core/class.generator.php:211
|
2047 |
-
#: inc/core/class.generator.php:306
|
2048 |
-
msgid "Galleries not found"
|
2049 |
-
msgstr ""
|
2050 |
-
|
2051 |
-
#: inc/core/class.generator.php:212
|
2052 |
-
msgid "Manage galleries"
|
2053 |
-
msgstr ""
|
2054 |
-
|
2055 |
-
#: inc/core/class.generator.php:212
|
2056 |
-
msgid "Reload galleries"
|
2057 |
-
msgstr ""
|
2058 |
-
|
2059 |
-
#: inc/core/class.generator.php:223
|
2060 |
msgid "Click to set this value"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: inc/core/class.generator.php:
|
2064 |
msgid "Preview"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: inc/core/class.generator.php:
|
2068 |
msgid "Access denied"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
#: inc/core/class.requirements.php:35
|
2072 |
#, php-format
|
2073 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
2074 |
msgstr ""
|
2075 |
|
2076 |
#: inc/core/class.requirements.php:36
|
2077 |
#, php-format
|
2078 |
-
msgid "
|
|
|
|
|
|
|
|
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: inc/core/class.shortcodes-ultimate.php:25
|
2082 |
-
#: inc/core/class.widget.php:40
|
2083 |
#: inc/core/class.widget.php:82
|
2084 |
msgid "Shortcodes Ultimate"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: inc/core/class.shortcodes-ultimate.php:26
|
2088 |
-
#: inc/core/class.vote.php:37
|
2089 |
msgid "Vladimir Anokhin"
|
2090 |
msgstr ""
|
2091 |
|
@@ -2097,18 +2018,15 @@ msgstr ""
|
|
2097 |
msgid "Where to start?"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: inc/core/class.shortcodes-ultimate.php:100
|
2101 |
-
#: inc/views/about.php:4
|
2102 |
msgid "Project homepage"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#: inc/core/class.shortcodes-ultimate.php:101
|
2106 |
-
#: inc/views/about.php:10
|
2107 |
msgid "Support forum"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: inc/core/class.shortcodes-ultimate.php:102
|
2111 |
-
#: inc/views/about.php:12
|
2112 |
msgid "Changelog"
|
2113 |
msgstr ""
|
2114 |
|
@@ -2121,7 +2039,9 @@ msgid "Custom formatting"
|
|
2121 |
msgstr ""
|
2122 |
|
2123 |
#: inc/core/class.shortcodes-ultimate.php:118
|
2124 |
-
msgid "
|
|
|
|
|
2125 |
msgstr ""
|
2126 |
|
2127 |
#: inc/core/class.shortcodes-ultimate.php:118
|
@@ -2140,7 +2060,9 @@ msgid "Compatibility mode"
|
|
2140 |
msgstr ""
|
2141 |
|
2142 |
#: inc/core/class.shortcodes-ultimate.php:126
|
2143 |
-
msgid "
|
|
|
|
|
2144 |
msgstr ""
|
2145 |
|
2146 |
#: inc/core/class.shortcodes-ultimate.php:126
|
@@ -2152,7 +2074,10 @@ msgid "Skip default values"
|
|
2152 |
msgstr ""
|
2153 |
|
2154 |
#: inc/core/class.shortcodes-ultimate.php:134
|
2155 |
-
msgid "
|
|
|
|
|
|
|
2156 |
msgstr ""
|
2157 |
|
2158 |
#: inc/core/class.shortcodes-ultimate.php:141
|
@@ -2161,7 +2086,10 @@ msgstr ""
|
|
2161 |
|
2162 |
#: inc/core/class.shortcodes-ultimate.php:142
|
2163 |
#, php-format
|
2164 |
-
msgid "
|
|
|
|
|
|
|
2165 |
msgstr ""
|
2166 |
|
2167 |
#: inc/core/class.shortcodes-ultimate.php:148
|
@@ -2180,34 +2108,35 @@ msgstr ""
|
|
2180 |
msgid "Tab title"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: inc/core/class.shortcodes.php:
|
2184 |
msgid "This is box title"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: inc/core/class.shortcodes.php:
|
2188 |
-
#: inc/core/class.shortcodes.php:
|
2189 |
-
#: inc/core/class.shortcodes.php:
|
2190 |
-
#: inc/core/class.shortcodes.php:631
|
2191 |
-
#: inc/core/class.shortcodes.php:657
|
2192 |
msgid "please specify correct url"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: inc/core/class.shortcodes.php:
|
2196 |
msgid "This menu doesn't exists, or has no elements"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: inc/core/class.shortcodes.php:
|
2200 |
-
#: inc/core/class.shortcodes.php:
|
2201 |
-
#: inc/core/class.shortcodes.php:991
|
2202 |
msgid "images not found"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#: inc/core/class.shortcodes.php:
|
2206 |
msgid "template not found"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
#: inc/core/class.vote.php:39
|
2210 |
-
msgid "
|
|
|
|
|
|
|
|
|
2211 |
msgstr ""
|
2212 |
|
2213 |
#: inc/core/class.vote.php:41
|
@@ -2266,8 +2195,7 @@ msgstr ""
|
|
2266 |
msgid "minute"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: inc/core/tools.php:255
|
2270 |
-
#: inc/core/tools.php:262
|
2271 |
msgid "s"
|
2272 |
msgstr ""
|
2273 |
|
@@ -2332,11 +2260,15 @@ msgid "What is a shortcode?"
|
|
2332 |
msgstr ""
|
2333 |
|
2334 |
#: inc/views/about.php:30
|
2335 |
-
msgid "
|
|
|
|
|
2336 |
msgstr ""
|
2337 |
|
2338 |
#: inc/views/about.php:31
|
2339 |
-
msgid "
|
|
|
|
|
2340 |
msgstr ""
|
2341 |
|
2342 |
#: inc/views/about.php:35
|
@@ -2400,7 +2332,9 @@ msgid "Saved"
|
|
2400 |
msgstr ""
|
2401 |
|
2402 |
#: inc/views/closetab.php:7
|
2403 |
-
msgid "
|
|
|
|
|
2404 |
msgstr ""
|
2405 |
|
2406 |
#: inc/views/closetab.php:7
|
@@ -2432,53 +2366,47 @@ msgid "plugin url"
|
|
2432 |
msgstr ""
|
2433 |
|
2434 |
#: inc/views/galleries.php:3
|
2435 |
-
msgid "
|
|
|
|
|
2436 |
msgstr ""
|
2437 |
|
2438 |
#: inc/views/galleries.php:3
|
2439 |
-
msgid "
|
|
|
2440 |
msgstr ""
|
2441 |
|
2442 |
#: inc/views/galleries.php:5
|
2443 |
msgid "Create new gallery"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: inc/views/galleries.php:18
|
2447 |
-
#: inc/views/galleries.php:70
|
2448 |
msgid "Enter gallery name"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: inc/views/galleries.php:20
|
2452 |
-
#: inc/views/galleries.php:72
|
2453 |
msgid "Edit gallery"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: inc/views/galleries.php:21
|
2457 |
-
#: inc/views/galleries.php:73
|
2458 |
msgid "Save & close"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: inc/views/galleries.php:22
|
2462 |
-
#: inc/views/galleries.php:
|
2463 |
-
#: inc/views/galleries.php:74
|
2464 |
-
#: inc/views/galleries.php:100
|
2465 |
msgid "Close"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: inc/views/galleries.php:23
|
2469 |
-
#: inc/views/galleries.php:
|
2470 |
-
#: inc/views/galleries.php:75
|
2471 |
-
#: inc/views/galleries.php:91
|
2472 |
msgid "Delete"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: inc/views/galleries.php:27
|
2476 |
-
#: inc/views/galleries.php:79
|
2477 |
msgid "Add images"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
-
#: inc/views/galleries.php:38
|
2481 |
-
#: inc/views/galleries.php:90
|
2482 |
msgid "Edit"
|
2483 |
msgstr ""
|
2484 |
|
@@ -2486,15 +2414,14 @@ msgstr ""
|
|
2486 |
msgid "Instructions"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: inc/views/notifications.php:13
|
2490 |
-
#: inc/views/notifications.php:
|
2491 |
-
#: inc/views/notifications.php:29
|
2492 |
-
#: inc/views/notifications.php:37
|
2493 |
msgid "Click to close"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
#: inc/views/settings.php:12
|
2497 |
-
msgid "
|
|
|
2498 |
msgstr ""
|
2499 |
|
2500 |
#: inc/views/settings.php:14
|
@@ -2517,30 +2444,23 @@ msgstr ""
|
|
2517 |
msgid "Upload"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
-
#: templates/default-loop.php:15
|
2521 |
-
#: templates/single-post.php:18
|
2522 |
msgid "Posted"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
-
#: templates/default-loop.php:19
|
2526 |
-
#: templates/single-post.php:18
|
2527 |
msgid "0 comments"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: templates/default-loop.php:19
|
2531 |
-
#: templates/single-post.php:18
|
2532 |
msgid "1 comment"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: templates/default-loop.php:19
|
2536 |
-
#: templates/single-post.php:18
|
2537 |
msgid "%n comments"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
-
#: templates/default-loop.php:27
|
2541 |
-
#: templates/
|
2542 |
-
#: templates/single-post.php:30
|
2543 |
-
#: templates/teaser-loop.php:22
|
2544 |
msgid "Posts not found"
|
2545 |
msgstr ""
|
2546 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Shortcodes Ultimate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-10-21 08:42+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-10-21 08:42+0300\n"
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
12 |
"X-Poedit-KeywordsList: _e;__\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: inc/example-addon.php:29
|
19 |
msgid "Heading 2"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: inc/example-addon.php:43 inc/core/class.data.php:173
|
23 |
+
#: inc/core/class.data.php:303 inc/core/class.data.php:386
|
24 |
+
#: inc/core/class.data.php:551 inc/core/class.data.php:706
|
25 |
+
#: inc/core/class.data.php:868
|
|
|
|
|
|
|
26 |
msgid "Default"
|
27 |
msgstr ""
|
28 |
|
30 |
msgid "Small"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: inc/example-addon.php:49 inc/core/class.data.php:178
|
34 |
+
#: inc/core/class.data.php:392 inc/core/class.data.php:561
|
35 |
+
#: inc/core/class.data.php:713 inc/core/class.data.php:838
|
|
|
|
|
|
|
36 |
msgid "Style"
|
37 |
msgstr ""
|
38 |
|
64 |
msgid "Insert"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: inc/core/class.assets.php:70 inc/core/class.generator-fields.php:61
|
|
|
68 |
msgid "Please wait"
|
69 |
msgstr ""
|
70 |
|
71 |
#: inc/core/class.assets.php:83
|
72 |
+
msgid ""
|
73 |
+
"This shortcode doesn't work in live preview. Please insert it into editor "
|
74 |
+
"and preview on the site."
|
75 |
msgstr ""
|
76 |
|
77 |
#: inc/core/class.data.php:36
|
78 |
msgid "All"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: inc/core/class.data.php:37 inc/core/class.generator.php:203
|
|
|
82 |
msgid "Content"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: inc/core/class.data.php:38 inc/core/class.data.php:694
|
|
|
86 |
msgid "Box"
|
87 |
msgstr ""
|
88 |
|
90 |
msgid "Media"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: inc/core/class.data.php:40 inc/core/class.data.php:1496
|
94 |
+
#: inc/core/class.data.php:1588 inc/core/class.data.php:1690
|
95 |
+
#: inc/core/class.data.php:1696
|
|
|
|
|
96 |
msgid "Gallery"
|
97 |
msgstr ""
|
98 |
|
104 |
msgid "Heading"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: inc/core/class.data.php:66 inc/core/class.data.php:397
|
108 |
+
#: inc/core/class.data.php:477 inc/core/class.data.php:582
|
|
|
|
|
109 |
msgid "Size"
|
110 |
msgstr ""
|
111 |
|
113 |
msgid "Select heading size"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: inc/core/class.data.php:71 inc/core/class.data.php:361
|
117 |
+
#: inc/core/class.data.php:418 inc/core/class.data.php:846
|
|
|
|
|
118 |
msgid "Left"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: inc/core/class.data.php:72 inc/core/class.data.php:419
|
122 |
+
#: inc/core/class.data.php:1529 inc/core/class.data.php:1637
|
|
|
123 |
msgid "Center"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: inc/core/class.data.php:73 inc/core/class.data.php:362
|
127 |
+
#: inc/core/class.data.php:420 inc/core/class.data.php:847
|
|
|
|
|
128 |
msgid "Right"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: inc/core/class.data.php:76 inc/core/class.data.php:365
|
132 |
+
#: inc/core/class.data.php:423
|
|
|
133 |
msgid "Align"
|
134 |
msgstr ""
|
135 |
|
137 |
msgid "Heading text alignment"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: inc/core/class.data.php:81 inc/core/class.data.php:112
|
141 |
+
#: inc/core/class.data.php:145 inc/core/class.data.php:188
|
142 |
+
#: inc/core/class.data.php:205 inc/core/class.data.php:233
|
143 |
+
#: inc/core/class.data.php:257 inc/core/class.data.php:286
|
144 |
+
#: inc/core/class.data.php:316 inc/core/class.data.php:344
|
145 |
+
#: inc/core/class.data.php:369 inc/core/class.data.php:401
|
146 |
+
#: inc/core/class.data.php:428 inc/core/class.data.php:445
|
147 |
+
#: inc/core/class.data.php:488 inc/core/class.data.php:517
|
148 |
+
#: inc/core/class.data.php:639 inc/core/class.data.php:683
|
149 |
+
#: inc/core/class.data.php:738 inc/core/class.data.php:774
|
150 |
+
#: inc/core/class.data.php:806 inc/core/class.data.php:909
|
151 |
+
#: inc/core/class.data.php:926 inc/core/class.data.php:979
|
152 |
+
#: inc/core/class.data.php:1030 inc/core/class.data.php:1074
|
153 |
+
#: inc/core/class.data.php:1114 inc/core/class.data.php:1184
|
154 |
+
#: inc/core/class.data.php:1206 inc/core/class.data.php:1238
|
155 |
+
#: inc/core/class.data.php:1272 inc/core/class.data.php:1289
|
156 |
+
#: inc/core/class.data.php:1317 inc/core/class.data.php:1338
|
157 |
+
#: inc/core/class.data.php:1366 inc/core/class.data.php:1388
|
158 |
+
#: inc/core/class.data.php:1434 inc/core/class.data.php:1480
|
159 |
+
#: inc/core/class.data.php:1572 inc/core/class.data.php:1680
|
160 |
+
#: inc/core/class.data.php:1733
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
msgid "Class"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: inc/core/class.data.php:82 inc/core/class.data.php:113
|
165 |
+
#: inc/core/class.data.php:146 inc/core/class.data.php:189
|
166 |
+
#: inc/core/class.data.php:206 inc/core/class.data.php:234
|
167 |
+
#: inc/core/class.data.php:258 inc/core/class.data.php:287
|
168 |
+
#: inc/core/class.data.php:317 inc/core/class.data.php:345
|
169 |
+
#: inc/core/class.data.php:370 inc/core/class.data.php:402
|
170 |
+
#: inc/core/class.data.php:429 inc/core/class.data.php:446
|
171 |
+
#: inc/core/class.data.php:489 inc/core/class.data.php:518
|
172 |
+
#: inc/core/class.data.php:640 inc/core/class.data.php:684
|
173 |
+
#: inc/core/class.data.php:739 inc/core/class.data.php:775
|
174 |
+
#: inc/core/class.data.php:807 inc/core/class.data.php:910
|
175 |
+
#: inc/core/class.data.php:927 inc/core/class.data.php:980
|
176 |
+
#: inc/core/class.data.php:1031 inc/core/class.data.php:1075
|
177 |
+
#: inc/core/class.data.php:1115 inc/core/class.data.php:1185
|
178 |
+
#: inc/core/class.data.php:1207 inc/core/class.data.php:1239
|
179 |
+
#: inc/core/class.data.php:1273 inc/core/class.data.php:1290
|
180 |
+
#: inc/core/class.data.php:1318 inc/core/class.data.php:1339
|
181 |
+
#: inc/core/class.data.php:1367 inc/core/class.data.php:1389
|
182 |
+
#: inc/core/class.data.php:1435 inc/core/class.data.php:1481
|
183 |
+
#: inc/core/class.data.php:1573 inc/core/class.data.php:1681
|
184 |
+
#: inc/core/class.data.php:1734
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
msgid "Extra CSS class"
|
186 |
msgstr ""
|
187 |
|
232 |
msgid "Tab name"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: inc/core/class.data.php:129 inc/core/class.data.php:162
|
236 |
+
#: inc/core/class.data.php:657 inc/core/class.data.php:701
|
237 |
+
#: inc/core/class.data.php:1143 inc/views/galleries.php:43
|
238 |
+
#: inc/views/galleries.php:95
|
|
|
239 |
msgid "Title"
|
240 |
msgstr ""
|
241 |
|
251 |
msgid "Is this tab disabled"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: inc/core/class.data.php:140 inc/core/class.data.php:183
|
255 |
+
msgid "Anchor"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: inc/core/class.data.php:141
|
259 |
+
msgid ""
|
260 |
+
"You can use unique anchor for this tab to access it with hash in page url. "
|
261 |
+
"For example: type here <b%value>Hello</b> and then use url like http://"
|
262 |
+
"example.com/page-url#Hello. This tab will be activated and scrolled in"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: inc/core/class.data.php:150
|
266 |
msgid "Tab content"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: inc/core/class.data.php:151
|
270 |
msgid "Single tab"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: inc/core/class.data.php:156
|
274 |
msgid "Spoiler"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: inc/core/class.data.php:161 inc/core/class.shortcodes.php:68
|
|
|
278 |
msgid "Spoiler title"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: inc/core/class.data.php:162
|
282 |
msgid "Text in spoiler title"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: inc/core/class.data.php:167
|
286 |
msgid "Open"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: inc/core/class.data.php:168
|
290 |
msgid "Is spoiler content visible by default"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: inc/core/class.data.php:174
|
294 |
msgid "Fancy"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: inc/core/class.data.php:175 inc/core/class.data.php:389
|
|
|
298 |
msgid "Simple"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: inc/core/class.data.php:179
|
302 |
msgid "Spoiler skin"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: inc/core/class.data.php:184
|
306 |
+
msgid ""
|
307 |
+
"You can use unique anchor for this spoiler to access it with hash in page "
|
308 |
+
"url. For example: type here <b%value>Hello</b> and then use url like http://"
|
309 |
+
"example.com/page-url#Hello. This spoiler will be open and scrolled in"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: inc/core/class.data.php:193
|
313 |
msgid "Hidden content"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: inc/core/class.data.php:194
|
317 |
msgid "Spoiler with hidden content"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: inc/core/class.data.php:199
|
321 |
msgid "Accordion"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: inc/core/class.data.php:210
|
325 |
msgid ""
|
326 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
327 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
328 |
"[%prefix_spoiler]Content[/%prefix_spoiler]"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: inc/core/class.data.php:211
|
332 |
msgid "Accordion with spoilers"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: inc/core/class.data.php:216
|
336 |
msgid "Divider"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: inc/core/class.data.php:223
|
340 |
msgid "Show TOP link"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: inc/core/class.data.php:224
|
344 |
msgid "Show link to top of the page or not"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: inc/core/class.data.php:228 inc/core/class.shortcodes.php:91
|
|
|
348 |
msgid "Go to top"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: inc/core/class.data.php:229
|
352 |
msgid "Link text"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: inc/core/class.data.php:229
|
356 |
msgid "Text for the GO TOP link"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: inc/core/class.data.php:238
|
360 |
msgid "Content divider with optional TOP link"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: inc/core/class.data.php:243
|
364 |
msgid "Spacer"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: inc/core/class.data.php:253 inc/core/class.data.php:962
|
368 |
+
#: inc/core/class.data.php:1013 inc/core/class.data.php:1063
|
369 |
+
#: inc/core/class.data.php:1161 inc/core/class.data.php:1423
|
370 |
+
#: inc/core/class.data.php:1463 inc/core/class.data.php:1513
|
371 |
+
#: inc/core/class.data.php:1605 inc/core/class.data.php:1713
|
|
|
|
|
|
|
|
|
|
|
372 |
msgid "Height"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: inc/core/class.data.php:253
|
376 |
msgid "Height of the spacer in pixels"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: inc/core/class.data.php:262
|
380 |
msgid "Empty space with adjustable height"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: inc/core/class.data.php:267
|
384 |
msgid "Highlight"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: inc/core/class.data.php:275 inc/core/class.data.php:567
|
388 |
+
#: inc/core/class.data.php:757
|
|
|
389 |
msgid "Background"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: inc/core/class.data.php:276
|
393 |
msgid "Highlighted text background color"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: inc/core/class.data.php:282 inc/core/class.data.php:573
|
397 |
+
#: inc/core/class.data.php:763
|
|
|
398 |
msgid "Text color"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: inc/core/class.data.php:282
|
402 |
msgid "Highlighted text color"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: inc/core/class.data.php:290 inc/core/class.data.php:291
|
|
|
406 |
msgid "Highlighted text"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: inc/core/class.data.php:296 inc/core/class.data.php:320
|
|
|
410 |
msgid "Label"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: inc/core/class.data.php:304
|
414 |
msgid "Success"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: inc/core/class.data.php:305
|
418 |
msgid "Warning"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: inc/core/class.data.php:306
|
422 |
msgid "Important"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: inc/core/class.data.php:307
|
426 |
msgid "Black"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: inc/core/class.data.php:308
|
430 |
msgid "Info"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: inc/core/class.data.php:311
|
434 |
msgid "Type"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: inc/core/class.data.php:312
|
438 |
msgid "Style of the label"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: inc/core/class.data.php:321
|
442 |
msgid "Styled label"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: inc/core/class.data.php:326 inc/core/class.data.php:348
|
|
|
446 |
msgid "Quote"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: inc/core/class.data.php:333
|
450 |
msgid "Cite"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: inc/core/class.data.php:334
|
454 |
msgid "Quote author name"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: inc/core/class.data.php:339
|
458 |
msgid "Cite url"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: inc/core/class.data.php:340
|
462 |
msgid "Url of the quote author. Leave empty to disable link"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: inc/core/class.data.php:349
|
466 |
msgid "Blockquote alternative"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: inc/core/class.data.php:354 inc/core/class.data.php:373
|
470 |
+
#: inc/core/class.data.php:374
|
|
|
471 |
msgid "Pullquote"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: inc/core/class.data.php:365
|
475 |
msgid "Pullquote alignment (float)"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: inc/core/class.data.php:379 inc/core/class.data.php:406
|
|
|
479 |
msgid "Dropcap"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: inc/core/class.data.php:387 inc/core/class.data.php:552
|
|
|
483 |
msgid "Flat"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: inc/core/class.data.php:388
|
|
|
487 |
msgid "Light"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: inc/core/class.data.php:392
|
491 |
msgid "Dropcap style preset"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: inc/core/class.data.php:397
|
495 |
msgid "Choose dropcap size"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: inc/core/class.data.php:405
|
499 |
msgid "D"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: inc/core/class.data.php:411
|
503 |
msgid "Frame"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: inc/core/class.data.php:424
|
507 |
msgid "Frame alignment"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: inc/core/class.data.php:434
|
511 |
msgid "Styled image frame"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: inc/core/class.data.php:439
|
515 |
msgid "Row"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: inc/core/class.data.php:450
|
519 |
msgid ""
|
520 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
521 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
522 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: inc/core/class.data.php:451
|
526 |
msgid "Row for flexible columns"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: inc/core/class.data.php:456
|
530 |
msgid "Column"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: inc/core/class.data.php:463
|
534 |
msgid "Full width"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: inc/core/class.data.php:464
|
538 |
msgid "One half"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: inc/core/class.data.php:465
|
542 |
msgid "One third"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: inc/core/class.data.php:466
|
546 |
msgid "Two third"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: inc/core/class.data.php:467
|
550 |
msgid "One fourth"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: inc/core/class.data.php:468
|
554 |
msgid "Three fourth"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: inc/core/class.data.php:469
|
558 |
msgid "One fifth"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: inc/core/class.data.php:470
|
562 |
msgid "Two fifth"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: inc/core/class.data.php:471
|
566 |
msgid "Three fifth"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: inc/core/class.data.php:472
|
570 |
msgid "Four fifth"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: inc/core/class.data.php:473
|
574 |
msgid "One sixth"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: inc/core/class.data.php:474
|
578 |
msgid "Five sixth"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: inc/core/class.data.php:478
|
582 |
msgid "Select column width. This width will be calculated depend page width"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: inc/core/class.data.php:483 inc/core/class.data.php:593
|
|
|
586 |
msgid "Centered"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: inc/core/class.data.php:484
|
590 |
msgid "Is this column centered on the page"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: inc/core/class.data.php:493
|
594 |
msgid "Column content"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: inc/core/class.data.php:494
|
598 |
msgid "Flexible and responsive columns"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: inc/core/class.data.php:499
|
602 |
msgid "List"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: inc/core/class.data.php:506 inc/core/class.data.php:612
|
606 |
+
#: inc/core/class.data.php:663
|
|
|
607 |
msgid "Icon"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: inc/core/class.data.php:507
|
611 |
msgid "You can upload custom icon for this list or pick a built-in icon"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: inc/core/class.data.php:512 inc/core/class.data.php:618
|
615 |
+
#: inc/core/class.data.php:669
|
|
|
616 |
msgid "Icon color"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: inc/core/class.data.php:513 inc/core/class.data.php:619
|
620 |
+
#: inc/core/class.data.php:670
|
621 |
+
msgid ""
|
622 |
+
"This color will be applied to the selected icon. Does not works with "
|
623 |
+
"uploaded icons"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: inc/core/class.data.php:522
|
627 |
msgid ""
|
628 |
"<ul>\n"
|
629 |
"<li>List item</li>\n"
|
632 |
"</ul>"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: inc/core/class.data.php:523
|
636 |
msgid "Styled unordered list"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: inc/core/class.data.php:528
|
640 |
msgid "Button"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: inc/core/class.data.php:535 inc/views/galleries.php:45
|
644 |
+
#: inc/views/galleries.php:97
|
645 |
msgid "Link"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: inc/core/class.data.php:536
|
649 |
msgid "Button link"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: inc/core/class.data.php:541 inc/core/class.data.php:1229
|
|
|
653 |
msgid "Same tab"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: inc/core/class.data.php:542 inc/core/class.data.php:1230
|
|
|
657 |
msgid "New tab"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: inc/core/class.data.php:545 inc/core/class.data.php:1233
|
|
|
661 |
msgid "Target"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: inc/core/class.data.php:546
|
665 |
msgid "Button link target"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: inc/core/class.data.php:553 inc/core/class.data.php:707
|
|
|
669 |
msgid "Soft"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: inc/core/class.data.php:554 inc/core/class.data.php:708
|
|
|
673 |
msgid "Glass"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: inc/core/class.data.php:555 inc/core/class.data.php:709
|
|
|
677 |
msgid "Bubbles"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: inc/core/class.data.php:556 inc/core/class.data.php:710
|
|
|
681 |
msgid "Noise"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: inc/core/class.data.php:557
|
685 |
msgid "Stroked"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: inc/core/class.data.php:558
|
689 |
msgid "3D"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: inc/core/class.data.php:561
|
693 |
msgid "Button background style preset"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: inc/core/class.data.php:567
|
697 |
msgid "Button background color"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: inc/core/class.data.php:574
|
701 |
msgid "Button text color"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: inc/core/class.data.php:583
|
705 |
msgid "Button size"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: inc/core/class.data.php:588
|
709 |
msgid "Fluid"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: inc/core/class.data.php:588
|
713 |
msgid "Fluid buttons has 100% width"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: inc/core/class.data.php:593
|
717 |
msgid "Is button centered on the page"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: inc/core/class.data.php:598
|
721 |
+
msgid "Auto"
|
|
|
|
|
|
|
|
|
|
|
|
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: inc/core/class.data.php:599
|
725 |
+
msgid "Round"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: inc/core/class.data.php:600
|
729 |
+
msgid "Square"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: inc/core/class.data.php:606 inc/core/class.data.php:733
|
733 |
+
#: inc/core/class.data.php:770
|
734 |
+
msgid "Radius"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: inc/core/class.data.php:607
|
738 |
+
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
739 |
msgstr ""
|
740 |
|
741 |
#: inc/core/class.data.php:613
|
742 |
+
msgid "You can upload custom icon for this button or pick a built-in icon"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: inc/core/class.data.php:624
|
746 |
+
msgid "Text shadow"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: inc/core/class.data.php:625
|
750 |
+
msgid "Button text shadow"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: inc/core/class.data.php:629
|
754 |
msgid "Description"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: inc/core/class.data.php:630
|
758 |
+
msgid ""
|
759 |
+
"Small description under button text. This option is incompatible with icon."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: inc/core/class.data.php:634
|
763 |
msgid "onClick"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: inc/core/class.data.php:635
|
767 |
msgid "Advanced JavaScript code for onClick action"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: inc/core/class.data.php:644
|
771 |
msgid "Button text"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: inc/core/class.data.php:645
|
775 |
msgid "Styled button"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: inc/core/class.data.php:650
|
779 |
msgid "Service"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: inc/core/class.data.php:656 inc/core/class.shortcodes.php:420
|
|
|
783 |
msgid "Service title"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: inc/core/class.data.php:658
|
787 |
msgid "Service name"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: inc/core/class.data.php:664
|
791 |
msgid "You can upload custom icon for this box"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: inc/core/class.data.php:678
|
795 |
msgid "Icon size"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: inc/core/class.data.php:679
|
799 |
msgid "Size of the uploaded icon in pixels"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: inc/core/class.data.php:688
|
803 |
msgid "Service description"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: inc/core/class.data.php:689
|
807 |
msgid "Service box with title"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: inc/core/class.data.php:700
|
811 |
msgid "Box title"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: inc/core/class.data.php:701
|
815 |
msgid "Text for the box title"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: inc/core/class.data.php:714
|
819 |
msgid "Box style preset"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: inc/core/class.data.php:720 inc/core/class.generator-fields.php:86
|
823 |
msgid "Color"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: inc/core/class.data.php:721
|
827 |
msgid "Color for the box title and borders"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: inc/core/class.data.php:727
|
831 |
msgid "Title text color"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: inc/core/class.data.php:727
|
835 |
msgid "Color for the box title text"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: inc/core/class.data.php:734
|
839 |
msgid "Box corners radius"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: inc/core/class.data.php:743
|
843 |
msgid "Box content"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: inc/core/class.data.php:744
|
847 |
msgid "Colored box with caption"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: inc/core/class.data.php:749
|
851 |
msgid "Note"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: inc/core/class.data.php:757
|
855 |
msgid "Note background color"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: inc/core/class.data.php:764
|
859 |
msgid "Note text color"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: inc/core/class.data.php:770
|
863 |
msgid "Note corners radius"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: inc/core/class.data.php:778
|
867 |
msgid "Note text"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: inc/core/class.data.php:779
|
871 |
msgid "Colored box"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: inc/core/class.data.php:784
|
875 |
msgid "Lightbox"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: inc/core/class.data.php:791
|
879 |
msgid "Iframe"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: inc/core/class.data.php:792
|
883 |
msgid "Image"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: inc/core/class.data.php:793
|
887 |
msgid "Inline (html content)"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: inc/core/class.data.php:796
|
891 |
msgid "Content type"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: inc/core/class.data.php:797
|
895 |
msgid "Select type of the lightbox window content"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: inc/core/class.data.php:801
|
899 |
msgid "Content source"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: inc/core/class.data.php:802
|
903 |
+
msgid ""
|
904 |
+
"Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
|
905 |
+
"Use CSS selector for Inline content type.<br />Example values:<br /><b"
|
906 |
+
"%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube video "
|
907 |
+
"(iframe)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - "
|
908 |
+
"uploaded image (image)<br /><b%value>http://example.com/</b> - any web page "
|
909 |
+
"(iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: inc/core/class.data.php:811
|
913 |
msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: inc/core/class.data.php:812
|
917 |
msgid "Lightbox window with custom content"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: inc/core/class.data.php:817
|
921 |
msgid "Tooltip"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: inc/core/class.data.php:824
|
925 |
msgid "Basic: Light"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: inc/core/class.data.php:825
|
929 |
msgid "Basic: Dark"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: inc/core/class.data.php:826
|
933 |
msgid "Basic: Yellow"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: inc/core/class.data.php:827
|
937 |
msgid "Basic: Green"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: inc/core/class.data.php:828
|
941 |
msgid "Basic: Red"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: inc/core/class.data.php:829
|
945 |
msgid "Basic: Blue"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: inc/core/class.data.php:830
|
949 |
msgid "Youtube"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: inc/core/class.data.php:831
|
953 |
msgid "Tipsy"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: inc/core/class.data.php:832
|
957 |
msgid "Bootstrap"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: inc/core/class.data.php:833
|
961 |
msgid "jTools"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: inc/core/class.data.php:834
|
965 |
msgid "Tipped"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: inc/core/class.data.php:835
|
969 |
msgid "Cluetip"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: inc/core/class.data.php:839
|
973 |
msgid "Tooltip window style"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: inc/core/class.data.php:844
|
977 |
+
msgid "Top"
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: inc/core/class.data.php:845
|
981 |
+
msgid "Bottom"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: inc/core/class.data.php:850
|
985 |
msgid "Position"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: inc/core/class.data.php:851
|
989 |
msgid "Tooltip position"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: inc/core/class.data.php:856
|
993 |
msgid "Shadow"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: inc/core/class.data.php:857
|
997 |
+
msgid ""
|
998 |
+
"Add shadow to tooltip. This option is only works with basic styes, e.g. "
|
999 |
+
"blue, green etc."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: inc/core/class.data.php:862
|
1003 |
msgid "Rounded corners"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: inc/core/class.data.php:863
|
1007 |
+
msgid ""
|
1008 |
+
"Use rounded for tooltip. This option is only works with basic styes, e.g. "
|
1009 |
+
"blue, green etc."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: inc/core/class.data.php:877
|
1013 |
msgid "Font size"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: inc/core/class.data.php:878
|
1017 |
msgid "Tooltip font size"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: inc/core/class.data.php:882
|
1021 |
msgid "Tooltip title"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: inc/core/class.data.php:883
|
1025 |
+
msgid ""
|
1026 |
+
"Enter title for tooltip window. Leave this field empty to hide the title"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: inc/core/class.data.php:886 inc/core/class.shortcodes.php:497
|
|
|
1030 |
msgid "Tooltip text"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: inc/core/class.data.php:887
|
1034 |
msgid "Tooltip content"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: inc/core/class.data.php:888
|
1038 |
msgid "Enter tooltip content here"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: inc/core/class.data.php:893
|
1042 |
msgid "Show and hide on mouse hover"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: inc/core/class.data.php:894
|
1046 |
msgid "Show and hide by mouse click"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: inc/core/class.data.php:895
|
1050 |
msgid "Always visible"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: inc/core/class.data.php:898
|
1054 |
msgid "Behavior"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: inc/core/class.data.php:899
|
1058 |
msgid "Select tooltip behavior"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: inc/core/class.data.php:904
|
1062 |
msgid "Close button"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: inc/core/class.data.php:905
|
1066 |
msgid "Show close button"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: inc/core/class.data.php:914
|
1070 |
msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: inc/core/class.data.php:915
|
1074 |
msgid "Tooltip window with custom content"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: inc/core/class.data.php:920
|
1078 |
msgid "Private"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: inc/core/class.data.php:931
|
1082 |
msgid "Private note text"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: inc/core/class.data.php:932
|
1086 |
msgid "Private note for post authors"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: inc/core/class.data.php:937
|
1090 |
msgid "YouTube"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: inc/core/class.data.php:944 inc/core/class.data.php:996
|
1094 |
+
#: inc/core/class.data.php:1046 inc/core/class.data.php:1307
|
1095 |
+
#: inc/core/class.data.php:1405
|
|
|
|
|
1096 |
msgid "Url"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: inc/core/class.data.php:945
|
1100 |
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: inc/core/class.data.php:953 inc/core/class.data.php:1004
|
1104 |
+
#: inc/core/class.data.php:1054 inc/core/class.data.php:1097
|
1105 |
+
#: inc/core/class.data.php:1152 inc/core/class.data.php:1414
|
1106 |
+
#: inc/core/class.data.php:1454 inc/core/class.data.php:1505
|
1107 |
+
#: inc/core/class.data.php:1597 inc/core/class.data.php:1705
|
|
|
|
|
|
|
|
|
|
|
1108 |
msgid "Width"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: inc/core/class.data.php:954 inc/core/class.data.php:1005
|
1112 |
+
#: inc/core/class.data.php:1055 inc/core/class.data.php:1153
|
|
|
|
|
1113 |
msgid "Player width"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: inc/core/class.data.php:963 inc/core/class.data.php:1014
|
1117 |
+
#: inc/core/class.data.php:1064 inc/core/class.data.php:1162
|
|
|
|
|
1118 |
msgid "Player height"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: inc/core/class.data.php:968 inc/core/class.data.php:1019
|
1122 |
+
#: inc/core/class.data.php:1069 inc/core/class.data.php:1429
|
1123 |
+
#: inc/core/class.data.php:1469 inc/core/class.data.php:1518
|
1124 |
+
#: inc/core/class.data.php:1610
|
|
|
|
|
|
|
1125 |
msgid "Responsive"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: inc/core/class.data.php:969 inc/core/class.data.php:1020
|
1129 |
+
#: inc/core/class.data.php:1070
|
|
|
1130 |
msgid "Ignore width and height parameters and make player responsive"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: inc/core/class.data.php:974 inc/core/class.data.php:1025
|
1134 |
+
#: inc/core/class.data.php:1103 inc/core/class.data.php:1173
|
1135 |
+
#: inc/core/class.data.php:1553 inc/core/class.data.php:1661
|
|
|
|
|
|
|
1136 |
msgid "Autoplay"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: inc/core/class.data.php:975 inc/core/class.data.php:1026
|
|
|
1140 |
msgid "Play video automatically when page is loaded"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: inc/core/class.data.php:984
|
1144 |
msgid "YouTube video"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: inc/core/class.data.php:989
|
1148 |
msgid "Vimeo"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: inc/core/class.data.php:996
|
1152 |
msgid "Url of Vimeo page with video"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: inc/core/class.data.php:1035
|
1156 |
msgid "Vimeo video"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: inc/core/class.data.php:1040
|
1160 |
msgid "Screenr"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: inc/core/class.data.php:1046
|
1164 |
msgid "Url of Screenr page with video"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: inc/core/class.data.php:1079
|
1168 |
msgid "Screenr video"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: inc/core/class.data.php:1084
|
1172 |
msgid "Audio"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: inc/core/class.data.php:1091 inc/core/class.data.php:1131
|
|
|
1176 |
msgid "File"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: inc/core/class.data.php:1092
|
1180 |
msgid "Audio file url. Supported formats: mp3, ogg"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: inc/core/class.data.php:1098
|
1184 |
+
msgid ""
|
1185 |
+
"Player width. You can specify width in percents and player will be "
|
1186 |
+
"responsive. Example values: <b%value>200px</b>, <b%value>100%</b>"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: inc/core/class.data.php:1104 inc/core/class.data.php:1174
|
|
|
1190 |
msgid "Play file automatically when page is loaded"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: inc/core/class.data.php:1109 inc/core/class.data.php:1179
|
|
|
1194 |
msgid "Loop"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: inc/core/class.data.php:1110 inc/core/class.data.php:1180
|
|
|
1198 |
msgid "Repeat when playback is ended"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: inc/core/class.data.php:1119
|
1202 |
msgid "Custom audio player"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: inc/core/class.data.php:1124
|
1206 |
msgid "Video"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: inc/core/class.data.php:1132
|
1210 |
msgid "Url to mp4/flv video-file"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: inc/core/class.data.php:1137
|
1214 |
msgid "Poster"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: inc/core/class.data.php:1138
|
1218 |
msgid "Url to poster image, that will be shown before playback"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: inc/core/class.data.php:1144
|
1222 |
msgid "Player title"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: inc/core/class.data.php:1167
|
1226 |
msgid "Controls"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: inc/core/class.data.php:1168
|
1230 |
msgid "Show player controls (play/pause etc.) or not"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: inc/core/class.data.php:1189
|
1234 |
msgid "Custom video player"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: inc/core/class.data.php:1194
|
1238 |
msgid "Table"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: inc/core/class.data.php:1201
|
1242 |
msgid "CSV file"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: inc/core/class.data.php:1202
|
1246 |
msgid "Upload CSV file if you want to create HTML-table from file"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: inc/core/class.data.php:1211
|
1250 |
msgid ""
|
1251 |
"<table>\n"
|
1252 |
"<tr>\n"
|
1260 |
"</table>"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: inc/core/class.data.php:1212
|
1264 |
msgid "Styled table from HTML or CSV file"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: inc/core/class.data.php:1217
|
1268 |
msgid "Permalink"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: inc/core/class.data.php:1223
|
1272 |
msgid "ID"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: inc/core/class.data.php:1224
|
1276 |
msgid "Post or page ID"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: inc/core/class.data.php:1234
|
1280 |
msgid "Link target. blank - link will be opened in new window/tab"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: inc/core/class.data.php:1244
|
1284 |
msgid "Permalink to specified post/page"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: inc/core/class.data.php:1249
|
1288 |
msgid "Members"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: inc/core/class.data.php:1254 inc/core/class.shortcodes.php:699
|
|
|
1292 |
msgid "This content is for registered users only. Please %login%."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: inc/core/class.data.php:1255
|
1296 |
msgid "Message"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: inc/core/class.data.php:1255
|
1300 |
msgid "Message for not logged users"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: inc/core/class.data.php:1260
|
1304 |
msgid "Box color"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: inc/core/class.data.php:1260
|
1308 |
msgid "This color will applied only to box for not logged users"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: inc/core/class.data.php:1263 inc/core/class.shortcodes.php:702
|
|
|
1312 |
msgid "login"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: inc/core/class.data.php:1264
|
1316 |
msgid "Login link text"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: inc/core/class.data.php:1264
|
1320 |
msgid "Text for the login link"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: inc/core/class.data.php:1268
|
1324 |
msgid "Login link url"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: inc/core/class.data.php:1277
|
1328 |
msgid "Content for logged members"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: inc/core/class.data.php:1278
|
1332 |
msgid "Content for logged in members only"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: inc/core/class.data.php:1283
|
1336 |
msgid "Guests"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: inc/core/class.data.php:1294
|
1340 |
msgid "Content for guests"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: inc/core/class.data.php:1295
|
1344 |
msgid "Content for guests only"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: inc/core/class.data.php:1300
|
1348 |
msgid "RSS Feed"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: inc/core/class.data.php:1308
|
1352 |
msgid "Url to RSS-feed"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: inc/core/class.data.php:1313
|
1356 |
msgid "Limit"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: inc/core/class.data.php:1313
|
1360 |
msgid "Number of items to show"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: inc/core/class.data.php:1322
|
1364 |
msgid "Feed grabber"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: inc/core/class.data.php:1327
|
1368 |
msgid "Menu"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: inc/core/class.data.php:1334
|
1372 |
msgid "Menu name"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: inc/core/class.data.php:1334
|
1376 |
msgid "Custom menu name. Ex: Main menu"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: inc/core/class.data.php:1343
|
1380 |
msgid "Custom menu by name"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: inc/core/class.data.php:1348
|
1384 |
msgid "Sub pages"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: inc/core/class.data.php:1355 inc/core/class.data.php:1383
|
|
|
1388 |
msgid "Depth"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: inc/core/class.data.php:1356
|
1392 |
msgid "Max depth level of children pages"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: inc/core/class.data.php:1361
|
1396 |
msgid "Parent ID"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: inc/core/class.data.php:1362
|
1400 |
msgid "ID of the parent page. Leave blank to use current page"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: inc/core/class.data.php:1371
|
1404 |
msgid "List of sub pages"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: inc/core/class.data.php:1376
|
1408 |
msgid "Siblings"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: inc/core/class.data.php:1384
|
1412 |
msgid "Max depth level"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: inc/core/class.data.php:1393
|
1416 |
msgid "List of cureent page siblings"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: inc/core/class.data.php:1398
|
1420 |
msgid "Document"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: inc/core/class.data.php:1406
|
1424 |
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: inc/core/class.data.php:1415
|
1428 |
msgid "Viewer width"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: inc/core/class.data.php:1424
|
1432 |
msgid "Viewer height"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: inc/core/class.data.php:1430
|
1436 |
msgid "Ignore width and height parameters and make viewer responsive"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: inc/core/class.data.php:1439
|
1440 |
msgid "Document viewer by Google"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: inc/core/class.data.php:1444
|
1444 |
msgid "Gmap"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: inc/core/class.data.php:1455
|
1448 |
msgid "Map width"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: inc/core/class.data.php:1464
|
1452 |
msgid "Map height"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: inc/core/class.data.php:1470
|
1456 |
msgid "Ignore width and height parameters and make map responsive"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: inc/core/class.data.php:1475
|
1460 |
msgid "Marker"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: inc/core/class.data.php:1476
|
1464 |
msgid "Address for the marker. You can type it in any language"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: inc/core/class.data.php:1485
|
1468 |
msgid "Maps by Google"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: inc/core/class.data.php:1490
|
1472 |
msgid "Slider"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: inc/core/class.data.php:1497
|
1476 |
msgid "Choose source gallery, that will be used for this slider"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: inc/core/class.data.php:1505
|
1480 |
msgid "Slider width (in pixels)"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: inc/core/class.data.php:1513
|
1484 |
msgid "Slider height (in pixels)"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: inc/core/class.data.php:1519
|
1488 |
msgid "Ignore width and height parameters and make slider responsive"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: inc/core/class.data.php:1524 inc/core/class.data.php:1632
|
1492 |
+
#: inc/core/class.data.php:1723
|
|
|
1493 |
msgid "Show titles"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: inc/core/class.data.php:1524
|
1497 |
msgid "Display slide titles"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: inc/core/class.data.php:1529
|
1501 |
msgid "Is slider centered on the page"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: inc/core/class.data.php:1534 inc/core/class.data.php:1642
|
|
|
1505 |
msgid "Arrows"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: inc/core/class.data.php:1534 inc/core/class.data.php:1642
|
|
|
1509 |
msgid "Show left and right arrows"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: inc/core/class.data.php:1539 inc/core/class.data.php:1647
|
|
|
1513 |
msgid "Pagination"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: inc/core/class.data.php:1540 inc/core/class.data.php:1648
|
|
|
1517 |
msgid "Show pagination"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: inc/core/class.data.php:1544 inc/core/class.data.php:1652
|
|
|
1521 |
msgid "Mouse wheel control"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: inc/core/class.data.php:1545
|
1525 |
msgid "Allow to change slides with mouse wheel"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: inc/core/class.data.php:1554
|
1529 |
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: inc/core/class.data.php:1562 inc/core/class.data.php:1670
|
|
|
1533 |
msgid "Speed"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: inc/core/class.data.php:1562 inc/core/class.data.php:1670
|
|
|
1537 |
msgid "Specify animation speed"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: inc/core/class.data.php:1567 inc/core/class.data.php:1675
|
1541 |
+
#: inc/core/class.data.php:1729
|
|
|
1542 |
msgid "Links target"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: inc/core/class.data.php:1568
|
1546 |
msgid "Open slides links in new window/tab"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: inc/core/class.data.php:1577
|
1550 |
msgid "Customizable image slider"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: inc/core/class.data.php:1582
|
1554 |
msgid "Carousel"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: inc/core/class.data.php:1589
|
1558 |
msgid "Choose source gallery, that will be used for this carousel"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: inc/core/class.data.php:1597
|
1562 |
msgid "Carousel width (in pixels)"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: inc/core/class.data.php:1605
|
1566 |
msgid "Carousel height (in pixels)"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: inc/core/class.data.php:1611
|
1570 |
msgid "Ignore width and height parameters and make carousel responsive"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: inc/core/class.data.php:1618
|
1574 |
msgid "Items to show"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: inc/core/class.data.php:1619
|
1578 |
msgid "How much carousel items is visible"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: inc/core/class.data.php:1626
|
1582 |
msgid "Scroll number"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: inc/core/class.data.php:1627
|
1586 |
msgid "How much items are scrolled in one transition"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: inc/core/class.data.php:1632
|
1590 |
msgid "Display titles for each item"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: inc/core/class.data.php:1637
|
1594 |
msgid "Is carousel centered on the page"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: inc/core/class.data.php:1653
|
1598 |
msgid "Allow to rotate carousel with mouse wheel"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: inc/core/class.data.php:1662
|
1602 |
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: inc/core/class.data.php:1676
|
1606 |
msgid "Open carousel links in new window/tab"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: inc/core/class.data.php:1685
|
1610 |
msgid "Customizable image carousel"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: inc/core/class.data.php:1697
|
1614 |
msgid "Choose source gallery, that will be used for this shortcode"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: inc/core/class.data.php:1705
|
1618 |
msgid "Single item width (in pixels)"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: inc/core/class.data.php:1713
|
1622 |
msgid "Single item height (in pixels)"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: inc/core/class.data.php:1718
|
1626 |
msgid "Never"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: inc/core/class.data.php:1719
|
1630 |
msgid "On mouse over"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: inc/core/class.data.php:1720
|
1634 |
msgid "Always"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: inc/core/class.data.php:1724
|
1638 |
msgid "Title display mode"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: inc/core/class.data.php:1729
|
1642 |
msgid "Open links in new window/tab"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: inc/core/class.data.php:1738
|
1646 |
msgid "Customizable image gallery"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: inc/core/class.data.php:1743
|
1650 |
msgid "Posts"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: inc/core/class.data.php:1748
|
1654 |
msgid "Template"
|
1655 |
msgstr ""
|
1656 |
|
|
|
|
|
|
|
|
|
1657 |
#: inc/core/class.data.php:1749
|
1658 |
+
msgid ""
|
1659 |
+
"<b>Do not change this field value if you do not understand description below."
|
1660 |
+
"</b><br/>Relative path to the template file. Default templates is placed "
|
1661 |
+
"under the plugin directory (templates folder). You can copy it under your "
|
1662 |
+
"theme directory and modify as you want. You can use following default "
|
1663 |
+
"templates that already available in the plugin directory:<br/><b"
|
1664 |
+
"%value>templates/default-loop.php</b> - posts loop<br/><b%value>templates/"
|
1665 |
+
"teaser-loop.php</b> - posts loop with thumbnail and title<br/><b"
|
1666 |
+
"%value>templates/single-post.php</b> - single post template<br/><b"
|
1667 |
+
"%value>templates/list-loop.php</b> - unordered list with posts titles"
|
1668 |
+
msgstr ""
|
1669 |
+
|
1670 |
+
#: inc/core/class.data.php:1753
|
1671 |
msgid "Post ID's"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: inc/core/class.data.php:1754
|
1675 |
msgid "Enter comma separated ID's of the posts that you want to show"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: inc/core/class.data.php:1762
|
1679 |
msgid "Posts per page"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: inc/core/class.data.php:1763
|
1683 |
+
msgid ""
|
1684 |
+
"Specify number of posts that you want to show. Enter -1 to get all posts"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: inc/core/class.data.php:1770
|
1688 |
msgid "Post types"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: inc/core/class.data.php:1771
|
1692 |
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: inc/core/class.data.php:1777
|
1696 |
msgid "Taxonomy"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: inc/core/class.data.php:1778
|
1700 |
msgid "Select taxonomy to show posts from"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: inc/core/class.data.php:1785
|
1704 |
msgid "Terms"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: inc/core/class.data.php:1785
|
1708 |
msgid "Select terms to show posts from"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: inc/core/class.data.php:1790
|
1712 |
msgid "Taxonomy term operator"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: inc/core/class.data.php:1791
|
1716 |
+
msgid ""
|
1717 |
+
"IN - posts that have any of selected categories terms<br/>NOT IN - posts "
|
1718 |
+
"that is does not have any of selected terms<br/>AND - posts that have all "
|
1719 |
+
"selected terms"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: inc/core/class.data.php:1798
|
1723 |
msgid "Authors"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: inc/core/class.data.php:1799
|
1727 |
msgid "Choose the authors whose posts you want to show"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: inc/core/class.data.php:1803
|
1731 |
msgid "Meta key"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: inc/core/class.data.php:1804
|
1735 |
msgid "Enter meta key name to show posts that have this key"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: inc/core/class.data.php:1811
|
1739 |
msgid "Offset"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: inc/core/class.data.php:1812
|
1743 |
msgid "Specify offset to start posts loop not from first post"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
+
#: inc/core/class.data.php:1817
|
1747 |
msgid "Descending"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: inc/core/class.data.php:1818
|
1751 |
msgid "Ascending"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: inc/core/class.data.php:1821
|
1755 |
msgid "Order"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: inc/core/class.data.php:1822
|
1759 |
msgid "Posts order"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: inc/core/class.data.php:1827
|
1763 |
+
msgid "None"
|
1764 |
+
msgstr ""
|
1765 |
+
|
1766 |
+
#: inc/core/class.data.php:1828
|
1767 |
msgid "Post ID"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: inc/core/class.data.php:1829
|
1771 |
msgid "Post author"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: inc/core/class.data.php:1830
|
1775 |
msgid "Post title"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: inc/core/class.data.php:1831
|
1779 |
msgid "Post slug"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: inc/core/class.data.php:1832
|
1783 |
msgid "Date"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: inc/core/class.data.php:1832
|
1787 |
msgid "Last modified date"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: inc/core/class.data.php:1833 inc/core/class.data.php:1843
|
|
|
1791 |
msgid "Post parent"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: inc/core/class.data.php:1834
|
1795 |
msgid "Random"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: inc/core/class.data.php:1834
|
1799 |
msgid "Comments number"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: inc/core/class.data.php:1835
|
1803 |
msgid "Menu order"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: inc/core/class.data.php:1835
|
1807 |
msgid "Meta key values"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: inc/core/class.data.php:1838
|
1811 |
msgid "Order by"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: inc/core/class.data.php:1839
|
1815 |
msgid "Order posts by"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: inc/core/class.data.php:1844
|
1819 |
msgid "Show childrens of entered post (enter post ID)"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: inc/core/class.data.php:1849
|
1823 |
msgid "Published"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: inc/core/class.data.php:1850
|
1827 |
msgid "Pending"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: inc/core/class.data.php:1851
|
1831 |
msgid "Draft"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: inc/core/class.data.php:1852
|
1835 |
msgid "Auto-draft"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: inc/core/class.data.php:1853
|
1839 |
msgid "Future post"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: inc/core/class.data.php:1854
|
1843 |
msgid "Private post"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: inc/core/class.data.php:1855
|
1847 |
msgid "Inherit"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: inc/core/class.data.php:1856
|
1851 |
msgid "Trashed"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: inc/core/class.data.php:1857
|
1855 |
msgid "Any"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: inc/core/class.data.php:1860
|
1859 |
msgid "Post status"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: inc/core/class.data.php:1861
|
1863 |
msgid "Show only posts with selected status"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: inc/core/class.data.php:1866
|
1867 |
msgid "Ignore sticky"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: inc/core/class.data.php:1867
|
1871 |
msgid "Select Yes to ignore posts that is sticked"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: inc/core/class.data.php:1871
|
1875 |
msgid "Custom posts query with customizable template"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: inc/core/class.generator-fields.php:37
|
1879 |
+
msgid "Yes"
|
1880 |
+
msgstr ""
|
1881 |
+
|
1882 |
+
#: inc/core/class.generator-fields.php:37
|
1883 |
+
msgid "No"
|
1884 |
+
msgstr ""
|
1885 |
+
|
1886 |
+
#: inc/core/class.generator-fields.php:42
|
1887 |
+
#: inc/core/class.generator-fields.php:47
|
1888 |
+
msgid "Media manager"
|
1889 |
+
msgstr ""
|
1890 |
+
|
1891 |
+
#: inc/core/class.generator-fields.php:47
|
1892 |
+
msgid "Icon picker"
|
1893 |
+
msgstr ""
|
1894 |
+
|
1895 |
+
#: inc/core/class.generator-fields.php:68 inc/core/class.generator.php:273
|
1896 |
+
msgid "Untitled gallery"
|
1897 |
+
msgstr ""
|
1898 |
+
|
1899 |
+
#: inc/core/class.generator-fields.php:74 inc/core/class.generator.php:279
|
1900 |
+
#: inc/views/galleries.php:62
|
1901 |
+
msgid "Galleries not found"
|
1902 |
+
msgstr ""
|
1903 |
+
|
1904 |
+
#: inc/core/class.generator-fields.php:75
|
1905 |
+
msgid "Manage galleries"
|
1906 |
+
msgstr ""
|
1907 |
+
|
1908 |
+
#: inc/core/class.generator-fields.php:75
|
1909 |
+
msgid "Reload galleries"
|
1910 |
+
msgstr ""
|
1911 |
+
|
1912 |
+
#: inc/core/class.generator-fields.php:86
|
1913 |
+
msgid "Horizontal offset"
|
1914 |
+
msgstr ""
|
1915 |
+
|
1916 |
+
#: inc/core/class.generator-fields.php:86
|
1917 |
+
msgid "Vertical offset"
|
1918 |
+
msgstr ""
|
1919 |
+
|
1920 |
+
#: inc/core/class.generator-fields.php:86
|
1921 |
+
msgid "Blur"
|
1922 |
+
msgstr ""
|
1923 |
+
|
1924 |
+
#: inc/core/class.generator.php:36 inc/core/class.generator.php:140
|
1925 |
msgid "Insert shortcode"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: inc/core/class.generator.php:81 inc/core/class.shortcodes-ultimate.php:115
|
|
|
1929 |
#: inc/vendor/class.sunrise-framework.php:282
|
1930 |
msgid "Settings"
|
1931 |
msgstr ""
|
1970 |
msgid "All shortcodes"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: inc/core/class.generator.php:196
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1974 |
msgid "Click to set this value"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: inc/core/class.generator.php:220
|
1978 |
msgid "Preview"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: inc/core/class.generator.php:288
|
1982 |
msgid "Access denied"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
#: inc/core/class.requirements.php:35
|
1986 |
#, php-format
|
1987 |
+
msgid ""
|
1988 |
+
"<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not "
|
1989 |
+
"fully compatible with your version of WordPress (%s).<br />Reccomended "
|
1990 |
+
"WordPress version – %s (or higher).</p><a href=\"%s\">← Return to "
|
1991 |
+
"the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway →</"
|
1992 |
+
"a>"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
#: inc/core/class.requirements.php:36
|
1996 |
#, php-format
|
1997 |
+
msgid ""
|
1998 |
+
"<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not "
|
1999 |
+
"fully compatible with your PHP version (%s).<br />Reccomended PHP version "
|
2000 |
+
"– %s (or higher).</p><a href=\"%s\">← Return to the plugins "
|
2001 |
+
"screen</a> <a href=\"%s\"%s>Continue and activate anyway →</a>"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: inc/core/class.shortcodes-ultimate.php:25 inc/core/class.widget.php:40
|
|
|
2005 |
#: inc/core/class.widget.php:82
|
2006 |
msgid "Shortcodes Ultimate"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: inc/core/class.shortcodes-ultimate.php:26 inc/core/class.vote.php:37
|
|
|
2010 |
msgid "Vladimir Anokhin"
|
2011 |
msgstr ""
|
2012 |
|
2018 |
msgid "Where to start?"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: inc/core/class.shortcodes-ultimate.php:100 inc/views/about.php:4
|
|
|
2022 |
msgid "Project homepage"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: inc/core/class.shortcodes-ultimate.php:101 inc/views/about.php:10
|
|
|
2026 |
msgid "Support forum"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: inc/core/class.shortcodes-ultimate.php:102 inc/views/about.php:12
|
|
|
2030 |
msgid "Changelog"
|
2031 |
msgstr ""
|
2032 |
|
2039 |
msgstr ""
|
2040 |
|
2041 |
#: inc/core/class.shortcodes-ultimate.php:118
|
2042 |
+
msgid ""
|
2043 |
+
"Disable this option if you have some problems with other plugins or content "
|
2044 |
+
"formatting"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
#: inc/core/class.shortcodes-ultimate.php:118
|
2060 |
msgstr ""
|
2061 |
|
2062 |
#: inc/core/class.shortcodes-ultimate.php:126
|
2063 |
+
msgid ""
|
2064 |
+
"Enable this option if you have some problems with other plugins that uses "
|
2065 |
+
"similar shortcode names"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
#: inc/core/class.shortcodes-ultimate.php:126
|
2074 |
msgstr ""
|
2075 |
|
2076 |
#: inc/core/class.shortcodes-ultimate.php:134
|
2077 |
+
msgid ""
|
2078 |
+
"Enable this option and the generator will insert a shortcode without default "
|
2079 |
+
"attribute values that you have not changed. As a result, the generated code "
|
2080 |
+
"will be shorter."
|
2081 |
msgstr ""
|
2082 |
|
2083 |
#: inc/core/class.shortcodes-ultimate.php:141
|
2086 |
|
2087 |
#: inc/core/class.shortcodes-ultimate.php:142
|
2088 |
#, php-format
|
2089 |
+
msgid ""
|
2090 |
+
"Choose skin for shortcodes.<br /><a href=\"%s\" target=\"_blank\">Learn how "
|
2091 |
+
"to create custom skin</a><br /><a href=\"%s\" target=\"_blank\"><b>Download "
|
2092 |
+
"more skins</b></a>"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
#: inc/core/class.shortcodes-ultimate.php:148
|
2108 |
msgid "Tab title"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: inc/core/class.shortcodes.php:441
|
2112 |
msgid "This is box title"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: inc/core/class.shortcodes.php:553 inc/core/class.shortcodes.php:579
|
2116 |
+
#: inc/core/class.shortcodes.php:606 inc/core/class.shortcodes.php:632
|
2117 |
+
#: inc/core/class.shortcodes.php:658
|
|
|
|
|
2118 |
msgid "please specify correct url"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: inc/core/class.shortcodes.php:789
|
2122 |
msgid "This menu doesn't exists, or has no elements"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: inc/core/class.shortcodes.php:853 inc/core/class.shortcodes.php:931
|
2126 |
+
#: inc/core/class.shortcodes.php:992
|
|
|
2127 |
msgid "images not found"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: inc/core/class.shortcodes.php:1151
|
2131 |
msgid "template not found"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
#: inc/core/class.vote.php:39
|
2135 |
+
msgid ""
|
2136 |
+
"Hello, my name is Vladimir Anokhin, and I am developer of plugin "
|
2137 |
+
"<b>Shortcodes Ultimate</b>.<br>If you like this plugin, please write a few "
|
2138 |
+
"words about it at the wordpress.org or twitter. It will help other people "
|
2139 |
+
"find this useful plugin more quickly.<br><b>Thank you!</b>"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
#: inc/core/class.vote.php:41
|
2195 |
msgid "minute"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: inc/core/tools.php:255 inc/core/tools.php:262
|
|
|
2199 |
msgid "s"
|
2200 |
msgstr ""
|
2201 |
|
2260 |
msgstr ""
|
2261 |
|
2262 |
#: inc/views/about.php:30
|
2263 |
+
msgid ""
|
2264 |
+
"<strong>Shortcode</strong> is a WordPress-specific code that lets you do "
|
2265 |
+
"nifty things with very little effort."
|
2266 |
msgstr ""
|
2267 |
|
2268 |
#: inc/views/about.php:31
|
2269 |
+
msgid ""
|
2270 |
+
"Shortcodes can embed files or create objects that would normally require "
|
2271 |
+
"lots of complicated, ugly code in just one line. Shortcode = shortcut."
|
2272 |
msgstr ""
|
2273 |
|
2274 |
#: inc/views/about.php:35
|
2332 |
msgstr ""
|
2333 |
|
2334 |
#: inc/views/closetab.php:7
|
2335 |
+
msgid ""
|
2336 |
+
"This action will remove all your custom CSS, galleries and settings. Are you "
|
2337 |
+
"sure? This action cannot be undone!"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
#: inc/views/closetab.php:7
|
2366 |
msgstr ""
|
2367 |
|
2368 |
#: inc/views/galleries.php:3
|
2369 |
+
msgid ""
|
2370 |
+
"Are you sure that you want to delete this gallery? This action can't be "
|
2371 |
+
"undone!"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
#: inc/views/galleries.php:3
|
2375 |
+
msgid ""
|
2376 |
+
"Are you sure that you want to delete this image? This action can't be undone!"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
#: inc/views/galleries.php:5
|
2380 |
msgid "Create new gallery"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: inc/views/galleries.php:18 inc/views/galleries.php:70
|
|
|
2384 |
msgid "Enter gallery name"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: inc/views/galleries.php:20 inc/views/galleries.php:72
|
|
|
2388 |
msgid "Edit gallery"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: inc/views/galleries.php:21 inc/views/galleries.php:73
|
|
|
2392 |
msgid "Save & close"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: inc/views/galleries.php:22 inc/views/galleries.php:48
|
2396 |
+
#: inc/views/galleries.php:74 inc/views/galleries.php:100
|
|
|
|
|
2397 |
msgid "Close"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
+
#: inc/views/galleries.php:23 inc/views/galleries.php:39
|
2401 |
+
#: inc/views/galleries.php:75 inc/views/galleries.php:91
|
|
|
|
|
2402 |
msgid "Delete"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: inc/views/galleries.php:27 inc/views/galleries.php:79
|
|
|
2406 |
msgid "Add images"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: inc/views/galleries.php:38 inc/views/galleries.php:90
|
|
|
2410 |
msgid "Edit"
|
2411 |
msgstr ""
|
2412 |
|
2414 |
msgid "Instructions"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: inc/views/notifications.php:13 inc/views/notifications.php:21
|
2418 |
+
#: inc/views/notifications.php:29 inc/views/notifications.php:37
|
|
|
|
|
2419 |
msgid "Click to close"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
#: inc/views/settings.php:12
|
2423 |
+
msgid ""
|
2424 |
+
"For full functionality of this page it is reccomended to enable javascript."
|
2425 |
msgstr ""
|
2426 |
|
2427 |
#: inc/views/settings.php:14
|
2444 |
msgid "Upload"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: templates/default-loop.php:15 templates/single-post.php:18
|
|
|
2448 |
msgid "Posted"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
#: templates/default-loop.php:19 templates/single-post.php:18
|
|
|
2452 |
msgid "0 comments"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: templates/default-loop.php:19 templates/single-post.php:18
|
|
|
2456 |
msgid "1 comment"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: templates/default-loop.php:19 templates/single-post.php:18
|
|
|
2460 |
msgid "%n comments"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
+
#: templates/default-loop.php:27 templates/list-loop.php:18
|
2464 |
+
#: templates/single-post.php:30 templates/teaser-loop.php:22
|
|
|
|
|
2465 |
msgid "Posts not found"
|
2466 |
msgstr ""
|
|
readme.txt
CHANGED
@@ -95,6 +95,11 @@ Upgrade normally via your Wordpress admin -> Plugins panel.
|
|
95 |
|
96 |
== Changelog ==
|
97 |
|
|
|
|
|
|
|
|
|
|
|
98 |
= 4.3 =
|
99 |
* IMPORTANT: removed old list icons. These icons replaced with new font-awesome icons
|
100 |
* New icon picker for [service], [button] and [list]
|
95 |
|
96 |
== Changelog ==
|
97 |
|
98 |
+
= 4.3.2 =
|
99 |
+
* Small fixes
|
100 |
+
* New text-shadow picker for [button]
|
101 |
+
* Anchor navigation for spoilers and tabs - [forum topic](http://wordpress.org/support/topic/hyperlinks-to-spoilers-and-tabs)
|
102 |
+
|
103 |
= 4.3 =
|
104 |
* IMPORTANT: removed old list icons. These icons replaced with new font-awesome icons
|
105 |
* New icon picker for [service], [button] and [list]
|
shortcodes-ultimate.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Shortcodes Ultimate
|
4 |
Plugin URI: http://gndev.info/shortcodes-ultimate/
|
5 |
-
Version: 4.3.
|
6 |
Author: Vladimir Anokhin
|
7 |
Author URI: http://gndev.info/
|
8 |
Description: Supercharge your WordPress theme with mega pack of shortcodes
|
@@ -13,6 +13,8 @@
|
|
13 |
|
14 |
// Define plugin file constant
|
15 |
define( 'SU_PLUGIN_FILE', __FILE__ );
|
|
|
|
|
16 |
|
17 |
// Includes
|
18 |
require_once 'inc/vendor/class.sunrise-framework.php';
|
@@ -25,5 +27,6 @@ require_once 'inc/core/class.data.php';
|
|
25 |
require_once 'inc/core/tools.php';
|
26 |
require_once 'inc/core/class.shortcodes.php';
|
27 |
require_once 'inc/core/class.generator.php';
|
|
|
28 |
require_once 'inc/core/class.widget.php';
|
29 |
require_once 'inc/core/class.vote.php';
|
2 |
/*
|
3 |
Plugin Name: Shortcodes Ultimate
|
4 |
Plugin URI: http://gndev.info/shortcodes-ultimate/
|
5 |
+
Version: 4.3.2
|
6 |
Author: Vladimir Anokhin
|
7 |
Author URI: http://gndev.info/
|
8 |
Description: Supercharge your WordPress theme with mega pack of shortcodes
|
13 |
|
14 |
// Define plugin file constant
|
15 |
define( 'SU_PLUGIN_FILE', __FILE__ );
|
16 |
+
define( 'SU_PLUGIN_VERSION', '4.3.2' );
|
17 |
+
define( 'SU_ENABLE_CACHE', true );
|
18 |
|
19 |
// Includes
|
20 |
require_once 'inc/vendor/class.sunrise-framework.php';
|
27 |
require_once 'inc/core/tools.php';
|
28 |
require_once 'inc/core/class.shortcodes.php';
|
29 |
require_once 'inc/core/class.generator.php';
|
30 |
+
require_once 'inc/core/class.generator-fields.php';
|
31 |
require_once 'inc/core/class.widget.php';
|
32 |
require_once 'inc/core/class.vote.php';
|