Version Description
Be careful! This is a great update and completely new code! Don't forget, you can always install old version.
Upgrade normally via your Wordpress admin -> Plugins panel.
Download this release
Release Info
Developer | gn_themes |
Plugin | Shortcodes Ultimate |
Version | 4.4.4 |
Comparing to | |
See all releases |
Code changes from version 4.4.3 to 4.4.4
- inc/core/data.php +2 -2
- inc/core/shortcodes.php +15 -8
- languages/su-ru_RU.mo +0 -0
- languages/su-ru_RU.po +642 -609
- languages/su.pot +24 -17
- readme.txt +1 -0
- shortcodes-ultimate.php +2 -2
inc/core/data.php
CHANGED
@@ -909,9 +909,9 @@ class Su_Data {
|
|
909 |
'desc' => __( 'Select type of the lightbox window content', 'su' )
|
910 |
),
|
911 |
'src' => array(
|
912 |
-
'default' => '
|
913 |
'name' => __( 'Content source', 'su' ),
|
914 |
-
'desc' => __( 'Insert here URL or CSS selector. Use URL for Iframe and Image content types. Use CSS selector for Inline content type.<br />Example values:<br /><b%value>http://www.youtube.com/watch?v=
|
915 |
),
|
916 |
'class' => array(
|
917 |
'default' => '',
|
909 |
'desc' => __( 'Select type of the lightbox window content', 'su' )
|
910 |
),
|
911 |
'src' => array(
|
912 |
+
'default' => '',
|
913 |
'name' => __( 'Content source', 'su' ),
|
914 |
+
'desc' => __( 'Insert here URL or CSS selector. Use URL for Iframe and Image content types. Use CSS selector for Inline content type.<br />Example values:<br /><b%value>http://www.youtube.com/watch?v=XXXXXXXXX</b> - YouTube video (iframe)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - uploaded image (image)<br /><b%value>http://example.com/</b> - any web page (iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)', 'su' )
|
915 |
),
|
916 |
'class' => array(
|
917 |
'default' => '',
|
inc/core/shortcodes.php
CHANGED
@@ -485,10 +485,11 @@ class Su_Shortcodes {
|
|
485 |
|
486 |
public static function lightbox( $atts = null, $content = null ) {
|
487 |
$atts = shortcode_atts( array(
|
488 |
-
'src' =>
|
489 |
'type' => 'iframe',
|
490 |
'class' => ''
|
491 |
), $atts );
|
|
|
492 |
su_query_asset( 'css', 'magnific-popup' );
|
493 |
su_query_asset( 'js', 'jquery' );
|
494 |
su_query_asset( 'js', 'magnific-popup' );
|
@@ -550,13 +551,14 @@ class Su_Shortcodes {
|
|
550 |
// Prepare data
|
551 |
$return = array();
|
552 |
$atts = shortcode_atts( array(
|
553 |
-
'url' =>
|
554 |
'width' => 600,
|
555 |
'height' => 400,
|
556 |
'autoplay' => 'no',
|
557 |
'responsive' => 'yes',
|
558 |
'class' => ''
|
559 |
), $atts );
|
|
|
560 |
$atts['url'] = su_scattr( $atts['url'] );
|
561 |
$id = ( preg_match( '%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})%i', $atts['url'], $match ) ) ? $match[1] : false;
|
562 |
// Check that url is specified
|
@@ -577,7 +579,7 @@ class Su_Shortcodes {
|
|
577 |
$return = array();
|
578 |
$params = array();
|
579 |
$atts = shortcode_atts( array(
|
580 |
-
'url' =>
|
581 |
'width' => 600,
|
582 |
'height' => 400,
|
583 |
'autohide' => 'alt',
|
@@ -593,6 +595,7 @@ class Su_Shortcodes {
|
|
593 |
'responsive' => 'yes',
|
594 |
'class' => ''
|
595 |
), $atts );
|
|
|
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
|
@@ -616,13 +619,14 @@ class Su_Shortcodes {
|
|
616 |
// Prepare data
|
617 |
$return = array();
|
618 |
$atts = shortcode_atts( array(
|
619 |
-
'url' =>
|
620 |
'width' => 600,
|
621 |
'height' => 400,
|
622 |
'autoplay' => 'no',
|
623 |
'responsive' => 'yes',
|
624 |
'class' => ''
|
625 |
), $atts );
|
|
|
626 |
$atts['url'] = su_scattr( $atts['url'] );
|
627 |
$id = ( preg_match( '~(?:<iframe [^>]*src=")?(?:https?:\/\/(?:[\w]+\.)*vimeo\.com(?:[\/\w]*\/videos?)?\/([0-9]+)[^\s]*)"?(?:[^>]*></iframe>)?(?:<p>.*</p>)?~ix', $atts['url'], $match ) ) ? $match[1] : false;
|
628 |
// Check that url is specified
|
@@ -644,12 +648,13 @@ class Su_Shortcodes {
|
|
644 |
// Prepare data
|
645 |
$return = array();
|
646 |
$atts = shortcode_atts( array(
|
647 |
-
'url' =>
|
648 |
'width' => 600,
|
649 |
'height' => 400,
|
650 |
'responsive' => 'yes',
|
651 |
'class' => ''
|
652 |
), $atts );
|
|
|
653 |
$atts['url'] = su_scattr( $atts['url'] );
|
654 |
$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;
|
655 |
// Check that url is specified
|
@@ -666,13 +671,14 @@ class Su_Shortcodes {
|
|
666 |
|
667 |
public static function audio( $atts = null, $content = null ) {
|
668 |
$atts = shortcode_atts( array(
|
669 |
-
'url' =>
|
670 |
'width' => 'auto',
|
671 |
'title' => '',
|
672 |
'autoplay' => 'no',
|
673 |
'loop' => 'no',
|
674 |
'class' => ''
|
675 |
), $atts );
|
|
|
676 |
$atts['url'] = su_scattr( $atts['url'] );
|
677 |
// Generate unique ID
|
678 |
$id = uniqid( 'su_audio_player_' );
|
@@ -691,8 +697,8 @@ class Su_Shortcodes {
|
|
691 |
|
692 |
public static function video( $atts = null, $content = null ) {
|
693 |
$atts = shortcode_atts( array(
|
694 |
-
'url' =>
|
695 |
-
'poster' =>
|
696 |
'title' => '',
|
697 |
'width' => 600,
|
698 |
'height' => 300,
|
@@ -701,6 +707,7 @@ class Su_Shortcodes {
|
|
701 |
'loop' => 'no',
|
702 |
'class' => ''
|
703 |
), $atts );
|
|
|
704 |
$atts['url'] = su_scattr( $atts['url'] );
|
705 |
// Generate unique ID
|
706 |
$id = uniqid( 'su_video_player_' );
|
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 );
|
492 |
+
if ( !$atts['src'] ) return '<p class="su-error">Lightbox: ' . __( 'please specify correct source', 'su' ) . '</p>';
|
493 |
su_query_asset( 'css', 'magnific-popup' );
|
494 |
su_query_asset( 'js', 'jquery' );
|
495 |
su_query_asset( 'js', 'magnific-popup' );
|
551 |
// Prepare data
|
552 |
$return = array();
|
553 |
$atts = shortcode_atts( array(
|
554 |
+
'url' => false,
|
555 |
'width' => 600,
|
556 |
'height' => 400,
|
557 |
'autoplay' => 'no',
|
558 |
'responsive' => 'yes',
|
559 |
'class' => ''
|
560 |
), $atts );
|
561 |
+
if ( !$atts['url'] ) return '<p class="su-error">YouTube: ' . __( 'please specify correct url', 'su' ) . '</p>';
|
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
|
579 |
$return = array();
|
580 |
$params = array();
|
581 |
$atts = shortcode_atts( array(
|
582 |
+
'url' => false,
|
583 |
'width' => 600,
|
584 |
'height' => 400,
|
585 |
'autohide' => 'alt',
|
595 |
'responsive' => 'yes',
|
596 |
'class' => ''
|
597 |
), $atts );
|
598 |
+
if ( !$atts['url'] ) return '<p class="su-error">YouTube: ' . __( 'please specify correct url', 'su' ) . '</p>';
|
599 |
$atts['url'] = su_scattr( $atts['url'] );
|
600 |
$id = ( preg_match( '%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})%i', $atts['url'], $match ) ) ? $match[1] : false;
|
601 |
// Check that url is specified
|
619 |
// Prepare data
|
620 |
$return = array();
|
621 |
$atts = shortcode_atts( array(
|
622 |
+
'url' => false,
|
623 |
'width' => 600,
|
624 |
'height' => 400,
|
625 |
'autoplay' => 'no',
|
626 |
'responsive' => 'yes',
|
627 |
'class' => ''
|
628 |
), $atts );
|
629 |
+
if ( !$atts['url'] ) return '<p class="su-error">Vimeo: ' . __( 'please specify correct url', 'su' ) . '</p>';
|
630 |
$atts['url'] = su_scattr( $atts['url'] );
|
631 |
$id = ( preg_match( '~(?:<iframe [^>]*src=")?(?:https?:\/\/(?:[\w]+\.)*vimeo\.com(?:[\/\w]*\/videos?)?\/([0-9]+)[^\s]*)"?(?:[^>]*></iframe>)?(?:<p>.*</p>)?~ix', $atts['url'], $match ) ) ? $match[1] : false;
|
632 |
// Check that url is specified
|
648 |
// Prepare data
|
649 |
$return = array();
|
650 |
$atts = shortcode_atts( array(
|
651 |
+
'url' => false,
|
652 |
'width' => 600,
|
653 |
'height' => 400,
|
654 |
'responsive' => 'yes',
|
655 |
'class' => ''
|
656 |
), $atts );
|
657 |
+
if ( !$atts['url'] ) return '<p class="su-error">Screenr: ' . __( 'please specify correct url', 'su' ) . '</p>';
|
658 |
$atts['url'] = su_scattr( $atts['url'] );
|
659 |
$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;
|
660 |
// Check that url is specified
|
671 |
|
672 |
public static function audio( $atts = null, $content = null ) {
|
673 |
$atts = shortcode_atts( array(
|
674 |
+
'url' => false,
|
675 |
'width' => 'auto',
|
676 |
'title' => '',
|
677 |
'autoplay' => 'no',
|
678 |
'loop' => 'no',
|
679 |
'class' => ''
|
680 |
), $atts );
|
681 |
+
if ( !$atts['url'] ) return '<p class="su-error">Audio: ' . __( 'please specify correct url', 'su' ) . '</p>';
|
682 |
$atts['url'] = su_scattr( $atts['url'] );
|
683 |
// Generate unique ID
|
684 |
$id = uniqid( 'su_audio_player_' );
|
697 |
|
698 |
public static function video( $atts = null, $content = null ) {
|
699 |
$atts = shortcode_atts( array(
|
700 |
+
'url' => false,
|
701 |
+
'poster' => false,
|
702 |
'title' => '',
|
703 |
'width' => 600,
|
704 |
'height' => 300,
|
707 |
'loop' => 'no',
|
708 |
'class' => ''
|
709 |
), $atts );
|
710 |
+
if ( !$atts['url'] ) return '<p class="su-error">Video: ' . __( 'please specify correct url', 'su' ) . '</p>';
|
711 |
$atts['url'] = su_scattr( $atts['url'] );
|
712 |
// Generate unique ID
|
713 |
$id = uniqid( 'su_video_player_' );
|
languages/su-ru_RU.mo
CHANGED
Binary file
|
languages/su-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gn_themes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-11-
|
6 |
-
"PO-Revision-Date: 2013-11-
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -144,19 +144,10 @@ msgstr ""
|
|
144 |
"легкостью создать новый шорткод или даже перезаписать оригинальный"
|
145 |
|
146 |
#: inc/core/admin-views.php:121
|
147 |
-
msgid "Extra shortcodes"
|
148 |
-
msgstr "Экстра шорткоды"
|
149 |
-
|
150 |
-
#: inc/core/admin-views.php:122
|
151 |
-
msgid "Extra set of additional shortcodes for advanced content styling"
|
152 |
-
msgstr ""
|
153 |
-
"Набор дополнительных шорткодов для продвинутого оформления ваших страниц"
|
154 |
-
|
155 |
-
#: inc/core/admin-views.php:127
|
156 |
msgid "Skins"
|
157 |
msgstr "Скины"
|
158 |
|
159 |
-
#: inc/core/admin-views.php:
|
160 |
msgid ""
|
161 |
"Set of additional skins for Shrtcodes Ultimate. It includes skins for "
|
162 |
"accordeons/spoilers, tabs and some other shortcodes"
|
@@ -164,43 +155,47 @@ msgstr ""
|
|
164 |
"Набор дополнительных скинов для шорткодов плагина. Набор включает в себя "
|
165 |
"скины для аккордеонов/спойлеров, вкладок и некоторых других шорткодов"
|
166 |
|
167 |
-
#: inc/core/admin-views.php:
|
168 |
msgid "Shortcodes Ultimate Add-ons"
|
169 |
msgstr "Дополнения для Shortcodes Ultimate"
|
170 |
|
171 |
-
#: inc/core/admin-views.php:
|
172 |
msgid "Learn more"
|
173 |
msgstr "Узнать больше"
|
174 |
|
175 |
-
#: inc/core/admin-views.php:
|
176 |
msgid "Other WordPress Plugins"
|
177 |
msgstr "Другие плагины для WordPress"
|
178 |
|
179 |
-
#: inc/core/assets.php:
|
180 |
msgid "Choose files"
|
181 |
msgstr "Выбор файлов"
|
182 |
|
183 |
-
#: inc/core/assets.php:
|
184 |
msgid "Add selected files"
|
185 |
msgstr "Добавить выбранные файлы"
|
186 |
|
187 |
-
#: inc/core/assets.php:
|
|
|
|
|
|
|
|
|
188 |
msgid "Choose file"
|
189 |
msgstr "Выбор файла"
|
190 |
|
191 |
-
#: inc/core/assets.php:
|
192 |
msgid "Insert"
|
193 |
msgstr "Вставить"
|
194 |
|
195 |
-
#: inc/core/assets.php:
|
196 |
msgid "Select images"
|
197 |
msgstr "Выберите изображения"
|
198 |
|
199 |
-
#: inc/core/assets.php:
|
200 |
msgid "Add selected images"
|
201 |
msgstr "Добавить выбранные изображения"
|
202 |
|
203 |
-
#: inc/core/assets.php:
|
204 |
msgid ""
|
205 |
"This shortcode doesn't work in live preview. Please insert it into editor "
|
206 |
"and preview on the site."
|
@@ -216,7 +211,7 @@ msgstr "Все"
|
|
216 |
msgid "Content"
|
217 |
msgstr "Содержимое"
|
218 |
|
219 |
-
#: inc/core/data.php:19 inc/core/data.php:
|
220 |
msgid "Box"
|
221 |
msgstr "Блок"
|
222 |
|
@@ -224,7 +219,7 @@ msgstr "Блок"
|
|
224 |
msgid "Media"
|
225 |
msgstr "Медиа"
|
226 |
|
227 |
-
#: inc/core/data.php:21 inc/core/data.php:
|
228 |
msgid "Gallery"
|
229 |
msgstr "Галерея"
|
230 |
|
@@ -232,8 +227,8 @@ msgstr "Галерея"
|
|
232 |
msgid "Other"
|
233 |
msgstr "Другое"
|
234 |
|
235 |
-
#: inc/core/data.php:28 inc/core/data.php:
|
236 |
-
#: inc/core/data.php:
|
237 |
msgid "None"
|
238 |
msgstr "Нет"
|
239 |
|
@@ -288,139 +283,156 @@ msgstr ""
|
|
288 |
msgid "Unlimited buttons"
|
289 |
msgstr "Всевозможные кнопки"
|
290 |
|
291 |
-
#: inc/core/data.php:
|
|
|
|
|
|
|
|
|
292 |
msgid "Advanced examples"
|
293 |
msgstr "Дополнительные примеры"
|
294 |
|
295 |
-
#: inc/core/data.php:
|
296 |
msgid "Interacting with posts shortcode"
|
297 |
msgstr "Работа с шорткодом posts"
|
298 |
|
299 |
-
#: inc/core/data.php:
|
300 |
msgid "Nested shortcodes, shortcodes inside of attributes"
|
301 |
msgstr "Вложенные шорткоды, шорткоды в атрибутах"
|
302 |
|
303 |
-
#: inc/core/data.php:
|
304 |
msgid "Heading"
|
305 |
msgstr "Заголовок"
|
306 |
|
307 |
-
#: inc/core/data.php:
|
308 |
-
#: inc/core/data.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
309 |
msgid "Size"
|
310 |
msgstr "Размер"
|
311 |
|
312 |
-
#: inc/core/data.php:
|
313 |
-
msgid "Select heading size"
|
314 |
-
msgstr "Выберите размер заголовка"
|
315 |
|
316 |
-
#: inc/core/data.php:
|
317 |
-
#: inc/core/data.php:
|
318 |
msgid "Left"
|
319 |
msgstr "Слева"
|
320 |
|
321 |
-
#: inc/core/data.php:
|
322 |
-
#: inc/core/data.php:
|
323 |
msgid "Center"
|
324 |
msgstr "По центру"
|
325 |
|
326 |
-
#: inc/core/data.php:
|
327 |
-
#: inc/core/data.php:
|
328 |
msgid "Right"
|
329 |
msgstr "Справа"
|
330 |
|
331 |
-
#: inc/core/data.php:
|
332 |
msgid "Align"
|
333 |
msgstr "Выравнивание"
|
334 |
|
335 |
-
#: inc/core/data.php:
|
336 |
msgid "Heading text alignment"
|
337 |
msgstr "Выравнивание текста в заголовке"
|
338 |
|
339 |
-
#: inc/core/data.php:
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
#: inc/core/data.php:
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
#: inc/core/data.php:
|
348 |
-
#: inc/core/data.php:
|
349 |
-
#: inc/core/data.php:
|
350 |
-
#: inc/core/data.php:
|
351 |
-
#: inc/core/data.php:
|
352 |
-
#: inc/core/data.php:
|
353 |
-
#: inc/core/data.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
msgid "Class"
|
355 |
msgstr "Класс"
|
356 |
|
357 |
-
#: inc/core/data.php:
|
358 |
-
#: inc/core/data.php:
|
359 |
-
#: inc/core/data.php:
|
360 |
-
#: inc/core/data.php:
|
361 |
-
#: inc/core/data.php:
|
362 |
-
#: inc/core/data.php:
|
363 |
-
#: inc/core/data.php:
|
364 |
-
#: inc/core/data.php:
|
365 |
-
#: inc/core/data.php:
|
366 |
-
#: inc/core/data.php:
|
367 |
-
#: inc/core/data.php:
|
368 |
-
#: inc/core/data.php:
|
369 |
-
#: inc/core/data.php:
|
370 |
-
#: inc/core/data.php:
|
371 |
-
#: inc/core/data.php:
|
372 |
msgid "Extra CSS class"
|
373 |
msgstr "Дополнительный CSS класс"
|
374 |
|
375 |
-
#: inc/core/data.php:
|
376 |
msgid "Heading text"
|
377 |
msgstr "Текст заголовка"
|
378 |
|
379 |
-
#: inc/core/data.php:
|
380 |
msgid "Styled heading"
|
381 |
msgstr "Стильный заголовок"
|
382 |
|
383 |
-
#: inc/core/data.php:
|
384 |
msgid "Tabs"
|
385 |
msgstr "Вкладки"
|
386 |
|
387 |
-
#: inc/core/data.php:
|
388 |
-
#: inc/core/data.php:411 inc/core/data.php:472 inc/core/data.php:633
|
389 |
-
#: inc/core/data.php:786 inc/core/data.php:946
|
390 |
-
msgid "Default"
|
391 |
-
msgstr "По умолчанию"
|
392 |
-
|
393 |
-
#: inc/core/data.php:154 inc/core/data.php:238 inc/core/data.php:414
|
394 |
-
#: inc/core/data.php:478 inc/core/data.php:643 inc/core/data.php:793
|
395 |
-
#: inc/core/data.php:916
|
396 |
-
msgid "Style"
|
397 |
-
msgstr "Стиль"
|
398 |
-
|
399 |
-
#: inc/core/data.php:155
|
400 |
msgid "Choose style for this tabs"
|
401 |
msgstr "Выберите стиль для этих вкладок"
|
402 |
|
403 |
-
#: inc/core/data.php:
|
404 |
-
msgid "Install additional styles"
|
405 |
-
msgstr "Установить дополнительные стили"
|
406 |
-
|
407 |
-
#: inc/core/data.php:163
|
408 |
msgid "Active tab"
|
409 |
msgstr "Активная вкладка"
|
410 |
|
411 |
-
#: inc/core/data.php:
|
412 |
msgid "Select which tab is open by default"
|
413 |
msgstr "Выберите какая вкладка будет открыта по умолчанию"
|
414 |
|
415 |
-
#: inc/core/data.php:
|
416 |
msgid "Vertical"
|
417 |
msgstr "Вертикально"
|
418 |
|
419 |
-
#: inc/core/data.php:
|
420 |
msgid "Show tabs vertically"
|
421 |
msgstr "Отображать вкладки вертикально"
|
422 |
|
423 |
-
#: inc/core/data.php:
|
424 |
msgid ""
|
425 |
"[%prefix_tab title=\"Title 1\"]Content 1[/%prefix_tab]\n"
|
426 |
"[%prefix_tab title=\"Title 2\"]Content 2[/%prefix_tab]\n"
|
@@ -430,40 +442,40 @@ msgstr ""
|
|
430 |
"[%prefix_tab title=\"Заголовок 2\"]Содержимое вкладки 2[/%prefix_tab]\n"
|
431 |
"[%prefix_tab title=\"Заголовок 3\"]Содержимое вкладки 3[/%prefix_tab]"
|
432 |
|
433 |
-
#: inc/core/data.php:
|
434 |
msgid "Tabs container"
|
435 |
msgstr "Контейнер вкладок"
|
436 |
|
437 |
-
#: inc/core/data.php:
|
438 |
msgid "Tab"
|
439 |
msgstr "Вкладка"
|
440 |
|
441 |
-
#: inc/core/data.php:
|
442 |
msgid "Tab name"
|
443 |
msgstr "Имя вкладки"
|
444 |
|
445 |
-
#: inc/core/data.php:
|
446 |
-
#: inc/core/data.php:
|
447 |
msgid "Title"
|
448 |
msgstr "Заголовок"
|
449 |
|
450 |
-
#: inc/core/data.php:
|
451 |
msgid "Enter tab name"
|
452 |
msgstr "Введите имя вкладки"
|
453 |
|
454 |
-
#: inc/core/data.php:
|
455 |
msgid "Disabled"
|
456 |
msgstr "Отключено"
|
457 |
|
458 |
-
#: inc/core/data.php:
|
459 |
msgid "Is this tab disabled"
|
460 |
msgstr "Эта вкладка отключена"
|
461 |
|
462 |
-
#: inc/core/data.php:
|
463 |
msgid "Anchor"
|
464 |
msgstr "Якорь"
|
465 |
|
466 |
-
#: inc/core/data.php:
|
467 |
msgid ""
|
468 |
"You can use unique anchor for this tab to access it with hash in page url. "
|
469 |
"For example: type here <b%value>Hello</b> and then use url like http://"
|
@@ -474,108 +486,108 @@ msgstr ""
|
|
474 |
"используйте ссылку вида http://example.com/page-utl#Hello. Эта вкладка будет "
|
475 |
"активирована и страница будет прокручена к ней"
|
476 |
|
477 |
-
#: inc/core/data.php:
|
478 |
msgid "Tab content"
|
479 |
msgstr "Содержимое вкладки"
|
480 |
|
481 |
-
#: inc/core/data.php:
|
482 |
msgid "Single tab"
|
483 |
msgstr "Одиночная вкладка"
|
484 |
|
485 |
-
#: inc/core/data.php:
|
486 |
msgid "Spoiler"
|
487 |
msgstr "Спойлер"
|
488 |
|
489 |
-
#: inc/core/data.php:
|
490 |
msgid "Spoiler title"
|
491 |
msgstr "Скрытый текст"
|
492 |
|
493 |
-
#: inc/core/data.php:
|
494 |
msgid "Text in spoiler title"
|
495 |
msgstr "Текст для заголовка спойлера"
|
496 |
|
497 |
-
#: inc/core/data.php:
|
498 |
msgid "Open"
|
499 |
msgstr "Открыт"
|
500 |
|
501 |
-
#: inc/core/data.php:
|
502 |
msgid "Is spoiler content visible by default"
|
503 |
msgstr "Виден ли контент спойлера по умолчанию"
|
504 |
|
505 |
-
#: inc/core/data.php:
|
506 |
msgid "Fancy"
|
507 |
msgstr "Стильный"
|
508 |
|
509 |
-
#: inc/core/data.php:
|
510 |
msgid "Simple"
|
511 |
msgstr "Простой"
|
512 |
|
513 |
-
#: inc/core/data.php:
|
514 |
msgid "Choose style for this spoiler"
|
515 |
msgstr "Выберите стиль для этого спойлера"
|
516 |
|
517 |
-
#: inc/core/data.php:
|
518 |
msgid "Plus"
|
519 |
msgstr "Плюс"
|
520 |
|
521 |
-
#: inc/core/data.php:
|
522 |
msgid "Plus circle"
|
523 |
msgstr "Плюс в круге"
|
524 |
|
525 |
-
#: inc/core/data.php:
|
526 |
msgid "Plus square 1"
|
527 |
msgstr "Плюс в квадрате 1"
|
528 |
|
529 |
-
#: inc/core/data.php:
|
530 |
msgid "Plus square 2"
|
531 |
msgstr "Плюс в квадрате 2"
|
532 |
|
533 |
-
#: inc/core/data.php:
|
534 |
msgid "Arrow"
|
535 |
msgstr "Стрелка"
|
536 |
|
537 |
-
#: inc/core/data.php:
|
538 |
msgid "Arrow circle 1"
|
539 |
msgstr "Стрелка в круге 1"
|
540 |
|
541 |
-
#: inc/core/data.php:
|
542 |
msgid "Arrow circle 2"
|
543 |
msgstr "Стрелка в круге 2"
|
544 |
|
545 |
-
#: inc/core/data.php:
|
546 |
msgid "Chevron"
|
547 |
msgstr "Уголок"
|
548 |
|
549 |
-
#: inc/core/data.php:
|
550 |
msgid "Chevron circle"
|
551 |
msgstr "Уголок в круге"
|
552 |
|
553 |
-
#: inc/core/data.php:
|
554 |
msgid "Caret"
|
555 |
msgstr "Треугольник"
|
556 |
|
557 |
-
#: inc/core/data.php:
|
558 |
msgid "Caret square"
|
559 |
msgstr "Треугольник в квадрате"
|
560 |
|
561 |
-
#: inc/core/data.php:
|
562 |
msgid "Folder 1"
|
563 |
msgstr "Папка 1"
|
564 |
|
565 |
-
#: inc/core/data.php:
|
566 |
msgid "Folder 2"
|
567 |
msgstr "Папка 2"
|
568 |
|
569 |
-
#: inc/core/data.php:
|
570 |
-
#: inc/core/data.php:
|
571 |
msgid "Icon"
|
572 |
msgstr "Иконка"
|
573 |
|
574 |
-
#: inc/core/data.php:
|
575 |
msgid "Icons for spoiler"
|
576 |
msgstr "Иконка для спойлера"
|
577 |
|
578 |
-
#: inc/core/data.php:
|
579 |
msgid ""
|
580 |
"You can use unique anchor for this spoiler to access it with hash in page "
|
581 |
"url. For example: type here <b%value>Hello</b> and then use url like http://"
|
@@ -586,19 +598,19 @@ msgstr ""
|
|
586 |
"используйте ссылку вида http://example.com/page-utl#Hello. Этот спойлер "
|
587 |
"будет открыт и страница будет прокручена к нему"
|
588 |
|
589 |
-
#: inc/core/data.php:
|
590 |
msgid "Hidden content"
|
591 |
msgstr "Скрытое содержимое"
|
592 |
|
593 |
-
#: inc/core/data.php:
|
594 |
msgid "Spoiler with hidden content"
|
595 |
msgstr "Спойлер со скрытым содержимым"
|
596 |
|
597 |
-
#: inc/core/data.php:
|
598 |
msgid "Accordion"
|
599 |
msgstr "Аккордеон"
|
600 |
|
601 |
-
#: inc/core/data.php:
|
602 |
msgid ""
|
603 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
604 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
@@ -608,195 +620,195 @@ msgstr ""
|
|
608 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]\n"
|
609 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]"
|
610 |
|
611 |
-
#: inc/core/data.php:
|
612 |
msgid "Accordion with spoilers"
|
613 |
msgstr "Аккордеон со спойлерами"
|
614 |
|
615 |
-
#: inc/core/data.php:
|
616 |
msgid "Divider"
|
617 |
msgstr "Разделитель"
|
618 |
|
619 |
-
#: inc/core/data.php:
|
620 |
msgid "Show TOP link"
|
621 |
msgstr "Показать ссылку ВВЕРХ"
|
622 |
|
623 |
-
#: inc/core/data.php:
|
624 |
msgid "Show link to top of the page or not"
|
625 |
msgstr "Показывать ссылку ВВЕРХ или нет"
|
626 |
|
627 |
-
#: inc/core/data.php:
|
628 |
msgid "Go to top"
|
629 |
msgstr "Вверх"
|
630 |
|
631 |
-
#: inc/core/data.php:
|
632 |
msgid "Link text"
|
633 |
msgstr "Текст ссылки"
|
634 |
|
635 |
-
#: inc/core/data.php:
|
636 |
msgid "Text for the GO TOP link"
|
637 |
msgstr "Текст ссылки ВВЕРХ"
|
638 |
|
639 |
-
#: inc/core/data.php:
|
640 |
msgid "Content divider with optional TOP link"
|
641 |
msgstr "Разделитель текста со ссылкой ВВЕРХ"
|
642 |
|
643 |
-
#: inc/core/data.php:
|
644 |
msgid "Spacer"
|
645 |
msgstr "Пробел"
|
646 |
|
647 |
-
#: inc/core/data.php:
|
648 |
-
#: inc/core/data.php:
|
649 |
-
#: inc/core/data.php:
|
650 |
-
#: inc/core/data.php:
|
651 |
msgid "Height"
|
652 |
msgstr "Высота"
|
653 |
|
654 |
-
#: inc/core/data.php:
|
655 |
msgid "Height of the spacer in pixels"
|
656 |
msgstr "Высота пробела в пикселях"
|
657 |
|
658 |
-
#: inc/core/data.php:
|
659 |
msgid "Empty space with adjustable height"
|
660 |
msgstr "Пробел с настраиваемой высотой"
|
661 |
|
662 |
-
#: inc/core/data.php:
|
663 |
msgid "Highlight"
|
664 |
msgstr "Выделитель"
|
665 |
|
666 |
-
#: inc/core/data.php:
|
667 |
msgid "Background"
|
668 |
msgstr "Фон"
|
669 |
|
670 |
-
#: inc/core/data.php:
|
671 |
msgid "Highlighted text background color"
|
672 |
msgstr "Цвет фона выделяемого текста"
|
673 |
|
674 |
-
#: inc/core/data.php:
|
675 |
msgid "Text color"
|
676 |
msgstr "Цвет текста"
|
677 |
|
678 |
-
#: inc/core/data.php:
|
679 |
msgid "Highlighted text color"
|
680 |
msgstr "Цвет выделяемого текста"
|
681 |
|
682 |
-
#: inc/core/data.php:
|
683 |
msgid "Highlighted text"
|
684 |
msgstr "Подсвеченный текст"
|
685 |
|
686 |
-
#: inc/core/data.php:
|
687 |
#: inc/vendor/class.sunrise-views.php:49
|
688 |
msgid "Label"
|
689 |
msgstr "Ярлык"
|
690 |
|
691 |
-
#: inc/core/data.php:
|
692 |
msgid "Success"
|
693 |
msgstr "Успех"
|
694 |
|
695 |
-
#: inc/core/data.php:
|
696 |
msgid "Warning"
|
697 |
msgstr "Внимание"
|
698 |
|
699 |
-
#: inc/core/data.php:
|
700 |
msgid "Important"
|
701 |
msgstr "Важно"
|
702 |
|
703 |
-
#: inc/core/data.php:
|
704 |
msgid "Black"
|
705 |
msgstr "Черный"
|
706 |
|
707 |
-
#: inc/core/data.php:
|
708 |
msgid "Info"
|
709 |
msgstr "Инфо"
|
710 |
|
711 |
-
#: inc/core/data.php:
|
712 |
msgid "Type"
|
713 |
msgstr "Тип"
|
714 |
|
715 |
-
#: inc/core/data.php:
|
716 |
msgid "Style of the label"
|
717 |
msgstr "Стиль ярлыка"
|
718 |
|
719 |
-
#: inc/core/data.php:
|
720 |
msgid "Styled label"
|
721 |
msgstr "Стильный ярлык"
|
722 |
|
723 |
-
#: inc/core/data.php:
|
724 |
msgid "Quote"
|
725 |
msgstr "Цитата"
|
726 |
|
727 |
-
#: inc/core/data.php:
|
728 |
msgid "Choose style for this quote"
|
729 |
msgstr "Выберите стиль для этой цитаты"
|
730 |
|
731 |
-
#: inc/core/data.php:
|
732 |
msgid "Cite"
|
733 |
msgstr "Автор"
|
734 |
|
735 |
-
#: inc/core/data.php:
|
736 |
msgid "Quote author name"
|
737 |
msgstr "Имя автора цитаты"
|
738 |
|
739 |
-
#: inc/core/data.php:
|
740 |
msgid "Cite url"
|
741 |
msgstr "Ссылка автора"
|
742 |
|
743 |
-
#: inc/core/data.php:
|
744 |
msgid "Url of the quote author. Leave empty to disable link"
|
745 |
msgstr "Ссылка автора цитаты. Оставьте пустым, чтобы отключить ссылку"
|
746 |
|
747 |
-
#: inc/core/data.php:
|
748 |
msgid "Blockquote alternative"
|
749 |
msgstr "Альтернатива цитаты"
|
750 |
|
751 |
-
#: inc/core/data.php:
|
752 |
msgid "Pullquote"
|
753 |
msgstr "Цитата с обтеканием"
|
754 |
|
755 |
-
#: inc/core/data.php:
|
756 |
msgid "Pullquote alignment (float)"
|
757 |
msgstr "Выравнивание цитаты (обтекание)"
|
758 |
|
759 |
-
#: inc/core/data.php:
|
760 |
msgid "Dropcap"
|
761 |
msgstr "Буквица"
|
762 |
|
763 |
-
#: inc/core/data.php:
|
764 |
msgid "Flat"
|
765 |
msgstr "Плоский"
|
766 |
|
767 |
-
#: inc/core/data.php:
|
768 |
msgid "Light"
|
769 |
msgstr "Светлый"
|
770 |
|
771 |
-
#: inc/core/data.php:
|
772 |
msgid "Dropcap style preset"
|
773 |
msgstr "Стиль буквицы"
|
774 |
|
775 |
-
#: inc/core/data.php:
|
776 |
msgid "Choose dropcap size"
|
777 |
msgstr "Выберите размер буквицы"
|
778 |
|
779 |
-
#: inc/core/data.php:
|
780 |
msgid "D"
|
781 |
msgstr "D"
|
782 |
|
783 |
-
#: inc/core/data.php:
|
784 |
msgid "Frame"
|
785 |
msgstr "Рамка"
|
786 |
|
787 |
-
#: inc/core/data.php:
|
788 |
msgid "Frame alignment"
|
789 |
msgstr "Выравнивание рамки"
|
790 |
|
791 |
-
#: inc/core/data.php:
|
792 |
msgid "Styled image frame"
|
793 |
msgstr "Стильный рамка изображения"
|
794 |
|
795 |
-
#: inc/core/data.php:
|
796 |
msgid "Row"
|
797 |
msgstr "Колонки"
|
798 |
|
799 |
-
#: inc/core/data.php:
|
800 |
msgid ""
|
801 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
802 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
@@ -806,96 +818,96 @@ msgstr ""
|
|
806 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]\n"
|
807 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]"
|
808 |
|
809 |
-
#: inc/core/data.php:
|
810 |
msgid "Row for flexible columns"
|
811 |
msgstr "Контейнер с резиновыми колонками"
|
812 |
|
813 |
-
#: inc/core/data.php:
|
814 |
msgid "Column"
|
815 |
msgstr "Колонка"
|
816 |
|
817 |
-
#: inc/core/data.php:
|
818 |
msgid "Full width"
|
819 |
msgstr "Во всю ширину"
|
820 |
|
821 |
-
#: inc/core/data.php:
|
822 |
msgid "One half"
|
823 |
msgstr "Одна вторая"
|
824 |
|
825 |
-
#: inc/core/data.php:
|
826 |
msgid "One third"
|
827 |
msgstr "Одна третья"
|
828 |
|
829 |
-
#: inc/core/data.php:
|
830 |
msgid "Two third"
|
831 |
msgstr "Две трети"
|
832 |
|
833 |
-
#: inc/core/data.php:
|
834 |
msgid "One fourth"
|
835 |
msgstr "Одна четвертая"
|
836 |
|
837 |
-
#: inc/core/data.php:
|
838 |
msgid "Three fourth"
|
839 |
msgstr "Три четвертых"
|
840 |
|
841 |
-
#: inc/core/data.php:
|
842 |
msgid "One fifth"
|
843 |
msgstr "Одна пятая"
|
844 |
|
845 |
-
#: inc/core/data.php:
|
846 |
msgid "Two fifth"
|
847 |
msgstr "Две пятых"
|
848 |
|
849 |
-
#: inc/core/data.php:
|
850 |
msgid "Three fifth"
|
851 |
msgstr "Три пятых"
|
852 |
|
853 |
-
#: inc/core/data.php:
|
854 |
msgid "Four fifth"
|
855 |
msgstr "Четыре пятых"
|
856 |
|
857 |
-
#: inc/core/data.php:
|
858 |
msgid "One sixth"
|
859 |
msgstr "Одна шестая"
|
860 |
|
861 |
-
#: inc/core/data.php:
|
862 |
msgid "Five sixth"
|
863 |
msgstr "Пять шестых"
|
864 |
|
865 |
-
#: inc/core/data.php:
|
866 |
msgid "Select column width. This width will be calculated depend page width"
|
867 |
msgstr ""
|
868 |
"Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
|
869 |
|
870 |
-
#: inc/core/data.php:
|
871 |
msgid "Centered"
|
872 |
msgstr "По центру"
|
873 |
|
874 |
-
#: inc/core/data.php:
|
875 |
msgid "Is this column centered on the page"
|
876 |
msgstr "Колонка выровнена по центру страницы"
|
877 |
|
878 |
-
#: inc/core/data.php:
|
879 |
msgid "Column content"
|
880 |
msgstr "Содержимое колонки"
|
881 |
|
882 |
-
#: inc/core/data.php:
|
883 |
msgid "Flexible and responsive columns"
|
884 |
msgstr "Резновые колонки"
|
885 |
|
886 |
-
#: inc/core/data.php:
|
887 |
msgid "List"
|
888 |
msgstr "Список"
|
889 |
|
890 |
-
#: inc/core/data.php:
|
891 |
msgid "You can upload custom icon for this list or pick a built-in icon"
|
892 |
msgstr "Вы можете загрузить свою иконку для этого списка или выбрать из списка"
|
893 |
|
894 |
-
#: inc/core/data.php:
|
895 |
msgid "Icon color"
|
896 |
msgstr "Цвет иконки"
|
897 |
|
898 |
-
#: inc/core/data.php:
|
899 |
msgid ""
|
900 |
"This color will be applied to the selected icon. Does not works with "
|
901 |
"uploaded icons"
|
@@ -903,7 +915,7 @@ msgstr ""
|
|
903 |
"Этот цвет будет применен только к иконке выбранной из списка. Не работает "
|
904 |
"для загруженных иконок"
|
905 |
|
906 |
-
#: inc/core/data.php:
|
907 |
msgid ""
|
908 |
"<ul>\n"
|
909 |
"<li>List item</li>\n"
|
@@ -917,275 +929,275 @@ msgstr ""
|
|
917 |
"<li>Элемент списка</li>\n"
|
918 |
"</ul>"
|
919 |
|
920 |
-
#: inc/core/data.php:
|
921 |
msgid "Styled unordered list"
|
922 |
msgstr "Стильный неупорядоченный список"
|
923 |
|
924 |
-
#: inc/core/data.php:
|
925 |
msgid "Button"
|
926 |
msgstr "Кнопка"
|
927 |
|
928 |
-
#: inc/core/data.php:
|
929 |
msgid "Link"
|
930 |
msgstr "Ссылка"
|
931 |
|
932 |
-
#: inc/core/data.php:
|
933 |
msgid "Button link"
|
934 |
msgstr "Ссылка кнопки"
|
935 |
|
936 |
-
#: inc/core/data.php:
|
937 |
msgid "Same tab"
|
938 |
msgstr "Та же вкладка"
|
939 |
|
940 |
-
#: inc/core/data.php:
|
941 |
msgid "New tab"
|
942 |
msgstr "Новая вкладка"
|
943 |
|
944 |
-
#: inc/core/data.php:
|
945 |
msgid "Target"
|
946 |
msgstr "Цель"
|
947 |
|
948 |
-
#: inc/core/data.php:
|
949 |
msgid "Button link target"
|
950 |
msgstr "Цель ссылки кнопки"
|
951 |
|
952 |
-
#: inc/core/data.php:
|
953 |
msgid "Soft"
|
954 |
msgstr "Мягкий"
|
955 |
|
956 |
-
#: inc/core/data.php:
|
957 |
msgid "Glass"
|
958 |
msgstr "Стекло"
|
959 |
|
960 |
-
#: inc/core/data.php:
|
961 |
msgid "Bubbles"
|
962 |
msgstr "Пузыри"
|
963 |
|
964 |
-
#: inc/core/data.php:
|
965 |
msgid "Noise"
|
966 |
msgstr "Шум"
|
967 |
|
968 |
-
#: inc/core/data.php:
|
969 |
msgid "Stroked"
|
970 |
msgstr "Прошитый"
|
971 |
|
972 |
-
#: inc/core/data.php:
|
973 |
msgid "3D"
|
974 |
msgstr "3D"
|
975 |
|
976 |
-
#: inc/core/data.php:
|
977 |
msgid "Button background style preset"
|
978 |
msgstr "Стиль фона кнопки"
|
979 |
|
980 |
-
#: inc/core/data.php:
|
981 |
msgid "Button background color"
|
982 |
msgstr "Цвет фона кнопки"
|
983 |
|
984 |
-
#: inc/core/data.php:
|
985 |
msgid "Button text color"
|
986 |
msgstr "Цвет текста кнопки"
|
987 |
|
988 |
-
#: inc/core/data.php:
|
989 |
msgid "Button size"
|
990 |
msgstr "Размер кнопки"
|
991 |
|
992 |
-
#: inc/core/data.php:
|
993 |
msgid "Fluid"
|
994 |
msgstr "Резиновая"
|
995 |
|
996 |
-
#: inc/core/data.php:
|
997 |
msgid "Fluid buttons has 100% width"
|
998 |
msgstr "Резиновые кнопки имеют ширину 100%"
|
999 |
|
1000 |
-
#: inc/core/data.php:
|
1001 |
msgid "Is button centered on the page"
|
1002 |
msgstr "Кнопка выровнена по центру страницы"
|
1003 |
|
1004 |
-
#: inc/core/data.php:
|
1005 |
msgid "Auto"
|
1006 |
msgstr "Авто"
|
1007 |
|
1008 |
-
#: inc/core/data.php:
|
1009 |
msgid "Round"
|
1010 |
msgstr "Круглый"
|
1011 |
|
1012 |
-
#: inc/core/data.php:
|
1013 |
msgid "Square"
|
1014 |
msgstr "Квадратный"
|
1015 |
|
1016 |
-
#: inc/core/data.php:
|
1017 |
msgid "Radius"
|
1018 |
msgstr "Радиус"
|
1019 |
|
1020 |
-
#: inc/core/data.php:
|
1021 |
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
1022 |
msgstr ""
|
1023 |
"Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
|
1024 |
|
1025 |
-
#: inc/core/data.php:
|
1026 |
msgid "You can upload custom icon for this button or pick a built-in icon"
|
1027 |
msgstr "Вы можете загрузить свою иконку для этой кнопки или выбрать из списка"
|
1028 |
|
1029 |
-
#: inc/core/data.php:
|
1030 |
msgid "Text shadow"
|
1031 |
msgstr "Тень текста"
|
1032 |
|
1033 |
-
#: inc/core/data.php:
|
1034 |
msgid "Button text shadow"
|
1035 |
msgstr "Тень текста на кнопке"
|
1036 |
|
1037 |
-
#: inc/core/data.php:
|
1038 |
msgid "Description"
|
1039 |
msgstr "Описание"
|
1040 |
|
1041 |
-
#: inc/core/data.php:
|
1042 |
msgid ""
|
1043 |
"Small description under button text. This option is incompatible with icon."
|
1044 |
msgstr ""
|
1045 |
"Небольшое описание под текстом кнопки. Это описание не совместимо с иконками "
|
1046 |
"кнопок."
|
1047 |
|
1048 |
-
#: inc/core/data.php:
|
1049 |
msgid "onClick"
|
1050 |
msgstr "onClick"
|
1051 |
|
1052 |
-
#: inc/core/data.php:
|
1053 |
msgid "Advanced JavaScript code for onClick action"
|
1054 |
msgstr "JavaScript код для атрибута onClick"
|
1055 |
|
1056 |
-
#: inc/core/data.php:
|
1057 |
msgid "Button text"
|
1058 |
msgstr "Текст кнопки"
|
1059 |
|
1060 |
-
#: inc/core/data.php:
|
1061 |
msgid "Styled button"
|
1062 |
msgstr "Стильная кнопка"
|
1063 |
|
1064 |
-
#: inc/core/data.php:
|
1065 |
msgid "Service"
|
1066 |
msgstr "Услуга"
|
1067 |
|
1068 |
-
#: inc/core/data.php:
|
1069 |
msgid "Service title"
|
1070 |
msgstr "Название услуги"
|
1071 |
|
1072 |
-
#: inc/core/data.php:
|
1073 |
msgid "Service name"
|
1074 |
msgstr "Название услуги"
|
1075 |
|
1076 |
-
#: inc/core/data.php:
|
1077 |
msgid "You can upload custom icon for this box"
|
1078 |
msgstr "Вы можете загрузить свою иконку для этого блока"
|
1079 |
|
1080 |
-
#: inc/core/data.php:
|
1081 |
msgid "Icon size"
|
1082 |
msgstr "Размер иконки"
|
1083 |
|
1084 |
-
#: inc/core/data.php:
|
1085 |
msgid "Size of the uploaded icon in pixels"
|
1086 |
msgstr "Размер загруженной иконки в пикселях"
|
1087 |
|
1088 |
-
#: inc/core/data.php:
|
1089 |
msgid "Service description"
|
1090 |
msgstr "Описание услуги"
|
1091 |
|
1092 |
-
#: inc/core/data.php:
|
1093 |
msgid "Service box with title"
|
1094 |
msgstr "Блок услуга с заголовком"
|
1095 |
|
1096 |
-
#: inc/core/data.php:
|
1097 |
msgid "Box title"
|
1098 |
msgstr "Заголовок блока"
|
1099 |
|
1100 |
-
#: inc/core/data.php:
|
1101 |
msgid "Text for the box title"
|
1102 |
msgstr "Текст для заголовка блока"
|
1103 |
|
1104 |
-
#: inc/core/data.php:
|
1105 |
msgid "Box style preset"
|
1106 |
msgstr "Стиль блока"
|
1107 |
|
1108 |
-
#: inc/core/data.php:
|
1109 |
msgid "Color"
|
1110 |
msgstr "Цвет"
|
1111 |
|
1112 |
-
#: inc/core/data.php:
|
1113 |
msgid "Color for the box title and borders"
|
1114 |
msgstr "Цвет заголовка блока и его рамки"
|
1115 |
|
1116 |
-
#: inc/core/data.php:
|
1117 |
msgid "Title text color"
|
1118 |
msgstr "Цвет текста заголовка"
|
1119 |
|
1120 |
-
#: inc/core/data.php:
|
1121 |
msgid "Color for the box title text"
|
1122 |
msgstr "Цвет текста в заголовке блока"
|
1123 |
|
1124 |
-
#: inc/core/data.php:
|
1125 |
msgid "Box corners radius"
|
1126 |
msgstr "Радиус углов"
|
1127 |
|
1128 |
-
#: inc/core/data.php:
|
1129 |
msgid "Box content"
|
1130 |
msgstr "Содержимое блока"
|
1131 |
|
1132 |
-
#: inc/core/data.php:
|
1133 |
msgid "Colored box with caption"
|
1134 |
msgstr "Цветной блок с заголовком"
|
1135 |
|
1136 |
-
#: inc/core/data.php:
|
1137 |
msgid "Note"
|
1138 |
msgstr "Заметка"
|
1139 |
|
1140 |
-
#: inc/core/data.php:
|
1141 |
msgid "Note background color"
|
1142 |
msgstr "Цвет фона заметки"
|
1143 |
|
1144 |
-
#: inc/core/data.php:
|
1145 |
msgid "Note text color"
|
1146 |
msgstr "Цвет текста заметки"
|
1147 |
|
1148 |
-
#: inc/core/data.php:
|
1149 |
msgid "Note corners radius"
|
1150 |
msgstr "Радиус углов"
|
1151 |
|
1152 |
-
#: inc/core/data.php:
|
1153 |
msgid "Note text"
|
1154 |
msgstr "Текст заметки"
|
1155 |
|
1156 |
-
#: inc/core/data.php:
|
1157 |
msgid "Colored box"
|
1158 |
msgstr "Цветной блок"
|
1159 |
|
1160 |
-
#: inc/core/data.php:
|
1161 |
msgid "Lightbox"
|
1162 |
msgstr "Лайтбокс"
|
1163 |
|
1164 |
-
#: inc/core/data.php:
|
1165 |
msgid "Iframe"
|
1166 |
msgstr "Фрейм (iframe)"
|
1167 |
|
1168 |
-
#: inc/core/data.php:
|
1169 |
msgid "Image"
|
1170 |
msgstr "Изображение"
|
1171 |
|
1172 |
-
#: inc/core/data.php:
|
1173 |
msgid "Inline (html content)"
|
1174 |
msgstr "HTML элемент"
|
1175 |
|
1176 |
-
#: inc/core/data.php:
|
1177 |
msgid "Content type"
|
1178 |
msgstr "Тип содержимого"
|
1179 |
|
1180 |
-
#: inc/core/data.php:
|
1181 |
msgid "Select type of the lightbox window content"
|
1182 |
msgstr "Выберите тип содержимого в окне лайтбокса"
|
1183 |
|
1184 |
-
#: inc/core/data.php:
|
1185 |
msgid "Content source"
|
1186 |
msgstr "Источник содержимого"
|
1187 |
|
1188 |
-
#: inc/core/data.php:
|
1189 |
msgid ""
|
1190 |
"Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
|
1191 |
"Use CSS selector for Inline content type.<br />Example values:<br /><b"
|
@@ -1202,102 +1214,102 @@ msgstr ""
|
|
1202 |
"><b%value>http://example.com/</b> - любая веб-страница (фрейм)<br /><b"
|
1203 |
"%value>#contact-form</b> - любой HTML элемент (html элемент)"
|
1204 |
|
1205 |
-
#: inc/core/data.php:
|
1206 |
msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
|
1207 |
msgstr ""
|
1208 |
"[%prefix_button] Нажмите здесь чтобы посмотреть видео [/%prefix_button]"
|
1209 |
|
1210 |
-
#: inc/core/data.php:
|
1211 |
msgid "Lightbox window with custom content"
|
1212 |
msgstr "Лайтбокс с произвольным содержимым"
|
1213 |
|
1214 |
-
#: inc/core/data.php:
|
1215 |
msgid "Tooltip"
|
1216 |
msgstr "Подсказка"
|
1217 |
|
1218 |
-
#: inc/core/data.php:
|
1219 |
msgid "Basic: Light"
|
1220 |
msgstr "Базовый: Светлый"
|
1221 |
|
1222 |
-
#: inc/core/data.php:
|
1223 |
msgid "Basic: Dark"
|
1224 |
msgstr "Базовый: Темный"
|
1225 |
|
1226 |
-
#: inc/core/data.php:
|
1227 |
msgid "Basic: Yellow"
|
1228 |
msgstr "Базовый: Желтый"
|
1229 |
|
1230 |
-
#: inc/core/data.php:
|
1231 |
msgid "Basic: Green"
|
1232 |
msgstr "Базовый: Зеленый"
|
1233 |
|
1234 |
-
#: inc/core/data.php:
|
1235 |
msgid "Basic: Red"
|
1236 |
msgstr "Базовый: Красный"
|
1237 |
|
1238 |
-
#: inc/core/data.php:
|
1239 |
msgid "Basic: Blue"
|
1240 |
msgstr "Базовый: Голубой"
|
1241 |
|
1242 |
-
#: inc/core/data.php:
|
1243 |
msgid "Youtube"
|
1244 |
msgstr "Youtube"
|
1245 |
|
1246 |
-
#: inc/core/data.php:
|
1247 |
msgid "Tipsy"
|
1248 |
msgstr "Tipsy"
|
1249 |
|
1250 |
-
#: inc/core/data.php:
|
1251 |
msgid "Bootstrap"
|
1252 |
msgstr "Bootstrap"
|
1253 |
|
1254 |
-
#: inc/core/data.php:
|
1255 |
msgid "jTools"
|
1256 |
msgstr "jTools"
|
1257 |
|
1258 |
-
#: inc/core/data.php:
|
1259 |
msgid "Tipped"
|
1260 |
msgstr "Tipped"
|
1261 |
|
1262 |
-
#: inc/core/data.php:
|
1263 |
msgid "Cluetip"
|
1264 |
msgstr "Cluetip"
|
1265 |
|
1266 |
-
#: inc/core/data.php:
|
1267 |
msgid "Tooltip window style"
|
1268 |
msgstr "Стиль окна подсказки"
|
1269 |
|
1270 |
-
#: inc/core/data.php:
|
1271 |
msgid "Top"
|
1272 |
msgstr "Сверху"
|
1273 |
|
1274 |
-
#: inc/core/data.php:
|
1275 |
msgid "Bottom"
|
1276 |
msgstr "Снизу"
|
1277 |
|
1278 |
-
#: inc/core/data.php:
|
1279 |
msgid "Position"
|
1280 |
msgstr "Положение"
|
1281 |
|
1282 |
-
#: inc/core/data.php:
|
1283 |
msgid "Tooltip position"
|
1284 |
msgstr "Положение всплывающей подсказки"
|
1285 |
|
1286 |
-
#: inc/core/data.php:
|
1287 |
msgid "Shadow"
|
1288 |
msgstr "Тень"
|
1289 |
|
1290 |
-
#: inc/core/data.php:
|
1291 |
msgid ""
|
1292 |
"Add shadow to tooltip. This option is only works with basic styes, e.g. "
|
1293 |
"blue, green etc."
|
1294 |
msgstr "Добавить тень окну подсказки. Тень работает только для базовых стилей."
|
1295 |
|
1296 |
-
#: inc/core/data.php:
|
1297 |
msgid "Rounded corners"
|
1298 |
msgstr "Скругление"
|
1299 |
|
1300 |
-
#: inc/core/data.php:
|
1301 |
msgid ""
|
1302 |
"Use rounded for tooltip. This option is only works with basic styes, e.g. "
|
1303 |
"blue, green etc."
|
@@ -1305,152 +1317,152 @@ msgstr ""
|
|
1305 |
"Добавить скругленные уголки окну подсказки. Скругление работает только для "
|
1306 |
"базовых стилей."
|
1307 |
|
1308 |
-
#: inc/core/data.php:
|
1309 |
msgid "Font size"
|
1310 |
msgstr "Размер шрифта"
|
1311 |
|
1312 |
-
#: inc/core/data.php:
|
1313 |
msgid "Tooltip font size"
|
1314 |
msgstr "Размер шрифта подсказки"
|
1315 |
|
1316 |
-
#: inc/core/data.php:
|
1317 |
msgid "Tooltip title"
|
1318 |
msgstr "Заголовок подсказки"
|
1319 |
|
1320 |
-
#: inc/core/data.php:
|
1321 |
msgid ""
|
1322 |
"Enter title for tooltip window. Leave this field empty to hide the title"
|
1323 |
msgstr ""
|
1324 |
"Укажите заголовок окна подсказки. Оставьте поле пустым, чтобы скрыть "
|
1325 |
"заголовок"
|
1326 |
|
1327 |
-
#: inc/core/data.php:
|
1328 |
msgid "Tooltip text"
|
1329 |
msgstr "Текст подсказки"
|
1330 |
|
1331 |
-
#: inc/core/data.php:
|
1332 |
msgid "Tooltip content"
|
1333 |
msgstr "Содержимое подсказки"
|
1334 |
|
1335 |
-
#: inc/core/data.php:
|
1336 |
msgid "Enter tooltip content here"
|
1337 |
msgstr "Введите сюда содержимое подсказки"
|
1338 |
|
1339 |
-
#: inc/core/data.php:
|
1340 |
msgid "Show and hide on mouse hover"
|
1341 |
msgstr "Показать и скрыть при наведении мыши"
|
1342 |
|
1343 |
-
#: inc/core/data.php:
|
1344 |
msgid "Show and hide by mouse click"
|
1345 |
msgstr "Показать и скрыть по клику мыши"
|
1346 |
|
1347 |
-
#: inc/core/data.php:
|
1348 |
msgid "Always visible"
|
1349 |
msgstr "Всегда видима"
|
1350 |
|
1351 |
-
#: inc/core/data.php:
|
1352 |
msgid "Behavior"
|
1353 |
msgstr "Поведение"
|
1354 |
|
1355 |
-
#: inc/core/data.php:
|
1356 |
msgid "Select tooltip behavior"
|
1357 |
msgstr "Выберите поведение подсказки"
|
1358 |
|
1359 |
-
#: inc/core/data.php:
|
1360 |
msgid "Close button"
|
1361 |
msgstr "Кнопка закрыть"
|
1362 |
|
1363 |
-
#: inc/core/data.php:
|
1364 |
msgid "Show close button"
|
1365 |
msgstr "Показывать кнопку закрыть"
|
1366 |
|
1367 |
-
#: inc/core/data.php:
|
1368 |
msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
|
1369 |
msgstr ""
|
1370 |
"[%prefix_button] Наведите мышку чтобы увидеть подсказку [/%prefix_button]"
|
1371 |
|
1372 |
-
#: inc/core/data.php:
|
1373 |
msgid "Tooltip window with custom content"
|
1374 |
msgstr "Всплывающая подсказка с произвольным содержимым"
|
1375 |
|
1376 |
-
#: inc/core/data.php:
|
1377 |
msgid "Private"
|
1378 |
msgstr "Заметка для авторов"
|
1379 |
|
1380 |
-
#: inc/core/data.php:
|
1381 |
msgid "Private note text"
|
1382 |
msgstr "Текст приватной заметки"
|
1383 |
|
1384 |
-
#: inc/core/data.php:
|
1385 |
msgid "Private note for post authors"
|
1386 |
msgstr "Приватный текст для других авторов"
|
1387 |
|
1388 |
-
#: inc/core/data.php:
|
1389 |
msgid "YouTube"
|
1390 |
msgstr "YouTube"
|
1391 |
|
1392 |
-
#: inc/core/data.php:
|
1393 |
-
#: inc/core/data.php:
|
1394 |
msgid "Url"
|
1395 |
msgstr "Ссылка"
|
1396 |
|
1397 |
-
#: inc/core/data.php:
|
1398 |
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
1399 |
msgstr ""
|
1400 |
"Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
|
1401 |
|
1402 |
-
#: inc/core/data.php:
|
1403 |
-
#: inc/core/data.php:
|
1404 |
-
#: inc/core/data.php:
|
1405 |
-
#: inc/core/data.php:
|
1406 |
msgid "Width"
|
1407 |
msgstr "Ширина"
|
1408 |
|
1409 |
-
#: inc/core/data.php:
|
1410 |
-
#: inc/core/data.php:
|
1411 |
msgid "Player width"
|
1412 |
msgstr "Ширина плеера"
|
1413 |
|
1414 |
-
#: inc/core/data.php:
|
1415 |
-
#: inc/core/data.php:
|
1416 |
msgid "Player height"
|
1417 |
msgstr "Высота плеера"
|
1418 |
|
1419 |
-
#: inc/core/data.php:
|
1420 |
-
#: inc/core/data.php:
|
1421 |
-
#: inc/core/data.php:
|
1422 |
msgid "Responsive"
|
1423 |
msgstr "Отзывчивость (responsive)"
|
1424 |
|
1425 |
-
#: inc/core/data.php:
|
1426 |
-
#: inc/core/data.php:
|
1427 |
msgid "Ignore width and height parameters and make player responsive"
|
1428 |
msgstr ""
|
1429 |
"Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
|
1430 |
|
1431 |
-
#: inc/core/data.php:
|
1432 |
-
#: inc/core/data.php:
|
1433 |
-
#: inc/core/data.php:
|
1434 |
msgid "Autoplay"
|
1435 |
msgstr "Автовоспроизведение"
|
1436 |
|
1437 |
-
#: inc/core/data.php:
|
1438 |
msgid "Play video automatically when page is loaded"
|
1439 |
msgstr "Воспроизвести видео автоматически при открытии страницы"
|
1440 |
|
1441 |
-
#: inc/core/data.php:
|
1442 |
msgid "YouTube video"
|
1443 |
msgstr "Видео YouTube"
|
1444 |
|
1445 |
-
#: inc/core/data.php:
|
1446 |
msgid "YouTube Advanced"
|
1447 |
msgstr "YouTube продвинутый"
|
1448 |
|
1449 |
-
#: inc/core/data.php:
|
1450 |
msgid "Playlist"
|
1451 |
msgstr "Плейлист"
|
1452 |
|
1453 |
-
#: inc/core/data.php:
|
1454 |
msgid ""
|
1455 |
"Value is a comma-separated list of video IDs to play. If you specify a "
|
1456 |
"value, the first video that plays will be the VIDEO_ID specified in the URL "
|
@@ -1460,44 +1472,44 @@ msgstr ""
|
|
1460 |
"значение, то первым будет проиграно видео из параметра URL, а указанные "
|
1461 |
"здесь видео будут проиграны после него"
|
1462 |
|
1463 |
-
#: inc/core/data.php:
|
1464 |
msgid "0 - Hide controls"
|
1465 |
msgstr "0 - Спрятать панель"
|
1466 |
|
1467 |
-
#: inc/core/data.php:
|
1468 |
msgid "1 - Show controls"
|
1469 |
msgstr "1 - Показать панель"
|
1470 |
|
1471 |
-
#: inc/core/data.php:
|
1472 |
msgid "2 - Show controls when playback is started"
|
1473 |
msgstr "2 - Показать панель при начале воспроизведения"
|
1474 |
|
1475 |
-
#: inc/core/data.php:
|
1476 |
msgid "Controls"
|
1477 |
msgstr "Элементы управления"
|
1478 |
|
1479 |
-
#: inc/core/data.php:
|
1480 |
msgid "This parameter indicates whether the video player controls will display"
|
1481 |
msgstr ""
|
1482 |
"Этот параметр определяет как показывать панель управления воспроизведением"
|
1483 |
|
1484 |
-
#: inc/core/data.php:
|
1485 |
msgid "0 - Do not hide controls"
|
1486 |
msgstr "0 - Не прятать панель"
|
1487 |
|
1488 |
-
#: inc/core/data.php:
|
1489 |
msgid "1 - Hide all controls on mouse out"
|
1490 |
msgstr "1 - Спрятать панель при уходе мыши"
|
1491 |
|
1492 |
-
#: inc/core/data.php:
|
1493 |
msgid "2 - Hide progress bar on mouse out"
|
1494 |
msgstr "2 - Спрятать полосу прокрутки при уходе мыши"
|
1495 |
|
1496 |
-
#: inc/core/data.php:
|
1497 |
msgid "Autohide"
|
1498 |
msgstr "Авто-скрытие"
|
1499 |
|
1500 |
-
#: inc/core/data.php:
|
1501 |
msgid ""
|
1502 |
"This parameter indicates whether the video controls will automatically hide "
|
1503 |
"after a video begins playing"
|
@@ -1505,11 +1517,11 @@ msgstr ""
|
|
1505 |
"Этот параметр определяет как скрывать панель управления воспроизведением во "
|
1506 |
"время проигрывания ролика"
|
1507 |
|
1508 |
-
#: inc/core/data.php:
|
1509 |
msgid "Show title bar"
|
1510 |
msgstr "Показывать заголовок"
|
1511 |
|
1512 |
-
#: inc/core/data.php:
|
1513 |
msgid ""
|
1514 |
"If you set the parameter value to NO, then the player will not display "
|
1515 |
"information like the video title and uploader before the video starts "
|
@@ -1518,21 +1530,21 @@ msgstr ""
|
|
1518 |
"Если вы установите параметр на НЕТ, то в плеере не будет показан заголовок с "
|
1519 |
"названием видео и имя автора видео"
|
1520 |
|
1521 |
-
#: inc/core/data.php:
|
1522 |
msgid "Loop"
|
1523 |
msgstr "Повтор"
|
1524 |
|
1525 |
-
#: inc/core/data.php:
|
1526 |
msgid ""
|
1527 |
"Setting of YES will cause the player to play the initial video again and "
|
1528 |
"again"
|
1529 |
msgstr "Видео будет снова проиграно по окнчании воспроизведения"
|
1530 |
|
1531 |
-
#: inc/core/data.php:
|
1532 |
msgid "Related videos"
|
1533 |
msgstr "Похожие видео"
|
1534 |
|
1535 |
-
#: inc/core/data.php:
|
1536 |
msgid ""
|
1537 |
"This parameter indicates whether the player should show related videos when "
|
1538 |
"playback of the initial video ends"
|
@@ -1540,17 +1552,17 @@ msgstr ""
|
|
1540 |
"Этот параметр позволяет отключать показ похожих видео по окончании "
|
1541 |
"воспроизведения"
|
1542 |
|
1543 |
-
#: inc/core/data.php:
|
1544 |
msgid "Show full-screen button"
|
1545 |
msgstr "Показывать кнопку полноэкранного режима"
|
1546 |
|
1547 |
-
#: inc/core/data.php:
|
1548 |
msgid ""
|
1549 |
"Setting this parameter to NO prevents the fullscreen button from displaying"
|
1550 |
msgstr ""
|
1551 |
"Установка этого параметра на НЕТ скроет кнопку перехода в полноэкранный режим"
|
1552 |
|
1553 |
-
#: inc/core/data.php:
|
1554 |
msgid ""
|
1555 |
"This parameter lets you use a YouTube player that does not show a YouTube "
|
1556 |
"logo. Set the parameter value to YES to prevent the YouTube logo from "
|
@@ -1562,66 +1574,66 @@ msgstr ""
|
|
1562 |
"управления воспроизведением. Вместо он будет показан либо в панели заголовка "
|
1563 |
"видео, либо как полупрозрачный над видео"
|
1564 |
|
1565 |
-
#: inc/core/data.php:
|
1566 |
msgid "Dark theme"
|
1567 |
msgstr "Темная тема"
|
1568 |
|
1569 |
-
#: inc/core/data.php:
|
1570 |
msgid "Light theme"
|
1571 |
msgstr "Светлая тема"
|
1572 |
|
1573 |
-
#: inc/core/data.php:
|
1574 |
msgid "Theme"
|
1575 |
msgstr "Тема"
|
1576 |
|
1577 |
-
#: inc/core/data.php:
|
1578 |
msgid ""
|
1579 |
"This parameter indicates whether the embedded player will display player "
|
1580 |
"controls (like a play button or volume control) within a dark or light "
|
1581 |
"control bar"
|
1582 |
msgstr "Выберите тему для проигрывателя"
|
1583 |
|
1584 |
-
#: inc/core/data.php:
|
1585 |
msgid "YouTube video player with advanced settings"
|
1586 |
msgstr "YouTube видео плеер с расширенными настройками"
|
1587 |
|
1588 |
-
#: inc/core/data.php:
|
1589 |
msgid "Vimeo"
|
1590 |
msgstr "Vimeo"
|
1591 |
|
1592 |
-
#: inc/core/data.php:
|
1593 |
msgid "Url of Vimeo page with video"
|
1594 |
msgstr "Ссылка на страницу Vimeo с видео"
|
1595 |
|
1596 |
-
#: inc/core/data.php:
|
1597 |
msgid "Vimeo video"
|
1598 |
msgstr "Видео Vimeo"
|
1599 |
|
1600 |
-
#: inc/core/data.php:
|
1601 |
msgid "Screenr"
|
1602 |
msgstr "Screenr"
|
1603 |
|
1604 |
-
#: inc/core/data.php:
|
1605 |
msgid "Url of Screenr page with video"
|
1606 |
msgstr "Ссылка на страницу Screenr с видео"
|
1607 |
|
1608 |
-
#: inc/core/data.php:
|
1609 |
msgid "Screenr video"
|
1610 |
msgstr "Видео Screenr"
|
1611 |
|
1612 |
-
#: inc/core/data.php:
|
1613 |
msgid "Audio"
|
1614 |
msgstr "Аудио"
|
1615 |
|
1616 |
-
#: inc/core/data.php:
|
1617 |
msgid "File"
|
1618 |
msgstr "Файл"
|
1619 |
|
1620 |
-
#: inc/core/data.php:
|
1621 |
msgid "Audio file url. Supported formats: mp3, ogg"
|
1622 |
msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
|
1623 |
|
1624 |
-
#: inc/core/data.php:
|
1625 |
msgid ""
|
1626 |
"Player width. You can specify width in percents and player will be "
|
1627 |
"responsive. Example values: <b%value>200px</b>, <b%value>100%</b>"
|
@@ -1630,63 +1642,63 @@ msgstr ""
|
|
1630 |
"отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b"
|
1631 |
"%value>100%</b>"
|
1632 |
|
1633 |
-
#: inc/core/data.php:
|
1634 |
msgid "Play file automatically when page is loaded"
|
1635 |
msgstr "Воспроизводить файл автоматически при открытии страницы"
|
1636 |
|
1637 |
-
#: inc/core/data.php:
|
1638 |
msgid "Repeat when playback is ended"
|
1639 |
msgstr "Повторять, когда воспроизведение окночено"
|
1640 |
|
1641 |
-
#: inc/core/data.php:
|
1642 |
msgid "Custom audio player"
|
1643 |
msgstr "Настраиваемый аудио-плеер"
|
1644 |
|
1645 |
-
#: inc/core/data.php:
|
1646 |
msgid "Video"
|
1647 |
msgstr "Видео"
|
1648 |
|
1649 |
-
#: inc/core/data.php:
|
1650 |
msgid "Url to mp4/flv video-file"
|
1651 |
msgstr "Ссылка на mp4/flv видео-файл"
|
1652 |
|
1653 |
-
#: inc/core/data.php:
|
1654 |
msgid "Poster"
|
1655 |
msgstr "Постер"
|
1656 |
|
1657 |
-
#: inc/core/data.php:
|
1658 |
msgid "Url to poster image, that will be shown before playback"
|
1659 |
msgstr ""
|
1660 |
"Ссылка на изображение постера. Изображение будет показано перед началом "
|
1661 |
"воспроизведения"
|
1662 |
|
1663 |
-
#: inc/core/data.php:
|
1664 |
msgid "Player title"
|
1665 |
msgstr "Заголовок плеера"
|
1666 |
|
1667 |
-
#: inc/core/data.php:
|
1668 |
msgid "Show player controls (play/pause etc.) or not"
|
1669 |
msgstr ""
|
1670 |
"Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
|
1671 |
|
1672 |
-
#: inc/core/data.php:
|
1673 |
msgid "Custom video player"
|
1674 |
msgstr "Настраиваемый видео-плеер"
|
1675 |
|
1676 |
-
#: inc/core/data.php:
|
1677 |
msgid "Table"
|
1678 |
msgstr "Таблица"
|
1679 |
|
1680 |
-
#: inc/core/data.php:
|
1681 |
msgid "CSV file"
|
1682 |
msgstr "CSV файл"
|
1683 |
|
1684 |
-
#: inc/core/data.php:
|
1685 |
msgid "Upload CSV file if you want to create HTML-table from file"
|
1686 |
msgstr ""
|
1687 |
"Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
|
1688 |
|
1689 |
-
#: inc/core/data.php:
|
1690 |
msgid ""
|
1691 |
"<table>\n"
|
1692 |
"<tr>\n"
|
@@ -1710,230 +1722,230 @@ msgstr ""
|
|
1710 |
"</tr>\n"
|
1711 |
"</table>"
|
1712 |
|
1713 |
-
#: inc/core/data.php:
|
1714 |
msgid "Styled table from HTML or CSV file"
|
1715 |
msgstr "Стильная таблица из HTML или CSV файла"
|
1716 |
|
1717 |
-
#: inc/core/data.php:
|
1718 |
msgid "Permalink"
|
1719 |
msgstr "Постоянная ссылка"
|
1720 |
|
1721 |
-
#: inc/core/data.php:
|
1722 |
msgid "ID"
|
1723 |
msgstr "ID"
|
1724 |
|
1725 |
-
#: inc/core/data.php:
|
1726 |
msgid "Post or page ID"
|
1727 |
msgstr "ID записи или страницы"
|
1728 |
|
1729 |
-
#: inc/core/data.php:
|
1730 |
msgid "Link target. blank - link will be opened in new window/tab"
|
1731 |
msgstr ""
|
1732 |
"Цель ссылки. blank - означает что ссылка будет открыта в новом окне или "
|
1733 |
"вкладке"
|
1734 |
|
1735 |
-
#: inc/core/data.php:
|
1736 |
msgid "Permalink to specified post/page"
|
1737 |
msgstr "Постоянная ссылка на страницу"
|
1738 |
|
1739 |
-
#: inc/core/data.php:
|
1740 |
msgid "Members"
|
1741 |
msgstr "Участники"
|
1742 |
|
1743 |
-
#: inc/core/data.php:
|
1744 |
msgid "This content is for registered users only. Please %login%."
|
1745 |
msgstr ""
|
1746 |
"Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
|
1747 |
|
1748 |
-
#: inc/core/data.php:
|
1749 |
msgid "Message"
|
1750 |
msgstr "Сообщение"
|
1751 |
|
1752 |
-
#: inc/core/data.php:
|
1753 |
msgid "Message for not logged users"
|
1754 |
msgstr "Собщение для неавторизованных"
|
1755 |
|
1756 |
-
#: inc/core/data.php:
|
1757 |
msgid "Box color"
|
1758 |
msgstr "Цвет блока"
|
1759 |
|
1760 |
-
#: inc/core/data.php:
|
1761 |
msgid "This color will applied only to box for not logged users"
|
1762 |
msgstr ""
|
1763 |
"Этот цвет будет применен только к блоку для не авторизованных посетителей"
|
1764 |
|
1765 |
-
#: inc/core/data.php:
|
1766 |
msgid "login"
|
1767 |
msgstr "войдите"
|
1768 |
|
1769 |
-
#: inc/core/data.php:
|
1770 |
msgid "Login link text"
|
1771 |
msgstr "Текст ссылки войти"
|
1772 |
|
1773 |
-
#: inc/core/data.php:
|
1774 |
msgid "Text for the login link"
|
1775 |
msgstr "Текст ссылки ВОЙТИ"
|
1776 |
|
1777 |
-
#: inc/core/data.php:
|
1778 |
msgid "Login link url"
|
1779 |
msgstr "Адрес ссылки войти"
|
1780 |
|
1781 |
-
#: inc/core/data.php:
|
1782 |
msgid "Content for logged members"
|
1783 |
msgstr "Содержимое для авторизованых пользователей"
|
1784 |
|
1785 |
-
#: inc/core/data.php:
|
1786 |
msgid "Content for logged in members only"
|
1787 |
msgstr "Ссодержимое для авторизованых"
|
1788 |
|
1789 |
-
#: inc/core/data.php:
|
1790 |
msgid "Guests"
|
1791 |
msgstr "Гости"
|
1792 |
|
1793 |
-
#: inc/core/data.php:
|
1794 |
msgid "Content for guests"
|
1795 |
msgstr "Содержимое для гостей"
|
1796 |
|
1797 |
-
#: inc/core/data.php:
|
1798 |
msgid "Content for guests only"
|
1799 |
msgstr "Ссодержимое только для гостей"
|
1800 |
|
1801 |
-
#: inc/core/data.php:
|
1802 |
msgid "RSS Feed"
|
1803 |
msgstr "RSS лента"
|
1804 |
|
1805 |
-
#: inc/core/data.php:
|
1806 |
msgid "Url to RSS-feed"
|
1807 |
msgstr "Ссылка на RSS-ленту"
|
1808 |
|
1809 |
-
#: inc/core/data.php:
|
1810 |
msgid "Limit"
|
1811 |
msgstr "Лимит"
|
1812 |
|
1813 |
-
#: inc/core/data.php:
|
1814 |
msgid "Number of items to show"
|
1815 |
msgstr "Количество элементов для отображения"
|
1816 |
|
1817 |
-
#: inc/core/data.php:
|
1818 |
msgid "Feed grabber"
|
1819 |
msgstr "Граббер новостных лент"
|
1820 |
|
1821 |
-
#: inc/core/data.php:
|
1822 |
msgid "Menu"
|
1823 |
msgstr "Меню"
|
1824 |
|
1825 |
-
#: inc/core/data.php:
|
1826 |
msgid "Menu name"
|
1827 |
msgstr "Имя меню"
|
1828 |
|
1829 |
-
#: inc/core/data.php:
|
1830 |
msgid "Custom menu name. Ex: Main menu"
|
1831 |
msgstr "Имя произвольного меню. Например: Главное меню"
|
1832 |
|
1833 |
-
#: inc/core/data.php:
|
1834 |
msgid "Custom menu by name"
|
1835 |
msgstr "Произвольное меню"
|
1836 |
|
1837 |
-
#: inc/core/data.php:
|
1838 |
msgid "Sub pages"
|
1839 |
msgstr "Подстраницы"
|
1840 |
|
1841 |
-
#: inc/core/data.php:
|
1842 |
msgid "Depth"
|
1843 |
msgstr "Глубина"
|
1844 |
|
1845 |
-
#: inc/core/data.php:
|
1846 |
msgid "Max depth level of children pages"
|
1847 |
msgstr "Максимальная глубина дочерних страниц"
|
1848 |
|
1849 |
-
#: inc/core/data.php:
|
1850 |
msgid "Parent ID"
|
1851 |
msgstr "ID родителя"
|
1852 |
|
1853 |
-
#: inc/core/data.php:
|
1854 |
msgid "ID of the parent page. Leave blank to use current page"
|
1855 |
msgstr ""
|
1856 |
"ID родительской страницы. Оставьте пустым, чтобы использовать текущую "
|
1857 |
"страницу"
|
1858 |
|
1859 |
-
#: inc/core/data.php:
|
1860 |
msgid "List of sub pages"
|
1861 |
msgstr "Список дочерних страниц"
|
1862 |
|
1863 |
-
#: inc/core/data.php:
|
1864 |
msgid "Siblings"
|
1865 |
msgstr "Соседние страницы"
|
1866 |
|
1867 |
-
#: inc/core/data.php:
|
1868 |
msgid "Max depth level"
|
1869 |
msgstr "Максимальный уровень вложенности"
|
1870 |
|
1871 |
-
#: inc/core/data.php:
|
1872 |
msgid "List of cureent page siblings"
|
1873 |
msgstr "Список страниц, соседних с текущей"
|
1874 |
|
1875 |
-
#: inc/core/data.php:
|
1876 |
msgid "Document"
|
1877 |
msgstr "Документ"
|
1878 |
|
1879 |
-
#: inc/core/data.php:
|
1880 |
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1881 |
msgstr ""
|
1882 |
"Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
|
1883 |
|
1884 |
-
#: inc/core/data.php:
|
1885 |
msgid "Viewer width"
|
1886 |
msgstr "Ширина просмотрщика"
|
1887 |
|
1888 |
-
#: inc/core/data.php:
|
1889 |
msgid "Viewer height"
|
1890 |
msgstr "Высота просмотрщика"
|
1891 |
|
1892 |
-
#: inc/core/data.php:
|
1893 |
msgid "Ignore width and height parameters and make viewer responsive"
|
1894 |
msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
|
1895 |
|
1896 |
-
#: inc/core/data.php:
|
1897 |
msgid "Document viewer by Google"
|
1898 |
msgstr "Просмотрщик документов от Google"
|
1899 |
|
1900 |
-
#: inc/core/data.php:
|
1901 |
msgid "Gmap"
|
1902 |
msgstr "Google карта"
|
1903 |
|
1904 |
-
#: inc/core/data.php:
|
1905 |
msgid "Map width"
|
1906 |
msgstr "Ширина карты"
|
1907 |
|
1908 |
-
#: inc/core/data.php:
|
1909 |
msgid "Map height"
|
1910 |
msgstr "Высота карты"
|
1911 |
|
1912 |
-
#: inc/core/data.php:
|
1913 |
msgid "Ignore width and height parameters and make map responsive"
|
1914 |
msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
|
1915 |
|
1916 |
-
#: inc/core/data.php:
|
1917 |
msgid "Marker"
|
1918 |
msgstr "Маркер"
|
1919 |
|
1920 |
-
#: inc/core/data.php:
|
1921 |
msgid "Address for the marker. You can type it in any language"
|
1922 |
msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
|
1923 |
|
1924 |
-
#: inc/core/data.php:
|
1925 |
msgid "Maps by Google"
|
1926 |
msgstr "Карты от Google"
|
1927 |
|
1928 |
-
#: inc/core/data.php:
|
1929 |
msgid "Slider"
|
1930 |
msgstr "Слайдер"
|
1931 |
|
1932 |
-
#: inc/core/data.php:
|
1933 |
msgid "Source"
|
1934 |
msgstr "Источник"
|
1935 |
|
1936 |
-
#: inc/core/data.php:
|
1937 |
msgid ""
|
1938 |
"Choose images source. You can use images from Media library or retrieve it "
|
1939 |
"from posts (thumbnails) posted under specified blog category. You can also "
|
@@ -1944,203 +1956,203 @@ msgstr ""
|
|
1944 |
"опубликованных в выбранной категории. Вы также можете выбрать произвольную "
|
1945 |
"таксономию и её рубрики"
|
1946 |
|
1947 |
-
#: inc/core/data.php:
|
1948 |
msgid "Full-size image"
|
1949 |
msgstr "Полноразмерное изображение"
|
1950 |
|
1951 |
-
#: inc/core/data.php:
|
1952 |
msgid "Attachment page"
|
1953 |
msgstr "Страница медиа-файла"
|
1954 |
|
1955 |
-
#: inc/core/data.php:
|
1956 |
msgid "Post permalink"
|
1957 |
msgstr "Ссылка записи"
|
1958 |
|
1959 |
-
#: inc/core/data.php:
|
1960 |
msgid "Links"
|
1961 |
msgstr "Ссылки"
|
1962 |
|
1963 |
-
#: inc/core/data.php:
|
1964 |
msgid "Select which links will be used for images in this gallery"
|
1965 |
msgstr "Выберите какие ссылки использовать для элементов этой галереи"
|
1966 |
|
1967 |
-
#: inc/core/data.php:
|
1968 |
msgid "Same window"
|
1969 |
msgstr "То же окно"
|
1970 |
|
1971 |
-
#: inc/core/data.php:
|
1972 |
msgid "New window"
|
1973 |
msgstr "Новое окно"
|
1974 |
|
1975 |
-
#: inc/core/data.php:
|
1976 |
msgid "Links target"
|
1977 |
msgstr "Цель ссылок"
|
1978 |
|
1979 |
-
#: inc/core/data.php:
|
1980 |
msgid "Open links in"
|
1981 |
msgstr "Открывать ссылки в"
|
1982 |
|
1983 |
-
#: inc/core/data.php:
|
1984 |
msgid "Slider width (in pixels)"
|
1985 |
msgstr "Ширина слайдера (в пикселях)"
|
1986 |
|
1987 |
-
#: inc/core/data.php:
|
1988 |
msgid "Slider height (in pixels)"
|
1989 |
msgstr "Высота слайдера (в пикселях)"
|
1990 |
|
1991 |
-
#: inc/core/data.php:
|
1992 |
msgid "Ignore width and height parameters and make slider responsive"
|
1993 |
msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
|
1994 |
|
1995 |
-
#: inc/core/data.php:
|
1996 |
msgid "Show titles"
|
1997 |
msgstr "Показывать заголовки"
|
1998 |
|
1999 |
-
#: inc/core/data.php:
|
2000 |
msgid "Display slide titles"
|
2001 |
msgstr "Отображать заголовки слайдов"
|
2002 |
|
2003 |
-
#: inc/core/data.php:
|
2004 |
msgid "Is slider centered on the page"
|
2005 |
msgstr "Слайдер выровнен по центру страницы"
|
2006 |
|
2007 |
-
#: inc/core/data.php:
|
2008 |
msgid "Arrows"
|
2009 |
msgstr "Стрелки"
|
2010 |
|
2011 |
-
#: inc/core/data.php:
|
2012 |
msgid "Show left and right arrows"
|
2013 |
msgstr "Показывать стрелки влево/вправо"
|
2014 |
|
2015 |
-
#: inc/core/data.php:
|
2016 |
msgid "Pagination"
|
2017 |
msgstr "Страницы"
|
2018 |
|
2019 |
-
#: inc/core/data.php:
|
2020 |
msgid "Show pagination"
|
2021 |
msgstr "Показывать страницы"
|
2022 |
|
2023 |
-
#: inc/core/data.php:
|
2024 |
msgid "Mouse wheel control"
|
2025 |
msgstr "Управление колесом мыши"
|
2026 |
|
2027 |
-
#: inc/core/data.php:
|
2028 |
msgid "Allow to change slides with mouse wheel"
|
2029 |
msgstr "Разрешить перелистывание слайдов колесом мышки"
|
2030 |
|
2031 |
-
#: inc/core/data.php:
|
2032 |
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
2033 |
msgstr ""
|
2034 |
"Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы "
|
2035 |
"отключить автовоспроизведение"
|
2036 |
|
2037 |
-
#: inc/core/data.php:
|
2038 |
msgid "Speed"
|
2039 |
msgstr "Скорость"
|
2040 |
|
2041 |
-
#: inc/core/data.php:
|
2042 |
msgid "Specify animation speed"
|
2043 |
msgstr "Укажите скорость анимации"
|
2044 |
|
2045 |
-
#: inc/core/data.php:
|
2046 |
msgid "Customizable image slider"
|
2047 |
msgstr "Настраиваемый слайдер изображений"
|
2048 |
|
2049 |
-
#: inc/core/data.php:
|
2050 |
msgid "Carousel"
|
2051 |
msgstr "Карусель"
|
2052 |
|
2053 |
-
#: inc/core/data.php:
|
2054 |
msgid "Original image"
|
2055 |
msgstr "Оригинальное изображение"
|
2056 |
|
2057 |
-
#: inc/core/data.php:
|
2058 |
msgid "Carousel width (in pixels)"
|
2059 |
msgstr "Ширина карусели (в пикселях)"
|
2060 |
|
2061 |
-
#: inc/core/data.php:
|
2062 |
msgid "Carousel height (in pixels)"
|
2063 |
msgstr "Высота карусели (в пикселях)"
|
2064 |
|
2065 |
-
#: inc/core/data.php:
|
2066 |
msgid "Ignore width and height parameters and make carousel responsive"
|
2067 |
msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
|
2068 |
|
2069 |
-
#: inc/core/data.php:
|
2070 |
msgid "Items to show"
|
2071 |
msgstr "Количество элементов для отображения"
|
2072 |
|
2073 |
-
#: inc/core/data.php:
|
2074 |
msgid "How much carousel items is visible"
|
2075 |
msgstr "Сколько элементов карусели видны постоянно"
|
2076 |
|
2077 |
-
#: inc/core/data.php:
|
2078 |
msgid "Scroll number"
|
2079 |
msgstr "Кол-во прокручиваемых"
|
2080 |
|
2081 |
-
#: inc/core/data.php:
|
2082 |
msgid "How much items are scrolled in one transition"
|
2083 |
msgstr "Сколько элементов карусели прокручивается за один переход"
|
2084 |
|
2085 |
-
#: inc/core/data.php:
|
2086 |
msgid "Display titles for each item"
|
2087 |
msgstr "Показывать заголовки для каждого элемента карусели"
|
2088 |
|
2089 |
-
#: inc/core/data.php:
|
2090 |
msgid "Is carousel centered on the page"
|
2091 |
msgstr "Карусель выровнена по центру страницы"
|
2092 |
|
2093 |
-
#: inc/core/data.php:
|
2094 |
msgid "Allow to rotate carousel with mouse wheel"
|
2095 |
msgstr "Разрешить прокрутку карусели колесом мыши"
|
2096 |
|
2097 |
-
#: inc/core/data.php:
|
2098 |
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
2099 |
msgstr ""
|
2100 |
"Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить "
|
2101 |
"автовоспроизведение"
|
2102 |
|
2103 |
-
#: inc/core/data.php:
|
2104 |
msgid "Customizable image carousel"
|
2105 |
msgstr "Настраиваемая карусель изображений"
|
2106 |
|
2107 |
-
#: inc/core/data.php:
|
2108 |
msgid "Single item width (in pixels)"
|
2109 |
msgstr "Ширина одного изображения (в пикселях)"
|
2110 |
|
2111 |
-
#: inc/core/data.php:
|
2112 |
msgid "Single item height (in pixels)"
|
2113 |
msgstr "Высота одного изображения (в пикселях)"
|
2114 |
|
2115 |
-
#: inc/core/data.php:
|
2116 |
msgid "Never"
|
2117 |
msgstr "Никогда"
|
2118 |
|
2119 |
-
#: inc/core/data.php:
|
2120 |
msgid "On mouse over"
|
2121 |
msgstr "При наведении мыши"
|
2122 |
|
2123 |
-
#: inc/core/data.php:
|
2124 |
msgid "Always"
|
2125 |
msgstr "Всегда"
|
2126 |
|
2127 |
-
#: inc/core/data.php:
|
2128 |
msgid "Title display mode"
|
2129 |
msgstr "Режим отображения заголовков"
|
2130 |
|
2131 |
-
#: inc/core/data.php:
|
2132 |
msgid "Customizable image gallery"
|
2133 |
msgstr "Настраиваемая галерея изображений"
|
2134 |
|
2135 |
-
#: inc/core/data.php:
|
2136 |
msgid "Posts"
|
2137 |
msgstr "Записи"
|
2138 |
|
2139 |
-
#: inc/core/data.php:
|
2140 |
msgid "Template"
|
2141 |
msgstr "Шаблон"
|
2142 |
|
2143 |
-
#: inc/core/data.php:
|
2144 |
msgid ""
|
2145 |
"<b>Do not change this field value if you do not understand description below."
|
2146 |
"</b><br/>Relative path to the template file. Default templates is placed "
|
@@ -2163,55 +2175,55 @@ msgstr ""
|
|
2163 |
"одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - "
|
2164 |
"маркированный список с заголовками постов"
|
2165 |
|
2166 |
-
#: inc/core/data.php:
|
2167 |
msgid "Post ID's"
|
2168 |
msgstr "ID постов"
|
2169 |
|
2170 |
-
#: inc/core/data.php:
|
2171 |
msgid "Enter comma separated ID's of the posts that you want to show"
|
2172 |
msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
|
2173 |
|
2174 |
-
#: inc/core/data.php:
|
2175 |
msgid "Posts per page"
|
2176 |
msgstr "Кол-во записей"
|
2177 |
|
2178 |
-
#: inc/core/data.php:
|
2179 |
msgid ""
|
2180 |
"Specify number of posts that you want to show. Enter -1 to get all posts"
|
2181 |
msgstr ""
|
2182 |
"Укажите число записей, которое хотите отобразить. Введите -1 чтобы "
|
2183 |
"отобразить все найденные записи"
|
2184 |
|
2185 |
-
#: inc/core/data.php:
|
2186 |
msgid "Post types"
|
2187 |
msgstr "Типы постов"
|
2188 |
|
2189 |
-
#: inc/core/data.php:
|
2190 |
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
2191 |
msgstr ""
|
2192 |
"Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
|
2193 |
|
2194 |
-
#: inc/core/data.php:
|
2195 |
msgid "Taxonomy"
|
2196 |
msgstr "Таксономия"
|
2197 |
|
2198 |
-
#: inc/core/data.php:
|
2199 |
msgid "Select taxonomy to show posts from"
|
2200 |
msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
|
2201 |
|
2202 |
-
#: inc/core/data.php:
|
2203 |
msgid "Terms"
|
2204 |
msgstr "Категории (terms)"
|
2205 |
|
2206 |
-
#: inc/core/data.php:
|
2207 |
msgid "Select terms to show posts from"
|
2208 |
msgstr "Выберите категории, из которых нужно показать записи"
|
2209 |
|
2210 |
-
#: inc/core/data.php:
|
2211 |
msgid "Taxonomy term operator"
|
2212 |
msgstr "Оператор выбора категорий"
|
2213 |
|
2214 |
-
#: inc/core/data.php:
|
2215 |
msgid ""
|
2216 |
"IN - posts that have any of selected categories terms<br/>NOT IN - posts "
|
2217 |
"that is does not have any of selected terms<br/>AND - posts that have all "
|
@@ -2221,202 +2233,202 @@ msgstr ""
|
|
2221 |
"будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/"
|
2222 |
">AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
|
2223 |
|
2224 |
-
#: inc/core/data.php:
|
2225 |
msgid "Authors"
|
2226 |
msgstr "Авторы"
|
2227 |
|
2228 |
-
#: inc/core/data.php:
|
2229 |
msgid "Choose the authors whose posts you want to show"
|
2230 |
msgstr "Выберите авторов, чьи записи хотите показать"
|
2231 |
|
2232 |
-
#: inc/core/data.php:
|
2233 |
msgid "Meta key"
|
2234 |
msgstr "Произвольное поле"
|
2235 |
|
2236 |
-
#: inc/core/data.php:
|
2237 |
msgid "Enter meta key name to show posts that have this key"
|
2238 |
msgstr ""
|
2239 |
"Введите оригинальное имя произвольного поля, чтобы показать все записи у "
|
2240 |
"которых это поле задано"
|
2241 |
|
2242 |
-
#: inc/core/data.php:
|
2243 |
msgid "Offset"
|
2244 |
msgstr "Смещение (offset)"
|
2245 |
|
2246 |
-
#: inc/core/data.php:
|
2247 |
msgid "Specify offset to start posts loop not from first post"
|
2248 |
msgstr ""
|
2249 |
"Укажите кол-во записей, которые будут пропущены и не показаны. Например, "
|
2250 |
"если указать 2, то будут показаны записи начиная со третьей"
|
2251 |
|
2252 |
-
#: inc/core/data.php:
|
2253 |
msgid "Descending"
|
2254 |
msgstr "По убыванию"
|
2255 |
|
2256 |
-
#: inc/core/data.php:
|
2257 |
msgid "Ascending"
|
2258 |
msgstr "По возрастанию"
|
2259 |
|
2260 |
-
#: inc/core/data.php:
|
2261 |
msgid "Order"
|
2262 |
msgstr "Порядок"
|
2263 |
|
2264 |
-
#: inc/core/data.php:
|
2265 |
msgid "Posts order"
|
2266 |
msgstr "Порядок сортировки записей"
|
2267 |
|
2268 |
-
#: inc/core/data.php:
|
2269 |
msgid "Post ID"
|
2270 |
msgstr "ID записи"
|
2271 |
|
2272 |
-
#: inc/core/data.php:
|
2273 |
msgid "Post author"
|
2274 |
msgstr "Автор записи"
|
2275 |
|
2276 |
-
#: inc/core/data.php:
|
2277 |
msgid "Post title"
|
2278 |
msgstr "Заголовок записи"
|
2279 |
|
2280 |
-
#: inc/core/data.php:
|
2281 |
msgid "Post slug"
|
2282 |
msgstr "Ссылка записи (slug)"
|
2283 |
|
2284 |
-
#: inc/core/data.php:
|
2285 |
msgid "Date"
|
2286 |
msgstr "Дата"
|
2287 |
|
2288 |
-
#: inc/core/data.php:
|
2289 |
msgid "Last modified date"
|
2290 |
msgstr "Дата изменения"
|
2291 |
|
2292 |
-
#: inc/core/data.php:
|
2293 |
msgid "Post parent"
|
2294 |
msgstr "Родитель"
|
2295 |
|
2296 |
-
#: inc/core/data.php:
|
2297 |
msgid "Random"
|
2298 |
msgstr "Случайно"
|
2299 |
|
2300 |
-
#: inc/core/data.php:
|
2301 |
msgid "Comments number"
|
2302 |
msgstr "Кол-во комментариев"
|
2303 |
|
2304 |
-
#: inc/core/data.php:
|
2305 |
msgid "Menu order"
|
2306 |
msgstr "Порядок меню"
|
2307 |
|
2308 |
-
#: inc/core/data.php:
|
2309 |
msgid "Meta key values"
|
2310 |
msgstr "Значение произвольного поля"
|
2311 |
|
2312 |
-
#: inc/core/data.php:
|
2313 |
msgid "Order by"
|
2314 |
msgstr "Сортировать по"
|
2315 |
|
2316 |
-
#: inc/core/data.php:
|
2317 |
msgid "Order posts by"
|
2318 |
msgstr "Сортировать записи по следующему признаку"
|
2319 |
|
2320 |
-
#: inc/core/data.php:
|
2321 |
msgid "Show childrens of entered post (enter post ID)"
|
2322 |
msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
|
2323 |
|
2324 |
-
#: inc/core/data.php:
|
2325 |
msgid "Published"
|
2326 |
msgstr "Опубликован"
|
2327 |
|
2328 |
-
#: inc/core/data.php:
|
2329 |
msgid "Pending"
|
2330 |
msgstr "Ожидает"
|
2331 |
|
2332 |
-
#: inc/core/data.php:
|
2333 |
msgid "Draft"
|
2334 |
msgstr "Черновик"
|
2335 |
|
2336 |
-
#: inc/core/data.php:
|
2337 |
msgid "Auto-draft"
|
2338 |
msgstr "Авто-черновик"
|
2339 |
|
2340 |
-
#: inc/core/data.php:
|
2341 |
msgid "Future post"
|
2342 |
msgstr "Запланирован"
|
2343 |
|
2344 |
-
#: inc/core/data.php:
|
2345 |
msgid "Private post"
|
2346 |
msgstr "Приватная запись"
|
2347 |
|
2348 |
-
#: inc/core/data.php:
|
2349 |
msgid "Inherit"
|
2350 |
msgstr "Вложенный"
|
2351 |
|
2352 |
-
#: inc/core/data.php:
|
2353 |
msgid "Trashed"
|
2354 |
msgstr "В корзине"
|
2355 |
|
2356 |
-
#: inc/core/data.php:
|
2357 |
msgid "Any"
|
2358 |
msgstr "Любой"
|
2359 |
|
2360 |
-
#: inc/core/data.php:
|
2361 |
msgid "Post status"
|
2362 |
msgstr "Статус записи"
|
2363 |
|
2364 |
-
#: inc/core/data.php:
|
2365 |
msgid "Show only posts with selected status"
|
2366 |
msgstr "Показать только записи с выбранным статусом"
|
2367 |
|
2368 |
-
#: inc/core/data.php:
|
2369 |
msgid "Ignore sticky"
|
2370 |
msgstr "Игнорировать прикрепленные"
|
2371 |
|
2372 |
-
#: inc/core/data.php:
|
2373 |
msgid "Select Yes to ignore posts that is sticked"
|
2374 |
msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
|
2375 |
|
2376 |
-
#: inc/core/data.php:
|
2377 |
msgid "Custom posts query with customizable template"
|
2378 |
msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
|
2379 |
|
2380 |
-
#: inc/core/data.php:
|
2381 |
msgid "Dummy text"
|
2382 |
msgstr "Текст рыба"
|
2383 |
|
2384 |
-
#: inc/core/data.php:
|
2385 |
msgid "Paragraphs"
|
2386 |
msgstr "Параграфы"
|
2387 |
|
2388 |
-
#: inc/core/data.php:
|
2389 |
msgid "Words"
|
2390 |
msgstr "Слова"
|
2391 |
|
2392 |
-
#: inc/core/data.php:
|
2393 |
msgid "Bytes"
|
2394 |
msgstr "Байты"
|
2395 |
|
2396 |
-
#: inc/core/data.php:
|
2397 |
msgid "What"
|
2398 |
msgstr "Что"
|
2399 |
|
2400 |
-
#: inc/core/data.php:
|
2401 |
msgid "What to generate"
|
2402 |
msgstr "Что генерировать"
|
2403 |
|
2404 |
-
#: inc/core/data.php:
|
2405 |
msgid "Amount"
|
2406 |
msgstr "Количество"
|
2407 |
|
2408 |
-
#: inc/core/data.php:
|
2409 |
msgid ""
|
2410 |
"How many items (paragraphs or words) to generate. Minimum words amount is 5"
|
2411 |
msgstr ""
|
2412 |
"Какое количество (параграфов или слов) генерировать. Минимальное количество "
|
2413 |
"слов - 5"
|
2414 |
|
2415 |
-
#: inc/core/data.php:
|
2416 |
msgid "Cache"
|
2417 |
msgstr "Кеш"
|
2418 |
|
2419 |
-
#: inc/core/data.php:
|
2420 |
msgid ""
|
2421 |
"Generated text will be cached. Be careful with this option. If you disable "
|
2422 |
"it and insert many dummy_text shortcodes the page load time will be highly "
|
@@ -2426,111 +2438,125 @@ msgstr ""
|
|
2426 |
"вы отключите её и вставите много таких шорткодов на странице, то время "
|
2427 |
"загрузки страницы может сильно возрости"
|
2428 |
|
2429 |
-
#: inc/core/data.php:
|
2430 |
msgid "Text placeholder"
|
2431 |
msgstr "Текст болванка"
|
2432 |
|
2433 |
-
#: inc/core/data.php:
|
2434 |
msgid "Dummy image"
|
2435 |
msgstr "Изображение болванка"
|
2436 |
|
2437 |
-
#: inc/core/data.php:
|
2438 |
msgid "Image width"
|
2439 |
msgstr "Ширина изображения"
|
2440 |
|
2441 |
-
#: inc/core/data.php:
|
2442 |
msgid "Image height"
|
2443 |
msgstr "Высота изображения"
|
2444 |
|
2445 |
-
#: inc/core/data.php:
|
2446 |
msgid "Abstract"
|
2447 |
msgstr "Абстрактное"
|
2448 |
|
2449 |
-
#: inc/core/data.php:
|
2450 |
msgid "Animals"
|
2451 |
msgstr "Животные"
|
2452 |
|
2453 |
-
#: inc/core/data.php:
|
2454 |
msgid "Business"
|
2455 |
msgstr "Бизнес"
|
2456 |
|
2457 |
-
#: inc/core/data.php:
|
2458 |
msgid "Cats"
|
2459 |
msgstr "Котэ"
|
2460 |
|
2461 |
-
#: inc/core/data.php:
|
2462 |
msgid "City"
|
2463 |
msgstr "Город"
|
2464 |
|
2465 |
-
#: inc/core/data.php:
|
2466 |
msgid "Food"
|
2467 |
msgstr "Еда"
|
2468 |
|
2469 |
-
#: inc/core/data.php:
|
2470 |
msgid "Night life"
|
2471 |
msgstr "Ночная жизнь"
|
2472 |
|
2473 |
-
#: inc/core/data.php:
|
2474 |
msgid "Fashion"
|
2475 |
msgstr "Мода"
|
2476 |
|
2477 |
-
#: inc/core/data.php:
|
2478 |
msgid "People"
|
2479 |
msgstr "Люди"
|
2480 |
|
2481 |
-
#: inc/core/data.php:
|
2482 |
msgid "Nature"
|
2483 |
msgstr "Природа"
|
2484 |
|
2485 |
-
#: inc/core/data.php:
|
2486 |
msgid "Sports"
|
2487 |
msgstr "Спорт"
|
2488 |
|
2489 |
-
#: inc/core/data.php:
|
2490 |
msgid "Technics"
|
2491 |
msgstr "Техника"
|
2492 |
|
2493 |
-
#: inc/core/data.php:
|
2494 |
msgid "Transport"
|
2495 |
msgstr "Транспорт"
|
2496 |
|
2497 |
-
#: inc/core/data.php:
|
2498 |
msgid "Select the theme for this image"
|
2499 |
msgstr "Выберите тему изображений"
|
2500 |
|
2501 |
-
#: inc/core/data.php:
|
2502 |
msgid "Image placeholder with random image"
|
2503 |
msgstr "Изображение болванка со случайным изображением"
|
2504 |
|
2505 |
-
#: inc/core/data.php:
|
2506 |
msgid "Animation"
|
2507 |
msgstr "Анимация"
|
2508 |
|
2509 |
-
#: inc/core/data.php:
|
2510 |
msgid "Select animation type"
|
2511 |
msgstr "Выберите тип анимации"
|
2512 |
|
2513 |
-
#: inc/core/data.php:
|
2514 |
msgid "Duration"
|
2515 |
msgstr "Продолжительность"
|
2516 |
|
2517 |
-
#: inc/core/data.php:
|
2518 |
msgid "Animation duration (seconds)"
|
2519 |
msgstr "Продолжительность анимации (секунды)"
|
2520 |
|
2521 |
-
#: inc/core/data.php:
|
2522 |
msgid "Delay"
|
2523 |
msgstr "Задержка"
|
2524 |
|
2525 |
-
#: inc/core/data.php:
|
2526 |
msgid "Animation delay (seconds)"
|
2527 |
msgstr "Задержка перед началом анимации (секунды)"
|
2528 |
|
2529 |
-
#: inc/core/data.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2530 |
msgid "Animated content"
|
2531 |
msgstr "Анимированное содержимое"
|
2532 |
|
2533 |
-
#: inc/core/data.php:
|
2534 |
msgid "Wrapper for animation. Any nested element will be animated"
|
2535 |
msgstr ""
|
2536 |
"Контейнер для анимации. Любой элемент помещенный в этот контейнер будет "
|
@@ -2577,55 +2603,55 @@ msgstr "Управление галереями"
|
|
2577 |
msgid "Reload galleries"
|
2578 |
msgstr "Обновить список"
|
2579 |
|
2580 |
-
#: inc/core/generator-views.php:
|
2581 |
msgid "Horizontal offset"
|
2582 |
msgstr "Горизонтально"
|
2583 |
|
2584 |
-
#: inc/core/generator-views.php:
|
2585 |
msgid "Vertical offset"
|
2586 |
msgstr "Вертикально"
|
2587 |
|
2588 |
-
#: inc/core/generator-views.php:
|
2589 |
msgid "Blur"
|
2590 |
msgstr "Размытие"
|
2591 |
|
2592 |
-
#: inc/core/generator-views.php:
|
2593 |
msgid "Border width"
|
2594 |
msgstr "Ширина рамки"
|
2595 |
|
2596 |
-
#: inc/core/generator-views.php:
|
2597 |
msgid "Border style"
|
2598 |
msgstr "Стиль рамки"
|
2599 |
|
2600 |
-
#: inc/core/generator-views.php:
|
2601 |
msgid "Border color"
|
2602 |
msgstr "Цвет рамки"
|
2603 |
|
2604 |
-
#: inc/core/generator-views.php:
|
2605 |
msgid "Media library"
|
2606 |
msgstr "Медиа библиотека"
|
2607 |
|
2608 |
-
#: inc/core/generator-views.php:
|
2609 |
msgid "Recent posts"
|
2610 |
msgstr "Последние записи"
|
2611 |
|
2612 |
-
#: inc/core/generator-views.php:
|
2613 |
msgid "Category"
|
2614 |
msgstr "Категория"
|
2615 |
|
2616 |
-
#: inc/core/generator-views.php:
|
2617 |
msgid "Select images source"
|
2618 |
msgstr "Выберите источник изображений"
|
2619 |
|
2620 |
-
#: inc/core/generator-views.php:
|
2621 |
msgid "Select taxonomy"
|
2622 |
msgstr "Выберите таксономию"
|
2623 |
|
2624 |
-
#: inc/core/generator-views.php:
|
2625 |
msgid "Add images"
|
2626 |
msgstr "Добавить изображения"
|
2627 |
|
2628 |
-
#: inc/core/generator-views.php:
|
2629 |
msgid ""
|
2630 |
"Click the button above and select images.<br>You can select multimple images "
|
2631 |
"with Ctrl (Cmd) key"
|
@@ -2633,7 +2659,7 @@ msgstr ""
|
|
2633 |
"Нажмите кнопку выше и выберите изображения.<br>Вы можете выбрать несколько "
|
2634 |
"изображений удерживая клавишу Ctrl (Cmd)"
|
2635 |
|
2636 |
-
#: inc/core/generator-views.php:
|
2637 |
msgid ""
|
2638 |
"Select categories to retrieve posts from.<br>You can select multiple "
|
2639 |
"categories with Ctrl (Cmd) key"
|
@@ -2641,7 +2667,7 @@ msgstr ""
|
|
2641 |
"Выберите категории из которых брать записи.<br>Вы можете выбрать несколько "
|
2642 |
"категорий удерживая клавишу Ctrl (Cmd)"
|
2643 |
|
2644 |
-
#: inc/core/generator-views.php:
|
2645 |
msgid ""
|
2646 |
"Select taxonomy and it's terms.<br>You can select multiple terms with Ctrl "
|
2647 |
"(Cmd) key"
|
@@ -2849,22 +2875,29 @@ msgstr "Заголовок вкладкки"
|
|
2849 |
msgid "This is box title"
|
2850 |
msgstr "Заголовок блока"
|
2851 |
|
2852 |
-
#: inc/core/shortcodes.php:
|
2853 |
-
|
2854 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2855 |
msgid "please specify correct url"
|
2856 |
msgstr "пожалуйста укажите корректную ссылку"
|
2857 |
|
2858 |
-
#: inc/core/shortcodes.php:
|
2859 |
msgid "This menu doesn't exists, or has no elements"
|
2860 |
msgstr "Такое меню не существует, или в нем нет ни одного элемента"
|
2861 |
|
2862 |
-
#: inc/core/shortcodes.php:
|
2863 |
-
#: inc/core/shortcodes.php:
|
2864 |
msgid "images not found"
|
2865 |
msgstr "изображения не найдены"
|
2866 |
|
2867 |
-
#: inc/core/shortcodes.php:
|
2868 |
msgid "template not found"
|
2869 |
msgstr "шаблон не найден"
|
2870 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gn_themes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-11-12 01:23+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-11-12 01:26+0300\n"
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
144 |
"легкостью создать новый шорткод или даже перезаписать оригинальный"
|
145 |
|
146 |
#: inc/core/admin-views.php:121
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
msgid "Skins"
|
148 |
msgstr "Скины"
|
149 |
|
150 |
+
#: inc/core/admin-views.php:122
|
151 |
msgid ""
|
152 |
"Set of additional skins for Shrtcodes Ultimate. It includes skins for "
|
153 |
"accordeons/spoilers, tabs and some other shortcodes"
|
155 |
"Набор дополнительных скинов для шорткодов плагина. Набор включает в себя "
|
156 |
"скины для аккордеонов/спойлеров, вкладок и некоторых других шорткодов"
|
157 |
|
158 |
+
#: inc/core/admin-views.php:128
|
159 |
msgid "Shortcodes Ultimate Add-ons"
|
160 |
msgstr "Дополнения для Shortcodes Ultimate"
|
161 |
|
162 |
+
#: inc/core/admin-views.php:131 inc/core/admin-views.php:138
|
163 |
msgid "Learn more"
|
164 |
msgstr "Узнать больше"
|
165 |
|
166 |
+
#: inc/core/admin-views.php:135
|
167 |
msgid "Other WordPress Plugins"
|
168 |
msgstr "Другие плагины для WordPress"
|
169 |
|
170 |
+
#: inc/core/assets.php:67
|
171 |
msgid "Choose files"
|
172 |
msgstr "Выбор файлов"
|
173 |
|
174 |
+
#: inc/core/assets.php:68
|
175 |
msgid "Add selected files"
|
176 |
msgstr "Добавить выбранные файлы"
|
177 |
|
178 |
+
#: inc/core/assets.php:69
|
179 |
+
msgid "This button is not clickable"
|
180 |
+
msgstr "Эта кнопка не нажимается"
|
181 |
+
|
182 |
+
#: inc/core/assets.php:75 inc/vendor/class.sunrise.php:165
|
183 |
msgid "Choose file"
|
184 |
msgstr "Выбор файла"
|
185 |
|
186 |
+
#: inc/core/assets.php:76
|
187 |
msgid "Insert"
|
188 |
msgstr "Вставить"
|
189 |
|
190 |
+
#: inc/core/assets.php:77
|
191 |
msgid "Select images"
|
192 |
msgstr "Выберите изображения"
|
193 |
|
194 |
+
#: inc/core/assets.php:78
|
195 |
msgid "Add selected images"
|
196 |
msgstr "Добавить выбранные изображения"
|
197 |
|
198 |
+
#: inc/core/assets.php:91
|
199 |
msgid ""
|
200 |
"This shortcode doesn't work in live preview. Please insert it into editor "
|
201 |
"and preview on the site."
|
211 |
msgid "Content"
|
212 |
msgstr "Содержимое"
|
213 |
|
214 |
+
#: inc/core/data.php:19 inc/core/data.php:803
|
215 |
msgid "Box"
|
216 |
msgstr "Блок"
|
217 |
|
219 |
msgid "Media"
|
220 |
msgstr "Медиа"
|
221 |
|
222 |
+
#: inc/core/data.php:21 inc/core/data.php:1940
|
223 |
msgid "Gallery"
|
224 |
msgstr "Галерея"
|
225 |
|
227 |
msgid "Other"
|
228 |
msgstr "Другое"
|
229 |
|
230 |
+
#: inc/core/data.php:28 inc/core/data.php:1718 inc/core/data.php:1826
|
231 |
+
#: inc/core/data.php:1953 inc/core/data.php:2095
|
232 |
msgid "None"
|
233 |
msgstr "Нет"
|
234 |
|
283 |
msgid "Unlimited buttons"
|
284 |
msgstr "Всевозможные кнопки"
|
285 |
|
286 |
+
#: inc/core/data.php:81
|
287 |
+
msgid "Animations"
|
288 |
+
msgstr "Анимации"
|
289 |
+
|
290 |
+
#: inc/core/data.php:89
|
291 |
msgid "Advanced examples"
|
292 |
msgstr "Дополнительные примеры"
|
293 |
|
294 |
+
#: inc/core/data.php:92
|
295 |
msgid "Interacting with posts shortcode"
|
296 |
msgstr "Работа с шорткодом posts"
|
297 |
|
298 |
+
#: inc/core/data.php:98
|
299 |
msgid "Nested shortcodes, shortcodes inside of attributes"
|
300 |
msgstr "Вложенные шорткоды, шорткоды в атрибутах"
|
301 |
|
302 |
+
#: inc/core/data.php:115
|
303 |
msgid "Heading"
|
304 |
msgstr "Заголовок"
|
305 |
|
306 |
+
#: inc/core/data.php:122 inc/core/data.php:176 inc/core/data.php:258
|
307 |
+
#: inc/core/data.php:406 inc/core/data.php:436 inc/core/data.php:497
|
308 |
+
#: inc/core/data.php:662 inc/core/data.php:815 inc/core/data.php:979
|
309 |
+
msgid "Default"
|
310 |
+
msgstr "По умолчанию"
|
311 |
+
|
312 |
+
#: inc/core/data.php:125 inc/core/data.php:179 inc/core/data.php:263
|
313 |
+
#: inc/core/data.php:439 inc/core/data.php:503 inc/core/data.php:672
|
314 |
+
#: inc/core/data.php:822 inc/core/data.php:949
|
315 |
+
msgid "Style"
|
316 |
+
msgstr "Стиль"
|
317 |
+
|
318 |
+
#: inc/core/data.php:126
|
319 |
+
msgid "Choose style for this heading"
|
320 |
+
msgstr "Выберите стиль для этого заголовка"
|
321 |
+
|
322 |
+
#: inc/core/data.php:126 inc/core/data.php:180 inc/core/data.php:264
|
323 |
+
#: inc/core/data.php:440
|
324 |
+
msgid "Install additional styles"
|
325 |
+
msgstr "Установить дополнительные стили"
|
326 |
+
|
327 |
+
#: inc/core/data.php:134 inc/core/data.php:511 inc/core/data.php:590
|
328 |
+
#: inc/core/data.php:693
|
329 |
msgid "Size"
|
330 |
msgstr "Размер"
|
331 |
|
332 |
+
#: inc/core/data.php:135
|
333 |
+
msgid "Select heading size (pixels)"
|
334 |
+
msgstr "Выберите размер заголовка (в пикселях)"
|
335 |
|
336 |
+
#: inc/core/data.php:140 inc/core/data.php:472 inc/core/data.php:533
|
337 |
+
#: inc/core/data.php:957
|
338 |
msgid "Left"
|
339 |
msgstr "Слева"
|
340 |
|
341 |
+
#: inc/core/data.php:141 inc/core/data.php:534 inc/core/data.php:1767
|
342 |
+
#: inc/core/data.php:1894
|
343 |
msgid "Center"
|
344 |
msgstr "По центру"
|
345 |
|
346 |
+
#: inc/core/data.php:142 inc/core/data.php:473 inc/core/data.php:535
|
347 |
+
#: inc/core/data.php:958
|
348 |
msgid "Right"
|
349 |
msgstr "Справа"
|
350 |
|
351 |
+
#: inc/core/data.php:145 inc/core/data.php:476 inc/core/data.php:538
|
352 |
msgid "Align"
|
353 |
msgstr "Выравнивание"
|
354 |
|
355 |
+
#: inc/core/data.php:146
|
356 |
msgid "Heading text alignment"
|
357 |
msgstr "Выравнивание текста в заголовке"
|
358 |
|
359 |
+
#: inc/core/data.php:154
|
360 |
+
msgid "Margin"
|
361 |
+
msgstr "Отступ"
|
362 |
+
|
363 |
+
#: inc/core/data.php:155
|
364 |
+
msgid "Bottom margin (pixels)"
|
365 |
+
msgstr "Отступ снизу (в пикселях)"
|
366 |
+
|
367 |
+
#: inc/core/data.php:159 inc/core/data.php:199 inc/core/data.php:231
|
368 |
+
#: inc/core/data.php:294 inc/core/data.php:310 inc/core/data.php:337
|
369 |
+
#: inc/core/data.php:361 inc/core/data.php:389 inc/core/data.php:419
|
370 |
+
#: inc/core/data.php:455 inc/core/data.php:480 inc/core/data.php:516
|
371 |
+
#: inc/core/data.php:543 inc/core/data.php:559 inc/core/data.php:601
|
372 |
+
#: inc/core/data.php:629 inc/core/data.php:750 inc/core/data.php:793
|
373 |
+
#: inc/core/data.php:849 inc/core/data.php:886 inc/core/data.php:918
|
374 |
+
#: inc/core/data.php:1020 inc/core/data.php:1036 inc/core/data.php:1088
|
375 |
+
#: inc/core/data.php:1206 inc/core/data.php:1256 inc/core/data.php:1299
|
376 |
+
#: inc/core/data.php:1338 inc/core/data.php:1407 inc/core/data.php:1428
|
377 |
+
#: inc/core/data.php:1459 inc/core/data.php:1492 inc/core/data.php:1508
|
378 |
+
#: inc/core/data.php:1538 inc/core/data.php:1558 inc/core/data.php:1585
|
379 |
+
#: inc/core/data.php:1606 inc/core/data.php:1651 inc/core/data.php:1696
|
380 |
+
#: inc/core/data.php:1804 inc/core/data.php:1931 inc/core/data.php:2001
|
381 |
+
#: inc/core/data.php:2175 inc/core/data.php:2230 inc/core/data.php:2276
|
382 |
msgid "Class"
|
383 |
msgstr "Класс"
|
384 |
|
385 |
+
#: inc/core/data.php:160 inc/core/data.php:200 inc/core/data.php:232
|
386 |
+
#: inc/core/data.php:295 inc/core/data.php:311 inc/core/data.php:338
|
387 |
+
#: inc/core/data.php:362 inc/core/data.php:390 inc/core/data.php:420
|
388 |
+
#: inc/core/data.php:456 inc/core/data.php:481 inc/core/data.php:517
|
389 |
+
#: inc/core/data.php:544 inc/core/data.php:560 inc/core/data.php:602
|
390 |
+
#: inc/core/data.php:630 inc/core/data.php:751 inc/core/data.php:794
|
391 |
+
#: inc/core/data.php:850 inc/core/data.php:887 inc/core/data.php:919
|
392 |
+
#: inc/core/data.php:1021 inc/core/data.php:1037 inc/core/data.php:1089
|
393 |
+
#: inc/core/data.php:1207 inc/core/data.php:1257 inc/core/data.php:1300
|
394 |
+
#: inc/core/data.php:1339 inc/core/data.php:1408 inc/core/data.php:1429
|
395 |
+
#: inc/core/data.php:1460 inc/core/data.php:1493 inc/core/data.php:1509
|
396 |
+
#: inc/core/data.php:1539 inc/core/data.php:1559 inc/core/data.php:1586
|
397 |
+
#: inc/core/data.php:1607 inc/core/data.php:1652 inc/core/data.php:1697
|
398 |
+
#: inc/core/data.php:1805 inc/core/data.php:1932 inc/core/data.php:2002
|
399 |
+
#: inc/core/data.php:2176 inc/core/data.php:2231 inc/core/data.php:2277
|
400 |
msgid "Extra CSS class"
|
401 |
msgstr "Дополнительный CSS класс"
|
402 |
|
403 |
+
#: inc/core/data.php:163
|
404 |
msgid "Heading text"
|
405 |
msgstr "Текст заголовка"
|
406 |
|
407 |
+
#: inc/core/data.php:164
|
408 |
msgid "Styled heading"
|
409 |
msgstr "Стильный заголовок"
|
410 |
|
411 |
+
#: inc/core/data.php:169
|
412 |
msgid "Tabs"
|
413 |
msgstr "Вкладки"
|
414 |
|
415 |
+
#: inc/core/data.php:180
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
416 |
msgid "Choose style for this tabs"
|
417 |
msgstr "Выберите стиль для этих вкладок"
|
418 |
|
419 |
+
#: inc/core/data.php:188
|
|
|
|
|
|
|
|
|
420 |
msgid "Active tab"
|
421 |
msgstr "Активная вкладка"
|
422 |
|
423 |
+
#: inc/core/data.php:189
|
424 |
msgid "Select which tab is open by default"
|
425 |
msgstr "Выберите какая вкладка будет открыта по умолчанию"
|
426 |
|
427 |
+
#: inc/core/data.php:194
|
428 |
msgid "Vertical"
|
429 |
msgstr "Вертикально"
|
430 |
|
431 |
+
#: inc/core/data.php:195
|
432 |
msgid "Show tabs vertically"
|
433 |
msgstr "Отображать вкладки вертикально"
|
434 |
|
435 |
+
#: inc/core/data.php:203
|
436 |
msgid ""
|
437 |
"[%prefix_tab title=\"Title 1\"]Content 1[/%prefix_tab]\n"
|
438 |
"[%prefix_tab title=\"Title 2\"]Content 2[/%prefix_tab]\n"
|
442 |
"[%prefix_tab title=\"Заголовок 2\"]Содержимое вкладки 2[/%prefix_tab]\n"
|
443 |
"[%prefix_tab title=\"Заголовок 3\"]Содержимое вкладки 3[/%prefix_tab]"
|
444 |
|
445 |
+
#: inc/core/data.php:204
|
446 |
msgid "Tabs container"
|
447 |
msgstr "Контейнер вкладок"
|
448 |
|
449 |
+
#: inc/core/data.php:209
|
450 |
msgid "Tab"
|
451 |
msgstr "Вкладка"
|
452 |
|
453 |
+
#: inc/core/data.php:214
|
454 |
msgid "Tab name"
|
455 |
msgstr "Имя вкладки"
|
456 |
|
457 |
+
#: inc/core/data.php:215 inc/core/data.php:247 inc/core/data.php:767
|
458 |
+
#: inc/core/data.php:810 inc/core/data.php:1366
|
459 |
msgid "Title"
|
460 |
msgstr "Заголовок"
|
461 |
|
462 |
+
#: inc/core/data.php:216
|
463 |
msgid "Enter tab name"
|
464 |
msgstr "Введите имя вкладки"
|
465 |
|
466 |
+
#: inc/core/data.php:221
|
467 |
msgid "Disabled"
|
468 |
msgstr "Отключено"
|
469 |
|
470 |
+
#: inc/core/data.php:222
|
471 |
msgid "Is this tab disabled"
|
472 |
msgstr "Эта вкладка отключена"
|
473 |
|
474 |
+
#: inc/core/data.php:226 inc/core/data.php:289
|
475 |
msgid "Anchor"
|
476 |
msgstr "Якорь"
|
477 |
|
478 |
+
#: inc/core/data.php:227
|
479 |
msgid ""
|
480 |
"You can use unique anchor for this tab to access it with hash in page url. "
|
481 |
"For example: type here <b%value>Hello</b> and then use url like http://"
|
486 |
"используйте ссылку вида http://example.com/page-utl#Hello. Эта вкладка будет "
|
487 |
"активирована и страница будет прокручена к ней"
|
488 |
|
489 |
+
#: inc/core/data.php:235
|
490 |
msgid "Tab content"
|
491 |
msgstr "Содержимое вкладки"
|
492 |
|
493 |
+
#: inc/core/data.php:236
|
494 |
msgid "Single tab"
|
495 |
msgstr "Одиночная вкладка"
|
496 |
|
497 |
+
#: inc/core/data.php:241
|
498 |
msgid "Spoiler"
|
499 |
msgstr "Спойлер"
|
500 |
|
501 |
+
#: inc/core/data.php:246 inc/core/shortcodes.php:72
|
502 |
msgid "Spoiler title"
|
503 |
msgstr "Скрытый текст"
|
504 |
|
505 |
+
#: inc/core/data.php:247
|
506 |
msgid "Text in spoiler title"
|
507 |
msgstr "Текст для заголовка спойлера"
|
508 |
|
509 |
+
#: inc/core/data.php:252
|
510 |
msgid "Open"
|
511 |
msgstr "Открыт"
|
512 |
|
513 |
+
#: inc/core/data.php:253
|
514 |
msgid "Is spoiler content visible by default"
|
515 |
msgstr "Виден ли контент спойлера по умолчанию"
|
516 |
|
517 |
+
#: inc/core/data.php:259
|
518 |
msgid "Fancy"
|
519 |
msgstr "Стильный"
|
520 |
|
521 |
+
#: inc/core/data.php:260 inc/core/data.php:500
|
522 |
msgid "Simple"
|
523 |
msgstr "Простой"
|
524 |
|
525 |
+
#: inc/core/data.php:264
|
526 |
msgid "Choose style for this spoiler"
|
527 |
msgstr "Выберите стиль для этого спойлера"
|
528 |
|
529 |
+
#: inc/core/data.php:269
|
530 |
msgid "Plus"
|
531 |
msgstr "Плюс"
|
532 |
|
533 |
+
#: inc/core/data.php:270
|
534 |
msgid "Plus circle"
|
535 |
msgstr "Плюс в круге"
|
536 |
|
537 |
+
#: inc/core/data.php:271
|
538 |
msgid "Plus square 1"
|
539 |
msgstr "Плюс в квадрате 1"
|
540 |
|
541 |
+
#: inc/core/data.php:272
|
542 |
msgid "Plus square 2"
|
543 |
msgstr "Плюс в квадрате 2"
|
544 |
|
545 |
+
#: inc/core/data.php:273
|
546 |
msgid "Arrow"
|
547 |
msgstr "Стрелка"
|
548 |
|
549 |
+
#: inc/core/data.php:274
|
550 |
msgid "Arrow circle 1"
|
551 |
msgstr "Стрелка в круге 1"
|
552 |
|
553 |
+
#: inc/core/data.php:275
|
554 |
msgid "Arrow circle 2"
|
555 |
msgstr "Стрелка в круге 2"
|
556 |
|
557 |
+
#: inc/core/data.php:276
|
558 |
msgid "Chevron"
|
559 |
msgstr "Уголок"
|
560 |
|
561 |
+
#: inc/core/data.php:277
|
562 |
msgid "Chevron circle"
|
563 |
msgstr "Уголок в круге"
|
564 |
|
565 |
+
#: inc/core/data.php:278
|
566 |
msgid "Caret"
|
567 |
msgstr "Треугольник"
|
568 |
|
569 |
+
#: inc/core/data.php:279
|
570 |
msgid "Caret square"
|
571 |
msgstr "Треугольник в квадрате"
|
572 |
|
573 |
+
#: inc/core/data.php:280
|
574 |
msgid "Folder 1"
|
575 |
msgstr "Папка 1"
|
576 |
|
577 |
+
#: inc/core/data.php:281
|
578 |
msgid "Folder 2"
|
579 |
msgstr "Папка 2"
|
580 |
|
581 |
+
#: inc/core/data.php:284 inc/core/data.php:618 inc/core/data.php:723
|
582 |
+
#: inc/core/data.php:773
|
583 |
msgid "Icon"
|
584 |
msgstr "Иконка"
|
585 |
|
586 |
+
#: inc/core/data.php:285
|
587 |
msgid "Icons for spoiler"
|
588 |
msgstr "Иконка для спойлера"
|
589 |
|
590 |
+
#: inc/core/data.php:290
|
591 |
msgid ""
|
592 |
"You can use unique anchor for this spoiler to access it with hash in page "
|
593 |
"url. For example: type here <b%value>Hello</b> and then use url like http://"
|
598 |
"используйте ссылку вида http://example.com/page-utl#Hello. Этот спойлер "
|
599 |
"будет открыт и страница будет прокручена к нему"
|
600 |
|
601 |
+
#: inc/core/data.php:298
|
602 |
msgid "Hidden content"
|
603 |
msgstr "Скрытое содержимое"
|
604 |
|
605 |
+
#: inc/core/data.php:299
|
606 |
msgid "Spoiler with hidden content"
|
607 |
msgstr "Спойлер со скрытым содержимым"
|
608 |
|
609 |
+
#: inc/core/data.php:304
|
610 |
msgid "Accordion"
|
611 |
msgstr "Аккордеон"
|
612 |
|
613 |
+
#: inc/core/data.php:314
|
614 |
msgid ""
|
615 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
616 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
620 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]\n"
|
621 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]"
|
622 |
|
623 |
+
#: inc/core/data.php:315
|
624 |
msgid "Accordion with spoilers"
|
625 |
msgstr "Аккордеон со спойлерами"
|
626 |
|
627 |
+
#: inc/core/data.php:320
|
628 |
msgid "Divider"
|
629 |
msgstr "Разделитель"
|
630 |
|
631 |
+
#: inc/core/data.php:327
|
632 |
msgid "Show TOP link"
|
633 |
msgstr "Показать ссылку ВВЕРХ"
|
634 |
|
635 |
+
#: inc/core/data.php:328
|
636 |
msgid "Show link to top of the page or not"
|
637 |
msgstr "Показывать ссылку ВВЕРХ или нет"
|
638 |
|
639 |
+
#: inc/core/data.php:332 inc/core/shortcodes.php:99
|
640 |
msgid "Go to top"
|
641 |
msgstr "Вверх"
|
642 |
|
643 |
+
#: inc/core/data.php:333
|
644 |
msgid "Link text"
|
645 |
msgstr "Текст ссылки"
|
646 |
|
647 |
+
#: inc/core/data.php:333
|
648 |
msgid "Text for the GO TOP link"
|
649 |
msgstr "Текст ссылки ВВЕРХ"
|
650 |
|
651 |
+
#: inc/core/data.php:341
|
652 |
msgid "Content divider with optional TOP link"
|
653 |
msgstr "Разделитель текста со ссылкой ВВЕРХ"
|
654 |
|
655 |
+
#: inc/core/data.php:346
|
656 |
msgid "Spacer"
|
657 |
msgstr "Пробел"
|
658 |
|
659 |
+
#: inc/core/data.php:356 inc/core/data.php:1071 inc/core/data.php:1127
|
660 |
+
#: inc/core/data.php:1239 inc/core/data.php:1288 inc/core/data.php:1384
|
661 |
+
#: inc/core/data.php:1640 inc/core/data.php:1679 inc/core/data.php:1751
|
662 |
+
#: inc/core/data.php:1860 inc/core/data.php:1986 inc/core/data.php:2203
|
663 |
msgid "Height"
|
664 |
msgstr "Высота"
|
665 |
|
666 |
+
#: inc/core/data.php:357
|
667 |
msgid "Height of the spacer in pixels"
|
668 |
msgstr "Высота пробела в пикселях"
|
669 |
|
670 |
+
#: inc/core/data.php:365
|
671 |
msgid "Empty space with adjustable height"
|
672 |
msgstr "Пробел с настраиваемой высотой"
|
673 |
|
674 |
+
#: inc/core/data.php:370
|
675 |
msgid "Highlight"
|
676 |
msgstr "Выделитель"
|
677 |
|
678 |
+
#: inc/core/data.php:378 inc/core/data.php:678 inc/core/data.php:867
|
679 |
msgid "Background"
|
680 |
msgstr "Фон"
|
681 |
|
682 |
+
#: inc/core/data.php:379
|
683 |
msgid "Highlighted text background color"
|
684 |
msgstr "Цвет фона выделяемого текста"
|
685 |
|
686 |
+
#: inc/core/data.php:385 inc/core/data.php:684 inc/core/data.php:873
|
687 |
msgid "Text color"
|
688 |
msgstr "Цвет текста"
|
689 |
|
690 |
+
#: inc/core/data.php:385
|
691 |
msgid "Highlighted text color"
|
692 |
msgstr "Цвет выделяемого текста"
|
693 |
|
694 |
+
#: inc/core/data.php:393 inc/core/data.php:394
|
695 |
msgid "Highlighted text"
|
696 |
msgstr "Подсвеченный текст"
|
697 |
|
698 |
+
#: inc/core/data.php:399 inc/core/data.php:423
|
699 |
#: inc/vendor/class.sunrise-views.php:49
|
700 |
msgid "Label"
|
701 |
msgstr "Ярлык"
|
702 |
|
703 |
+
#: inc/core/data.php:407
|
704 |
msgid "Success"
|
705 |
msgstr "Успех"
|
706 |
|
707 |
+
#: inc/core/data.php:408
|
708 |
msgid "Warning"
|
709 |
msgstr "Внимание"
|
710 |
|
711 |
+
#: inc/core/data.php:409
|
712 |
msgid "Important"
|
713 |
msgstr "Важно"
|
714 |
|
715 |
+
#: inc/core/data.php:410
|
716 |
msgid "Black"
|
717 |
msgstr "Черный"
|
718 |
|
719 |
+
#: inc/core/data.php:411
|
720 |
msgid "Info"
|
721 |
msgstr "Инфо"
|
722 |
|
723 |
+
#: inc/core/data.php:414
|
724 |
msgid "Type"
|
725 |
msgstr "Тип"
|
726 |
|
727 |
+
#: inc/core/data.php:415
|
728 |
msgid "Style of the label"
|
729 |
msgstr "Стиль ярлыка"
|
730 |
|
731 |
+
#: inc/core/data.php:424
|
732 |
msgid "Styled label"
|
733 |
msgstr "Стильный ярлык"
|
734 |
|
735 |
+
#: inc/core/data.php:429 inc/core/data.php:459
|
736 |
msgid "Quote"
|
737 |
msgstr "Цитата"
|
738 |
|
739 |
+
#: inc/core/data.php:440
|
740 |
msgid "Choose style for this quote"
|
741 |
msgstr "Выберите стиль для этой цитаты"
|
742 |
|
743 |
+
#: inc/core/data.php:444
|
744 |
msgid "Cite"
|
745 |
msgstr "Автор"
|
746 |
|
747 |
+
#: inc/core/data.php:445
|
748 |
msgid "Quote author name"
|
749 |
msgstr "Имя автора цитаты"
|
750 |
|
751 |
+
#: inc/core/data.php:450
|
752 |
msgid "Cite url"
|
753 |
msgstr "Ссылка автора"
|
754 |
|
755 |
+
#: inc/core/data.php:451
|
756 |
msgid "Url of the quote author. Leave empty to disable link"
|
757 |
msgstr "Ссылка автора цитаты. Оставьте пустым, чтобы отключить ссылку"
|
758 |
|
759 |
+
#: inc/core/data.php:460
|
760 |
msgid "Blockquote alternative"
|
761 |
msgstr "Альтернатива цитаты"
|
762 |
|
763 |
+
#: inc/core/data.php:465 inc/core/data.php:484 inc/core/data.php:485
|
764 |
msgid "Pullquote"
|
765 |
msgstr "Цитата с обтеканием"
|
766 |
|
767 |
+
#: inc/core/data.php:476
|
768 |
msgid "Pullquote alignment (float)"
|
769 |
msgstr "Выравнивание цитаты (обтекание)"
|
770 |
|
771 |
+
#: inc/core/data.php:490 inc/core/data.php:521
|
772 |
msgid "Dropcap"
|
773 |
msgstr "Буквица"
|
774 |
|
775 |
+
#: inc/core/data.php:498 inc/core/data.php:663
|
776 |
msgid "Flat"
|
777 |
msgstr "Плоский"
|
778 |
|
779 |
+
#: inc/core/data.php:499
|
780 |
msgid "Light"
|
781 |
msgstr "Светлый"
|
782 |
|
783 |
+
#: inc/core/data.php:503
|
784 |
msgid "Dropcap style preset"
|
785 |
msgstr "Стиль буквицы"
|
786 |
|
787 |
+
#: inc/core/data.php:512
|
788 |
msgid "Choose dropcap size"
|
789 |
msgstr "Выберите размер буквицы"
|
790 |
|
791 |
+
#: inc/core/data.php:520
|
792 |
msgid "D"
|
793 |
msgstr "D"
|
794 |
|
795 |
+
#: inc/core/data.php:526
|
796 |
msgid "Frame"
|
797 |
msgstr "Рамка"
|
798 |
|
799 |
+
#: inc/core/data.php:539
|
800 |
msgid "Frame alignment"
|
801 |
msgstr "Выравнивание рамки"
|
802 |
|
803 |
+
#: inc/core/data.php:548
|
804 |
msgid "Styled image frame"
|
805 |
msgstr "Стильный рамка изображения"
|
806 |
|
807 |
+
#: inc/core/data.php:553
|
808 |
msgid "Row"
|
809 |
msgstr "Колонки"
|
810 |
|
811 |
+
#: inc/core/data.php:563
|
812 |
msgid ""
|
813 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
814 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
818 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]\n"
|
819 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]"
|
820 |
|
821 |
+
#: inc/core/data.php:564
|
822 |
msgid "Row for flexible columns"
|
823 |
msgstr "Контейнер с резиновыми колонками"
|
824 |
|
825 |
+
#: inc/core/data.php:569
|
826 |
msgid "Column"
|
827 |
msgstr "Колонка"
|
828 |
|
829 |
+
#: inc/core/data.php:576
|
830 |
msgid "Full width"
|
831 |
msgstr "Во всю ширину"
|
832 |
|
833 |
+
#: inc/core/data.php:577
|
834 |
msgid "One half"
|
835 |
msgstr "Одна вторая"
|
836 |
|
837 |
+
#: inc/core/data.php:578
|
838 |
msgid "One third"
|
839 |
msgstr "Одна третья"
|
840 |
|
841 |
+
#: inc/core/data.php:579
|
842 |
msgid "Two third"
|
843 |
msgstr "Две трети"
|
844 |
|
845 |
+
#: inc/core/data.php:580
|
846 |
msgid "One fourth"
|
847 |
msgstr "Одна четвертая"
|
848 |
|
849 |
+
#: inc/core/data.php:581
|
850 |
msgid "Three fourth"
|
851 |
msgstr "Три четвертых"
|
852 |
|
853 |
+
#: inc/core/data.php:582
|
854 |
msgid "One fifth"
|
855 |
msgstr "Одна пятая"
|
856 |
|
857 |
+
#: inc/core/data.php:583
|
858 |
msgid "Two fifth"
|
859 |
msgstr "Две пятых"
|
860 |
|
861 |
+
#: inc/core/data.php:584
|
862 |
msgid "Three fifth"
|
863 |
msgstr "Три пятых"
|
864 |
|
865 |
+
#: inc/core/data.php:585
|
866 |
msgid "Four fifth"
|
867 |
msgstr "Четыре пятых"
|
868 |
|
869 |
+
#: inc/core/data.php:586
|
870 |
msgid "One sixth"
|
871 |
msgstr "Одна шестая"
|
872 |
|
873 |
+
#: inc/core/data.php:587
|
874 |
msgid "Five sixth"
|
875 |
msgstr "Пять шестых"
|
876 |
|
877 |
+
#: inc/core/data.php:591
|
878 |
msgid "Select column width. This width will be calculated depend page width"
|
879 |
msgstr ""
|
880 |
"Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
|
881 |
|
882 |
+
#: inc/core/data.php:596 inc/core/data.php:704
|
883 |
msgid "Centered"
|
884 |
msgstr "По центру"
|
885 |
|
886 |
+
#: inc/core/data.php:597
|
887 |
msgid "Is this column centered on the page"
|
888 |
msgstr "Колонка выровнена по центру страницы"
|
889 |
|
890 |
+
#: inc/core/data.php:605
|
891 |
msgid "Column content"
|
892 |
msgstr "Содержимое колонки"
|
893 |
|
894 |
+
#: inc/core/data.php:606
|
895 |
msgid "Flexible and responsive columns"
|
896 |
msgstr "Резновые колонки"
|
897 |
|
898 |
+
#: inc/core/data.php:611
|
899 |
msgid "List"
|
900 |
msgstr "Список"
|
901 |
|
902 |
+
#: inc/core/data.php:619
|
903 |
msgid "You can upload custom icon for this list or pick a built-in icon"
|
904 |
msgstr "Вы можете загрузить свою иконку для этого списка или выбрать из списка"
|
905 |
|
906 |
+
#: inc/core/data.php:624 inc/core/data.php:729 inc/core/data.php:779
|
907 |
msgid "Icon color"
|
908 |
msgstr "Цвет иконки"
|
909 |
|
910 |
+
#: inc/core/data.php:625 inc/core/data.php:730 inc/core/data.php:780
|
911 |
msgid ""
|
912 |
"This color will be applied to the selected icon. Does not works with "
|
913 |
"uploaded icons"
|
915 |
"Этот цвет будет применен только к иконке выбранной из списка. Не работает "
|
916 |
"для загруженных иконок"
|
917 |
|
918 |
+
#: inc/core/data.php:633
|
919 |
msgid ""
|
920 |
"<ul>\n"
|
921 |
"<li>List item</li>\n"
|
929 |
"<li>Элемент списка</li>\n"
|
930 |
"</ul>"
|
931 |
|
932 |
+
#: inc/core/data.php:634
|
933 |
msgid "Styled unordered list"
|
934 |
msgstr "Стильный неупорядоченный список"
|
935 |
|
936 |
+
#: inc/core/data.php:639
|
937 |
msgid "Button"
|
938 |
msgstr "Кнопка"
|
939 |
|
940 |
+
#: inc/core/data.php:646
|
941 |
msgid "Link"
|
942 |
msgstr "Ссылка"
|
943 |
|
944 |
+
#: inc/core/data.php:647
|
945 |
msgid "Button link"
|
946 |
msgstr "Ссылка кнопки"
|
947 |
|
948 |
+
#: inc/core/data.php:652 inc/core/data.php:1450
|
949 |
msgid "Same tab"
|
950 |
msgstr "Та же вкладка"
|
951 |
|
952 |
+
#: inc/core/data.php:653 inc/core/data.php:1451
|
953 |
msgid "New tab"
|
954 |
msgstr "Новая вкладка"
|
955 |
|
956 |
+
#: inc/core/data.php:656 inc/core/data.php:1454
|
957 |
msgid "Target"
|
958 |
msgstr "Цель"
|
959 |
|
960 |
+
#: inc/core/data.php:657
|
961 |
msgid "Button link target"
|
962 |
msgstr "Цель ссылки кнопки"
|
963 |
|
964 |
+
#: inc/core/data.php:664 inc/core/data.php:816
|
965 |
msgid "Soft"
|
966 |
msgstr "Мягкий"
|
967 |
|
968 |
+
#: inc/core/data.php:665 inc/core/data.php:817
|
969 |
msgid "Glass"
|
970 |
msgstr "Стекло"
|
971 |
|
972 |
+
#: inc/core/data.php:666 inc/core/data.php:818
|
973 |
msgid "Bubbles"
|
974 |
msgstr "Пузыри"
|
975 |
|
976 |
+
#: inc/core/data.php:667 inc/core/data.php:819
|
977 |
msgid "Noise"
|
978 |
msgstr "Шум"
|
979 |
|
980 |
+
#: inc/core/data.php:668
|
981 |
msgid "Stroked"
|
982 |
msgstr "Прошитый"
|
983 |
|
984 |
+
#: inc/core/data.php:669
|
985 |
msgid "3D"
|
986 |
msgstr "3D"
|
987 |
|
988 |
+
#: inc/core/data.php:672
|
989 |
msgid "Button background style preset"
|
990 |
msgstr "Стиль фона кнопки"
|
991 |
|
992 |
+
#: inc/core/data.php:678
|
993 |
msgid "Button background color"
|
994 |
msgstr "Цвет фона кнопки"
|
995 |
|
996 |
+
#: inc/core/data.php:685
|
997 |
msgid "Button text color"
|
998 |
msgstr "Цвет текста кнопки"
|
999 |
|
1000 |
+
#: inc/core/data.php:694
|
1001 |
msgid "Button size"
|
1002 |
msgstr "Размер кнопки"
|
1003 |
|
1004 |
+
#: inc/core/data.php:699
|
1005 |
msgid "Fluid"
|
1006 |
msgstr "Резиновая"
|
1007 |
|
1008 |
+
#: inc/core/data.php:699
|
1009 |
msgid "Fluid buttons has 100% width"
|
1010 |
msgstr "Резиновые кнопки имеют ширину 100%"
|
1011 |
|
1012 |
+
#: inc/core/data.php:704
|
1013 |
msgid "Is button centered on the page"
|
1014 |
msgstr "Кнопка выровнена по центру страницы"
|
1015 |
|
1016 |
+
#: inc/core/data.php:709
|
1017 |
msgid "Auto"
|
1018 |
msgstr "Авто"
|
1019 |
|
1020 |
+
#: inc/core/data.php:710
|
1021 |
msgid "Round"
|
1022 |
msgstr "Круглый"
|
1023 |
|
1024 |
+
#: inc/core/data.php:711
|
1025 |
msgid "Square"
|
1026 |
msgstr "Квадратный"
|
1027 |
|
1028 |
+
#: inc/core/data.php:717 inc/core/data.php:844 inc/core/data.php:882
|
1029 |
msgid "Radius"
|
1030 |
msgstr "Радиус"
|
1031 |
|
1032 |
+
#: inc/core/data.php:718
|
1033 |
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
1034 |
msgstr ""
|
1035 |
"Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
|
1036 |
|
1037 |
+
#: inc/core/data.php:724
|
1038 |
msgid "You can upload custom icon for this button or pick a built-in icon"
|
1039 |
msgstr "Вы можете загрузить свою иконку для этой кнопки или выбрать из списка"
|
1040 |
|
1041 |
+
#: inc/core/data.php:735
|
1042 |
msgid "Text shadow"
|
1043 |
msgstr "Тень текста"
|
1044 |
|
1045 |
+
#: inc/core/data.php:736
|
1046 |
msgid "Button text shadow"
|
1047 |
msgstr "Тень текста на кнопке"
|
1048 |
|
1049 |
+
#: inc/core/data.php:740
|
1050 |
msgid "Description"
|
1051 |
msgstr "Описание"
|
1052 |
|
1053 |
+
#: inc/core/data.php:741
|
1054 |
msgid ""
|
1055 |
"Small description under button text. This option is incompatible with icon."
|
1056 |
msgstr ""
|
1057 |
"Небольшое описание под текстом кнопки. Это описание не совместимо с иконками "
|
1058 |
"кнопок."
|
1059 |
|
1060 |
+
#: inc/core/data.php:745
|
1061 |
msgid "onClick"
|
1062 |
msgstr "onClick"
|
1063 |
|
1064 |
+
#: inc/core/data.php:746
|
1065 |
msgid "Advanced JavaScript code for onClick action"
|
1066 |
msgstr "JavaScript код для атрибута onClick"
|
1067 |
|
1068 |
+
#: inc/core/data.php:754
|
1069 |
msgid "Button text"
|
1070 |
msgstr "Текст кнопки"
|
1071 |
|
1072 |
+
#: inc/core/data.php:755
|
1073 |
msgid "Styled button"
|
1074 |
msgstr "Стильная кнопка"
|
1075 |
|
1076 |
+
#: inc/core/data.php:760
|
1077 |
msgid "Service"
|
1078 |
msgstr "Услуга"
|
1079 |
|
1080 |
+
#: inc/core/data.php:766 inc/core/shortcodes.php:430
|
1081 |
msgid "Service title"
|
1082 |
msgstr "Название услуги"
|
1083 |
|
1084 |
+
#: inc/core/data.php:768
|
1085 |
msgid "Service name"
|
1086 |
msgstr "Название услуги"
|
1087 |
|
1088 |
+
#: inc/core/data.php:774
|
1089 |
msgid "You can upload custom icon for this box"
|
1090 |
msgstr "Вы можете загрузить свою иконку для этого блока"
|
1091 |
|
1092 |
+
#: inc/core/data.php:788
|
1093 |
msgid "Icon size"
|
1094 |
msgstr "Размер иконки"
|
1095 |
|
1096 |
+
#: inc/core/data.php:789
|
1097 |
msgid "Size of the uploaded icon in pixels"
|
1098 |
msgstr "Размер загруженной иконки в пикселях"
|
1099 |
|
1100 |
+
#: inc/core/data.php:797
|
1101 |
msgid "Service description"
|
1102 |
msgstr "Описание услуги"
|
1103 |
|
1104 |
+
#: inc/core/data.php:798
|
1105 |
msgid "Service box with title"
|
1106 |
msgstr "Блок услуга с заголовком"
|
1107 |
|
1108 |
+
#: inc/core/data.php:809
|
1109 |
msgid "Box title"
|
1110 |
msgstr "Заголовок блока"
|
1111 |
|
1112 |
+
#: inc/core/data.php:810
|
1113 |
msgid "Text for the box title"
|
1114 |
msgstr "Текст для заголовка блока"
|
1115 |
|
1116 |
+
#: inc/core/data.php:823
|
1117 |
msgid "Box style preset"
|
1118 |
msgstr "Стиль блока"
|
1119 |
|
1120 |
+
#: inc/core/data.php:829 inc/core/generator-views.php:91
|
1121 |
msgid "Color"
|
1122 |
msgstr "Цвет"
|
1123 |
|
1124 |
+
#: inc/core/data.php:830
|
1125 |
msgid "Color for the box title and borders"
|
1126 |
msgstr "Цвет заголовка блока и его рамки"
|
1127 |
|
1128 |
+
#: inc/core/data.php:836
|
1129 |
msgid "Title text color"
|
1130 |
msgstr "Цвет текста заголовка"
|
1131 |
|
1132 |
+
#: inc/core/data.php:836
|
1133 |
msgid "Color for the box title text"
|
1134 |
msgstr "Цвет текста в заголовке блока"
|
1135 |
|
1136 |
+
#: inc/core/data.php:845
|
1137 |
msgid "Box corners radius"
|
1138 |
msgstr "Радиус углов"
|
1139 |
|
1140 |
+
#: inc/core/data.php:853
|
1141 |
msgid "Box content"
|
1142 |
msgstr "Содержимое блока"
|
1143 |
|
1144 |
+
#: inc/core/data.php:854
|
1145 |
msgid "Colored box with caption"
|
1146 |
msgstr "Цветной блок с заголовком"
|
1147 |
|
1148 |
+
#: inc/core/data.php:859
|
1149 |
msgid "Note"
|
1150 |
msgstr "Заметка"
|
1151 |
|
1152 |
+
#: inc/core/data.php:867
|
1153 |
msgid "Note background color"
|
1154 |
msgstr "Цвет фона заметки"
|
1155 |
|
1156 |
+
#: inc/core/data.php:874
|
1157 |
msgid "Note text color"
|
1158 |
msgstr "Цвет текста заметки"
|
1159 |
|
1160 |
+
#: inc/core/data.php:882
|
1161 |
msgid "Note corners radius"
|
1162 |
msgstr "Радиус углов"
|
1163 |
|
1164 |
+
#: inc/core/data.php:890
|
1165 |
msgid "Note text"
|
1166 |
msgstr "Текст заметки"
|
1167 |
|
1168 |
+
#: inc/core/data.php:891
|
1169 |
msgid "Colored box"
|
1170 |
msgstr "Цветной блок"
|
1171 |
|
1172 |
+
#: inc/core/data.php:896
|
1173 |
msgid "Lightbox"
|
1174 |
msgstr "Лайтбокс"
|
1175 |
|
1176 |
+
#: inc/core/data.php:903
|
1177 |
msgid "Iframe"
|
1178 |
msgstr "Фрейм (iframe)"
|
1179 |
|
1180 |
+
#: inc/core/data.php:904
|
1181 |
msgid "Image"
|
1182 |
msgstr "Изображение"
|
1183 |
|
1184 |
+
#: inc/core/data.php:905
|
1185 |
msgid "Inline (html content)"
|
1186 |
msgstr "HTML элемент"
|
1187 |
|
1188 |
+
#: inc/core/data.php:908
|
1189 |
msgid "Content type"
|
1190 |
msgstr "Тип содержимого"
|
1191 |
|
1192 |
+
#: inc/core/data.php:909
|
1193 |
msgid "Select type of the lightbox window content"
|
1194 |
msgstr "Выберите тип содержимого в окне лайтбокса"
|
1195 |
|
1196 |
+
#: inc/core/data.php:913
|
1197 |
msgid "Content source"
|
1198 |
msgstr "Источник содержимого"
|
1199 |
|
1200 |
+
#: inc/core/data.php:914
|
1201 |
msgid ""
|
1202 |
"Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
|
1203 |
"Use CSS selector for Inline content type.<br />Example values:<br /><b"
|
1214 |
"><b%value>http://example.com/</b> - любая веб-страница (фрейм)<br /><b"
|
1215 |
"%value>#contact-form</b> - любой HTML элемент (html элемент)"
|
1216 |
|
1217 |
+
#: inc/core/data.php:922
|
1218 |
msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
|
1219 |
msgstr ""
|
1220 |
"[%prefix_button] Нажмите здесь чтобы посмотреть видео [/%prefix_button]"
|
1221 |
|
1222 |
+
#: inc/core/data.php:923
|
1223 |
msgid "Lightbox window with custom content"
|
1224 |
msgstr "Лайтбокс с произвольным содержимым"
|
1225 |
|
1226 |
+
#: inc/core/data.php:928
|
1227 |
msgid "Tooltip"
|
1228 |
msgstr "Подсказка"
|
1229 |
|
1230 |
+
#: inc/core/data.php:935
|
1231 |
msgid "Basic: Light"
|
1232 |
msgstr "Базовый: Светлый"
|
1233 |
|
1234 |
+
#: inc/core/data.php:936
|
1235 |
msgid "Basic: Dark"
|
1236 |
msgstr "Базовый: Темный"
|
1237 |
|
1238 |
+
#: inc/core/data.php:937
|
1239 |
msgid "Basic: Yellow"
|
1240 |
msgstr "Базовый: Желтый"
|
1241 |
|
1242 |
+
#: inc/core/data.php:938
|
1243 |
msgid "Basic: Green"
|
1244 |
msgstr "Базовый: Зеленый"
|
1245 |
|
1246 |
+
#: inc/core/data.php:939
|
1247 |
msgid "Basic: Red"
|
1248 |
msgstr "Базовый: Красный"
|
1249 |
|
1250 |
+
#: inc/core/data.php:940
|
1251 |
msgid "Basic: Blue"
|
1252 |
msgstr "Базовый: Голубой"
|
1253 |
|
1254 |
+
#: inc/core/data.php:941
|
1255 |
msgid "Youtube"
|
1256 |
msgstr "Youtube"
|
1257 |
|
1258 |
+
#: inc/core/data.php:942
|
1259 |
msgid "Tipsy"
|
1260 |
msgstr "Tipsy"
|
1261 |
|
1262 |
+
#: inc/core/data.php:943
|
1263 |
msgid "Bootstrap"
|
1264 |
msgstr "Bootstrap"
|
1265 |
|
1266 |
+
#: inc/core/data.php:944
|
1267 |
msgid "jTools"
|
1268 |
msgstr "jTools"
|
1269 |
|
1270 |
+
#: inc/core/data.php:945
|
1271 |
msgid "Tipped"
|
1272 |
msgstr "Tipped"
|
1273 |
|
1274 |
+
#: inc/core/data.php:946
|
1275 |
msgid "Cluetip"
|
1276 |
msgstr "Cluetip"
|
1277 |
|
1278 |
+
#: inc/core/data.php:950
|
1279 |
msgid "Tooltip window style"
|
1280 |
msgstr "Стиль окна подсказки"
|
1281 |
|
1282 |
+
#: inc/core/data.php:955
|
1283 |
msgid "Top"
|
1284 |
msgstr "Сверху"
|
1285 |
|
1286 |
+
#: inc/core/data.php:956
|
1287 |
msgid "Bottom"
|
1288 |
msgstr "Снизу"
|
1289 |
|
1290 |
+
#: inc/core/data.php:961
|
1291 |
msgid "Position"
|
1292 |
msgstr "Положение"
|
1293 |
|
1294 |
+
#: inc/core/data.php:962
|
1295 |
msgid "Tooltip position"
|
1296 |
msgstr "Положение всплывающей подсказки"
|
1297 |
|
1298 |
+
#: inc/core/data.php:967
|
1299 |
msgid "Shadow"
|
1300 |
msgstr "Тень"
|
1301 |
|
1302 |
+
#: inc/core/data.php:968
|
1303 |
msgid ""
|
1304 |
"Add shadow to tooltip. This option is only works with basic styes, e.g. "
|
1305 |
"blue, green etc."
|
1306 |
msgstr "Добавить тень окну подсказки. Тень работает только для базовых стилей."
|
1307 |
|
1308 |
+
#: inc/core/data.php:973
|
1309 |
msgid "Rounded corners"
|
1310 |
msgstr "Скругление"
|
1311 |
|
1312 |
+
#: inc/core/data.php:974
|
1313 |
msgid ""
|
1314 |
"Use rounded for tooltip. This option is only works with basic styes, e.g. "
|
1315 |
"blue, green etc."
|
1317 |
"Добавить скругленные уголки окну подсказки. Скругление работает только для "
|
1318 |
"базовых стилей."
|
1319 |
|
1320 |
+
#: inc/core/data.php:988
|
1321 |
msgid "Font size"
|
1322 |
msgstr "Размер шрифта"
|
1323 |
|
1324 |
+
#: inc/core/data.php:989
|
1325 |
msgid "Tooltip font size"
|
1326 |
msgstr "Размер шрифта подсказки"
|
1327 |
|
1328 |
+
#: inc/core/data.php:993
|
1329 |
msgid "Tooltip title"
|
1330 |
msgstr "Заголовок подсказки"
|
1331 |
|
1332 |
+
#: inc/core/data.php:994
|
1333 |
msgid ""
|
1334 |
"Enter title for tooltip window. Leave this field empty to hide the title"
|
1335 |
msgstr ""
|
1336 |
"Укажите заголовок окна подсказки. Оставьте поле пустым, чтобы скрыть "
|
1337 |
"заголовок"
|
1338 |
|
1339 |
+
#: inc/core/data.php:997 inc/core/shortcodes.php:508
|
1340 |
msgid "Tooltip text"
|
1341 |
msgstr "Текст подсказки"
|
1342 |
|
1343 |
+
#: inc/core/data.php:998
|
1344 |
msgid "Tooltip content"
|
1345 |
msgstr "Содержимое подсказки"
|
1346 |
|
1347 |
+
#: inc/core/data.php:999
|
1348 |
msgid "Enter tooltip content here"
|
1349 |
msgstr "Введите сюда содержимое подсказки"
|
1350 |
|
1351 |
+
#: inc/core/data.php:1004
|
1352 |
msgid "Show and hide on mouse hover"
|
1353 |
msgstr "Показать и скрыть при наведении мыши"
|
1354 |
|
1355 |
+
#: inc/core/data.php:1005
|
1356 |
msgid "Show and hide by mouse click"
|
1357 |
msgstr "Показать и скрыть по клику мыши"
|
1358 |
|
1359 |
+
#: inc/core/data.php:1006
|
1360 |
msgid "Always visible"
|
1361 |
msgstr "Всегда видима"
|
1362 |
|
1363 |
+
#: inc/core/data.php:1009
|
1364 |
msgid "Behavior"
|
1365 |
msgstr "Поведение"
|
1366 |
|
1367 |
+
#: inc/core/data.php:1010
|
1368 |
msgid "Select tooltip behavior"
|
1369 |
msgstr "Выберите поведение подсказки"
|
1370 |
|
1371 |
+
#: inc/core/data.php:1015
|
1372 |
msgid "Close button"
|
1373 |
msgstr "Кнопка закрыть"
|
1374 |
|
1375 |
+
#: inc/core/data.php:1016
|
1376 |
msgid "Show close button"
|
1377 |
msgstr "Показывать кнопку закрыть"
|
1378 |
|
1379 |
+
#: inc/core/data.php:1024
|
1380 |
msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
|
1381 |
msgstr ""
|
1382 |
"[%prefix_button] Наведите мышку чтобы увидеть подсказку [/%prefix_button]"
|
1383 |
|
1384 |
+
#: inc/core/data.php:1025
|
1385 |
msgid "Tooltip window with custom content"
|
1386 |
msgstr "Всплывающая подсказка с произвольным содержимым"
|
1387 |
|
1388 |
+
#: inc/core/data.php:1030
|
1389 |
msgid "Private"
|
1390 |
msgstr "Заметка для авторов"
|
1391 |
|
1392 |
+
#: inc/core/data.php:1040
|
1393 |
msgid "Private note text"
|
1394 |
msgstr "Текст приватной заметки"
|
1395 |
|
1396 |
+
#: inc/core/data.php:1041
|
1397 |
msgid "Private note for post authors"
|
1398 |
msgstr "Приватный текст для других авторов"
|
1399 |
|
1400 |
+
#: inc/core/data.php:1046
|
1401 |
msgid "YouTube"
|
1402 |
msgstr "YouTube"
|
1403 |
|
1404 |
+
#: inc/core/data.php:1053 inc/core/data.php:1104 inc/core/data.php:1222
|
1405 |
+
#: inc/core/data.php:1271 inc/core/data.php:1525 inc/core/data.php:1622
|
1406 |
msgid "Url"
|
1407 |
msgstr "Ссылка"
|
1408 |
|
1409 |
+
#: inc/core/data.php:1054 inc/core/data.php:1105
|
1410 |
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
1411 |
msgstr ""
|
1412 |
"Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
|
1413 |
|
1414 |
+
#: inc/core/data.php:1062 inc/core/data.php:1118 inc/core/data.php:1230
|
1415 |
+
#: inc/core/data.php:1279 inc/core/data.php:1321 inc/core/data.php:1375
|
1416 |
+
#: inc/core/data.php:1631 inc/core/data.php:1670 inc/core/data.php:1743
|
1417 |
+
#: inc/core/data.php:1851 inc/core/data.php:1978 inc/core/data.php:2194
|
1418 |
msgid "Width"
|
1419 |
msgstr "Ширина"
|
1420 |
|
1421 |
+
#: inc/core/data.php:1063 inc/core/data.php:1119 inc/core/data.php:1231
|
1422 |
+
#: inc/core/data.php:1280 inc/core/data.php:1376
|
1423 |
msgid "Player width"
|
1424 |
msgstr "Ширина плеера"
|
1425 |
|
1426 |
+
#: inc/core/data.php:1072 inc/core/data.php:1128 inc/core/data.php:1240
|
1427 |
+
#: inc/core/data.php:1289 inc/core/data.php:1385
|
1428 |
msgid "Player height"
|
1429 |
msgstr "Высота плеера"
|
1430 |
|
1431 |
+
#: inc/core/data.php:1077 inc/core/data.php:1133 inc/core/data.php:1245
|
1432 |
+
#: inc/core/data.php:1294 inc/core/data.php:1646 inc/core/data.php:1685
|
1433 |
+
#: inc/core/data.php:1756 inc/core/data.php:1866
|
1434 |
msgid "Responsive"
|
1435 |
msgstr "Отзывчивость (responsive)"
|
1436 |
|
1437 |
+
#: inc/core/data.php:1078 inc/core/data.php:1134 inc/core/data.php:1246
|
1438 |
+
#: inc/core/data.php:1295
|
1439 |
msgid "Ignore width and height parameters and make player responsive"
|
1440 |
msgstr ""
|
1441 |
"Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
|
1442 |
|
1443 |
+
#: inc/core/data.php:1083 inc/core/data.php:1167 inc/core/data.php:1251
|
1444 |
+
#: inc/core/data.php:1327 inc/core/data.php:1396 inc/core/data.php:1791
|
1445 |
+
#: inc/core/data.php:1918
|
1446 |
msgid "Autoplay"
|
1447 |
msgstr "Автовоспроизведение"
|
1448 |
|
1449 |
+
#: inc/core/data.php:1084 inc/core/data.php:1168 inc/core/data.php:1252
|
1450 |
msgid "Play video automatically when page is loaded"
|
1451 |
msgstr "Воспроизвести видео автоматически при открытии страницы"
|
1452 |
|
1453 |
+
#: inc/core/data.php:1092
|
1454 |
msgid "YouTube video"
|
1455 |
msgstr "Видео YouTube"
|
1456 |
|
1457 |
+
#: inc/core/data.php:1097
|
1458 |
msgid "YouTube Advanced"
|
1459 |
msgstr "YouTube продвинутый"
|
1460 |
|
1461 |
+
#: inc/core/data.php:1109
|
1462 |
msgid "Playlist"
|
1463 |
msgstr "Плейлист"
|
1464 |
|
1465 |
+
#: inc/core/data.php:1110
|
1466 |
msgid ""
|
1467 |
"Value is a comma-separated list of video IDs to play. If you specify a "
|
1468 |
"value, the first video that plays will be the VIDEO_ID specified in the URL "
|
1472 |
"значение, то первым будет проиграно видео из параметра URL, а указанные "
|
1473 |
"здесь видео будут проиграны после него"
|
1474 |
|
1475 |
+
#: inc/core/data.php:1139
|
1476 |
msgid "0 - Hide controls"
|
1477 |
msgstr "0 - Спрятать панель"
|
1478 |
|
1479 |
+
#: inc/core/data.php:1140
|
1480 |
msgid "1 - Show controls"
|
1481 |
msgstr "1 - Показать панель"
|
1482 |
|
1483 |
+
#: inc/core/data.php:1141
|
1484 |
msgid "2 - Show controls when playback is started"
|
1485 |
msgstr "2 - Показать панель при начале воспроизведения"
|
1486 |
|
1487 |
+
#: inc/core/data.php:1144 inc/core/data.php:1390
|
1488 |
msgid "Controls"
|
1489 |
msgstr "Элементы управления"
|
1490 |
|
1491 |
+
#: inc/core/data.php:1145
|
1492 |
msgid "This parameter indicates whether the video player controls will display"
|
1493 |
msgstr ""
|
1494 |
"Этот параметр определяет как показывать панель управления воспроизведением"
|
1495 |
|
1496 |
+
#: inc/core/data.php:1150
|
1497 |
msgid "0 - Do not hide controls"
|
1498 |
msgstr "0 - Не прятать панель"
|
1499 |
|
1500 |
+
#: inc/core/data.php:1151
|
1501 |
msgid "1 - Hide all controls on mouse out"
|
1502 |
msgstr "1 - Спрятать панель при уходе мыши"
|
1503 |
|
1504 |
+
#: inc/core/data.php:1152
|
1505 |
msgid "2 - Hide progress bar on mouse out"
|
1506 |
msgstr "2 - Спрятать полосу прокрутки при уходе мыши"
|
1507 |
|
1508 |
+
#: inc/core/data.php:1155
|
1509 |
msgid "Autohide"
|
1510 |
msgstr "Авто-скрытие"
|
1511 |
|
1512 |
+
#: inc/core/data.php:1156
|
1513 |
msgid ""
|
1514 |
"This parameter indicates whether the video controls will automatically hide "
|
1515 |
"after a video begins playing"
|
1517 |
"Этот параметр определяет как скрывать панель управления воспроизведением во "
|
1518 |
"время проигрывания ролика"
|
1519 |
|
1520 |
+
#: inc/core/data.php:1161
|
1521 |
msgid "Show title bar"
|
1522 |
msgstr "Показывать заголовок"
|
1523 |
|
1524 |
+
#: inc/core/data.php:1162
|
1525 |
msgid ""
|
1526 |
"If you set the parameter value to NO, then the player will not display "
|
1527 |
"information like the video title and uploader before the video starts "
|
1530 |
"Если вы установите параметр на НЕТ, то в плеере не будет показан заголовок с "
|
1531 |
"названием видео и имя автора видео"
|
1532 |
|
1533 |
+
#: inc/core/data.php:1173 inc/core/data.php:1333 inc/core/data.php:1402
|
1534 |
msgid "Loop"
|
1535 |
msgstr "Повтор"
|
1536 |
|
1537 |
+
#: inc/core/data.php:1174
|
1538 |
msgid ""
|
1539 |
"Setting of YES will cause the player to play the initial video again and "
|
1540 |
"again"
|
1541 |
msgstr "Видео будет снова проиграно по окнчании воспроизведения"
|
1542 |
|
1543 |
+
#: inc/core/data.php:1179
|
1544 |
msgid "Related videos"
|
1545 |
msgstr "Похожие видео"
|
1546 |
|
1547 |
+
#: inc/core/data.php:1180
|
1548 |
msgid ""
|
1549 |
"This parameter indicates whether the player should show related videos when "
|
1550 |
"playback of the initial video ends"
|
1552 |
"Этот параметр позволяет отключать показ похожих видео по окончании "
|
1553 |
"воспроизведения"
|
1554 |
|
1555 |
+
#: inc/core/data.php:1185
|
1556 |
msgid "Show full-screen button"
|
1557 |
msgstr "Показывать кнопку полноэкранного режима"
|
1558 |
|
1559 |
+
#: inc/core/data.php:1186
|
1560 |
msgid ""
|
1561 |
"Setting this parameter to NO prevents the fullscreen button from displaying"
|
1562 |
msgstr ""
|
1563 |
"Установка этого параметра на НЕТ скроет кнопку перехода в полноэкранный режим"
|
1564 |
|
1565 |
+
#: inc/core/data.php:1192
|
1566 |
msgid ""
|
1567 |
"This parameter lets you use a YouTube player that does not show a YouTube "
|
1568 |
"logo. Set the parameter value to YES to prevent the YouTube logo from "
|
1574 |
"управления воспроизведением. Вместо он будет показан либо в панели заголовка "
|
1575 |
"видео, либо как полупрозрачный над видео"
|
1576 |
|
1577 |
+
#: inc/core/data.php:1197
|
1578 |
msgid "Dark theme"
|
1579 |
msgstr "Темная тема"
|
1580 |
|
1581 |
+
#: inc/core/data.php:1198
|
1582 |
msgid "Light theme"
|
1583 |
msgstr "Светлая тема"
|
1584 |
|
1585 |
+
#: inc/core/data.php:1201 inc/core/data.php:2225
|
1586 |
msgid "Theme"
|
1587 |
msgstr "Тема"
|
1588 |
|
1589 |
+
#: inc/core/data.php:1202
|
1590 |
msgid ""
|
1591 |
"This parameter indicates whether the embedded player will display player "
|
1592 |
"controls (like a play button or volume control) within a dark or light "
|
1593 |
"control bar"
|
1594 |
msgstr "Выберите тему для проигрывателя"
|
1595 |
|
1596 |
+
#: inc/core/data.php:1210
|
1597 |
msgid "YouTube video player with advanced settings"
|
1598 |
msgstr "YouTube видео плеер с расширенными настройками"
|
1599 |
|
1600 |
+
#: inc/core/data.php:1215
|
1601 |
msgid "Vimeo"
|
1602 |
msgstr "Vimeo"
|
1603 |
|
1604 |
+
#: inc/core/data.php:1222
|
1605 |
msgid "Url of Vimeo page with video"
|
1606 |
msgstr "Ссылка на страницу Vimeo с видео"
|
1607 |
|
1608 |
+
#: inc/core/data.php:1260
|
1609 |
msgid "Vimeo video"
|
1610 |
msgstr "Видео Vimeo"
|
1611 |
|
1612 |
+
#: inc/core/data.php:1265
|
1613 |
msgid "Screenr"
|
1614 |
msgstr "Screenr"
|
1615 |
|
1616 |
+
#: inc/core/data.php:1271
|
1617 |
msgid "Url of Screenr page with video"
|
1618 |
msgstr "Ссылка на страницу Screenr с видео"
|
1619 |
|
1620 |
+
#: inc/core/data.php:1303
|
1621 |
msgid "Screenr video"
|
1622 |
msgstr "Видео Screenr"
|
1623 |
|
1624 |
+
#: inc/core/data.php:1308
|
1625 |
msgid "Audio"
|
1626 |
msgstr "Аудио"
|
1627 |
|
1628 |
+
#: inc/core/data.php:1315 inc/core/data.php:1354
|
1629 |
msgid "File"
|
1630 |
msgstr "Файл"
|
1631 |
|
1632 |
+
#: inc/core/data.php:1316
|
1633 |
msgid "Audio file url. Supported formats: mp3, ogg"
|
1634 |
msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
|
1635 |
|
1636 |
+
#: inc/core/data.php:1322
|
1637 |
msgid ""
|
1638 |
"Player width. You can specify width in percents and player will be "
|
1639 |
"responsive. Example values: <b%value>200px</b>, <b%value>100%</b>"
|
1642 |
"отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b"
|
1643 |
"%value>100%</b>"
|
1644 |
|
1645 |
+
#: inc/core/data.php:1328 inc/core/data.php:1397
|
1646 |
msgid "Play file automatically when page is loaded"
|
1647 |
msgstr "Воспроизводить файл автоматически при открытии страницы"
|
1648 |
|
1649 |
+
#: inc/core/data.php:1334 inc/core/data.php:1403
|
1650 |
msgid "Repeat when playback is ended"
|
1651 |
msgstr "Повторять, когда воспроизведение окночено"
|
1652 |
|
1653 |
+
#: inc/core/data.php:1342
|
1654 |
msgid "Custom audio player"
|
1655 |
msgstr "Настраиваемый аудио-плеер"
|
1656 |
|
1657 |
+
#: inc/core/data.php:1347
|
1658 |
msgid "Video"
|
1659 |
msgstr "Видео"
|
1660 |
|
1661 |
+
#: inc/core/data.php:1355
|
1662 |
msgid "Url to mp4/flv video-file"
|
1663 |
msgstr "Ссылка на mp4/flv видео-файл"
|
1664 |
|
1665 |
+
#: inc/core/data.php:1360
|
1666 |
msgid "Poster"
|
1667 |
msgstr "Постер"
|
1668 |
|
1669 |
+
#: inc/core/data.php:1361
|
1670 |
msgid "Url to poster image, that will be shown before playback"
|
1671 |
msgstr ""
|
1672 |
"Ссылка на изображение постера. Изображение будет показано перед началом "
|
1673 |
"воспроизведения"
|
1674 |
|
1675 |
+
#: inc/core/data.php:1367
|
1676 |
msgid "Player title"
|
1677 |
msgstr "Заголовок плеера"
|
1678 |
|
1679 |
+
#: inc/core/data.php:1391
|
1680 |
msgid "Show player controls (play/pause etc.) or not"
|
1681 |
msgstr ""
|
1682 |
"Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
|
1683 |
|
1684 |
+
#: inc/core/data.php:1411
|
1685 |
msgid "Custom video player"
|
1686 |
msgstr "Настраиваемый видео-плеер"
|
1687 |
|
1688 |
+
#: inc/core/data.php:1416
|
1689 |
msgid "Table"
|
1690 |
msgstr "Таблица"
|
1691 |
|
1692 |
+
#: inc/core/data.php:1423
|
1693 |
msgid "CSV file"
|
1694 |
msgstr "CSV файл"
|
1695 |
|
1696 |
+
#: inc/core/data.php:1424
|
1697 |
msgid "Upload CSV file if you want to create HTML-table from file"
|
1698 |
msgstr ""
|
1699 |
"Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
|
1700 |
|
1701 |
+
#: inc/core/data.php:1432
|
1702 |
msgid ""
|
1703 |
"<table>\n"
|
1704 |
"<tr>\n"
|
1722 |
"</tr>\n"
|
1723 |
"</table>"
|
1724 |
|
1725 |
+
#: inc/core/data.php:1433
|
1726 |
msgid "Styled table from HTML or CSV file"
|
1727 |
msgstr "Стильная таблица из HTML или CSV файла"
|
1728 |
|
1729 |
+
#: inc/core/data.php:1438
|
1730 |
msgid "Permalink"
|
1731 |
msgstr "Постоянная ссылка"
|
1732 |
|
1733 |
+
#: inc/core/data.php:1444
|
1734 |
msgid "ID"
|
1735 |
msgstr "ID"
|
1736 |
|
1737 |
+
#: inc/core/data.php:1445
|
1738 |
msgid "Post or page ID"
|
1739 |
msgstr "ID записи или страницы"
|
1740 |
|
1741 |
+
#: inc/core/data.php:1455
|
1742 |
msgid "Link target. blank - link will be opened in new window/tab"
|
1743 |
msgstr ""
|
1744 |
"Цель ссылки. blank - означает что ссылка будет открыта в новом окне или "
|
1745 |
"вкладке"
|
1746 |
|
1747 |
+
#: inc/core/data.php:1464
|
1748 |
msgid "Permalink to specified post/page"
|
1749 |
msgstr "Постоянная ссылка на страницу"
|
1750 |
|
1751 |
+
#: inc/core/data.php:1469
|
1752 |
msgid "Members"
|
1753 |
msgstr "Участники"
|
1754 |
|
1755 |
+
#: inc/core/data.php:1474 inc/core/shortcodes.php:756
|
1756 |
msgid "This content is for registered users only. Please %login%."
|
1757 |
msgstr ""
|
1758 |
"Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
|
1759 |
|
1760 |
+
#: inc/core/data.php:1475
|
1761 |
msgid "Message"
|
1762 |
msgstr "Сообщение"
|
1763 |
|
1764 |
+
#: inc/core/data.php:1475
|
1765 |
msgid "Message for not logged users"
|
1766 |
msgstr "Собщение для неавторизованных"
|
1767 |
|
1768 |
+
#: inc/core/data.php:1480
|
1769 |
msgid "Box color"
|
1770 |
msgstr "Цвет блока"
|
1771 |
|
1772 |
+
#: inc/core/data.php:1480
|
1773 |
msgid "This color will applied only to box for not logged users"
|
1774 |
msgstr ""
|
1775 |
"Этот цвет будет применен только к блоку для не авторизованных посетителей"
|
1776 |
|
1777 |
+
#: inc/core/data.php:1483 inc/core/shortcodes.php:759
|
1778 |
msgid "login"
|
1779 |
msgstr "войдите"
|
1780 |
|
1781 |
+
#: inc/core/data.php:1484
|
1782 |
msgid "Login link text"
|
1783 |
msgstr "Текст ссылки войти"
|
1784 |
|
1785 |
+
#: inc/core/data.php:1484
|
1786 |
msgid "Text for the login link"
|
1787 |
msgstr "Текст ссылки ВОЙТИ"
|
1788 |
|
1789 |
+
#: inc/core/data.php:1488
|
1790 |
msgid "Login link url"
|
1791 |
msgstr "Адрес ссылки войти"
|
1792 |
|
1793 |
+
#: inc/core/data.php:1496
|
1794 |
msgid "Content for logged members"
|
1795 |
msgstr "Содержимое для авторизованых пользователей"
|
1796 |
|
1797 |
+
#: inc/core/data.php:1497
|
1798 |
msgid "Content for logged in members only"
|
1799 |
msgstr "Ссодержимое для авторизованых"
|
1800 |
|
1801 |
+
#: inc/core/data.php:1502
|
1802 |
msgid "Guests"
|
1803 |
msgstr "Гости"
|
1804 |
|
1805 |
+
#: inc/core/data.php:1512
|
1806 |
msgid "Content for guests"
|
1807 |
msgstr "Содержимое для гостей"
|
1808 |
|
1809 |
+
#: inc/core/data.php:1513
|
1810 |
msgid "Content for guests only"
|
1811 |
msgstr "Ссодержимое только для гостей"
|
1812 |
|
1813 |
+
#: inc/core/data.php:1518
|
1814 |
msgid "RSS Feed"
|
1815 |
msgstr "RSS лента"
|
1816 |
|
1817 |
+
#: inc/core/data.php:1526
|
1818 |
msgid "Url to RSS-feed"
|
1819 |
msgstr "Ссылка на RSS-ленту"
|
1820 |
|
1821 |
+
#: inc/core/data.php:1534
|
1822 |
msgid "Limit"
|
1823 |
msgstr "Лимит"
|
1824 |
|
1825 |
+
#: inc/core/data.php:1534
|
1826 |
msgid "Number of items to show"
|
1827 |
msgstr "Количество элементов для отображения"
|
1828 |
|
1829 |
+
#: inc/core/data.php:1542
|
1830 |
msgid "Feed grabber"
|
1831 |
msgstr "Граббер новостных лент"
|
1832 |
|
1833 |
+
#: inc/core/data.php:1547
|
1834 |
msgid "Menu"
|
1835 |
msgstr "Меню"
|
1836 |
|
1837 |
+
#: inc/core/data.php:1554
|
1838 |
msgid "Menu name"
|
1839 |
msgstr "Имя меню"
|
1840 |
|
1841 |
+
#: inc/core/data.php:1554
|
1842 |
msgid "Custom menu name. Ex: Main menu"
|
1843 |
msgstr "Имя произвольного меню. Например: Главное меню"
|
1844 |
|
1845 |
+
#: inc/core/data.php:1562
|
1846 |
msgid "Custom menu by name"
|
1847 |
msgstr "Произвольное меню"
|
1848 |
|
1849 |
+
#: inc/core/data.php:1567
|
1850 |
msgid "Sub pages"
|
1851 |
msgstr "Подстраницы"
|
1852 |
|
1853 |
+
#: inc/core/data.php:1574 inc/core/data.php:1601
|
1854 |
msgid "Depth"
|
1855 |
msgstr "Глубина"
|
1856 |
|
1857 |
+
#: inc/core/data.php:1575
|
1858 |
msgid "Max depth level of children pages"
|
1859 |
msgstr "Максимальная глубина дочерних страниц"
|
1860 |
|
1861 |
+
#: inc/core/data.php:1580
|
1862 |
msgid "Parent ID"
|
1863 |
msgstr "ID родителя"
|
1864 |
|
1865 |
+
#: inc/core/data.php:1581
|
1866 |
msgid "ID of the parent page. Leave blank to use current page"
|
1867 |
msgstr ""
|
1868 |
"ID родительской страницы. Оставьте пустым, чтобы использовать текущую "
|
1869 |
"страницу"
|
1870 |
|
1871 |
+
#: inc/core/data.php:1589
|
1872 |
msgid "List of sub pages"
|
1873 |
msgstr "Список дочерних страниц"
|
1874 |
|
1875 |
+
#: inc/core/data.php:1594
|
1876 |
msgid "Siblings"
|
1877 |
msgstr "Соседние страницы"
|
1878 |
|
1879 |
+
#: inc/core/data.php:1602
|
1880 |
msgid "Max depth level"
|
1881 |
msgstr "Максимальный уровень вложенности"
|
1882 |
|
1883 |
+
#: inc/core/data.php:1610
|
1884 |
msgid "List of cureent page siblings"
|
1885 |
msgstr "Список страниц, соседних с текущей"
|
1886 |
|
1887 |
+
#: inc/core/data.php:1615
|
1888 |
msgid "Document"
|
1889 |
msgstr "Документ"
|
1890 |
|
1891 |
+
#: inc/core/data.php:1623
|
1892 |
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1893 |
msgstr ""
|
1894 |
"Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
|
1895 |
|
1896 |
+
#: inc/core/data.php:1632
|
1897 |
msgid "Viewer width"
|
1898 |
msgstr "Ширина просмотрщика"
|
1899 |
|
1900 |
+
#: inc/core/data.php:1641
|
1901 |
msgid "Viewer height"
|
1902 |
msgstr "Высота просмотрщика"
|
1903 |
|
1904 |
+
#: inc/core/data.php:1647
|
1905 |
msgid "Ignore width and height parameters and make viewer responsive"
|
1906 |
msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
|
1907 |
|
1908 |
+
#: inc/core/data.php:1655
|
1909 |
msgid "Document viewer by Google"
|
1910 |
msgstr "Просмотрщик документов от Google"
|
1911 |
|
1912 |
+
#: inc/core/data.php:1660
|
1913 |
msgid "Gmap"
|
1914 |
msgstr "Google карта"
|
1915 |
|
1916 |
+
#: inc/core/data.php:1671
|
1917 |
msgid "Map width"
|
1918 |
msgstr "Ширина карты"
|
1919 |
|
1920 |
+
#: inc/core/data.php:1680
|
1921 |
msgid "Map height"
|
1922 |
msgstr "Высота карты"
|
1923 |
|
1924 |
+
#: inc/core/data.php:1686
|
1925 |
msgid "Ignore width and height parameters and make map responsive"
|
1926 |
msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
|
1927 |
|
1928 |
+
#: inc/core/data.php:1691
|
1929 |
msgid "Marker"
|
1930 |
msgstr "Маркер"
|
1931 |
|
1932 |
+
#: inc/core/data.php:1692
|
1933 |
msgid "Address for the marker. You can type it in any language"
|
1934 |
msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
|
1935 |
|
1936 |
+
#: inc/core/data.php:1700
|
1937 |
msgid "Maps by Google"
|
1938 |
msgstr "Карты от Google"
|
1939 |
|
1940 |
+
#: inc/core/data.php:1705
|
1941 |
msgid "Slider"
|
1942 |
msgstr "Слайдер"
|
1943 |
|
1944 |
+
#: inc/core/data.php:1712 inc/core/data.php:1820 inc/core/data.php:1947
|
1945 |
msgid "Source"
|
1946 |
msgstr "Источник"
|
1947 |
|
1948 |
+
#: inc/core/data.php:1713 inc/core/data.php:1821 inc/core/data.php:1948
|
1949 |
msgid ""
|
1950 |
"Choose images source. You can use images from Media library or retrieve it "
|
1951 |
"from posts (thumbnails) posted under specified blog category. You can also "
|
1956 |
"опубликованных в выбранной категории. Вы также можете выбрать произвольную "
|
1957 |
"таксономию и её рубрики"
|
1958 |
|
1959 |
+
#: inc/core/data.php:1719
|
1960 |
msgid "Full-size image"
|
1961 |
msgstr "Полноразмерное изображение"
|
1962 |
|
1963 |
+
#: inc/core/data.php:1720 inc/core/data.php:1828 inc/core/data.php:1955
|
1964 |
msgid "Attachment page"
|
1965 |
msgstr "Страница медиа-файла"
|
1966 |
|
1967 |
+
#: inc/core/data.php:1721 inc/core/data.php:1829 inc/core/data.php:1956
|
1968 |
msgid "Post permalink"
|
1969 |
msgstr "Ссылка записи"
|
1970 |
|
1971 |
+
#: inc/core/data.php:1724 inc/core/data.php:1832 inc/core/data.php:1959
|
1972 |
msgid "Links"
|
1973 |
msgstr "Ссылки"
|
1974 |
|
1975 |
+
#: inc/core/data.php:1725 inc/core/data.php:1833 inc/core/data.php:1960
|
1976 |
msgid "Select which links will be used for images in this gallery"
|
1977 |
msgstr "Выберите какие ссылки использовать для элементов этой галереи"
|
1978 |
|
1979 |
+
#: inc/core/data.php:1730 inc/core/data.php:1838 inc/core/data.php:1965
|
1980 |
msgid "Same window"
|
1981 |
msgstr "То же окно"
|
1982 |
|
1983 |
+
#: inc/core/data.php:1731 inc/core/data.php:1839 inc/core/data.php:1966
|
1984 |
msgid "New window"
|
1985 |
msgstr "Новое окно"
|
1986 |
|
1987 |
+
#: inc/core/data.php:1734 inc/core/data.php:1842 inc/core/data.php:1969
|
1988 |
msgid "Links target"
|
1989 |
msgstr "Цель ссылок"
|
1990 |
|
1991 |
+
#: inc/core/data.php:1735 inc/core/data.php:1843 inc/core/data.php:1970
|
1992 |
msgid "Open links in"
|
1993 |
msgstr "Открывать ссылки в"
|
1994 |
|
1995 |
+
#: inc/core/data.php:1743
|
1996 |
msgid "Slider width (in pixels)"
|
1997 |
msgstr "Ширина слайдера (в пикселях)"
|
1998 |
|
1999 |
+
#: inc/core/data.php:1751
|
2000 |
msgid "Slider height (in pixels)"
|
2001 |
msgstr "Высота слайдера (в пикселях)"
|
2002 |
|
2003 |
+
#: inc/core/data.php:1757
|
2004 |
msgid "Ignore width and height parameters and make slider responsive"
|
2005 |
msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
|
2006 |
|
2007 |
+
#: inc/core/data.php:1762 inc/core/data.php:1889 inc/core/data.php:1996
|
2008 |
msgid "Show titles"
|
2009 |
msgstr "Показывать заголовки"
|
2010 |
|
2011 |
+
#: inc/core/data.php:1762
|
2012 |
msgid "Display slide titles"
|
2013 |
msgstr "Отображать заголовки слайдов"
|
2014 |
|
2015 |
+
#: inc/core/data.php:1767
|
2016 |
msgid "Is slider centered on the page"
|
2017 |
msgstr "Слайдер выровнен по центру страницы"
|
2018 |
|
2019 |
+
#: inc/core/data.php:1772 inc/core/data.php:1899
|
2020 |
msgid "Arrows"
|
2021 |
msgstr "Стрелки"
|
2022 |
|
2023 |
+
#: inc/core/data.php:1772 inc/core/data.php:1899
|
2024 |
msgid "Show left and right arrows"
|
2025 |
msgstr "Показывать стрелки влево/вправо"
|
2026 |
|
2027 |
+
#: inc/core/data.php:1777 inc/core/data.php:1904
|
2028 |
msgid "Pagination"
|
2029 |
msgstr "Страницы"
|
2030 |
|
2031 |
+
#: inc/core/data.php:1778 inc/core/data.php:1905
|
2032 |
msgid "Show pagination"
|
2033 |
msgstr "Показывать страницы"
|
2034 |
|
2035 |
+
#: inc/core/data.php:1782 inc/core/data.php:1909
|
2036 |
msgid "Mouse wheel control"
|
2037 |
msgstr "Управление колесом мыши"
|
2038 |
|
2039 |
+
#: inc/core/data.php:1783
|
2040 |
msgid "Allow to change slides with mouse wheel"
|
2041 |
msgstr "Разрешить перелистывание слайдов колесом мышки"
|
2042 |
|
2043 |
+
#: inc/core/data.php:1792
|
2044 |
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
2045 |
msgstr ""
|
2046 |
"Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы "
|
2047 |
"отключить автовоспроизведение"
|
2048 |
|
2049 |
+
#: inc/core/data.php:1800 inc/core/data.php:1927
|
2050 |
msgid "Speed"
|
2051 |
msgstr "Скорость"
|
2052 |
|
2053 |
+
#: inc/core/data.php:1800 inc/core/data.php:1927
|
2054 |
msgid "Specify animation speed"
|
2055 |
msgstr "Укажите скорость анимации"
|
2056 |
|
2057 |
+
#: inc/core/data.php:1808
|
2058 |
msgid "Customizable image slider"
|
2059 |
msgstr "Настраиваемый слайдер изображений"
|
2060 |
|
2061 |
+
#: inc/core/data.php:1813
|
2062 |
msgid "Carousel"
|
2063 |
msgstr "Карусель"
|
2064 |
|
2065 |
+
#: inc/core/data.php:1827 inc/core/data.php:1954
|
2066 |
msgid "Original image"
|
2067 |
msgstr "Оригинальное изображение"
|
2068 |
|
2069 |
+
#: inc/core/data.php:1852
|
2070 |
msgid "Carousel width (in pixels)"
|
2071 |
msgstr "Ширина карусели (в пикселях)"
|
2072 |
|
2073 |
+
#: inc/core/data.php:1861
|
2074 |
msgid "Carousel height (in pixels)"
|
2075 |
msgstr "Высота карусели (в пикселях)"
|
2076 |
|
2077 |
+
#: inc/core/data.php:1867
|
2078 |
msgid "Ignore width and height parameters and make carousel responsive"
|
2079 |
msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
|
2080 |
|
2081 |
+
#: inc/core/data.php:1875
|
2082 |
msgid "Items to show"
|
2083 |
msgstr "Количество элементов для отображения"
|
2084 |
|
2085 |
+
#: inc/core/data.php:1876
|
2086 |
msgid "How much carousel items is visible"
|
2087 |
msgstr "Сколько элементов карусели видны постоянно"
|
2088 |
|
2089 |
+
#: inc/core/data.php:1883
|
2090 |
msgid "Scroll number"
|
2091 |
msgstr "Кол-во прокручиваемых"
|
2092 |
|
2093 |
+
#: inc/core/data.php:1884
|
2094 |
msgid "How much items are scrolled in one transition"
|
2095 |
msgstr "Сколько элементов карусели прокручивается за один переход"
|
2096 |
|
2097 |
+
#: inc/core/data.php:1889
|
2098 |
msgid "Display titles for each item"
|
2099 |
msgstr "Показывать заголовки для каждого элемента карусели"
|
2100 |
|
2101 |
+
#: inc/core/data.php:1894
|
2102 |
msgid "Is carousel centered on the page"
|
2103 |
msgstr "Карусель выровнена по центру страницы"
|
2104 |
|
2105 |
+
#: inc/core/data.php:1910
|
2106 |
msgid "Allow to rotate carousel with mouse wheel"
|
2107 |
msgstr "Разрешить прокрутку карусели колесом мыши"
|
2108 |
|
2109 |
+
#: inc/core/data.php:1919
|
2110 |
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
2111 |
msgstr ""
|
2112 |
"Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить "
|
2113 |
"автовоспроизведение"
|
2114 |
|
2115 |
+
#: inc/core/data.php:1935
|
2116 |
msgid "Customizable image carousel"
|
2117 |
msgstr "Настраиваемая карусель изображений"
|
2118 |
|
2119 |
+
#: inc/core/data.php:1978
|
2120 |
msgid "Single item width (in pixels)"
|
2121 |
msgstr "Ширина одного изображения (в пикселях)"
|
2122 |
|
2123 |
+
#: inc/core/data.php:1986
|
2124 |
msgid "Single item height (in pixels)"
|
2125 |
msgstr "Высота одного изображения (в пикселях)"
|
2126 |
|
2127 |
+
#: inc/core/data.php:1991
|
2128 |
msgid "Never"
|
2129 |
msgstr "Никогда"
|
2130 |
|
2131 |
+
#: inc/core/data.php:1992
|
2132 |
msgid "On mouse over"
|
2133 |
msgstr "При наведении мыши"
|
2134 |
|
2135 |
+
#: inc/core/data.php:1993
|
2136 |
msgid "Always"
|
2137 |
msgstr "Всегда"
|
2138 |
|
2139 |
+
#: inc/core/data.php:1997
|
2140 |
msgid "Title display mode"
|
2141 |
msgstr "Режим отображения заголовков"
|
2142 |
|
2143 |
+
#: inc/core/data.php:2005
|
2144 |
msgid "Customizable image gallery"
|
2145 |
msgstr "Настраиваемая галерея изображений"
|
2146 |
|
2147 |
+
#: inc/core/data.php:2010
|
2148 |
msgid "Posts"
|
2149 |
msgstr "Записи"
|
2150 |
|
2151 |
+
#: inc/core/data.php:2015
|
2152 |
msgid "Template"
|
2153 |
msgstr "Шаблон"
|
2154 |
|
2155 |
+
#: inc/core/data.php:2016
|
2156 |
msgid ""
|
2157 |
"<b>Do not change this field value if you do not understand description below."
|
2158 |
"</b><br/>Relative path to the template file. Default templates is placed "
|
2175 |
"одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - "
|
2176 |
"маркированный список с заголовками постов"
|
2177 |
|
2178 |
+
#: inc/core/data.php:2020
|
2179 |
msgid "Post ID's"
|
2180 |
msgstr "ID постов"
|
2181 |
|
2182 |
+
#: inc/core/data.php:2021
|
2183 |
msgid "Enter comma separated ID's of the posts that you want to show"
|
2184 |
msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
|
2185 |
|
2186 |
+
#: inc/core/data.php:2029
|
2187 |
msgid "Posts per page"
|
2188 |
msgstr "Кол-во записей"
|
2189 |
|
2190 |
+
#: inc/core/data.php:2030
|
2191 |
msgid ""
|
2192 |
"Specify number of posts that you want to show. Enter -1 to get all posts"
|
2193 |
msgstr ""
|
2194 |
"Укажите число записей, которое хотите отобразить. Введите -1 чтобы "
|
2195 |
"отобразить все найденные записи"
|
2196 |
|
2197 |
+
#: inc/core/data.php:2037
|
2198 |
msgid "Post types"
|
2199 |
msgstr "Типы постов"
|
2200 |
|
2201 |
+
#: inc/core/data.php:2038
|
2202 |
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
2203 |
msgstr ""
|
2204 |
"Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
|
2205 |
|
2206 |
+
#: inc/core/data.php:2044 inc/core/generator-views.php:115
|
2207 |
msgid "Taxonomy"
|
2208 |
msgstr "Таксономия"
|
2209 |
|
2210 |
+
#: inc/core/data.php:2045
|
2211 |
msgid "Select taxonomy to show posts from"
|
2212 |
msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
|
2213 |
|
2214 |
+
#: inc/core/data.php:2052
|
2215 |
msgid "Terms"
|
2216 |
msgstr "Категории (terms)"
|
2217 |
|
2218 |
+
#: inc/core/data.php:2053
|
2219 |
msgid "Select terms to show posts from"
|
2220 |
msgstr "Выберите категории, из которых нужно показать записи"
|
2221 |
|
2222 |
+
#: inc/core/data.php:2058
|
2223 |
msgid "Taxonomy term operator"
|
2224 |
msgstr "Оператор выбора категорий"
|
2225 |
|
2226 |
+
#: inc/core/data.php:2059
|
2227 |
msgid ""
|
2228 |
"IN - posts that have any of selected categories terms<br/>NOT IN - posts "
|
2229 |
"that is does not have any of selected terms<br/>AND - posts that have all "
|
2233 |
"будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/"
|
2234 |
">AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
|
2235 |
|
2236 |
+
#: inc/core/data.php:2066
|
2237 |
msgid "Authors"
|
2238 |
msgstr "Авторы"
|
2239 |
|
2240 |
+
#: inc/core/data.php:2067
|
2241 |
msgid "Choose the authors whose posts you want to show"
|
2242 |
msgstr "Выберите авторов, чьи записи хотите показать"
|
2243 |
|
2244 |
+
#: inc/core/data.php:2071
|
2245 |
msgid "Meta key"
|
2246 |
msgstr "Произвольное поле"
|
2247 |
|
2248 |
+
#: inc/core/data.php:2072
|
2249 |
msgid "Enter meta key name to show posts that have this key"
|
2250 |
msgstr ""
|
2251 |
"Введите оригинальное имя произвольного поля, чтобы показать все записи у "
|
2252 |
"которых это поле задано"
|
2253 |
|
2254 |
+
#: inc/core/data.php:2079
|
2255 |
msgid "Offset"
|
2256 |
msgstr "Смещение (offset)"
|
2257 |
|
2258 |
+
#: inc/core/data.php:2080
|
2259 |
msgid "Specify offset to start posts loop not from first post"
|
2260 |
msgstr ""
|
2261 |
"Укажите кол-во записей, которые будут пропущены и не показаны. Например, "
|
2262 |
"если указать 2, то будут показаны записи начиная со третьей"
|
2263 |
|
2264 |
+
#: inc/core/data.php:2085
|
2265 |
msgid "Descending"
|
2266 |
msgstr "По убыванию"
|
2267 |
|
2268 |
+
#: inc/core/data.php:2086
|
2269 |
msgid "Ascending"
|
2270 |
msgstr "По возрастанию"
|
2271 |
|
2272 |
+
#: inc/core/data.php:2089
|
2273 |
msgid "Order"
|
2274 |
msgstr "Порядок"
|
2275 |
|
2276 |
+
#: inc/core/data.php:2090
|
2277 |
msgid "Posts order"
|
2278 |
msgstr "Порядок сортировки записей"
|
2279 |
|
2280 |
+
#: inc/core/data.php:2096
|
2281 |
msgid "Post ID"
|
2282 |
msgstr "ID записи"
|
2283 |
|
2284 |
+
#: inc/core/data.php:2097
|
2285 |
msgid "Post author"
|
2286 |
msgstr "Автор записи"
|
2287 |
|
2288 |
+
#: inc/core/data.php:2098
|
2289 |
msgid "Post title"
|
2290 |
msgstr "Заголовок записи"
|
2291 |
|
2292 |
+
#: inc/core/data.php:2099
|
2293 |
msgid "Post slug"
|
2294 |
msgstr "Ссылка записи (slug)"
|
2295 |
|
2296 |
+
#: inc/core/data.php:2100
|
2297 |
msgid "Date"
|
2298 |
msgstr "Дата"
|
2299 |
|
2300 |
+
#: inc/core/data.php:2100
|
2301 |
msgid "Last modified date"
|
2302 |
msgstr "Дата изменения"
|
2303 |
|
2304 |
+
#: inc/core/data.php:2101 inc/core/data.php:2111
|
2305 |
msgid "Post parent"
|
2306 |
msgstr "Родитель"
|
2307 |
|
2308 |
+
#: inc/core/data.php:2102
|
2309 |
msgid "Random"
|
2310 |
msgstr "Случайно"
|
2311 |
|
2312 |
+
#: inc/core/data.php:2102
|
2313 |
msgid "Comments number"
|
2314 |
msgstr "Кол-во комментариев"
|
2315 |
|
2316 |
+
#: inc/core/data.php:2103
|
2317 |
msgid "Menu order"
|
2318 |
msgstr "Порядок меню"
|
2319 |
|
2320 |
+
#: inc/core/data.php:2103
|
2321 |
msgid "Meta key values"
|
2322 |
msgstr "Значение произвольного поля"
|
2323 |
|
2324 |
+
#: inc/core/data.php:2106
|
2325 |
msgid "Order by"
|
2326 |
msgstr "Сортировать по"
|
2327 |
|
2328 |
+
#: inc/core/data.php:2107
|
2329 |
msgid "Order posts by"
|
2330 |
msgstr "Сортировать записи по следующему признаку"
|
2331 |
|
2332 |
+
#: inc/core/data.php:2112
|
2333 |
msgid "Show childrens of entered post (enter post ID)"
|
2334 |
msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
|
2335 |
|
2336 |
+
#: inc/core/data.php:2117
|
2337 |
msgid "Published"
|
2338 |
msgstr "Опубликован"
|
2339 |
|
2340 |
+
#: inc/core/data.php:2118
|
2341 |
msgid "Pending"
|
2342 |
msgstr "Ожидает"
|
2343 |
|
2344 |
+
#: inc/core/data.php:2119
|
2345 |
msgid "Draft"
|
2346 |
msgstr "Черновик"
|
2347 |
|
2348 |
+
#: inc/core/data.php:2120
|
2349 |
msgid "Auto-draft"
|
2350 |
msgstr "Авто-черновик"
|
2351 |
|
2352 |
+
#: inc/core/data.php:2121
|
2353 |
msgid "Future post"
|
2354 |
msgstr "Запланирован"
|
2355 |
|
2356 |
+
#: inc/core/data.php:2122
|
2357 |
msgid "Private post"
|
2358 |
msgstr "Приватная запись"
|
2359 |
|
2360 |
+
#: inc/core/data.php:2123
|
2361 |
msgid "Inherit"
|
2362 |
msgstr "Вложенный"
|
2363 |
|
2364 |
+
#: inc/core/data.php:2124
|
2365 |
msgid "Trashed"
|
2366 |
msgstr "В корзине"
|
2367 |
|
2368 |
+
#: inc/core/data.php:2125 inc/core/data.php:2209
|
2369 |
msgid "Any"
|
2370 |
msgstr "Любой"
|
2371 |
|
2372 |
+
#: inc/core/data.php:2128
|
2373 |
msgid "Post status"
|
2374 |
msgstr "Статус записи"
|
2375 |
|
2376 |
+
#: inc/core/data.php:2129
|
2377 |
msgid "Show only posts with selected status"
|
2378 |
msgstr "Показать только записи с выбранным статусом"
|
2379 |
|
2380 |
+
#: inc/core/data.php:2134
|
2381 |
msgid "Ignore sticky"
|
2382 |
msgstr "Игнорировать прикрепленные"
|
2383 |
|
2384 |
+
#: inc/core/data.php:2135
|
2385 |
msgid "Select Yes to ignore posts that is sticked"
|
2386 |
msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
|
2387 |
|
2388 |
+
#: inc/core/data.php:2138
|
2389 |
msgid "Custom posts query with customizable template"
|
2390 |
msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
|
2391 |
|
2392 |
+
#: inc/core/data.php:2143
|
2393 |
msgid "Dummy text"
|
2394 |
msgstr "Текст рыба"
|
2395 |
|
2396 |
+
#: inc/core/data.php:2150
|
2397 |
msgid "Paragraphs"
|
2398 |
msgstr "Параграфы"
|
2399 |
|
2400 |
+
#: inc/core/data.php:2151
|
2401 |
msgid "Words"
|
2402 |
msgstr "Слова"
|
2403 |
|
2404 |
+
#: inc/core/data.php:2152
|
2405 |
msgid "Bytes"
|
2406 |
msgstr "Байты"
|
2407 |
|
2408 |
+
#: inc/core/data.php:2155
|
2409 |
msgid "What"
|
2410 |
msgstr "Что"
|
2411 |
|
2412 |
+
#: inc/core/data.php:2156
|
2413 |
msgid "What to generate"
|
2414 |
msgstr "Что генерировать"
|
2415 |
|
2416 |
+
#: inc/core/data.php:2164
|
2417 |
msgid "Amount"
|
2418 |
msgstr "Количество"
|
2419 |
|
2420 |
+
#: inc/core/data.php:2165
|
2421 |
msgid ""
|
2422 |
"How many items (paragraphs or words) to generate. Minimum words amount is 5"
|
2423 |
msgstr ""
|
2424 |
"Какое количество (параграфов или слов) генерировать. Минимальное количество "
|
2425 |
"слов - 5"
|
2426 |
|
2427 |
+
#: inc/core/data.php:2170
|
2428 |
msgid "Cache"
|
2429 |
msgstr "Кеш"
|
2430 |
|
2431 |
+
#: inc/core/data.php:2171
|
2432 |
msgid ""
|
2433 |
"Generated text will be cached. Be careful with this option. If you disable "
|
2434 |
"it and insert many dummy_text shortcodes the page load time will be highly "
|
2438 |
"вы отключите её и вставите много таких шорткодов на странице, то время "
|
2439 |
"загрузки страницы может сильно возрости"
|
2440 |
|
2441 |
+
#: inc/core/data.php:2179
|
2442 |
msgid "Text placeholder"
|
2443 |
msgstr "Текст болванка"
|
2444 |
|
2445 |
+
#: inc/core/data.php:2184 inc/core/shortcodes.php:1237
|
2446 |
msgid "Dummy image"
|
2447 |
msgstr "Изображение болванка"
|
2448 |
|
2449 |
+
#: inc/core/data.php:2195
|
2450 |
msgid "Image width"
|
2451 |
msgstr "Ширина изображения"
|
2452 |
|
2453 |
+
#: inc/core/data.php:2204
|
2454 |
msgid "Image height"
|
2455 |
msgstr "Высота изображения"
|
2456 |
|
2457 |
+
#: inc/core/data.php:2210
|
2458 |
msgid "Abstract"
|
2459 |
msgstr "Абстрактное"
|
2460 |
|
2461 |
+
#: inc/core/data.php:2211
|
2462 |
msgid "Animals"
|
2463 |
msgstr "Животные"
|
2464 |
|
2465 |
+
#: inc/core/data.php:2212
|
2466 |
msgid "Business"
|
2467 |
msgstr "Бизнес"
|
2468 |
|
2469 |
+
#: inc/core/data.php:2213
|
2470 |
msgid "Cats"
|
2471 |
msgstr "Котэ"
|
2472 |
|
2473 |
+
#: inc/core/data.php:2214
|
2474 |
msgid "City"
|
2475 |
msgstr "Город"
|
2476 |
|
2477 |
+
#: inc/core/data.php:2215
|
2478 |
msgid "Food"
|
2479 |
msgstr "Еда"
|
2480 |
|
2481 |
+
#: inc/core/data.php:2216
|
2482 |
msgid "Night life"
|
2483 |
msgstr "Ночная жизнь"
|
2484 |
|
2485 |
+
#: inc/core/data.php:2217
|
2486 |
msgid "Fashion"
|
2487 |
msgstr "Мода"
|
2488 |
|
2489 |
+
#: inc/core/data.php:2218
|
2490 |
msgid "People"
|
2491 |
msgstr "Люди"
|
2492 |
|
2493 |
+
#: inc/core/data.php:2219
|
2494 |
msgid "Nature"
|
2495 |
msgstr "Природа"
|
2496 |
|
2497 |
+
#: inc/core/data.php:2220
|
2498 |
msgid "Sports"
|
2499 |
msgstr "Спорт"
|
2500 |
|
2501 |
+
#: inc/core/data.php:2221
|
2502 |
msgid "Technics"
|
2503 |
msgstr "Техника"
|
2504 |
|
2505 |
+
#: inc/core/data.php:2222
|
2506 |
msgid "Transport"
|
2507 |
msgstr "Транспорт"
|
2508 |
|
2509 |
+
#: inc/core/data.php:2226
|
2510 |
msgid "Select the theme for this image"
|
2511 |
msgstr "Выберите тему изображений"
|
2512 |
|
2513 |
+
#: inc/core/data.php:2234
|
2514 |
msgid "Image placeholder with random image"
|
2515 |
msgstr "Изображение болванка со случайным изображением"
|
2516 |
|
2517 |
+
#: inc/core/data.php:2239 inc/core/data.php:2247
|
2518 |
msgid "Animation"
|
2519 |
msgstr "Анимация"
|
2520 |
|
2521 |
+
#: inc/core/data.php:2248
|
2522 |
msgid "Select animation type"
|
2523 |
msgstr "Выберите тип анимации"
|
2524 |
|
2525 |
+
#: inc/core/data.php:2256
|
2526 |
msgid "Duration"
|
2527 |
msgstr "Продолжительность"
|
2528 |
|
2529 |
+
#: inc/core/data.php:2257
|
2530 |
msgid "Animation duration (seconds)"
|
2531 |
msgstr "Продолжительность анимации (секунды)"
|
2532 |
|
2533 |
+
#: inc/core/data.php:2265
|
2534 |
msgid "Delay"
|
2535 |
msgstr "Задержка"
|
2536 |
|
2537 |
+
#: inc/core/data.php:2266
|
2538 |
msgid "Animation delay (seconds)"
|
2539 |
msgstr "Задержка перед началом анимации (секунды)"
|
2540 |
|
2541 |
+
#: inc/core/data.php:2271
|
2542 |
+
msgid "Inline"
|
2543 |
+
msgstr "Строковый"
|
2544 |
+
|
2545 |
+
#: inc/core/data.php:2272
|
2546 |
+
msgid ""
|
2547 |
+
"This parameter determines what HTML tag will be used for animation wrapper. "
|
2548 |
+
"Turn this option to YES and animated element will be wrapped in SPAN instead "
|
2549 |
+
"of DIV. Useful for inline animations, like buttons"
|
2550 |
+
msgstr ""
|
2551 |
+
"Этот параметр определяет какой тег использовать для элемента лайтбокса. "
|
2552 |
+
"Переключите этот параметр на ДА и будет использован тег span вместо div. "
|
2553 |
+
"Данная опция полезна для анимации строковых жлементов, например кнопок"
|
2554 |
+
|
2555 |
+
#: inc/core/data.php:2280
|
2556 |
msgid "Animated content"
|
2557 |
msgstr "Анимированное содержимое"
|
2558 |
|
2559 |
+
#: inc/core/data.php:2281
|
2560 |
msgid "Wrapper for animation. Any nested element will be animated"
|
2561 |
msgstr ""
|
2562 |
"Контейнер для анимации. Любой элемент помещенный в этот контейнер будет "
|
2603 |
msgid "Reload galleries"
|
2604 |
msgstr "Обновить список"
|
2605 |
|
2606 |
+
#: inc/core/generator-views.php:91
|
2607 |
msgid "Horizontal offset"
|
2608 |
msgstr "Горизонтально"
|
2609 |
|
2610 |
+
#: inc/core/generator-views.php:91
|
2611 |
msgid "Vertical offset"
|
2612 |
msgstr "Вертикально"
|
2613 |
|
2614 |
+
#: inc/core/generator-views.php:91
|
2615 |
msgid "Blur"
|
2616 |
msgstr "Размытие"
|
2617 |
|
2618 |
+
#: inc/core/generator-views.php:102
|
2619 |
msgid "Border width"
|
2620 |
msgstr "Ширина рамки"
|
2621 |
|
2622 |
+
#: inc/core/generator-views.php:102
|
2623 |
msgid "Border style"
|
2624 |
msgstr "Стиль рамки"
|
2625 |
|
2626 |
+
#: inc/core/generator-views.php:102
|
2627 |
msgid "Border color"
|
2628 |
msgstr "Цвет рамки"
|
2629 |
|
2630 |
+
#: inc/core/generator-views.php:112
|
2631 |
msgid "Media library"
|
2632 |
msgstr "Медиа библиотека"
|
2633 |
|
2634 |
+
#: inc/core/generator-views.php:113
|
2635 |
msgid "Recent posts"
|
2636 |
msgstr "Последние записи"
|
2637 |
|
2638 |
+
#: inc/core/generator-views.php:114
|
2639 |
msgid "Category"
|
2640 |
msgstr "Категория"
|
2641 |
|
2642 |
+
#: inc/core/generator-views.php:118
|
2643 |
msgid "Select images source"
|
2644 |
msgstr "Выберите источник изображений"
|
2645 |
|
2646 |
+
#: inc/core/generator-views.php:129
|
2647 |
msgid "Select taxonomy"
|
2648 |
msgstr "Выберите таксономию"
|
2649 |
|
2650 |
+
#: inc/core/generator-views.php:140
|
2651 |
msgid "Add images"
|
2652 |
msgstr "Добавить изображения"
|
2653 |
|
2654 |
+
#: inc/core/generator-views.php:140
|
2655 |
msgid ""
|
2656 |
"Click the button above and select images.<br>You can select multimple images "
|
2657 |
"with Ctrl (Cmd) key"
|
2659 |
"Нажмите кнопку выше и выберите изображения.<br>Вы можете выбрать несколько "
|
2660 |
"изображений удерживая клавишу Ctrl (Cmd)"
|
2661 |
|
2662 |
+
#: inc/core/generator-views.php:140
|
2663 |
msgid ""
|
2664 |
"Select categories to retrieve posts from.<br>You can select multiple "
|
2665 |
"categories with Ctrl (Cmd) key"
|
2667 |
"Выберите категории из которых брать записи.<br>Вы можете выбрать несколько "
|
2668 |
"категорий удерживая клавишу Ctrl (Cmd)"
|
2669 |
|
2670 |
+
#: inc/core/generator-views.php:140
|
2671 |
msgid ""
|
2672 |
"Select taxonomy and it's terms.<br>You can select multiple terms with Ctrl "
|
2673 |
"(Cmd) key"
|
2875 |
msgid "This is box title"
|
2876 |
msgstr "Заголовок блока"
|
2877 |
|
2878 |
+
#: inc/core/shortcodes.php:492
|
2879 |
+
msgid "please specify correct source"
|
2880 |
+
msgstr "пожалуйста укажите корректную ссылку"
|
2881 |
+
|
2882 |
+
#: inc/core/shortcodes.php:561 inc/core/shortcodes.php:565
|
2883 |
+
#: inc/core/shortcodes.php:598 inc/core/shortcodes.php:602
|
2884 |
+
#: inc/core/shortcodes.php:629 inc/core/shortcodes.php:633
|
2885 |
+
#: inc/core/shortcodes.php:657 inc/core/shortcodes.php:661
|
2886 |
+
#: inc/core/shortcodes.php:681 inc/core/shortcodes.php:688
|
2887 |
+
#: inc/core/shortcodes.php:710 inc/core/shortcodes.php:715
|
2888 |
msgid "please specify correct url"
|
2889 |
msgstr "пожалуйста укажите корректную ссылку"
|
2890 |
|
2891 |
+
#: inc/core/shortcodes.php:846
|
2892 |
msgid "This menu doesn't exists, or has no elements"
|
2893 |
msgstr "Такое меню не существует, или в нем нет ни одного элемента"
|
2894 |
|
2895 |
+
#: inc/core/shortcodes.php:944 inc/core/shortcodes.php:1019
|
2896 |
+
#: inc/core/shortcodes.php:1064
|
2897 |
msgid "images not found"
|
2898 |
msgstr "изображения не найдены"
|
2899 |
|
2900 |
+
#: inc/core/shortcodes.php:1199
|
2901 |
msgid "template not found"
|
2902 |
msgstr "шаблон не найден"
|
2903 |
|
languages/su.pot
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Shortcodes Ultimate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-11-
|
6 |
-
"PO-Revision-Date: 2013-11-
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -479,7 +479,7 @@ msgstr ""
|
|
479 |
msgid "Spoiler"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: inc/core/data.php:246 inc/core/shortcodes.php:
|
483 |
msgid "Spoiler title"
|
484 |
msgstr ""
|
485 |
|
@@ -610,7 +610,7 @@ msgstr ""
|
|
610 |
msgid "Show link to top of the page or not"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: inc/core/data.php:332 inc/core/shortcodes.php:
|
614 |
msgid "Go to top"
|
615 |
msgstr ""
|
616 |
|
@@ -1037,7 +1037,7 @@ msgstr ""
|
|
1037 |
msgid "Service"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: inc/core/data.php:766 inc/core/shortcodes.php:
|
1041 |
msgid "Service title"
|
1042 |
msgstr ""
|
1043 |
|
@@ -1664,7 +1664,7 @@ msgstr ""
|
|
1664 |
msgid "Members"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: inc/core/data.php:1474 inc/core/shortcodes.php:
|
1668 |
msgid "This content is for registered users only. Please %login%."
|
1669 |
msgstr ""
|
1670 |
|
@@ -1684,7 +1684,7 @@ msgstr ""
|
|
1684 |
msgid "This color will applied only to box for not logged users"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: inc/core/data.php:1483 inc/core/shortcodes.php:
|
1688 |
msgid "login"
|
1689 |
msgstr ""
|
1690 |
|
@@ -2316,7 +2316,7 @@ msgstr ""
|
|
2316 |
msgid "Text placeholder"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: inc/core/data.php:2184 inc/core/shortcodes.php:
|
2320 |
msgid "Dummy image"
|
2321 |
msgstr ""
|
2322 |
|
@@ -2711,30 +2711,37 @@ msgid ""
|
|
2711 |
"a>"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: inc/core/shortcodes.php:
|
2715 |
msgid "Tab title"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: inc/core/shortcodes.php:
|
2719 |
msgid "This is box title"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: inc/core/shortcodes.php:
|
2723 |
-
|
2724 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2725 |
msgid "please specify correct url"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: inc/core/shortcodes.php:
|
2729 |
msgid "This menu doesn't exists, or has no elements"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: inc/core/shortcodes.php:
|
2733 |
-
#: inc/core/shortcodes.php:
|
2734 |
msgid "images not found"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
-
#: inc/core/shortcodes.php:
|
2738 |
msgid "template not found"
|
2739 |
msgstr ""
|
2740 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Shortcodes Ultimate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-11-12 01:26+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-11-12 01:26+0300\n"
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
479 |
msgid "Spoiler"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: inc/core/data.php:246 inc/core/shortcodes.php:72
|
483 |
msgid "Spoiler title"
|
484 |
msgstr ""
|
485 |
|
610 |
msgid "Show link to top of the page or not"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: inc/core/data.php:332 inc/core/shortcodes.php:99
|
614 |
msgid "Go to top"
|
615 |
msgstr ""
|
616 |
|
1037 |
msgid "Service"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: inc/core/data.php:766 inc/core/shortcodes.php:430
|
1041 |
msgid "Service title"
|
1042 |
msgstr ""
|
1043 |
|
1664 |
msgid "Members"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: inc/core/data.php:1474 inc/core/shortcodes.php:756
|
1668 |
msgid "This content is for registered users only. Please %login%."
|
1669 |
msgstr ""
|
1670 |
|
1684 |
msgid "This color will applied only to box for not logged users"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: inc/core/data.php:1483 inc/core/shortcodes.php:759
|
1688 |
msgid "login"
|
1689 |
msgstr ""
|
1690 |
|
2316 |
msgid "Text placeholder"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: inc/core/data.php:2184 inc/core/shortcodes.php:1237
|
2320 |
msgid "Dummy image"
|
2321 |
msgstr ""
|
2322 |
|
2711 |
"a>"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: inc/core/shortcodes.php:53
|
2715 |
msgid "Tab title"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: inc/core/shortcodes.php:451
|
2719 |
msgid "This is box title"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
#: inc/core/shortcodes.php:492
|
2723 |
+
msgid "please specify correct source"
|
2724 |
+
msgstr ""
|
2725 |
+
|
2726 |
+
#: inc/core/shortcodes.php:561 inc/core/shortcodes.php:565
|
2727 |
+
#: inc/core/shortcodes.php:598 inc/core/shortcodes.php:602
|
2728 |
+
#: inc/core/shortcodes.php:629 inc/core/shortcodes.php:633
|
2729 |
+
#: inc/core/shortcodes.php:657 inc/core/shortcodes.php:661
|
2730 |
+
#: inc/core/shortcodes.php:681 inc/core/shortcodes.php:688
|
2731 |
+
#: inc/core/shortcodes.php:710 inc/core/shortcodes.php:715
|
2732 |
msgid "please specify correct url"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
+
#: inc/core/shortcodes.php:846
|
2736 |
msgid "This menu doesn't exists, or has no elements"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: inc/core/shortcodes.php:944 inc/core/shortcodes.php:1019
|
2740 |
+
#: inc/core/shortcodes.php:1064
|
2741 |
msgid "images not found"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: inc/core/shortcodes.php:1199
|
2745 |
msgid "template not found"
|
2746 |
msgstr ""
|
2747 |
|
readme.txt
CHANGED
@@ -99,6 +99,7 @@ Upgrade normally via your Wordpress admin -> Plugins panel.
|
|
99 |
|
100 |
= 4.4 =
|
101 |
* __IMPORTANT__: new galleries mechanism. Your created galleries will work but will not be visible in admin panel. Now, you're able to create galleries right in "Insert shortcode" window. Also, you can now create galleries from posts, categories or even custom taxonomies.
|
|
|
102 |
* Fixed file_get_contents() (disabled http wrappers) issue at the examples page
|
103 |
* Added classes Shortcodes_Ultimate_Generator, Shortcodes_Ultimate_Shortcodes and Shortcodes_Ultimate_Data
|
104 |
* Removed unused classes MediaUpload and ImageMeta
|
99 |
|
100 |
= 4.4 =
|
101 |
* __IMPORTANT__: new galleries mechanism. Your created galleries will work but will not be visible in admin panel. Now, you're able to create galleries right in "Insert shortcode" window. Also, you can now create galleries from posts, categories or even custom taxonomies.
|
102 |
+
* Removed all default links (default youtube videos)
|
103 |
* Fixed file_get_contents() (disabled http wrappers) issue at the examples page
|
104 |
* Added classes Shortcodes_Ultimate_Generator, Shortcodes_Ultimate_Shortcodes and Shortcodes_Ultimate_Data
|
105 |
* Removed unused classes MediaUpload and ImageMeta
|
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.4.
|
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 file constant
|
15 |
define( 'SU_PLUGIN_FILE', __FILE__ );
|
16 |
-
define( 'SU_PLUGIN_VERSION', '4.4.
|
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.4.4
|
6 |
Author: Vladimir Anokhin
|
7 |
Author URI: http://gndev.info/
|
8 |
Description: Supercharge your WordPress theme with mega pack of shortcodes
|
13 |
|
14 |
// Define plugin file constant
|
15 |
define( 'SU_PLUGIN_FILE', __FILE__ );
|
16 |
+
define( 'SU_PLUGIN_VERSION', '4.4.4' );
|
17 |
define( 'SU_ENABLE_CACHE', true );
|
18 |
|
19 |
// Includes
|