Version Description
- Added: New shortcode [scheduler]
- Added: New shortcode [expand]
- Added: New options for [divider]
- Added: New option
relfor [button] - Fixed: animations script has been changed. CSS animations will be skipped in non-supported browsers, forum topic
- Fixed: templates/default-loop.php - removed extra n character in comments number, forum topic
- Fixed: large DB query on sites with many users, forum topic
Download this release
Release Info
| Developer | gn_themes |
| Plugin | |
| Version | 4.9.1 |
| Comparing to | |
| See all releases | |
Code changes from version 4.9.0 to 4.9.1
- assets/css/box-shortcodes.css +56 -2
- assets/css/content-shortcodes.css +9 -8
- assets/css/generator.css +15 -2
- assets/js/other-shortcodes.js +46 -7
- inc/core/counters.php +25 -25
- inc/core/data.php +226 -5
- inc/core/generator.php +3 -0
- inc/core/shortcodes.php +157 -37
- inc/core/tools.php +56 -15
- languages/su-ja.mo +0 -0
- languages/su-ja.po +55 -12
- languages/su-ru_RU.mo +0 -0
- languages/su-ru_RU.po +971 -676
- readme.txt +9 -0
- shortcodes-ultimate.php +2 -2
- templates/default-loop.php +1 -1
assets/css/box-shortcodes.css
CHANGED
|
@@ -452,6 +452,58 @@
|
|
| 452 |
border-style: solid;
|
| 453 |
}
|
| 454 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 455 |
/* Common margin resets for box elements
|
| 456 |
---------------------------------------------------------------*/
|
| 457 |
|
|
@@ -460,11 +512,13 @@
|
|
| 460 |
.su-spoiler-content > *:first-child,
|
| 461 |
.su-service-content > *:first-child,
|
| 462 |
.su-box-content > *:first-child,
|
| 463 |
-
.su-note-inner > *:first-child
|
|
|
|
| 464 |
.su-column-inner > *:last-child,
|
| 465 |
.su-tabs-pane > *:last-child,
|
| 466 |
.su-accordion > *:last-child,
|
| 467 |
.su-spoiler-content > *:last-child,
|
| 468 |
.su-service-content > *:last-child,
|
| 469 |
.su-box-content > *:last-child,
|
| 470 |
-
.su-note-inner > *:last-child
|
|
|
| 452 |
border-style: solid;
|
| 453 |
}
|
| 454 |
|
| 455 |
+
/* Expand
|
| 456 |
+
---------------------------------------------------------------*/
|
| 457 |
+
|
| 458 |
+
.su-expand { margin: 0 0 1.5em 0; }
|
| 459 |
+
.su-expand-content { overflow: hidden; }
|
| 460 |
+
.su-expand-link {
|
| 461 |
+
margin-top: 0.5em;
|
| 462 |
+
cursor: pointer;
|
| 463 |
+
}
|
| 464 |
+
.su-expand-link:hover {
|
| 465 |
+
opacity: 0.7;
|
| 466 |
+
filter: alpha(opacity=70);
|
| 467 |
+
}
|
| 468 |
+
.su-expand-link a,
|
| 469 |
+
.su-expand-link a:hover,
|
| 470 |
+
.su-expand-link a:active,
|
| 471 |
+
.su-expand-link a:visited,
|
| 472 |
+
.su-expand-link a:focus {
|
| 473 |
+
display: inline;
|
| 474 |
+
text-decoration: none;
|
| 475 |
+
background: transparent;
|
| 476 |
+
border: none;
|
| 477 |
+
}
|
| 478 |
+
.su-expand-link-style-default .su-expand-link a,
|
| 479 |
+
.su-expand-link-style-default .su-expand-link a:hover { text-decoration: none; }
|
| 480 |
+
.su-expand-link-style-underlined .su-expand-link span { text-decoration: underline; }
|
| 481 |
+
.su-expand-link-style-dotted .su-expand-link span { border-bottom: 1px dotted #333; }
|
| 482 |
+
.su-expand-link-style-dashed .su-expand-link span { border-bottom: 1px dashed #333; }
|
| 483 |
+
.su-expand-link-style-button .su-expand-link a {
|
| 484 |
+
display: inline-block;
|
| 485 |
+
margin-top: 0.2em;
|
| 486 |
+
padding: 0.2em 0.4em;
|
| 487 |
+
border: 2px solid #333;
|
| 488 |
+
}
|
| 489 |
+
.su-expand-link-more { display: none; }
|
| 490 |
+
.su-expand-link-less { display: block; }
|
| 491 |
+
.su-expand-collapsed .su-expand-link-more { display: block; }
|
| 492 |
+
.su-expand-collapsed .su-expand-link-less { display: none; }
|
| 493 |
+
.su-expand-link i {
|
| 494 |
+
display: inline-block;
|
| 495 |
+
margin: 0 0.3em 0 0;
|
| 496 |
+
vertical-align: middle;
|
| 497 |
+
color: inherit;
|
| 498 |
+
}
|
| 499 |
+
.su-expand-link img {
|
| 500 |
+
display: inline-block;
|
| 501 |
+
width: 1em;
|
| 502 |
+
height: 1em;
|
| 503 |
+
margin: 0 0.3em 0 0;
|
| 504 |
+
vertical-align: middle;
|
| 505 |
+
}
|
| 506 |
+
|
| 507 |
/* Common margin resets for box elements
|
| 508 |
---------------------------------------------------------------*/
|
| 509 |
|
| 512 |
.su-spoiler-content > *:first-child,
|
| 513 |
.su-service-content > *:first-child,
|
| 514 |
.su-box-content > *:first-child,
|
| 515 |
+
.su-note-inner > *:first-child,
|
| 516 |
+
.su-expand-content > *:first-child { margin-top: 0; }
|
| 517 |
.su-column-inner > *:last-child,
|
| 518 |
.su-tabs-pane > *:last-child,
|
| 519 |
.su-accordion > *:last-child,
|
| 520 |
.su-spoiler-content > *:last-child,
|
| 521 |
.su-service-content > *:last-child,
|
| 522 |
.su-box-content > *:last-child,
|
| 523 |
+
.su-note-inner > *:last-child,
|
| 524 |
+
.su-expand-content > *:last-child { margin-bottom: 0; }
|
assets/css/content-shortcodes.css
CHANGED
|
@@ -24,20 +24,21 @@
|
|
| 24 |
|
| 25 |
.su-divider {
|
| 26 |
clear: both;
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
background: #999;
|
| 31 |
}
|
| 32 |
.su-divider a {
|
| 33 |
-
position: absolute;
|
| 34 |
-
right: 0;
|
| 35 |
-
bottom: 5px;
|
| 36 |
display: inline-block;
|
| 37 |
-
color: #777;
|
| 38 |
font-size: 0.8em;
|
| 39 |
text-decoration: none;
|
|
|
|
|
|
|
| 40 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
|
| 42 |
/* Spacer
|
| 43 |
---------------------------------------------------------------*/
|
| 24 |
|
| 25 |
.su-divider {
|
| 26 |
clear: both;
|
| 27 |
+
border: none;
|
| 28 |
+
text-align: right;
|
| 29 |
+
line-height: 1;
|
|
|
|
| 30 |
}
|
| 31 |
.su-divider a {
|
|
|
|
|
|
|
|
|
|
| 32 |
display: inline-block;
|
|
|
|
| 33 |
font-size: 0.8em;
|
| 34 |
text-decoration: none;
|
| 35 |
+
outline: none;
|
| 36 |
+
padding-bottom: 5px;
|
| 37 |
}
|
| 38 |
+
.su-divider-style-default { border-bottom-style: solid; }
|
| 39 |
+
.su-divider-style-dotted { border-bottom-style: dotted; }
|
| 40 |
+
.su-divider-style-dashed { border-bottom-style: dashed; }
|
| 41 |
+
.su-divider-style-double { border-bottom-style: double; }
|
| 42 |
|
| 43 |
/* Spacer
|
| 44 |
---------------------------------------------------------------*/
|
assets/css/generator.css
CHANGED
|
@@ -44,7 +44,7 @@
|
|
| 44 |
#su-generator.su-generator-narrow { max-width: 500px; }
|
| 45 |
|
| 46 |
/* Generator tools */
|
| 47 |
-
#su-generator-tools { margin
|
| 48 |
#su-generator-tools span {
|
| 49 |
display: inline-block;
|
| 50 |
width: 1px;
|
|
@@ -53,6 +53,16 @@
|
|
| 53 |
border-right: 1px dotted #555;
|
| 54 |
vertical-align: middle;
|
| 55 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
|
| 57 |
/* Search box */
|
| 58 |
#su-generator-search {
|
|
@@ -134,7 +144,10 @@
|
|
| 134 |
line-height: 26px;
|
| 135 |
}
|
| 136 |
#su-generator-choices span:hover i { color: #fff; }
|
| 137 |
-
.su-generator-choice-first {
|
|
|
|
|
|
|
|
|
|
| 138 |
|
| 139 |
/* Breadcrumbs */
|
| 140 |
#su-generator-breadcrumbs {
|
| 44 |
#su-generator.su-generator-narrow { max-width: 500px; }
|
| 45 |
|
| 46 |
/* Generator tools */
|
| 47 |
+
#su-generator-tools { margin: 0 20px 20px 0; }
|
| 48 |
#su-generator-tools span {
|
| 49 |
display: inline-block;
|
| 50 |
width: 1px;
|
| 53 |
border-right: 1px dotted #555;
|
| 54 |
vertical-align: middle;
|
| 55 |
}
|
| 56 |
+
#su-generator-tools a.su-add-ons {
|
| 57 |
+
display: inline-block;
|
| 58 |
+
padding: 2px 7px;
|
| 59 |
+
background: #FF7654;
|
| 60 |
+
color: #fff;
|
| 61 |
+
text-decoration: none;
|
| 62 |
+
border: 1px solid #ff4d21;
|
| 63 |
+
border-radius: 3px;
|
| 64 |
+
}
|
| 65 |
+
#su-generator-tools a.su-add-ons:hover { background: #ff4d21; }
|
| 66 |
|
| 67 |
/* Search box */
|
| 68 |
#su-generator-search {
|
| 144 |
line-height: 26px;
|
| 145 |
}
|
| 146 |
#su-generator-choices span:hover i { color: #fff; }
|
| 147 |
+
.su-generator-choice-first {
|
| 148 |
+
outline: 1px solid #09f;
|
| 149 |
+
box-shadow: 0 0 3px rgba(30,140,190,.8);
|
| 150 |
+
}
|
| 151 |
|
| 152 |
/* Breadcrumbs */
|
| 153 |
#su-generator-breadcrumbs {
|
assets/js/other-shortcodes.js
CHANGED
|
@@ -135,16 +135,55 @@ jQuery(document).ready(function ($) {
|
|
| 135 |
$tt.qtip(config);
|
| 136 |
});
|
| 137 |
|
| 138 |
-
//
|
| 139 |
-
$('.su-
|
| 140 |
-
$
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
|
| 144 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 145 |
});
|
| 146 |
});
|
| 147 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 148 |
function tabs_height() {
|
| 149 |
$('.su-tabs-vertical').each(function () {
|
| 150 |
var $tabs = $(this),
|
| 135 |
$tt.qtip(config);
|
| 136 |
});
|
| 137 |
|
| 138 |
+
// Expand
|
| 139 |
+
$('.su-expand').each(function () {
|
| 140 |
+
var $this = $(this),
|
| 141 |
+
$content = $this.children('.su-expand-content'),
|
| 142 |
+
$more = $this.children('.su-expand-link-more'),
|
| 143 |
+
$less = $this.children('.su-expand-link-less'),
|
| 144 |
+
data = $this.data(),
|
| 145 |
+
col = 'su-expand-collapsed';
|
| 146 |
+
|
| 147 |
+
$more.on('click', function (e) {
|
| 148 |
+
$content.css('max-height', 'none');
|
| 149 |
+
$this.removeClass(col);
|
| 150 |
+
});
|
| 151 |
+
$less.on('click', function (e) {
|
| 152 |
+
$content.css('max-height', data.height + 'px');
|
| 153 |
+
$this.addClass(col);
|
| 154 |
});
|
| 155 |
});
|
| 156 |
|
| 157 |
+
// jQuery.support.transition
|
| 158 |
+
// to verify that CSS3 transition is supported (or any of its browser-specific implementations)
|
| 159 |
+
$.support.transition = (function () {
|
| 160 |
+
var thisBody = document.body || document.documentElement,
|
| 161 |
+
thisStyle = thisBody.style,
|
| 162 |
+
support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined;
|
| 163 |
+
|
| 164 |
+
return support;
|
| 165 |
+
})();
|
| 166 |
+
|
| 167 |
+
// Animations is supported
|
| 168 |
+
if ($.support.transition) {
|
| 169 |
+
// Animate
|
| 170 |
+
$('.su-animate').each(function () {
|
| 171 |
+
$(this).one('inview', function (e) {
|
| 172 |
+
var $this = $(this),
|
| 173 |
+
data = $this.data();
|
| 174 |
+
window.setTimeout(function () {
|
| 175 |
+
$this.addClass(data.animation);
|
| 176 |
+
$this.addClass('animated');
|
| 177 |
+
$this.css('visibility', 'visible');
|
| 178 |
+
}, data.delay * 1000);
|
| 179 |
+
});
|
| 180 |
+
});
|
| 181 |
+
}
|
| 182 |
+
// Animations isn't supported
|
| 183 |
+
else {
|
| 184 |
+
$('.su-animate').css('visibility', 'visible');
|
| 185 |
+
}
|
| 186 |
+
|
| 187 |
function tabs_height() {
|
| 188 |
$('.su-tabs-vertical').each(function () {
|
| 189 |
var $tabs = $(this),
|
inc/core/counters.php
CHANGED
|
@@ -1,29 +1,29 @@
|
|
| 1 |
<?php
|
| 2 |
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
|
| 28 |
// new Su_Counter_Extra_Addon;
|
| 29 |
|
|
@@ -52,4 +52,4 @@ class Su_Counter_Bundle {
|
|
| 52 |
}
|
| 53 |
}
|
| 54 |
|
| 55 |
-
new Su_Counter_Bundle;
|
| 1 |
<?php
|
| 2 |
|
| 3 |
+
class Su_Counter_Extra_Addon {
|
| 4 |
+
|
| 5 |
+
static $option = 'su_counter_extra_addon';
|
| 6 |
+
|
| 7 |
+
function __construct() {
|
| 8 |
+
add_filter( 'su/menu/shortcodes', array( __CLASS__, 'display' ) );
|
| 9 |
+
add_filter( 'su/menu/addons', array( __CLASS__, 'display' ) );
|
| 10 |
+
add_action( 'sunrise/page/before', array( __CLASS__, 'disable' ) );
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
public static function display( $title ) {
|
| 14 |
+
if ( get_option( self::$option ) ) return $title;
|
| 15 |
+
return sprintf(
|
| 16 |
+
'%s <span class="update-plugins count-1" title="%s"><span class="update-count">%s</span></span>',
|
| 17 |
+
$title,
|
| 18 |
+
__( '1 new add-on for Shortcodes Ultimate', 'su' ),
|
| 19 |
+
'1'
|
| 20 |
+
);
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
public static function disable() {
|
| 24 |
+
if ( $_GET['page'] === 'shortcodes-ultimate-addons' ) update_option( self::$option, true );
|
| 25 |
+
}
|
| 26 |
+
}
|
| 27 |
|
| 28 |
// new Su_Counter_Extra_Addon;
|
| 29 |
|
| 52 |
}
|
| 53 |
}
|
| 54 |
|
| 55 |
+
// new Su_Counter_Bundle;
|
inc/core/data.php
CHANGED
|
@@ -249,6 +249,7 @@ class Su_Data {
|
|
| 249 |
),
|
| 250 |
'content' => __( 'Tab content', 'su' ),
|
| 251 |
'desc' => __( 'Single tab', 'su' ),
|
|
|
|
| 252 |
'example' => 'tabs',
|
| 253 |
'icon' => 'list-alt'
|
| 254 |
),
|
|
@@ -352,6 +353,50 @@ class Su_Data {
|
|
| 352 |
'default' => __( 'Go to top', 'su' ),
|
| 353 |
'name' => __( 'Link text', 'su' ), 'desc' => __( 'Text for the GO TOP link', 'su' )
|
| 354 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 355 |
'class' => array(
|
| 356 |
'default' => '',
|
| 357 |
'name' => __( 'Class', 'su' ),
|
|
@@ -768,6 +813,11 @@ class Su_Data {
|
|
| 768 |
'name' => __( 'onClick', 'su' ),
|
| 769 |
'desc' => __( 'Advanced JavaScript code for onClick action', 'su' )
|
| 770 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 771 |
'class' => array(
|
| 772 |
'default' => '',
|
| 773 |
'name' => __( 'Class', 'su' ),
|
|
@@ -915,6 +965,97 @@ class Su_Data {
|
|
| 915 |
'desc' => __( 'Colored box', 'su' ),
|
| 916 |
'icon' => 'list-alt'
|
| 917 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 918 |
// lightbox
|
| 919 |
'lightbox' => array(
|
| 920 |
'name' => __( 'Lightbox', 'su' ),
|
|
@@ -2226,13 +2367,18 @@ class Su_Data {
|
|
| 2226 |
'default' => 'IN', 'name' => __( 'Taxonomy term operator', 'su' ),
|
| 2227 |
'desc' => __( 'IN - posts that have any of selected categories terms<br/>NOT IN - posts that is does not have any of selected terms<br/>AND - posts that have all selected terms', 'su' )
|
| 2228 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2229 |
'author' => array(
|
| 2230 |
-
'
|
| 2231 |
-
'multiple' => true,
|
| 2232 |
-
'values' => Su_Tools::get_users(),
|
| 2233 |
-
'default' => 'default',
|
| 2234 |
'name' => __( 'Authors', 'su' ),
|
| 2235 |
-
'desc' => __( '
|
| 2236 |
),
|
| 2237 |
'meta_key' => array(
|
| 2238 |
'default' => '',
|
|
@@ -2605,6 +2751,39 @@ class Su_Data {
|
|
| 2605 |
'desc' => __( 'Post data', 'su' ),
|
| 2606 |
'icon' => 'info-circle'
|
| 2607 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2608 |
// template
|
| 2609 |
'template' => array(
|
| 2610 |
'name' => __( 'Template', 'su' ),
|
|
@@ -2702,6 +2881,48 @@ class Su_Data {
|
|
| 2702 |
'desc' => __( 'Advanced QR code generator', 'su' ),
|
| 2703 |
'icon' => 'qrcode'
|
| 2704 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2705 |
) );
|
| 2706 |
// Return result
|
| 2707 |
return ( is_string( $shortcode ) ) ? $shortcodes[sanitize_text_field( $shortcode )] : $shortcodes;
|
| 249 |
),
|
| 250 |
'content' => __( 'Tab content', 'su' ),
|
| 251 |
'desc' => __( 'Single tab', 'su' ),
|
| 252 |
+
'note' => __( 'Did you know that you need to wrap single tabs with [tabs] shortcode?', 'su' ),
|
| 253 |
'example' => 'tabs',
|
| 254 |
'icon' => 'list-alt'
|
| 255 |
),
|
| 353 |
'default' => __( 'Go to top', 'su' ),
|
| 354 |
'name' => __( 'Link text', 'su' ), 'desc' => __( 'Text for the GO TOP link', 'su' )
|
| 355 |
),
|
| 356 |
+
'style' => array(
|
| 357 |
+
'type' => 'select',
|
| 358 |
+
'values' => array(
|
| 359 |
+
'default' => __( 'Default', 'su' ),
|
| 360 |
+
'dotted' => __( 'Dotted', 'su' ),
|
| 361 |
+
'dashed' => __( 'Dashed', 'su' ),
|
| 362 |
+
'double' => __( 'Double', 'su' )
|
| 363 |
+
),
|
| 364 |
+
'default' => 'default',
|
| 365 |
+
'name' => __( 'Style', 'su' ),
|
| 366 |
+
'desc' => __( 'Choose style for this divider', 'su' )
|
| 367 |
+
),
|
| 368 |
+
'divider_color' => array(
|
| 369 |
+
'type' => 'color',
|
| 370 |
+
'values' => array( ),
|
| 371 |
+
'default' => '#999999',
|
| 372 |
+
'name' => __( 'Divider color', 'su' ),
|
| 373 |
+
'desc' => __( 'Pick the color for divider', 'su' )
|
| 374 |
+
),
|
| 375 |
+
'link_color' => array(
|
| 376 |
+
'type' => 'color',
|
| 377 |
+
'values' => array( ),
|
| 378 |
+
'default' => '#999999',
|
| 379 |
+
'name' => __( 'Link color', 'su' ),
|
| 380 |
+
'desc' => __( 'Pick the color for TOP link', 'su' )
|
| 381 |
+
),
|
| 382 |
+
'size' => array(
|
| 383 |
+
'type' => 'slider',
|
| 384 |
+
'min' => 0,
|
| 385 |
+
'max' => 40,
|
| 386 |
+
'step' => 1,
|
| 387 |
+
'default' => 3,
|
| 388 |
+
'name' => __( 'Size', 'su' ),
|
| 389 |
+
'desc' => __( 'Height of the divider (in pixels)', 'su' )
|
| 390 |
+
),
|
| 391 |
+
'margin' => array(
|
| 392 |
+
'type' => 'slider',
|
| 393 |
+
'min' => 0,
|
| 394 |
+
'max' => 200,
|
| 395 |
+
'step' => 5,
|
| 396 |
+
'default' => 15,
|
| 397 |
+
'name' => __( 'Margin', 'su' ),
|
| 398 |
+
'desc' => __( 'Adjust the top and bottom margins of this divider (in pixels)', 'su' )
|
| 399 |
+
),
|
| 400 |
'class' => array(
|
| 401 |
'default' => '',
|
| 402 |
'name' => __( 'Class', 'su' ),
|
| 813 |
'name' => __( 'onClick', 'su' ),
|
| 814 |
'desc' => __( 'Advanced JavaScript code for onClick action', 'su' )
|
| 815 |
),
|
| 816 |
+
'rel' => array(
|
| 817 |
+
'default' => '',
|
| 818 |
+
'name' => __( 'Rel attribute', 'su' ),
|
| 819 |
+
'desc' => __( 'Here you can add value for the rel attribute.<br>Example values: <b%value>nofollow</b>, <b%value>lightbox</b>', 'su' )
|
| 820 |
+
),
|
| 821 |
'class' => array(
|
| 822 |
'default' => '',
|
| 823 |
'name' => __( 'Class', 'su' ),
|
| 965 |
'desc' => __( 'Colored box', 'su' ),
|
| 966 |
'icon' => 'list-alt'
|
| 967 |
),
|
| 968 |
+
// expand
|
| 969 |
+
'expand' => array(
|
| 970 |
+
'name' => __( 'Expand', 'su' ),
|
| 971 |
+
'type' => 'wrap',
|
| 972 |
+
'group' => 'box',
|
| 973 |
+
'atts' => array(
|
| 974 |
+
'more_text' => array(
|
| 975 |
+
'default' => __( 'Show more', 'su' ),
|
| 976 |
+
'name' => __( 'More text', 'su' ),
|
| 977 |
+
'desc' => __( 'Enter the text for more link', 'su' )
|
| 978 |
+
),
|
| 979 |
+
'less_text' => array(
|
| 980 |
+
'default' => __( 'Show less', 'su' ),
|
| 981 |
+
'name' => __( 'Less text', 'su' ),
|
| 982 |
+
'desc' => __( 'Enter the text for less link', 'su' )
|
| 983 |
+
),
|
| 984 |
+
'height' => array(
|
| 985 |
+
'type' => 'slider',
|
| 986 |
+
'min' => 0,
|
| 987 |
+
'max' => 1000,
|
| 988 |
+
'step' => 10,
|
| 989 |
+
'default' => 100,
|
| 990 |
+
'name' => __( 'Height', 'su' ),
|
| 991 |
+
'desc' => __( 'Height for collapsed state (in pixels)', 'su' )
|
| 992 |
+
),
|
| 993 |
+
'hide_less' => array(
|
| 994 |
+
'type' => 'bool',
|
| 995 |
+
'default' => 'no',
|
| 996 |
+
'name' => __( 'Hide less link', 'su' ),
|
| 997 |
+
'desc' => __( 'This option allows you to hide less link, when the text block has been expanded', 'su' )
|
| 998 |
+
),
|
| 999 |
+
'text_color' => array(
|
| 1000 |
+
'type' => 'color',
|
| 1001 |
+
'values' => array( ),
|
| 1002 |
+
'default' => '#333333',
|
| 1003 |
+
'name' => __( 'Text color', 'su' ),
|
| 1004 |
+
'desc' => __( 'Pick the text color', 'su' )
|
| 1005 |
+
),
|
| 1006 |
+
'link_color' => array(
|
| 1007 |
+
'type' => 'color',
|
| 1008 |
+
'values' => array( ),
|
| 1009 |
+
'default' => '#0088FF',
|
| 1010 |
+
'name' => __( 'Link color', 'su' ),
|
| 1011 |
+
'desc' => __( 'Pick the link color', 'su' )
|
| 1012 |
+
),
|
| 1013 |
+
'link_style' => array(
|
| 1014 |
+
'type' => 'select',
|
| 1015 |
+
'values' => array(
|
| 1016 |
+
'default' => __( 'Default', 'su' ),
|
| 1017 |
+
'underlined' => __( 'Underlined', 'su' ),
|
| 1018 |
+
'dotted' => __( 'Dotted', 'su' ),
|
| 1019 |
+
'dashed' => __( 'Dashed', 'su' ),
|
| 1020 |
+
'button' => __( 'Button', 'su' ),
|
| 1021 |
+
),
|
| 1022 |
+
'default' => 'default',
|
| 1023 |
+
'name' => __( 'Link style', 'su' ),
|
| 1024 |
+
'desc' => __( 'Select the style for more/less link', 'su' )
|
| 1025 |
+
),
|
| 1026 |
+
'link_align' => array(
|
| 1027 |
+
'type' => 'select',
|
| 1028 |
+
'values' => array(
|
| 1029 |
+
'left' => __( 'Left', 'su' ),
|
| 1030 |
+
'center' => __( 'Center', 'su' ),
|
| 1031 |
+
'right' => __( 'Right', 'su' ),
|
| 1032 |
+
),
|
| 1033 |
+
'default' => 'left',
|
| 1034 |
+
'name' => __( 'Link align', 'su' ),
|
| 1035 |
+
'desc' => __( 'Select link alignment', 'su' )
|
| 1036 |
+
),
|
| 1037 |
+
'more_icon' => array(
|
| 1038 |
+
'type' => 'icon',
|
| 1039 |
+
'default' => '',
|
| 1040 |
+
'name' => __( 'More icon', 'su' ),
|
| 1041 |
+
'desc' => __( 'Add an icon to the more link', 'su' )
|
| 1042 |
+
),
|
| 1043 |
+
'less_icon' => array(
|
| 1044 |
+
'type' => 'icon',
|
| 1045 |
+
'default' => '',
|
| 1046 |
+
'name' => __( 'Less icon', 'su' ),
|
| 1047 |
+
'desc' => __( 'Add an icon to the less link', 'su' )
|
| 1048 |
+
),
|
| 1049 |
+
'class' => array(
|
| 1050 |
+
'default' => '',
|
| 1051 |
+
'name' => __( 'Class', 'su' ),
|
| 1052 |
+
'desc' => __( 'Extra CSS class', 'su' )
|
| 1053 |
+
)
|
| 1054 |
+
),
|
| 1055 |
+
'content' => __( 'This text block can be expanded', 'su' ),
|
| 1056 |
+
'desc' => __( 'Expandable text block', 'su' ),
|
| 1057 |
+
'icon' => 'sort-amount-asc'
|
| 1058 |
+
),
|
| 1059 |
// lightbox
|
| 1060 |
'lightbox' => array(
|
| 1061 |
'name' => __( 'Lightbox', 'su' ),
|
| 2367 |
'default' => 'IN', 'name' => __( 'Taxonomy term operator', 'su' ),
|
| 2368 |
'desc' => __( 'IN - posts that have any of selected categories terms<br/>NOT IN - posts that is does not have any of selected terms<br/>AND - posts that have all selected terms', 'su' )
|
| 2369 |
),
|
| 2370 |
+
// 'author' => array(
|
| 2371 |
+
// 'type' => 'select',
|
| 2372 |
+
// 'multiple' => true,
|
| 2373 |
+
// 'values' => Su_Tools::get_users(),
|
| 2374 |
+
// 'default' => 'default',
|
| 2375 |
+
// 'name' => __( 'Authors', 'su' ),
|
| 2376 |
+
// 'desc' => __( 'Choose the authors whose posts you want to show. Enter here comma-separated list of users (IDs). Example: 1,7,18', 'su' )
|
| 2377 |
+
// ),
|
| 2378 |
'author' => array(
|
| 2379 |
+
'default' => '',
|
|
|
|
|
|
|
|
|
|
| 2380 |
'name' => __( 'Authors', 'su' ),
|
| 2381 |
+
'desc' => __( 'Enter here comma-separated list of author\'s IDs. Example: 1,7,18', 'su' )
|
| 2382 |
),
|
| 2383 |
'meta_key' => array(
|
| 2384 |
'default' => '',
|
| 2751 |
'desc' => __( 'Post data', 'su' ),
|
| 2752 |
'icon' => 'info-circle'
|
| 2753 |
),
|
| 2754 |
+
// post_terms
|
| 2755 |
+
// 'post_terms' => array(
|
| 2756 |
+
// 'name' => __( 'Post terms', 'su' ),
|
| 2757 |
+
// 'type' => 'single',
|
| 2758 |
+
// 'group' => 'data',
|
| 2759 |
+
// 'atts' => array(
|
| 2760 |
+
// 'post_id' => array(
|
| 2761 |
+
// 'default' => '',
|
| 2762 |
+
// 'name' => __( 'Post ID', 'su' ),
|
| 2763 |
+
// 'desc' => __( 'You can specify custom post ID. Leave this field empty to use an ID of the current post. Current post ID may not work in Live Preview mode', 'su' )
|
| 2764 |
+
// ),
|
| 2765 |
+
// 'links' => array(
|
| 2766 |
+
// 'type' => 'bool',
|
| 2767 |
+
// 'default' => 'yes',
|
| 2768 |
+
// 'name' => __( 'Show links', 'su' ),
|
| 2769 |
+
// 'desc' => __( 'Show terms names as hyperlinks', 'su' )
|
| 2770 |
+
// ),
|
| 2771 |
+
// 'format' => array(
|
| 2772 |
+
// 'type' => 'select',
|
| 2773 |
+
// 'values' => array(
|
| 2774 |
+
// 'text' => __( 'Terms separated by commas', 'su' ),
|
| 2775 |
+
// 'br' => __( 'Terms separated by new lines', 'su' ),
|
| 2776 |
+
// 'ul' => __( 'Unordered list', 'su' ),
|
| 2777 |
+
// 'ol' => __( 'Ordered list', 'su' ),
|
| 2778 |
+
// ),
|
| 2779 |
+
// 'default' => 'text',
|
| 2780 |
+
// 'name' => __( 'Format', 'su' ),
|
| 2781 |
+
// 'desc' => __( 'Choose how to output the terms', 'su' )
|
| 2782 |
+
// ),
|
| 2783 |
+
// ),
|
| 2784 |
+
// 'desc' => __( 'Terms list', 'su' ),
|
| 2785 |
+
// 'icon' => 'info-circle'
|
| 2786 |
+
// ),
|
| 2787 |
// template
|
| 2788 |
'template' => array(
|
| 2789 |
'name' => __( 'Template', 'su' ),
|
| 2881 |
'desc' => __( 'Advanced QR code generator', 'su' ),
|
| 2882 |
'icon' => 'qrcode'
|
| 2883 |
),
|
| 2884 |
+
// scheduler
|
| 2885 |
+
'scheduler' => array(
|
| 2886 |
+
'name' => __( 'Scheduler', 'su' ),
|
| 2887 |
+
'type' => 'wrap',
|
| 2888 |
+
'group' => 'other',
|
| 2889 |
+
'atts' => array(
|
| 2890 |
+
'time' => array(
|
| 2891 |
+
'default' => '',
|
| 2892 |
+
'name' => __( 'Time', 'su' ),
|
| 2893 |
+
'desc' => sprintf( __( 'In this field you can specify one or more time ranges. Every day at this time the content of shortcode will be visible. %s %s %s - show content from 9:00 to 18:00 %s - show content from 9:00 to 13:00 and from 14:00 to 18:00 %s - example with minutes (content will be visible each day, 45 minutes) %s - example with seconds', 'su' ), '<br><br>', __( 'Examples (click to set)', 'su' ), '<br><b%value>9-18</b>', '<br><b%value>9-13, 14-18</b>', '<br><b%value>9:30-10:15</b>', '<br><b%value>9:00:00-17:59:59</b>' )
|
| 2894 |
+
),
|
| 2895 |
+
'days_week' => array(
|
| 2896 |
+
'default' => '',
|
| 2897 |
+
'name' => __( 'Days of the week', 'su' ),
|
| 2898 |
+
'desc' => sprintf( __( 'In this field you can specify one or more days of the week. Every week at these days the content of shortcode will be visible. %s 0 - Sunday %s 1 - Monday %s 2 - Tuesday %s 3 - Wednesday %s 4 - Thursday %s 5 - Friday %s 6 - Saturday %s %s %s - show content from Monday to Friday %s - show content only at Sunday %s - show content at Sunday and from Wednesday to Friday', 'su' ), '<br><br>', '<br>', '<br>', '<br>', '<br>', '<br>', '<br>', '<br><br>', __( 'Examples (click to set)', 'su' ), '<br><b%value>1-5</b>', '<br><b%value>0</b>', '<br><b%value>0, 3-5</b>' )
|
| 2899 |
+
),
|
| 2900 |
+
'days_month' => array(
|
| 2901 |
+
'default' => '',
|
| 2902 |
+
'name' => __( 'Days of the month', 'su' ),
|
| 2903 |
+
'desc' => sprintf( __( 'In this field you can specify one or more days of the month. Every month at these days the content of shortcode will be visible. %s %s %s - show content only at first day of month %s - show content from 1th to 5th %s - show content from 10th to 15th and from 20th to 25th', 'su' ), '<br><br>', __( 'Examples (click to set)', 'su' ), '<br><b%value>1</b>', '<br><b%value>1-5</b>', '<br><b%value>10-15, 20-25</b>' )
|
| 2904 |
+
),
|
| 2905 |
+
'months' => array(
|
| 2906 |
+
'default' => '',
|
| 2907 |
+
'name' => __( 'Months', 'su' ),
|
| 2908 |
+
'desc' => sprintf( __( 'In this field you can specify the month or months in which the content will be visible. %s %s %s - show content only in January %s - show content from February to June %s - show content in January, March and from May to July', 'su' ), '<br><br>', __( 'Examples (click to set)', 'su' ), '<br><b%value>1</b>', '<br><b%value>2-6</b>', '<br><b%value>1, 3, 5-7</b>' )
|
| 2909 |
+
),
|
| 2910 |
+
'years' => array(
|
| 2911 |
+
'default' => '',
|
| 2912 |
+
'name' => __( 'Years', 'su' ),
|
| 2913 |
+
'desc' => sprintf( __( 'In this field you can specify the year or years in which the content will be visible. %s %s %s - show content only in 2014 %s - show content from 2014 to 2016 %s - show content in 2014, 2018 and from 2020 to 2022', 'su' ), '<br><br>', __( 'Examples (click to set)', 'su' ), '<br><b%value>2014</b>', '<br><b%value>2014-2016</b>', '<br><b%value>2014, 2018, 2020-2022</b>' )
|
| 2914 |
+
),
|
| 2915 |
+
'alt' => array(
|
| 2916 |
+
'default' => '',
|
| 2917 |
+
'name' => __( 'Alternative text', 'su' ),
|
| 2918 |
+
'desc' => __( 'In this field you can type the text which will be shown if content is not visible at the current moment', 'su' )
|
| 2919 |
+
)
|
| 2920 |
+
),
|
| 2921 |
+
'content' => __( 'Scheduled content', 'su' ),
|
| 2922 |
+
'desc' => __( 'Allows to show the content only at the specified time period', 'su' ),
|
| 2923 |
+
'note' => __( 'This shortcode allows you to show content only at the specified time.', 'su' ) . '<br><br>' . __( 'Please pay special attention to the descriptions, which are located below each text field. It will save you a lot of time', 'su' ) . '<br><br>' . __( 'By default, the content of this shortcode will be visible all the time. By using fields below, you can add some limitations. For example, if you type 1-5 in the Days of the week field, content will be only shown from Monday to Friday. Using the same principles, you can limit content visibility from years to seconds.', 'su' ),
|
| 2924 |
+
'icon' => 'clock-o'
|
| 2925 |
+
),
|
| 2926 |
) );
|
| 2927 |
// Return result
|
| 2928 |
return ( is_string( $shortcode ) ) ? $shortcodes[sanitize_text_field( $shortcode )] : $shortcodes;
|
inc/core/generator.php
CHANGED
|
@@ -87,6 +87,9 @@ class Su_Generator {
|
|
| 87 |
'<a href="http://gndev.info/shortcodes-ultimate/" target="_blank" title="' . __( 'Plugin homepage', 'su' ) . '">' . __( 'Plugin homepage', 'su' ) . '</a>',
|
| 88 |
'<a href="http://wordpress.org/support/plugin/shortcodes-ultimate/" target="_blank" title="' . __( 'Support forums', 'su' ) . '">' . __( 'Support forums', 'su' ) . '</a>'
|
| 89 |
) );
|
|
|
|
|
|
|
|
|
|
| 90 |
?>
|
| 91 |
<div id="su-generator-wrap" style="display:none">
|
| 92 |
<div id="su-generator">
|
| 87 |
'<a href="http://gndev.info/shortcodes-ultimate/" target="_blank" title="' . __( 'Plugin homepage', 'su' ) . '">' . __( 'Plugin homepage', 'su' ) . '</a>',
|
| 88 |
'<a href="http://wordpress.org/support/plugin/shortcodes-ultimate/" target="_blank" title="' . __( 'Support forums', 'su' ) . '">' . __( 'Support forums', 'su' ) . '</a>'
|
| 89 |
) );
|
| 90 |
+
|
| 91 |
+
// Add add-ons links
|
| 92 |
+
if ( !defined( 'SUE_PLUGIN_FILE' ) || !defined( 'SUS_PLUGIN_FILE' ) || !defined( 'SUM_PLUGIN_FILE' ) ) $tools[] = '<a href="' . admin_url( 'admin.php?page=shortcodes-ultimate-addons' ) . '" target="_blank" title="' . __( 'Add-ons', 'su' ) . '" class="su-add-ons">' . __( 'Add-ons', 'su' ) . '</a>';
|
| 93 |
?>
|
| 94 |
<div id="su-generator-wrap" style="display:none">
|
| 95 |
<div id="su-generator">
|
inc/core/shortcodes.php
CHANGED
|
@@ -95,13 +95,19 @@ class Su_Shortcodes {
|
|
| 95 |
|
| 96 |
public static function divider( $atts = null, $content = null ) {
|
| 97 |
$atts = shortcode_atts( array(
|
| 98 |
-
'top'
|
| 99 |
-
'text'
|
| 100 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
), $atts, 'divider' );
|
| 102 |
-
|
|
|
|
| 103 |
su_query_asset( 'css', 'su-content-shortcodes' );
|
| 104 |
-
return '<div class="su-divider' . su_ecssc( $atts ) . '">' . $top . '</div>';
|
| 105 |
}
|
| 106 |
|
| 107 |
public static function spacer( $atts = null, $content = null ) {
|
|
@@ -304,6 +310,7 @@ class Su_Shortcodes {
|
|
| 304 |
'text_shadow' => 'none',
|
| 305 |
'desc' => '',
|
| 306 |
'onclick' => '',
|
|
|
|
| 307 |
'class' => ''
|
| 308 |
), $atts, 'button' );
|
| 309 |
|
|
@@ -421,8 +428,10 @@ class Su_Shortcodes {
|
|
| 421 |
else $content = $icon . ' ' . $content;
|
| 422 |
// Prepare onclick action
|
| 423 |
$atts['onclick'] = ( $atts['onclick'] ) ? ' onClick="' . $atts['onclick'] . '"' : '';
|
|
|
|
|
|
|
| 424 |
su_query_asset( 'css', 'su-content-shortcodes' );
|
| 425 |
-
return $before . '<a href="' . su_scattr( $atts['url'] ) . '" class="' . implode( $classes, ' ' ) . '" style="' . implode( $a_css, ';' ) . '" target="_' . $atts['target'] . '"' . $atts['onclick'] . '><span style="' . implode( $span_css, ';' ) . '">' . do_shortcode( $content ) . $desc . '</span></a>' . $after;
|
| 426 |
}
|
| 427 |
|
| 428 |
public static function service( $atts = null, $content = null ) {
|
|
@@ -483,13 +492,38 @@ class Su_Shortcodes {
|
|
| 483 |
return '<div class="su-note' . su_ecssc( $atts ) . '" style="border-color:' . su_hex_shift( $atts['note_color'], 'darker', 10 ) . ';' . $radius . '"><div class="su-note-inner su-clearfix" style="background-color:' . $atts['note_color'] . ';border-color:' . su_hex_shift( $atts['note_color'], 'lighter', 80 ) . ';color:' . $atts['text_color'] . ';' . $radius . '">' . su_do_shortcode( $content, 'n' ) . '</div></div>';
|
| 484 |
}
|
| 485 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 486 |
public static function lightbox( $atts = null, $content = null ) {
|
| 487 |
$atts = shortcode_atts( array(
|
| 488 |
'src' => false,
|
| 489 |
'type' => 'iframe',
|
| 490 |
'class' => ''
|
| 491 |
), $atts, 'lightbox' );
|
| 492 |
-
if ( !$atts['src'] ) return
|
| 493 |
su_query_asset( 'css', 'magnific-popup' );
|
| 494 |
su_query_asset( 'js', 'jquery' );
|
| 495 |
su_query_asset( 'js', 'magnific-popup' );
|
|
@@ -558,11 +592,11 @@ class Su_Shortcodes {
|
|
| 558 |
'responsive' => 'yes',
|
| 559 |
'class' => ''
|
| 560 |
), $atts, 'youtube' );
|
| 561 |
-
if ( !$atts['url'] ) return
|
| 562 |
$atts['url'] = su_scattr( $atts['url'] );
|
| 563 |
$id = ( preg_match( '%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})%i', $atts['url'], $match ) ) ? $match[1] : false;
|
| 564 |
// Check that url is specified
|
| 565 |
-
if ( !$id ) return
|
| 566 |
// Prepare autoplay
|
| 567 |
$autoplay = ( $atts['autoplay'] === 'yes' ) ? '?autoplay=1' : '';
|
| 568 |
// Create player
|
|
@@ -596,11 +630,11 @@ class Su_Shortcodes {
|
|
| 596 |
'https' => 'no',
|
| 597 |
'class' => ''
|
| 598 |
), $atts, 'youtube_advanced' );
|
| 599 |
-
if ( !$atts['url'] ) return
|
| 600 |
$atts['url'] = su_scattr( $atts['url'] );
|
| 601 |
$id = ( preg_match( '%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})%i', $atts['url'], $match ) ) ? $match[1] : false;
|
| 602 |
// Check that url is specified
|
| 603 |
-
if ( !$id ) return
|
| 604 |
// Prepare params
|
| 605 |
foreach ( array( 'autohide', 'autoplay', 'controls', 'fs', 'loop', 'modestbranding', 'playlist', 'rel', 'showinfo', 'theme' ) as $param ) $params[$param] = str_replace( array( 'no', 'yes', 'alt' ), array( '0', '1', '2' ), $atts[$param] );
|
| 606 |
// Correct loop
|
|
@@ -629,11 +663,11 @@ class Su_Shortcodes {
|
|
| 629 |
'responsive' => 'yes',
|
| 630 |
'class' => ''
|
| 631 |
), $atts, 'vimeo' );
|
| 632 |
-
if ( !$atts['url'] ) return
|
| 633 |
$atts['url'] = su_scattr( $atts['url'] );
|
| 634 |
$id = ( preg_match( '~(?:<iframe [^>]*src=")?(?:https?:\/\/(?:[\w]+\.)*vimeo\.com(?:[\/\w]*\/videos?)?\/([0-9]+)[^\s]*)"?(?:[^>]*></iframe>)?(?:<p>.*</p>)?~ix', $atts['url'], $match ) ) ? $match[1] : false;
|
| 635 |
// Check that url is specified
|
| 636 |
-
if ( !$id ) return
|
| 637 |
// Prepare autoplay
|
| 638 |
$autoplay = ( $atts['autoplay'] === 'yes' ) ? '&autoplay=1' : '';
|
| 639 |
// Create player
|
|
@@ -657,11 +691,11 @@ class Su_Shortcodes {
|
|
| 657 |
'responsive' => 'yes',
|
| 658 |
'class' => ''
|
| 659 |
), $atts, 'screenr' );
|
| 660 |
-
if ( !$atts['url'] ) return
|
| 661 |
$atts['url'] = su_scattr( $atts['url'] );
|
| 662 |
$id = ( preg_match( '~(?:<iframe [^>]*src=")?(?:https?:\/\/(?:[\w]+\.)*screenr\.com(?:[\/\w]*\/videos?)?\/([a-zA-Z0-9]+)[^\s]*)"?(?:[^>]*></iframe>)?(?:<p>.*</p>)?~ix', $atts['url'], $match ) ) ? $match[1] : false;
|
| 663 |
// Check that url is specified
|
| 664 |
-
if ( !$id ) return
|
| 665 |
// Create player
|
| 666 |
$return[] = '<div class="su-screenr su-responsive-media-' . $atts['responsive'] . su_ecssc( $atts ) . '">';
|
| 667 |
$return[] = '<iframe width="' . $atts['width'] . '" height="' . $atts['height'] . '" src="http://screenr.com/embed/' . $id . '" frameborder="0" allowfullscreen="true"></iframe>';
|
|
@@ -689,11 +723,11 @@ class Su_Shortcodes {
|
|
| 689 |
'info' => 'yes',
|
| 690 |
'class' => ''
|
| 691 |
), $atts, 'dailymotion' );
|
| 692 |
-
if ( !$atts['url'] ) return
|
| 693 |
$atts['url'] = su_scattr( $atts['url'] );
|
| 694 |
$id = strtok( basename( $atts['url'] ), '_' );
|
| 695 |
// Check that url is specified
|
| 696 |
-
if ( !$id ) return
|
| 697 |
// Prepare params
|
| 698 |
$params = array();
|
| 699 |
foreach ( array( 'autoplay', 'background', 'foreground', 'highlight', 'logo', 'quality', 'related', 'info' ) as $param )
|
|
@@ -716,14 +750,14 @@ class Su_Shortcodes {
|
|
| 716 |
'loop' => 'no',
|
| 717 |
'class' => ''
|
| 718 |
), $atts, 'audio' );
|
| 719 |
-
if ( !$atts['url'] ) return
|
| 720 |
$atts['url'] = su_scattr( $atts['url'] );
|
| 721 |
// Generate unique ID
|
| 722 |
$id = uniqid( 'su_audio_player_' );
|
| 723 |
// Prepare width
|
| 724 |
$width = ( $atts['width'] !== 'auto' ) ? 'max-width:' . $atts['width'] : '';
|
| 725 |
// Check that url is specified
|
| 726 |
-
if ( !$atts['url'] ) return
|
| 727 |
su_query_asset( 'css', 'su-players-shortcodes' );
|
| 728 |
su_query_asset( 'js', 'jquery' );
|
| 729 |
su_query_asset( 'js', 'jplayer' );
|
|
@@ -745,12 +779,12 @@ class Su_Shortcodes {
|
|
| 745 |
'loop' => 'no',
|
| 746 |
'class' => ''
|
| 747 |
), $atts, 'video' );
|
| 748 |
-
if ( !$atts['url'] ) return
|
| 749 |
$atts['url'] = su_scattr( $atts['url'] );
|
| 750 |
// Generate unique ID
|
| 751 |
$id = uniqid( 'su_video_player_' );
|
| 752 |
// Check that url is specified
|
| 753 |
-
if ( !$atts['url'] ) return
|
| 754 |
// Prepare title
|
| 755 |
$title = ( $atts['title'] ) ? '<div class="jp-title">' . $atts['title'] . '</div>' : '';
|
| 756 |
su_query_asset( 'css', 'su-players-shortcodes' );
|
|
@@ -870,9 +904,9 @@ class Su_Shortcodes {
|
|
| 870 |
|
| 871 |
public static function menu( $atts = null, $content = null ) {
|
| 872 |
$atts = shortcode_atts( array(
|
| 873 |
-
|
| 874 |
-
|
| 875 |
-
|
| 876 |
$return = wp_nav_menu( array(
|
| 877 |
'echo' => false,
|
| 878 |
'menu' => $atts['name'],
|
|
@@ -990,7 +1024,7 @@ class Su_Shortcodes {
|
|
| 990 |
su_query_asset( 'js', 'su-galleries-shortcodes' );
|
| 991 |
}
|
| 992 |
// Slides not found
|
| 993 |
-
else $return =
|
| 994 |
return $return;
|
| 995 |
}
|
| 996 |
|
|
@@ -1073,7 +1107,7 @@ class Su_Shortcodes {
|
|
| 1073 |
su_query_asset( 'js', 'su-galleries-shortcodes' );
|
| 1074 |
}
|
| 1075 |
// Slides not found
|
| 1076 |
-
else $return =
|
| 1077 |
return $return;
|
| 1078 |
}
|
| 1079 |
|
|
@@ -1128,7 +1162,7 @@ class Su_Shortcodes {
|
|
| 1128 |
su_query_asset( 'css', 'su-galleries-shortcodes' );
|
| 1129 |
}
|
| 1130 |
// Slides not found
|
| 1131 |
-
else $return =
|
| 1132 |
return $return;
|
| 1133 |
}
|
| 1134 |
|
|
@@ -1264,7 +1298,7 @@ class Su_Shortcodes {
|
|
| 1264 |
// Search for template in plugin directory
|
| 1265 |
elseif ( path_join( dirname( SU_PLUGIN_FILE ), $atts['template'] ) ) load_template( path_join( dirname( SU_PLUGIN_FILE ), $atts['template'] ), false );
|
| 1266 |
// Template not found
|
| 1267 |
-
else echo
|
| 1268 |
$output = ob_get_contents();
|
| 1269 |
ob_end_clean();
|
| 1270 |
// Return original posts
|
|
@@ -1314,15 +1348,8 @@ class Su_Shortcodes {
|
|
| 1314 |
'class' => ''
|
| 1315 |
), $atts, 'animate' );
|
| 1316 |
$tag = ( $atts['inline'] === 'yes' ) ? 'span' : 'div';
|
| 1317 |
-
$
|
| 1318 |
-
|
| 1319 |
-
'delay' => array()
|
| 1320 |
-
);
|
| 1321 |
-
foreach ( array( '-webkit-', '-moz-', '-ms-', '-o-', '' ) as $vendor ) {
|
| 1322 |
-
$style['duration'][] = $vendor . 'animation-duration:' . $atts['duration'] . 's';
|
| 1323 |
-
$style['delay'][] = $vendor . 'animation-delay:' . $atts['delay'] . 's';
|
| 1324 |
-
}
|
| 1325 |
-
$return = '<' . $tag . ' class="su-animate ' . $atts['type'] . su_ecssc( $atts ) . '" style="visibility:hidden;' . implode( ';', $style['duration'] ) . ';' . implode( ';', $style['delay'] ) . '" data-animation="' . $atts['type'] . '" data-delay="' . ( $atts['delay'] * 1000 ) . '">' . do_shortcode( $content ) . '</' . $tag . '>';
|
| 1326 |
su_query_asset( 'css', 'animate' );
|
| 1327 |
su_query_asset( 'js', 'jquery' );
|
| 1328 |
su_query_asset( 'js', 'inview' );
|
|
@@ -1403,6 +1430,20 @@ class Su_Shortcodes {
|
|
| 1403 |
return ( $post ) ? $atts['before'] . $post . $atts['after'] : '';
|
| 1404 |
}
|
| 1405 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1406 |
public static function template( $atts = null, $content = null ) {
|
| 1407 |
$atts = shortcode_atts( array(
|
| 1408 |
'name' => ''
|
|
@@ -1445,6 +1486,85 @@ class Su_Shortcodes {
|
|
| 1445 |
return '<span class="su-qrcode su-qrcode-align-' . $atts['align'] . su_ecssc( $atts ) . '"><a' . $href . ' target="_' . $atts['target'] . '" title="' . $atts['title'] . '"><img src="https://api.qrserver.com/v1/create-qr-code/?data=' . urlencode( $atts['data'] ) . '&size=' . $atts['size'] . 'x' . $atts['size'] . '&format=png&margin=' . $atts['margin'] . '&color=' . su_hex2rgb( $atts['color'] ) . '&bgcolor=' . su_hex2rgb( $atts['background'] ) . '" alt="' . $atts['title'] . '" /></a></span>';
|
| 1446 |
}
|
| 1447 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1448 |
}
|
| 1449 |
|
| 1450 |
new Su_Shortcodes;
|
| 95 |
|
| 96 |
public static function divider( $atts = null, $content = null ) {
|
| 97 |
$atts = shortcode_atts( array(
|
| 98 |
+
'top' => 'yes',
|
| 99 |
+
'text' => __( 'Go to top', 'su' ),
|
| 100 |
+
'style' => 'default',
|
| 101 |
+
'divider_color' => '#999999',
|
| 102 |
+
'link_color' => '#999999',
|
| 103 |
+
'size' => '3',
|
| 104 |
+
'margin' => '15',
|
| 105 |
+
'class' => ''
|
| 106 |
), $atts, 'divider' );
|
| 107 |
+
// Prepare TOP link
|
| 108 |
+
$top = ( $atts['top'] === 'yes' ) ? '<a href="#" style="color:' . $atts['link_color'] . '">' . su_scattr( $atts['text'] ) . '</a>' : '';
|
| 109 |
su_query_asset( 'css', 'su-content-shortcodes' );
|
| 110 |
+
return '<div class="su-divider su-divider-style-' . $atts['style'] . su_ecssc( $atts ) . '" style="margin:' . $atts['margin'] . 'px 0;border-width:' . $atts['size'] . 'px;border-color:' . $atts['divider_color'] . '">' . $top . '</div>';
|
| 111 |
}
|
| 112 |
|
| 113 |
public static function spacer( $atts = null, $content = null ) {
|
| 310 |
'text_shadow' => 'none',
|
| 311 |
'desc' => '',
|
| 312 |
'onclick' => '',
|
| 313 |
+
'rel' => '',
|
| 314 |
'class' => ''
|
| 315 |
), $atts, 'button' );
|
| 316 |
|
| 428 |
else $content = $icon . ' ' . $content;
|
| 429 |
// Prepare onclick action
|
| 430 |
$atts['onclick'] = ( $atts['onclick'] ) ? ' onClick="' . $atts['onclick'] . '"' : '';
|
| 431 |
+
// Prepare rel attribute
|
| 432 |
+
$atts['rel'] = ( $atts['rel'] ) ? ' rel="' . $atts['rel'] . '"' : '';
|
| 433 |
su_query_asset( 'css', 'su-content-shortcodes' );
|
| 434 |
+
return $before . '<a href="' . su_scattr( $atts['url'] ) . '" class="' . implode( $classes, ' ' ) . '" style="' . implode( $a_css, ';' ) . '" target="_' . $atts['target'] . '"' . $atts['onclick'] . $atts['rel'] . '><span style="' . implode( $span_css, ';' ) . '">' . do_shortcode( $content ) . $desc . '</span></a>' . $after;
|
| 435 |
}
|
| 436 |
|
| 437 |
public static function service( $atts = null, $content = null ) {
|
| 492 |
return '<div class="su-note' . su_ecssc( $atts ) . '" style="border-color:' . su_hex_shift( $atts['note_color'], 'darker', 10 ) . ';' . $radius . '"><div class="su-note-inner su-clearfix" style="background-color:' . $atts['note_color'] . ';border-color:' . su_hex_shift( $atts['note_color'], 'lighter', 80 ) . ';color:' . $atts['text_color'] . ';' . $radius . '">' . su_do_shortcode( $content, 'n' ) . '</div></div>';
|
| 493 |
}
|
| 494 |
|
| 495 |
+
public static function expand( $atts = null, $content = null ) {
|
| 496 |
+
$atts = shortcode_atts( array(
|
| 497 |
+
'more_text' => __( 'Show more', 'su' ),
|
| 498 |
+
'less_text' => __( 'Show less', 'su' ),
|
| 499 |
+
'height' => '100',
|
| 500 |
+
'hide_less' => 'no',
|
| 501 |
+
'text_color' => '#333333',
|
| 502 |
+
'link_color' => '#0088FF',
|
| 503 |
+
'link_style' => 'default',
|
| 504 |
+
'link_align' => 'left',
|
| 505 |
+
'more_icon' => '',
|
| 506 |
+
'less_icon' => '',
|
| 507 |
+
'class' => ''
|
| 508 |
+
), $atts, 'expand' );
|
| 509 |
+
// Prepare more icon
|
| 510 |
+
$more_icon = ( $atts['more_icon'] ) ? Su_Tools::icon( $atts['more_icon'] ) : '';
|
| 511 |
+
$less_icon = ( $atts['less_icon'] ) ? Su_Tools::icon( $atts['less_icon'] ) : '';
|
| 512 |
+
if ( $more_icon || $less_icon ) su_query_asset( 'css', 'font-awesome' );
|
| 513 |
+
// Prepare less link
|
| 514 |
+
$less = ( $atts['hide_less'] !== 'yes' ) ? '<div class="su-expand-link su-expand-link-less" style="text-align:' . $atts['link_align'] . '"><a href="javascript:;" style="color:' . $atts['link_color'] . ';border-color:' . $atts['link_color'] . '">' . $less_icon . '<span style="border-color:' . $atts['link_color'] . '">' . $atts['less_text'] . '</span></a></div>' : '';
|
| 515 |
+
su_query_asset( 'css', 'su-box-shortcodes' );
|
| 516 |
+
su_query_asset( 'js', 'su-other-shortcodes' );
|
| 517 |
+
return '<div class="su-expand su-expand-collapsed su-expand-link-style-' . $atts['link_style'] . su_ecssc( $atts ) . '" data-height="' . $atts['height'] . '"><div class="su-expand-content" style="color:' . $atts['text_color'] . ';max-height:' . intval( $atts['height'] ) . 'px;overflow:hidden">' . do_shortcode( $content ) . '</div><div class="su-expand-link su-expand-link-more" style="text-align:' . $atts['link_align'] . '"><a href="javascript:;" style="color:' . $atts['link_color'] . ';border-color:' . $atts['link_color'] . '">' . $more_icon . '<span style="border-color:' . $atts['link_color'] . '">' . $atts['more_text'] . '</span></a></div>' . $less . '</div>';
|
| 518 |
+
}
|
| 519 |
+
|
| 520 |
public static function lightbox( $atts = null, $content = null ) {
|
| 521 |
$atts = shortcode_atts( array(
|
| 522 |
'src' => false,
|
| 523 |
'type' => 'iframe',
|
| 524 |
'class' => ''
|
| 525 |
), $atts, 'lightbox' );
|
| 526 |
+
if ( !$atts['src'] ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct source', 'su' ) );
|
| 527 |
su_query_asset( 'css', 'magnific-popup' );
|
| 528 |
su_query_asset( 'js', 'jquery' );
|
| 529 |
su_query_asset( 'js', 'magnific-popup' );
|
| 592 |
'responsive' => 'yes',
|
| 593 |
'class' => ''
|
| 594 |
), $atts, 'youtube' );
|
| 595 |
+
if ( !$atts['url'] ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct url', 'su' ) );
|
| 596 |
$atts['url'] = su_scattr( $atts['url'] );
|
| 597 |
$id = ( preg_match( '%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})%i', $atts['url'], $match ) ) ? $match[1] : false;
|
| 598 |
// Check that url is specified
|
| 599 |
+
if ( !$id ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct url', 'su' ) );
|
| 600 |
// Prepare autoplay
|
| 601 |
$autoplay = ( $atts['autoplay'] === 'yes' ) ? '?autoplay=1' : '';
|
| 602 |
// Create player
|
| 630 |
'https' => 'no',
|
| 631 |
'class' => ''
|
| 632 |
), $atts, 'youtube_advanced' );
|
| 633 |
+
if ( !$atts['url'] ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct url', 'su' ) );
|
| 634 |
$atts['url'] = su_scattr( $atts['url'] );
|
| 635 |
$id = ( preg_match( '%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})%i', $atts['url'], $match ) ) ? $match[1] : false;
|
| 636 |
// Check that url is specified
|
| 637 |
+
if ( !$id ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct url', 'su' ) );
|
| 638 |
// Prepare params
|
| 639 |
foreach ( array( 'autohide', 'autoplay', 'controls', 'fs', 'loop', 'modestbranding', 'playlist', 'rel', 'showinfo', 'theme' ) as $param ) $params[$param] = str_replace( array( 'no', 'yes', 'alt' ), array( '0', '1', '2' ), $atts[$param] );
|
| 640 |
// Correct loop
|
| 663 |
'responsive' => 'yes',
|
| 664 |
'class' => ''
|
| 665 |
), $atts, 'vimeo' );
|
| 666 |
+
if ( !$atts['url'] ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct url', 'su' ) );
|
| 667 |
$atts['url'] = su_scattr( $atts['url'] );
|
| 668 |
$id = ( preg_match( '~(?:<iframe [^>]*src=")?(?:https?:\/\/(?:[\w]+\.)*vimeo\.com(?:[\/\w]*\/videos?)?\/([0-9]+)[^\s]*)"?(?:[^>]*></iframe>)?(?:<p>.*</p>)?~ix', $atts['url'], $match ) ) ? $match[1] : false;
|
| 669 |
// Check that url is specified
|
| 670 |
+
if ( !$id ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct url', 'su' ) );
|
| 671 |
// Prepare autoplay
|
| 672 |
$autoplay = ( $atts['autoplay'] === 'yes' ) ? '&autoplay=1' : '';
|
| 673 |
// Create player
|
| 691 |
'responsive' => 'yes',
|
| 692 |
'class' => ''
|
| 693 |
), $atts, 'screenr' );
|
| 694 |
+
if ( !$atts['url'] ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct url', 'su' ) );
|
| 695 |
$atts['url'] = su_scattr( $atts['url'] );
|
| 696 |
$id = ( preg_match( '~(?:<iframe [^>]*src=")?(?:https?:\/\/(?:[\w]+\.)*screenr\.com(?:[\/\w]*\/videos?)?\/([a-zA-Z0-9]+)[^\s]*)"?(?:[^>]*></iframe>)?(?:<p>.*</p>)?~ix', $atts['url'], $match ) ) ? $match[1] : false;
|
| 697 |
// Check that url is specified
|
| 698 |
+
if ( !$id ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct url', 'su' ) );
|
| 699 |
// Create player
|
| 700 |
$return[] = '<div class="su-screenr su-responsive-media-' . $atts['responsive'] . su_ecssc( $atts ) . '">';
|
| 701 |
$return[] = '<iframe width="' . $atts['width'] . '" height="' . $atts['height'] . '" src="http://screenr.com/embed/' . $id . '" frameborder="0" allowfullscreen="true"></iframe>';
|
| 723 |
'info' => 'yes',
|
| 724 |
'class' => ''
|
| 725 |
), $atts, 'dailymotion' );
|
| 726 |
+
if ( !$atts['url'] ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct url', 'su' ) );
|
| 727 |
$atts['url'] = su_scattr( $atts['url'] );
|
| 728 |
$id = strtok( basename( $atts['url'] ), '_' );
|
| 729 |
// Check that url is specified
|
| 730 |
+
if ( !$id ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct url', 'su' ) );
|
| 731 |
// Prepare params
|
| 732 |
$params = array();
|
| 733 |
foreach ( array( 'autoplay', 'background', 'foreground', 'highlight', 'logo', 'quality', 'related', 'info' ) as $param )
|
| 750 |
'loop' => 'no',
|
| 751 |
'class' => ''
|
| 752 |
), $atts, 'audio' );
|
| 753 |
+
if ( !$atts['url'] ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct url', 'su' ) );
|
| 754 |
$atts['url'] = su_scattr( $atts['url'] );
|
| 755 |
// Generate unique ID
|
| 756 |
$id = uniqid( 'su_audio_player_' );
|
| 757 |
// Prepare width
|
| 758 |
$width = ( $atts['width'] !== 'auto' ) ? 'max-width:' . $atts['width'] : '';
|
| 759 |
// Check that url is specified
|
| 760 |
+
if ( !$atts['url'] ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct url', 'su' ) );
|
| 761 |
su_query_asset( 'css', 'su-players-shortcodes' );
|
| 762 |
su_query_asset( 'js', 'jquery' );
|
| 763 |
su_query_asset( 'js', 'jplayer' );
|
| 779 |
'loop' => 'no',
|
| 780 |
'class' => ''
|
| 781 |
), $atts, 'video' );
|
| 782 |
+
if ( !$atts['url'] ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct url', 'su' ) );
|
| 783 |
$atts['url'] = su_scattr( $atts['url'] );
|
| 784 |
// Generate unique ID
|
| 785 |
$id = uniqid( 'su_video_player_' );
|
| 786 |
// Check that url is specified
|
| 787 |
+
if ( !$atts['url'] ) return Su_Tools::error( __FUNCTION__, __( 'please specify correct url', 'su' ) );
|
| 788 |
// Prepare title
|
| 789 |
$title = ( $atts['title'] ) ? '<div class="jp-title">' . $atts['title'] . '</div>' : '';
|
| 790 |
su_query_asset( 'css', 'su-players-shortcodes' );
|
| 904 |
|
| 905 |
public static function menu( $atts = null, $content = null ) {
|
| 906 |
$atts = shortcode_atts( array(
|
| 907 |
+
'name' => false,
|
| 908 |
+
'class' => ''
|
| 909 |
+
), $atts, 'menu' );
|
| 910 |
$return = wp_nav_menu( array(
|
| 911 |
'echo' => false,
|
| 912 |
'menu' => $atts['name'],
|
| 1024 |
su_query_asset( 'js', 'su-galleries-shortcodes' );
|
| 1025 |
}
|
| 1026 |
// Slides not found
|
| 1027 |
+
else $return = Su_Tools::error( __FUNCTION__, __( 'images not found', 'su' ) );
|
| 1028 |
return $return;
|
| 1029 |
}
|
| 1030 |
|
| 1107 |
su_query_asset( 'js', 'su-galleries-shortcodes' );
|
| 1108 |
}
|
| 1109 |
// Slides not found
|
| 1110 |
+
else $return = Su_Tools::error( __FUNCTION__, __( 'images not found', 'su' ) );
|
| 1111 |
return $return;
|
| 1112 |
}
|
| 1113 |
|
| 1162 |
su_query_asset( 'css', 'su-galleries-shortcodes' );
|
| 1163 |
}
|
| 1164 |
// Slides not found
|
| 1165 |
+
else $return = Su_Tools::error( __FUNCTION__, __( 'images not found', 'su' ) );
|
| 1166 |
return $return;
|
| 1167 |
}
|
| 1168 |
|
| 1298 |
// Search for template in plugin directory
|
| 1299 |
elseif ( path_join( dirname( SU_PLUGIN_FILE ), $atts['template'] ) ) load_template( path_join( dirname( SU_PLUGIN_FILE ), $atts['template'] ), false );
|
| 1300 |
// Template not found
|
| 1301 |
+
else echo Su_Tools::error( __FUNCTION__, __( 'template not found', 'su' ) );
|
| 1302 |
$output = ob_get_contents();
|
| 1303 |
ob_end_clean();
|
| 1304 |
// Return original posts
|
| 1348 |
'class' => ''
|
| 1349 |
), $atts, 'animate' );
|
| 1350 |
$tag = ( $atts['inline'] === 'yes' ) ? 'span' : 'div';
|
| 1351 |
+
$time = '-webkit-animation-duration:' . $atts['duration'] . 's;-webkit-animation-delay:' . $atts['delay'] . 's;animation-duration:' . $atts['duration'] . 's;animation-delay:' . $atts['delay'] . 's;';
|
| 1352 |
+
$return = '<' . $tag . ' class="su-animate' . su_ecssc( $atts ) . '" style="visibility:hidden;' . $time . '" data-animation="' . $atts['type'] . '" data-duration="' . $atts['duration'] . '" data-delay="' . $atts['delay'] . '">' . do_shortcode( $content ) . '</' . $tag . '>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1353 |
su_query_asset( 'css', 'animate' );
|
| 1354 |
su_query_asset( 'js', 'jquery' );
|
| 1355 |
su_query_asset( 'js', 'inview' );
|
| 1430 |
return ( $post ) ? $atts['before'] . $post . $atts['after'] : '';
|
| 1431 |
}
|
| 1432 |
|
| 1433 |
+
// public static function post_terms( $atts = null, $content = null ) {
|
| 1434 |
+
// $atts = shortcode_atts( array(
|
| 1435 |
+
// 'post_id' => '',
|
| 1436 |
+
// 'taxonomy' => 'category',
|
| 1437 |
+
// 'limit' => '5',
|
| 1438 |
+
// 'links' => '',
|
| 1439 |
+
// 'format' => ''
|
| 1440 |
+
// ), $atts, 'post_terms' );
|
| 1441 |
+
// // Define current post ID
|
| 1442 |
+
// if ( !$atts['post_id'] ) $atts['post_id'] = get_the_ID();
|
| 1443 |
+
// // Check post ID
|
| 1444 |
+
// if ( !is_numeric( $atts['post_id'] ) || $atts['post_id'] < 1 ) return sprintf( '<p class="su-error">Post terms: %s</p>', __( 'post ID is incorrect', 'su' ) );
|
| 1445 |
+
// }
|
| 1446 |
+
|
| 1447 |
public static function template( $atts = null, $content = null ) {
|
| 1448 |
$atts = shortcode_atts( array(
|
| 1449 |
'name' => ''
|
| 1486 |
return '<span class="su-qrcode su-qrcode-align-' . $atts['align'] . su_ecssc( $atts ) . '"><a' . $href . ' target="_' . $atts['target'] . '" title="' . $atts['title'] . '"><img src="https://api.qrserver.com/v1/create-qr-code/?data=' . urlencode( $atts['data'] ) . '&size=' . $atts['size'] . 'x' . $atts['size'] . '&format=png&margin=' . $atts['margin'] . '&color=' . su_hex2rgb( $atts['color'] ) . '&bgcolor=' . su_hex2rgb( $atts['background'] ) . '" alt="' . $atts['title'] . '" /></a></span>';
|
| 1487 |
}
|
| 1488 |
|
| 1489 |
+
public static function scheduler( $atts = null, $content = null ) {
|
| 1490 |
+
$atts = shortcode_atts( array(
|
| 1491 |
+
'time' => 'all',
|
| 1492 |
+
'days_week' => 'all',
|
| 1493 |
+
'days_month' => 'all',
|
| 1494 |
+
'months' => 'all',
|
| 1495 |
+
'years' => 'all',
|
| 1496 |
+
'alt' => ''
|
| 1497 |
+
), $atts, 'scheduler' );
|
| 1498 |
+
// Check time
|
| 1499 |
+
if ( $atts['time'] !== 'all' ) {
|
| 1500 |
+
// Get current time
|
| 1501 |
+
$now = current_time( 'timestamp', 0 );
|
| 1502 |
+
// Sanitize
|
| 1503 |
+
$atts['time'] = preg_replace( "/[^0-9-,:]/", '', $atts['time'] );
|
| 1504 |
+
// Loop time ranges
|
| 1505 |
+
foreach( explode( ',', $atts['time'] ) as $range ) {
|
| 1506 |
+
// Check for range symbol
|
| 1507 |
+
if ( strpos( $range, '-' ) === false ) return Su_Tools::error( __FUNCTION__, sprintf( __( 'Incorrect time range (%s). Please use - (minus) symbol to specify time range. Example: 14:00 - 18:00', 'su' ), $range ) );
|
| 1508 |
+
// Split begin/end time
|
| 1509 |
+
$time = explode( '-', $range );
|
| 1510 |
+
// Add minutes
|
| 1511 |
+
if ( strpos( $time[0], ':' ) === false ) $time[0] .= ':00';
|
| 1512 |
+
if ( strpos( $time[1], ':' ) === false ) $time[1] .= ':00';
|
| 1513 |
+
// Parse begin/end time
|
| 1514 |
+
$time[0] = strtotime( $time[0] );
|
| 1515 |
+
$time[1] = strtotime( $time[1] );
|
| 1516 |
+
// Check time
|
| 1517 |
+
if ( $now < $time[0] || $now > $time[1] ) return $atts['alt'];
|
| 1518 |
+
}
|
| 1519 |
+
}
|
| 1520 |
+
// Check day of the week
|
| 1521 |
+
if ( $atts['days_week'] !== 'all' ) {
|
| 1522 |
+
// Get current day of the week
|
| 1523 |
+
$today = date( 'w', current_time( 'timestamp', 0 ) );
|
| 1524 |
+
// Sanitize input
|
| 1525 |
+
$atts['days_week'] = preg_replace( "/[^0-9-,]/", '', $atts['days_week'] );
|
| 1526 |
+
// Parse days range
|
| 1527 |
+
$days = Su_Tools::range( $atts['days_week'] );
|
| 1528 |
+
// Check current day
|
| 1529 |
+
if ( !in_array( $today, $days ) ) return $atts['alt'];
|
| 1530 |
+
}
|
| 1531 |
+
// Check day of the month
|
| 1532 |
+
if ( $atts['days_month'] !== 'all' ) {
|
| 1533 |
+
// Get current day of the month
|
| 1534 |
+
$today = date( 'j', current_time( 'timestamp', 0 ) );
|
| 1535 |
+
// Sanitize input
|
| 1536 |
+
$atts['days_month'] = preg_replace( "/[^0-9-,]/", '', $atts['days_month'] );
|
| 1537 |
+
// Parse days range
|
| 1538 |
+
$days = Su_Tools::range( $atts['days_month'] );
|
| 1539 |
+
// Check current day
|
| 1540 |
+
if ( !in_array( $today, $days ) ) return $atts['alt'];
|
| 1541 |
+
}
|
| 1542 |
+
// Check month
|
| 1543 |
+
if ( $atts['months'] !== 'all' ) {
|
| 1544 |
+
// Get current month
|
| 1545 |
+
$now = date( 'n', current_time( 'timestamp', 0 ) );
|
| 1546 |
+
// Sanitize input
|
| 1547 |
+
$atts['months'] = preg_replace( "/[^0-9-,]/", '', $atts['months'] );
|
| 1548 |
+
// Parse months range
|
| 1549 |
+
$months = Su_Tools::range( $atts['months'] );
|
| 1550 |
+
// Check current month
|
| 1551 |
+
if ( !in_array( $now, $months ) ) return $atts['alt'];
|
| 1552 |
+
}
|
| 1553 |
+
// Check year
|
| 1554 |
+
if ( $atts['years'] !== 'all' ) {
|
| 1555 |
+
// Get current year
|
| 1556 |
+
$now = date( 'Y', current_time( 'timestamp', 0 ) );
|
| 1557 |
+
// Sanitize input
|
| 1558 |
+
$atts['years'] = preg_replace( "/[^0-9-,]/", '', $atts['years'] );
|
| 1559 |
+
// Parse years range
|
| 1560 |
+
$years = Su_Tools::range( $atts['years'] );
|
| 1561 |
+
// Check current year
|
| 1562 |
+
if ( !in_array( $now, $years ) ) return $atts['alt'];
|
| 1563 |
+
}
|
| 1564 |
+
// Return result (all check passed)
|
| 1565 |
+
return do_shortcode( $content );
|
| 1566 |
+
}
|
| 1567 |
+
|
| 1568 |
}
|
| 1569 |
|
| 1570 |
new Su_Shortcodes;
|
inc/core/tools.php
CHANGED
|
@@ -674,20 +674,20 @@ class Su_Tools {
|
|
| 674 |
return $types;
|
| 675 |
}
|
| 676 |
|
| 677 |
-
public static function get_users() {
|
| 678 |
-
|
| 679 |
-
|
| 680 |
-
|
| 681 |
-
|
| 682 |
-
|
| 683 |
-
|
| 684 |
-
|
| 685 |
-
|
| 686 |
-
|
| 687 |
-
|
| 688 |
-
|
| 689 |
-
|
| 690 |
-
}
|
| 691 |
|
| 692 |
public static function reset_users_cache() {
|
| 693 |
if ( ( isset( $_GET['update'] ) || isset( $_GET['updated'] ) ) )
|
|
@@ -852,7 +852,7 @@ class Su_Tools {
|
|
| 852 |
}
|
| 853 |
|
| 854 |
public static function icon( $src = 'file' ) {
|
| 855 |
-
return ( strpos( $src, '/' ) !== false ) ? '<img src="' . $src . '" alt="" />' : '<i class="fa fa-' . $src . '"></i>';
|
| 856 |
}
|
| 857 |
|
| 858 |
public static function get_icon( $args ) {
|
|
@@ -919,6 +919,47 @@ class Su_Tools {
|
|
| 919 |
update_post_meta( $post['ID'], 'su_slide_link', $attachment['su_slide_link'] );
|
| 920 |
return $post;
|
| 921 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 922 |
}
|
| 923 |
|
| 924 |
new Su_Tools;
|
| 674 |
return $types;
|
| 675 |
}
|
| 676 |
|
| 677 |
+
// public static function get_users() {
|
| 678 |
+
// // Get data from cache
|
| 679 |
+
// $users = ( SU_ENABLE_CACHE ) ? get_transient( 'su/users_cache' ) : false;
|
| 680 |
+
// // Query users
|
| 681 |
+
// if ( !$users ) $users = get_users();
|
| 682 |
+
// // Cache results
|
| 683 |
+
// set_transient( 'su/users_cache', $users );
|
| 684 |
+
// // Prepare data array
|
| 685 |
+
// $data = array();
|
| 686 |
+
// // Loop through users
|
| 687 |
+
// foreach ( $users as $user ) $data[$user->data->ID] = $user->data->display_name;
|
| 688 |
+
// // Return data
|
| 689 |
+
// return $data;
|
| 690 |
+
// }
|
| 691 |
|
| 692 |
public static function reset_users_cache() {
|
| 693 |
if ( ( isset( $_GET['update'] ) || isset( $_GET['updated'] ) ) )
|
| 852 |
}
|
| 853 |
|
| 854 |
public static function icon( $src = 'file' ) {
|
| 855 |
+
return ( strpos( $src, '/' ) !== false ) ? '<img src="' . $src . '" alt="" />' : '<i class="fa fa-' . str_replace( 'icon: ', '', $src ) . '"></i>';
|
| 856 |
}
|
| 857 |
|
| 858 |
public static function get_icon( $args ) {
|
| 919 |
update_post_meta( $post['ID'], 'su_slide_link', $attachment['su_slide_link'] );
|
| 920 |
return $post;
|
| 921 |
}
|
| 922 |
+
|
| 923 |
+
public static function error( $prefix = false, $message = false ) {
|
| 924 |
+
if ( !$prefix && !$message ) return '';
|
| 925 |
+
$return = array( '<div class="su-error" style="padding:10px;border:1px solid #f03;color:#903;background:#fde">' );
|
| 926 |
+
if ( $prefix ) $return[] = '<strong>' . $prefix . '</strong><br/>';
|
| 927 |
+
$return[] = $message;
|
| 928 |
+
$return[] = '</div>';
|
| 929 |
+
return implode( '', $return );
|
| 930 |
+
}
|
| 931 |
+
|
| 932 |
+
/**
|
| 933 |
+
* Range converter
|
| 934 |
+
* Converts string range (like 1, 5-7, 10) into array (like [1]=>1, [5]=>5, [6]=>6, [7]=>7, [10]=>10)
|
| 935 |
+
*/
|
| 936 |
+
public static function range( $string = '' ) {
|
| 937 |
+
$numbers = array();
|
| 938 |
+
// Loop values
|
| 939 |
+
foreach( explode( ',', $string ) as $range ) {
|
| 940 |
+
// Detect range (min-max)
|
| 941 |
+
if ( strpos( $range, '-' ) !== false ) {
|
| 942 |
+
// Split min/max
|
| 943 |
+
$range = explode( '-', $range );
|
| 944 |
+
// Check min/max values
|
| 945 |
+
if ( !is_numeric( $range[0] ) ) $range[0] = 0;
|
| 946 |
+
if ( !is_numeric( $range[1] ) ) $range[1] = 0;
|
| 947 |
+
// Sort min/max values
|
| 948 |
+
sort( $range );
|
| 949 |
+
// List values from min to max
|
| 950 |
+
$range = range( $range[0], $range[1] );
|
| 951 |
+
// Add values to the array
|
| 952 |
+
foreach( $range as $value ) $numbers[$value] = $value;
|
| 953 |
+
}
|
| 954 |
+
// Single value
|
| 955 |
+
else {
|
| 956 |
+
// Add day to the array
|
| 957 |
+
$numbers[$range] = $range;
|
| 958 |
+
}
|
| 959 |
+
}
|
| 960 |
+
// Return array with numbers
|
| 961 |
+
return $numbers;
|
| 962 |
+
}
|
| 963 |
}
|
| 964 |
|
| 965 |
new Su_Tools;
|
languages/su-ja.mo
CHANGED
|
Binary file
|
languages/su-ja.po
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
-
"Project-Id-Version: Shortcodes Ultimate v4.
|
| 4 |
"Report-Msgid-Bugs-To: \n"
|
| 5 |
"POT-Creation-Date: 2013-10-01 17:50+0300\n"
|
| 6 |
-
"PO-Revision-Date: 2014-
|
| 7 |
"Last-Translator: stranger-jp <wordpress.stranger.jp@gmail.com>\n"
|
| 8 |
"Language-Team: stranger-jp <wordpress.stranger.jp@gmail.com>\n"
|
| 9 |
"MIME-Version: 1.0\n"
|
|
@@ -1267,11 +1267,9 @@ msgstr "プレビュー"
|
|
| 1267 |
msgid "Access denied"
|
| 1268 |
msgstr "アクセスが拒否されました"
|
| 1269 |
|
| 1270 |
-
#, php-format
|
| 1271 |
msgid "<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not fully compatible with your version of WordPress (%s).<br />Reccomended WordPress version – %s (or higher).</p><a href=\"%s\">← Return to the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway →</a>"
|
| 1272 |
msgstr "<h1>プラグインが有効になっていません…</h1><p>Shortcodes UltimateはWordPressのバージョン(%s)と互換性がありません。<br />推奨 WordPressのバージョン -%s(またはそれ以上)</p><a href=\"%s\">← プラグイン画面に戻る</a><a href=\"%s\"%s>続けて有効にする →</a>"
|
| 1273 |
|
| 1274 |
-
#, php-format
|
| 1275 |
msgid "<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not fully compatible with your PHP version (%s).<br />Reccomended PHP version – %s (or higher).</p><a href=\"%s\">← Return to the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway →</a>"
|
| 1276 |
msgstr "<h1>プラグインが有効になっていません…</h1><p>Shortcodes UltimateはPHPのバージョン(%s)と互換性がありません。<br />推奨 PHPバージョン - %s(またはそれ以上)</p><a href=\"%s\">← プラグイン画面に戻る</a><a href=\"%s\"%s>続けて有効にする →</a>"
|
| 1277 |
|
|
@@ -1282,7 +1280,7 @@ msgid "Vladimir Anokhin"
|
|
| 1282 |
msgstr "Vladimir Anokhin"
|
| 1283 |
|
| 1284 |
msgid "Supercharge your WordPress theme with mega pack of shortcodes"
|
| 1285 |
-
msgstr "ショートコードのメガパックでWordPress
|
| 1286 |
|
| 1287 |
msgid "Where to start?"
|
| 1288 |
msgstr "どこから始める?"
|
|
@@ -1941,8 +1939,8 @@ msgstr "ショートコードのグローバルスキンを選択してくださ
|
|
| 1941 |
msgid "1 new add-on for Shortcodes Ultimate"
|
| 1942 |
msgstr "Shortcodes Ultimateの1つの新しいアドオン"
|
| 1943 |
|
| 1944 |
-
msgid "4.
|
| 1945 |
-
msgstr "4.
|
| 1946 |
|
| 1947 |
msgid "Activation key"
|
| 1948 |
msgstr "アクティベーションキー"
|
|
@@ -2176,10 +2174,7 @@ msgid "Post"
|
|
| 2176 |
msgstr "投稿"
|
| 2177 |
|
| 2178 |
msgid "Set of additional skins for Shortcodes Ultimate. It includes skins for accordeons/spoilers, tabs and some other shortcodes"
|
| 2179 |
-
msgstr "Shortcodes Ultimate
|
| 2180 |
-
|
| 2181 |
-
msgid "Shortcodes Ultimate - must have WordPress plugin "
|
| 2182 |
-
msgstr "Shortcodes Ultimate - WordPressのプラグインを持っている必要があります"
|
| 2183 |
|
| 2184 |
msgid "Square"
|
| 2185 |
msgstr "正方形"
|
|
@@ -2290,7 +2285,7 @@ msgid "Use this field to add custom links to slides used with Slider, Carousel a
|
|
| 2290 |
msgstr "スライダー、カルーセル、カスタムギャラリーのショートコードでスライドにカスタムリンクを追加するには、このフィールドを使用します。"
|
| 2291 |
|
| 2292 |
msgid "Shortcodes Ultimate - must have WordPress plugin #shortcodesultimate"
|
| 2293 |
-
msgstr "Shortcodes Ultimate - #shortcodesultimate
|
| 2294 |
|
| 2295 |
msgid "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"
|
| 2296 |
msgstr "このタブのユニークなアンカーを使用するには、ページURLのハッシュにアクセスします。例: <b%value>Hello</b>とここに入力し、http://example.com/page-url#HelloのようなURLを使用します。このタブがアクティブになりにスクロールします。"
|
|
@@ -2339,3 +2334,51 @@ msgstr "印刷用バージョン"
|
|
| 2339 |
|
| 2340 |
msgid "Shortcode"
|
| 2341 |
msgstr "ショートコード"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
+
"Project-Id-Version: Shortcodes Ultimate v4.9.0\n"
|
| 4 |
"Report-Msgid-Bugs-To: \n"
|
| 5 |
"POT-Creation-Date: 2013-10-01 17:50+0300\n"
|
| 6 |
+
"PO-Revision-Date: 2014-06-21 09:28+0900\n"
|
| 7 |
"Last-Translator: stranger-jp <wordpress.stranger.jp@gmail.com>\n"
|
| 8 |
"Language-Team: stranger-jp <wordpress.stranger.jp@gmail.com>\n"
|
| 9 |
"MIME-Version: 1.0\n"
|
| 1267 |
msgid "Access denied"
|
| 1268 |
msgstr "アクセスが拒否されました"
|
| 1269 |
|
|
|
|
| 1270 |
msgid "<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not fully compatible with your version of WordPress (%s).<br />Reccomended WordPress version – %s (or higher).</p><a href=\"%s\">← Return to the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway →</a>"
|
| 1271 |
msgstr "<h1>プラグインが有効になっていません…</h1><p>Shortcodes UltimateはWordPressのバージョン(%s)と互換性がありません。<br />推奨 WordPressのバージョン -%s(またはそれ以上)</p><a href=\"%s\">← プラグイン画面に戻る</a><a href=\"%s\"%s>続けて有効にする →</a>"
|
| 1272 |
|
|
|
|
| 1273 |
msgid "<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not fully compatible with your PHP version (%s).<br />Reccomended PHP version – %s (or higher).</p><a href=\"%s\">← Return to the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway →</a>"
|
| 1274 |
msgstr "<h1>プラグインが有効になっていません…</h1><p>Shortcodes UltimateはPHPのバージョン(%s)と互換性がありません。<br />推奨 PHPバージョン - %s(またはそれ以上)</p><a href=\"%s\">← プラグイン画面に戻る</a><a href=\"%s\"%s>続けて有効にする →</a>"
|
| 1275 |
|
| 1280 |
msgstr "Vladimir Anokhin"
|
| 1281 |
|
| 1282 |
msgid "Supercharge your WordPress theme with mega pack of shortcodes"
|
| 1283 |
+
msgstr "ショートコードのメガパックでWordPressテーマにスーパーチャージ"
|
| 1284 |
|
| 1285 |
msgid "Where to start?"
|
| 1286 |
msgstr "どこから始める?"
|
| 1939 |
msgid "1 new add-on for Shortcodes Ultimate"
|
| 1940 |
msgstr "Shortcodes Ultimateの1つの新しいアドオン"
|
| 1941 |
|
| 1942 |
+
msgid "4.9.0"
|
| 1943 |
+
msgstr "4.9.0"
|
| 1944 |
|
| 1945 |
msgid "Activation key"
|
| 1946 |
msgstr "アクティベーションキー"
|
| 2174 |
msgstr "投稿"
|
| 2175 |
|
| 2176 |
msgid "Set of additional skins for Shortcodes Ultimate. It includes skins for accordeons/spoilers, tabs and some other shortcodes"
|
| 2177 |
+
msgstr "Shortcodes Ultimateのための追加のスキンセット。アコーディオン/スポイラー、タブや他のいくつかのショートコードのスキンが含まれています"
|
|
|
|
|
|
|
|
|
|
| 2178 |
|
| 2179 |
msgid "Square"
|
| 2180 |
msgstr "正方形"
|
| 2285 |
msgstr "スライダー、カルーセル、カスタムギャラリーのショートコードでスライドにカスタムリンクを追加するには、このフィールドを使用します。"
|
| 2286 |
|
| 2287 |
msgid "Shortcodes Ultimate - must have WordPress plugin #shortcodesultimate"
|
| 2288 |
+
msgstr "Shortcodes Ultimate - WordPressのプラグイン #shortcodesultimate が必要です。"
|
| 2289 |
|
| 2290 |
msgid "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"
|
| 2291 |
msgstr "このタブのユニークなアンカーを使用するには、ページURLのハッシュにアクセスします。例: <b%value>Hello</b>とここに入力し、http://example.com/page-url#HelloのようなURLを使用します。このタブがアクティブになりにスクロールします。"
|
| 2334 |
|
| 2335 |
msgid "Shortcode"
|
| 2336 |
msgstr "ショートコード"
|
| 2337 |
+
|
| 2338 |
+
msgid "Advanced QR code generator"
|
| 2339 |
+
msgstr "高度なQRコードジェネレータ"
|
| 2340 |
+
|
| 2341 |
+
msgid "Choose image alignment"
|
| 2342 |
+
msgstr "画像の位置を選択"
|
| 2343 |
+
|
| 2344 |
+
msgid "Enter here short description. This text will be used in alt attribute of QR code"
|
| 2345 |
+
msgstr "ここに簡単な説明を入力します。このテキストはQRコードのalt属性で使用します。"
|
| 2346 |
+
|
| 2347 |
+
msgid "Image width and height (in pixels)"
|
| 2348 |
+
msgstr "画像の幅と高さ (ピクセル)"
|
| 2349 |
+
|
| 2350 |
+
msgid "Link target"
|
| 2351 |
+
msgstr "リンクターゲット"
|
| 2352 |
+
|
| 2353 |
+
msgid "Open link in new window/tab"
|
| 2354 |
+
msgstr "新しいウィンドウ/タブでリンクを開く"
|
| 2355 |
+
|
| 2356 |
+
msgid "Open link in same window/tab"
|
| 2357 |
+
msgstr "同じウィンドウ/タブでリンクを開く"
|
| 2358 |
+
|
| 2359 |
+
msgid "Pick a background color"
|
| 2360 |
+
msgstr "背景色を選択"
|
| 2361 |
+
|
| 2362 |
+
msgid "Pick a primary color"
|
| 2363 |
+
msgstr "原色を選択"
|
| 2364 |
+
|
| 2365 |
+
msgid "please specify the data"
|
| 2366 |
+
msgstr "データを指定してください"
|
| 2367 |
+
|
| 2368 |
+
msgid "Primary color"
|
| 2369 |
+
msgstr "原色"
|
| 2370 |
+
|
| 2371 |
+
msgid "QR code"
|
| 2372 |
+
msgstr "QRコード"
|
| 2373 |
+
|
| 2374 |
+
msgid "Select link target"
|
| 2375 |
+
msgstr "リンクターゲットを選択"
|
| 2376 |
+
|
| 2377 |
+
msgid "The text to store within the QR code. You can use here any text or even URL"
|
| 2378 |
+
msgstr "QRコード内に格納するテキストです。任意のテキスト、またはURLが使用可能です。"
|
| 2379 |
+
|
| 2380 |
+
msgid "Thickness of a margin (in pixels)"
|
| 2381 |
+
msgstr " マージンの厚み (ピクセル単位)"
|
| 2382 |
+
|
| 2383 |
+
msgid "You can make this QR code clickable. Enter here the URL"
|
| 2384 |
+
msgstr "このQRコードをクリック可能にすることができます。URLを入力してください。"
|
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: 2014-
|
| 6 |
-
"PO-Revision-Date: 2014-
|
| 7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
| 8 |
"Language-Team: \n"
|
| 9 |
"Language: ru_RU\n"
|
|
@@ -317,7 +317,7 @@ msgstr ""
|
|
| 317 |
"Этот шорткод не работает в режиме предпросмотра. Пожалуйста вставьте шорткод "
|
| 318 |
"в редактор и посмотрите результат на странице записи."
|
| 319 |
|
| 320 |
-
#: inc/core/counters.php:45
|
| 321 |
msgid "1 new add-on for Shortcodes Ultimate"
|
| 322 |
msgstr "1 новое дополнение для плагина Шорткоды"
|
| 323 |
|
|
@@ -325,11 +325,11 @@ msgstr "1 новое дополнение для плагина Шорткоды
|
|
| 325 |
msgid "All"
|
| 326 |
msgstr "Все"
|
| 327 |
|
| 328 |
-
#: inc/core/data.php:18 inc/core/generator.php:
|
| 329 |
msgid "Content"
|
| 330 |
msgstr "Содержимое"
|
| 331 |
|
| 332 |
-
#: inc/core/data.php:19 inc/core/data.php:
|
| 333 |
msgid "Box"
|
| 334 |
msgstr "Блок"
|
| 335 |
|
|
@@ -337,11 +337,11 @@ msgstr "Блок"
|
|
| 337 |
msgid "Media"
|
| 338 |
msgstr "Медиа"
|
| 339 |
|
| 340 |
-
#: inc/core/data.php:21 inc/core/data.php:
|
| 341 |
msgid "Gallery"
|
| 342 |
msgstr "Галерея"
|
| 343 |
|
| 344 |
-
#: inc/core/data.php:22 inc/core/data.php:
|
| 345 |
msgid "Data"
|
| 346 |
msgstr "Данные"
|
| 347 |
|
|
@@ -349,8 +349,8 @@ msgstr "Данные"
|
|
| 349 |
msgid "Other"
|
| 350 |
msgstr "Другое"
|
| 351 |
|
| 352 |
-
#: inc/core/data.php:32 inc/core/data.php:
|
| 353 |
-
#: inc/core/data.php:
|
| 354 |
msgid "None"
|
| 355 |
msgstr "Нет"
|
| 356 |
|
|
@@ -358,15 +358,15 @@ msgstr "Нет"
|
|
| 358 |
msgid "Solid"
|
| 359 |
msgstr "Сплошной"
|
| 360 |
|
| 361 |
-
#: inc/core/data.php:34
|
| 362 |
msgid "Dotted"
|
| 363 |
msgstr "Пунктирный (точки)"
|
| 364 |
|
| 365 |
-
#: inc/core/data.php:35
|
| 366 |
msgid "Dashed"
|
| 367 |
msgstr "Пунктирный (тире)"
|
| 368 |
|
| 369 |
-
#: inc/core/data.php:36
|
| 370 |
msgid "Double"
|
| 371 |
msgstr "Двойной"
|
| 372 |
|
|
@@ -425,16 +425,17 @@ msgstr "Вложенные шорткоды, шорткоды в атрибут
|
|
| 425 |
msgid "Heading"
|
| 426 |
msgstr "Заголовок"
|
| 427 |
|
| 428 |
-
#: inc/core/data.php:136 inc/core/data.php:190 inc/core/data.php:
|
| 429 |
-
#: inc/core/data.php:
|
| 430 |
-
#: inc/core/data.php:
|
| 431 |
-
#: inc/core/data.php:
|
|
|
|
| 432 |
msgid "Default"
|
| 433 |
msgstr "По умолчанию"
|
| 434 |
|
| 435 |
-
#: inc/core/data.php:139 inc/core/data.php:193 inc/core/data.php:
|
| 436 |
-
#: inc/core/data.php:
|
| 437 |
-
#: inc/core/data.php:
|
| 438 |
msgid "Style"
|
| 439 |
msgstr "Стиль"
|
| 440 |
|
|
@@ -442,13 +443,13 @@ msgstr "Стиль"
|
|
| 442 |
msgid "Choose style for this heading"
|
| 443 |
msgstr "Выберите стиль для этого заголовка"
|
| 444 |
|
| 445 |
-
#: inc/core/data.php:140 inc/core/data.php:194 inc/core/data.php:
|
| 446 |
-
#: inc/core/data.php:
|
| 447 |
msgid "Install additional styles"
|
| 448 |
msgstr "Установить дополнительные стили"
|
| 449 |
|
| 450 |
-
#: inc/core/data.php:148 inc/core/data.php:
|
| 451 |
-
#: inc/core/data.php:
|
| 452 |
msgid "Size"
|
| 453 |
msgstr "Размер"
|
| 454 |
|
|
@@ -456,23 +457,23 @@ msgstr "Размер"
|
|
| 456 |
msgid "Select heading size (pixels)"
|
| 457 |
msgstr "Выберите размер заголовка (в пикселях)"
|
| 458 |
|
| 459 |
-
#: inc/core/data.php:154 inc/core/data.php:
|
| 460 |
-
#: inc/core/data.php:
|
| 461 |
msgid "Left"
|
| 462 |
msgstr "Слева"
|
| 463 |
|
| 464 |
-
#: inc/core/data.php:155 inc/core/data.php:
|
| 465 |
-
#: inc/core/data.php:
|
| 466 |
msgid "Center"
|
| 467 |
msgstr "По центру"
|
| 468 |
|
| 469 |
-
#: inc/core/data.php:156 inc/core/data.php:
|
| 470 |
-
#: inc/core/data.php:
|
| 471 |
msgid "Right"
|
| 472 |
msgstr "Справа"
|
| 473 |
|
| 474 |
-
#: inc/core/data.php:159 inc/core/data.php:
|
| 475 |
-
#: inc/core/data.php:
|
| 476 |
msgid "Align"
|
| 477 |
msgstr "Выравнивание"
|
| 478 |
|
|
@@ -480,7 +481,7 @@ msgstr "Выравнивание"
|
|
| 480 |
msgid "Heading text alignment"
|
| 481 |
msgstr "Выравнивание текста в заголовке"
|
| 482 |
|
| 483 |
-
#: inc/core/data.php:168 inc/core/data.php:
|
| 484 |
msgid "Margin"
|
| 485 |
msgstr "Отступ"
|
| 486 |
|
|
@@ -489,40 +490,40 @@ msgid "Bottom margin (pixels)"
|
|
| 489 |
msgstr "Отступ снизу (в пикселях)"
|
| 490 |
|
| 491 |
#: inc/core/data.php:173 inc/core/data.php:213 inc/core/data.php:246
|
| 492 |
-
#: inc/core/data.php:
|
| 493 |
-
#: inc/core/data.php:
|
| 494 |
-
#: inc/core/data.php:
|
| 495 |
-
#: inc/core/data.php:
|
| 496 |
-
#: inc/core/data.php:
|
| 497 |
-
#: inc/core/data.php:
|
| 498 |
-
#: inc/core/data.php:
|
| 499 |
-
#: inc/core/data.php:
|
| 500 |
-
#: inc/core/data.php:
|
| 501 |
-
#: inc/core/data.php:
|
| 502 |
-
#: inc/core/data.php:
|
| 503 |
-
#: inc/core/data.php:
|
| 504 |
-
#: inc/core/data.php:
|
| 505 |
-
#: inc/core/data.php:
|
| 506 |
-
#: inc/core/data.php:
|
| 507 |
msgid "Class"
|
| 508 |
msgstr "Класс"
|
| 509 |
|
| 510 |
#: inc/core/data.php:174 inc/core/data.php:214 inc/core/data.php:247
|
| 511 |
-
#: inc/core/data.php:
|
| 512 |
-
#: inc/core/data.php:
|
| 513 |
-
#: inc/core/data.php:
|
| 514 |
-
#: inc/core/data.php:
|
| 515 |
-
#: inc/core/data.php:
|
| 516 |
-
#: inc/core/data.php:
|
| 517 |
-
#: inc/core/data.php:
|
| 518 |
-
#: inc/core/data.php:
|
| 519 |
-
#: inc/core/data.php:
|
| 520 |
-
#: inc/core/data.php:
|
| 521 |
-
#: inc/core/data.php:
|
| 522 |
-
#: inc/core/data.php:
|
| 523 |
-
#: inc/core/data.php:
|
| 524 |
-
#: inc/core/data.php:
|
| 525 |
-
#: inc/core/data.php:
|
| 526 |
msgid "Extra CSS class"
|
| 527 |
msgstr "Дополнительный CSS класс"
|
| 528 |
|
|
@@ -580,8 +581,8 @@ msgstr "Вкладка"
|
|
| 580 |
msgid "Tab name"
|
| 581 |
msgstr "Имя вкладки"
|
| 582 |
|
| 583 |
-
#: inc/core/data.php:230 inc/core/data.php:
|
| 584 |
-
#: inc/core/data.php:
|
| 585 |
msgid "Title"
|
| 586 |
msgstr "Заголовок"
|
| 587 |
|
|
@@ -597,7 +598,7 @@ msgstr "Отключено"
|
|
| 597 |
msgid "Is this tab disabled"
|
| 598 |
msgstr "Эта вкладка отключена"
|
| 599 |
|
| 600 |
-
#: inc/core/data.php:241 inc/core/data.php:
|
| 601 |
msgid "Anchor"
|
| 602 |
msgstr "Якорь"
|
| 603 |
|
|
@@ -620,100 +621,106 @@ msgstr "Содержимое вкладки"
|
|
| 620 |
msgid "Single tab"
|
| 621 |
msgstr "Одиночная вкладка"
|
| 622 |
|
| 623 |
-
#: inc/core/data.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 624 |
msgid "Spoiler"
|
| 625 |
msgstr "Спойлер"
|
| 626 |
|
| 627 |
-
#: inc/core/data.php:
|
| 628 |
msgid "Spoiler title"
|
| 629 |
msgstr "Скрытый текст"
|
| 630 |
|
| 631 |
-
#: inc/core/data.php:
|
| 632 |
msgid "Text in spoiler title"
|
| 633 |
msgstr "Текст для заголовка спойлера"
|
| 634 |
|
| 635 |
-
#: inc/core/data.php:
|
| 636 |
msgid "Open"
|
| 637 |
msgstr "Открыт"
|
| 638 |
|
| 639 |
-
#: inc/core/data.php:
|
| 640 |
msgid "Is spoiler content visible by default"
|
| 641 |
msgstr "Виден ли контент спойлера по умолчанию"
|
| 642 |
|
| 643 |
-
#: inc/core/data.php:
|
| 644 |
msgid "Fancy"
|
| 645 |
msgstr "Стильный"
|
| 646 |
|
| 647 |
-
#: inc/core/data.php:
|
| 648 |
msgid "Simple"
|
| 649 |
msgstr "Простой"
|
| 650 |
|
| 651 |
-
#: inc/core/data.php:
|
| 652 |
msgid "Choose style for this spoiler"
|
| 653 |
msgstr "Выберите стиль для этого спойлера"
|
| 654 |
|
| 655 |
-
#: inc/core/data.php:
|
| 656 |
msgid "Plus"
|
| 657 |
msgstr "Плюс"
|
| 658 |
|
| 659 |
-
#: inc/core/data.php:
|
| 660 |
msgid "Plus circle"
|
| 661 |
msgstr "Плюс в круге"
|
| 662 |
|
| 663 |
-
#: inc/core/data.php:
|
| 664 |
msgid "Plus square 1"
|
| 665 |
msgstr "Плюс в квадрате 1"
|
| 666 |
|
| 667 |
-
#: inc/core/data.php:
|
| 668 |
msgid "Plus square 2"
|
| 669 |
msgstr "Плюс в квадрате 2"
|
| 670 |
|
| 671 |
-
#: inc/core/data.php:
|
| 672 |
msgid "Arrow"
|
| 673 |
msgstr "Стрелка"
|
| 674 |
|
| 675 |
-
#: inc/core/data.php:
|
| 676 |
msgid "Arrow circle 1"
|
| 677 |
msgstr "Стрелка в круге 1"
|
| 678 |
|
| 679 |
-
#: inc/core/data.php:
|
| 680 |
msgid "Arrow circle 2"
|
| 681 |
msgstr "Стрелка в круге 2"
|
| 682 |
|
| 683 |
-
#: inc/core/data.php:
|
| 684 |
msgid "Chevron"
|
| 685 |
msgstr "Уголок"
|
| 686 |
|
| 687 |
-
#: inc/core/data.php:
|
| 688 |
msgid "Chevron circle"
|
| 689 |
msgstr "Уголок в круге"
|
| 690 |
|
| 691 |
-
#: inc/core/data.php:
|
| 692 |
msgid "Caret"
|
| 693 |
msgstr "Треугольник"
|
| 694 |
|
| 695 |
-
#: inc/core/data.php:
|
| 696 |
msgid "Caret square"
|
| 697 |
msgstr "Треугольник в квадрате"
|
| 698 |
|
| 699 |
-
#: inc/core/data.php:
|
| 700 |
msgid "Folder 1"
|
| 701 |
msgstr "Папка 1"
|
| 702 |
|
| 703 |
-
#: inc/core/data.php:
|
| 704 |
msgid "Folder 2"
|
| 705 |
msgstr "Папка 2"
|
| 706 |
|
| 707 |
-
#: inc/core/data.php:
|
| 708 |
-
#: inc/core/data.php:
|
| 709 |
msgid "Icon"
|
| 710 |
msgstr "Иконка"
|
| 711 |
|
| 712 |
-
#: inc/core/data.php:
|
| 713 |
msgid "Icons for spoiler"
|
| 714 |
msgstr "Иконка для спойлера"
|
| 715 |
|
| 716 |
-
#: inc/core/data.php:
|
| 717 |
msgid ""
|
| 718 |
"You can use unique anchor for this spoiler to access it with hash in page "
|
| 719 |
"url. For example: type here <b%value>Hello</b> and then use url like http://"
|
|
@@ -724,15 +731,15 @@ msgstr ""
|
|
| 724 |
"используйте ссылку вида http://example.com/page-utl#Hello. Этот спойлер "
|
| 725 |
"будет открыт и страница будет прокручена к нему"
|
| 726 |
|
| 727 |
-
#: inc/core/data.php:
|
| 728 |
msgid "Hidden content"
|
| 729 |
msgstr "Скрытое содержимое"
|
| 730 |
|
| 731 |
-
#: inc/core/data.php:
|
| 732 |
msgid "Spoiler with hidden content"
|
| 733 |
msgstr "Спойлер со скрытым содержимым"
|
| 734 |
|
| 735 |
-
#: inc/core/data.php:
|
| 736 |
msgid ""
|
| 737 |
"Did you know that you can wrap multiple spoilers with [accordion] shortcode "
|
| 738 |
"to create accordion effect?"
|
|
@@ -740,11 +747,11 @@ msgstr ""
|
|
| 740 |
"Знаете ли вы что вы можете обернуть несколько спойлеров в шорткод "
|
| 741 |
"[accordion] чтобы создать эффект аккордеона?"
|
| 742 |
|
| 743 |
-
#: inc/core/data.php:
|
| 744 |
msgid "Accordion"
|
| 745 |
msgstr "Аккордеон"
|
| 746 |
|
| 747 |
-
#: inc/core/data.php:
|
| 748 |
msgid ""
|
| 749 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
| 750 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
|
@@ -754,195 +761,224 @@ msgstr ""
|
|
| 754 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]\n"
|
| 755 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]"
|
| 756 |
|
| 757 |
-
#: inc/core/data.php:
|
| 758 |
msgid "Accordion with spoilers"
|
| 759 |
msgstr "Аккордеон со спойлерами"
|
| 760 |
|
| 761 |
-
#: inc/core/data.php:
|
| 762 |
msgid "Divider"
|
| 763 |
msgstr "Разделитель"
|
| 764 |
|
| 765 |
-
#: inc/core/data.php:
|
| 766 |
msgid "Show TOP link"
|
| 767 |
msgstr "Показать ссылку ВВЕРХ"
|
| 768 |
|
| 769 |
-
#: inc/core/data.php:
|
| 770 |
msgid "Show link to top of the page or not"
|
| 771 |
msgstr "Показывать ссылку ВВЕРХ или нет"
|
| 772 |
|
| 773 |
-
#: inc/core/data.php:
|
| 774 |
msgid "Go to top"
|
| 775 |
msgstr "Вверх"
|
| 776 |
|
| 777 |
-
#: inc/core/data.php:
|
| 778 |
msgid "Link text"
|
| 779 |
msgstr "Текст ссылки"
|
| 780 |
|
| 781 |
-
#: inc/core/data.php:
|
| 782 |
msgid "Text for the GO TOP link"
|
| 783 |
msgstr "Текст ссылки ВВЕРХ"
|
| 784 |
|
| 785 |
-
#: inc/core/data.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 786 |
msgid "Content divider with optional TOP link"
|
| 787 |
msgstr "Разделитель текста со ссылкой ВВЕРХ"
|
| 788 |
|
| 789 |
-
#: inc/core/data.php:
|
| 790 |
msgid "Spacer"
|
| 791 |
msgstr "Пробел"
|
| 792 |
|
| 793 |
-
#: inc/core/data.php:
|
| 794 |
-
#: inc/core/data.php:
|
| 795 |
-
#: inc/core/data.php:
|
| 796 |
-
#: inc/core/data.php:
|
| 797 |
-
#: inc/core/data.php:
|
| 798 |
msgid "Height"
|
| 799 |
msgstr "Высота"
|
| 800 |
|
| 801 |
-
#: inc/core/data.php:
|
| 802 |
msgid "Height of the spacer in pixels"
|
| 803 |
msgstr "Высота пробела в пикселях"
|
| 804 |
|
| 805 |
-
#: inc/core/data.php:
|
| 806 |
msgid "Empty space with adjustable height"
|
| 807 |
msgstr "Пробел с настраиваемой высотой"
|
| 808 |
|
| 809 |
-
#: inc/core/data.php:
|
| 810 |
msgid "Highlight"
|
| 811 |
msgstr "Выделитель"
|
| 812 |
|
| 813 |
-
#: inc/core/data.php:
|
| 814 |
msgid "Background"
|
| 815 |
msgstr "Фон"
|
| 816 |
|
| 817 |
-
#: inc/core/data.php:
|
| 818 |
msgid "Highlighted text background color"
|
| 819 |
msgstr "Цвет фона выделяемого текста"
|
| 820 |
|
| 821 |
-
#: inc/core/data.php:
|
|
|
|
| 822 |
msgid "Text color"
|
| 823 |
msgstr "Цвет текста"
|
| 824 |
|
| 825 |
-
#: inc/core/data.php:
|
| 826 |
msgid "Highlighted text color"
|
| 827 |
msgstr "Цвет выделяемого текста"
|
| 828 |
|
| 829 |
-
#: inc/core/data.php:
|
| 830 |
msgid "Highlighted text"
|
| 831 |
msgstr "Подсвеченный текст"
|
| 832 |
|
| 833 |
-
#: inc/core/data.php:
|
| 834 |
msgid "Label"
|
| 835 |
msgstr "Ярлык"
|
| 836 |
|
| 837 |
-
#: inc/core/data.php:
|
| 838 |
msgid "Success"
|
| 839 |
msgstr "Успех"
|
| 840 |
|
| 841 |
-
#: inc/core/data.php:
|
| 842 |
msgid "Warning"
|
| 843 |
msgstr "Внимание"
|
| 844 |
|
| 845 |
-
#: inc/core/data.php:
|
| 846 |
msgid "Important"
|
| 847 |
msgstr "Важно"
|
| 848 |
|
| 849 |
-
#: inc/core/data.php:
|
| 850 |
msgid "Black"
|
| 851 |
msgstr "Черный"
|
| 852 |
|
| 853 |
-
#: inc/core/data.php:
|
| 854 |
msgid "Info"
|
| 855 |
msgstr "Инфо"
|
| 856 |
|
| 857 |
-
#: inc/core/data.php:
|
| 858 |
msgid "Type"
|
| 859 |
msgstr "Тип"
|
| 860 |
|
| 861 |
-
#: inc/core/data.php:
|
| 862 |
msgid "Style of the label"
|
| 863 |
msgstr "Стиль ярлыка"
|
| 864 |
|
| 865 |
-
#: inc/core/data.php:
|
| 866 |
msgid "Styled label"
|
| 867 |
msgstr "Стильный ярлык"
|
| 868 |
|
| 869 |
-
#: inc/core/data.php:
|
| 870 |
msgid "Quote"
|
| 871 |
msgstr "Цитата"
|
| 872 |
|
| 873 |
-
#: inc/core/data.php:
|
| 874 |
msgid "Choose style for this quote"
|
| 875 |
msgstr "Выберите стиль для этой цитаты"
|
| 876 |
|
| 877 |
-
#: inc/core/data.php:
|
| 878 |
msgid "Cite"
|
| 879 |
msgstr "Автор"
|
| 880 |
|
| 881 |
-
#: inc/core/data.php:
|
| 882 |
msgid "Quote author name"
|
| 883 |
msgstr "Имя автора цитаты"
|
| 884 |
|
| 885 |
-
#: inc/core/data.php:
|
| 886 |
msgid "Cite url"
|
| 887 |
msgstr "Ссылка автора"
|
| 888 |
|
| 889 |
-
#: inc/core/data.php:
|
| 890 |
msgid "Url of the quote author. Leave empty to disable link"
|
| 891 |
msgstr "Ссылка автора цитаты. Оставьте пустым, чтобы отключить ссылку"
|
| 892 |
|
| 893 |
-
#: inc/core/data.php:
|
| 894 |
msgid "Blockquote alternative"
|
| 895 |
msgstr "Альтернатива цитаты"
|
| 896 |
|
| 897 |
-
#: inc/core/data.php:
|
| 898 |
msgid "Pullquote"
|
| 899 |
msgstr "Цитата с обтеканием"
|
| 900 |
|
| 901 |
-
#: inc/core/data.php:
|
| 902 |
msgid "Pullquote alignment (float)"
|
| 903 |
msgstr "Выравнивание цитаты (обтекание)"
|
| 904 |
|
| 905 |
-
#: inc/core/data.php:
|
| 906 |
msgid "Dropcap"
|
| 907 |
msgstr "Буквица"
|
| 908 |
|
| 909 |
-
#: inc/core/data.php:
|
| 910 |
msgid "Flat"
|
| 911 |
msgstr "Плоский"
|
| 912 |
|
| 913 |
-
#: inc/core/data.php:
|
| 914 |
msgid "Light"
|
| 915 |
msgstr "Светлый"
|
| 916 |
|
| 917 |
-
#: inc/core/data.php:
|
| 918 |
msgid "Dropcap style preset"
|
| 919 |
msgstr "Стиль буквицы"
|
| 920 |
|
| 921 |
-
#: inc/core/data.php:
|
| 922 |
msgid "Choose dropcap size"
|
| 923 |
msgstr "Выберите размер буквицы"
|
| 924 |
|
| 925 |
-
#: inc/core/data.php:
|
| 926 |
msgid "D"
|
| 927 |
msgstr "D"
|
| 928 |
|
| 929 |
-
#: inc/core/data.php:
|
| 930 |
msgid "Frame"
|
| 931 |
msgstr "Рамка"
|
| 932 |
|
| 933 |
-
#: inc/core/data.php:
|
| 934 |
msgid "Frame alignment"
|
| 935 |
msgstr "Выравнивание рамки"
|
| 936 |
|
| 937 |
-
#: inc/core/data.php:
|
| 938 |
msgid "Styled image frame"
|
| 939 |
msgstr "Стильный рамка изображения"
|
| 940 |
|
| 941 |
-
#: inc/core/data.php:
|
| 942 |
msgid "Row"
|
| 943 |
msgstr "Колонки"
|
| 944 |
|
| 945 |
-
#: inc/core/data.php:
|
| 946 |
msgid ""
|
| 947 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
| 948 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
|
@@ -952,100 +988,100 @@ msgstr ""
|
|
| 952 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]\n"
|
| 953 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]"
|
| 954 |
|
| 955 |
-
#: inc/core/data.php:
|
| 956 |
msgid "Row for flexible columns"
|
| 957 |
msgstr "Контейнер с резиновыми колонками"
|
| 958 |
|
| 959 |
-
#: inc/core/data.php:
|
| 960 |
msgid "Column"
|
| 961 |
msgstr "Колонка"
|
| 962 |
|
| 963 |
-
#: inc/core/data.php:
|
| 964 |
msgid "Full width"
|
| 965 |
msgstr "Во всю ширину"
|
| 966 |
|
| 967 |
-
#: inc/core/data.php:
|
| 968 |
msgid "One half"
|
| 969 |
msgstr "Одна вторая"
|
| 970 |
|
| 971 |
-
#: inc/core/data.php:
|
| 972 |
msgid "One third"
|
| 973 |
msgstr "Одна третья"
|
| 974 |
|
| 975 |
-
#: inc/core/data.php:
|
| 976 |
msgid "Two third"
|
| 977 |
msgstr "Две трети"
|
| 978 |
|
| 979 |
-
#: inc/core/data.php:
|
| 980 |
msgid "One fourth"
|
| 981 |
msgstr "Одна четвертая"
|
| 982 |
|
| 983 |
-
#: inc/core/data.php:
|
| 984 |
msgid "Three fourth"
|
| 985 |
msgstr "Три четвертых"
|
| 986 |
|
| 987 |
-
#: inc/core/data.php:
|
| 988 |
msgid "One fifth"
|
| 989 |
msgstr "Одна пятая"
|
| 990 |
|
| 991 |
-
#: inc/core/data.php:
|
| 992 |
msgid "Two fifth"
|
| 993 |
msgstr "Две пятых"
|
| 994 |
|
| 995 |
-
#: inc/core/data.php:
|
| 996 |
msgid "Three fifth"
|
| 997 |
msgstr "Три пятых"
|
| 998 |
|
| 999 |
-
#: inc/core/data.php:
|
| 1000 |
msgid "Four fifth"
|
| 1001 |
msgstr "Четыре пятых"
|
| 1002 |
|
| 1003 |
-
#: inc/core/data.php:
|
| 1004 |
msgid "One sixth"
|
| 1005 |
msgstr "Одна шестая"
|
| 1006 |
|
| 1007 |
-
#: inc/core/data.php:
|
| 1008 |
msgid "Five sixth"
|
| 1009 |
msgstr "Пять шестых"
|
| 1010 |
|
| 1011 |
-
#: inc/core/data.php:
|
| 1012 |
msgid "Select column width. This width will be calculated depend page width"
|
| 1013 |
msgstr ""
|
| 1014 |
"Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
|
| 1015 |
|
| 1016 |
-
#: inc/core/data.php:
|
| 1017 |
msgid "Centered"
|
| 1018 |
msgstr "По центру"
|
| 1019 |
|
| 1020 |
-
#: inc/core/data.php:
|
| 1021 |
msgid "Is this column centered on the page"
|
| 1022 |
msgstr "Колонка выровнена по центру страницы"
|
| 1023 |
|
| 1024 |
-
#: inc/core/data.php:
|
| 1025 |
msgid "Column content"
|
| 1026 |
msgstr "Содержимое колонки"
|
| 1027 |
|
| 1028 |
-
#: inc/core/data.php:
|
| 1029 |
msgid "Flexible and responsive columns"
|
| 1030 |
msgstr "Резновые колонки"
|
| 1031 |
|
| 1032 |
-
#: inc/core/data.php:
|
| 1033 |
msgid "Did you know that you need to wrap columns with [row] shortcode?"
|
| 1034 |
msgstr "Знаете ли вы что несколько колонок нужно оборачивать в шорткод [row]?"
|
| 1035 |
|
| 1036 |
-
#: inc/core/data.php:
|
| 1037 |
msgid "List"
|
| 1038 |
msgstr "Список"
|
| 1039 |
|
| 1040 |
-
#: inc/core/data.php:
|
| 1041 |
msgid "You can upload custom icon for this list or pick a built-in icon"
|
| 1042 |
msgstr "Вы можете загрузить свою иконку для этого списка или выбрать из списка"
|
| 1043 |
|
| 1044 |
-
#: inc/core/data.php:
|
| 1045 |
msgid "Icon color"
|
| 1046 |
msgstr "Цвет иконки"
|
| 1047 |
|
| 1048 |
-
#: inc/core/data.php:
|
| 1049 |
msgid ""
|
| 1050 |
"This color will be applied to the selected icon. Does not works with "
|
| 1051 |
"uploaded icons"
|
|
@@ -1053,7 +1089,7 @@ msgstr ""
|
|
| 1053 |
"Этот цвет будет применен только к иконке выбранной из списка. Не работает "
|
| 1054 |
"для загруженных иконок"
|
| 1055 |
|
| 1056 |
-
#: inc/core/data.php:
|
| 1057 |
msgid ""
|
| 1058 |
"<ul>\n"
|
| 1059 |
"<li>List item</li>\n"
|
|
@@ -1067,280 +1103,386 @@ msgstr ""
|
|
| 1067 |
"<li>Элемент списка</li>\n"
|
| 1068 |
"</ul>"
|
| 1069 |
|
| 1070 |
-
#: inc/core/data.php:
|
| 1071 |
msgid "Styled unordered list"
|
| 1072 |
msgstr "Стильный неупорядоченный список"
|
| 1073 |
|
| 1074 |
-
#: inc/core/data.php:
|
| 1075 |
msgid "Button"
|
| 1076 |
msgstr "Кнопка"
|
| 1077 |
|
| 1078 |
-
#: inc/core/data.php:
|
| 1079 |
msgid "Link"
|
| 1080 |
msgstr "Ссылка"
|
| 1081 |
|
| 1082 |
-
#: inc/core/data.php:
|
| 1083 |
msgid "Button link"
|
| 1084 |
msgstr "Ссылка кнопки"
|
| 1085 |
|
| 1086 |
-
#: inc/core/data.php:
|
| 1087 |
msgid "Same tab"
|
| 1088 |
msgstr "Та же вкладка"
|
| 1089 |
|
| 1090 |
-
#: inc/core/data.php:
|
| 1091 |
msgid "New tab"
|
| 1092 |
msgstr "Новая вкладка"
|
| 1093 |
|
| 1094 |
-
#: inc/core/data.php:
|
| 1095 |
msgid "Target"
|
| 1096 |
msgstr "Цель"
|
| 1097 |
|
| 1098 |
-
#: inc/core/data.php:
|
| 1099 |
msgid "Button link target"
|
| 1100 |
msgstr "Цель ссылки кнопки"
|
| 1101 |
|
| 1102 |
-
#: inc/core/data.php:
|
| 1103 |
msgid "Ghost"
|
| 1104 |
msgstr "Призрак"
|
| 1105 |
|
| 1106 |
-
#: inc/core/data.php:
|
| 1107 |
msgid "Soft"
|
| 1108 |
msgstr "Мягкий"
|
| 1109 |
|
| 1110 |
-
#: inc/core/data.php:
|
| 1111 |
msgid "Glass"
|
| 1112 |
msgstr "Стекло"
|
| 1113 |
|
| 1114 |
-
#: inc/core/data.php:
|
| 1115 |
msgid "Bubbles"
|
| 1116 |
msgstr "Пузыри"
|
| 1117 |
|
| 1118 |
-
#: inc/core/data.php:
|
| 1119 |
msgid "Noise"
|
| 1120 |
msgstr "Шум"
|
| 1121 |
|
| 1122 |
-
#: inc/core/data.php:
|
| 1123 |
msgid "Stroked"
|
| 1124 |
msgstr "Прошитый"
|
| 1125 |
|
| 1126 |
-
#: inc/core/data.php:
|
| 1127 |
msgid "3D"
|
| 1128 |
msgstr "3D"
|
| 1129 |
|
| 1130 |
-
#: inc/core/data.php:
|
| 1131 |
msgid "Button background style preset"
|
| 1132 |
msgstr "Стиль фона кнопки"
|
| 1133 |
|
| 1134 |
-
#: inc/core/data.php:
|
| 1135 |
msgid "Button background color"
|
| 1136 |
msgstr "Цвет фона кнопки"
|
| 1137 |
|
| 1138 |
-
#: inc/core/data.php:
|
| 1139 |
msgid "Button text color"
|
| 1140 |
msgstr "Цвет текста кнопки"
|
| 1141 |
|
| 1142 |
-
#: inc/core/data.php:
|
| 1143 |
msgid "Button size"
|
| 1144 |
msgstr "Размер кнопки"
|
| 1145 |
|
| 1146 |
-
#: inc/core/data.php:
|
| 1147 |
msgid "Fluid"
|
| 1148 |
msgstr "Резиновая"
|
| 1149 |
|
| 1150 |
-
#: inc/core/data.php:
|
| 1151 |
msgid "Fluid buttons has 100% width"
|
| 1152 |
msgstr "Резиновые кнопки имеют ширину 100%"
|
| 1153 |
|
| 1154 |
-
#: inc/core/data.php:
|
| 1155 |
msgid "Is button centered on the page"
|
| 1156 |
msgstr "Кнопка выровнена по центру страницы"
|
| 1157 |
|
| 1158 |
-
#: inc/core/data.php:
|
| 1159 |
msgid "Auto"
|
| 1160 |
msgstr "Авто"
|
| 1161 |
|
| 1162 |
-
#: inc/core/data.php:
|
| 1163 |
msgid "Round"
|
| 1164 |
msgstr "Круглый"
|
| 1165 |
|
| 1166 |
-
#: inc/core/data.php:
|
| 1167 |
msgid "Square"
|
| 1168 |
msgstr "Квадратный"
|
| 1169 |
|
| 1170 |
-
#: inc/core/data.php:
|
| 1171 |
msgid "Radius"
|
| 1172 |
msgstr "Радиус"
|
| 1173 |
|
| 1174 |
-
#: inc/core/data.php:
|
| 1175 |
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
| 1176 |
msgstr ""
|
| 1177 |
"Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
|
| 1178 |
|
| 1179 |
-
#: inc/core/data.php:
|
| 1180 |
msgid "You can upload custom icon for this button or pick a built-in icon"
|
| 1181 |
msgstr "Вы можете загрузить свою иконку для этой кнопки или выбрать из списка"
|
| 1182 |
|
| 1183 |
-
#: inc/core/data.php:
|
| 1184 |
msgid "Text shadow"
|
| 1185 |
msgstr "Тень текста"
|
| 1186 |
|
| 1187 |
-
#: inc/core/data.php:
|
| 1188 |
msgid "Button text shadow"
|
| 1189 |
msgstr "Тень текста на кнопке"
|
| 1190 |
|
| 1191 |
-
#: inc/core/data.php:
|
| 1192 |
msgid "Description"
|
| 1193 |
msgstr "Описание"
|
| 1194 |
|
| 1195 |
-
#: inc/core/data.php:
|
| 1196 |
msgid ""
|
| 1197 |
"Small description under button text. This option is incompatible with icon."
|
| 1198 |
msgstr ""
|
| 1199 |
"Небольшое описание под текстом кнопки. Это описание не совместимо с иконками "
|
| 1200 |
"кнопок."
|
| 1201 |
|
| 1202 |
-
#: inc/core/data.php:
|
| 1203 |
msgid "onClick"
|
| 1204 |
msgstr "onClick"
|
| 1205 |
|
| 1206 |
-
#: inc/core/data.php:
|
| 1207 |
msgid "Advanced JavaScript code for onClick action"
|
| 1208 |
msgstr "JavaScript код для атрибута onClick"
|
| 1209 |
|
| 1210 |
-
#: inc/core/data.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1211 |
msgid "Button text"
|
| 1212 |
msgstr "Текст кнопки"
|
| 1213 |
|
| 1214 |
-
#: inc/core/data.php:
|
| 1215 |
msgid "Styled button"
|
| 1216 |
msgstr "Стильная кнопка"
|
| 1217 |
|
| 1218 |
-
#: inc/core/data.php:
|
| 1219 |
msgid "Service"
|
| 1220 |
msgstr "Услуга"
|
| 1221 |
|
| 1222 |
-
#: inc/core/data.php:
|
| 1223 |
msgid "Service title"
|
| 1224 |
msgstr "Название услуги"
|
| 1225 |
|
| 1226 |
-
#: inc/core/data.php:
|
| 1227 |
msgid "Service name"
|
| 1228 |
msgstr "Название услуги"
|
| 1229 |
|
| 1230 |
-
#: inc/core/data.php:
|
| 1231 |
msgid "You can upload custom icon for this box"
|
| 1232 |
msgstr "Вы можете загрузить свою иконку для этого блока"
|
| 1233 |
|
| 1234 |
-
#: inc/core/data.php:
|
| 1235 |
msgid "Icon size"
|
| 1236 |
msgstr "Размер иконки"
|
| 1237 |
|
| 1238 |
-
#: inc/core/data.php:
|
| 1239 |
msgid "Size of the uploaded icon in pixels"
|
| 1240 |
msgstr "Размер загруженной иконки в пикселях"
|
| 1241 |
|
| 1242 |
-
#: inc/core/data.php:
|
| 1243 |
msgid "Service description"
|
| 1244 |
msgstr "Описание услуги"
|
| 1245 |
|
| 1246 |
-
#: inc/core/data.php:
|
| 1247 |
msgid "Service box with title"
|
| 1248 |
msgstr "Блок услуга с заголовком"
|
| 1249 |
|
| 1250 |
-
#: inc/core/data.php:
|
| 1251 |
msgid "Box title"
|
| 1252 |
msgstr "Заголовок блока"
|
| 1253 |
|
| 1254 |
-
#: inc/core/data.php:
|
| 1255 |
msgid "Text for the box title"
|
| 1256 |
msgstr "Текст для заголовка блока"
|
| 1257 |
|
| 1258 |
-
#: inc/core/data.php:
|
| 1259 |
msgid "Box style preset"
|
| 1260 |
msgstr "Стиль блока"
|
| 1261 |
|
| 1262 |
-
#: inc/core/data.php:
|
| 1263 |
msgid "Color"
|
| 1264 |
msgstr "Цвет"
|
| 1265 |
|
| 1266 |
-
#: inc/core/data.php:
|
| 1267 |
msgid "Color for the box title and borders"
|
| 1268 |
msgstr "Цвет заголовка блока и его рамки"
|
| 1269 |
|
| 1270 |
-
#: inc/core/data.php:
|
| 1271 |
msgid "Title text color"
|
| 1272 |
msgstr "Цвет текста заголовка"
|
| 1273 |
|
| 1274 |
-
#: inc/core/data.php:
|
| 1275 |
msgid "Color for the box title text"
|
| 1276 |
msgstr "Цвет текста в заголовке блока"
|
| 1277 |
|
| 1278 |
-
#: inc/core/data.php:
|
| 1279 |
msgid "Box corners radius"
|
| 1280 |
msgstr "Радиус углов"
|
| 1281 |
|
| 1282 |
-
#: inc/core/data.php:
|
| 1283 |
msgid "Box content"
|
| 1284 |
msgstr "Содержимое блока"
|
| 1285 |
|
| 1286 |
-
#: inc/core/data.php:
|
| 1287 |
msgid "Colored box with caption"
|
| 1288 |
msgstr "Цветной блок с заголовком"
|
| 1289 |
|
| 1290 |
-
#: inc/core/data.php:
|
| 1291 |
msgid "Note"
|
| 1292 |
msgstr "Заметка"
|
| 1293 |
|
| 1294 |
-
#: inc/core/data.php:
|
| 1295 |
msgid "Note background color"
|
| 1296 |
msgstr "Цвет фона заметки"
|
| 1297 |
|
| 1298 |
-
#: inc/core/data.php:
|
| 1299 |
msgid "Note text color"
|
| 1300 |
msgstr "Цвет текста заметки"
|
| 1301 |
|
| 1302 |
-
#: inc/core/data.php:
|
| 1303 |
msgid "Note corners radius"
|
| 1304 |
msgstr "Радиус углов"
|
| 1305 |
|
| 1306 |
-
#: inc/core/data.php:
|
| 1307 |
msgid "Note text"
|
| 1308 |
msgstr "Текст заметки"
|
| 1309 |
|
| 1310 |
-
#: inc/core/data.php:
|
| 1311 |
msgid "Colored box"
|
| 1312 |
msgstr "Цветной блок"
|
| 1313 |
|
| 1314 |
-
#: inc/core/data.php:
|
| 1315 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1316 |
msgid "Lightbox"
|
| 1317 |
msgstr "Лайтбокс"
|
| 1318 |
|
| 1319 |
-
#: inc/core/data.php:
|
| 1320 |
msgid "Iframe"
|
| 1321 |
msgstr "Фрейм (iframe)"
|
| 1322 |
|
| 1323 |
-
#: inc/core/data.php:
|
| 1324 |
msgid "Image"
|
| 1325 |
msgstr "Изображение"
|
| 1326 |
|
| 1327 |
-
#: inc/core/data.php:
|
| 1328 |
msgid "Inline (html content)"
|
| 1329 |
msgstr "HTML элемент"
|
| 1330 |
|
| 1331 |
-
#: inc/core/data.php:
|
| 1332 |
msgid "Content type"
|
| 1333 |
msgstr "Тип содержимого"
|
| 1334 |
|
| 1335 |
-
#: inc/core/data.php:
|
| 1336 |
msgid "Select type of the lightbox window content"
|
| 1337 |
msgstr "Выберите тип содержимого в окне лайтбокса"
|
| 1338 |
|
| 1339 |
-
#: inc/core/data.php:
|
| 1340 |
msgid "Content source"
|
| 1341 |
msgstr "Источник содержимого"
|
| 1342 |
|
| 1343 |
-
#: inc/core/data.php:
|
| 1344 |
msgid ""
|
| 1345 |
"Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
|
| 1346 |
"Use CSS selector for Inline content type.<br />Example values:<br /><b"
|
|
@@ -1357,102 +1499,102 @@ msgstr ""
|
|
| 1357 |
"%value>http://example.com/</b> - любая веб-страница (фрейм)<br /><b"
|
| 1358 |
"%value>#contact-form</b> - любой HTML элемент (html элемент)"
|
| 1359 |
|
| 1360 |
-
#: inc/core/data.php:
|
| 1361 |
msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
|
| 1362 |
msgstr ""
|
| 1363 |
"[%prefix_button] Нажмите здесь чтобы посмотреть видео [/%prefix_button]"
|
| 1364 |
|
| 1365 |
-
#: inc/core/data.php:
|
| 1366 |
msgid "Lightbox window with custom content"
|
| 1367 |
msgstr "Лайтбокс с произвольным содержимым"
|
| 1368 |
|
| 1369 |
-
#: inc/core/data.php:
|
| 1370 |
msgid "Tooltip"
|
| 1371 |
msgstr "Подсказка"
|
| 1372 |
|
| 1373 |
-
#: inc/core/data.php:
|
| 1374 |
msgid "Basic: Light"
|
| 1375 |
msgstr "Базовый: Светлый"
|
| 1376 |
|
| 1377 |
-
#: inc/core/data.php:
|
| 1378 |
msgid "Basic: Dark"
|
| 1379 |
msgstr "Базовый: Темный"
|
| 1380 |
|
| 1381 |
-
#: inc/core/data.php:
|
| 1382 |
msgid "Basic: Yellow"
|
| 1383 |
msgstr "Базовый: Желтый"
|
| 1384 |
|
| 1385 |
-
#: inc/core/data.php:
|
| 1386 |
msgid "Basic: Green"
|
| 1387 |
msgstr "Базовый: Зеленый"
|
| 1388 |
|
| 1389 |
-
#: inc/core/data.php:
|
| 1390 |
msgid "Basic: Red"
|
| 1391 |
msgstr "Базовый: Красный"
|
| 1392 |
|
| 1393 |
-
#: inc/core/data.php:
|
| 1394 |
msgid "Basic: Blue"
|
| 1395 |
msgstr "Базовый: Голубой"
|
| 1396 |
|
| 1397 |
-
#: inc/core/data.php:
|
| 1398 |
msgid "Youtube"
|
| 1399 |
msgstr "Youtube"
|
| 1400 |
|
| 1401 |
-
#: inc/core/data.php:
|
| 1402 |
msgid "Tipsy"
|
| 1403 |
msgstr "Tipsy"
|
| 1404 |
|
| 1405 |
-
#: inc/core/data.php:
|
| 1406 |
msgid "Bootstrap"
|
| 1407 |
msgstr "Bootstrap"
|
| 1408 |
|
| 1409 |
-
#: inc/core/data.php:
|
| 1410 |
msgid "jTools"
|
| 1411 |
msgstr "jTools"
|
| 1412 |
|
| 1413 |
-
#: inc/core/data.php:
|
| 1414 |
msgid "Tipped"
|
| 1415 |
msgstr "Tipped"
|
| 1416 |
|
| 1417 |
-
#: inc/core/data.php:
|
| 1418 |
msgid "Cluetip"
|
| 1419 |
msgstr "Cluetip"
|
| 1420 |
|
| 1421 |
-
#: inc/core/data.php:
|
| 1422 |
msgid "Tooltip window style"
|
| 1423 |
msgstr "Стиль окна подсказки"
|
| 1424 |
|
| 1425 |
-
#: inc/core/data.php:
|
| 1426 |
msgid "Top"
|
| 1427 |
msgstr "Сверху"
|
| 1428 |
|
| 1429 |
-
#: inc/core/data.php:
|
| 1430 |
msgid "Bottom"
|
| 1431 |
msgstr "Снизу"
|
| 1432 |
|
| 1433 |
-
#: inc/core/data.php:
|
| 1434 |
msgid "Position"
|
| 1435 |
msgstr "Положение"
|
| 1436 |
|
| 1437 |
-
#: inc/core/data.php:
|
| 1438 |
msgid "Tooltip position"
|
| 1439 |
msgstr "Положение всплывающей подсказки"
|
| 1440 |
|
| 1441 |
-
#: inc/core/data.php:
|
| 1442 |
msgid "Shadow"
|
| 1443 |
msgstr "Тень"
|
| 1444 |
|
| 1445 |
-
#: inc/core/data.php:
|
| 1446 |
msgid ""
|
| 1447 |
"Add shadow to tooltip. This option is only works with basic styes, e.g. "
|
| 1448 |
"blue, green etc."
|
| 1449 |
msgstr "Добавить тень окну подсказки. Тень работает только для базовых стилей."
|
| 1450 |
|
| 1451 |
-
#: inc/core/data.php:
|
| 1452 |
msgid "Rounded corners"
|
| 1453 |
msgstr "Скругление"
|
| 1454 |
|
| 1455 |
-
#: inc/core/data.php:
|
| 1456 |
msgid ""
|
| 1457 |
"Use rounded for tooltip. This option is only works with basic styes, e.g. "
|
| 1458 |
"blue, green etc."
|
|
@@ -1460,154 +1602,154 @@ msgstr ""
|
|
| 1460 |
"Добавить скругленные уголки окну подсказки. Скругление работает только для "
|
| 1461 |
"базовых стилей."
|
| 1462 |
|
| 1463 |
-
#: inc/core/data.php:
|
| 1464 |
msgid "Font size"
|
| 1465 |
msgstr "Размер шрифта"
|
| 1466 |
|
| 1467 |
-
#: inc/core/data.php:
|
| 1468 |
msgid "Tooltip font size"
|
| 1469 |
msgstr "Размер шрифта подсказки"
|
| 1470 |
|
| 1471 |
-
#: inc/core/data.php:
|
| 1472 |
msgid "Tooltip title"
|
| 1473 |
msgstr "Заголовок подсказки"
|
| 1474 |
|
| 1475 |
-
#: inc/core/data.php:
|
| 1476 |
msgid ""
|
| 1477 |
"Enter title for tooltip window. Leave this field empty to hide the title"
|
| 1478 |
msgstr ""
|
| 1479 |
"Укажите заголовок окна подсказки. Оставьте поле пустым, чтобы скрыть "
|
| 1480 |
"заголовок"
|
| 1481 |
|
| 1482 |
-
#: inc/core/data.php:
|
| 1483 |
msgid "Tooltip text"
|
| 1484 |
msgstr "Текст подсказки"
|
| 1485 |
|
| 1486 |
-
#: inc/core/data.php:
|
| 1487 |
msgid "Tooltip content"
|
| 1488 |
msgstr "Содержимое подсказки"
|
| 1489 |
|
| 1490 |
-
#: inc/core/data.php:
|
| 1491 |
msgid "Enter tooltip content here"
|
| 1492 |
msgstr "Введите сюда содержимое подсказки"
|
| 1493 |
|
| 1494 |
-
#: inc/core/data.php:
|
| 1495 |
msgid "Show and hide on mouse hover"
|
| 1496 |
msgstr "Показать и скрыть при наведении мыши"
|
| 1497 |
|
| 1498 |
-
#: inc/core/data.php:
|
| 1499 |
msgid "Show and hide by mouse click"
|
| 1500 |
msgstr "Показать и скрыть по клику мыши"
|
| 1501 |
|
| 1502 |
-
#: inc/core/data.php:
|
| 1503 |
msgid "Always visible"
|
| 1504 |
msgstr "Всегда видима"
|
| 1505 |
|
| 1506 |
-
#: inc/core/data.php:
|
| 1507 |
msgid "Behavior"
|
| 1508 |
msgstr "Поведение"
|
| 1509 |
|
| 1510 |
-
#: inc/core/data.php:
|
| 1511 |
msgid "Select tooltip behavior"
|
| 1512 |
msgstr "Выберите поведение подсказки"
|
| 1513 |
|
| 1514 |
-
#: inc/core/data.php:
|
| 1515 |
msgid "Close button"
|
| 1516 |
msgstr "Кнопка закрыть"
|
| 1517 |
|
| 1518 |
-
#: inc/core/data.php:
|
| 1519 |
msgid "Show close button"
|
| 1520 |
msgstr "Показывать кнопку закрыть"
|
| 1521 |
|
| 1522 |
-
#: inc/core/data.php:
|
| 1523 |
msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
|
| 1524 |
msgstr ""
|
| 1525 |
"[%prefix_button] Наведите мышку чтобы увидеть подсказку [/%prefix_button]"
|
| 1526 |
|
| 1527 |
-
#: inc/core/data.php:
|
| 1528 |
msgid "Tooltip window with custom content"
|
| 1529 |
msgstr "Всплывающая подсказка с произвольным содержимым"
|
| 1530 |
|
| 1531 |
-
#: inc/core/data.php:
|
| 1532 |
msgid "Private"
|
| 1533 |
msgstr "Заметка для авторов"
|
| 1534 |
|
| 1535 |
-
#: inc/core/data.php:
|
| 1536 |
msgid "Private note text"
|
| 1537 |
msgstr "Текст приватной заметки"
|
| 1538 |
|
| 1539 |
-
#: inc/core/data.php:
|
| 1540 |
msgid "Private note for post authors"
|
| 1541 |
msgstr "Приватный текст для других авторов"
|
| 1542 |
|
| 1543 |
-
#: inc/core/data.php:
|
| 1544 |
msgid "YouTube"
|
| 1545 |
msgstr "YouTube"
|
| 1546 |
|
| 1547 |
-
#: inc/core/data.php:
|
| 1548 |
-
#: inc/core/data.php:
|
| 1549 |
-
#: inc/core/data.php:
|
| 1550 |
msgid "Url"
|
| 1551 |
msgstr "Ссылка"
|
| 1552 |
|
| 1553 |
-
#: inc/core/data.php:
|
| 1554 |
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
| 1555 |
msgstr ""
|
| 1556 |
"Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
|
| 1557 |
|
| 1558 |
-
#: inc/core/data.php:
|
| 1559 |
-
#: inc/core/data.php:
|
| 1560 |
-
#: inc/core/data.php:
|
| 1561 |
-
#: inc/core/data.php:
|
| 1562 |
-
#: inc/core/data.php:
|
| 1563 |
msgid "Width"
|
| 1564 |
msgstr "Ширина"
|
| 1565 |
|
| 1566 |
-
#: inc/core/data.php:
|
| 1567 |
-
#: inc/core/data.php:
|
| 1568 |
msgid "Player width"
|
| 1569 |
msgstr "Ширина плеера"
|
| 1570 |
|
| 1571 |
-
#: inc/core/data.php:
|
| 1572 |
-
#: inc/core/data.php:
|
| 1573 |
msgid "Player height"
|
| 1574 |
msgstr "Высота плеера"
|
| 1575 |
|
| 1576 |
-
#: inc/core/data.php:
|
| 1577 |
-
#: inc/core/data.php:
|
| 1578 |
-
#: inc/core/data.php:
|
| 1579 |
msgid "Responsive"
|
| 1580 |
msgstr "Отзывчивость (responsive)"
|
| 1581 |
|
| 1582 |
-
#: inc/core/data.php:
|
| 1583 |
-
#: inc/core/data.php:
|
| 1584 |
msgid "Ignore width and height parameters and make player responsive"
|
| 1585 |
msgstr ""
|
| 1586 |
"Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
|
| 1587 |
|
| 1588 |
-
#: inc/core/data.php:
|
| 1589 |
-
#: inc/core/data.php:
|
| 1590 |
-
#: inc/core/data.php:
|
| 1591 |
msgid "Autoplay"
|
| 1592 |
msgstr "Автовоспроизведение"
|
| 1593 |
|
| 1594 |
-
#: inc/core/data.php:
|
| 1595 |
msgid "Play video automatically when page is loaded"
|
| 1596 |
msgstr "Воспроизвести видео автоматически при открытии страницы"
|
| 1597 |
|
| 1598 |
-
#: inc/core/data.php:
|
| 1599 |
msgid "YouTube video"
|
| 1600 |
msgstr "Видео YouTube"
|
| 1601 |
|
| 1602 |
-
#: inc/core/data.php:
|
| 1603 |
msgid "YouTube Advanced"
|
| 1604 |
msgstr "YouTube продвинутый"
|
| 1605 |
|
| 1606 |
-
#: inc/core/data.php:
|
| 1607 |
msgid "Playlist"
|
| 1608 |
msgstr "Плейлист"
|
| 1609 |
|
| 1610 |
-
#: inc/core/data.php:
|
| 1611 |
msgid ""
|
| 1612 |
"Value is a comma-separated list of video IDs to play. If you specify a "
|
| 1613 |
"value, the first video that plays will be the VIDEO_ID specified in the URL "
|
|
@@ -1617,44 +1759,44 @@ msgstr ""
|
|
| 1617 |
"значение, то первым будет проиграно видео из параметра URL, а указанные "
|
| 1618 |
"здесь видео будут проиграны после него"
|
| 1619 |
|
| 1620 |
-
#: inc/core/data.php:
|
| 1621 |
msgid "0 - Hide controls"
|
| 1622 |
msgstr "0 - Спрятать панель"
|
| 1623 |
|
| 1624 |
-
#: inc/core/data.php:
|
| 1625 |
msgid "1 - Show controls"
|
| 1626 |
msgstr "1 - Показать панель"
|
| 1627 |
|
| 1628 |
-
#: inc/core/data.php:
|
| 1629 |
msgid "2 - Show controls when playback is started"
|
| 1630 |
msgstr "2 - Показать панель при начале воспроизведения"
|
| 1631 |
|
| 1632 |
-
#: inc/core/data.php:
|
| 1633 |
msgid "Controls"
|
| 1634 |
msgstr "Элементы управления"
|
| 1635 |
|
| 1636 |
-
#: inc/core/data.php:
|
| 1637 |
msgid "This parameter indicates whether the video player controls will display"
|
| 1638 |
msgstr ""
|
| 1639 |
"Этот параметр определяет как показывать панель управления воспроизведением"
|
| 1640 |
|
| 1641 |
-
#: inc/core/data.php:
|
| 1642 |
msgid "0 - Do not hide controls"
|
| 1643 |
msgstr "0 - Не прятать панель"
|
| 1644 |
|
| 1645 |
-
#: inc/core/data.php:
|
| 1646 |
msgid "1 - Hide all controls on mouse out"
|
| 1647 |
msgstr "1 - Спрятать панель при уходе мыши"
|
| 1648 |
|
| 1649 |
-
#: inc/core/data.php:
|
| 1650 |
msgid "2 - Hide progress bar on mouse out"
|
| 1651 |
msgstr "2 - Спрятать полосу прокрутки при уходе мыши"
|
| 1652 |
|
| 1653 |
-
#: inc/core/data.php:
|
| 1654 |
msgid "Autohide"
|
| 1655 |
msgstr "Авто-скрытие"
|
| 1656 |
|
| 1657 |
-
#: inc/core/data.php:
|
| 1658 |
msgid ""
|
| 1659 |
"This parameter indicates whether the video controls will automatically hide "
|
| 1660 |
"after a video begins playing"
|
|
@@ -1662,11 +1804,11 @@ msgstr ""
|
|
| 1662 |
"Этот параметр определяет как скрывать панель управления воспроизведением во "
|
| 1663 |
"время проигрывания ролика"
|
| 1664 |
|
| 1665 |
-
#: inc/core/data.php:
|
| 1666 |
msgid "Show title bar"
|
| 1667 |
msgstr "Показывать заголовок"
|
| 1668 |
|
| 1669 |
-
#: inc/core/data.php:
|
| 1670 |
msgid ""
|
| 1671 |
"If you set the parameter value to NO, then the player will not display "
|
| 1672 |
"information like the video title and uploader before the video starts "
|
|
@@ -1675,21 +1817,21 @@ msgstr ""
|
|
| 1675 |
"Если вы установите параметр на НЕТ, то в плеере не будет показан заголовок с "
|
| 1676 |
"названием видео и имя автора видео"
|
| 1677 |
|
| 1678 |
-
#: inc/core/data.php:
|
| 1679 |
msgid "Loop"
|
| 1680 |
msgstr "Повтор"
|
| 1681 |
|
| 1682 |
-
#: inc/core/data.php:
|
| 1683 |
msgid ""
|
| 1684 |
"Setting of YES will cause the player to play the initial video again and "
|
| 1685 |
"again"
|
| 1686 |
msgstr "Видео будет снова проиграно по окнчании воспроизведения"
|
| 1687 |
|
| 1688 |
-
#: inc/core/data.php:
|
| 1689 |
msgid "Related videos"
|
| 1690 |
msgstr "Похожие видео"
|
| 1691 |
|
| 1692 |
-
#: inc/core/data.php:
|
| 1693 |
msgid ""
|
| 1694 |
"This parameter indicates whether the player should show related videos when "
|
| 1695 |
"playback of the initial video ends"
|
|
@@ -1697,17 +1839,17 @@ msgstr ""
|
|
| 1697 |
"Этот параметр позволяет отключать показ похожих видео по окончании "
|
| 1698 |
"воспроизведения"
|
| 1699 |
|
| 1700 |
-
#: inc/core/data.php:
|
| 1701 |
msgid "Show full-screen button"
|
| 1702 |
msgstr "Показывать кнопку полноэкранного режима"
|
| 1703 |
|
| 1704 |
-
#: inc/core/data.php:
|
| 1705 |
msgid ""
|
| 1706 |
"Setting this parameter to NO prevents the fullscreen button from displaying"
|
| 1707 |
msgstr ""
|
| 1708 |
"Установка этого параметра на НЕТ скроет кнопку перехода в полноэкранный режим"
|
| 1709 |
|
| 1710 |
-
#: inc/core/data.php:
|
| 1711 |
msgid ""
|
| 1712 |
"This parameter lets you use a YouTube player that does not show a YouTube "
|
| 1713 |
"logo. Set the parameter value to YES to prevent the YouTube logo from "
|
|
@@ -1719,70 +1861,70 @@ msgstr ""
|
|
| 1719 |
"управления воспроизведением. Вместо он будет показан либо в панели заголовка "
|
| 1720 |
"видео, либо как полупрозрачный над видео"
|
| 1721 |
|
| 1722 |
-
#: inc/core/data.php:
|
| 1723 |
msgid "Dark theme"
|
| 1724 |
msgstr "Темная тема"
|
| 1725 |
|
| 1726 |
-
#: inc/core/data.php:
|
| 1727 |
msgid "Light theme"
|
| 1728 |
msgstr "Светлая тема"
|
| 1729 |
|
| 1730 |
-
#: inc/core/data.php:
|
| 1731 |
msgid "Theme"
|
| 1732 |
msgstr "Тема"
|
| 1733 |
|
| 1734 |
-
#: inc/core/data.php:
|
| 1735 |
msgid ""
|
| 1736 |
"This parameter indicates whether the embedded player will display player "
|
| 1737 |
"controls (like a play button or volume control) within a dark or light "
|
| 1738 |
"control bar"
|
| 1739 |
msgstr "Выберите тему для проигрывателя"
|
| 1740 |
|
| 1741 |
-
#: inc/core/data.php:
|
| 1742 |
msgid "Force HTTPS"
|
| 1743 |
msgstr "Принудительный HTTPS"
|
| 1744 |
|
| 1745 |
-
#: inc/core/data.php:
|
| 1746 |
msgid "Use HTTPS in player iframe"
|
| 1747 |
msgstr "Использовать протокол HTTPS во фрейме проигрывателя"
|
| 1748 |
|
| 1749 |
-
#: inc/core/data.php:
|
| 1750 |
msgid "YouTube video player with advanced settings"
|
| 1751 |
msgstr "YouTube видео плеер с расширенными настройками"
|
| 1752 |
|
| 1753 |
-
#: inc/core/data.php:
|
| 1754 |
msgid "Vimeo"
|
| 1755 |
msgstr "Vimeo"
|
| 1756 |
|
| 1757 |
-
#: inc/core/data.php:
|
| 1758 |
msgid "Url of Vimeo page with video"
|
| 1759 |
msgstr "Ссылка на страницу Vimeo с видео"
|
| 1760 |
|
| 1761 |
-
#: inc/core/data.php:
|
| 1762 |
msgid "Vimeo video"
|
| 1763 |
msgstr "Видео Vimeo"
|
| 1764 |
|
| 1765 |
-
#: inc/core/data.php:
|
| 1766 |
msgid "Screenr"
|
| 1767 |
msgstr "Screenr"
|
| 1768 |
|
| 1769 |
-
#: inc/core/data.php:
|
| 1770 |
msgid "Url of Screenr page with video"
|
| 1771 |
msgstr "Ссылка на страницу Screenr с видео"
|
| 1772 |
|
| 1773 |
-
#: inc/core/data.php:
|
| 1774 |
msgid "Screenr video"
|
| 1775 |
msgstr "Видео Screenr"
|
| 1776 |
|
| 1777 |
-
#: inc/core/data.php:
|
| 1778 |
msgid "Dailymotion"
|
| 1779 |
msgstr "Dailymotion"
|
| 1780 |
|
| 1781 |
-
#: inc/core/data.php:
|
| 1782 |
msgid "Url of Dailymotion page with video"
|
| 1783 |
msgstr "Ссылка на страницу Dailymotion с видео"
|
| 1784 |
|
| 1785 |
-
#: inc/core/data.php:
|
| 1786 |
msgid ""
|
| 1787 |
"Start the playback of the video automatically after the player load. May not "
|
| 1788 |
"work on some mobile OS versions"
|
|
@@ -1790,79 +1932,79 @@ msgstr ""
|
|
| 1790 |
"Автоматически начать воспроизведение видео. Может не работать на некоторых "
|
| 1791 |
"моильных ОС"
|
| 1792 |
|
| 1793 |
-
#: inc/core/data.php:
|
| 1794 |
msgid "Background color"
|
| 1795 |
msgstr "Цвет фона"
|
| 1796 |
|
| 1797 |
-
#: inc/core/data.php:
|
| 1798 |
msgid "HTML color of the background of controls elements"
|
| 1799 |
msgstr "HTML цвет фона элементов управления"
|
| 1800 |
|
| 1801 |
-
#: inc/core/data.php:
|
| 1802 |
msgid "Foreground color"
|
| 1803 |
msgstr "Цвет переднего плана"
|
| 1804 |
|
| 1805 |
-
#: inc/core/data.php:
|
| 1806 |
msgid "HTML color of the foreground of controls elements"
|
| 1807 |
msgstr "HTML цвет передней части элементов управления"
|
| 1808 |
|
| 1809 |
-
#: inc/core/data.php:
|
| 1810 |
msgid "Highlight color"
|
| 1811 |
msgstr "Цвет подсветки"
|
| 1812 |
|
| 1813 |
-
#: inc/core/data.php:
|
| 1814 |
msgid "HTML color of the controls elements' highlights"
|
| 1815 |
msgstr "HTML цвет подсветки элементов управления"
|
| 1816 |
|
| 1817 |
-
#: inc/core/data.php:
|
| 1818 |
msgid "Show logo"
|
| 1819 |
msgstr "Показать логотип"
|
| 1820 |
|
| 1821 |
-
#: inc/core/data.php:
|
| 1822 |
msgid "Allows to hide or show the Dailymotion logo"
|
| 1823 |
msgstr "Показать или нет лого Dailymotion"
|
| 1824 |
|
| 1825 |
-
#: inc/core/data.php:
|
| 1826 |
msgid "Quality"
|
| 1827 |
msgstr "Качество"
|
| 1828 |
|
| 1829 |
-
#: inc/core/data.php:
|
| 1830 |
msgid "Determines the quality that must be played by default if available"
|
| 1831 |
msgstr "Определите качество, которое нужно воспроизвести, если доступно"
|
| 1832 |
|
| 1833 |
-
#: inc/core/data.php:
|
| 1834 |
msgid "Show related videos"
|
| 1835 |
msgstr "Показать похожие видео"
|
| 1836 |
|
| 1837 |
-
#: inc/core/data.php:
|
| 1838 |
msgid "Show related videos at the end of the video"
|
| 1839 |
msgstr "Показать похожие видео в конце воспроизведения"
|
| 1840 |
|
| 1841 |
-
#: inc/core/data.php:
|
| 1842 |
msgid "Show video info"
|
| 1843 |
msgstr "Показывать инфо видео"
|
| 1844 |
|
| 1845 |
-
#: inc/core/data.php:
|
| 1846 |
msgid "Show videos info (title/author) on the start screen"
|
| 1847 |
msgstr "Показать информацию о видео (заголовок/автор) на начальном экране"
|
| 1848 |
|
| 1849 |
-
#: inc/core/data.php:
|
| 1850 |
msgid "Dailymotion video"
|
| 1851 |
msgstr "Видео Dailymotion"
|
| 1852 |
|
| 1853 |
-
#: inc/core/data.php:
|
| 1854 |
msgid "Audio"
|
| 1855 |
msgstr "Аудио"
|
| 1856 |
|
| 1857 |
-
#: inc/core/data.php:
|
| 1858 |
msgid "File"
|
| 1859 |
msgstr "Файл"
|
| 1860 |
|
| 1861 |
-
#: inc/core/data.php:
|
| 1862 |
msgid "Audio file url. Supported formats: mp3, ogg"
|
| 1863 |
msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
|
| 1864 |
|
| 1865 |
-
#: inc/core/data.php:
|
| 1866 |
msgid ""
|
| 1867 |
"Player width. You can specify width in percents and player will be "
|
| 1868 |
"responsive. Example values: <b%value>200px</b>, <b%value>100%</b>"
|
|
@@ -1871,63 +2013,63 @@ msgstr ""
|
|
| 1871 |
"отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b"
|
| 1872 |
"%value>100%</b>"
|
| 1873 |
|
| 1874 |
-
#: inc/core/data.php:
|
| 1875 |
msgid "Play file automatically when page is loaded"
|
| 1876 |
msgstr "Воспроизводить файл автоматически при открытии страницы"
|
| 1877 |
|
| 1878 |
-
#: inc/core/data.php:
|
| 1879 |
msgid "Repeat when playback is ended"
|
| 1880 |
msgstr "Повторять, когда воспроизведение окночено"
|
| 1881 |
|
| 1882 |
-
#: inc/core/data.php:
|
| 1883 |
msgid "Custom audio player"
|
| 1884 |
msgstr "Настраиваемый аудио-плеер"
|
| 1885 |
|
| 1886 |
-
#: inc/core/data.php:
|
| 1887 |
msgid "Video"
|
| 1888 |
msgstr "Видео"
|
| 1889 |
|
| 1890 |
-
#: inc/core/data.php:
|
| 1891 |
msgid "Url to mp4/flv video-file"
|
| 1892 |
msgstr "Ссылка на mp4/flv видео-файл"
|
| 1893 |
|
| 1894 |
-
#: inc/core/data.php:
|
| 1895 |
msgid "Poster"
|
| 1896 |
msgstr "Постер"
|
| 1897 |
|
| 1898 |
-
#: inc/core/data.php:
|
| 1899 |
msgid "Url to poster image, that will be shown before playback"
|
| 1900 |
msgstr ""
|
| 1901 |
"Ссылка на изображение постера. Изображение будет показано перед началом "
|
| 1902 |
"воспроизведения"
|
| 1903 |
|
| 1904 |
-
#: inc/core/data.php:
|
| 1905 |
msgid "Player title"
|
| 1906 |
msgstr "Заголовок плеера"
|
| 1907 |
|
| 1908 |
-
#: inc/core/data.php:
|
| 1909 |
msgid "Show player controls (play/pause etc.) or not"
|
| 1910 |
msgstr ""
|
| 1911 |
"Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
|
| 1912 |
|
| 1913 |
-
#: inc/core/data.php:
|
| 1914 |
msgid "Custom video player"
|
| 1915 |
msgstr "Настраиваемый видео-плеер"
|
| 1916 |
|
| 1917 |
-
#: inc/core/data.php:
|
| 1918 |
msgid "Table"
|
| 1919 |
msgstr "Таблица"
|
| 1920 |
|
| 1921 |
-
#: inc/core/data.php:
|
| 1922 |
msgid "CSV file"
|
| 1923 |
msgstr "CSV файл"
|
| 1924 |
|
| 1925 |
-
#: inc/core/data.php:
|
| 1926 |
msgid "Upload CSV file if you want to create HTML-table from file"
|
| 1927 |
msgstr ""
|
| 1928 |
"Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
|
| 1929 |
|
| 1930 |
-
#: inc/core/data.php:
|
| 1931 |
msgid ""
|
| 1932 |
"<table>\n"
|
| 1933 |
"<tr>\n"
|
|
@@ -1951,231 +2093,231 @@ msgstr ""
|
|
| 1951 |
"</tr>\n"
|
| 1952 |
"</table>"
|
| 1953 |
|
| 1954 |
-
#: inc/core/data.php:
|
| 1955 |
msgid "Styled table from HTML or CSV file"
|
| 1956 |
msgstr "Стильная таблица из HTML или CSV файла"
|
| 1957 |
|
| 1958 |
-
#: inc/core/data.php:
|
| 1959 |
msgid "Permalink"
|
| 1960 |
msgstr "Постоянная ссылка"
|
| 1961 |
|
| 1962 |
-
#: inc/core/data.php:
|
| 1963 |
msgid "ID"
|
| 1964 |
msgstr "ID"
|
| 1965 |
|
| 1966 |
-
#: inc/core/data.php:
|
| 1967 |
msgid "Post or page ID"
|
| 1968 |
msgstr "ID записи или страницы"
|
| 1969 |
|
| 1970 |
-
#: inc/core/data.php:
|
| 1971 |
msgid "Link target. blank - link will be opened in new window/tab"
|
| 1972 |
msgstr ""
|
| 1973 |
"Цель ссылки. blank - означает что ссылка будет открыта в новом окне или "
|
| 1974 |
"вкладке"
|
| 1975 |
|
| 1976 |
-
#: inc/core/data.php:
|
| 1977 |
msgid "Permalink to specified post/page"
|
| 1978 |
msgstr "Постоянная ссылка на страницу"
|
| 1979 |
|
| 1980 |
-
#: inc/core/data.php:
|
| 1981 |
msgid "Members"
|
| 1982 |
msgstr "Участники"
|
| 1983 |
|
| 1984 |
-
#: inc/core/data.php:
|
| 1985 |
msgid "This content is for registered users only. Please %login%."
|
| 1986 |
msgstr ""
|
| 1987 |
"Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
|
| 1988 |
|
| 1989 |
-
#: inc/core/data.php:
|
| 1990 |
msgid "Message"
|
| 1991 |
msgstr "Сообщение"
|
| 1992 |
|
| 1993 |
-
#: inc/core/data.php:
|
| 1994 |
msgid "Message for not logged users"
|
| 1995 |
msgstr "Собщение для неавторизованных"
|
| 1996 |
|
| 1997 |
-
#: inc/core/data.php:
|
| 1998 |
msgid "Box color"
|
| 1999 |
msgstr "Цвет блока"
|
| 2000 |
|
| 2001 |
-
#: inc/core/data.php:
|
| 2002 |
msgid "This color will applied only to box for not logged users"
|
| 2003 |
msgstr ""
|
| 2004 |
"Этот цвет будет применен только к блоку для не авторизованных посетителей"
|
| 2005 |
|
| 2006 |
-
#: inc/core/data.php:
|
| 2007 |
msgid "login"
|
| 2008 |
msgstr "войдите"
|
| 2009 |
|
| 2010 |
-
#: inc/core/data.php:
|
| 2011 |
msgid "Login link text"
|
| 2012 |
msgstr "Текст ссылки войти"
|
| 2013 |
|
| 2014 |
-
#: inc/core/data.php:
|
| 2015 |
msgid "Text for the login link"
|
| 2016 |
msgstr "Текст ссылки ВОЙТИ"
|
| 2017 |
|
| 2018 |
-
#: inc/core/data.php:
|
| 2019 |
msgid "Login link url"
|
| 2020 |
msgstr "Адрес ссылки войти"
|
| 2021 |
|
| 2022 |
-
#: inc/core/data.php:
|
| 2023 |
msgid "Content for logged members"
|
| 2024 |
msgstr "Содержимое для авторизованых пользователей"
|
| 2025 |
|
| 2026 |
-
#: inc/core/data.php:
|
| 2027 |
msgid "Content for logged in members only"
|
| 2028 |
msgstr "Ссодержимое для авторизованых"
|
| 2029 |
|
| 2030 |
-
#: inc/core/data.php:
|
| 2031 |
msgid "Guests"
|
| 2032 |
msgstr "Гости"
|
| 2033 |
|
| 2034 |
-
#: inc/core/data.php:
|
| 2035 |
msgid "Content for guests"
|
| 2036 |
msgstr "Содержимое для гостей"
|
| 2037 |
|
| 2038 |
-
#: inc/core/data.php:
|
| 2039 |
msgid "Content for guests only"
|
| 2040 |
msgstr "Ссодержимое только для гостей"
|
| 2041 |
|
| 2042 |
-
#: inc/core/data.php:
|
| 2043 |
msgid "RSS Feed"
|
| 2044 |
msgstr "RSS лента"
|
| 2045 |
|
| 2046 |
-
#: inc/core/data.php:
|
| 2047 |
msgid "Url to RSS-feed"
|
| 2048 |
msgstr "Ссылка на RSS-ленту"
|
| 2049 |
|
| 2050 |
-
#: inc/core/data.php:
|
| 2051 |
-
#: inc/core/data.php:
|
| 2052 |
msgid "Limit"
|
| 2053 |
msgstr "Лимит"
|
| 2054 |
|
| 2055 |
-
#: inc/core/data.php:
|
| 2056 |
msgid "Number of items to show"
|
| 2057 |
msgstr "Количество элементов для отображения"
|
| 2058 |
|
| 2059 |
-
#: inc/core/data.php:
|
| 2060 |
msgid "Feed grabber"
|
| 2061 |
msgstr "Граббер новостных лент"
|
| 2062 |
|
| 2063 |
-
#: inc/core/data.php:
|
| 2064 |
msgid "Menu"
|
| 2065 |
msgstr "Меню"
|
| 2066 |
|
| 2067 |
-
#: inc/core/data.php:
|
| 2068 |
msgid "Menu name"
|
| 2069 |
msgstr "Имя меню"
|
| 2070 |
|
| 2071 |
-
#: inc/core/data.php:
|
| 2072 |
msgid "Custom menu name. Ex: Main menu"
|
| 2073 |
msgstr "Имя произвольного меню. Например: Главное меню"
|
| 2074 |
|
| 2075 |
-
#: inc/core/data.php:
|
| 2076 |
msgid "Custom menu by name"
|
| 2077 |
msgstr "Произвольное меню"
|
| 2078 |
|
| 2079 |
-
#: inc/core/data.php:
|
| 2080 |
msgid "Sub pages"
|
| 2081 |
msgstr "Подстраницы"
|
| 2082 |
|
| 2083 |
-
#: inc/core/data.php:
|
| 2084 |
msgid "Depth"
|
| 2085 |
msgstr "Глубина"
|
| 2086 |
|
| 2087 |
-
#: inc/core/data.php:
|
| 2088 |
msgid "Max depth level of children pages"
|
| 2089 |
msgstr "Максимальная глубина дочерних страниц"
|
| 2090 |
|
| 2091 |
-
#: inc/core/data.php:
|
| 2092 |
msgid "Parent ID"
|
| 2093 |
msgstr "ID родителя"
|
| 2094 |
|
| 2095 |
-
#: inc/core/data.php:
|
| 2096 |
msgid "ID of the parent page. Leave blank to use current page"
|
| 2097 |
msgstr ""
|
| 2098 |
"ID родительской страницы. Оставьте пустым, чтобы использовать текущую "
|
| 2099 |
"страницу"
|
| 2100 |
|
| 2101 |
-
#: inc/core/data.php:
|
| 2102 |
msgid "List of sub pages"
|
| 2103 |
msgstr "Список дочерних страниц"
|
| 2104 |
|
| 2105 |
-
#: inc/core/data.php:
|
| 2106 |
msgid "Siblings"
|
| 2107 |
msgstr "Соседние страницы"
|
| 2108 |
|
| 2109 |
-
#: inc/core/data.php:
|
| 2110 |
msgid "Max depth level"
|
| 2111 |
msgstr "Максимальный уровень вложенности"
|
| 2112 |
|
| 2113 |
-
#: inc/core/data.php:
|
| 2114 |
msgid "List of cureent page siblings"
|
| 2115 |
msgstr "Список страниц, соседних с текущей"
|
| 2116 |
|
| 2117 |
-
#: inc/core/data.php:
|
| 2118 |
msgid "Document"
|
| 2119 |
msgstr "Документ"
|
| 2120 |
|
| 2121 |
-
#: inc/core/data.php:
|
| 2122 |
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
| 2123 |
msgstr ""
|
| 2124 |
"Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
|
| 2125 |
|
| 2126 |
-
#: inc/core/data.php:
|
| 2127 |
msgid "Viewer width"
|
| 2128 |
msgstr "Ширина просмотрщика"
|
| 2129 |
|
| 2130 |
-
#: inc/core/data.php:
|
| 2131 |
msgid "Viewer height"
|
| 2132 |
msgstr "Высота просмотрщика"
|
| 2133 |
|
| 2134 |
-
#: inc/core/data.php:
|
| 2135 |
msgid "Ignore width and height parameters and make viewer responsive"
|
| 2136 |
msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
|
| 2137 |
|
| 2138 |
-
#: inc/core/data.php:
|
| 2139 |
msgid "Document viewer by Google"
|
| 2140 |
msgstr "Просмотрщик документов от Google"
|
| 2141 |
|
| 2142 |
-
#: inc/core/data.php:
|
| 2143 |
msgid "Gmap"
|
| 2144 |
msgstr "Google карта"
|
| 2145 |
|
| 2146 |
-
#: inc/core/data.php:
|
| 2147 |
msgid "Map width"
|
| 2148 |
msgstr "Ширина карты"
|
| 2149 |
|
| 2150 |
-
#: inc/core/data.php:
|
| 2151 |
msgid "Map height"
|
| 2152 |
msgstr "Высота карты"
|
| 2153 |
|
| 2154 |
-
#: inc/core/data.php:
|
| 2155 |
msgid "Ignore width and height parameters and make map responsive"
|
| 2156 |
msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
|
| 2157 |
|
| 2158 |
-
#: inc/core/data.php:
|
| 2159 |
msgid "Marker"
|
| 2160 |
msgstr "Маркер"
|
| 2161 |
|
| 2162 |
-
#: inc/core/data.php:
|
| 2163 |
msgid "Address for the marker. You can type it in any language"
|
| 2164 |
msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
|
| 2165 |
|
| 2166 |
-
#: inc/core/data.php:
|
| 2167 |
msgid "Maps by Google"
|
| 2168 |
msgstr "Карты от Google"
|
| 2169 |
|
| 2170 |
-
#: inc/core/data.php:
|
| 2171 |
msgid "Slider"
|
| 2172 |
msgstr "Слайдер"
|
| 2173 |
|
| 2174 |
-
#: inc/core/data.php:
|
| 2175 |
msgid "Source"
|
| 2176 |
msgstr "Источник"
|
| 2177 |
|
| 2178 |
-
#: inc/core/data.php:
|
| 2179 |
msgid ""
|
| 2180 |
"Choose images source. You can use images from Media library or retrieve it "
|
| 2181 |
"from posts (thumbnails) posted under specified blog category. You can also "
|
|
@@ -2186,7 +2328,7 @@ msgstr ""
|
|
| 2186 |
"опубликованных в выбранной категории. Вы также можете выбрать произвольную "
|
| 2187 |
"таксономию и её рубрики"
|
| 2188 |
|
| 2189 |
-
#: inc/core/data.php:
|
| 2190 |
msgid ""
|
| 2191 |
"Maximum number of image source posts (for recent posts, category and custom "
|
| 2192 |
"taxonomy)"
|
|
@@ -2194,203 +2336,203 @@ msgstr ""
|
|
| 2194 |
"Максимальное кол-во записей с изображениями (для последних записей, "
|
| 2195 |
"категорий и произвольных таксономий)"
|
| 2196 |
|
| 2197 |
-
#: inc/core/data.php:
|
| 2198 |
msgid "Full-size image"
|
| 2199 |
msgstr "Полноразмерное изображение"
|
| 2200 |
|
| 2201 |
-
#: inc/core/data.php:
|
| 2202 |
msgid "Slide link (added in media editor)"
|
| 2203 |
msgstr "Ссылка слайда (добавленная в медиа редакторе)"
|
| 2204 |
|
| 2205 |
-
#: inc/core/data.php:
|
| 2206 |
msgid "Attachment page"
|
| 2207 |
msgstr "Страница медиа-файла"
|
| 2208 |
|
| 2209 |
-
#: inc/core/data.php:
|
| 2210 |
msgid "Post permalink"
|
| 2211 |
msgstr "Ссылка записи"
|
| 2212 |
|
| 2213 |
-
#: inc/core/data.php:
|
| 2214 |
msgid "Links"
|
| 2215 |
msgstr "Ссылки"
|
| 2216 |
|
| 2217 |
-
#: inc/core/data.php:
|
| 2218 |
msgid "Select which links will be used for images in this gallery"
|
| 2219 |
msgstr "Выберите какие ссылки использовать для элементов этой галереи"
|
| 2220 |
|
| 2221 |
-
#: inc/core/data.php:
|
| 2222 |
msgid "Same window"
|
| 2223 |
msgstr "То же окно"
|
| 2224 |
|
| 2225 |
-
#: inc/core/data.php:
|
| 2226 |
msgid "New window"
|
| 2227 |
msgstr "Новое окно"
|
| 2228 |
|
| 2229 |
-
#: inc/core/data.php:
|
| 2230 |
msgid "Links target"
|
| 2231 |
msgstr "Цель ссылок"
|
| 2232 |
|
| 2233 |
-
#: inc/core/data.php:
|
| 2234 |
msgid "Open links in"
|
| 2235 |
msgstr "Открывать ссылки в"
|
| 2236 |
|
| 2237 |
-
#: inc/core/data.php:
|
| 2238 |
msgid "Slider width (in pixels)"
|
| 2239 |
msgstr "Ширина слайдера (в пикселях)"
|
| 2240 |
|
| 2241 |
-
#: inc/core/data.php:
|
| 2242 |
msgid "Slider height (in pixels)"
|
| 2243 |
msgstr "Высота слайдера (в пикселях)"
|
| 2244 |
|
| 2245 |
-
#: inc/core/data.php:
|
| 2246 |
msgid "Ignore width and height parameters and make slider responsive"
|
| 2247 |
msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
|
| 2248 |
|
| 2249 |
-
#: inc/core/data.php:
|
| 2250 |
msgid "Show titles"
|
| 2251 |
msgstr "Показывать заголовки"
|
| 2252 |
|
| 2253 |
-
#: inc/core/data.php:
|
| 2254 |
msgid "Display slide titles"
|
| 2255 |
msgstr "Отображать заголовки слайдов"
|
| 2256 |
|
| 2257 |
-
#: inc/core/data.php:
|
| 2258 |
msgid "Is slider centered on the page"
|
| 2259 |
msgstr "Слайдер выровнен по центру страницы"
|
| 2260 |
|
| 2261 |
-
#: inc/core/data.php:
|
| 2262 |
msgid "Arrows"
|
| 2263 |
msgstr "Стрелки"
|
| 2264 |
|
| 2265 |
-
#: inc/core/data.php:
|
| 2266 |
msgid "Show left and right arrows"
|
| 2267 |
msgstr "Показывать стрелки влево/вправо"
|
| 2268 |
|
| 2269 |
-
#: inc/core/data.php:
|
| 2270 |
msgid "Pagination"
|
| 2271 |
msgstr "Страницы"
|
| 2272 |
|
| 2273 |
-
#: inc/core/data.php:
|
| 2274 |
msgid "Show pagination"
|
| 2275 |
msgstr "Показывать страницы"
|
| 2276 |
|
| 2277 |
-
#: inc/core/data.php:
|
| 2278 |
msgid "Mouse wheel control"
|
| 2279 |
msgstr "Управление колесом мыши"
|
| 2280 |
|
| 2281 |
-
#: inc/core/data.php:
|
| 2282 |
msgid "Allow to change slides with mouse wheel"
|
| 2283 |
msgstr "Разрешить перелистывание слайдов колесом мышки"
|
| 2284 |
|
| 2285 |
-
#: inc/core/data.php:
|
| 2286 |
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
| 2287 |
msgstr ""
|
| 2288 |
"Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы "
|
| 2289 |
"отключить автовоспроизведение"
|
| 2290 |
|
| 2291 |
-
#: inc/core/data.php:
|
| 2292 |
msgid "Speed"
|
| 2293 |
msgstr "Скорость"
|
| 2294 |
|
| 2295 |
-
#: inc/core/data.php:
|
| 2296 |
msgid "Specify animation speed"
|
| 2297 |
msgstr "Укажите скорость анимации"
|
| 2298 |
|
| 2299 |
-
#: inc/core/data.php:
|
| 2300 |
msgid "Customizable image slider"
|
| 2301 |
msgstr "Настраиваемый слайдер изображений"
|
| 2302 |
|
| 2303 |
-
#: inc/core/data.php:
|
| 2304 |
msgid "Carousel"
|
| 2305 |
msgstr "Карусель"
|
| 2306 |
|
| 2307 |
-
#: inc/core/data.php:
|
| 2308 |
msgid "Carousel width (in pixels)"
|
| 2309 |
msgstr "Ширина карусели (в пикселях)"
|
| 2310 |
|
| 2311 |
-
#: inc/core/data.php:
|
| 2312 |
msgid "Carousel height (in pixels)"
|
| 2313 |
msgstr "Высота карусели (в пикселях)"
|
| 2314 |
|
| 2315 |
-
#: inc/core/data.php:
|
| 2316 |
msgid "Ignore width and height parameters and make carousel responsive"
|
| 2317 |
msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
|
| 2318 |
|
| 2319 |
-
#: inc/core/data.php:
|
| 2320 |
msgid "Items to show"
|
| 2321 |
msgstr "Количество элементов для отображения"
|
| 2322 |
|
| 2323 |
-
#: inc/core/data.php:
|
| 2324 |
msgid "How much carousel items is visible"
|
| 2325 |
msgstr "Сколько элементов карусели видны постоянно"
|
| 2326 |
|
| 2327 |
-
#: inc/core/data.php:
|
| 2328 |
msgid "Scroll number"
|
| 2329 |
msgstr "Кол-во прокручиваемых"
|
| 2330 |
|
| 2331 |
-
#: inc/core/data.php:
|
| 2332 |
msgid "How much items are scrolled in one transition"
|
| 2333 |
msgstr "Сколько элементов карусели прокручивается за один переход"
|
| 2334 |
|
| 2335 |
-
#: inc/core/data.php:
|
| 2336 |
msgid "Display titles for each item"
|
| 2337 |
msgstr "Показывать заголовки для каждого элемента карусели"
|
| 2338 |
|
| 2339 |
-
#: inc/core/data.php:
|
| 2340 |
msgid "Is carousel centered on the page"
|
| 2341 |
msgstr "Карусель выровнена по центру страницы"
|
| 2342 |
|
| 2343 |
-
#: inc/core/data.php:
|
| 2344 |
msgid "Allow to rotate carousel with mouse wheel"
|
| 2345 |
msgstr "Разрешить прокрутку карусели колесом мыши"
|
| 2346 |
|
| 2347 |
-
#: inc/core/data.php:
|
| 2348 |
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
| 2349 |
msgstr ""
|
| 2350 |
"Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить "
|
| 2351 |
"автовоспроизведение"
|
| 2352 |
|
| 2353 |
-
#: inc/core/data.php:
|
| 2354 |
msgid "Customizable image carousel"
|
| 2355 |
msgstr "Настраиваемая карусель изображений"
|
| 2356 |
|
| 2357 |
-
#: inc/core/data.php:
|
| 2358 |
msgid "Single item width (in pixels)"
|
| 2359 |
msgstr "Ширина одного изображения (в пикселях)"
|
| 2360 |
|
| 2361 |
-
#: inc/core/data.php:
|
| 2362 |
msgid "Single item height (in pixels)"
|
| 2363 |
msgstr "Высота одного изображения (в пикселях)"
|
| 2364 |
|
| 2365 |
-
#: inc/core/data.php:
|
| 2366 |
msgid "Never"
|
| 2367 |
msgstr "Никогда"
|
| 2368 |
|
| 2369 |
-
#: inc/core/data.php:
|
| 2370 |
msgid "On mouse over"
|
| 2371 |
msgstr "При наведении мыши"
|
| 2372 |
|
| 2373 |
-
#: inc/core/data.php:
|
| 2374 |
msgid "Always"
|
| 2375 |
msgstr "Всегда"
|
| 2376 |
|
| 2377 |
-
#: inc/core/data.php:
|
| 2378 |
msgid "Title display mode"
|
| 2379 |
msgstr "Режим отображения заголовков"
|
| 2380 |
|
| 2381 |
-
#: inc/core/data.php:
|
| 2382 |
msgid "Customizable image gallery"
|
| 2383 |
msgstr "Настраиваемая галерея изображений"
|
| 2384 |
|
| 2385 |
-
#: inc/core/data.php:
|
| 2386 |
msgid "Posts"
|
| 2387 |
msgstr "Записи"
|
| 2388 |
|
| 2389 |
-
#: inc/core/data.php:
|
| 2390 |
msgid "Template"
|
| 2391 |
msgstr "Шаблон"
|
| 2392 |
|
| 2393 |
-
#: inc/core/data.php:
|
| 2394 |
msgid ""
|
| 2395 |
"<b>Do not change this field value if you do not understand description below."
|
| 2396 |
"</b><br/>Relative path to the template file. Default templates is placed "
|
|
@@ -2413,55 +2555,55 @@ msgstr ""
|
|
| 2413 |
"одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - "
|
| 2414 |
"маркированный список с заголовками постов"
|
| 2415 |
|
| 2416 |
-
#: inc/core/data.php:
|
| 2417 |
msgid "Post ID's"
|
| 2418 |
msgstr "ID постов"
|
| 2419 |
|
| 2420 |
-
#: inc/core/data.php:
|
| 2421 |
msgid "Enter comma separated ID's of the posts that you want to show"
|
| 2422 |
msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
|
| 2423 |
|
| 2424 |
-
#: inc/core/data.php:
|
| 2425 |
msgid "Posts per page"
|
| 2426 |
msgstr "Кол-во записей"
|
| 2427 |
|
| 2428 |
-
#: inc/core/data.php:
|
| 2429 |
msgid ""
|
| 2430 |
"Specify number of posts that you want to show. Enter -1 to get all posts"
|
| 2431 |
msgstr ""
|
| 2432 |
"Укажите число записей, которое хотите отобразить. Введите -1 чтобы "
|
| 2433 |
"отобразить все найденные записи"
|
| 2434 |
|
| 2435 |
-
#: inc/core/data.php:
|
| 2436 |
msgid "Post types"
|
| 2437 |
msgstr "Типы постов"
|
| 2438 |
|
| 2439 |
-
#: inc/core/data.php:
|
| 2440 |
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
| 2441 |
msgstr ""
|
| 2442 |
"Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
|
| 2443 |
|
| 2444 |
-
#: inc/core/data.php:
|
| 2445 |
msgid "Taxonomy"
|
| 2446 |
msgstr "Таксономия"
|
| 2447 |
|
| 2448 |
-
#: inc/core/data.php:
|
| 2449 |
msgid "Select taxonomy to show posts from"
|
| 2450 |
msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
|
| 2451 |
|
| 2452 |
-
#: inc/core/data.php:
|
| 2453 |
msgid "Terms"
|
| 2454 |
msgstr "Категории (terms)"
|
| 2455 |
|
| 2456 |
-
#: inc/core/data.php:
|
| 2457 |
msgid "Select terms to show posts from"
|
| 2458 |
msgstr "Выберите категории, из которых нужно показать записи"
|
| 2459 |
|
| 2460 |
-
#: inc/core/data.php:
|
| 2461 |
msgid "Taxonomy term operator"
|
| 2462 |
msgstr "Оператор выбора категорий"
|
| 2463 |
|
| 2464 |
-
#: inc/core/data.php:
|
| 2465 |
msgid ""
|
| 2466 |
"IN - posts that have any of selected categories terms<br/>NOT IN - posts "
|
| 2467 |
"that is does not have any of selected terms<br/>AND - posts that have all "
|
|
@@ -2471,203 +2613,203 @@ msgstr ""
|
|
| 2471 |
"будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/"
|
| 2472 |
">AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
|
| 2473 |
|
| 2474 |
-
#: inc/core/data.php:
|
| 2475 |
msgid "Authors"
|
| 2476 |
msgstr "Авторы"
|
| 2477 |
|
| 2478 |
-
#: inc/core/data.php:
|
| 2479 |
-
msgid "
|
| 2480 |
-
msgstr "
|
| 2481 |
|
| 2482 |
-
#: inc/core/data.php:
|
| 2483 |
msgid "Meta key"
|
| 2484 |
msgstr "Произвольное поле"
|
| 2485 |
|
| 2486 |
-
#: inc/core/data.php:
|
| 2487 |
msgid "Enter meta key name to show posts that have this key"
|
| 2488 |
msgstr ""
|
| 2489 |
"Введите оригинальное имя произвольного поля, чтобы показать все записи у "
|
| 2490 |
"которых это поле задано"
|
| 2491 |
|
| 2492 |
-
#: inc/core/data.php:
|
| 2493 |
msgid "Offset"
|
| 2494 |
msgstr "Смещение (offset)"
|
| 2495 |
|
| 2496 |
-
#: inc/core/data.php:
|
| 2497 |
msgid "Specify offset to start posts loop not from first post"
|
| 2498 |
msgstr ""
|
| 2499 |
"Укажите кол-во записей, которые будут пропущены и не показаны. Например, "
|
| 2500 |
"если указать 2, то будут показаны записи начиная со третьей"
|
| 2501 |
|
| 2502 |
-
#: inc/core/data.php:
|
| 2503 |
msgid "Descending"
|
| 2504 |
msgstr "По убыванию"
|
| 2505 |
|
| 2506 |
-
#: inc/core/data.php:
|
| 2507 |
msgid "Ascending"
|
| 2508 |
msgstr "По возрастанию"
|
| 2509 |
|
| 2510 |
-
#: inc/core/data.php:
|
| 2511 |
msgid "Order"
|
| 2512 |
msgstr "Порядок"
|
| 2513 |
|
| 2514 |
-
#: inc/core/data.php:
|
| 2515 |
msgid "Posts order"
|
| 2516 |
msgstr "Порядок сортировки записей"
|
| 2517 |
|
| 2518 |
-
#: inc/core/data.php:
|
| 2519 |
-
#: inc/core/data.php:
|
| 2520 |
msgid "Post ID"
|
| 2521 |
msgstr "ID записи"
|
| 2522 |
|
| 2523 |
-
#: inc/core/data.php:
|
| 2524 |
msgid "Post author"
|
| 2525 |
msgstr "Автор записи"
|
| 2526 |
|
| 2527 |
-
#: inc/core/data.php:
|
| 2528 |
msgid "Post title"
|
| 2529 |
msgstr "Заголовок записи"
|
| 2530 |
|
| 2531 |
-
#: inc/core/data.php:
|
| 2532 |
msgid "Post slug"
|
| 2533 |
msgstr "Ссылка записи (slug)"
|
| 2534 |
|
| 2535 |
-
#: inc/core/data.php:
|
| 2536 |
msgid "Date"
|
| 2537 |
msgstr "Дата"
|
| 2538 |
|
| 2539 |
-
#: inc/core/data.php:
|
| 2540 |
msgid "Last modified date"
|
| 2541 |
msgstr "Дата изменения"
|
| 2542 |
|
| 2543 |
-
#: inc/core/data.php:
|
| 2544 |
msgid "Post parent"
|
| 2545 |
msgstr "Родитель"
|
| 2546 |
|
| 2547 |
-
#: inc/core/data.php:
|
| 2548 |
msgid "Random"
|
| 2549 |
msgstr "Случайно"
|
| 2550 |
|
| 2551 |
-
#: inc/core/data.php:
|
| 2552 |
msgid "Comments number"
|
| 2553 |
msgstr "Кол-во комментариев"
|
| 2554 |
|
| 2555 |
-
#: inc/core/data.php:
|
| 2556 |
msgid "Menu order"
|
| 2557 |
msgstr "Порядок меню"
|
| 2558 |
|
| 2559 |
-
#: inc/core/data.php:
|
| 2560 |
msgid "Meta key values"
|
| 2561 |
msgstr "Значение произвольного поля"
|
| 2562 |
|
| 2563 |
-
#: inc/core/data.php:
|
| 2564 |
msgid "Order by"
|
| 2565 |
msgstr "Сортировать по"
|
| 2566 |
|
| 2567 |
-
#: inc/core/data.php:
|
| 2568 |
msgid "Order posts by"
|
| 2569 |
msgstr "Сортировать записи по следующему признаку"
|
| 2570 |
|
| 2571 |
-
#: inc/core/data.php:
|
| 2572 |
msgid "Show childrens of entered post (enter post ID)"
|
| 2573 |
msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
|
| 2574 |
|
| 2575 |
-
#: inc/core/data.php:
|
| 2576 |
msgid "Published"
|
| 2577 |
msgstr "Опубликован"
|
| 2578 |
|
| 2579 |
-
#: inc/core/data.php:
|
| 2580 |
msgid "Pending"
|
| 2581 |
msgstr "Ожидает"
|
| 2582 |
|
| 2583 |
-
#: inc/core/data.php:
|
| 2584 |
msgid "Draft"
|
| 2585 |
msgstr "Черновик"
|
| 2586 |
|
| 2587 |
-
#: inc/core/data.php:
|
| 2588 |
msgid "Auto-draft"
|
| 2589 |
msgstr "Авто-черновик"
|
| 2590 |
|
| 2591 |
-
#: inc/core/data.php:
|
| 2592 |
msgid "Future post"
|
| 2593 |
msgstr "Запланирован"
|
| 2594 |
|
| 2595 |
-
#: inc/core/data.php:
|
| 2596 |
msgid "Private post"
|
| 2597 |
msgstr "Приватная запись"
|
| 2598 |
|
| 2599 |
-
#: inc/core/data.php:
|
| 2600 |
msgid "Inherit"
|
| 2601 |
msgstr "Вложенный"
|
| 2602 |
|
| 2603 |
-
#: inc/core/data.php:
|
| 2604 |
msgid "Trashed"
|
| 2605 |
msgstr "В корзине"
|
| 2606 |
|
| 2607 |
-
#: inc/core/data.php:
|
| 2608 |
msgid "Any"
|
| 2609 |
msgstr "Любой"
|
| 2610 |
|
| 2611 |
-
#: inc/core/data.php:
|
| 2612 |
msgid "Post status"
|
| 2613 |
msgstr "Статус записи"
|
| 2614 |
|
| 2615 |
-
#: inc/core/data.php:
|
| 2616 |
msgid "Show only posts with selected status"
|
| 2617 |
msgstr "Показать только записи с выбранным статусом"
|
| 2618 |
|
| 2619 |
-
#: inc/core/data.php:
|
| 2620 |
msgid "Ignore sticky"
|
| 2621 |
msgstr "Игнорировать прикрепленные"
|
| 2622 |
|
| 2623 |
-
#: inc/core/data.php:
|
| 2624 |
msgid "Select Yes to ignore posts that is sticked"
|
| 2625 |
msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
|
| 2626 |
|
| 2627 |
-
#: inc/core/data.php:
|
| 2628 |
msgid "Custom posts query with customizable template"
|
| 2629 |
msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
|
| 2630 |
|
| 2631 |
-
#: inc/core/data.php:
|
| 2632 |
msgid "Dummy text"
|
| 2633 |
msgstr "Текст рыба"
|
| 2634 |
|
| 2635 |
-
#: inc/core/data.php:
|
| 2636 |
msgid "Paragraphs"
|
| 2637 |
msgstr "Параграфы"
|
| 2638 |
|
| 2639 |
-
#: inc/core/data.php:
|
| 2640 |
msgid "Words"
|
| 2641 |
msgstr "Слова"
|
| 2642 |
|
| 2643 |
-
#: inc/core/data.php:
|
| 2644 |
msgid "Bytes"
|
| 2645 |
msgstr "Байты"
|
| 2646 |
|
| 2647 |
-
#: inc/core/data.php:
|
| 2648 |
msgid "What"
|
| 2649 |
msgstr "Что"
|
| 2650 |
|
| 2651 |
-
#: inc/core/data.php:
|
| 2652 |
msgid "What to generate"
|
| 2653 |
msgstr "Что генерировать"
|
| 2654 |
|
| 2655 |
-
#: inc/core/data.php:
|
| 2656 |
msgid "Amount"
|
| 2657 |
msgstr "Количество"
|
| 2658 |
|
| 2659 |
-
#: inc/core/data.php:
|
| 2660 |
msgid ""
|
| 2661 |
"How many items (paragraphs or words) to generate. Minimum words amount is 5"
|
| 2662 |
msgstr ""
|
| 2663 |
"Какое количество (параграфов или слов) генерировать. Минимальное количество "
|
| 2664 |
"слов - 5"
|
| 2665 |
|
| 2666 |
-
#: inc/core/data.php:
|
| 2667 |
msgid "Cache"
|
| 2668 |
msgstr "Кеш"
|
| 2669 |
|
| 2670 |
-
#: inc/core/data.php:
|
| 2671 |
msgid ""
|
| 2672 |
"Generated text will be cached. Be careful with this option. If you disable "
|
| 2673 |
"it and insert many dummy_text shortcodes the page load time will be highly "
|
|
@@ -2677,111 +2819,111 @@ msgstr ""
|
|
| 2677 |
"вы отключите её и вставите много таких шорткодов на странице, то время "
|
| 2678 |
"загрузки страницы может сильно возрости"
|
| 2679 |
|
| 2680 |
-
#: inc/core/data.php:
|
| 2681 |
msgid "Text placeholder"
|
| 2682 |
msgstr "Текст болванка"
|
| 2683 |
|
| 2684 |
-
#: inc/core/data.php:
|
| 2685 |
msgid "Dummy image"
|
| 2686 |
msgstr "Изображение болванка"
|
| 2687 |
|
| 2688 |
-
#: inc/core/data.php:
|
| 2689 |
msgid "Image width"
|
| 2690 |
msgstr "Ширина изображения"
|
| 2691 |
|
| 2692 |
-
#: inc/core/data.php:
|
| 2693 |
msgid "Image height"
|
| 2694 |
msgstr "Высота изображения"
|
| 2695 |
|
| 2696 |
-
#: inc/core/data.php:
|
| 2697 |
msgid "Abstract"
|
| 2698 |
msgstr "Абстрактное"
|
| 2699 |
|
| 2700 |
-
#: inc/core/data.php:
|
| 2701 |
msgid "Animals"
|
| 2702 |
msgstr "Животные"
|
| 2703 |
|
| 2704 |
-
#: inc/core/data.php:
|
| 2705 |
msgid "Business"
|
| 2706 |
msgstr "Бизнес"
|
| 2707 |
|
| 2708 |
-
#: inc/core/data.php:
|
| 2709 |
msgid "Cats"
|
| 2710 |
msgstr "Котэ"
|
| 2711 |
|
| 2712 |
-
#: inc/core/data.php:
|
| 2713 |
msgid "City"
|
| 2714 |
msgstr "Город"
|
| 2715 |
|
| 2716 |
-
#: inc/core/data.php:
|
| 2717 |
msgid "Food"
|
| 2718 |
msgstr "Еда"
|
| 2719 |
|
| 2720 |
-
#: inc/core/data.php:
|
| 2721 |
msgid "Night life"
|
| 2722 |
msgstr "Ночная жизнь"
|
| 2723 |
|
| 2724 |
-
#: inc/core/data.php:
|
| 2725 |
msgid "Fashion"
|
| 2726 |
msgstr "Мода"
|
| 2727 |
|
| 2728 |
-
#: inc/core/data.php:
|
| 2729 |
msgid "People"
|
| 2730 |
msgstr "Люди"
|
| 2731 |
|
| 2732 |
-
#: inc/core/data.php:
|
| 2733 |
msgid "Nature"
|
| 2734 |
msgstr "Природа"
|
| 2735 |
|
| 2736 |
-
#: inc/core/data.php:
|
| 2737 |
msgid "Sports"
|
| 2738 |
msgstr "Спорт"
|
| 2739 |
|
| 2740 |
-
#: inc/core/data.php:
|
| 2741 |
msgid "Technics"
|
| 2742 |
msgstr "Техника"
|
| 2743 |
|
| 2744 |
-
#: inc/core/data.php:
|
| 2745 |
msgid "Transport"
|
| 2746 |
msgstr "Транспорт"
|
| 2747 |
|
| 2748 |
-
#: inc/core/data.php:
|
| 2749 |
msgid "Select the theme for this image"
|
| 2750 |
msgstr "Выберите тему изображений"
|
| 2751 |
|
| 2752 |
-
#: inc/core/data.php:
|
| 2753 |
msgid "Image placeholder with random image"
|
| 2754 |
msgstr "Изображение болванка со случайным изображением"
|
| 2755 |
|
| 2756 |
-
#: inc/core/data.php:
|
| 2757 |
msgid "Animation"
|
| 2758 |
msgstr "Анимация"
|
| 2759 |
|
| 2760 |
-
#: inc/core/data.php:
|
| 2761 |
msgid "Select animation type"
|
| 2762 |
msgstr "Выберите тип анимации"
|
| 2763 |
|
| 2764 |
-
#: inc/core/data.php:
|
| 2765 |
msgid "Duration"
|
| 2766 |
msgstr "Продолжительность"
|
| 2767 |
|
| 2768 |
-
#: inc/core/data.php:
|
| 2769 |
msgid "Animation duration (seconds)"
|
| 2770 |
msgstr "Продолжительность анимации (секунды)"
|
| 2771 |
|
| 2772 |
-
#: inc/core/data.php:
|
| 2773 |
msgid "Delay"
|
| 2774 |
msgstr "Задержка"
|
| 2775 |
|
| 2776 |
-
#: inc/core/data.php:
|
| 2777 |
msgid "Animation delay (seconds)"
|
| 2778 |
msgstr "Задержка перед началом анимации (секунды)"
|
| 2779 |
|
| 2780 |
-
#: inc/core/data.php:
|
| 2781 |
msgid "Inline"
|
| 2782 |
msgstr "Строковый"
|
| 2783 |
|
| 2784 |
-
#: inc/core/data.php:
|
| 2785 |
msgid ""
|
| 2786 |
"This parameter determines what HTML tag will be used for animation wrapper. "
|
| 2787 |
"Turn this option to YES and animated element will be wrapped in SPAN instead "
|
|
@@ -2791,49 +2933,49 @@ msgstr ""
|
|
| 2791 |
"Переключите этот параметр на ДА и будет использован тег span вместо div. "
|
| 2792 |
"Данная опция полезна для анимации строковых жлементов, например кнопок"
|
| 2793 |
|
| 2794 |
-
#: inc/core/data.php:
|
| 2795 |
msgid "Animated content"
|
| 2796 |
msgstr "Анимированное содержимое"
|
| 2797 |
|
| 2798 |
-
#: inc/core/data.php:
|
| 2799 |
msgid "Wrapper for animation. Any nested element will be animated"
|
| 2800 |
msgstr ""
|
| 2801 |
"Контейнер для анимации. Любой элемент помещенный в этот контейнер будет "
|
| 2802 |
"анимирован"
|
| 2803 |
|
| 2804 |
-
#: inc/core/data.php:
|
| 2805 |
msgid "Meta"
|
| 2806 |
msgstr "Мета"
|
| 2807 |
|
| 2808 |
-
#: inc/core/data.php:
|
| 2809 |
msgid "Key"
|
| 2810 |
msgstr "Ключ"
|
| 2811 |
|
| 2812 |
-
#: inc/core/data.php:
|
| 2813 |
msgid "Meta key name"
|
| 2814 |
msgstr "Имя произвольного поля"
|
| 2815 |
|
| 2816 |
-
#: inc/core/data.php:
|
| 2817 |
msgid "This text will be shown if data is not found"
|
| 2818 |
msgstr "Этот текст будет показан если не будет найдено запрошенное значение"
|
| 2819 |
|
| 2820 |
-
#: inc/core/data.php:
|
| 2821 |
msgid "Before"
|
| 2822 |
msgstr "Перед"
|
| 2823 |
|
| 2824 |
-
#: inc/core/data.php:
|
| 2825 |
msgid "This content will be shown before the value"
|
| 2826 |
msgstr "Этот текст будет показан перед результатом"
|
| 2827 |
|
| 2828 |
-
#: inc/core/data.php:
|
| 2829 |
msgid "After"
|
| 2830 |
msgstr "После"
|
| 2831 |
|
| 2832 |
-
#: inc/core/data.php:
|
| 2833 |
msgid "This content will be shown after the value"
|
| 2834 |
msgstr "Этот текст будет показан после результата"
|
| 2835 |
|
| 2836 |
-
#: inc/core/data.php:
|
| 2837 |
msgid ""
|
| 2838 |
"You can specify custom post ID. Leave this field empty to use an ID of the "
|
| 2839 |
"current post. Current post ID may not work in Live Preview mode"
|
|
@@ -2842,11 +2984,11 @@ msgstr ""
|
|
| 2842 |
"использовать ID текущей записи. ID текущей записи может не работать в режиме "
|
| 2843 |
"предпросмотра"
|
| 2844 |
|
| 2845 |
-
#: inc/core/data.php:
|
| 2846 |
msgid "Filter"
|
| 2847 |
msgstr "Фильтр"
|
| 2848 |
|
| 2849 |
-
#: inc/core/data.php:
|
| 2850 |
msgid ""
|
| 2851 |
"You can apply custom filter to the retrieved value. Enter here function "
|
| 2852 |
"name. Your function must accept one argument and return modified value. "
|
|
@@ -2856,59 +2998,59 @@ msgstr ""
|
|
| 2856 |
"здесь имя функции. Ваша функция должна принимать один аргумент и возвращать "
|
| 2857 |
"измененное значение. Пример функции: "
|
| 2858 |
|
| 2859 |
-
#: inc/core/data.php:
|
| 2860 |
msgid "Post meta"
|
| 2861 |
msgstr "Произвольное поле"
|
| 2862 |
|
| 2863 |
-
#: inc/core/data.php:
|
| 2864 |
msgid "User"
|
| 2865 |
msgstr "Пользователь"
|
| 2866 |
|
| 2867 |
-
#: inc/core/data.php:
|
| 2868 |
msgid "Display name"
|
| 2869 |
msgstr "Отображаемое имя"
|
| 2870 |
|
| 2871 |
-
#: inc/core/data.php:
|
| 2872 |
msgid "Login"
|
| 2873 |
msgstr "Логин"
|
| 2874 |
|
| 2875 |
-
#: inc/core/data.php:
|
| 2876 |
msgid "Nice name"
|
| 2877 |
msgstr "Красивое имя"
|
| 2878 |
|
| 2879 |
-
#: inc/core/data.php:
|
| 2880 |
msgid "Email"
|
| 2881 |
msgstr "Email"
|
| 2882 |
|
| 2883 |
-
#: inc/core/data.php:
|
| 2884 |
msgid "URL"
|
| 2885 |
msgstr "URL"
|
| 2886 |
|
| 2887 |
-
#: inc/core/data.php:
|
| 2888 |
msgid "Registered"
|
| 2889 |
msgstr "Зарегистрирован"
|
| 2890 |
|
| 2891 |
-
#: inc/core/data.php:
|
| 2892 |
msgid "Activation key"
|
| 2893 |
msgstr "Ключ активации"
|
| 2894 |
|
| 2895 |
-
#: inc/core/data.php:
|
| 2896 |
msgid "Status"
|
| 2897 |
msgstr "Статус"
|
| 2898 |
|
| 2899 |
-
#: inc/core/data.php:
|
| 2900 |
msgid "Field"
|
| 2901 |
msgstr "Поле"
|
| 2902 |
|
| 2903 |
-
#: inc/core/data.php:
|
| 2904 |
msgid "User data field name"
|
| 2905 |
msgstr "Имя поля с информацией о пользователе"
|
| 2906 |
|
| 2907 |
-
#: inc/core/data.php:
|
| 2908 |
msgid "User ID"
|
| 2909 |
msgstr "ID пользователя"
|
| 2910 |
|
| 2911 |
-
#: inc/core/data.php:
|
| 2912 |
msgid ""
|
| 2913 |
"You can specify custom user ID. Leave this field empty to use an ID of the "
|
| 2914 |
"current user"
|
|
@@ -2916,75 +3058,75 @@ msgstr ""
|
|
| 2916 |
"Вы можете указать ID любого пользователя. Оставьте это поле пустым, чтобы "
|
| 2917 |
"использовать ID текущего пользователя"
|
| 2918 |
|
| 2919 |
-
#: inc/core/data.php:
|
| 2920 |
msgid "User data"
|
| 2921 |
msgstr "Данные пользователя"
|
| 2922 |
|
| 2923 |
-
#: inc/core/data.php:
|
| 2924 |
msgid "Post"
|
| 2925 |
msgstr "Запись"
|
| 2926 |
|
| 2927 |
-
#: inc/core/data.php:
|
| 2928 |
msgid "Post date"
|
| 2929 |
msgstr "Дата записи"
|
| 2930 |
|
| 2931 |
-
#: inc/core/data.php:
|
| 2932 |
msgid "Post content"
|
| 2933 |
msgstr "Содержимое записи"
|
| 2934 |
|
| 2935 |
-
#: inc/core/data.php:
|
| 2936 |
msgid "Post excerpt"
|
| 2937 |
msgstr "Цитата записи"
|
| 2938 |
|
| 2939 |
-
#: inc/core/data.php:
|
| 2940 |
msgid "Comment status"
|
| 2941 |
msgstr "Статус комментариев"
|
| 2942 |
|
| 2943 |
-
#: inc/core/data.php:
|
| 2944 |
msgid "Ping status"
|
| 2945 |
msgstr "Статус пингов"
|
| 2946 |
|
| 2947 |
-
#: inc/core/data.php:
|
| 2948 |
msgid "Post name"
|
| 2949 |
msgstr "Имя записи"
|
| 2950 |
|
| 2951 |
-
#: inc/core/data.php:
|
| 2952 |
msgid "Post modified"
|
| 2953 |
msgstr "Дата изменения"
|
| 2954 |
|
| 2955 |
-
#: inc/core/data.php:
|
| 2956 |
msgid "Filtered post content"
|
| 2957 |
msgstr "Фильтрованное содержимое записи"
|
| 2958 |
|
| 2959 |
-
#: inc/core/data.php:
|
| 2960 |
msgid "GUID"
|
| 2961 |
msgstr "GUID"
|
| 2962 |
|
| 2963 |
-
#: inc/core/data.php:
|
| 2964 |
msgid "Post type"
|
| 2965 |
msgstr "Тип записи"
|
| 2966 |
|
| 2967 |
-
#: inc/core/data.php:
|
| 2968 |
msgid "Post mime type"
|
| 2969 |
msgstr "Типы файла записи (mime-type)"
|
| 2970 |
|
| 2971 |
-
#: inc/core/data.php:
|
| 2972 |
msgid "Comment count"
|
| 2973 |
msgstr "Количество комментариев"
|
| 2974 |
|
| 2975 |
-
#: inc/core/data.php:
|
| 2976 |
msgid "Post data field name"
|
| 2977 |
msgstr "Имя поля с информацией записи"
|
| 2978 |
|
| 2979 |
-
#: inc/core/data.php:
|
| 2980 |
msgid "Post data"
|
| 2981 |
msgstr "Данные записи"
|
| 2982 |
|
| 2983 |
-
#: inc/core/data.php:
|
| 2984 |
msgid "Template name"
|
| 2985 |
msgstr "Имя шаблона"
|
| 2986 |
|
| 2987 |
-
#: inc/core/data.php:
|
| 2988 |
#, php-format
|
| 2989 |
msgid ""
|
| 2990 |
"Use template file name (with optional .php extension). If you need to use "
|
|
@@ -2995,76 +3137,220 @@ msgstr ""
|
|
| 2995 |
"обязательно). Если нужно использовать шаблоны из под-папки темы, используйте "
|
| 2996 |
"относительный путь. Примеры значений: %s, %s, %s"
|
| 2997 |
|
| 2998 |
-
#: inc/core/data.php:
|
| 2999 |
msgid "Theme template"
|
| 3000 |
msgstr "Шаблон темы"
|
| 3001 |
|
| 3002 |
-
#: inc/core/data.php:
|
| 3003 |
msgid "QR code"
|
| 3004 |
msgstr "QR код"
|
| 3005 |
|
| 3006 |
-
#: inc/core/data.php:
|
| 3007 |
msgid ""
|
| 3008 |
"The text to store within the QR code. You can use here any text or even URL"
|
| 3009 |
msgstr ""
|
| 3010 |
"Текст закодированный в QR коде. Можно использовать любой текст или даже "
|
| 3011 |
"ссылку"
|
| 3012 |
|
| 3013 |
-
#: inc/core/data.php:
|
| 3014 |
msgid ""
|
| 3015 |
"Enter here short description. This text will be used in alt attribute of QR "
|
| 3016 |
"code"
|
| 3017 |
msgstr ""
|
| 3018 |
"Введите сюда краткое описание. Этот текст будет использован для аттрибута alt"
|
| 3019 |
|
| 3020 |
-
#: inc/core/data.php:
|
| 3021 |
msgid "Image width and height (in pixels)"
|
| 3022 |
msgstr "Ширина и высота изображения (в пикселях)"
|
| 3023 |
|
| 3024 |
-
#: inc/core/data.php:
|
| 3025 |
msgid "Thickness of a margin (in pixels)"
|
| 3026 |
msgstr "Толщина внешнего отступа (в пикселях)"
|
| 3027 |
|
| 3028 |
-
#: inc/core/data.php:
|
| 3029 |
msgid "Choose image alignment"
|
| 3030 |
msgstr "Выберите выравнивание изображения"
|
| 3031 |
|
| 3032 |
-
#: inc/core/data.php:
|
| 3033 |
msgid "You can make this QR code clickable. Enter here the URL"
|
| 3034 |
msgstr "Вы можете сделать этот QR код кликабельным. Введите сюда ссылку"
|
| 3035 |
|
| 3036 |
-
#: inc/core/data.php:
|
| 3037 |
msgid "Open link in same window/tab"
|
| 3038 |
msgstr "Открывать ссылку в том же окне/вкладке"
|
| 3039 |
|
| 3040 |
-
#: inc/core/data.php:
|
| 3041 |
msgid "Open link in new window/tab"
|
| 3042 |
msgstr "Открывать ссылку в новом окне/вкладке"
|
| 3043 |
|
| 3044 |
-
#: inc/core/data.php:
|
| 3045 |
msgid "Link target"
|
| 3046 |
msgstr "Цель ссылки"
|
| 3047 |
|
| 3048 |
-
#: inc/core/data.php:
|
| 3049 |
msgid "Select link target"
|
| 3050 |
msgstr "Выберите цель ссылки"
|
| 3051 |
|
| 3052 |
-
#: inc/core/data.php:
|
| 3053 |
msgid "Primary color"
|
| 3054 |
msgstr "Основной цвет"
|
| 3055 |
|
| 3056 |
-
#: inc/core/data.php:
|
| 3057 |
msgid "Pick a primary color"
|
| 3058 |
msgstr "Выберите основной цвет"
|
| 3059 |
|
| 3060 |
-
#: inc/core/data.php:
|
| 3061 |
msgid "Pick a background color"
|
| 3062 |
msgstr "Выберите цвет фона"
|
| 3063 |
|
| 3064 |
-
#: inc/core/data.php:
|
| 3065 |
msgid "Advanced QR code generator"
|
| 3066 |
msgstr "Продвинутый генератор QR кодов"
|
| 3067 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3068 |
#: inc/core/generator-views.php:45
|
| 3069 |
msgid "Yes"
|
| 3070 |
msgstr "Да"
|
|
@@ -3178,7 +3464,7 @@ msgstr ""
|
|
| 3178 |
"Выберите таксономию и её категории.<br>Вы можете выбрать несколько категорий "
|
| 3179 |
"удерживая клавишу Ctrl (Cmd)"
|
| 3180 |
|
| 3181 |
-
#: inc/core/generator.php:43 inc/core/generator.php:
|
| 3182 |
msgid "Insert shortcode"
|
| 3183 |
msgstr "Вставить шорткод"
|
| 3184 |
|
|
@@ -3199,55 +3485,59 @@ msgstr "Сайт плагина"
|
|
| 3199 |
msgid "Support forums"
|
| 3200 |
msgstr "Форум поддержки"
|
| 3201 |
|
| 3202 |
-
#: inc/core/generator.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3203 |
msgid "Search for shortcodes"
|
| 3204 |
msgstr "Поиск шорткода"
|
| 3205 |
|
| 3206 |
-
#: inc/core/generator.php:
|
| 3207 |
msgid "Filter by type"
|
| 3208 |
msgstr "Фильтр"
|
| 3209 |
|
| 3210 |
-
#: inc/core/generator.php:
|
| 3211 |
msgid "Shortcode not specified"
|
| 3212 |
msgstr "Не выбран шорткод"
|
| 3213 |
|
| 3214 |
-
#: inc/core/generator.php:
|
| 3215 |
msgid "Live preview"
|
| 3216 |
msgstr "Предпросмотр"
|
| 3217 |
|
| 3218 |
-
#: inc/core/generator.php:
|
| 3219 |
msgid "Click to return to the shortcodes list"
|
| 3220 |
msgstr "Нажмите, чтобы вернуться к списку шорткодов"
|
| 3221 |
|
| 3222 |
-
#: inc/core/generator.php:
|
| 3223 |
msgid "All shortcodes"
|
| 3224 |
msgstr "Все шорткоды"
|
| 3225 |
|
| 3226 |
-
#: inc/core/generator.php:
|
| 3227 |
msgid "Examples of use"
|
| 3228 |
msgstr "Примеры использования"
|
| 3229 |
|
| 3230 |
-
#: inc/core/generator.php:
|
| 3231 |
msgid "Click to set this value"
|
| 3232 |
msgstr "Нажмите чтобы установить это значение"
|
| 3233 |
|
| 3234 |
-
#: inc/core/generator.php:
|
| 3235 |
msgid "Preview"
|
| 3236 |
msgstr "Предпросмотр"
|
| 3237 |
|
| 3238 |
-
#: inc/core/generator.php:
|
| 3239 |
msgid "Access denied"
|
| 3240 |
msgstr "Доступ запрещен"
|
| 3241 |
|
| 3242 |
-
#: inc/core/generator.php:
|
| 3243 |
msgid "Presets"
|
| 3244 |
msgstr "Шаблоны"
|
| 3245 |
|
| 3246 |
-
#: inc/core/generator.php:
|
| 3247 |
msgid "Save current settings as preset"
|
| 3248 |
msgstr "Сохранить настройки как новый шаблон"
|
| 3249 |
|
| 3250 |
-
#: inc/core/generator.php:
|
| 3251 |
msgid "Presets not found"
|
| 3252 |
msgstr "Шаблоны не найдены"
|
| 3253 |
|
|
@@ -3327,10 +3617,6 @@ msgstr "Произвольный CSS"
|
|
| 3327 |
msgid "Examples"
|
| 3328 |
msgstr "Примеры"
|
| 3329 |
|
| 3330 |
-
#: inc/core/load.php:141 inc/core/load.php:142
|
| 3331 |
-
msgid "Add-ons"
|
| 3332 |
-
msgstr "Дополнения"
|
| 3333 |
-
|
| 3334 |
#: inc/core/load.php:154 inc/core/vote.php:42
|
| 3335 |
msgid "Vladimir Anokhin"
|
| 3336 |
msgstr "Владимир Анохин"
|
|
@@ -3375,61 +3661,70 @@ msgstr ""
|
|
| 3375 |
msgid "Tab title"
|
| 3376 |
msgstr "Заголовок вкладкки"
|
| 3377 |
|
| 3378 |
-
#: inc/core/shortcodes.php:
|
| 3379 |
msgid "This is box title"
|
| 3380 |
msgstr "Заголовок блока"
|
| 3381 |
|
| 3382 |
-
#: inc/core/shortcodes.php:
|
| 3383 |
msgid "please specify correct source"
|
| 3384 |
msgstr "пожалуйста укажите корректную ссылку"
|
| 3385 |
|
| 3386 |
-
#: inc/core/shortcodes.php:
|
| 3387 |
-
#: inc/core/shortcodes.php:
|
| 3388 |
-
#: inc/core/shortcodes.php:
|
| 3389 |
-
#: inc/core/shortcodes.php:
|
| 3390 |
-
#: inc/core/shortcodes.php:
|
| 3391 |
-
#: inc/core/shortcodes.php:
|
| 3392 |
-
#: inc/core/shortcodes.php:
|
| 3393 |
msgid "please specify correct url"
|
| 3394 |
msgstr "пожалуйста укажите корректную ссылку"
|
| 3395 |
|
| 3396 |
-
#: inc/core/shortcodes.php:
|
| 3397 |
msgid "This menu doesn't exists, or has no elements"
|
| 3398 |
msgstr "Такое меню не существует, или в нем нет ни одного элемента"
|
| 3399 |
|
| 3400 |
-
#: inc/core/shortcodes.php:
|
| 3401 |
-
#: inc/core/shortcodes.php:
|
| 3402 |
msgid "images not found"
|
| 3403 |
msgstr "изображения не найдены"
|
| 3404 |
|
| 3405 |
-
#: inc/core/shortcodes.php:
|
| 3406 |
msgid "template not found"
|
| 3407 |
msgstr "шаблон не найден"
|
| 3408 |
|
| 3409 |
-
#: inc/core/shortcodes.php:
|
| 3410 |
msgid "post ID is incorrect"
|
| 3411 |
msgstr "ID записи указан неверно"
|
| 3412 |
|
| 3413 |
-
#: inc/core/shortcodes.php:
|
| 3414 |
msgid "please specify meta key name"
|
| 3415 |
msgstr "пожалуйста укажите имя ключа произвольного поля"
|
| 3416 |
|
| 3417 |
-
#: inc/core/shortcodes.php:
|
| 3418 |
msgid "password field is not allowed"
|
| 3419 |
msgstr "поле пароль запрещено"
|
| 3420 |
|
| 3421 |
-
#: inc/core/shortcodes.php:
|
| 3422 |
msgid "user ID is incorrect"
|
| 3423 |
msgstr "ID пользователя указан неверно"
|
| 3424 |
|
| 3425 |
-
#: inc/core/shortcodes.php:
|
| 3426 |
msgid "please specify template name"
|
| 3427 |
msgstr "пожалуйста укажите имя шаблона"
|
| 3428 |
|
| 3429 |
-
#: inc/core/shortcodes.php:
|
| 3430 |
msgid "please specify the data"
|
| 3431 |
msgstr "пожалуйста введите данные"
|
| 3432 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3433 |
#: inc/core/tools.php:819
|
| 3434 |
msgid "Example code does not found, please check it later"
|
| 3435 |
msgstr "Код примера не найден, возвращайтесь позже"
|
|
@@ -3580,11 +3875,11 @@ msgstr "нет комментариев"
|
|
| 3580 |
msgid "1 comment"
|
| 3581 |
msgstr "1 комментарий"
|
| 3582 |
|
| 3583 |
-
#: templates/default-loop.php:19 templates/single-post.php:17
|
| 3584 |
-
msgid "%n comments"
|
| 3585 |
-
msgstr "%n комментариев"
|
| 3586 |
-
|
| 3587 |
#: templates/default-loop.php:27 templates/list-loop.php:16
|
| 3588 |
#: templates/single-post.php:28 templates/teaser-loop.php:20
|
| 3589 |
msgid "Posts not found"
|
| 3590 |
msgstr "Записи не найдены"
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
msgstr ""
|
| 3 |
"Project-Id-Version: gn_themes\n"
|
| 4 |
"Report-Msgid-Bugs-To: \n"
|
| 5 |
+
"POT-Creation-Date: 2014-08-07 01:13+0400\n"
|
| 6 |
+
"PO-Revision-Date: 2014-08-07 01:52+0400\n"
|
| 7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
| 8 |
"Language-Team: \n"
|
| 9 |
"Language: ru_RU\n"
|
| 317 |
"Этот шорткод не работает в режиме предпросмотра. Пожалуйста вставьте шорткод "
|
| 318 |
"в редактор и посмотрите результат на странице записи."
|
| 319 |
|
| 320 |
+
#: inc/core/counters.php:18 inc/core/counters.php:45
|
| 321 |
msgid "1 new add-on for Shortcodes Ultimate"
|
| 322 |
msgstr "1 новое дополнение для плагина Шорткоды"
|
| 323 |
|
| 325 |
msgid "All"
|
| 326 |
msgstr "Все"
|
| 327 |
|
| 328 |
+
#: inc/core/data.php:18 inc/core/generator.php:182
|
| 329 |
msgid "Content"
|
| 330 |
msgstr "Содержимое"
|
| 331 |
|
| 332 |
+
#: inc/core/data.php:19 inc/core/data.php:877
|
| 333 |
msgid "Box"
|
| 334 |
msgstr "Блок"
|
| 335 |
|
| 337 |
msgid "Media"
|
| 338 |
msgstr "Медиа"
|
| 339 |
|
| 340 |
+
#: inc/core/data.php:21 inc/core/data.php:2238
|
| 341 |
msgid "Gallery"
|
| 342 |
msgstr "Галерея"
|
| 343 |
|
| 344 |
+
#: inc/core/data.php:22 inc/core/data.php:2810
|
| 345 |
msgid "Data"
|
| 346 |
msgstr "Данные"
|
| 347 |
|
| 349 |
msgid "Other"
|
| 350 |
msgstr "Другое"
|
| 351 |
|
| 352 |
+
#: inc/core/data.php:32 inc/core/data.php:2003 inc/core/data.php:2122
|
| 353 |
+
#: inc/core/data.php:2260 inc/core/data.php:2409 inc/core/data.php:2839
|
| 354 |
msgid "None"
|
| 355 |
msgstr "Нет"
|
| 356 |
|
| 358 |
msgid "Solid"
|
| 359 |
msgstr "Сплошной"
|
| 360 |
|
| 361 |
+
#: inc/core/data.php:34 inc/core/data.php:360 inc/core/data.php:1018
|
| 362 |
msgid "Dotted"
|
| 363 |
msgstr "Пунктирный (точки)"
|
| 364 |
|
| 365 |
+
#: inc/core/data.php:35 inc/core/data.php:361 inc/core/data.php:1019
|
| 366 |
msgid "Dashed"
|
| 367 |
msgstr "Пунктирный (тире)"
|
| 368 |
|
| 369 |
+
#: inc/core/data.php:36 inc/core/data.php:362
|
| 370 |
msgid "Double"
|
| 371 |
msgstr "Двойной"
|
| 372 |
|
| 425 |
msgid "Heading"
|
| 426 |
msgstr "Заголовок"
|
| 427 |
|
| 428 |
+
#: inc/core/data.php:136 inc/core/data.php:190 inc/core/data.php:275
|
| 429 |
+
#: inc/core/data.php:359 inc/core/data.php:471 inc/core/data.php:501
|
| 430 |
+
#: inc/core/data.php:562 inc/core/data.php:729 inc/core/data.php:889
|
| 431 |
+
#: inc/core/data.php:1016 inc/core/data.php:1144 inc/core/data.php:2612
|
| 432 |
+
#: inc/core/data.php:2664 inc/core/data.php:2727
|
| 433 |
msgid "Default"
|
| 434 |
msgstr "По умолчанию"
|
| 435 |
|
| 436 |
+
#: inc/core/data.php:139 inc/core/data.php:193 inc/core/data.php:280
|
| 437 |
+
#: inc/core/data.php:365 inc/core/data.php:504 inc/core/data.php:568
|
| 438 |
+
#: inc/core/data.php:740 inc/core/data.php:896 inc/core/data.php:1114
|
| 439 |
msgid "Style"
|
| 440 |
msgstr "Стиль"
|
| 441 |
|
| 443 |
msgid "Choose style for this heading"
|
| 444 |
msgstr "Выберите стиль для этого заголовка"
|
| 445 |
|
| 446 |
+
#: inc/core/data.php:140 inc/core/data.php:194 inc/core/data.php:281
|
| 447 |
+
#: inc/core/data.php:505
|
| 448 |
msgid "Install additional styles"
|
| 449 |
msgstr "Установить дополнительные стили"
|
| 450 |
|
| 451 |
+
#: inc/core/data.php:148 inc/core/data.php:388 inc/core/data.php:576
|
| 452 |
+
#: inc/core/data.php:655 inc/core/data.php:761 inc/core/data.php:2824
|
| 453 |
msgid "Size"
|
| 454 |
msgstr "Размер"
|
| 455 |
|
| 457 |
msgid "Select heading size (pixels)"
|
| 458 |
msgstr "Выберите размер заголовка (в пикселях)"
|
| 459 |
|
| 460 |
+
#: inc/core/data.php:154 inc/core/data.php:537 inc/core/data.php:598
|
| 461 |
+
#: inc/core/data.php:1029 inc/core/data.php:1122 inc/core/data.php:2840
|
| 462 |
msgid "Left"
|
| 463 |
msgstr "Слева"
|
| 464 |
|
| 465 |
+
#: inc/core/data.php:155 inc/core/data.php:599 inc/core/data.php:1030
|
| 466 |
+
#: inc/core/data.php:2054 inc/core/data.php:2192 inc/core/data.php:2841
|
| 467 |
msgid "Center"
|
| 468 |
msgstr "По центру"
|
| 469 |
|
| 470 |
+
#: inc/core/data.php:156 inc/core/data.php:538 inc/core/data.php:600
|
| 471 |
+
#: inc/core/data.php:1031 inc/core/data.php:1123 inc/core/data.php:2842
|
| 472 |
msgid "Right"
|
| 473 |
msgstr "Справа"
|
| 474 |
|
| 475 |
+
#: inc/core/data.php:159 inc/core/data.php:541 inc/core/data.php:603
|
| 476 |
+
#: inc/core/data.php:2845
|
| 477 |
msgid "Align"
|
| 478 |
msgstr "Выравнивание"
|
| 479 |
|
| 481 |
msgid "Heading text alignment"
|
| 482 |
msgstr "Выравнивание текста в заголовке"
|
| 483 |
|
| 484 |
+
#: inc/core/data.php:168 inc/core/data.php:397 inc/core/data.php:2833
|
| 485 |
msgid "Margin"
|
| 486 |
msgstr "Отступ"
|
| 487 |
|
| 490 |
msgstr "Отступ снизу (в пикселях)"
|
| 491 |
|
| 492 |
#: inc/core/data.php:173 inc/core/data.php:213 inc/core/data.php:246
|
| 493 |
+
#: inc/core/data.php:311 inc/core/data.php:329 inc/core/data.php:402
|
| 494 |
+
#: inc/core/data.php:426 inc/core/data.php:454 inc/core/data.php:484
|
| 495 |
+
#: inc/core/data.php:520 inc/core/data.php:545 inc/core/data.php:581
|
| 496 |
+
#: inc/core/data.php:608 inc/core/data.php:624 inc/core/data.php:666
|
| 497 |
+
#: inc/core/data.php:696 inc/core/data.php:823 inc/core/data.php:867
|
| 498 |
+
#: inc/core/data.php:923 inc/core/data.php:960 inc/core/data.php:1051
|
| 499 |
+
#: inc/core/data.php:1083 inc/core/data.php:1185 inc/core/data.php:1201
|
| 500 |
+
#: inc/core/data.php:1253 inc/core/data.php:1378 inc/core/data.php:1429
|
| 501 |
+
#: inc/core/data.php:1474 inc/core/data.php:1573 inc/core/data.php:1612
|
| 502 |
+
#: inc/core/data.php:1682 inc/core/data.php:1704 inc/core/data.php:1735
|
| 503 |
+
#: inc/core/data.php:1768 inc/core/data.php:1784 inc/core/data.php:1814
|
| 504 |
+
#: inc/core/data.php:1834 inc/core/data.php:1861 inc/core/data.php:1882
|
| 505 |
+
#: inc/core/data.php:1927 inc/core/data.php:1972 inc/core/data.php:2091
|
| 506 |
+
#: inc/core/data.php:2229 inc/core/data.php:2310 inc/core/data.php:2489
|
| 507 |
+
#: inc/core/data.php:2544 inc/core/data.php:2590 inc/core/data.php:2877
|
| 508 |
msgid "Class"
|
| 509 |
msgstr "Класс"
|
| 510 |
|
| 511 |
#: inc/core/data.php:174 inc/core/data.php:214 inc/core/data.php:247
|
| 512 |
+
#: inc/core/data.php:312 inc/core/data.php:330 inc/core/data.php:403
|
| 513 |
+
#: inc/core/data.php:427 inc/core/data.php:455 inc/core/data.php:485
|
| 514 |
+
#: inc/core/data.php:521 inc/core/data.php:546 inc/core/data.php:582
|
| 515 |
+
#: inc/core/data.php:609 inc/core/data.php:625 inc/core/data.php:667
|
| 516 |
+
#: inc/core/data.php:697 inc/core/data.php:824 inc/core/data.php:868
|
| 517 |
+
#: inc/core/data.php:924 inc/core/data.php:961 inc/core/data.php:1052
|
| 518 |
+
#: inc/core/data.php:1084 inc/core/data.php:1186 inc/core/data.php:1202
|
| 519 |
+
#: inc/core/data.php:1254 inc/core/data.php:1379 inc/core/data.php:1430
|
| 520 |
+
#: inc/core/data.php:1475 inc/core/data.php:1574 inc/core/data.php:1613
|
| 521 |
+
#: inc/core/data.php:1683 inc/core/data.php:1705 inc/core/data.php:1736
|
| 522 |
+
#: inc/core/data.php:1769 inc/core/data.php:1785 inc/core/data.php:1815
|
| 523 |
+
#: inc/core/data.php:1835 inc/core/data.php:1862 inc/core/data.php:1883
|
| 524 |
+
#: inc/core/data.php:1928 inc/core/data.php:1973 inc/core/data.php:2092
|
| 525 |
+
#: inc/core/data.php:2230 inc/core/data.php:2311 inc/core/data.php:2490
|
| 526 |
+
#: inc/core/data.php:2545 inc/core/data.php:2591 inc/core/data.php:2878
|
| 527 |
msgid "Extra CSS class"
|
| 528 |
msgstr "Дополнительный CSS класс"
|
| 529 |
|
| 581 |
msgid "Tab name"
|
| 582 |
msgstr "Имя вкладки"
|
| 583 |
|
| 584 |
+
#: inc/core/data.php:230 inc/core/data.php:264 inc/core/data.php:841
|
| 585 |
+
#: inc/core/data.php:884 inc/core/data.php:1641 inc/core/data.php:2815
|
| 586 |
msgid "Title"
|
| 587 |
msgstr "Заголовок"
|
| 588 |
|
| 598 |
msgid "Is this tab disabled"
|
| 599 |
msgstr "Эта вкладка отключена"
|
| 600 |
|
| 601 |
+
#: inc/core/data.php:241 inc/core/data.php:306
|
| 602 |
msgid "Anchor"
|
| 603 |
msgstr "Якорь"
|
| 604 |
|
| 621 |
msgid "Single tab"
|
| 622 |
msgstr "Одиночная вкладка"
|
| 623 |
|
| 624 |
+
#: inc/core/data.php:252
|
| 625 |
+
msgid "Did you know that you need to wrap single tabs with [tabs] shortcode?"
|
| 626 |
+
msgstr ""
|
| 627 |
+
"Знаете ли вы что несколько одиночных вкладок нужно оборачивать в шорткод "
|
| 628 |
+
"[tabs]?"
|
| 629 |
+
|
| 630 |
+
#: inc/core/data.php:258
|
| 631 |
msgid "Spoiler"
|
| 632 |
msgstr "Спойлер"
|
| 633 |
|
| 634 |
+
#: inc/core/data.php:263 inc/core/shortcodes.php:72
|
| 635 |
msgid "Spoiler title"
|
| 636 |
msgstr "Скрытый текст"
|
| 637 |
|
| 638 |
+
#: inc/core/data.php:264
|
| 639 |
msgid "Text in spoiler title"
|
| 640 |
msgstr "Текст для заголовка спойлера"
|
| 641 |
|
| 642 |
+
#: inc/core/data.php:269
|
| 643 |
msgid "Open"
|
| 644 |
msgstr "Открыт"
|
| 645 |
|
| 646 |
+
#: inc/core/data.php:270
|
| 647 |
msgid "Is spoiler content visible by default"
|
| 648 |
msgstr "Виден ли контент спойлера по умолчанию"
|
| 649 |
|
| 650 |
+
#: inc/core/data.php:276
|
| 651 |
msgid "Fancy"
|
| 652 |
msgstr "Стильный"
|
| 653 |
|
| 654 |
+
#: inc/core/data.php:277 inc/core/data.php:565
|
| 655 |
msgid "Simple"
|
| 656 |
msgstr "Простой"
|
| 657 |
|
| 658 |
+
#: inc/core/data.php:281
|
| 659 |
msgid "Choose style for this spoiler"
|
| 660 |
msgstr "Выберите стиль для этого спойлера"
|
| 661 |
|
| 662 |
+
#: inc/core/data.php:286
|
| 663 |
msgid "Plus"
|
| 664 |
msgstr "Плюс"
|
| 665 |
|
| 666 |
+
#: inc/core/data.php:287
|
| 667 |
msgid "Plus circle"
|
| 668 |
msgstr "Плюс в круге"
|
| 669 |
|
| 670 |
+
#: inc/core/data.php:288
|
| 671 |
msgid "Plus square 1"
|
| 672 |
msgstr "Плюс в квадрате 1"
|
| 673 |
|
| 674 |
+
#: inc/core/data.php:289
|
| 675 |
msgid "Plus square 2"
|
| 676 |
msgstr "Плюс в квадрате 2"
|
| 677 |
|
| 678 |
+
#: inc/core/data.php:290
|
| 679 |
msgid "Arrow"
|
| 680 |
msgstr "Стрелка"
|
| 681 |
|
| 682 |
+
#: inc/core/data.php:291
|
| 683 |
msgid "Arrow circle 1"
|
| 684 |
msgstr "Стрелка в круге 1"
|
| 685 |
|
| 686 |
+
#: inc/core/data.php:292
|
| 687 |
msgid "Arrow circle 2"
|
| 688 |
msgstr "Стрелка в круге 2"
|
| 689 |
|
| 690 |
+
#: inc/core/data.php:293
|
| 691 |
msgid "Chevron"
|
| 692 |
msgstr "Уголок"
|
| 693 |
|
| 694 |
+
#: inc/core/data.php:294
|
| 695 |
msgid "Chevron circle"
|
| 696 |
msgstr "Уголок в круге"
|
| 697 |
|
| 698 |
+
#: inc/core/data.php:295
|
| 699 |
msgid "Caret"
|
| 700 |
msgstr "Треугольник"
|
| 701 |
|
| 702 |
+
#: inc/core/data.php:296
|
| 703 |
msgid "Caret square"
|
| 704 |
msgstr "Треугольник в квадрате"
|
| 705 |
|
| 706 |
+
#: inc/core/data.php:297
|
| 707 |
msgid "Folder 1"
|
| 708 |
msgstr "Папка 1"
|
| 709 |
|
| 710 |
+
#: inc/core/data.php:298
|
| 711 |
msgid "Folder 2"
|
| 712 |
msgstr "Папка 2"
|
| 713 |
|
| 714 |
+
#: inc/core/data.php:301 inc/core/data.php:685 inc/core/data.php:791
|
| 715 |
+
#: inc/core/data.php:847
|
| 716 |
msgid "Icon"
|
| 717 |
msgstr "Иконка"
|
| 718 |
|
| 719 |
+
#: inc/core/data.php:302
|
| 720 |
msgid "Icons for spoiler"
|
| 721 |
msgstr "Иконка для спойлера"
|
| 722 |
|
| 723 |
+
#: inc/core/data.php:307
|
| 724 |
msgid ""
|
| 725 |
"You can use unique anchor for this spoiler to access it with hash in page "
|
| 726 |
"url. For example: type here <b%value>Hello</b> and then use url like http://"
|
| 731 |
"используйте ссылку вида http://example.com/page-utl#Hello. Этот спойлер "
|
| 732 |
"будет открыт и страница будет прокручена к нему"
|
| 733 |
|
| 734 |
+
#: inc/core/data.php:315
|
| 735 |
msgid "Hidden content"
|
| 736 |
msgstr "Скрытое содержимое"
|
| 737 |
|
| 738 |
+
#: inc/core/data.php:316
|
| 739 |
msgid "Spoiler with hidden content"
|
| 740 |
msgstr "Спойлер со скрытым содержимым"
|
| 741 |
|
| 742 |
+
#: inc/core/data.php:317 inc/core/data.php:335
|
| 743 |
msgid ""
|
| 744 |
"Did you know that you can wrap multiple spoilers with [accordion] shortcode "
|
| 745 |
"to create accordion effect?"
|
| 747 |
"Знаете ли вы что вы можете обернуть несколько спойлеров в шорткод "
|
| 748 |
"[accordion] чтобы создать эффект аккордеона?"
|
| 749 |
|
| 750 |
+
#: inc/core/data.php:323
|
| 751 |
msgid "Accordion"
|
| 752 |
msgstr "Аккордеон"
|
| 753 |
|
| 754 |
+
#: inc/core/data.php:333
|
| 755 |
msgid ""
|
| 756 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
| 757 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
| 761 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]\n"
|
| 762 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]"
|
| 763 |
|
| 764 |
+
#: inc/core/data.php:334
|
| 765 |
msgid "Accordion with spoilers"
|
| 766 |
msgstr "Аккордеон со спойлерами"
|
| 767 |
|
| 768 |
+
#: inc/core/data.php:341
|
| 769 |
msgid "Divider"
|
| 770 |
msgstr "Разделитель"
|
| 771 |
|
| 772 |
+
#: inc/core/data.php:348
|
| 773 |
msgid "Show TOP link"
|
| 774 |
msgstr "Показать ссылку ВВЕРХ"
|
| 775 |
|
| 776 |
+
#: inc/core/data.php:349
|
| 777 |
msgid "Show link to top of the page or not"
|
| 778 |
msgstr "Показывать ссылку ВВЕРХ или нет"
|
| 779 |
|
| 780 |
+
#: inc/core/data.php:353 inc/core/shortcodes.php:99
|
| 781 |
msgid "Go to top"
|
| 782 |
msgstr "Вверх"
|
| 783 |
|
| 784 |
+
#: inc/core/data.php:354
|
| 785 |
msgid "Link text"
|
| 786 |
msgstr "Текст ссылки"
|
| 787 |
|
| 788 |
+
#: inc/core/data.php:354
|
| 789 |
msgid "Text for the GO TOP link"
|
| 790 |
msgstr "Текст ссылки ВВЕРХ"
|
| 791 |
|
| 792 |
+
#: inc/core/data.php:366
|
| 793 |
+
msgid "Choose style for this divider"
|
| 794 |
+
msgstr "Выберите стиль для этого разделителя"
|
| 795 |
+
|
| 796 |
+
#: inc/core/data.php:372
|
| 797 |
+
msgid "Divider color"
|
| 798 |
+
msgstr "Цвет разделителя"
|
| 799 |
+
|
| 800 |
+
#: inc/core/data.php:373
|
| 801 |
+
msgid "Pick the color for divider"
|
| 802 |
+
msgstr "Выберите цвет разделителя"
|
| 803 |
+
|
| 804 |
+
#: inc/core/data.php:379 inc/core/data.php:1010
|
| 805 |
+
msgid "Link color"
|
| 806 |
+
msgstr "Цвет ссылки"
|
| 807 |
+
|
| 808 |
+
#: inc/core/data.php:380
|
| 809 |
+
msgid "Pick the color for TOP link"
|
| 810 |
+
msgstr "Выберите цвет для ссылки ВВЕРХ"
|
| 811 |
+
|
| 812 |
+
#: inc/core/data.php:389
|
| 813 |
+
msgid "Height of the divider (in pixels)"
|
| 814 |
+
msgstr "Высота разделителя (в пикселях)"
|
| 815 |
+
|
| 816 |
+
#: inc/core/data.php:398
|
| 817 |
+
msgid "Adjust the top and bottom margins of this divider (in pixels)"
|
| 818 |
+
msgstr "Настройте верхний и нижний внешние отступы разделителя (в пикселях)"
|
| 819 |
+
|
| 820 |
+
#: inc/core/data.php:406
|
| 821 |
msgid "Content divider with optional TOP link"
|
| 822 |
msgstr "Разделитель текста со ссылкой ВВЕРХ"
|
| 823 |
|
| 824 |
+
#: inc/core/data.php:411
|
| 825 |
msgid "Spacer"
|
| 826 |
msgstr "Пробел"
|
| 827 |
|
| 828 |
+
#: inc/core/data.php:421 inc/core/data.php:990 inc/core/data.php:1236
|
| 829 |
+
#: inc/core/data.php:1293 inc/core/data.php:1412 inc/core/data.php:1463
|
| 830 |
+
#: inc/core/data.php:1507 inc/core/data.php:1659 inc/core/data.php:1916
|
| 831 |
+
#: inc/core/data.php:1955 inc/core/data.php:2038 inc/core/data.php:2158
|
| 832 |
+
#: inc/core/data.php:2295 inc/core/data.php:2517
|
| 833 |
msgid "Height"
|
| 834 |
msgstr "Высота"
|
| 835 |
|
| 836 |
+
#: inc/core/data.php:422
|
| 837 |
msgid "Height of the spacer in pixels"
|
| 838 |
msgstr "Высота пробела в пикселях"
|
| 839 |
|
| 840 |
+
#: inc/core/data.php:430
|
| 841 |
msgid "Empty space with adjustable height"
|
| 842 |
msgstr "Пробел с настраиваемой высотой"
|
| 843 |
|
| 844 |
+
#: inc/core/data.php:435
|
| 845 |
msgid "Highlight"
|
| 846 |
msgstr "Выделитель"
|
| 847 |
|
| 848 |
+
#: inc/core/data.php:443 inc/core/data.php:746 inc/core/data.php:941
|
| 849 |
msgid "Background"
|
| 850 |
msgstr "Фон"
|
| 851 |
|
| 852 |
+
#: inc/core/data.php:444
|
| 853 |
msgid "Highlighted text background color"
|
| 854 |
msgstr "Цвет фона выделяемого текста"
|
| 855 |
|
| 856 |
+
#: inc/core/data.php:450 inc/core/data.php:752 inc/core/data.php:947
|
| 857 |
+
#: inc/core/data.php:1003
|
| 858 |
msgid "Text color"
|
| 859 |
msgstr "Цвет текста"
|
| 860 |
|
| 861 |
+
#: inc/core/data.php:450
|
| 862 |
msgid "Highlighted text color"
|
| 863 |
msgstr "Цвет выделяемого текста"
|
| 864 |
|
| 865 |
+
#: inc/core/data.php:458 inc/core/data.php:459
|
| 866 |
msgid "Highlighted text"
|
| 867 |
msgstr "Подсвеченный текст"
|
| 868 |
|
| 869 |
+
#: inc/core/data.php:464 inc/core/data.php:488 inc/vendor/sunrise.php:409
|
| 870 |
msgid "Label"
|
| 871 |
msgstr "Ярлык"
|
| 872 |
|
| 873 |
+
#: inc/core/data.php:472
|
| 874 |
msgid "Success"
|
| 875 |
msgstr "Успех"
|
| 876 |
|
| 877 |
+
#: inc/core/data.php:473
|
| 878 |
msgid "Warning"
|
| 879 |
msgstr "Внимание"
|
| 880 |
|
| 881 |
+
#: inc/core/data.php:474
|
| 882 |
msgid "Important"
|
| 883 |
msgstr "Важно"
|
| 884 |
|
| 885 |
+
#: inc/core/data.php:475
|
| 886 |
msgid "Black"
|
| 887 |
msgstr "Черный"
|
| 888 |
|
| 889 |
+
#: inc/core/data.php:476
|
| 890 |
msgid "Info"
|
| 891 |
msgstr "Инфо"
|
| 892 |
|
| 893 |
+
#: inc/core/data.php:479
|
| 894 |
msgid "Type"
|
| 895 |
msgstr "Тип"
|
| 896 |
|
| 897 |
+
#: inc/core/data.php:480
|
| 898 |
msgid "Style of the label"
|
| 899 |
msgstr "Стиль ярлыка"
|
| 900 |
|
| 901 |
+
#: inc/core/data.php:489
|
| 902 |
msgid "Styled label"
|
| 903 |
msgstr "Стильный ярлык"
|
| 904 |
|
| 905 |
+
#: inc/core/data.php:494 inc/core/data.php:524
|
| 906 |
msgid "Quote"
|
| 907 |
msgstr "Цитата"
|
| 908 |
|
| 909 |
+
#: inc/core/data.php:505
|
| 910 |
msgid "Choose style for this quote"
|
| 911 |
msgstr "Выберите стиль для этой цитаты"
|
| 912 |
|
| 913 |
+
#: inc/core/data.php:509
|
| 914 |
msgid "Cite"
|
| 915 |
msgstr "Автор"
|
| 916 |
|
| 917 |
+
#: inc/core/data.php:510
|
| 918 |
msgid "Quote author name"
|
| 919 |
msgstr "Имя автора цитаты"
|
| 920 |
|
| 921 |
+
#: inc/core/data.php:515
|
| 922 |
msgid "Cite url"
|
| 923 |
msgstr "Ссылка автора"
|
| 924 |
|
| 925 |
+
#: inc/core/data.php:516
|
| 926 |
msgid "Url of the quote author. Leave empty to disable link"
|
| 927 |
msgstr "Ссылка автора цитаты. Оставьте пустым, чтобы отключить ссылку"
|
| 928 |
|
| 929 |
+
#: inc/core/data.php:525
|
| 930 |
msgid "Blockquote alternative"
|
| 931 |
msgstr "Альтернатива цитаты"
|
| 932 |
|
| 933 |
+
#: inc/core/data.php:530 inc/core/data.php:549 inc/core/data.php:550
|
| 934 |
msgid "Pullquote"
|
| 935 |
msgstr "Цитата с обтеканием"
|
| 936 |
|
| 937 |
+
#: inc/core/data.php:541
|
| 938 |
msgid "Pullquote alignment (float)"
|
| 939 |
msgstr "Выравнивание цитаты (обтекание)"
|
| 940 |
|
| 941 |
+
#: inc/core/data.php:555 inc/core/data.php:586
|
| 942 |
msgid "Dropcap"
|
| 943 |
msgstr "Буквица"
|
| 944 |
|
| 945 |
+
#: inc/core/data.php:563 inc/core/data.php:730
|
| 946 |
msgid "Flat"
|
| 947 |
msgstr "Плоский"
|
| 948 |
|
| 949 |
+
#: inc/core/data.php:564
|
| 950 |
msgid "Light"
|
| 951 |
msgstr "Светлый"
|
| 952 |
|
| 953 |
+
#: inc/core/data.php:568
|
| 954 |
msgid "Dropcap style preset"
|
| 955 |
msgstr "Стиль буквицы"
|
| 956 |
|
| 957 |
+
#: inc/core/data.php:577
|
| 958 |
msgid "Choose dropcap size"
|
| 959 |
msgstr "Выберите размер буквицы"
|
| 960 |
|
| 961 |
+
#: inc/core/data.php:585
|
| 962 |
msgid "D"
|
| 963 |
msgstr "D"
|
| 964 |
|
| 965 |
+
#: inc/core/data.php:591
|
| 966 |
msgid "Frame"
|
| 967 |
msgstr "Рамка"
|
| 968 |
|
| 969 |
+
#: inc/core/data.php:604
|
| 970 |
msgid "Frame alignment"
|
| 971 |
msgstr "Выравнивание рамки"
|
| 972 |
|
| 973 |
+
#: inc/core/data.php:613
|
| 974 |
msgid "Styled image frame"
|
| 975 |
msgstr "Стильный рамка изображения"
|
| 976 |
|
| 977 |
+
#: inc/core/data.php:618
|
| 978 |
msgid "Row"
|
| 979 |
msgstr "Колонки"
|
| 980 |
|
| 981 |
+
#: inc/core/data.php:628
|
| 982 |
msgid ""
|
| 983 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
| 984 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
| 988 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]\n"
|
| 989 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]"
|
| 990 |
|
| 991 |
+
#: inc/core/data.php:629
|
| 992 |
msgid "Row for flexible columns"
|
| 993 |
msgstr "Контейнер с резиновыми колонками"
|
| 994 |
|
| 995 |
+
#: inc/core/data.php:634
|
| 996 |
msgid "Column"
|
| 997 |
msgstr "Колонка"
|
| 998 |
|
| 999 |
+
#: inc/core/data.php:641
|
| 1000 |
msgid "Full width"
|
| 1001 |
msgstr "Во всю ширину"
|
| 1002 |
|
| 1003 |
+
#: inc/core/data.php:642
|
| 1004 |
msgid "One half"
|
| 1005 |
msgstr "Одна вторая"
|
| 1006 |
|
| 1007 |
+
#: inc/core/data.php:643
|
| 1008 |
msgid "One third"
|
| 1009 |
msgstr "Одна третья"
|
| 1010 |
|
| 1011 |
+
#: inc/core/data.php:644
|
| 1012 |
msgid "Two third"
|
| 1013 |
msgstr "Две трети"
|
| 1014 |
|
| 1015 |
+
#: inc/core/data.php:645
|
| 1016 |
msgid "One fourth"
|
| 1017 |
msgstr "Одна четвертая"
|
| 1018 |
|
| 1019 |
+
#: inc/core/data.php:646
|
| 1020 |
msgid "Three fourth"
|
| 1021 |
msgstr "Три четвертых"
|
| 1022 |
|
| 1023 |
+
#: inc/core/data.php:647
|
| 1024 |
msgid "One fifth"
|
| 1025 |
msgstr "Одна пятая"
|
| 1026 |
|
| 1027 |
+
#: inc/core/data.php:648
|
| 1028 |
msgid "Two fifth"
|
| 1029 |
msgstr "Две пятых"
|
| 1030 |
|
| 1031 |
+
#: inc/core/data.php:649
|
| 1032 |
msgid "Three fifth"
|
| 1033 |
msgstr "Три пятых"
|
| 1034 |
|
| 1035 |
+
#: inc/core/data.php:650
|
| 1036 |
msgid "Four fifth"
|
| 1037 |
msgstr "Четыре пятых"
|
| 1038 |
|
| 1039 |
+
#: inc/core/data.php:651
|
| 1040 |
msgid "One sixth"
|
| 1041 |
msgstr "Одна шестая"
|
| 1042 |
|
| 1043 |
+
#: inc/core/data.php:652
|
| 1044 |
msgid "Five sixth"
|
| 1045 |
msgstr "Пять шестых"
|
| 1046 |
|
| 1047 |
+
#: inc/core/data.php:656
|
| 1048 |
msgid "Select column width. This width will be calculated depend page width"
|
| 1049 |
msgstr ""
|
| 1050 |
"Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
|
| 1051 |
|
| 1052 |
+
#: inc/core/data.php:661 inc/core/data.php:772
|
| 1053 |
msgid "Centered"
|
| 1054 |
msgstr "По центру"
|
| 1055 |
|
| 1056 |
+
#: inc/core/data.php:662
|
| 1057 |
msgid "Is this column centered on the page"
|
| 1058 |
msgstr "Колонка выровнена по центру страницы"
|
| 1059 |
|
| 1060 |
+
#: inc/core/data.php:670
|
| 1061 |
msgid "Column content"
|
| 1062 |
msgstr "Содержимое колонки"
|
| 1063 |
|
| 1064 |
+
#: inc/core/data.php:671
|
| 1065 |
msgid "Flexible and responsive columns"
|
| 1066 |
msgstr "Резновые колонки"
|
| 1067 |
|
| 1068 |
+
#: inc/core/data.php:672
|
| 1069 |
msgid "Did you know that you need to wrap columns with [row] shortcode?"
|
| 1070 |
msgstr "Знаете ли вы что несколько колонок нужно оборачивать в шорткод [row]?"
|
| 1071 |
|
| 1072 |
+
#: inc/core/data.php:678
|
| 1073 |
msgid "List"
|
| 1074 |
msgstr "Список"
|
| 1075 |
|
| 1076 |
+
#: inc/core/data.php:686
|
| 1077 |
msgid "You can upload custom icon for this list or pick a built-in icon"
|
| 1078 |
msgstr "Вы можете загрузить свою иконку для этого списка или выбрать из списка"
|
| 1079 |
|
| 1080 |
+
#: inc/core/data.php:691 inc/core/data.php:797 inc/core/data.php:853
|
| 1081 |
msgid "Icon color"
|
| 1082 |
msgstr "Цвет иконки"
|
| 1083 |
|
| 1084 |
+
#: inc/core/data.php:692 inc/core/data.php:798 inc/core/data.php:854
|
| 1085 |
msgid ""
|
| 1086 |
"This color will be applied to the selected icon. Does not works with "
|
| 1087 |
"uploaded icons"
|
| 1089 |
"Этот цвет будет применен только к иконке выбранной из списка. Не работает "
|
| 1090 |
"для загруженных иконок"
|
| 1091 |
|
| 1092 |
+
#: inc/core/data.php:700
|
| 1093 |
msgid ""
|
| 1094 |
"<ul>\n"
|
| 1095 |
"<li>List item</li>\n"
|
| 1103 |
"<li>Элемент списка</li>\n"
|
| 1104 |
"</ul>"
|
| 1105 |
|
| 1106 |
+
#: inc/core/data.php:701
|
| 1107 |
msgid "Styled unordered list"
|
| 1108 |
msgstr "Стильный неупорядоченный список"
|
| 1109 |
|
| 1110 |
+
#: inc/core/data.php:706 inc/core/data.php:1020
|
| 1111 |
msgid "Button"
|
| 1112 |
msgstr "Кнопка"
|
| 1113 |
|
| 1114 |
+
#: inc/core/data.php:713 inc/core/data.php:2850
|
| 1115 |
msgid "Link"
|
| 1116 |
msgstr "Ссылка"
|
| 1117 |
|
| 1118 |
+
#: inc/core/data.php:714
|
| 1119 |
msgid "Button link"
|
| 1120 |
msgstr "Ссылка кнопки"
|
| 1121 |
|
| 1122 |
+
#: inc/core/data.php:719 inc/core/data.php:1726
|
| 1123 |
msgid "Same tab"
|
| 1124 |
msgstr "Та же вкладка"
|
| 1125 |
|
| 1126 |
+
#: inc/core/data.php:720 inc/core/data.php:1727
|
| 1127 |
msgid "New tab"
|
| 1128 |
msgstr "Новая вкладка"
|
| 1129 |
|
| 1130 |
+
#: inc/core/data.php:723 inc/core/data.php:1730
|
| 1131 |
msgid "Target"
|
| 1132 |
msgstr "Цель"
|
| 1133 |
|
| 1134 |
+
#: inc/core/data.php:724
|
| 1135 |
msgid "Button link target"
|
| 1136 |
msgstr "Цель ссылки кнопки"
|
| 1137 |
|
| 1138 |
+
#: inc/core/data.php:731
|
| 1139 |
msgid "Ghost"
|
| 1140 |
msgstr "Призрак"
|
| 1141 |
|
| 1142 |
+
#: inc/core/data.php:732 inc/core/data.php:890
|
| 1143 |
msgid "Soft"
|
| 1144 |
msgstr "Мягкий"
|
| 1145 |
|
| 1146 |
+
#: inc/core/data.php:733 inc/core/data.php:891
|
| 1147 |
msgid "Glass"
|
| 1148 |
msgstr "Стекло"
|
| 1149 |
|
| 1150 |
+
#: inc/core/data.php:734 inc/core/data.php:892
|
| 1151 |
msgid "Bubbles"
|
| 1152 |
msgstr "Пузыри"
|
| 1153 |
|
| 1154 |
+
#: inc/core/data.php:735 inc/core/data.php:893
|
| 1155 |
msgid "Noise"
|
| 1156 |
msgstr "Шум"
|
| 1157 |
|
| 1158 |
+
#: inc/core/data.php:736
|
| 1159 |
msgid "Stroked"
|
| 1160 |
msgstr "Прошитый"
|
| 1161 |
|
| 1162 |
+
#: inc/core/data.php:737
|
| 1163 |
msgid "3D"
|
| 1164 |
msgstr "3D"
|
| 1165 |
|
| 1166 |
+
#: inc/core/data.php:740
|
| 1167 |
msgid "Button background style preset"
|
| 1168 |
msgstr "Стиль фона кнопки"
|
| 1169 |
|
| 1170 |
+
#: inc/core/data.php:746
|
| 1171 |
msgid "Button background color"
|
| 1172 |
msgstr "Цвет фона кнопки"
|
| 1173 |
|
| 1174 |
+
#: inc/core/data.php:753
|
| 1175 |
msgid "Button text color"
|
| 1176 |
msgstr "Цвет текста кнопки"
|
| 1177 |
|
| 1178 |
+
#: inc/core/data.php:762
|
| 1179 |
msgid "Button size"
|
| 1180 |
msgstr "Размер кнопки"
|
| 1181 |
|
| 1182 |
+
#: inc/core/data.php:767
|
| 1183 |
msgid "Fluid"
|
| 1184 |
msgstr "Резиновая"
|
| 1185 |
|
| 1186 |
+
#: inc/core/data.php:767
|
| 1187 |
msgid "Fluid buttons has 100% width"
|
| 1188 |
msgstr "Резиновые кнопки имеют ширину 100%"
|
| 1189 |
|
| 1190 |
+
#: inc/core/data.php:772
|
| 1191 |
msgid "Is button centered on the page"
|
| 1192 |
msgstr "Кнопка выровнена по центру страницы"
|
| 1193 |
|
| 1194 |
+
#: inc/core/data.php:777
|
| 1195 |
msgid "Auto"
|
| 1196 |
msgstr "Авто"
|
| 1197 |
|
| 1198 |
+
#: inc/core/data.php:778
|
| 1199 |
msgid "Round"
|
| 1200 |
msgstr "Круглый"
|
| 1201 |
|
| 1202 |
+
#: inc/core/data.php:779
|
| 1203 |
msgid "Square"
|
| 1204 |
msgstr "Квадратный"
|
| 1205 |
|
| 1206 |
+
#: inc/core/data.php:785 inc/core/data.php:918 inc/core/data.php:956
|
| 1207 |
msgid "Radius"
|
| 1208 |
msgstr "Радиус"
|
| 1209 |
|
| 1210 |
+
#: inc/core/data.php:786
|
| 1211 |
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
| 1212 |
msgstr ""
|
| 1213 |
"Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
|
| 1214 |
|
| 1215 |
+
#: inc/core/data.php:792
|
| 1216 |
msgid "You can upload custom icon for this button or pick a built-in icon"
|
| 1217 |
msgstr "Вы можете загрузить свою иконку для этой кнопки или выбрать из списка"
|
| 1218 |
|
| 1219 |
+
#: inc/core/data.php:803
|
| 1220 |
msgid "Text shadow"
|
| 1221 |
msgstr "Тень текста"
|
| 1222 |
|
| 1223 |
+
#: inc/core/data.php:804
|
| 1224 |
msgid "Button text shadow"
|
| 1225 |
msgstr "Тень текста на кнопке"
|
| 1226 |
|
| 1227 |
+
#: inc/core/data.php:808
|
| 1228 |
msgid "Description"
|
| 1229 |
msgstr "Описание"
|
| 1230 |
|
| 1231 |
+
#: inc/core/data.php:809
|
| 1232 |
msgid ""
|
| 1233 |
"Small description under button text. This option is incompatible with icon."
|
| 1234 |
msgstr ""
|
| 1235 |
"Небольшое описание под текстом кнопки. Это описание не совместимо с иконками "
|
| 1236 |
"кнопок."
|
| 1237 |
|
| 1238 |
+
#: inc/core/data.php:813
|
| 1239 |
msgid "onClick"
|
| 1240 |
msgstr "onClick"
|
| 1241 |
|
| 1242 |
+
#: inc/core/data.php:814
|
| 1243 |
msgid "Advanced JavaScript code for onClick action"
|
| 1244 |
msgstr "JavaScript код для атрибута onClick"
|
| 1245 |
|
| 1246 |
+
#: inc/core/data.php:818
|
| 1247 |
+
msgid "Rel attribute"
|
| 1248 |
+
msgstr "Атрибут Rel"
|
| 1249 |
+
|
| 1250 |
+
#: inc/core/data.php:819
|
| 1251 |
+
msgid ""
|
| 1252 |
+
"Here you can add value for the rel attribute.<br>Example values: <b"
|
| 1253 |
+
"%value>nofollow</b>, <b%value>lightbox</b>"
|
| 1254 |
+
msgstr ""
|
| 1255 |
+
"Здесь вы можете добавить значение для атрибута rel.<br>Примеры значений: <b"
|
| 1256 |
+
"%value>nofollow</b>, <b%value>lightbox</b>"
|
| 1257 |
+
|
| 1258 |
+
#: inc/core/data.php:827
|
| 1259 |
msgid "Button text"
|
| 1260 |
msgstr "Текст кнопки"
|
| 1261 |
|
| 1262 |
+
#: inc/core/data.php:828
|
| 1263 |
msgid "Styled button"
|
| 1264 |
msgstr "Стильная кнопка"
|
| 1265 |
|
| 1266 |
+
#: inc/core/data.php:834
|
| 1267 |
msgid "Service"
|
| 1268 |
msgstr "Услуга"
|
| 1269 |
|
| 1270 |
+
#: inc/core/data.php:840 inc/core/shortcodes.php:439
|
| 1271 |
msgid "Service title"
|
| 1272 |
msgstr "Название услуги"
|
| 1273 |
|
| 1274 |
+
#: inc/core/data.php:842
|
| 1275 |
msgid "Service name"
|
| 1276 |
msgstr "Название услуги"
|
| 1277 |
|
| 1278 |
+
#: inc/core/data.php:848
|
| 1279 |
msgid "You can upload custom icon for this box"
|
| 1280 |
msgstr "Вы можете загрузить свою иконку для этого блока"
|
| 1281 |
|
| 1282 |
+
#: inc/core/data.php:862
|
| 1283 |
msgid "Icon size"
|
| 1284 |
msgstr "Размер иконки"
|
| 1285 |
|
| 1286 |
+
#: inc/core/data.php:863
|
| 1287 |
msgid "Size of the uploaded icon in pixels"
|
| 1288 |
msgstr "Размер загруженной иконки в пикселях"
|
| 1289 |
|
| 1290 |
+
#: inc/core/data.php:871
|
| 1291 |
msgid "Service description"
|
| 1292 |
msgstr "Описание услуги"
|
| 1293 |
|
| 1294 |
+
#: inc/core/data.php:872
|
| 1295 |
msgid "Service box with title"
|
| 1296 |
msgstr "Блок услуга с заголовком"
|
| 1297 |
|
| 1298 |
+
#: inc/core/data.php:883
|
| 1299 |
msgid "Box title"
|
| 1300 |
msgstr "Заголовок блока"
|
| 1301 |
|
| 1302 |
+
#: inc/core/data.php:884
|
| 1303 |
msgid "Text for the box title"
|
| 1304 |
msgstr "Текст для заголовка блока"
|
| 1305 |
|
| 1306 |
+
#: inc/core/data.php:897
|
| 1307 |
msgid "Box style preset"
|
| 1308 |
msgstr "Стиль блока"
|
| 1309 |
|
| 1310 |
+
#: inc/core/data.php:903 inc/core/generator-views.php:99
|
| 1311 |
msgid "Color"
|
| 1312 |
msgstr "Цвет"
|
| 1313 |
|
| 1314 |
+
#: inc/core/data.php:904
|
| 1315 |
msgid "Color for the box title and borders"
|
| 1316 |
msgstr "Цвет заголовка блока и его рамки"
|
| 1317 |
|
| 1318 |
+
#: inc/core/data.php:910
|
| 1319 |
msgid "Title text color"
|
| 1320 |
msgstr "Цвет текста заголовка"
|
| 1321 |
|
| 1322 |
+
#: inc/core/data.php:910
|
| 1323 |
msgid "Color for the box title text"
|
| 1324 |
msgstr "Цвет текста в заголовке блока"
|
| 1325 |
|
| 1326 |
+
#: inc/core/data.php:919
|
| 1327 |
msgid "Box corners radius"
|
| 1328 |
msgstr "Радиус углов"
|
| 1329 |
|
| 1330 |
+
#: inc/core/data.php:927
|
| 1331 |
msgid "Box content"
|
| 1332 |
msgstr "Содержимое блока"
|
| 1333 |
|
| 1334 |
+
#: inc/core/data.php:928
|
| 1335 |
msgid "Colored box with caption"
|
| 1336 |
msgstr "Цветной блок с заголовком"
|
| 1337 |
|
| 1338 |
+
#: inc/core/data.php:933
|
| 1339 |
msgid "Note"
|
| 1340 |
msgstr "Заметка"
|
| 1341 |
|
| 1342 |
+
#: inc/core/data.php:941
|
| 1343 |
msgid "Note background color"
|
| 1344 |
msgstr "Цвет фона заметки"
|
| 1345 |
|
| 1346 |
+
#: inc/core/data.php:948
|
| 1347 |
msgid "Note text color"
|
| 1348 |
msgstr "Цвет текста заметки"
|
| 1349 |
|
| 1350 |
+
#: inc/core/data.php:956
|
| 1351 |
msgid "Note corners radius"
|
| 1352 |
msgstr "Радиус углов"
|
| 1353 |
|
| 1354 |
+
#: inc/core/data.php:964
|
| 1355 |
msgid "Note text"
|
| 1356 |
msgstr "Текст заметки"
|
| 1357 |
|
| 1358 |
+
#: inc/core/data.php:965
|
| 1359 |
msgid "Colored box"
|
| 1360 |
msgstr "Цветной блок"
|
| 1361 |
|
| 1362 |
+
#: inc/core/data.php:970
|
| 1363 |
+
msgid "Expand"
|
| 1364 |
+
msgstr "Развернуть"
|
| 1365 |
+
|
| 1366 |
+
#: inc/core/data.php:975 inc/core/shortcodes.php:497
|
| 1367 |
+
msgid "Show more"
|
| 1368 |
+
msgstr "Показать больше"
|
| 1369 |
+
|
| 1370 |
+
#: inc/core/data.php:976
|
| 1371 |
+
msgid "More text"
|
| 1372 |
+
msgstr "Текст больше"
|
| 1373 |
+
|
| 1374 |
+
#: inc/core/data.php:977
|
| 1375 |
+
msgid "Enter the text for more link"
|
| 1376 |
+
msgstr "Введите здесь текст для ссылки больше"
|
| 1377 |
+
|
| 1378 |
+
#: inc/core/data.php:980 inc/core/shortcodes.php:498
|
| 1379 |
+
msgid "Show less"
|
| 1380 |
+
msgstr "Показать меньше"
|
| 1381 |
+
|
| 1382 |
+
#: inc/core/data.php:981
|
| 1383 |
+
msgid "Less text"
|
| 1384 |
+
msgstr "Текст меньше"
|
| 1385 |
+
|
| 1386 |
+
#: inc/core/data.php:982
|
| 1387 |
+
msgid "Enter the text for less link"
|
| 1388 |
+
msgstr "Введите здесь текст для ссылки меньше"
|
| 1389 |
+
|
| 1390 |
+
#: inc/core/data.php:991
|
| 1391 |
+
msgid "Height for collapsed state (in pixels)"
|
| 1392 |
+
msgstr "Высота в свернутом состоянии (в пикселях)"
|
| 1393 |
+
|
| 1394 |
+
#: inc/core/data.php:996
|
| 1395 |
+
msgid "Hide less link"
|
| 1396 |
+
msgstr "Скрыть ссылку меньше"
|
| 1397 |
+
|
| 1398 |
+
#: inc/core/data.php:997
|
| 1399 |
+
msgid ""
|
| 1400 |
+
"This option allows you to hide less link, when the text block has been "
|
| 1401 |
+
"expanded"
|
| 1402 |
+
msgstr "Эта опция позволяет вам скрыть ссылку меньше, когда блок развернут"
|
| 1403 |
+
|
| 1404 |
+
#: inc/core/data.php:1004
|
| 1405 |
+
msgid "Pick the text color"
|
| 1406 |
+
msgstr "Выберите цвет текста"
|
| 1407 |
+
|
| 1408 |
+
#: inc/core/data.php:1011
|
| 1409 |
+
msgid "Pick the link color"
|
| 1410 |
+
msgstr "Выберите цвет ссылки"
|
| 1411 |
+
|
| 1412 |
+
#: inc/core/data.php:1017
|
| 1413 |
+
msgid "Underlined"
|
| 1414 |
+
msgstr "Подчеркнутый"
|
| 1415 |
+
|
| 1416 |
+
#: inc/core/data.php:1023
|
| 1417 |
+
msgid "Link style"
|
| 1418 |
+
msgstr "Стиль ссылки"
|
| 1419 |
+
|
| 1420 |
+
#: inc/core/data.php:1024
|
| 1421 |
+
msgid "Select the style for more/less link"
|
| 1422 |
+
msgstr "Выберите стиль для ссылки больше/меньше"
|
| 1423 |
+
|
| 1424 |
+
#: inc/core/data.php:1034
|
| 1425 |
+
msgid "Link align"
|
| 1426 |
+
msgstr "Выравнивание ссылки"
|
| 1427 |
+
|
| 1428 |
+
#: inc/core/data.php:1035
|
| 1429 |
+
msgid "Select link alignment"
|
| 1430 |
+
msgstr "Выберите выравнивание ссылки"
|
| 1431 |
+
|
| 1432 |
+
#: inc/core/data.php:1040
|
| 1433 |
+
msgid "More icon"
|
| 1434 |
+
msgstr "Иконка больше"
|
| 1435 |
+
|
| 1436 |
+
#: inc/core/data.php:1041
|
| 1437 |
+
msgid "Add an icon to the more link"
|
| 1438 |
+
msgstr "Добавьте иконку ссылке больше"
|
| 1439 |
+
|
| 1440 |
+
#: inc/core/data.php:1046
|
| 1441 |
+
msgid "Less icon"
|
| 1442 |
+
msgstr "Иконка меньше"
|
| 1443 |
+
|
| 1444 |
+
#: inc/core/data.php:1047
|
| 1445 |
+
msgid "Add an icon to the less link"
|
| 1446 |
+
msgstr "Добавьте иконку ссылке меньше"
|
| 1447 |
+
|
| 1448 |
+
#: inc/core/data.php:1055
|
| 1449 |
+
msgid "This text block can be expanded"
|
| 1450 |
+
msgstr "Этот текстовый блок может быть развернут"
|
| 1451 |
+
|
| 1452 |
+
#: inc/core/data.php:1056
|
| 1453 |
+
msgid "Expandable text block"
|
| 1454 |
+
msgstr "Разворачиваемый текстовый блок"
|
| 1455 |
+
|
| 1456 |
+
#: inc/core/data.php:1061 inc/core/data.php:2005 inc/core/data.php:2124
|
| 1457 |
+
#: inc/core/data.php:2262
|
| 1458 |
msgid "Lightbox"
|
| 1459 |
msgstr "Лайтбокс"
|
| 1460 |
|
| 1461 |
+
#: inc/core/data.php:1068
|
| 1462 |
msgid "Iframe"
|
| 1463 |
msgstr "Фрейм (iframe)"
|
| 1464 |
|
| 1465 |
+
#: inc/core/data.php:1069
|
| 1466 |
msgid "Image"
|
| 1467 |
msgstr "Изображение"
|
| 1468 |
|
| 1469 |
+
#: inc/core/data.php:1070
|
| 1470 |
msgid "Inline (html content)"
|
| 1471 |
msgstr "HTML элемент"
|
| 1472 |
|
| 1473 |
+
#: inc/core/data.php:1073
|
| 1474 |
msgid "Content type"
|
| 1475 |
msgstr "Тип содержимого"
|
| 1476 |
|
| 1477 |
+
#: inc/core/data.php:1074
|
| 1478 |
msgid "Select type of the lightbox window content"
|
| 1479 |
msgstr "Выберите тип содержимого в окне лайтбокса"
|
| 1480 |
|
| 1481 |
+
#: inc/core/data.php:1078
|
| 1482 |
msgid "Content source"
|
| 1483 |
msgstr "Источник содержимого"
|
| 1484 |
|
| 1485 |
+
#: inc/core/data.php:1079
|
| 1486 |
msgid ""
|
| 1487 |
"Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
|
| 1488 |
"Use CSS selector for Inline content type.<br />Example values:<br /><b"
|
| 1499 |
"%value>http://example.com/</b> - любая веб-страница (фрейм)<br /><b"
|
| 1500 |
"%value>#contact-form</b> - любой HTML элемент (html элемент)"
|
| 1501 |
|
| 1502 |
+
#: inc/core/data.php:1087
|
| 1503 |
msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
|
| 1504 |
msgstr ""
|
| 1505 |
"[%prefix_button] Нажмите здесь чтобы посмотреть видео [/%prefix_button]"
|
| 1506 |
|
| 1507 |
+
#: inc/core/data.php:1088
|
| 1508 |
msgid "Lightbox window with custom content"
|
| 1509 |
msgstr "Лайтбокс с произвольным содержимым"
|
| 1510 |
|
| 1511 |
+
#: inc/core/data.php:1093
|
| 1512 |
msgid "Tooltip"
|
| 1513 |
msgstr "Подсказка"
|
| 1514 |
|
| 1515 |
+
#: inc/core/data.php:1100
|
| 1516 |
msgid "Basic: Light"
|
| 1517 |
msgstr "Базовый: Светлый"
|
| 1518 |
|
| 1519 |
+
#: inc/core/data.php:1101
|
| 1520 |
msgid "Basic: Dark"
|
| 1521 |
msgstr "Базовый: Темный"
|
| 1522 |
|
| 1523 |
+
#: inc/core/data.php:1102
|
| 1524 |
msgid "Basic: Yellow"
|
| 1525 |
msgstr "Базовый: Желтый"
|
| 1526 |
|
| 1527 |
+
#: inc/core/data.php:1103
|
| 1528 |
msgid "Basic: Green"
|
| 1529 |
msgstr "Базовый: Зеленый"
|
| 1530 |
|
| 1531 |
+
#: inc/core/data.php:1104
|
| 1532 |
msgid "Basic: Red"
|
| 1533 |
msgstr "Базовый: Красный"
|
| 1534 |
|
| 1535 |
+
#: inc/core/data.php:1105
|
| 1536 |
msgid "Basic: Blue"
|
| 1537 |
msgstr "Базовый: Голубой"
|
| 1538 |
|
| 1539 |
+
#: inc/core/data.php:1106
|
| 1540 |
msgid "Youtube"
|
| 1541 |
msgstr "Youtube"
|
| 1542 |
|
| 1543 |
+
#: inc/core/data.php:1107
|
| 1544 |
msgid "Tipsy"
|
| 1545 |
msgstr "Tipsy"
|
| 1546 |
|
| 1547 |
+
#: inc/core/data.php:1108
|
| 1548 |
msgid "Bootstrap"
|
| 1549 |
msgstr "Bootstrap"
|
| 1550 |
|
| 1551 |
+
#: inc/core/data.php:1109
|
| 1552 |
msgid "jTools"
|
| 1553 |
msgstr "jTools"
|
| 1554 |
|
| 1555 |
+
#: inc/core/data.php:1110
|
| 1556 |
msgid "Tipped"
|
| 1557 |
msgstr "Tipped"
|
| 1558 |
|
| 1559 |
+
#: inc/core/data.php:1111
|
| 1560 |
msgid "Cluetip"
|
| 1561 |
msgstr "Cluetip"
|
| 1562 |
|
| 1563 |
+
#: inc/core/data.php:1115
|
| 1564 |
msgid "Tooltip window style"
|
| 1565 |
msgstr "Стиль окна подсказки"
|
| 1566 |
|
| 1567 |
+
#: inc/core/data.php:1120
|
| 1568 |
msgid "Top"
|
| 1569 |
msgstr "Сверху"
|
| 1570 |
|
| 1571 |
+
#: inc/core/data.php:1121
|
| 1572 |
msgid "Bottom"
|
| 1573 |
msgstr "Снизу"
|
| 1574 |
|
| 1575 |
+
#: inc/core/data.php:1126
|
| 1576 |
msgid "Position"
|
| 1577 |
msgstr "Положение"
|
| 1578 |
|
| 1579 |
+
#: inc/core/data.php:1127
|
| 1580 |
msgid "Tooltip position"
|
| 1581 |
msgstr "Положение всплывающей подсказки"
|
| 1582 |
|
| 1583 |
+
#: inc/core/data.php:1132
|
| 1584 |
msgid "Shadow"
|
| 1585 |
msgstr "Тень"
|
| 1586 |
|
| 1587 |
+
#: inc/core/data.php:1133
|
| 1588 |
msgid ""
|
| 1589 |
"Add shadow to tooltip. This option is only works with basic styes, e.g. "
|
| 1590 |
"blue, green etc."
|
| 1591 |
msgstr "Добавить тень окну подсказки. Тень работает только для базовых стилей."
|
| 1592 |
|
| 1593 |
+
#: inc/core/data.php:1138
|
| 1594 |
msgid "Rounded corners"
|
| 1595 |
msgstr "Скругление"
|
| 1596 |
|
| 1597 |
+
#: inc/core/data.php:1139
|
| 1598 |
msgid ""
|
| 1599 |
"Use rounded for tooltip. This option is only works with basic styes, e.g. "
|
| 1600 |
"blue, green etc."
|
| 1602 |
"Добавить скругленные уголки окну подсказки. Скругление работает только для "
|
| 1603 |
"базовых стилей."
|
| 1604 |
|
| 1605 |
+
#: inc/core/data.php:1153
|
| 1606 |
msgid "Font size"
|
| 1607 |
msgstr "Размер шрифта"
|
| 1608 |
|
| 1609 |
+
#: inc/core/data.php:1154
|
| 1610 |
msgid "Tooltip font size"
|
| 1611 |
msgstr "Размер шрифта подсказки"
|
| 1612 |
|
| 1613 |
+
#: inc/core/data.php:1158
|
| 1614 |
msgid "Tooltip title"
|
| 1615 |
msgstr "Заголовок подсказки"
|
| 1616 |
|
| 1617 |
+
#: inc/core/data.php:1159
|
| 1618 |
msgid ""
|
| 1619 |
"Enter title for tooltip window. Leave this field empty to hide the title"
|
| 1620 |
msgstr ""
|
| 1621 |
"Укажите заголовок окна подсказки. Оставьте поле пустым, чтобы скрыть "
|
| 1622 |
"заголовок"
|
| 1623 |
|
| 1624 |
+
#: inc/core/data.php:1162 inc/core/shortcodes.php:542
|
| 1625 |
msgid "Tooltip text"
|
| 1626 |
msgstr "Текст подсказки"
|
| 1627 |
|
| 1628 |
+
#: inc/core/data.php:1163
|
| 1629 |
msgid "Tooltip content"
|
| 1630 |
msgstr "Содержимое подсказки"
|
| 1631 |
|
| 1632 |
+
#: inc/core/data.php:1164
|
| 1633 |
msgid "Enter tooltip content here"
|
| 1634 |
msgstr "Введите сюда содержимое подсказки"
|
| 1635 |
|
| 1636 |
+
#: inc/core/data.php:1169
|
| 1637 |
msgid "Show and hide on mouse hover"
|
| 1638 |
msgstr "Показать и скрыть при наведении мыши"
|
| 1639 |
|
| 1640 |
+
#: inc/core/data.php:1170
|
| 1641 |
msgid "Show and hide by mouse click"
|
| 1642 |
msgstr "Показать и скрыть по клику мыши"
|
| 1643 |
|
| 1644 |
+
#: inc/core/data.php:1171
|
| 1645 |
msgid "Always visible"
|
| 1646 |
msgstr "Всегда видима"
|
| 1647 |
|
| 1648 |
+
#: inc/core/data.php:1174
|
| 1649 |
msgid "Behavior"
|
| 1650 |
msgstr "Поведение"
|
| 1651 |
|
| 1652 |
+
#: inc/core/data.php:1175
|
| 1653 |
msgid "Select tooltip behavior"
|
| 1654 |
msgstr "Выберите поведение подсказки"
|
| 1655 |
|
| 1656 |
+
#: inc/core/data.php:1180
|
| 1657 |
msgid "Close button"
|
| 1658 |
msgstr "Кнопка закрыть"
|
| 1659 |
|
| 1660 |
+
#: inc/core/data.php:1181
|
| 1661 |
msgid "Show close button"
|
| 1662 |
msgstr "Показывать кнопку закрыть"
|
| 1663 |
|
| 1664 |
+
#: inc/core/data.php:1189
|
| 1665 |
msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
|
| 1666 |
msgstr ""
|
| 1667 |
"[%prefix_button] Наведите мышку чтобы увидеть подсказку [/%prefix_button]"
|
| 1668 |
|
| 1669 |
+
#: inc/core/data.php:1190
|
| 1670 |
msgid "Tooltip window with custom content"
|
| 1671 |
msgstr "Всплывающая подсказка с произвольным содержимым"
|
| 1672 |
|
| 1673 |
+
#: inc/core/data.php:1195
|
| 1674 |
msgid "Private"
|
| 1675 |
msgstr "Заметка для авторов"
|
| 1676 |
|
| 1677 |
+
#: inc/core/data.php:1205
|
| 1678 |
msgid "Private note text"
|
| 1679 |
msgstr "Текст приватной заметки"
|
| 1680 |
|
| 1681 |
+
#: inc/core/data.php:1206
|
| 1682 |
msgid "Private note for post authors"
|
| 1683 |
msgstr "Приватный текст для других авторов"
|
| 1684 |
|
| 1685 |
+
#: inc/core/data.php:1211
|
| 1686 |
msgid "YouTube"
|
| 1687 |
msgstr "YouTube"
|
| 1688 |
|
| 1689 |
+
#: inc/core/data.php:1218 inc/core/data.php:1270 inc/core/data.php:1395
|
| 1690 |
+
#: inc/core/data.php:1445 inc/core/data.php:1489 inc/core/data.php:1801
|
| 1691 |
+
#: inc/core/data.php:1898
|
| 1692 |
msgid "Url"
|
| 1693 |
msgstr "Ссылка"
|
| 1694 |
|
| 1695 |
+
#: inc/core/data.php:1219 inc/core/data.php:1271
|
| 1696 |
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
| 1697 |
msgstr ""
|
| 1698 |
"Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
|
| 1699 |
|
| 1700 |
+
#: inc/core/data.php:1227 inc/core/data.php:1284 inc/core/data.php:1403
|
| 1701 |
+
#: inc/core/data.php:1454 inc/core/data.php:1498 inc/core/data.php:1595
|
| 1702 |
+
#: inc/core/data.php:1650 inc/core/data.php:1907 inc/core/data.php:1946
|
| 1703 |
+
#: inc/core/data.php:2030 inc/core/data.php:2149 inc/core/data.php:2287
|
| 1704 |
+
#: inc/core/data.php:2508
|
| 1705 |
msgid "Width"
|
| 1706 |
msgstr "Ширина"
|
| 1707 |
|
| 1708 |
+
#: inc/core/data.php:1228 inc/core/data.php:1285 inc/core/data.php:1404
|
| 1709 |
+
#: inc/core/data.php:1455 inc/core/data.php:1499 inc/core/data.php:1651
|
| 1710 |
msgid "Player width"
|
| 1711 |
msgstr "Ширина плеера"
|
| 1712 |
|
| 1713 |
+
#: inc/core/data.php:1237 inc/core/data.php:1294 inc/core/data.php:1413
|
| 1714 |
+
#: inc/core/data.php:1464 inc/core/data.php:1508 inc/core/data.php:1660
|
| 1715 |
msgid "Player height"
|
| 1716 |
msgstr "Высота плеера"
|
| 1717 |
|
| 1718 |
+
#: inc/core/data.php:1242 inc/core/data.php:1299 inc/core/data.php:1418
|
| 1719 |
+
#: inc/core/data.php:1469 inc/core/data.php:1513 inc/core/data.php:1922
|
| 1720 |
+
#: inc/core/data.php:1961 inc/core/data.php:2043 inc/core/data.php:2164
|
| 1721 |
msgid "Responsive"
|
| 1722 |
msgstr "Отзывчивость (responsive)"
|
| 1723 |
|
| 1724 |
+
#: inc/core/data.php:1243 inc/core/data.php:1300 inc/core/data.php:1419
|
| 1725 |
+
#: inc/core/data.php:1470 inc/core/data.php:1514
|
| 1726 |
msgid "Ignore width and height parameters and make player responsive"
|
| 1727 |
msgstr ""
|
| 1728 |
"Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
|
| 1729 |
|
| 1730 |
+
#: inc/core/data.php:1248 inc/core/data.php:1333 inc/core/data.php:1424
|
| 1731 |
+
#: inc/core/data.php:1519 inc/core/data.php:1601 inc/core/data.php:1671
|
| 1732 |
+
#: inc/core/data.php:2078 inc/core/data.php:2216
|
| 1733 |
msgid "Autoplay"
|
| 1734 |
msgstr "Автовоспроизведение"
|
| 1735 |
|
| 1736 |
+
#: inc/core/data.php:1249 inc/core/data.php:1334 inc/core/data.php:1425
|
| 1737 |
msgid "Play video automatically when page is loaded"
|
| 1738 |
msgstr "Воспроизвести видео автоматически при открытии страницы"
|
| 1739 |
|
| 1740 |
+
#: inc/core/data.php:1257
|
| 1741 |
msgid "YouTube video"
|
| 1742 |
msgstr "Видео YouTube"
|
| 1743 |
|
| 1744 |
+
#: inc/core/data.php:1263
|
| 1745 |
msgid "YouTube Advanced"
|
| 1746 |
msgstr "YouTube продвинутый"
|
| 1747 |
|
| 1748 |
+
#: inc/core/data.php:1275
|
| 1749 |
msgid "Playlist"
|
| 1750 |
msgstr "Плейлист"
|
| 1751 |
|
| 1752 |
+
#: inc/core/data.php:1276
|
| 1753 |
msgid ""
|
| 1754 |
"Value is a comma-separated list of video IDs to play. If you specify a "
|
| 1755 |
"value, the first video that plays will be the VIDEO_ID specified in the URL "
|
| 1759 |
"значение, то первым будет проиграно видео из параметра URL, а указанные "
|
| 1760 |
"здесь видео будут проиграны после него"
|
| 1761 |
|
| 1762 |
+
#: inc/core/data.php:1305
|
| 1763 |
msgid "0 - Hide controls"
|
| 1764 |
msgstr "0 - Спрятать панель"
|
| 1765 |
|
| 1766 |
+
#: inc/core/data.php:1306
|
| 1767 |
msgid "1 - Show controls"
|
| 1768 |
msgstr "1 - Показать панель"
|
| 1769 |
|
| 1770 |
+
#: inc/core/data.php:1307
|
| 1771 |
msgid "2 - Show controls when playback is started"
|
| 1772 |
msgstr "2 - Показать панель при начале воспроизведения"
|
| 1773 |
|
| 1774 |
+
#: inc/core/data.php:1310 inc/core/data.php:1665
|
| 1775 |
msgid "Controls"
|
| 1776 |
msgstr "Элементы управления"
|
| 1777 |
|
| 1778 |
+
#: inc/core/data.php:1311
|
| 1779 |
msgid "This parameter indicates whether the video player controls will display"
|
| 1780 |
msgstr ""
|
| 1781 |
"Этот параметр определяет как показывать панель управления воспроизведением"
|
| 1782 |
|
| 1783 |
+
#: inc/core/data.php:1316
|
| 1784 |
msgid "0 - Do not hide controls"
|
| 1785 |
msgstr "0 - Не прятать панель"
|
| 1786 |
|
| 1787 |
+
#: inc/core/data.php:1317
|
| 1788 |
msgid "1 - Hide all controls on mouse out"
|
| 1789 |
msgstr "1 - Спрятать панель при уходе мыши"
|
| 1790 |
|
| 1791 |
+
#: inc/core/data.php:1318
|
| 1792 |
msgid "2 - Hide progress bar on mouse out"
|
| 1793 |
msgstr "2 - Спрятать полосу прокрутки при уходе мыши"
|
| 1794 |
|
| 1795 |
+
#: inc/core/data.php:1321
|
| 1796 |
msgid "Autohide"
|
| 1797 |
msgstr "Авто-скрытие"
|
| 1798 |
|
| 1799 |
+
#: inc/core/data.php:1322
|
| 1800 |
msgid ""
|
| 1801 |
"This parameter indicates whether the video controls will automatically hide "
|
| 1802 |
"after a video begins playing"
|
| 1804 |
"Этот параметр определяет как скрывать панель управления воспроизведением во "
|
| 1805 |
"время проигрывания ролика"
|
| 1806 |
|
| 1807 |
+
#: inc/core/data.php:1327
|
| 1808 |
msgid "Show title bar"
|
| 1809 |
msgstr "Показывать заголовок"
|
| 1810 |
|
| 1811 |
+
#: inc/core/data.php:1328
|
| 1812 |
msgid ""
|
| 1813 |
"If you set the parameter value to NO, then the player will not display "
|
| 1814 |
"information like the video title and uploader before the video starts "
|
| 1817 |
"Если вы установите параметр на НЕТ, то в плеере не будет показан заголовок с "
|
| 1818 |
"названием видео и имя автора видео"
|
| 1819 |
|
| 1820 |
+
#: inc/core/data.php:1339 inc/core/data.php:1607 inc/core/data.php:1677
|
| 1821 |
msgid "Loop"
|
| 1822 |
msgstr "Повтор"
|
| 1823 |
|
| 1824 |
+
#: inc/core/data.php:1340
|
| 1825 |
msgid ""
|
| 1826 |
"Setting of YES will cause the player to play the initial video again and "
|
| 1827 |
"again"
|
| 1828 |
msgstr "Видео будет снова проиграно по окнчании воспроизведения"
|
| 1829 |
|
| 1830 |
+
#: inc/core/data.php:1345
|
| 1831 |
msgid "Related videos"
|
| 1832 |
msgstr "Похожие видео"
|
| 1833 |
|
| 1834 |
+
#: inc/core/data.php:1346
|
| 1835 |
msgid ""
|
| 1836 |
"This parameter indicates whether the player should show related videos when "
|
| 1837 |
"playback of the initial video ends"
|
| 1839 |
"Этот параметр позволяет отключать показ похожих видео по окончании "
|
| 1840 |
"воспроизведения"
|
| 1841 |
|
| 1842 |
+
#: inc/core/data.php:1351
|
| 1843 |
msgid "Show full-screen button"
|
| 1844 |
msgstr "Показывать кнопку полноэкранного режима"
|
| 1845 |
|
| 1846 |
+
#: inc/core/data.php:1352
|
| 1847 |
msgid ""
|
| 1848 |
"Setting this parameter to NO prevents the fullscreen button from displaying"
|
| 1849 |
msgstr ""
|
| 1850 |
"Установка этого параметра на НЕТ скроет кнопку перехода в полноэкранный режим"
|
| 1851 |
|
| 1852 |
+
#: inc/core/data.php:1358
|
| 1853 |
msgid ""
|
| 1854 |
"This parameter lets you use a YouTube player that does not show a YouTube "
|
| 1855 |
"logo. Set the parameter value to YES to prevent the YouTube logo from "
|
| 1861 |
"управления воспроизведением. Вместо он будет показан либо в панели заголовка "
|
| 1862 |
"видео, либо как полупрозрачный над видео"
|
| 1863 |
|
| 1864 |
+
#: inc/core/data.php:1363
|
| 1865 |
msgid "Dark theme"
|
| 1866 |
msgstr "Темная тема"
|
| 1867 |
|
| 1868 |
+
#: inc/core/data.php:1364
|
| 1869 |
msgid "Light theme"
|
| 1870 |
msgstr "Светлая тема"
|
| 1871 |
|
| 1872 |
+
#: inc/core/data.php:1367 inc/core/data.php:2539
|
| 1873 |
msgid "Theme"
|
| 1874 |
msgstr "Тема"
|
| 1875 |
|
| 1876 |
+
#: inc/core/data.php:1368
|
| 1877 |
msgid ""
|
| 1878 |
"This parameter indicates whether the embedded player will display player "
|
| 1879 |
"controls (like a play button or volume control) within a dark or light "
|
| 1880 |
"control bar"
|
| 1881 |
msgstr "Выберите тему для проигрывателя"
|
| 1882 |
|
| 1883 |
+
#: inc/core/data.php:1373
|
| 1884 |
msgid "Force HTTPS"
|
| 1885 |
msgstr "Принудительный HTTPS"
|
| 1886 |
|
| 1887 |
+
#: inc/core/data.php:1374
|
| 1888 |
msgid "Use HTTPS in player iframe"
|
| 1889 |
msgstr "Использовать протокол HTTPS во фрейме проигрывателя"
|
| 1890 |
|
| 1891 |
+
#: inc/core/data.php:1382
|
| 1892 |
msgid "YouTube video player with advanced settings"
|
| 1893 |
msgstr "YouTube видео плеер с расширенными настройками"
|
| 1894 |
|
| 1895 |
+
#: inc/core/data.php:1388
|
| 1896 |
msgid "Vimeo"
|
| 1897 |
msgstr "Vimeo"
|
| 1898 |
|
| 1899 |
+
#: inc/core/data.php:1395
|
| 1900 |
msgid "Url of Vimeo page with video"
|
| 1901 |
msgstr "Ссылка на страницу Vimeo с видео"
|
| 1902 |
|
| 1903 |
+
#: inc/core/data.php:1433
|
| 1904 |
msgid "Vimeo video"
|
| 1905 |
msgstr "Видео Vimeo"
|
| 1906 |
|
| 1907 |
+
#: inc/core/data.php:1439
|
| 1908 |
msgid "Screenr"
|
| 1909 |
msgstr "Screenr"
|
| 1910 |
|
| 1911 |
+
#: inc/core/data.php:1446
|
| 1912 |
msgid "Url of Screenr page with video"
|
| 1913 |
msgstr "Ссылка на страницу Screenr с видео"
|
| 1914 |
|
| 1915 |
+
#: inc/core/data.php:1478
|
| 1916 |
msgid "Screenr video"
|
| 1917 |
msgstr "Видео Screenr"
|
| 1918 |
|
| 1919 |
+
#: inc/core/data.php:1483
|
| 1920 |
msgid "Dailymotion"
|
| 1921 |
msgstr "Dailymotion"
|
| 1922 |
|
| 1923 |
+
#: inc/core/data.php:1490
|
| 1924 |
msgid "Url of Dailymotion page with video"
|
| 1925 |
msgstr "Ссылка на страницу Dailymotion с видео"
|
| 1926 |
|
| 1927 |
+
#: inc/core/data.php:1520
|
| 1928 |
msgid ""
|
| 1929 |
"Start the playback of the video automatically after the player load. May not "
|
| 1930 |
"work on some mobile OS versions"
|
| 1932 |
"Автоматически начать воспроизведение видео. Может не работать на некоторых "
|
| 1933 |
"моильных ОС"
|
| 1934 |
|
| 1935 |
+
#: inc/core/data.php:1525 inc/core/data.php:2872
|
| 1936 |
msgid "Background color"
|
| 1937 |
msgstr "Цвет фона"
|
| 1938 |
|
| 1939 |
+
#: inc/core/data.php:1526
|
| 1940 |
msgid "HTML color of the background of controls elements"
|
| 1941 |
msgstr "HTML цвет фона элементов управления"
|
| 1942 |
|
| 1943 |
+
#: inc/core/data.php:1531
|
| 1944 |
msgid "Foreground color"
|
| 1945 |
msgstr "Цвет переднего плана"
|
| 1946 |
|
| 1947 |
+
#: inc/core/data.php:1532
|
| 1948 |
msgid "HTML color of the foreground of controls elements"
|
| 1949 |
msgstr "HTML цвет передней части элементов управления"
|
| 1950 |
|
| 1951 |
+
#: inc/core/data.php:1537
|
| 1952 |
msgid "Highlight color"
|
| 1953 |
msgstr "Цвет подсветки"
|
| 1954 |
|
| 1955 |
+
#: inc/core/data.php:1538
|
| 1956 |
msgid "HTML color of the controls elements' highlights"
|
| 1957 |
msgstr "HTML цвет подсветки элементов управления"
|
| 1958 |
|
| 1959 |
+
#: inc/core/data.php:1543
|
| 1960 |
msgid "Show logo"
|
| 1961 |
msgstr "Показать логотип"
|
| 1962 |
|
| 1963 |
+
#: inc/core/data.php:1544
|
| 1964 |
msgid "Allows to hide or show the Dailymotion logo"
|
| 1965 |
msgstr "Показать или нет лого Dailymotion"
|
| 1966 |
|
| 1967 |
+
#: inc/core/data.php:1556
|
| 1968 |
msgid "Quality"
|
| 1969 |
msgstr "Качество"
|
| 1970 |
|
| 1971 |
+
#: inc/core/data.php:1557
|
| 1972 |
msgid "Determines the quality that must be played by default if available"
|
| 1973 |
msgstr "Определите качество, которое нужно воспроизвести, если доступно"
|
| 1974 |
|
| 1975 |
+
#: inc/core/data.php:1562
|
| 1976 |
msgid "Show related videos"
|
| 1977 |
msgstr "Показать похожие видео"
|
| 1978 |
|
| 1979 |
+
#: inc/core/data.php:1563
|
| 1980 |
msgid "Show related videos at the end of the video"
|
| 1981 |
msgstr "Показать похожие видео в конце воспроизведения"
|
| 1982 |
|
| 1983 |
+
#: inc/core/data.php:1568
|
| 1984 |
msgid "Show video info"
|
| 1985 |
msgstr "Показывать инфо видео"
|
| 1986 |
|
| 1987 |
+
#: inc/core/data.php:1569
|
| 1988 |
msgid "Show videos info (title/author) on the start screen"
|
| 1989 |
msgstr "Показать информацию о видео (заголовок/автор) на начальном экране"
|
| 1990 |
|
| 1991 |
+
#: inc/core/data.php:1577
|
| 1992 |
msgid "Dailymotion video"
|
| 1993 |
msgstr "Видео Dailymotion"
|
| 1994 |
|
| 1995 |
+
#: inc/core/data.php:1582
|
| 1996 |
msgid "Audio"
|
| 1997 |
msgstr "Аудио"
|
| 1998 |
|
| 1999 |
+
#: inc/core/data.php:1589 inc/core/data.php:1629
|
| 2000 |
msgid "File"
|
| 2001 |
msgstr "Файл"
|
| 2002 |
|
| 2003 |
+
#: inc/core/data.php:1590
|
| 2004 |
msgid "Audio file url. Supported formats: mp3, ogg"
|
| 2005 |
msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
|
| 2006 |
|
| 2007 |
+
#: inc/core/data.php:1596
|
| 2008 |
msgid ""
|
| 2009 |
"Player width. You can specify width in percents and player will be "
|
| 2010 |
"responsive. Example values: <b%value>200px</b>, <b%value>100%</b>"
|
| 2013 |
"отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b"
|
| 2014 |
"%value>100%</b>"
|
| 2015 |
|
| 2016 |
+
#: inc/core/data.php:1602 inc/core/data.php:1672
|
| 2017 |
msgid "Play file automatically when page is loaded"
|
| 2018 |
msgstr "Воспроизводить файл автоматически при открытии страницы"
|
| 2019 |
|
| 2020 |
+
#: inc/core/data.php:1608 inc/core/data.php:1678
|
| 2021 |
msgid "Repeat when playback is ended"
|
| 2022 |
msgstr "Повторять, когда воспроизведение окночено"
|
| 2023 |
|
| 2024 |
+
#: inc/core/data.php:1616
|
| 2025 |
msgid "Custom audio player"
|
| 2026 |
msgstr "Настраиваемый аудио-плеер"
|
| 2027 |
|
| 2028 |
+
#: inc/core/data.php:1622
|
| 2029 |
msgid "Video"
|
| 2030 |
msgstr "Видео"
|
| 2031 |
|
| 2032 |
+
#: inc/core/data.php:1630
|
| 2033 |
msgid "Url to mp4/flv video-file"
|
| 2034 |
msgstr "Ссылка на mp4/flv видео-файл"
|
| 2035 |
|
| 2036 |
+
#: inc/core/data.php:1635
|
| 2037 |
msgid "Poster"
|
| 2038 |
msgstr "Постер"
|
| 2039 |
|
| 2040 |
+
#: inc/core/data.php:1636
|
| 2041 |
msgid "Url to poster image, that will be shown before playback"
|
| 2042 |
msgstr ""
|
| 2043 |
"Ссылка на изображение постера. Изображение будет показано перед началом "
|
| 2044 |
"воспроизведения"
|
| 2045 |
|
| 2046 |
+
#: inc/core/data.php:1642
|
| 2047 |
msgid "Player title"
|
| 2048 |
msgstr "Заголовок плеера"
|
| 2049 |
|
| 2050 |
+
#: inc/core/data.php:1666
|
| 2051 |
msgid "Show player controls (play/pause etc.) or not"
|
| 2052 |
msgstr ""
|
| 2053 |
"Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
|
| 2054 |
|
| 2055 |
+
#: inc/core/data.php:1686
|
| 2056 |
msgid "Custom video player"
|
| 2057 |
msgstr "Настраиваемый видео-плеер"
|
| 2058 |
|
| 2059 |
+
#: inc/core/data.php:1692
|
| 2060 |
msgid "Table"
|
| 2061 |
msgstr "Таблица"
|
| 2062 |
|
| 2063 |
+
#: inc/core/data.php:1699
|
| 2064 |
msgid "CSV file"
|
| 2065 |
msgstr "CSV файл"
|
| 2066 |
|
| 2067 |
+
#: inc/core/data.php:1700
|
| 2068 |
msgid "Upload CSV file if you want to create HTML-table from file"
|
| 2069 |
msgstr ""
|
| 2070 |
"Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
|
| 2071 |
|
| 2072 |
+
#: inc/core/data.php:1708
|
| 2073 |
msgid ""
|
| 2074 |
"<table>\n"
|
| 2075 |
"<tr>\n"
|
| 2093 |
"</tr>\n"
|
| 2094 |
"</table>"
|
| 2095 |
|
| 2096 |
+
#: inc/core/data.php:1709
|
| 2097 |
msgid "Styled table from HTML or CSV file"
|
| 2098 |
msgstr "Стильная таблица из HTML или CSV файла"
|
| 2099 |
|
| 2100 |
+
#: inc/core/data.php:1714
|
| 2101 |
msgid "Permalink"
|
| 2102 |
msgstr "Постоянная ссылка"
|
| 2103 |
|
| 2104 |
+
#: inc/core/data.php:1720 inc/core/data.php:2649
|
| 2105 |
msgid "ID"
|
| 2106 |
msgstr "ID"
|
| 2107 |
|
| 2108 |
+
#: inc/core/data.php:1721
|
| 2109 |
msgid "Post or page ID"
|
| 2110 |
msgstr "ID записи или страницы"
|
| 2111 |
|
| 2112 |
+
#: inc/core/data.php:1731
|
| 2113 |
msgid "Link target. blank - link will be opened in new window/tab"
|
| 2114 |
msgstr ""
|
| 2115 |
"Цель ссылки. blank - означает что ссылка будет открыта в новом окне или "
|
| 2116 |
"вкладке"
|
| 2117 |
|
| 2118 |
+
#: inc/core/data.php:1740
|
| 2119 |
msgid "Permalink to specified post/page"
|
| 2120 |
msgstr "Постоянная ссылка на страницу"
|
| 2121 |
|
| 2122 |
+
#: inc/core/data.php:1745
|
| 2123 |
msgid "Members"
|
| 2124 |
msgstr "Участники"
|
| 2125 |
|
| 2126 |
+
#: inc/core/data.php:1750 inc/core/shortcodes.php:828
|
| 2127 |
msgid "This content is for registered users only. Please %login%."
|
| 2128 |
msgstr ""
|
| 2129 |
"Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
|
| 2130 |
|
| 2131 |
+
#: inc/core/data.php:1751
|
| 2132 |
msgid "Message"
|
| 2133 |
msgstr "Сообщение"
|
| 2134 |
|
| 2135 |
+
#: inc/core/data.php:1751
|
| 2136 |
msgid "Message for not logged users"
|
| 2137 |
msgstr "Собщение для неавторизованных"
|
| 2138 |
|
| 2139 |
+
#: inc/core/data.php:1756
|
| 2140 |
msgid "Box color"
|
| 2141 |
msgstr "Цвет блока"
|
| 2142 |
|
| 2143 |
+
#: inc/core/data.php:1756
|
| 2144 |
msgid "This color will applied only to box for not logged users"
|
| 2145 |
msgstr ""
|
| 2146 |
"Этот цвет будет применен только к блоку для не авторизованных посетителей"
|
| 2147 |
|
| 2148 |
+
#: inc/core/data.php:1759 inc/core/shortcodes.php:831
|
| 2149 |
msgid "login"
|
| 2150 |
msgstr "войдите"
|
| 2151 |
|
| 2152 |
+
#: inc/core/data.php:1760
|
| 2153 |
msgid "Login link text"
|
| 2154 |
msgstr "Текст ссылки войти"
|
| 2155 |
|
| 2156 |
+
#: inc/core/data.php:1760
|
| 2157 |
msgid "Text for the login link"
|
| 2158 |
msgstr "Текст ссылки ВОЙТИ"
|
| 2159 |
|
| 2160 |
+
#: inc/core/data.php:1764
|
| 2161 |
msgid "Login link url"
|
| 2162 |
msgstr "Адрес ссылки войти"
|
| 2163 |
|
| 2164 |
+
#: inc/core/data.php:1772
|
| 2165 |
msgid "Content for logged members"
|
| 2166 |
msgstr "Содержимое для авторизованых пользователей"
|
| 2167 |
|
| 2168 |
+
#: inc/core/data.php:1773
|
| 2169 |
msgid "Content for logged in members only"
|
| 2170 |
msgstr "Ссодержимое для авторизованых"
|
| 2171 |
|
| 2172 |
+
#: inc/core/data.php:1778
|
| 2173 |
msgid "Guests"
|
| 2174 |
msgstr "Гости"
|
| 2175 |
|
| 2176 |
+
#: inc/core/data.php:1788
|
| 2177 |
msgid "Content for guests"
|
| 2178 |
msgstr "Содержимое для гостей"
|
| 2179 |
|
| 2180 |
+
#: inc/core/data.php:1789
|
| 2181 |
msgid "Content for guests only"
|
| 2182 |
msgstr "Ссодержимое только для гостей"
|
| 2183 |
|
| 2184 |
+
#: inc/core/data.php:1794
|
| 2185 |
msgid "RSS Feed"
|
| 2186 |
msgstr "RSS лента"
|
| 2187 |
|
| 2188 |
+
#: inc/core/data.php:1802
|
| 2189 |
msgid "Url to RSS-feed"
|
| 2190 |
msgstr "Ссылка на RSS-ленту"
|
| 2191 |
|
| 2192 |
+
#: inc/core/data.php:1810 inc/core/data.php:1997 inc/core/data.php:2116
|
| 2193 |
+
#: inc/core/data.php:2254
|
| 2194 |
msgid "Limit"
|
| 2195 |
msgstr "Лимит"
|
| 2196 |
|
| 2197 |
+
#: inc/core/data.php:1810
|
| 2198 |
msgid "Number of items to show"
|
| 2199 |
msgstr "Количество элементов для отображения"
|
| 2200 |
|
| 2201 |
+
#: inc/core/data.php:1818
|
| 2202 |
msgid "Feed grabber"
|
| 2203 |
msgstr "Граббер новостных лент"
|
| 2204 |
|
| 2205 |
+
#: inc/core/data.php:1823
|
| 2206 |
msgid "Menu"
|
| 2207 |
msgstr "Меню"
|
| 2208 |
|
| 2209 |
+
#: inc/core/data.php:1830
|
| 2210 |
msgid "Menu name"
|
| 2211 |
msgstr "Имя меню"
|
| 2212 |
|
| 2213 |
+
#: inc/core/data.php:1830
|
| 2214 |
msgid "Custom menu name. Ex: Main menu"
|
| 2215 |
msgstr "Имя произвольного меню. Например: Главное меню"
|
| 2216 |
|
| 2217 |
+
#: inc/core/data.php:1838
|
| 2218 |
msgid "Custom menu by name"
|
| 2219 |
msgstr "Произвольное меню"
|
| 2220 |
|
| 2221 |
+
#: inc/core/data.php:1843
|
| 2222 |
msgid "Sub pages"
|
| 2223 |
msgstr "Подстраницы"
|
| 2224 |
|
| 2225 |
+
#: inc/core/data.php:1850 inc/core/data.php:1877
|
| 2226 |
msgid "Depth"
|
| 2227 |
msgstr "Глубина"
|
| 2228 |
|
| 2229 |
+
#: inc/core/data.php:1851
|
| 2230 |
msgid "Max depth level of children pages"
|
| 2231 |
msgstr "Максимальная глубина дочерних страниц"
|
| 2232 |
|
| 2233 |
+
#: inc/core/data.php:1856
|
| 2234 |
msgid "Parent ID"
|
| 2235 |
msgstr "ID родителя"
|
| 2236 |
|
| 2237 |
+
#: inc/core/data.php:1857
|
| 2238 |
msgid "ID of the parent page. Leave blank to use current page"
|
| 2239 |
msgstr ""
|
| 2240 |
"ID родительской страницы. Оставьте пустым, чтобы использовать текущую "
|
| 2241 |
"страницу"
|
| 2242 |
|
| 2243 |
+
#: inc/core/data.php:1865
|
| 2244 |
msgid "List of sub pages"
|
| 2245 |
msgstr "Список дочерних страниц"
|
| 2246 |
|
| 2247 |
+
#: inc/core/data.php:1870
|
| 2248 |
msgid "Siblings"
|
| 2249 |
msgstr "Соседние страницы"
|
| 2250 |
|
| 2251 |
+
#: inc/core/data.php:1878
|
| 2252 |
msgid "Max depth level"
|
| 2253 |
msgstr "Максимальный уровень вложенности"
|
| 2254 |
|
| 2255 |
+
#: inc/core/data.php:1886
|
| 2256 |
msgid "List of cureent page siblings"
|
| 2257 |
msgstr "Список страниц, соседних с текущей"
|
| 2258 |
|
| 2259 |
+
#: inc/core/data.php:1891
|
| 2260 |
msgid "Document"
|
| 2261 |
msgstr "Документ"
|
| 2262 |
|
| 2263 |
+
#: inc/core/data.php:1899
|
| 2264 |
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
| 2265 |
msgstr ""
|
| 2266 |
"Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
|
| 2267 |
|
| 2268 |
+
#: inc/core/data.php:1908
|
| 2269 |
msgid "Viewer width"
|
| 2270 |
msgstr "Ширина просмотрщика"
|
| 2271 |
|
| 2272 |
+
#: inc/core/data.php:1917
|
| 2273 |
msgid "Viewer height"
|
| 2274 |
msgstr "Высота просмотрщика"
|
| 2275 |
|
| 2276 |
+
#: inc/core/data.php:1923
|
| 2277 |
msgid "Ignore width and height parameters and make viewer responsive"
|
| 2278 |
msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
|
| 2279 |
|
| 2280 |
+
#: inc/core/data.php:1931
|
| 2281 |
msgid "Document viewer by Google"
|
| 2282 |
msgstr "Просмотрщик документов от Google"
|
| 2283 |
|
| 2284 |
+
#: inc/core/data.php:1936
|
| 2285 |
msgid "Gmap"
|
| 2286 |
msgstr "Google карта"
|
| 2287 |
|
| 2288 |
+
#: inc/core/data.php:1947
|
| 2289 |
msgid "Map width"
|
| 2290 |
msgstr "Ширина карты"
|
| 2291 |
|
| 2292 |
+
#: inc/core/data.php:1956
|
| 2293 |
msgid "Map height"
|
| 2294 |
msgstr "Высота карты"
|
| 2295 |
|
| 2296 |
+
#: inc/core/data.php:1962
|
| 2297 |
msgid "Ignore width and height parameters and make map responsive"
|
| 2298 |
msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
|
| 2299 |
|
| 2300 |
+
#: inc/core/data.php:1967
|
| 2301 |
msgid "Marker"
|
| 2302 |
msgstr "Маркер"
|
| 2303 |
|
| 2304 |
+
#: inc/core/data.php:1968
|
| 2305 |
msgid "Address for the marker. You can type it in any language"
|
| 2306 |
msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
|
| 2307 |
|
| 2308 |
+
#: inc/core/data.php:1976
|
| 2309 |
msgid "Maps by Google"
|
| 2310 |
msgstr "Карты от Google"
|
| 2311 |
|
| 2312 |
+
#: inc/core/data.php:1981
|
| 2313 |
msgid "Slider"
|
| 2314 |
msgstr "Слайдер"
|
| 2315 |
|
| 2316 |
+
#: inc/core/data.php:1988 inc/core/data.php:2107 inc/core/data.php:2245
|
| 2317 |
msgid "Source"
|
| 2318 |
msgstr "Источник"
|
| 2319 |
|
| 2320 |
+
#: inc/core/data.php:1989 inc/core/data.php:2108 inc/core/data.php:2246
|
| 2321 |
msgid ""
|
| 2322 |
"Choose images source. You can use images from Media library or retrieve it "
|
| 2323 |
"from posts (thumbnails) posted under specified blog category. You can also "
|
| 2328 |
"опубликованных в выбранной категории. Вы также можете выбрать произвольную "
|
| 2329 |
"таксономию и её рубрики"
|
| 2330 |
|
| 2331 |
+
#: inc/core/data.php:1998 inc/core/data.php:2117 inc/core/data.php:2255
|
| 2332 |
msgid ""
|
| 2333 |
"Maximum number of image source posts (for recent posts, category and custom "
|
| 2334 |
"taxonomy)"
|
| 2336 |
"Максимальное кол-во записей с изображениями (для последних записей, "
|
| 2337 |
"категорий и произвольных таксономий)"
|
| 2338 |
|
| 2339 |
+
#: inc/core/data.php:2004 inc/core/data.php:2123 inc/core/data.php:2261
|
| 2340 |
msgid "Full-size image"
|
| 2341 |
msgstr "Полноразмерное изображение"
|
| 2342 |
|
| 2343 |
+
#: inc/core/data.php:2006 inc/core/data.php:2125 inc/core/data.php:2263
|
| 2344 |
msgid "Slide link (added in media editor)"
|
| 2345 |
msgstr "Ссылка слайда (добавленная в медиа редакторе)"
|
| 2346 |
|
| 2347 |
+
#: inc/core/data.php:2007 inc/core/data.php:2126 inc/core/data.php:2264
|
| 2348 |
msgid "Attachment page"
|
| 2349 |
msgstr "Страница медиа-файла"
|
| 2350 |
|
| 2351 |
+
#: inc/core/data.php:2008 inc/core/data.php:2127 inc/core/data.php:2265
|
| 2352 |
msgid "Post permalink"
|
| 2353 |
msgstr "Ссылка записи"
|
| 2354 |
|
| 2355 |
+
#: inc/core/data.php:2011 inc/core/data.php:2130 inc/core/data.php:2268
|
| 2356 |
msgid "Links"
|
| 2357 |
msgstr "Ссылки"
|
| 2358 |
|
| 2359 |
+
#: inc/core/data.php:2012 inc/core/data.php:2131 inc/core/data.php:2269
|
| 2360 |
msgid "Select which links will be used for images in this gallery"
|
| 2361 |
msgstr "Выберите какие ссылки использовать для элементов этой галереи"
|
| 2362 |
|
| 2363 |
+
#: inc/core/data.php:2017 inc/core/data.php:2136 inc/core/data.php:2274
|
| 2364 |
msgid "Same window"
|
| 2365 |
msgstr "То же окно"
|
| 2366 |
|
| 2367 |
+
#: inc/core/data.php:2018 inc/core/data.php:2137 inc/core/data.php:2275
|
| 2368 |
msgid "New window"
|
| 2369 |
msgstr "Новое окно"
|
| 2370 |
|
| 2371 |
+
#: inc/core/data.php:2021 inc/core/data.php:2140 inc/core/data.php:2278
|
| 2372 |
msgid "Links target"
|
| 2373 |
msgstr "Цель ссылок"
|
| 2374 |
|
| 2375 |
+
#: inc/core/data.php:2022 inc/core/data.php:2141 inc/core/data.php:2279
|
| 2376 |
msgid "Open links in"
|
| 2377 |
msgstr "Открывать ссылки в"
|
| 2378 |
|
| 2379 |
+
#: inc/core/data.php:2030
|
| 2380 |
msgid "Slider width (in pixels)"
|
| 2381 |
msgstr "Ширина слайдера (в пикселях)"
|
| 2382 |
|
| 2383 |
+
#: inc/core/data.php:2038
|
| 2384 |
msgid "Slider height (in pixels)"
|
| 2385 |
msgstr "Высота слайдера (в пикселях)"
|
| 2386 |
|
| 2387 |
+
#: inc/core/data.php:2044
|
| 2388 |
msgid "Ignore width and height parameters and make slider responsive"
|
| 2389 |
msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
|
| 2390 |
|
| 2391 |
+
#: inc/core/data.php:2049 inc/core/data.php:2187 inc/core/data.php:2305
|
| 2392 |
msgid "Show titles"
|
| 2393 |
msgstr "Показывать заголовки"
|
| 2394 |
|
| 2395 |
+
#: inc/core/data.php:2049
|
| 2396 |
msgid "Display slide titles"
|
| 2397 |
msgstr "Отображать заголовки слайдов"
|
| 2398 |
|
| 2399 |
+
#: inc/core/data.php:2054
|
| 2400 |
msgid "Is slider centered on the page"
|
| 2401 |
msgstr "Слайдер выровнен по центру страницы"
|
| 2402 |
|
| 2403 |
+
#: inc/core/data.php:2059 inc/core/data.php:2197
|
| 2404 |
msgid "Arrows"
|
| 2405 |
msgstr "Стрелки"
|
| 2406 |
|
| 2407 |
+
#: inc/core/data.php:2059 inc/core/data.php:2197
|
| 2408 |
msgid "Show left and right arrows"
|
| 2409 |
msgstr "Показывать стрелки влево/вправо"
|
| 2410 |
|
| 2411 |
+
#: inc/core/data.php:2064 inc/core/data.php:2202
|
| 2412 |
msgid "Pagination"
|
| 2413 |
msgstr "Страницы"
|
| 2414 |
|
| 2415 |
+
#: inc/core/data.php:2065 inc/core/data.php:2203
|
| 2416 |
msgid "Show pagination"
|
| 2417 |
msgstr "Показывать страницы"
|
| 2418 |
|
| 2419 |
+
#: inc/core/data.php:2069 inc/core/data.php:2207
|
| 2420 |
msgid "Mouse wheel control"
|
| 2421 |
msgstr "Управление колесом мыши"
|
| 2422 |
|
| 2423 |
+
#: inc/core/data.php:2070
|
| 2424 |
msgid "Allow to change slides with mouse wheel"
|
| 2425 |
msgstr "Разрешить перелистывание слайдов колесом мышки"
|
| 2426 |
|
| 2427 |
+
#: inc/core/data.php:2079
|
| 2428 |
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
| 2429 |
msgstr ""
|
| 2430 |
"Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы "
|
| 2431 |
"отключить автовоспроизведение"
|
| 2432 |
|
| 2433 |
+
#: inc/core/data.php:2087 inc/core/data.php:2225
|
| 2434 |
msgid "Speed"
|
| 2435 |
msgstr "Скорость"
|
| 2436 |
|
| 2437 |
+
#: inc/core/data.php:2087 inc/core/data.php:2225
|
| 2438 |
msgid "Specify animation speed"
|
| 2439 |
msgstr "Укажите скорость анимации"
|
| 2440 |
|
| 2441 |
+
#: inc/core/data.php:2095
|
| 2442 |
msgid "Customizable image slider"
|
| 2443 |
msgstr "Настраиваемый слайдер изображений"
|
| 2444 |
|
| 2445 |
+
#: inc/core/data.php:2100
|
| 2446 |
msgid "Carousel"
|
| 2447 |
msgstr "Карусель"
|
| 2448 |
|
| 2449 |
+
#: inc/core/data.php:2150
|
| 2450 |
msgid "Carousel width (in pixels)"
|
| 2451 |
msgstr "Ширина карусели (в пикселях)"
|
| 2452 |
|
| 2453 |
+
#: inc/core/data.php:2159
|
| 2454 |
msgid "Carousel height (in pixels)"
|
| 2455 |
msgstr "Высота карусели (в пикселях)"
|
| 2456 |
|
| 2457 |
+
#: inc/core/data.php:2165
|
| 2458 |
msgid "Ignore width and height parameters and make carousel responsive"
|
| 2459 |
msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
|
| 2460 |
|
| 2461 |
+
#: inc/core/data.php:2173
|
| 2462 |
msgid "Items to show"
|
| 2463 |
msgstr "Количество элементов для отображения"
|
| 2464 |
|
| 2465 |
+
#: inc/core/data.php:2174
|
| 2466 |
msgid "How much carousel items is visible"
|
| 2467 |
msgstr "Сколько элементов карусели видны постоянно"
|
| 2468 |
|
| 2469 |
+
#: inc/core/data.php:2181
|
| 2470 |
msgid "Scroll number"
|
| 2471 |
msgstr "Кол-во прокручиваемых"
|
| 2472 |
|
| 2473 |
+
#: inc/core/data.php:2182
|
| 2474 |
msgid "How much items are scrolled in one transition"
|
| 2475 |
msgstr "Сколько элементов карусели прокручивается за один переход"
|
| 2476 |
|
| 2477 |
+
#: inc/core/data.php:2187
|
| 2478 |
msgid "Display titles for each item"
|
| 2479 |
msgstr "Показывать заголовки для каждого элемента карусели"
|
| 2480 |
|
| 2481 |
+
#: inc/core/data.php:2192
|
| 2482 |
msgid "Is carousel centered on the page"
|
| 2483 |
msgstr "Карусель выровнена по центру страницы"
|
| 2484 |
|
| 2485 |
+
#: inc/core/data.php:2208
|
| 2486 |
msgid "Allow to rotate carousel with mouse wheel"
|
| 2487 |
msgstr "Разрешить прокрутку карусели колесом мыши"
|
| 2488 |
|
| 2489 |
+
#: inc/core/data.php:2217
|
| 2490 |
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
| 2491 |
msgstr ""
|
| 2492 |
"Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить "
|
| 2493 |
"автовоспроизведение"
|
| 2494 |
|
| 2495 |
+
#: inc/core/data.php:2233
|
| 2496 |
msgid "Customizable image carousel"
|
| 2497 |
msgstr "Настраиваемая карусель изображений"
|
| 2498 |
|
| 2499 |
+
#: inc/core/data.php:2287
|
| 2500 |
msgid "Single item width (in pixels)"
|
| 2501 |
msgstr "Ширина одного изображения (в пикселях)"
|
| 2502 |
|
| 2503 |
+
#: inc/core/data.php:2295
|
| 2504 |
msgid "Single item height (in pixels)"
|
| 2505 |
msgstr "Высота одного изображения (в пикселях)"
|
| 2506 |
|
| 2507 |
+
#: inc/core/data.php:2300
|
| 2508 |
msgid "Never"
|
| 2509 |
msgstr "Никогда"
|
| 2510 |
|
| 2511 |
+
#: inc/core/data.php:2301
|
| 2512 |
msgid "On mouse over"
|
| 2513 |
msgstr "При наведении мыши"
|
| 2514 |
|
| 2515 |
+
#: inc/core/data.php:2302
|
| 2516 |
msgid "Always"
|
| 2517 |
msgstr "Всегда"
|
| 2518 |
|
| 2519 |
+
#: inc/core/data.php:2306
|
| 2520 |
msgid "Title display mode"
|
| 2521 |
msgstr "Режим отображения заголовков"
|
| 2522 |
|
| 2523 |
+
#: inc/core/data.php:2314
|
| 2524 |
msgid "Customizable image gallery"
|
| 2525 |
msgstr "Настраиваемая галерея изображений"
|
| 2526 |
|
| 2527 |
+
#: inc/core/data.php:2319
|
| 2528 |
msgid "Posts"
|
| 2529 |
msgstr "Записи"
|
| 2530 |
|
| 2531 |
+
#: inc/core/data.php:2324 inc/core/data.php:2789
|
| 2532 |
msgid "Template"
|
| 2533 |
msgstr "Шаблон"
|
| 2534 |
|
| 2535 |
+
#: inc/core/data.php:2325
|
| 2536 |
msgid ""
|
| 2537 |
"<b>Do not change this field value if you do not understand description below."
|
| 2538 |
"</b><br/>Relative path to the template file. Default templates is placed "
|
| 2555 |
"одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - "
|
| 2556 |
"маркированный список с заголовками постов"
|
| 2557 |
|
| 2558 |
+
#: inc/core/data.php:2329
|
| 2559 |
msgid "Post ID's"
|
| 2560 |
msgstr "ID постов"
|
| 2561 |
|
| 2562 |
+
#: inc/core/data.php:2330
|
| 2563 |
msgid "Enter comma separated ID's of the posts that you want to show"
|
| 2564 |
msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
|
| 2565 |
|
| 2566 |
+
#: inc/core/data.php:2338
|
| 2567 |
msgid "Posts per page"
|
| 2568 |
msgstr "Кол-во записей"
|
| 2569 |
|
| 2570 |
+
#: inc/core/data.php:2339
|
| 2571 |
msgid ""
|
| 2572 |
"Specify number of posts that you want to show. Enter -1 to get all posts"
|
| 2573 |
msgstr ""
|
| 2574 |
"Укажите число записей, которое хотите отобразить. Введите -1 чтобы "
|
| 2575 |
"отобразить все найденные записи"
|
| 2576 |
|
| 2577 |
+
#: inc/core/data.php:2346
|
| 2578 |
msgid "Post types"
|
| 2579 |
msgstr "Типы постов"
|
| 2580 |
|
| 2581 |
+
#: inc/core/data.php:2347
|
| 2582 |
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
| 2583 |
msgstr ""
|
| 2584 |
"Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
|
| 2585 |
|
| 2586 |
+
#: inc/core/data.php:2353 inc/core/generator-views.php:123
|
| 2587 |
msgid "Taxonomy"
|
| 2588 |
msgstr "Таксономия"
|
| 2589 |
|
| 2590 |
+
#: inc/core/data.php:2354
|
| 2591 |
msgid "Select taxonomy to show posts from"
|
| 2592 |
msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
|
| 2593 |
|
| 2594 |
+
#: inc/core/data.php:2361
|
| 2595 |
msgid "Terms"
|
| 2596 |
msgstr "Категории (terms)"
|
| 2597 |
|
| 2598 |
+
#: inc/core/data.php:2362
|
| 2599 |
msgid "Select terms to show posts from"
|
| 2600 |
msgstr "Выберите категории, из которых нужно показать записи"
|
| 2601 |
|
| 2602 |
+
#: inc/core/data.php:2367
|
| 2603 |
msgid "Taxonomy term operator"
|
| 2604 |
msgstr "Оператор выбора категорий"
|
| 2605 |
|
| 2606 |
+
#: inc/core/data.php:2368
|
| 2607 |
msgid ""
|
| 2608 |
"IN - posts that have any of selected categories terms<br/>NOT IN - posts "
|
| 2609 |
"that is does not have any of selected terms<br/>AND - posts that have all "
|
| 2613 |
"будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/"
|
| 2614 |
">AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
|
| 2615 |
|
| 2616 |
+
#: inc/core/data.php:2380
|
| 2617 |
msgid "Authors"
|
| 2618 |
msgstr "Авторы"
|
| 2619 |
|
| 2620 |
+
#: inc/core/data.php:2381
|
| 2621 |
+
msgid "Enter here comma-separated list of author's IDs. Example: 1,7,18"
|
| 2622 |
+
msgstr "Введите сюда список ID авторов, разделенный запятыми. Пример: 1,7,18"
|
| 2623 |
|
| 2624 |
+
#: inc/core/data.php:2385
|
| 2625 |
msgid "Meta key"
|
| 2626 |
msgstr "Произвольное поле"
|
| 2627 |
|
| 2628 |
+
#: inc/core/data.php:2386
|
| 2629 |
msgid "Enter meta key name to show posts that have this key"
|
| 2630 |
msgstr ""
|
| 2631 |
"Введите оригинальное имя произвольного поля, чтобы показать все записи у "
|
| 2632 |
"которых это поле задано"
|
| 2633 |
|
| 2634 |
+
#: inc/core/data.php:2393
|
| 2635 |
msgid "Offset"
|
| 2636 |
msgstr "Смещение (offset)"
|
| 2637 |
|
| 2638 |
+
#: inc/core/data.php:2394
|
| 2639 |
msgid "Specify offset to start posts loop not from first post"
|
| 2640 |
msgstr ""
|
| 2641 |
"Укажите кол-во записей, которые будут пропущены и не показаны. Например, "
|
| 2642 |
"если указать 2, то будут показаны записи начиная со третьей"
|
| 2643 |
|
| 2644 |
+
#: inc/core/data.php:2399
|
| 2645 |
msgid "Descending"
|
| 2646 |
msgstr "По убыванию"
|
| 2647 |
|
| 2648 |
+
#: inc/core/data.php:2400
|
| 2649 |
msgid "Ascending"
|
| 2650 |
msgstr "По возрастанию"
|
| 2651 |
|
| 2652 |
+
#: inc/core/data.php:2403
|
| 2653 |
msgid "Order"
|
| 2654 |
msgstr "Порядок"
|
| 2655 |
|
| 2656 |
+
#: inc/core/data.php:2404
|
| 2657 |
msgid "Posts order"
|
| 2658 |
msgstr "Порядок сортировки записей"
|
| 2659 |
|
| 2660 |
+
#: inc/core/data.php:2410 inc/core/data.php:2627 inc/core/data.php:2700
|
| 2661 |
+
#: inc/core/data.php:2742
|
| 2662 |
msgid "Post ID"
|
| 2663 |
msgstr "ID записи"
|
| 2664 |
|
| 2665 |
+
#: inc/core/data.php:2411 inc/core/data.php:2701
|
| 2666 |
msgid "Post author"
|
| 2667 |
msgstr "Автор записи"
|
| 2668 |
|
| 2669 |
+
#: inc/core/data.php:2412 inc/core/data.php:2705
|
| 2670 |
msgid "Post title"
|
| 2671 |
msgstr "Заголовок записи"
|
| 2672 |
|
| 2673 |
+
#: inc/core/data.php:2413
|
| 2674 |
msgid "Post slug"
|
| 2675 |
msgstr "Ссылка записи (slug)"
|
| 2676 |
|
| 2677 |
+
#: inc/core/data.php:2414
|
| 2678 |
msgid "Date"
|
| 2679 |
msgstr "Дата"
|
| 2680 |
|
| 2681 |
+
#: inc/core/data.php:2414
|
| 2682 |
msgid "Last modified date"
|
| 2683 |
msgstr "Дата изменения"
|
| 2684 |
|
| 2685 |
+
#: inc/core/data.php:2415 inc/core/data.php:2425 inc/core/data.php:2714
|
| 2686 |
msgid "Post parent"
|
| 2687 |
msgstr "Родитель"
|
| 2688 |
|
| 2689 |
+
#: inc/core/data.php:2416
|
| 2690 |
msgid "Random"
|
| 2691 |
msgstr "Случайно"
|
| 2692 |
|
| 2693 |
+
#: inc/core/data.php:2416
|
| 2694 |
msgid "Comments number"
|
| 2695 |
msgstr "Кол-во комментариев"
|
| 2696 |
|
| 2697 |
+
#: inc/core/data.php:2417 inc/core/data.php:2716
|
| 2698 |
msgid "Menu order"
|
| 2699 |
msgstr "Порядок меню"
|
| 2700 |
|
| 2701 |
+
#: inc/core/data.php:2417
|
| 2702 |
msgid "Meta key values"
|
| 2703 |
msgstr "Значение произвольного поля"
|
| 2704 |
|
| 2705 |
+
#: inc/core/data.php:2420
|
| 2706 |
msgid "Order by"
|
| 2707 |
msgstr "Сортировать по"
|
| 2708 |
|
| 2709 |
+
#: inc/core/data.php:2421
|
| 2710 |
msgid "Order posts by"
|
| 2711 |
msgstr "Сортировать записи по следующему признаку"
|
| 2712 |
|
| 2713 |
+
#: inc/core/data.php:2426
|
| 2714 |
msgid "Show childrens of entered post (enter post ID)"
|
| 2715 |
msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
|
| 2716 |
|
| 2717 |
+
#: inc/core/data.php:2431
|
| 2718 |
msgid "Published"
|
| 2719 |
msgstr "Опубликован"
|
| 2720 |
|
| 2721 |
+
#: inc/core/data.php:2432
|
| 2722 |
msgid "Pending"
|
| 2723 |
msgstr "Ожидает"
|
| 2724 |
|
| 2725 |
+
#: inc/core/data.php:2433
|
| 2726 |
msgid "Draft"
|
| 2727 |
msgstr "Черновик"
|
| 2728 |
|
| 2729 |
+
#: inc/core/data.php:2434
|
| 2730 |
msgid "Auto-draft"
|
| 2731 |
msgstr "Авто-черновик"
|
| 2732 |
|
| 2733 |
+
#: inc/core/data.php:2435
|
| 2734 |
msgid "Future post"
|
| 2735 |
msgstr "Запланирован"
|
| 2736 |
|
| 2737 |
+
#: inc/core/data.php:2436
|
| 2738 |
msgid "Private post"
|
| 2739 |
msgstr "Приватная запись"
|
| 2740 |
|
| 2741 |
+
#: inc/core/data.php:2437
|
| 2742 |
msgid "Inherit"
|
| 2743 |
msgstr "Вложенный"
|
| 2744 |
|
| 2745 |
+
#: inc/core/data.php:2438
|
| 2746 |
msgid "Trashed"
|
| 2747 |
msgstr "В корзине"
|
| 2748 |
|
| 2749 |
+
#: inc/core/data.php:2439 inc/core/data.php:2523
|
| 2750 |
msgid "Any"
|
| 2751 |
msgstr "Любой"
|
| 2752 |
|
| 2753 |
+
#: inc/core/data.php:2442 inc/core/data.php:2707
|
| 2754 |
msgid "Post status"
|
| 2755 |
msgstr "Статус записи"
|
| 2756 |
|
| 2757 |
+
#: inc/core/data.php:2443
|
| 2758 |
msgid "Show only posts with selected status"
|
| 2759 |
msgstr "Показать только записи с выбранным статусом"
|
| 2760 |
|
| 2761 |
+
#: inc/core/data.php:2448
|
| 2762 |
msgid "Ignore sticky"
|
| 2763 |
msgstr "Игнорировать прикрепленные"
|
| 2764 |
|
| 2765 |
+
#: inc/core/data.php:2449
|
| 2766 |
msgid "Select Yes to ignore posts that is sticked"
|
| 2767 |
msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
|
| 2768 |
|
| 2769 |
+
#: inc/core/data.php:2452
|
| 2770 |
msgid "Custom posts query with customizable template"
|
| 2771 |
msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
|
| 2772 |
|
| 2773 |
+
#: inc/core/data.php:2457
|
| 2774 |
msgid "Dummy text"
|
| 2775 |
msgstr "Текст рыба"
|
| 2776 |
|
| 2777 |
+
#: inc/core/data.php:2464
|
| 2778 |
msgid "Paragraphs"
|
| 2779 |
msgstr "Параграфы"
|
| 2780 |
|
| 2781 |
+
#: inc/core/data.php:2465
|
| 2782 |
msgid "Words"
|
| 2783 |
msgstr "Слова"
|
| 2784 |
|
| 2785 |
+
#: inc/core/data.php:2466
|
| 2786 |
msgid "Bytes"
|
| 2787 |
msgstr "Байты"
|
| 2788 |
|
| 2789 |
+
#: inc/core/data.php:2469
|
| 2790 |
msgid "What"
|
| 2791 |
msgstr "Что"
|
| 2792 |
|
| 2793 |
+
#: inc/core/data.php:2470
|
| 2794 |
msgid "What to generate"
|
| 2795 |
msgstr "Что генерировать"
|
| 2796 |
|
| 2797 |
+
#: inc/core/data.php:2478
|
| 2798 |
msgid "Amount"
|
| 2799 |
msgstr "Количество"
|
| 2800 |
|
| 2801 |
+
#: inc/core/data.php:2479
|
| 2802 |
msgid ""
|
| 2803 |
"How many items (paragraphs or words) to generate. Minimum words amount is 5"
|
| 2804 |
msgstr ""
|
| 2805 |
"Какое количество (параграфов или слов) генерировать. Минимальное количество "
|
| 2806 |
"слов - 5"
|
| 2807 |
|
| 2808 |
+
#: inc/core/data.php:2484
|
| 2809 |
msgid "Cache"
|
| 2810 |
msgstr "Кеш"
|
| 2811 |
|
| 2812 |
+
#: inc/core/data.php:2485
|
| 2813 |
msgid ""
|
| 2814 |
"Generated text will be cached. Be careful with this option. If you disable "
|
| 2815 |
"it and insert many dummy_text shortcodes the page load time will be highly "
|
| 2819 |
"вы отключите её и вставите много таких шорткодов на странице, то время "
|
| 2820 |
"загрузки страницы может сильно возрости"
|
| 2821 |
|
| 2822 |
+
#: inc/core/data.php:2493
|
| 2823 |
msgid "Text placeholder"
|
| 2824 |
msgstr "Текст болванка"
|
| 2825 |
|
| 2826 |
+
#: inc/core/data.php:2498 inc/core/shortcodes.php:1339
|
| 2827 |
msgid "Dummy image"
|
| 2828 |
msgstr "Изображение болванка"
|
| 2829 |
|
| 2830 |
+
#: inc/core/data.php:2509
|
| 2831 |
msgid "Image width"
|
| 2832 |
msgstr "Ширина изображения"
|
| 2833 |
|
| 2834 |
+
#: inc/core/data.php:2518
|
| 2835 |
msgid "Image height"
|
| 2836 |
msgstr "Высота изображения"
|
| 2837 |
|
| 2838 |
+
#: inc/core/data.php:2524
|
| 2839 |
msgid "Abstract"
|
| 2840 |
msgstr "Абстрактное"
|
| 2841 |
|
| 2842 |
+
#: inc/core/data.php:2525
|
| 2843 |
msgid "Animals"
|
| 2844 |
msgstr "Животные"
|
| 2845 |
|
| 2846 |
+
#: inc/core/data.php:2526
|
| 2847 |
msgid "Business"
|
| 2848 |
msgstr "Бизнес"
|
| 2849 |
|
| 2850 |
+
#: inc/core/data.php:2527
|
| 2851 |
msgid "Cats"
|
| 2852 |
msgstr "Котэ"
|
| 2853 |
|
| 2854 |
+
#: inc/core/data.php:2528
|
| 2855 |
msgid "City"
|
| 2856 |
msgstr "Город"
|
| 2857 |
|
| 2858 |
+
#: inc/core/data.php:2529
|
| 2859 |
msgid "Food"
|
| 2860 |
msgstr "Еда"
|
| 2861 |
|
| 2862 |
+
#: inc/core/data.php:2530
|
| 2863 |
msgid "Night life"
|
| 2864 |
msgstr "Ночная жизнь"
|
| 2865 |
|
| 2866 |
+
#: inc/core/data.php:2531
|
| 2867 |
msgid "Fashion"
|
| 2868 |
msgstr "Мода"
|
| 2869 |
|
| 2870 |
+
#: inc/core/data.php:2532
|
| 2871 |
msgid "People"
|
| 2872 |
msgstr "Люди"
|
| 2873 |
|
| 2874 |
+
#: inc/core/data.php:2533
|
| 2875 |
msgid "Nature"
|
| 2876 |
msgstr "Природа"
|
| 2877 |
|
| 2878 |
+
#: inc/core/data.php:2534
|
| 2879 |
msgid "Sports"
|
| 2880 |
msgstr "Спорт"
|
| 2881 |
|
| 2882 |
+
#: inc/core/data.php:2535
|
| 2883 |
msgid "Technics"
|
| 2884 |
msgstr "Техника"
|
| 2885 |
|
| 2886 |
+
#: inc/core/data.php:2536
|
| 2887 |
msgid "Transport"
|
| 2888 |
msgstr "Транспорт"
|
| 2889 |
|
| 2890 |
+
#: inc/core/data.php:2540
|
| 2891 |
msgid "Select the theme for this image"
|
| 2892 |
msgstr "Выберите тему изображений"
|
| 2893 |
|
| 2894 |
+
#: inc/core/data.php:2548
|
| 2895 |
msgid "Image placeholder with random image"
|
| 2896 |
msgstr "Изображение болванка со случайным изображением"
|
| 2897 |
|
| 2898 |
+
#: inc/core/data.php:2553 inc/core/data.php:2561
|
| 2899 |
msgid "Animation"
|
| 2900 |
msgstr "Анимация"
|
| 2901 |
|
| 2902 |
+
#: inc/core/data.php:2562
|
| 2903 |
msgid "Select animation type"
|
| 2904 |
msgstr "Выберите тип анимации"
|
| 2905 |
|
| 2906 |
+
#: inc/core/data.php:2570
|
| 2907 |
msgid "Duration"
|
| 2908 |
msgstr "Продолжительность"
|
| 2909 |
|
| 2910 |
+
#: inc/core/data.php:2571
|
| 2911 |
msgid "Animation duration (seconds)"
|
| 2912 |
msgstr "Продолжительность анимации (секунды)"
|
| 2913 |
|
| 2914 |
+
#: inc/core/data.php:2579
|
| 2915 |
msgid "Delay"
|
| 2916 |
msgstr "Задержка"
|
| 2917 |
|
| 2918 |
+
#: inc/core/data.php:2580
|
| 2919 |
msgid "Animation delay (seconds)"
|
| 2920 |
msgstr "Задержка перед началом анимации (секунды)"
|
| 2921 |
|
| 2922 |
+
#: inc/core/data.php:2585
|
| 2923 |
msgid "Inline"
|
| 2924 |
msgstr "Строковый"
|
| 2925 |
|
| 2926 |
+
#: inc/core/data.php:2586
|
| 2927 |
msgid ""
|
| 2928 |
"This parameter determines what HTML tag will be used for animation wrapper. "
|
| 2929 |
"Turn this option to YES and animated element will be wrapped in SPAN instead "
|
| 2933 |
"Переключите этот параметр на ДА и будет использован тег span вместо div. "
|
| 2934 |
"Данная опция полезна для анимации строковых жлементов, например кнопок"
|
| 2935 |
|
| 2936 |
+
#: inc/core/data.php:2594
|
| 2937 |
msgid "Animated content"
|
| 2938 |
msgstr "Анимированное содержимое"
|
| 2939 |
|
| 2940 |
+
#: inc/core/data.php:2595
|
| 2941 |
msgid "Wrapper for animation. Any nested element will be animated"
|
| 2942 |
msgstr ""
|
| 2943 |
"Контейнер для анимации. Любой элемент помещенный в этот контейнер будет "
|
| 2944 |
"анимирован"
|
| 2945 |
|
| 2946 |
+
#: inc/core/data.php:2601
|
| 2947 |
msgid "Meta"
|
| 2948 |
msgstr "Мета"
|
| 2949 |
|
| 2950 |
+
#: inc/core/data.php:2607
|
| 2951 |
msgid "Key"
|
| 2952 |
msgstr "Ключ"
|
| 2953 |
|
| 2954 |
+
#: inc/core/data.php:2608
|
| 2955 |
msgid "Meta key name"
|
| 2956 |
msgstr "Имя произвольного поля"
|
| 2957 |
|
| 2958 |
+
#: inc/core/data.php:2613 inc/core/data.php:2665 inc/core/data.php:2728
|
| 2959 |
msgid "This text will be shown if data is not found"
|
| 2960 |
msgstr "Этот текст будет показан если не будет найдено запрошенное значение"
|
| 2961 |
|
| 2962 |
+
#: inc/core/data.php:2617 inc/core/data.php:2669 inc/core/data.php:2732
|
| 2963 |
msgid "Before"
|
| 2964 |
msgstr "Перед"
|
| 2965 |
|
| 2966 |
+
#: inc/core/data.php:2618 inc/core/data.php:2670 inc/core/data.php:2733
|
| 2967 |
msgid "This content will be shown before the value"
|
| 2968 |
msgstr "Этот текст будет показан перед результатом"
|
| 2969 |
|
| 2970 |
+
#: inc/core/data.php:2622 inc/core/data.php:2674 inc/core/data.php:2737
|
| 2971 |
msgid "After"
|
| 2972 |
msgstr "После"
|
| 2973 |
|
| 2974 |
+
#: inc/core/data.php:2623 inc/core/data.php:2675 inc/core/data.php:2738
|
| 2975 |
msgid "This content will be shown after the value"
|
| 2976 |
msgstr "Этот текст будет показан после результата"
|
| 2977 |
|
| 2978 |
+
#: inc/core/data.php:2628 inc/core/data.php:2743
|
| 2979 |
msgid ""
|
| 2980 |
"You can specify custom post ID. Leave this field empty to use an ID of the "
|
| 2981 |
"current post. Current post ID may not work in Live Preview mode"
|
| 2984 |
"использовать ID текущей записи. ID текущей записи может не работать в режиме "
|
| 2985 |
"предпросмотра"
|
| 2986 |
|
| 2987 |
+
#: inc/core/data.php:2632 inc/core/data.php:2684 inc/core/data.php:2747
|
| 2988 |
msgid "Filter"
|
| 2989 |
msgstr "Фильтр"
|
| 2990 |
|
| 2991 |
+
#: inc/core/data.php:2633 inc/core/data.php:2685 inc/core/data.php:2748
|
| 2992 |
msgid ""
|
| 2993 |
"You can apply custom filter to the retrieved value. Enter here function "
|
| 2994 |
"name. Your function must accept one argument and return modified value. "
|
| 2998 |
"здесь имя функции. Ваша функция должна принимать один аргумент и возвращать "
|
| 2999 |
"измененное значение. Пример функции: "
|
| 3000 |
|
| 3001 |
+
#: inc/core/data.php:2636
|
| 3002 |
msgid "Post meta"
|
| 3003 |
msgstr "Произвольное поле"
|
| 3004 |
|
| 3005 |
+
#: inc/core/data.php:2641
|
| 3006 |
msgid "User"
|
| 3007 |
msgstr "Пользователь"
|
| 3008 |
|
| 3009 |
+
#: inc/core/data.php:2648
|
| 3010 |
msgid "Display name"
|
| 3011 |
msgstr "Отображаемое имя"
|
| 3012 |
|
| 3013 |
+
#: inc/core/data.php:2650
|
| 3014 |
msgid "Login"
|
| 3015 |
msgstr "Логин"
|
| 3016 |
|
| 3017 |
+
#: inc/core/data.php:2651
|
| 3018 |
msgid "Nice name"
|
| 3019 |
msgstr "Красивое имя"
|
| 3020 |
|
| 3021 |
+
#: inc/core/data.php:2652
|
| 3022 |
msgid "Email"
|
| 3023 |
msgstr "Email"
|
| 3024 |
|
| 3025 |
+
#: inc/core/data.php:2653
|
| 3026 |
msgid "URL"
|
| 3027 |
msgstr "URL"
|
| 3028 |
|
| 3029 |
+
#: inc/core/data.php:2654
|
| 3030 |
msgid "Registered"
|
| 3031 |
msgstr "Зарегистрирован"
|
| 3032 |
|
| 3033 |
+
#: inc/core/data.php:2655
|
| 3034 |
msgid "Activation key"
|
| 3035 |
msgstr "Ключ активации"
|
| 3036 |
|
| 3037 |
+
#: inc/core/data.php:2656
|
| 3038 |
msgid "Status"
|
| 3039 |
msgstr "Статус"
|
| 3040 |
|
| 3041 |
+
#: inc/core/data.php:2659 inc/core/data.php:2722
|
| 3042 |
msgid "Field"
|
| 3043 |
msgstr "Поле"
|
| 3044 |
|
| 3045 |
+
#: inc/core/data.php:2660
|
| 3046 |
msgid "User data field name"
|
| 3047 |
msgstr "Имя поля с информацией о пользователе"
|
| 3048 |
|
| 3049 |
+
#: inc/core/data.php:2679
|
| 3050 |
msgid "User ID"
|
| 3051 |
msgstr "ID пользователя"
|
| 3052 |
|
| 3053 |
+
#: inc/core/data.php:2680
|
| 3054 |
msgid ""
|
| 3055 |
"You can specify custom user ID. Leave this field empty to use an ID of the "
|
| 3056 |
"current user"
|
| 3058 |
"Вы можете указать ID любого пользователя. Оставьте это поле пустым, чтобы "
|
| 3059 |
"использовать ID текущего пользователя"
|
| 3060 |
|
| 3061 |
+
#: inc/core/data.php:2688
|
| 3062 |
msgid "User data"
|
| 3063 |
msgstr "Данные пользователя"
|
| 3064 |
|
| 3065 |
+
#: inc/core/data.php:2693
|
| 3066 |
msgid "Post"
|
| 3067 |
msgstr "Запись"
|
| 3068 |
|
| 3069 |
+
#: inc/core/data.php:2702 inc/core/data.php:2703
|
| 3070 |
msgid "Post date"
|
| 3071 |
msgstr "Дата записи"
|
| 3072 |
|
| 3073 |
+
#: inc/core/data.php:2704
|
| 3074 |
msgid "Post content"
|
| 3075 |
msgstr "Содержимое записи"
|
| 3076 |
|
| 3077 |
+
#: inc/core/data.php:2706
|
| 3078 |
msgid "Post excerpt"
|
| 3079 |
msgstr "Цитата записи"
|
| 3080 |
|
| 3081 |
+
#: inc/core/data.php:2708
|
| 3082 |
msgid "Comment status"
|
| 3083 |
msgstr "Статус комментариев"
|
| 3084 |
|
| 3085 |
+
#: inc/core/data.php:2709
|
| 3086 |
msgid "Ping status"
|
| 3087 |
msgstr "Статус пингов"
|
| 3088 |
|
| 3089 |
+
#: inc/core/data.php:2710
|
| 3090 |
msgid "Post name"
|
| 3091 |
msgstr "Имя записи"
|
| 3092 |
|
| 3093 |
+
#: inc/core/data.php:2711 inc/core/data.php:2712
|
| 3094 |
msgid "Post modified"
|
| 3095 |
msgstr "Дата изменения"
|
| 3096 |
|
| 3097 |
+
#: inc/core/data.php:2713
|
| 3098 |
msgid "Filtered post content"
|
| 3099 |
msgstr "Фильтрованное содержимое записи"
|
| 3100 |
|
| 3101 |
+
#: inc/core/data.php:2715
|
| 3102 |
msgid "GUID"
|
| 3103 |
msgstr "GUID"
|
| 3104 |
|
| 3105 |
+
#: inc/core/data.php:2717
|
| 3106 |
msgid "Post type"
|
| 3107 |
msgstr "Тип записи"
|
| 3108 |
|
| 3109 |
+
#: inc/core/data.php:2718
|
| 3110 |
msgid "Post mime type"
|
| 3111 |
msgstr "Типы файла записи (mime-type)"
|
| 3112 |
|
| 3113 |
+
#: inc/core/data.php:2719
|
| 3114 |
msgid "Comment count"
|
| 3115 |
msgstr "Количество комментариев"
|
| 3116 |
|
| 3117 |
+
#: inc/core/data.php:2723
|
| 3118 |
msgid "Post data field name"
|
| 3119 |
msgstr "Имя поля с информацией записи"
|
| 3120 |
|
| 3121 |
+
#: inc/core/data.php:2751
|
| 3122 |
msgid "Post data"
|
| 3123 |
msgstr "Данные записи"
|
| 3124 |
|
| 3125 |
+
#: inc/core/data.php:2795
|
| 3126 |
msgid "Template name"
|
| 3127 |
msgstr "Имя шаблона"
|
| 3128 |
|
| 3129 |
+
#: inc/core/data.php:2796
|
| 3130 |
#, php-format
|
| 3131 |
msgid ""
|
| 3132 |
"Use template file name (with optional .php extension). If you need to use "
|
| 3137 |
"обязательно). Если нужно использовать шаблоны из под-папки темы, используйте "
|
| 3138 |
"относительный путь. Примеры значений: %s, %s, %s"
|
| 3139 |
|
| 3140 |
+
#: inc/core/data.php:2799
|
| 3141 |
msgid "Theme template"
|
| 3142 |
msgstr "Шаблон темы"
|
| 3143 |
|
| 3144 |
+
#: inc/core/data.php:2804
|
| 3145 |
msgid "QR code"
|
| 3146 |
msgstr "QR код"
|
| 3147 |
|
| 3148 |
+
#: inc/core/data.php:2811
|
| 3149 |
msgid ""
|
| 3150 |
"The text to store within the QR code. You can use here any text or even URL"
|
| 3151 |
msgstr ""
|
| 3152 |
"Текст закодированный в QR коде. Можно использовать любой текст или даже "
|
| 3153 |
"ссылку"
|
| 3154 |
|
| 3155 |
+
#: inc/core/data.php:2816
|
| 3156 |
msgid ""
|
| 3157 |
"Enter here short description. This text will be used in alt attribute of QR "
|
| 3158 |
"code"
|
| 3159 |
msgstr ""
|
| 3160 |
"Введите сюда краткое описание. Этот текст будет использован для аттрибута alt"
|
| 3161 |
|
| 3162 |
+
#: inc/core/data.php:2825
|
| 3163 |
msgid "Image width and height (in pixels)"
|
| 3164 |
msgstr "Ширина и высота изображения (в пикселях)"
|
| 3165 |
|
| 3166 |
+
#: inc/core/data.php:2834
|
| 3167 |
msgid "Thickness of a margin (in pixels)"
|
| 3168 |
msgstr "Толщина внешнего отступа (в пикселях)"
|
| 3169 |
|
| 3170 |
+
#: inc/core/data.php:2846
|
| 3171 |
msgid "Choose image alignment"
|
| 3172 |
msgstr "Выберите выравнивание изображения"
|
| 3173 |
|
| 3174 |
+
#: inc/core/data.php:2851
|
| 3175 |
msgid "You can make this QR code clickable. Enter here the URL"
|
| 3176 |
msgstr "Вы можете сделать этот QR код кликабельным. Введите сюда ссылку"
|
| 3177 |
|
| 3178 |
+
#: inc/core/data.php:2856
|
| 3179 |
msgid "Open link in same window/tab"
|
| 3180 |
msgstr "Открывать ссылку в том же окне/вкладке"
|
| 3181 |
|
| 3182 |
+
#: inc/core/data.php:2857
|
| 3183 |
msgid "Open link in new window/tab"
|
| 3184 |
msgstr "Открывать ссылку в новом окне/вкладке"
|
| 3185 |
|
| 3186 |
+
#: inc/core/data.php:2860
|
| 3187 |
msgid "Link target"
|
| 3188 |
msgstr "Цель ссылки"
|
| 3189 |
|
| 3190 |
+
#: inc/core/data.php:2861
|
| 3191 |
msgid "Select link target"
|
| 3192 |
msgstr "Выберите цель ссылки"
|
| 3193 |
|
| 3194 |
+
#: inc/core/data.php:2866
|
| 3195 |
msgid "Primary color"
|
| 3196 |
msgstr "Основной цвет"
|
| 3197 |
|
| 3198 |
+
#: inc/core/data.php:2867
|
| 3199 |
msgid "Pick a primary color"
|
| 3200 |
msgstr "Выберите основной цвет"
|
| 3201 |
|
| 3202 |
+
#: inc/core/data.php:2873
|
| 3203 |
msgid "Pick a background color"
|
| 3204 |
msgstr "Выберите цвет фона"
|
| 3205 |
|
| 3206 |
+
#: inc/core/data.php:2881
|
| 3207 |
msgid "Advanced QR code generator"
|
| 3208 |
msgstr "Продвинутый генератор QR кодов"
|
| 3209 |
|
| 3210 |
+
#: inc/core/data.php:2886
|
| 3211 |
+
msgid "Scheduler"
|
| 3212 |
+
msgstr "Планировщик"
|
| 3213 |
+
|
| 3214 |
+
#: inc/core/data.php:2892
|
| 3215 |
+
msgid "Time"
|
| 3216 |
+
msgstr "Время"
|
| 3217 |
+
|
| 3218 |
+
#: inc/core/data.php:2893
|
| 3219 |
+
#, php-format
|
| 3220 |
+
msgid ""
|
| 3221 |
+
"In this field you can specify one or more time ranges. Every day at this "
|
| 3222 |
+
"time the content of shortcode will be visible. %s %s %s - show content from "
|
| 3223 |
+
"9:00 to 18:00 %s - show content from 9:00 to 13:00 and from 14:00 to 18:00 "
|
| 3224 |
+
"%s - example with minutes (content will be visible each day, 45 minutes) %s "
|
| 3225 |
+
"- example with seconds"
|
| 3226 |
+
msgstr ""
|
| 3227 |
+
"В этом поле вы можете указать один или больше временных отрезков. Каждый "
|
| 3228 |
+
"день в это время, содержимое шорткода будет отображено. %s %s %s - показать "
|
| 3229 |
+
"содержимое с 9:00 до 18:00 %s - показать содержимое с 9:00 до 13:00 и с "
|
| 3230 |
+
"14:00 до 18:00 %s - пример с минутами (содержимое будет отображаться каждый "
|
| 3231 |
+
"день, 45 минут) %s - пример с секундами"
|
| 3232 |
+
|
| 3233 |
+
#: inc/core/data.php:2893 inc/core/data.php:2898 inc/core/data.php:2903
|
| 3234 |
+
#: inc/core/data.php:2908 inc/core/data.php:2913
|
| 3235 |
+
msgid "Examples (click to set)"
|
| 3236 |
+
msgstr "Примеры (нажмите чтобы применить значение)"
|
| 3237 |
+
|
| 3238 |
+
#: inc/core/data.php:2897
|
| 3239 |
+
msgid "Days of the week"
|
| 3240 |
+
msgstr "Дни недели"
|
| 3241 |
+
|
| 3242 |
+
#: inc/core/data.php:2898
|
| 3243 |
+
#, php-format
|
| 3244 |
+
msgid ""
|
| 3245 |
+
"In this field you can specify one or more days of the week. Every week at "
|
| 3246 |
+
"these days the content of shortcode will be visible. %s 0 - Sunday %s 1 - "
|
| 3247 |
+
"Monday %s 2 - Tuesday %s 3 - Wednesday %s 4 - Thursday %s 5 - Friday %s 6 - "
|
| 3248 |
+
"Saturday %s %s %s - show content from Monday to Friday %s - show content "
|
| 3249 |
+
"only at Sunday %s - show content at Sunday and from Wednesday to Friday"
|
| 3250 |
+
msgstr ""
|
| 3251 |
+
"В этом поле вы можете указать один или более дней недели. Каждую неделю в "
|
| 3252 |
+
"эти дни содержимое шорткода будет отображено. %s 0 - Воскресенье %s 1 - "
|
| 3253 |
+
"Понедельник %s 2 - Вторник %s 3 - Среда %s 4 - Четверг %s 5 - Пятница %s 6 - "
|
| 3254 |
+
"Суббота %s %s %s - показать содержимое с понедельника по пятницу %s - "
|
| 3255 |
+
"показать содержимое только в воскресенье %s - показать содержимое в "
|
| 3256 |
+
"воскресенье и со среды по пятницу"
|
| 3257 |
+
|
| 3258 |
+
#: inc/core/data.php:2902
|
| 3259 |
+
msgid "Days of the month"
|
| 3260 |
+
msgstr "Числа"
|
| 3261 |
+
|
| 3262 |
+
#: inc/core/data.php:2903
|
| 3263 |
+
#, php-format
|
| 3264 |
+
msgid ""
|
| 3265 |
+
"In this field you can specify one or more days of the month. Every month at "
|
| 3266 |
+
"these days the content of shortcode will be visible. %s %s %s - show content "
|
| 3267 |
+
"only at first day of month %s - show content from 1th to 5th %s - show "
|
| 3268 |
+
"content from 10th to 15th and from 20th to 25th"
|
| 3269 |
+
msgstr ""
|
| 3270 |
+
"В этом поле вы можете указать одно или более чисел месяца. Каждый месяц в "
|
| 3271 |
+
"эти числа содержимое шорткода будет отображено. %s %s %s - показать "
|
| 3272 |
+
"содержимое только в первый день месяца %s - показать содержимое с 1-го по 5-"
|
| 3273 |
+
"е число %s - показать содержимое с 10-го по 15-е и с 20-го по 25-е"
|
| 3274 |
+
|
| 3275 |
+
#: inc/core/data.php:2907
|
| 3276 |
+
msgid "Months"
|
| 3277 |
+
msgstr "Месяцы"
|
| 3278 |
+
|
| 3279 |
+
#: inc/core/data.php:2908
|
| 3280 |
+
#, php-format
|
| 3281 |
+
msgid ""
|
| 3282 |
+
"In this field you can specify the month or months in which the content will "
|
| 3283 |
+
"be visible. %s %s %s - show content only in January %s - show content from "
|
| 3284 |
+
"February to June %s - show content in January, March and from May to July"
|
| 3285 |
+
msgstr ""
|
| 3286 |
+
"В этом поле вы можете указать один или более месяцев, в которые нужно "
|
| 3287 |
+
"отобразить содержимое. %s %s %s - показывать содержимое только в Январе %s - "
|
| 3288 |
+
"показывать содержимое с Февраля по Июнь %s - показывать содержимое в Январе, "
|
| 3289 |
+
"Марте и с Мая по Июль"
|
| 3290 |
+
|
| 3291 |
+
#: inc/core/data.php:2912
|
| 3292 |
+
msgid "Years"
|
| 3293 |
+
msgstr "Годы"
|
| 3294 |
+
|
| 3295 |
+
#: inc/core/data.php:2913
|
| 3296 |
+
#, php-format
|
| 3297 |
+
msgid ""
|
| 3298 |
+
"In this field you can specify the year or years in which the content will be "
|
| 3299 |
+
"visible. %s %s %s - show content only in 2014 %s - show content from 2014 to "
|
| 3300 |
+
"2016 %s - show content in 2014, 2018 and from 2020 to 2022"
|
| 3301 |
+
msgstr ""
|
| 3302 |
+
"В этом поле вы можете указать один или более лет, в которые нужно отобразить "
|
| 3303 |
+
"содержимое. %s %s %s - показать содержимое только в 2014-м %s - показать "
|
| 3304 |
+
"содержимое с 2014-го по 2016-й %s - показать содержимое в 2014-м, 2018-м и с "
|
| 3305 |
+
"2020-го по 2022-й"
|
| 3306 |
+
|
| 3307 |
+
#: inc/core/data.php:2917
|
| 3308 |
+
msgid "Alternative text"
|
| 3309 |
+
msgstr "Альтернативный текст"
|
| 3310 |
+
|
| 3311 |
+
#: inc/core/data.php:2918
|
| 3312 |
+
msgid ""
|
| 3313 |
+
"In this field you can type the text which will be shown if content is not "
|
| 3314 |
+
"visible at the current moment"
|
| 3315 |
+
msgstr ""
|
| 3316 |
+
"В этом поле вы можете ввести текст, который будет показан, если содержимое "
|
| 3317 |
+
"на данный момент недоступно"
|
| 3318 |
+
|
| 3319 |
+
#: inc/core/data.php:2921
|
| 3320 |
+
msgid "Scheduled content"
|
| 3321 |
+
msgstr "Запланированное содержимое"
|
| 3322 |
+
|
| 3323 |
+
#: inc/core/data.php:2922
|
| 3324 |
+
msgid "Allows to show the content only at the specified time period"
|
| 3325 |
+
msgstr "Позволяет показывать содержимое в определенный период времени"
|
| 3326 |
+
|
| 3327 |
+
#: inc/core/data.php:2923
|
| 3328 |
+
msgid "This shortcode allows you to show content only at the specified time."
|
| 3329 |
+
msgstr ""
|
| 3330 |
+
"Этот шорткод позволяет вам показывать содержимое только в определенное время."
|
| 3331 |
+
|
| 3332 |
+
#: inc/core/data.php:2923
|
| 3333 |
+
msgid ""
|
| 3334 |
+
"Please pay special attention to the descriptions, which are located below "
|
| 3335 |
+
"each text field. It will save you a lot of time"
|
| 3336 |
+
msgstr ""
|
| 3337 |
+
"Пожалуйста обратите особое внимание на описания, которые находятся под "
|
| 3338 |
+
"каждым текстовым полем. Это сэкономит вам много времени"
|
| 3339 |
+
|
| 3340 |
+
#: inc/core/data.php:2923
|
| 3341 |
+
msgid ""
|
| 3342 |
+
"By default, the content of this shortcode will be visible all the time. By "
|
| 3343 |
+
"using fields below, you can add some limitations. For example, if you type "
|
| 3344 |
+
"1-5 in the Days of the week field, content will be only shown from Monday to "
|
| 3345 |
+
"Friday. Using the same principles, you can limit content visibility from "
|
| 3346 |
+
"years to seconds."
|
| 3347 |
+
msgstr ""
|
| 3348 |
+
"По умолчанию, содержимое шорткода отображается всегда. Используя поля ниже, "
|
| 3349 |
+
"вы можете добавить некоторые ограничения. Например, если вы введете 1-5 в "
|
| 3350 |
+
"поле Дни недели, то содержимое будет отображаться только с Понедельника по "
|
| 3351 |
+
"Пятницу. Используя этот принцип, вы можете ограничить видимость содержимого "
|
| 3352 |
+
"с точностью от годов до секунд."
|
| 3353 |
+
|
| 3354 |
#: inc/core/generator-views.php:45
|
| 3355 |
msgid "Yes"
|
| 3356 |
msgstr "Да"
|
| 3464 |
"Выберите таксономию и её категории.<br>Вы можете выбрать несколько категорий "
|
| 3465 |
"удерживая клавишу Ctrl (Cmd)"
|
| 3466 |
|
| 3467 |
+
#: inc/core/generator.php:43 inc/core/generator.php:147
|
| 3468 |
msgid "Insert shortcode"
|
| 3469 |
msgstr "Вставить шорткод"
|
| 3470 |
|
| 3485 |
msgid "Support forums"
|
| 3486 |
msgstr "Форум поддержки"
|
| 3487 |
|
| 3488 |
+
#: inc/core/generator.php:92 inc/core/load.php:141 inc/core/load.php:142
|
| 3489 |
+
msgid "Add-ons"
|
| 3490 |
+
msgstr "Дополнения"
|
| 3491 |
+
|
| 3492 |
+
#: inc/core/generator.php:98
|
| 3493 |
msgid "Search for shortcodes"
|
| 3494 |
msgstr "Поиск шорткода"
|
| 3495 |
|
| 3496 |
+
#: inc/core/generator.php:100
|
| 3497 |
msgid "Filter by type"
|
| 3498 |
msgstr "Фильтр"
|
| 3499 |
|
| 3500 |
+
#: inc/core/generator.php:135
|
| 3501 |
msgid "Shortcode not specified"
|
| 3502 |
msgstr "Не выбран шорткод"
|
| 3503 |
|
| 3504 |
+
#: inc/core/generator.php:148
|
| 3505 |
msgid "Live preview"
|
| 3506 |
msgstr "Предпросмотр"
|
| 3507 |
|
| 3508 |
+
#: inc/core/generator.php:152
|
| 3509 |
msgid "Click to return to the shortcodes list"
|
| 3510 |
msgstr "Нажмите, чтобы вернуться к списку шорткодов"
|
| 3511 |
|
| 3512 |
+
#: inc/core/generator.php:152
|
| 3513 |
msgid "All shortcodes"
|
| 3514 |
msgstr "Все шорткоды"
|
| 3515 |
|
| 3516 |
+
#: inc/core/generator.php:158
|
| 3517 |
msgid "Examples of use"
|
| 3518 |
msgstr "Примеры использования"
|
| 3519 |
|
| 3520 |
+
#: inc/core/generator.php:175
|
| 3521 |
msgid "Click to set this value"
|
| 3522 |
msgstr "Нажмите чтобы установить это значение"
|
| 3523 |
|
| 3524 |
+
#: inc/core/generator.php:199
|
| 3525 |
msgid "Preview"
|
| 3526 |
msgstr "Предпросмотр"
|
| 3527 |
|
| 3528 |
+
#: inc/core/generator.php:208 inc/core/tools.php:900
|
| 3529 |
msgid "Access denied"
|
| 3530 |
msgstr "Доступ запрещен"
|
| 3531 |
|
| 3532 |
+
#: inc/core/generator.php:243
|
| 3533 |
msgid "Presets"
|
| 3534 |
msgstr "Шаблоны"
|
| 3535 |
|
| 3536 |
+
#: inc/core/generator.php:246
|
| 3537 |
msgid "Save current settings as preset"
|
| 3538 |
msgstr "Сохранить настройки как новый шаблон"
|
| 3539 |
|
| 3540 |
+
#: inc/core/generator.php:275 inc/core/generator.php:278
|
| 3541 |
msgid "Presets not found"
|
| 3542 |
msgstr "Шаблоны не найдены"
|
| 3543 |
|
| 3617 |
msgid "Examples"
|
| 3618 |
msgstr "Примеры"
|
| 3619 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3620 |
#: inc/core/load.php:154 inc/core/vote.php:42
|
| 3621 |
msgid "Vladimir Anokhin"
|
| 3622 |
msgstr "Владимир Анохин"
|
| 3661 |
msgid "Tab title"
|
| 3662 |
msgstr "Заголовок вкладкки"
|
| 3663 |
|
| 3664 |
+
#: inc/core/shortcodes.php:460
|
| 3665 |
msgid "This is box title"
|
| 3666 |
msgstr "Заголовок блока"
|
| 3667 |
|
| 3668 |
+
#: inc/core/shortcodes.php:526
|
| 3669 |
msgid "please specify correct source"
|
| 3670 |
msgstr "пожалуйста укажите корректную ссылку"
|
| 3671 |
|
| 3672 |
+
#: inc/core/shortcodes.php:595 inc/core/shortcodes.php:599
|
| 3673 |
+
#: inc/core/shortcodes.php:633 inc/core/shortcodes.php:637
|
| 3674 |
+
#: inc/core/shortcodes.php:666 inc/core/shortcodes.php:670
|
| 3675 |
+
#: inc/core/shortcodes.php:694 inc/core/shortcodes.php:698
|
| 3676 |
+
#: inc/core/shortcodes.php:726 inc/core/shortcodes.php:730
|
| 3677 |
+
#: inc/core/shortcodes.php:753 inc/core/shortcodes.php:760
|
| 3678 |
+
#: inc/core/shortcodes.php:782 inc/core/shortcodes.php:787
|
| 3679 |
msgid "please specify correct url"
|
| 3680 |
msgstr "пожалуйста укажите корректную ссылку"
|
| 3681 |
|
| 3682 |
+
#: inc/core/shortcodes.php:921
|
| 3683 |
msgid "This menu doesn't exists, or has no elements"
|
| 3684 |
msgstr "Такое меню не существует, или в нем нет ни одного элемента"
|
| 3685 |
|
| 3686 |
+
#: inc/core/shortcodes.php:1027 inc/core/shortcodes.php:1110
|
| 3687 |
+
#: inc/core/shortcodes.php:1165
|
| 3688 |
msgid "images not found"
|
| 3689 |
msgstr "изображения не найдены"
|
| 3690 |
|
| 3691 |
+
#: inc/core/shortcodes.php:1301
|
| 3692 |
msgid "template not found"
|
| 3693 |
msgstr "шаблон не найден"
|
| 3694 |
|
| 3695 |
+
#: inc/core/shortcodes.php:1372 inc/core/shortcodes.php:1422
|
| 3696 |
msgid "post ID is incorrect"
|
| 3697 |
msgstr "ID записи указан неверно"
|
| 3698 |
|
| 3699 |
+
#: inc/core/shortcodes.php:1374
|
| 3700 |
msgid "please specify meta key name"
|
| 3701 |
msgstr "пожалуйста укажите имя ключа произвольного поля"
|
| 3702 |
|
| 3703 |
+
#: inc/core/shortcodes.php:1395
|
| 3704 |
msgid "password field is not allowed"
|
| 3705 |
msgstr "поле пароль запрещено"
|
| 3706 |
|
| 3707 |
+
#: inc/core/shortcodes.php:1399
|
| 3708 |
msgid "user ID is incorrect"
|
| 3709 |
msgstr "ID пользователя указан неверно"
|
| 3710 |
|
| 3711 |
+
#: inc/core/shortcodes.php:1452
|
| 3712 |
msgid "please specify template name"
|
| 3713 |
msgstr "пожалуйста укажите имя шаблона"
|
| 3714 |
|
| 3715 |
+
#: inc/core/shortcodes.php:1476
|
| 3716 |
msgid "please specify the data"
|
| 3717 |
msgstr "пожалуйста введите данные"
|
| 3718 |
|
| 3719 |
+
#: inc/core/shortcodes.php:1507
|
| 3720 |
+
#, php-format
|
| 3721 |
+
msgid ""
|
| 3722 |
+
"Incorrect time range (%s). Please use - (minus) symbol to specify time "
|
| 3723 |
+
"range. Example: 14:00 - 18:00"
|
| 3724 |
+
msgstr ""
|
| 3725 |
+
"Неверный временной промежуток (%s). Пожалуйста используйте символ - (минус) "
|
| 3726 |
+
"чтобы указать промежуток времени. Пример: 14:00 - 18:00"
|
| 3727 |
+
|
| 3728 |
#: inc/core/tools.php:819
|
| 3729 |
msgid "Example code does not found, please check it later"
|
| 3730 |
msgstr "Код примера не найден, возвращайтесь позже"
|
| 3875 |
msgid "1 comment"
|
| 3876 |
msgstr "1 комментарий"
|
| 3877 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3878 |
#: templates/default-loop.php:27 templates/list-loop.php:16
|
| 3879 |
#: templates/single-post.php:28 templates/teaser-loop.php:20
|
| 3880 |
msgid "Posts not found"
|
| 3881 |
msgstr "Записи не найдены"
|
| 3882 |
+
|
| 3883 |
+
#: templates/single-post.php:17
|
| 3884 |
+
msgid "%n comments"
|
| 3885 |
+
msgstr "%n комментариев"
|
readme.txt
CHANGED
|
@@ -107,6 +107,15 @@ Upgrade normally
|
|
| 107 |
|
| 108 |
== Changelog ==
|
| 109 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
= 4.9.0 =
|
| 111 |
* New shortcode [qrcode] allows you to generate colorful and responsive QR codes!
|
| 112 |
* Improved shortcode serach. Just type shortcode name and hit Enter
|
| 107 |
|
| 108 |
== Changelog ==
|
| 109 |
|
| 110 |
+
= 4.9.1 =
|
| 111 |
+
* Added: New shortcode [scheduler]
|
| 112 |
+
* Added: New shortcode [expand]
|
| 113 |
+
* Added: New options for [divider]
|
| 114 |
+
* Added: New option `rel` for [button]
|
| 115 |
+
* Fixed: animations script has been changed. CSS animations will be skipped in non-supported browsers, [forum topic](http://wordpress.org/support/topic/disable-animations-on-non-supported-devicesbrowsers)
|
| 116 |
+
* Fixed: templates/default-loop.php - removed extra n character in comments number, [forum topic](http://wordpress.org/support/topic/minor-bug-in-templatesdefault-loopphp)
|
| 117 |
+
* Fixed: large DB query on sites with many users, [forum topic](http://wordpress.org/support/topic/installing-sc-ultimate-on-site-with-30000-wp-users)
|
| 118 |
+
|
| 119 |
= 4.9.0 =
|
| 120 |
* New shortcode [qrcode] allows you to generate colorful and responsive QR codes!
|
| 121 |
* Improved shortcode serach. Just type shortcode name and hit Enter
|
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.9.
|
| 6 |
Author: Vladimir Anokhin
|
| 7 |
Author URI: http://gndev.info/
|
| 8 |
Description: Supercharge your WordPress theme with mega pack of shortcodes
|
|
@@ -13,7 +13,7 @@
|
|
| 13 |
|
| 14 |
// Define plugin constants
|
| 15 |
define( 'SU_PLUGIN_FILE', __FILE__ );
|
| 16 |
-
define( 'SU_PLUGIN_VERSION', '4.9.
|
| 17 |
define( 'SU_ENABLE_CACHE', true );
|
| 18 |
|
| 19 |
// Includes
|
| 2 |
/*
|
| 3 |
Plugin Name: Shortcodes Ultimate
|
| 4 |
Plugin URI: http://gndev.info/shortcodes-ultimate/
|
| 5 |
+
Version: 4.9.1
|
| 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 constants
|
| 15 |
define( 'SU_PLUGIN_FILE', __FILE__ );
|
| 16 |
+
define( 'SU_PLUGIN_VERSION', '4.9.1' );
|
| 17 |
define( 'SU_ENABLE_CACHE', true );
|
| 18 |
|
| 19 |
// Includes
|
templates/default-loop.php
CHANGED
|
@@ -16,7 +16,7 @@
|
|
| 16 |
<div class="su-post-excerpt">
|
| 17 |
<?php the_excerpt(); ?>
|
| 18 |
</div>
|
| 19 |
-
<a href="<?php comments_link(); ?>" class="su-post-comments-link"><?php comments_number( __( '0 comments', 'su' ), __( '1 comment', 'su' ),
|
| 20 |
</div>
|
| 21 |
|
| 22 |
<?php
|
| 16 |
<div class="su-post-excerpt">
|
| 17 |
<?php the_excerpt(); ?>
|
| 18 |
</div>
|
| 19 |
+
<a href="<?php comments_link(); ?>" class="su-post-comments-link"><?php comments_number( __( '0 comments', 'su' ), __( '1 comment', 'su' ), '% comments' ); ?></a>
|
| 20 |
</div>
|
| 21 |
|
| 22 |
<?php
|
